LLDB mainline
GDBRemoteCommunicationClient.cpp
Go to the documentation of this file.
1//===-- GDBRemoteCommunicationClient.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
11#include <cmath>
12#include <sys/stat.h>
13
14#include <numeric>
15#include <optional>
16#include <sstream>
17
19#include "lldb/Host/HostInfo.h"
20#include "lldb/Host/SafeMachO.h"
21#include "lldb/Host/XML.h"
22#include "lldb/Symbol/Symbol.h"
24#include "lldb/Target/Target.h"
26#include "lldb/Utility/Args.h"
30#include "lldb/Utility/Log.h"
31#include "lldb/Utility/State.h"
33
34#include "ProcessGDBRemote.h"
35#include "ProcessGDBRemoteLog.h"
36#include "lldb/Host/Config.h"
38
39#include "llvm/ADT/STLExtras.h"
40#include "llvm/ADT/StringSwitch.h"
41#include "llvm/Config/llvm-config.h" // for LLVM_ENABLE_ZLIB
42#include "llvm/Support/JSON.h"
43
44#if defined(HAVE_LIBCOMPRESSION)
45#include <compression.h>
46#endif
47
48using namespace lldb;
50using namespace lldb_private;
51using namespace std::chrono;
52
53llvm::raw_ostream &process_gdb_remote::operator<<(llvm::raw_ostream &os,
54 const QOffsets &offsets) {
55 return os << llvm::formatv(
56 "QOffsets({0}, [{1:@[x]}])", offsets.segments,
57 llvm::make_range(offsets.offsets.begin(), offsets.offsets.end()));
58}
59
60// GDBRemoteCommunicationClient constructor
62 : GDBRemoteClientBase("gdb-remote.client"),
63
64 m_supports_qProcessInfoPID(true), m_supports_qfProcessInfo(true),
65 m_supports_qUserName(true), m_supports_qGroupName(true),
66 m_supports_qThreadStopInfo(true), m_supports_z0(true),
67 m_supports_z1(true), m_supports_z2(true), m_supports_z3(true),
68 m_supports_z4(true), m_supports_QEnvironment(true),
69 m_supports_QEnvironmentHexEncoded(true), m_supports_qSymbol(true),
70 m_qSymbol_requests_done(false), m_supports_qModuleInfo(true),
71 m_supports_jThreadsInfo(true), m_supports_jModulesInfo(true),
72 m_supports_vFileSize(true), m_supports_vFileMode(true),
73 m_supports_vFileExists(true), m_supports_vRun(true),
74
75 m_host_arch(), m_host_distribution_id(), m_process_arch(), m_os_build(),
76 m_os_kernel(), m_hostname(), m_gdb_server_name(),
77 m_default_packet_timeout(0), m_qSupported_response(),
78 m_supported_async_json_packets_sp(), m_qXfer_memory_map() {}
79
80// Destructor
82 if (IsConnected())
83 Disconnect();
84}
85
88
89 // Start the read thread after we send the handshake ack since if we fail to
90 // send the handshake ack, there is no reason to continue...
91 std::chrono::steady_clock::time_point start_of_handshake =
92 std::chrono::steady_clock::now();
93 if (SendAck()) {
94 // The return value from QueryNoAckModeSupported() is true if the packet
95 // was sent and _any_ response (including UNIMPLEMENTED) was received), or
96 // false if no response was received. This quickly tells us if we have a
97 // live connection to a remote GDB server...
99 return true;
100 } else {
101 std::chrono::steady_clock::time_point end_of_handshake =
102 std::chrono::steady_clock::now();
103 auto handshake_timeout =
104 std::chrono::duration<double>(end_of_handshake - start_of_handshake)
105 .count();
106 if (error_ptr) {
107 if (!IsConnected())
108 *error_ptr =
109 Status::FromErrorString("Connection shut down by remote side "
110 "while waiting for reply to initial "
111 "handshake packet");
112 else
114 "failed to get reply to handshake packet within timeout of "
115 "%.1f seconds",
116 handshake_timeout);
117 }
118 }
119 } else {
120 if (error_ptr)
121 *error_ptr = Status::FromErrorString("failed to send the handshake ack");
122 }
123 return false;
124}
125
129 }
131}
132
136 }
138}
139
143 }
145}
146
150 }
152}
153
157 }
159}
160
164 }
166}
167
171 }
173}
174
178 }
180}
181
185 }
187}
188
193}
194
196 if (m_max_packet_size == 0) {
198 }
199 return m_max_packet_size;
200}
201
204 m_send_acks = true;
206
207 // This is the first real packet that we'll send in a debug session and it
208 // may take a little longer than normal to receive a reply. Wait at least
209 // 6 seconds for a reply to this packet.
210
211 ScopedTimeout timeout(*this, std::max(GetPacketTimeout(), seconds(6)));
212
214 if (SendPacketAndWaitForResponse("QStartNoAckMode", response) ==
216 if (response.IsOKResponse()) {
217 m_send_acks = false;
219 }
220 return true;
221 }
222 }
223 return false;
224}
225
229
231 if (SendPacketAndWaitForResponse("QListThreadsInStopReply", response) ==
233 if (response.IsOKResponse())
235 }
236 }
237}
238
242
244 if (SendPacketAndWaitForResponse("qVAttachOrWaitSupported", response) ==
246 if (response.IsOKResponse())
248 }
249 }
251}
252
256
258 if (SendPacketAndWaitForResponse("qSyncThreadStateSupported", response) ==
260 if (response.IsOKResponse())
262 }
263 }
265}
266
268 if (!did_exec) {
269 // Hard reset everything, this is when we first connect to a GDB server
303 m_supports_z0 = true;
304 m_supports_z1 = true;
305 m_supports_z2 = true;
306 m_supports_z3 = true;
307 m_supports_z4 = true;
310 m_supports_qSymbol = true;
315 m_os_version = llvm::VersionTuple();
316 m_os_build.clear();
317 m_os_kernel.clear();
318 m_hostname.clear();
319 m_gdb_server_name.clear();
321 m_default_packet_timeout = seconds(0);
324 m_qSupported_response.clear();
328 }
329
330 // These flags should be reset when we first connect to a GDB server and when
331 // our inferior process execs
334}
335
337 // Clear out any capabilities we expect to see in the qSupported response
351
352 m_max_packet_size = UINT64_MAX; // It's supposed to always be there, but if
353 // not, we assume no limit
354
355 // build the qSupported packet
356 std::vector<std::string> features = {"xmlRegisters=i386,arm,mips,arc",
357 "multiprocess+",
358 "fork-events+",
359 "vfork-events+",
360 "swbreak+",
361 "hwbreak+"};
362 StreamString packet;
363 packet.PutCString("qSupported");
364 for (uint32_t i = 0; i < features.size(); ++i) {
365 packet.PutCString(i == 0 ? ":" : ";");
366 packet.PutCString(features[i]);
367 }
368
370 if (SendPacketAndWaitForResponse(packet.GetString(), response) ==
372 // Hang on to the qSupported packet, so that platforms can do custom
373 // configuration of the transport before attaching/launching the process.
374 m_qSupported_response = response.GetStringRef().str();
375
376 for (llvm::StringRef x : llvm::split(response.GetStringRef(), ';')) {
377 if (x == "qXfer:auxv:read+")
379 else if (x == "qXfer:libraries-svr4:read+")
381 else if (x == "augmented-libraries-svr4-read") {
384 } else if (x == "qXfer:libraries:read+")
386 else if (x == "qXfer:features:read+")
388 else if (x == "qXfer:memory-map:read+")
390 else if (x == "qXfer:siginfo:read+")
392 else if (x == "qEcho")
394 else if (x == "QPassSignals+")
396 else if (x == "multiprocess+")
398 else if (x == "memory-tagging+")
400 else if (x == "qSaveCore+")
402 else if (x == "native-signals+")
404 // Look for a list of compressions in the features list e.g.
405 // qXfer:features:read+;PacketSize=20000;qEcho+;SupportedCompressions=zlib-
406 // deflate,lzma
407 else if (x.consume_front("SupportedCompressions=")) {
408 llvm::SmallVector<llvm::StringRef, 4> compressions;
409 x.split(compressions, ',');
410 if (!compressions.empty())
411 MaybeEnableCompression(compressions);
412 } else if (x.consume_front("SupportedWatchpointTypes=")) {
413 llvm::SmallVector<llvm::StringRef, 4> watchpoint_types;
414 x.split(watchpoint_types, ',');
415 m_watchpoint_types = eWatchpointHardwareFeatureUnknown;
416 for (auto wp_type : watchpoint_types) {
417 if (wp_type == "x86_64")
418 m_watchpoint_types |= eWatchpointHardwareX86;
419 if (wp_type == "aarch64-mask")
420 m_watchpoint_types |= eWatchpointHardwareArmMASK;
421 if (wp_type == "aarch64-bas")
422 m_watchpoint_types |= eWatchpointHardwareArmBAS;
423 }
424 } else if (x.consume_front("PacketSize=")) {
425 StringExtractorGDBRemote packet_response(x);
427 packet_response.GetHexMaxU64(/*little_endian=*/false, UINT64_MAX);
428 if (m_max_packet_size == 0) {
429 m_max_packet_size = UINT64_MAX; // Must have been a garbled response
431 LLDB_LOGF(log, "Garbled PacketSize spec in qSupported response");
432 }
433 }
434 }
435 }
436}
437
442 if (SendPacketAndWaitForResponse("QThreadSuffixSupported", response) ==
444 if (response.IsOKResponse())
446 }
447 }
449}
459 if (SendPacketAndWaitForResponse("vCont?", response) ==
461 const char *response_cstr = response.GetStringRef().data();
462 if (::strstr(response_cstr, ";c"))
464
465 if (::strstr(response_cstr, ";C"))
467
468 if (::strstr(response_cstr, ";s"))
470
471 if (::strstr(response_cstr, ";S"))
473
479 }
480
486 }
487 }
488 }
489
490 switch (flavor) {
491 case 'a':
493 case 'A':
495 case 'c':
496 return m_supports_vCont_c;
497 case 'C':
498 return m_supports_vCont_C;
499 case 's':
500 return m_supports_vCont_s;
501 case 'S':
502 return m_supports_vCont_S;
503 default:
504 break;
505 }
506 return false;
507}
508
511 lldb::tid_t tid, StreamString &&payload,
512 StringExtractorGDBRemote &response) {
513 Lock lock(*this);
514 if (!lock) {
516 LLDB_LOGF(log,
517 "GDBRemoteCommunicationClient::%s: Didn't get sequence mutex "
518 "for %s packet.",
519 __FUNCTION__, payload.GetData());
521 }
522
524 payload.Printf(";thread:%4.4" PRIx64 ";", tid);
525 else {
526 if (!SetCurrentThread(tid))
528 }
529
530 return SendPacketAndWaitForResponseNoLock(payload.GetString(), response);
531}
532
533// Check if the target supports 'p' packet. It sends out a 'p' packet and
534// checks the response. A normal packet will tell us that support is available.
535//
536// Takes a valid thread ID because p needs to apply to a thread.
540 return m_supports_p;
541}
542
544 lldb::tid_t tid, llvm::StringRef packetStr) {
545 StreamString payload;
546 payload.PutCString(packetStr);
549 tid, std::move(payload), response) == PacketResult::Success &&
550 response.IsNormalResponse()) {
551 return eLazyBoolYes;
552 }
553 return eLazyBoolNo;
554}
555
558}
559
561 // Get information on all threads at one using the "jThreadsInfo" packet
562 StructuredData::ObjectSP object_sp;
563
567 if (SendPacketAndWaitForResponse("jThreadsInfo", response) ==
569 if (response.IsUnsupportedResponse()) {
571 } else if (!response.Empty()) {
572 object_sp = StructuredData::ParseJSON(response.GetStringRef());
573 }
574 }
575 }
576 return object_sp;
577}
578
583 if (SendPacketAndWaitForResponse("jThreadExtendedInfo:", response) ==
585 if (response.IsOKResponse()) {
587 }
588 }
589 }
591}
592
596 // We try to enable error strings in remote packets but if we fail, we just
597 // work in the older way.
599 if (SendPacketAndWaitForResponse("QEnableErrorStrings", response) ==
601 if (response.IsOKResponse()) {
603 }
604 }
605 }
606}
607
612 if (SendPacketAndWaitForResponse("jGetLoadedDynamicLibrariesInfos:",
613 response) == PacketResult::Success) {
614 if (response.IsOKResponse()) {
616 }
617 }
618 }
620}
621
626 if (SendPacketAndWaitForResponse("jGetSharedCacheInfo:", response) ==
628 if (response.IsOKResponse()) {
630 }
631 }
632 }
634}
635
640 if (SendPacketAndWaitForResponse("jGetDyldProcessState", response) ==
642 if (!response.IsUnsupportedResponse())
644 }
645 }
647}
648
652 }
654}
655
657 size_t len,
658 int32_t type) {
659 StreamString packet;
660 packet.Printf("qMemTags:%" PRIx64 ",%zx:%" PRIx32, addr, len, type);
662
663 Log *log = GetLog(GDBRLog::Memory);
664
665 if (SendPacketAndWaitForResponse(packet.GetString(), response) !=
667 !response.IsNormalResponse()) {
668 LLDB_LOGF(log, "GDBRemoteCommunicationClient::%s: qMemTags packet failed",
669 __FUNCTION__);
670 return nullptr;
671 }
672
673 // We are expecting
674 // m<hex encoded bytes>
675
676 if (response.GetChar() != 'm') {
677 LLDB_LOGF(log,
678 "GDBRemoteCommunicationClient::%s: qMemTags response did not "
679 "begin with \"m\"",
680 __FUNCTION__);
681 return nullptr;
682 }
683
684 size_t expected_bytes = response.GetBytesLeft() / 2;
685 WritableDataBufferSP buffer_sp(new DataBufferHeap(expected_bytes, 0));
686 size_t got_bytes = response.GetHexBytesAvail(buffer_sp->GetData());
687 // Check both because in some situations chars are consumed even
688 // if the decoding fails.
689 if (response.GetBytesLeft() || (expected_bytes != got_bytes)) {
690 LLDB_LOGF(
691 log,
692 "GDBRemoteCommunicationClient::%s: Invalid data in qMemTags response",
693 __FUNCTION__);
694 return nullptr;
695 }
696
697 return buffer_sp;
698}
699
701 lldb::addr_t addr, size_t len, int32_t type,
702 const std::vector<uint8_t> &tags) {
703 // Format QMemTags:address,length:type:tags
704 StreamString packet;
705 packet.Printf("QMemTags:%" PRIx64 ",%zx:%" PRIx32 ":", addr, len, type);
706 packet.PutBytesAsRawHex8(tags.data(), tags.size());
707
708 Status status;
710 if (SendPacketAndWaitForResponse(packet.GetString(), response) !=
712 !response.IsOKResponse()) {
713 status = Status::FromErrorString("QMemTags packet failed");
714 }
715 return status;
716}
717
722 char packet[256];
723 snprintf(packet, sizeof(packet), "x0,0");
724 if (SendPacketAndWaitForResponse(packet, response) ==
726 if (response.IsOKResponse())
728 }
729 }
730 return m_supports_x;
731}
732
734 if (allow_lazy && m_curr_pid_is_valid == eLazyBoolYes)
735 return m_curr_pid;
736
737 // First try to retrieve the pid via the qProcessInfo request.
738 GetCurrentProcessInfo(allow_lazy);
740 // We really got it.
741 return m_curr_pid;
742 } else {
743 // If we don't get a response for qProcessInfo, check if $qC gives us a
744 // result. $qC only returns a real process id on older debugserver and
745 // lldb-platform stubs. The gdb remote protocol documents $qC as returning
746 // the thread id, which newer debugserver and lldb-gdbserver stubs return
747 // correctly.
750 if (response.GetChar() == 'Q') {
751 if (response.GetChar() == 'C') {
753 response.GetHexMaxU64(false, LLDB_INVALID_PROCESS_ID);
756 return m_curr_pid;
757 }
758 }
759 }
760 }
761
762 // If we don't get a response for $qC, check if $qfThreadID gives us a
763 // result.
765 bool sequence_mutex_unavailable;
766 auto ids = GetCurrentProcessAndThreadIDs(sequence_mutex_unavailable);
767 if (!ids.empty() && !sequence_mutex_unavailable) {
768 // If server returned an explicit PID, use that.
769 m_curr_pid_run = m_curr_pid = ids.front().first;
770 // Otherwise, use the TID of the first thread (Linux hack).
772 m_curr_pid_run = m_curr_pid = ids.front().second;
774 return m_curr_pid;
775 }
776 }
777 }
778
780}
781
783 if (!args.GetArgumentAtIndex(0))
784 return llvm::createStringError(llvm::inconvertibleErrorCode(),
785 "Nothing to launch");
786 // try vRun first
787 if (m_supports_vRun) {
788 StreamString packet;
789 packet.PutCString("vRun");
790 for (const Args::ArgEntry &arg : args) {
791 packet.PutChar(';');
792 packet.PutStringAsRawHex8(arg.ref());
793 }
794
796 if (SendPacketAndWaitForResponse(packet.GetString(), response) !=
798 return llvm::createStringError(llvm::inconvertibleErrorCode(),
799 "Sending vRun packet failed");
800
801 if (response.IsErrorResponse())
802 return response.GetStatus().ToError();
803
804 // vRun replies with a stop reason packet
805 // FIXME: right now we just discard the packet and LLDB queries
806 // for stop reason again
807 if (!response.IsUnsupportedResponse())
808 return llvm::Error::success();
809
810 m_supports_vRun = false;
811 }
812
813 // fallback to A
814 StreamString packet;
815 packet.PutChar('A');
816 llvm::ListSeparator LS(",");
817 for (const auto &arg : llvm::enumerate(args)) {
818 packet << LS;
819 packet.Format("{0},{1},", arg.value().ref().size() * 2, arg.index());
820 packet.PutStringAsRawHex8(arg.value().ref());
821 }
822
824 if (SendPacketAndWaitForResponse(packet.GetString(), response) !=
826 return llvm::createStringError(llvm::inconvertibleErrorCode(),
827 "Sending A packet failed");
828 }
829 if (!response.IsOKResponse())
830 return response.GetStatus().ToError();
831
832 if (SendPacketAndWaitForResponse("qLaunchSuccess", response) !=
834 return llvm::createStringError(llvm::inconvertibleErrorCode(),
835 "Sending qLaunchSuccess packet failed");
836 }
837 if (response.IsOKResponse())
838 return llvm::Error::success();
839 if (response.GetChar() == 'E') {
840 return llvm::createStringError(llvm::inconvertibleErrorCode(),
841 response.GetStringRef().substr(1));
842 }
843 return llvm::createStringError(llvm::inconvertibleErrorCode(),
844 "unknown error occurred launching process");
845}
846
848 llvm::SmallVector<std::pair<llvm::StringRef, llvm::StringRef>, 0> vec;
849 for (const auto &kv : env)
850 vec.emplace_back(kv.first(), kv.second);
851 llvm::sort(vec, llvm::less_first());
852 for (const auto &[k, v] : vec) {
853 int r = SendEnvironmentPacket((k + "=" + v).str().c_str());
854 if (r != 0)
855 return r;
856 }
857 return 0;
858}
859
861 char const *name_equal_value) {
862 if (name_equal_value && name_equal_value[0]) {
863 bool send_hex_encoding = false;
864 for (const char *p = name_equal_value; *p != '\0' && !send_hex_encoding;
865 ++p) {
866 if (llvm::isPrint(*p)) {
867 switch (*p) {
868 case '$':
869 case '#':
870 case '*':
871 case '}':
872 send_hex_encoding = true;
873 break;
874 default:
875 break;
876 }
877 } else {
878 // We have non printable characters, lets hex encode this...
879 send_hex_encoding = true;
880 }
881 }
882
884 // Prefer sending unencoded, if possible and the server supports it.
885 if (!send_hex_encoding && m_supports_QEnvironment) {
886 StreamString packet;
887 packet.Printf("QEnvironment:%s", name_equal_value);
888 if (SendPacketAndWaitForResponse(packet.GetString(), response) !=
890 return -1;
891
892 if (response.IsOKResponse())
893 return 0;
894 if (response.IsUnsupportedResponse())
896 else {
897 uint8_t error = response.GetError();
898 if (error)
899 return error;
900 return -1;
901 }
902 }
903
905 StreamString packet;
906 packet.PutCString("QEnvironmentHexEncoded:");
907 packet.PutBytesAsRawHex8(name_equal_value, strlen(name_equal_value));
908 if (SendPacketAndWaitForResponse(packet.GetString(), response) !=
910 return -1;
911
912 if (response.IsOKResponse())
913 return 0;
914 if (response.IsUnsupportedResponse())
916 else {
917 uint8_t error = response.GetError();
918 if (error)
919 return error;
920 return -1;
921 }
922 }
923 }
924 return -1;
925}
926
928 if (arch && arch[0]) {
929 StreamString packet;
930 packet.Printf("QLaunchArch:%s", arch);
932 if (SendPacketAndWaitForResponse(packet.GetString(), response) ==
934 if (response.IsOKResponse())
935 return 0;
936 uint8_t error = response.GetError();
937 if (error)
938 return error;
939 }
940 }
941 return -1;
942}
943
945 char const *data, bool *was_supported) {
946 if (data && *data != '\0') {
947 StreamString packet;
948 packet.Printf("QSetProcessEvent:%s", data);
950 if (SendPacketAndWaitForResponse(packet.GetString(), response) ==
952 if (response.IsOKResponse()) {
953 if (was_supported)
954 *was_supported = true;
955 return 0;
956 } else if (response.IsUnsupportedResponse()) {
957 if (was_supported)
958 *was_supported = false;
959 return -1;
960 } else {
961 uint8_t error = response.GetError();
962 if (was_supported)
963 *was_supported = true;
964 if (error)
965 return error;
966 }
967 }
968 }
969 return -1;
970}
971
973 GetHostInfo();
974 return m_os_version;
975}
976
978 GetHostInfo();
980}
981
983 if (GetHostInfo()) {
984 if (!m_os_build.empty())
985 return m_os_build;
986 }
987 return std::nullopt;
988}
989
990std::optional<std::string>
992 if (GetHostInfo()) {
993 if (!m_os_kernel.empty())
994 return m_os_kernel;
995 }
996 return std::nullopt;
997}
998
1000 if (GetHostInfo()) {
1001 if (!m_hostname.empty()) {
1002 s = m_hostname;
1003 return true;
1004 }
1005 }
1006 s.clear();
1007 return false;
1008}
1009
1011 if (GetHostInfo())
1012 return m_host_arch;
1013 return ArchSpec();
1014}
1015
1020 return m_process_arch;
1021}
1022
1024 UUID &uuid, addr_t &value, bool &value_is_offset) {
1027
1028 // Return true if we have a UUID or an address/offset of the
1029 // main standalone / firmware binary being used.
1032 return false;
1033
1036 value_is_offset = m_process_standalone_value_is_offset;
1037 return true;
1038}
1039
1040std::vector<addr_t>
1044 return m_binary_addresses;
1045}
1046
1049 m_gdb_server_name.clear();
1052
1053 StringExtractorGDBRemote response;
1054 if (SendPacketAndWaitForResponse("qGDBServerVersion", response) ==
1056 if (response.IsNormalResponse()) {
1057 llvm::StringRef name, value;
1058 bool success = false;
1059 while (response.GetNameColonValue(name, value)) {
1060 if (name == "name") {
1061 success = true;
1062 m_gdb_server_name = std::string(value);
1063 } else if (name == "version") {
1064 llvm::StringRef major, minor;
1065 std::tie(major, minor) = value.split('.');
1066 if (!major.getAsInteger(0, m_gdb_server_version))
1067 success = true;
1068 }
1069 }
1070 if (success)
1072 }
1073 }
1074 }
1076}
1077
1079 llvm::ArrayRef<llvm::StringRef> supported_compressions) {
1081 llvm::StringRef avail_name;
1082
1083#if defined(HAVE_LIBCOMPRESSION)
1084 if (avail_type == CompressionType::None) {
1085 for (auto compression : supported_compressions) {
1086 if (compression == "lzfse") {
1087 avail_type = CompressionType::LZFSE;
1088 avail_name = compression;
1089 break;
1090 }
1091 }
1092 }
1093#endif
1094
1095#if defined(HAVE_LIBCOMPRESSION)
1096 if (avail_type == CompressionType::None) {
1097 for (auto compression : supported_compressions) {
1098 if (compression == "zlib-deflate") {
1099 avail_type = CompressionType::ZlibDeflate;
1100 avail_name = compression;
1101 break;
1102 }
1103 }
1104 }
1105#endif
1106
1107#if LLVM_ENABLE_ZLIB
1108 if (avail_type == CompressionType::None) {
1109 for (auto compression : supported_compressions) {
1110 if (compression == "zlib-deflate") {
1111 avail_type = CompressionType::ZlibDeflate;
1112 avail_name = compression;
1113 break;
1114 }
1115 }
1116 }
1117#endif
1118
1119#if defined(HAVE_LIBCOMPRESSION)
1120 if (avail_type == CompressionType::None) {
1121 for (auto compression : supported_compressions) {
1122 if (compression == "lz4") {
1123 avail_type = CompressionType::LZ4;
1124 avail_name = compression;
1125 break;
1126 }
1127 }
1128 }
1129#endif
1130
1131#if defined(HAVE_LIBCOMPRESSION)
1132 if (avail_type == CompressionType::None) {
1133 for (auto compression : supported_compressions) {
1134 if (compression == "lzma") {
1135 avail_type = CompressionType::LZMA;
1136 avail_name = compression;
1137 break;
1138 }
1139 }
1140 }
1141#endif
1142
1143 if (avail_type != CompressionType::None) {
1144 StringExtractorGDBRemote response;
1145 std::string packet = "QEnableCompression:type:" + avail_name.str() + ";";
1146 if (SendPacketAndWaitForResponse(packet, response) != PacketResult::Success)
1147 return;
1148
1149 if (response.IsOKResponse()) {
1150 m_compression_type = avail_type;
1151 }
1152 }
1153}
1154
1156 if (GetGDBServerVersion()) {
1157 if (!m_gdb_server_name.empty())
1158 return m_gdb_server_name.c_str();
1159 }
1160 return nullptr;
1161}
1162
1164 if (GetGDBServerVersion())
1165 return m_gdb_server_version;
1166 return 0;
1167}
1168
1170 StringExtractorGDBRemote response;
1172 return false;
1173
1174 if (!response.IsNormalResponse())
1175 return false;
1176
1177 if (response.GetChar() == 'Q' && response.GetChar() == 'C') {
1178 auto pid_tid = response.GetPidTid(0);
1179 if (!pid_tid)
1180 return false;
1181
1182 lldb::pid_t pid = pid_tid->first;
1183 // invalid
1185 return false;
1186
1187 // if we get pid as well, update m_curr_pid
1188 if (pid != 0) {
1189 m_curr_pid_run = m_curr_pid = pid;
1191 }
1192 tid = pid_tid->second;
1193 }
1194
1195 return true;
1196}
1197
1198static void ParseOSType(llvm::StringRef value, std::string &os_name,
1199 std::string &environment) {
1200 if (value == "iossimulator" || value == "tvossimulator" ||
1201 value == "watchossimulator" || value == "xrossimulator" ||
1202 value == "visionossimulator") {
1203 environment = "simulator";
1204 os_name = value.drop_back(environment.size()).str();
1205 } else if (value == "maccatalyst") {
1206 os_name = "ios";
1207 environment = "macabi";
1208 } else {
1209 os_name = value.str();
1210 }
1211}
1212
1214 Log *log = GetLog(GDBRLog::Process);
1215
1216 if (force || m_qHostInfo_is_valid == eLazyBoolCalculate) {
1217 // host info computation can require DNS traffic and shelling out to external processes.
1218 // Increase the timeout to account for that.
1219 ScopedTimeout timeout(*this, seconds(10));
1221 StringExtractorGDBRemote response;
1222 if (SendPacketAndWaitForResponse("qHostInfo", response) ==
1224 if (response.IsNormalResponse()) {
1225 llvm::StringRef name;
1226 llvm::StringRef value;
1227 uint32_t cpu = LLDB_INVALID_CPUTYPE;
1228 uint32_t sub = 0;
1229 std::string arch_name;
1230 std::string os_name;
1231 std::string environment;
1232 std::string vendor_name;
1233 std::string triple;
1234 uint32_t pointer_byte_size = 0;
1235 ByteOrder byte_order = eByteOrderInvalid;
1236 uint32_t num_keys_decoded = 0;
1237 while (response.GetNameColonValue(name, value)) {
1238 if (name == "cputype") {
1239 // exception type in big endian hex
1240 if (!value.getAsInteger(0, cpu))
1241 ++num_keys_decoded;
1242 } else if (name == "cpusubtype") {
1243 // exception count in big endian hex
1244 if (!value.getAsInteger(0, sub))
1245 ++num_keys_decoded;
1246 } else if (name == "arch") {
1247 arch_name = std::string(value);
1248 ++num_keys_decoded;
1249 } else if (name == "triple") {
1250 StringExtractor extractor(value);
1251 extractor.GetHexByteString(triple);
1252 ++num_keys_decoded;
1253 } else if (name == "distribution_id") {
1254 StringExtractor extractor(value);
1256 ++num_keys_decoded;
1257 } else if (name == "os_build") {
1258 StringExtractor extractor(value);
1259 extractor.GetHexByteString(m_os_build);
1260 ++num_keys_decoded;
1261 } else if (name == "hostname") {
1262 StringExtractor extractor(value);
1263 extractor.GetHexByteString(m_hostname);
1264 ++num_keys_decoded;
1265 } else if (name == "os_kernel") {
1266 StringExtractor extractor(value);
1267 extractor.GetHexByteString(m_os_kernel);
1268 ++num_keys_decoded;
1269 } else if (name == "ostype") {
1270 ParseOSType(value, os_name, environment);
1271 ++num_keys_decoded;
1272 } else if (name == "vendor") {
1273 vendor_name = std::string(value);
1274 ++num_keys_decoded;
1275 } else if (name == "endian") {
1276 byte_order = llvm::StringSwitch<lldb::ByteOrder>(value)
1277 .Case("little", eByteOrderLittle)
1278 .Case("big", eByteOrderBig)
1279 .Case("pdp", eByteOrderPDP)
1280 .Default(eByteOrderInvalid);
1281 if (byte_order != eByteOrderInvalid)
1282 ++num_keys_decoded;
1283 } else if (name == "ptrsize") {
1284 if (!value.getAsInteger(0, pointer_byte_size))
1285 ++num_keys_decoded;
1286 } else if (name == "addressing_bits") {
1287 if (!value.getAsInteger(0, m_low_mem_addressing_bits)) {
1288 ++num_keys_decoded;
1289 }
1290 } else if (name == "high_mem_addressing_bits") {
1291 if (!value.getAsInteger(0, m_high_mem_addressing_bits))
1292 ++num_keys_decoded;
1293 } else if (name == "low_mem_addressing_bits") {
1294 if (!value.getAsInteger(0, m_low_mem_addressing_bits))
1295 ++num_keys_decoded;
1296 } else if (name == "os_version" ||
1297 name == "version") // Older debugserver binaries used
1298 // the "version" key instead of
1299 // "os_version"...
1300 {
1301 if (!m_os_version.tryParse(value))
1302 ++num_keys_decoded;
1303 } else if (name == "maccatalyst_version") {
1304 if (!m_maccatalyst_version.tryParse(value))
1305 ++num_keys_decoded;
1306 } else if (name == "watchpoint_exceptions_received") {
1308 llvm::StringSwitch<LazyBool>(value)
1309 .Case("before", eLazyBoolNo)
1310 .Case("after", eLazyBoolYes)
1311 .Default(eLazyBoolCalculate);
1313 ++num_keys_decoded;
1314 } else if (name == "default_packet_timeout") {
1315 uint32_t timeout_seconds;
1316 if (!value.getAsInteger(0, timeout_seconds)) {
1317 m_default_packet_timeout = seconds(timeout_seconds);
1319 ++num_keys_decoded;
1320 }
1321 } else if (name == "vm-page-size") {
1322 int page_size;
1323 if (!value.getAsInteger(0, page_size)) {
1324 m_target_vm_page_size = page_size;
1325 ++num_keys_decoded;
1326 }
1327 }
1328 }
1329
1330 if (num_keys_decoded > 0)
1332
1333 if (triple.empty()) {
1334 if (arch_name.empty()) {
1335 if (cpu != LLDB_INVALID_CPUTYPE) {
1337 if (pointer_byte_size) {
1338 assert(pointer_byte_size == m_host_arch.GetAddressByteSize());
1339 }
1340 if (byte_order != eByteOrderInvalid) {
1341 assert(byte_order == m_host_arch.GetByteOrder());
1342 }
1343
1344 if (!vendor_name.empty())
1345 m_host_arch.GetTriple().setVendorName(
1346 llvm::StringRef(vendor_name));
1347 if (!os_name.empty())
1348 m_host_arch.GetTriple().setOSName(llvm::StringRef(os_name));
1349 if (!environment.empty())
1350 m_host_arch.GetTriple().setEnvironmentName(environment);
1351 }
1352 } else {
1353 std::string triple;
1354 triple += arch_name;
1355 if (!vendor_name.empty() || !os_name.empty()) {
1356 triple += '-';
1357 if (vendor_name.empty())
1358 triple += "unknown";
1359 else
1360 triple += vendor_name;
1361 triple += '-';
1362 if (os_name.empty())
1363 triple += "unknown";
1364 else
1365 triple += os_name;
1366 }
1367 m_host_arch.SetTriple(triple.c_str());
1368
1369 llvm::Triple &host_triple = m_host_arch.GetTriple();
1370 if (host_triple.getVendor() == llvm::Triple::Apple &&
1371 host_triple.getOS() == llvm::Triple::Darwin) {
1372 switch (m_host_arch.GetMachine()) {
1373 case llvm::Triple::aarch64:
1374 case llvm::Triple::aarch64_32:
1375 case llvm::Triple::arm:
1376 case llvm::Triple::thumb:
1377 host_triple.setOS(llvm::Triple::IOS);
1378 break;
1379 default:
1380 host_triple.setOS(llvm::Triple::MacOSX);
1381 break;
1382 }
1383 }
1384 if (pointer_byte_size) {
1385 assert(pointer_byte_size == m_host_arch.GetAddressByteSize());
1386 }
1387 if (byte_order != eByteOrderInvalid) {
1388 assert(byte_order == m_host_arch.GetByteOrder());
1389 }
1390 }
1391 } else {
1392 m_host_arch.SetTriple(triple.c_str());
1393 if (pointer_byte_size) {
1394 assert(pointer_byte_size == m_host_arch.GetAddressByteSize());
1395 }
1396 if (byte_order != eByteOrderInvalid) {
1397 assert(byte_order == m_host_arch.GetByteOrder());
1398 }
1399
1400 LLDB_LOGF(log,
1401 "GDBRemoteCommunicationClient::%s parsed host "
1402 "architecture as %s, triple as %s from triple text %s",
1403 __FUNCTION__,
1406 : "<null-arch-name>",
1407 m_host_arch.GetTriple().getTriple().c_str(),
1408 triple.c_str());
1409 }
1410 }
1411 }
1412 }
1414}
1415
1417 size_t data_len) {
1418 StreamString packet;
1419 packet.PutCString("I");
1420 packet.PutBytesAsRawHex8(data, data_len);
1421 StringExtractorGDBRemote response;
1422 if (SendPacketAndWaitForResponse(packet.GetString(), response) ==
1424 return 0;
1425 }
1426 return response.GetError();
1427}
1428
1432 GetHostInfo();
1433 return m_host_arch;
1434}
1435
1437 AddressableBits addressable_bits;
1439 GetHostInfo();
1440
1443 else
1446 return addressable_bits;
1447}
1448
1451 GetHostInfo();
1453}
1454
1456 uint32_t permissions) {
1459 char packet[64];
1460 const int packet_len = ::snprintf(
1461 packet, sizeof(packet), "_M%" PRIx64 ",%s%s%s", (uint64_t)size,
1462 permissions & lldb::ePermissionsReadable ? "r" : "",
1463 permissions & lldb::ePermissionsWritable ? "w" : "",
1464 permissions & lldb::ePermissionsExecutable ? "x" : "");
1465 assert(packet_len < (int)sizeof(packet));
1466 UNUSED_IF_ASSERT_DISABLED(packet_len);
1467 StringExtractorGDBRemote response;
1468 if (SendPacketAndWaitForResponse(packet, response) ==
1470 if (response.IsUnsupportedResponse())
1472 else if (!response.IsErrorResponse())
1473 return response.GetHexMaxU64(false, LLDB_INVALID_ADDRESS);
1474 } else {
1476 }
1477 }
1478 return LLDB_INVALID_ADDRESS;
1479}
1480
1484 char packet[64];
1485 const int packet_len =
1486 ::snprintf(packet, sizeof(packet), "_m%" PRIx64, (uint64_t)addr);
1487 assert(packet_len < (int)sizeof(packet));
1488 UNUSED_IF_ASSERT_DISABLED(packet_len);
1489 StringExtractorGDBRemote response;
1490 if (SendPacketAndWaitForResponse(packet, response) ==
1492 if (response.IsUnsupportedResponse())
1494 else if (response.IsOKResponse())
1495 return true;
1496 } else {
1498 }
1499 }
1500 return false;
1501}
1502
1504 lldb::pid_t pid) {
1505 Status error;
1507
1508 packet.PutChar('D');
1509 if (keep_stopped) {
1511 char packet[64];
1512 const int packet_len =
1513 ::snprintf(packet, sizeof(packet), "qSupportsDetachAndStayStopped:");
1514 assert(packet_len < (int)sizeof(packet));
1515 UNUSED_IF_ASSERT_DISABLED(packet_len);
1516 StringExtractorGDBRemote response;
1517 if (SendPacketAndWaitForResponse(packet, response) ==
1519 response.IsOKResponse()) {
1521 } else {
1523 }
1524 }
1525
1528 "Stays stopped not supported by this target.");
1529 return error;
1530 } else {
1531 packet.PutChar('1');
1532 }
1533 }
1534
1536 // Some servers (e.g. qemu) require specifying the PID even if only a single
1537 // process is running.
1538 if (pid == LLDB_INVALID_PROCESS_ID)
1539 pid = GetCurrentProcessID();
1540 packet.PutChar(';');
1541 packet.PutHex64(pid);
1542 } else if (pid != LLDB_INVALID_PROCESS_ID) {
1544 "Multiprocess extension not supported by the server.");
1545 return error;
1546 }
1547
1548 StringExtractorGDBRemote response;
1549 PacketResult packet_result =
1550 SendPacketAndWaitForResponse(packet.GetString(), response);
1551 if (packet_result != PacketResult::Success)
1552 error = Status::FromErrorString("Sending isconnect packet failed.");
1553 return error;
1554}
1555
1557 lldb::addr_t addr, lldb_private::MemoryRegionInfo &region_info) {
1558 Status error;
1559 region_info.Clear();
1560
1563 char packet[64];
1564 const int packet_len = ::snprintf(
1565 packet, sizeof(packet), "qMemoryRegionInfo:%" PRIx64, (uint64_t)addr);
1566 assert(packet_len < (int)sizeof(packet));
1567 UNUSED_IF_ASSERT_DISABLED(packet_len);
1568 StringExtractorGDBRemote response;
1569 if (SendPacketAndWaitForResponse(packet, response) ==
1572 llvm::StringRef name;
1573 llvm::StringRef value;
1574 addr_t addr_value = LLDB_INVALID_ADDRESS;
1575 bool success = true;
1576 bool saw_permissions = false;
1577 while (success && response.GetNameColonValue(name, value)) {
1578 if (name == "start") {
1579 if (!value.getAsInteger(16, addr_value))
1580 region_info.GetRange().SetRangeBase(addr_value);
1581 } else if (name == "size") {
1582 if (!value.getAsInteger(16, addr_value)) {
1583 region_info.GetRange().SetByteSize(addr_value);
1584 if (region_info.GetRange().GetRangeEnd() <
1585 region_info.GetRange().GetRangeBase()) {
1586 // Range size overflowed, truncate it.
1588 }
1589 }
1590 } else if (name == "permissions" && region_info.GetRange().IsValid()) {
1591 saw_permissions = true;
1592 if (region_info.GetRange().Contains(addr)) {
1593 if (value.contains('r'))
1595 else
1597
1598 if (value.contains('w'))
1600 else
1602
1603 if (value.contains('x'))
1605 else
1607
1608 region_info.SetMapped(MemoryRegionInfo::eYes);
1609 } else {
1610 // The reported region does not contain this address -- we're
1611 // looking at an unmapped page
1615 region_info.SetMapped(MemoryRegionInfo::eNo);
1616 }
1617 } else if (name == "name") {
1618 StringExtractorGDBRemote name_extractor(value);
1619 std::string name;
1620 name_extractor.GetHexByteString(name);
1621 region_info.SetName(name.c_str());
1622 } else if (name == "flags") {
1625
1626 llvm::StringRef flags = value;
1627 llvm::StringRef flag;
1628 while (flags.size()) {
1629 flags = flags.ltrim();
1630 std::tie(flag, flags) = flags.split(' ');
1631 // To account for trailing whitespace
1632 if (flag.size()) {
1633 if (flag == "mt")
1635 else if (flag == "ss")
1637 }
1638 }
1639 } else if (name == "type") {
1640 for (llvm::StringRef entry : llvm::split(value, ',')) {
1641 if (entry == "stack")
1643 else if (entry == "heap")
1645 }
1646 } else if (name == "error") {
1647 StringExtractorGDBRemote error_extractor(value);
1648 std::string error_string;
1649 // Now convert the HEX bytes into a string value
1650 error_extractor.GetHexByteString(error_string);
1651 error = Status::FromErrorString(error_string.c_str());
1652 } else if (name == "dirty-pages") {
1653 std::vector<addr_t> dirty_page_list;
1654 for (llvm::StringRef x : llvm::split(value, ',')) {
1655 addr_t page;
1656 x.consume_front("0x");
1657 if (llvm::to_integer(x, page, 16))
1658 dirty_page_list.push_back(page);
1659 }
1660 region_info.SetDirtyPageList(dirty_page_list);
1661 }
1662 }
1663
1664 if (m_target_vm_page_size != 0)
1666
1667 if (region_info.GetRange().IsValid()) {
1668 // We got a valid address range back but no permissions -- which means
1669 // this is an unmapped page
1670 if (!saw_permissions) {
1674 region_info.SetMapped(MemoryRegionInfo::eNo);
1675 }
1676 } else {
1677 // We got an invalid address range back
1678 error = Status::FromErrorString("Server returned invalid range");
1679 }
1680 } else {
1682 }
1683 }
1684
1686 error = Status::FromErrorString("qMemoryRegionInfo is not supported");
1687 }
1688
1689 // Try qXfer:memory-map:read to get region information not included in
1690 // qMemoryRegionInfo
1691 MemoryRegionInfo qXfer_region_info;
1692 Status qXfer_error = GetQXferMemoryMapRegionInfo(addr, qXfer_region_info);
1693
1694 if (error.Fail()) {
1695 // If qMemoryRegionInfo failed, but qXfer:memory-map:read succeeded, use
1696 // the qXfer result as a fallback
1697 if (qXfer_error.Success()) {
1698 region_info = qXfer_region_info;
1699 error.Clear();
1700 } else {
1701 region_info.Clear();
1702 }
1703 } else if (qXfer_error.Success()) {
1704 // If both qMemoryRegionInfo and qXfer:memory-map:read succeeded, and if
1705 // both regions are the same range, update the result to include the flash-
1706 // memory information that is specific to the qXfer result.
1707 if (region_info.GetRange() == qXfer_region_info.GetRange()) {
1708 region_info.SetFlash(qXfer_region_info.GetFlash());
1709 region_info.SetBlocksize(qXfer_region_info.GetBlocksize());
1710 }
1711 }
1712 return error;
1713}
1714
1716 lldb::addr_t addr, MemoryRegionInfo &region) {
1718 if (!error.Success())
1719 return error;
1720 for (const auto &map_region : m_qXfer_memory_map) {
1721 if (map_region.GetRange().Contains(addr)) {
1722 region = map_region;
1723 return error;
1724 }
1725 }
1726 error = Status::FromErrorString("Region not found");
1727 return error;
1728}
1729
1731
1732 Status error;
1733
1735 // Already loaded, return success
1736 return error;
1737
1738 if (!XMLDocument::XMLEnabled()) {
1739 error = Status::FromErrorString("XML is not supported");
1740 return error;
1741 }
1742
1744 error = Status::FromErrorString("Memory map is not supported");
1745 return error;
1746 }
1747
1748 llvm::Expected<std::string> xml = ReadExtFeature("memory-map", "");
1749 if (!xml)
1750 return Status::FromError(xml.takeError());
1751
1752 XMLDocument xml_document;
1753
1754 if (!xml_document.ParseMemory(xml->c_str(), xml->size())) {
1755 error = Status::FromErrorString("Failed to parse memory map xml");
1756 return error;
1757 }
1758
1759 XMLNode map_node = xml_document.GetRootElement("memory-map");
1760 if (!map_node) {
1761 error = Status::FromErrorString("Invalid root node in memory map xml");
1762 return error;
1763 }
1764
1765 m_qXfer_memory_map.clear();
1766
1767 map_node.ForEachChildElement([this](const XMLNode &memory_node) -> bool {
1768 if (!memory_node.IsElement())
1769 return true;
1770 if (memory_node.GetName() != "memory")
1771 return true;
1772 auto type = memory_node.GetAttributeValue("type", "");
1773 uint64_t start;
1774 uint64_t length;
1775 if (!memory_node.GetAttributeValueAsUnsigned("start", start))
1776 return true;
1777 if (!memory_node.GetAttributeValueAsUnsigned("length", length))
1778 return true;
1779 MemoryRegionInfo region;
1780 region.GetRange().SetRangeBase(start);
1781 region.GetRange().SetByteSize(length);
1782 if (type == "rom") {
1783 region.SetReadable(MemoryRegionInfo::eYes);
1784 this->m_qXfer_memory_map.push_back(region);
1785 } else if (type == "ram") {
1786 region.SetReadable(MemoryRegionInfo::eYes);
1787 region.SetWritable(MemoryRegionInfo::eYes);
1788 this->m_qXfer_memory_map.push_back(region);
1789 } else if (type == "flash") {
1790 region.SetFlash(MemoryRegionInfo::eYes);
1791 memory_node.ForEachChildElement(
1792 [&region](const XMLNode &prop_node) -> bool {
1793 if (!prop_node.IsElement())
1794 return true;
1795 if (prop_node.GetName() != "property")
1796 return true;
1797 auto propname = prop_node.GetAttributeValue("name", "");
1798 if (propname == "blocksize") {
1799 uint64_t blocksize;
1800 if (prop_node.GetElementTextAsUnsigned(blocksize))
1801 region.SetBlocksize(blocksize);
1802 }
1803 return true;
1804 });
1805 this->m_qXfer_memory_map.push_back(region);
1806 }
1807 return true;
1808 });
1809
1811
1812 return error;
1813}
1814
1818 }
1819
1820 std::optional<uint32_t> num;
1822 StringExtractorGDBRemote response;
1823 if (SendPacketAndWaitForResponse("qWatchpointSupportInfo:", response) ==
1826 llvm::StringRef name;
1827 llvm::StringRef value;
1828 while (response.GetNameColonValue(name, value)) {
1829 if (name == "num") {
1830 value.getAsInteger(0, m_num_supported_hardware_watchpoints);
1832 }
1833 }
1834 if (!num) {
1836 }
1837 } else {
1839 }
1840 }
1841
1842 return num;
1843}
1844
1845WatchpointHardwareFeature
1847 return m_watchpoint_types;
1848}
1849
1852 GetHostInfo();
1853
1854 // Process determines this by target CPU, but allow for the
1855 // remote stub to override it via the qHostInfo
1856 // watchpoint_exceptions_received key, if it is present.
1859 return false;
1861 return true;
1862 }
1863
1864 return std::nullopt;
1865}
1866
1868 if (file_spec) {
1869 std::string path{file_spec.GetPath(false)};
1870 StreamString packet;
1871 packet.PutCString("QSetSTDIN:");
1872 packet.PutStringAsRawHex8(path);
1873
1874 StringExtractorGDBRemote response;
1875 if (SendPacketAndWaitForResponse(packet.GetString(), response) ==
1877 if (response.IsOKResponse())
1878 return 0;
1879 uint8_t error = response.GetError();
1880 if (error)
1881 return error;
1882 }
1883 }
1884 return -1;
1885}
1886
1888 if (file_spec) {
1889 std::string path{file_spec.GetPath(false)};
1890 StreamString packet;
1891 packet.PutCString("QSetSTDOUT:");
1892 packet.PutStringAsRawHex8(path);
1893
1894 StringExtractorGDBRemote response;
1895 if (SendPacketAndWaitForResponse(packet.GetString(), response) ==
1897 if (response.IsOKResponse())
1898 return 0;
1899 uint8_t error = response.GetError();
1900 if (error)
1901 return error;
1902 }
1903 }
1904 return -1;
1905}
1906
1908 if (file_spec) {
1909 std::string path{file_spec.GetPath(false)};
1910 StreamString packet;
1911 packet.PutCString("QSetSTDERR:");
1912 packet.PutStringAsRawHex8(path);
1913
1914 StringExtractorGDBRemote response;
1915 if (SendPacketAndWaitForResponse(packet.GetString(), response) ==
1917 if (response.IsOKResponse())
1918 return 0;
1919 uint8_t error = response.GetError();
1920 if (error)
1921 return error;
1922 }
1923 }
1924 return -1;
1925}
1926
1928 StringExtractorGDBRemote response;
1929 if (SendPacketAndWaitForResponse("qGetWorkingDir", response) ==
1931 if (response.IsUnsupportedResponse())
1932 return false;
1933 if (response.IsErrorResponse())
1934 return false;
1935 std::string cwd;
1936 response.GetHexByteString(cwd);
1937 working_dir.SetFile(cwd, GetHostArchitecture().GetTriple());
1938 return !cwd.empty();
1939 }
1940 return false;
1941}
1942
1944 if (working_dir) {
1945 std::string path{working_dir.GetPath(false)};
1946 StreamString packet;
1947 packet.PutCString("QSetWorkingDir:");
1948 packet.PutStringAsRawHex8(path);
1949
1950 StringExtractorGDBRemote response;
1951 if (SendPacketAndWaitForResponse(packet.GetString(), response) ==
1953 if (response.IsOKResponse())
1954 return 0;
1955 uint8_t error = response.GetError();
1956 if (error)
1957 return error;
1958 }
1959 }
1960 return -1;
1961}
1962
1964 char packet[32];
1965 const int packet_len =
1966 ::snprintf(packet, sizeof(packet), "QSetDisableASLR:%i", enable ? 1 : 0);
1967 assert(packet_len < (int)sizeof(packet));
1968 UNUSED_IF_ASSERT_DISABLED(packet_len);
1969 StringExtractorGDBRemote response;
1970 if (SendPacketAndWaitForResponse(packet, response) == PacketResult::Success) {
1971 if (response.IsOKResponse())
1972 return 0;
1973 uint8_t error = response.GetError();
1974 if (error)
1975 return error;
1976 }
1977 return -1;
1978}
1979
1981 char packet[32];
1982 const int packet_len = ::snprintf(packet, sizeof(packet),
1983 "QSetDetachOnError:%i", enable ? 1 : 0);
1984 assert(packet_len < (int)sizeof(packet));
1985 UNUSED_IF_ASSERT_DISABLED(packet_len);
1986 StringExtractorGDBRemote response;
1987 if (SendPacketAndWaitForResponse(packet, response) == PacketResult::Success) {
1988 if (response.IsOKResponse())
1989 return 0;
1990 uint8_t error = response.GetError();
1991 if (error)
1992 return error;
1993 }
1994 return -1;
1995}
1996
1998 StringExtractorGDBRemote &response, ProcessInstanceInfo &process_info) {
1999 if (response.IsNormalResponse()) {
2000 llvm::StringRef name;
2001 llvm::StringRef value;
2002 StringExtractor extractor;
2003
2004 uint32_t cpu = LLDB_INVALID_CPUTYPE;
2005 uint32_t sub = 0;
2006 std::string vendor;
2007 std::string os_type;
2008
2009 while (response.GetNameColonValue(name, value)) {
2010 if (name == "pid") {
2012 value.getAsInteger(0, pid);
2013 process_info.SetProcessID(pid);
2014 } else if (name == "ppid") {
2016 value.getAsInteger(0, pid);
2017 process_info.SetParentProcessID(pid);
2018 } else if (name == "uid") {
2019 uint32_t uid = UINT32_MAX;
2020 value.getAsInteger(0, uid);
2021 process_info.SetUserID(uid);
2022 } else if (name == "euid") {
2023 uint32_t uid = UINT32_MAX;
2024 value.getAsInteger(0, uid);
2025 process_info.SetEffectiveUserID(uid);
2026 } else if (name == "gid") {
2027 uint32_t gid = UINT32_MAX;
2028 value.getAsInteger(0, gid);
2029 process_info.SetGroupID(gid);
2030 } else if (name == "egid") {
2031 uint32_t gid = UINT32_MAX;
2032 value.getAsInteger(0, gid);
2033 process_info.SetEffectiveGroupID(gid);
2034 } else if (name == "triple") {
2035 StringExtractor extractor(value);
2036 std::string triple;
2037 extractor.GetHexByteString(triple);
2038 process_info.GetArchitecture().SetTriple(triple.c_str());
2039 } else if (name == "name") {
2040 StringExtractor extractor(value);
2041 // The process name from ASCII hex bytes since we can't control the
2042 // characters in a process name
2043 std::string name;
2044 extractor.GetHexByteString(name);
2045 process_info.GetExecutableFile().SetFile(name, FileSpec::Style::native);
2046 } else if (name == "args") {
2047 llvm::StringRef encoded_args(value), hex_arg;
2048
2049 bool is_arg0 = true;
2050 while (!encoded_args.empty()) {
2051 std::tie(hex_arg, encoded_args) = encoded_args.split('-');
2052 std::string arg;
2053 StringExtractor extractor(hex_arg);
2054 if (extractor.GetHexByteString(arg) * 2 != hex_arg.size()) {
2055 // In case of wrong encoding, we discard all the arguments
2056 process_info.GetArguments().Clear();
2057 process_info.SetArg0("");
2058 break;
2059 }
2060 if (is_arg0)
2061 process_info.SetArg0(arg);
2062 else
2063 process_info.GetArguments().AppendArgument(arg);
2064 is_arg0 = false;
2065 }
2066 } else if (name == "cputype") {
2067 value.getAsInteger(0, cpu);
2068 } else if (name == "cpusubtype") {
2069 value.getAsInteger(0, sub);
2070 } else if (name == "vendor") {
2071 vendor = std::string(value);
2072 } else if (name == "ostype") {
2073 os_type = std::string(value);
2074 }
2075 }
2076
2077 if (cpu != LLDB_INVALID_CPUTYPE && !vendor.empty() && !os_type.empty()) {
2078 if (vendor == "apple") {
2080 sub);
2081 process_info.GetArchitecture().GetTriple().setVendorName(
2082 llvm::StringRef(vendor));
2083 process_info.GetArchitecture().GetTriple().setOSName(
2084 llvm::StringRef(os_type));
2085 }
2086 }
2087
2088 if (process_info.GetProcessID() != LLDB_INVALID_PROCESS_ID)
2089 return true;
2090 }
2091 return false;
2092}
2093
2095 lldb::pid_t pid, ProcessInstanceInfo &process_info) {
2096 process_info.Clear();
2097
2099 char packet[32];
2100 const int packet_len =
2101 ::snprintf(packet, sizeof(packet), "qProcessInfoPID:%" PRIu64, pid);
2102 assert(packet_len < (int)sizeof(packet));
2103 UNUSED_IF_ASSERT_DISABLED(packet_len);
2104 StringExtractorGDBRemote response;
2105 if (SendPacketAndWaitForResponse(packet, response) ==
2107 return DecodeProcessInfoResponse(response, process_info);
2108 } else {
2110 return false;
2111 }
2112 }
2113 return false;
2114}
2115
2118
2119 if (allow_lazy) {
2121 return true;
2123 return false;
2124 }
2125
2126 GetHostInfo();
2127
2128 StringExtractorGDBRemote response;
2129 if (SendPacketAndWaitForResponse("qProcessInfo", response) ==
2131 if (response.IsNormalResponse()) {
2132 llvm::StringRef name;
2133 llvm::StringRef value;
2134 uint32_t cpu = LLDB_INVALID_CPUTYPE;
2135 uint32_t sub = 0;
2136 std::string arch_name;
2137 std::string os_name;
2138 std::string environment;
2139 std::string vendor_name;
2140 std::string triple;
2141 std::string elf_abi;
2142 uint32_t pointer_byte_size = 0;
2143 StringExtractor extractor;
2144 ByteOrder byte_order = eByteOrderInvalid;
2145 uint32_t num_keys_decoded = 0;
2147 while (response.GetNameColonValue(name, value)) {
2148 if (name == "cputype") {
2149 if (!value.getAsInteger(16, cpu))
2150 ++num_keys_decoded;
2151 } else if (name == "cpusubtype") {
2152 if (!value.getAsInteger(16, sub)) {
2153 ++num_keys_decoded;
2154 // Workaround for pre-2024 Apple debugserver, which always
2155 // returns arm64e on arm64e-capable hardware regardless of
2156 // what the process is. This can be deleted at some point
2157 // in the future.
2158 if (cpu == llvm::MachO::CPU_TYPE_ARM64 &&
2159 sub == llvm::MachO::CPU_SUBTYPE_ARM64E) {
2160 if (GetGDBServerVersion())
2161 if (m_gdb_server_version >= 1000 &&
2162 m_gdb_server_version <= 1504)
2163 sub = 0;
2164 }
2165 }
2166 } else if (name == "triple") {
2167 StringExtractor extractor(value);
2168 extractor.GetHexByteString(triple);
2169 ++num_keys_decoded;
2170 } else if (name == "ostype") {
2171 ParseOSType(value, os_name, environment);
2172 ++num_keys_decoded;
2173 } else if (name == "vendor") {
2174 vendor_name = std::string(value);
2175 ++num_keys_decoded;
2176 } else if (name == "endian") {
2177 byte_order = llvm::StringSwitch<lldb::ByteOrder>(value)
2178 .Case("little", eByteOrderLittle)
2179 .Case("big", eByteOrderBig)
2180 .Case("pdp", eByteOrderPDP)
2181 .Default(eByteOrderInvalid);
2182 if (byte_order != eByteOrderInvalid)
2183 ++num_keys_decoded;
2184 } else if (name == "ptrsize") {
2185 if (!value.getAsInteger(16, pointer_byte_size))
2186 ++num_keys_decoded;
2187 } else if (name == "pid") {
2188 if (!value.getAsInteger(16, pid))
2189 ++num_keys_decoded;
2190 } else if (name == "elf_abi") {
2191 elf_abi = std::string(value);
2192 ++num_keys_decoded;
2193 } else if (name == "main-binary-uuid") {
2195 ++num_keys_decoded;
2196 } else if (name == "main-binary-slide") {
2197 StringExtractor extractor(value);
2199 extractor.GetU64(LLDB_INVALID_ADDRESS, 16);
2202 ++num_keys_decoded;
2203 }
2204 } else if (name == "main-binary-address") {
2205 StringExtractor extractor(value);
2207 extractor.GetU64(LLDB_INVALID_ADDRESS, 16);
2210 ++num_keys_decoded;
2211 }
2212 } else if (name == "binary-addresses") {
2213 m_binary_addresses.clear();
2214 ++num_keys_decoded;
2215 for (llvm::StringRef x : llvm::split(value, ',')) {
2216 addr_t vmaddr;
2217 x.consume_front("0x");
2218 if (llvm::to_integer(x, vmaddr, 16))
2219 m_binary_addresses.push_back(vmaddr);
2220 }
2221 }
2222 }
2223 if (num_keys_decoded > 0)
2225 if (pid != LLDB_INVALID_PROCESS_ID) {
2227 m_curr_pid_run = m_curr_pid = pid;
2228 }
2229
2230 // Set the ArchSpec from the triple if we have it.
2231 if (!triple.empty()) {
2232 m_process_arch.SetTriple(triple.c_str());
2233 m_process_arch.SetFlags(elf_abi);
2234 if (pointer_byte_size) {
2235 assert(pointer_byte_size == m_process_arch.GetAddressByteSize());
2236 }
2237 } else if (cpu != LLDB_INVALID_CPUTYPE && !os_name.empty() &&
2238 !vendor_name.empty()) {
2239 llvm::Triple triple(llvm::Twine("-") + vendor_name + "-" + os_name);
2240 if (!environment.empty())
2241 triple.setEnvironmentName(environment);
2242
2243 assert(triple.getObjectFormat() != llvm::Triple::UnknownObjectFormat);
2244 assert(triple.getObjectFormat() != llvm::Triple::Wasm);
2245 assert(triple.getObjectFormat() != llvm::Triple::XCOFF);
2246 switch (triple.getObjectFormat()) {
2247 case llvm::Triple::MachO:
2249 break;
2250 case llvm::Triple::ELF:
2252 break;
2253 case llvm::Triple::COFF:
2255 break;
2256 case llvm::Triple::GOFF:
2257 case llvm::Triple::SPIRV:
2258 case llvm::Triple::Wasm:
2259 case llvm::Triple::XCOFF:
2260 case llvm::Triple::DXContainer:
2261 LLDB_LOGF(log, "error: not supported target architecture");
2262 return false;
2263 case llvm::Triple::UnknownObjectFormat:
2264 LLDB_LOGF(log, "error: failed to determine target architecture");
2265 return false;
2266 }
2267
2268 if (pointer_byte_size) {
2269 assert(pointer_byte_size == m_process_arch.GetAddressByteSize());
2270 }
2271 if (byte_order != eByteOrderInvalid) {
2272 assert(byte_order == m_process_arch.GetByteOrder());
2273 }
2274 m_process_arch.GetTriple().setVendorName(llvm::StringRef(vendor_name));
2275 m_process_arch.GetTriple().setOSName(llvm::StringRef(os_name));
2276 m_process_arch.GetTriple().setEnvironmentName(llvm::StringRef(environment));
2277 }
2278 return true;
2279 }
2280 } else {
2282 }
2283
2284 return false;
2285}
2286
2288 const ProcessInstanceInfoMatch &match_info,
2289 ProcessInstanceInfoList &process_infos) {
2290 process_infos.clear();
2291
2293 StreamString packet;
2294 packet.PutCString("qfProcessInfo");
2295 if (!match_info.MatchAllProcesses()) {
2296 packet.PutChar(':');
2297 const char *name = match_info.GetProcessInfo().GetName();
2298 bool has_name_match = false;
2299 if (name && name[0]) {
2300 has_name_match = true;
2301 NameMatch name_match_type = match_info.GetNameMatchType();
2302 switch (name_match_type) {
2303 case NameMatch::Ignore:
2304 has_name_match = false;
2305 break;
2306
2307 case NameMatch::Equals:
2308 packet.PutCString("name_match:equals;");
2309 break;
2310
2312 packet.PutCString("name_match:contains;");
2313 break;
2314
2316 packet.PutCString("name_match:starts_with;");
2317 break;
2318
2320 packet.PutCString("name_match:ends_with;");
2321 break;
2322
2324 packet.PutCString("name_match:regex;");
2325 break;
2326 }
2327 if (has_name_match) {
2328 packet.PutCString("name:");
2329 packet.PutBytesAsRawHex8(name, ::strlen(name));
2330 packet.PutChar(';');
2331 }
2332 }
2333
2334 if (match_info.GetProcessInfo().ProcessIDIsValid())
2335 packet.Printf("pid:%" PRIu64 ";",
2336 match_info.GetProcessInfo().GetProcessID());
2337 if (match_info.GetProcessInfo().ParentProcessIDIsValid())
2338 packet.Printf("parent_pid:%" PRIu64 ";",
2339 match_info.GetProcessInfo().GetParentProcessID());
2340 if (match_info.GetProcessInfo().UserIDIsValid())
2341 packet.Printf("uid:%u;", match_info.GetProcessInfo().GetUserID());
2342 if (match_info.GetProcessInfo().GroupIDIsValid())
2343 packet.Printf("gid:%u;", match_info.GetProcessInfo().GetGroupID());
2344 if (match_info.GetProcessInfo().EffectiveUserIDIsValid())
2345 packet.Printf("euid:%u;",
2346 match_info.GetProcessInfo().GetEffectiveUserID());
2347 if (match_info.GetProcessInfo().EffectiveGroupIDIsValid())
2348 packet.Printf("egid:%u;",
2349 match_info.GetProcessInfo().GetEffectiveGroupID());
2350 packet.Printf("all_users:%u;", match_info.GetMatchAllUsers() ? 1 : 0);
2351 if (match_info.GetProcessInfo().GetArchitecture().IsValid()) {
2352 const ArchSpec &match_arch =
2353 match_info.GetProcessInfo().GetArchitecture();
2354 const llvm::Triple &triple = match_arch.GetTriple();
2355 packet.PutCString("triple:");
2356 packet.PutCString(triple.getTriple());
2357 packet.PutChar(';');
2358 }
2359 }
2360 StringExtractorGDBRemote response;
2361 // Increase timeout as the first qfProcessInfo packet takes a long time on
2362 // Android. The value of 1min was arrived at empirically.
2363 ScopedTimeout timeout(*this, minutes(1));
2364 if (SendPacketAndWaitForResponse(packet.GetString(), response) ==
2366 do {
2367 ProcessInstanceInfo process_info;
2368 if (!DecodeProcessInfoResponse(response, process_info))
2369 break;
2370 process_infos.push_back(process_info);
2371 response = StringExtractorGDBRemote();
2372 } while (SendPacketAndWaitForResponse("qsProcessInfo", response) ==
2374 } else {
2376 return 0;
2377 }
2378 }
2379 return process_infos.size();
2380}
2381
2383 std::string &name) {
2385 char packet[32];
2386 const int packet_len =
2387 ::snprintf(packet, sizeof(packet), "qUserName:%i", uid);
2388 assert(packet_len < (int)sizeof(packet));
2389 UNUSED_IF_ASSERT_DISABLED(packet_len);
2390 StringExtractorGDBRemote response;
2391 if (SendPacketAndWaitForResponse(packet, response) ==
2393 if (response.IsNormalResponse()) {
2394 // Make sure we parsed the right number of characters. The response is
2395 // the hex encoded user name and should make up the entire packet. If
2396 // there are any non-hex ASCII bytes, the length won't match below..
2397 if (response.GetHexByteString(name) * 2 ==
2398 response.GetStringRef().size())
2399 return true;
2400 }
2401 } else {
2402 m_supports_qUserName = false;
2403 return false;
2404 }
2405 }
2406 return false;
2407}
2408
2410 std::string &name) {
2412 char packet[32];
2413 const int packet_len =
2414 ::snprintf(packet, sizeof(packet), "qGroupName:%i", gid);
2415 assert(packet_len < (int)sizeof(packet));
2416 UNUSED_IF_ASSERT_DISABLED(packet_len);
2417 StringExtractorGDBRemote response;
2418 if (SendPacketAndWaitForResponse(packet, response) ==
2420 if (response.IsNormalResponse()) {
2421 // Make sure we parsed the right number of characters. The response is
2422 // the hex encoded group name and should make up the entire packet. If
2423 // there are any non-hex ASCII bytes, the length won't match below..
2424 if (response.GetHexByteString(name) * 2 ==
2425 response.GetStringRef().size())
2426 return true;
2427 }
2428 } else {
2429 m_supports_qGroupName = false;
2430 return false;
2431 }
2432 }
2433 return false;
2434}
2435
2436static void MakeSpeedTestPacket(StreamString &packet, uint32_t send_size,
2437 uint32_t recv_size) {
2438 packet.Clear();
2439 packet.Printf("qSpeedTest:response_size:%i;data:", recv_size);
2440 uint32_t bytes_left = send_size;
2441 while (bytes_left > 0) {
2442 if (bytes_left >= 26) {
2443 packet.PutCString("abcdefghijklmnopqrstuvwxyz");
2444 bytes_left -= 26;
2445 } else {
2446 packet.Printf("%*.*s;", bytes_left, bytes_left,
2447 "abcdefghijklmnopqrstuvwxyz");
2448 bytes_left = 0;
2449 }
2450 }
2451}
2452
2453duration<float>
2454calculate_standard_deviation(const std::vector<duration<float>> &v) {
2455 if (v.size() == 0)
2456 return duration<float>::zero();
2457 using Dur = duration<float>;
2458 Dur sum = std::accumulate(std::begin(v), std::end(v), Dur());
2459 Dur mean = sum / v.size();
2460 float accum = 0;
2461 for (auto d : v) {
2462 float delta = (d - mean).count();
2463 accum += delta * delta;
2464 };
2465
2466 return Dur(sqrtf(accum / (v.size() - 1)));
2467}
2468
2470 uint32_t max_send,
2471 uint32_t max_recv,
2472 uint64_t recv_amount,
2473 bool json, Stream &strm) {
2474
2475 if (SendSpeedTestPacket(0, 0)) {
2476 StreamString packet;
2477 if (json)
2478 strm.Printf("{ \"packet_speeds\" : {\n \"num_packets\" : %u,\n "
2479 "\"results\" : [",
2480 num_packets);
2481 else
2482 strm.Printf("Testing sending %u packets of various sizes:\n",
2483 num_packets);
2484 strm.Flush();
2485
2486 uint32_t result_idx = 0;
2487 uint32_t send_size;
2488 std::vector<duration<float>> packet_times;
2489
2490 for (send_size = 0; send_size <= max_send;
2491 send_size ? send_size *= 2 : send_size = 4) {
2492 for (uint32_t recv_size = 0; recv_size <= max_recv;
2493 recv_size ? recv_size *= 2 : recv_size = 4) {
2494 MakeSpeedTestPacket(packet, send_size, recv_size);
2495
2496 packet_times.clear();
2497 // Test how long it takes to send 'num_packets' packets
2498 const auto start_time = steady_clock::now();
2499 for (uint32_t i = 0; i < num_packets; ++i) {
2500 const auto packet_start_time = steady_clock::now();
2501 StringExtractorGDBRemote response;
2502 SendPacketAndWaitForResponse(packet.GetString(), response);
2503 const auto packet_end_time = steady_clock::now();
2504 packet_times.push_back(packet_end_time - packet_start_time);
2505 }
2506 const auto end_time = steady_clock::now();
2507 const auto total_time = end_time - start_time;
2508
2509 float packets_per_second =
2510 ((float)num_packets) / duration<float>(total_time).count();
2511 auto average_per_packet = num_packets > 0 ? total_time / num_packets
2512 : duration<float>::zero();
2513 const duration<float> standard_deviation =
2514 calculate_standard_deviation(packet_times);
2515 if (json) {
2516 strm.Format("{0}\n {{\"send_size\" : {1,6}, \"recv_size\" : "
2517 "{2,6}, \"total_time_nsec\" : {3,12:ns-}, "
2518 "\"standard_deviation_nsec\" : {4,9:ns-f0}}",
2519 result_idx > 0 ? "," : "", send_size, recv_size,
2520 total_time, standard_deviation);
2521 ++result_idx;
2522 } else {
2523 strm.Format("qSpeedTest(send={0,7}, recv={1,7}) in {2:s+f9} for "
2524 "{3,9:f2} packets/s ({4,10:ms+f6} per packet) with "
2525 "standard deviation of {5,10:ms+f6}\n",
2526 send_size, recv_size, duration<float>(total_time),
2527 packets_per_second, duration<float>(average_per_packet),
2528 standard_deviation);
2529 }
2530 strm.Flush();
2531 }
2532 }
2533
2534 const float k_recv_amount_mb = (float)recv_amount / (1024.0f * 1024.0f);
2535 if (json)
2536 strm.Printf("\n ]\n },\n \"download_speed\" : {\n \"byte_size\" "
2537 ": %" PRIu64 ",\n \"results\" : [",
2538 recv_amount);
2539 else
2540 strm.Printf("Testing receiving %2.1fMB of data using varying receive "
2541 "packet sizes:\n",
2542 k_recv_amount_mb);
2543 strm.Flush();
2544 send_size = 0;
2545 result_idx = 0;
2546 for (uint32_t recv_size = 32; recv_size <= max_recv; recv_size *= 2) {
2547 MakeSpeedTestPacket(packet, send_size, recv_size);
2548
2549 // If we have a receive size, test how long it takes to receive 4MB of
2550 // data
2551 if (recv_size > 0) {
2552 const auto start_time = steady_clock::now();
2553 uint32_t bytes_read = 0;
2554 uint32_t packet_count = 0;
2555 while (bytes_read < recv_amount) {
2556 StringExtractorGDBRemote response;
2557 SendPacketAndWaitForResponse(packet.GetString(), response);
2558 bytes_read += recv_size;
2559 ++packet_count;
2560 }
2561 const auto end_time = steady_clock::now();
2562 const auto total_time = end_time - start_time;
2563 float mb_second = ((float)recv_amount) /
2564 duration<float>(total_time).count() /
2565 (1024.0 * 1024.0);
2566 float packets_per_second =
2567 ((float)packet_count) / duration<float>(total_time).count();
2568 const auto average_per_packet = packet_count > 0
2569 ? total_time / packet_count
2570 : duration<float>::zero();
2571
2572 if (json) {
2573 strm.Format("{0}\n {{\"send_size\" : {1,6}, \"recv_size\" : "
2574 "{2,6}, \"total_time_nsec\" : {3,12:ns-}}",
2575 result_idx > 0 ? "," : "", send_size, recv_size,
2576 total_time);
2577 ++result_idx;
2578 } else {
2579 strm.Format("qSpeedTest(send={0,7}, recv={1,7}) {2,6} packets needed "
2580 "to receive {3:f1}MB in {4:s+f9} for {5} MB/sec for "
2581 "{6,9:f2} packets/sec ({7,10:ms+f6} per packet)\n",
2582 send_size, recv_size, packet_count, k_recv_amount_mb,
2583 duration<float>(total_time), mb_second,
2584 packets_per_second, duration<float>(average_per_packet));
2585 }
2586 strm.Flush();
2587 }
2588 }
2589 if (json)
2590 strm.Printf("\n ]\n }\n}\n");
2591 else
2592 strm.EOL();
2593 }
2594}
2595
2597 uint32_t recv_size) {
2598 StreamString packet;
2599 packet.Printf("qSpeedTest:response_size:%i;data:", recv_size);
2600 uint32_t bytes_left = send_size;
2601 while (bytes_left > 0) {
2602 if (bytes_left >= 26) {
2603 packet.PutCString("abcdefghijklmnopqrstuvwxyz");
2604 bytes_left -= 26;
2605 } else {
2606 packet.Printf("%*.*s;", bytes_left, bytes_left,
2607 "abcdefghijklmnopqrstuvwxyz");
2608 bytes_left = 0;
2609 }
2610 }
2611
2612 StringExtractorGDBRemote response;
2613 return SendPacketAndWaitForResponse(packet.GetString(), response) ==
2615}
2616
2618 const char *remote_accept_hostname, lldb::pid_t &pid, uint16_t &port,
2619 std::string &socket_name) {
2621 port = 0;
2622 socket_name.clear();
2623
2624 StringExtractorGDBRemote response;
2625 StreamString stream;
2626 stream.PutCString("qLaunchGDBServer;");
2627 std::string hostname;
2628 if (remote_accept_hostname && remote_accept_hostname[0])
2629 hostname = remote_accept_hostname;
2630 else {
2631 if (HostInfo::GetHostname(hostname)) {
2632 // Make the GDB server we launch only accept connections from this host
2633 stream.Printf("host:%s;", hostname.c_str());
2634 } else {
2635 // Make the GDB server we launch accept connections from any host since
2636 // we can't figure out the hostname
2637 stream.Printf("host:*;");
2638 }
2639 }
2640 // give the process a few seconds to startup
2641 ScopedTimeout timeout(*this, seconds(10));
2642
2643 if (SendPacketAndWaitForResponse(stream.GetString(), response) ==
2645 if (response.IsErrorResponse())
2646 return false;
2647
2648 llvm::StringRef name;
2649 llvm::StringRef value;
2650 while (response.GetNameColonValue(name, value)) {
2651 if (name == "port")
2652 value.getAsInteger(0, port);
2653 else if (name == "pid")
2654 value.getAsInteger(0, pid);
2655 else if (name.compare("socket_name") == 0) {
2656 StringExtractor extractor(value);
2657 extractor.GetHexByteString(socket_name);
2658 }
2659 }
2660 return true;
2661 }
2662 return false;
2663}
2664
2666 std::vector<std::pair<uint16_t, std::string>> &connection_urls) {
2667 connection_urls.clear();
2668
2669 StringExtractorGDBRemote response;
2670 if (SendPacketAndWaitForResponse("qQueryGDBServer", response) !=
2672 return 0;
2673
2676 if (!data)
2677 return 0;
2678
2679 StructuredData::Array *array = data->GetAsArray();
2680 if (!array)
2681 return 0;
2682
2683 for (size_t i = 0, count = array->GetSize(); i < count; ++i) {
2684 std::optional<StructuredData::Dictionary *> maybe_element =
2686 if (!maybe_element)
2687 continue;
2688
2689 StructuredData::Dictionary *element = *maybe_element;
2690 uint16_t port = 0;
2691 if (StructuredData::ObjectSP port_osp =
2692 element->GetValueForKey(llvm::StringRef("port")))
2693 port = port_osp->GetUnsignedIntegerValue(0);
2694
2695 std::string socket_name;
2696 if (StructuredData::ObjectSP socket_name_osp =
2697 element->GetValueForKey(llvm::StringRef("socket_name")))
2698 socket_name = std::string(socket_name_osp->GetStringValue());
2699
2700 if (port != 0 || !socket_name.empty())
2701 connection_urls.emplace_back(port, socket_name);
2702 }
2703 return connection_urls.size();
2704}
2705
2707 StreamString stream;
2708 stream.Printf("qKillSpawnedProcess:%" PRId64, pid);
2709
2710 StringExtractorGDBRemote response;
2711 if (SendPacketAndWaitForResponse(stream.GetString(), response) ==
2713 if (response.IsOKResponse())
2714 return true;
2715 }
2716 return false;
2717}
2718
2720 uint64_t tid, uint64_t pid, char op) {
2722 packet.PutChar('H');
2723 packet.PutChar(op);
2724
2725 if (pid != LLDB_INVALID_PROCESS_ID)
2726 packet.Printf("p%" PRIx64 ".", pid);
2727
2728 if (tid == UINT64_MAX)
2729 packet.PutCString("-1");
2730 else
2731 packet.Printf("%" PRIx64, tid);
2732
2733 StringExtractorGDBRemote response;
2734 if (SendPacketAndWaitForResponse(packet.GetString(), response) ==
2736 if (response.IsOKResponse())
2737 return {{pid, tid}};
2738
2739 /*
2740 * Connected bare-iron target (like YAMON gdb-stub) may not have support for
2741 * Hg packet.
2742 * The reply from '?' packet could be as simple as 'S05'. There is no packet
2743 * which can
2744 * give us pid and/or tid. Assume pid=tid=1 in such cases.
2745 */
2746 if (response.IsUnsupportedResponse() && IsConnected())
2747 return {{1, 1}};
2748 }
2749 return std::nullopt;
2750}
2751
2753 uint64_t pid) {
2754 if (m_curr_tid == tid &&
2755 (m_curr_pid == pid || LLDB_INVALID_PROCESS_ID == pid))
2756 return true;
2757
2758 std::optional<PidTid> ret = SendSetCurrentThreadPacket(tid, pid, 'g');
2759 if (ret) {
2760 if (ret->pid != LLDB_INVALID_PROCESS_ID)
2761 m_curr_pid = ret->pid;
2762 m_curr_tid = ret->tid;
2763 }
2764 return ret.has_value();
2765}
2766
2768 uint64_t pid) {
2769 if (m_curr_tid_run == tid &&
2770 (m_curr_pid_run == pid || LLDB_INVALID_PROCESS_ID == pid))
2771 return true;
2772
2773 std::optional<PidTid> ret = SendSetCurrentThreadPacket(tid, pid, 'c');
2774 if (ret) {
2775 if (ret->pid != LLDB_INVALID_PROCESS_ID)
2776 m_curr_pid_run = ret->pid;
2777 m_curr_tid_run = ret->tid;
2778 }
2779 return ret.has_value();
2780}
2781
2783 StringExtractorGDBRemote &response) {
2785 return response.IsNormalResponse();
2786 return false;
2787}
2788
2790 lldb::tid_t tid, StringExtractorGDBRemote &response) {
2792 char packet[256];
2793 int packet_len =
2794 ::snprintf(packet, sizeof(packet), "qThreadStopInfo%" PRIx64, tid);
2795 assert(packet_len < (int)sizeof(packet));
2796 UNUSED_IF_ASSERT_DISABLED(packet_len);
2797 if (SendPacketAndWaitForResponse(packet, response) ==
2799 if (response.IsUnsupportedResponse())
2801 else if (response.IsNormalResponse())
2802 return true;
2803 else
2804 return false;
2805 } else {
2807 }
2808 }
2809 return false;
2810}
2811
2813 GDBStoppointType type, bool insert, addr_t addr, uint32_t length,
2814 std::chrono::seconds timeout) {
2816 LLDB_LOGF(log, "GDBRemoteCommunicationClient::%s() %s at addr = 0x%" PRIx64,
2817 __FUNCTION__, insert ? "add" : "remove", addr);
2818
2819 // Check if the stub is known not to support this breakpoint type
2820 if (!SupportsGDBStoppointPacket(type))
2821 return UINT8_MAX;
2822 // Construct the breakpoint packet
2823 char packet[64];
2824 const int packet_len =
2825 ::snprintf(packet, sizeof(packet), "%c%i,%" PRIx64 ",%x",
2826 insert ? 'Z' : 'z', type, addr, length);
2827 // Check we haven't overwritten the end of the packet buffer
2828 assert(packet_len + 1 < (int)sizeof(packet));
2829 UNUSED_IF_ASSERT_DISABLED(packet_len);
2830 StringExtractorGDBRemote response;
2831 // Make sure the response is either "OK", "EXX" where XX are two hex digits,
2832 // or "" (unsupported)
2834 // Try to send the breakpoint packet, and check that it was correctly sent
2835 if (SendPacketAndWaitForResponse(packet, response, timeout) ==
2837 // Receive and OK packet when the breakpoint successfully placed
2838 if (response.IsOKResponse())
2839 return 0;
2840
2841 // Status while setting breakpoint, send back specific error
2842 if (response.IsErrorResponse())
2843 return response.GetError();
2844
2845 // Empty packet informs us that breakpoint is not supported
2846 if (response.IsUnsupportedResponse()) {
2847 // Disable this breakpoint type since it is unsupported
2848 switch (type) {
2850 m_supports_z0 = false;
2851 break;
2853 m_supports_z1 = false;
2854 break;
2855 case eWatchpointWrite:
2856 m_supports_z2 = false;
2857 break;
2858 case eWatchpointRead:
2859 m_supports_z3 = false;
2860 break;
2862 m_supports_z4 = false;
2863 break;
2864 case eStoppointInvalid:
2865 return UINT8_MAX;
2866 }
2867 }
2868 }
2869 // Signal generic failure
2870 return UINT8_MAX;
2871}
2872
2873std::vector<std::pair<lldb::pid_t, lldb::tid_t>>
2875 bool &sequence_mutex_unavailable) {
2876 std::vector<std::pair<lldb::pid_t, lldb::tid_t>> ids;
2877
2878 Lock lock(*this);
2879 if (lock) {
2880 sequence_mutex_unavailable = false;
2881 StringExtractorGDBRemote response;
2882
2883 PacketResult packet_result;
2884 for (packet_result =
2885 SendPacketAndWaitForResponseNoLock("qfThreadInfo", response);
2886 packet_result == PacketResult::Success && response.IsNormalResponse();
2887 packet_result =
2888 SendPacketAndWaitForResponseNoLock("qsThreadInfo", response)) {
2889 char ch = response.GetChar();
2890 if (ch == 'l')
2891 break;
2892 if (ch == 'm') {
2893 do {
2894 auto pid_tid = response.GetPidTid(LLDB_INVALID_PROCESS_ID);
2895 // If we get an invalid response, break out of the loop.
2896 // If there are valid tids, they have been added to ids.
2897 // If there are no valid tids, we'll fall through to the
2898 // bare-iron target handling below.
2899 if (!pid_tid)
2900 break;
2901
2902 ids.push_back(*pid_tid);
2903 ch = response.GetChar(); // Skip the command separator
2904 } while (ch == ','); // Make sure we got a comma separator
2905 }
2906 }
2907
2908 /*
2909 * Connected bare-iron target (like YAMON gdb-stub) may not have support for
2910 * qProcessInfo, qC and qfThreadInfo packets. The reply from '?' packet
2911 * could
2912 * be as simple as 'S05'. There is no packet which can give us pid and/or
2913 * tid.
2914 * Assume pid=tid=1 in such cases.
2915 */
2916 if ((response.IsUnsupportedResponse() || response.IsNormalResponse()) &&
2917 ids.size() == 0 && IsConnected()) {
2918 ids.emplace_back(1, 1);
2919 }
2920 } else {
2922 LLDB_LOG(log, "error: failed to get packet sequence mutex, not sending "
2923 "packet 'qfThreadInfo'");
2924 sequence_mutex_unavailable = true;
2925 }
2926
2927 return ids;
2928}
2929
2931 std::vector<lldb::tid_t> &thread_ids, bool &sequence_mutex_unavailable) {
2933 thread_ids.clear();
2934
2935 auto ids = GetCurrentProcessAndThreadIDs(sequence_mutex_unavailable);
2936 if (ids.empty() || sequence_mutex_unavailable)
2937 return 0;
2938
2939 for (auto id : ids) {
2940 // skip threads that do not belong to the current process
2941 if (id.first != LLDB_INVALID_PROCESS_ID && id.first != pid)
2942 continue;
2943 if (id.second != LLDB_INVALID_THREAD_ID &&
2945 thread_ids.push_back(id.second);
2946 }
2947
2948 return thread_ids.size();
2949}
2950
2952 StringExtractorGDBRemote response;
2953 if (SendPacketAndWaitForResponse("qShlibInfoAddr", response) !=
2955 !response.IsNormalResponse())
2956 return LLDB_INVALID_ADDRESS;
2957 return response.GetHexMaxU64(false, LLDB_INVALID_ADDRESS);
2958}
2959
2961 llvm::StringRef command,
2962 const FileSpec &
2963 working_dir, // Pass empty FileSpec to use the current working directory
2964 int *status_ptr, // Pass NULL if you don't want the process exit status
2965 int *signo_ptr, // Pass NULL if you don't want the signal that caused the
2966 // process to exit
2967 std::string
2968 *command_output, // Pass NULL if you don't want the command output
2969 const Timeout<std::micro> &timeout) {
2971 stream.PutCString("qPlatform_shell:");
2972 stream.PutBytesAsRawHex8(command.data(), command.size());
2973 stream.PutChar(',');
2974 uint32_t timeout_sec = UINT32_MAX;
2975 if (timeout) {
2976 // TODO: Use chrono version of std::ceil once c++17 is available.
2977 timeout_sec = std::ceil(std::chrono::duration<double>(*timeout).count());
2978 }
2979 stream.PutHex32(timeout_sec);
2980 if (working_dir) {
2981 std::string path{working_dir.GetPath(false)};
2982 stream.PutChar(',');
2983 stream.PutStringAsRawHex8(path);
2984 }
2985 StringExtractorGDBRemote response;
2986 if (SendPacketAndWaitForResponse(stream.GetString(), response) ==
2988 if (response.GetChar() != 'F')
2989 return Status::FromErrorString("malformed reply");
2990 if (response.GetChar() != ',')
2991 return Status::FromErrorString("malformed reply");
2992 uint32_t exitcode = response.GetHexMaxU32(false, UINT32_MAX);
2993 if (exitcode == UINT32_MAX)
2994 return Status::FromErrorString("unable to run remote process");
2995 else if (status_ptr)
2996 *status_ptr = exitcode;
2997 if (response.GetChar() != ',')
2998 return Status::FromErrorString("malformed reply");
2999 uint32_t signo = response.GetHexMaxU32(false, UINT32_MAX);
3000 if (signo_ptr)
3001 *signo_ptr = signo;
3002 if (response.GetChar() != ',')
3003 return Status::FromErrorString("malformed reply");
3004 std::string output;
3005 response.GetEscapedBinaryData(output);
3006 if (command_output)
3007 command_output->assign(output);
3008 return Status();
3009 }
3010 return Status::FromErrorString("unable to send packet");
3011}
3012
3014 uint32_t file_permissions) {
3015 std::string path{file_spec.GetPath(false)};
3017 stream.PutCString("qPlatform_mkdir:");
3018 stream.PutHex32(file_permissions);
3019 stream.PutChar(',');
3020 stream.PutStringAsRawHex8(path);
3021 llvm::StringRef packet = stream.GetString();
3022 StringExtractorGDBRemote response;
3023
3024 if (SendPacketAndWaitForResponse(packet, response) != PacketResult::Success)
3025 return Status::FromErrorStringWithFormat("failed to send '%s' packet",
3026 packet.str().c_str());
3027
3028 if (response.GetChar() != 'F')
3029 return Status::FromErrorStringWithFormat("invalid response to '%s' packet",
3030 packet.str().c_str());
3031
3032 return Status(response.GetHexMaxU32(false, UINT32_MAX), eErrorTypePOSIX);
3033}
3034
3035Status
3037 uint32_t file_permissions) {
3038 std::string path{file_spec.GetPath(false)};
3040 stream.PutCString("qPlatform_chmod:");
3041 stream.PutHex32(file_permissions);
3042 stream.PutChar(',');
3043 stream.PutStringAsRawHex8(path);
3044 llvm::StringRef packet = stream.GetString();
3045 StringExtractorGDBRemote response;
3046
3047 if (SendPacketAndWaitForResponse(packet, response) != PacketResult::Success)
3048 return Status::FromErrorStringWithFormat("failed to send '%s' packet",
3049 stream.GetData());
3050
3051 if (response.GetChar() != 'F')
3052 return Status::FromErrorStringWithFormat("invalid response to '%s' packet",
3053 stream.GetData());
3054
3055 return Status(response.GetHexMaxU32(false, UINT32_MAX), eErrorTypePOSIX);
3056}
3057
3058static int gdb_errno_to_system(int err) {
3059 switch (err) {
3060#define HANDLE_ERRNO(name, value) \
3061 case GDB_##name: \
3062 return name;
3063#include "Plugins/Process/gdb-remote/GDBRemoteErrno.def"
3064 default:
3065 return -1;
3066 }
3067}
3068
3070 uint64_t fail_result, Status &error) {
3071 response.SetFilePos(0);
3072 if (response.GetChar() != 'F')
3073 return fail_result;
3074 int32_t result = response.GetS32(-2, 16);
3075 if (result == -2)
3076 return fail_result;
3077 if (response.GetChar() == ',') {
3078 int result_errno = gdb_errno_to_system(response.GetS32(-1, 16));
3079 if (result_errno != -1)
3080 error = Status(result_errno, eErrorTypePOSIX);
3081 else
3083 } else
3084 error.Clear();
3085 return result;
3086}
3089 File::OpenOptions flags, mode_t mode,
3090 Status &error) {
3091 std::string path(file_spec.GetPath(false));
3093 stream.PutCString("vFile:open:");
3094 if (path.empty())
3095 return UINT64_MAX;
3096 stream.PutStringAsRawHex8(path);
3097 stream.PutChar(',');
3098 stream.PutHex32(flags);
3099 stream.PutChar(',');
3100 stream.PutHex32(mode);
3101 StringExtractorGDBRemote response;
3102 if (SendPacketAndWaitForResponse(stream.GetString(), response) ==
3104 return ParseHostIOPacketResponse(response, UINT64_MAX, error);
3105 }
3106 return UINT64_MAX;
3107}
3108
3110 Status &error) {
3112 stream.Printf("vFile:close:%x", (int)fd);
3113 StringExtractorGDBRemote response;
3114 if (SendPacketAndWaitForResponse(stream.GetString(), response) ==
3116 return ParseHostIOPacketResponse(response, -1, error) == 0;
3117 }
3118 return false;
3119}
3120
3121std::optional<GDBRemoteFStatData>
3124 stream.Printf("vFile:fstat:%" PRIx64, fd);
3125 StringExtractorGDBRemote response;
3126 if (SendPacketAndWaitForResponse(stream.GetString(), response) ==
3128 if (response.GetChar() != 'F')
3129 return std::nullopt;
3130 int64_t size = response.GetS64(-1, 16);
3131 if (size > 0 && response.GetChar() == ';') {
3132 std::string buffer;
3133 if (response.GetEscapedBinaryData(buffer)) {
3135 if (buffer.size() != sizeof(out))
3136 return std::nullopt;
3137 memcpy(&out, buffer.data(), sizeof(out));
3138 return out;
3139 }
3140 }
3141 }
3142 return std::nullopt;
3143}
3144
3145std::optional<GDBRemoteFStatData>
3147 Status error;
3149 if (fd == UINT64_MAX)
3150 return std::nullopt;
3151 std::optional<GDBRemoteFStatData> st = FStat(fd);
3152 CloseFile(fd, error);
3153 return st;
3154}
3155
3156// Extension of host I/O packets to get the file size.
3158 const lldb_private::FileSpec &file_spec) {
3160 std::string path(file_spec.GetPath(false));
3162 stream.PutCString("vFile:size:");
3163 stream.PutStringAsRawHex8(path);
3164 StringExtractorGDBRemote response;
3165 if (SendPacketAndWaitForResponse(stream.GetString(), response) !=
3167 return UINT64_MAX;
3168
3169 if (!response.IsUnsupportedResponse()) {
3170 if (response.GetChar() != 'F')
3171 return UINT64_MAX;
3172 uint32_t retcode = response.GetHexMaxU64(false, UINT64_MAX);
3173 return retcode;
3174 }
3175 m_supports_vFileSize = false;
3176 }
3177
3178 // Fallback to fstat.
3179 std::optional<GDBRemoteFStatData> st = Stat(file_spec);
3180 return st ? st->gdb_st_size : UINT64_MAX;
3181}
3182
3184 CompletionRequest &request, bool only_dir) {
3186 stream.PutCString("qPathComplete:");
3187 stream.PutHex32(only_dir ? 1 : 0);
3188 stream.PutChar(',');
3190 StringExtractorGDBRemote response;
3191 if (SendPacketAndWaitForResponse(stream.GetString(), response) ==
3193 StreamString strm;
3194 char ch = response.GetChar();
3195 if (ch != 'M')
3196 return;
3197 while (response.Peek()) {
3198 strm.Clear();
3199 while ((ch = response.GetHexU8(0, false)) != '\0')
3200 strm.PutChar(ch);
3201 request.AddCompletion(strm.GetString());
3202 if (response.GetChar() != ',')
3203 break;
3204 }
3205 }
3206}
3207
3208Status
3210 uint32_t &file_permissions) {
3212 std::string path{file_spec.GetPath(false)};
3213 Status error;
3215 stream.PutCString("vFile:mode:");
3216 stream.PutStringAsRawHex8(path);
3217 StringExtractorGDBRemote response;
3218 if (SendPacketAndWaitForResponse(stream.GetString(), response) !=
3220 error = Status::FromErrorStringWithFormat("failed to send '%s' packet",
3221 stream.GetData());
3222 return error;
3223 }
3224 if (!response.IsUnsupportedResponse()) {
3225 if (response.GetChar() != 'F') {
3227 "invalid response to '%s' packet", stream.GetData());
3228 } else {
3229 const uint32_t mode = response.GetS32(-1, 16);
3230 if (static_cast<int32_t>(mode) == -1) {
3231 if (response.GetChar() == ',') {
3232 int response_errno = gdb_errno_to_system(response.GetS32(-1, 16));
3233 if (response_errno > 0)
3234 error = Status(response_errno, lldb::eErrorTypePOSIX);
3235 else
3236 error = Status::FromErrorString("unknown error");
3237 } else
3238 error = Status::FromErrorString("unknown error");
3239 } else {
3240 file_permissions = mode & (S_IRWXU | S_IRWXG | S_IRWXO);
3241 }
3242 }
3243 return error;
3244 } else { // response.IsUnsupportedResponse()
3245 m_supports_vFileMode = false;
3246 }
3247 }
3248
3249 // Fallback to fstat.
3250 if (std::optional<GDBRemoteFStatData> st = Stat(file_spec)) {
3251 file_permissions = st->gdb_st_mode & (S_IRWXU | S_IRWXG | S_IRWXO);
3252 return Status();
3253 }
3254 return Status::FromErrorString("fstat failed");
3255}
3256
3258 uint64_t offset, void *dst,
3259 uint64_t dst_len,
3260 Status &error) {
3262 stream.Printf("vFile:pread:%x,%" PRIx64 ",%" PRIx64, (int)fd, dst_len,
3263 offset);
3264 StringExtractorGDBRemote response;
3265 if (SendPacketAndWaitForResponse(stream.GetString(), response) ==
3267 if (response.GetChar() != 'F')
3268 return 0;
3269 int64_t retcode = response.GetS64(-1, 16);
3270 if (retcode == -1) {
3271 error = Status::FromErrorString("unknown error");
3272 if (response.GetChar() == ',') {
3273 int response_errno = gdb_errno_to_system(response.GetS32(-1, 16));
3274 if (response_errno > 0)
3275 error = Status(response_errno, lldb::eErrorTypePOSIX);
3276 }
3277 return -1;
3278 }
3279 const char next = (response.Peek() ? *response.Peek() : 0);
3280 if (next == ',')
3281 return 0;
3282 if (next == ';') {
3283 response.GetChar(); // skip the semicolon
3284 std::string buffer;
3285 if (response.GetEscapedBinaryData(buffer)) {
3286 const uint64_t data_to_write =
3287 std::min<uint64_t>(dst_len, buffer.size());
3288 if (data_to_write > 0)
3289 memcpy(dst, &buffer[0], data_to_write);
3290 return data_to_write;
3291 }
3292 }
3293 }
3294 return 0;
3295}
3296
3298 uint64_t offset,
3299 const void *src,
3300 uint64_t src_len,
3301 Status &error) {
3303 stream.Printf("vFile:pwrite:%x,%" PRIx64 ",", (int)fd, offset);
3304 stream.PutEscapedBytes(src, src_len);
3305 StringExtractorGDBRemote response;
3306 if (SendPacketAndWaitForResponse(stream.GetString(), response) ==
3308 if (response.GetChar() != 'F') {
3309 error = Status::FromErrorStringWithFormat("write file failed");
3310 return 0;
3311 }
3312 int64_t bytes_written = response.GetS64(-1, 16);
3313 if (bytes_written == -1) {
3314 error = Status::FromErrorString("unknown error");
3315 if (response.GetChar() == ',') {
3316 int response_errno = gdb_errno_to_system(response.GetS32(-1, 16));
3317 if (response_errno > 0)
3318 error = Status(response_errno, lldb::eErrorTypePOSIX);
3319 }
3320 return -1;
3321 }
3322 return bytes_written;
3323 } else {
3324 error = Status::FromErrorString("failed to send vFile:pwrite packet");
3325 }
3326 return 0;
3327}
3328
3330 const FileSpec &dst) {
3331 std::string src_path{src.GetPath(false)}, dst_path{dst.GetPath(false)};
3332 Status error;
3334 stream.PutCString("vFile:symlink:");
3335 // the unix symlink() command reverses its parameters where the dst if first,
3336 // so we follow suit here
3337 stream.PutStringAsRawHex8(dst_path);
3338 stream.PutChar(',');
3339 stream.PutStringAsRawHex8(src_path);
3340 StringExtractorGDBRemote response;
3341 if (SendPacketAndWaitForResponse(stream.GetString(), response) ==
3343 if (response.GetChar() == 'F') {
3344 uint32_t result = response.GetHexMaxU32(false, UINT32_MAX);
3345 if (result != 0) {
3346 error = Status::FromErrorString("unknown error");
3347 if (response.GetChar() == ',') {
3348 int response_errno = gdb_errno_to_system(response.GetS32(-1, 16));
3349 if (response_errno > 0)
3350 error = Status(response_errno, lldb::eErrorTypePOSIX);
3351 }
3352 }
3353 } else {
3354 // Should have returned with 'F<result>[,<errno>]'
3355 error = Status::FromErrorStringWithFormat("symlink failed");
3356 }
3357 } else {
3358 error = Status::FromErrorString("failed to send vFile:symlink packet");
3359 }
3360 return error;
3361}
3362
3364 std::string path{file_spec.GetPath(false)};
3365 Status error;
3367 stream.PutCString("vFile:unlink:");
3368 // the unix symlink() command reverses its parameters where the dst if first,
3369 // so we follow suit here
3370 stream.PutStringAsRawHex8(path);
3371 StringExtractorGDBRemote response;
3372 if (SendPacketAndWaitForResponse(stream.GetString(), response) ==
3374 if (response.GetChar() == 'F') {
3375 uint32_t result = response.GetHexMaxU32(false, UINT32_MAX);
3376 if (result != 0) {
3377 error = Status::FromErrorString("unknown error");
3378 if (response.GetChar() == ',') {
3379 int response_errno = gdb_errno_to_system(response.GetS32(-1, 16));
3380 if (response_errno > 0)
3381 error = Status(response_errno, lldb::eErrorTypePOSIX);
3382 }
3383 }
3384 } else {
3385 // Should have returned with 'F<result>[,<errno>]'
3386 error = Status::FromErrorStringWithFormat("unlink failed");
3387 }
3388 } else {
3389 error = Status::FromErrorString("failed to send vFile:unlink packet");
3390 }
3391 return error;
3392}
3393
3394// Extension of host I/O packets to get whether a file exists.
3396 const lldb_private::FileSpec &file_spec) {
3398 std::string path(file_spec.GetPath(false));
3400 stream.PutCString("vFile:exists:");
3401 stream.PutStringAsRawHex8(path);
3402 StringExtractorGDBRemote response;
3403 if (SendPacketAndWaitForResponse(stream.GetString(), response) !=
3405 return false;
3406 if (!response.IsUnsupportedResponse()) {
3407 if (response.GetChar() != 'F')
3408 return false;
3409 if (response.GetChar() != ',')
3410 return false;
3411 bool retcode = (response.GetChar() != '0');
3412 return retcode;
3413 } else
3414 m_supports_vFileExists = false;
3415 }
3416
3417 // Fallback to open.
3418 Status error;
3420 if (fd == UINT64_MAX)
3421 return false;
3422 CloseFile(fd, error);
3423 return true;
3424}
3425
3426llvm::ErrorOr<llvm::MD5::MD5Result> GDBRemoteCommunicationClient::CalculateMD5(
3427 const lldb_private::FileSpec &file_spec) {
3428 std::string path(file_spec.GetPath(false));
3430 stream.PutCString("vFile:MD5:");
3431 stream.PutStringAsRawHex8(path);
3432 StringExtractorGDBRemote response;
3433 if (SendPacketAndWaitForResponse(stream.GetString(), response) ==
3435 if (response.GetChar() != 'F')
3436 return std::make_error_code(std::errc::illegal_byte_sequence);
3437 if (response.GetChar() != ',')
3438 return std::make_error_code(std::errc::illegal_byte_sequence);
3439 if (response.Peek() && *response.Peek() == 'x')
3440 return std::make_error_code(std::errc::no_such_file_or_directory);
3441
3442 // GDBRemoteCommunicationServerCommon::Handle_vFile_MD5 concatenates low and
3443 // high hex strings. We can't use response.GetHexMaxU64 because that can't
3444 // handle the concatenated hex string. What would happen is parsing the low
3445 // would consume the whole response packet which would give incorrect
3446 // results. Instead, we get the byte string for each low and high hex
3447 // separately, and parse them.
3448 //
3449 // An alternate way to handle this is to change the server to put a
3450 // delimiter between the low/high parts, and change the client to parse the
3451 // delimiter. However, we choose not to do this so existing lldb-servers
3452 // don't have to be patched
3453
3454 // The checksum is 128 bits encoded as hex
3455 // This means low/high are halves of 64 bits each, in otherwords, 8 bytes.
3456 // Each byte takes 2 hex characters in the response.
3457 const size_t MD5_HALF_LENGTH = sizeof(uint64_t) * 2;
3458
3459 // Get low part
3460 auto part =
3461 response.GetStringRef().substr(response.GetFilePos(), MD5_HALF_LENGTH);
3462 if (part.size() != MD5_HALF_LENGTH)
3463 return std::make_error_code(std::errc::illegal_byte_sequence);
3464 response.SetFilePos(response.GetFilePos() + part.size());
3465
3466 uint64_t low;
3467 if (part.getAsInteger(/*radix=*/16, low))
3468 return std::make_error_code(std::errc::illegal_byte_sequence);
3469
3470 // Get high part
3471 part =
3472 response.GetStringRef().substr(response.GetFilePos(), MD5_HALF_LENGTH);
3473 if (part.size() != MD5_HALF_LENGTH)
3474 return std::make_error_code(std::errc::illegal_byte_sequence);
3475 response.SetFilePos(response.GetFilePos() + part.size());
3476
3477 uint64_t high;
3478 if (part.getAsInteger(/*radix=*/16, high))
3479 return std::make_error_code(std::errc::illegal_byte_sequence);
3480
3481 llvm::MD5::MD5Result result;
3482 llvm::support::endian::write<uint64_t, llvm::endianness::little>(
3483 result.data(), low);
3484 llvm::support::endian::write<uint64_t, llvm::endianness::little>(
3485 result.data() + 8, high);
3486
3487 return result;
3488 }
3489 return std::make_error_code(std::errc::operation_canceled);
3490}
3491
3493 // Some targets have issues with g/G packets and we need to avoid using them
3495 if (process) {
3497 const ArchSpec &arch = process->GetTarget().GetArchitecture();
3498 if (arch.IsValid() &&
3499 arch.GetTriple().getVendor() == llvm::Triple::Apple &&
3500 arch.GetTriple().getOS() == llvm::Triple::IOS &&
3501 (arch.GetTriple().getArch() == llvm::Triple::aarch64 ||
3502 arch.GetTriple().getArch() == llvm::Triple::aarch64_32)) {
3504 uint32_t gdb_server_version = GetGDBServerProgramVersion();
3505 if (gdb_server_version != 0) {
3506 const char *gdb_server_name = GetGDBServerProgramName();
3507 if (gdb_server_name && strcmp(gdb_server_name, "debugserver") == 0) {
3508 if (gdb_server_version >= 310)
3510 }
3511 }
3512 }
3513 }
3514 }
3516}
3517
3519 uint32_t reg) {
3520 StreamString payload;
3521 payload.Printf("p%x", reg);
3522 StringExtractorGDBRemote response;
3524 tid, std::move(payload), response) != PacketResult::Success ||
3525 !response.IsNormalResponse())
3526 return nullptr;
3527
3528 WritableDataBufferSP buffer_sp(
3529 new DataBufferHeap(response.GetStringRef().size() / 2, 0));
3530 response.GetHexBytes(buffer_sp->GetData(), '\xcc');
3531 return buffer_sp;
3532}
3533
3535 StreamString payload;
3536 payload.PutChar('g');
3537 StringExtractorGDBRemote response;
3539 tid, std::move(payload), response) != PacketResult::Success ||
3540 !response.IsNormalResponse())
3541 return nullptr;
3542
3543 WritableDataBufferSP buffer_sp(
3544 new DataBufferHeap(response.GetStringRef().size() / 2, 0));
3545 response.GetHexBytes(buffer_sp->GetData(), '\xcc');
3546 return buffer_sp;
3547}
3548
3550 uint32_t reg_num,
3551 llvm::ArrayRef<uint8_t> data) {
3552 StreamString payload;
3553 payload.Printf("P%x=", reg_num);
3554 payload.PutBytesAsRawHex8(data.data(), data.size(),
3557 StringExtractorGDBRemote response;
3559 tid, std::move(payload), response) == PacketResult::Success &&
3560 response.IsOKResponse();
3561}
3562
3564 lldb::tid_t tid, llvm::ArrayRef<uint8_t> data) {
3565 StreamString payload;
3566 payload.PutChar('G');
3567 payload.PutBytesAsRawHex8(data.data(), data.size(),
3570 StringExtractorGDBRemote response;
3572 tid, std::move(payload), response) == PacketResult::Success &&
3573 response.IsOKResponse();
3574}
3575
3577 uint32_t &save_id) {
3578 save_id = 0; // Set to invalid save ID
3580 return false;
3581
3583 StreamString payload;
3584 payload.PutCString("QSaveRegisterState");
3585 StringExtractorGDBRemote response;
3587 tid, std::move(payload), response) != PacketResult::Success)
3588 return false;
3589
3590 if (response.IsUnsupportedResponse())
3592
3593 const uint32_t response_save_id = response.GetU32(0);
3594 if (response_save_id == 0)
3595 return false;
3596
3597 save_id = response_save_id;
3598 return true;
3599}
3600
3602 uint32_t save_id) {
3603 // We use the "m_supports_QSaveRegisterState" variable here because the
3604 // QSaveRegisterState and QRestoreRegisterState packets must both be
3605 // supported in order to be useful
3607 return false;
3608
3609 StreamString payload;
3610 payload.Printf("QRestoreRegisterState:%u", save_id);
3611 StringExtractorGDBRemote response;
3613 tid, std::move(payload), response) != PacketResult::Success)
3614 return false;
3615
3616 if (response.IsOKResponse())
3617 return true;
3618
3619 if (response.IsUnsupportedResponse())
3621 return false;
3622}
3623
3626 return false;
3627
3628 StreamString packet;
3629 StringExtractorGDBRemote response;
3630 packet.Printf("QSyncThreadState:%4.4" PRIx64 ";", tid);
3631 return SendPacketAndWaitForResponse(packet.GetString(), response) ==
3633 response.IsOKResponse();
3634}
3635
3636llvm::Expected<TraceSupportedResponse>
3638 Log *log = GetLog(GDBRLog::Process);
3639
3640 StreamGDBRemote escaped_packet;
3641 escaped_packet.PutCString("jLLDBTraceSupported");
3642
3643 StringExtractorGDBRemote response;
3644 if (SendPacketAndWaitForResponse(escaped_packet.GetString(), response,
3645 timeout) ==
3647 if (response.IsErrorResponse())
3648 return response.GetStatus().ToError();
3649 if (response.IsUnsupportedResponse())
3650 return llvm::createStringError(llvm::inconvertibleErrorCode(),
3651 "jLLDBTraceSupported is unsupported");
3652
3653 return llvm::json::parse<TraceSupportedResponse>(response.Peek(),
3654 "TraceSupportedResponse");
3655 }
3656 LLDB_LOG(log, "failed to send packet: jLLDBTraceSupported");
3657 return llvm::createStringError(llvm::inconvertibleErrorCode(),
3658 "failed to send packet: jLLDBTraceSupported");
3659}
3660
3661llvm::Error
3663 std::chrono::seconds timeout) {
3664 Log *log = GetLog(GDBRLog::Process);
3665
3666 StreamGDBRemote escaped_packet;
3667 escaped_packet.PutCString("jLLDBTraceStop:");
3668
3669 std::string json_string;
3670 llvm::raw_string_ostream os(json_string);
3671 os << toJSON(request);
3672
3673 escaped_packet.PutEscapedBytes(json_string.c_str(), json_string.size());
3674
3675 StringExtractorGDBRemote response;
3676 if (SendPacketAndWaitForResponse(escaped_packet.GetString(), response,
3677 timeout) ==
3679 if (response.IsErrorResponse())
3680 return response.GetStatus().ToError();
3681 if (response.IsUnsupportedResponse())
3682 return llvm::createStringError(llvm::inconvertibleErrorCode(),
3683 "jLLDBTraceStop is unsupported");
3684 if (response.IsOKResponse())
3685 return llvm::Error::success();
3686 return llvm::createStringError(llvm::inconvertibleErrorCode(),
3687 "Invalid jLLDBTraceStart response");
3688 }
3689 LLDB_LOG(log, "failed to send packet: jLLDBTraceStop");
3690 return llvm::createStringError(llvm::inconvertibleErrorCode(),
3691 "failed to send packet: jLLDBTraceStop '%s'",
3692 escaped_packet.GetData());
3693}
3694
3695llvm::Error
3696GDBRemoteCommunicationClient::SendTraceStart(const llvm::json::Value &params,
3697 std::chrono::seconds timeout) {
3698 Log *log = GetLog(GDBRLog::Process);
3699
3700 StreamGDBRemote escaped_packet;
3701 escaped_packet.PutCString("jLLDBTraceStart:");
3702
3703 std::string json_string;
3704 llvm::raw_string_ostream os(json_string);
3705 os << params;
3706
3707 escaped_packet.PutEscapedBytes(json_string.c_str(), json_string.size());
3708
3709 StringExtractorGDBRemote response;
3710 if (SendPacketAndWaitForResponse(escaped_packet.GetString(), response,
3711 timeout) ==
3713 if (response.IsErrorResponse())
3714 return response.GetStatus().ToError();
3715 if (response.IsUnsupportedResponse())
3716 return llvm::createStringError(llvm::inconvertibleErrorCode(),
3717 "jLLDBTraceStart is unsupported");
3718 if (response.IsOKResponse())
3719 return llvm::Error::success();
3720 return llvm::createStringError(llvm::inconvertibleErrorCode(),
3721 "Invalid jLLDBTraceStart response");
3722 }
3723 LLDB_LOG(log, "failed to send packet: jLLDBTraceStart");
3724 return llvm::createStringError(llvm::inconvertibleErrorCode(),
3725 "failed to send packet: jLLDBTraceStart '%s'",
3726 escaped_packet.GetData());
3727}
3728
3729llvm::Expected<std::string>
3731 std::chrono::seconds timeout) {
3732 Log *log = GetLog(GDBRLog::Process);
3733
3734 StreamGDBRemote escaped_packet;
3735 escaped_packet.PutCString("jLLDBTraceGetState:");
3736
3737 std::string json_string;
3738 llvm::raw_string_ostream os(json_string);
3739 os << toJSON(TraceGetStateRequest{type.str()});
3740
3741 escaped_packet.PutEscapedBytes(json_string.c_str(), json_string.size());
3742
3743 StringExtractorGDBRemote response;
3744 if (SendPacketAndWaitForResponse(escaped_packet.GetString(), response,
3745 timeout) ==
3747 if (response.IsErrorResponse())
3748 return response.GetStatus().ToError();
3749 if (response.IsUnsupportedResponse())
3750 return llvm::createStringError(llvm::inconvertibleErrorCode(),
3751 "jLLDBTraceGetState is unsupported");
3752 return std::string(response.Peek());
3753 }
3754
3755 LLDB_LOG(log, "failed to send packet: jLLDBTraceGetState");
3756 return llvm::createStringError(
3757 llvm::inconvertibleErrorCode(),
3758 "failed to send packet: jLLDBTraceGetState '%s'",
3759 escaped_packet.GetData());
3760}
3761
3762llvm::Expected<std::vector<uint8_t>>
3764 const TraceGetBinaryDataRequest &request, std::chrono::seconds timeout) {
3765 Log *log = GetLog(GDBRLog::Process);
3766
3767 StreamGDBRemote escaped_packet;
3768 escaped_packet.PutCString("jLLDBTraceGetBinaryData:");
3769
3770 std::string json_string;
3771 llvm::raw_string_ostream os(json_string);
3772 os << toJSON(request);
3773
3774 escaped_packet.PutEscapedBytes(json_string.c_str(), json_string.size());
3775
3776 StringExtractorGDBRemote response;
3777 if (SendPacketAndWaitForResponse(escaped_packet.GetString(), response,
3778 timeout) ==
3780 if (response.IsErrorResponse())
3781 return response.GetStatus().ToError();
3782 std::string data;
3783 response.GetEscapedBinaryData(data);
3784 return std::vector<uint8_t>(data.begin(), data.end());
3785 }
3786 LLDB_LOG(log, "failed to send packet: jLLDBTraceGetBinaryData");
3787 return llvm::createStringError(
3788 llvm::inconvertibleErrorCode(),
3789 "failed to send packet: jLLDBTraceGetBinaryData '%s'",
3790 escaped_packet.GetData());
3791}
3792
3794 StringExtractorGDBRemote response;
3795 if (SendPacketAndWaitForResponse("qOffsets", response) !=
3797 return std::nullopt;
3798 if (!response.IsNormalResponse())
3799 return std::nullopt;
3800
3801 QOffsets result;
3802 llvm::StringRef ref = response.GetStringRef();
3803 const auto &GetOffset = [&] {
3804 addr_t offset;
3805 if (ref.consumeInteger(16, offset))
3806 return false;
3807 result.offsets.push_back(offset);
3808 return true;
3809 };
3810
3811 if (ref.consume_front("Text=")) {
3812 result.segments = false;
3813 if (!GetOffset())
3814 return std::nullopt;
3815 if (!ref.consume_front(";Data=") || !GetOffset())
3816 return std::nullopt;
3817 if (ref.empty())
3818 return result;
3819 if (ref.consume_front(";Bss=") && GetOffset() && ref.empty())
3820 return result;
3821 } else if (ref.consume_front("TextSeg=")) {
3822 result.segments = true;
3823 if (!GetOffset())
3824 return std::nullopt;
3825 if (ref.empty())
3826 return result;
3827 if (ref.consume_front(";DataSeg=") && GetOffset() && ref.empty())
3828 return result;
3829 }
3830 return std::nullopt;
3831}
3832
3834 const FileSpec &module_file_spec, const lldb_private::ArchSpec &arch_spec,
3835 ModuleSpec &module_spec) {
3837 return false;
3838
3839 std::string module_path = module_file_spec.GetPath(false);
3840 if (module_path.empty())
3841 return false;
3842
3843 StreamString packet;
3844 packet.PutCString("qModuleInfo:");
3845 packet.PutStringAsRawHex8(module_path);
3846 packet.PutCString(";");
3847 const auto &triple = arch_spec.GetTriple().getTriple();
3848 packet.PutStringAsRawHex8(triple);
3849
3850 StringExtractorGDBRemote response;
3851 if (SendPacketAndWaitForResponse(packet.GetString(), response) !=
3853 return false;
3854
3855 if (response.IsErrorResponse())
3856 return false;
3857
3858 if (response.IsUnsupportedResponse()) {
3859 m_supports_qModuleInfo = false;
3860 return false;
3861 }
3862
3863 llvm::StringRef name;
3864 llvm::StringRef value;
3865
3866 module_spec.Clear();
3867 module_spec.GetFileSpec() = module_file_spec;
3868
3869 while (response.GetNameColonValue(name, value)) {
3870 if (name == "uuid" || name == "md5") {
3871 StringExtractor extractor(value);
3872 std::string uuid;
3873 extractor.GetHexByteString(uuid);
3874 module_spec.GetUUID().SetFromStringRef(uuid);
3875 } else if (name == "triple") {
3876 StringExtractor extractor(value);
3877 std::string triple;
3878 extractor.GetHexByteString(triple);
3879 module_spec.GetArchitecture().SetTriple(triple.c_str());
3880 } else if (name == "file_offset") {
3881 uint64_t ival = 0;
3882 if (!value.getAsInteger(16, ival))
3883 module_spec.SetObjectOffset(ival);
3884 } else if (name == "file_size") {
3885 uint64_t ival = 0;
3886 if (!value.getAsInteger(16, ival))
3887 module_spec.SetObjectSize(ival);
3888 } else if (name == "file_path") {
3889 StringExtractor extractor(value);
3890 std::string path;
3891 extractor.GetHexByteString(path);
3892 module_spec.GetFileSpec() = FileSpec(path, arch_spec.GetTriple());
3893 }
3894 }
3895
3896 return true;
3897}
3898
3899static std::optional<ModuleSpec>
3901 ModuleSpec result;
3902 if (!dict)
3903 return std::nullopt;
3904
3905 llvm::StringRef string;
3906 uint64_t integer;
3907
3908 if (!dict->GetValueForKeyAsString("uuid", string))
3909 return std::nullopt;
3910 if (!result.GetUUID().SetFromStringRef(string))
3911 return std::nullopt;
3912
3913 if (!dict->GetValueForKeyAsInteger("file_offset", integer))
3914 return std::nullopt;
3915 result.SetObjectOffset(integer);
3916
3917 if (!dict->GetValueForKeyAsInteger("file_size", integer))
3918 return std::nullopt;
3919 result.SetObjectSize(integer);
3920
3921 if (!dict->GetValueForKeyAsString("triple", string))
3922 return std::nullopt;
3923 result.GetArchitecture().SetTriple(string);
3924
3925 if (!dict->GetValueForKeyAsString("file_path", string))
3926 return std::nullopt;
3927 result.GetFileSpec() = FileSpec(string, result.GetArchitecture().GetTriple());
3928
3929 return result;
3930}
3931
3932std::optional<std::vector<ModuleSpec>>
3934 llvm::ArrayRef<FileSpec> module_file_specs, const llvm::Triple &triple) {
3935 namespace json = llvm::json;
3936
3938 return std::nullopt;
3939
3940 json::Array module_array;
3941 for (const FileSpec &module_file_spec : module_file_specs) {
3942 module_array.push_back(
3943 json::Object{{"file", module_file_spec.GetPath(false)},
3944 {"triple", triple.getTriple()}});
3945 }
3946 StreamString unescaped_payload;
3947 unescaped_payload.PutCString("jModulesInfo:");
3948 unescaped_payload.AsRawOstream() << std::move(module_array);
3949
3950 StreamGDBRemote payload;
3951 payload.PutEscapedBytes(unescaped_payload.GetString().data(),
3952 unescaped_payload.GetSize());
3953
3954 // Increase the timeout for jModulesInfo since this packet can take longer.
3955 ScopedTimeout timeout(*this, std::chrono::seconds(10));
3956
3957 StringExtractorGDBRemote response;
3958 if (SendPacketAndWaitForResponse(payload.GetString(), response) !=
3960 response.IsErrorResponse())
3961 return std::nullopt;
3962
3963 if (response.IsUnsupportedResponse()) {
3965 return std::nullopt;
3966 }
3967
3968 StructuredData::ObjectSP response_object_sp =
3970 if (!response_object_sp)
3971 return std::nullopt;
3972
3973 StructuredData::Array *response_array = response_object_sp->GetAsArray();
3974 if (!response_array)
3975 return std::nullopt;
3976
3977 std::vector<ModuleSpec> result;
3978 for (size_t i = 0; i < response_array->GetSize(); ++i) {
3979 if (std::optional<ModuleSpec> module_spec = ParseModuleSpec(
3980 response_array->GetItemAtIndex(i)->GetAsDictionary()))
3981 result.push_back(*module_spec);
3982 }
3983
3984 return result;
3985}
3986
3987// query the target remote for extended information using the qXfer packet
3988//
3989// example: object='features', annex='target.xml'
3990// return: <xml output> or error
3991llvm::Expected<std::string>
3993 llvm::StringRef annex) {
3994
3995 std::string output;
3996 llvm::raw_string_ostream output_stream(output);
3998
3999 uint64_t size = GetRemoteMaxPacketSize();
4000 if (size == 0)
4001 size = 0x1000;
4002 size = size - 1; // Leave space for the 'm' or 'l' character in the response
4003 int offset = 0;
4004 bool active = true;
4005
4006 // loop until all data has been read
4007 while (active) {
4008
4009 // send query extended feature packet
4010 std::string packet =
4011 ("qXfer:" + object + ":read:" + annex + ":" +
4012 llvm::Twine::utohexstr(offset) + "," + llvm::Twine::utohexstr(size))
4013 .str();
4014
4016 SendPacketAndWaitForResponse(packet, chunk);
4017
4019 chunk.GetStringRef().empty()) {
4020 return llvm::createStringError(llvm::inconvertibleErrorCode(),
4021 "Error sending $qXfer packet");
4022 }
4023
4024 // check packet code
4025 switch (chunk.GetStringRef()[0]) {
4026 // last chunk
4027 case ('l'):
4028 active = false;
4029 [[fallthrough]];
4030
4031 // more chunks
4032 case ('m'):
4033 output_stream << chunk.GetStringRef().drop_front();
4034 offset += chunk.GetStringRef().size() - 1;
4035 break;
4036
4037 // unknown chunk
4038 default:
4039 return llvm::createStringError(
4040 llvm::inconvertibleErrorCode(),
4041 "Invalid continuation code from $qXfer packet");
4042 }
4043 }
4044
4045 return output;
4046}
4047
4048// Notify the target that gdb is prepared to serve symbol lookup requests.
4049// packet: "qSymbol::"
4050// reply:
4051// OK The target does not need to look up any (more) symbols.
4052// qSymbol:<sym_name> The target requests the value of symbol sym_name (hex
4053// encoded).
4054// LLDB may provide the value by sending another qSymbol
4055// packet
4056// in the form of"qSymbol:<sym_value>:<sym_name>".
4057//
4058// Three examples:
4059//
4060// lldb sends: qSymbol::
4061// lldb receives: OK
4062// Remote gdb stub does not need to know the addresses of any symbols, lldb
4063// does not
4064// need to ask again in this session.
4065//
4066// lldb sends: qSymbol::
4067// lldb receives: qSymbol:64697370617463685f71756575655f6f666673657473
4068// lldb sends: qSymbol::64697370617463685f71756575655f6f666673657473
4069// lldb receives: OK
4070// Remote gdb stub asks for address of 'dispatch_queue_offsets'. lldb does
4071// not know
4072// the address at this time. lldb needs to send qSymbol:: again when it has
4073// more
4074// solibs loaded.
4075//
4076// lldb sends: qSymbol::
4077// lldb receives: qSymbol:64697370617463685f71756575655f6f666673657473
4078// lldb sends: qSymbol:2bc97554:64697370617463685f71756575655f6f666673657473
4079// lldb receives: OK
4080// Remote gdb stub asks for address of 'dispatch_queue_offsets'. lldb says
4081// that it
4082// is at address 0x2bc97554. Remote gdb stub sends 'OK' indicating that it
4083// does not
4084// need any more symbols. lldb does not need to ask again in this session.
4085
4087 lldb_private::Process *process) {
4088 // Set to true once we've resolved a symbol to an address for the remote
4089 // stub. If we get an 'OK' response after this, the remote stub doesn't need
4090 // any more symbols and we can stop asking.
4091 bool symbol_response_provided = false;
4092
4093 // Is this the initial qSymbol:: packet?
4094 bool first_qsymbol_query = true;
4095
4097 Lock lock(*this);
4098 if (lock) {
4099 StreamString packet;
4100 packet.PutCString("qSymbol::");
4101 StringExtractorGDBRemote response;
4102 while (SendPacketAndWaitForResponseNoLock(packet.GetString(), response) ==
4104 if (response.IsOKResponse()) {
4105 if (symbol_response_provided || first_qsymbol_query) {
4107 }
4108
4109 // We are done serving symbols requests
4110 return;
4111 }
4112 first_qsymbol_query = false;
4113
4114 if (response.IsUnsupportedResponse()) {
4115 // qSymbol is not supported by the current GDB server we are
4116 // connected to
4117 m_supports_qSymbol = false;
4118 return;
4119 } else {
4120 llvm::StringRef response_str(response.GetStringRef());
4121 if (response_str.starts_with("qSymbol:")) {
4122 response.SetFilePos(strlen("qSymbol:"));
4123 std::string symbol_name;
4124 if (response.GetHexByteString(symbol_name)) {
4125 if (symbol_name.empty())
4126 return;
4127
4128 addr_t symbol_load_addr = LLDB_INVALID_ADDRESS;
4131 ConstString(symbol_name), eSymbolTypeAny, sc_list);
4132 for (const SymbolContext &sc : sc_list) {
4133 if (symbol_load_addr != LLDB_INVALID_ADDRESS)
4134 break;
4135 if (sc.symbol) {
4136 switch (sc.symbol->GetType()) {
4137 case eSymbolTypeInvalid:
4144 case eSymbolTypeBlock:
4145 case eSymbolTypeLocal:
4146 case eSymbolTypeParam:
4157 break;
4158
4159 case eSymbolTypeCode:
4161 case eSymbolTypeData:
4162 case eSymbolTypeRuntime:
4168 symbol_load_addr =
4169 sc.symbol->GetLoadAddress(&process->GetTarget());
4170 break;
4171 }
4172 }
4173 }
4174 // This is the normal path where our symbol lookup was successful
4175 // and we want to send a packet with the new symbol value and see
4176 // if another lookup needs to be done.
4177
4178 // Change "packet" to contain the requested symbol value and name
4179 packet.Clear();
4180 packet.PutCString("qSymbol:");
4181 if (symbol_load_addr != LLDB_INVALID_ADDRESS) {
4182 packet.Printf("%" PRIx64, symbol_load_addr);
4183 symbol_response_provided = true;
4184 } else {
4185 symbol_response_provided = false;
4186 }
4187 packet.PutCString(":");
4188 packet.PutBytesAsRawHex8(symbol_name.data(), symbol_name.size());
4189 continue; // go back to the while loop and send "packet" and wait
4190 // for another response
4191 }
4192 }
4193 }
4194 }
4195 // If we make it here, the symbol request packet response wasn't valid or
4196 // our symbol lookup failed so we must abort
4197 return;
4198
4199 } else if (Log *log = GetLog(GDBRLog::Process | GDBRLog::Packets)) {
4200 LLDB_LOGF(log,
4201 "GDBRemoteCommunicationClient::%s: Didn't get sequence mutex.",
4202 __FUNCTION__);
4203 }
4204 }
4205}
4206
4210 // Query the server for the array of supported asynchronous JSON packets.
4212
4213 Log *log = GetLog(GDBRLog::Process);
4214
4215 // Poll it now.
4216 StringExtractorGDBRemote response;
4217 if (SendPacketAndWaitForResponse("qStructuredDataPlugins", response) ==
4222 !m_supported_async_json_packets_sp->GetAsArray()) {
4223 // We were returned something other than a JSON array. This is
4224 // invalid. Clear it out.
4225 LLDB_LOGF(log,
4226 "GDBRemoteCommunicationClient::%s(): "
4227 "QSupportedAsyncJSONPackets returned invalid "
4228 "result: %s",
4229 __FUNCTION__, response.GetStringRef().data());
4231 }
4232 } else {
4233 LLDB_LOGF(log,
4234 "GDBRemoteCommunicationClient::%s(): "
4235 "QSupportedAsyncJSONPackets unsupported",
4236 __FUNCTION__);
4237 }
4238
4240 StreamString stream;
4242 LLDB_LOGF(log,
4243 "GDBRemoteCommunicationClient::%s(): supported async "
4244 "JSON packets: %s",
4245 __FUNCTION__, stream.GetData());
4246 }
4247 }
4248
4250 ? m_supported_async_json_packets_sp->GetAsArray()
4251 : nullptr;
4252}
4253
4255 llvm::ArrayRef<int32_t> signals) {
4256 // Format packet:
4257 // QPassSignals:<hex_sig1>;<hex_sig2>...;<hex_sigN>
4258 auto range = llvm::make_range(signals.begin(), signals.end());
4259 std::string packet = formatv("QPassSignals:{0:$[;]@(x-2)}", range).str();
4260
4261 StringExtractorGDBRemote response;
4262 auto send_status = SendPacketAndWaitForResponse(packet, response);
4263
4265 return Status::FromErrorString("Sending QPassSignals packet failed");
4266
4267 if (response.IsOKResponse()) {
4268 return Status();
4269 } else {
4271 "Unknown error happened during sending QPassSignals packet.");
4272 }
4273}
4274
4276 llvm::StringRef type_name, const StructuredData::ObjectSP &config_sp) {
4277 Status error;
4278
4279 if (type_name.empty()) {
4280 error = Status::FromErrorString("invalid type_name argument");
4281 return error;
4282 }
4283
4284 // Build command: Configure{type_name}: serialized config data.
4285 StreamGDBRemote stream;
4286 stream.PutCString("QConfigure");
4287 stream.PutCString(type_name);
4288 stream.PutChar(':');
4289 if (config_sp) {
4290 // Gather the plain-text version of the configuration data.
4291 StreamString unescaped_stream;
4292 config_sp->Dump(unescaped_stream);
4293 unescaped_stream.Flush();
4294
4295 // Add it to the stream in escaped fashion.
4296 stream.PutEscapedBytes(unescaped_stream.GetString().data(),
4297 unescaped_stream.GetSize());
4298 }
4299 stream.Flush();
4300
4301 // Send the packet.
4302 StringExtractorGDBRemote response;
4303 auto result = SendPacketAndWaitForResponse(stream.GetString(), response);
4304 if (result == PacketResult::Success) {
4305 // We failed if the config result comes back other than OK.
4306 if (response.GetStringRef() == "OK") {
4307 // Okay!
4308 error.Clear();
4309 } else {
4311 "configuring StructuredData feature {0} failed with error {1}",
4312 type_name, response.GetStringRef());
4313 }
4314 } else {
4315 // Can we get more data here on the failure?
4317 "configuring StructuredData feature {0} failed when sending packet: "
4318 "PacketResult={1}",
4319 type_name, (int)result);
4320 }
4321 return error;
4322}
4323
4327}
4328
4333 return true;
4334
4335 // If the remote didn't indicate native-signal support explicitly,
4336 // check whether it is an old version of lldb-server.
4337 return GetThreadSuffixSupported();
4338}
4339
4341 StringExtractorGDBRemote response;
4342 GDBRemoteCommunication::ScopedTimeout(*this, seconds(3));
4343
4344 if (SendPacketAndWaitForResponse("k", response, GetPacketTimeout()) !=
4346 return llvm::createStringError(llvm::inconvertibleErrorCode(),
4347 "failed to send k packet");
4348
4349 char packet_cmd = response.GetChar(0);
4350 if (packet_cmd == 'W' || packet_cmd == 'X')
4351 return response.GetHexU8();
4352
4353 return llvm::createStringError(llvm::inconvertibleErrorCode(),
4354 "unexpected response to k packet: %s",
4355 response.GetStringRef().str().c_str());
4356}
static llvm::raw_ostream & error(Stream &strm)
#define integer
duration< float > calculate_standard_deviation(const std::vector< duration< float > > &v)
static std::optional< ModuleSpec > ParseModuleSpec(StructuredData::Dictionary *dict)
static int gdb_errno_to_system(int err)
static void ParseOSType(llvm::StringRef value, std::string &os_name, std::string &environment)
static void MakeSpeedTestPacket(StreamString &packet, uint32_t send_size, uint32_t recv_size)
static uint64_t ParseHostIOPacketResponse(StringExtractorGDBRemote &response, uint64_t fail_result, Status &error)
#define LLDB_LOG(log,...)
The LLDB_LOG* macros defined below are the way to emit log messages.
Definition: Log.h:369
#define LLDB_LOGF(log,...)
Definition: Log.h:376
static constexpr lldb::tid_t AllThreads
size_t GetEscapedBinaryData(std::string &str)
static constexpr lldb::pid_t AllProcesses
std::optional< std::pair< lldb::pid_t, lldb::tid_t > > GetPidTid(lldb::pid_t default_pid)
ResponseType GetResponseType() const
void SetFilePos(uint32_t idx)
int64_t GetS64(int64_t fail_value, int base=0)
uint32_t GetHexMaxU32(bool little_endian, uint32_t fail_value)
uint64_t GetHexMaxU64(bool little_endian, uint64_t fail_value)
size_t GetBytesLeft()
bool GetNameColonValue(llvm::StringRef &name, llvm::StringRef &value)
uint64_t GetU64(uint64_t fail_value, int base=0)
size_t GetHexBytesAvail(llvm::MutableArrayRef< uint8_t > dest)
size_t GetHexByteString(std::string &str)
uint8_t GetHexU8(uint8_t fail_value=0, bool set_eof_on_fail=true)
char GetChar(char fail_value='\0')
const char * Peek()
int32_t GetS32(int32_t fail_value, int base=0)
size_t GetHexBytes(llvm::MutableArrayRef< uint8_t > dest, uint8_t fail_fill_value)
uint64_t GetFilePos() const
llvm::StringRef GetStringRef() const
uint32_t GetU32(uint32_t fail_value, int base=0)
A class which holds the metadata from a remote stub/corefile note about how many bits are used for ad...
void SetAddressableBits(uint32_t addressing_bits)
When a single value is available for the number of bits.
An architecture specification class.
Definition: ArchSpec.h:31
uint32_t GetAddressByteSize() const
Returns the size in bytes of an address of the current architecture.
Definition: ArchSpec.cpp:712
bool IsValid() const
Tests if this ArchSpec is valid.
Definition: ArchSpec.h:361
void Clear()
Clears the object state.
Definition: ArchSpec.cpp:563
llvm::Triple & GetTriple()
Architecture triple accessor.
Definition: ArchSpec.h:463
void SetFlags(uint32_t flags)
Definition: ArchSpec.h:536
bool SetTriple(const llvm::Triple &triple)
Architecture triple setter.
Definition: ArchSpec.cpp:768
bool SetArchitecture(ArchitectureType arch_type, uint32_t cpu, uint32_t sub, uint32_t os=0)
Change the architecture object type, CPU type and OS type.
Definition: ArchSpec.cpp:872
lldb::ByteOrder GetByteOrder() const
Returns the byte order for the architecture specification.
Definition: ArchSpec.cpp:759
llvm::Triple::ArchType GetMachine() const
Returns a machine family for the current architecture.
Definition: ArchSpec.cpp:704
const char * GetArchitectureName() const
Returns a static string representing the current architecture.
Definition: ArchSpec.cpp:573
A command line argument class.
Definition: Args.h:33
void AppendArgument(llvm::StringRef arg_str, char quote_char='\0')
Appends a new argument to the end of the list argument list.
Definition: Args.cpp:332
const char * GetArgumentAtIndex(size_t idx) const
Gets the NULL terminated C string argument pointer for the argument at index idx.
Definition: Args.cpp:273
void Clear()
Clear the arguments.
Definition: Args.cpp:388
bool IsConnected() const
Check if the connection is valid.
virtual lldb::ConnectionStatus Disconnect(Status *error_ptr=nullptr)
Disconnect the communications connection if one is currently connected.
"lldb/Utility/ArgCompletionRequest.h"
void AddCompletion(llvm::StringRef completion, llvm::StringRef description="", CompletionMode mode=CompletionMode::Normal)
Adds a possible completion string.
llvm::StringRef GetCursorArgumentPrefix() const
A uniqued constant string class.
Definition: ConstString.h:40
A subclass of DataBuffer that stores a data buffer on the heap.
A file utility class.
Definition: FileSpec.h:56
void SetFile(llvm::StringRef path, Style style)
Change the file specified with a new path.
Definition: FileSpec.cpp:174
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
@ eOpenOptionReadOnly
Definition: File.h:51
void SetFlash(OptionalBool val)
void SetMapped(OptionalBool val)
void SetBlocksize(lldb::offset_t blocksize)
void SetMemoryTagged(OptionalBool val)
void SetReadable(OptionalBool val)
void SetExecutable(OptionalBool val)
void SetIsStackMemory(OptionalBool val)
void SetName(const char *name)
void SetWritable(OptionalBool val)
lldb::offset_t GetBlocksize() const
void SetDirtyPageList(std::vector< lldb::addr_t > pagelist)
OptionalBool GetFlash() const
void SetIsShadowStack(OptionalBool val)
void FindSymbolsWithNameAndType(ConstString name, lldb::SymbolType symbol_type, SymbolContextList &sc_list) const
Definition: ModuleList.cpp:527
void SetObjectSize(uint64_t object_size)
Definition: ModuleSpec.h:115
FileSpec & GetFileSpec()
Definition: ModuleSpec.h:53
ArchSpec & GetArchitecture()
Definition: ModuleSpec.h:89
void SetObjectOffset(uint64_t object_offset)
Definition: ModuleSpec.h:109
void SetGroupID(uint32_t gid)
Definition: ProcessInfo.h:60
bool ProcessIDIsValid() const
Definition: ProcessInfo.h:72
void SetArg0(llvm::StringRef arg)
Definition: ProcessInfo.cpp:82
const char * GetName() const
Definition: ProcessInfo.cpp:45
lldb::pid_t GetProcessID() const
Definition: ProcessInfo.h:68
void SetProcessID(lldb::pid_t pid)
Definition: ProcessInfo.h:70
FileSpec & GetExecutableFile()
Definition: ProcessInfo.h:43
bool UserIDIsValid() const
Definition: ProcessInfo.h:54
uint32_t GetUserID() const
Definition: ProcessInfo.h:50
uint32_t GetGroupID() const
Definition: ProcessInfo.h:52
void SetUserID(uint32_t uid)
Definition: ProcessInfo.h:58
bool GroupIDIsValid() const
Definition: ProcessInfo.h:56
ArchSpec & GetArchitecture()
Definition: ProcessInfo.h:62
ProcessInstanceInfo & GetProcessInfo()
Definition: ProcessInfo.h:308
uint32_t GetEffectiveUserID() const
Definition: ProcessInfo.h:160
void SetEffectiveGroupID(uint32_t gid)
Definition: ProcessInfo.h:170
lldb::pid_t GetParentProcessID() const
Definition: ProcessInfo.h:172
uint32_t GetEffectiveGroupID() const
Definition: ProcessInfo.h:162
void SetParentProcessID(lldb::pid_t pid)
Definition: ProcessInfo.h:174
void SetEffectiveUserID(uint32_t uid)
Definition: ProcessInfo.h:168
A plug-in interface definition class for debugging a process.
Definition: Process.h:343
Target & GetTarget()
Get the target object pointer for this module.
Definition: Process.h:1246
An error handling class.
Definition: Status.h:118
llvm::Error ToError() const
FIXME: Replace all uses with takeError() instead.
Definition: Status.cpp:139
static Status FromErrorStringWithFormat(const char *format,...) __attribute__((format(printf
Definition: Status.cpp:106
static Status FromErrorString(const char *str)
Definition: Status.h:141
static Status static Status FromErrorStringWithFormatv(const char *format, Args &&...args)
Definition: Status.h:151
static Status FromError(llvm::Error error)
Avoid using this in new code. Migrate APIs to llvm::Expected instead.
Definition: Status.cpp:137
bool Success() const
Test for success condition.
Definition: Status.cpp:304
int PutEscapedBytes(const void *s, size_t src_len)
Output a block of data to the stream performing GDB-remote escaping.
Definition: GDBRemote.cpp:28
const char * GetData() const
Definition: StreamString.h:45
void Flush() override
Flush the stream.
llvm::StringRef GetString() const
A stream class that can stream formatted output to a file.
Definition: Stream.h:28
void Format(const char *format, Args &&... args)
Definition: Stream.h:353
llvm::raw_ostream & AsRawOstream()
Returns a raw_ostream that forwards the data to this Stream object.
Definition: Stream.h:401
size_t PutStringAsRawHex8(llvm::StringRef s)
Definition: Stream.cpp:410
size_t PutHex64(uint64_t uvalue, lldb::ByteOrder byte_order=lldb::eByteOrderInvalid)
Definition: Stream.cpp:299
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
Definition: Stream.cpp:134
size_t PutCString(llvm::StringRef cstr)
Output a C string to the stream.
Definition: Stream.cpp:65
size_t PutChar(char ch)
Definition: Stream.cpp:131
size_t PutHex32(uint32_t uvalue, lldb::ByteOrder byte_order=lldb::eByteOrderInvalid)
Definition: Stream.cpp:283
virtual void Flush()=0
Flush the stream.
size_t EOL()
Output and End of Line character to the stream.
Definition: Stream.cpp:155
size_t PutBytesAsRawHex8(const void *src, size_t src_len, lldb::ByteOrder src_byte_order=lldb::eByteOrderInvalid, lldb::ByteOrder dst_byte_order=lldb::eByteOrderInvalid)
Definition: Stream.cpp:383
ObjectSP GetItemAtIndex(size_t idx) const
std::optional< Dictionary * > GetItemAtIndexAsDictionary(size_t idx) const
Retrieves the element at index idx from a StructuredData::Array if it is a Dictionary.
bool GetValueForKeyAsInteger(llvm::StringRef key, IntType &result) const
bool GetValueForKeyAsString(llvm::StringRef key, llvm::StringRef &result) const
ObjectSP GetValueForKey(llvm::StringRef key) const
uint64_t GetUnsignedIntegerValue(uint64_t fail_value=0)
std::shared_ptr< Object > ObjectSP
static ObjectSP ParseJSON(llvm::StringRef json_text)
Defines a list of symbol context objects.
Defines a symbol context baton that can be handed other debug core functions.
Definition: SymbolContext.h:34
const ModuleList & GetImages() const
Get accessor for the images for this process.
Definition: Target.h:997
const ArchSpec & GetArchitecture() const
Definition: Target.h:1039
bool SetFromStringRef(llvm::StringRef str)
Definition: UUID.cpp:96
bool IsValid() const
Definition: UUID.h:69
static bool XMLEnabled()
Definition: XML.cpp:83
XMLNode GetRootElement(const char *required_name=nullptr)
Definition: XML.cpp:65
bool ParseMemory(const char *xml, size_t xml_length, const char *url="untitled.xml")
Definition: XML.cpp:54
void ForEachChildElement(NodeCallback const &callback) const
Definition: XML.cpp:169
llvm::StringRef GetName() const
Definition: XML.cpp:268
std::string GetAttributeValue(const char *name, const char *fail_value=nullptr) const
Definition: XML.cpp:135
bool GetElementTextAsUnsigned(uint64_t &value, uint64_t fail_value=0, int base=0) const
Definition: XML.cpp:299
bool GetAttributeValueAsUnsigned(const char *name, uint64_t &value, uint64_t fail_value=0, int base=0) const
Definition: XML.cpp:156
bool IsElement() const
Definition: XML.cpp:345
PacketResult SendPacketAndWaitForResponse(llvm::StringRef payload, StringExtractorGDBRemote &response, std::chrono::seconds interrupt_timeout=std::chrono::seconds(0))
PacketResult SendPacketAndWaitForResponseNoLock(llvm::StringRef payload, StringExtractorGDBRemote &response)
lldb::DataBufferSP ReadRegister(lldb::tid_t tid, uint32_t reg_num)
PacketResult SendThreadSpecificPacketAndWaitForResponse(lldb::tid_t tid, StreamString &&payload, StringExtractorGDBRemote &response)
bool DecodeProcessInfoResponse(StringExtractorGDBRemote &response, ProcessInstanceInfo &process_info)
lldb_private::StructuredData::Array * GetSupportedStructuredDataPlugins()
Return the array of async JSON packet types supported by the remote.
lldb::tid_t m_curr_tid_run
Current gdb remote protocol thread identifier for continue, step, etc.
int SendLaunchEventDataPacket(const char *data, bool *was_supported=nullptr)
std::optional< std::vector< ModuleSpec > > GetModulesInfo(llvm::ArrayRef< FileSpec > module_file_specs, const llvm::Triple &triple)
llvm::Expected< std::string > ReadExtFeature(llvm::StringRef object, llvm::StringRef annex)
std::optional< GDBRemoteFStatData > Stat(const FileSpec &file_spec)
std::optional< QOffsets > GetQOffsets()
Use qOffsets to query the offset used when relocating the target executable.
size_t QueryGDBServer(std::vector< std::pair< uint16_t, std::string > > &connection_urls)
llvm::Error SendTraceStop(const TraceStopRequest &request, std::chrono::seconds interrupt_timeout)
void TestPacketSpeed(const uint32_t num_packets, uint32_t max_send, uint32_t max_recv, uint64_t recv_amount, bool json, Stream &strm)
bool LaunchGDBServer(const char *remote_accept_hostname, lldb::pid_t &pid, uint16_t &port, std::string &socket_name)
bool SetCurrentThreadForRun(uint64_t tid, lldb::pid_t pid=LLDB_INVALID_PROCESS_ID)
uint8_t SendGDBStoppointTypePacket(GDBStoppointType type, bool insert, lldb::addr_t addr, uint32_t length, std::chrono::seconds interrupt_timeout)
Status RunShellCommand(llvm::StringRef command, const FileSpec &working_dir, int *status_ptr, int *signo_ptr, std::string *command_output, const Timeout< std::micro > &timeout)
uint64_t ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst, uint64_t dst_len, Status &error)
bool GetWorkingDir(FileSpec &working_dir)
Gets the current working directory of a remote platform GDB server.
lldb::user_id_t OpenFile(const FileSpec &file_spec, File::OpenOptions flags, mode_t mode, Status &error)
std::optional< GDBRemoteFStatData > FStat(lldb::user_id_t fd)
llvm::Expected< std::string > SendTraceGetState(llvm::StringRef type, std::chrono::seconds interrupt_timeout)
llvm::Error LaunchProcess(const Args &args)
Launch the process using the provided arguments.
Status ConfigureRemoteStructuredData(llvm::StringRef type_name, const StructuredData::ObjectSP &config_sp)
Configure a StructuredData feature on the remote end.
uint64_t WriteFile(lldb::user_id_t fd, uint64_t offset, const void *src, uint64_t src_len, Status &error)
bool SetCurrentThread(uint64_t tid, lldb::pid_t pid=LLDB_INVALID_PROCESS_ID)
lldb::tid_t m_curr_tid
Current gdb remote protocol thread identifier for all other operations.
bool WriteAllRegisters(lldb::tid_t tid, llvm::ArrayRef< uint8_t > data)
bool GetProcessInfo(lldb::pid_t pid, ProcessInstanceInfo &process_info)
Status SetFilePermissions(const FileSpec &file_spec, uint32_t file_permissions)
Status GetQXferMemoryMapRegionInfo(lldb::addr_t addr, MemoryRegionInfo &region)
int SetDetachOnError(bool enable)
Sets the DetachOnError flag to enable for the process controlled by the stub.
LazyBool GetThreadPacketSupported(lldb::tid_t tid, llvm::StringRef packetStr)
bool WriteRegister(lldb::tid_t tid, uint32_t reg_num, llvm::ArrayRef< uint8_t > data)
llvm::Expected< std::vector< uint8_t > > SendTraceGetBinaryData(const TraceGetBinaryDataRequest &request, std::chrono::seconds interrupt_timeout)
int SetSTDIN(const FileSpec &file_spec)
Sets the path to use for stdin/out/err for a process that will be launched with the 'A' packet.
lldb::pid_t m_curr_pid
Current gdb remote protocol process identifier for all other operations.
Status WriteMemoryTags(lldb::addr_t addr, size_t len, int32_t type, const std::vector< uint8_t > &tags)
size_t GetCurrentThreadIDs(std::vector< lldb::tid_t > &thread_ids, bool &sequence_mutex_unavailable)
Status Detach(bool keep_stopped, lldb::pid_t pid=LLDB_INVALID_PROCESS_ID)
int SetDisableASLR(bool enable)
Sets the disable ASLR flag to enable for a process that will be launched with the 'A' packet.
Status GetMemoryRegionInfo(lldb::addr_t addr, MemoryRegionInfo &range_info)
int SendStdinNotification(const char *data, size_t data_len)
Sends a GDB remote protocol 'I' packet that delivers stdin data to the remote process.
void AutoCompleteDiskFileOrDirectory(CompletionRequest &request, bool only_dir)
lldb::pid_t m_curr_pid_run
Current gdb remote protocol process identifier for continue, step, etc.
void MaybeEnableCompression(llvm::ArrayRef< llvm::StringRef > supported_compressions)
llvm::Expected< TraceSupportedResponse > SendTraceSupported(std::chrono::seconds interrupt_timeout)
llvm::ErrorOr< llvm::MD5::MD5Result > CalculateMD5(const FileSpec &file_spec)
llvm::Error SendTraceStart(const llvm::json::Value &request, std::chrono::seconds interrupt_timeout)
bool GetModuleInfo(const FileSpec &module_file_spec, const ArchSpec &arch_spec, ModuleSpec &module_spec)
std::optional< PidTid > SendSetCurrentThreadPacket(uint64_t tid, uint64_t pid, char op)
Status GetFilePermissions(const FileSpec &file_spec, uint32_t &file_permissions)
uint32_t FindProcesses(const ProcessInstanceInfoMatch &process_match_info, ProcessInstanceInfoList &process_infos)
lldb::DataBufferSP ReadMemoryTags(lldb::addr_t addr, size_t len, int32_t type)
int SetWorkingDir(const FileSpec &working_dir)
Sets the working directory to path for a process that will be launched with the 'A' packet for non pl...
std::vector< std::pair< lldb::pid_t, lldb::tid_t > > GetCurrentProcessAndThreadIDs(bool &sequence_mutex_unavailable)
bool GetThreadStopInfo(lldb::tid_t tid, StringExtractorGDBRemote &response)
bool GetProcessStandaloneBinary(UUID &uuid, lldb::addr_t &value, bool &value_is_offset)
int SendEnvironmentPacket(char const *name_equal_value)
Sends a "QEnvironment:NAME=VALUE" packet that will build up the environment that will get used when l...
std::chrono::seconds SetPacketTimeout(std::chrono::seconds packet_timeout)
#define UINT64_MAX
Definition: lldb-defines.h:23
#define LLDB_INVALID_THREAD_ID
Definition: lldb-defines.h:90
#define LLDB_INVALID_CPUTYPE
Definition: lldb-defines.h:104
#define UNUSED_IF_ASSERT_DISABLED(x)
Definition: lldb-defines.h:140
#define LLDB_INVALID_ADDRESS
Definition: lldb-defines.h:82
#define UINT32_MAX
Definition: lldb-defines.h:19
#define LLDB_INVALID_PROCESS_ID
Definition: lldb-defines.h:89
lldb::ByteOrder InlHostByteOrder()
Definition: Endian.h:25
llvm::raw_ostream & operator<<(llvm::raw_ostream &os, const QOffsets &offsets)
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.
Definition: Log.h:332
std::vector< ProcessInstanceInfo > ProcessInstanceInfoList
Definition: Host.h:32
llvm::json::Value toJSON(const TraceSupportedResponse &packet)
Definition: SBAddress.h:15
@ eErrorTypeGeneric
Generic errors that can be any value.
@ eErrorTypePOSIX
POSIX error codes.
@ eSymbolTypeUndefined
@ eSymbolTypeVariableType
@ eSymbolTypeObjCMetaClass
@ eSymbolTypeReExported
@ eSymbolTypeObjCClass
@ eSymbolTypeObjectFile
@ eSymbolTypeTrampoline
@ eSymbolTypeResolver
@ eSymbolTypeParam
@ eSymbolTypeSourceFile
@ eSymbolTypeException
@ eSymbolTypeInvalid
@ eSymbolTypeVariable
@ eSymbolTypeAbsolute
@ eSymbolTypeAdditional
When symbols take more than one entry, the extra entries get this type.
@ eSymbolTypeInstrumentation
@ eSymbolTypeLocal
@ eSymbolTypeHeaderFile
@ eSymbolTypeBlock
@ eSymbolTypeCommonBlock
@ eSymbolTypeCompiler
@ eSymbolTypeLineHeader
@ eSymbolTypeObjCIVar
@ eSymbolTypeLineEntry
@ eSymbolTypeRuntime
@ eSymbolTypeScopeBegin
@ eSymbolTypeScopeEnd
uint64_t pid_t
Definition: lldb-types.h:83
ByteOrder
Byte ordering definitions.
@ eByteOrderInvalid
@ eByteOrderLittle
uint64_t user_id_t
Definition: lldb-types.h:82
std::shared_ptr< lldb_private::DataBuffer > DataBufferSP
Definition: lldb-forward.h:336
std::shared_ptr< lldb_private::WritableDataBuffer > WritableDataBufferSP
Definition: lldb-forward.h:337
uint64_t addr_t
Definition: lldb-types.h:80
uint64_t tid_t
Definition: lldb-types.h:84
bool Contains(BaseType r) const
Definition: RangeMap.h:93
BaseType GetRangeBase() const
Definition: RangeMap.h:45
bool IsValid() const
Definition: RangeMap.h:91
void SetRangeEnd(BaseType end)
Definition: RangeMap.h:80
void SetRangeBase(BaseType b)
Set the start value for the range, and keep the same size.
Definition: RangeMap.h:48
BaseType GetRangeEnd() const
Definition: RangeMap.h:78
void SetByteSize(SizeType s)
Definition: RangeMap.h:89
jLLDBTraceGetBinaryData gdb-remote packet
jLLDBTraceStop gdb-remote packet
The offsets used by the target when relocating the executable.
bool segments
If true, the offsets field describes segments.
std::vector< uint64_t > offsets
The individual offsets.
#define S_IRWXG
#define S_IRWXO
#define S_IRWXU