10#include "lldb/Host/Config.h"
31#include "llvm/ADT/StringSet.h"
32#include "llvm/Support/FormatAdapters.h"
85 return "A platform that uses the GDB remote protocol as the communication "
106 const auto module_path = module_file_spec.
GetPath(
false);
109 !
m_gdb_client_up->GetModuleInfo(module_file_spec, arch, module_spec)) {
112 "PlatformRemoteGDBServer::%s - failed to get module info for %s:%s",
113 __FUNCTION__, module_path.c_str(),
120 module_spec.
Dump(stream);
122 "PlatformRemoteGDBServer::%s - got module info for (%s:%s) : %s",
123 __FUNCTION__, module_path.c_str(),
131 const UUID *uuid_ptr,
134 local_file = platform_file;
167std::optional<std::string>
187 "PlatformRemoteGDBServer::GetRemoteWorkingDirectory() -> '%s'",
188 working_dir.
GetPath().c_str());
201 LLDB_LOGF(log,
"PlatformRemoteGDBServer::SetRemoteWorkingDirectory('%s')",
202 working_dir.
GetPath().c_str());
220 "the platform is already connected to '%s', "
221 "execute 'platform disconnect' to close the "
222 "current connection",
227 "\"platform connect\" takes a single argument: <connect-url>");
233 std::optional<URI> parsed_url =
URI::Parse(url);
242 std::make_unique<process_gdb_remote::GDBRemoteCommunicationClient>();
243 client_up->SetPacketTimeout(
245 client_up->SetConnection(std::make_unique<ConnectionFileDescriptor>());
246 client_up->Connect(url, &
error);
251 if (client_up->HandshakeWithServer(&
error)) {
263 if (remote_arch.
GetTriple().isArch64Bit())
268 client_up->Disconnect();
290std::optional<std::string>
294 return std::move(name);
298std::optional<std::string>
302 return std::move(name);
325 LLDB_LOGF(log,
"PlatformRemoteGDBServer::%s() called", __FUNCTION__);
330 for (
decltype(num_file_actions) i = 0; i < num_file_actions; ++i) {
334 switch (file_action->GetFD()) {
361 const char *arch_triple = arch_spec.
GetTriple().str().c_str();
366 "PlatformRemoteGDBServer::%s() set launch architecture triple to '%s'",
367 __FUNCTION__, arch_triple ? arch_triple :
"<NULL>");
381 llvm::fmt_consume(std::move(err)));
390 "PlatformRemoteGDBServer::%s() pid %" PRIu64
391 " launched successfully",
395 "PlatformRemoteGDBServer::%s() launch succeeded but we "
396 "didn't get a valid process id back!",
406 "failed to kill remote spawned process");
418 std::string connect_url;
421 "unable to launch a GDB server on '%s'",
GetHostname());
426 "gdb-remote",
nullptr,
true);
432 error = process_sp->ConnectRemote(connect_url.c_str());
435 error = process_sp->ConnectRemote(connect_url.c_str());
437 error = process_sp->Launch(launch_info);
439 printf(
"error: connect remote failed (%s)\n",
error.AsCString());
452 std::string &connect_url) {
456 llvm::Triple &remote_triple = remote_arch.
GetTriple();
459 std::string socket_name;
460 bool launch_result =
false;
461 if (remote_triple.getVendor() == llvm::Triple::Apple &&
462 remote_triple.getOS() == llvm::Triple::IOS) {
479 (socket_name.empty()) ?
nullptr : socket_name.c_str());
497 std::string connect_url;
500 "unable to launch a GDB server on '%s'",
GetHostname());
502 if (target ==
nullptr) {
507 target = new_target_sp.get();
511 if (target &&
error.Success()) {
516 "gdb-remote",
nullptr,
true);
518 error = process_sp->ConnectRemote(connect_url.c_str());
519 if (
error.Success()) {
522 process_sp->HijackProcessEvents(listener_sp);
524 error = process_sp->Attach(attach_info);
547 "PlatformRemoteGDBServer::MakeDirectory(path='%s', mode=%o) "
555 uint32_t &file_permissions) {
562 "PlatformRemoteGDBServer::GetFilePermissions(path='%s', "
563 "file_permissions=%o) error = %u (%s)",
564 file_spec.
GetPath().c_str(), file_permissions,
error.GetError(),
570 uint32_t file_permissions) {
577 "PlatformRemoteGDBServer::SetFilePermissions(path='%s', "
578 "file_permissions=%o) error = %u (%s)",
579 file_spec.
GetPath().c_str(), file_permissions,
error.GetError(),
614 void *dst, uint64_t dst_len,
623 const void *src, uint64_t src_len,
633 uint32_t uid, uint32_t gid) {
646 "PlatformRemoteGDBServer::CreateSymlink(src='%s', dst='%s') "
658 LLDB_LOGF(log,
"PlatformRemoteGDBServer::Unlink(path='%s') error = %u (%s)",
670 llvm::StringRef shell, llvm::StringRef command,
681 return m_gdb_client_up->RunShellCommand(command, working_dir, status_ptr,
682 signo_ptr, command_output, timeout);
685llvm::ErrorOr<llvm::MD5::MD5Result>
688 return std::make_error_code(std::errc::not_connected);
710 m_gdb_client_up->SendPacketAndWaitForResponse(
"jSignalsInfo", response);
712 if (result !=
decltype(result)
::Success ||
717 if (!object_sp || !object_sp->IsValid())
720 auto array_sp = object_sp->GetAsArray();
721 if (!array_sp || !array_sp->IsValid())
724 auto remote_signals_sp = std::make_shared<lldb_private::GDBRemoteSignals>();
726 bool done = array_sp->ForEach(
728 if (!
object || !object->
IsValid())
732 if (!dict || !dict->IsValid())
737 if (!dict->GetValueForKeyAsInteger(
"signo", signo))
740 llvm::StringRef name;
741 if (!dict->GetValueForKeyAsString(
"name", name))
745 bool suppress{false};
747 if (object_sp && object_sp->IsValid())
748 suppress = object_sp->GetBooleanValue();
751 object_sp = dict->GetValueForKey(
"stop");
752 if (object_sp && object_sp->IsValid())
753 stop = object_sp->GetBooleanValue();
756 object_sp = dict->GetValueForKey(
"notify");
757 if (object_sp && object_sp->IsValid())
758 notify = object_sp->GetBooleanValue();
760 std::string description;
761 object_sp = dict->GetValueForKey(
"description");
762 if (object_sp && object_sp->IsValid())
763 description = std::string(object_sp->GetStringValue());
765 llvm::StringRef name_backed, description_backed;
767 std::lock_guard<std::mutex> guard(g_signal_string_mutex);
769 g_signal_string_storage.insert(name).first->getKeyData();
770 if (!description.empty())
772 g_signal_string_storage.insert(description).first->getKeyData();
775 remote_signals_sp->AddSignal(signo, name_backed, suppress, stop, notify,
787 const std::string &platform_scheme,
const std::string &platform_hostname,
788 uint16_t port,
const char *socket_name) {
789 const char *override_scheme =
790 getenv(
"LLDB_PLATFORM_REMOTE_GDB_SERVER_SCHEME");
791 const char *override_hostname =
792 getenv(
"LLDB_PLATFORM_REMOTE_GDB_SERVER_HOSTNAME");
793 const char *port_offset_c_str =
794 getenv(
"LLDB_PLATFORM_REMOTE_GDB_SERVER_PORT_OFFSET");
795 int port_offset = port_offset_c_str ? ::atoi(port_offset_c_str) : 0;
797 return MakeUrl(override_scheme ? override_scheme : platform_scheme.c_str(),
798 override_hostname ? override_hostname
799 : platform_hostname.c_str(),
800 port + port_offset, socket_name);
804 const char *hostname,
805 uint16_t port,
const char *path) {
807 result.
Printf(
"%s://[%s]", scheme, hostname);
809 result.
Printf(
":%u", port);
811 result.
Write(path, strlen(path));
817 std::vector<std::string> connection_urls;
820 for (
size_t i = 0; i < connection_urls.size(); ++i) {
825 return connection_urls.size();
829 std::vector<std::string> &connection_urls) {
830 std::vector<std::pair<uint16_t, std::string>> remote_servers;
834 for (
const auto &gdbserver : remote_servers) {
835 const char *socket_name_cstr =
836 gdbserver.second.empty() ? nullptr : gdbserver.second.c_str();
837 connection_urls.emplace_back(
839 gdbserver.first, socket_name_cstr));
841 return connection_urls.size();
static llvm::raw_ostream & error(Stream &strm)
#define LLDB_LOGF(log,...)
#define LLDB_PLUGIN_DEFINE_ADV(ClassName, PluginName)
An architecture specification class.
llvm::Triple & GetTriple()
Architecture triple accessor.
bool TripleVendorWasSpecified() const
bool TripleOSWasSpecified() const
A command line argument class.
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.
"lldb/Utility/ArgCompletionRequest.h"
A uniqued constant string class.
A class to manage flag bits.
TargetList & GetTargetList()
Get accessor for the target list.
size_t GetPath(char *path, size_t max_path_length, bool denormalize=true) const
Extract the full path to the file.
bool Test(ValueType bit) const
Test a single flag bit.
void Dump(Stream &strm) const
static bool RegisterPlugin(llvm::StringRef name, llvm::StringRef description, ABICreateInstance create_callback)
static bool UnregisterPlugin(ABICreateInstance create_callback)
lldb::ListenerSP GetListenerForProcess(Debugger &debugger)
lldb::ListenerSP GetHijackListener() const
void SetProcessID(lldb::pid_t pid)
FileSpec & GetExecutableFile()
lldb::ListenerSP GetListener() const
lldb::ListenerSP GetShadowListener() const
Environment & GetEnvironment()
ArchSpec & GetArchitecture()
const FileAction * GetFileActionAtIndex(size_t idx) const
const FileSpec & GetWorkingDirectory() const
size_t GetNumFileActions() const
static Status FromErrorStringWithFormat(const char *format,...) __attribute__((format(printf
static Status FromErrorString(const char *str)
static Status static Status FromErrorStringWithFormatv(const char *format, Args &&...args)
const char * GetData() const
llvm::StringRef GetString() const
size_t Write(const void *src, size_t src_len)
Output character bytes to the stream.
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
ObjectSP GetValueForKey(llvm::StringRef key) const
Dictionary * GetAsDictionary()
virtual bool IsValid() const
static ObjectSP ParseJSON(llvm::StringRef json_text)
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.
const lldb::ProcessSP & CreateProcess(lldb::ListenerSP listener_sp, llvm::StringRef plugin_name, const FileSpec *crash_file, bool can_connect)
static lldb::UnixSignalsSP Create(const ArchSpec &arch)
static std::chrono::seconds GetPacketTimeout()
#define LLDB_INVALID_PROCESS_ID
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.
std::vector< ProcessInstanceInfo > ProcessInstanceInfoList
std::shared_ptr< lldb_private::UnixSignals > UnixSignalsSP
std::shared_ptr< lldb_private::Platform > PlatformSP
std::shared_ptr< lldb_private::Process > ProcessSP
std::shared_ptr< lldb_private::Listener > ListenerSP
std::shared_ptr< lldb_private::Target > TargetSP
static std::optional< URI > Parse(llvm::StringRef uri)