blob: d0000a001cec16bcf477054efc9f9135e60f5dac [file] [log] [blame]
Tamas Berghammere13c2732015-02-11 10:29:30 +00001//===-- GDBRemoteCommunicationServerCommon.cpp ------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "GDBRemoteCommunicationServerCommon.h"
11
12#include <errno.h>
13
14// C Includes
Todd Fialae77fce02016-09-04 00:18:56 +000015
16#ifdef __APPLE__
17#include <TargetConditionals.h>
18#endif
19
Tamas Berghammere13c2732015-02-11 10:29:30 +000020// C++ Includes
Tamas Berghammere13c2732015-02-11 10:29:30 +000021#include <chrono>
Kate Stoneb9c1b512016-09-06 20:57:50 +000022#include <cstring>
Tamas Berghammere13c2732015-02-11 10:29:30 +000023
24// Other libraries and framework includes
Oleksiy Vyalov6801be32015-02-25 22:15:44 +000025#include "lldb/Core/ModuleSpec.h"
Tamas Berghammere13c2732015-02-11 10:29:30 +000026#include "lldb/Host/Config.h"
Tamas Berghammere13c2732015-02-11 10:29:30 +000027#include "lldb/Host/File.h"
28#include "lldb/Host/FileSystem.h"
29#include "lldb/Host/Host.h"
30#include "lldb/Host/HostInfo.h"
Tamas Berghammere13c2732015-02-11 10:29:30 +000031#include "lldb/Interpreter/Args.h"
Oleksiy Vyalov6801be32015-02-25 22:15:44 +000032#include "lldb/Symbol/ObjectFile.h"
Tamas Berghammere13c2732015-02-11 10:29:30 +000033#include "lldb/Target/FileAction.h"
34#include "lldb/Target/Platform.h"
35#include "lldb/Target/Process.h"
Zachary Turner01c32432017-02-14 19:06:07 +000036#include "lldb/Utility/Endian.h"
Pavel Labath2f1fbae2016-09-08 10:07:04 +000037#include "lldb/Utility/JSON.h"
Zachary Turner6f9e6902017-03-03 20:56:28 +000038#include "lldb/Utility/Log.h"
Zachary Turnerfb1a0a02017-03-06 18:34:25 +000039#include "lldb/Utility/StreamGDBRemote.h"
Zachary Turnerbf9a7732017-02-02 21:39:50 +000040#include "lldb/Utility/StreamString.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000041#include "llvm/ADT/Triple.h"
Tamas Berghammere13c2732015-02-11 10:29:30 +000042
43// Project includes
44#include "ProcessGDBRemoteLog.h"
45#include "Utility/StringExtractorGDBRemote.h"
46
Tamas Berghammerdad4db72015-03-13 11:16:08 +000047#ifdef __ANDROID__
48#include "lldb/Host/android/HostInfoAndroid.h"
49#endif
50
Zachary Turner54695a32016-08-29 19:58:14 +000051#include "llvm/ADT/StringSwitch.h"
52
Tamas Berghammere13c2732015-02-11 10:29:30 +000053using namespace lldb;
54using namespace lldb_private;
Tamas Berghammerdb264a62015-03-31 09:52:22 +000055using namespace lldb_private::process_gdb_remote;
Tamas Berghammere13c2732015-02-11 10:29:30 +000056
Tamas Berghammer2d52afd2015-02-26 11:37:21 +000057#ifdef __ANDROID__
Kate Stoneb9c1b512016-09-06 20:57:50 +000058const static uint32_t g_default_packet_timeout_sec = 20; // seconds
Tamas Berghammer2d52afd2015-02-26 11:37:21 +000059#else
Kate Stoneb9c1b512016-09-06 20:57:50 +000060const static uint32_t g_default_packet_timeout_sec = 0; // not specified
Tamas Berghammer2d52afd2015-02-26 11:37:21 +000061#endif
62
Tamas Berghammere13c2732015-02-11 10:29:30 +000063//----------------------------------------------------------------------
64// GDBRemoteCommunicationServerCommon constructor
65//----------------------------------------------------------------------
Kate Stoneb9c1b512016-09-06 20:57:50 +000066GDBRemoteCommunicationServerCommon::GDBRemoteCommunicationServerCommon(
67 const char *comm_name, const char *listener_name)
68 : GDBRemoteCommunicationServer(comm_name, listener_name),
69 m_process_launch_info(), m_process_launch_error(), m_proc_infos(),
70 m_proc_infos_index(0), m_thread_suffix_supported(false),
71 m_list_threads_in_stop_reply(false) {
72 RegisterMemberFunctionHandler(StringExtractorGDBRemote::eServerPacketType_A,
73 &GDBRemoteCommunicationServerCommon::Handle_A);
74 RegisterMemberFunctionHandler(
75 StringExtractorGDBRemote::eServerPacketType_QEnvironment,
76 &GDBRemoteCommunicationServerCommon::Handle_QEnvironment);
77 RegisterMemberFunctionHandler(
78 StringExtractorGDBRemote::eServerPacketType_QEnvironmentHexEncoded,
79 &GDBRemoteCommunicationServerCommon::Handle_QEnvironmentHexEncoded);
80 RegisterMemberFunctionHandler(
81 StringExtractorGDBRemote::eServerPacketType_qfProcessInfo,
82 &GDBRemoteCommunicationServerCommon::Handle_qfProcessInfo);
83 RegisterMemberFunctionHandler(
84 StringExtractorGDBRemote::eServerPacketType_qGroupName,
85 &GDBRemoteCommunicationServerCommon::Handle_qGroupName);
86 RegisterMemberFunctionHandler(
87 StringExtractorGDBRemote::eServerPacketType_qHostInfo,
88 &GDBRemoteCommunicationServerCommon::Handle_qHostInfo);
89 RegisterMemberFunctionHandler(
90 StringExtractorGDBRemote::eServerPacketType_QLaunchArch,
91 &GDBRemoteCommunicationServerCommon::Handle_QLaunchArch);
92 RegisterMemberFunctionHandler(
93 StringExtractorGDBRemote::eServerPacketType_qLaunchSuccess,
94 &GDBRemoteCommunicationServerCommon::Handle_qLaunchSuccess);
95 RegisterMemberFunctionHandler(
96 StringExtractorGDBRemote::eServerPacketType_QListThreadsInStopReply,
97 &GDBRemoteCommunicationServerCommon::Handle_QListThreadsInStopReply);
98 RegisterMemberFunctionHandler(
99 StringExtractorGDBRemote::eServerPacketType_qEcho,
100 &GDBRemoteCommunicationServerCommon::Handle_qEcho);
101 RegisterMemberFunctionHandler(
102 StringExtractorGDBRemote::eServerPacketType_qModuleInfo,
103 &GDBRemoteCommunicationServerCommon::Handle_qModuleInfo);
104 RegisterMemberFunctionHandler(
Pavel Labath2f1fbae2016-09-08 10:07:04 +0000105 StringExtractorGDBRemote::eServerPacketType_jModulesInfo,
106 &GDBRemoteCommunicationServerCommon::Handle_jModulesInfo);
107 RegisterMemberFunctionHandler(
Kate Stoneb9c1b512016-09-06 20:57:50 +0000108 StringExtractorGDBRemote::eServerPacketType_qPlatform_chmod,
109 &GDBRemoteCommunicationServerCommon::Handle_qPlatform_chmod);
110 RegisterMemberFunctionHandler(
111 StringExtractorGDBRemote::eServerPacketType_qPlatform_mkdir,
112 &GDBRemoteCommunicationServerCommon::Handle_qPlatform_mkdir);
113 RegisterMemberFunctionHandler(
114 StringExtractorGDBRemote::eServerPacketType_qPlatform_shell,
115 &GDBRemoteCommunicationServerCommon::Handle_qPlatform_shell);
116 RegisterMemberFunctionHandler(
117 StringExtractorGDBRemote::eServerPacketType_qProcessInfoPID,
118 &GDBRemoteCommunicationServerCommon::Handle_qProcessInfoPID);
119 RegisterMemberFunctionHandler(
120 StringExtractorGDBRemote::eServerPacketType_QSetDetachOnError,
121 &GDBRemoteCommunicationServerCommon::Handle_QSetDetachOnError);
122 RegisterMemberFunctionHandler(
123 StringExtractorGDBRemote::eServerPacketType_QSetSTDERR,
124 &GDBRemoteCommunicationServerCommon::Handle_QSetSTDERR);
125 RegisterMemberFunctionHandler(
126 StringExtractorGDBRemote::eServerPacketType_QSetSTDIN,
127 &GDBRemoteCommunicationServerCommon::Handle_QSetSTDIN);
128 RegisterMemberFunctionHandler(
129 StringExtractorGDBRemote::eServerPacketType_QSetSTDOUT,
130 &GDBRemoteCommunicationServerCommon::Handle_QSetSTDOUT);
131 RegisterMemberFunctionHandler(
132 StringExtractorGDBRemote::eServerPacketType_qSpeedTest,
133 &GDBRemoteCommunicationServerCommon::Handle_qSpeedTest);
134 RegisterMemberFunctionHandler(
135 StringExtractorGDBRemote::eServerPacketType_qsProcessInfo,
136 &GDBRemoteCommunicationServerCommon::Handle_qsProcessInfo);
137 RegisterMemberFunctionHandler(
138 StringExtractorGDBRemote::eServerPacketType_QStartNoAckMode,
139 &GDBRemoteCommunicationServerCommon::Handle_QStartNoAckMode);
140 RegisterMemberFunctionHandler(
141 StringExtractorGDBRemote::eServerPacketType_qSupported,
142 &GDBRemoteCommunicationServerCommon::Handle_qSupported);
143 RegisterMemberFunctionHandler(
144 StringExtractorGDBRemote::eServerPacketType_QThreadSuffixSupported,
145 &GDBRemoteCommunicationServerCommon::Handle_QThreadSuffixSupported);
146 RegisterMemberFunctionHandler(
147 StringExtractorGDBRemote::eServerPacketType_qUserName,
148 &GDBRemoteCommunicationServerCommon::Handle_qUserName);
149 RegisterMemberFunctionHandler(
150 StringExtractorGDBRemote::eServerPacketType_vFile_close,
151 &GDBRemoteCommunicationServerCommon::Handle_vFile_Close);
152 RegisterMemberFunctionHandler(
153 StringExtractorGDBRemote::eServerPacketType_vFile_exists,
154 &GDBRemoteCommunicationServerCommon::Handle_vFile_Exists);
155 RegisterMemberFunctionHandler(
156 StringExtractorGDBRemote::eServerPacketType_vFile_md5,
157 &GDBRemoteCommunicationServerCommon::Handle_vFile_MD5);
158 RegisterMemberFunctionHandler(
159 StringExtractorGDBRemote::eServerPacketType_vFile_mode,
160 &GDBRemoteCommunicationServerCommon::Handle_vFile_Mode);
161 RegisterMemberFunctionHandler(
162 StringExtractorGDBRemote::eServerPacketType_vFile_open,
163 &GDBRemoteCommunicationServerCommon::Handle_vFile_Open);
164 RegisterMemberFunctionHandler(
165 StringExtractorGDBRemote::eServerPacketType_vFile_pread,
166 &GDBRemoteCommunicationServerCommon::Handle_vFile_pRead);
167 RegisterMemberFunctionHandler(
168 StringExtractorGDBRemote::eServerPacketType_vFile_pwrite,
169 &GDBRemoteCommunicationServerCommon::Handle_vFile_pWrite);
170 RegisterMemberFunctionHandler(
171 StringExtractorGDBRemote::eServerPacketType_vFile_size,
172 &GDBRemoteCommunicationServerCommon::Handle_vFile_Size);
173 RegisterMemberFunctionHandler(
174 StringExtractorGDBRemote::eServerPacketType_vFile_stat,
175 &GDBRemoteCommunicationServerCommon::Handle_vFile_Stat);
176 RegisterMemberFunctionHandler(
177 StringExtractorGDBRemote::eServerPacketType_vFile_symlink,
178 &GDBRemoteCommunicationServerCommon::Handle_vFile_symlink);
179 RegisterMemberFunctionHandler(
180 StringExtractorGDBRemote::eServerPacketType_vFile_unlink,
181 &GDBRemoteCommunicationServerCommon::Handle_vFile_unlink);
Tamas Berghammere13c2732015-02-11 10:29:30 +0000182}
183
184//----------------------------------------------------------------------
185// Destructor
186//----------------------------------------------------------------------
Kate Stoneb9c1b512016-09-06 20:57:50 +0000187GDBRemoteCommunicationServerCommon::~GDBRemoteCommunicationServerCommon() {}
Tamas Berghammere13c2732015-02-11 10:29:30 +0000188
189GDBRemoteCommunication::PacketResult
Kate Stoneb9c1b512016-09-06 20:57:50 +0000190GDBRemoteCommunicationServerCommon::Handle_qHostInfo(
191 StringExtractorGDBRemote &packet) {
192 StreamString response;
Tamas Berghammere13c2732015-02-11 10:29:30 +0000193
Kate Stoneb9c1b512016-09-06 20:57:50 +0000194 // $cputype:16777223;cpusubtype:3;ostype:Darwin;vendor:apple;endian:little;ptrsize:8;#00
Tamas Berghammere13c2732015-02-11 10:29:30 +0000195
Kate Stoneb9c1b512016-09-06 20:57:50 +0000196 ArchSpec host_arch(HostInfo::GetArchitecture());
197 const llvm::Triple &host_triple = host_arch.GetTriple();
198 response.PutCString("triple:");
199 response.PutCStringAsRawHex8(host_triple.getTriple().c_str());
200 response.Printf(";ptrsize:%u;", host_arch.GetAddressByteSize());
Tamas Berghammere13c2732015-02-11 10:29:30 +0000201
Kate Stoneb9c1b512016-09-06 20:57:50 +0000202 const char *distribution_id = host_arch.GetDistributionId().AsCString();
203 if (distribution_id) {
204 response.PutCString("distribution_id:");
205 response.PutCStringAsRawHex8(distribution_id);
206 response.PutCString(";");
207 }
Tamas Berghammere13c2732015-02-11 10:29:30 +0000208
Tamas Berghammere13c2732015-02-11 10:29:30 +0000209#if defined(__APPLE__)
Kate Stoneb9c1b512016-09-06 20:57:50 +0000210 // For parity with debugserver, we'll include the vendor key.
211 response.PutCString("vendor:apple;");
Todd Fialae77fce02016-09-04 00:18:56 +0000212
Kate Stoneb9c1b512016-09-06 20:57:50 +0000213 // Send out MachO info.
214 uint32_t cpu = host_arch.GetMachOCPUType();
215 uint32_t sub = host_arch.GetMachOCPUSubType();
216 if (cpu != LLDB_INVALID_CPUTYPE)
217 response.Printf("cputype:%u;", cpu);
218 if (sub != LLDB_INVALID_CPUTYPE)
219 response.Printf("cpusubtype:%u;", sub);
Tamas Berghammere13c2732015-02-11 10:29:30 +0000220
Kate Stoneb9c1b512016-09-06 20:57:50 +0000221 if (cpu == ArchSpec::kCore_arm_any) {
222// Indicate the OS type.
223#if defined(TARGET_OS_TV) && TARGET_OS_TV == 1
224 response.PutCString("ostype:tvos;");
225#elif defined(TARGET_OS_WATCH) && TARGET_OS_WATCH == 1
226 response.PutCString("ostype:watchos;");
Todd Fialae77fce02016-09-04 00:18:56 +0000227#else
Kate Stoneb9c1b512016-09-06 20:57:50 +0000228 response.PutCString("ostype:ios;");
Todd Fialae77fce02016-09-04 00:18:56 +0000229#endif
230
Kate Stoneb9c1b512016-09-06 20:57:50 +0000231 // On arm, we use "synchronous" watchpoints which means the exception is
232 // delivered before the instruction executes.
233 response.PutCString("watchpoint_exceptions_received:before;");
234 } else {
235 response.PutCString("ostype:macosx;");
236 response.Printf("watchpoint_exceptions_received:after;");
237 }
Todd Fialae77fce02016-09-04 00:18:56 +0000238
Tamas Berghammere13c2732015-02-11 10:29:30 +0000239#else
Kate Stoneb9c1b512016-09-06 20:57:50 +0000240 if (host_arch.GetMachine() == llvm::Triple::aarch64 ||
241 host_arch.GetMachine() == llvm::Triple::aarch64_be ||
242 host_arch.GetMachine() == llvm::Triple::arm ||
243 host_arch.GetMachine() == llvm::Triple::armeb ||
244 host_arch.GetMachine() == llvm::Triple::mips64 ||
245 host_arch.GetMachine() == llvm::Triple::mips64el ||
246 host_arch.GetMachine() == llvm::Triple::mips ||
247 host_arch.GetMachine() == llvm::Triple::mipsel)
248 response.Printf("watchpoint_exceptions_received:before;");
249 else
250 response.Printf("watchpoint_exceptions_received:after;");
Tamas Berghammere13c2732015-02-11 10:29:30 +0000251#endif
252
Kate Stoneb9c1b512016-09-06 20:57:50 +0000253 switch (endian::InlHostByteOrder()) {
254 case eByteOrderBig:
255 response.PutCString("endian:big;");
256 break;
257 case eByteOrderLittle:
258 response.PutCString("endian:little;");
259 break;
260 case eByteOrderPDP:
261 response.PutCString("endian:pdp;");
262 break;
263 default:
264 response.PutCString("endian:unknown;");
265 break;
266 }
Tamas Berghammere13c2732015-02-11 10:29:30 +0000267
Kate Stoneb9c1b512016-09-06 20:57:50 +0000268 uint32_t major = UINT32_MAX;
269 uint32_t minor = UINT32_MAX;
270 uint32_t update = UINT32_MAX;
271 if (HostInfo::GetOSVersion(major, minor, update)) {
272 if (major != UINT32_MAX) {
273 response.Printf("os_version:%u", major);
274 if (minor != UINT32_MAX) {
275 response.Printf(".%u", minor);
276 if (update != UINT32_MAX)
277 response.Printf(".%u", update);
278 }
279 response.PutChar(';');
Tamas Berghammere13c2732015-02-11 10:29:30 +0000280 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000281 }
Tamas Berghammere13c2732015-02-11 10:29:30 +0000282
Kate Stoneb9c1b512016-09-06 20:57:50 +0000283 std::string s;
284 if (HostInfo::GetOSBuildString(s)) {
285 response.PutCString("os_build:");
286 response.PutCStringAsRawHex8(s.c_str());
287 response.PutChar(';');
288 }
289 if (HostInfo::GetOSKernelDescription(s)) {
290 response.PutCString("os_kernel:");
291 response.PutCStringAsRawHex8(s.c_str());
292 response.PutChar(';');
293 }
Tamas Berghammere13c2732015-02-11 10:29:30 +0000294
295#if defined(__APPLE__)
296
297#if defined(__arm__) || defined(__arm64__) || defined(__aarch64__)
Kate Stoneb9c1b512016-09-06 20:57:50 +0000298 // For iOS devices, we are connected through a USB Mux so we never pretend
299 // to actually have a hostname as far as the remote lldb that is connecting
300 // to this lldb-platform is concerned
301 response.PutCString("hostname:");
302 response.PutCStringAsRawHex8("127.0.0.1");
303 response.PutChar(';');
304#else // #if defined(__arm__) || defined(__arm64__) || defined(__aarch64__)
305 if (HostInfo::GetHostname(s)) {
306 response.PutCString("hostname:");
307 response.PutCStringAsRawHex8(s.c_str());
Tamas Berghammere13c2732015-02-11 10:29:30 +0000308 response.PutChar(';');
Kate Stoneb9c1b512016-09-06 20:57:50 +0000309 }
310#endif // #if defined(__arm__) || defined(__arm64__) || defined(__aarch64__)
Tamas Berghammere13c2732015-02-11 10:29:30 +0000311
Kate Stoneb9c1b512016-09-06 20:57:50 +0000312#else // #if defined(__APPLE__)
313 if (HostInfo::GetHostname(s)) {
314 response.PutCString("hostname:");
315 response.PutCStringAsRawHex8(s.c_str());
316 response.PutChar(';');
317 }
318#endif // #if defined(__APPLE__)
Tamas Berghammere13c2732015-02-11 10:29:30 +0000319
Kate Stoneb9c1b512016-09-06 20:57:50 +0000320 if (g_default_packet_timeout_sec > 0)
321 response.Printf("default_packet_timeout:%u;", g_default_packet_timeout_sec);
Tamas Berghammer2d52afd2015-02-26 11:37:21 +0000322
Kate Stoneb9c1b512016-09-06 20:57:50 +0000323 return SendPacketNoLock(response.GetString());
Tamas Berghammere13c2732015-02-11 10:29:30 +0000324}
325
326GDBRemoteCommunication::PacketResult
Kate Stoneb9c1b512016-09-06 20:57:50 +0000327GDBRemoteCommunicationServerCommon::Handle_qProcessInfoPID(
328 StringExtractorGDBRemote &packet) {
329 // Packet format: "qProcessInfoPID:%i" where %i is the pid
330 packet.SetFilePos(::strlen("qProcessInfoPID:"));
331 lldb::pid_t pid = packet.GetU32(LLDB_INVALID_PROCESS_ID);
332 if (pid != LLDB_INVALID_PROCESS_ID) {
333 ProcessInstanceInfo proc_info;
334 if (Host::GetProcessInfo(pid, proc_info)) {
335 StreamString response;
336 CreateProcessInfoResponse(proc_info, response);
337 return SendPacketNoLock(response.GetString());
Tamas Berghammere13c2732015-02-11 10:29:30 +0000338 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000339 }
340 return SendErrorResponse(1);
Tamas Berghammere13c2732015-02-11 10:29:30 +0000341}
342
343GDBRemoteCommunication::PacketResult
Kate Stoneb9c1b512016-09-06 20:57:50 +0000344GDBRemoteCommunicationServerCommon::Handle_qfProcessInfo(
345 StringExtractorGDBRemote &packet) {
346 m_proc_infos_index = 0;
347 m_proc_infos.Clear();
Tamas Berghammere13c2732015-02-11 10:29:30 +0000348
Kate Stoneb9c1b512016-09-06 20:57:50 +0000349 ProcessInstanceInfoMatch match_info;
350 packet.SetFilePos(::strlen("qfProcessInfo"));
351 if (packet.GetChar() == ':') {
Zachary Turner54695a32016-08-29 19:58:14 +0000352 llvm::StringRef key;
353 llvm::StringRef value;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000354 while (packet.GetNameColonValue(key, value)) {
355 bool success = true;
356 if (key.equals("name")) {
357 StringExtractor extractor(value);
358 std::string file;
359 extractor.GetHexByteString(file);
Malcolm Parsons771ef6d2016-11-02 20:34:10 +0000360 match_info.GetProcessInfo().GetExecutableFile().SetFile(file, false);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000361 } else if (key.equals("name_match")) {
Pavel Labathc4a33952017-02-20 11:35:33 +0000362 NameMatch name_match = llvm::StringSwitch<NameMatch>(value)
363 .Case("equals", NameMatch::Equals)
364 .Case("starts_with", NameMatch::StartsWith)
365 .Case("ends_with", NameMatch::EndsWith)
366 .Case("contains", NameMatch::Contains)
367 .Case("regex", NameMatch::RegularExpression)
368 .Default(NameMatch::Ignore);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000369 match_info.SetNameMatchType(name_match);
Pavel Labathc4a33952017-02-20 11:35:33 +0000370 if (name_match == NameMatch::Ignore)
Kate Stoneb9c1b512016-09-06 20:57:50 +0000371 return SendErrorResponse(2);
372 } else if (key.equals("pid")) {
373 lldb::pid_t pid = LLDB_INVALID_PROCESS_ID;
374 if (value.getAsInteger(0, pid))
375 return SendErrorResponse(2);
376 match_info.GetProcessInfo().SetProcessID(pid);
377 } else if (key.equals("parent_pid")) {
378 lldb::pid_t pid = LLDB_INVALID_PROCESS_ID;
379 if (value.getAsInteger(0, pid))
380 return SendErrorResponse(2);
381 match_info.GetProcessInfo().SetParentProcessID(pid);
382 } else if (key.equals("uid")) {
383 uint32_t uid = UINT32_MAX;
384 if (value.getAsInteger(0, uid))
385 return SendErrorResponse(2);
386 match_info.GetProcessInfo().SetUserID(uid);
387 } else if (key.equals("gid")) {
388 uint32_t gid = UINT32_MAX;
389 if (value.getAsInteger(0, gid))
390 return SendErrorResponse(2);
391 match_info.GetProcessInfo().SetGroupID(gid);
392 } else if (key.equals("euid")) {
393 uint32_t uid = UINT32_MAX;
394 if (value.getAsInteger(0, uid))
395 return SendErrorResponse(2);
396 match_info.GetProcessInfo().SetEffectiveUserID(uid);
397 } else if (key.equals("egid")) {
398 uint32_t gid = UINT32_MAX;
399 if (value.getAsInteger(0, gid))
400 return SendErrorResponse(2);
401 match_info.GetProcessInfo().SetEffectiveGroupID(gid);
402 } else if (key.equals("all_users")) {
403 match_info.SetMatchAllUsers(
404 Args::StringToBoolean(value, false, &success));
405 } else if (key.equals("triple")) {
406 match_info.GetProcessInfo().GetArchitecture().SetTriple(
407 value.str().c_str(), NULL);
408 } else {
409 success = false;
410 }
411
412 if (!success)
413 return SendErrorResponse(2);
Tamas Berghammere13c2732015-02-11 10:29:30 +0000414 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000415 }
416
417 if (Host::FindProcesses(match_info, m_proc_infos)) {
418 // We found something, return the first item by calling the get
419 // subsequent process info packet handler...
420 return Handle_qsProcessInfo(packet);
421 }
422 return SendErrorResponse(3);
Tamas Berghammere13c2732015-02-11 10:29:30 +0000423}
424
425GDBRemoteCommunication::PacketResult
Kate Stoneb9c1b512016-09-06 20:57:50 +0000426GDBRemoteCommunicationServerCommon::Handle_qsProcessInfo(
427 StringExtractorGDBRemote &packet) {
428 if (m_proc_infos_index < m_proc_infos.GetSize()) {
Tamas Berghammere13c2732015-02-11 10:29:30 +0000429 StreamString response;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000430 CreateProcessInfoResponse(
431 m_proc_infos.GetProcessInfoAtIndex(m_proc_infos_index), response);
432 ++m_proc_infos_index;
Zachary Turner26709df2016-08-27 15:52:29 +0000433 return SendPacketNoLock(response.GetString());
Kate Stoneb9c1b512016-09-06 20:57:50 +0000434 }
435 return SendErrorResponse(4);
Tamas Berghammere13c2732015-02-11 10:29:30 +0000436}
437
438GDBRemoteCommunication::PacketResult
Kate Stoneb9c1b512016-09-06 20:57:50 +0000439GDBRemoteCommunicationServerCommon::Handle_qUserName(
440 StringExtractorGDBRemote &packet) {
441#if !defined(LLDB_DISABLE_POSIX)
442 Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
443 if (log)
444 log->Printf("GDBRemoteCommunicationServerCommon::%s begin", __FUNCTION__);
Tamas Berghammere13c2732015-02-11 10:29:30 +0000445
Kate Stoneb9c1b512016-09-06 20:57:50 +0000446 // Packet format: "qUserName:%i" where %i is the uid
447 packet.SetFilePos(::strlen("qUserName:"));
448 uint32_t uid = packet.GetU32(UINT32_MAX);
449 if (uid != UINT32_MAX) {
450 std::string name;
451 if (HostInfo::LookupUserName(uid, name)) {
452 StreamString response;
453 response.PutCStringAsRawHex8(name.c_str());
454 return SendPacketNoLock(response.GetString());
Tamas Berghammere13c2732015-02-11 10:29:30 +0000455 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000456 }
457 if (log)
458 log->Printf("GDBRemoteCommunicationServerCommon::%s end", __FUNCTION__);
Tamas Berghammere13c2732015-02-11 10:29:30 +0000459#endif
Kate Stoneb9c1b512016-09-06 20:57:50 +0000460 return SendErrorResponse(5);
Tamas Berghammere13c2732015-02-11 10:29:30 +0000461}
462
463GDBRemoteCommunication::PacketResult
Kate Stoneb9c1b512016-09-06 20:57:50 +0000464GDBRemoteCommunicationServerCommon::Handle_qGroupName(
465 StringExtractorGDBRemote &packet) {
466#if !defined(LLDB_DISABLE_POSIX)
467 // Packet format: "qGroupName:%i" where %i is the gid
468 packet.SetFilePos(::strlen("qGroupName:"));
469 uint32_t gid = packet.GetU32(UINT32_MAX);
470 if (gid != UINT32_MAX) {
471 std::string name;
472 if (HostInfo::LookupGroupName(gid, name)) {
473 StreamString response;
474 response.PutCStringAsRawHex8(name.c_str());
475 return SendPacketNoLock(response.GetString());
Tamas Berghammere13c2732015-02-11 10:29:30 +0000476 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000477 }
Tamas Berghammere13c2732015-02-11 10:29:30 +0000478#endif
Kate Stoneb9c1b512016-09-06 20:57:50 +0000479 return SendErrorResponse(6);
Tamas Berghammere13c2732015-02-11 10:29:30 +0000480}
481
482GDBRemoteCommunication::PacketResult
Kate Stoneb9c1b512016-09-06 20:57:50 +0000483GDBRemoteCommunicationServerCommon::Handle_qSpeedTest(
484 StringExtractorGDBRemote &packet) {
485 packet.SetFilePos(::strlen("qSpeedTest:"));
486
487 llvm::StringRef key;
488 llvm::StringRef value;
489 bool success = packet.GetNameColonValue(key, value);
490 if (success && key.equals("response_size")) {
491 uint32_t response_size = 0;
492 if (!value.getAsInteger(0, response_size)) {
493 if (response_size == 0)
494 return SendOKResponse();
495 StreamString response;
496 uint32_t bytes_left = response_size;
497 response.PutCString("data:");
498 while (bytes_left > 0) {
499 if (bytes_left >= 26) {
500 response.PutCString("ABCDEFGHIJKLMNOPQRSTUVWXYZ");
501 bytes_left -= 26;
502 } else {
503 response.Printf("%*.*s;", bytes_left, bytes_left,
504 "ABCDEFGHIJKLMNOPQRSTUVWXYZ");
505 bytes_left = 0;
Tamas Berghammere13c2732015-02-11 10:29:30 +0000506 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000507 }
508 return SendPacketNoLock(response.GetString());
Tamas Berghammere13c2732015-02-11 10:29:30 +0000509 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000510 }
511 return SendErrorResponse(7);
Tamas Berghammere13c2732015-02-11 10:29:30 +0000512}
513
514GDBRemoteCommunication::PacketResult
Kate Stoneb9c1b512016-09-06 20:57:50 +0000515GDBRemoteCommunicationServerCommon::Handle_vFile_Open(
516 StringExtractorGDBRemote &packet) {
517 packet.SetFilePos(::strlen("vFile:open:"));
518 std::string path;
519 packet.GetHexByteStringTerminatedBy(path, ',');
520 if (!path.empty()) {
521 if (packet.GetChar() == ',') {
522 uint32_t flags =
523 File::ConvertOpenOptionsForPOSIXOpen(packet.GetHexMaxU32(false, 0));
524 if (packet.GetChar() == ',') {
525 mode_t mode = packet.GetHexMaxU32(false, 0600);
Zachary Turner97206d52017-05-12 04:51:55 +0000526 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000527 const FileSpec path_spec{path, true};
528 int fd = ::open(path_spec.GetCString(), flags, mode);
529 const int save_errno = fd == -1 ? errno : 0;
Tamas Berghammere13c2732015-02-11 10:29:30 +0000530 StreamString response;
531 response.PutChar('F');
Kate Stoneb9c1b512016-09-06 20:57:50 +0000532 response.Printf("%i", fd);
533 if (save_errno)
534 response.Printf(",%i", save_errno);
Zachary Turner26709df2016-08-27 15:52:29 +0000535 return SendPacketNoLock(response.GetString());
Kate Stoneb9c1b512016-09-06 20:57:50 +0000536 }
Tamas Berghammere13c2732015-02-11 10:29:30 +0000537 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000538 }
539 return SendErrorResponse(18);
Tamas Berghammere13c2732015-02-11 10:29:30 +0000540}
541
542GDBRemoteCommunication::PacketResult
Kate Stoneb9c1b512016-09-06 20:57:50 +0000543GDBRemoteCommunicationServerCommon::Handle_vFile_Close(
544 StringExtractorGDBRemote &packet) {
545 packet.SetFilePos(::strlen("vFile:close:"));
546 int fd = packet.GetS32(-1);
Zachary Turner97206d52017-05-12 04:51:55 +0000547 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000548 int err = -1;
549 int save_errno = 0;
550 if (fd >= 0) {
551 err = close(fd);
552 save_errno = err == -1 ? errno : 0;
553 } else {
554 save_errno = EINVAL;
555 }
556 StreamString response;
557 response.PutChar('F');
558 response.Printf("%i", err);
559 if (save_errno)
560 response.Printf(",%i", save_errno);
561 return SendPacketNoLock(response.GetString());
Tamas Berghammere13c2732015-02-11 10:29:30 +0000562}
563
564GDBRemoteCommunication::PacketResult
Kate Stoneb9c1b512016-09-06 20:57:50 +0000565GDBRemoteCommunicationServerCommon::Handle_vFile_pRead(
566 StringExtractorGDBRemote &packet) {
567#ifdef _WIN32
568 // Not implemented on Windows
569 return SendUnimplementedResponse(
570 "GDBRemoteCommunicationServerCommon::Handle_vFile_pRead() unimplemented");
571#else
572 StreamGDBRemote response;
573 packet.SetFilePos(::strlen("vFile:pread:"));
574 int fd = packet.GetS32(-1);
575 if (packet.GetChar() == ',') {
576 uint64_t count = packet.GetU64(UINT64_MAX);
577 if (packet.GetChar() == ',') {
578 uint64_t offset = packet.GetU64(UINT32_MAX);
579 if (count == UINT64_MAX) {
580 response.Printf("F-1:%i", EINVAL);
Zachary Turner26709df2016-08-27 15:52:29 +0000581 return SendPacketNoLock(response.GetString());
Kate Stoneb9c1b512016-09-06 20:57:50 +0000582 }
583
584 std::string buffer(count, 0);
585 const ssize_t bytes_read = ::pread(fd, &buffer[0], buffer.size(), offset);
586 const int save_errno = bytes_read == -1 ? errno : 0;
587 response.PutChar('F');
588 response.Printf("%zi", bytes_read);
589 if (save_errno)
590 response.Printf(",%i", save_errno);
591 else {
592 response.PutChar(';');
593 response.PutEscapedBytes(&buffer[0], bytes_read);
594 }
595 return SendPacketNoLock(response.GetString());
Tamas Berghammere13c2732015-02-11 10:29:30 +0000596 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000597 }
598 return SendErrorResponse(21);
Tamas Berghammere13c2732015-02-11 10:29:30 +0000599
Tamas Berghammere13c2732015-02-11 10:29:30 +0000600#endif
Kate Stoneb9c1b512016-09-06 20:57:50 +0000601}
Tamas Berghammere13c2732015-02-11 10:29:30 +0000602
Kate Stoneb9c1b512016-09-06 20:57:50 +0000603GDBRemoteCommunication::PacketResult
604GDBRemoteCommunicationServerCommon::Handle_vFile_pWrite(
605 StringExtractorGDBRemote &packet) {
606#ifdef _WIN32
607 return SendUnimplementedResponse("GDBRemoteCommunicationServerCommon::Handle_"
608 "vFile_pWrite() unimplemented");
609#else
610 packet.SetFilePos(::strlen("vFile:pwrite:"));
611
612 StreamGDBRemote response;
613 response.PutChar('F');
614
615 int fd = packet.GetU32(UINT32_MAX);
616 if (packet.GetChar() == ',') {
617 off_t offset = packet.GetU64(UINT32_MAX);
618 if (packet.GetChar() == ',') {
619 std::string buffer;
620 if (packet.GetEscapedBinaryData(buffer)) {
621 const ssize_t bytes_written =
622 ::pwrite(fd, buffer.data(), buffer.size(), offset);
623 const int save_errno = bytes_written == -1 ? errno : 0;
624 response.Printf("%zi", bytes_written);
625 if (save_errno)
626 response.Printf(",%i", save_errno);
627 } else {
628 response.Printf("-1,%i", EINVAL);
629 }
630 return SendPacketNoLock(response.GetString());
631 }
632 }
633 return SendErrorResponse(27);
634#endif
635}
636
637GDBRemoteCommunication::PacketResult
638GDBRemoteCommunicationServerCommon::Handle_vFile_Size(
639 StringExtractorGDBRemote &packet) {
640 packet.SetFilePos(::strlen("vFile:size:"));
641 std::string path;
642 packet.GetHexByteString(path);
643 if (!path.empty()) {
Zachary Turner07db3f72017-03-21 05:47:57 +0000644 uint64_t Size;
645 if (llvm::sys::fs::file_size(path, Size))
646 return SendErrorResponse(5);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000647 StreamString response;
648 response.PutChar('F');
Zachary Turner07db3f72017-03-21 05:47:57 +0000649 response.PutHex64(Size);
650 if (Size == UINT64_MAX) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000651 response.PutChar(',');
Zachary Turner07db3f72017-03-21 05:47:57 +0000652 response.PutHex64(Size); // TODO: replace with Host::GetSyswideErrorCode()
Kate Stoneb9c1b512016-09-06 20:57:50 +0000653 }
Zachary Turner26709df2016-08-27 15:52:29 +0000654 return SendPacketNoLock(response.GetString());
Kate Stoneb9c1b512016-09-06 20:57:50 +0000655 }
656 return SendErrorResponse(22);
Tamas Berghammere13c2732015-02-11 10:29:30 +0000657}
658
659GDBRemoteCommunication::PacketResult
Kate Stoneb9c1b512016-09-06 20:57:50 +0000660GDBRemoteCommunicationServerCommon::Handle_vFile_Mode(
661 StringExtractorGDBRemote &packet) {
662 packet.SetFilePos(::strlen("vFile:mode:"));
663 std::string path;
664 packet.GetHexByteString(path);
665 if (!path.empty()) {
Zachary Turner97206d52017-05-12 04:51:55 +0000666 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000667 const uint32_t mode = File::GetPermissions(FileSpec{path, true}, error);
668 StreamString response;
669 response.Printf("F%u", mode);
670 if (mode == 0 || error.Fail())
671 response.Printf(",%i", (int)error.GetError());
672 return SendPacketNoLock(response.GetString());
673 }
674 return SendErrorResponse(23);
Tamas Berghammere13c2732015-02-11 10:29:30 +0000675}
676
677GDBRemoteCommunication::PacketResult
Kate Stoneb9c1b512016-09-06 20:57:50 +0000678GDBRemoteCommunicationServerCommon::Handle_vFile_Exists(
679 StringExtractorGDBRemote &packet) {
680 packet.SetFilePos(::strlen("vFile:exists:"));
681 std::string path;
682 packet.GetHexByteString(path);
683 if (!path.empty()) {
Zachary Turner07db3f72017-03-21 05:47:57 +0000684 bool retcode = llvm::sys::fs::exists(path);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000685 StreamString response;
686 response.PutChar('F');
687 response.PutChar(',');
688 if (retcode)
689 response.PutChar('1');
Tamas Berghammere13c2732015-02-11 10:29:30 +0000690 else
Kate Stoneb9c1b512016-09-06 20:57:50 +0000691 response.PutChar('0');
692 return SendPacketNoLock(response.GetString());
693 }
694 return SendErrorResponse(24);
Tamas Berghammere13c2732015-02-11 10:29:30 +0000695}
696
697GDBRemoteCommunication::PacketResult
Kate Stoneb9c1b512016-09-06 20:57:50 +0000698GDBRemoteCommunicationServerCommon::Handle_vFile_symlink(
699 StringExtractorGDBRemote &packet) {
700 packet.SetFilePos(::strlen("vFile:symlink:"));
701 std::string dst, src;
702 packet.GetHexByteStringTerminatedBy(dst, ',');
703 packet.GetChar(); // Skip ',' char
704 packet.GetHexByteString(src);
Zachary Turner97206d52017-05-12 04:51:55 +0000705 Status error = FileSystem::Symlink(FileSpec{src, true}, FileSpec{dst, false});
Kate Stoneb9c1b512016-09-06 20:57:50 +0000706 StreamString response;
707 response.Printf("F%u,%u", error.GetError(), error.GetError());
708 return SendPacketNoLock(response.GetString());
Tamas Berghammere13c2732015-02-11 10:29:30 +0000709}
710
711GDBRemoteCommunication::PacketResult
Kate Stoneb9c1b512016-09-06 20:57:50 +0000712GDBRemoteCommunicationServerCommon::Handle_vFile_unlink(
713 StringExtractorGDBRemote &packet) {
714 packet.SetFilePos(::strlen("vFile:unlink:"));
715 std::string path;
716 packet.GetHexByteString(path);
Zachary Turner97206d52017-05-12 04:51:55 +0000717 Status error(llvm::sys::fs::remove(path));
Kate Stoneb9c1b512016-09-06 20:57:50 +0000718 StreamString response;
719 response.Printf("F%u,%u", error.GetError(), error.GetError());
720 return SendPacketNoLock(response.GetString());
721}
722
723GDBRemoteCommunication::PacketResult
724GDBRemoteCommunicationServerCommon::Handle_qPlatform_shell(
725 StringExtractorGDBRemote &packet) {
726 packet.SetFilePos(::strlen("qPlatform_shell:"));
727 std::string path;
728 std::string working_dir;
729 packet.GetHexByteStringTerminatedBy(path, ',');
730 if (!path.empty()) {
731 if (packet.GetChar() == ',') {
732 // FIXME: add timeout to qPlatform_shell packet
733 // uint32_t timeout = packet.GetHexMaxU32(false, 32);
734 uint32_t timeout = 10;
735 if (packet.GetChar() == ',')
736 packet.GetHexByteString(working_dir);
737 int status, signo;
738 std::string output;
Zachary Turner97206d52017-05-12 04:51:55 +0000739 Status err =
Kate Stoneb9c1b512016-09-06 20:57:50 +0000740 Host::RunShellCommand(path.c_str(), FileSpec{working_dir, true},
741 &status, &signo, &output, timeout);
742 StreamGDBRemote response;
743 if (err.Fail()) {
744 response.PutCString("F,");
745 response.PutHex32(UINT32_MAX);
746 } else {
747 response.PutCString("F,");
748 response.PutHex32(status);
749 response.PutChar(',');
750 response.PutHex32(signo);
751 response.PutChar(',');
752 response.PutEscapedBytes(output.c_str(), output.size());
753 }
754 return SendPacketNoLock(response.GetString());
755 }
756 }
757 return SendErrorResponse(24);
758}
759
760GDBRemoteCommunication::PacketResult
761GDBRemoteCommunicationServerCommon::Handle_vFile_Stat(
762 StringExtractorGDBRemote &packet) {
763 return SendUnimplementedResponse(
764 "GDBRemoteCommunicationServerCommon::Handle_vFile_Stat() unimplemented");
765}
766
767GDBRemoteCommunication::PacketResult
768GDBRemoteCommunicationServerCommon::Handle_vFile_MD5(
769 StringExtractorGDBRemote &packet) {
770 packet.SetFilePos(::strlen("vFile:MD5:"));
771 std::string path;
772 packet.GetHexByteString(path);
773 if (!path.empty()) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000774 StreamGDBRemote response;
Zachary Turner076a2592017-03-20 23:54:54 +0000775 auto Result = llvm::sys::fs::md5_contents(path);
776 if (!Result) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000777 response.PutCString("F,");
778 response.PutCString("x");
779 } else {
780 response.PutCString("F,");
Zachary Turner076a2592017-03-20 23:54:54 +0000781 response.PutHex64(Result->low());
782 response.PutHex64(Result->high());
Kate Stoneb9c1b512016-09-06 20:57:50 +0000783 }
784 return SendPacketNoLock(response.GetString());
785 }
786 return SendErrorResponse(25);
787}
788
789GDBRemoteCommunication::PacketResult
790GDBRemoteCommunicationServerCommon::Handle_qPlatform_mkdir(
791 StringExtractorGDBRemote &packet) {
792 packet.SetFilePos(::strlen("qPlatform_mkdir:"));
793 mode_t mode = packet.GetHexMaxU32(false, UINT32_MAX);
794 if (packet.GetChar() == ',') {
Tamas Berghammere13c2732015-02-11 10:29:30 +0000795 std::string path;
796 packet.GetHexByteString(path);
Zachary Turner97206d52017-05-12 04:51:55 +0000797 Status error(llvm::sys::fs::create_directory(path, mode));
Oleksiy Vyalov6801be32015-02-25 22:15:44 +0000798
799 StreamGDBRemote response;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000800 response.Printf("F%u", error.GetError());
Oleksiy Vyalov6801be32015-02-25 22:15:44 +0000801
Zachary Turner26709df2016-08-27 15:52:29 +0000802 return SendPacketNoLock(response.GetString());
Kate Stoneb9c1b512016-09-06 20:57:50 +0000803 }
804 return SendErrorResponse(20);
Oleksiy Vyalov6801be32015-02-25 22:15:44 +0000805}
806
Kate Stoneb9c1b512016-09-06 20:57:50 +0000807GDBRemoteCommunication::PacketResult
808GDBRemoteCommunicationServerCommon::Handle_qPlatform_chmod(
809 StringExtractorGDBRemote &packet) {
810 packet.SetFilePos(::strlen("qPlatform_chmod:"));
811
Zachary Turner6934e0a2017-03-19 05:49:43 +0000812 auto perms =
813 static_cast<llvm::sys::fs::perms>(packet.GetHexMaxU32(false, UINT32_MAX));
Kate Stoneb9c1b512016-09-06 20:57:50 +0000814 if (packet.GetChar() == ',') {
815 std::string path;
816 packet.GetHexByteString(path);
Zachary Turner97206d52017-05-12 04:51:55 +0000817 Status error(llvm::sys::fs::setPermissions(path, perms));
Kate Stoneb9c1b512016-09-06 20:57:50 +0000818
819 StreamGDBRemote response;
820 response.Printf("F%u", error.GetError());
821
822 return SendPacketNoLock(response.GetString());
823 }
824 return SendErrorResponse(19);
Tamas Berghammere13c2732015-02-11 10:29:30 +0000825}
826
Kate Stoneb9c1b512016-09-06 20:57:50 +0000827GDBRemoteCommunication::PacketResult
828GDBRemoteCommunicationServerCommon::Handle_qSupported(
829 StringExtractorGDBRemote &packet) {
830 StreamGDBRemote response;
Tamas Berghammere13c2732015-02-11 10:29:30 +0000831
Kate Stoneb9c1b512016-09-06 20:57:50 +0000832 // Features common to lldb-platform and llgs.
833 uint32_t max_packet_size = 128 * 1024; // 128KBytes is a reasonable max packet
834 // size--debugger can always use less
835 response.Printf("PacketSize=%x", max_packet_size);
Tamas Berghammere13c2732015-02-11 10:29:30 +0000836
Kate Stoneb9c1b512016-09-06 20:57:50 +0000837 response.PutCString(";QStartNoAckMode+");
838 response.PutCString(";QThreadSuffixSupported+");
839 response.PutCString(";QListThreadsInStopReply+");
840 response.PutCString(";qEcho+");
Kamil Rytarowskic93408a2017-03-21 17:27:59 +0000841#if defined(__linux__) || defined(__NetBSD__)
Pavel Labath4a705e72017-02-24 09:29:14 +0000842 response.PutCString(";QPassSignals+");
Kate Stoneb9c1b512016-09-06 20:57:50 +0000843 response.PutCString(";qXfer:auxv:read+");
Tamas Berghammere13c2732015-02-11 10:29:30 +0000844#endif
Tamas Berghammere13c2732015-02-11 10:29:30 +0000845
Kate Stoneb9c1b512016-09-06 20:57:50 +0000846 return SendPacketNoLock(response.GetString());
Tamas Berghammere13c2732015-02-11 10:29:30 +0000847}
Tamas Berghammer7cb18bf2015-03-24 11:15:23 +0000848
Kate Stoneb9c1b512016-09-06 20:57:50 +0000849GDBRemoteCommunication::PacketResult
850GDBRemoteCommunicationServerCommon::Handle_QThreadSuffixSupported(
851 StringExtractorGDBRemote &packet) {
852 m_thread_suffix_supported = true;
853 return SendOKResponse();
854}
855
856GDBRemoteCommunication::PacketResult
857GDBRemoteCommunicationServerCommon::Handle_QListThreadsInStopReply(
858 StringExtractorGDBRemote &packet) {
859 m_list_threads_in_stop_reply = true;
860 return SendOKResponse();
861}
862
863GDBRemoteCommunication::PacketResult
864GDBRemoteCommunicationServerCommon::Handle_QSetDetachOnError(
865 StringExtractorGDBRemote &packet) {
866 packet.SetFilePos(::strlen("QSetDetachOnError:"));
867 if (packet.GetU32(0))
868 m_process_launch_info.GetFlags().Set(eLaunchFlagDetachOnError);
869 else
870 m_process_launch_info.GetFlags().Clear(eLaunchFlagDetachOnError);
871 return SendOKResponse();
872}
873
874GDBRemoteCommunication::PacketResult
875GDBRemoteCommunicationServerCommon::Handle_QStartNoAckMode(
876 StringExtractorGDBRemote &packet) {
877 // Send response first before changing m_send_acks to we ack this packet
878 PacketResult packet_result = SendOKResponse();
879 m_send_acks = false;
880 return packet_result;
881}
882
883GDBRemoteCommunication::PacketResult
884GDBRemoteCommunicationServerCommon::Handle_QSetSTDIN(
885 StringExtractorGDBRemote &packet) {
886 packet.SetFilePos(::strlen("QSetSTDIN:"));
887 FileAction file_action;
888 std::string path;
889 packet.GetHexByteString(path);
890 const bool read = true;
891 const bool write = false;
892 if (file_action.Open(STDIN_FILENO, FileSpec{path, false}, read, write)) {
893 m_process_launch_info.AppendFileAction(file_action);
894 return SendOKResponse();
895 }
896 return SendErrorResponse(15);
897}
898
899GDBRemoteCommunication::PacketResult
900GDBRemoteCommunicationServerCommon::Handle_QSetSTDOUT(
901 StringExtractorGDBRemote &packet) {
902 packet.SetFilePos(::strlen("QSetSTDOUT:"));
903 FileAction file_action;
904 std::string path;
905 packet.GetHexByteString(path);
906 const bool read = false;
907 const bool write = true;
908 if (file_action.Open(STDOUT_FILENO, FileSpec{path, false}, read, write)) {
909 m_process_launch_info.AppendFileAction(file_action);
910 return SendOKResponse();
911 }
912 return SendErrorResponse(16);
913}
914
915GDBRemoteCommunication::PacketResult
916GDBRemoteCommunicationServerCommon::Handle_QSetSTDERR(
917 StringExtractorGDBRemote &packet) {
918 packet.SetFilePos(::strlen("QSetSTDERR:"));
919 FileAction file_action;
920 std::string path;
921 packet.GetHexByteString(path);
922 const bool read = false;
923 const bool write = true;
924 if (file_action.Open(STDERR_FILENO, FileSpec{path, false}, read, write)) {
925 m_process_launch_info.AppendFileAction(file_action);
926 return SendOKResponse();
927 }
928 return SendErrorResponse(17);
929}
930
931GDBRemoteCommunication::PacketResult
932GDBRemoteCommunicationServerCommon::Handle_qLaunchSuccess(
933 StringExtractorGDBRemote &packet) {
934 if (m_process_launch_error.Success())
935 return SendOKResponse();
936 StreamString response;
937 response.PutChar('E');
938 response.PutCString(m_process_launch_error.AsCString("<unknown error>"));
939 return SendPacketNoLock(response.GetString());
940}
941
942GDBRemoteCommunication::PacketResult
943GDBRemoteCommunicationServerCommon::Handle_QEnvironment(
944 StringExtractorGDBRemote &packet) {
945 packet.SetFilePos(::strlen("QEnvironment:"));
946 const uint32_t bytes_left = packet.GetBytesLeft();
947 if (bytes_left > 0) {
Zachary Turnerecbb0bb2016-09-19 17:54:06 +0000948 m_process_launch_info.GetEnvironmentEntries().AppendArgument(
949 llvm::StringRef::withNullAsEmpty(packet.Peek()));
Kate Stoneb9c1b512016-09-06 20:57:50 +0000950 return SendOKResponse();
951 }
952 return SendErrorResponse(12);
953}
954
955GDBRemoteCommunication::PacketResult
956GDBRemoteCommunicationServerCommon::Handle_QEnvironmentHexEncoded(
957 StringExtractorGDBRemote &packet) {
958 packet.SetFilePos(::strlen("QEnvironmentHexEncoded:"));
959 const uint32_t bytes_left = packet.GetBytesLeft();
960 if (bytes_left > 0) {
961 std::string str;
962 packet.GetHexByteString(str);
Zachary Turnerecbb0bb2016-09-19 17:54:06 +0000963 m_process_launch_info.GetEnvironmentEntries().AppendArgument(str);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000964 return SendOKResponse();
965 }
966 return SendErrorResponse(12);
967}
968
969GDBRemoteCommunication::PacketResult
970GDBRemoteCommunicationServerCommon::Handle_QLaunchArch(
971 StringExtractorGDBRemote &packet) {
972 packet.SetFilePos(::strlen("QLaunchArch:"));
973 const uint32_t bytes_left = packet.GetBytesLeft();
974 if (bytes_left > 0) {
975 const char *arch_triple = packet.Peek();
976 ArchSpec arch_spec(arch_triple, NULL);
977 m_process_launch_info.SetArchitecture(arch_spec);
978 return SendOKResponse();
979 }
980 return SendErrorResponse(13);
981}
982
983GDBRemoteCommunication::PacketResult
984GDBRemoteCommunicationServerCommon::Handle_A(StringExtractorGDBRemote &packet) {
985 // The 'A' packet is the most over designed packet ever here with
986 // redundant argument indexes, redundant argument lengths and needed hex
987 // encoded argument string values. Really all that is needed is a comma
988 // separated hex encoded argument value list, but we will stay true to the
989 // documented version of the 'A' packet here...
990
991 Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
992 int actual_arg_index = 0;
993
994 packet.SetFilePos(1); // Skip the 'A'
995 bool success = true;
996 while (success && packet.GetBytesLeft() > 0) {
997 // Decode the decimal argument string length. This length is the
998 // number of hex nibbles in the argument string value.
999 const uint32_t arg_len = packet.GetU32(UINT32_MAX);
1000 if (arg_len == UINT32_MAX)
1001 success = false;
1002 else {
1003 // Make sure the argument hex string length is followed by a comma
1004 if (packet.GetChar() != ',')
1005 success = false;
1006 else {
1007 // Decode the argument index. We ignore this really because
1008 // who would really send down the arguments in a random order???
1009 const uint32_t arg_idx = packet.GetU32(UINT32_MAX);
1010 if (arg_idx == UINT32_MAX)
1011 success = false;
1012 else {
1013 // Make sure the argument index is followed by a comma
1014 if (packet.GetChar() != ',')
1015 success = false;
1016 else {
1017 // Decode the argument string value from hex bytes
1018 // back into a UTF8 string and make sure the length
1019 // matches the one supplied in the packet
1020 std::string arg;
1021 if (packet.GetHexByteStringFixedLength(arg, arg_len) !=
1022 (arg_len / 2))
1023 success = false;
1024 else {
1025 // If there are any bytes left
1026 if (packet.GetBytesLeft()) {
1027 if (packet.GetChar() != ',')
1028 success = false;
1029 }
1030
1031 if (success) {
1032 if (arg_idx == 0)
Malcolm Parsons771ef6d2016-11-02 20:34:10 +00001033 m_process_launch_info.GetExecutableFile().SetFile(arg, false);
Zachary Turnerecbb0bb2016-09-19 17:54:06 +00001034 m_process_launch_info.GetArguments().AppendArgument(arg);
Kate Stoneb9c1b512016-09-06 20:57:50 +00001035 if (log)
1036 log->Printf("LLGSPacketHandler::%s added arg %d: \"%s\"",
1037 __FUNCTION__, actual_arg_index, arg.c_str());
1038 ++actual_arg_index;
1039 }
1040 }
1041 }
1042 }
1043 }
1044 }
1045 }
1046
1047 if (success) {
1048 m_process_launch_error = LaunchProcess();
1049 if (m_process_launch_info.GetProcessID() != LLDB_INVALID_PROCESS_ID) {
1050 return SendOKResponse();
1051 } else {
1052 Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS));
1053 if (log)
1054 log->Printf("LLGSPacketHandler::%s failed to launch exe: %s",
1055 __FUNCTION__, m_process_launch_error.AsCString());
1056 }
1057 }
1058 return SendErrorResponse(8);
1059}
1060
1061GDBRemoteCommunication::PacketResult
1062GDBRemoteCommunicationServerCommon::Handle_qEcho(
1063 StringExtractorGDBRemote &packet) {
1064 // Just echo back the exact same packet for qEcho...
1065 return SendPacketNoLock(packet.GetStringRef());
1066}
1067
1068GDBRemoteCommunication::PacketResult
1069GDBRemoteCommunicationServerCommon::Handle_qModuleInfo(
1070 StringExtractorGDBRemote &packet) {
1071 packet.SetFilePos(::strlen("qModuleInfo:"));
1072
1073 std::string module_path;
1074 packet.GetHexByteStringTerminatedBy(module_path, ';');
1075 if (module_path.empty())
1076 return SendErrorResponse(1);
1077
1078 if (packet.GetChar() != ';')
1079 return SendErrorResponse(2);
1080
1081 std::string triple;
1082 packet.GetHexByteString(triple);
Kate Stoneb9c1b512016-09-06 20:57:50 +00001083
Pavel Labath2f1fbae2016-09-08 10:07:04 +00001084 ModuleSpec matched_module_spec = GetModuleInfo(module_path, triple);
1085 if (!matched_module_spec.GetFileSpec())
Kate Stoneb9c1b512016-09-06 20:57:50 +00001086 return SendErrorResponse(3);
1087
Kate Stoneb9c1b512016-09-06 20:57:50 +00001088 const auto file_offset = matched_module_spec.GetObjectOffset();
1089 const auto file_size = matched_module_spec.GetObjectSize();
1090 const auto uuid_str = matched_module_spec.GetUUID().GetAsString("");
1091
1092 StreamGDBRemote response;
1093
1094 if (uuid_str.empty()) {
Zachary Turner076a2592017-03-20 23:54:54 +00001095 auto Result = llvm::sys::fs::md5_contents(matched_module_spec.GetFileSpec().GetPath());
1096 if (!Result)
Kate Stoneb9c1b512016-09-06 20:57:50 +00001097 return SendErrorResponse(5);
1098 response.PutCString("md5:");
Zachary Turner076a2592017-03-20 23:54:54 +00001099 response.PutCStringAsRawHex8(Result->digest().c_str());
Kate Stoneb9c1b512016-09-06 20:57:50 +00001100 } else {
1101 response.PutCString("uuid:");
1102 response.PutCStringAsRawHex8(uuid_str.c_str());
1103 }
1104 response.PutChar(';');
1105
1106 const auto &module_arch = matched_module_spec.GetArchitecture();
1107 response.PutCString("triple:");
1108 response.PutCStringAsRawHex8(module_arch.GetTriple().getTriple().c_str());
1109 response.PutChar(';');
1110
1111 response.PutCString("file_path:");
Pavel Labath2f1fbae2016-09-08 10:07:04 +00001112 response.PutCStringAsRawHex8(matched_module_spec.GetFileSpec().GetCString());
Kate Stoneb9c1b512016-09-06 20:57:50 +00001113 response.PutChar(';');
1114 response.PutCString("file_offset:");
1115 response.PutHex64(file_offset);
1116 response.PutChar(';');
1117 response.PutCString("file_size:");
1118 response.PutHex64(file_size);
1119 response.PutChar(';');
1120
1121 return SendPacketNoLock(response.GetString());
1122}
1123
Pavel Labath2f1fbae2016-09-08 10:07:04 +00001124GDBRemoteCommunication::PacketResult
1125GDBRemoteCommunicationServerCommon::Handle_jModulesInfo(
1126 StringExtractorGDBRemote &packet) {
1127 packet.SetFilePos(::strlen("jModulesInfo:"));
1128
1129 StructuredData::ObjectSP object_sp = StructuredData::ParseJSON(packet.Peek());
1130 if (!object_sp)
1131 return SendErrorResponse(1);
1132
1133 StructuredData::Array *packet_array = object_sp->GetAsArray();
1134 if (!packet_array)
1135 return SendErrorResponse(2);
1136
1137 JSONArray::SP response_array_sp = std::make_shared<JSONArray>();
1138 for (size_t i = 0; i < packet_array->GetSize(); ++i) {
1139 StructuredData::Dictionary *query =
1140 packet_array->GetItemAtIndex(i)->GetAsDictionary();
1141 if (!query)
1142 continue;
1143 std::string file, triple;
1144 if (!query->GetValueForKeyAsString("file", file) ||
1145 !query->GetValueForKeyAsString("triple", triple))
1146 continue;
1147
1148 ModuleSpec matched_module_spec = GetModuleInfo(file, triple);
1149 if (!matched_module_spec.GetFileSpec())
1150 continue;
1151
1152 const auto file_offset = matched_module_spec.GetObjectOffset();
1153 const auto file_size = matched_module_spec.GetObjectSize();
1154 const auto uuid_str = matched_module_spec.GetUUID().GetAsString("");
1155
1156 if (uuid_str.empty())
1157 continue;
1158
1159 JSONObject::SP response = std::make_shared<JSONObject>();
1160 response_array_sp->AppendObject(response);
1161 response->SetObject("uuid", std::make_shared<JSONString>(uuid_str));
1162 response->SetObject(
1163 "triple",
1164 std::make_shared<JSONString>(
1165 matched_module_spec.GetArchitecture().GetTriple().getTriple()));
1166 response->SetObject("file_path",
1167 std::make_shared<JSONString>(
1168 matched_module_spec.GetFileSpec().GetPath()));
1169 response->SetObject("file_offset",
1170 std::make_shared<JSONNumber>(file_offset));
1171 response->SetObject("file_size", std::make_shared<JSONNumber>(file_size));
1172 }
1173
1174 StreamString response;
1175 response_array_sp->Write(response);
1176 StreamGDBRemote escaped_response;
Zachary Turnerc1564272016-11-16 21:15:24 +00001177 escaped_response.PutEscapedBytes(response.GetString().data(),
1178 response.GetSize());
Pavel Labath2f1fbae2016-09-08 10:07:04 +00001179 return SendPacketNoLock(escaped_response.GetString());
1180}
1181
Kate Stoneb9c1b512016-09-06 20:57:50 +00001182void GDBRemoteCommunicationServerCommon::CreateProcessInfoResponse(
1183 const ProcessInstanceInfo &proc_info, StreamString &response) {
1184 response.Printf(
1185 "pid:%" PRIu64 ";ppid:%" PRIu64 ";uid:%i;gid:%i;euid:%i;egid:%i;",
1186 proc_info.GetProcessID(), proc_info.GetParentProcessID(),
1187 proc_info.GetUserID(), proc_info.GetGroupID(),
1188 proc_info.GetEffectiveUserID(), proc_info.GetEffectiveGroupID());
1189 response.PutCString("name:");
1190 response.PutCStringAsRawHex8(proc_info.GetExecutableFile().GetCString());
1191 response.PutChar(';');
1192 const ArchSpec &proc_arch = proc_info.GetArchitecture();
1193 if (proc_arch.IsValid()) {
1194 const llvm::Triple &proc_triple = proc_arch.GetTriple();
1195 response.PutCString("triple:");
1196 response.PutCStringAsRawHex8(proc_triple.getTriple().c_str());
1197 response.PutChar(';');
1198 }
1199}
1200
1201void GDBRemoteCommunicationServerCommon::
1202 CreateProcessInfoResponse_DebugServerStyle(
1203 const ProcessInstanceInfo &proc_info, StreamString &response) {
1204 response.Printf("pid:%" PRIx64 ";parent-pid:%" PRIx64
1205 ";real-uid:%x;real-gid:%x;effective-uid:%x;effective-gid:%x;",
1206 proc_info.GetProcessID(), proc_info.GetParentProcessID(),
1207 proc_info.GetUserID(), proc_info.GetGroupID(),
1208 proc_info.GetEffectiveUserID(),
1209 proc_info.GetEffectiveGroupID());
1210
1211 const ArchSpec &proc_arch = proc_info.GetArchitecture();
1212 if (proc_arch.IsValid()) {
1213 const llvm::Triple &proc_triple = proc_arch.GetTriple();
1214#if defined(__APPLE__)
1215 // We'll send cputype/cpusubtype.
1216 const uint32_t cpu_type = proc_arch.GetMachOCPUType();
1217 if (cpu_type != 0)
1218 response.Printf("cputype:%" PRIx32 ";", cpu_type);
1219
1220 const uint32_t cpu_subtype = proc_arch.GetMachOCPUSubType();
1221 if (cpu_subtype != 0)
1222 response.Printf("cpusubtype:%" PRIx32 ";", cpu_subtype);
1223
1224 const std::string vendor = proc_triple.getVendorName();
1225 if (!vendor.empty())
1226 response.Printf("vendor:%s;", vendor.c_str());
Tamas Berghammer7cb18bf2015-03-24 11:15:23 +00001227#else
Kate Stoneb9c1b512016-09-06 20:57:50 +00001228 // We'll send the triple.
1229 response.PutCString("triple:");
1230 response.PutCStringAsRawHex8(proc_triple.getTriple().c_str());
1231 response.PutChar(';');
1232#endif
1233 std::string ostype = proc_triple.getOSName();
1234 // Adjust so ostype reports ios for Apple/ARM and Apple/ARM64.
1235 if (proc_triple.getVendor() == llvm::Triple::Apple) {
1236 switch (proc_triple.getArch()) {
1237 case llvm::Triple::arm:
1238 case llvm::Triple::thumb:
1239 case llvm::Triple::aarch64:
1240 ostype = "ios";
1241 break;
1242 default:
1243 // No change.
1244 break;
1245 }
1246 }
1247 response.Printf("ostype:%s;", ostype.c_str());
1248
1249 switch (proc_arch.GetByteOrder()) {
1250 case lldb::eByteOrderLittle:
1251 response.PutCString("endian:little;");
1252 break;
1253 case lldb::eByteOrderBig:
1254 response.PutCString("endian:big;");
1255 break;
1256 case lldb::eByteOrderPDP:
1257 response.PutCString("endian:pdp;");
1258 break;
1259 default:
1260 // Nothing.
1261 break;
1262 }
Nitesh Jain8999edf2016-10-12 10:21:09 +00001263 // In case of MIPS64, pointer size is depend on ELF ABI
1264 // For N32 the pointer size is 4 and for N64 it is 8
1265 std::string abi = proc_arch.GetTargetABI();
1266 if (!abi.empty())
1267 response.Printf("elf_abi:%s;", abi.c_str());
1268 response.Printf("ptrsize:%d;", proc_arch.GetAddressByteSize());
Kate Stoneb9c1b512016-09-06 20:57:50 +00001269 }
1270}
1271
1272FileSpec GDBRemoteCommunicationServerCommon::FindModuleFile(
1273 const std::string &module_path, const ArchSpec &arch) {
1274#ifdef __ANDROID__
1275 return HostInfoAndroid::ResolveLibraryPath(module_path, arch);
1276#else
Malcolm Parsons771ef6d2016-11-02 20:34:10 +00001277 return FileSpec(module_path, true);
Tamas Berghammer7cb18bf2015-03-24 11:15:23 +00001278#endif
1279}
Pavel Labath2f1fbae2016-09-08 10:07:04 +00001280
1281ModuleSpec GDBRemoteCommunicationServerCommon::GetModuleInfo(
1282 const std::string &module_path, const std::string &triple) {
1283 ArchSpec arch(triple.c_str());
1284
Malcolm Parsons771ef6d2016-11-02 20:34:10 +00001285 const FileSpec req_module_path_spec(module_path, true);
Pavel Labath2f1fbae2016-09-08 10:07:04 +00001286 const FileSpec module_path_spec =
1287 FindModuleFile(req_module_path_spec.GetPath(), arch);
1288 const ModuleSpec module_spec(module_path_spec, arch);
1289
1290 ModuleSpecList module_specs;
1291 if (!ObjectFile::GetModuleSpecifications(module_path_spec, 0, 0,
1292 module_specs))
1293 return ModuleSpec();
1294
1295 ModuleSpec matched_module_spec;
1296 if (!module_specs.FindMatchingModuleSpec(module_spec, matched_module_spec))
1297 return ModuleSpec();
1298
1299 return matched_module_spec;
1300}