1 //===-- ProcessGDBRemote.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 "lldb/Host/Config.h"
11 
12 // C Includes
13 #include <errno.h>
14 #include <stdlib.h>
15 #ifndef LLDB_DISABLE_POSIX
16 #include <netinet/in.h>
17 #include <sys/mman.h> // for mmap
18 #include <sys/socket.h>
19 #endif
20 #include <sys/stat.h>
21 #include <sys/types.h>
22 #include <time.h>
23 
24 // C++ Includes
25 #include <algorithm>
26 #include <map>
27 #include <mutex>
28 #include <sstream>
29 
30 #include "lldb/Breakpoint/Watchpoint.h"
31 #include "lldb/Core/ArchSpec.h"
32 #include "lldb/Core/Debugger.h"
33 #include "lldb/Core/Module.h"
34 #include "lldb/Core/ModuleSpec.h"
35 #include "lldb/Core/PluginManager.h"
36 #include "lldb/Core/State.h"
37 #include "lldb/Core/StreamFile.h"
38 #include "lldb/Core/Value.h"
39 #include "lldb/DataFormatters/FormatManager.h"
40 #include "lldb/Host/ConnectionFileDescriptor.h"
41 #include "lldb/Host/FileSystem.h"
42 #include "lldb/Host/HostThread.h"
43 #include "lldb/Host/PseudoTerminal.h"
44 #include "lldb/Host/StringConvert.h"
45 #include "lldb/Host/Symbols.h"
46 #include "lldb/Host/ThreadLauncher.h"
47 #include "lldb/Host/XML.h"
48 #include "lldb/Interpreter/Args.h"
49 #include "lldb/Interpreter/CommandInterpreter.h"
50 #include "lldb/Interpreter/CommandObject.h"
51 #include "lldb/Interpreter/CommandObjectMultiword.h"
52 #include "lldb/Interpreter/CommandReturnObject.h"
53 #include "lldb/Interpreter/OptionGroupBoolean.h"
54 #include "lldb/Interpreter/OptionGroupUInt64.h"
55 #include "lldb/Interpreter/OptionValueProperties.h"
56 #include "lldb/Interpreter/Options.h"
57 #include "lldb/Interpreter/Property.h"
58 #include "lldb/Symbol/ObjectFile.h"
59 #include "lldb/Target/ABI.h"
60 #include "lldb/Target/DynamicLoader.h"
61 #include "lldb/Target/SystemRuntime.h"
62 #include "lldb/Target/Target.h"
63 #include "lldb/Target/TargetList.h"
64 #include "lldb/Target/ThreadPlanCallFunction.h"
65 #include "lldb/Utility/CleanUp.h"
66 #include "lldb/Utility/FileSpec.h"
67 #include "lldb/Utility/StreamString.h"
68 #include "lldb/Utility/Timer.h"
69 
70 // Project includes
71 #include "GDBRemoteRegisterContext.h"
72 #include "Plugins/Platform/MacOSX/PlatformRemoteiOS.h"
73 #include "Plugins/Process/Utility/GDBRemoteSignals.h"
74 #include "Plugins/Process/Utility/InferiorCallPOSIX.h"
75 #include "Plugins/Process/Utility/StopInfoMachException.h"
76 #include "ProcessGDBRemote.h"
77 #include "ProcessGDBRemoteLog.h"
78 #include "ThreadGDBRemote.h"
79 #include "Utility/StringExtractorGDBRemote.h"
80 #include "lldb/Host/Host.h"
81 
82 #include "llvm/ADT/StringSwitch.h"
83 #include "llvm/Support/Threading.h"
84 #include "llvm/Support/raw_ostream.h"
85 
86 #define DEBUGSERVER_BASENAME "debugserver"
87 using namespace lldb;
88 using namespace lldb_private;
89 using namespace lldb_private::process_gdb_remote;
90 
91 namespace lldb {
92 // Provide a function that can easily dump the packet history if we know a
93 // ProcessGDBRemote * value (which we can get from logs or from debugging).
94 // We need the function in the lldb namespace so it makes it into the final
95 // executable since the LLDB shared library only exports stuff in the lldb
96 // namespace. This allows you to attach with a debugger and call this
97 // function and get the packet history dumped to a file.
98 void DumpProcessGDBRemotePacketHistory(void *p, const char *path) {
99   StreamFile strm;
100   Status error(strm.GetFile().Open(path, File::eOpenOptionWrite |
101                                              File::eOpenOptionCanCreate));
102   if (error.Success())
103     ((ProcessGDBRemote *)p)->GetGDBRemote().DumpHistory(strm);
104 }
105 }
106 
107 namespace {
108 
109 static PropertyDefinition g_properties[] = {
110     {"packet-timeout", OptionValue::eTypeUInt64, true, 1, NULL, NULL,
111      "Specify the default packet timeout in seconds."},
112     {"target-definition-file", OptionValue::eTypeFileSpec, true, 0, NULL, NULL,
113      "The file that provides the description for remote target registers."},
114     {NULL, OptionValue::eTypeInvalid, false, 0, NULL, NULL, NULL}};
115 
116 enum { ePropertyPacketTimeout, ePropertyTargetDefinitionFile };
117 
118 class PluginProperties : public Properties {
119 public:
120   static ConstString GetSettingName() {
121     return ProcessGDBRemote::GetPluginNameStatic();
122   }
123 
124   PluginProperties() : Properties() {
125     m_collection_sp.reset(new OptionValueProperties(GetSettingName()));
126     m_collection_sp->Initialize(g_properties);
127   }
128 
129   virtual ~PluginProperties() {}
130 
131   uint64_t GetPacketTimeout() {
132     const uint32_t idx = ePropertyPacketTimeout;
133     return m_collection_sp->GetPropertyAtIndexAsUInt64(
134         NULL, idx, g_properties[idx].default_uint_value);
135   }
136 
137   bool SetPacketTimeout(uint64_t timeout) {
138     const uint32_t idx = ePropertyPacketTimeout;
139     return m_collection_sp->SetPropertyAtIndexAsUInt64(NULL, idx, timeout);
140   }
141 
142   FileSpec GetTargetDefinitionFile() const {
143     const uint32_t idx = ePropertyTargetDefinitionFile;
144     return m_collection_sp->GetPropertyAtIndexAsFileSpec(NULL, idx);
145   }
146 };
147 
148 typedef std::shared_ptr<PluginProperties> ProcessKDPPropertiesSP;
149 
150 static const ProcessKDPPropertiesSP &GetGlobalPluginProperties() {
151   static ProcessKDPPropertiesSP g_settings_sp;
152   if (!g_settings_sp)
153     g_settings_sp.reset(new PluginProperties());
154   return g_settings_sp;
155 }
156 
157 } // anonymous namespace end
158 
159 // TODO Randomly assigning a port is unsafe.  We should get an unused
160 // ephemeral port from the kernel and make sure we reserve it before passing
161 // it to debugserver.
162 
163 #if defined(__APPLE__)
164 #define LOW_PORT (IPPORT_RESERVED)
165 #define HIGH_PORT (IPPORT_HIFIRSTAUTO)
166 #else
167 #define LOW_PORT (1024u)
168 #define HIGH_PORT (49151u)
169 #endif
170 
171 #if defined(__APPLE__) &&                                                      \
172     (defined(__arm__) || defined(__arm64__) || defined(__aarch64__))
173 static bool rand_initialized = false;
174 
175 static inline uint16_t get_random_port() {
176   if (!rand_initialized) {
177     time_t seed = time(NULL);
178 
179     rand_initialized = true;
180     srand(seed);
181   }
182   return (rand() % (HIGH_PORT - LOW_PORT)) + LOW_PORT;
183 }
184 #endif
185 
186 ConstString ProcessGDBRemote::GetPluginNameStatic() {
187   static ConstString g_name("gdb-remote");
188   return g_name;
189 }
190 
191 const char *ProcessGDBRemote::GetPluginDescriptionStatic() {
192   return "GDB Remote protocol based debugging plug-in.";
193 }
194 
195 void ProcessGDBRemote::Terminate() {
196   PluginManager::UnregisterPlugin(ProcessGDBRemote::CreateInstance);
197 }
198 
199 lldb::ProcessSP
200 ProcessGDBRemote::CreateInstance(lldb::TargetSP target_sp,
201                                  ListenerSP listener_sp,
202                                  const FileSpec *crash_file_path) {
203   lldb::ProcessSP process_sp;
204   if (crash_file_path == NULL)
205     process_sp.reset(new ProcessGDBRemote(target_sp, listener_sp));
206   return process_sp;
207 }
208 
209 bool ProcessGDBRemote::CanDebug(lldb::TargetSP target_sp,
210                                 bool plugin_specified_by_name) {
211   if (plugin_specified_by_name)
212     return true;
213 
214   // For now we are just making sure the file exists for a given module
215   Module *exe_module = target_sp->GetExecutableModulePointer();
216   if (exe_module) {
217     ObjectFile *exe_objfile = exe_module->GetObjectFile();
218     // We can't debug core files...
219     switch (exe_objfile->GetType()) {
220     case ObjectFile::eTypeInvalid:
221     case ObjectFile::eTypeCoreFile:
222     case ObjectFile::eTypeDebugInfo:
223     case ObjectFile::eTypeObjectFile:
224     case ObjectFile::eTypeSharedLibrary:
225     case ObjectFile::eTypeStubLibrary:
226     case ObjectFile::eTypeJIT:
227       return false;
228     case ObjectFile::eTypeExecutable:
229     case ObjectFile::eTypeDynamicLinker:
230     case ObjectFile::eTypeUnknown:
231       break;
232     }
233     return exe_module->GetFileSpec().Exists();
234   }
235   // However, if there is no executable module, we return true since we might be
236   // preparing to attach.
237   return true;
238 }
239 
240 //----------------------------------------------------------------------
241 // ProcessGDBRemote constructor
242 //----------------------------------------------------------------------
243 ProcessGDBRemote::ProcessGDBRemote(lldb::TargetSP target_sp,
244                                    ListenerSP listener_sp)
245     : Process(target_sp, listener_sp), m_flags(0), m_gdb_comm(),
246       m_debugserver_pid(LLDB_INVALID_PROCESS_ID), m_last_stop_packet_mutex(),
247       m_register_info(),
248       m_async_broadcaster(NULL, "lldb.process.gdb-remote.async-broadcaster"),
249       m_async_listener_sp(
250           Listener::MakeListener("lldb.process.gdb-remote.async-listener")),
251       m_async_thread_state_mutex(), m_thread_ids(), m_thread_pcs(),
252       m_jstopinfo_sp(), m_jthreadsinfo_sp(), m_continue_c_tids(),
253       m_continue_C_tids(), m_continue_s_tids(), m_continue_S_tids(),
254       m_max_memory_size(0), m_remote_stub_max_memory_size(0),
255       m_addr_to_mmap_size(), m_thread_create_bp_sp(),
256       m_waiting_for_attach(false), m_destroy_tried_resuming(false),
257       m_command_sp(), m_breakpoint_pc_offset(0),
258       m_initial_tid(LLDB_INVALID_THREAD_ID) {
259   m_async_broadcaster.SetEventName(eBroadcastBitAsyncThreadShouldExit,
260                                    "async thread should exit");
261   m_async_broadcaster.SetEventName(eBroadcastBitAsyncContinue,
262                                    "async thread continue");
263   m_async_broadcaster.SetEventName(eBroadcastBitAsyncThreadDidExit,
264                                    "async thread did exit");
265 
266   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_ASYNC));
267 
268   const uint32_t async_event_mask =
269       eBroadcastBitAsyncContinue | eBroadcastBitAsyncThreadShouldExit;
270 
271   if (m_async_listener_sp->StartListeningForEvents(
272           &m_async_broadcaster, async_event_mask) != async_event_mask) {
273     if (log)
274       log->Printf("ProcessGDBRemote::%s failed to listen for "
275                   "m_async_broadcaster events",
276                   __FUNCTION__);
277   }
278 
279   const uint32_t gdb_event_mask =
280       Communication::eBroadcastBitReadThreadDidExit |
281       GDBRemoteCommunication::eBroadcastBitGdbReadThreadGotNotify;
282   if (m_async_listener_sp->StartListeningForEvents(
283           &m_gdb_comm, gdb_event_mask) != gdb_event_mask) {
284     if (log)
285       log->Printf("ProcessGDBRemote::%s failed to listen for m_gdb_comm events",
286                   __FUNCTION__);
287   }
288 
289   const uint64_t timeout_seconds =
290       GetGlobalPluginProperties()->GetPacketTimeout();
291   if (timeout_seconds > 0)
292     m_gdb_comm.SetPacketTimeout(std::chrono::seconds(timeout_seconds));
293 }
294 
295 //----------------------------------------------------------------------
296 // Destructor
297 //----------------------------------------------------------------------
298 ProcessGDBRemote::~ProcessGDBRemote() {
299   //  m_mach_process.UnregisterNotificationCallbacks (this);
300   Clear();
301   // We need to call finalize on the process before destroying ourselves
302   // to make sure all of the broadcaster cleanup goes as planned. If we
303   // destruct this class, then Process::~Process() might have problems
304   // trying to fully destroy the broadcaster.
305   Finalize();
306 
307   // The general Finalize is going to try to destroy the process and that SHOULD
308   // shut down the async thread.  However, if we don't kill it it will get
309   // stranded and
310   // its connection will go away so when it wakes up it will crash.  So kill it
311   // for sure here.
312   StopAsyncThread();
313   KillDebugserverProcess();
314 }
315 
316 //----------------------------------------------------------------------
317 // PluginInterface
318 //----------------------------------------------------------------------
319 ConstString ProcessGDBRemote::GetPluginName() { return GetPluginNameStatic(); }
320 
321 uint32_t ProcessGDBRemote::GetPluginVersion() { return 1; }
322 
323 bool ProcessGDBRemote::ParsePythonTargetDefinition(
324     const FileSpec &target_definition_fspec) {
325   ScriptInterpreter *interpreter =
326       GetTarget().GetDebugger().GetCommandInterpreter().GetScriptInterpreter();
327   Status error;
328   StructuredData::ObjectSP module_object_sp(
329       interpreter->LoadPluginModule(target_definition_fspec, error));
330   if (module_object_sp) {
331     StructuredData::DictionarySP target_definition_sp(
332         interpreter->GetDynamicSettings(module_object_sp, &GetTarget(),
333                                         "gdb-server-target-definition", error));
334 
335     if (target_definition_sp) {
336       StructuredData::ObjectSP target_object(
337           target_definition_sp->GetValueForKey("host-info"));
338       if (target_object) {
339         if (auto host_info_dict = target_object->GetAsDictionary()) {
340           StructuredData::ObjectSP triple_value =
341               host_info_dict->GetValueForKey("triple");
342           if (auto triple_string_value = triple_value->GetAsString()) {
343             std::string triple_string = triple_string_value->GetValue();
344             ArchSpec host_arch(triple_string.c_str());
345             if (!host_arch.IsCompatibleMatch(GetTarget().GetArchitecture())) {
346               GetTarget().SetArchitecture(host_arch);
347             }
348           }
349         }
350       }
351       m_breakpoint_pc_offset = 0;
352       StructuredData::ObjectSP breakpoint_pc_offset_value =
353           target_definition_sp->GetValueForKey("breakpoint-pc-offset");
354       if (breakpoint_pc_offset_value) {
355         if (auto breakpoint_pc_int_value =
356                 breakpoint_pc_offset_value->GetAsInteger())
357           m_breakpoint_pc_offset = breakpoint_pc_int_value->GetValue();
358       }
359 
360       if (m_register_info.SetRegisterInfo(*target_definition_sp,
361                                           GetTarget().GetArchitecture()) > 0) {
362         return true;
363       }
364     }
365   }
366   return false;
367 }
368 
369 // If the remote stub didn't give us eh_frame or DWARF register numbers for a
370 // register,
371 // see if the ABI can provide them.
372 // DWARF and eh_frame register numbers are defined as a part of the ABI.
373 static void AugmentRegisterInfoViaABI(RegisterInfo &reg_info,
374                                       ConstString reg_name, ABISP abi_sp) {
375   if (reg_info.kinds[eRegisterKindEHFrame] == LLDB_INVALID_REGNUM ||
376       reg_info.kinds[eRegisterKindDWARF] == LLDB_INVALID_REGNUM) {
377     if (abi_sp) {
378       RegisterInfo abi_reg_info;
379       if (abi_sp->GetRegisterInfoByName(reg_name, abi_reg_info)) {
380         if (reg_info.kinds[eRegisterKindEHFrame] == LLDB_INVALID_REGNUM &&
381             abi_reg_info.kinds[eRegisterKindEHFrame] != LLDB_INVALID_REGNUM) {
382           reg_info.kinds[eRegisterKindEHFrame] =
383               abi_reg_info.kinds[eRegisterKindEHFrame];
384         }
385         if (reg_info.kinds[eRegisterKindDWARF] == LLDB_INVALID_REGNUM &&
386             abi_reg_info.kinds[eRegisterKindDWARF] != LLDB_INVALID_REGNUM) {
387           reg_info.kinds[eRegisterKindDWARF] =
388               abi_reg_info.kinds[eRegisterKindDWARF];
389         }
390         if (reg_info.kinds[eRegisterKindGeneric] == LLDB_INVALID_REGNUM &&
391             abi_reg_info.kinds[eRegisterKindGeneric] != LLDB_INVALID_REGNUM) {
392           reg_info.kinds[eRegisterKindGeneric] =
393               abi_reg_info.kinds[eRegisterKindGeneric];
394         }
395       }
396     }
397   }
398 }
399 
400 static size_t SplitCommaSeparatedRegisterNumberString(
401     const llvm::StringRef &comma_separated_regiter_numbers,
402     std::vector<uint32_t> &regnums, int base) {
403   regnums.clear();
404   std::pair<llvm::StringRef, llvm::StringRef> value_pair;
405   value_pair.second = comma_separated_regiter_numbers;
406   do {
407     value_pair = value_pair.second.split(',');
408     if (!value_pair.first.empty()) {
409       uint32_t reg = StringConvert::ToUInt32(value_pair.first.str().c_str(),
410                                              LLDB_INVALID_REGNUM, base);
411       if (reg != LLDB_INVALID_REGNUM)
412         regnums.push_back(reg);
413     }
414   } while (!value_pair.second.empty());
415   return regnums.size();
416 }
417 
418 void ProcessGDBRemote::BuildDynamicRegisterInfo(bool force) {
419   if (!force && m_register_info.GetNumRegisters() > 0)
420     return;
421 
422   m_register_info.Clear();
423 
424   // Check if qHostInfo specified a specific packet timeout for this connection.
425   // If so then lets update our setting so the user knows what the timeout is
426   // and can see it.
427   const auto host_packet_timeout = m_gdb_comm.GetHostDefaultPacketTimeout();
428   if (host_packet_timeout > std::chrono::seconds(0)) {
429     GetGlobalPluginProperties()->SetPacketTimeout(host_packet_timeout.count());
430   }
431 
432   // Register info search order:
433   //     1 - Use the target definition python file if one is specified.
434   //     2 - If the target definition doesn't have any of the info from the
435   //     target.xml (registers) then proceed to read the target.xml.
436   //     3 - Fall back on the qRegisterInfo packets.
437 
438   FileSpec target_definition_fspec =
439       GetGlobalPluginProperties()->GetTargetDefinitionFile();
440   if (!target_definition_fspec.Exists()) {
441     // If the filename doesn't exist, it may be a ~ not having been expanded -
442     // try to resolve it.
443     target_definition_fspec.ResolvePath();
444   }
445   if (target_definition_fspec) {
446     // See if we can get register definitions from a python file
447     if (ParsePythonTargetDefinition(target_definition_fspec)) {
448       return;
449     } else {
450       StreamSP stream_sp = GetTarget().GetDebugger().GetAsyncOutputStream();
451       stream_sp->Printf("ERROR: target description file %s failed to parse.\n",
452                         target_definition_fspec.GetPath().c_str());
453     }
454   }
455 
456   const ArchSpec &target_arch = GetTarget().GetArchitecture();
457   const ArchSpec &remote_host_arch = m_gdb_comm.GetHostArchitecture();
458   const ArchSpec &remote_process_arch = m_gdb_comm.GetProcessArchitecture();
459 
460   // Use the process' architecture instead of the host arch, if available
461   ArchSpec arch_to_use;
462   if (remote_process_arch.IsValid())
463     arch_to_use = remote_process_arch;
464   else
465     arch_to_use = remote_host_arch;
466 
467   if (!arch_to_use.IsValid())
468     arch_to_use = target_arch;
469 
470   if (GetGDBServerRegisterInfo(arch_to_use))
471     return;
472 
473   char packet[128];
474   uint32_t reg_offset = 0;
475   uint32_t reg_num = 0;
476   for (StringExtractorGDBRemote::ResponseType response_type =
477            StringExtractorGDBRemote::eResponse;
478        response_type == StringExtractorGDBRemote::eResponse; ++reg_num) {
479     const int packet_len =
480         ::snprintf(packet, sizeof(packet), "qRegisterInfo%x", reg_num);
481     assert(packet_len < (int)sizeof(packet));
482     UNUSED_IF_ASSERT_DISABLED(packet_len);
483     StringExtractorGDBRemote response;
484     if (m_gdb_comm.SendPacketAndWaitForResponse(packet, response, false) ==
485         GDBRemoteCommunication::PacketResult::Success) {
486       response_type = response.GetResponseType();
487       if (response_type == StringExtractorGDBRemote::eResponse) {
488         llvm::StringRef name;
489         llvm::StringRef value;
490         ConstString reg_name;
491         ConstString alt_name;
492         ConstString set_name;
493         std::vector<uint32_t> value_regs;
494         std::vector<uint32_t> invalidate_regs;
495         std::vector<uint8_t> dwarf_opcode_bytes;
496         RegisterInfo reg_info = {
497             NULL,          // Name
498             NULL,          // Alt name
499             0,             // byte size
500             reg_offset,    // offset
501             eEncodingUint, // encoding
502             eFormatHex,    // format
503             {
504                 LLDB_INVALID_REGNUM, // eh_frame reg num
505                 LLDB_INVALID_REGNUM, // DWARF reg num
506                 LLDB_INVALID_REGNUM, // generic reg num
507                 reg_num,             // process plugin reg num
508                 reg_num              // native register number
509             },
510             NULL,
511             NULL,
512             NULL, // Dwarf expression opcode bytes pointer
513             0     // Dwarf expression opcode bytes length
514         };
515 
516         while (response.GetNameColonValue(name, value)) {
517           if (name.equals("name")) {
518             reg_name.SetString(value);
519           } else if (name.equals("alt-name")) {
520             alt_name.SetString(value);
521           } else if (name.equals("bitsize")) {
522             value.getAsInteger(0, reg_info.byte_size);
523             reg_info.byte_size /= CHAR_BIT;
524           } else if (name.equals("offset")) {
525             if (value.getAsInteger(0, reg_offset))
526               reg_offset = UINT32_MAX;
527           } else if (name.equals("encoding")) {
528             const Encoding encoding = Args::StringToEncoding(value);
529             if (encoding != eEncodingInvalid)
530               reg_info.encoding = encoding;
531           } else if (name.equals("format")) {
532             Format format = eFormatInvalid;
533             if (Args::StringToFormat(value.str().c_str(), format, NULL)
534                     .Success())
535               reg_info.format = format;
536             else {
537               reg_info.format =
538                   llvm::StringSwitch<Format>(value)
539                       .Case("binary", eFormatBinary)
540                       .Case("decimal", eFormatDecimal)
541                       .Case("hex", eFormatHex)
542                       .Case("float", eFormatFloat)
543                       .Case("vector-sint8", eFormatVectorOfSInt8)
544                       .Case("vector-uint8", eFormatVectorOfUInt8)
545                       .Case("vector-sint16", eFormatVectorOfSInt16)
546                       .Case("vector-uint16", eFormatVectorOfUInt16)
547                       .Case("vector-sint32", eFormatVectorOfSInt32)
548                       .Case("vector-uint32", eFormatVectorOfUInt32)
549                       .Case("vector-float32", eFormatVectorOfFloat32)
550                       .Case("vector-uint64", eFormatVectorOfUInt64)
551                       .Case("vector-uint128", eFormatVectorOfUInt128)
552                       .Default(eFormatInvalid);
553             }
554           } else if (name.equals("set")) {
555             set_name.SetString(value);
556           } else if (name.equals("gcc") || name.equals("ehframe")) {
557             if (value.getAsInteger(0, reg_info.kinds[eRegisterKindEHFrame]))
558               reg_info.kinds[eRegisterKindEHFrame] = LLDB_INVALID_REGNUM;
559           } else if (name.equals("dwarf")) {
560             if (value.getAsInteger(0, reg_info.kinds[eRegisterKindDWARF]))
561               reg_info.kinds[eRegisterKindDWARF] = LLDB_INVALID_REGNUM;
562           } else if (name.equals("generic")) {
563             reg_info.kinds[eRegisterKindGeneric] =
564                 Args::StringToGenericRegister(value);
565           } else if (name.equals("container-regs")) {
566             SplitCommaSeparatedRegisterNumberString(value, value_regs, 16);
567           } else if (name.equals("invalidate-regs")) {
568             SplitCommaSeparatedRegisterNumberString(value, invalidate_regs, 16);
569           } else if (name.equals("dynamic_size_dwarf_expr_bytes")) {
570             size_t dwarf_opcode_len = value.size() / 2;
571             assert(dwarf_opcode_len > 0);
572 
573             dwarf_opcode_bytes.resize(dwarf_opcode_len);
574             reg_info.dynamic_size_dwarf_len = dwarf_opcode_len;
575 
576             StringExtractor opcode_extractor(value);
577             uint32_t ret_val =
578                 opcode_extractor.GetHexBytesAvail(dwarf_opcode_bytes);
579             assert(dwarf_opcode_len == ret_val);
580             UNUSED_IF_ASSERT_DISABLED(ret_val);
581             reg_info.dynamic_size_dwarf_expr_bytes = dwarf_opcode_bytes.data();
582           }
583         }
584 
585         reg_info.byte_offset = reg_offset;
586         assert(reg_info.byte_size != 0);
587         reg_offset += reg_info.byte_size;
588         if (!value_regs.empty()) {
589           value_regs.push_back(LLDB_INVALID_REGNUM);
590           reg_info.value_regs = value_regs.data();
591         }
592         if (!invalidate_regs.empty()) {
593           invalidate_regs.push_back(LLDB_INVALID_REGNUM);
594           reg_info.invalidate_regs = invalidate_regs.data();
595         }
596 
597         // We have to make a temporary ABI here, and not use the GetABI because
598         // this code
599         // gets called in DidAttach, when the target architecture (and
600         // consequently the ABI we'll get from
601         // the process) may be wrong.
602         ABISP abi_to_use = ABI::FindPlugin(shared_from_this(), arch_to_use);
603 
604         AugmentRegisterInfoViaABI(reg_info, reg_name, abi_to_use);
605 
606         m_register_info.AddRegister(reg_info, reg_name, alt_name, set_name);
607       } else {
608         break; // ensure exit before reg_num is incremented
609       }
610     } else {
611       break;
612     }
613   }
614 
615   if (m_register_info.GetNumRegisters() > 0) {
616     m_register_info.Finalize(GetTarget().GetArchitecture());
617     return;
618   }
619 
620   // We didn't get anything if the accumulated reg_num is zero.  See if we are
621   // debugging ARM and fill with a hard coded register set until we can get an
622   // updated debugserver down on the devices.
623   // On the other hand, if the accumulated reg_num is positive, see if we can
624   // add composite registers to the existing primordial ones.
625   bool from_scratch = (m_register_info.GetNumRegisters() == 0);
626 
627   if (!target_arch.IsValid()) {
628     if (arch_to_use.IsValid() &&
629         (arch_to_use.GetMachine() == llvm::Triple::arm ||
630          arch_to_use.GetMachine() == llvm::Triple::thumb) &&
631         arch_to_use.GetTriple().getVendor() == llvm::Triple::Apple)
632       m_register_info.HardcodeARMRegisters(from_scratch);
633   } else if (target_arch.GetMachine() == llvm::Triple::arm ||
634              target_arch.GetMachine() == llvm::Triple::thumb) {
635     m_register_info.HardcodeARMRegisters(from_scratch);
636   }
637 
638   // At this point, we can finalize our register info.
639   m_register_info.Finalize(GetTarget().GetArchitecture());
640 }
641 
642 Status ProcessGDBRemote::WillLaunch(Module *module) {
643   return WillLaunchOrAttach();
644 }
645 
646 Status ProcessGDBRemote::WillAttachToProcessWithID(lldb::pid_t pid) {
647   return WillLaunchOrAttach();
648 }
649 
650 Status ProcessGDBRemote::WillAttachToProcessWithName(const char *process_name,
651                                                      bool wait_for_launch) {
652   return WillLaunchOrAttach();
653 }
654 
655 Status ProcessGDBRemote::DoConnectRemote(Stream *strm,
656                                          llvm::StringRef remote_url) {
657   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
658   Status error(WillLaunchOrAttach());
659 
660   if (error.Fail())
661     return error;
662 
663   error = ConnectToDebugserver(remote_url);
664 
665   if (error.Fail())
666     return error;
667   StartAsyncThread();
668 
669   lldb::pid_t pid = m_gdb_comm.GetCurrentProcessID();
670   if (pid == LLDB_INVALID_PROCESS_ID) {
671     // We don't have a valid process ID, so note that we are connected
672     // and could now request to launch or attach, or get remote process
673     // listings...
674     SetPrivateState(eStateConnected);
675   } else {
676     // We have a valid process
677     SetID(pid);
678     GetThreadList();
679     StringExtractorGDBRemote response;
680     if (m_gdb_comm.GetStopReply(response)) {
681       SetLastStopPacket(response);
682 
683       // '?' Packets must be handled differently in non-stop mode
684       if (GetTarget().GetNonStopModeEnabled())
685         HandleStopReplySequence();
686 
687       Target &target = GetTarget();
688       if (!target.GetArchitecture().IsValid()) {
689         if (m_gdb_comm.GetProcessArchitecture().IsValid()) {
690           target.SetArchitecture(m_gdb_comm.GetProcessArchitecture());
691         } else {
692           target.SetArchitecture(m_gdb_comm.GetHostArchitecture());
693         }
694       }
695 
696       const StateType state = SetThreadStopInfo(response);
697       if (state != eStateInvalid) {
698         SetPrivateState(state);
699       } else
700         error.SetErrorStringWithFormat(
701             "Process %" PRIu64 " was reported after connecting to "
702             "'%s', but state was not stopped: %s",
703             pid, remote_url.str().c_str(), StateAsCString(state));
704     } else
705       error.SetErrorStringWithFormat("Process %" PRIu64
706                                      " was reported after connecting to '%s', "
707                                      "but no stop reply packet was received",
708                                      pid, remote_url.str().c_str());
709   }
710 
711   if (log)
712     log->Printf("ProcessGDBRemote::%s pid %" PRIu64
713                 ": normalizing target architecture initial triple: %s "
714                 "(GetTarget().GetArchitecture().IsValid() %s, "
715                 "m_gdb_comm.GetHostArchitecture().IsValid(): %s)",
716                 __FUNCTION__, GetID(),
717                 GetTarget().GetArchitecture().GetTriple().getTriple().c_str(),
718                 GetTarget().GetArchitecture().IsValid() ? "true" : "false",
719                 m_gdb_comm.GetHostArchitecture().IsValid() ? "true" : "false");
720 
721   if (error.Success() && !GetTarget().GetArchitecture().IsValid() &&
722       m_gdb_comm.GetHostArchitecture().IsValid()) {
723     // Prefer the *process'* architecture over that of the *host*, if available.
724     if (m_gdb_comm.GetProcessArchitecture().IsValid())
725       GetTarget().SetArchitecture(m_gdb_comm.GetProcessArchitecture());
726     else
727       GetTarget().SetArchitecture(m_gdb_comm.GetHostArchitecture());
728   }
729 
730   if (log)
731     log->Printf("ProcessGDBRemote::%s pid %" PRIu64
732                 ": normalized target architecture triple: %s",
733                 __FUNCTION__, GetID(),
734                 GetTarget().GetArchitecture().GetTriple().getTriple().c_str());
735 
736   if (error.Success()) {
737     PlatformSP platform_sp = GetTarget().GetPlatform();
738     if (platform_sp && platform_sp->IsConnected())
739       SetUnixSignals(platform_sp->GetUnixSignals());
740     else
741       SetUnixSignals(UnixSignals::Create(GetTarget().GetArchitecture()));
742   }
743 
744   return error;
745 }
746 
747 Status ProcessGDBRemote::WillLaunchOrAttach() {
748   Status error;
749   m_stdio_communication.Clear();
750   return error;
751 }
752 
753 //----------------------------------------------------------------------
754 // Process Control
755 //----------------------------------------------------------------------
756 Status ProcessGDBRemote::DoLaunch(Module *exe_module,
757                                   ProcessLaunchInfo &launch_info) {
758   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
759   Status error;
760 
761   if (log)
762     log->Printf("ProcessGDBRemote::%s() entered", __FUNCTION__);
763 
764   uint32_t launch_flags = launch_info.GetFlags().Get();
765   FileSpec stdin_file_spec{};
766   FileSpec stdout_file_spec{};
767   FileSpec stderr_file_spec{};
768   FileSpec working_dir = launch_info.GetWorkingDirectory();
769 
770   const FileAction *file_action;
771   file_action = launch_info.GetFileActionForFD(STDIN_FILENO);
772   if (file_action) {
773     if (file_action->GetAction() == FileAction::eFileActionOpen)
774       stdin_file_spec = file_action->GetFileSpec();
775   }
776   file_action = launch_info.GetFileActionForFD(STDOUT_FILENO);
777   if (file_action) {
778     if (file_action->GetAction() == FileAction::eFileActionOpen)
779       stdout_file_spec = file_action->GetFileSpec();
780   }
781   file_action = launch_info.GetFileActionForFD(STDERR_FILENO);
782   if (file_action) {
783     if (file_action->GetAction() == FileAction::eFileActionOpen)
784       stderr_file_spec = file_action->GetFileSpec();
785   }
786 
787   if (log) {
788     if (stdin_file_spec || stdout_file_spec || stderr_file_spec)
789       log->Printf("ProcessGDBRemote::%s provided with STDIO paths via "
790                   "launch_info: stdin=%s, stdout=%s, stderr=%s",
791                   __FUNCTION__,
792                   stdin_file_spec ? stdin_file_spec.GetCString() : "<null>",
793                   stdout_file_spec ? stdout_file_spec.GetCString() : "<null>",
794                   stderr_file_spec ? stderr_file_spec.GetCString() : "<null>");
795     else
796       log->Printf("ProcessGDBRemote::%s no STDIO paths given via launch_info",
797                   __FUNCTION__);
798   }
799 
800   const bool disable_stdio = (launch_flags & eLaunchFlagDisableSTDIO) != 0;
801   if (stdin_file_spec || disable_stdio) {
802     // the inferior will be reading stdin from the specified file
803     // or stdio is completely disabled
804     m_stdin_forward = false;
805   } else {
806     m_stdin_forward = true;
807   }
808 
809   //  ::LogSetBitMask (GDBR_LOG_DEFAULT);
810   //  ::LogSetOptions (LLDB_LOG_OPTION_THREADSAFE |
811   //  LLDB_LOG_OPTION_PREPEND_TIMESTAMP |
812   //  LLDB_LOG_OPTION_PREPEND_PROC_AND_THREAD);
813   //  ::LogSetLogFile ("/dev/stdout");
814 
815   ObjectFile *object_file = exe_module->GetObjectFile();
816   if (object_file) {
817     error = EstablishConnectionIfNeeded(launch_info);
818     if (error.Success()) {
819       lldb_utility::PseudoTerminal pty;
820       const bool disable_stdio = (launch_flags & eLaunchFlagDisableSTDIO) != 0;
821 
822       PlatformSP platform_sp(GetTarget().GetPlatform());
823       if (disable_stdio) {
824         // set to /dev/null unless redirected to a file above
825         if (!stdin_file_spec)
826           stdin_file_spec.SetFile(FileSystem::DEV_NULL, false);
827         if (!stdout_file_spec)
828           stdout_file_spec.SetFile(FileSystem::DEV_NULL, false);
829         if (!stderr_file_spec)
830           stderr_file_spec.SetFile(FileSystem::DEV_NULL, false);
831       } else if (platform_sp && platform_sp->IsHost()) {
832         // If the debugserver is local and we aren't disabling STDIO, lets use
833         // a pseudo terminal to instead of relying on the 'O' packets for stdio
834         // since 'O' packets can really slow down debugging if the inferior
835         // does a lot of output.
836         if ((!stdin_file_spec || !stdout_file_spec || !stderr_file_spec) &&
837             pty.OpenFirstAvailableMaster(O_RDWR | O_NOCTTY, NULL, 0)) {
838           FileSpec slave_name{pty.GetSlaveName(NULL, 0), false};
839 
840           if (!stdin_file_spec)
841             stdin_file_spec = slave_name;
842 
843           if (!stdout_file_spec)
844             stdout_file_spec = slave_name;
845 
846           if (!stderr_file_spec)
847             stderr_file_spec = slave_name;
848         }
849         if (log)
850           log->Printf(
851               "ProcessGDBRemote::%s adjusted STDIO paths for local platform "
852               "(IsHost() is true) using slave: stdin=%s, stdout=%s, stderr=%s",
853               __FUNCTION__,
854               stdin_file_spec ? stdin_file_spec.GetCString() : "<null>",
855               stdout_file_spec ? stdout_file_spec.GetCString() : "<null>",
856               stderr_file_spec ? stderr_file_spec.GetCString() : "<null>");
857       }
858 
859       if (log)
860         log->Printf("ProcessGDBRemote::%s final STDIO paths after all "
861                     "adjustments: stdin=%s, stdout=%s, stderr=%s",
862                     __FUNCTION__,
863                     stdin_file_spec ? stdin_file_spec.GetCString() : "<null>",
864                     stdout_file_spec ? stdout_file_spec.GetCString() : "<null>",
865                     stderr_file_spec ? stderr_file_spec.GetCString()
866                                      : "<null>");
867 
868       if (stdin_file_spec)
869         m_gdb_comm.SetSTDIN(stdin_file_spec);
870       if (stdout_file_spec)
871         m_gdb_comm.SetSTDOUT(stdout_file_spec);
872       if (stderr_file_spec)
873         m_gdb_comm.SetSTDERR(stderr_file_spec);
874 
875       m_gdb_comm.SetDisableASLR(launch_flags & eLaunchFlagDisableASLR);
876       m_gdb_comm.SetDetachOnError(launch_flags & eLaunchFlagDetachOnError);
877 
878       m_gdb_comm.SendLaunchArchPacket(
879           GetTarget().GetArchitecture().GetArchitectureName());
880 
881       const char *launch_event_data = launch_info.GetLaunchEventData();
882       if (launch_event_data != NULL && *launch_event_data != '\0')
883         m_gdb_comm.SendLaunchEventDataPacket(launch_event_data);
884 
885       if (working_dir) {
886         m_gdb_comm.SetWorkingDir(working_dir);
887       }
888 
889       // Send the environment and the program + arguments after we connect
890       const Args &environment = launch_info.GetEnvironmentEntries();
891       if (environment.GetArgumentCount()) {
892         size_t num_environment_entries = environment.GetArgumentCount();
893         for (size_t i = 0; i < num_environment_entries; ++i) {
894           const char *env_entry = environment.GetArgumentAtIndex(i);
895           if (env_entry == NULL ||
896               m_gdb_comm.SendEnvironmentPacket(env_entry) != 0)
897             break;
898         }
899       }
900 
901       {
902         // Scope for the scoped timeout object
903         GDBRemoteCommunication::ScopedTimeout timeout(m_gdb_comm,
904                                                       std::chrono::seconds(10));
905 
906         int arg_packet_err = m_gdb_comm.SendArgumentsPacket(launch_info);
907         if (arg_packet_err == 0) {
908           std::string error_str;
909           if (m_gdb_comm.GetLaunchSuccess(error_str)) {
910             SetID(m_gdb_comm.GetCurrentProcessID());
911           } else {
912             error.SetErrorString(error_str.c_str());
913           }
914         } else {
915           error.SetErrorStringWithFormat("'A' packet returned an error: %i",
916                                          arg_packet_err);
917         }
918       }
919 
920       if (GetID() == LLDB_INVALID_PROCESS_ID) {
921         if (log)
922           log->Printf("failed to connect to debugserver: %s",
923                       error.AsCString());
924         KillDebugserverProcess();
925         return error;
926       }
927 
928       StringExtractorGDBRemote response;
929       if (m_gdb_comm.GetStopReply(response)) {
930         SetLastStopPacket(response);
931         // '?' Packets must be handled differently in non-stop mode
932         if (GetTarget().GetNonStopModeEnabled())
933           HandleStopReplySequence();
934 
935         const ArchSpec &process_arch = m_gdb_comm.GetProcessArchitecture();
936 
937         if (process_arch.IsValid()) {
938           GetTarget().MergeArchitecture(process_arch);
939         } else {
940           const ArchSpec &host_arch = m_gdb_comm.GetHostArchitecture();
941           if (host_arch.IsValid())
942             GetTarget().MergeArchitecture(host_arch);
943         }
944 
945         SetPrivateState(SetThreadStopInfo(response));
946 
947         if (!disable_stdio) {
948           if (pty.GetMasterFileDescriptor() !=
949               lldb_utility::PseudoTerminal::invalid_fd)
950             SetSTDIOFileDescriptor(pty.ReleaseMasterFileDescriptor());
951         }
952       }
953     } else {
954       if (log)
955         log->Printf("failed to connect to debugserver: %s", error.AsCString());
956     }
957   } else {
958     // Set our user ID to an invalid process ID.
959     SetID(LLDB_INVALID_PROCESS_ID);
960     error.SetErrorStringWithFormat(
961         "failed to get object file from '%s' for arch %s",
962         exe_module->GetFileSpec().GetFilename().AsCString(),
963         exe_module->GetArchitecture().GetArchitectureName());
964   }
965   return error;
966 }
967 
968 Status ProcessGDBRemote::ConnectToDebugserver(llvm::StringRef connect_url) {
969   Status error;
970   // Only connect if we have a valid connect URL
971   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
972 
973   if (!connect_url.empty()) {
974     if (log)
975       log->Printf("ProcessGDBRemote::%s Connecting to %s", __FUNCTION__,
976                   connect_url.str().c_str());
977     std::unique_ptr<ConnectionFileDescriptor> conn_ap(
978         new ConnectionFileDescriptor());
979     if (conn_ap.get()) {
980       const uint32_t max_retry_count = 50;
981       uint32_t retry_count = 0;
982       while (!m_gdb_comm.IsConnected()) {
983         if (conn_ap->Connect(connect_url, &error) == eConnectionStatusSuccess) {
984           m_gdb_comm.SetConnection(conn_ap.release());
985           break;
986         } else if (error.WasInterrupted()) {
987           // If we were interrupted, don't keep retrying.
988           break;
989         }
990 
991         retry_count++;
992 
993         if (retry_count >= max_retry_count)
994           break;
995 
996         usleep(100000);
997       }
998     }
999   }
1000 
1001   if (!m_gdb_comm.IsConnected()) {
1002     if (error.Success())
1003       error.SetErrorString("not connected to remote gdb server");
1004     return error;
1005   }
1006 
1007   // Start the communications read thread so all incoming data can be
1008   // parsed into packets and queued as they arrive.
1009   if (GetTarget().GetNonStopModeEnabled())
1010     m_gdb_comm.StartReadThread();
1011 
1012   // We always seem to be able to open a connection to a local port
1013   // so we need to make sure we can then send data to it. If we can't
1014   // then we aren't actually connected to anything, so try and do the
1015   // handshake with the remote GDB server and make sure that goes
1016   // alright.
1017   if (!m_gdb_comm.HandshakeWithServer(&error)) {
1018     m_gdb_comm.Disconnect();
1019     if (error.Success())
1020       error.SetErrorString("not connected to remote gdb server");
1021     return error;
1022   }
1023 
1024   // Send $QNonStop:1 packet on startup if required
1025   if (GetTarget().GetNonStopModeEnabled())
1026     GetTarget().SetNonStopModeEnabled(m_gdb_comm.SetNonStopMode(true));
1027 
1028   m_gdb_comm.GetEchoSupported();
1029   m_gdb_comm.GetThreadSuffixSupported();
1030   m_gdb_comm.GetListThreadsInStopReplySupported();
1031   m_gdb_comm.GetHostInfo();
1032   m_gdb_comm.GetVContSupported('c');
1033   m_gdb_comm.GetVAttachOrWaitSupported();
1034   m_gdb_comm.EnableErrorStringInPacket();
1035 
1036   // Ask the remote server for the default thread id
1037   if (GetTarget().GetNonStopModeEnabled())
1038     m_gdb_comm.GetDefaultThreadId(m_initial_tid);
1039 
1040   size_t num_cmds = GetExtraStartupCommands().GetArgumentCount();
1041   for (size_t idx = 0; idx < num_cmds; idx++) {
1042     StringExtractorGDBRemote response;
1043     m_gdb_comm.SendPacketAndWaitForResponse(
1044         GetExtraStartupCommands().GetArgumentAtIndex(idx), response, false);
1045   }
1046   return error;
1047 }
1048 
1049 void ProcessGDBRemote::DidLaunchOrAttach(ArchSpec &process_arch) {
1050   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
1051   if (log)
1052     log->Printf("ProcessGDBRemote::%s()", __FUNCTION__);
1053   if (GetID() != LLDB_INVALID_PROCESS_ID) {
1054     BuildDynamicRegisterInfo(false);
1055 
1056     // See if the GDB server supports the qHostInfo information
1057 
1058     // See if the GDB server supports the qProcessInfo packet, if so
1059     // prefer that over the Host information as it will be more specific
1060     // to our process.
1061 
1062     const ArchSpec &remote_process_arch = m_gdb_comm.GetProcessArchitecture();
1063     if (remote_process_arch.IsValid()) {
1064       process_arch = remote_process_arch;
1065       if (log)
1066         log->Printf("ProcessGDBRemote::%s gdb-remote had process architecture, "
1067                     "using %s %s",
1068                     __FUNCTION__, process_arch.GetArchitectureName()
1069                                       ? process_arch.GetArchitectureName()
1070                                       : "<null>",
1071                     process_arch.GetTriple().getTriple().c_str()
1072                         ? process_arch.GetTriple().getTriple().c_str()
1073                         : "<null>");
1074     } else {
1075       process_arch = m_gdb_comm.GetHostArchitecture();
1076       if (log)
1077         log->Printf("ProcessGDBRemote::%s gdb-remote did not have process "
1078                     "architecture, using gdb-remote host architecture %s %s",
1079                     __FUNCTION__, process_arch.GetArchitectureName()
1080                                       ? process_arch.GetArchitectureName()
1081                                       : "<null>",
1082                     process_arch.GetTriple().getTriple().c_str()
1083                         ? process_arch.GetTriple().getTriple().c_str()
1084                         : "<null>");
1085     }
1086 
1087     if (process_arch.IsValid()) {
1088       const ArchSpec &target_arch = GetTarget().GetArchitecture();
1089       if (target_arch.IsValid()) {
1090         if (log)
1091           log->Printf(
1092               "ProcessGDBRemote::%s analyzing target arch, currently %s %s",
1093               __FUNCTION__, target_arch.GetArchitectureName()
1094                                 ? target_arch.GetArchitectureName()
1095                                 : "<null>",
1096               target_arch.GetTriple().getTriple().c_str()
1097                   ? target_arch.GetTriple().getTriple().c_str()
1098                   : "<null>");
1099 
1100         // If the remote host is ARM and we have apple as the vendor, then
1101         // ARM executables and shared libraries can have mixed ARM
1102         // architectures.
1103         // You can have an armv6 executable, and if the host is armv7, then the
1104         // system will load the best possible architecture for all shared
1105         // libraries
1106         // it has, so we really need to take the remote host architecture as our
1107         // defacto architecture in this case.
1108 
1109         if ((process_arch.GetMachine() == llvm::Triple::arm ||
1110              process_arch.GetMachine() == llvm::Triple::thumb) &&
1111             process_arch.GetTriple().getVendor() == llvm::Triple::Apple) {
1112           GetTarget().SetArchitecture(process_arch);
1113           if (log)
1114             log->Printf("ProcessGDBRemote::%s remote process is ARM/Apple, "
1115                         "setting target arch to %s %s",
1116                         __FUNCTION__, process_arch.GetArchitectureName()
1117                                           ? process_arch.GetArchitectureName()
1118                                           : "<null>",
1119                         process_arch.GetTriple().getTriple().c_str()
1120                             ? process_arch.GetTriple().getTriple().c_str()
1121                             : "<null>");
1122         } else {
1123           // Fill in what is missing in the triple
1124           const llvm::Triple &remote_triple = process_arch.GetTriple();
1125           llvm::Triple new_target_triple = target_arch.GetTriple();
1126           if (new_target_triple.getVendorName().size() == 0) {
1127             new_target_triple.setVendor(remote_triple.getVendor());
1128 
1129             if (new_target_triple.getOSName().size() == 0) {
1130               new_target_triple.setOS(remote_triple.getOS());
1131 
1132               if (new_target_triple.getEnvironmentName().size() == 0)
1133                 new_target_triple.setEnvironment(
1134                     remote_triple.getEnvironment());
1135             }
1136 
1137             ArchSpec new_target_arch = target_arch;
1138             new_target_arch.SetTriple(new_target_triple);
1139             GetTarget().SetArchitecture(new_target_arch);
1140           }
1141         }
1142 
1143         if (log)
1144           log->Printf("ProcessGDBRemote::%s final target arch after "
1145                       "adjustments for remote architecture: %s %s",
1146                       __FUNCTION__, target_arch.GetArchitectureName()
1147                                         ? target_arch.GetArchitectureName()
1148                                         : "<null>",
1149                       target_arch.GetTriple().getTriple().c_str()
1150                           ? target_arch.GetTriple().getTriple().c_str()
1151                           : "<null>");
1152       } else {
1153         // The target doesn't have a valid architecture yet, set it from
1154         // the architecture we got from the remote GDB server
1155         GetTarget().SetArchitecture(process_arch);
1156       }
1157     }
1158 
1159     // Find out which StructuredDataPlugins are supported by the
1160     // debug monitor.  These plugins transmit data over async $J packets.
1161     auto supported_packets_array =
1162         m_gdb_comm.GetSupportedStructuredDataPlugins();
1163     if (supported_packets_array)
1164       MapSupportedStructuredDataPlugins(*supported_packets_array);
1165   }
1166 }
1167 
1168 void ProcessGDBRemote::DidLaunch() {
1169   ArchSpec process_arch;
1170   DidLaunchOrAttach(process_arch);
1171 }
1172 
1173 Status ProcessGDBRemote::DoAttachToProcessWithID(
1174     lldb::pid_t attach_pid, const ProcessAttachInfo &attach_info) {
1175   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
1176   Status error;
1177 
1178   if (log)
1179     log->Printf("ProcessGDBRemote::%s()", __FUNCTION__);
1180 
1181   // Clear out and clean up from any current state
1182   Clear();
1183   if (attach_pid != LLDB_INVALID_PROCESS_ID) {
1184     error = EstablishConnectionIfNeeded(attach_info);
1185     if (error.Success()) {
1186       m_gdb_comm.SetDetachOnError(attach_info.GetDetachOnError());
1187 
1188       char packet[64];
1189       const int packet_len =
1190           ::snprintf(packet, sizeof(packet), "vAttach;%" PRIx64, attach_pid);
1191       SetID(attach_pid);
1192       m_async_broadcaster.BroadcastEvent(
1193           eBroadcastBitAsyncContinue, new EventDataBytes(packet, packet_len));
1194     } else
1195       SetExitStatus(-1, error.AsCString());
1196   }
1197 
1198   return error;
1199 }
1200 
1201 Status ProcessGDBRemote::DoAttachToProcessWithName(
1202     const char *process_name, const ProcessAttachInfo &attach_info) {
1203   Status error;
1204   // Clear out and clean up from any current state
1205   Clear();
1206 
1207   if (process_name && process_name[0]) {
1208     error = EstablishConnectionIfNeeded(attach_info);
1209     if (error.Success()) {
1210       StreamString packet;
1211 
1212       m_gdb_comm.SetDetachOnError(attach_info.GetDetachOnError());
1213 
1214       if (attach_info.GetWaitForLaunch()) {
1215         if (!m_gdb_comm.GetVAttachOrWaitSupported()) {
1216           packet.PutCString("vAttachWait");
1217         } else {
1218           if (attach_info.GetIgnoreExisting())
1219             packet.PutCString("vAttachWait");
1220           else
1221             packet.PutCString("vAttachOrWait");
1222         }
1223       } else
1224         packet.PutCString("vAttachName");
1225       packet.PutChar(';');
1226       packet.PutBytesAsRawHex8(process_name, strlen(process_name),
1227                                endian::InlHostByteOrder(),
1228                                endian::InlHostByteOrder());
1229 
1230       m_async_broadcaster.BroadcastEvent(
1231           eBroadcastBitAsyncContinue,
1232           new EventDataBytes(packet.GetString().data(), packet.GetSize()));
1233 
1234     } else
1235       SetExitStatus(-1, error.AsCString());
1236   }
1237   return error;
1238 }
1239 
1240 lldb::user_id_t ProcessGDBRemote::StartTrace(const TraceOptions &options,
1241                                              Status &error) {
1242   return m_gdb_comm.SendStartTracePacket(options, error);
1243 }
1244 
1245 Status ProcessGDBRemote::StopTrace(lldb::user_id_t uid, lldb::tid_t thread_id) {
1246   return m_gdb_comm.SendStopTracePacket(uid, thread_id);
1247 }
1248 
1249 Status ProcessGDBRemote::GetData(lldb::user_id_t uid, lldb::tid_t thread_id,
1250                                  llvm::MutableArrayRef<uint8_t> &buffer,
1251                                  size_t offset) {
1252   return m_gdb_comm.SendGetDataPacket(uid, thread_id, buffer, offset);
1253 }
1254 
1255 Status ProcessGDBRemote::GetMetaData(lldb::user_id_t uid, lldb::tid_t thread_id,
1256                                      llvm::MutableArrayRef<uint8_t> &buffer,
1257                                      size_t offset) {
1258   return m_gdb_comm.SendGetMetaDataPacket(uid, thread_id, buffer, offset);
1259 }
1260 
1261 Status ProcessGDBRemote::GetTraceConfig(lldb::user_id_t uid,
1262                                         TraceOptions &options) {
1263   return m_gdb_comm.SendGetTraceConfigPacket(uid, options);
1264 }
1265 
1266 void ProcessGDBRemote::DidExit() {
1267   // When we exit, disconnect from the GDB server communications
1268   m_gdb_comm.Disconnect();
1269 }
1270 
1271 void ProcessGDBRemote::DidAttach(ArchSpec &process_arch) {
1272   // If you can figure out what the architecture is, fill it in here.
1273   process_arch.Clear();
1274   DidLaunchOrAttach(process_arch);
1275 }
1276 
1277 Status ProcessGDBRemote::WillResume() {
1278   m_continue_c_tids.clear();
1279   m_continue_C_tids.clear();
1280   m_continue_s_tids.clear();
1281   m_continue_S_tids.clear();
1282   m_jstopinfo_sp.reset();
1283   m_jthreadsinfo_sp.reset();
1284   return Status();
1285 }
1286 
1287 Status ProcessGDBRemote::DoResume() {
1288   Status error;
1289   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
1290   if (log)
1291     log->Printf("ProcessGDBRemote::Resume()");
1292 
1293   ListenerSP listener_sp(
1294       Listener::MakeListener("gdb-remote.resume-packet-sent"));
1295   if (listener_sp->StartListeningForEvents(
1296           &m_gdb_comm, GDBRemoteCommunication::eBroadcastBitRunPacketSent)) {
1297     listener_sp->StartListeningForEvents(
1298         &m_async_broadcaster,
1299         ProcessGDBRemote::eBroadcastBitAsyncThreadDidExit);
1300 
1301     const size_t num_threads = GetThreadList().GetSize();
1302 
1303     StreamString continue_packet;
1304     bool continue_packet_error = false;
1305     if (m_gdb_comm.HasAnyVContSupport()) {
1306       if (!GetTarget().GetNonStopModeEnabled() &&
1307           (m_continue_c_tids.size() == num_threads ||
1308            (m_continue_c_tids.empty() && m_continue_C_tids.empty() &&
1309             m_continue_s_tids.empty() && m_continue_S_tids.empty()))) {
1310         // All threads are continuing, just send a "c" packet
1311         continue_packet.PutCString("c");
1312       } else {
1313         continue_packet.PutCString("vCont");
1314 
1315         if (!m_continue_c_tids.empty()) {
1316           if (m_gdb_comm.GetVContSupported('c')) {
1317             for (tid_collection::const_iterator
1318                      t_pos = m_continue_c_tids.begin(),
1319                      t_end = m_continue_c_tids.end();
1320                  t_pos != t_end; ++t_pos)
1321               continue_packet.Printf(";c:%4.4" PRIx64, *t_pos);
1322           } else
1323             continue_packet_error = true;
1324         }
1325 
1326         if (!continue_packet_error && !m_continue_C_tids.empty()) {
1327           if (m_gdb_comm.GetVContSupported('C')) {
1328             for (tid_sig_collection::const_iterator
1329                      s_pos = m_continue_C_tids.begin(),
1330                      s_end = m_continue_C_tids.end();
1331                  s_pos != s_end; ++s_pos)
1332               continue_packet.Printf(";C%2.2x:%4.4" PRIx64, s_pos->second,
1333                                      s_pos->first);
1334           } else
1335             continue_packet_error = true;
1336         }
1337 
1338         if (!continue_packet_error && !m_continue_s_tids.empty()) {
1339           if (m_gdb_comm.GetVContSupported('s')) {
1340             for (tid_collection::const_iterator
1341                      t_pos = m_continue_s_tids.begin(),
1342                      t_end = m_continue_s_tids.end();
1343                  t_pos != t_end; ++t_pos)
1344               continue_packet.Printf(";s:%4.4" PRIx64, *t_pos);
1345           } else
1346             continue_packet_error = true;
1347         }
1348 
1349         if (!continue_packet_error && !m_continue_S_tids.empty()) {
1350           if (m_gdb_comm.GetVContSupported('S')) {
1351             for (tid_sig_collection::const_iterator
1352                      s_pos = m_continue_S_tids.begin(),
1353                      s_end = m_continue_S_tids.end();
1354                  s_pos != s_end; ++s_pos)
1355               continue_packet.Printf(";S%2.2x:%4.4" PRIx64, s_pos->second,
1356                                      s_pos->first);
1357           } else
1358             continue_packet_error = true;
1359         }
1360 
1361         if (continue_packet_error)
1362           continue_packet.Clear();
1363       }
1364     } else
1365       continue_packet_error = true;
1366 
1367     if (continue_packet_error) {
1368       // Either no vCont support, or we tried to use part of the vCont
1369       // packet that wasn't supported by the remote GDB server.
1370       // We need to try and make a simple packet that can do our continue
1371       const size_t num_continue_c_tids = m_continue_c_tids.size();
1372       const size_t num_continue_C_tids = m_continue_C_tids.size();
1373       const size_t num_continue_s_tids = m_continue_s_tids.size();
1374       const size_t num_continue_S_tids = m_continue_S_tids.size();
1375       if (num_continue_c_tids > 0) {
1376         if (num_continue_c_tids == num_threads) {
1377           // All threads are resuming...
1378           m_gdb_comm.SetCurrentThreadForRun(-1);
1379           continue_packet.PutChar('c');
1380           continue_packet_error = false;
1381         } else if (num_continue_c_tids == 1 && num_continue_C_tids == 0 &&
1382                    num_continue_s_tids == 0 && num_continue_S_tids == 0) {
1383           // Only one thread is continuing
1384           m_gdb_comm.SetCurrentThreadForRun(m_continue_c_tids.front());
1385           continue_packet.PutChar('c');
1386           continue_packet_error = false;
1387         }
1388       }
1389 
1390       if (continue_packet_error && num_continue_C_tids > 0) {
1391         if ((num_continue_C_tids + num_continue_c_tids) == num_threads &&
1392             num_continue_C_tids > 0 && num_continue_s_tids == 0 &&
1393             num_continue_S_tids == 0) {
1394           const int continue_signo = m_continue_C_tids.front().second;
1395           // Only one thread is continuing
1396           if (num_continue_C_tids > 1) {
1397             // More that one thread with a signal, yet we don't have
1398             // vCont support and we are being asked to resume each
1399             // thread with a signal, we need to make sure they are
1400             // all the same signal, or we can't issue the continue
1401             // accurately with the current support...
1402             if (num_continue_C_tids > 1) {
1403               continue_packet_error = false;
1404               for (size_t i = 1; i < m_continue_C_tids.size(); ++i) {
1405                 if (m_continue_C_tids[i].second != continue_signo)
1406                   continue_packet_error = true;
1407               }
1408             }
1409             if (!continue_packet_error)
1410               m_gdb_comm.SetCurrentThreadForRun(-1);
1411           } else {
1412             // Set the continue thread ID
1413             continue_packet_error = false;
1414             m_gdb_comm.SetCurrentThreadForRun(m_continue_C_tids.front().first);
1415           }
1416           if (!continue_packet_error) {
1417             // Add threads continuing with the same signo...
1418             continue_packet.Printf("C%2.2x", continue_signo);
1419           }
1420         }
1421       }
1422 
1423       if (continue_packet_error && num_continue_s_tids > 0) {
1424         if (num_continue_s_tids == num_threads) {
1425           // All threads are resuming...
1426           m_gdb_comm.SetCurrentThreadForRun(-1);
1427 
1428           // If in Non-Stop-Mode use vCont when stepping
1429           if (GetTarget().GetNonStopModeEnabled()) {
1430             if (m_gdb_comm.GetVContSupported('s'))
1431               continue_packet.PutCString("vCont;s");
1432             else
1433               continue_packet.PutChar('s');
1434           } else
1435             continue_packet.PutChar('s');
1436 
1437           continue_packet_error = false;
1438         } else if (num_continue_c_tids == 0 && num_continue_C_tids == 0 &&
1439                    num_continue_s_tids == 1 && num_continue_S_tids == 0) {
1440           // Only one thread is stepping
1441           m_gdb_comm.SetCurrentThreadForRun(m_continue_s_tids.front());
1442           continue_packet.PutChar('s');
1443           continue_packet_error = false;
1444         }
1445       }
1446 
1447       if (!continue_packet_error && num_continue_S_tids > 0) {
1448         if (num_continue_S_tids == num_threads) {
1449           const int step_signo = m_continue_S_tids.front().second;
1450           // Are all threads trying to step with the same signal?
1451           continue_packet_error = false;
1452           if (num_continue_S_tids > 1) {
1453             for (size_t i = 1; i < num_threads; ++i) {
1454               if (m_continue_S_tids[i].second != step_signo)
1455                 continue_packet_error = true;
1456             }
1457           }
1458           if (!continue_packet_error) {
1459             // Add threads stepping with the same signo...
1460             m_gdb_comm.SetCurrentThreadForRun(-1);
1461             continue_packet.Printf("S%2.2x", step_signo);
1462           }
1463         } else if (num_continue_c_tids == 0 && num_continue_C_tids == 0 &&
1464                    num_continue_s_tids == 0 && num_continue_S_tids == 1) {
1465           // Only one thread is stepping with signal
1466           m_gdb_comm.SetCurrentThreadForRun(m_continue_S_tids.front().first);
1467           continue_packet.Printf("S%2.2x", m_continue_S_tids.front().second);
1468           continue_packet_error = false;
1469         }
1470       }
1471     }
1472 
1473     if (continue_packet_error) {
1474       error.SetErrorString("can't make continue packet for this resume");
1475     } else {
1476       EventSP event_sp;
1477       if (!m_async_thread.IsJoinable()) {
1478         error.SetErrorString("Trying to resume but the async thread is dead.");
1479         if (log)
1480           log->Printf("ProcessGDBRemote::DoResume: Trying to resume but the "
1481                       "async thread is dead.");
1482         return error;
1483       }
1484 
1485       m_async_broadcaster.BroadcastEvent(
1486           eBroadcastBitAsyncContinue,
1487           new EventDataBytes(continue_packet.GetString().data(),
1488                              continue_packet.GetSize()));
1489 
1490       if (listener_sp->GetEvent(event_sp, std::chrono::seconds(5)) == false) {
1491         error.SetErrorString("Resume timed out.");
1492         if (log)
1493           log->Printf("ProcessGDBRemote::DoResume: Resume timed out.");
1494       } else if (event_sp->BroadcasterIs(&m_async_broadcaster)) {
1495         error.SetErrorString("Broadcast continue, but the async thread was "
1496                              "killed before we got an ack back.");
1497         if (log)
1498           log->Printf("ProcessGDBRemote::DoResume: Broadcast continue, but the "
1499                       "async thread was killed before we got an ack back.");
1500         return error;
1501       }
1502     }
1503   }
1504 
1505   return error;
1506 }
1507 
1508 void ProcessGDBRemote::HandleStopReplySequence() {
1509   while (true) {
1510     // Send vStopped
1511     StringExtractorGDBRemote response;
1512     m_gdb_comm.SendPacketAndWaitForResponse("vStopped", response, false);
1513 
1514     // OK represents end of signal list
1515     if (response.IsOKResponse())
1516       break;
1517 
1518     // If not OK or a normal packet we have a problem
1519     if (!response.IsNormalResponse())
1520       break;
1521 
1522     SetLastStopPacket(response);
1523   }
1524 }
1525 
1526 void ProcessGDBRemote::ClearThreadIDList() {
1527   std::lock_guard<std::recursive_mutex> guard(m_thread_list_real.GetMutex());
1528   m_thread_ids.clear();
1529   m_thread_pcs.clear();
1530 }
1531 
1532 size_t
1533 ProcessGDBRemote::UpdateThreadIDsFromStopReplyThreadsValue(std::string &value) {
1534   m_thread_ids.clear();
1535   m_thread_pcs.clear();
1536   size_t comma_pos;
1537   lldb::tid_t tid;
1538   while ((comma_pos = value.find(',')) != std::string::npos) {
1539     value[comma_pos] = '\0';
1540     // thread in big endian hex
1541     tid = StringConvert::ToUInt64(value.c_str(), LLDB_INVALID_THREAD_ID, 16);
1542     if (tid != LLDB_INVALID_THREAD_ID)
1543       m_thread_ids.push_back(tid);
1544     value.erase(0, comma_pos + 1);
1545   }
1546   tid = StringConvert::ToUInt64(value.c_str(), LLDB_INVALID_THREAD_ID, 16);
1547   if (tid != LLDB_INVALID_THREAD_ID)
1548     m_thread_ids.push_back(tid);
1549   return m_thread_ids.size();
1550 }
1551 
1552 size_t
1553 ProcessGDBRemote::UpdateThreadPCsFromStopReplyThreadsValue(std::string &value) {
1554   m_thread_pcs.clear();
1555   size_t comma_pos;
1556   lldb::addr_t pc;
1557   while ((comma_pos = value.find(',')) != std::string::npos) {
1558     value[comma_pos] = '\0';
1559     pc = StringConvert::ToUInt64(value.c_str(), LLDB_INVALID_ADDRESS, 16);
1560     if (pc != LLDB_INVALID_ADDRESS)
1561       m_thread_pcs.push_back(pc);
1562     value.erase(0, comma_pos + 1);
1563   }
1564   pc = StringConvert::ToUInt64(value.c_str(), LLDB_INVALID_ADDRESS, 16);
1565   if (pc != LLDB_INVALID_THREAD_ID)
1566     m_thread_pcs.push_back(pc);
1567   return m_thread_pcs.size();
1568 }
1569 
1570 bool ProcessGDBRemote::UpdateThreadIDList() {
1571   std::lock_guard<std::recursive_mutex> guard(m_thread_list_real.GetMutex());
1572 
1573   if (m_jthreadsinfo_sp) {
1574     // If we have the JSON threads info, we can get the thread list from that
1575     StructuredData::Array *thread_infos = m_jthreadsinfo_sp->GetAsArray();
1576     if (thread_infos && thread_infos->GetSize() > 0) {
1577       m_thread_ids.clear();
1578       m_thread_pcs.clear();
1579       thread_infos->ForEach([this](StructuredData::Object *object) -> bool {
1580         StructuredData::Dictionary *thread_dict = object->GetAsDictionary();
1581         if (thread_dict) {
1582           // Set the thread stop info from the JSON dictionary
1583           SetThreadStopInfo(thread_dict);
1584           lldb::tid_t tid = LLDB_INVALID_THREAD_ID;
1585           if (thread_dict->GetValueForKeyAsInteger<lldb::tid_t>("tid", tid))
1586             m_thread_ids.push_back(tid);
1587         }
1588         return true; // Keep iterating through all thread_info objects
1589       });
1590     }
1591     if (!m_thread_ids.empty())
1592       return true;
1593   } else {
1594     // See if we can get the thread IDs from the current stop reply packets
1595     // that might contain a "threads" key/value pair
1596 
1597     // Lock the thread stack while we access it
1598     // Mutex::Locker stop_stack_lock(m_last_stop_packet_mutex);
1599     std::unique_lock<std::recursive_mutex> stop_stack_lock(
1600         m_last_stop_packet_mutex, std::defer_lock);
1601     if (stop_stack_lock.try_lock()) {
1602       // Get the number of stop packets on the stack
1603       int nItems = m_stop_packet_stack.size();
1604       // Iterate over them
1605       for (int i = 0; i < nItems; i++) {
1606         // Get the thread stop info
1607         StringExtractorGDBRemote &stop_info = m_stop_packet_stack[i];
1608         const std::string &stop_info_str = stop_info.GetStringRef();
1609 
1610         m_thread_pcs.clear();
1611         const size_t thread_pcs_pos = stop_info_str.find(";thread-pcs:");
1612         if (thread_pcs_pos != std::string::npos) {
1613           const size_t start = thread_pcs_pos + strlen(";thread-pcs:");
1614           const size_t end = stop_info_str.find(';', start);
1615           if (end != std::string::npos) {
1616             std::string value = stop_info_str.substr(start, end - start);
1617             UpdateThreadPCsFromStopReplyThreadsValue(value);
1618           }
1619         }
1620 
1621         const size_t threads_pos = stop_info_str.find(";threads:");
1622         if (threads_pos != std::string::npos) {
1623           const size_t start = threads_pos + strlen(";threads:");
1624           const size_t end = stop_info_str.find(';', start);
1625           if (end != std::string::npos) {
1626             std::string value = stop_info_str.substr(start, end - start);
1627             if (UpdateThreadIDsFromStopReplyThreadsValue(value))
1628               return true;
1629           }
1630         }
1631       }
1632     }
1633   }
1634 
1635   bool sequence_mutex_unavailable = false;
1636   m_gdb_comm.GetCurrentThreadIDs(m_thread_ids, sequence_mutex_unavailable);
1637   if (sequence_mutex_unavailable) {
1638     return false; // We just didn't get the list
1639   }
1640   return true;
1641 }
1642 
1643 bool ProcessGDBRemote::UpdateThreadList(ThreadList &old_thread_list,
1644                                         ThreadList &new_thread_list) {
1645   // locker will keep a mutex locked until it goes out of scope
1646   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_THREAD));
1647   LLDB_LOGV(log, "pid = {0}", GetID());
1648 
1649   size_t num_thread_ids = m_thread_ids.size();
1650   // The "m_thread_ids" thread ID list should always be updated after each stop
1651   // reply packet, but in case it isn't, update it here.
1652   if (num_thread_ids == 0) {
1653     if (!UpdateThreadIDList())
1654       return false;
1655     num_thread_ids = m_thread_ids.size();
1656   }
1657 
1658   ThreadList old_thread_list_copy(old_thread_list);
1659   if (num_thread_ids > 0) {
1660     for (size_t i = 0; i < num_thread_ids; ++i) {
1661       tid_t tid = m_thread_ids[i];
1662       ThreadSP thread_sp(
1663           old_thread_list_copy.RemoveThreadByProtocolID(tid, false));
1664       if (!thread_sp) {
1665         thread_sp.reset(new ThreadGDBRemote(*this, tid));
1666         LLDB_LOGV(log, "Making new thread: {0} for thread ID: {1:x}.",
1667                   thread_sp.get(), thread_sp->GetID());
1668       } else {
1669         LLDB_LOGV(log, "Found old thread: {0} for thread ID: {1:x}.",
1670                   thread_sp.get(), thread_sp->GetID());
1671       }
1672 
1673       SetThreadPc(thread_sp, i);
1674       new_thread_list.AddThreadSortedByIndexID(thread_sp);
1675     }
1676   }
1677 
1678   // Whatever that is left in old_thread_list_copy are not
1679   // present in new_thread_list. Remove non-existent threads from internal id
1680   // table.
1681   size_t old_num_thread_ids = old_thread_list_copy.GetSize(false);
1682   for (size_t i = 0; i < old_num_thread_ids; i++) {
1683     ThreadSP old_thread_sp(old_thread_list_copy.GetThreadAtIndex(i, false));
1684     if (old_thread_sp) {
1685       lldb::tid_t old_thread_id = old_thread_sp->GetProtocolID();
1686       m_thread_id_to_index_id_map.erase(old_thread_id);
1687     }
1688   }
1689 
1690   return true;
1691 }
1692 
1693 void ProcessGDBRemote::SetThreadPc(const ThreadSP &thread_sp, uint64_t index) {
1694   if (m_thread_ids.size() == m_thread_pcs.size() && thread_sp.get() &&
1695       GetByteOrder() != eByteOrderInvalid) {
1696     ThreadGDBRemote *gdb_thread =
1697         static_cast<ThreadGDBRemote *>(thread_sp.get());
1698     RegisterContextSP reg_ctx_sp(thread_sp->GetRegisterContext());
1699     if (reg_ctx_sp) {
1700       uint32_t pc_regnum = reg_ctx_sp->ConvertRegisterKindToRegisterNumber(
1701           eRegisterKindGeneric, LLDB_REGNUM_GENERIC_PC);
1702       if (pc_regnum != LLDB_INVALID_REGNUM) {
1703         gdb_thread->PrivateSetRegisterValue(pc_regnum, m_thread_pcs[index]);
1704       }
1705     }
1706   }
1707 }
1708 
1709 bool ProcessGDBRemote::GetThreadStopInfoFromJSON(
1710     ThreadGDBRemote *thread, const StructuredData::ObjectSP &thread_infos_sp) {
1711   // See if we got thread stop infos for all threads via the "jThreadsInfo"
1712   // packet
1713   if (thread_infos_sp) {
1714     StructuredData::Array *thread_infos = thread_infos_sp->GetAsArray();
1715     if (thread_infos) {
1716       lldb::tid_t tid;
1717       const size_t n = thread_infos->GetSize();
1718       for (size_t i = 0; i < n; ++i) {
1719         StructuredData::Dictionary *thread_dict =
1720             thread_infos->GetItemAtIndex(i)->GetAsDictionary();
1721         if (thread_dict) {
1722           if (thread_dict->GetValueForKeyAsInteger<lldb::tid_t>(
1723                   "tid", tid, LLDB_INVALID_THREAD_ID)) {
1724             if (tid == thread->GetID())
1725               return (bool)SetThreadStopInfo(thread_dict);
1726           }
1727         }
1728       }
1729     }
1730   }
1731   return false;
1732 }
1733 
1734 bool ProcessGDBRemote::CalculateThreadStopInfo(ThreadGDBRemote *thread) {
1735   // See if we got thread stop infos for all threads via the "jThreadsInfo"
1736   // packet
1737   if (GetThreadStopInfoFromJSON(thread, m_jthreadsinfo_sp))
1738     return true;
1739 
1740   // See if we got thread stop info for any threads valid stop info reasons
1741   // threads
1742   // via the "jstopinfo" packet stop reply packet key/value pair?
1743   if (m_jstopinfo_sp) {
1744     // If we have "jstopinfo" then we have stop descriptions for all threads
1745     // that have stop reasons, and if there is no entry for a thread, then
1746     // it has no stop reason.
1747     thread->GetRegisterContext()->InvalidateIfNeeded(true);
1748     if (!GetThreadStopInfoFromJSON(thread, m_jstopinfo_sp)) {
1749       thread->SetStopInfo(StopInfoSP());
1750     }
1751     return true;
1752   }
1753 
1754   // Fall back to using the qThreadStopInfo packet
1755   StringExtractorGDBRemote stop_packet;
1756   if (GetGDBRemote().GetThreadStopInfo(thread->GetProtocolID(), stop_packet))
1757     return SetThreadStopInfo(stop_packet) == eStateStopped;
1758   return false;
1759 }
1760 
1761 ThreadSP ProcessGDBRemote::SetThreadStopInfo(
1762     lldb::tid_t tid, ExpeditedRegisterMap &expedited_register_map,
1763     uint8_t signo, const std::string &thread_name, const std::string &reason,
1764     const std::string &description, uint32_t exc_type,
1765     const std::vector<addr_t> &exc_data, addr_t thread_dispatch_qaddr,
1766     bool queue_vars_valid, // Set to true if queue_name, queue_kind and
1767                            // queue_serial are valid
1768     LazyBool associated_with_dispatch_queue, addr_t dispatch_queue_t,
1769     std::string &queue_name, QueueKind queue_kind, uint64_t queue_serial) {
1770   ThreadSP thread_sp;
1771   if (tid != LLDB_INVALID_THREAD_ID) {
1772     // Scope for "locker" below
1773     {
1774       // m_thread_list_real does have its own mutex, but we need to
1775       // hold onto the mutex between the call to
1776       // m_thread_list_real.FindThreadByID(...)
1777       // and the m_thread_list_real.AddThread(...) so it doesn't change on us
1778       std::lock_guard<std::recursive_mutex> guard(
1779           m_thread_list_real.GetMutex());
1780       thread_sp = m_thread_list_real.FindThreadByProtocolID(tid, false);
1781 
1782       if (!thread_sp) {
1783         // Create the thread if we need to
1784         thread_sp.reset(new ThreadGDBRemote(*this, tid));
1785         m_thread_list_real.AddThread(thread_sp);
1786       }
1787     }
1788 
1789     if (thread_sp) {
1790       ThreadGDBRemote *gdb_thread =
1791           static_cast<ThreadGDBRemote *>(thread_sp.get());
1792       gdb_thread->GetRegisterContext()->InvalidateIfNeeded(true);
1793 
1794       auto iter = std::find(m_thread_ids.begin(), m_thread_ids.end(), tid);
1795       if (iter != m_thread_ids.end()) {
1796         SetThreadPc(thread_sp, iter - m_thread_ids.begin());
1797       }
1798 
1799       for (const auto &pair : expedited_register_map) {
1800         StringExtractor reg_value_extractor;
1801         reg_value_extractor.GetStringRef() = pair.second;
1802         DataBufferSP buffer_sp(new DataBufferHeap(
1803             reg_value_extractor.GetStringRef().size() / 2, 0));
1804         reg_value_extractor.GetHexBytes(buffer_sp->GetData(), '\xcc');
1805         gdb_thread->PrivateSetRegisterValue(pair.first, buffer_sp->GetData());
1806       }
1807 
1808       thread_sp->SetName(thread_name.empty() ? NULL : thread_name.c_str());
1809 
1810       gdb_thread->SetThreadDispatchQAddr(thread_dispatch_qaddr);
1811       // Check if the GDB server was able to provide the queue name, kind and
1812       // serial number
1813       if (queue_vars_valid)
1814         gdb_thread->SetQueueInfo(std::move(queue_name), queue_kind,
1815                                  queue_serial, dispatch_queue_t,
1816                                  associated_with_dispatch_queue);
1817       else
1818         gdb_thread->ClearQueueInfo();
1819 
1820       gdb_thread->SetAssociatedWithLibdispatchQueue(
1821           associated_with_dispatch_queue);
1822 
1823       if (dispatch_queue_t != LLDB_INVALID_ADDRESS)
1824         gdb_thread->SetQueueLibdispatchQueueAddress(dispatch_queue_t);
1825 
1826       // Make sure we update our thread stop reason just once
1827       if (!thread_sp->StopInfoIsUpToDate()) {
1828         thread_sp->SetStopInfo(StopInfoSP());
1829         // If there's a memory thread backed by this thread, we need to use it
1830         // to calcualte StopInfo.
1831         ThreadSP memory_thread_sp =
1832             m_thread_list.FindThreadByProtocolID(thread_sp->GetProtocolID());
1833         if (memory_thread_sp)
1834           thread_sp = memory_thread_sp;
1835 
1836         if (exc_type != 0) {
1837           const size_t exc_data_size = exc_data.size();
1838 
1839           thread_sp->SetStopInfo(
1840               StopInfoMachException::CreateStopReasonWithMachException(
1841                   *thread_sp, exc_type, exc_data_size,
1842                   exc_data_size >= 1 ? exc_data[0] : 0,
1843                   exc_data_size >= 2 ? exc_data[1] : 0,
1844                   exc_data_size >= 3 ? exc_data[2] : 0));
1845         } else {
1846           bool handled = false;
1847           bool did_exec = false;
1848           if (!reason.empty()) {
1849             if (reason.compare("trace") == 0) {
1850               addr_t pc = thread_sp->GetRegisterContext()->GetPC();
1851               lldb::BreakpointSiteSP bp_site_sp = thread_sp->GetProcess()
1852                                                       ->GetBreakpointSiteList()
1853                                                       .FindByAddress(pc);
1854 
1855               // If the current pc is a breakpoint site then the StopInfo should
1856               // be set to Breakpoint
1857               // Otherwise, it will be set to Trace.
1858               if (bp_site_sp &&
1859                   bp_site_sp->ValidForThisThread(thread_sp.get())) {
1860                 thread_sp->SetStopInfo(
1861                     StopInfo::CreateStopReasonWithBreakpointSiteID(
1862                         *thread_sp, bp_site_sp->GetID()));
1863               } else
1864                 thread_sp->SetStopInfo(
1865                     StopInfo::CreateStopReasonToTrace(*thread_sp));
1866               handled = true;
1867             } else if (reason.compare("breakpoint") == 0) {
1868               addr_t pc = thread_sp->GetRegisterContext()->GetPC();
1869               lldb::BreakpointSiteSP bp_site_sp = thread_sp->GetProcess()
1870                                                       ->GetBreakpointSiteList()
1871                                                       .FindByAddress(pc);
1872               if (bp_site_sp) {
1873                 // If the breakpoint is for this thread, then we'll report the
1874                 // hit, but if it is for another thread,
1875                 // we can just report no reason.  We don't need to worry about
1876                 // stepping over the breakpoint here, that
1877                 // will be taken care of when the thread resumes and notices
1878                 // that there's a breakpoint under the pc.
1879                 handled = true;
1880                 if (bp_site_sp->ValidForThisThread(thread_sp.get())) {
1881                   thread_sp->SetStopInfo(
1882                       StopInfo::CreateStopReasonWithBreakpointSiteID(
1883                           *thread_sp, bp_site_sp->GetID()));
1884                 } else {
1885                   StopInfoSP invalid_stop_info_sp;
1886                   thread_sp->SetStopInfo(invalid_stop_info_sp);
1887                 }
1888               }
1889             } else if (reason.compare("trap") == 0) {
1890               // Let the trap just use the standard signal stop reason below...
1891             } else if (reason.compare("watchpoint") == 0) {
1892               StringExtractor desc_extractor(description.c_str());
1893               addr_t wp_addr = desc_extractor.GetU64(LLDB_INVALID_ADDRESS);
1894               uint32_t wp_index = desc_extractor.GetU32(LLDB_INVALID_INDEX32);
1895               addr_t wp_hit_addr = desc_extractor.GetU64(LLDB_INVALID_ADDRESS);
1896               watch_id_t watch_id = LLDB_INVALID_WATCH_ID;
1897               if (wp_addr != LLDB_INVALID_ADDRESS) {
1898                 WatchpointSP wp_sp;
1899                 ArchSpec::Core core = GetTarget().GetArchitecture().GetCore();
1900                 if ((core >= ArchSpec::kCore_mips_first &&
1901                      core <= ArchSpec::kCore_mips_last) ||
1902                     (core >= ArchSpec::eCore_arm_generic &&
1903                      core <= ArchSpec::eCore_arm_aarch64))
1904                   wp_sp = GetTarget().GetWatchpointList().FindByAddress(
1905                       wp_hit_addr);
1906                 if (!wp_sp)
1907                   wp_sp =
1908                       GetTarget().GetWatchpointList().FindByAddress(wp_addr);
1909                 if (wp_sp) {
1910                   wp_sp->SetHardwareIndex(wp_index);
1911                   watch_id = wp_sp->GetID();
1912                 }
1913               }
1914               if (watch_id == LLDB_INVALID_WATCH_ID) {
1915                 Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(
1916                     GDBR_LOG_WATCHPOINTS));
1917                 if (log)
1918                   log->Printf("failed to find watchpoint");
1919               }
1920               thread_sp->SetStopInfo(StopInfo::CreateStopReasonWithWatchpointID(
1921                   *thread_sp, watch_id, wp_hit_addr));
1922               handled = true;
1923             } else if (reason.compare("exception") == 0) {
1924               thread_sp->SetStopInfo(StopInfo::CreateStopReasonWithException(
1925                   *thread_sp, description.c_str()));
1926               handled = true;
1927             } else if (reason.compare("exec") == 0) {
1928               did_exec = true;
1929               thread_sp->SetStopInfo(
1930                   StopInfo::CreateStopReasonWithExec(*thread_sp));
1931               handled = true;
1932             }
1933           } else if (!signo) {
1934             addr_t pc = thread_sp->GetRegisterContext()->GetPC();
1935             lldb::BreakpointSiteSP bp_site_sp =
1936                 thread_sp->GetProcess()->GetBreakpointSiteList().FindByAddress(
1937                     pc);
1938 
1939             // If the current pc is a breakpoint site then the StopInfo should
1940             // be set to Breakpoint
1941             // even though the remote stub did not set it as such. This can
1942             // happen when
1943             // the thread is involuntarily interrupted (e.g. due to stops on
1944             // other
1945             // threads) just as it is about to execute the breakpoint
1946             // instruction.
1947             if (bp_site_sp && bp_site_sp->ValidForThisThread(thread_sp.get())) {
1948               thread_sp->SetStopInfo(
1949                   StopInfo::CreateStopReasonWithBreakpointSiteID(
1950                       *thread_sp, bp_site_sp->GetID()));
1951               handled = true;
1952             }
1953           }
1954 
1955           if (!handled && signo && did_exec == false) {
1956             if (signo == SIGTRAP) {
1957               // Currently we are going to assume SIGTRAP means we are either
1958               // hitting a breakpoint or hardware single stepping.
1959               handled = true;
1960               addr_t pc = thread_sp->GetRegisterContext()->GetPC() +
1961                           m_breakpoint_pc_offset;
1962               lldb::BreakpointSiteSP bp_site_sp = thread_sp->GetProcess()
1963                                                       ->GetBreakpointSiteList()
1964                                                       .FindByAddress(pc);
1965 
1966               if (bp_site_sp) {
1967                 // If the breakpoint is for this thread, then we'll report the
1968                 // hit, but if it is for another thread,
1969                 // we can just report no reason.  We don't need to worry about
1970                 // stepping over the breakpoint here, that
1971                 // will be taken care of when the thread resumes and notices
1972                 // that there's a breakpoint under the pc.
1973                 if (bp_site_sp->ValidForThisThread(thread_sp.get())) {
1974                   if (m_breakpoint_pc_offset != 0)
1975                     thread_sp->GetRegisterContext()->SetPC(pc);
1976                   thread_sp->SetStopInfo(
1977                       StopInfo::CreateStopReasonWithBreakpointSiteID(
1978                           *thread_sp, bp_site_sp->GetID()));
1979                 } else {
1980                   StopInfoSP invalid_stop_info_sp;
1981                   thread_sp->SetStopInfo(invalid_stop_info_sp);
1982                 }
1983               } else {
1984                 // If we were stepping then assume the stop was the result of
1985                 // the trace.  If we were
1986                 // not stepping then report the SIGTRAP.
1987                 // FIXME: We are still missing the case where we single step
1988                 // over a trap instruction.
1989                 if (thread_sp->GetTemporaryResumeState() == eStateStepping)
1990                   thread_sp->SetStopInfo(
1991                       StopInfo::CreateStopReasonToTrace(*thread_sp));
1992                 else
1993                   thread_sp->SetStopInfo(StopInfo::CreateStopReasonWithSignal(
1994                       *thread_sp, signo, description.c_str()));
1995               }
1996             }
1997             if (!handled)
1998               thread_sp->SetStopInfo(StopInfo::CreateStopReasonWithSignal(
1999                   *thread_sp, signo, description.c_str()));
2000           }
2001 
2002           if (!description.empty()) {
2003             lldb::StopInfoSP stop_info_sp(thread_sp->GetStopInfo());
2004             if (stop_info_sp) {
2005               const char *stop_info_desc = stop_info_sp->GetDescription();
2006               if (!stop_info_desc || !stop_info_desc[0])
2007                 stop_info_sp->SetDescription(description.c_str());
2008             } else {
2009               thread_sp->SetStopInfo(StopInfo::CreateStopReasonWithException(
2010                   *thread_sp, description.c_str()));
2011             }
2012           }
2013         }
2014       }
2015     }
2016   }
2017   return thread_sp;
2018 }
2019 
2020 lldb::ThreadSP
2021 ProcessGDBRemote::SetThreadStopInfo(StructuredData::Dictionary *thread_dict) {
2022   static ConstString g_key_tid("tid");
2023   static ConstString g_key_name("name");
2024   static ConstString g_key_reason("reason");
2025   static ConstString g_key_metype("metype");
2026   static ConstString g_key_medata("medata");
2027   static ConstString g_key_qaddr("qaddr");
2028   static ConstString g_key_dispatch_queue_t("dispatch_queue_t");
2029   static ConstString g_key_associated_with_dispatch_queue(
2030       "associated_with_dispatch_queue");
2031   static ConstString g_key_queue_name("qname");
2032   static ConstString g_key_queue_kind("qkind");
2033   static ConstString g_key_queue_serial_number("qserialnum");
2034   static ConstString g_key_registers("registers");
2035   static ConstString g_key_memory("memory");
2036   static ConstString g_key_address("address");
2037   static ConstString g_key_bytes("bytes");
2038   static ConstString g_key_description("description");
2039   static ConstString g_key_signal("signal");
2040 
2041   // Stop with signal and thread info
2042   lldb::tid_t tid = LLDB_INVALID_THREAD_ID;
2043   uint8_t signo = 0;
2044   std::string value;
2045   std::string thread_name;
2046   std::string reason;
2047   std::string description;
2048   uint32_t exc_type = 0;
2049   std::vector<addr_t> exc_data;
2050   addr_t thread_dispatch_qaddr = LLDB_INVALID_ADDRESS;
2051   ExpeditedRegisterMap expedited_register_map;
2052   bool queue_vars_valid = false;
2053   addr_t dispatch_queue_t = LLDB_INVALID_ADDRESS;
2054   LazyBool associated_with_dispatch_queue = eLazyBoolCalculate;
2055   std::string queue_name;
2056   QueueKind queue_kind = eQueueKindUnknown;
2057   uint64_t queue_serial_number = 0;
2058   // Iterate through all of the thread dictionary key/value pairs from the
2059   // structured data dictionary
2060 
2061   thread_dict->ForEach([this, &tid, &expedited_register_map, &thread_name,
2062                         &signo, &reason, &description, &exc_type, &exc_data,
2063                         &thread_dispatch_qaddr, &queue_vars_valid,
2064                         &associated_with_dispatch_queue, &dispatch_queue_t,
2065                         &queue_name, &queue_kind, &queue_serial_number](
2066                            ConstString key,
2067                            StructuredData::Object *object) -> bool {
2068     if (key == g_key_tid) {
2069       // thread in big endian hex
2070       tid = object->GetIntegerValue(LLDB_INVALID_THREAD_ID);
2071     } else if (key == g_key_metype) {
2072       // exception type in big endian hex
2073       exc_type = object->GetIntegerValue(0);
2074     } else if (key == g_key_medata) {
2075       // exception data in big endian hex
2076       StructuredData::Array *array = object->GetAsArray();
2077       if (array) {
2078         array->ForEach([&exc_data](StructuredData::Object *object) -> bool {
2079           exc_data.push_back(object->GetIntegerValue());
2080           return true; // Keep iterating through all array items
2081         });
2082       }
2083     } else if (key == g_key_name) {
2084       thread_name = object->GetStringValue();
2085     } else if (key == g_key_qaddr) {
2086       thread_dispatch_qaddr = object->GetIntegerValue(LLDB_INVALID_ADDRESS);
2087     } else if (key == g_key_queue_name) {
2088       queue_vars_valid = true;
2089       queue_name = object->GetStringValue();
2090     } else if (key == g_key_queue_kind) {
2091       std::string queue_kind_str = object->GetStringValue();
2092       if (queue_kind_str == "serial") {
2093         queue_vars_valid = true;
2094         queue_kind = eQueueKindSerial;
2095       } else if (queue_kind_str == "concurrent") {
2096         queue_vars_valid = true;
2097         queue_kind = eQueueKindConcurrent;
2098       }
2099     } else if (key == g_key_queue_serial_number) {
2100       queue_serial_number = object->GetIntegerValue(0);
2101       if (queue_serial_number != 0)
2102         queue_vars_valid = true;
2103     } else if (key == g_key_dispatch_queue_t) {
2104       dispatch_queue_t = object->GetIntegerValue(0);
2105       if (dispatch_queue_t != 0 && dispatch_queue_t != LLDB_INVALID_ADDRESS)
2106         queue_vars_valid = true;
2107     } else if (key == g_key_associated_with_dispatch_queue) {
2108       queue_vars_valid = true;
2109       bool associated = object->GetBooleanValue();
2110       if (associated)
2111         associated_with_dispatch_queue = eLazyBoolYes;
2112       else
2113         associated_with_dispatch_queue = eLazyBoolNo;
2114     } else if (key == g_key_reason) {
2115       reason = object->GetStringValue();
2116     } else if (key == g_key_description) {
2117       description = object->GetStringValue();
2118     } else if (key == g_key_registers) {
2119       StructuredData::Dictionary *registers_dict = object->GetAsDictionary();
2120 
2121       if (registers_dict) {
2122         registers_dict->ForEach(
2123             [&expedited_register_map](ConstString key,
2124                                       StructuredData::Object *object) -> bool {
2125               const uint32_t reg =
2126                   StringConvert::ToUInt32(key.GetCString(), UINT32_MAX, 10);
2127               if (reg != UINT32_MAX)
2128                 expedited_register_map[reg] = object->GetStringValue();
2129               return true; // Keep iterating through all array items
2130             });
2131       }
2132     } else if (key == g_key_memory) {
2133       StructuredData::Array *array = object->GetAsArray();
2134       if (array) {
2135         array->ForEach([this](StructuredData::Object *object) -> bool {
2136           StructuredData::Dictionary *mem_cache_dict =
2137               object->GetAsDictionary();
2138           if (mem_cache_dict) {
2139             lldb::addr_t mem_cache_addr = LLDB_INVALID_ADDRESS;
2140             if (mem_cache_dict->GetValueForKeyAsInteger<lldb::addr_t>(
2141                     "address", mem_cache_addr)) {
2142               if (mem_cache_addr != LLDB_INVALID_ADDRESS) {
2143                 llvm::StringRef str;
2144                 if (mem_cache_dict->GetValueForKeyAsString("bytes", str)) {
2145                   StringExtractor bytes(str);
2146                   bytes.SetFilePos(0);
2147 
2148                   const size_t byte_size = bytes.GetStringRef().size() / 2;
2149                   DataBufferSP data_buffer_sp(new DataBufferHeap(byte_size, 0));
2150                   const size_t bytes_copied =
2151                       bytes.GetHexBytes(data_buffer_sp->GetData(), 0);
2152                   if (bytes_copied == byte_size)
2153                     m_memory_cache.AddL1CacheData(mem_cache_addr,
2154                                                   data_buffer_sp);
2155                 }
2156               }
2157             }
2158           }
2159           return true; // Keep iterating through all array items
2160         });
2161       }
2162 
2163     } else if (key == g_key_signal)
2164       signo = object->GetIntegerValue(LLDB_INVALID_SIGNAL_NUMBER);
2165     return true; // Keep iterating through all dictionary key/value pairs
2166   });
2167 
2168   return SetThreadStopInfo(tid, expedited_register_map, signo, thread_name,
2169                            reason, description, exc_type, exc_data,
2170                            thread_dispatch_qaddr, queue_vars_valid,
2171                            associated_with_dispatch_queue, dispatch_queue_t,
2172                            queue_name, queue_kind, queue_serial_number);
2173 }
2174 
2175 StateType ProcessGDBRemote::SetThreadStopInfo(StringExtractor &stop_packet) {
2176   stop_packet.SetFilePos(0);
2177   const char stop_type = stop_packet.GetChar();
2178   switch (stop_type) {
2179   case 'T':
2180   case 'S': {
2181     // This is a bit of a hack, but is is required. If we did exec, we
2182     // need to clear our thread lists and also know to rebuild our dynamic
2183     // register info before we lookup and threads and populate the expedited
2184     // register values so we need to know this right away so we can cleanup
2185     // and update our registers.
2186     const uint32_t stop_id = GetStopID();
2187     if (stop_id == 0) {
2188       // Our first stop, make sure we have a process ID, and also make
2189       // sure we know about our registers
2190       if (GetID() == LLDB_INVALID_PROCESS_ID) {
2191         lldb::pid_t pid = m_gdb_comm.GetCurrentProcessID();
2192         if (pid != LLDB_INVALID_PROCESS_ID)
2193           SetID(pid);
2194       }
2195       BuildDynamicRegisterInfo(true);
2196     }
2197     // Stop with signal and thread info
2198     lldb::tid_t tid = LLDB_INVALID_THREAD_ID;
2199     const uint8_t signo = stop_packet.GetHexU8();
2200     llvm::StringRef key;
2201     llvm::StringRef value;
2202     std::string thread_name;
2203     std::string reason;
2204     std::string description;
2205     uint32_t exc_type = 0;
2206     std::vector<addr_t> exc_data;
2207     addr_t thread_dispatch_qaddr = LLDB_INVALID_ADDRESS;
2208     bool queue_vars_valid =
2209         false; // says if locals below that start with "queue_" are valid
2210     addr_t dispatch_queue_t = LLDB_INVALID_ADDRESS;
2211     LazyBool associated_with_dispatch_queue = eLazyBoolCalculate;
2212     std::string queue_name;
2213     QueueKind queue_kind = eQueueKindUnknown;
2214     uint64_t queue_serial_number = 0;
2215     ExpeditedRegisterMap expedited_register_map;
2216     while (stop_packet.GetNameColonValue(key, value)) {
2217       if (key.compare("metype") == 0) {
2218         // exception type in big endian hex
2219         value.getAsInteger(16, exc_type);
2220       } else if (key.compare("medata") == 0) {
2221         // exception data in big endian hex
2222         uint64_t x;
2223         value.getAsInteger(16, x);
2224         exc_data.push_back(x);
2225       } else if (key.compare("thread") == 0) {
2226         // thread in big endian hex
2227         if (value.getAsInteger(16, tid))
2228           tid = LLDB_INVALID_THREAD_ID;
2229       } else if (key.compare("threads") == 0) {
2230         std::lock_guard<std::recursive_mutex> guard(
2231             m_thread_list_real.GetMutex());
2232 
2233         m_thread_ids.clear();
2234         // A comma separated list of all threads in the current
2235         // process that includes the thread for this stop reply
2236         // packet
2237         lldb::tid_t tid;
2238         while (!value.empty()) {
2239           llvm::StringRef tid_str;
2240           std::tie(tid_str, value) = value.split(',');
2241           if (tid_str.getAsInteger(16, tid))
2242             tid = LLDB_INVALID_THREAD_ID;
2243           m_thread_ids.push_back(tid);
2244         }
2245       } else if (key.compare("thread-pcs") == 0) {
2246         m_thread_pcs.clear();
2247         // A comma separated list of all threads in the current
2248         // process that includes the thread for this stop reply
2249         // packet
2250         lldb::addr_t pc;
2251         while (!value.empty()) {
2252           llvm::StringRef pc_str;
2253           std::tie(pc_str, value) = value.split(',');
2254           if (pc_str.getAsInteger(16, pc))
2255             pc = LLDB_INVALID_ADDRESS;
2256           m_thread_pcs.push_back(pc);
2257         }
2258       } else if (key.compare("jstopinfo") == 0) {
2259         StringExtractor json_extractor(value);
2260         std::string json;
2261         // Now convert the HEX bytes into a string value
2262         json_extractor.GetHexByteString(json);
2263 
2264         // This JSON contains thread IDs and thread stop info for all threads.
2265         // It doesn't contain expedited registers, memory or queue info.
2266         m_jstopinfo_sp = StructuredData::ParseJSON(json);
2267       } else if (key.compare("hexname") == 0) {
2268         StringExtractor name_extractor(value);
2269         std::string name;
2270         // Now convert the HEX bytes into a string value
2271         name_extractor.GetHexByteString(thread_name);
2272       } else if (key.compare("name") == 0) {
2273         thread_name = value;
2274       } else if (key.compare("qaddr") == 0) {
2275         value.getAsInteger(16, thread_dispatch_qaddr);
2276       } else if (key.compare("dispatch_queue_t") == 0) {
2277         queue_vars_valid = true;
2278         value.getAsInteger(16, dispatch_queue_t);
2279       } else if (key.compare("qname") == 0) {
2280         queue_vars_valid = true;
2281         StringExtractor name_extractor(value);
2282         // Now convert the HEX bytes into a string value
2283         name_extractor.GetHexByteString(queue_name);
2284       } else if (key.compare("qkind") == 0) {
2285         queue_kind = llvm::StringSwitch<QueueKind>(value)
2286                          .Case("serial", eQueueKindSerial)
2287                          .Case("concurrent", eQueueKindConcurrent)
2288                          .Default(eQueueKindUnknown);
2289         queue_vars_valid = queue_kind != eQueueKindUnknown;
2290       } else if (key.compare("qserialnum") == 0) {
2291         if (!value.getAsInteger(0, queue_serial_number))
2292           queue_vars_valid = true;
2293       } else if (key.compare("reason") == 0) {
2294         reason = value;
2295       } else if (key.compare("description") == 0) {
2296         StringExtractor desc_extractor(value);
2297         // Now convert the HEX bytes into a string value
2298         desc_extractor.GetHexByteString(description);
2299       } else if (key.compare("memory") == 0) {
2300         // Expedited memory. GDB servers can choose to send back expedited
2301         // memory
2302         // that can populate the L1 memory cache in the process so that things
2303         // like
2304         // the frame pointer backchain can be expedited. This will help stack
2305         // backtracing be more efficient by not having to send as many memory
2306         // read
2307         // requests down the remote GDB server.
2308 
2309         // Key/value pair format: memory:<addr>=<bytes>;
2310         // <addr> is a number whose base will be interpreted by the prefix:
2311         //      "0x[0-9a-fA-F]+" for hex
2312         //      "0[0-7]+" for octal
2313         //      "[1-9]+" for decimal
2314         // <bytes> is native endian ASCII hex bytes just like the register
2315         // values
2316         llvm::StringRef addr_str, bytes_str;
2317         std::tie(addr_str, bytes_str) = value.split('=');
2318         if (!addr_str.empty() && !bytes_str.empty()) {
2319           lldb::addr_t mem_cache_addr = LLDB_INVALID_ADDRESS;
2320           if (!addr_str.getAsInteger(0, mem_cache_addr)) {
2321             StringExtractor bytes(bytes_str);
2322             const size_t byte_size = bytes.GetBytesLeft() / 2;
2323             DataBufferSP data_buffer_sp(new DataBufferHeap(byte_size, 0));
2324             const size_t bytes_copied =
2325                 bytes.GetHexBytes(data_buffer_sp->GetData(), 0);
2326             if (bytes_copied == byte_size)
2327               m_memory_cache.AddL1CacheData(mem_cache_addr, data_buffer_sp);
2328           }
2329         }
2330       } else if (key.compare("watch") == 0 || key.compare("rwatch") == 0 ||
2331                  key.compare("awatch") == 0) {
2332         // Support standard GDB remote stop reply packet 'TAAwatch:addr'
2333         lldb::addr_t wp_addr = LLDB_INVALID_ADDRESS;
2334         value.getAsInteger(16, wp_addr);
2335 
2336         WatchpointSP wp_sp =
2337             GetTarget().GetWatchpointList().FindByAddress(wp_addr);
2338         uint32_t wp_index = LLDB_INVALID_INDEX32;
2339 
2340         if (wp_sp)
2341           wp_index = wp_sp->GetHardwareIndex();
2342 
2343         reason = "watchpoint";
2344         StreamString ostr;
2345         ostr.Printf("%" PRIu64 " %" PRIu32, wp_addr, wp_index);
2346         description = ostr.GetString();
2347       } else if (key.compare("library") == 0) {
2348         LoadModules();
2349       } else if (key.size() == 2 && ::isxdigit(key[0]) && ::isxdigit(key[1])) {
2350         uint32_t reg = UINT32_MAX;
2351         if (!key.getAsInteger(16, reg))
2352           expedited_register_map[reg] = std::move(value);
2353       }
2354     }
2355 
2356     if (tid == LLDB_INVALID_THREAD_ID) {
2357       // A thread id may be invalid if the response is old style 'S' packet
2358       // which does not provide the
2359       // thread information. So update the thread list and choose the first one.
2360       UpdateThreadIDList();
2361 
2362       if (!m_thread_ids.empty()) {
2363         tid = m_thread_ids.front();
2364       }
2365     }
2366 
2367     ThreadSP thread_sp = SetThreadStopInfo(
2368         tid, expedited_register_map, signo, thread_name, reason, description,
2369         exc_type, exc_data, thread_dispatch_qaddr, queue_vars_valid,
2370         associated_with_dispatch_queue, dispatch_queue_t, queue_name,
2371         queue_kind, queue_serial_number);
2372 
2373     return eStateStopped;
2374   } break;
2375 
2376   case 'W':
2377   case 'X':
2378     // process exited
2379     return eStateExited;
2380 
2381   default:
2382     break;
2383   }
2384   return eStateInvalid;
2385 }
2386 
2387 void ProcessGDBRemote::RefreshStateAfterStop() {
2388   std::lock_guard<std::recursive_mutex> guard(m_thread_list_real.GetMutex());
2389 
2390   m_thread_ids.clear();
2391   m_thread_pcs.clear();
2392   // Set the thread stop info. It might have a "threads" key whose value is
2393   // a list of all thread IDs in the current process, so m_thread_ids might
2394   // get set.
2395 
2396   // Scope for the lock
2397   {
2398     // Lock the thread stack while we access it
2399     std::lock_guard<std::recursive_mutex> guard(m_last_stop_packet_mutex);
2400     // Get the number of stop packets on the stack
2401     int nItems = m_stop_packet_stack.size();
2402     // Iterate over them
2403     for (int i = 0; i < nItems; i++) {
2404       // Get the thread stop info
2405       StringExtractorGDBRemote stop_info = m_stop_packet_stack[i];
2406       // Process thread stop info
2407       SetThreadStopInfo(stop_info);
2408     }
2409     // Clear the thread stop stack
2410     m_stop_packet_stack.clear();
2411   }
2412 
2413   // Check to see if SetThreadStopInfo() filled in m_thread_ids?
2414   if (m_thread_ids.empty()) {
2415     // No, we need to fetch the thread list manually
2416     UpdateThreadIDList();
2417   }
2418 
2419   // If we have queried for a default thread id
2420   if (m_initial_tid != LLDB_INVALID_THREAD_ID) {
2421     m_thread_list.SetSelectedThreadByID(m_initial_tid);
2422     m_initial_tid = LLDB_INVALID_THREAD_ID;
2423   }
2424 
2425   // Let all threads recover from stopping and do any clean up based
2426   // on the previous thread state (if any).
2427   m_thread_list_real.RefreshStateAfterStop();
2428 }
2429 
2430 Status ProcessGDBRemote::DoHalt(bool &caused_stop) {
2431   Status error;
2432 
2433   if (m_public_state.GetValue() == eStateAttaching) {
2434     // We are being asked to halt during an attach. We need to just close
2435     // our file handle and debugserver will go away, and we can be done...
2436     m_gdb_comm.Disconnect();
2437   } else
2438     caused_stop = m_gdb_comm.Interrupt();
2439   return error;
2440 }
2441 
2442 Status ProcessGDBRemote::DoDetach(bool keep_stopped) {
2443   Status error;
2444   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
2445   if (log)
2446     log->Printf("ProcessGDBRemote::DoDetach(keep_stopped: %i)", keep_stopped);
2447 
2448   error = m_gdb_comm.Detach(keep_stopped);
2449   if (log) {
2450     if (error.Success())
2451       log->PutCString(
2452           "ProcessGDBRemote::DoDetach() detach packet sent successfully");
2453     else
2454       log->Printf("ProcessGDBRemote::DoDetach() detach packet send failed: %s",
2455                   error.AsCString() ? error.AsCString() : "<unknown error>");
2456   }
2457 
2458   if (!error.Success())
2459     return error;
2460 
2461   // Sleep for one second to let the process get all detached...
2462   StopAsyncThread();
2463 
2464   SetPrivateState(eStateDetached);
2465   ResumePrivateStateThread();
2466 
2467   // KillDebugserverProcess ();
2468   return error;
2469 }
2470 
2471 Status ProcessGDBRemote::DoDestroy() {
2472   Status error;
2473   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
2474   if (log)
2475     log->Printf("ProcessGDBRemote::DoDestroy()");
2476 
2477   // There is a bug in older iOS debugservers where they don't shut down the
2478   // process
2479   // they are debugging properly.  If the process is sitting at a breakpoint or
2480   // an exception,
2481   // this can cause problems with restarting.  So we check to see if any of our
2482   // threads are stopped
2483   // at a breakpoint, and if so we remove all the breakpoints, resume the
2484   // process, and THEN
2485   // destroy it again.
2486   //
2487   // Note, we don't have a good way to test the version of debugserver, but I
2488   // happen to know that
2489   // the set of all the iOS debugservers which don't support
2490   // GetThreadSuffixSupported() and that of
2491   // the debugservers with this bug are equal.  There really should be a better
2492   // way to test this!
2493   //
2494   // We also use m_destroy_tried_resuming to make sure we only do this once, if
2495   // we resume and then halt and
2496   // get called here to destroy again and we're still at a breakpoint or
2497   // exception, then we should
2498   // just do the straight-forward kill.
2499   //
2500   // And of course, if we weren't able to stop the process by the time we get
2501   // here, it isn't
2502   // necessary (or helpful) to do any of this.
2503 
2504   if (!m_gdb_comm.GetThreadSuffixSupported() &&
2505       m_public_state.GetValue() != eStateRunning) {
2506     PlatformSP platform_sp = GetTarget().GetPlatform();
2507 
2508     // FIXME: These should be ConstStrings so we aren't doing strcmp'ing.
2509     if (platform_sp && platform_sp->GetName() &&
2510         platform_sp->GetName() == PlatformRemoteiOS::GetPluginNameStatic()) {
2511       if (m_destroy_tried_resuming) {
2512         if (log)
2513           log->PutCString("ProcessGDBRemote::DoDestroy() - Tried resuming to "
2514                           "destroy once already, not doing it again.");
2515       } else {
2516         // At present, the plans are discarded and the breakpoints disabled
2517         // Process::Destroy,
2518         // but we really need it to happen here and it doesn't matter if we do
2519         // it twice.
2520         m_thread_list.DiscardThreadPlans();
2521         DisableAllBreakpointSites();
2522 
2523         bool stop_looks_like_crash = false;
2524         ThreadList &threads = GetThreadList();
2525 
2526         {
2527           std::lock_guard<std::recursive_mutex> guard(threads.GetMutex());
2528 
2529           size_t num_threads = threads.GetSize();
2530           for (size_t i = 0; i < num_threads; i++) {
2531             ThreadSP thread_sp = threads.GetThreadAtIndex(i);
2532             StopInfoSP stop_info_sp = thread_sp->GetPrivateStopInfo();
2533             StopReason reason = eStopReasonInvalid;
2534             if (stop_info_sp)
2535               reason = stop_info_sp->GetStopReason();
2536             if (reason == eStopReasonBreakpoint ||
2537                 reason == eStopReasonException) {
2538               if (log)
2539                 log->Printf(
2540                     "ProcessGDBRemote::DoDestroy() - thread: 0x%4.4" PRIx64
2541                     " stopped with reason: %s.",
2542                     thread_sp->GetProtocolID(), stop_info_sp->GetDescription());
2543               stop_looks_like_crash = true;
2544               break;
2545             }
2546           }
2547         }
2548 
2549         if (stop_looks_like_crash) {
2550           if (log)
2551             log->PutCString("ProcessGDBRemote::DoDestroy() - Stopped at a "
2552                             "breakpoint, continue and then kill.");
2553           m_destroy_tried_resuming = true;
2554 
2555           // If we are going to run again before killing, it would be good to
2556           // suspend all the threads
2557           // before resuming so they won't get into more trouble.  Sadly, for
2558           // the threads stopped with
2559           // the breakpoint or exception, the exception doesn't get cleared if
2560           // it is suspended, so we do
2561           // have to run the risk of letting those threads proceed a bit.
2562 
2563           {
2564             std::lock_guard<std::recursive_mutex> guard(threads.GetMutex());
2565 
2566             size_t num_threads = threads.GetSize();
2567             for (size_t i = 0; i < num_threads; i++) {
2568               ThreadSP thread_sp = threads.GetThreadAtIndex(i);
2569               StopInfoSP stop_info_sp = thread_sp->GetPrivateStopInfo();
2570               StopReason reason = eStopReasonInvalid;
2571               if (stop_info_sp)
2572                 reason = stop_info_sp->GetStopReason();
2573               if (reason != eStopReasonBreakpoint &&
2574                   reason != eStopReasonException) {
2575                 if (log)
2576                   log->Printf("ProcessGDBRemote::DoDestroy() - Suspending "
2577                               "thread: 0x%4.4" PRIx64 " before running.",
2578                               thread_sp->GetProtocolID());
2579                 thread_sp->SetResumeState(eStateSuspended);
2580               }
2581             }
2582           }
2583           Resume();
2584           return Destroy(false);
2585         }
2586       }
2587     }
2588   }
2589 
2590   // Interrupt if our inferior is running...
2591   int exit_status = SIGABRT;
2592   std::string exit_string;
2593 
2594   if (m_gdb_comm.IsConnected()) {
2595     if (m_public_state.GetValue() != eStateAttaching) {
2596       StringExtractorGDBRemote response;
2597       bool send_async = true;
2598       GDBRemoteCommunication::ScopedTimeout(m_gdb_comm,
2599                                             std::chrono::seconds(3));
2600 
2601       if (m_gdb_comm.SendPacketAndWaitForResponse("k", response, send_async) ==
2602           GDBRemoteCommunication::PacketResult::Success) {
2603         char packet_cmd = response.GetChar(0);
2604 
2605         if (packet_cmd == 'W' || packet_cmd == 'X') {
2606 #if defined(__APPLE__)
2607           // For Native processes on Mac OS X, we launch through the Host
2608           // Platform, then hand the process off
2609           // to debugserver, which becomes the parent process through
2610           // "PT_ATTACH".  Then when we go to kill
2611           // the process on Mac OS X we call ptrace(PT_KILL) to kill it, then we
2612           // call waitpid which returns
2613           // with no error and the correct status.  But amusingly enough that
2614           // doesn't seem to actually reap
2615           // the process, but instead it is left around as a Zombie.  Probably
2616           // the kernel is in the process of
2617           // switching ownership back to lldb which was the original parent, and
2618           // gets confused in the handoff.
2619           // Anyway, so call waitpid here to finally reap it.
2620           PlatformSP platform_sp(GetTarget().GetPlatform());
2621           if (platform_sp && platform_sp->IsHost()) {
2622             int status;
2623             ::pid_t reap_pid;
2624             reap_pid = waitpid(GetID(), &status, WNOHANG);
2625             if (log)
2626               log->Printf("Reaped pid: %d, status: %d.\n", reap_pid, status);
2627           }
2628 #endif
2629           SetLastStopPacket(response);
2630           ClearThreadIDList();
2631           exit_status = response.GetHexU8();
2632         } else {
2633           if (log)
2634             log->Printf("ProcessGDBRemote::DoDestroy - got unexpected response "
2635                         "to k packet: %s",
2636                         response.GetStringRef().c_str());
2637           exit_string.assign("got unexpected response to k packet: ");
2638           exit_string.append(response.GetStringRef());
2639         }
2640       } else {
2641         if (log)
2642           log->Printf("ProcessGDBRemote::DoDestroy - failed to send k packet");
2643         exit_string.assign("failed to send the k packet");
2644       }
2645     } else {
2646       if (log)
2647         log->Printf("ProcessGDBRemote::DoDestroy - killed or interrupted while "
2648                     "attaching");
2649       exit_string.assign("killed or interrupted while attaching.");
2650     }
2651   } else {
2652     // If we missed setting the exit status on the way out, do it here.
2653     // NB set exit status can be called multiple times, the first one sets the
2654     // status.
2655     exit_string.assign("destroying when not connected to debugserver");
2656   }
2657 
2658   SetExitStatus(exit_status, exit_string.c_str());
2659 
2660   StopAsyncThread();
2661   KillDebugserverProcess();
2662   return error;
2663 }
2664 
2665 void ProcessGDBRemote::SetLastStopPacket(
2666     const StringExtractorGDBRemote &response) {
2667   const bool did_exec =
2668       response.GetStringRef().find(";reason:exec;") != std::string::npos;
2669   if (did_exec) {
2670     Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
2671     if (log)
2672       log->Printf("ProcessGDBRemote::SetLastStopPacket () - detected exec");
2673 
2674     m_thread_list_real.Clear();
2675     m_thread_list.Clear();
2676     BuildDynamicRegisterInfo(true);
2677     m_gdb_comm.ResetDiscoverableSettings(did_exec);
2678   }
2679 
2680   // Scope the lock
2681   {
2682     // Lock the thread stack while we access it
2683     std::lock_guard<std::recursive_mutex> guard(m_last_stop_packet_mutex);
2684 
2685     // We are are not using non-stop mode, there can only be one last stop
2686     // reply packet, so clear the list.
2687     if (GetTarget().GetNonStopModeEnabled() == false)
2688       m_stop_packet_stack.clear();
2689 
2690     // Add this stop packet to the stop packet stack
2691     // This stack will get popped and examined when we switch to the
2692     // Stopped state
2693     m_stop_packet_stack.push_back(response);
2694   }
2695 }
2696 
2697 void ProcessGDBRemote::SetUnixSignals(const UnixSignalsSP &signals_sp) {
2698   Process::SetUnixSignals(std::make_shared<GDBRemoteSignals>(signals_sp));
2699 }
2700 
2701 //------------------------------------------------------------------
2702 // Process Queries
2703 //------------------------------------------------------------------
2704 
2705 bool ProcessGDBRemote::IsAlive() {
2706   return m_gdb_comm.IsConnected() && Process::IsAlive();
2707 }
2708 
2709 addr_t ProcessGDBRemote::GetImageInfoAddress() {
2710   // request the link map address via the $qShlibInfoAddr packet
2711   lldb::addr_t addr = m_gdb_comm.GetShlibInfoAddr();
2712 
2713   // the loaded module list can also provides a link map address
2714   if (addr == LLDB_INVALID_ADDRESS) {
2715     LoadedModuleInfoList list;
2716     if (GetLoadedModuleList(list).Success())
2717       addr = list.m_link_map;
2718   }
2719 
2720   return addr;
2721 }
2722 
2723 void ProcessGDBRemote::WillPublicStop() {
2724   // See if the GDB remote client supports the JSON threads info.
2725   // If so, we gather stop info for all threads, expedited registers,
2726   // expedited memory, runtime queue information (iOS and MacOSX only),
2727   // and more. Expediting memory will help stack backtracing be much
2728   // faster. Expediting registers will make sure we don't have to read
2729   // the thread registers for GPRs.
2730   m_jthreadsinfo_sp = m_gdb_comm.GetThreadsInfo();
2731 
2732   if (m_jthreadsinfo_sp) {
2733     // Now set the stop info for each thread and also expedite any registers
2734     // and memory that was in the jThreadsInfo response.
2735     StructuredData::Array *thread_infos = m_jthreadsinfo_sp->GetAsArray();
2736     if (thread_infos) {
2737       const size_t n = thread_infos->GetSize();
2738       for (size_t i = 0; i < n; ++i) {
2739         StructuredData::Dictionary *thread_dict =
2740             thread_infos->GetItemAtIndex(i)->GetAsDictionary();
2741         if (thread_dict)
2742           SetThreadStopInfo(thread_dict);
2743       }
2744     }
2745   }
2746 }
2747 
2748 //------------------------------------------------------------------
2749 // Process Memory
2750 //------------------------------------------------------------------
2751 size_t ProcessGDBRemote::DoReadMemory(addr_t addr, void *buf, size_t size,
2752                                       Status &error) {
2753   GetMaxMemorySize();
2754   bool binary_memory_read = m_gdb_comm.GetxPacketSupported();
2755   // M and m packets take 2 bytes for 1 byte of memory
2756   size_t max_memory_size =
2757       binary_memory_read ? m_max_memory_size : m_max_memory_size / 2;
2758   if (size > max_memory_size) {
2759     // Keep memory read sizes down to a sane limit. This function will be
2760     // called multiple times in order to complete the task by
2761     // lldb_private::Process so it is ok to do this.
2762     size = max_memory_size;
2763   }
2764 
2765   char packet[64];
2766   int packet_len;
2767   packet_len = ::snprintf(packet, sizeof(packet), "%c%" PRIx64 ",%" PRIx64,
2768                           binary_memory_read ? 'x' : 'm', (uint64_t)addr,
2769                           (uint64_t)size);
2770   assert(packet_len + 1 < (int)sizeof(packet));
2771   UNUSED_IF_ASSERT_DISABLED(packet_len);
2772   StringExtractorGDBRemote response;
2773   if (m_gdb_comm.SendPacketAndWaitForResponse(packet, response, true) ==
2774       GDBRemoteCommunication::PacketResult::Success) {
2775     if (response.IsNormalResponse()) {
2776       error.Clear();
2777       if (binary_memory_read) {
2778         // The lower level GDBRemoteCommunication packet receive layer has
2779         // already de-quoted any
2780         // 0x7d character escaping that was present in the packet
2781 
2782         size_t data_received_size = response.GetBytesLeft();
2783         if (data_received_size > size) {
2784           // Don't write past the end of BUF if the remote debug server gave us
2785           // too
2786           // much data for some reason.
2787           data_received_size = size;
2788         }
2789         memcpy(buf, response.GetStringRef().data(), data_received_size);
2790         return data_received_size;
2791       } else {
2792         return response.GetHexBytes(
2793             llvm::MutableArrayRef<uint8_t>((uint8_t *)buf, size), '\xdd');
2794       }
2795     } else if (response.IsErrorResponse())
2796       error.SetErrorStringWithFormat("memory read failed for 0x%" PRIx64, addr);
2797     else if (response.IsUnsupportedResponse())
2798       error.SetErrorStringWithFormat(
2799           "GDB server does not support reading memory");
2800     else
2801       error.SetErrorStringWithFormat(
2802           "unexpected response to GDB server memory read packet '%s': '%s'",
2803           packet, response.GetStringRef().c_str());
2804   } else {
2805     error.SetErrorStringWithFormat("failed to send packet: '%s'", packet);
2806   }
2807   return 0;
2808 }
2809 
2810 size_t ProcessGDBRemote::DoWriteMemory(addr_t addr, const void *buf,
2811                                        size_t size, Status &error) {
2812   GetMaxMemorySize();
2813   // M and m packets take 2 bytes for 1 byte of memory
2814   size_t max_memory_size = m_max_memory_size / 2;
2815   if (size > max_memory_size) {
2816     // Keep memory read sizes down to a sane limit. This function will be
2817     // called multiple times in order to complete the task by
2818     // lldb_private::Process so it is ok to do this.
2819     size = max_memory_size;
2820   }
2821 
2822   StreamString packet;
2823   packet.Printf("M%" PRIx64 ",%" PRIx64 ":", addr, (uint64_t)size);
2824   packet.PutBytesAsRawHex8(buf, size, endian::InlHostByteOrder(),
2825                            endian::InlHostByteOrder());
2826   StringExtractorGDBRemote response;
2827   if (m_gdb_comm.SendPacketAndWaitForResponse(packet.GetString(), response,
2828                                               true) ==
2829       GDBRemoteCommunication::PacketResult::Success) {
2830     if (response.IsOKResponse()) {
2831       error.Clear();
2832       return size;
2833     } else if (response.IsErrorResponse())
2834       error.SetErrorStringWithFormat("memory write failed for 0x%" PRIx64,
2835                                      addr);
2836     else if (response.IsUnsupportedResponse())
2837       error.SetErrorStringWithFormat(
2838           "GDB server does not support writing memory");
2839     else
2840       error.SetErrorStringWithFormat(
2841           "unexpected response to GDB server memory write packet '%s': '%s'",
2842           packet.GetData(), response.GetStringRef().c_str());
2843   } else {
2844     error.SetErrorStringWithFormat("failed to send packet: '%s'",
2845                                    packet.GetData());
2846   }
2847   return 0;
2848 }
2849 
2850 lldb::addr_t ProcessGDBRemote::DoAllocateMemory(size_t size,
2851                                                 uint32_t permissions,
2852                                                 Status &error) {
2853   Log *log(
2854       GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_EXPRESSIONS));
2855   addr_t allocated_addr = LLDB_INVALID_ADDRESS;
2856 
2857   if (m_gdb_comm.SupportsAllocDeallocMemory() != eLazyBoolNo) {
2858     allocated_addr = m_gdb_comm.AllocateMemory(size, permissions);
2859     if (allocated_addr != LLDB_INVALID_ADDRESS ||
2860         m_gdb_comm.SupportsAllocDeallocMemory() == eLazyBoolYes)
2861       return allocated_addr;
2862   }
2863 
2864   if (m_gdb_comm.SupportsAllocDeallocMemory() == eLazyBoolNo) {
2865     // Call mmap() to create memory in the inferior..
2866     unsigned prot = 0;
2867     if (permissions & lldb::ePermissionsReadable)
2868       prot |= eMmapProtRead;
2869     if (permissions & lldb::ePermissionsWritable)
2870       prot |= eMmapProtWrite;
2871     if (permissions & lldb::ePermissionsExecutable)
2872       prot |= eMmapProtExec;
2873 
2874     if (InferiorCallMmap(this, allocated_addr, 0, size, prot,
2875                          eMmapFlagsAnon | eMmapFlagsPrivate, -1, 0))
2876       m_addr_to_mmap_size[allocated_addr] = size;
2877     else {
2878       allocated_addr = LLDB_INVALID_ADDRESS;
2879       if (log)
2880         log->Printf("ProcessGDBRemote::%s no direct stub support for memory "
2881                     "allocation, and InferiorCallMmap also failed - is stub "
2882                     "missing register context save/restore capability?",
2883                     __FUNCTION__);
2884     }
2885   }
2886 
2887   if (allocated_addr == LLDB_INVALID_ADDRESS)
2888     error.SetErrorStringWithFormat(
2889         "unable to allocate %" PRIu64 " bytes of memory with permissions %s",
2890         (uint64_t)size, GetPermissionsAsCString(permissions));
2891   else
2892     error.Clear();
2893   return allocated_addr;
2894 }
2895 
2896 Status ProcessGDBRemote::GetMemoryRegionInfo(addr_t load_addr,
2897                                              MemoryRegionInfo &region_info) {
2898 
2899   Status error(m_gdb_comm.GetMemoryRegionInfo(load_addr, region_info));
2900   return error;
2901 }
2902 
2903 Status ProcessGDBRemote::GetWatchpointSupportInfo(uint32_t &num) {
2904 
2905   Status error(m_gdb_comm.GetWatchpointSupportInfo(num));
2906   return error;
2907 }
2908 
2909 Status ProcessGDBRemote::GetWatchpointSupportInfo(uint32_t &num, bool &after) {
2910   Status error(m_gdb_comm.GetWatchpointSupportInfo(
2911       num, after, GetTarget().GetArchitecture()));
2912   return error;
2913 }
2914 
2915 Status ProcessGDBRemote::DoDeallocateMemory(lldb::addr_t addr) {
2916   Status error;
2917   LazyBool supported = m_gdb_comm.SupportsAllocDeallocMemory();
2918 
2919   switch (supported) {
2920   case eLazyBoolCalculate:
2921     // We should never be deallocating memory without allocating memory
2922     // first so we should never get eLazyBoolCalculate
2923     error.SetErrorString(
2924         "tried to deallocate memory without ever allocating memory");
2925     break;
2926 
2927   case eLazyBoolYes:
2928     if (!m_gdb_comm.DeallocateMemory(addr))
2929       error.SetErrorStringWithFormat(
2930           "unable to deallocate memory at 0x%" PRIx64, addr);
2931     break;
2932 
2933   case eLazyBoolNo:
2934     // Call munmap() to deallocate memory in the inferior..
2935     {
2936       MMapMap::iterator pos = m_addr_to_mmap_size.find(addr);
2937       if (pos != m_addr_to_mmap_size.end() &&
2938           InferiorCallMunmap(this, addr, pos->second))
2939         m_addr_to_mmap_size.erase(pos);
2940       else
2941         error.SetErrorStringWithFormat(
2942             "unable to deallocate memory at 0x%" PRIx64, addr);
2943     }
2944     break;
2945   }
2946 
2947   return error;
2948 }
2949 
2950 //------------------------------------------------------------------
2951 // Process STDIO
2952 //------------------------------------------------------------------
2953 size_t ProcessGDBRemote::PutSTDIN(const char *src, size_t src_len,
2954                                   Status &error) {
2955   if (m_stdio_communication.IsConnected()) {
2956     ConnectionStatus status;
2957     m_stdio_communication.Write(src, src_len, status, NULL);
2958   } else if (m_stdin_forward) {
2959     m_gdb_comm.SendStdinNotification(src, src_len);
2960   }
2961   return 0;
2962 }
2963 
2964 Status ProcessGDBRemote::EnableBreakpointSite(BreakpointSite *bp_site) {
2965   Status error;
2966   assert(bp_site != NULL);
2967 
2968   // Get logging info
2969   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_BREAKPOINTS));
2970   user_id_t site_id = bp_site->GetID();
2971 
2972   // Get the breakpoint address
2973   const addr_t addr = bp_site->GetLoadAddress();
2974 
2975   // Log that a breakpoint was requested
2976   if (log)
2977     log->Printf("ProcessGDBRemote::EnableBreakpointSite (size_id = %" PRIu64
2978                 ") address = 0x%" PRIx64,
2979                 site_id, (uint64_t)addr);
2980 
2981   // Breakpoint already exists and is enabled
2982   if (bp_site->IsEnabled()) {
2983     if (log)
2984       log->Printf("ProcessGDBRemote::EnableBreakpointSite (size_id = %" PRIu64
2985                   ") address = 0x%" PRIx64 " -- SUCCESS (already enabled)",
2986                   site_id, (uint64_t)addr);
2987     return error;
2988   }
2989 
2990   // Get the software breakpoint trap opcode size
2991   const size_t bp_op_size = GetSoftwareBreakpointTrapOpcode(bp_site);
2992 
2993   // SupportsGDBStoppointPacket() simply checks a boolean, indicating if this
2994   // breakpoint type
2995   // is supported by the remote stub. These are set to true by default, and
2996   // later set to false
2997   // only after we receive an unimplemented response when sending a breakpoint
2998   // packet. This means
2999   // initially that unless we were specifically instructed to use a hardware
3000   // breakpoint, LLDB will
3001   // attempt to set a software breakpoint. HardwareRequired() also queries a
3002   // boolean variable which
3003   // indicates if the user specifically asked for hardware breakpoints.  If true
3004   // then we will
3005   // skip over software breakpoints.
3006   if (m_gdb_comm.SupportsGDBStoppointPacket(eBreakpointSoftware) &&
3007       (!bp_site->HardwareRequired())) {
3008     // Try to send off a software breakpoint packet ($Z0)
3009     uint8_t error_no = m_gdb_comm.SendGDBStoppointTypePacket(
3010         eBreakpointSoftware, true, addr, bp_op_size);
3011     if (error_no == 0) {
3012       // The breakpoint was placed successfully
3013       bp_site->SetEnabled(true);
3014       bp_site->SetType(BreakpointSite::eExternal);
3015       return error;
3016     }
3017 
3018     // SendGDBStoppointTypePacket() will return an error if it was unable to set
3019     // this
3020     // breakpoint. We need to differentiate between a error specific to placing
3021     // this breakpoint
3022     // or if we have learned that this breakpoint type is unsupported. To do
3023     // this, we
3024     // must test the support boolean for this breakpoint type to see if it now
3025     // indicates that
3026     // this breakpoint type is unsupported.  If they are still supported then we
3027     // should return
3028     // with the error code.  If they are now unsupported, then we would like to
3029     // fall through
3030     // and try another form of breakpoint.
3031     if (m_gdb_comm.SupportsGDBStoppointPacket(eBreakpointSoftware)) {
3032       if (error_no != UINT8_MAX)
3033         error.SetErrorStringWithFormat(
3034             "error: %d sending the breakpoint request", errno);
3035       else
3036         error.SetErrorString("error sending the breakpoint request");
3037       return error;
3038     }
3039 
3040     // We reach here when software breakpoints have been found to be
3041     // unsupported. For future
3042     // calls to set a breakpoint, we will not attempt to set a breakpoint with a
3043     // type that is
3044     // known not to be supported.
3045     if (log)
3046       log->Printf("Software breakpoints are unsupported");
3047 
3048     // So we will fall through and try a hardware breakpoint
3049   }
3050 
3051   // The process of setting a hardware breakpoint is much the same as above.  We
3052   // check the
3053   // supported boolean for this breakpoint type, and if it is thought to be
3054   // supported then we
3055   // will try to set this breakpoint with a hardware breakpoint.
3056   if (m_gdb_comm.SupportsGDBStoppointPacket(eBreakpointHardware)) {
3057     // Try to send off a hardware breakpoint packet ($Z1)
3058     uint8_t error_no = m_gdb_comm.SendGDBStoppointTypePacket(
3059         eBreakpointHardware, true, addr, bp_op_size);
3060     if (error_no == 0) {
3061       // The breakpoint was placed successfully
3062       bp_site->SetEnabled(true);
3063       bp_site->SetType(BreakpointSite::eHardware);
3064       return error;
3065     }
3066 
3067     // Check if the error was something other then an unsupported breakpoint
3068     // type
3069     if (m_gdb_comm.SupportsGDBStoppointPacket(eBreakpointHardware)) {
3070       // Unable to set this hardware breakpoint
3071       if (error_no != UINT8_MAX)
3072         error.SetErrorStringWithFormat(
3073             "error: %d sending the hardware breakpoint request "
3074             "(hardware breakpoint resources might be exhausted or unavailable)",
3075             error_no);
3076       else
3077         error.SetErrorString("error sending the hardware breakpoint request "
3078                              "(hardware breakpoint resources "
3079                              "might be exhausted or unavailable)");
3080       return error;
3081     }
3082 
3083     // We will reach here when the stub gives an unsupported response to a
3084     // hardware breakpoint
3085     if (log)
3086       log->Printf("Hardware breakpoints are unsupported");
3087 
3088     // Finally we will falling through to a #trap style breakpoint
3089   }
3090 
3091   // Don't fall through when hardware breakpoints were specifically requested
3092   if (bp_site->HardwareRequired()) {
3093     error.SetErrorString("hardware breakpoints are not supported");
3094     return error;
3095   }
3096 
3097   // As a last resort we want to place a manual breakpoint. An instruction
3098   // is placed into the process memory using memory write packets.
3099   return EnableSoftwareBreakpoint(bp_site);
3100 }
3101 
3102 Status ProcessGDBRemote::DisableBreakpointSite(BreakpointSite *bp_site) {
3103   Status error;
3104   assert(bp_site != NULL);
3105   addr_t addr = bp_site->GetLoadAddress();
3106   user_id_t site_id = bp_site->GetID();
3107   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_BREAKPOINTS));
3108   if (log)
3109     log->Printf("ProcessGDBRemote::DisableBreakpointSite (site_id = %" PRIu64
3110                 ") addr = 0x%8.8" PRIx64,
3111                 site_id, (uint64_t)addr);
3112 
3113   if (bp_site->IsEnabled()) {
3114     const size_t bp_op_size = GetSoftwareBreakpointTrapOpcode(bp_site);
3115 
3116     BreakpointSite::Type bp_type = bp_site->GetType();
3117     switch (bp_type) {
3118     case BreakpointSite::eSoftware:
3119       error = DisableSoftwareBreakpoint(bp_site);
3120       break;
3121 
3122     case BreakpointSite::eHardware:
3123       if (m_gdb_comm.SendGDBStoppointTypePacket(eBreakpointHardware, false,
3124                                                 addr, bp_op_size))
3125         error.SetErrorToGenericError();
3126       break;
3127 
3128     case BreakpointSite::eExternal: {
3129       GDBStoppointType stoppoint_type;
3130       if (bp_site->IsHardware())
3131         stoppoint_type = eBreakpointHardware;
3132       else
3133         stoppoint_type = eBreakpointSoftware;
3134 
3135       if (m_gdb_comm.SendGDBStoppointTypePacket(stoppoint_type, false, addr,
3136                                                 bp_op_size))
3137         error.SetErrorToGenericError();
3138     } break;
3139     }
3140     if (error.Success())
3141       bp_site->SetEnabled(false);
3142   } else {
3143     if (log)
3144       log->Printf("ProcessGDBRemote::DisableBreakpointSite (site_id = %" PRIu64
3145                   ") addr = 0x%8.8" PRIx64 " -- SUCCESS (already disabled)",
3146                   site_id, (uint64_t)addr);
3147     return error;
3148   }
3149 
3150   if (error.Success())
3151     error.SetErrorToGenericError();
3152   return error;
3153 }
3154 
3155 // Pre-requisite: wp != NULL.
3156 static GDBStoppointType GetGDBStoppointType(Watchpoint *wp) {
3157   assert(wp);
3158   bool watch_read = wp->WatchpointRead();
3159   bool watch_write = wp->WatchpointWrite();
3160 
3161   // watch_read and watch_write cannot both be false.
3162   assert(watch_read || watch_write);
3163   if (watch_read && watch_write)
3164     return eWatchpointReadWrite;
3165   else if (watch_read)
3166     return eWatchpointRead;
3167   else // Must be watch_write, then.
3168     return eWatchpointWrite;
3169 }
3170 
3171 Status ProcessGDBRemote::EnableWatchpoint(Watchpoint *wp, bool notify) {
3172   Status error;
3173   if (wp) {
3174     user_id_t watchID = wp->GetID();
3175     addr_t addr = wp->GetLoadAddress();
3176     Log *log(
3177         ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_WATCHPOINTS));
3178     if (log)
3179       log->Printf("ProcessGDBRemote::EnableWatchpoint(watchID = %" PRIu64 ")",
3180                   watchID);
3181     if (wp->IsEnabled()) {
3182       if (log)
3183         log->Printf("ProcessGDBRemote::EnableWatchpoint(watchID = %" PRIu64
3184                     ") addr = 0x%8.8" PRIx64 ": watchpoint already enabled.",
3185                     watchID, (uint64_t)addr);
3186       return error;
3187     }
3188 
3189     GDBStoppointType type = GetGDBStoppointType(wp);
3190     // Pass down an appropriate z/Z packet...
3191     if (m_gdb_comm.SupportsGDBStoppointPacket(type)) {
3192       if (m_gdb_comm.SendGDBStoppointTypePacket(type, true, addr,
3193                                                 wp->GetByteSize()) == 0) {
3194         wp->SetEnabled(true, notify);
3195         return error;
3196       } else
3197         error.SetErrorString("sending gdb watchpoint packet failed");
3198     } else
3199       error.SetErrorString("watchpoints not supported");
3200   } else {
3201     error.SetErrorString("Watchpoint argument was NULL.");
3202   }
3203   if (error.Success())
3204     error.SetErrorToGenericError();
3205   return error;
3206 }
3207 
3208 Status ProcessGDBRemote::DisableWatchpoint(Watchpoint *wp, bool notify) {
3209   Status error;
3210   if (wp) {
3211     user_id_t watchID = wp->GetID();
3212 
3213     Log *log(
3214         ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_WATCHPOINTS));
3215 
3216     addr_t addr = wp->GetLoadAddress();
3217 
3218     if (log)
3219       log->Printf("ProcessGDBRemote::DisableWatchpoint (watchID = %" PRIu64
3220                   ") addr = 0x%8.8" PRIx64,
3221                   watchID, (uint64_t)addr);
3222 
3223     if (!wp->IsEnabled()) {
3224       if (log)
3225         log->Printf("ProcessGDBRemote::DisableWatchpoint (watchID = %" PRIu64
3226                     ") addr = 0x%8.8" PRIx64 " -- SUCCESS (already disabled)",
3227                     watchID, (uint64_t)addr);
3228       // See also 'class WatchpointSentry' within StopInfo.cpp.
3229       // This disabling attempt might come from the user-supplied actions, we'll
3230       // route it in order for
3231       // the watchpoint object to intelligently process this action.
3232       wp->SetEnabled(false, notify);
3233       return error;
3234     }
3235 
3236     if (wp->IsHardware()) {
3237       GDBStoppointType type = GetGDBStoppointType(wp);
3238       // Pass down an appropriate z/Z packet...
3239       if (m_gdb_comm.SendGDBStoppointTypePacket(type, false, addr,
3240                                                 wp->GetByteSize()) == 0) {
3241         wp->SetEnabled(false, notify);
3242         return error;
3243       } else
3244         error.SetErrorString("sending gdb watchpoint packet failed");
3245     }
3246     // TODO: clear software watchpoints if we implement them
3247   } else {
3248     error.SetErrorString("Watchpoint argument was NULL.");
3249   }
3250   if (error.Success())
3251     error.SetErrorToGenericError();
3252   return error;
3253 }
3254 
3255 void ProcessGDBRemote::Clear() {
3256   m_flags = 0;
3257   m_thread_list_real.Clear();
3258   m_thread_list.Clear();
3259 }
3260 
3261 Status ProcessGDBRemote::DoSignal(int signo) {
3262   Status error;
3263   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
3264   if (log)
3265     log->Printf("ProcessGDBRemote::DoSignal (signal = %d)", signo);
3266 
3267   if (!m_gdb_comm.SendAsyncSignal(signo))
3268     error.SetErrorStringWithFormat("failed to send signal %i", signo);
3269   return error;
3270 }
3271 
3272 Status
3273 ProcessGDBRemote::EstablishConnectionIfNeeded(const ProcessInfo &process_info) {
3274   // Make sure we aren't already connected?
3275   if (m_gdb_comm.IsConnected())
3276     return Status();
3277 
3278   PlatformSP platform_sp(GetTarget().GetPlatform());
3279   if (platform_sp && !platform_sp->IsHost())
3280     return Status("Lost debug server connection");
3281 
3282   auto error = LaunchAndConnectToDebugserver(process_info);
3283   if (error.Fail()) {
3284     const char *error_string = error.AsCString();
3285     if (error_string == nullptr)
3286       error_string = "unable to launch " DEBUGSERVER_BASENAME;
3287   }
3288   return error;
3289 }
3290 #if defined(__APPLE__)
3291 #define USE_SOCKETPAIR_FOR_LOCAL_CONNECTION 1
3292 #endif
3293 
3294 #ifdef USE_SOCKETPAIR_FOR_LOCAL_CONNECTION
3295 static bool SetCloexecFlag(int fd) {
3296 #if defined(FD_CLOEXEC)
3297   int flags = ::fcntl(fd, F_GETFD);
3298   if (flags == -1)
3299     return false;
3300   return (::fcntl(fd, F_SETFD, flags | FD_CLOEXEC) == 0);
3301 #else
3302   return false;
3303 #endif
3304 }
3305 #endif
3306 
3307 Status ProcessGDBRemote::LaunchAndConnectToDebugserver(
3308     const ProcessInfo &process_info) {
3309   using namespace std::placeholders; // For _1, _2, etc.
3310 
3311   Status error;
3312   if (m_debugserver_pid == LLDB_INVALID_PROCESS_ID) {
3313     // If we locate debugserver, keep that located version around
3314     static FileSpec g_debugserver_file_spec;
3315 
3316     ProcessLaunchInfo debugserver_launch_info;
3317     // Make debugserver run in its own session so signals generated by
3318     // special terminal key sequences (^C) don't affect debugserver.
3319     debugserver_launch_info.SetLaunchInSeparateProcessGroup(true);
3320 
3321     const std::weak_ptr<ProcessGDBRemote> this_wp =
3322         std::static_pointer_cast<ProcessGDBRemote>(shared_from_this());
3323     debugserver_launch_info.SetMonitorProcessCallback(
3324         std::bind(MonitorDebugserverProcess, this_wp, _1, _2, _3, _4), false);
3325     debugserver_launch_info.SetUserID(process_info.GetUserID());
3326 
3327     int communication_fd = -1;
3328 #ifdef USE_SOCKETPAIR_FOR_LOCAL_CONNECTION
3329     // Auto close the sockets we might open up unless everything goes OK. This
3330     // helps us not leak file descriptors when things go wrong.
3331     lldb_utility::CleanUp<int, int> our_socket(-1, -1, close);
3332     lldb_utility::CleanUp<int, int> gdb_socket(-1, -1, close);
3333 
3334     // Use a socketpair on Apple for now until other platforms can verify it
3335     // works and is fast enough
3336     {
3337       int sockets[2]; /* the pair of socket descriptors */
3338       if (socketpair(AF_UNIX, SOCK_STREAM, 0, sockets) == -1) {
3339         error.SetErrorToErrno();
3340         return error;
3341       }
3342 
3343       our_socket.set(sockets[0]);
3344       gdb_socket.set(sockets[1]);
3345     }
3346 
3347     // Don't let any child processes inherit our communication socket
3348     SetCloexecFlag(our_socket.get());
3349     communication_fd = gdb_socket.get();
3350 #endif
3351 
3352     error = m_gdb_comm.StartDebugserverProcess(
3353         nullptr, GetTarget().GetPlatform().get(), debugserver_launch_info,
3354         nullptr, nullptr, communication_fd);
3355 
3356     if (error.Success())
3357       m_debugserver_pid = debugserver_launch_info.GetProcessID();
3358     else
3359       m_debugserver_pid = LLDB_INVALID_PROCESS_ID;
3360 
3361     if (m_debugserver_pid != LLDB_INVALID_PROCESS_ID) {
3362 #ifdef USE_SOCKETPAIR_FOR_LOCAL_CONNECTION
3363       // Our process spawned correctly, we can now set our connection to use our
3364       // end of the socket pair
3365       m_gdb_comm.SetConnection(
3366           new ConnectionFileDescriptor(our_socket.release(), true));
3367 #endif
3368       StartAsyncThread();
3369     }
3370 
3371     if (error.Fail()) {
3372       Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
3373 
3374       if (log)
3375         log->Printf("failed to start debugserver process: %s",
3376                     error.AsCString());
3377       return error;
3378     }
3379 
3380     if (m_gdb_comm.IsConnected()) {
3381       // Finish the connection process by doing the handshake without connecting
3382       // (send NULL URL)
3383       ConnectToDebugserver("");
3384     } else {
3385       error.SetErrorString("connection failed");
3386     }
3387   }
3388   return error;
3389 }
3390 
3391 bool ProcessGDBRemote::MonitorDebugserverProcess(
3392     std::weak_ptr<ProcessGDBRemote> process_wp, lldb::pid_t debugserver_pid,
3393     bool exited,    // True if the process did exit
3394     int signo,      // Zero for no signal
3395     int exit_status // Exit value of process if signal is zero
3396     ) {
3397   // "debugserver_pid" argument passed in is the process ID for
3398   // debugserver that we are tracking...
3399   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
3400   const bool handled = true;
3401 
3402   if (log)
3403     log->Printf("ProcessGDBRemote::%s(process_wp, pid=%" PRIu64
3404                 ", signo=%i (0x%x), exit_status=%i)",
3405                 __FUNCTION__, debugserver_pid, signo, signo, exit_status);
3406 
3407   std::shared_ptr<ProcessGDBRemote> process_sp = process_wp.lock();
3408   if (log)
3409     log->Printf("ProcessGDBRemote::%s(process = %p)", __FUNCTION__,
3410                 static_cast<void *>(process_sp.get()));
3411   if (!process_sp || process_sp->m_debugserver_pid != debugserver_pid)
3412     return handled;
3413 
3414   // Sleep for a half a second to make sure our inferior process has
3415   // time to set its exit status before we set it incorrectly when
3416   // both the debugserver and the inferior process shut down.
3417   usleep(500000);
3418   // If our process hasn't yet exited, debugserver might have died.
3419   // If the process did exit, then we are reaping it.
3420   const StateType state = process_sp->GetState();
3421 
3422   if (state != eStateInvalid && state != eStateUnloaded &&
3423       state != eStateExited && state != eStateDetached) {
3424     char error_str[1024];
3425     if (signo) {
3426       const char *signal_cstr =
3427           process_sp->GetUnixSignals()->GetSignalAsCString(signo);
3428       if (signal_cstr)
3429         ::snprintf(error_str, sizeof(error_str),
3430                    DEBUGSERVER_BASENAME " died with signal %s", signal_cstr);
3431       else
3432         ::snprintf(error_str, sizeof(error_str),
3433                    DEBUGSERVER_BASENAME " died with signal %i", signo);
3434     } else {
3435       ::snprintf(error_str, sizeof(error_str),
3436                  DEBUGSERVER_BASENAME " died with an exit status of 0x%8.8x",
3437                  exit_status);
3438     }
3439 
3440     process_sp->SetExitStatus(-1, error_str);
3441   }
3442   // Debugserver has exited we need to let our ProcessGDBRemote
3443   // know that it no longer has a debugserver instance
3444   process_sp->m_debugserver_pid = LLDB_INVALID_PROCESS_ID;
3445   return handled;
3446 }
3447 
3448 void ProcessGDBRemote::KillDebugserverProcess() {
3449   m_gdb_comm.Disconnect();
3450   if (m_debugserver_pid != LLDB_INVALID_PROCESS_ID) {
3451     Host::Kill(m_debugserver_pid, SIGINT);
3452     m_debugserver_pid = LLDB_INVALID_PROCESS_ID;
3453   }
3454 }
3455 
3456 void ProcessGDBRemote::Initialize() {
3457   static llvm::once_flag g_once_flag;
3458 
3459   llvm::call_once(g_once_flag, []() {
3460     PluginManager::RegisterPlugin(GetPluginNameStatic(),
3461                                   GetPluginDescriptionStatic(), CreateInstance,
3462                                   DebuggerInitialize);
3463   });
3464 }
3465 
3466 void ProcessGDBRemote::DebuggerInitialize(Debugger &debugger) {
3467   if (!PluginManager::GetSettingForProcessPlugin(
3468           debugger, PluginProperties::GetSettingName())) {
3469     const bool is_global_setting = true;
3470     PluginManager::CreateSettingForProcessPlugin(
3471         debugger, GetGlobalPluginProperties()->GetValueProperties(),
3472         ConstString("Properties for the gdb-remote process plug-in."),
3473         is_global_setting);
3474   }
3475 }
3476 
3477 bool ProcessGDBRemote::StartAsyncThread() {
3478   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
3479 
3480   if (log)
3481     log->Printf("ProcessGDBRemote::%s ()", __FUNCTION__);
3482 
3483   std::lock_guard<std::recursive_mutex> guard(m_async_thread_state_mutex);
3484   if (!m_async_thread.IsJoinable()) {
3485     // Create a thread that watches our internal state and controls which
3486     // events make it to clients (into the DCProcess event queue).
3487 
3488     m_async_thread =
3489         ThreadLauncher::LaunchThread("<lldb.process.gdb-remote.async>",
3490                                      ProcessGDBRemote::AsyncThread, this, NULL);
3491   } else if (log)
3492     log->Printf("ProcessGDBRemote::%s () - Called when Async thread was "
3493                 "already running.",
3494                 __FUNCTION__);
3495 
3496   return m_async_thread.IsJoinable();
3497 }
3498 
3499 void ProcessGDBRemote::StopAsyncThread() {
3500   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
3501 
3502   if (log)
3503     log->Printf("ProcessGDBRemote::%s ()", __FUNCTION__);
3504 
3505   std::lock_guard<std::recursive_mutex> guard(m_async_thread_state_mutex);
3506   if (m_async_thread.IsJoinable()) {
3507     m_async_broadcaster.BroadcastEvent(eBroadcastBitAsyncThreadShouldExit);
3508 
3509     //  This will shut down the async thread.
3510     m_gdb_comm.Disconnect(); // Disconnect from the debug server.
3511 
3512     // Stop the stdio thread
3513     m_async_thread.Join(nullptr);
3514     m_async_thread.Reset();
3515   } else if (log)
3516     log->Printf(
3517         "ProcessGDBRemote::%s () - Called when Async thread was not running.",
3518         __FUNCTION__);
3519 }
3520 
3521 bool ProcessGDBRemote::HandleNotifyPacket(StringExtractorGDBRemote &packet) {
3522   // get the packet at a string
3523   const std::string &pkt = packet.GetStringRef();
3524   // skip %stop:
3525   StringExtractorGDBRemote stop_info(pkt.c_str() + 5);
3526 
3527   // pass as a thread stop info packet
3528   SetLastStopPacket(stop_info);
3529 
3530   // check for more stop reasons
3531   HandleStopReplySequence();
3532 
3533   // if the process is stopped then we need to fake a resume
3534   // so that we can stop properly with the new break. This
3535   // is possible due to SetPrivateState() broadcasting the
3536   // state change as a side effect.
3537   if (GetPrivateState() == lldb::StateType::eStateStopped) {
3538     SetPrivateState(lldb::StateType::eStateRunning);
3539   }
3540 
3541   // since we have some stopped packets we can halt the process
3542   SetPrivateState(lldb::StateType::eStateStopped);
3543 
3544   return true;
3545 }
3546 
3547 thread_result_t ProcessGDBRemote::AsyncThread(void *arg) {
3548   ProcessGDBRemote *process = (ProcessGDBRemote *)arg;
3549 
3550   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
3551   if (log)
3552     log->Printf("ProcessGDBRemote::%s (arg = %p, pid = %" PRIu64
3553                 ") thread starting...",
3554                 __FUNCTION__, arg, process->GetID());
3555 
3556   EventSP event_sp;
3557   bool done = false;
3558   while (!done) {
3559     if (log)
3560       log->Printf("ProcessGDBRemote::%s (arg = %p, pid = %" PRIu64
3561                   ") listener.WaitForEvent (NULL, event_sp)...",
3562                   __FUNCTION__, arg, process->GetID());
3563     if (process->m_async_listener_sp->GetEvent(event_sp, llvm::None)) {
3564       const uint32_t event_type = event_sp->GetType();
3565       if (event_sp->BroadcasterIs(&process->m_async_broadcaster)) {
3566         if (log)
3567           log->Printf("ProcessGDBRemote::%s (arg = %p, pid = %" PRIu64
3568                       ") Got an event of type: %d...",
3569                       __FUNCTION__, arg, process->GetID(), event_type);
3570 
3571         switch (event_type) {
3572         case eBroadcastBitAsyncContinue: {
3573           const EventDataBytes *continue_packet =
3574               EventDataBytes::GetEventDataFromEvent(event_sp.get());
3575 
3576           if (continue_packet) {
3577             const char *continue_cstr =
3578                 (const char *)continue_packet->GetBytes();
3579             const size_t continue_cstr_len = continue_packet->GetByteSize();
3580             if (log)
3581               log->Printf("ProcessGDBRemote::%s (arg = %p, pid = %" PRIu64
3582                           ") got eBroadcastBitAsyncContinue: %s",
3583                           __FUNCTION__, arg, process->GetID(), continue_cstr);
3584 
3585             if (::strstr(continue_cstr, "vAttach") == NULL)
3586               process->SetPrivateState(eStateRunning);
3587             StringExtractorGDBRemote response;
3588 
3589             // If in Non-Stop-Mode
3590             if (process->GetTarget().GetNonStopModeEnabled()) {
3591               // send the vCont packet
3592               if (!process->GetGDBRemote().SendvContPacket(
3593                       llvm::StringRef(continue_cstr, continue_cstr_len),
3594                       response)) {
3595                 // Something went wrong
3596                 done = true;
3597                 break;
3598               }
3599             }
3600             // If in All-Stop-Mode
3601             else {
3602               StateType stop_state =
3603                   process->GetGDBRemote().SendContinuePacketAndWaitForResponse(
3604                       *process, *process->GetUnixSignals(),
3605                       llvm::StringRef(continue_cstr, continue_cstr_len),
3606                       response);
3607 
3608               // We need to immediately clear the thread ID list so we are sure
3609               // to get a valid list of threads.
3610               // The thread ID list might be contained within the "response", or
3611               // the stop reply packet that
3612               // caused the stop. So clear it now before we give the stop reply
3613               // packet to the process
3614               // using the process->SetLastStopPacket()...
3615               process->ClearThreadIDList();
3616 
3617               switch (stop_state) {
3618               case eStateStopped:
3619               case eStateCrashed:
3620               case eStateSuspended:
3621                 process->SetLastStopPacket(response);
3622                 process->SetPrivateState(stop_state);
3623                 break;
3624 
3625               case eStateExited: {
3626                 process->SetLastStopPacket(response);
3627                 process->ClearThreadIDList();
3628                 response.SetFilePos(1);
3629 
3630                 int exit_status = response.GetHexU8();
3631                 std::string desc_string;
3632                 if (response.GetBytesLeft() > 0 &&
3633                     response.GetChar('-') == ';') {
3634                   llvm::StringRef desc_str;
3635                   llvm::StringRef desc_token;
3636                   while (response.GetNameColonValue(desc_token, desc_str)) {
3637                     if (desc_token != "description")
3638                       continue;
3639                     StringExtractor extractor(desc_str);
3640                     extractor.GetHexByteString(desc_string);
3641                   }
3642                 }
3643                 process->SetExitStatus(exit_status, desc_string.c_str());
3644                 done = true;
3645                 break;
3646               }
3647               case eStateInvalid: {
3648                 // Check to see if we were trying to attach and if we got back
3649                 // the "E87" error code from debugserver -- this indicates that
3650                 // the process is not debuggable.  Return a slightly more
3651                 // helpful
3652                 // error message about why the attach failed.
3653                 if (::strstr(continue_cstr, "vAttach") != NULL &&
3654                     response.GetError() == 0x87) {
3655                   process->SetExitStatus(-1, "cannot attach to process due to "
3656                                              "System Integrity Protection");
3657                 }
3658                 // E01 code from vAttach means that the attach failed
3659                 if (::strstr(continue_cstr, "vAttach") != NULL &&
3660                     response.GetError() == 0x1) {
3661                   process->SetExitStatus(-1, "unable to attach");
3662                 } else {
3663                   process->SetExitStatus(-1, "lost connection");
3664                 }
3665                 break;
3666               }
3667 
3668               default:
3669                 process->SetPrivateState(stop_state);
3670                 break;
3671               } // switch(stop_state)
3672             }   // else // if in All-stop-mode
3673           }     // if (continue_packet)
3674         }       // case eBroadcastBitAysncContinue
3675         break;
3676 
3677         case eBroadcastBitAsyncThreadShouldExit:
3678           if (log)
3679             log->Printf("ProcessGDBRemote::%s (arg = %p, pid = %" PRIu64
3680                         ") got eBroadcastBitAsyncThreadShouldExit...",
3681                         __FUNCTION__, arg, process->GetID());
3682           done = true;
3683           break;
3684 
3685         default:
3686           if (log)
3687             log->Printf("ProcessGDBRemote::%s (arg = %p, pid = %" PRIu64
3688                         ") got unknown event 0x%8.8x",
3689                         __FUNCTION__, arg, process->GetID(), event_type);
3690           done = true;
3691           break;
3692         }
3693       } else if (event_sp->BroadcasterIs(&process->m_gdb_comm)) {
3694         switch (event_type) {
3695         case Communication::eBroadcastBitReadThreadDidExit:
3696           process->SetExitStatus(-1, "lost connection");
3697           done = true;
3698           break;
3699 
3700         case GDBRemoteCommunication::eBroadcastBitGdbReadThreadGotNotify: {
3701           lldb_private::Event *event = event_sp.get();
3702           const EventDataBytes *continue_packet =
3703               EventDataBytes::GetEventDataFromEvent(event);
3704           StringExtractorGDBRemote notify(
3705               (const char *)continue_packet->GetBytes());
3706           // Hand this over to the process to handle
3707           process->HandleNotifyPacket(notify);
3708           break;
3709         }
3710 
3711         default:
3712           if (log)
3713             log->Printf("ProcessGDBRemote::%s (arg = %p, pid = %" PRIu64
3714                         ") got unknown event 0x%8.8x",
3715                         __FUNCTION__, arg, process->GetID(), event_type);
3716           done = true;
3717           break;
3718         }
3719       }
3720     } else {
3721       if (log)
3722         log->Printf("ProcessGDBRemote::%s (arg = %p, pid = %" PRIu64
3723                     ") listener.WaitForEvent (NULL, event_sp) => false",
3724                     __FUNCTION__, arg, process->GetID());
3725       done = true;
3726     }
3727   }
3728 
3729   if (log)
3730     log->Printf("ProcessGDBRemote::%s (arg = %p, pid = %" PRIu64
3731                 ") thread exiting...",
3732                 __FUNCTION__, arg, process->GetID());
3733 
3734   return NULL;
3735 }
3736 
3737 // uint32_t
3738 // ProcessGDBRemote::ListProcessesMatchingName (const char *name, StringList
3739 // &matches, std::vector<lldb::pid_t> &pids)
3740 //{
3741 //    // If we are planning to launch the debugserver remotely, then we need to
3742 //    fire up a debugserver
3743 //    // process and ask it for the list of processes. But if we are local, we
3744 //    can let the Host do it.
3745 //    if (m_local_debugserver)
3746 //    {
3747 //        return Host::ListProcessesMatchingName (name, matches, pids);
3748 //    }
3749 //    else
3750 //    {
3751 //        // FIXME: Implement talking to the remote debugserver.
3752 //        return 0;
3753 //    }
3754 //
3755 //}
3756 //
3757 bool ProcessGDBRemote::NewThreadNotifyBreakpointHit(
3758     void *baton, StoppointCallbackContext *context, lldb::user_id_t break_id,
3759     lldb::user_id_t break_loc_id) {
3760   // I don't think I have to do anything here, just make sure I notice the new
3761   // thread when it starts to
3762   // run so I can stop it if that's what I want to do.
3763   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
3764   if (log)
3765     log->Printf("Hit New Thread Notification breakpoint.");
3766   return false;
3767 }
3768 
3769 Status ProcessGDBRemote::UpdateAutomaticSignalFiltering() {
3770   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
3771   LLDB_LOG(log, "Check if need to update ignored signals");
3772 
3773   // QPassSignals package is not supported by the server,
3774   // there is no way we can ignore any signals on server side.
3775   if (!m_gdb_comm.GetQPassSignalsSupported())
3776     return Status();
3777 
3778   // No signals, nothing to send.
3779   if (m_unix_signals_sp == nullptr)
3780     return Status();
3781 
3782   // Signals' version hasn't changed, no need to send anything.
3783   uint64_t new_signals_version = m_unix_signals_sp->GetVersion();
3784   if (new_signals_version == m_last_signals_version) {
3785     LLDB_LOG(log, "Signals' version hasn't changed. version={0}",
3786              m_last_signals_version);
3787     return Status();
3788   }
3789 
3790   auto signals_to_ignore =
3791       m_unix_signals_sp->GetFilteredSignals(false, false, false);
3792   Status error = m_gdb_comm.SendSignalsToIgnore(signals_to_ignore);
3793 
3794   LLDB_LOG(log,
3795            "Signals' version changed. old version={0}, new version={1}, "
3796            "signals ignored={2}, update result={3}",
3797            m_last_signals_version, new_signals_version,
3798            signals_to_ignore.size(), error);
3799 
3800   if (error.Success())
3801     m_last_signals_version = new_signals_version;
3802 
3803   return error;
3804 }
3805 
3806 bool ProcessGDBRemote::StartNoticingNewThreads() {
3807   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
3808   if (m_thread_create_bp_sp) {
3809     if (log && log->GetVerbose())
3810       log->Printf("Enabled noticing new thread breakpoint.");
3811     m_thread_create_bp_sp->SetEnabled(true);
3812   } else {
3813     PlatformSP platform_sp(GetTarget().GetPlatform());
3814     if (platform_sp) {
3815       m_thread_create_bp_sp =
3816           platform_sp->SetThreadCreationBreakpoint(GetTarget());
3817       if (m_thread_create_bp_sp) {
3818         if (log && log->GetVerbose())
3819           log->Printf(
3820               "Successfully created new thread notification breakpoint %i",
3821               m_thread_create_bp_sp->GetID());
3822         m_thread_create_bp_sp->SetCallback(
3823             ProcessGDBRemote::NewThreadNotifyBreakpointHit, this, true);
3824       } else {
3825         if (log)
3826           log->Printf("Failed to create new thread notification breakpoint.");
3827       }
3828     }
3829   }
3830   return m_thread_create_bp_sp.get() != NULL;
3831 }
3832 
3833 bool ProcessGDBRemote::StopNoticingNewThreads() {
3834   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
3835   if (log && log->GetVerbose())
3836     log->Printf("Disabling new thread notification breakpoint.");
3837 
3838   if (m_thread_create_bp_sp)
3839     m_thread_create_bp_sp->SetEnabled(false);
3840 
3841   return true;
3842 }
3843 
3844 DynamicLoader *ProcessGDBRemote::GetDynamicLoader() {
3845   if (m_dyld_ap.get() == NULL)
3846     m_dyld_ap.reset(DynamicLoader::FindPlugin(this, NULL));
3847   return m_dyld_ap.get();
3848 }
3849 
3850 Status ProcessGDBRemote::SendEventData(const char *data) {
3851   int return_value;
3852   bool was_supported;
3853 
3854   Status error;
3855 
3856   return_value = m_gdb_comm.SendLaunchEventDataPacket(data, &was_supported);
3857   if (return_value != 0) {
3858     if (!was_supported)
3859       error.SetErrorString("Sending events is not supported for this process.");
3860     else
3861       error.SetErrorStringWithFormat("Error sending event data: %d.",
3862                                      return_value);
3863   }
3864   return error;
3865 }
3866 
3867 const DataBufferSP ProcessGDBRemote::GetAuxvData() {
3868   DataBufferSP buf;
3869   if (m_gdb_comm.GetQXferAuxvReadSupported()) {
3870     std::string response_string;
3871     if (m_gdb_comm.SendPacketsAndConcatenateResponses("qXfer:auxv:read::",
3872                                                       response_string) ==
3873         GDBRemoteCommunication::PacketResult::Success)
3874       buf.reset(new DataBufferHeap(response_string.c_str(),
3875                                    response_string.length()));
3876   }
3877   return buf;
3878 }
3879 
3880 StructuredData::ObjectSP
3881 ProcessGDBRemote::GetExtendedInfoForThread(lldb::tid_t tid) {
3882   StructuredData::ObjectSP object_sp;
3883 
3884   if (m_gdb_comm.GetThreadExtendedInfoSupported()) {
3885     StructuredData::ObjectSP args_dict(new StructuredData::Dictionary());
3886     SystemRuntime *runtime = GetSystemRuntime();
3887     if (runtime) {
3888       runtime->AddThreadExtendedInfoPacketHints(args_dict);
3889     }
3890     args_dict->GetAsDictionary()->AddIntegerItem("thread", tid);
3891 
3892     StreamString packet;
3893     packet << "jThreadExtendedInfo:";
3894     args_dict->Dump(packet, false);
3895 
3896     // FIXME the final character of a JSON dictionary, '}', is the escape
3897     // character in gdb-remote binary mode.  lldb currently doesn't escape
3898     // these characters in its packet output -- so we add the quoted version
3899     // of the } character here manually in case we talk to a debugserver which
3900     // un-escapes the characters at packet read time.
3901     packet << (char)(0x7d ^ 0x20);
3902 
3903     StringExtractorGDBRemote response;
3904     response.SetResponseValidatorToJSON();
3905     if (m_gdb_comm.SendPacketAndWaitForResponse(packet.GetString(), response,
3906                                                 false) ==
3907         GDBRemoteCommunication::PacketResult::Success) {
3908       StringExtractorGDBRemote::ResponseType response_type =
3909           response.GetResponseType();
3910       if (response_type == StringExtractorGDBRemote::eResponse) {
3911         if (!response.Empty()) {
3912           object_sp = StructuredData::ParseJSON(response.GetStringRef());
3913         }
3914       }
3915     }
3916   }
3917   return object_sp;
3918 }
3919 
3920 StructuredData::ObjectSP ProcessGDBRemote::GetLoadedDynamicLibrariesInfos(
3921     lldb::addr_t image_list_address, lldb::addr_t image_count) {
3922 
3923   StructuredData::ObjectSP args_dict(new StructuredData::Dictionary());
3924   args_dict->GetAsDictionary()->AddIntegerItem("image_list_address",
3925                                                image_list_address);
3926   args_dict->GetAsDictionary()->AddIntegerItem("image_count", image_count);
3927 
3928   return GetLoadedDynamicLibrariesInfos_sender(args_dict);
3929 }
3930 
3931 StructuredData::ObjectSP ProcessGDBRemote::GetLoadedDynamicLibrariesInfos() {
3932   StructuredData::ObjectSP args_dict(new StructuredData::Dictionary());
3933 
3934   args_dict->GetAsDictionary()->AddBooleanItem("fetch_all_solibs", true);
3935 
3936   return GetLoadedDynamicLibrariesInfos_sender(args_dict);
3937 }
3938 
3939 StructuredData::ObjectSP ProcessGDBRemote::GetLoadedDynamicLibrariesInfos(
3940     const std::vector<lldb::addr_t> &load_addresses) {
3941   StructuredData::ObjectSP args_dict(new StructuredData::Dictionary());
3942   StructuredData::ArraySP addresses(new StructuredData::Array);
3943 
3944   for (auto addr : load_addresses) {
3945     StructuredData::ObjectSP addr_sp(new StructuredData::Integer(addr));
3946     addresses->AddItem(addr_sp);
3947   }
3948 
3949   args_dict->GetAsDictionary()->AddItem("solib_addresses", addresses);
3950 
3951   return GetLoadedDynamicLibrariesInfos_sender(args_dict);
3952 }
3953 
3954 StructuredData::ObjectSP
3955 ProcessGDBRemote::GetLoadedDynamicLibrariesInfos_sender(
3956     StructuredData::ObjectSP args_dict) {
3957   StructuredData::ObjectSP object_sp;
3958 
3959   if (m_gdb_comm.GetLoadedDynamicLibrariesInfosSupported()) {
3960     // Scope for the scoped timeout object
3961     GDBRemoteCommunication::ScopedTimeout timeout(m_gdb_comm,
3962                                                   std::chrono::seconds(10));
3963 
3964     StreamString packet;
3965     packet << "jGetLoadedDynamicLibrariesInfos:";
3966     args_dict->Dump(packet, false);
3967 
3968     // FIXME the final character of a JSON dictionary, '}', is the escape
3969     // character in gdb-remote binary mode.  lldb currently doesn't escape
3970     // these characters in its packet output -- so we add the quoted version
3971     // of the } character here manually in case we talk to a debugserver which
3972     // un-escapes the characters at packet read time.
3973     packet << (char)(0x7d ^ 0x20);
3974 
3975     StringExtractorGDBRemote response;
3976     response.SetResponseValidatorToJSON();
3977     if (m_gdb_comm.SendPacketAndWaitForResponse(packet.GetString(), response,
3978                                                 false) ==
3979         GDBRemoteCommunication::PacketResult::Success) {
3980       StringExtractorGDBRemote::ResponseType response_type =
3981           response.GetResponseType();
3982       if (response_type == StringExtractorGDBRemote::eResponse) {
3983         if (!response.Empty()) {
3984           object_sp = StructuredData::ParseJSON(response.GetStringRef());
3985         }
3986       }
3987     }
3988   }
3989   return object_sp;
3990 }
3991 
3992 StructuredData::ObjectSP ProcessGDBRemote::GetSharedCacheInfo() {
3993   StructuredData::ObjectSP object_sp;
3994   StructuredData::ObjectSP args_dict(new StructuredData::Dictionary());
3995 
3996   if (m_gdb_comm.GetSharedCacheInfoSupported()) {
3997     StreamString packet;
3998     packet << "jGetSharedCacheInfo:";
3999     args_dict->Dump(packet, false);
4000 
4001     // FIXME the final character of a JSON dictionary, '}', is the escape
4002     // character in gdb-remote binary mode.  lldb currently doesn't escape
4003     // these characters in its packet output -- so we add the quoted version
4004     // of the } character here manually in case we talk to a debugserver which
4005     // un-escapes the characters at packet read time.
4006     packet << (char)(0x7d ^ 0x20);
4007 
4008     StringExtractorGDBRemote response;
4009     response.SetResponseValidatorToJSON();
4010     if (m_gdb_comm.SendPacketAndWaitForResponse(packet.GetString(), response,
4011                                                 false) ==
4012         GDBRemoteCommunication::PacketResult::Success) {
4013       StringExtractorGDBRemote::ResponseType response_type =
4014           response.GetResponseType();
4015       if (response_type == StringExtractorGDBRemote::eResponse) {
4016         if (!response.Empty()) {
4017           object_sp = StructuredData::ParseJSON(response.GetStringRef());
4018         }
4019       }
4020     }
4021   }
4022   return object_sp;
4023 }
4024 
4025 Status ProcessGDBRemote::ConfigureStructuredData(
4026     const ConstString &type_name, const StructuredData::ObjectSP &config_sp) {
4027   return m_gdb_comm.ConfigureRemoteStructuredData(type_name, config_sp);
4028 }
4029 
4030 // Establish the largest memory read/write payloads we should use.
4031 // If the remote stub has a max packet size, stay under that size.
4032 //
4033 // If the remote stub's max packet size is crazy large, use a
4034 // reasonable largeish default.
4035 //
4036 // If the remote stub doesn't advertise a max packet size, use a
4037 // conservative default.
4038 
4039 void ProcessGDBRemote::GetMaxMemorySize() {
4040   const uint64_t reasonable_largeish_default = 128 * 1024;
4041   const uint64_t conservative_default = 512;
4042 
4043   if (m_max_memory_size == 0) {
4044     uint64_t stub_max_size = m_gdb_comm.GetRemoteMaxPacketSize();
4045     if (stub_max_size != UINT64_MAX && stub_max_size != 0) {
4046       // Save the stub's claimed maximum packet size
4047       m_remote_stub_max_memory_size = stub_max_size;
4048 
4049       // Even if the stub says it can support ginormous packets,
4050       // don't exceed our reasonable largeish default packet size.
4051       if (stub_max_size > reasonable_largeish_default) {
4052         stub_max_size = reasonable_largeish_default;
4053       }
4054 
4055       // Memory packet have other overheads too like Maddr,size:#NN
4056       // Instead of calculating the bytes taken by size and addr every
4057       // time, we take a maximum guess here.
4058       if (stub_max_size > 70)
4059         stub_max_size -= 32 + 32 + 6;
4060       else {
4061         // In unlikely scenario that max packet size is less then 70, we will
4062         // hope that data being written is small enough to fit.
4063         Log *log(ProcessGDBRemoteLog::GetLogIfAnyCategoryIsSet(
4064             GDBR_LOG_COMM | GDBR_LOG_MEMORY));
4065         if (log)
4066           log->Warning("Packet size is too small. "
4067                        "LLDB may face problems while writing memory");
4068       }
4069 
4070       m_max_memory_size = stub_max_size;
4071     } else {
4072       m_max_memory_size = conservative_default;
4073     }
4074   }
4075 }
4076 
4077 void ProcessGDBRemote::SetUserSpecifiedMaxMemoryTransferSize(
4078     uint64_t user_specified_max) {
4079   if (user_specified_max != 0) {
4080     GetMaxMemorySize();
4081 
4082     if (m_remote_stub_max_memory_size != 0) {
4083       if (m_remote_stub_max_memory_size < user_specified_max) {
4084         m_max_memory_size = m_remote_stub_max_memory_size; // user specified a
4085                                                            // packet size too
4086                                                            // big, go as big
4087         // as the remote stub says we can go.
4088       } else {
4089         m_max_memory_size = user_specified_max; // user's packet size is good
4090       }
4091     } else {
4092       m_max_memory_size =
4093           user_specified_max; // user's packet size is probably fine
4094     }
4095   }
4096 }
4097 
4098 bool ProcessGDBRemote::GetModuleSpec(const FileSpec &module_file_spec,
4099                                      const ArchSpec &arch,
4100                                      ModuleSpec &module_spec) {
4101   Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM);
4102 
4103   const ModuleCacheKey key(module_file_spec.GetPath(),
4104                            arch.GetTriple().getTriple());
4105   auto cached = m_cached_module_specs.find(key);
4106   if (cached != m_cached_module_specs.end()) {
4107     module_spec = cached->second;
4108     return bool(module_spec);
4109   }
4110 
4111   if (!m_gdb_comm.GetModuleInfo(module_file_spec, arch, module_spec)) {
4112     if (log)
4113       log->Printf("ProcessGDBRemote::%s - failed to get module info for %s:%s",
4114                   __FUNCTION__, module_file_spec.GetPath().c_str(),
4115                   arch.GetTriple().getTriple().c_str());
4116     return false;
4117   }
4118 
4119   if (log) {
4120     StreamString stream;
4121     module_spec.Dump(stream);
4122     log->Printf("ProcessGDBRemote::%s - got module info for (%s:%s) : %s",
4123                 __FUNCTION__, module_file_spec.GetPath().c_str(),
4124                 arch.GetTriple().getTriple().c_str(), stream.GetData());
4125   }
4126 
4127   m_cached_module_specs[key] = module_spec;
4128   return true;
4129 }
4130 
4131 void ProcessGDBRemote::PrefetchModuleSpecs(
4132     llvm::ArrayRef<FileSpec> module_file_specs, const llvm::Triple &triple) {
4133   auto module_specs = m_gdb_comm.GetModulesInfo(module_file_specs, triple);
4134   if (module_specs) {
4135     for (const FileSpec &spec : module_file_specs)
4136       m_cached_module_specs[ModuleCacheKey(spec.GetPath(),
4137                                            triple.getTriple())] = ModuleSpec();
4138     for (const ModuleSpec &spec : *module_specs)
4139       m_cached_module_specs[ModuleCacheKey(spec.GetFileSpec().GetPath(),
4140                                            triple.getTriple())] = spec;
4141   }
4142 }
4143 
4144 bool ProcessGDBRemote::GetHostOSVersion(uint32_t &major, uint32_t &minor,
4145                                         uint32_t &update) {
4146   if (m_gdb_comm.GetOSVersion(major, minor, update))
4147     return true;
4148   // We failed to get the host OS version, defer to the base
4149   // implementation to correctly invalidate the arguments.
4150   return Process::GetHostOSVersion(major, minor, update);
4151 }
4152 
4153 namespace {
4154 
4155 typedef std::vector<std::string> stringVec;
4156 
4157 typedef std::vector<struct GdbServerRegisterInfo> GDBServerRegisterVec;
4158 struct RegisterSetInfo {
4159   ConstString name;
4160 };
4161 
4162 typedef std::map<uint32_t, RegisterSetInfo> RegisterSetMap;
4163 
4164 struct GdbServerTargetInfo {
4165   std::string arch;
4166   std::string osabi;
4167   stringVec includes;
4168   RegisterSetMap reg_set_map;
4169   XMLNode feature_node;
4170 };
4171 
4172 bool ParseRegisters(XMLNode feature_node, GdbServerTargetInfo &target_info,
4173                     GDBRemoteDynamicRegisterInfo &dyn_reg_info, ABISP abi_sp,
4174                     uint32_t &cur_reg_num, uint32_t &reg_offset) {
4175   if (!feature_node)
4176     return false;
4177 
4178   feature_node.ForEachChildElementWithName(
4179       "reg", [&target_info, &dyn_reg_info, &cur_reg_num, &reg_offset,
4180               &abi_sp](const XMLNode &reg_node) -> bool {
4181         std::string gdb_group;
4182         std::string gdb_type;
4183         ConstString reg_name;
4184         ConstString alt_name;
4185         ConstString set_name;
4186         std::vector<uint32_t> value_regs;
4187         std::vector<uint32_t> invalidate_regs;
4188         std::vector<uint8_t> dwarf_opcode_bytes;
4189         bool encoding_set = false;
4190         bool format_set = false;
4191         RegisterInfo reg_info = {
4192             NULL,          // Name
4193             NULL,          // Alt name
4194             0,             // byte size
4195             reg_offset,    // offset
4196             eEncodingUint, // encoding
4197             eFormatHex,    // format
4198             {
4199                 LLDB_INVALID_REGNUM, // eh_frame reg num
4200                 LLDB_INVALID_REGNUM, // DWARF reg num
4201                 LLDB_INVALID_REGNUM, // generic reg num
4202                 cur_reg_num,         // process plugin reg num
4203                 cur_reg_num          // native register number
4204             },
4205             NULL,
4206             NULL,
4207             NULL, // Dwarf Expression opcode bytes pointer
4208             0     // Dwarf Expression opcode bytes length
4209         };
4210 
4211         reg_node.ForEachAttribute([&target_info, &gdb_group, &gdb_type,
4212                                    &reg_name, &alt_name, &set_name, &value_regs,
4213                                    &invalidate_regs, &encoding_set, &format_set,
4214                                    &reg_info, &reg_offset, &dwarf_opcode_bytes](
4215                                       const llvm::StringRef &name,
4216                                       const llvm::StringRef &value) -> bool {
4217           if (name == "name") {
4218             reg_name.SetString(value);
4219           } else if (name == "bitsize") {
4220             reg_info.byte_size =
4221                 StringConvert::ToUInt32(value.data(), 0, 0) / CHAR_BIT;
4222           } else if (name == "type") {
4223             gdb_type = value.str();
4224           } else if (name == "group") {
4225             gdb_group = value.str();
4226           } else if (name == "regnum") {
4227             const uint32_t regnum =
4228                 StringConvert::ToUInt32(value.data(), LLDB_INVALID_REGNUM, 0);
4229             if (regnum != LLDB_INVALID_REGNUM) {
4230               reg_info.kinds[eRegisterKindProcessPlugin] = regnum;
4231             }
4232           } else if (name == "offset") {
4233             reg_offset = StringConvert::ToUInt32(value.data(), UINT32_MAX, 0);
4234           } else if (name == "altname") {
4235             alt_name.SetString(value);
4236           } else if (name == "encoding") {
4237             encoding_set = true;
4238             reg_info.encoding = Args::StringToEncoding(value, eEncodingUint);
4239           } else if (name == "format") {
4240             format_set = true;
4241             Format format = eFormatInvalid;
4242             if (Args::StringToFormat(value.data(), format, NULL).Success())
4243               reg_info.format = format;
4244             else if (value == "vector-sint8")
4245               reg_info.format = eFormatVectorOfSInt8;
4246             else if (value == "vector-uint8")
4247               reg_info.format = eFormatVectorOfUInt8;
4248             else if (value == "vector-sint16")
4249               reg_info.format = eFormatVectorOfSInt16;
4250             else if (value == "vector-uint16")
4251               reg_info.format = eFormatVectorOfUInt16;
4252             else if (value == "vector-sint32")
4253               reg_info.format = eFormatVectorOfSInt32;
4254             else if (value == "vector-uint32")
4255               reg_info.format = eFormatVectorOfUInt32;
4256             else if (value == "vector-float32")
4257               reg_info.format = eFormatVectorOfFloat32;
4258             else if (value == "vector-uint64")
4259               reg_info.format = eFormatVectorOfUInt64;
4260             else if (value == "vector-uint128")
4261               reg_info.format = eFormatVectorOfUInt128;
4262           } else if (name == "group_id") {
4263             const uint32_t set_id =
4264                 StringConvert::ToUInt32(value.data(), UINT32_MAX, 0);
4265             RegisterSetMap::const_iterator pos =
4266                 target_info.reg_set_map.find(set_id);
4267             if (pos != target_info.reg_set_map.end())
4268               set_name = pos->second.name;
4269           } else if (name == "gcc_regnum" || name == "ehframe_regnum") {
4270             reg_info.kinds[eRegisterKindEHFrame] =
4271                 StringConvert::ToUInt32(value.data(), LLDB_INVALID_REGNUM, 0);
4272           } else if (name == "dwarf_regnum") {
4273             reg_info.kinds[eRegisterKindDWARF] =
4274                 StringConvert::ToUInt32(value.data(), LLDB_INVALID_REGNUM, 0);
4275           } else if (name == "generic") {
4276             reg_info.kinds[eRegisterKindGeneric] =
4277                 Args::StringToGenericRegister(value);
4278           } else if (name == "value_regnums") {
4279             SplitCommaSeparatedRegisterNumberString(value, value_regs, 0);
4280           } else if (name == "invalidate_regnums") {
4281             SplitCommaSeparatedRegisterNumberString(value, invalidate_regs, 0);
4282           } else if (name == "dynamic_size_dwarf_expr_bytes") {
4283             StringExtractor opcode_extractor;
4284             std::string opcode_string = value.str();
4285             size_t dwarf_opcode_len = opcode_string.length() / 2;
4286             assert(dwarf_opcode_len > 0);
4287 
4288             dwarf_opcode_bytes.resize(dwarf_opcode_len);
4289             reg_info.dynamic_size_dwarf_len = dwarf_opcode_len;
4290             opcode_extractor.GetStringRef().swap(opcode_string);
4291             uint32_t ret_val =
4292                 opcode_extractor.GetHexBytesAvail(dwarf_opcode_bytes);
4293             assert(dwarf_opcode_len == ret_val);
4294             UNUSED_IF_ASSERT_DISABLED(ret_val);
4295             reg_info.dynamic_size_dwarf_expr_bytes = dwarf_opcode_bytes.data();
4296           } else {
4297             printf("unhandled attribute %s = %s\n", name.data(), value.data());
4298           }
4299           return true; // Keep iterating through all attributes
4300         });
4301 
4302         if (!gdb_type.empty() && !(encoding_set || format_set)) {
4303           if (gdb_type.find("int") == 0) {
4304             reg_info.format = eFormatHex;
4305             reg_info.encoding = eEncodingUint;
4306           } else if (gdb_type == "data_ptr" || gdb_type == "code_ptr") {
4307             reg_info.format = eFormatAddressInfo;
4308             reg_info.encoding = eEncodingUint;
4309           } else if (gdb_type == "i387_ext" || gdb_type == "float") {
4310             reg_info.format = eFormatFloat;
4311             reg_info.encoding = eEncodingIEEE754;
4312           }
4313         }
4314 
4315         // Only update the register set name if we didn't get a "reg_set"
4316         // attribute.
4317         // "set_name" will be empty if we didn't have a "reg_set" attribute.
4318         if (!set_name && !gdb_group.empty())
4319           set_name.SetCString(gdb_group.c_str());
4320 
4321         reg_info.byte_offset = reg_offset;
4322         assert(reg_info.byte_size != 0);
4323         reg_offset += reg_info.byte_size;
4324         if (!value_regs.empty()) {
4325           value_regs.push_back(LLDB_INVALID_REGNUM);
4326           reg_info.value_regs = value_regs.data();
4327         }
4328         if (!invalidate_regs.empty()) {
4329           invalidate_regs.push_back(LLDB_INVALID_REGNUM);
4330           reg_info.invalidate_regs = invalidate_regs.data();
4331         }
4332 
4333         ++cur_reg_num;
4334         AugmentRegisterInfoViaABI(reg_info, reg_name, abi_sp);
4335         dyn_reg_info.AddRegister(reg_info, reg_name, alt_name, set_name);
4336 
4337         return true; // Keep iterating through all "reg" elements
4338       });
4339   return true;
4340 }
4341 
4342 } // namespace {}
4343 
4344 // query the target of gdb-remote for extended target information
4345 // return:  'true'  on success
4346 //          'false' on failure
4347 bool ProcessGDBRemote::GetGDBServerRegisterInfo(ArchSpec &arch_to_use) {
4348   // Make sure LLDB has an XML parser it can use first
4349   if (!XMLDocument::XMLEnabled())
4350     return false;
4351 
4352   // redirect libxml2's error handler since the default prints to stdout
4353 
4354   GDBRemoteCommunicationClient &comm = m_gdb_comm;
4355 
4356   // check that we have extended feature read support
4357   if (!comm.GetQXferFeaturesReadSupported())
4358     return false;
4359 
4360   // request the target xml file
4361   std::string raw;
4362   lldb_private::Status lldberr;
4363   if (!comm.ReadExtFeature(ConstString("features"), ConstString("target.xml"),
4364                            raw, lldberr)) {
4365     return false;
4366   }
4367 
4368   XMLDocument xml_document;
4369 
4370   if (xml_document.ParseMemory(raw.c_str(), raw.size(), "target.xml")) {
4371     GdbServerTargetInfo target_info;
4372 
4373     XMLNode target_node = xml_document.GetRootElement("target");
4374     if (target_node) {
4375       XMLNode feature_node;
4376       target_node.ForEachChildElement([&target_info, &feature_node](
4377                                           const XMLNode &node) -> bool {
4378         llvm::StringRef name = node.GetName();
4379         if (name == "architecture") {
4380           node.GetElementText(target_info.arch);
4381         } else if (name == "osabi") {
4382           node.GetElementText(target_info.osabi);
4383         } else if (name == "xi:include" || name == "include") {
4384           llvm::StringRef href = node.GetAttributeValue("href");
4385           if (!href.empty())
4386             target_info.includes.push_back(href.str());
4387         } else if (name == "feature") {
4388           feature_node = node;
4389         } else if (name == "groups") {
4390           node.ForEachChildElementWithName(
4391               "group", [&target_info](const XMLNode &node) -> bool {
4392                 uint32_t set_id = UINT32_MAX;
4393                 RegisterSetInfo set_info;
4394 
4395                 node.ForEachAttribute(
4396                     [&set_id, &set_info](const llvm::StringRef &name,
4397                                          const llvm::StringRef &value) -> bool {
4398                       if (name == "id")
4399                         set_id = StringConvert::ToUInt32(value.data(),
4400                                                          UINT32_MAX, 0);
4401                       if (name == "name")
4402                         set_info.name = ConstString(value);
4403                       return true; // Keep iterating through all attributes
4404                     });
4405 
4406                 if (set_id != UINT32_MAX)
4407                   target_info.reg_set_map[set_id] = set_info;
4408                 return true; // Keep iterating through all "group" elements
4409               });
4410         }
4411         return true; // Keep iterating through all children of the target_node
4412       });
4413 
4414       // Initialize these outside of ParseRegisters, since they should not be
4415       // reset inside each include feature
4416       uint32_t cur_reg_num = 0;
4417       uint32_t reg_offset = 0;
4418 
4419       // Don't use Process::GetABI, this code gets called from DidAttach, and in
4420       // that context we haven't
4421       // set the Target's architecture yet, so the ABI is also potentially
4422       // incorrect.
4423       ABISP abi_to_use_sp = ABI::FindPlugin(shared_from_this(), arch_to_use);
4424       if (feature_node) {
4425         ParseRegisters(feature_node, target_info, this->m_register_info,
4426                        abi_to_use_sp, cur_reg_num, reg_offset);
4427       }
4428 
4429       for (const auto &include : target_info.includes) {
4430         // request register file
4431         std::string xml_data;
4432         if (!comm.ReadExtFeature(ConstString("features"), ConstString(include),
4433                                  xml_data, lldberr))
4434           continue;
4435 
4436         XMLDocument include_xml_document;
4437         include_xml_document.ParseMemory(xml_data.data(), xml_data.size(),
4438                                          include.c_str());
4439         XMLNode include_feature_node =
4440             include_xml_document.GetRootElement("feature");
4441         if (include_feature_node) {
4442           ParseRegisters(include_feature_node, target_info,
4443                          this->m_register_info, abi_to_use_sp, cur_reg_num,
4444                          reg_offset);
4445         }
4446       }
4447       this->m_register_info.Finalize(arch_to_use);
4448     }
4449   }
4450 
4451   return m_register_info.GetNumRegisters() > 0;
4452 }
4453 
4454 Status ProcessGDBRemote::GetLoadedModuleList(LoadedModuleInfoList &list) {
4455   // Make sure LLDB has an XML parser it can use first
4456   if (!XMLDocument::XMLEnabled())
4457     return Status(0, ErrorType::eErrorTypeGeneric);
4458 
4459   Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS);
4460   if (log)
4461     log->Printf("ProcessGDBRemote::%s", __FUNCTION__);
4462 
4463   GDBRemoteCommunicationClient &comm = m_gdb_comm;
4464 
4465   // check that we have extended feature read support
4466   if (comm.GetQXferLibrariesSVR4ReadSupported()) {
4467     list.clear();
4468 
4469     // request the loaded library list
4470     std::string raw;
4471     lldb_private::Status lldberr;
4472 
4473     if (!comm.ReadExtFeature(ConstString("libraries-svr4"), ConstString(""),
4474                              raw, lldberr))
4475       return Status(0, ErrorType::eErrorTypeGeneric);
4476 
4477     // parse the xml file in memory
4478     if (log)
4479       log->Printf("parsing: %s", raw.c_str());
4480     XMLDocument doc;
4481 
4482     if (!doc.ParseMemory(raw.c_str(), raw.size(), "noname.xml"))
4483       return Status(0, ErrorType::eErrorTypeGeneric);
4484 
4485     XMLNode root_element = doc.GetRootElement("library-list-svr4");
4486     if (!root_element)
4487       return Status();
4488 
4489     // main link map structure
4490     llvm::StringRef main_lm = root_element.GetAttributeValue("main-lm");
4491     if (!main_lm.empty()) {
4492       list.m_link_map =
4493           StringConvert::ToUInt64(main_lm.data(), LLDB_INVALID_ADDRESS, 0);
4494     }
4495 
4496     root_element.ForEachChildElementWithName(
4497         "library", [log, &list](const XMLNode &library) -> bool {
4498 
4499           LoadedModuleInfoList::LoadedModuleInfo module;
4500 
4501           library.ForEachAttribute(
4502               [&module](const llvm::StringRef &name,
4503                         const llvm::StringRef &value) -> bool {
4504 
4505                 if (name == "name")
4506                   module.set_name(value.str());
4507                 else if (name == "lm") {
4508                   // the address of the link_map struct.
4509                   module.set_link_map(StringConvert::ToUInt64(
4510                       value.data(), LLDB_INVALID_ADDRESS, 0));
4511                 } else if (name == "l_addr") {
4512                   // the displacement as read from the field 'l_addr' of the
4513                   // link_map struct.
4514                   module.set_base(StringConvert::ToUInt64(
4515                       value.data(), LLDB_INVALID_ADDRESS, 0));
4516                   // base address is always a displacement, not an absolute
4517                   // value.
4518                   module.set_base_is_offset(true);
4519                 } else if (name == "l_ld") {
4520                   // the memory address of the libraries PT_DYAMIC section.
4521                   module.set_dynamic(StringConvert::ToUInt64(
4522                       value.data(), LLDB_INVALID_ADDRESS, 0));
4523                 }
4524 
4525                 return true; // Keep iterating over all properties of "library"
4526               });
4527 
4528           if (log) {
4529             std::string name;
4530             lldb::addr_t lm = 0, base = 0, ld = 0;
4531             bool base_is_offset;
4532 
4533             module.get_name(name);
4534             module.get_link_map(lm);
4535             module.get_base(base);
4536             module.get_base_is_offset(base_is_offset);
4537             module.get_dynamic(ld);
4538 
4539             log->Printf("found (link_map:0x%08" PRIx64 ", base:0x%08" PRIx64
4540                         "[%s], ld:0x%08" PRIx64 ", name:'%s')",
4541                         lm, base, (base_is_offset ? "offset" : "absolute"), ld,
4542                         name.c_str());
4543           }
4544 
4545           list.add(module);
4546           return true; // Keep iterating over all "library" elements in the root
4547                        // node
4548         });
4549 
4550     if (log)
4551       log->Printf("found %" PRId32 " modules in total",
4552                   (int)list.m_list.size());
4553   } else if (comm.GetQXferLibrariesReadSupported()) {
4554     list.clear();
4555 
4556     // request the loaded library list
4557     std::string raw;
4558     lldb_private::Status lldberr;
4559 
4560     if (!comm.ReadExtFeature(ConstString("libraries"), ConstString(""), raw,
4561                              lldberr))
4562       return Status(0, ErrorType::eErrorTypeGeneric);
4563 
4564     if (log)
4565       log->Printf("parsing: %s", raw.c_str());
4566     XMLDocument doc;
4567 
4568     if (!doc.ParseMemory(raw.c_str(), raw.size(), "noname.xml"))
4569       return Status(0, ErrorType::eErrorTypeGeneric);
4570 
4571     XMLNode root_element = doc.GetRootElement("library-list");
4572     if (!root_element)
4573       return Status();
4574 
4575     root_element.ForEachChildElementWithName(
4576         "library", [log, &list](const XMLNode &library) -> bool {
4577           LoadedModuleInfoList::LoadedModuleInfo module;
4578 
4579           llvm::StringRef name = library.GetAttributeValue("name");
4580           module.set_name(name.str());
4581 
4582           // The base address of a given library will be the address of its
4583           // first section. Most remotes send only one section for Windows
4584           // targets for example.
4585           const XMLNode &section =
4586               library.FindFirstChildElementWithName("section");
4587           llvm::StringRef address = section.GetAttributeValue("address");
4588           module.set_base(
4589               StringConvert::ToUInt64(address.data(), LLDB_INVALID_ADDRESS, 0));
4590           // These addresses are absolute values.
4591           module.set_base_is_offset(false);
4592 
4593           if (log) {
4594             std::string name;
4595             lldb::addr_t base = 0;
4596             bool base_is_offset;
4597             module.get_name(name);
4598             module.get_base(base);
4599             module.get_base_is_offset(base_is_offset);
4600 
4601             log->Printf("found (base:0x%08" PRIx64 "[%s], name:'%s')", base,
4602                         (base_is_offset ? "offset" : "absolute"), name.c_str());
4603           }
4604 
4605           list.add(module);
4606           return true; // Keep iterating over all "library" elements in the root
4607                        // node
4608         });
4609 
4610     if (log)
4611       log->Printf("found %" PRId32 " modules in total",
4612                   (int)list.m_list.size());
4613   } else {
4614     return Status(0, ErrorType::eErrorTypeGeneric);
4615   }
4616 
4617   return Status();
4618 }
4619 
4620 lldb::ModuleSP ProcessGDBRemote::LoadModuleAtAddress(const FileSpec &file,
4621                                                      lldb::addr_t link_map,
4622                                                      lldb::addr_t base_addr,
4623                                                      bool value_is_offset) {
4624   DynamicLoader *loader = GetDynamicLoader();
4625   if (!loader)
4626     return nullptr;
4627 
4628   return loader->LoadModuleAtAddress(file, link_map, base_addr,
4629                                      value_is_offset);
4630 }
4631 
4632 size_t ProcessGDBRemote::LoadModules(LoadedModuleInfoList &module_list) {
4633   using lldb_private::process_gdb_remote::ProcessGDBRemote;
4634 
4635   // request a list of loaded libraries from GDBServer
4636   if (GetLoadedModuleList(module_list).Fail())
4637     return 0;
4638 
4639   // get a list of all the modules
4640   ModuleList new_modules;
4641 
4642   for (LoadedModuleInfoList::LoadedModuleInfo &modInfo : module_list.m_list) {
4643     std::string mod_name;
4644     lldb::addr_t mod_base;
4645     lldb::addr_t link_map;
4646     bool mod_base_is_offset;
4647 
4648     bool valid = true;
4649     valid &= modInfo.get_name(mod_name);
4650     valid &= modInfo.get_base(mod_base);
4651     valid &= modInfo.get_base_is_offset(mod_base_is_offset);
4652     if (!valid)
4653       continue;
4654 
4655     if (!modInfo.get_link_map(link_map))
4656       link_map = LLDB_INVALID_ADDRESS;
4657 
4658     FileSpec file(mod_name, true);
4659     lldb::ModuleSP module_sp =
4660         LoadModuleAtAddress(file, link_map, mod_base, mod_base_is_offset);
4661 
4662     if (module_sp.get())
4663       new_modules.Append(module_sp);
4664   }
4665 
4666   if (new_modules.GetSize() > 0) {
4667     ModuleList removed_modules;
4668     Target &target = GetTarget();
4669     ModuleList &loaded_modules = m_process->GetTarget().GetImages();
4670 
4671     for (size_t i = 0; i < loaded_modules.GetSize(); ++i) {
4672       const lldb::ModuleSP loaded_module = loaded_modules.GetModuleAtIndex(i);
4673 
4674       bool found = false;
4675       for (size_t j = 0; j < new_modules.GetSize(); ++j) {
4676         if (new_modules.GetModuleAtIndex(j).get() == loaded_module.get())
4677           found = true;
4678       }
4679 
4680       // The main executable will never be included in libraries-svr4, don't
4681       // remove it
4682       if (!found &&
4683           loaded_module.get() != target.GetExecutableModulePointer()) {
4684         removed_modules.Append(loaded_module);
4685       }
4686     }
4687 
4688     loaded_modules.Remove(removed_modules);
4689     m_process->GetTarget().ModulesDidUnload(removed_modules, false);
4690 
4691     new_modules.ForEach([&target](const lldb::ModuleSP module_sp) -> bool {
4692       lldb_private::ObjectFile *obj = module_sp->GetObjectFile();
4693       if (!obj)
4694         return true;
4695 
4696       if (obj->GetType() != ObjectFile::Type::eTypeExecutable)
4697         return true;
4698 
4699       lldb::ModuleSP module_copy_sp = module_sp;
4700       target.SetExecutableModule(module_copy_sp, false);
4701       return false;
4702     });
4703 
4704     loaded_modules.AppendIfNeeded(new_modules);
4705     m_process->GetTarget().ModulesDidLoad(new_modules);
4706   }
4707 
4708   return new_modules.GetSize();
4709 }
4710 
4711 size_t ProcessGDBRemote::LoadModules() {
4712   LoadedModuleInfoList module_list;
4713   return LoadModules(module_list);
4714 }
4715 
4716 Status ProcessGDBRemote::GetFileLoadAddress(const FileSpec &file,
4717                                             bool &is_loaded,
4718                                             lldb::addr_t &load_addr) {
4719   is_loaded = false;
4720   load_addr = LLDB_INVALID_ADDRESS;
4721 
4722   std::string file_path = file.GetPath(false);
4723   if (file_path.empty())
4724     return Status("Empty file name specified");
4725 
4726   StreamString packet;
4727   packet.PutCString("qFileLoadAddress:");
4728   packet.PutCStringAsRawHex8(file_path.c_str());
4729 
4730   StringExtractorGDBRemote response;
4731   if (m_gdb_comm.SendPacketAndWaitForResponse(packet.GetString(), response,
4732                                               false) !=
4733       GDBRemoteCommunication::PacketResult::Success)
4734     return Status("Sending qFileLoadAddress packet failed");
4735 
4736   if (response.IsErrorResponse()) {
4737     if (response.GetError() == 1) {
4738       // The file is not loaded into the inferior
4739       is_loaded = false;
4740       load_addr = LLDB_INVALID_ADDRESS;
4741       return Status();
4742     }
4743 
4744     return Status(
4745         "Fetching file load address from remote server returned an error");
4746   }
4747 
4748   if (response.IsNormalResponse()) {
4749     is_loaded = true;
4750     load_addr = response.GetHexMaxU64(false, LLDB_INVALID_ADDRESS);
4751     return Status();
4752   }
4753 
4754   return Status(
4755       "Unknown error happened during sending the load address packet");
4756 }
4757 
4758 void ProcessGDBRemote::ModulesDidLoad(ModuleList &module_list) {
4759   // We must call the lldb_private::Process::ModulesDidLoad () first before we
4760   // do anything
4761   Process::ModulesDidLoad(module_list);
4762 
4763   // After loading shared libraries, we can ask our remote GDB server if
4764   // it needs any symbols.
4765   m_gdb_comm.ServeSymbolLookups(this);
4766 }
4767 
4768 void ProcessGDBRemote::HandleAsyncStdout(llvm::StringRef out) {
4769   AppendSTDOUT(out.data(), out.size());
4770 }
4771 
4772 static const char *end_delimiter = "--end--;";
4773 static const int end_delimiter_len = 8;
4774 
4775 void ProcessGDBRemote::HandleAsyncMisc(llvm::StringRef data) {
4776   std::string input = data.str(); // '1' to move beyond 'A'
4777   if (m_partial_profile_data.length() > 0) {
4778     m_partial_profile_data.append(input);
4779     input = m_partial_profile_data;
4780     m_partial_profile_data.clear();
4781   }
4782 
4783   size_t found, pos = 0, len = input.length();
4784   while ((found = input.find(end_delimiter, pos)) != std::string::npos) {
4785     StringExtractorGDBRemote profileDataExtractor(
4786         input.substr(pos, found).c_str());
4787     std::string profile_data =
4788         HarmonizeThreadIdsForProfileData(profileDataExtractor);
4789     BroadcastAsyncProfileData(profile_data);
4790 
4791     pos = found + end_delimiter_len;
4792   }
4793 
4794   if (pos < len) {
4795     // Last incomplete chunk.
4796     m_partial_profile_data = input.substr(pos);
4797   }
4798 }
4799 
4800 std::string ProcessGDBRemote::HarmonizeThreadIdsForProfileData(
4801     StringExtractorGDBRemote &profileDataExtractor) {
4802   std::map<uint64_t, uint32_t> new_thread_id_to_used_usec_map;
4803   std::string output;
4804   llvm::raw_string_ostream output_stream(output);
4805   llvm::StringRef name, value;
4806 
4807   // Going to assuming thread_used_usec comes first, else bail out.
4808   while (profileDataExtractor.GetNameColonValue(name, value)) {
4809     if (name.compare("thread_used_id") == 0) {
4810       StringExtractor threadIDHexExtractor(value);
4811       uint64_t thread_id = threadIDHexExtractor.GetHexMaxU64(false, 0);
4812 
4813       bool has_used_usec = false;
4814       uint32_t curr_used_usec = 0;
4815       llvm::StringRef usec_name, usec_value;
4816       uint32_t input_file_pos = profileDataExtractor.GetFilePos();
4817       if (profileDataExtractor.GetNameColonValue(usec_name, usec_value)) {
4818         if (usec_name.equals("thread_used_usec")) {
4819           has_used_usec = true;
4820           usec_value.getAsInteger(0, curr_used_usec);
4821         } else {
4822           // We didn't find what we want, it is probably
4823           // an older version. Bail out.
4824           profileDataExtractor.SetFilePos(input_file_pos);
4825         }
4826       }
4827 
4828       if (has_used_usec) {
4829         uint32_t prev_used_usec = 0;
4830         std::map<uint64_t, uint32_t>::iterator iterator =
4831             m_thread_id_to_used_usec_map.find(thread_id);
4832         if (iterator != m_thread_id_to_used_usec_map.end()) {
4833           prev_used_usec = m_thread_id_to_used_usec_map[thread_id];
4834         }
4835 
4836         uint32_t real_used_usec = curr_used_usec - prev_used_usec;
4837         // A good first time record is one that runs for at least 0.25 sec
4838         bool good_first_time =
4839             (prev_used_usec == 0) && (real_used_usec > 250000);
4840         bool good_subsequent_time =
4841             (prev_used_usec > 0) &&
4842             ((real_used_usec > 0) || (HasAssignedIndexIDToThread(thread_id)));
4843 
4844         if (good_first_time || good_subsequent_time) {
4845           // We try to avoid doing too many index id reservation,
4846           // resulting in fast increase of index ids.
4847 
4848           output_stream << name << ":";
4849           int32_t index_id = AssignIndexIDToThread(thread_id);
4850           output_stream << index_id << ";";
4851 
4852           output_stream << usec_name << ":" << usec_value << ";";
4853         } else {
4854           // Skip past 'thread_used_name'.
4855           llvm::StringRef local_name, local_value;
4856           profileDataExtractor.GetNameColonValue(local_name, local_value);
4857         }
4858 
4859         // Store current time as previous time so that they can be compared
4860         // later.
4861         new_thread_id_to_used_usec_map[thread_id] = curr_used_usec;
4862       } else {
4863         // Bail out and use old string.
4864         output_stream << name << ":" << value << ";";
4865       }
4866     } else {
4867       output_stream << name << ":" << value << ";";
4868     }
4869   }
4870   output_stream << end_delimiter;
4871   m_thread_id_to_used_usec_map = new_thread_id_to_used_usec_map;
4872 
4873   return output_stream.str();
4874 }
4875 
4876 void ProcessGDBRemote::HandleStopReply() {
4877   if (GetStopID() != 0)
4878     return;
4879 
4880   if (GetID() == LLDB_INVALID_PROCESS_ID) {
4881     lldb::pid_t pid = m_gdb_comm.GetCurrentProcessID();
4882     if (pid != LLDB_INVALID_PROCESS_ID)
4883       SetID(pid);
4884   }
4885   BuildDynamicRegisterInfo(true);
4886 }
4887 
4888 static const char *const s_async_json_packet_prefix = "JSON-async:";
4889 
4890 static StructuredData::ObjectSP
4891 ParseStructuredDataPacket(llvm::StringRef packet) {
4892   Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
4893 
4894   if (!packet.consume_front(s_async_json_packet_prefix)) {
4895     if (log) {
4896       log->Printf(
4897           "GDBRemoteCommmunicationClientBase::%s() received $J packet "
4898           "but was not a StructuredData packet: packet starts with "
4899           "%s",
4900           __FUNCTION__,
4901           packet.slice(0, strlen(s_async_json_packet_prefix)).str().c_str());
4902     }
4903     return StructuredData::ObjectSP();
4904   }
4905 
4906   // This is an asynchronous JSON packet, destined for a
4907   // StructuredDataPlugin.
4908   StructuredData::ObjectSP json_sp = StructuredData::ParseJSON(packet);
4909   if (log) {
4910     if (json_sp) {
4911       StreamString json_str;
4912       json_sp->Dump(json_str);
4913       json_str.Flush();
4914       log->Printf("ProcessGDBRemote::%s() "
4915                   "received Async StructuredData packet: %s",
4916                   __FUNCTION__, json_str.GetData());
4917     } else {
4918       log->Printf("ProcessGDBRemote::%s"
4919                   "() received StructuredData packet:"
4920                   " parse failure",
4921                   __FUNCTION__);
4922     }
4923   }
4924   return json_sp;
4925 }
4926 
4927 void ProcessGDBRemote::HandleAsyncStructuredDataPacket(llvm::StringRef data) {
4928   auto structured_data_sp = ParseStructuredDataPacket(data);
4929   if (structured_data_sp)
4930     RouteAsyncStructuredData(structured_data_sp);
4931 }
4932 
4933 class CommandObjectProcessGDBRemoteSpeedTest : public CommandObjectParsed {
4934 public:
4935   CommandObjectProcessGDBRemoteSpeedTest(CommandInterpreter &interpreter)
4936       : CommandObjectParsed(interpreter, "process plugin packet speed-test",
4937                             "Tests packet speeds of various sizes to determine "
4938                             "the performance characteristics of the GDB remote "
4939                             "connection. ",
4940                             NULL),
4941         m_option_group(),
4942         m_num_packets(LLDB_OPT_SET_1, false, "count", 'c', 0, eArgTypeCount,
4943                       "The number of packets to send of each varying size "
4944                       "(default is 1000).",
4945                       1000),
4946         m_max_send(LLDB_OPT_SET_1, false, "max-send", 's', 0, eArgTypeCount,
4947                    "The maximum number of bytes to send in a packet. Sizes "
4948                    "increase in powers of 2 while the size is less than or "
4949                    "equal to this option value. (default 1024).",
4950                    1024),
4951         m_max_recv(LLDB_OPT_SET_1, false, "max-receive", 'r', 0, eArgTypeCount,
4952                    "The maximum number of bytes to receive in a packet. Sizes "
4953                    "increase in powers of 2 while the size is less than or "
4954                    "equal to this option value. (default 1024).",
4955                    1024),
4956         m_json(LLDB_OPT_SET_1, false, "json", 'j',
4957                "Print the output as JSON data for easy parsing.", false, true) {
4958     m_option_group.Append(&m_num_packets, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
4959     m_option_group.Append(&m_max_send, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
4960     m_option_group.Append(&m_max_recv, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
4961     m_option_group.Append(&m_json, LLDB_OPT_SET_ALL, LLDB_OPT_SET_1);
4962     m_option_group.Finalize();
4963   }
4964 
4965   ~CommandObjectProcessGDBRemoteSpeedTest() {}
4966 
4967   Options *GetOptions() override { return &m_option_group; }
4968 
4969   bool DoExecute(Args &command, CommandReturnObject &result) override {
4970     const size_t argc = command.GetArgumentCount();
4971     if (argc == 0) {
4972       ProcessGDBRemote *process =
4973           (ProcessGDBRemote *)m_interpreter.GetExecutionContext()
4974               .GetProcessPtr();
4975       if (process) {
4976         StreamSP output_stream_sp(
4977             m_interpreter.GetDebugger().GetAsyncOutputStream());
4978         result.SetImmediateOutputStream(output_stream_sp);
4979 
4980         const uint32_t num_packets =
4981             (uint32_t)m_num_packets.GetOptionValue().GetCurrentValue();
4982         const uint64_t max_send = m_max_send.GetOptionValue().GetCurrentValue();
4983         const uint64_t max_recv = m_max_recv.GetOptionValue().GetCurrentValue();
4984         const bool json = m_json.GetOptionValue().GetCurrentValue();
4985         const uint64_t k_recv_amount =
4986             4 * 1024 * 1024; // Receive amount in bytes
4987         process->GetGDBRemote().TestPacketSpeed(
4988             num_packets, max_send, max_recv, k_recv_amount, json,
4989             output_stream_sp ? *output_stream_sp : result.GetOutputStream());
4990         result.SetStatus(eReturnStatusSuccessFinishResult);
4991         return true;
4992       }
4993     } else {
4994       result.AppendErrorWithFormat("'%s' takes no arguments",
4995                                    m_cmd_name.c_str());
4996     }
4997     result.SetStatus(eReturnStatusFailed);
4998     return false;
4999   }
5000 
5001 protected:
5002   OptionGroupOptions m_option_group;
5003   OptionGroupUInt64 m_num_packets;
5004   OptionGroupUInt64 m_max_send;
5005   OptionGroupUInt64 m_max_recv;
5006   OptionGroupBoolean m_json;
5007 };
5008 
5009 class CommandObjectProcessGDBRemotePacketHistory : public CommandObjectParsed {
5010 private:
5011 public:
5012   CommandObjectProcessGDBRemotePacketHistory(CommandInterpreter &interpreter)
5013       : CommandObjectParsed(interpreter, "process plugin packet history",
5014                             "Dumps the packet history buffer. ", NULL) {}
5015 
5016   ~CommandObjectProcessGDBRemotePacketHistory() {}
5017 
5018   bool DoExecute(Args &command, CommandReturnObject &result) override {
5019     const size_t argc = command.GetArgumentCount();
5020     if (argc == 0) {
5021       ProcessGDBRemote *process =
5022           (ProcessGDBRemote *)m_interpreter.GetExecutionContext()
5023               .GetProcessPtr();
5024       if (process) {
5025         process->GetGDBRemote().DumpHistory(result.GetOutputStream());
5026         result.SetStatus(eReturnStatusSuccessFinishResult);
5027         return true;
5028       }
5029     } else {
5030       result.AppendErrorWithFormat("'%s' takes no arguments",
5031                                    m_cmd_name.c_str());
5032     }
5033     result.SetStatus(eReturnStatusFailed);
5034     return false;
5035   }
5036 };
5037 
5038 class CommandObjectProcessGDBRemotePacketXferSize : public CommandObjectParsed {
5039 private:
5040 public:
5041   CommandObjectProcessGDBRemotePacketXferSize(CommandInterpreter &interpreter)
5042       : CommandObjectParsed(
5043             interpreter, "process plugin packet xfer-size",
5044             "Maximum size that lldb will try to read/write one one chunk.",
5045             NULL) {}
5046 
5047   ~CommandObjectProcessGDBRemotePacketXferSize() {}
5048 
5049   bool DoExecute(Args &command, CommandReturnObject &result) override {
5050     const size_t argc = command.GetArgumentCount();
5051     if (argc == 0) {
5052       result.AppendErrorWithFormat("'%s' takes an argument to specify the max "
5053                                    "amount to be transferred when "
5054                                    "reading/writing",
5055                                    m_cmd_name.c_str());
5056       result.SetStatus(eReturnStatusFailed);
5057       return false;
5058     }
5059 
5060     ProcessGDBRemote *process =
5061         (ProcessGDBRemote *)m_interpreter.GetExecutionContext().GetProcessPtr();
5062     if (process) {
5063       const char *packet_size = command.GetArgumentAtIndex(0);
5064       errno = 0;
5065       uint64_t user_specified_max = strtoul(packet_size, NULL, 10);
5066       if (errno == 0 && user_specified_max != 0) {
5067         process->SetUserSpecifiedMaxMemoryTransferSize(user_specified_max);
5068         result.SetStatus(eReturnStatusSuccessFinishResult);
5069         return true;
5070       }
5071     }
5072     result.SetStatus(eReturnStatusFailed);
5073     return false;
5074   }
5075 };
5076 
5077 class CommandObjectProcessGDBRemotePacketSend : public CommandObjectParsed {
5078 private:
5079 public:
5080   CommandObjectProcessGDBRemotePacketSend(CommandInterpreter &interpreter)
5081       : CommandObjectParsed(interpreter, "process plugin packet send",
5082                             "Send a custom packet through the GDB remote "
5083                             "protocol and print the answer. "
5084                             "The packet header and footer will automatically "
5085                             "be added to the packet prior to sending and "
5086                             "stripped from the result.",
5087                             NULL) {}
5088 
5089   ~CommandObjectProcessGDBRemotePacketSend() {}
5090 
5091   bool DoExecute(Args &command, CommandReturnObject &result) override {
5092     const size_t argc = command.GetArgumentCount();
5093     if (argc == 0) {
5094       result.AppendErrorWithFormat(
5095           "'%s' takes a one or more packet content arguments",
5096           m_cmd_name.c_str());
5097       result.SetStatus(eReturnStatusFailed);
5098       return false;
5099     }
5100 
5101     ProcessGDBRemote *process =
5102         (ProcessGDBRemote *)m_interpreter.GetExecutionContext().GetProcessPtr();
5103     if (process) {
5104       for (size_t i = 0; i < argc; ++i) {
5105         const char *packet_cstr = command.GetArgumentAtIndex(0);
5106         bool send_async = true;
5107         StringExtractorGDBRemote response;
5108         process->GetGDBRemote().SendPacketAndWaitForResponse(
5109             packet_cstr, response, send_async);
5110         result.SetStatus(eReturnStatusSuccessFinishResult);
5111         Stream &output_strm = result.GetOutputStream();
5112         output_strm.Printf("  packet: %s\n", packet_cstr);
5113         std::string &response_str = response.GetStringRef();
5114 
5115         if (strstr(packet_cstr, "qGetProfileData") != NULL) {
5116           response_str = process->HarmonizeThreadIdsForProfileData(response);
5117         }
5118 
5119         if (response_str.empty())
5120           output_strm.PutCString("response: \nerror: UNIMPLEMENTED\n");
5121         else
5122           output_strm.Printf("response: %s\n", response.GetStringRef().c_str());
5123       }
5124     }
5125     return true;
5126   }
5127 };
5128 
5129 class CommandObjectProcessGDBRemotePacketMonitor : public CommandObjectRaw {
5130 private:
5131 public:
5132   CommandObjectProcessGDBRemotePacketMonitor(CommandInterpreter &interpreter)
5133       : CommandObjectRaw(interpreter, "process plugin packet monitor",
5134                          "Send a qRcmd packet through the GDB remote protocol "
5135                          "and print the response."
5136                          "The argument passed to this command will be hex "
5137                          "encoded into a valid 'qRcmd' packet, sent and the "
5138                          "response will be printed.") {}
5139 
5140   ~CommandObjectProcessGDBRemotePacketMonitor() {}
5141 
5142   bool DoExecute(const char *command, CommandReturnObject &result) override {
5143     if (command == NULL || command[0] == '\0') {
5144       result.AppendErrorWithFormat("'%s' takes a command string argument",
5145                                    m_cmd_name.c_str());
5146       result.SetStatus(eReturnStatusFailed);
5147       return false;
5148     }
5149 
5150     ProcessGDBRemote *process =
5151         (ProcessGDBRemote *)m_interpreter.GetExecutionContext().GetProcessPtr();
5152     if (process) {
5153       StreamString packet;
5154       packet.PutCString("qRcmd,");
5155       packet.PutBytesAsRawHex8(command, strlen(command));
5156 
5157       bool send_async = true;
5158       StringExtractorGDBRemote response;
5159       process->GetGDBRemote().SendPacketAndWaitForResponse(
5160           packet.GetString(), response, send_async);
5161       result.SetStatus(eReturnStatusSuccessFinishResult);
5162       Stream &output_strm = result.GetOutputStream();
5163       output_strm.Printf("  packet: %s\n", packet.GetData());
5164       const std::string &response_str = response.GetStringRef();
5165 
5166       if (response_str.empty())
5167         output_strm.PutCString("response: \nerror: UNIMPLEMENTED\n");
5168       else
5169         output_strm.Printf("response: %s\n", response.GetStringRef().c_str());
5170     }
5171     return true;
5172   }
5173 };
5174 
5175 class CommandObjectProcessGDBRemotePacket : public CommandObjectMultiword {
5176 private:
5177 public:
5178   CommandObjectProcessGDBRemotePacket(CommandInterpreter &interpreter)
5179       : CommandObjectMultiword(interpreter, "process plugin packet",
5180                                "Commands that deal with GDB remote packets.",
5181                                NULL) {
5182     LoadSubCommand(
5183         "history",
5184         CommandObjectSP(
5185             new CommandObjectProcessGDBRemotePacketHistory(interpreter)));
5186     LoadSubCommand(
5187         "send", CommandObjectSP(
5188                     new CommandObjectProcessGDBRemotePacketSend(interpreter)));
5189     LoadSubCommand(
5190         "monitor",
5191         CommandObjectSP(
5192             new CommandObjectProcessGDBRemotePacketMonitor(interpreter)));
5193     LoadSubCommand(
5194         "xfer-size",
5195         CommandObjectSP(
5196             new CommandObjectProcessGDBRemotePacketXferSize(interpreter)));
5197     LoadSubCommand("speed-test",
5198                    CommandObjectSP(new CommandObjectProcessGDBRemoteSpeedTest(
5199                        interpreter)));
5200   }
5201 
5202   ~CommandObjectProcessGDBRemotePacket() {}
5203 };
5204 
5205 class CommandObjectMultiwordProcessGDBRemote : public CommandObjectMultiword {
5206 public:
5207   CommandObjectMultiwordProcessGDBRemote(CommandInterpreter &interpreter)
5208       : CommandObjectMultiword(
5209             interpreter, "process plugin",
5210             "Commands for operating on a ProcessGDBRemote process.",
5211             "process plugin <subcommand> [<subcommand-options>]") {
5212     LoadSubCommand(
5213         "packet",
5214         CommandObjectSP(new CommandObjectProcessGDBRemotePacket(interpreter)));
5215   }
5216 
5217   ~CommandObjectMultiwordProcessGDBRemote() {}
5218 };
5219 
5220 CommandObject *ProcessGDBRemote::GetPluginCommandObject() {
5221   if (!m_command_sp)
5222     m_command_sp.reset(new CommandObjectMultiwordProcessGDBRemote(
5223         GetTarget().GetDebugger().GetCommandInterpreter()));
5224   return m_command_sp.get();
5225 }
5226