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());
216 "the platform is already connected to '%s', "
217 "execute 'platform disconnect' to close the "
218 "current connection",
223 "\"platform connect\" takes a single argument: <connect-url>");
229 std::optional<URI> parsed_url =
URI::Parse(url);
238 std::make_unique<process_gdb_remote::GDBRemoteCommunicationClient>();
239 client_up->SetPacketTimeout(
241 client_up->SetConnection(std::make_unique<ConnectionFileDescriptor>());
242 client_up->Connect(url, &
error);
247 if (client_up->HandshakeWithServer(&
error)) {
259 if (remote_arch.
GetTriple().isArch64Bit())
264 client_up->Disconnect();
286std::optional<std::string>
290 return std::move(name);
294std::optional<std::string>
298 return std::move(name);
321 LLDB_LOGF(log,
"PlatformRemoteGDBServer::%s() called", __FUNCTION__);
326 for (
decltype(num_file_actions) i = 0; i < num_file_actions; ++i) {
330 switch (file_action->GetFD()) {
357 const char *arch_triple = arch_spec.
GetTriple().str().c_str();
362 "PlatformRemoteGDBServer::%s() set launch architecture triple to '%s'",
363 __FUNCTION__, arch_triple ? arch_triple :
"<NULL>");
377 llvm::fmt_consume(std::move(err)));
386 "PlatformRemoteGDBServer::%s() pid %" PRIu64
387 " launched successfully",
391 "PlatformRemoteGDBServer::%s() launch succeeded but we "
392 "didn't get a valid process id back!",
402 "failed to kill remote spawned process");
414 std::string connect_url;
417 "unable to launch a GDB server on '%s'",
GetHostname());
422 "gdb-remote",
nullptr,
true);
428 error = process_sp->ConnectRemote(connect_url.c_str());
431 error = process_sp->ConnectRemote(connect_url.c_str());
433 error = process_sp->Launch(launch_info);
435 printf(
"error: connect remote failed (%s)\n",
error.AsCString());
448 std::string &connect_url) {
452 llvm::Triple &remote_triple = remote_arch.
GetTriple();
455 std::string socket_name;
456 bool launch_result =
false;
457 if (remote_triple.getVendor() == llvm::Triple::Apple &&
458 remote_triple.getOS() == llvm::Triple::IOS) {
475 (socket_name.empty()) ?
nullptr : socket_name.c_str());
493 std::string connect_url;
496 "unable to launch a GDB server on '%s'",
GetHostname());
498 if (target ==
nullptr) {
503 target = new_target_sp.get();
507 if (target &&
error.Success()) {
512 "gdb-remote",
nullptr,
true);
514 error = process_sp->ConnectRemote(connect_url.c_str());
515 if (
error.Success()) {
518 process_sp->HijackProcessEvents(listener_sp);
520 error = process_sp->Attach(attach_info);
543 "PlatformRemoteGDBServer::MakeDirectory(path='%s', mode=%o) "
551 uint32_t &file_permissions) {
558 "PlatformRemoteGDBServer::GetFilePermissions(path='%s', "
559 "file_permissions=%o) error = %u (%s)",
560 file_spec.
GetPath().c_str(), file_permissions,
error.GetError(),
566 uint32_t file_permissions) {
573 "PlatformRemoteGDBServer::SetFilePermissions(path='%s', "
574 "file_permissions=%o) error = %u (%s)",
575 file_spec.
GetPath().c_str(), file_permissions,
error.GetError(),
610 void *dst, uint64_t dst_len,
619 const void *src, uint64_t src_len,
629 uint32_t uid, uint32_t gid) {
642 "PlatformRemoteGDBServer::CreateSymlink(src='%s', dst='%s') "
654 LLDB_LOGF(log,
"PlatformRemoteGDBServer::Unlink(path='%s') error = %u (%s)",
666 llvm::StringRef shell, llvm::StringRef command,
677 return m_gdb_client_up->RunShellCommand(command, working_dir, status_ptr,
678 signo_ptr, command_output, timeout);
681llvm::ErrorOr<llvm::MD5::MD5Result>
684 return std::make_error_code(std::errc::not_connected);
706 m_gdb_client_up->SendPacketAndWaitForResponse(
"jSignalsInfo", response);
708 if (result !=
decltype(result)
::Success ||
713 if (!object_sp || !object_sp->IsValid())
716 auto array_sp = object_sp->GetAsArray();
717 if (!array_sp || !array_sp->IsValid())
720 auto remote_signals_sp = std::make_shared<lldb_private::GDBRemoteSignals>();
722 bool done = array_sp->ForEach(
724 if (!
object || !object->IsValid())
727 auto dict =
object->GetAsDictionary();
728 if (!dict || !dict->IsValid())
733 if (!dict->GetValueForKeyAsInteger(
"signo", signo))
736 llvm::StringRef name;
737 if (!dict->GetValueForKeyAsString(
"name", name))
741 bool suppress{
false};
742 auto object_sp = dict->GetValueForKey(
"suppress");
743 if (object_sp && object_sp->IsValid())
744 suppress = object_sp->GetBooleanValue();
747 object_sp = dict->GetValueForKey(
"stop");
748 if (object_sp && object_sp->IsValid())
749 stop = object_sp->GetBooleanValue();
752 object_sp = dict->GetValueForKey(
"notify");
753 if (object_sp && object_sp->IsValid())
754 notify = object_sp->GetBooleanValue();
756 std::string description;
757 object_sp = dict->GetValueForKey(
"description");
758 if (object_sp && object_sp->IsValid())
759 description = std::string(object_sp->GetStringValue());
761 llvm::StringRef name_backed, description_backed;
766 if (!description.empty())
771 remote_signals_sp->AddSignal(signo, name_backed, suppress, stop, notify,
783 const std::string &platform_scheme,
const std::string &platform_hostname,
784 uint16_t port,
const char *socket_name) {
785 const char *override_scheme =
786 getenv(
"LLDB_PLATFORM_REMOTE_GDB_SERVER_SCHEME");
787 const char *override_hostname =
788 getenv(
"LLDB_PLATFORM_REMOTE_GDB_SERVER_HOSTNAME");
789 const char *port_offset_c_str =
790 getenv(
"LLDB_PLATFORM_REMOTE_GDB_SERVER_PORT_OFFSET");
791 int port_offset = port_offset_c_str ? ::atoi(port_offset_c_str) : 0;
793 return MakeUrl(override_scheme ? override_scheme : platform_scheme.c_str(),
794 override_hostname ? override_hostname
795 : platform_hostname.c_str(),
796 port + port_offset, socket_name);
800 const char *hostname,
801 uint16_t port,
const char *path) {
803 result.
Printf(
"%s://", scheme);
804 if (strlen(hostname) > 0)
805 result.
Printf(
"[%s]", hostname);
808 result.
Printf(
":%u", port);
810 result.
Write(path, strlen(path));
816 std::vector<std::string> connection_urls;
819 for (
size_t i = 0; i < connection_urls.size(); ++i) {
824 return connection_urls.size();
828 std::vector<std::string> &connection_urls) {
829 std::vector<std::pair<uint16_t, std::string>> remote_servers;
833 for (
const auto &gdbserver : remote_servers) {
834 const char *socket_name_cstr =
835 gdbserver.second.empty() ? nullptr : gdbserver.second.c_str();
836 connection_urls.emplace_back(
838 gdbserver.first, socket_name_cstr));
840 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.
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)
Represents UUID's of various sizes.
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)