9#include "lldb/Host/Config.h"
14#include <netinet/in.h>
17#include <sys/socket.h>
22#include <sys/sysctl.h>
104#include "llvm/ADT/STLExtras.h"
105#include "llvm/ADT/ScopeExit.h"
106#include "llvm/ADT/StringMap.h"
107#include "llvm/ADT/StringSwitch.h"
108#include "llvm/Support/Chrono.h"
109#include "llvm/Support/ErrorExtras.h"
110#include "llvm/Support/FormatAdapters.h"
111#include "llvm/Support/Threading.h"
112#include "llvm/Support/raw_ostream.h"
114#if defined(__APPLE__)
115#define DEBUGSERVER_BASENAME "debugserver"
117#define DEBUGSERVER_BASENAME "lldb-server.exe"
119#define DEBUGSERVER_BASENAME "lldb-server"
139 llvm::consumeError(file.takeError());
143 ((
Process *)p)->DumpPluginHistory(stream);
149#define LLDB_PROPERTIES_processgdbremote
150#include "ProcessGDBRemoteProperties.inc"
153#define LLDB_PROPERTIES_processgdbremote
154#include "ProcessGDBRemotePropertiesEnum.inc"
159 static llvm::StringRef GetSettingName() {
163 PluginProperties() : Properties() {
164 m_collection_sp = std::make_shared<OptionValueProperties>(GetSettingName());
165 m_collection_sp->Initialize(g_processgdbremote_properties_def);
168 ~PluginProperties()
override =
default;
170 uint64_t GetPacketTimeout() {
171 const uint32_t idx = ePropertyPacketTimeout;
172 return GetPropertyAtIndexAs<uint64_t>(
173 idx, g_processgdbremote_properties[idx].default_uint_value);
176 bool SetPacketTimeout(uint64_t timeout) {
177 const uint32_t idx = ePropertyPacketTimeout;
178 return SetPropertyAtIndex(idx, timeout);
181 FileSpec GetTargetDefinitionFile()
const {
182 const uint32_t idx = ePropertyTargetDefinitionFile;
183 return GetPropertyAtIndexAs<FileSpec>(idx, {});
186 bool GetUseSVR4()
const {
187 const uint32_t idx = ePropertyUseSVR4;
188 return GetPropertyAtIndexAs<bool>(
189 idx, g_processgdbremote_properties[idx].default_uint_value != 0);
192 bool GetUseGPacketForReading()
const {
193 const uint32_t idx = ePropertyUseGPacketForReading;
194 return GetPropertyAtIndexAs<bool>(idx,
true);
197 uint64_t GetPacketTestDelay()
const {
198 const uint32_t idx = ePropertyPacketTestDelay;
199 return GetPropertyAtIndexAs<uint64_t>(
200 idx, g_processgdbremote_properties[idx].default_uint_value);
204std::chrono::seconds ResumeTimeout() {
return std::chrono::seconds(5); }
206static std::pair<uint16_t, uint16_t> GetClientTerminalSize() {
208 CONSOLE_SCREEN_BUFFER_INFO csbi{};
209 HANDLE h = ::GetStdHandle(STD_OUTPUT_HANDLE);
210 if (h != INVALID_HANDLE_VALUE && ::GetConsoleScreenBufferInfo(h, &csbi)) {
211 int cols = csbi.srWindow.Right - csbi.srWindow.Left + 1;
212 int rows = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
213 if (cols > 0 && rows > 0)
214 return {
static_cast<uint16_t
>(cols),
static_cast<uint16_t
>(rows)};
216#elif LLDB_ENABLE_POSIX
218 if (::ioctl(STDOUT_FILENO, TIOCGWINSZ, &ws) == 0 && ws.ws_col > 0 &&
220 return {ws.ws_col, ws.ws_row};
228 static PluginProperties g_settings;
236#if defined(__APPLE__)
237#define LOW_PORT (IPPORT_RESERVED)
238#define HIGH_PORT (IPPORT_HIFIRSTAUTO)
240#define LOW_PORT (1024u)
241#define HIGH_PORT (49151u)
245 return "GDB Remote protocol based debugging plug-in.";
254 const FileSpec *crash_file_path,
bool can_connect) {
270 return std::chrono::milliseconds(
279 bool plugin_specified_by_name) {
280 if (plugin_specified_by_name)
284 Module *exe_module = target_sp->GetExecutableModulePointer();
288 switch (exe_objfile->
GetType()) {
312 :
Process(target_sp, listener_sp),
316 Listener::MakeListener(
"lldb.process.gdb-remote.async-listener")),
326 "async thread should exit");
328 "async thread continue");
330 "async thread did exit");
334 const uint32_t async_event_mask =
340 "ProcessGDBRemote::%s failed to listen for "
341 "m_async_broadcaster events",
345 const uint64_t timeout_seconds =
347 if (timeout_seconds > 0)
348 m_gdb_comm.SetPacketTimeout(std::chrono::seconds(timeout_seconds));
356 llvm::sys::TimePoint<> now = std::chrono::system_clock::now();
357 std::string name = llvm::formatv(
358 "gdb-remote-packet-history-{0:%Y-%m-%dT%H-%M-%S}.txt", now);
360 std::move(name), [
this]() -> std::string {
391std::shared_ptr<ThreadGDBRemote>
393 return std::make_shared<ThreadGDBRemote>(*
this, tid);
397 const FileSpec &target_definition_fspec) {
403 if (module_object_sp) {
406 "gdb-server-target-definition",
error));
408 if (target_definition_sp) {
410 target_definition_sp->GetValueForKey(
"host-info"));
412 if (
auto host_info_dict = target_object->GetAsDictionary()) {
414 host_info_dict->GetValueForKey(
"triple");
415 if (
auto triple_string_value = triple_value->GetAsString()) {
416 std::string triple_string =
417 std::string(triple_string_value->GetValue());
418 ArchSpec host_arch(triple_string.c_str());
427 target_definition_sp->GetValueForKey(
"breakpoint-pc-offset");
428 if (breakpoint_pc_offset_value) {
429 if (
auto breakpoint_pc_int_value =
430 breakpoint_pc_offset_value->GetAsSignedInteger())
435 *target_definition_sp,
GetTarget().GetArchitecture()) > 0) {
444 const llvm::StringRef &comma_separated_register_numbers,
445 std::vector<uint32_t> ®nums,
int base) {
447 for (llvm::StringRef x : llvm::split(comma_separated_register_numbers,
',')) {
449 if (llvm::to_integer(x, reg, base))
450 regnums.push_back(reg);
452 return regnums.size();
464 const auto host_packet_timeout =
m_gdb_comm.GetHostDefaultPacketTimeout();
465 if (host_packet_timeout > std::chrono::seconds(0)) {
483 if (target_definition_fspec) {
489 target_definition_fspec.
GetPath() +
500 if (remote_process_arch.
IsValid())
501 arch_to_use = remote_process_arch;
503 arch_to_use = remote_host_arch;
506 arch_to_use = target_arch;
509 if (!register_info_err) {
516 "Failed to read register information from target XML: {0}");
517 LLDB_LOG(log,
"Now trying to use qRegisterInfo instead.");
520 std::vector<DynamicRegisterInfo::Register> registers;
521 uint32_t reg_num = 0;
525 const int packet_len =
526 ::snprintf(packet,
sizeof(packet),
"qRegisterInfo%x", reg_num);
527 assert(packet_len < (
int)
sizeof(packet));
530 if (
m_gdb_comm.SendPacketAndWaitForResponse(packet, response) ==
534 llvm::StringRef name;
535 llvm::StringRef value;
539 if (name ==
"name") {
541 }
else if (name ==
"alt-name") {
543 }
else if (name ==
"bitsize") {
546 }
else if (name ==
"offset") {
548 }
else if (name ==
"encoding") {
552 }
else if (name ==
"format") {
556 llvm::StringSwitch<Format>(value)
598 }
else if (name ==
"set") {
600 }
else if (name ==
"gcc" || name ==
"ehframe") {
602 }
else if (name ==
"dwarf") {
604 }
else if (name ==
"generic") {
606 }
else if (name ==
"container-regs") {
608 }
else if (name ==
"invalidate-regs") {
614 registers.push_back(reg_info);
627 "the debug server supports Target Description XML but LLDB does "
628 "not have XML parsing enabled. Using \"qRegisterInfo\" was also "
629 "not possible. Register information may be incorrect or missing",
639 if (registers.empty()) {
641 if (!registers.empty())
644 "All other methods failed, using fallback register information.");
659 bool wait_for_launch) {
691 if (
m_gdb_comm.GetProcessArchitecture().IsValid()) {
694 if (
m_gdb_comm.GetHostArchitecture().IsValid()) {
705 "Process %" PRIu64
" was reported after connecting to "
706 "'%s', but state was not stopped: %s",
710 "Process %" PRIu64
" was reported after connecting to '%s', "
711 "but no stop reply packet was received",
712 pid, remote_url.str().c_str());
716 "ProcessGDBRemote::%s pid %" PRIu64
717 ": normalizing target architecture initial triple: %s "
718 "(GetTarget().GetArchitecture().IsValid() %s, "
719 "m_gdb_comm.GetHostArchitecture().IsValid(): %s)",
720 __FUNCTION__,
GetID(),
721 GetTarget().GetArchitecture().GetTriple().getTriple().c_str(),
723 m_gdb_comm.GetHostArchitecture().IsValid() ?
"true" :
"false");
729 if (
m_gdb_comm.GetProcessArchitecture().IsValid())
736 "ProcessGDBRemote::%s pid %" PRIu64
737 ": normalized target architecture triple: %s",
738 __FUNCTION__,
GetID(),
739 GetTarget().GetArchitecture().GetTriple().getTriple().c_str());
756 LLDB_LOGF(log,
"ProcessGDBRemote::%s() entered", __FUNCTION__);
758 uint32_t launch_flags = launch_info.
GetFlags().
Get();
781 if (stdin_file_spec || stdout_file_spec || stderr_file_spec)
783 "ProcessGDBRemote::%s provided with STDIO paths via "
784 "launch_info: stdin=%s, stdout=%s, stderr=%s",
786 stdin_file_spec ? stdin_file_spec.
GetPath().c_str() :
"<null>",
787 stdout_file_spec ? stdout_file_spec.
GetPath().c_str() :
"<null>",
788 stderr_file_spec ? stderr_file_spec.
GetPath().c_str() :
"<null>");
790 LLDB_LOGF(log,
"ProcessGDBRemote::%s no STDIO paths given via launch_info",
793 const bool disable_stdio = (launch_flags & eLaunchFlagDisableSTDIO) != 0;
794 if (stdin_file_spec || disable_stdio) {
809 if (
error.Success()) {
811 const bool disable_stdio = (launch_flags & eLaunchFlagDisableSTDIO) != 0;
816 if (!stdin_file_spec)
818 FileSpec::Style::native);
819 if (!stdout_file_spec)
821 FileSpec::Style::native);
822 if (!stderr_file_spec)
824 FileSpec::Style::native);
825 }
else if (platform_sp && platform_sp->IsHost()) {
830 if ((!stdin_file_spec || !stdout_file_spec || !stderr_file_spec) &&
834 if (!stdin_file_spec)
835 stdin_file_spec = secondary_name;
837 if (!stdout_file_spec)
838 stdout_file_spec = secondary_name;
840 if (!stderr_file_spec)
841 stderr_file_spec = secondary_name;
845 "ProcessGDBRemote::%s adjusted STDIO paths for local platform "
846 "(IsHost() is true) using secondary: stdin=%s, stdout=%s, "
849 stdin_file_spec ? stdin_file_spec.
GetPath().c_str() :
"<null>",
850 stdout_file_spec ? stdout_file_spec.
GetPath().c_str() :
"<null>",
851 stderr_file_spec ? stderr_file_spec.
GetPath().c_str() :
"<null>");
855 "ProcessGDBRemote::%s final STDIO paths after all "
856 "adjustments: stdin=%s, stdout=%s, stderr=%s",
858 stdin_file_spec ? stdin_file_spec.
GetPath().c_str() :
"<null>",
859 stdout_file_spec ? stdout_file_spec.
GetPath().c_str() :
"<null>",
860 stderr_file_spec ? stderr_file_spec.
GetPath().c_str() :
"<null>");
864 if (stdout_file_spec)
866 if (stderr_file_spec)
869 if (launch_flags & eLaunchFlagUsePipes) {
872 auto [terminal_cols, terminal_rows] = GetClientTerminalSize();
873 m_gdb_comm.SetSTDIOWindowSize(terminal_cols, terminal_rows);
876 m_gdb_comm.SetDisableASLR(launch_flags & eLaunchFlagDisableASLR);
877 m_gdb_comm.SetDetachOnError(launch_flags & eLaunchFlagDetachOnError);
880 GetTarget().GetArchitecture().GetArchitectureName());
883 if (launch_event_data !=
nullptr && *launch_event_data !=
'\0')
884 m_gdb_comm.SendLaunchEventDataPacket(launch_event_data);
896 std::chrono::seconds(10));
902 const llvm::Triple &remote_triple =
904 if (remote_triple.getOS() != llvm::Triple::UnknownOS) {
905 FileSpec remote_exe_file(exe_file.GetPath(
false),
908 0, remote_exe_file.
GetPath(
true));
911 exe_file.GetPath(
true));
914 if (llvm::Error err =
m_gdb_comm.LaunchProcess(args)) {
917 llvm::fmt_consume(std::move(err)));
924 LLDB_LOGF(log,
"failed to connect to debugserver: %s",
946 if (!disable_stdio) {
956 std::make_shared<IOHandlerProcessSTDIOWindows>(
this);
962 LLDB_LOGF(log,
"failed to connect to debugserver: %s",
error.AsCString());
972 if (!connect_url.empty()) {
973 LLDB_LOGF(log,
"ProcessGDBRemote::%s Connecting to %s", __FUNCTION__,
974 connect_url.str().c_str());
975 std::unique_ptr<ConnectionFileDescriptor> conn_up(
978 const uint32_t max_retry_count = 50;
979 uint32_t retry_count = 0;
988 if (retry_count >= max_retry_count)
991 std::this_thread::sleep_for(std::chrono::milliseconds(100));
1008 if (
error.Success())
1015 m_gdb_comm.GetListThreadsInStopReplySupported();
1025 auto handle_cmds = [&] (
const Args &args) ->
void {
1029 entry.c_str(), response);
1035 handle_cmds(platform_sp->GetExtraStartupCommands());
1052 if (remote_process_arch.
IsValid()) {
1053 process_arch = remote_process_arch;
1054 LLDB_LOG(log,
"gdb-remote had process architecture, using {0} {1}",
1058 process_arch =
m_gdb_comm.GetHostArchitecture();
1060 "gdb-remote did not have process architecture, using gdb-remote "
1061 "host architecture {0} {1}",
1072 LLDB_LOG(log,
"analyzing target arch, currently {0} {1}",
1084 if ((process_arch.
GetMachine() == llvm::Triple::arm ||
1085 process_arch.
GetMachine() == llvm::Triple::thumb) &&
1086 process_arch.
GetTriple().getVendor() == llvm::Triple::Apple) {
1089 "remote process is ARM/Apple, "
1090 "setting target arch to {0} {1}",
1095 const llvm::Triple &remote_triple = process_arch.
GetTriple();
1096 llvm::Triple new_target_triple = target_arch.
GetTriple();
1097 if (new_target_triple.getVendorName().size() == 0) {
1098 new_target_triple.setVendor(remote_triple.getVendor());
1100 if (new_target_triple.getOSName().size() == 0) {
1101 new_target_triple.setOS(remote_triple.getOS());
1103 if (new_target_triple.getEnvironmentName().size() == 0)
1104 new_target_triple.setEnvironment(remote_triple.getEnvironment());
1107 ArchSpec new_target_arch = target_arch;
1108 new_target_arch.
SetTriple(new_target_triple);
1114 "final target arch after adjustments for remote architecture: "
1133 m_gdb_comm.GetSupportedStructuredDataPlugins())
1142 if (platform_sp && platform_sp->IsConnected())
1150 llvm::Expected<std::vector<AcceleratorActions>> init_actions =
1151 m_gdb_comm.GetAcceleratorInitializeActions();
1152 if (!init_actions) {
1154 "failed to get accelerator initialize actions: {0}");
1159 "failed to handle accelerator actions: {0}");
1169 UUID standalone_uuid;
1171 bool standalone_value_is_offset;
1172 if (
m_gdb_comm.GetProcessStandaloneBinary(standalone_uuid, standalone_value,
1173 standalone_value_is_offset)) {
1174 if (standalone_uuid.
IsValid()) {
1176 bin_spec.
uuid = standalone_uuid;
1177 bin_spec.
value = standalone_value;
1182 llvm::Expected<ModuleSP> module =
1186 << llvm::toString(module.takeError()) <<
"\n";
1198 std::vector<addr_t> bin_addrs =
m_gdb_comm.GetProcessStandaloneBinaries();
1199 if (bin_addrs.size()) {
1200 for (
addr_t addr : bin_addrs) {
1201 const bool notify =
true;
1208 .LoadPlatformBinaryAndSetup(
this, addr, notify))
1213 bin_spec.
value = addr;
1215 bin_spec.
notify = notify;
1217 llvm::Expected<ModuleSP> module =
1221 << llvm::toString(module.takeError()) <<
"\n";
1231 std::optional<QOffsets> offsets =
m_gdb_comm.GetQOffsets();
1236 size_t(llvm::count(offsets->offsets, offsets->offsets[0])) ==
1237 offsets->offsets.size();
1241 bool changed =
false;
1242 module_sp->SetLoadAddress(
GetTarget(), offsets->offsets[0],
1247 m_process->GetTarget().ModulesDidLoad(list);
1261 LLDB_LOGF(log,
"ProcessGDBRemote::%s()", __FUNCTION__);
1267 if (
error.Success()) {
1271 const int packet_len =
1272 ::snprintf(packet,
sizeof(packet),
"vAttach;%" PRIx64, attach_pid);
1275 std::make_shared<EventDataBytes>(llvm::StringRef(packet, packet_len));
1290 if (process_name && process_name[0]) {
1292 if (
error.Success()) {
1298 if (!
m_gdb_comm.GetVAttachOrWaitSupported()) {
1313 auto data_sp = std::make_shared<EventDataBytes>(packet.
GetString());
1334llvm::Expected<std::string>
1339llvm::Expected<std::vector<uint8_t>>
1351 process_arch.
Clear();
1367 return m_gdb_comm.GetReverseStepSupported() ||
1374 LLDB_LOGF(log,
"ProcessGDBRemote::Resume(%s)",
1379 if (listener_sp->StartListeningForEvents(
1381 listener_sp->StartListeningForEvents(
1388 bool continue_packet_error =
false;
1402 std::string pid_prefix;
1404 pid_prefix = llvm::formatv(
"p{0:x-}.",
GetID());
1406 if (num_continue_c_tids == num_threads ||
1411 continue_packet.
Format(
"vCont;c:{0}-1", pid_prefix);
1419 for (tid_collection::const_iterator
1422 t_pos != t_end; ++t_pos)
1423 continue_packet.
Format(
";c:{0}{1:x-}", pid_prefix, *t_pos);
1425 continue_packet_error =
true;
1430 for (tid_sig_collection::const_iterator
1433 s_pos != s_end; ++s_pos)
1434 continue_packet.
Format(
";C{0:x-2}:{1}{2:x-}", s_pos->second,
1435 pid_prefix, s_pos->first);
1437 continue_packet_error =
true;
1442 for (tid_collection::const_iterator
1445 t_pos != t_end; ++t_pos)
1446 continue_packet.
Format(
";s:{0}{1:x-}", pid_prefix, *t_pos);
1448 continue_packet_error =
true;
1453 for (tid_sig_collection::const_iterator
1456 s_pos != s_end; ++s_pos)
1457 continue_packet.
Format(
";S{0:x-2}:{1}{2:x-}", s_pos->second,
1458 pid_prefix, s_pos->first);
1460 continue_packet_error =
true;
1463 if (continue_packet_error)
1464 continue_packet.
Clear();
1467 continue_packet_error =
true;
1473 if (num_continue_c_tids > 0) {
1474 if (num_continue_c_tids == num_threads) {
1478 continue_packet_error =
false;
1479 }
else if (num_continue_c_tids == 1 && num_continue_C_tids == 0 &&
1480 num_continue_s_tids == 0 && num_continue_S_tids == 0) {
1484 continue_packet_error =
false;
1488 if (continue_packet_error && num_continue_C_tids > 0) {
1489 if ((num_continue_C_tids + num_continue_c_tids) == num_threads &&
1490 num_continue_C_tids > 0 && num_continue_s_tids == 0 &&
1491 num_continue_S_tids == 0) {
1494 if (num_continue_C_tids > 1) {
1499 if (num_continue_C_tids > 1) {
1500 continue_packet_error =
false;
1503 continue_packet_error =
true;
1506 if (!continue_packet_error)
1510 continue_packet_error =
false;
1513 if (!continue_packet_error) {
1515 continue_packet.
Printf(
"C%2.2x", continue_signo);
1520 if (continue_packet_error && num_continue_s_tids > 0) {
1521 if (num_continue_s_tids == num_threads) {
1527 continue_packet_error =
false;
1528 }
else if (num_continue_c_tids == 0 && num_continue_C_tids == 0 &&
1529 num_continue_s_tids == 1 && num_continue_S_tids == 0) {
1533 continue_packet_error =
false;
1537 if (!continue_packet_error && num_continue_S_tids > 0) {
1538 if (num_continue_S_tids == num_threads) {
1541 continue_packet_error =
false;
1542 if (num_continue_S_tids > 1) {
1543 for (
size_t i = 1; i < num_threads; ++i) {
1545 continue_packet_error =
true;
1548 if (!continue_packet_error) {
1551 continue_packet.
Printf(
"S%2.2x", step_signo);
1553 }
else if (num_continue_c_tids == 0 && num_continue_C_tids == 0 &&
1554 num_continue_s_tids == 0 && num_continue_S_tids == 1) {
1558 continue_packet_error =
false;
1564 if (num_continue_s_tids > 0 || num_continue_S_tids > 0) {
1566 LLDB_LOGF(log,
"ProcessGDBRemote::DoResume: target does not "
1567 "support reverse-stepping");
1569 "target does not support reverse-stepping");
1572 if (num_continue_S_tids > 0) {
1575 "ProcessGDBRemote::DoResume: Signals not supported in reverse");
1577 "can't deliver signals while running in reverse");
1580 if (num_continue_s_tids > 1) {
1581 LLDB_LOGF(log,
"ProcessGDBRemote::DoResume: can't step multiple "
1582 "threads in reverse");
1584 "can't step multiple threads while reverse-stepping");
1590 if (!
m_gdb_comm.GetReverseContinueSupported()) {
1591 LLDB_LOGF(log,
"ProcessGDBRemote::DoResume: target does not "
1592 "support reverse-continue");
1594 "target does not support reverse execution of processes");
1597 if (num_continue_C_tids > 0) {
1600 "ProcessGDBRemote::DoResume: Signals not supported in reverse");
1602 "can't deliver signals while running in reverse");
1610 continue_packet_error =
false;
1613 if (continue_packet_error) {
1615 "can't make continue packet for this resume");
1620 "Trying to resume but the async thread is dead.");
1621 LLDB_LOGF(log,
"ProcessGDBRemote::DoResume: Trying to resume but the "
1622 "async thread is dead.");
1627 std::make_shared<EventDataBytes>(continue_packet.
GetString());
1630 if (!listener_sp->GetEvent(event_sp, ResumeTimeout())) {
1632 LLDB_LOGF(log,
"ProcessGDBRemote::DoResume: Resume timed out.");
1635 "Broadcast continue, but the async thread was "
1636 "killed before we got an ack back.");
1638 "ProcessGDBRemote::DoResume: Broadcast continue, but the "
1639 "async thread was killed before we got an ack back.");
1655 llvm::StringRef value) {
1661 auto pid_tid = thread_ids.
GetPidTid(pid);
1662 if (pid_tid && pid_tid->first == pid) {
1668 }
while (thread_ids.
GetChar() ==
',');
1674 llvm::StringRef value) {
1676 for (llvm::StringRef x : llvm::split(value,
',')) {
1678 if (llvm::to_integer(x,
pc, 16))
1688 if (threads_info_sp) {
1691 if (thread_infos && thread_infos->
GetSize() > 0) {
1715 const llvm::StringRef stop_info_str = stop_info.
GetStringRef();
1718 const size_t thread_pcs_pos = stop_info_str.find(
";thread-pcs:");
1719 if (thread_pcs_pos != llvm::StringRef::npos) {
1720 const size_t start = thread_pcs_pos + strlen(
";thread-pcs:");
1721 const size_t end = stop_info_str.find(
';', start);
1722 if (end != llvm::StringRef::npos) {
1723 llvm::StringRef value = stop_info_str.substr(start, end - start);
1728 const size_t threads_pos = stop_info_str.find(
";threads:");
1729 if (threads_pos != llvm::StringRef::npos) {
1730 const size_t start = threads_pos + strlen(
";threads:");
1731 const size_t end = stop_info_str.find(
';', start);
1732 if (end != llvm::StringRef::npos) {
1733 llvm::StringRef value = stop_info_str.substr(start, end - start);
1741 bool sequence_mutex_unavailable =
false;
1743 if (sequence_mutex_unavailable) {
1758 if (num_thread_ids == 0) {
1764 ThreadList old_thread_list_copy(old_thread_list);
1765 if (num_thread_ids > 0) {
1766 for (
size_t i = 0; i < num_thread_ids; ++i) {
1773 thread_sp.get(), thread_sp->GetID());
1776 thread_sp.get(), thread_sp->GetID());
1786 size_t old_num_thread_ids = old_thread_list_copy.
GetSize(
false);
1787 for (
size_t i = 0; i < old_num_thread_ids; i++) {
1789 if (old_thread_sp) {
1790 lldb::tid_t old_thread_id = old_thread_sp->GetProtocolID();
1805 uint32_t pc_regnum = reg_ctx_sp->ConvertRegisterKindToRegisterNumber(
1818 if (thread_infos_sp) {
1822 const size_t n = thread_infos->
GetSize();
1823 for (
size_t i = 0; i < n; ++i) {
1829 if (tid == thread->GetID())
1855 addr_t pc = thread->GetRegisterContext()->GetPC();
1857 thread->GetProcess()->GetBreakpointSiteList().FindByAddress(
pc);
1859 thread->SetThreadStoppedAtUnexecutedBP(
pc);
1867 if (
GetGDBRemote().GetThreadStopInfo(thread->GetProtocolID(), stop_packet))
1877 for (
const auto &pair : expedited_register_map) {
1878 uint32_t lldb_regnum = gdb_reg_ctx_sp->ConvertRegisterKindToRegisterNumber(
1888 reg_value_extractor.
GetHexBytes(buffer_sp->GetData(),
'\xcc');
1896 uint8_t signo,
const std::string &thread_name,
const std::string &reason,
1897 const std::string &description, uint32_t exc_type,
1898 const std::vector<addr_t> &exc_data,
addr_t thread_dispatch_qaddr,
1899 bool queue_vars_valid,
1901 LazyBool associated_with_dispatch_queue,
addr_t dispatch_queue_t,
1902 std::string &queue_name,
QueueKind queue_kind, uint64_t queue_serial,
1903 std::vector<lldb::addr_t> &added_binaries,
1928 reg_ctx_sp->InvalidateIfNeeded(
true);
1936 if (reg_ctx_sp->ReconfigureRegisterInfo()) {
1939 reg_ctx_sp->InvalidateAllRegisters();
1946 thread_sp->SetName(thread_name.empty() ?
nullptr : thread_name.c_str());
1951 if (queue_vars_valid)
1952 gdb_thread->
SetQueueInfo(std::move(queue_name), queue_kind, queue_serial,
1953 dispatch_queue_t, associated_with_dispatch_queue);
1967 StopInfoSP current_stop_info_sp = thread_sp->GetPrivateStopInfo(
false);
1969 current_stop_info_sp) {
1970 thread_sp->SetStopInfo(current_stop_info_sp);
1974 if (!thread_sp->StopInfoIsUpToDate()) {
1977 addr_t pc = thread_sp->GetRegisterContext()->GetPC();
1979 thread_sp->GetProcess()->GetBreakpointSiteList().FindByAddress(
pc);
1981 thread_sp->SetThreadStoppedAtUnexecutedBP(
pc);
1983 if (exc_type != 0) {
1991 if (interrupt_thread)
1992 thread_sp = interrupt_thread;
1994 const size_t exc_data_size = exc_data.size();
1995 thread_sp->SetStopInfo(
1997 *thread_sp, exc_type, exc_data_size,
1998 exc_data_size >= 1 ? exc_data[0] : 0,
1999 exc_data_size >= 2 ? exc_data[1] : 0,
2000 exc_data_size >= 3 ? exc_data[2] : 0));
2003 bool handled =
false;
2004 bool did_exec =
false;
2007 if (!reason.empty() && reason !=
"none") {
2008 if (reason ==
"trace") {
2011 }
else if (reason ==
"breakpoint") {
2012 thread_sp->SetThreadHitBreakpointSite();
2020 if (bp_site_sp->ValidForThisThread(*thread_sp)) {
2021 thread_sp->SetStopInfo(
2023 *thread_sp, bp_site_sp->GetID()));
2026 thread_sp->SetStopInfo(invalid_stop_info_sp);
2029 }
else if (reason ==
"trap") {
2031 }
else if (reason ==
"watchpoint") {
2067 bool silently_continue =
false;
2077 silently_continue =
true;
2081 if (!wp_resource_sp) {
2083 LLDB_LOGF(log,
"failed to find watchpoint");
2090 watch_id = wp_resource_sp->GetConstituentAtIndex(0)->GetID();
2093 *thread_sp, watch_id, silently_continue));
2095 }
else if (reason ==
"exception") {
2097 *thread_sp, description.c_str()));
2099 }
else if (reason ==
"history boundary") {
2101 *thread_sp, description.c_str()));
2103 }
else if (reason ==
"exec") {
2105 thread_sp->SetStopInfo(
2108 }
else if (reason ==
"processor trace") {
2110 *thread_sp, description.c_str()));
2111 }
else if (reason ==
"fork") {
2116 thread_sp->SetStopInfo(
2119 }
else if (reason ==
"vfork") {
2125 *thread_sp, child_pid, child_tid));
2127 }
else if (reason ==
"vforkdone") {
2128 thread_sp->SetStopInfo(
2134 if (!handled && signo && !did_exec) {
2155 thread_sp->GetProcess()->GetBreakpointSiteList().FindByAddress(
2165 thread_sp->SetThreadHitBreakpointSite();
2167 if (bp_site_sp->ValidForThisThread(*thread_sp)) {
2169 thread_sp->GetRegisterContext()->SetPC(
pc);
2170 thread_sp->SetStopInfo(
2172 *thread_sp, bp_site_sp->GetID()));
2175 thread_sp->SetStopInfo(invalid_stop_info_sp);
2181 thread_sp->SetStopInfo(
2185 *thread_sp, signo, description.c_str()));
2196 if (interrupt_thread)
2197 thread_sp = interrupt_thread;
2200 *thread_sp, signo, description.c_str()));
2204 if (!description.empty()) {
2207 const char *stop_info_desc = stop_info_sp->GetDescription();
2208 if (!stop_info_desc || !stop_info_desc[0])
2209 stop_info_sp->SetDescription(description.c_str());
2212 *thread_sp, description.c_str()));
2222 const std::string &description) {
2231 *thread_sp, signo, description.c_str()));
2240 static constexpr llvm::StringLiteral g_key_tid(
"tid");
2241 static constexpr llvm::StringLiteral g_key_name(
"name");
2242 static constexpr llvm::StringLiteral g_key_reason(
"reason");
2243 static constexpr llvm::StringLiteral g_key_metype(
"metype");
2244 static constexpr llvm::StringLiteral g_key_medata(
"medata");
2245 static constexpr llvm::StringLiteral g_key_qaddr(
"qaddr");
2246 static constexpr llvm::StringLiteral g_key_dispatch_queue_t(
2247 "dispatch_queue_t");
2248 static constexpr llvm::StringLiteral g_key_associated_with_dispatch_queue(
2249 "associated_with_dispatch_queue");
2250 static constexpr llvm::StringLiteral g_key_queue_name(
"qname");
2251 static constexpr llvm::StringLiteral g_key_queue_kind(
"qkind");
2252 static constexpr llvm::StringLiteral g_key_queue_serial_number(
"qserialnum");
2253 static constexpr llvm::StringLiteral g_key_registers(
"registers");
2254 static constexpr llvm::StringLiteral g_key_memory(
"memory");
2255 static constexpr llvm::StringLiteral g_key_description(
"description");
2256 static constexpr llvm::StringLiteral g_key_signal(
"signal");
2257 static constexpr llvm::StringLiteral g_key_added_binaries(
"added-binaries");
2258 static constexpr llvm::StringLiteral g_key_detailed_binaries_info(
2259 "detailed-binaries-info");
2264 std::string thread_name;
2266 std::string description;
2267 uint32_t exc_type = 0;
2268 std::vector<addr_t> exc_data;
2271 bool queue_vars_valid =
false;
2274 std::string queue_name;
2276 uint64_t queue_serial_number = 0;
2277 std::vector<addr_t> added_binaries;
2283 thread_dict->
ForEach([
this, &tid, &expedited_register_map, &thread_name,
2284 &signo, &reason, &description, &exc_type, &exc_data,
2285 &thread_dispatch_qaddr, &queue_vars_valid,
2286 &associated_with_dispatch_queue, &dispatch_queue_t,
2287 &queue_name, &queue_kind, &queue_serial_number,
2288 &added_binaries, &detailed_binaries_info](
2289 llvm::StringRef key,
2291 if (key == g_key_tid) {
2294 }
else if (key == g_key_metype) {
2296 exc_type =
object->GetUnsignedIntegerValue(0);
2297 }
else if (key == g_key_medata) {
2302 exc_data.push_back(object->GetUnsignedIntegerValue());
2306 }
else if (key == g_key_name) {
2307 thread_name = std::string(object->GetStringValue());
2308 }
else if (key == g_key_qaddr) {
2309 thread_dispatch_qaddr =
2311 }
else if (key == g_key_queue_name) {
2312 queue_vars_valid =
true;
2313 queue_name = std::string(object->GetStringValue());
2314 }
else if (key == g_key_queue_kind) {
2315 std::string queue_kind_str = std::string(object->GetStringValue());
2316 if (queue_kind_str ==
"serial") {
2317 queue_vars_valid =
true;
2319 }
else if (queue_kind_str ==
"concurrent") {
2320 queue_vars_valid =
true;
2323 }
else if (key == g_key_queue_serial_number) {
2324 queue_serial_number =
object->GetUnsignedIntegerValue(0);
2325 if (queue_serial_number != 0)
2326 queue_vars_valid =
true;
2327 }
else if (key == g_key_dispatch_queue_t) {
2328 dispatch_queue_t =
object->GetUnsignedIntegerValue(0);
2330 queue_vars_valid =
true;
2331 }
else if (key == g_key_associated_with_dispatch_queue) {
2332 queue_vars_valid =
true;
2333 bool associated =
object->GetBooleanValue();
2338 }
else if (key == g_key_reason) {
2339 reason = std::string(object->GetStringValue());
2340 }
else if (key == g_key_description) {
2341 description = std::string(object->GetStringValue());
2342 }
else if (key == g_key_registers) {
2345 if (registers_dict) {
2347 [&expedited_register_map](llvm::StringRef key,
2350 if (llvm::to_integer(key, reg))
2351 expedited_register_map[reg] =
2352 std::string(object->GetStringValue());
2356 }
else if (key == g_key_memory) {
2362 if (mem_cache_dict) {
2365 "address", mem_cache_addr)) {
2367 llvm::StringRef str;
2372 const size_t byte_size = bytes.
GetStringRef().size() / 2;
2375 const size_t bytes_copied =
2377 if (bytes_copied == byte_size)
2386 }
else if (key == g_key_signal)
2388 else if (key == g_key_added_binaries) {
2391 array->
ForEach([&added_binaries](
2394 object->GetAsUnsignedInteger();
2398 added_binaries.push_back(value);
2403 }
else if (key == g_key_detailed_binaries_info) {
2408 if (object->GetAsDictionary()) {
2410 object->Dump(json_str);
2411 detailed_binaries_info =
2419 tid, expedited_register_map, signo, thread_name, reason, description,
2420 exc_type, exc_data, thread_dispatch_qaddr, queue_vars_valid,
2421 associated_with_dispatch_queue, dispatch_queue_t, queue_name, queue_kind,
2422 queue_serial_number, added_binaries, detailed_binaries_info);
2428 const char stop_type = stop_packet.
GetChar();
2429 switch (stop_type) {
2448 const uint8_t signo = stop_packet.
GetHexU8();
2449 llvm::StringRef key;
2450 llvm::StringRef value;
2451 std::string thread_name;
2453 std::string description;
2454 std::vector<addr_t> added_binaries;
2456 uint32_t exc_type = 0;
2457 std::vector<addr_t> exc_data;
2459 bool queue_vars_valid =
2463 std::string queue_name;
2465 uint64_t queue_serial_number = 0;
2469 if (key.compare(
"metype") == 0) {
2471 value.getAsInteger(
BASE_16, exc_type);
2472 }
else if (key.compare(
"medata") == 0) {
2475 value.getAsInteger(
BASE_16, x);
2476 exc_data.push_back(x);
2477 }
else if (key.compare(
"thread") == 0) {
2480 auto pid_tid = thread_id.
GetPidTid(pid);
2482 stop_pid = pid_tid->first;
2483 tid = pid_tid->second;
2486 }
else if (key.compare(
"threads") == 0) {
2487 std::lock_guard<std::recursive_mutex> guard(
2490 }
else if (key.compare(
"thread-pcs") == 0) {
2495 while (!value.empty()) {
2496 llvm::StringRef pc_str;
2497 std::tie(pc_str, value) = value.split(
',');
2502 }
else if (key.compare(
"jstopinfo") == 0) {
2511 }
else if (key.compare(
"hexname") == 0) {
2515 }
else if (key.compare(
"name") == 0) {
2516 thread_name = std::string(value);
2517 }
else if (key.compare(
"qaddr") == 0) {
2518 value.getAsInteger(
BASE_16, thread_dispatch_qaddr);
2519 }
else if (key.compare(
"dispatch_queue_t") == 0) {
2520 queue_vars_valid =
true;
2521 value.getAsInteger(
BASE_16, dispatch_queue_t);
2522 }
else if (key.compare(
"qname") == 0) {
2523 queue_vars_valid =
true;
2527 }
else if (key.compare(
"qkind") == 0) {
2528 queue_kind = llvm::StringSwitch<QueueKind>(value)
2533 }
else if (key.compare(
"qserialnum") == 0) {
2534 if (!value.getAsInteger(
BASE_10, queue_serial_number))
2535 queue_vars_valid =
true;
2536 }
else if (key.compare(
"reason") == 0) {
2537 reason = std::string(value);
2538 }
else if (key.compare(
"description") == 0) {
2542 }
else if (key.compare(
"memory") == 0) {
2556 llvm::StringRef addr_str, bytes_str;
2557 std::tie(addr_str, bytes_str) = value.split(
'=');
2558 if (!addr_str.empty() && !bytes_str.empty()) {
2565 const size_t bytes_copied =
2567 if (bytes_copied == byte_size)
2571 }
else if (key.compare(
"watch") == 0 || key.compare(
"rwatch") == 0 ||
2572 key.compare(
"awatch") == 0) {
2575 value.getAsInteger(
BASE_16, wp_addr);
2583 reason =
"watchpoint";
2585 ostr.
Printf(
"%" PRIu64, wp_addr);
2586 description = std::string(ostr.
GetString());
2587 }
else if (key.compare(
"swbreak") == 0 || key.compare(
"hwbreak") == 0) {
2588 reason =
"breakpoint";
2589 }
else if (key.compare(
"replaylog") == 0) {
2590 reason =
"history boundary";
2591 }
else if (key.compare(
"library") == 0) {
2597 }
else if (key.compare(
"fork") == 0 || key.compare(
"vfork") == 0) {
2603 LLDB_LOG(log,
"Invalid PID/TID to fork: {0}", value);
2609 ostr.
Printf(
"%" PRIu64
" %" PRIu64, pid_tid->first, pid_tid->second);
2610 description = std::string(ostr.
GetString());
2611 }
else if (key.compare(
"addressing_bits") == 0) {
2612 uint64_t addressing_bits;
2613 if (!value.getAsInteger(
BASE_10, addressing_bits)) {
2616 }
else if (key.compare(
"low_mem_addressing_bits") == 0) {
2617 uint64_t addressing_bits;
2618 if (!value.getAsInteger(
BASE_10, addressing_bits)) {
2621 }
else if (key.compare(
"high_mem_addressing_bits") == 0) {
2622 uint64_t addressing_bits;
2623 if (!value.getAsInteger(
BASE_10, addressing_bits)) {
2626 }
else if (key ==
"added-binaries") {
2630 while (!value.empty()) {
2631 llvm::StringRef pc_str;
2632 std::tie(pc_str, value) = value.split(
',');
2635 added_binaries.push_back(
pc);
2637 }
else if (key ==
"detailed-binaries-info") {
2645 }
else if (key.size() == 2 && ::isxdigit(key[0]) && ::isxdigit(key[1])) {
2647 if (!key.getAsInteger(
BASE_16, reg))
2648 expedited_register_map[reg] = std::string(std::move(value));
2658 "Received stop for incorrect PID = {0} (inferior PID = {1})",
2680 tid, expedited_register_map, signo, thread_name, reason, description,
2681 exc_type, exc_data, thread_dispatch_qaddr, queue_vars_valid,
2682 associated_with_dispatch_queue, dispatch_queue_t, queue_name,
2683 queue_kind, queue_serial_number, added_binaries,
2684 detailed_binaries_info);
2732 if (!selected_thread_sp ||
2733 selected_thread_sp->GetID() != primary_thread_sp->GetID())
2734 m_thread_list.SetSelectedThreadByID(primary_thread_sp->GetID());
2761 LLDB_LOGF(log,
"ProcessGDBRemote::DoDetach(keep_stopped: %i)", keep_stopped);
2765 if (
error.Success())
2767 "ProcessGDBRemote::DoDetach() detach packet sent successfully");
2770 "ProcessGDBRemote::DoDetach() detach packet send failed: %s",
2771 error.AsCString() ?
error.AsCString() :
"<unknown error>");
2774 if (!
error.Success())
2789 LLDB_LOGF(log,
"ProcessGDBRemote::DoDestroy()");
2792 int exit_status = SIGABRT;
2793 std::string exit_string;
2800 exit_status = kill_res.get();
2801#if defined(__APPLE__)
2813 if (platform_sp && platform_sp->IsHost()) {
2816 reap_pid = waitpid(
GetID(), &status, WNOHANG);
2817 LLDB_LOGF(log,
"Reaped pid: %d, status: %d.\n", reap_pid, status);
2821 exit_string.assign(
"killed");
2823 exit_string.assign(llvm::toString(kill_res.takeError()));
2826 exit_string.assign(
"killed or interrupted while attaching.");
2832 exit_string.assign(
"destroying when not connected to debugserver");
2853 const bool did_exec =
2854 response.
GetStringRef().find(
";reason:exec;") != std::string::npos;
2857 LLDB_LOGF(log,
"ProcessGDBRemote::SetLastStopPacket () - detected exec");
2862 m_gdb_comm.ResetDiscoverableSettings(did_exec);
2887 LLDB_LOG_ERROR(log, list.takeError(),
"Failed to read module list: {0}.");
2889 addr = list->m_link_map;
2905 if (threads_info_sp) {
2910 const size_t n = thread_infos->
GetSize();
2911 for (
size_t i = 0; i < n; ++i) {
2935 xPacketState x_state =
m_gdb_comm.GetxPacketState();
2938 size_t max_memory_size = x_state != xPacketState::Unimplemented
2941 if (size > max_memory_size) {
2945 size = max_memory_size;
2958 llvm::formatv(
";address_space:{0};", llvm::utohexstr(addr_space,
true));
2959 if (info->is_thread_specific) {
2960 std::optional<lldb::tid_t> tid = process_addr.
GetThreadID();
2963 "address space \"%s\" is thread specific, but no thread was "
2965 info->name.c_str());
2968 suffix += llvm::formatv(
"thread:{0};", llvm::utohexstr(*tid,
true));
2974 ::snprintf(packet,
sizeof(packet),
"%c%" PRIx64
",%" PRIx64
"%s",
2975 x_state != xPacketState::Unimplemented ?
'x' :
'm',
2976 (uint64_t)addr, (uint64_t)size, suffix.c_str());
2977 assert(packet_len + 1 < (
int)
sizeof(packet));
2980 if (
m_gdb_comm.SendPacketAndWaitForResponse(packet, response,
2985 if (x_state != xPacketState::Unimplemented) {
2990 llvm::StringRef data_received = response.
GetStringRef();
2991 if (x_state == xPacketState::Prefixed &&
2992 !data_received.consume_front(
"b")) {
2994 "unexpected response to GDB server memory read packet '{0}': "
2996 packet, data_received);
3001 size_t memcpy_size = std::min(size, data_received.size());
3002 memcpy(buf, data_received.data(), memcpy_size);
3006 llvm::MutableArrayRef<uint8_t>((uint8_t *)buf, size),
'\xdd');
3010 "memory read failed for 0x%" PRIx64, addr);
3013 "GDB server does not support reading memory");
3016 "unexpected response to GDB server memory read packet '%s': '%s'",
3028 uint64_t max_packet_size,
3032 constexpr uint64_t range_overhead = 33;
3033 uint64_t current_size = 0;
3034 for (
auto [idx, range] : llvm::enumerate(ranges)) {
3035 uint64_t potential_size = current_size + range.size + range_overhead;
3036 if (potential_size > max_packet_size) {
3039 "MultiMemRead input has a range (base = {0:x}, size = {1}) "
3040 "bigger than the maximum allowed by remote",
3041 range.base, range.size);
3045 return ranges.size();
3048llvm::SmallVector<llvm::MutableArrayRef<uint8_t>>
3051 llvm::MutableArrayRef<uint8_t> buffer) {
3055 const llvm::ArrayRef<Range<lldb::addr_t, size_t>> original_ranges = ranges;
3056 llvm::SmallVector<llvm::MutableArrayRef<uint8_t>> memory_regions;
3058 while (!ranges.empty()) {
3059 uint64_t num_ranges =
3061 if (num_ranges == 0)
3064 auto ranges_for_request = ranges.take_front(num_ranges);
3065 ranges = ranges.drop_front(num_ranges);
3067 llvm::Expected<StringExtractorGDBRemote> response =
3071 "MultiMemRead error response: {0}");
3075 llvm::StringRef response_str = response->GetStringRef();
3076 const unsigned expected_num_ranges = ranges_for_request.size();
3078 response_str, buffer, expected_num_ranges, memory_regions)) {
3080 "MultiMemRead error parsing response: {0}");
3084 return memory_regions;
3087llvm::Expected<StringExtractorGDBRemote>
3090 std::string packet_str;
3091 llvm::raw_string_ostream stream(packet_str);
3092 stream <<
"MultiMemRead:ranges:";
3094 auto range_to_stream = [&](
auto range) {
3096 stream << llvm::formatv(
"{0:x-},{1:x-}", range.base, range.size);
3098 llvm::interleave(ranges, stream, range_to_stream,
",");
3103 m_gdb_comm.SendPacketAndWaitForResponse(packet_str.data(), response,
3106 return llvm::createStringErrorV(
"MultiMemRead failed to send packet: '{0}'",
3110 return llvm::createStringErrorV(
"MultiMemRead failed: '{0}'",
3114 return llvm::createStringErrorV(
"MultiMemRead unexpected response: '{0}'",
3121 llvm::StringRef response_str, llvm::MutableArrayRef<uint8_t> buffer,
3122 unsigned expected_num_ranges,
3125 auto [sizes_str, memory_data] = response_str.split(
';');
3126 if (sizes_str.size() == response_str.size())
3127 return llvm::createStringErrorV(
3128 "MultiMemRead response missing field separator ';' in: '{0}'",
3132 for (llvm::StringRef size_str : llvm::split(sizes_str,
',')) {
3134 if (size_str.getAsInteger(
BASE_16, read_size))
3135 return llvm::createStringErrorV(
3136 "MultiMemRead response has invalid size string: {0}", size_str);
3138 if (memory_data.size() < read_size)
3139 return llvm::createStringErrorV(
"MultiMemRead response did not have "
3140 "enough data, requested sizes: {0}",
3143 llvm::StringRef region_to_read = memory_data.take_front(read_size);
3144 memory_data = memory_data.drop_front(read_size);
3146 assert(buffer.size() >= read_size);
3147 llvm::MutableArrayRef<uint8_t> region_to_write =
3148 buffer.take_front(read_size);
3149 buffer = buffer.drop_front(read_size);
3151 memcpy(region_to_write.data(), region_to_read.data(), read_size);
3152 memory_regions.push_back(region_to_write);
3155 return llvm::Error::success();
3159 return m_gdb_comm.GetMemoryTaggingSupported();
3162llvm::Expected<std::vector<uint8_t>>
3169 return llvm::createStringError(llvm::inconvertibleErrorCode(),
3170 "Error reading memory tags from remote");
3174 llvm::ArrayRef<uint8_t> tag_data = buffer_sp->GetData();
3175 std::vector<uint8_t> got;
3176 got.reserve(tag_data.size());
3177 std::copy(tag_data.begin(), tag_data.end(), std::back_inserter(got));
3183 const std::vector<uint8_t> &tags) {
3186 return m_gdb_comm.WriteMemoryTags(addr, len, type, tags);
3190 std::vector<ObjectFile::LoadableData> entries) {
3200 if (
error.Success())
3214 for (
size_t i = 0; i < size; ++i)
3239 if (blocksize == 0) {
3247 lldb::addr_t block_start_addr = addr - (addr % blocksize);
3248 size += (addr - block_start_addr);
3249 if ((size % blocksize) != 0)
3250 size += (blocksize - size % blocksize);
3266 auto overlap = last_range.GetRangeEnd() - range.
GetRangeBase();
3287 "flash erase failed for 0x%" PRIx64, addr);
3290 "GDB server does not support flashing");
3293 "unexpected response to GDB server flash erase packet '%s': '%s'",
3310 if (
m_gdb_comm.SendPacketAndWaitForResponse(
"vFlashDone", response,
3320 "GDB server does not support flashing");
3323 "unexpected response to GDB server flash done packet: '%s'",
3338 if (size > max_memory_size) {
3342 size = max_memory_size;
3362 if (!
error.Success())
3364 packet.
Printf(
"vFlashWrite:%" PRIx64
":", addr);
3367 packet.
Printf(
"M%" PRIx64
",%" PRIx64
":", addr, (uint64_t)size);
3380 "memory write failed for 0x%" PRIx64, addr);
3383 "GDB server does not support writing memory");
3386 "unexpected response to GDB server memory write packet '%s': '%s'",
3396 uint32_t permissions,
3402 allocated_addr =
m_gdb_comm.AllocateMemory(size, permissions);
3405 return allocated_addr;
3411 if (permissions & lldb::ePermissionsReadable)
3413 if (permissions & lldb::ePermissionsWritable)
3415 if (permissions & lldb::ePermissionsExecutable)
3424 "ProcessGDBRemote::%s no direct stub support for memory "
3425 "allocation, and InferiorCallMmap also failed - is stub "
3426 "missing register context save/restore capability?",
3433 "unable to allocate %" PRIu64
" bytes of memory with permissions %s",
3437 return allocated_addr;
3452 return m_gdb_comm.GetWatchpointReportedAfter();
3459 switch (supported) {
3464 "tried to deallocate memory without ever allocating memory");
3470 "unable to deallocate memory at 0x%" PRIx64, addr);
3482 "unable to deallocate memory at 0x%" PRIx64, addr);
3515 uint8_t error_no = gdb_comm.SendGDBStoppointTypePacket(
3517 if (error_no == 0) {
3520 return llvm::Error::success();
3523 if (error_no != UINT8_MAX)
3524 return llvm::createStringErrorV(
3525 "error sending the breakpoint request: {0}", error_no);
3526 return llvm::createStringError(
"error sending the breakpoint request");
3528 LLDB_LOG(log,
"Software breakpoints are unsupported");
3533 uint8_t error_no = gdb_comm.SendGDBStoppointTypePacket(
3535 if (error_no == 0) {
3538 return llvm::Error::success();
3541 if (error_no != UINT8_MAX)
3542 return llvm::createStringErrorV(
3543 "error sending the hardware breakpoint request: {0} "
3544 "(hardware breakpoint resources might be exhausted or unavailable)",
3546 return llvm::createStringError(
3547 "error sending the hardware breakpoint request "
3548 "(hardware breakpoint resources might be exhausted or unavailable)");
3550 LLDB_LOG(log,
"Hardware breakpoints are unsupported");
3554 return llvm::createStringError(
"hardware breakpoints are not supported");
3570 return error.takeError();
3576 return llvm::createStringError(
"unknown error");
3581 return llvm::createStringError(
"unknown error");
3585 return llvm::Error::success();
3589 assert(bp_site !=
nullptr);
3600 "ProcessGDBRemote::EnableBreakpointSite (size_id = %" PRIu64
3601 ") address = 0x%" PRIx64,
3602 site_id, (uint64_t)addr);
3607 "ProcessGDBRemote::EnableBreakpointSite (size_id = %" PRIu64
3608 ") address = 0x%" PRIx64
" -- SUCCESS (already enabled)",
3609 site_id, (uint64_t)addr);
3617 assert(bp_site !=
nullptr);
3622 "ProcessGDBRemote::DisableBreakpointSite (site_id = %" PRIu64
3623 ") addr = 0x%8.8" PRIx64,
3624 site_id, (uint64_t)addr);
3628 "ProcessGDBRemote::DisableBreakpointSite (site_id = %" PRIu64
3629 ") addr = 0x%8.8" PRIx64
" -- SUCCESS (already disabled)",
3630 site_id, (uint64_t)addr);
3641 bool read = wp_res_sp->WatchpointResourceRead();
3642 bool write = wp_res_sp->WatchpointResourceWrite();
3644 assert((read || write) &&
3645 "WatchpointResource type is neither read nor write");
3661 addr_t addr = wp_sp->GetLoadAddress();
3663 LLDB_LOGF(log,
"ProcessGDBRemote::EnableWatchpoint(watchID = %" PRIu64
")",
3665 if (wp_sp->IsEnabled()) {
3667 "ProcessGDBRemote::EnableWatchpoint(watchID = %" PRIu64
3668 ") addr = 0x%8.8" PRIx64
": watchpoint already enabled.",
3669 watchID, (uint64_t)addr);
3673 bool read = wp_sp->WatchpointRead();
3674 bool write = wp_sp->WatchpointWrite() || wp_sp->WatchpointModify();
3675 size_t size = wp_sp->GetByteSize();
3678 WatchpointHardwareFeature supported_features =
3681 std::vector<WatchpointResourceSP> resources =
3683 addr, size, read, write, supported_features, target_arch);
3708 bool set_all_resources =
true;
3709 std::vector<WatchpointResourceSP> succesfully_set_resources;
3710 for (
const auto &wp_res_sp : resources) {
3711 addr_t addr = wp_res_sp->GetLoadAddress();
3712 size_t size = wp_res_sp->GetByteSize();
3714 if (!
m_gdb_comm.SupportsGDBStoppointPacket(type) ||
3715 m_gdb_comm.SendGDBStoppointTypePacket(type,
true, addr, size,
3717 set_all_resources =
false;
3720 succesfully_set_resources.push_back(wp_res_sp);
3723 if (set_all_resources) {
3724 wp_sp->SetEnabled(
true, notify);
3725 for (
const auto &wp_res_sp : resources) {
3728 wp_res_sp->AddConstituent(wp_sp);
3736 for (
const auto &wp_res_sp : succesfully_set_resources) {
3737 addr_t addr = wp_res_sp->GetLoadAddress();
3738 size_t size = wp_res_sp->GetByteSize();
3740 m_gdb_comm.SendGDBStoppointTypePacket(type,
false, addr, size,
3744 "Setting one of the watchpoint resources failed");
3760 addr_t addr = wp_sp->GetLoadAddress();
3763 "ProcessGDBRemote::DisableWatchpoint (watchID = %" PRIu64
3764 ") addr = 0x%8.8" PRIx64,
3765 watchID, (uint64_t)addr);
3767 if (!wp_sp->IsEnabled()) {
3769 "ProcessGDBRemote::DisableWatchpoint (watchID = %" PRIu64
3770 ") addr = 0x%8.8" PRIx64
" -- SUCCESS (already disabled)",
3771 watchID, (uint64_t)addr);
3775 wp_sp->SetEnabled(
false, notify);
3779 if (wp_sp->IsHardware()) {
3780 bool disabled_all =
true;
3782 std::vector<WatchpointResourceSP> unused_resources;
3784 if (wp_res_sp->ConstituentsContains(wp_sp)) {
3786 addr_t addr = wp_res_sp->GetLoadAddress();
3787 size_t size = wp_res_sp->GetByteSize();
3788 if (
m_gdb_comm.SendGDBStoppointTypePacket(type,
false, addr, size,
3790 disabled_all =
false;
3792 wp_res_sp->RemoveConstituent(wp_sp);
3793 if (wp_res_sp->GetNumberOfConstituents() == 0)
3794 unused_resources.push_back(wp_res_sp);
3798 for (
auto &wp_res_sp : unused_resources)
3801 wp_sp->SetEnabled(
false, notify);
3804 "Failure disabling one of the watchpoint locations");
3817 LLDB_LOGF(log,
"ProcessGDBRemote::DoSignal (signal = %d)", signo);
3832 if (platform_sp && !platform_sp->IsHost())
3837 const char *error_string =
error.AsCString();
3838 if (error_string ==
nullptr)
3847 static FileSpec g_debugserver_file_spec;
3854 std::string env_debugserver_path = host_env.lookup(
"LLDB_DEBUGSERVER_PATH");
3855 if (!env_debugserver_path.empty()) {
3856 debugserver_file_spec.
SetFile(env_debugserver_path,
3857 FileSpec::Style::native);
3858 LLDB_LOG(log,
"gdb-remote stub exe path set from environment variable: {0}",
3859 env_debugserver_path);
3861 debugserver_file_spec = g_debugserver_file_spec;
3863 return debugserver_file_spec;
3866 debugserver_file_spec = HostInfo::GetSupportExeDir();
3867 if (debugserver_file_spec) {
3870 LLDB_LOG(log,
"found gdb-remote stub exe '{0}'", debugserver_file_spec);
3872 g_debugserver_file_spec = debugserver_file_spec;
3875 if (!debugserver_file_spec) {
3878 LLDB_LOG(log,
"could not find gdb-remote stub exe '{0}'",
3879 debugserver_file_spec);
3883 g_debugserver_file_spec.
Clear();
3886 return debugserver_file_spec;
3891 using namespace std::placeholders;
3901 const std::weak_ptr<ProcessGDBRemote> this_wp =
3902 std::static_pointer_cast<ProcessGDBRemote>(shared_from_this());
3909#if defined(__APPLE__)
3913 int mib[] = {CTL_KERN, KERN_PROC, KERN_PROC_PID,
3915 struct kinfo_proc processInfo;
3916 size_t bufsize =
sizeof(processInfo);
3917 if (sysctl(mib, (
unsigned)(
sizeof(mib) /
sizeof(
int)), &processInfo, &bufsize,
3920 if (processInfo.kp_proc.p_flag & P_TRANSLATED) {
3921 debugserver_path =
FileSpec(
"/Library/Apple/usr/libexec/oah/debugserver");
3928 "'. Please ensure it is properly installed "
3929 "and available in your PATH");
3944 debugserver_launch_info,
nullptr);
3949 LLDB_LOGF(log,
"failed to start debugserver process: %s",
3959 m_gdb_comm.SetConnection(std::make_unique<ConnectionFileDescriptor>(
3960 std::move(socket_pair->second)));
3974 std::weak_ptr<ProcessGDBRemote> process_wp,
lldb::pid_t debugserver_pid,
3983 "ProcessGDBRemote::%s(process_wp, pid=%" PRIu64
3984 ", signo=%i (0x%x), exit_status=%i)",
3985 __FUNCTION__, debugserver_pid, signo, signo, exit_status);
3987 std::shared_ptr<ProcessGDBRemote> process_sp = process_wp.lock();
3988 LLDB_LOGF(log,
"ProcessGDBRemote::%s(process = %p)", __FUNCTION__,
3989 static_cast<void *
>(process_sp.get()));
3990 if (!process_sp || process_sp->m_debugserver_pid != debugserver_pid)
3996 std::this_thread::sleep_for(std::chrono::milliseconds(500));
4000 const StateType state = process_sp->GetState();
4009 llvm::StringRef signal_name =
4010 process_sp->GetUnixSignals()->GetSignalAsStringRef(signo);
4012 if (!signal_name.empty())
4013 stream.
Format(format_str, signal_name);
4015 stream.
Format(format_str, signo);
4017 process_sp->SetExitStatus(-1, stream.
GetString());
4040 debugger, PluginProperties::GetSettingName())) {
4041 const bool is_global_setting =
true;
4044 "Properties for the gdb-remote process plug-in.", is_global_setting);
4051 LLDB_LOGF(log,
"ProcessGDBRemote::%s ()", __FUNCTION__);
4058 llvm::Expected<HostThread> async_thread =
4062 if (!async_thread) {
4064 "failed to launch host thread: {0}");
4070 "ProcessGDBRemote::%s () - Called when Async thread was "
4080 LLDB_LOGF(log,
"ProcessGDBRemote::%s ()", __FUNCTION__);
4095 "ProcessGDBRemote::%s () - Called when Async thread was not running.",
4101 LLDB_LOGF(log,
"ProcessGDBRemote::%s(pid = %" PRIu64
") thread starting...",
4102 __FUNCTION__,
GetID());
4120 "ProcessGDBRemote::%s(pid = %" PRIu64
4121 ") listener.WaitForEvent (NULL, event_sp)...",
4122 __FUNCTION__,
GetID());
4125 const uint32_t event_type = event_sp->GetType();
4128 "ProcessGDBRemote::%s(pid = %" PRIu64
4129 ") Got an event of type: %d...",
4130 __FUNCTION__,
GetID(), event_type);
4132 switch (event_type) {
4137 if (continue_packet) {
4138 const char *continue_cstr =
4139 (
const char *)continue_packet->
GetBytes();
4140 const size_t continue_cstr_len = continue_packet->
GetByteSize();
4142 "ProcessGDBRemote::%s(pid = %" PRIu64
4143 ") got eBroadcastBitAsyncContinue: %s",
4144 __FUNCTION__,
GetID(), continue_cstr);
4146 if (::strstr(continue_cstr,
"vAttach") ==
nullptr)
4153 llvm::StringRef(continue_cstr, continue_cstr_len),
4164 switch (stop_state) {
4177 int exit_status = response.
GetHexU8();
4178 std::string desc_string;
4180 llvm::StringRef desc_str;
4181 llvm::StringRef desc_token;
4183 if (desc_token !=
"description")
4198 if (::strstr(continue_cstr,
"vAttach") !=
nullptr &&
4201 "System Integrity Protection");
4202 }
else if (::strstr(continue_cstr,
"vAttach") !=
nullptr &&
4222 "ProcessGDBRemote::%s(pid = %" PRIu64
4223 ") got eBroadcastBitAsyncThreadShouldExit...",
4224 __FUNCTION__,
GetID());
4230 "ProcessGDBRemote::%s(pid = %" PRIu64
4231 ") got unknown event 0x%8.8x",
4232 __FUNCTION__,
GetID(), event_type);
4239 "ProcessGDBRemote::%s(pid = %" PRIu64
4240 ") listener.WaitForEvent (NULL, event_sp) => false",
4241 __FUNCTION__,
GetID());
4246 LLDB_LOGF(log,
"ProcessGDBRemote::%s(pid = %" PRIu64
") thread exiting...",
4247 __FUNCTION__,
GetID());
4279 LLDB_LOGF(log,
"Hit New Thread Notification breakpoint.");
4286class AcceleratorBreakpointCallbackBaton
4287 :
public TypedBaton<AcceleratorBreakpointHitArgs> {
4289 explicit AcceleratorBreakpointCallbackBaton(
4290 std::unique_ptr<AcceleratorBreakpointHitArgs> data)
4309 "ProcessGDBRemote::HandleAcceleratorActions skipping already "
4310 "processed actions for plugin '{0}' with identifier {1}",
4312 return llvm::Error::success();
4329 return llvm::Error::success();
4339 std::string exe_path = connect_info.
exe_path.value_or(
"");
4343 &platform_options, accelerator_target_sp);
4345 return error.takeError();
4346 if (!accelerator_target_sp)
4347 return llvm::createStringError(
"failed to create accelerator target");
4349 PlatformSP platform_sp = accelerator_target_sp->GetPlatform();
4351 return llvm::createStringErrorV(
4352 "no platform '{0}' compatible with triple '{1}' for the accelerator "
4357 ? platform_sp->ConnectProcessSynchronous(
4361 : platform_sp->ConnectProcess(connect_info.
connect_url,
4363 accelerator_target_sp.get(),
error);
4365 return error.takeError();
4367 return llvm::createStringError(
"failed to connect to the accelerator");
4369 accelerator_target_sp->SetTargetSessionName(actions.
session_name);
4372 auto event_sp = std::make_shared<Event>(
4375 accelerator_target_sp));
4377 return llvm::Error::success();
4383 llvm::Error
error = llvm::Error::success();
4387 auto args_up = std::make_unique<AcceleratorBreakpointHitArgs>();
4389 args_up->breakpoint = bp;
4396 error = llvm::joinErrors(
4398 llvm::createStringErrorV(
4399 "accelerator breakpoint {0} specifies both a by_name and a "
4400 "by_address specification",
4408 bp_modules.
GetSize() ? &bp_modules :
nullptr,
4410 bp.
by_name->function_name.c_str(),
4411 eFunctionNameTypeFull,
4423 error = llvm::joinErrors(
4425 llvm::createStringErrorV(
4426 "accelerator breakpoint {0} has neither a by_name nor a "
4427 "by_address specification",
4433 error = llvm::joinErrors(
4435 llvm::createStringErrorV(
"failed to set accelerator breakpoint {0}",
4443 llvm::formatv(
"accelerator-plugin ({0})", actions.
plugin_name);
4444 bp_sp->SetBreakpointKind(kind.c_str());
4445 auto baton_sp = std::make_shared<AcceleratorBreakpointCallbackBaton>(
4446 std::move(args_up));
4474 for (
size_t i = 0; i < symbol_names.size(); ++i) {
4482 addr_t load_addr = sc.symbol->GetAddress().GetLoadAddress(&target);
4491 llvm::Expected<AcceleratorBreakpointHitResponse> response =
4495 "accelerator breakpoint hit notification failed: {0}");
4503 if (response->disable_bp) {
4505 bp_sp->SetEnabled(
false);
4510 if (response->actions) {
4514 std::string message = llvm::toString(std::move(
error));
4515 LLDB_LOG(log,
"failed to handle accelerator actions: {0}", message);
4517 "error: accelerator plugin '%s': %s\n",
4518 response->actions->plugin_name.c_str(), message.c_str());
4523 return !response->auto_resume_native;
4528 LLDB_LOG(log,
"Check if need to update ignored signals");
4542 LLDB_LOG(log,
"Signals' version hasn't changed. version={0}",
4547 auto signals_to_ignore =
4552 "Signals' version changed. old version={0}, new version={1}, "
4553 "signals ignored={2}, update result={3}",
4555 signals_to_ignore.size(),
error);
4557 if (
error.Success())
4572 platform_sp->SetThreadCreationBreakpoint(
GetTarget());
4575 log,
"Successfully created new thread notification breakpoint %i",
4580 LLDB_LOGF(log,
"Failed to create new thread notification breakpoint.");
4609 return_value =
m_gdb_comm.SendLaunchEventDataPacket(data, &was_supported);
4610 if (return_value != 0) {
4613 "Sending events is not supported for this process.");
4623 if (
m_gdb_comm.GetQXferAuxvReadSupported()) {
4624 llvm::Expected<std::string> response =
m_gdb_comm.ReadExtFeature(
"auxv",
"");
4626 buf = std::make_shared<DataBufferHeap>(response->c_str(),
4627 response->length());
4638 if (
m_gdb_comm.GetThreadExtendedInfoSupported()) {
4644 args_dict->GetAsDictionary()->AddIntegerItem(
"thread", tid);
4647 packet <<
"jThreadExtendedInfo:";
4648 args_dict->Dump(packet,
false);
4655 packet << (char)(0x7d ^ 0x20);
4664 if (!response.
Empty()) {
4677 args_dict->GetAsDictionary()->AddIntegerItem(
"image_list_address",
4678 image_list_address);
4679 args_dict->GetAsDictionary()->AddIntegerItem(
"image_count", image_count);
4686 std::string info_level_str;
4688 info_level_str =
"address-only";
4690 info_level_str =
"address-name";
4692 info_level_str =
"address-name-uuid";
4694 info_level_str =
"full";
4696 return info_level_str;
4703 args_dict->GetAsDictionary()->AddBooleanItem(
"fetch_all_solibs",
true);
4705 args_dict->GetAsDictionary()->AddBooleanItem(
"report_load_commands",
false);
4707 if (!info_level_str.empty())
4708 args_dict->GetAsDictionary()->AddStringItem(
"information-level",
4709 info_level_str.c_str());
4716 const std::vector<lldb::addr_t> &load_addresses) {
4720 for (
auto addr : load_addresses)
4721 addresses->AddIntegerItem(addr);
4723 args_dict->GetAsDictionary()->AddItem(
"solib_addresses", addresses);
4726 if (!info_level_str.empty())
4727 args_dict->GetAsDictionary()->AddStringItem(
"information-level",
4728 info_level_str.c_str());
4738 if (
m_gdb_comm.GetLoadedDynamicLibrariesInfosSupported()) {
4741 std::chrono::seconds(10));
4744 packet <<
"jGetLoadedDynamicLibrariesInfos:";
4745 args_dict->Dump(packet,
false);
4752 packet << (char)(0x7d ^ 0x20);
4761 if (!response.
Empty()) {
4774 if (
m_gdb_comm.GetDynamicLoaderProcessStateSupported()) {
4777 if (
m_gdb_comm.SendPacketAndWaitForResponse(
"jGetDyldProcessState",
4783 if (!response.
Empty()) {
4798 if (*shared_cache_info || !
m_gdb_comm.GetSharedCacheInfoSupported())
4799 return *shared_cache_info;
4802 packet <<
"jGetSharedCacheInfo:";
4803 args_dict->Dump(packet,
false);
4812 if (response.
Empty())
4821 if (!dict->
HasKey(
"shared_cache_uuid"))
4823 llvm::StringRef uuid_str;
4825 uuid_str ==
"00000000-0000-0000-0000-000000000000")
4827 if (dict->
HasKey(
"shared_cache_path")) {
4841 HostInfo::SharedCacheIndexFiles(sc_path, uuid, sc_mode);
4844 *shared_cache_info = response_sp;
4847 return *shared_cache_info;
4852 return m_gdb_comm.ConfigureRemoteStructuredData(type_name, config_sp);
4865 const uint64_t reasonable_largeish_default = 128 * 1024;
4866 const uint64_t conservative_default = 512;
4869 uint64_t stub_max_size =
m_gdb_comm.GetRemoteMaxPacketSize();
4870 if (stub_max_size !=
UINT64_MAX && stub_max_size != 0) {
4876 if (stub_max_size > reasonable_largeish_default) {
4877 stub_max_size = reasonable_largeish_default;
4883 if (stub_max_size > 70)
4884 stub_max_size -= 32 + 32 + 6;
4889 LLDB_LOG(log,
"warning: Packet size is too small. "
4890 "LLDB may face problems while writing memory");
4901 uint64_t user_specified_max) {
4902 if (user_specified_max != 0) {
4930 module_spec = cached->second;
4931 return bool(module_spec);
4934 if (!
m_gdb_comm.GetModuleInfo(module_file_spec, arch, module_spec)) {
4935 LLDB_LOGF(log,
"ProcessGDBRemote::%s - failed to get module info for %s:%s",
4936 __FUNCTION__, module_file_spec.
GetPath().c_str(),
4943 module_spec.
Dump(stream);
4944 LLDB_LOGF(log,
"ProcessGDBRemote::%s - got module info for (%s:%s) : %s",
4945 __FUNCTION__, module_file_spec.
GetPath().c_str(),
4954 llvm::ArrayRef<FileSpec> module_file_specs,
const llvm::Triple &triple) {
4955 auto module_specs =
m_gdb_comm.GetModulesInfo(module_file_specs, triple);
4957 for (
const FileSpec &spec : module_file_specs)
4962 triple.getTriple())] = spec;
4976typedef std::vector<std::string> stringVec;
4978typedef std::vector<struct GdbServerRegisterInfo> GDBServerRegisterVec;
4979struct RegisterSetInfo {
4983typedef std::map<uint32_t, RegisterSetInfo> RegisterSetMap;
4985struct GdbServerTargetInfo {
4989 RegisterSetMap reg_set_map;
4992using RegisterTypeMap = llvm::StringMap<const RegisterType *>;
4995ParseEnumEvalues(
const XMLNode &enum_node) {
5009 std::map<uint64_t, RegisterTypeEnum::Enumerator> enumerators;
5012 "evalue", [&enumerators, &log](
const XMLNode &enumerator_node) {
5013 std::optional<llvm::StringRef> name;
5014 std::optional<uint64_t> value;
5017 [&name, &value, &log](
const llvm::StringRef &attr_name,
5018 const llvm::StringRef &attr_value) {
5019 if (attr_name ==
"name") {
5020 if (attr_value.size())
5023 LLDB_LOG(log,
"ProcessGDBRemote::ParseEnumEvalues "
5024 "Ignoring empty name in evalue");
5025 }
else if (attr_name ==
"value") {
5026 uint64_t parsed_value = 0;
5027 if (llvm::to_integer(attr_value, parsed_value))
5028 value = parsed_value;
5031 "ProcessGDBRemote::ParseEnumEvalues "
5032 "Invalid value \"{0}\" in "
5037 "ProcessGDBRemote::ParseEnumEvalues Ignoring "
5038 "unknown attribute "
5039 "\"{0}\" in evalue",
5047 enumerators.insert_or_assign(
5048 *value, RegisterTypeEnum::Enumerator(*value, name->str()));
5055 for (
auto [_, enumerator] : enumerators)
5056 final_enumerators.push_back(enumerator);
5058 return final_enumerators;
5062ParseEnums(XMLNode feature_node, RegisterTypeMap &feature_register_types,
5063 std::vector<std::unique_ptr<RegisterType>> &owned_register_types) {
5068 "enum", [log, &feature_register_types,
5069 &owned_register_types](
const XMLNode &enum_node) {
5073 const llvm::StringRef &attr_value) {
5074 if (attr_name ==
"id")
5092 ParseEnumEvalues(enum_node);
5093 if (!enumerators.empty()) {
5095 "ProcessGDBRemote::ParseEnums Found enum type \"{0}\"",
5098 std::make_unique<RegisterTypeEnum>(
id, enumerators);
5099 const RegisterTypeEnum *enum_type_ptr = enum_type.get();
5100 auto [it, inserted] =
5101 feature_register_types.try_emplace(
id, enum_type_ptr);
5103 owned_register_types.push_back(std::move(enum_type));
5104 }
else if (llvm::isa<RegisterTypeEnum>(it->second)) {
5109 owned_register_types.push_back(std::move(enum_type));
5110 it->second = enum_type_ptr;
5114 "ProcessGDBRemote::ParseEnums Ignoring enum type \"{0}\" "
5115 "because another type with that id already exists",
5126static std::vector<RegisterTypeFlags::Field>
5127ParseFlagsFields(XMLNode flags_node,
unsigned size,
5128 const RegisterTypeMap &feature_register_types) {
5130 const unsigned max_start_bit = size * 8 - 1;
5133 std::vector<RegisterTypeFlags::Field> fields;
5135 &feature_register_types](
5138 std::optional<llvm::StringRef> name;
5139 std::optional<unsigned> start;
5140 std::optional<unsigned> end;
5141 std::optional<llvm::StringRef> type;
5144 &log](
const llvm::StringRef &attr_name,
5145 const llvm::StringRef &attr_value) {
5148 if (attr_name ==
"name") {
5151 "ProcessGDBRemote::ParseFlagsFields Found field node name \"{0}\"",
5154 }
else if (attr_name ==
"start") {
5155 unsigned parsed_start = 0;
5156 if (llvm::to_integer(attr_value, parsed_start)) {
5157 if (parsed_start > max_start_bit) {
5159 "ProcessGDBRemote::ParseFlagsFields Invalid start {0} in "
5162 parsed_start, max_start_bit);
5164 start = parsed_start;
5168 "ProcessGDBRemote::ParseFlagsFields Invalid start \"{0}\" in "
5172 }
else if (attr_name ==
"end") {
5173 unsigned parsed_end = 0;
5174 if (llvm::to_integer(attr_value, parsed_end))
5175 if (parsed_end > max_start_bit) {
5177 "ProcessGDBRemote::ParseFlagsFields Invalid end {0} in "
5180 parsed_end, max_start_bit);
5185 "ProcessGDBRemote::ParseFlagsFields Invalid end \"{0}\" in "
5189 }
else if (attr_name ==
"type") {
5194 "ProcessGDBRemote::ParseFlagsFields Ignoring unknown attribute "
5195 "\"{0}\" in field node",
5202 if (name && start && end) {
5206 "ProcessGDBRemote::ParseFlagsFields Start {0} > end {1} in field "
5207 "\"{2}\", ignoring",
5208 *start, *end, name->data());
5212 "ProcessGDBRemote::ParseFlagsFields Ignoring field \"{}\" "
5213 "that has size > 64 bits, this is not supported",
5217 const RegisterTypeEnum *enum_type =
nullptr;
5218 if (type && !type->empty()) {
5219 auto found = feature_register_types.find(*type);
5220 if (found != feature_register_types.end()) {
5221 enum_type = llvm::dyn_cast<RegisterTypeEnum>(found->second);
5225 "ProcessGDBRemote::ParseFlagsFields Type \"{0}\" for "
5226 "field \"{1}\" is not an enum, ignoring",
5227 type->data(), name->data());
5232 uint64_t max_value =
5235 if (enumerator.m_value > max_value) {
5236 enum_type =
nullptr;
5239 "ProcessGDBRemote::ParseFlagsFields In enum \"{0}\" "
5240 "evalue \"{1}\" with value {2} exceeds the maximum "
5241 "value of field \"{3}\" ({4}), ignoring enum",
5242 type->data(), enumerator.m_name, enumerator.m_value,
5243 name->data(), max_value);
5250 "ProcessGDBRemote::ParseFlagsFields Could not find type "
5252 "for field \"{1}\", ignoring",
5253 type->data(), name->data());
5258 RegisterTypeFlags::Field(name->str(), *start, *end, enum_type));
5269 XMLNode feature_node, RegisterTypeMap &feature_register_types,
5270 std::vector<std::unique_ptr<RegisterType>> &owned_register_types) {
5275 [&log, &feature_register_types,
5276 &owned_register_types](
const XMLNode &flags_node) ->
bool {
5277 LLDB_LOG(log,
"ProcessGDBRemote::ParseFlags Found flags node \"{0}\"",
5280 std::optional<llvm::StringRef>
id;
5281 std::optional<unsigned> size;
5283 [&
id, &size, &log](
const llvm::StringRef &name,
5284 const llvm::StringRef &value) {
5287 }
else if (name ==
"size") {
5288 unsigned parsed_size = 0;
5289 if (llvm::to_integer(value, parsed_size))
5293 "ProcessGDBRemote::ParseFlags Invalid size \"{0}\" "
5299 "ProcessGDBRemote::ParseFlags Ignoring unknown "
5300 "attribute \"{0}\" in flags node",
5308 std::vector<RegisterTypeFlags::Field> fields =
5309 ParseFlagsFields(flags_node, *size, feature_register_types);
5310 if (fields.size()) {
5312 std::sort(fields.rbegin(), fields.rend());
5313 std::vector<RegisterTypeFlags::Field>::const_iterator overlap =
5314 std::adjacent_find(fields.begin(), fields.end(),
5315 [](
const RegisterTypeFlags::Field &lhs,
5316 const RegisterTypeFlags::Field &rhs) {
5317 return lhs.Overlaps(rhs);
5321 if (overlap == fields.end()) {
5322 if (feature_register_types.contains(*
id)) {
5327 "ProcessGDBRemote::ParseFlags Definition of flags \"{0}\" "
5328 "conflicts with an existing type, ignoring this "
5332 auto flags_type = std::make_unique<RegisterTypeFlags>(
5333 id->str(), *size, std::move(fields));
5334 feature_register_types.try_emplace(*
id, flags_type.get());
5335 owned_register_types.push_back(std::move(flags_type));
5339 std::vector<RegisterTypeFlags::Field>::const_iterator next =
5343 "ProcessGDBRemote::ParseFlags Ignoring flags because fields "
5344 "{0} (start: {1} end: {2}) and {3} (start: {4} end: {5}) "
5346 overlap->GetName().c_str(), overlap->GetStart(),
5347 overlap->GetEnd(), next->GetName().c_str(), next->GetStart(),
5353 "ProcessGDBRemote::ParseFlags Ignoring definition of flags "
5354 "\"{0}\" because it contains no fields.",
5363static const RegisterTypeBuiltin *
5364ResolveGDBBuiltinType(llvm::StringRef type_name) {
5368 static const RegisterTypeBuiltin bool_type(
"bool",
eEncodingUint,
5370 static const RegisterTypeBuiltin int8_type(
"int8",
eEncodingSint,
5372 static const RegisterTypeBuiltin int16_type(
"int16",
eEncodingSint,
5374 static const RegisterTypeBuiltin int32_type(
"int32",
eEncodingSint,
5376 static const RegisterTypeBuiltin int64_type(
"int64",
eEncodingSint,
5378 static const RegisterTypeBuiltin int128_type(
"int128",
eEncodingSint,
5380 static const RegisterTypeBuiltin uint8_type(
"uint8",
eEncodingUint,
5382 static const RegisterTypeBuiltin uint16_type(
"uint16",
eEncodingUint,
5384 static const RegisterTypeBuiltin uint32_type(
"uint32",
eEncodingUint,
5386 static const RegisterTypeBuiltin uint64_type(
"uint64",
eEncodingUint,
5388 static const RegisterTypeBuiltin uint128_type(
"uint128",
eEncodingUint,
5390 static const RegisterTypeBuiltin code_ptr_type(
5392 static const RegisterTypeBuiltin data_ptr_type(
5394 static const RegisterTypeBuiltin ieee_half_type(
"ieee_half",
eEncodingIEEE754,
5396 static const RegisterTypeBuiltin ieee_single_type(
5398 static const RegisterTypeBuiltin ieee_double_type(
5400 static const RegisterTypeBuiltin i387_ext_type(
"i387_ext",
eEncodingIEEE754,
5402 static const RegisterTypeBuiltin bfloat16_type(
"bfloat16",
eEncodingIEEE754,
5405 return llvm::StringSwitch<const RegisterTypeBuiltin *>(type_name)
5406 .Case(
"bool", &bool_type)
5407 .Case(
"int8", &int8_type)
5408 .Case(
"int16", &int16_type)
5409 .Case(
"int32", &int32_type)
5410 .Case(
"int64", &int64_type)
5411 .Case(
"int128", &int128_type)
5412 .Case(
"uint8", &uint8_type)
5413 .Case(
"uint16", &uint16_type)
5414 .Case(
"uint32", &uint32_type)
5415 .Case(
"uint64", &uint64_type)
5416 .Case(
"uint128", &uint128_type)
5417 .Case(
"code_ptr", &code_ptr_type)
5418 .Case(
"data_ptr", &data_ptr_type)
5419 .Case(
"ieee_half", &ieee_half_type)
5420 .Case(
"ieee_single", &ieee_single_type)
5421 .Case(
"ieee_double", &ieee_double_type)
5422 .Case(
"i387_ext", &i387_ext_type)
5423 .Case(
"bfloat16", &bfloat16_type)
5427static const RegisterType *
5428ResolveGDBType(llvm::StringRef type_name,
5429 const RegisterTypeMap &feature_register_types) {
5430 auto type_it = feature_register_types.find(type_name);
5431 if (type_it != feature_register_types.end())
5432 return type_it->second;
5433 return ResolveGDBBuiltinType(type_name);
5437ParseVector(
const XMLNode &vector_node, RegisterTypeMap &feature_register_types,
5438 std::vector<std::unique_ptr<RegisterType>> &owned_register_types) {
5440 std::optional<llvm::StringRef>
id;
5441 std::optional<llvm::StringRef> element_type_name;
5442 std::optional<uint32_t> count;
5445 [&
id, &element_type_name, &count, log](llvm::StringRef name,
5446 llvm::StringRef value) {
5449 }
else if (name ==
"type") {
5450 element_type_name = value;
5451 }
else if (name ==
"count") {
5452 uint32_t parsed_count = 0;
5453 if (llvm::to_integer(value, parsed_count))
5454 count = parsed_count;
5456 LLDB_LOG(log,
"ProcessGDBRemote::ParseVector Invalid count \"{0}\"",
5460 "ProcessGDBRemote::ParseVector Ignoring unknown attribute "
5470 if (!
id ||
id->empty() || !element_type_name || element_type_name->empty() ||
5471 !count || *count == 0 || *count > max_vector_count) {
5472 LLDB_LOG(log,
"ProcessGDBRemote::ParseVector Ignoring vector with invalid "
5473 "id, type, or count");
5477 if (feature_register_types.contains(*
id)) {
5479 "ProcessGDBRemote::ParseVector Ignoring duplicate type \"{0}\"",
5484 const RegisterType *element_type =
5485 ResolveGDBType(*element_type_name, feature_register_types);
5486 if (!element_type) {
5488 "ProcessGDBRemote::ParseVector Could not resolve element type "
5489 "\"{0}\" for vector \"{1}\"",
5490 *element_type_name, *
id);
5494 if (!llvm::isa<RegisterTypeBuiltin, RegisterTypeVector, RegisterTypeUnion>(
5497 "ProcessGDBRemote::ParseVector Found element type \"{0}\" for "
5498 "vector \"{1}\", but it is not a builtin, vector, or union "
5500 *element_type_name, *
id);
5504 std::optional<uint64_t> element_size = element_type->
GetByteSize();
5508 "ProcessGDBRemote::ParseVector Size of vector \"{0}\" is too "
5515 std::make_unique<RegisterTypeVector>(
id->str(), element_type, *count);
5516 feature_register_types.try_emplace(*
id, vector_type.get());
5517 owned_register_types.push_back(std::move(vector_type));
5520static std::vector<RegisterTypeUnion::Field>
5521ParseUnionFields(
const XMLNode &union_node, llvm::StringRef union_id,
5522 const RegisterTypeMap &feature_register_types) {
5524 std::vector<RegisterTypeUnion::Field> fields;
5525 bool invalid_field =
false;
5528 "field", [&fields, &invalid_field, log, &feature_register_types,
5529 union_id](
const XMLNode &field_node) {
5530 std::optional<llvm::StringRef> name;
5531 std::optional<llvm::StringRef> type_name;
5534 [&name, &type_name, log, union_id](llvm::StringRef attribute,
5535 llvm::StringRef value) {
5536 if (attribute ==
"name")
5538 else if (attribute ==
"type")
5542 "ProcessGDBRemote::ParseUnionFields Ignoring unknown "
5543 "attribute \"{0}\" in a field of union \"{1}\"",
5544 attribute, union_id);
5548 if (!name || name->empty() || !type_name || type_name->empty()) {
5550 "ProcessGDBRemote::ParseUnionFields Union \"{0}\" has a "
5551 "field missing a non-empty name or type",
5553 invalid_field =
true;
5557 const RegisterType *field_type =
5558 ResolveGDBType(*type_name, feature_register_types);
5561 "ProcessGDBRemote::ParseUnionFields Could not resolve type "
5562 "\"{0}\" for field \"{1}\" of union \"{2}\"",
5563 *type_name, *name, union_id);
5564 invalid_field =
true;
5568 if (!llvm::isa<RegisterTypeBuiltin, RegisterTypeVector,
5569 RegisterTypeUnion>(field_type)) {
5571 "ProcessGDBRemote::ParseUnionFields Found type \"{0}\" "
5572 "for field \"{1}\", but it is not a builtin, vector, or "
5573 "union type. Union \"{2}\" will be ignored.",
5574 *type_name, *name, union_id);
5575 invalid_field =
true;
5579 fields.emplace_back(name->str(), field_type);
5585 if (invalid_field) {
5587 "ProcessGDBRemote::ParseUnionFields Ignoring union \"{0}\" "
5588 "because it contains an invalid field",
5591 }
else if (fields.empty()) {
5593 "ProcessGDBRemote::ParseUnionFields Ignoring union \"{0}\" "
5594 "because it has no fields",
5601ParseUnion(
const XMLNode &union_node, RegisterTypeMap &feature_register_types,
5602 std::vector<std::unique_ptr<RegisterType>> &owned_register_types) {
5604 std::optional<llvm::StringRef>
id;
5607 [&
id, log](llvm::StringRef name, llvm::StringRef value) {
5612 "ProcessGDBRemote::ParseUnion Ignoring unknown attribute "
5618 if (!
id ||
id->empty()) {
5619 LLDB_LOG(log,
"ProcessGDBRemote::ParseUnion Ignoring union without an id");
5623 if (feature_register_types.contains(*
id)) {
5625 "ProcessGDBRemote::ParseUnion Ignoring duplicate type \"{0}\"",
5630 std::vector<RegisterTypeUnion::Field> fields =
5631 ParseUnionFields(union_node, *
id, feature_register_types);
5636 std::make_unique<RegisterTypeUnion>(
id->str(), std::move(fields));
5637 feature_register_types.try_emplace(*
id, union_type.get());
5638 owned_register_types.push_back(std::move(union_type));
5641static void ParseCompositeTypes(
5642 XMLNode feature_node, RegisterTypeMap &feature_register_types,
5643 std::vector<std::unique_ptr<RegisterType>> &owned_register_types) {
5645 [&feature_register_types,
5646 &owned_register_types](
const XMLNode &type_node) {
5647 if (type_node.
NameIs(
"vector"))
5648 ParseVector(type_node, feature_register_types, owned_register_types);
5649 else if (type_node.
NameIs(
"union"))
5650 ParseUnion(type_node, feature_register_types, owned_register_types);
5656 XMLNode feature_node, GdbServerTargetInfo &target_info,
5657 std::vector<DynamicRegisterInfo::Register> ®isters,
5658 std::vector<std::unique_ptr<RegisterType>> &owned_register_types) {
5663 RegisterTypeMap feature_register_types;
5666 ParseEnums(feature_node, feature_register_types, owned_register_types);
5667 for (
const auto ®ister_type : feature_register_types)
5668 if (
const auto *enum_type =
5669 llvm::dyn_cast<RegisterTypeEnum>(register_type.second))
5672 ParseFlags(feature_node, feature_register_types, owned_register_types);
5673 for (
const auto ®ister_type : feature_register_types)
5674 if (
const auto *flags_type =
5675 llvm::dyn_cast<RegisterTypeFlags>(register_type.second))
5676 flags_type->DumpToLog(log);
5681 ParseCompositeTypes(feature_node, feature_register_types,
5682 owned_register_types);
5683 for (
const auto ®ister_type : feature_register_types)
5684 if (
const auto *vector_type =
5685 llvm::dyn_cast<RegisterTypeVector>(register_type.second))
5686 vector_type->DumpToLog(log);
5687 for (
const auto ®ister_type : feature_register_types)
5688 if (
const auto *union_type =
5689 llvm::dyn_cast<RegisterTypeUnion>(register_type.second))
5690 union_type->DumpToLog(log);
5694 [&target_info, ®isters, &feature_register_types,
5695 log](
const XMLNode ®_node) ->
bool {
5696 std::string gdb_group;
5697 std::string gdb_type;
5698 DynamicRegisterInfo::Register reg_info;
5699 bool encoding_set =
false;
5700 bool format_set =
false;
5704 &encoding_set, &format_set, ®_info,
5705 log](
const llvm::StringRef &name,
5706 const llvm::StringRef &value) ->
bool {
5707 if (name ==
"name") {
5709 }
else if (name ==
"bitsize") {
5710 if (llvm::to_integer(value, reg_info.
byte_size))
5712 llvm::divideCeil(reg_info.
byte_size, CHAR_BIT);
5713 }
else if (name ==
"type") {
5714 gdb_type = value.str();
5715 }
else if (name ==
"group") {
5716 gdb_group = value.str();
5717 }
else if (name ==
"regnum") {
5719 }
else if (name ==
"offset") {
5721 }
else if (name ==
"altname") {
5723 }
else if (name ==
"encoding") {
5724 encoding_set =
true;
5726 }
else if (name ==
"format") {
5732 llvm::StringSwitch<lldb::Format>(value)
5743 }
else if (name ==
"group_id") {
5745 llvm::to_integer(value, set_id);
5746 RegisterSetMap::const_iterator pos =
5747 target_info.reg_set_map.find(set_id);
5748 if (pos != target_info.reg_set_map.end())
5749 reg_info.
set_name = pos->second.name;
5750 }
else if (name ==
"gcc_regnum" || name ==
"ehframe_regnum") {
5752 }
else if (name ==
"dwarf_regnum") {
5754 }
else if (name ==
"generic") {
5756 }
else if (name ==
"value_regnums") {
5759 }
else if (name ==
"invalidate_regnums") {
5764 "ProcessGDBRemote::ParseRegisters unhandled reg "
5765 "attribute %s = %s",
5766 name.data(), value.data());
5771 if (!gdb_type.empty()) {
5773 auto it = feature_register_types.find(gdb_type);
5774 if (it != feature_register_types.end()) {
5775 if (
const auto *vector_type =
5776 llvm::dyn_cast<RegisterTypeVector>(it->second)) {
5777 std::optional<uint64_t> type_size = vector_type->GetByteSize();
5780 "ProcessGDBRemote::ParseRegisters Register {0} is "
5781 "too large for vector type {1}",
5782 reg_info.
name, vector_type->GetID());
5783 }
else if (!vector_type->IsByteSizeCompatible(
5787 "ProcessGDBRemote::ParseRegisters Size of register "
5788 "{0} is incompatible with vector type {1}",
5789 reg_info.
name, vector_type->GetID());
5793 "ProcessGDBRemote::ParseRegisters Size of register type "
5794 "{0} ({1} bytes) for register {2} does not match the "
5795 "register size ({3} bytes). Ignoring this type.",
5796 vector_type->GetID(), *type_size, reg_info.
name,
5801 if (!encoding_set) {
5803 encoding_set =
true;
5810 }
else if (
const auto *union_type =
5811 llvm::dyn_cast<RegisterTypeUnion>(it->second)) {
5814 "ProcessGDBRemote::ParseRegisters Register {0} is "
5815 "too large for union type {1}",
5816 reg_info.
name, union_type->GetID());
5817 }
else if (!union_type->IsByteSizeCompatible(
5820 "ProcessGDBRemote::ParseRegisters Size of register "
5821 "{0} is incompatible with union type {1}",
5822 reg_info.
name, union_type->GetID());
5825 if (!encoding_set) {
5827 encoding_set =
true;
5834 }
else if (
const auto *flags_type =
5835 llvm::dyn_cast<RegisterTypeFlags>(it->second)) {
5836 if (reg_info.
byte_size == flags_type->GetSize())
5841 "ProcessGDBRemote::ParseRegisters Size of register flags "
5842 "{0} ({1} bytes) for register {2} does not match the "
5843 "register size ({3} bytes). Ignoring this set of flags.",
5844 flags_type->GetID().c_str(), flags_type->GetSize(),
5852 if (!gdb_type.empty() && !(encoding_set || format_set)) {
5853 if (llvm::StringRef(gdb_type).starts_with(
"int")) {
5856 }
else if (gdb_type ==
"data_ptr" || gdb_type ==
"code_ptr") {
5859 }
else if (gdb_type ==
"float" || gdb_type ==
"ieee_single" ||
5860 gdb_type ==
"ieee_double") {
5863 }
else if (gdb_type ==
"aarch64v" ||
5864 llvm::StringRef(gdb_type).starts_with(
"vec") ||
5865 gdb_type ==
"i387_ext" || gdb_type ==
"uint128" ||
5878 "ProcessGDBRemote::ParseRegisters Could not determine lldb"
5879 "format and encoding for gdb type %s",
5889 if (!gdb_group.empty()) {
5900 "ProcessGDBRemote::{0} Skipping zero bitsize register {1}",
5901 __FUNCTION__, reg_info.
name);
5903 registers.push_back(reg_info);
5918 ArchSpec &arch_to_use, std::string xml_filename,
5919 std::vector<DynamicRegisterInfo::Register> ®isters) {
5921 llvm::Expected<std::string> raw =
m_gdb_comm.ReadExtFeature(
"features", xml_filename);
5922 if (errorToBool(raw.takeError()))
5927 if (xml_document.
ParseMemory(raw->c_str(), raw->size(),
5928 xml_filename.c_str())) {
5929 GdbServerTargetInfo target_info;
5930 std::vector<XMLNode> feature_nodes;
5936 const XMLNode &node) ->
bool {
5937 llvm::StringRef name = node.
GetName();
5938 if (name ==
"architecture") {
5940 }
else if (name ==
"osabi") {
5942 }
else if (name ==
"xi:include" || name ==
"include") {
5945 target_info.includes.push_back(href);
5946 }
else if (name ==
"feature") {
5947 feature_nodes.push_back(node);
5948 }
else if (name ==
"groups") {
5950 "group", [&target_info](
const XMLNode &node) ->
bool {
5952 RegisterSetInfo set_info;
5955 [&set_id, &set_info](
const llvm::StringRef &name,
5956 const llvm::StringRef &value) ->
bool {
5959 llvm::to_integer(value, set_id);
5966 target_info.reg_set_map[set_id] = set_info;
5979 feature_nodes.push_back(feature_node);
5981 const XMLNode &node) ->
bool {
5982 llvm::StringRef name = node.
GetName();
5983 if (name ==
"xi:include" || name ==
"include") {
5986 target_info.includes.push_back(href);
6000 if (!arch_to_use.
IsValid() && !target_info.arch.empty()) {
6002 arch_to_use.
SetTriple(llvm::StringSwitch<std::string>(target_info.arch)
6003 .Case(
"i386:x86-64",
"x86_64")
6004 .Case(
"riscv:rv64",
"riscv64")
6005 .Case(
"riscv:rv32",
"riscv32")
6006 .Default(target_info.arch) +
6014 for (
auto &feature_node : feature_nodes) {
6018 for (
const auto &include : target_info.includes) {
6030 std::vector<DynamicRegisterInfo::Register> ®isters,
6032 std::map<uint32_t, uint32_t> remote_to_local_map;
6033 uint32_t remote_regnum = 0;
6034 for (
auto it : llvm::enumerate(registers)) {
6042 remote_to_local_map[remote_reg_info.
regnum_remote] = it.index();
6048 auto proc_to_lldb = [&remote_to_local_map](uint32_t process_regnum) {
6049 auto lldb_regit = remote_to_local_map.find(process_regnum);
6050 return lldb_regit != remote_to_local_map.end() ? lldb_regit->second
6054 llvm::transform(remote_reg_info.value_regs,
6055 remote_reg_info.value_regs.begin(), proc_to_lldb);
6056 llvm::transform(remote_reg_info.invalidate_regs,
6057 remote_reg_info.invalidate_regs.begin(), proc_to_lldb);
6064 abi_sp->AugmentRegisterInfo(registers);
6074 if (!
m_gdb_comm.GetQXferFeaturesReadSupported())
6075 return llvm::createStringError(
6076 llvm::inconvertibleErrorCode(),
6077 "the debug server does not support \"qXfer:features:read\"");
6080 return llvm::createStringError(
6081 llvm::inconvertibleErrorCode(),
6082 "the debug server supports \"qXfer:features:read\", but LLDB does not "
6083 "have XML parsing enabled (check LLLDB_ENABLE_LIBXML2)");
6085 std::vector<DynamicRegisterInfo::Register> registers;
6093 ? llvm::ErrorSuccess()
6094 : llvm::createStringError(
6095 llvm::inconvertibleErrorCode(),
6096 "the debug server did not describe any registers");
6102 return llvm::createStringError(llvm::inconvertibleErrorCode(),
6103 "XML parsing not available");
6106 LLDB_LOGF(log,
"ProcessGDBRemote::%s", __FUNCTION__);
6115 llvm::Expected<std::string> raw = comm.
ReadExtFeature(
"libraries-svr4",
"");
6117 return raw.takeError();
6120 LLDB_LOGF(log,
"parsing: %s", raw->c_str());
6123 if (!doc.
ParseMemory(raw->c_str(), raw->size(),
"noname.xml"))
6124 return llvm::createStringError(llvm::inconvertibleErrorCode(),
6125 "Error reading noname.xml");
6129 return llvm::createStringError(
6130 llvm::inconvertibleErrorCode(),
6131 "Error finding library-list-svr4 xml element");
6136 if (!main_lm.empty())
6140 "library", [log, &list](
const XMLNode &library) ->
bool {
6145 [&module](
const llvm::StringRef &name,
6146 const llvm::StringRef &value) ->
bool {
6149 module.set_name(value.str());
6150 else if (name ==
"lm") {
6152 llvm::to_integer(value, uint_value);
6153 module.set_link_map(uint_value);
6154 }
else if (name ==
"l_addr") {
6157 llvm::to_integer(value, uint_value);
6158 module.set_base(uint_value);
6161 module.set_base_is_offset(true);
6162 }
else if (name ==
"l_ld") {
6164 llvm::to_integer(value, uint_value);
6165 module.set_dynamic(uint_value);
6174 bool base_is_offset;
6176 module.get_name(name);
6177 module.get_link_map(lm);
6178 module.get_base(base);
6179 module.get_base_is_offset(base_is_offset);
6180 module.get_dynamic(ld);
6183 "found (link_map:0x%08" PRIx64
", base:0x%08" PRIx64
6184 "[%s], ld:0x%08" PRIx64
", name:'%s')",
6185 lm, base, (base_is_offset ?
"offset" :
"absolute"), ld,
6194 LLDB_LOGF(log,
"found %" PRId32
" modules in total",
6195 (
int)list.
m_list.size());
6199 llvm::Expected<std::string> raw = comm.
ReadExtFeature(
"libraries",
"");
6202 return raw.takeError();
6204 LLDB_LOGF(log,
"parsing: %s", raw->c_str());
6207 if (!doc.
ParseMemory(raw->c_str(), raw->size(),
"noname.xml"))
6208 return llvm::createStringError(llvm::inconvertibleErrorCode(),
6209 "Error reading noname.xml");
6213 return llvm::createStringError(llvm::inconvertibleErrorCode(),
6214 "Error finding library-list xml element");
6218 "library", [log, &list](
const XMLNode &library) ->
bool {
6222 module.set_name(name);
6231 llvm::to_integer(address, address_value);
6232 module.set_base(address_value);
6234 module.set_base_is_offset(false);
6239 bool base_is_offset;
6240 module.get_name(name);
6241 module.get_base(base);
6242 module.get_base_is_offset(base_is_offset);
6244 LLDB_LOGF(log,
"found (base:0x%08" PRIx64
"[%s], name:'%s')", base,
6245 (base_is_offset ?
"offset" :
"absolute"), name.c_str());
6253 LLDB_LOGF(log,
"found %" PRId32
" modules in total",
6254 (
int)list.
m_list.size());
6257 return llvm::createStringError(llvm::inconvertibleErrorCode(),
6258 "Remote libraries not supported");
6265 bool value_is_offset) {
6280 return module_list.takeError();
6286 std::string mod_name;
6289 bool mod_base_is_offset;
6292 valid &= modInfo.
get_name(mod_name);
6293 valid &= modInfo.
get_base(mod_base);
6306 if (module_sp.get())
6307 new_modules.
Append(module_sp);
6310 if (new_modules.
GetSize() > 0) {
6315 for (
size_t i = 0; i < loaded_modules.
GetSize(); ++i) {
6319 for (
size_t j = 0; j < new_modules.
GetSize(); ++j) {
6328 removed_modules.
Append(loaded_module);
6332 loaded_modules.
Remove(removed_modules);
6333 m_process->GetTarget().ModulesDidUnload(removed_modules,
false);
6352 m_process->GetTarget().ModulesDidLoad(new_modules);
6355 return llvm::ErrorSuccess();
6364 std::string file_path = file.
GetPath(
false);
6365 if (file_path.empty())
6386 "Fetching file load address from remote server returned an error");
6396 "Unknown error happened during sending the load address packet");
6417 std::string input = data.str();
6424 size_t found, pos = 0, len = input.length();
6425 while ((found = input.find(
end_delimiter, pos)) != std::string::npos) {
6427 input.substr(pos, found).c_str());
6428 std::string profile_data =
6443 std::map<uint64_t, uint32_t> new_thread_id_to_used_usec_map;
6445 llvm::raw_string_ostream output_stream(output);
6446 llvm::StringRef name, value;
6450 if (name.compare(
"thread_used_id") == 0) {
6452 uint64_t thread_id = threadIDHexExtractor.
GetHexMaxU64(
false, 0);
6454 bool has_used_usec =
false;
6455 uint32_t curr_used_usec = 0;
6456 llvm::StringRef usec_name, usec_value;
6457 uint32_t input_file_pos = profileDataExtractor.
GetFilePos();
6459 if (usec_name ==
"thread_used_usec") {
6460 has_used_usec =
true;
6461 usec_value.getAsInteger(
BASE_10, curr_used_usec);
6465 profileDataExtractor.
SetFilePos(input_file_pos);
6469 if (has_used_usec) {
6470 uint32_t prev_used_usec = 0;
6471 std::map<uint64_t, uint32_t>::iterator iterator =
6474 prev_used_usec = iterator->second;
6476 uint32_t real_used_usec = curr_used_usec - prev_used_usec;
6478 bool good_first_time =
6479 (prev_used_usec == 0) && (real_used_usec > 250000);
6480 bool good_subsequent_time =
6481 (prev_used_usec > 0) &&
6484 if (good_first_time || good_subsequent_time) {
6488 output_stream << name <<
":";
6490 output_stream << index_id <<
";";
6492 output_stream << usec_name <<
":" << usec_value <<
";";
6495 llvm::StringRef local_name, local_value;
6501 new_thread_id_to_used_usec_map[thread_id] = curr_used_usec;
6504 output_stream << name <<
":" << value <<
";";
6507 output_stream << name <<
":" << value <<
";";
6542 return llvm::createStringError(llvm::inconvertibleErrorCode(),
6543 "qSaveCore returned an error");
6548 for (
auto x : llvm::split(response.
GetStringRef(),
';')) {
6549 if (x.consume_front(
"core-path:"))
6555 return llvm::createStringError(llvm::inconvertibleErrorCode(),
6556 "qSaveCore returned no core path");
6559 FileSpec remote_core{llvm::StringRef(path)};
6565 platform.
Unlink(remote_core);
6567 return error.ToError();
6573 return llvm::createStringError(llvm::inconvertibleErrorCode(),
6574 "Unable to send qSaveCore");
6586 "GDBRemoteCommunicationClientBase::%s() received $J packet "
6587 "but was not a StructuredData packet: packet starts with "
6599 json_sp->Dump(json_str,
true);
6602 "ProcessGDBRemote::%s() "
6603 "received Async StructuredData packet: %s",
6604 __FUNCTION__, json_str.
GetData());
6607 "ProcessGDBRemote::%s"
6608 "() received StructuredData packet:"
6618 if (structured_data_sp)
6626 "Tests packet speeds of various sizes to determine "
6627 "the performance characteristics of the GDB remote "
6632 "The number of packets to send of each varying size "
6633 "(default is 1000).",
6636 "The maximum number of bytes to send in a packet. Sizes "
6637 "increase in powers of 2 while the size is less than or "
6638 "equal to this option value. (default 1024).",
6641 "The maximum number of bytes to receive in a packet. Sizes "
6642 "increase in powers of 2 while the size is less than or "
6643 "equal to this option value. (default 1024).",
6646 "Print the output as JSON data for easy parsing.", false, true) {
6666 if (!output_stream_sp)
6667 output_stream_sp =
m_interpreter.GetDebugger().GetAsyncOutputStream();
6670 const uint32_t num_packets =
6672 const uint64_t max_send =
m_max_send.GetOptionValue().GetCurrentValue();
6673 const uint64_t max_recv =
m_max_recv.GetOptionValue().GetCurrentValue();
6674 const bool json =
m_json.GetOptionValue().GetCurrentValue();
6675 const uint64_t k_recv_amount =
6678 num_packets, max_send, max_recv, k_recv_amount, json,
6703 "Dumps the packet history buffer. ", nullptr) {}
6724 interpreter,
"process plugin packet xfer-size",
6725 "Maximum size that lldb will try to read/write one one chunk.",
6736 "amount to be transferred when "
6747 uint64_t user_specified_max = strtoul(packet_size,
nullptr, 10);
6748 if (errno == 0 && user_specified_max != 0) {
6763 "Send a custom packet through the GDB remote "
6764 "protocol and print the answer. "
6765 "The packet header and footer will automatically "
6766 "be added to the packet prior to sending and "
6767 "stripped from the result.",
6778 "'%s' takes a one or more packet content arguments",
6786 for (
size_t i = 0; i < argc; ++i) {
6793 output_strm.
Printf(
" packet: %s\n", packet_cstr);
6794 std::string response_str = std::string(response.
GetStringRef());
6796 if (strstr(packet_cstr,
"qGetProfileData") !=
nullptr) {
6800 if (response_str.empty())
6801 output_strm.
PutCString(
"response: \nerror: UNIMPLEMENTED\n");
6814 "Send a qRcmd packet through the GDB remote protocol "
6815 "and print the response. "
6816 "The argument passed to this command will be hex "
6817 "encoded into a valid 'qRcmd' packet, sent and the "
6818 "response will be printed.") {}
6824 if (command.empty()) {
6841 [&output_strm](llvm::StringRef output) { output_strm << output; });
6844 const std::string &response_str = std::string(response.
GetStringRef());
6846 if (response_str.empty())
6847 output_strm.
PutCString(
"response: \nerror: UNIMPLEMENTED\n");
6859 "Commands that deal with GDB remote packets.",
6888 interpreter,
"process plugin",
6889 "Commands for operating on a ProcessGDBRemote process.",
6890 "process plugin <subcommand> [<subcommand-options>]") {
6901 m_command_sp = std::make_shared<CommandObjectMultiwordProcessGDBRemote>(
6902 GetTarget().GetDebugger().GetCommandInterpreter());
6907 bool enable,
bool is_expression_fork) {
6913 if (!enable && is_expression_fork) {
6914 if (
auto entry =
GetTarget().GetEntryPointAddress())
6915 entry_addr = entry->GetOpcodeLoadAddress(&
GetTarget());
6929 "DidForkSwitchSoftwareBreakpoints: retaining expression-"
6930 "return trap at {0:x} in forked child",
6954 addr_t addr = wp_res_sp->GetLoadAddress();
6955 size_t size = wp_res_sp->GetByteSize();
6957 m_gdb_comm.SendGDBStoppointTypePacket(type, enable, addr, size,
6963 bool is_expression_fork) {
6972 bool overrode_follow_mode =
false;
6975 if (is_expression_fork) {
6976 LLDB_LOG(log,
"ProcessGDBRemote::DidFork() overriding follow-fork-mode "
6977 "to parent during expression evaluation");
6979 LLDB_LOG(log,
"ProcessGDBRemote::DidFork() overriding follow-fork-mode "
6980 "to parent during expression evaluation. Child process "
6981 "{0} is available for manual attachment.",
6985 overrode_follow_mode =
true;
6996 switch (follow_fork_mode) {
6998 follow_pid = parent_pid;
6999 follow_tid = parent_tid;
7000 detach_pid = child_pid;
7001 detach_tid = child_tid;
7004 follow_pid = child_pid;
7005 follow_tid = child_tid;
7006 detach_pid = parent_pid;
7007 detach_tid = parent_tid;
7012 if (!
m_gdb_comm.SetCurrentThread(detach_tid, detach_pid)) {
7013 LLDB_LOG(log,
"ProcessGDBRemote::DidFork() unable to set pid/tid");
7027 if (!
m_gdb_comm.SetCurrentThread(follow_tid, follow_pid) ||
7028 !
m_gdb_comm.SetCurrentThreadForRun(follow_tid, follow_pid)) {
7029 LLDB_LOG(log,
"ProcessGDBRemote::DidFork() unable to reset pid/tid");
7033 LLDB_LOG(log,
"Detaching process {0}", detach_pid);
7036 bool keep_stopped = overrode_follow_mode && !is_expression_fork;
7038 if (
error.Fail() && keep_stopped) {
7039 LLDB_LOG(log,
"ProcessGDBRemote::DidFork() detach-and-stay-stopped not "
7040 "supported, falling back to normal detach");
7041 keep_stopped =
false;
7045 LLDB_LOG(log,
"ProcessGDBRemote::DidFork() detach packet send failed: {0}",
7046 error.AsCString() ?
error.AsCString() :
"<unknown error>");
7052 if (overrode_follow_mode && !is_expression_fork) {
7056 output_up->Printf(
"warning: follow-fork-mode 'child' was overridden to "
7057 "'parent' because an expression is being evaluated.\n"
7058 "Child process %" PRIu64
7059 " has been detached%s.\n"
7060 "You can attach to it with: process attach -p %" PRIu64
7063 keep_stopped ?
" and stopped" :
" (running)",
7079 bool is_expression_fork) {
7084 "ProcessGDBRemote::DidVFork() called for child_pid: {0}, child_tid {1}",
7085 child_pid, child_tid);
7091 bool overrode_follow_mode =
false;
7094 if (is_expression_fork) {
7095 LLDB_LOG(log,
"ProcessGDBRemote::DidVFork() overriding follow-fork-mode "
7096 "to parent during expression evaluation");
7098 LLDB_LOG(log,
"ProcessGDBRemote::DidVFork() overriding follow-fork-mode "
7099 "to parent during expression evaluation. Child process "
7100 "{0} is available for manual attachment.",
7104 overrode_follow_mode =
true;
7114 switch (follow_fork_mode) {
7116 detach_pid = child_pid;
7117 detach_tid = child_tid;
7120 detach_pid =
m_gdb_comm.GetCurrentProcessID();
7126 if (!
m_gdb_comm.SetCurrentThread(detach_tid, detach_pid)) {
7127 LLDB_LOG(log,
"ProcessGDBRemote::DidVFork() unable to set pid/tid");
7135 if (!
m_gdb_comm.SetCurrentThread(child_tid, child_pid) ||
7136 !
m_gdb_comm.SetCurrentThreadForRun(child_tid, child_pid)) {
7137 LLDB_LOG(log,
"ProcessGDBRemote::DidVFork() unable to reset pid/tid");
7143 LLDB_LOG(log,
"Detaching process {0}", detach_pid);
7144 bool keep_stopped = overrode_follow_mode && !is_expression_fork;
7146 if (
error.Fail() && keep_stopped) {
7147 LLDB_LOG(log,
"ProcessGDBRemote::DidVFork() detach-and-stay-stopped not "
7148 "supported, falling back to normal detach");
7149 keep_stopped =
false;
7154 "ProcessGDBRemote::DidVFork() detach packet send failed: {0}",
7155 error.AsCString() ?
error.AsCString() :
"<unknown error>");
7159 if (overrode_follow_mode && !is_expression_fork) {
7163 output_up->Printf(
"warning: follow-fork-mode 'child' was overridden to "
7164 "'parent' because an expression is being evaluated.\n"
7165 "Child process %" PRIu64
7166 " has been detached%s.\n"
7167 "You can attach to it with: process attach -p %" PRIu64
7170 keep_stopped ?
" and stopped" :
" (running)",
7203 llvm::Error joined = llvm::Error::success();
7204 for (
auto &[site, action] : site_to_action) {
7208 joined = llvm::joinErrors(std::move(joined), std::move(
error));
7216static llvm::SmallVector<std::optional<uint8_t>>
7218 llvm::SmallVector<std::optional<uint8_t>> results;
7222 parsed ? parsed->GetAsDictionary() :
nullptr;
7230 llvm::StringRef token;
7231 if (
auto *
string = object->GetAsString())
7232 token =
string->GetValue();
7233 if (token ==
"OK") {
7234 results.push_back(std::nullopt);
7237 if (token.size() != 3 || !token.starts_with(
"E")) {
7238 results.push_back(uint8_t(0xff));
7241 uint8_t error_code = 0;
7242 if (token.drop_front(1).getAsInteger(
BASE_16, error_code))
7243 results.push_back(0xff);
7245 results.push_back(error_code);
7254static std::optional<GDBStoppointType>
7263 return std::nullopt;
7272 return std::nullopt;
7274 llvm_unreachable(
"unhandled BreakpointSite type");
7278struct BreakpointPacketInfo {
7279 BreakpointSite &site;
7280 size_t trap_opcode_size;
7285std::string to_string(
const BreakpointPacketInfo &info) {
7286 char packet = info.is_enable ?
'Z' :
'z';
7287 return llvm::formatv(
"{0}{1},{2:x-},{3:x-}", packet,
7289 info.trap_opcode_size)
7296 if (site_to_action.empty())
7297 return llvm::Error::success();
7298 if (!
m_gdb_comm.GetMultiBreakpointSupported())
7303 std::vector<BreakpointPacketInfo> breakpoint_infos;
7304 for (
auto [site, action] : site_to_action) {
7306 std::optional<GDBStoppointType> type =
7310 LLDB_LOG(log,
"MultiBreakpoint: site {0} at {1:x} can't be batched",
7311 site->GetID(), site->GetLoadAddress());
7315 breakpoint_infos.push_back(
7320 stream <<
"jMultiBreakpoint:";
7322 auto args_array = std::make_shared<StructuredData::Array>();
7323 for (
auto &bp_info : breakpoint_infos)
7324 args_array->AddStringItem(to_string(bp_info));
7327 packet_dict.
AddItem(
"breakpoint_requests", args_array);
7328 packet_dict.
Dump(stream,
false);
7332 llvm::Expected<StringExtractorGDBRemote> response =
7337 LLDB_LOG_ERROR(log, response.takeError(),
"jMultiBreakpoint failed: {0}");
7341 llvm::SmallVector<std::optional<uint8_t>> results =
7345 if (results.size() != breakpoint_infos.size())
7346 return llvm::createStringErrorV(
7347 "MultiBreakpoint response count mismatch (expected {0}, got {1})",
7348 site_to_action.size(), results.size());
7350 llvm::Error joined = llvm::Error::success();
7351 for (
auto [error_code, bp_info] :
7352 llvm::zip_equal(results, breakpoint_infos)) {
7355 auto error = llvm::createStringErrorV(
7356 "MultiBreakpoint: site {0} at {1:x} failed with E{2}",
7357 bp_info.site.GetID(), bp_info.site.GetLoadAddress(), error_code);
7358 joined = llvm::joinErrors(std::move(joined), std::move(
error));
7362 if (bp_info.is_enable)
static llvm::raw_ostream & error(Stream &strm)
static PluginProperties & GetGlobalPluginProperties()
#define LLDB_LOG(log,...)
The LLDB_LOG* macros defined below are the way to emit log messages.
#define LLDB_LOGF_VERBOSE(log,...)
#define LLDB_LOGF(log,...)
#define LLDB_LOG_ERROR(log, error,...)
#define LLDB_LOG_VERBOSE(log,...)
#define LLDB_PLUGIN_DEFINE(PluginName)
static PluginProperties & GetGlobalPluginProperties()
static const char *const s_async_json_packet_prefix
#define DEBUGSERVER_BASENAME
static size_t SplitCommaSeparatedRegisterNumberString(const llvm::StringRef &comma_separated_register_numbers, std::vector< uint32_t > ®nums, int base)
static const char * end_delimiter
static GDBStoppointType GetGDBStoppointType(const WatchpointResourceSP &wp_res_sp)
static StructuredData::ObjectSP ParseStructuredDataPacket(llvm::StringRef packet)
static std::string BinaryInformationLevelToJSONKey(BinaryInformationLevel info_level)
static uint64_t ComputeNumRangesMultiMemRead(uint64_t max_packet_size, llvm::ArrayRef< Range< lldb::addr_t, size_t > > ranges)
Returns the number of ranges that is safe to request using MultiMemRead while respecting max_packet_s...
static std::optional< GDBStoppointType > GetStoppointType(BreakpointSite &site, bool insert, GDBRemoteCommunicationClient &gdb_comm)
Determine the GDB stoppoint type for a breakpoint site by checking which packet types the remote supp...
static FileSpec GetDebugserverPath(Platform &platform)
static llvm::SmallVector< std::optional< uint8_t > > ParseMultiBreakpointResponse(llvm::StringRef response_str)
Parse a MultiBreakpoint response into per-request results.
static const int end_delimiter_len
CommandObjectMultiwordProcessGDBRemote(CommandInterpreter &interpreter)
~CommandObjectMultiwordProcessGDBRemote() override=default
void DoExecute(Args &command, CommandReturnObject &result) override
~CommandObjectProcessGDBRemotePacketHistory() override=default
CommandObjectProcessGDBRemotePacketHistory(CommandInterpreter &interpreter)
~CommandObjectProcessGDBRemotePacketMonitor() override=default
void DoExecute(llvm::StringRef command, CommandReturnObject &result) override
CommandObjectProcessGDBRemotePacketMonitor(CommandInterpreter &interpreter)
CommandObjectProcessGDBRemotePacketSend(CommandInterpreter &interpreter)
~CommandObjectProcessGDBRemotePacketSend() override=default
void DoExecute(Args &command, CommandReturnObject &result) override
~CommandObjectProcessGDBRemotePacketXferSize() override=default
void DoExecute(Args &command, CommandReturnObject &result) override
CommandObjectProcessGDBRemotePacketXferSize(CommandInterpreter &interpreter)
~CommandObjectProcessGDBRemotePacket() override=default
CommandObjectProcessGDBRemotePacket(CommandInterpreter &interpreter)
Options * GetOptions() override
OptionGroupBoolean m_json
void DoExecute(Args &command, CommandReturnObject &result) override
~CommandObjectProcessGDBRemoteSpeedTest() override=default
OptionGroupOptions m_option_group
OptionGroupUInt64 m_max_send
OptionGroupUInt64 m_num_packets
CommandObjectProcessGDBRemoteSpeedTest(CommandInterpreter &interpreter)
OptionGroupUInt64 m_max_recv
static lldb::ABISP FindPlugin(lldb::ProcessSP process_sp, const ArchSpec &arch)
A class which holds the metadata from a remote stub/corefile note about how many bits are used for ad...
void SetHighmemAddressableBits(uint32_t highmem_addressing_bits)
void SetAddressableBits(uint32_t addressing_bits)
When a single value is available for the number of bits.
void SetLowmemAddressableBits(uint32_t lowmem_addressing_bits)
An architecture specification class.
bool IsValid() const
Tests if this ArchSpec is valid.
void Clear()
Clears the object state.
llvm::Triple & GetTriple()
Architecture triple accessor.
bool SetTriple(const llvm::Triple &triple)
Architecture triple setter.
bool IsCompatibleMatch(const ArchSpec &rhs) const
Shorthand for IsMatch(rhs, CompatibleMatch).
llvm::Triple::ArchType GetMachine() const
Returns a machine family for the current architecture.
const char * GetArchitectureName() const
Returns a static string representing the current architecture.
A command line argument class.
static lldb::Encoding StringToEncoding(llvm::StringRef s, lldb::Encoding fail_value=lldb::eEncodingInvalid)
static uint32_t StringToGenericRegister(llvm::StringRef s)
size_t GetArgumentCount() const
Gets the number of arguments left in this command object.
void ReplaceArgumentAtIndex(size_t idx, llvm::StringRef arg_str, char quote_char='\0')
Replaces the argument value at index idx to arg_str if idx is a valid argument index.
const char * GetArgumentAtIndex(size_t idx) const
Gets the NULL terminated C string argument pointer for the argument at index idx.
Class that manages the actual breakpoint that will be inserted into the running program.
BreakpointSite::Type GetType() const
void SetType(BreakpointSite::Type type)
void BroadcastEvent(lldb::EventSP &event_sp)
Broadcast an event which has no associated data.
bool LoadSubCommand(llvm::StringRef cmd_name, const lldb::CommandObjectSP &command_obj) override
CommandObjectMultiword(CommandInterpreter &interpreter, const char *name, const char *help=nullptr, const char *syntax=nullptr, uint32_t flags=0)
friend class CommandInterpreter
CommandObjectParsed(CommandInterpreter &interpreter, const char *name, const char *help=nullptr, const char *syntax=nullptr, uint32_t flags=0)
CommandObjectRaw(CommandInterpreter &interpreter, llvm::StringRef name, llvm::StringRef help="", llvm::StringRef syntax="", uint32_t flags=0)
void AddSimpleArgumentList(lldb::CommandArgumentType arg_type, ArgumentRepetitionType repetition_type=eArgRepeatPlain)
CommandInterpreter & m_interpreter
void SetStatus(lldb::ReturnStatus status)
void SetImmediateOutputStream(const lldb::StreamSP &stream_sp)
void AppendErrorWithFormat(const char *format,...) __attribute__((format(printf
lldb::StreamSP GetImmediateOutputStream() const
Stream & GetOutputStream()
A uniqued constant string class.
void SetCString(const char *cstr)
Set the C string value.
void SetString(llvm::StringRef s)
A subclass of DataBuffer that stores a data buffer on the heap.
lldb::StreamUP GetAsyncErrorStream()
TargetList & GetTargetList()
Get accessor for the target list.
static void ReportWarning(std::string message, std::optional< lldb::user_id_t > debugger_id=std::nullopt, std::once_flag *once=nullptr)
Report warning events.
static void ReportError(std::string message, std::optional< lldb::user_id_t > debugger_id=std::nullopt, std::once_flag *once=nullptr)
Report error events.
lldb::StreamUP GetAsyncOutputStream()
ScriptInterpreter * GetScriptInterpreter(bool can_create=true, std::optional< lldb::ScriptLanguage > language={})
ArtifactProviderID AddArtifactProvider(std::string name, ArtifactProvider provider)
Register provider to contribute file name.
void RemoveArtifactProvider(ArtifactProviderID id)
Unregister a provider. Thread-safe.
static Diagnostics & Instance()
static llvm::Expected< lldb::ModuleSP > LocateAndLoadBinary(Process *process, BinarySpec &bin_spec)
Find a binary and load it into a Target.
virtual lldb::ModuleSP LoadModuleAtAddress(const lldb_private::FileSpec &file, lldb::addr_t link_map_addr, lldb::addr_t base_addr, bool base_addr_is_offset)
Locates or creates a module given by file and updates/loads the resulting module at the virtual base ...
static DynamicLoader * FindPlugin(Process *process, llvm::StringRef plugin_name)
Find a dynamic loader plugin for a given process.
const void * GetBytes() const
static const EventDataBytes * GetEventDataFromEvent(const Event *event_ptr)
size_t GetByteSize() const
lldb::ProcessSP GetProcessSP() const
Get accessor that creates a strong reference from the weak process reference contained in this object...
Represents a file descriptor action to be performed during process launch.
Action GetAction() const
Get the type of action.
const FileSpec & GetFileSpec() const
Get the file specification for open actions.
void Append(const FileSpec &file)
Append a FileSpec object to the list.
size_t GetSize() const
Get the number of files in the file list.
void SetFile(llvm::StringRef path, Style style)
Change the file specified with a new path.
void AppendPathComponent(llvm::StringRef component)
size_t GetPath(char *path, size_t max_path_length, bool denormalize=true) const
Extract the full path to the file.
void Clear()
Clears the object state.
static const char * DEV_NULL
bool Exists(const FileSpec &file_spec) const
Returns whether the given file exists.
int Open(const char *path, int flags, int mode=0600)
Wraps open in a platform-independent way.
static FileSystem & Instance()
void Resolve(llvm::SmallVectorImpl< char > &path, bool force_make_absolute=false)
Resolve path to make it canonical.
ValueType Get() const
Get accessor for all flags.
static Environment GetEnvironment()
static void Kill(lldb::pid_t pid, int signo)
static lldb::ListenerSP MakeListener(llvm::StringRef name)
bool get_name(std::string &out) const
bool get_link_map(lldb::addr_t &out) const
bool get_base_is_offset(bool &out) const
bool get_base(lldb::addr_t &out) const
void add(const LoadedModuleInfo &mod)
std::vector< LoadedModuleInfo > m_list
void PutCString(const char *cstr)
LazyBool GetFlash() const
lldb::offset_t GetBlocksize() const
lldb::SymbolSharedCacheUse GetSharedCacheBinaryLoading() const
A collection class for Module objects.
bool AppendIfNeeded(const lldb::ModuleSP &new_module, bool notify=true)
Append a module to the module list, if it is not already there.
void FindSymbolsWithNameAndType(ConstString name, lldb::SymbolType symbol_type, SymbolContextList &sc_list) const
static ModuleListProperties & GetGlobalModuleListProperties()
bool Remove(const lldb::ModuleSP &module_sp, bool notify=true)
Remove a module from the module list.
lldb::ModuleSP GetModuleAtIndex(size_t idx) const
Get the module shared pointer for the module at index idx.
void Append(const lldb::ModuleSP &module_sp, bool notify=true)
Append a module to the module list.
size_t GetSize() const
Gets the size of the module list.
void ForEach(std::function< IterationAction(const lldb::ModuleSP &module_sp)> const &callback) const
Applies 'callback' to each module in this ModuleList.
void Dump(Stream &strm) const
A class that describes an executable image and its associated object and symbol files.
virtual ObjectFile * GetObjectFile()
Get the object file representation for the current architecture.
const FileSpec & GetFileSpec() const
Get const accessor for the module file specification.
A plug-in interface definition class for object file parsers.
@ eTypeExecutable
A normal executable.
@ eTypeDebugInfo
An object file that contains only debug information.
@ eTypeStubLibrary
A library that can be linked against but not used for execution.
@ eTypeObjectFile
An intermediate object file.
@ eTypeDynamicLinker
The platform's dynamic linker executable.
@ eTypeCoreFile
A core file that has a checkpoint of a program's execution state.
@ eTypeSharedLibrary
A shared library that can be used during execution.
@ eTypeJIT
JIT code that has symbols, sections and possibly debug info.
A command line option parsing protocol class.
static bool RegisterPlugin(llvm::StringRef name, llvm::StringRef description, ABICreateInstance create_callback)
static bool CreateSettingForProcessPlugin(Debugger &debugger, const lldb::OptionValuePropertiesSP &properties_sp, llvm::StringRef description, bool is_global_property)
static lldb::OptionValuePropertiesSP GetSettingForProcessPlugin(Debugger &debugger, llvm::StringRef setting_name)
static bool UnregisterPlugin(ABICreateInstance create_callback)
An address in a process, qualified by an address space.
lldb::addr_t GetValue() const
std::optional< lldb::tid_t > GetThreadID() const
lldb::addr_space_t GetAddressSpace() const
bool GetIgnoreExisting() const
bool GetDetachOnError() const
bool GetWaitForLaunch() const
void SetExecutableFile(const FileSpec &exe_file, bool add_exe_file_as_first_arg)
lldb::pid_t GetProcessID() const
FileSpec & GetExecutableFile()
uint32_t GetUserID() const
Environment & GetEnvironment()
void SetUserID(uint32_t uid)
const char * GetLaunchEventData() const
const FileAction * GetFileActionForFD(int fd) const
void SetMonitorProcessCallback(Host::MonitorChildProcessCallback callback)
void SetLaunchInSeparateProcessGroup(bool separate)
const FileSpec & GetWorkingDirectory() const
Args GetExtraStartupCommands() const
FollowForkMode GetFollowForkMode() const
std::chrono::seconds GetInterruptTimeout() const
A plug-in interface definition class for debugging a process.
lldb::IOHandlerSP m_process_input_reader
std::mutex m_process_input_reader_mutex
StopPointSiteList< lldb_private::BreakpointSite > & GetBreakpointSiteList()
virtual Status DisableSoftwareBreakpoint(BreakpointSite *bp_site)
lldb::pid_t GetID() const
Returns the pid of the process or LLDB_INVALID_PROCESS_ID if there is no known pid.
ThreadList & GetThreadList()
void SetAddressableBitMasks(AddressableBits bit_masks)
Process(lldb::TargetSP target_sp, lldb::ListenerSP listener_sp)
Construct with a shared pointer to a target, and the Process listener.
void SetUnixSignals(lldb::UnixSignalsSP &&signals_sp)
virtual void ModulesDidLoad(ModuleList &module_list)
virtual llvm::SmallVector< llvm::MutableArrayRef< uint8_t > > DoReadMemoryRanges(llvm::ArrayRef< Range< lldb::addr_t, size_t > > ranges, llvm::MutableArrayRef< uint8_t > buffer)
Reads each range individually via ReadMemoryFromInferior, bypassing the memory cache.
void ResumePrivateStateThread()
void MapSupportedStructuredDataPlugins(const StructuredData::Array &supported_type_names)
Loads any plugins associated with asynchronous structured data and maps the relevant supported type n...
std::map< lldb::BreakpointSiteSP, BreakpointAction, SiteIDCmp > BreakpointSiteToActionMap
virtual SystemRuntime * GetSystemRuntime()
Get the system runtime plug-in for this process.
std::map< uint64_t, uint32_t > m_thread_id_to_index_id_map
lldb::StateType GetPrivateState() const
void SetBreakpointSiteEnabled(BreakpointSite &site, bool is_enabled=true)
lldb::DynamicLoaderUP m_dyld_up
virtual Status WriteObjectFile(std::vector< ObjectFile::LoadableData > entries)
StopPointSiteList< lldb_private::WatchpointResource > m_watchpoint_resource_list
Watchpoint resources currently in use.
bool IsBreakpointSitePhysicallyEnabled(const BreakpointSite &site)
std::vector< AddressSpaceInfo > m_address_spaces
A list of address spaces for this process.
void AppendSTDOUT(const char *s, size_t len)
bool HasAssignedIndexIDToThread(uint64_t sb_thread_id)
lldb::ByteOrder GetByteOrder() const
void UpdateThreadListIfNeeded()
bool IsValid() const
Return whether this object is valid (i.e.
virtual void DidExec()
Called after a process re-execs itself.
void BroadcastAsyncProfileData(const std::string &one_profile_data)
lldb::UnixSignalsSP m_unix_signals_sp
lldb::tid_t m_interrupt_tid
virtual Status EnableSoftwareBreakpoint(BreakpointSite *bp_site)
bool RouteAsyncStructuredData(const StructuredData::ObjectSP object_sp)
Route the incoming structured data dictionary to the right plugin.
virtual bool IsAlive()
Check if a process is still alive.
ThreadList m_thread_list_real
The threads for this process as are known to the protocol we are debugging with.
lldb::StateType m_last_broadcast_state
void SetID(lldb::pid_t new_pid)
Sets the stored pid.
uint32_t AssignIndexIDToThread(uint64_t thread_id)
virtual bool SetExitStatus(int exit_status, llvm::StringRef exit_string)
Set accessor for the process exit status (return code).
MemoryCache m_memory_cache
uint32_t GetAddressByteSize() const
uint32_t GetStopID() const
void SetPrivateState(lldb::StateType state)
llvm::Expected< AddressSpaceInfo > GetAddressSpaceInfo(llvm::StringRef address_space_name)
lldb::StateType GetPublicState() const
void SetSTDIOFileDescriptor(int file_descriptor)
Associates a file descriptor with the process' STDIO handling and configures an asynchronous reading ...
virtual void Finalize(bool destructing)
This object is about to be destroyed, do any necessary cleanup.
ThreadList m_thread_list
The threads for this process as the user will see them.
const lldb::UnixSignalsSP & GetUnixSignals()
std::weak_ptr< Target > m_target_wp
The target that owns this process.
Status GetMemoryRegionInfo(lldb::addr_t load_addr, MemoryRegionInfo &range_info)
Locate the memory region that contains load_addr.
friend class DynamicLoader
size_t GetSoftwareBreakpointTrapOpcode(BreakpointSite *bp_site)
const ProcessModID & GetModIDRef() const
ThreadedCommunication m_stdio_communication
Target & GetTarget()
Get the target object pointer for this module.
lldb::OptionValuePropertiesSP GetValueProperties() const
A pseudo terminal helper class.
llvm::Error OpenFirstAvailablePrimary(int oflag)
Open the first available pseudo terminal.
@ invalid_fd
Invalid file descriptor value.
int GetPrimaryFileDescriptor() const
The primary file descriptor accessor.
int ReleasePrimaryFileDescriptor()
Release the primary file descriptor.
std::string GetSecondaryName() const
Get the name of the secondary pseudo terminal.
std::vector< Enumerator > Enumerators
const Enumerators & GetEnumerators() const
void DumpToLog(Log *log) const
unsigned GetSizeInBits() const
Get size of the field in bits. Will always be at least 1.
uint64_t GetMaxValue() const
The maximum unsigned value that could be contained in this field.
virtual std::optional< uint64_t > GetByteSize() const
Return this type's fixed size in bytes, if it has one.
virtual StructuredData::DictionarySP GetDynamicSettings(StructuredData::ObjectSP plugin_module_sp, Target *target, const char *setting_name, lldb_private::Status &error)
virtual StructuredData::ObjectSP LoadPluginModule(const FileSpec &file_spec, lldb_private::Status &error)
Status CompleteSending(lldb::pid_t child_pid)
shared_fd_t GetSendableFD()
static llvm::Expected< Pair > CreatePair(std::optional< SocketProtocol > protocol=std::nullopt)
static Status FromErrorStringWithFormat(const char *format,...) __attribute__((format(printf
static Status FromErrorString(const char *str)
bool Fail() const
Test for error condition.
const char * AsCString(const char *default_error_str="unknown error") const
Get the error string associated with the current error.
static Status static Status FromErrorStringWithFormatv(const char *format, Args &&...args)
static Status FromError(llvm::Error error)
Avoid using this in new code. Migrate APIs to llvm::Expected instead.
bool Success() const
Test for success condition.
static lldb::StopInfoSP CreateStopReasonWithMachException(Thread &thread, uint32_t exc_type, uint32_t exc_data_count, uint64_t exc_code, uint64_t exc_sub_code, uint64_t exc_sub_sub_code, bool pc_already_adjusted=true, bool adjust_pc_if_needed=false)
static lldb::StopInfoSP CreateStopReasonToTrace(Thread &thread)
static lldb::StopInfoSP CreateStopReasonVFork(Thread &thread, lldb::pid_t child_pid, lldb::tid_t child_tid)
static lldb::StopInfoSP CreateStopReasonWithInterrupt(Thread &thread, int signo, const char *description)
static lldb::StopInfoSP CreateStopReasonWithSignal(Thread &thread, int signo, const char *description=nullptr, std::optional< int > code=std::nullopt)
static lldb::StopInfoSP CreateStopReasonFork(Thread &thread, lldb::pid_t child_pid, lldb::tid_t child_tid)
static lldb::StopInfoSP CreateStopReasonVForkDone(Thread &thread)
static lldb::StopInfoSP CreateStopReasonWithWatchpointID(Thread &thread, lldb::break_id_t watch_id, bool silently_continue=false)
static lldb::StopInfoSP CreateStopReasonWithException(Thread &thread, const char *description)
static lldb::StopInfoSP CreateStopReasonWithBreakpointSiteID(Thread &thread, lldb::break_id_t break_id)
static lldb::StopInfoSP CreateStopReasonHistoryBoundary(Thread &thread, const char *description)
static lldb::StopInfoSP CreateStopReasonProcessorTrace(Thread &thread, const char *description)
static lldb::StopInfoSP CreateStopReasonWithExec(Thread &thread)
void ForEach(std::function< void(StopPointSite *)> const &callback)
General Outline: When we hit a breakpoint we need to package up whatever information is needed to eva...
ExecutionContextRef exe_ctx_ref
lldb::break_id_t GetID() const
virtual lldb::addr_t GetLoadAddress() const
bool HardwareRequired() const
int PutEscapedBytes(const void *s, size_t src_len)
Output a block of data to the stream performing GDB-remote escaping.
const char * GetData() const
void Flush() override
Flush the stream.
llvm::StringRef GetString() const
A stream class that can stream formatted output to a file.
void Format(const char *format, Args &&... args)
Forwards the arguments to llvm::formatv and writes to the stream.
size_t PutStringAsRawHex8(llvm::StringRef s)
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
size_t PutCString(llvm::StringRef cstr)
Output a C string to the stream.
size_t PutBytesAsRawHex8(const void *src, size_t src_len, lldb::ByteOrder src_byte_order=lldb::eByteOrderInvalid, lldb::ByteOrder dst_byte_order=lldb::eByteOrderInvalid)
ObjectSP GetItemAtIndex(size_t idx) const
bool ForEach(std::function< bool(Object *object)> const &foreach_callback) const
bool GetValueForKeyAsInteger(llvm::StringRef key, IntType &result) const
bool GetValueForKeyAsString(llvm::StringRef key, llvm::StringRef &result) const
ObjectSP GetValueForKey(llvm::StringRef key) const
bool HasKey(llvm::StringRef key) const
void AddItem(llvm::StringRef key, ObjectSP value_sp)
bool GetValueForKeyAsArray(llvm::StringRef key, Array *&result) const
void ForEach(std::function< bool(llvm::StringRef key, Object *object)> const &callback) const
Dictionary * GetAsDictionary()
void Dump(lldb_private::Stream &s, bool pretty_print=true) const
uint64_t GetUnsignedIntegerValue(uint64_t fail_value=0)
std::shared_ptr< Dictionary > DictionarySP
std::shared_ptr< Object > ObjectSP
static ObjectSP ParseJSON(llvm::StringRef json_text)
std::shared_ptr< Array > ArraySP
Integer< uint64_t > UnsignedInteger
Defines a list of symbol context objects.
Defines a symbol context baton that can be handed other debug core functions.
A plug-in interface definition class for system runtimes.
virtual void AddThreadExtendedInfoPacketHints(lldb_private::StructuredData::ObjectSP dict)
Add key-value pairs to the StructuredData dictionary object with information debugserver may need whe...
Status CreateTarget(Debugger &debugger, llvm::StringRef user_exe_path, llvm::StringRef triple_str, LoadDependentFiles get_dependent_modules, const OptionGroupPlatform *platform_options, lldb::TargetSP &target_sp)
Create a new Target.
Module * GetExecutableModulePointer()
lldb::BreakpointSP GetBreakpointByID(lldb::break_id_t break_id)
Debugger & GetDebugger() const
bool SetArchitecture(const ArchSpec &arch_spec, bool set_platform=false, bool merge=true)
Set the architecture for this target.
lldb::ModuleSP GetExecutableModule()
Gets the module for the main executable.
lldb::PlatformSP GetPlatform()
lldb::BreakpointSP CreateBreakpoint(const FileSpecList *containingModules, const FileSpec &file, uint32_t line_no, uint32_t column, lldb::addr_t offset, LazyBool check_inlines, LazyBool skip_prologue, bool internal, bool request_hardware, LazyBool move_to_nearest_code)
const ModuleList & GetImages() const
Get accessor for the images for this process.
const ArchSpec & GetArchitecture() const
@ eBroadcastBitNewTargetCreated
void SetExecutableModule(lldb::ModuleSP &module_sp, LoadDependentFiles load_dependent_files=eLoadDependentsDefault)
Set the main executable module.
bool MergeArchitecture(const ArchSpec &arch_spec)
void AddThreadSortedByIndexID(const lldb::ThreadSP &thread_sp)
static llvm::Expected< HostThread > LaunchThread(llvm::StringRef name, std::function< lldb::thread_result_t()> thread_function, size_t min_stack_byte_size=0)
uint32_t GetSize(bool can_update=true)
lldb::ThreadSP GetThreadAtIndex(uint32_t idx, bool can_update=true)
lldb::ThreadSP RemoveThreadByProtocolID(lldb::tid_t tid, bool can_update=true)
Represents UUID's of various sizes.
bool SetFromStringRef(llvm::StringRef str)
static lldb::UnixSignalsSP Create(const ArchSpec &arch)
static std::vector< lldb::WatchpointResourceSP > AtomizeWatchpointRequest(lldb::addr_t addr, size_t size, bool read, bool write, WatchpointHardwareFeature supported_features, ArchSpec &arch)
Convert a user's watchpoint request into an array of memory regions, each region watched by one hardw...
XMLNode GetRootElement(const char *required_name=nullptr)
bool ParseMemory(const char *xml, size_t xml_length, const char *url="untitled.xml")
void ForEachChildElement(NodeCallback const &callback) const
llvm::StringRef GetName() const
bool GetElementText(std::string &text) const
std::string GetAttributeValue(const char *name, const char *fail_value=nullptr) const
bool NameIs(const char *name) const
void ForEachChildElementWithName(const char *name, NodeCallback const &callback) const
XMLNode FindFirstChildElementWithName(const char *name) const
void ForEachAttribute(AttributeCallback const &callback) const
@ eBroadcastBitRunPacketSent
PacketResult SendPacketAndReceiveResponseWithOutputSupport(llvm::StringRef payload, StringExtractorGDBRemote &response, std::chrono::seconds interrupt_timeout, llvm::function_ref< void(llvm::StringRef)> output_callback)
PacketResult SendPacketAndWaitForResponse(llvm::StringRef payload, StringExtractorGDBRemote &response, std::chrono::seconds interrupt_timeout=std::chrono::seconds(0), bool sync_on_timeout=true)
lldb::StateType SendContinuePacketAndWaitForResponse(ContinueDelegate &delegate, const UnixSignals &signals, llvm::StringRef payload, std::chrono::seconds interrupt_timeout, StringExtractorGDBRemote &response)
bool SupportsGDBStoppointPacket(GDBStoppointType type)
llvm::Expected< std::string > ReadExtFeature(llvm::StringRef object, llvm::StringRef annex)
void TestPacketSpeed(const uint32_t num_packets, uint32_t max_send, uint32_t max_recv, uint64_t recv_amount, bool json, Stream &strm)
bool GetQXferLibrariesSVR4ReadSupported()
bool GetQXferLibrariesReadSupported()
void DumpHistory(Stream &strm)
Status FlashErase(lldb::addr_t addr, size_t size)
Status DisableWatchpoint(lldb::WatchpointSP wp_sp, bool notify=true) override
llvm::SmallVector< llvm::MutableArrayRef< uint8_t > > DoReadMemoryRanges(llvm::ArrayRef< Range< lldb::addr_t, size_t > > ranges, llvm::MutableArrayRef< uint8_t > buf) override
Override of DoReadMemoryRanges that uses MultiMemRead to perform this operation in a single packet.
friend class ThreadGDBRemote
DataExtractor GetAuxvData() override
GDBRemoteCommunicationClient & GetGDBRemote()
static bool AcceleratorBreakpointHitCallback(void *baton, StoppointCallbackContext *context, lldb::user_id_t break_id, lldb::user_id_t break_loc_id)
Breakpoint callback invoked when an accelerator-plugin-requested breakpoint is hit.
Status DoConnectRemote(llvm::StringRef remote_url) override
Attach to a remote system via a URL.
void HandleAsyncStructuredDataPacket(llvm::StringRef data) override
Process asynchronously-received structured data.
void KillDebugserverProcess()
Status DoDestroy() override
llvm::Error DoDisableBreakpointSite(BreakpointSite &bp_site)
Disable a single breakpoint site directly by sending the appropriate z packet or restoring the origin...
std::vector< std::unique_ptr< RegisterType > > m_register_types
Status LaunchAndConnectToDebugserver(const ProcessInfo &process_info)
virtual std::shared_ptr< ThreadGDBRemote > CreateThread(lldb::tid_t tid)
StructuredData::ObjectSP GetLoadedDynamicLibrariesInfos(lldb::addr_t image_list_address, lldb::addr_t image_count) override
Retrieve the list of shared libraries that are loaded for this process This method is used on pre-mac...
llvm::Error HandleAcceleratorActions(const AcceleratorActions &actions)
Handle a set of actions requested by an accelerator plugin.
lldb::StateType SetThreadStopInfo(StringExtractor &stop_packet)
static void MonitorDebugserverProcess(std::weak_ptr< ProcessGDBRemote > process_wp, lldb::pid_t pid, int signo, int exit_status)
StructuredData::ObjectSP GetSharedCacheInfo() override
Status DisableBreakpointSite(BreakpointSite *bp_site) override
Status EnableWatchpoint(lldb::WatchpointSP wp_sp, bool notify=true) override
Status DoSignal(int signal) override
Sends a process a UNIX signal signal.
Status DoDeallocateMemory(lldb::addr_t ptr) override
Actually deallocate memory in the process.
Broadcaster m_async_broadcaster
bool ParsePythonTargetDefinition(const FileSpec &target_definition_fspec)
llvm::Error UpdateBreakpointSitesNotBatched(const BreakpointSiteToActionMap &site_to_action)
bool StopNoticingNewThreads() override
Call this to turn off the stop & notice new threads mode.
static bool NewThreadNotifyBreakpointHit(void *baton, StoppointCallbackContext *context, lldb::user_id_t break_id, lldb::user_id_t break_loc_id)
void DidFork(lldb::pid_t child_pid, lldb::tid_t child_tid, bool is_expression_fork=false) override
Called after a reported fork.
void DumpPluginHistory(Stream &s) override
The underlying plugin might store the low-level communication history for this session.
FlashRangeVector m_erased_flash_ranges
Guarded< StructuredData::ObjectSP, std::mutex > m_shared_cache_info
Shared cache image list from the "jGetSharedCacheInfo" packet.
Status DoDetach(bool keep_stopped) override
Detaches from a running or stopped process.
lldb::addr_t DoAllocateMemory(size_t size, uint32_t permissions, Status &error) override
Actually allocate memory in the process.
tid_sig_collection m_continue_C_tids
bool HasErased(FlashRange range)
std::optional< bool > DoGetWatchpointReportedAfter() override
Provide an override value in the subclass for lldb's CPU-based logic for whether watchpoint exception...
void DidVFork(lldb::pid_t child_pid, lldb::tid_t child_tid, bool is_expression_fork=false) override
Called after a reported vfork.
Status WillLaunchOrAttach()
std::optional< uint32_t > GetWatchpointSlotCount() override
Get the number of watchpoints supported by this target.
GDBRemoteCommunicationClient m_gdb_comm
llvm::Expected< std::vector< uint8_t > > DoReadMemoryTags(lldb::addr_t addr, size_t len, int32_t type) override
Does the final operation to read memory tags.
llvm::DenseMap< ModuleCacheKey, ModuleSpec, ModuleCacheInfo > m_cached_module_specs
Status DoWillAttachToProcessWithID(lldb::pid_t pid) override
Called before attaching to a process.
friend class GDBRemoteCommunicationClient
void DidForkSwitchSoftwareBreakpoints(bool enable, bool is_expression_fork=false)
Status DoResume(lldb::RunDirection direction) override
Resumes all of a process's threads as configured using the Thread run control functions.
Status DoGetMemoryRegionInfo(lldb::addr_t load_addr, MemoryRegionInfo ®ion_info) override
DoGetMemoryRegionInfo is called by GetMemoryRegionInfo after it has removed non address bits from loa...
void DidLaunchOrAttach(ArchSpec &process_arch)
size_t UpdateThreadIDsFromStopReplyThreadsValue(llvm::StringRef value)
FlashRangeVector::Entry FlashRange
Status GetFileLoadAddress(const FileSpec &file, bool &is_loaded, lldb::addr_t &load_addr) override
Try to find the load address of a file.
MMapMap m_addr_to_mmap_size
bool GetThreadStopInfoFromJSON(ThreadGDBRemote *thread, const StructuredData::ObjectSP &thread_infos_sp)
void DidLaunch() override
Called after launching a process.
void SetUserSpecifiedMaxMemoryTransferSize(uint64_t user_specified_max)
void AddRemoteRegisters(std::vector< DynamicRegisterInfo::Register > ®isters, const ArchSpec &arch_to_use)
Status UpdateAutomaticSignalFiltering() override
void HandleAsyncStdout(llvm::StringRef out) override
static llvm::StringRef GetPluginDescriptionStatic()
tid_sig_collection m_continue_S_tids
bool m_allow_flash_writes
lldb::BreakpointSP m_thread_create_bp_sp
std::map< uint32_t, std::string > ExpeditedRegisterMap
llvm::Error TraceStop(const TraceStopRequest &request) override
Stop tracing a live process or its threads.
StructuredData::ObjectSP GetExtendedInfoForThread(lldb::tid_t tid)
llvm::Error DoEnableBreakpointSite(BreakpointSite &bp_site)
Enable a single breakpoint site by trying Z0 (software), then Z1 (hardware), then manual memory write...
lldb::ThreadSP HandleThreadAsyncInterrupt(uint8_t signo, const std::string &description) override
Handle thread specific async interrupt and return the original thread that requested the async interr...
llvm::Expected< LoadedModuleInfoList > GetLoadedModuleList() override
Query remote GDBServer for a detailed loaded library list.
bool AcceleratorBreakpointHit(void *baton, StoppointCallbackContext *context, lldb::user_id_t break_id, lldb::user_id_t break_loc_id)
bool m_waiting_for_attach
llvm::Error HandleAcceleratorConnection(const AcceleratorActions &actions)
Create a new target for an accelerator and connect it to the GDB server described by the action's con...
llvm::Error GetGDBServerRegisterInfo(ArchSpec &arch)
Status DoAttachToProcessWithID(lldb::pid_t pid, const ProcessAttachInfo &attach_info) override
Attach to an existing process using a process ID.
void HandleStopReply() override
Status EstablishConnectionIfNeeded(const ProcessInfo &process_info)
llvm::Error UpdateBreakpointSites(const BreakpointSiteToActionMap &site_to_action) override
bool UpdateThreadIDList()
static llvm::StringRef GetPluginNameStatic()
Status DoHalt(bool &caused_stop) override
Halts a running process.
uint64_t m_last_signals_version
llvm::Expected< TraceSupportedResponse > TraceSupported() override
Get the processor tracing type supported for this process.
std::map< std::string, int64_t > m_processed_accelerator_actions
Tracks the last action identifier handled per accelerator plugin so the same actions are not processe...
llvm::Error TraceStart(const llvm::json::Value &request) override
Start tracing a process or its threads.
void ParseExpeditedRegisters(ExpeditedRegisterMap &expedited_register_map, lldb::ThreadSP thread_sp)
size_t DoReadMemory(const ProcessAddress &process_addr, void *buf, size_t size, Status &error) override
Actually do the reading of memory from a process.
void WillPublicStop() override
Called when the process is about to broadcast a public stop.
Status SendEventData(const char *data) override
bool StartNoticingNewThreads() override
Call this to set the lldb in the mode where it breaks on new thread creations, and then auto-restarts...
DynamicLoader * GetDynamicLoader() override
Get the dynamic loader plug-in for this process.
void RemoveNewThreadBreakpoints()
Remove the breakpoints associated with thread creation from the Target.
ArchSpec GetSystemArchitecture() override
Get the system architecture for this process.
Status ConfigureStructuredData(llvm::StringRef type_name, const StructuredData::ObjectSP &config_sp) override
Configure asynchronous structured data feature.
bool SupportsReverseDirection() override
Reports whether this process supports reverse execution.
void DidExec() override
Called after a process re-execs itself.
size_t PutSTDIN(const char *buf, size_t buf_size, Status &error) override
Puts data into this process's STDIN.
Guarded< StructuredData::ObjectSP, std::mutex > m_jthreadsinfo
Full stop info, expedited registers and memory for all threads, from the "jThreadsInfo" packet.
static void DebuggerInitialize(Debugger &debugger)
tid_collection m_thread_ids
Status DoAttachToProcessWithName(const char *process_name, const ProcessAttachInfo &attach_info) override
Attach to an existing process using a partial process name.
std::string m_partial_profile_data
StructuredData::ObjectSP GetLoadedDynamicLibrariesInfos_sender(StructuredData::ObjectSP args)
void MaybeLoadExecutableModule()
std::vector< lldb::addr_t > m_thread_pcs
bool CanDebug(lldb::TargetSP target_sp, bool plugin_specified_by_name) override
Check if a plug-in instance can debug the file in module.
void SetThreadPc(const lldb::ThreadSP &thread_sp, uint64_t index)
std::recursive_mutex m_async_thread_state_mutex
Status ConnectToDebugserver(llvm::StringRef host_port)
void SetUnixSignals(const lldb::UnixSignalsSP &signals_sp)
void RefreshStateAfterStop() override
Currently called as part of ShouldStop.
uint64_t m_remote_stub_max_memory_size
std::optional< StringExtractorGDBRemote > m_last_stop_packet
CommandObject * GetPluginCommandObject() override
Return a multi-word command object that can be used to expose plug-in specific commands.
int64_t m_breakpoint_pc_offset
size_t DoWriteMemory(lldb::addr_t addr, const void *buf, size_t size, Status &error) override
Actually do the writing of memory to a process.
Status DoLaunch(Module *exe_module, ProcessLaunchInfo &launch_info) override
Launch a new process.
lldb::CommandObjectSP m_command_sp
void DidVForkDone() override
Called after reported vfork completion.
std::string HarmonizeThreadIdsForProfileData(StringExtractorGDBRemote &inputStringExtractor)
bool GetGDBServerRegisterInfoXMLAndProcess(ArchSpec &arch_to_use, std::string xml_filename, std::vector< DynamicRegisterInfo::Register > ®isters)
lldb::tid_t m_last_stop_primary_tid
bool m_use_g_packet_for_reading
Status DoWillAttachToProcessWithName(const char *process_name, bool wait_for_launch) override
Called before attaching to a process.
static std::chrono::seconds GetPacketTimeout()
lldb::ListenerSP m_async_listener_sp
std::pair< std::string, std::string > ModuleCacheKey
bool CalculateThreadStopInfo(ThreadGDBRemote *thread)
Guarded< StructuredData::ObjectSP, std::mutex > m_jstopinfo
Stop info caches filled at a stop and reset by WillResume, which runs on another thread.
lldb::DynamicRegisterInfoSP m_register_info_sp
tid_collection m_continue_c_tids
bool SupportsMemoryTagging() override
Check whether the process supports memory tagging.
void BuildDynamicRegisterInfo(bool force)
tid_collection m_continue_s_tids
size_t UpdateThreadPCsFromStopReplyThreadsValue(llvm::StringRef value)
~ProcessGDBRemote() override
llvm::VersionTuple GetHostOSVersion() override
Sometimes the connection to a process can detect the host OS version that the process is running on.
lldb::tid_t m_initial_tid
llvm::Expected< StringExtractorGDBRemote > SendMultiMemReadPacket(llvm::ArrayRef< Range< lldb::addr_t, size_t > > ranges)
std::map< uint64_t, uint32_t > m_thread_id_to_used_usec_map
Status DoWriteMemoryTags(lldb::addr_t addr, size_t len, int32_t type, const std::vector< uint8_t > &tags) override
Does the final operation to write memory tags.
llvm::Error ParseMultiMemReadPacket(llvm::StringRef response_str, llvm::MutableArrayRef< uint8_t > buffer, unsigned expected_num_ranges, llvm::SmallVectorImpl< llvm::MutableArrayRef< uint8_t > > &memory_regions)
llvm::Expected< std::vector< uint8_t > > TraceGetBinaryData(const TraceGetBinaryDataRequest &request) override
Get binary data given a trace technology and a data identifier.
llvm::Error HandleAcceleratorBreakpoints(const AcceleratorActions &actions)
Set the breakpoints requested by an accelerator plugin as internal breakpoints with a callback that n...
Status EnableBreakpointSite(BreakpointSite *bp_site) override
void ModulesDidLoad(ModuleList &module_list) override
ProcessGDBRemote(lldb::TargetSP target_sp, lldb::ListenerSP listener_sp)
uint32_t m_vfork_in_progress_count
@ eBroadcastBitAsyncContinue
@ eBroadcastBitAsyncThreadShouldExit
@ eBroadcastBitAsyncThreadDidExit
Status WillResume() override
Called before resuming to a process.
lldb::ModuleSP LoadModuleAtAddress(const FileSpec &file, lldb::addr_t link_map, lldb::addr_t base_addr, bool value_is_offset)
void SetLastStopPacket(const StringExtractorGDBRemote &response)
lldb::thread_result_t AsyncThread()
Status WriteObjectFile(std::vector< ObjectFile::LoadableData > entries) override
static std::chrono::milliseconds GetPacketTestDelay()
llvm::Error LoadModules() override
Sometimes processes know how to retrieve and load shared libraries.
uint64_t m_max_memory_size
void HandleAsyncMisc(llvm::StringRef data) override
lldb::addr_t GetImageInfoAddress() override
Get the image information address for the current process.
bool DoUpdateThreadList(ThreadList &old_thread_list, ThreadList &new_thread_list) override
Update the thread list following process plug-in's specific logic.
static lldb::ProcessSP CreateInstance(lldb::TargetSP target_sp, lldb::ListenerSP listener_sp, const FileSpec *crash_file_path, bool can_connect)
void PrefetchModuleSpecs(llvm::ArrayRef< FileSpec > module_file_specs, const llvm::Triple &triple) override
llvm::VersionTuple GetHostMacCatalystVersion() override
void DidForkSwitchHardwareTraps(bool enable)
HostThread m_async_thread
StructuredData::ObjectSP GetDynamicLoaderProcessState() override
bool GetModuleSpec(const FileSpec &module_file_spec, const ArchSpec &arch, ModuleSpec &module_spec) override
Try to fetch the module specification for a module with the given file name and architecture.
Status DoWillLaunch(Module *module) override
Called before launching to a process.
void DidAttach(ArchSpec &process_arch) override
Called after attaching a process.
llvm::Expected< bool > SaveCore(llvm::StringRef outfile) override
Save core dump into the specified file.
std::atomic< lldb::pid_t > m_debugserver_pid
std::optional< Diagnostics::ArtifactProviderID > m_diagnostics_artifact_id
Registration for the packet-history diagnostics provider, if enabled.
llvm::Expected< std::string > TraceGetState(llvm::StringRef type) override
Get the current tracing state of the process and its threads.
bool IsAlive() override
Check if a process is still alive.
void SetQueueLibdispatchQueueAddress(lldb::addr_t dispatch_queue_t) override
void SetQueueInfo(std::string &&queue_name, lldb::QueueKind queue_kind, uint64_t queue_serial, lldb::addr_t dispatch_queue_t, lldb_private::LazyBool associated_with_libdispatch_queue)
void SetNewlyAddedBinaries(const std::vector< lldb::addr_t > &added_binaries)
void SetThreadDispatchQAddr(lldb::addr_t thread_dispatch_qaddr)
void PrivateSetRegisterUnavailable(uint32_t reg)
lldb::RegisterContextSP GetRegisterContext() override
void SetDetailedBinariesInfo(StructuredData::ObjectSP &detailed_info)
void SetAssociatedWithLibdispatchQueue(lldb_private::LazyBool associated_with_libdispatch_queue) override
bool PrivateSetRegisterValue(uint32_t reg, llvm::ArrayRef< uint8_t > data)
#define LLDB_INVALID_SITE_ID
#define LLDB_INVALID_WATCH_ID
#define LLDB_INVALID_SIGNAL_NUMBER
#define LLDB_INVALID_THREAD_ID
#define UNUSED_IF_ASSERT_DISABLED(x)
#define LLDB_INVALID_ADDRESS
#define LLDB_INVALID_REGNUM
#define LLDB_INVALID_PROCESS_ID
#define LLDB_DEFAULT_ADDRESS_SPACE_ID
#define LLDB_REGNUM_GENERIC_PC
lldb::ByteOrder InlHostByteOrder()
std::vector< DynamicRegisterInfo::Register > GetFallbackRegisters(const ArchSpec &arch_to_use)
A class that represents a running process on the host machine.
Log * GetLog(Cat mask)
Retrieve the Log object for the channel associated with the given log enum.
bool InferiorCallMunmap(Process *proc, lldb::addr_t addr, lldb::addr_t length)
bool StateIsRunningState(lldb::StateType state)
Check if a state represents a state where the process or thread is running.
bool InferiorCallMmap(Process *proc, lldb::addr_t &allocated_addr, lldb::addr_t addr, lldb::addr_t length, unsigned prot, unsigned flags, lldb::addr_t fd, lldb::addr_t offset)
const char * StateAsCString(lldb::StateType state)
Converts a StateType to a C string.
const char * GetPermissionsAsCString(uint32_t permissions)
void DumpProcessGDBRemotePacketHistory(void *p, const char *path)
std::shared_ptr< lldb_private::ABI > ABISP
std::shared_ptr< lldb_private::BreakpointSite > BreakpointSiteSP
RunDirection
Execution directions.
std::shared_ptr< lldb_private::Thread > ThreadSP
std::shared_ptr< lldb_private::CommandObject > CommandObjectSP
ConnectionStatus
Connection Status Types.
@ eConnectionStatusSuccess
Success.
std::shared_ptr< lldb_private::UnixSignals > UnixSignalsSP
@ eFormatCString
NULL terminated C strings.
@ eFormatCharArray
Print characters with no single quotes, used for character arrays that can contain non printable char...
@ eFormatInstruction
Disassemble an opcode.
@ eFormatVoid
Do not print this.
@ eFormatComplex
Floating point complex type.
@ eFormatHexFloat
ISO C99 hex float string.
@ eFormatOSType
OS character codes encoded into an integer 'PICT' 'text' etc...
@ eFormatAddressInfo
Describe what an address points to (func + offset with file/line, symbol + offset,...
@ eFormatCharPrintable
Only printable characters, '.' if not printable.
@ eFormatComplexInteger
Integer complex type.
@ eFormatFloat128
Disambiguate between 128-bit long double (which uses eFormatFloat) and __float128 (which uses eFormat...
std::shared_ptr< lldb_private::Platform > PlatformSP
StateType
Process and Thread States.
@ eStateUnloaded
Process is object is valid, but not currently loaded.
@ eStateConnected
Process is connected to remote debug services, but not launched or attached to anything yet.
@ eStateDetached
Process has been detached and can't be examined.
@ eStateStopped
Process or thread is stopped and can be examined.
@ eStateSuspended
Process or thread is in a suspended state as far as the debugger is concerned while other processes o...
@ eStateRunning
Process or thread is running and can't be examined.
@ eStateAttaching
Process is currently trying to attach.
@ eStateExited
Process has exited and can't be examined.
@ eStateStepping
Process or thread is in the process of stepping and can not be examined.
@ eStateCrashed
Process or thread has crashed and can be examined.
@ eLanguageTypeUnknown
Unknown or invalid language value.
@ eSymbolSharedCacheUseInferiorSharedCacheOnly
@ eSymbolSharedCacheUseHostAndInferiorSharedCache
std::shared_ptr< lldb_private::Stream > StreamSP
std::shared_ptr< lldb_private::Breakpoint > BreakpointSP
std::shared_ptr< lldb_private::Process > ProcessSP
Encoding
Register encoding definitions.
@ eEncodingVector
vector registers
@ eEncodingUint
unsigned integer
@ eEncodingSint
signed integer
std::shared_ptr< lldb_private::Event > EventSP
@ eReturnStatusSuccessFinishResult
@ eArgTypeUnsignedInteger
std::shared_ptr< lldb_private::Watchpoint > WatchpointSP
std::shared_ptr< lldb_private::Listener > ListenerSP
std::shared_ptr< lldb_private::WatchpointResource > WatchpointResourceSP
std::shared_ptr< lldb_private::DataBuffer > DataBufferSP
std::shared_ptr< lldb_private::StopInfo > StopInfoSP
std::shared_ptr< lldb_private::WritableDataBuffer > WritableDataBufferSP
BinaryInformationLevel
When the Process plugin can retrieve information about all binaries loaded in the target process,...
@ eBinaryInformationLevelAddrName
@ eBinaryInformationLevelAddrNameUUID
@ eBinaryInformationLevelFull
@ eBinaryInformationLevelAddrOnly
std::shared_ptr< lldb_private::Target > TargetSP
std::unique_ptr< lldb_private::Stream > StreamUP
std::shared_ptr< lldb_private::RegisterContext > RegisterContextSP
std::shared_ptr< lldb_private::Module > ModuleSP
@ eRegisterKindGeneric
insn ptr reg, stack ptr reg, etc not specific to any particular target
@ eRegisterKindProcessPlugin
num used by the process plugin - e.g.
Actions to be performed in the native process on behalf of an accelerator plugin.
std::vector< AcceleratorBreakpointInfo > breakpoints
New breakpoints to set. Nothing to set if this is empty.
int64_t identifier
Unique identifier for this action within the plugin.
std::string plugin_name
Unique name identifying the accelerator plugin.
std::optional< AcceleratorConnectionInfo > connect_info
If set, the client should create a new target and connect to the accelerator GDB server described her...
std::string session_name
Human-readable label for the accelerator target.
Sent by the client when a plugin-requested breakpoint is hit.
AcceleratorBreakpointInfo breakpoint
std::vector< SymbolValue > symbol_values
int64_t identifier
Unique breakpoint ID used to identify this breakpoint in the BreakpointWasHit callback.
std::vector< std::string > symbol_names
Symbol names whose values should be supplied when the breakpoint is hit.
std::optional< AcceleratorBreakpointByAddress > by_address
Breakpoint by load address.
std::optional< AcceleratorBreakpointByName > by_name
Breakpoint by function name.
Information the client needs to connect to an accelerator GDB server.
std::string triple
Target triple for the accelerator target.
bool synchronous
If true, connect synchronously: the client blocks until the accelerator process is connected and stop...
std::optional< std::string > exe_path
Path to the executable to use when creating the accelerator target.
std::string connect_url
Connection URL the client should connect to (as in "process connect<url>").
std::string platform_name
Name of the platform to select when creating the accelerator target.
A binary to find and load into a Target.
lldb::addr_t value
Address where the binary should be loaded, or read out of memory.
UUID uuid
UUID of the binary to be loaded.
bool force_symbol_search
Allow the search to do a possibly expensive external search for the ObjectFile and/or SymbolFile.
bool set_address_in_target
Whether the address of the binary should be set in the Target if it is added.
bool notify
Whether ModulesDidLoad should be called once the binary has been added to the Target.
bool value_is_offset
A flag indicating that value is an address, or an offset to be applied to the file addresses.
const RegisterType * register_type
std::vector< uint32_t > value_regs
std::vector< uint32_t > invalidate_regs
static Status ToFormat(const char *s, lldb::Format &format, size_t *byte_size_ptr)
BaseType GetRangeBase() const
SizeType GetByteSize() const
void SetRangeBase(BaseType b)
Set the start value for the range, and keep the same size.
BaseType GetRangeEnd() const
void SetByteSize(SizeType s)
jLLDBTraceGetBinaryData gdb-remote packet
jLLDBTraceStop gdb-remote packet