LLDB mainline
PlatformRemoteGDBServer.cpp
Go to the documentation of this file.
1//===-- PlatformRemoteGDBServer.cpp ---------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
10#include "lldb/Host/Config.h"
11
13#include "lldb/Core/Debugger.h"
14#include "lldb/Core/Module.h"
19#include "lldb/Host/Host.h"
20#include "lldb/Host/HostInfo.h"
21#include "lldb/Host/PosixApi.h"
22#include "lldb/Target/Process.h"
23#include "lldb/Target/Target.h"
26#include "lldb/Utility/Log.h"
28#include "lldb/Utility/Status.h"
31#include "llvm/ADT/StringSet.h"
32#include "llvm/Support/FormatAdapters.h"
33
36#include <mutex>
37#include <optional>
38
39using namespace lldb;
40using namespace lldb_private;
42
44
45static bool g_initialized = false;
46// UnixSignals does not store the signal names or descriptions itself.
47// It holds onto StringRefs. Becaue we may get signal information dynamically
48// from the remote, these strings need persistent storage client-side.
49static std::mutex g_signal_string_mutex;
50static llvm::StringSet<> g_signal_string_storage;
51
52void PlatformRemoteGDBServer::Initialize() {
54
55 if (!g_initialized) {
56 g_initialized = true;
61 }
62}
63
65 if (g_initialized) {
66 g_initialized = false;
68 }
69
71}
72
74 const ArchSpec *arch) {
75 bool create = force;
76 if (!create) {
77 create = !arch->TripleVendorWasSpecified() && !arch->TripleOSWasSpecified();
78 }
79 if (create)
81 return PlatformSP();
82}
83
85 return "A platform that uses the GDB remote protocol as the communication "
86 "transport.";
87}
88
90 if (m_platform_description.empty()) {
91 if (IsConnected()) {
92 // Send the get description packet
93 }
94 }
95
96 if (!m_platform_description.empty())
97 return m_platform_description.c_str();
98 return GetDescriptionStatic();
99}
100
102 const ArchSpec &arch,
103 ModuleSpec &module_spec) {
105
106 const auto module_path = module_file_spec.GetPath(false);
107
108 if (!m_gdb_client_up ||
109 !m_gdb_client_up->GetModuleInfo(module_file_spec, arch, module_spec)) {
110 LLDB_LOGF(
111 log,
112 "PlatformRemoteGDBServer::%s - failed to get module info for %s:%s",
113 __FUNCTION__, module_path.c_str(),
114 arch.GetTriple().getTriple().c_str());
115 return false;
116 }
117
118 if (log) {
119 StreamString stream;
120 module_spec.Dump(stream);
121 LLDB_LOGF(log,
122 "PlatformRemoteGDBServer::%s - got module info for (%s:%s) : %s",
123 __FUNCTION__, module_path.c_str(),
124 arch.GetTriple().getTriple().c_str(), stream.GetData());
125 }
126
127 return true;
128}
129
131 const UUID *uuid_ptr,
132 FileSpec &local_file) {
133 // Default to the local case
134 local_file = platform_file;
135 return Status();
136}
137
138/// Default Constructor
140 : Platform(/*is_host=*/false) {}
141
142/// Destructor.
143///
144/// The destructor is virtual since this class is designed to be
145/// inherited from by the plug-in instance.
147
149 Target &target, BreakpointSite *bp_site) {
150 // This isn't needed if the z/Z packets are supported in the GDB remote
151 // server. But we might need a packet to detect this.
152 return 0;
153}
154
156 if (m_gdb_client_up)
157 m_os_version = m_gdb_client_up->GetOSVersion();
158 return !m_os_version.empty();
159}
160
162 if (!m_gdb_client_up)
163 return std::nullopt;
164 return m_gdb_client_up->GetOSBuildString();
165}
166
167std::optional<std::string>
169 if (!m_gdb_client_up)
170 return std::nullopt;
171 return m_gdb_client_up->GetOSKernelDescription();
172}
173
174// Remote Platform subclasses need to override this function
176 if (!m_gdb_client_up)
177 return ArchSpec();
178 return m_gdb_client_up->GetSystemArchitecture();
179}
180
182 if (IsConnected()) {
184 FileSpec working_dir;
185 if (m_gdb_client_up->GetWorkingDir(working_dir) && log)
186 LLDB_LOGF(log,
187 "PlatformRemoteGDBServer::GetRemoteWorkingDirectory() -> '%s'",
188 working_dir.GetPath().c_str());
189 return working_dir;
190 } else {
192 }
193}
194
196 const FileSpec &working_dir) {
197 if (IsConnected()) {
198 // Clear the working directory it case it doesn't get set correctly. This
199 // will for use to re-read it
201 LLDB_LOGF(log, "PlatformRemoteGDBServer::SetRemoteWorkingDirectory('%s')",
202 working_dir.GetPath().c_str());
203 return m_gdb_client_up->SetWorkingDir(working_dir) == 0;
204 } else
205 return Platform::SetRemoteWorkingDirectory(working_dir);
206}
207
209 if (m_gdb_client_up) {
210 assert(m_gdb_client_up->IsConnected());
211 return true;
212 }
213 return false;
214}
215
218 if (IsConnected()) {
219 error.SetErrorStringWithFormat("the platform is already connected to '%s', "
220 "execute 'platform disconnect' to close the "
221 "current connection",
222 GetHostname());
223 return error;
224 }
225
226 if (args.GetArgumentCount() != 1) {
227 error.SetErrorString(
228 "\"platform connect\" takes a single argument: <connect-url>");
229 return error;
230 }
231
232 const char *url = args.GetArgumentAtIndex(0);
233 if (!url)
234 return Status("URL is null.");
235
236 std::optional<URI> parsed_url = URI::Parse(url);
237 if (!parsed_url)
238 return Status("Invalid URL: %s", url);
239
240 // We're going to reuse the hostname when we connect to the debugserver.
241 m_platform_scheme = parsed_url->scheme.str();
242 m_platform_hostname = parsed_url->hostname.str();
243
244 auto client_up =
245 std::make_unique<process_gdb_remote::GDBRemoteCommunicationClient>();
246 client_up->SetPacketTimeout(
248 client_up->SetConnection(std::make_unique<ConnectionFileDescriptor>());
249 client_up->Connect(url, &error);
250
251 if (error.Fail())
252 return error;
253
254 if (client_up->HandshakeWithServer(&error)) {
255 m_gdb_client_up = std::move(client_up);
256 m_gdb_client_up->GetHostInfo();
257 // If a working directory was set prior to connecting, send it down
258 // now.
259 if (m_working_dir)
260 m_gdb_client_up->SetWorkingDir(m_working_dir);
261
263 ArchSpec remote_arch = m_gdb_client_up->GetSystemArchitecture();
264 if (remote_arch) {
265 m_supported_architectures.push_back(remote_arch);
266 if (remote_arch.GetTriple().isArch64Bit())
268 ArchSpec(remote_arch.GetTriple().get32BitArchVariant()));
269 }
270 } else {
271 client_up->Disconnect();
272 if (error.Success())
273 error.SetErrorString("handshake failed");
274 }
275 return error;
276}
277
280 m_gdb_client_up.reset();
281 m_remote_signals_sp.reset();
282 return error;
283}
284
286 if (m_gdb_client_up)
287 m_gdb_client_up->GetHostname(m_hostname);
288 if (m_hostname.empty())
289 return nullptr;
290 return m_hostname.c_str();
291}
292
293std::optional<std::string>
295 std::string name;
296 if (m_gdb_client_up && m_gdb_client_up->GetUserName(uid, name))
297 return std::move(name);
298 return std::nullopt;
299}
300
301std::optional<std::string>
303 std::string name;
304 if (m_gdb_client_up && m_gdb_client_up->GetGroupName(gid, name))
305 return std::move(name);
306 return std::nullopt;
307}
308
310 const ProcessInstanceInfoMatch &match_info,
311 ProcessInstanceInfoList &process_infos) {
312 if (m_gdb_client_up)
313 return m_gdb_client_up->FindProcesses(match_info, process_infos);
314 return 0;
315}
316
318 lldb::pid_t pid, ProcessInstanceInfo &process_info) {
319 if (m_gdb_client_up)
320 return m_gdb_client_up->GetProcessInfo(pid, process_info);
321 return false;
322}
323
327
328 LLDB_LOGF(log, "PlatformRemoteGDBServer::%s() called", __FUNCTION__);
329
330 if (!IsConnected())
331 return Status("Not connected.");
332 auto num_file_actions = launch_info.GetNumFileActions();
333 for (decltype(num_file_actions) i = 0; i < num_file_actions; ++i) {
334 const auto file_action = launch_info.GetFileActionAtIndex(i);
335 if (file_action->GetAction() != FileAction::eFileActionOpen)
336 continue;
337 switch (file_action->GetFD()) {
338 case STDIN_FILENO:
339 m_gdb_client_up->SetSTDIN(file_action->GetFileSpec());
340 break;
341 case STDOUT_FILENO:
342 m_gdb_client_up->SetSTDOUT(file_action->GetFileSpec());
343 break;
344 case STDERR_FILENO:
345 m_gdb_client_up->SetSTDERR(file_action->GetFileSpec());
346 break;
347 }
348 }
349
350 m_gdb_client_up->SetDisableASLR(
351 launch_info.GetFlags().Test(eLaunchFlagDisableASLR));
352 m_gdb_client_up->SetDetachOnError(
353 launch_info.GetFlags().Test(eLaunchFlagDetachOnError));
354
355 FileSpec working_dir = launch_info.GetWorkingDirectory();
356 if (working_dir) {
357 m_gdb_client_up->SetWorkingDir(working_dir);
358 }
359
360 // Send the environment and the program + arguments after we connect
361 m_gdb_client_up->SendEnvironment(launch_info.GetEnvironment());
362
363 ArchSpec arch_spec = launch_info.GetArchitecture();
364 const char *arch_triple = arch_spec.GetTriple().str().c_str();
365
366 m_gdb_client_up->SendLaunchArchPacket(arch_triple);
367 LLDB_LOGF(
368 log,
369 "PlatformRemoteGDBServer::%s() set launch architecture triple to '%s'",
370 __FUNCTION__, arch_triple ? arch_triple : "<NULL>");
371
372 {
373 // Scope for the scoped timeout object
375 *m_gdb_client_up, std::chrono::seconds(5));
376 // Since we can't send argv0 separate from the executable path, we need to
377 // make sure to use the actual executable path found in the launch_info...
378 Args args = launch_info.GetArguments();
379 if (FileSpec exe_file = launch_info.GetExecutableFile())
380 args.ReplaceArgumentAtIndex(0, exe_file.GetPath(false));
381 if (llvm::Error err = m_gdb_client_up->LaunchProcess(args)) {
382 error.SetErrorStringWithFormatv("Cannot launch '{0}': {1}",
383 args.GetArgumentAtIndex(0),
384 llvm::fmt_consume(std::move(err)));
385 return error;
386 }
387 }
388
389 const auto pid = m_gdb_client_up->GetCurrentProcessID(false);
390 if (pid != LLDB_INVALID_PROCESS_ID) {
391 launch_info.SetProcessID(pid);
392 LLDB_LOGF(log,
393 "PlatformRemoteGDBServer::%s() pid %" PRIu64
394 " launched successfully",
395 __FUNCTION__, pid);
396 } else {
397 LLDB_LOGF(log,
398 "PlatformRemoteGDBServer::%s() launch succeeded but we "
399 "didn't get a valid process id back!",
400 __FUNCTION__);
401 error.SetErrorString("failed to get PID");
402 }
403 return error;
404}
405
407 if (!KillSpawnedProcess(pid))
408 return Status("failed to kill remote spawned process");
409 return Status();
410}
411
414 Debugger &debugger, Target &target,
415 Status &error) {
416 lldb::ProcessSP process_sp;
417 if (IsRemote()) {
418 if (IsConnected()) {
419 lldb::pid_t debugserver_pid = LLDB_INVALID_PROCESS_ID;
420 std::string connect_url;
421 if (!LaunchGDBServer(debugserver_pid, connect_url)) {
422 error.SetErrorStringWithFormat("unable to launch a GDB server on '%s'",
423 GetHostname());
424 } else {
425 // The darwin always currently uses the GDB remote debugger plug-in
426 // so even when debugging locally we are debugging remotely!
427 process_sp = target.CreateProcess(launch_info.GetListener(),
428 "gdb-remote", nullptr, true);
429
430 if (process_sp) {
431 process_sp->HijackProcessEvents(launch_info.GetHijackListener());
432 process_sp->SetShadowListener(launch_info.GetShadowListener());
433
434 error = process_sp->ConnectRemote(connect_url.c_str());
435 // Retry the connect remote one time...
436 if (error.Fail())
437 error = process_sp->ConnectRemote(connect_url.c_str());
438 if (error.Success())
439 error = process_sp->Launch(launch_info);
440 else if (debugserver_pid != LLDB_INVALID_PROCESS_ID) {
441 printf("error: connect remote failed (%s)\n", error.AsCString());
442 KillSpawnedProcess(debugserver_pid);
443 }
444 }
445 }
446 } else {
447 error.SetErrorString("not connected to remote gdb server");
448 }
449 }
450 return process_sp;
451}
452
454 std::string &connect_url) {
455 assert(IsConnected());
456
458 llvm::Triple &remote_triple = remote_arch.GetTriple();
459
460 uint16_t port = 0;
461 std::string socket_name;
462 bool launch_result = false;
463 if (remote_triple.getVendor() == llvm::Triple::Apple &&
464 remote_triple.getOS() == llvm::Triple::IOS) {
465 // When remote debugging to iOS, we use a USB mux that always talks to
466 // localhost, so we will need the remote debugserver to accept connections
467 // only from localhost, no matter what our current hostname is
468 launch_result =
469 m_gdb_client_up->LaunchGDBServer("127.0.0.1", pid, port, socket_name);
470 } else {
471 // All other hosts should use their actual hostname
472 launch_result =
473 m_gdb_client_up->LaunchGDBServer(nullptr, pid, port, socket_name);
474 }
475
476 if (!launch_result)
477 return false;
478
479 connect_url =
481 (socket_name.empty()) ? nullptr : socket_name.c_str());
482 return true;
483}
484
486 assert(IsConnected());
487 return m_gdb_client_up->KillSpawnedProcess(pid);
488}
489
491 ProcessAttachInfo &attach_info, Debugger &debugger,
492 Target *target, // Can be NULL, if NULL create a new target, else use
493 // existing one
494 Status &error) {
495 lldb::ProcessSP process_sp;
496 if (IsRemote()) {
497 if (IsConnected()) {
498 lldb::pid_t debugserver_pid = LLDB_INVALID_PROCESS_ID;
499 std::string connect_url;
500 if (!LaunchGDBServer(debugserver_pid, connect_url)) {
501 error.SetErrorStringWithFormat("unable to launch a GDB server on '%s'",
502 GetHostname());
503 } else {
504 if (target == nullptr) {
505 TargetSP new_target_sp;
506
507 error = debugger.GetTargetList().CreateTarget(
508 debugger, "", "", eLoadDependentsNo, nullptr, new_target_sp);
509 target = new_target_sp.get();
510 } else
511 error.Clear();
512
513 if (target && error.Success()) {
514 // The darwin always currently uses the GDB remote debugger plug-in
515 // so even when debugging locally we are debugging remotely!
516 process_sp =
517 target->CreateProcess(attach_info.GetListenerForProcess(debugger),
518 "gdb-remote", nullptr, true);
519 if (process_sp) {
520 error = process_sp->ConnectRemote(connect_url.c_str());
521 if (error.Success()) {
522 ListenerSP listener_sp = attach_info.GetHijackListener();
523 if (listener_sp)
524 process_sp->HijackProcessEvents(listener_sp);
525 process_sp->SetShadowListener(attach_info.GetShadowListener());
526 error = process_sp->Attach(attach_info);
527 }
528
529 if (error.Fail() && debugserver_pid != LLDB_INVALID_PROCESS_ID) {
530 KillSpawnedProcess(debugserver_pid);
531 }
532 }
533 }
534 }
535 } else {
536 error.SetErrorString("not connected to remote gdb server");
537 }
538 }
539 return process_sp;
540}
541
543 uint32_t mode) {
544 if (!IsConnected())
545 return Status("Not connected.");
546 Status error = m_gdb_client_up->MakeDirectory(file_spec, mode);
548 LLDB_LOGF(log,
549 "PlatformRemoteGDBServer::MakeDirectory(path='%s', mode=%o) "
550 "error = %u (%s)",
551 file_spec.GetPath().c_str(), mode, error.GetError(),
552 error.AsCString());
553 return error;
554}
555
557 uint32_t &file_permissions) {
558 if (!IsConnected())
559 return Status("Not connected.");
560 Status error =
561 m_gdb_client_up->GetFilePermissions(file_spec, file_permissions);
563 LLDB_LOGF(log,
564 "PlatformRemoteGDBServer::GetFilePermissions(path='%s', "
565 "file_permissions=%o) error = %u (%s)",
566 file_spec.GetPath().c_str(), file_permissions, error.GetError(),
567 error.AsCString());
568 return error;
569}
570
572 uint32_t file_permissions) {
573 if (!IsConnected())
574 return Status("Not connected.");
575 Status error =
576 m_gdb_client_up->SetFilePermissions(file_spec, file_permissions);
578 LLDB_LOGF(log,
579 "PlatformRemoteGDBServer::SetFilePermissions(path='%s', "
580 "file_permissions=%o) error = %u (%s)",
581 file_spec.GetPath().c_str(), file_permissions, error.GetError(),
582 error.AsCString());
583 return error;
584}
585
587 File::OpenOptions flags,
588 uint32_t mode,
589 Status &error) {
590 if (IsConnected())
591 return m_gdb_client_up->OpenFile(file_spec, flags, mode, error);
592 return LLDB_INVALID_UID;
593}
594
596 if (IsConnected())
597 return m_gdb_client_up->CloseFile(fd, error);
598 error = Status("Not connected.");
599 return false;
600}
601
604 if (IsConnected())
605 return m_gdb_client_up->GetFileSize(file_spec);
606 return LLDB_INVALID_UID;
607}
608
610 CompletionRequest &request, bool only_dir) {
611 if (IsConnected())
612 m_gdb_client_up->AutoCompleteDiskFileOrDirectory(request, only_dir);
613}
614
616 void *dst, uint64_t dst_len,
617 Status &error) {
618 if (IsConnected())
619 return m_gdb_client_up->ReadFile(fd, offset, dst, dst_len, error);
620 error = Status("Not connected.");
621 return 0;
622}
623
625 const void *src, uint64_t src_len,
626 Status &error) {
627 if (IsConnected())
628 return m_gdb_client_up->WriteFile(fd, offset, src, src_len, error);
629 error = Status("Not connected.");
630 return 0;
631}
632
634 const FileSpec &destination,
635 uint32_t uid, uint32_t gid) {
636 return Platform::PutFile(source, destination, uid, gid);
637}
638
640 const FileSpec &src, // The name of the link is in src
641 const FileSpec &dst) // The symlink points to dst
642{
643 if (!IsConnected())
644 return Status("Not connected.");
645 Status error = m_gdb_client_up->CreateSymlink(src, dst);
647 LLDB_LOGF(log,
648 "PlatformRemoteGDBServer::CreateSymlink(src='%s', dst='%s') "
649 "error = %u (%s)",
650 src.GetPath().c_str(), dst.GetPath().c_str(), error.GetError(),
651 error.AsCString());
652 return error;
653}
654
656 if (!IsConnected())
657 return Status("Not connected.");
658 Status error = m_gdb_client_up->Unlink(file_spec);
660 LLDB_LOGF(log, "PlatformRemoteGDBServer::Unlink(path='%s') error = %u (%s)",
661 file_spec.GetPath().c_str(), error.GetError(), error.AsCString());
662 return error;
663}
664
666 if (IsConnected())
667 return m_gdb_client_up->GetFileExists(file_spec);
668 return false;
669}
670
672 llvm::StringRef shell, llvm::StringRef command,
673 const FileSpec &
674 working_dir, // Pass empty FileSpec to use the current working directory
675 int *status_ptr, // Pass NULL if you don't want the process exit status
676 int *signo_ptr, // Pass NULL if you don't want the signal that caused the
677 // process to exit
678 std::string
679 *command_output, // Pass NULL if you don't want the command output
680 const Timeout<std::micro> &timeout) {
681 if (!IsConnected())
682 return Status("Not connected.");
683 return m_gdb_client_up->RunShellCommand(command, working_dir, status_ptr,
684 signo_ptr, command_output, timeout);
685}
686
688 uint64_t &low, uint64_t &high) {
689 if (!IsConnected())
690 return false;
691
692 return m_gdb_client_up->CalculateMD5(file_spec, low, high);
693}
694
696 m_trap_handlers.push_back(ConstString("_sigtramp"));
697}
698
700 if (!IsConnected())
702
704 return m_remote_signals_sp;
705
706 // If packet not implemented or JSON failed to parse, we'll guess the signal
707 // set based on the remote architecture.
709
711 auto result =
712 m_gdb_client_up->SendPacketAndWaitForResponse("jSignalsInfo", response);
713
714 if (result != decltype(result)::Success ||
715 response.GetResponseType() != response.eResponse)
716 return m_remote_signals_sp;
717
718 auto object_sp = StructuredData::ParseJSON(response.GetStringRef());
719 if (!object_sp || !object_sp->IsValid())
720 return m_remote_signals_sp;
721
722 auto array_sp = object_sp->GetAsArray();
723 if (!array_sp || !array_sp->IsValid())
724 return m_remote_signals_sp;
725
726 auto remote_signals_sp = std::make_shared<lldb_private::GDBRemoteSignals>();
727
728 bool done = array_sp->ForEach(
729 [&remote_signals_sp](StructuredData::Object *object) -> bool {
730 if (!object || !object->IsValid())
731 return false;
732
733 auto dict = object->GetAsDictionary();
734 if (!dict || !dict->IsValid())
735 return false;
736
737 // Signal number and signal name are required.
738 uint64_t signo;
739 if (!dict->GetValueForKeyAsInteger("signo", signo))
740 return false;
741
742 llvm::StringRef name;
743 if (!dict->GetValueForKeyAsString("name", name))
744 return false;
745
746 // We can live without short_name, description, etc.
747 bool suppress{false};
748 auto object_sp = dict->GetValueForKey("suppress");
749 if (object_sp && object_sp->IsValid())
750 suppress = object_sp->GetBooleanValue();
751
752 bool stop{false};
753 object_sp = dict->GetValueForKey("stop");
754 if (object_sp && object_sp->IsValid())
755 stop = object_sp->GetBooleanValue();
756
757 bool notify{false};
758 object_sp = dict->GetValueForKey("notify");
759 if (object_sp && object_sp->IsValid())
760 notify = object_sp->GetBooleanValue();
761
762 std::string description;
763 object_sp = dict->GetValueForKey("description");
764 if (object_sp && object_sp->IsValid())
765 description = std::string(object_sp->GetStringValue());
766
767 llvm::StringRef name_backed, description_backed;
768 {
769 std::lock_guard<std::mutex> guard(g_signal_string_mutex);
770 name_backed =
771 g_signal_string_storage.insert(name).first->getKeyData();
772 if (!description.empty())
773 description_backed =
774 g_signal_string_storage.insert(description).first->getKeyData();
775 }
776
777 remote_signals_sp->AddSignal(signo, name_backed, suppress, stop, notify,
778 description_backed);
779 return true;
780 });
781
782 if (done)
783 m_remote_signals_sp = std::move(remote_signals_sp);
784
785 return m_remote_signals_sp;
786}
787
789 const std::string &platform_scheme, const std::string &platform_hostname,
790 uint16_t port, const char *socket_name) {
791 const char *override_scheme =
792 getenv("LLDB_PLATFORM_REMOTE_GDB_SERVER_SCHEME");
793 const char *override_hostname =
794 getenv("LLDB_PLATFORM_REMOTE_GDB_SERVER_HOSTNAME");
795 const char *port_offset_c_str =
796 getenv("LLDB_PLATFORM_REMOTE_GDB_SERVER_PORT_OFFSET");
797 int port_offset = port_offset_c_str ? ::atoi(port_offset_c_str) : 0;
798
799 return MakeUrl(override_scheme ? override_scheme : platform_scheme.c_str(),
800 override_hostname ? override_hostname
801 : platform_hostname.c_str(),
802 port + port_offset, socket_name);
803}
804
805std::string PlatformRemoteGDBServer::MakeUrl(const char *scheme,
806 const char *hostname,
807 uint16_t port, const char *path) {
808 StreamString result;
809 result.Printf("%s://[%s]", scheme, hostname);
810 if (port != 0)
811 result.Printf(":%u", port);
812 if (path)
813 result.Write(path, strlen(path));
814 return std::string(result.GetString());
815}
816
818 Status &error) {
819 std::vector<std::string> connection_urls;
820 GetPendingGdbServerList(connection_urls);
821
822 for (size_t i = 0; i < connection_urls.size(); ++i) {
823 ConnectProcess(connection_urls[i].c_str(), "gdb-remote", debugger, nullptr, error);
824 if (error.Fail())
825 return i; // We already connected to i process successfully
826 }
827 return connection_urls.size();
828}
829
831 std::vector<std::string> &connection_urls) {
832 std::vector<std::pair<uint16_t, std::string>> remote_servers;
833 if (!IsConnected())
834 return 0;
835 m_gdb_client_up->QueryGDBServer(remote_servers);
836 for (const auto &gdbserver : remote_servers) {
837 const char *socket_name_cstr =
838 gdbserver.second.empty() ? nullptr : gdbserver.second.c_str();
839 connection_urls.emplace_back(
841 gdbserver.first, socket_name_cstr));
842 }
843 return connection_urls.size();
844}
static llvm::raw_ostream & error(Stream &strm)
#define LLDB_LOGF(log,...)
Definition: Log.h:349
static llvm::StringSet g_signal_string_storage
static std::mutex g_signal_string_mutex
static bool g_initialized
#define LLDB_PLUGIN_DEFINE_ADV(ClassName, PluginName)
Definition: PluginManager.h:25
ResponseType GetResponseType() const
llvm::StringRef GetStringRef() const
An architecture specification class.
Definition: ArchSpec.h:31
llvm::Triple & GetTriple()
Architecture triple accessor.
Definition: ArchSpec.h:450
bool TripleVendorWasSpecified() const
Definition: ArchSpec.h:353
bool TripleOSWasSpecified() const
Definition: ArchSpec.h:357
A command line argument class.
Definition: Args.h:33
size_t GetArgumentCount() const
Gets the number of arguments left in this command object.
Definition: Args.h:116
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.
Definition: Args.cpp:337
const char * GetArgumentAtIndex(size_t idx) const
Gets the NULL terminated C string argument pointer for the argument at index idx.
Definition: Args.cpp:263
Class that manages the actual breakpoint that will be inserted into the running program.
"lldb/Utility/ArgCompletionRequest.h"
A uniqued constant string class.
Definition: ConstString.h:40
A class to manage flag bits.
Definition: Debugger.h:79
TargetList & GetTargetList()
Get accessor for the target list.
Definition: Debugger.h:206
A file utility class.
Definition: FileSpec.h:56
size_t GetPath(char *path, size_t max_path_length, bool denormalize=true) const
Extract the full path to the file.
Definition: FileSpec.cpp:367
bool Test(ValueType bit) const
Test a single flag bit.
Definition: Flags.h:96
void Dump(Stream &strm) const
Definition: ModuleSpec.h:162
A plug-in interface definition class for debug platform that includes many platform abilities such as...
Definition: Platform.h:74
virtual FileSpec GetRemoteWorkingDirectory()
Definition: Platform.h:250
std::vector< ConstString > m_trap_handlers
Definition: Platform.h:976
static void Terminate()
Definition: Platform.cpp:138
llvm::VersionTuple m_os_version
Definition: Platform.h:960
virtual Status PutFile(const FileSpec &source, const FileSpec &destination, uint32_t uid=UINT32_MAX, uint32_t gid=UINT32_MAX)
Definition: Platform.cpp:1184
virtual bool SetRemoteWorkingDirectory(const FileSpec &working_dir)
Definition: Platform.cpp:735
virtual lldb::ProcessSP ConnectProcess(llvm::StringRef connect_url, llvm::StringRef plugin_name, Debugger &debugger, Target *target, Status &error)
Definition: Platform.cpp:1937
static void Initialize()
Definition: Platform.cpp:136
std::string m_hostname
Definition: Platform.h:959
bool IsRemote() const
Definition: Platform.h:460
FileSpec m_working_dir
Definition: Platform.h:956
virtual const lldb::UnixSignalsSP & GetRemoteUnixSignals()
Definition: Platform.cpp:1858
static bool RegisterPlugin(llvm::StringRef name, llvm::StringRef description, ABICreateInstance create_callback)
static bool UnregisterPlugin(ABICreateInstance create_callback)
lldb::ListenerSP GetListenerForProcess(Debugger &debugger)
Definition: Process.cpp:2787
lldb::ListenerSP GetHijackListener() const
Definition: ProcessInfo.h:107
void SetProcessID(lldb::pid_t pid)
Definition: ProcessInfo.h:69
FileSpec & GetExecutableFile()
Definition: ProcessInfo.h:42
lldb::ListenerSP GetListener() const
Definition: ProcessInfo.h:101
lldb::ListenerSP GetShadowListener() const
Definition: ProcessInfo.h:113
Environment & GetEnvironment()
Definition: ProcessInfo.h:87
ArchSpec & GetArchitecture()
Definition: ProcessInfo.h:61
const FileAction * GetFileActionAtIndex(size_t idx) const
const FileSpec & GetWorkingDirectory() const
An error handling class.
Definition: Status.h:44
const char * GetData() const
Definition: StreamString.h:43
llvm::StringRef GetString() const
size_t Write(const void *src, size_t src_len)
Output character bytes to the stream.
Definition: Stream.h:112
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
Definition: Stream.cpp:134
ObjectSP GetValueForKey(llvm::StringRef key) 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.
Definition: TargetList.cpp:45
const lldb::ProcessSP & CreateProcess(lldb::ListenerSP listener_sp, llvm::StringRef plugin_name, const FileSpec *crash_file, bool can_connect)
Definition: Target.cpp:209
static lldb::UnixSignalsSP Create(const ArchSpec &arch)
Definition: UnixSignals.cpp:29
lldb::user_id_t GetFileSize(const FileSpec &file_spec) override
std::unique_ptr< process_gdb_remote::GDBRemoteCommunicationClient > m_gdb_client_up
std::optional< std::string > GetRemoteOSKernelDescription() override
Status MakeDirectory(const FileSpec &file_spec, uint32_t file_permissions) override
uint32_t FindProcesses(const ProcessInstanceInfoMatch &match_info, ProcessInstanceInfoList &process_infos) override
Attach to an existing process by process name.
virtual size_t GetPendingGdbServerList(std::vector< std::string > &connection_urls)
void CalculateTrapHandlerSymbolNames() override
Ask the Platform subclass to fill in the list of trap handler names.
size_t ConnectToWaitingProcesses(lldb_private::Debugger &debugger, lldb_private::Status &error) override
Connect to all processes waiting for a debugger to attach.
Status RunShellCommand(llvm::StringRef shell, llvm::StringRef command, const FileSpec &working_dir, int *status_ptr, int *signo_ptr, std::string *command_output, const lldb_private::Timeout< std::micro > &timeout) override
virtual bool LaunchGDBServer(lldb::pid_t &pid, std::string &connect_url)
Status PutFile(const FileSpec &source, const FileSpec &destination, uint32_t uid=UINT32_MAX, uint32_t gid=UINT32_MAX) override
uint64_t WriteFile(lldb::user_id_t fd, uint64_t offset, const void *data, uint64_t len, Status &error) override
Status GetFilePermissions(const FileSpec &file_spec, uint32_t &file_permissions) override
virtual std::string MakeUrl(const char *scheme, const char *hostname, uint16_t port, const char *path)
Status GetFileWithUUID(const FileSpec &platform_file, const UUID *uuid_ptr, FileSpec &local_file) override
Locate a file for a platform.
uint64_t ReadFile(lldb::user_id_t fd, uint64_t offset, void *data_ptr, uint64_t len, Status &error) override
bool GetProcessInfo(lldb::pid_t pid, ProcessInstanceInfo &proc_info) override
bool CloseFile(lldb::user_id_t fd, Status &error) override
std::optional< std::string > DoGetGroupName(UserIDResolver::id_t uid) override
Status SetFilePermissions(const FileSpec &file_spec, uint32_t file_permissions) override
bool SetRemoteWorkingDirectory(const FileSpec &working_dir) override
Status LaunchProcess(ProcessLaunchInfo &launch_info) override
Launch a new process on a platform, not necessarily for debugging, it could be just for running the p...
std::string MakeGdbServerUrl(const std::string &platform_scheme, const std::string &platform_hostname, uint16_t port, const char *socket_name)
bool GetModuleSpec(const FileSpec &module_file_spec, const ArchSpec &arch, ModuleSpec &module_spec) override
std::optional< std::string > DoGetUserName(UserIDResolver::id_t uid) override
void AutoCompleteDiskFileOrDirectory(CompletionRequest &request, bool only_dir) override
lldb::user_id_t OpenFile(const FileSpec &file_spec, File::OpenOptions flags, uint32_t mode, Status &error) override
static lldb::PlatformSP CreateInstance(bool force, const ArchSpec *arch)
Status CreateSymlink(const FileSpec &src, const FileSpec &dst) override
Status KillProcess(const lldb::pid_t pid) override
Kill process on a platform.
bool CalculateMD5(const FileSpec &file_spec, uint64_t &low, uint64_t &high) override
lldb::ProcessSP Attach(ProcessAttachInfo &attach_info, Debugger &debugger, Target *target, Status &error) override
Attach to an existing process using a process ID.
size_t GetSoftwareBreakpointTrapOpcode(Target &target, BreakpointSite *bp_site) override
lldb::ProcessSP DebugProcess(ProcessLaunchInfo &launch_info, Debugger &debugger, Target &target, Status &error) override
Subclasses do not need to implement this function as it uses the Platform::LaunchProcess() followed b...
#define LLDB_INVALID_UID
Definition: lldb-defines.h:88
#define LLDB_INVALID_PROCESS_ID
Definition: lldb-defines.h:89
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
Log * GetLog(Cat mask)
Retrieve the Log object for the channel associated with the given log enum.
Definition: Log.h:314
std::vector< ProcessInstanceInfo > ProcessInstanceInfoList
Definition: Host.h:32
Definition: SBAddress.h:15
std::shared_ptr< lldb_private::UnixSignals > UnixSignalsSP
Definition: lldb-forward.h:468
std::shared_ptr< lldb_private::Platform > PlatformSP
Definition: lldb-forward.h:380
std::shared_ptr< lldb_private::Process > ProcessSP
Definition: lldb-forward.h:381
uint64_t pid_t
Definition: lldb-types.h:81
std::shared_ptr< lldb_private::Listener > ListenerSP
Definition: lldb-forward.h:360
uint64_t user_id_t
Definition: lldb-types.h:80
std::shared_ptr< lldb_private::Target > TargetSP
Definition: lldb-forward.h:436
Definition: Debugger.h:53
static std::optional< URI > Parse(llvm::StringRef uri)
Definition: UriParser.cpp:28