1 //===-- Platform.cpp ------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #include <algorithm>
10 #include <csignal>
11 #include <fstream>
12 #include <memory>
13 #include <vector>
14 
15 #include "lldb/Breakpoint/BreakpointIDList.h"
16 #include "lldb/Breakpoint/BreakpointLocation.h"
17 #include "lldb/Core/Debugger.h"
18 #include "lldb/Core/Module.h"
19 #include "lldb/Core/ModuleSpec.h"
20 #include "lldb/Core/PluginManager.h"
21 #include "lldb/Core/StreamFile.h"
22 #include "lldb/Host/FileSystem.h"
23 #include "lldb/Host/Host.h"
24 #include "lldb/Host/HostInfo.h"
25 #include "lldb/Host/OptionParser.h"
26 #include "lldb/Interpreter/OptionValueFileSpec.h"
27 #include "lldb/Interpreter/OptionValueProperties.h"
28 #include "lldb/Interpreter/Property.h"
29 #include "lldb/Symbol/ObjectFile.h"
30 #include "lldb/Target/ModuleCache.h"
31 #include "lldb/Target/Platform.h"
32 #include "lldb/Target/Process.h"
33 #include "lldb/Target/Target.h"
34 #include "lldb/Target/UnixSignals.h"
35 #include "lldb/Utility/DataBufferHeap.h"
36 #include "lldb/Utility/FileSpec.h"
37 #include "lldb/Utility/Log.h"
38 #include "lldb/Utility/Status.h"
39 #include "lldb/Utility/StructuredData.h"
40 #include "llvm/Support/FileSystem.h"
41 #include "llvm/Support/Path.h"
42 
43 // Define these constants from POSIX mman.h rather than include the file so
44 // that they will be correct even when compiled on Linux.
45 #define MAP_PRIVATE 2
46 #define MAP_ANON 0x1000
47 
48 using namespace lldb;
49 using namespace lldb_private;
50 
51 static uint32_t g_initialize_count = 0;
52 
53 // Use a singleton function for g_local_platform_sp to avoid init constructors
54 // since LLDB is often part of a shared library
55 static PlatformSP &GetHostPlatformSP() {
56   static PlatformSP g_platform_sp;
57   return g_platform_sp;
58 }
59 
60 const char *Platform::GetHostPlatformName() { return "host"; }
61 
62 namespace {
63 
64 #define LLDB_PROPERTIES_platform
65 #include "TargetProperties.inc"
66 
67 enum {
68 #define LLDB_PROPERTIES_platform
69 #include "TargetPropertiesEnum.inc"
70 };
71 
72 } // namespace
73 
74 ConstString PlatformProperties::GetSettingName() {
75   static ConstString g_setting_name("platform");
76   return g_setting_name;
77 }
78 
79 PlatformProperties::PlatformProperties() {
80   m_collection_sp = std::make_shared<OptionValueProperties>(GetSettingName());
81   m_collection_sp->Initialize(g_platform_properties);
82 
83   auto module_cache_dir = GetModuleCacheDirectory();
84   if (module_cache_dir)
85     return;
86 
87   llvm::SmallString<64> user_home_dir;
88   if (!FileSystem::Instance().GetHomeDirectory(user_home_dir))
89     return;
90 
91   module_cache_dir = FileSpec(user_home_dir.c_str());
92   module_cache_dir.AppendPathComponent(".lldb");
93   module_cache_dir.AppendPathComponent("module_cache");
94   SetDefaultModuleCacheDirectory(module_cache_dir);
95   SetModuleCacheDirectory(module_cache_dir);
96 }
97 
98 bool PlatformProperties::GetUseModuleCache() const {
99   const auto idx = ePropertyUseModuleCache;
100   return m_collection_sp->GetPropertyAtIndexAsBoolean(
101       nullptr, idx, g_platform_properties[idx].default_uint_value != 0);
102 }
103 
104 bool PlatformProperties::SetUseModuleCache(bool use_module_cache) {
105   return m_collection_sp->SetPropertyAtIndexAsBoolean(
106       nullptr, ePropertyUseModuleCache, use_module_cache);
107 }
108 
109 FileSpec PlatformProperties::GetModuleCacheDirectory() const {
110   return m_collection_sp->GetPropertyAtIndexAsFileSpec(
111       nullptr, ePropertyModuleCacheDirectory);
112 }
113 
114 bool PlatformProperties::SetModuleCacheDirectory(const FileSpec &dir_spec) {
115   return m_collection_sp->SetPropertyAtIndexAsFileSpec(
116       nullptr, ePropertyModuleCacheDirectory, dir_spec);
117 }
118 
119 void PlatformProperties::SetDefaultModuleCacheDirectory(
120     const FileSpec &dir_spec) {
121   auto f_spec_opt = m_collection_sp->GetPropertyAtIndexAsOptionValueFileSpec(
122         nullptr, false, ePropertyModuleCacheDirectory);
123   assert(f_spec_opt);
124   f_spec_opt->SetDefaultValue(dir_spec);
125 }
126 
127 /// Get the native host platform plug-in.
128 ///
129 /// There should only be one of these for each host that LLDB runs
130 /// upon that should be statically compiled in and registered using
131 /// preprocessor macros or other similar build mechanisms.
132 ///
133 /// This platform will be used as the default platform when launching
134 /// or attaching to processes unless another platform is specified.
135 PlatformSP Platform::GetHostPlatform() { return GetHostPlatformSP(); }
136 
137 static std::vector<PlatformSP> &GetPlatformList() {
138   static std::vector<PlatformSP> g_platform_list;
139   return g_platform_list;
140 }
141 
142 static std::recursive_mutex &GetPlatformListMutex() {
143   static std::recursive_mutex g_mutex;
144   return g_mutex;
145 }
146 
147 void Platform::Initialize() { g_initialize_count++; }
148 
149 void Platform::Terminate() {
150   if (g_initialize_count > 0) {
151     if (--g_initialize_count == 0) {
152       std::lock_guard<std::recursive_mutex> guard(GetPlatformListMutex());
153       GetPlatformList().clear();
154     }
155   }
156 }
157 
158 PlatformProperties &Platform::GetGlobalPlatformProperties() {
159   static PlatformProperties g_settings;
160   return g_settings;
161 }
162 
163 void Platform::SetHostPlatform(const lldb::PlatformSP &platform_sp) {
164   // The native platform should use its static void Platform::Initialize()
165   // function to register itself as the native platform.
166   GetHostPlatformSP() = platform_sp;
167 
168   if (platform_sp) {
169     std::lock_guard<std::recursive_mutex> guard(GetPlatformListMutex());
170     GetPlatformList().push_back(platform_sp);
171   }
172 }
173 
174 Status Platform::GetFileWithUUID(const FileSpec &platform_file,
175                                  const UUID *uuid_ptr, FileSpec &local_file) {
176   // Default to the local case
177   local_file = platform_file;
178   return Status();
179 }
180 
181 FileSpecList
182 Platform::LocateExecutableScriptingResources(Target *target, Module &module,
183                                              Stream *feedback_stream) {
184   return FileSpecList();
185 }
186 
187 // PlatformSP
188 // Platform::FindPlugin (Process *process, ConstString plugin_name)
189 //{
190 //    PlatformCreateInstance create_callback = nullptr;
191 //    if (plugin_name)
192 //    {
193 //        create_callback  =
194 //        PluginManager::GetPlatformCreateCallbackForPluginName (plugin_name);
195 //        if (create_callback)
196 //        {
197 //            ArchSpec arch;
198 //            if (process)
199 //            {
200 //                arch = process->GetTarget().GetArchitecture();
201 //            }
202 //            PlatformSP platform_sp(create_callback(process, &arch));
203 //            if (platform_sp)
204 //                return platform_sp;
205 //        }
206 //    }
207 //    else
208 //    {
209 //        for (uint32_t idx = 0; (create_callback =
210 //        PluginManager::GetPlatformCreateCallbackAtIndex(idx)) != nullptr;
211 //        ++idx)
212 //        {
213 //            PlatformSP platform_sp(create_callback(process, nullptr));
214 //            if (platform_sp)
215 //                return platform_sp;
216 //        }
217 //    }
218 //    return PlatformSP();
219 //}
220 
221 Status Platform::GetSharedModule(
222     const ModuleSpec &module_spec, Process *process, ModuleSP &module_sp,
223     const FileSpecList *module_search_paths_ptr,
224     llvm::SmallVectorImpl<lldb::ModuleSP> *old_modules, bool *did_create_ptr) {
225   if (IsHost())
226     return ModuleList::GetSharedModule(module_spec, module_sp,
227                                        module_search_paths_ptr, old_modules,
228                                        did_create_ptr, false);
229 
230   // Module resolver lambda.
231   auto resolver = [&](const ModuleSpec &spec) {
232     Status error(eErrorTypeGeneric);
233     ModuleSpec resolved_spec;
234     // Check if we have sysroot set.
235     if (m_sdk_sysroot) {
236       // Prepend sysroot to module spec.
237       resolved_spec = spec;
238       resolved_spec.GetFileSpec().PrependPathComponent(
239           m_sdk_sysroot.GetStringRef());
240       // Try to get shared module with resolved spec.
241       error = ModuleList::GetSharedModule(resolved_spec, module_sp,
242                                           module_search_paths_ptr, old_modules,
243                                           did_create_ptr, false);
244     }
245     // If we don't have sysroot or it didn't work then
246     // try original module spec.
247     if (!error.Success()) {
248       resolved_spec = spec;
249       error = ModuleList::GetSharedModule(resolved_spec, module_sp,
250                                           module_search_paths_ptr, old_modules,
251                                           did_create_ptr, false);
252     }
253     if (error.Success() && module_sp)
254       module_sp->SetPlatformFileSpec(resolved_spec.GetFileSpec());
255     return error;
256   };
257 
258   return GetRemoteSharedModule(module_spec, process, module_sp, resolver,
259                                did_create_ptr);
260 }
261 
262 bool Platform::GetModuleSpec(const FileSpec &module_file_spec,
263                              const ArchSpec &arch, ModuleSpec &module_spec) {
264   ModuleSpecList module_specs;
265   if (ObjectFile::GetModuleSpecifications(module_file_spec, 0, 0,
266                                           module_specs) == 0)
267     return false;
268 
269   ModuleSpec matched_module_spec;
270   return module_specs.FindMatchingModuleSpec(ModuleSpec(module_file_spec, arch),
271                                              module_spec);
272 }
273 
274 PlatformSP Platform::Find(ConstString name) {
275   if (name) {
276     static ConstString g_host_platform_name("host");
277     if (name == g_host_platform_name)
278       return GetHostPlatform();
279 
280     std::lock_guard<std::recursive_mutex> guard(GetPlatformListMutex());
281     for (const auto &platform_sp : GetPlatformList()) {
282       if (platform_sp->GetName() == name)
283         return platform_sp;
284     }
285   }
286   return PlatformSP();
287 }
288 
289 PlatformSP Platform::Create(ConstString name, Status &error) {
290   PlatformCreateInstance create_callback = nullptr;
291   lldb::PlatformSP platform_sp;
292   if (name) {
293     static ConstString g_host_platform_name("host");
294     if (name == g_host_platform_name)
295       return GetHostPlatform();
296 
297     create_callback = PluginManager::GetPlatformCreateCallbackForPluginName(
298         name.GetStringRef());
299     if (create_callback)
300       platform_sp = create_callback(true, nullptr);
301     else
302       error.SetErrorStringWithFormat(
303           "unable to find a plug-in for the platform named \"%s\"",
304           name.GetCString());
305   } else
306     error.SetErrorString("invalid platform name");
307 
308   if (platform_sp) {
309     std::lock_guard<std::recursive_mutex> guard(GetPlatformListMutex());
310     GetPlatformList().push_back(platform_sp);
311   }
312 
313   return platform_sp;
314 }
315 
316 PlatformSP Platform::Create(const ArchSpec &arch, ArchSpec *platform_arch_ptr,
317                             Status &error) {
318   lldb::PlatformSP platform_sp;
319   if (arch.IsValid()) {
320     // Scope for locker
321     {
322       // First try exact arch matches across all platforms already created
323       std::lock_guard<std::recursive_mutex> guard(GetPlatformListMutex());
324       for (const auto &platform_sp : GetPlatformList()) {
325         if (platform_sp->IsCompatibleArchitecture(arch, true,
326                                                   platform_arch_ptr))
327           return platform_sp;
328       }
329 
330       // Next try compatible arch matches across all platforms already created
331       for (const auto &platform_sp : GetPlatformList()) {
332         if (platform_sp->IsCompatibleArchitecture(arch, false,
333                                                   platform_arch_ptr))
334           return platform_sp;
335       }
336     }
337 
338     PlatformCreateInstance create_callback;
339     // First try exact arch matches across all platform plug-ins
340     uint32_t idx;
341     for (idx = 0; (create_callback =
342                        PluginManager::GetPlatformCreateCallbackAtIndex(idx));
343          ++idx) {
344       if (create_callback) {
345         platform_sp = create_callback(false, &arch);
346         if (platform_sp &&
347             platform_sp->IsCompatibleArchitecture(arch, true,
348                                                   platform_arch_ptr)) {
349           std::lock_guard<std::recursive_mutex> guard(GetPlatformListMutex());
350           GetPlatformList().push_back(platform_sp);
351           return platform_sp;
352         }
353       }
354     }
355     // Next try compatible arch matches across all platform plug-ins
356     for (idx = 0; (create_callback =
357                        PluginManager::GetPlatformCreateCallbackAtIndex(idx));
358          ++idx) {
359       if (create_callback) {
360         platform_sp = create_callback(false, &arch);
361         if (platform_sp &&
362             platform_sp->IsCompatibleArchitecture(arch, false,
363                                                   platform_arch_ptr)) {
364           std::lock_guard<std::recursive_mutex> guard(GetPlatformListMutex());
365           GetPlatformList().push_back(platform_sp);
366           return platform_sp;
367         }
368       }
369     }
370   } else
371     error.SetErrorString("invalid platform name");
372   if (platform_arch_ptr)
373     platform_arch_ptr->Clear();
374   platform_sp.reset();
375   return platform_sp;
376 }
377 
378 ArchSpec Platform::GetAugmentedArchSpec(Platform *platform, llvm::StringRef triple) {
379   if (platform)
380     return platform->GetAugmentedArchSpec(triple);
381   return HostInfo::GetAugmentedArchSpec(triple);
382 }
383 
384 /// Default Constructor
385 Platform::Platform(bool is_host)
386     : m_is_host(is_host), m_os_version_set_while_connected(false),
387       m_system_arch_set_while_connected(false), m_sdk_sysroot(), m_sdk_build(),
388       m_working_dir(), m_remote_url(), m_name(), m_system_arch(), m_mutex(),
389       m_max_uid_name_len(0), m_max_gid_name_len(0), m_supports_rsync(false),
390       m_rsync_opts(), m_rsync_prefix(), m_supports_ssh(false), m_ssh_opts(),
391       m_ignores_remote_hostname(false), m_trap_handlers(),
392       m_calculated_trap_handlers(false),
393       m_module_cache(std::make_unique<ModuleCache>()) {
394   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_OBJECT));
395   LLDB_LOGF(log, "%p Platform::Platform()", static_cast<void *>(this));
396 }
397 
398 Platform::~Platform() = default;
399 
400 void Platform::GetStatus(Stream &strm) {
401   strm.Format("  Platform: {0}\n", GetPluginName());
402 
403   ArchSpec arch(GetSystemArchitecture());
404   if (arch.IsValid()) {
405     if (!arch.GetTriple().str().empty()) {
406       strm.Printf("    Triple: ");
407       arch.DumpTriple(strm.AsRawOstream());
408       strm.EOL();
409     }
410   }
411 
412   llvm::VersionTuple os_version = GetOSVersion();
413   if (!os_version.empty()) {
414     strm.Format("OS Version: {0}", os_version.getAsString());
415 
416     if (llvm::Optional<std::string> s = GetOSBuildString())
417       strm.Format(" ({0})", *s);
418 
419     strm.EOL();
420   }
421 
422   if (IsHost()) {
423     strm.Printf("  Hostname: %s\n", GetHostname());
424   } else {
425     const bool is_connected = IsConnected();
426     if (is_connected)
427       strm.Printf("  Hostname: %s\n", GetHostname());
428     strm.Printf(" Connected: %s\n", is_connected ? "yes" : "no");
429   }
430 
431   if (GetWorkingDirectory()) {
432     strm.Printf("WorkingDir: %s\n", GetWorkingDirectory().GetCString());
433   }
434   if (!IsConnected())
435     return;
436 
437   std::string specific_info(GetPlatformSpecificConnectionInformation());
438 
439   if (!specific_info.empty())
440     strm.Printf("Platform-specific connection: %s\n", specific_info.c_str());
441 
442   if (llvm::Optional<std::string> s = GetOSKernelDescription())
443     strm.Format("    Kernel: {0}\n", *s);
444 }
445 
446 llvm::VersionTuple Platform::GetOSVersion(Process *process) {
447   std::lock_guard<std::mutex> guard(m_mutex);
448 
449   if (IsHost()) {
450     if (m_os_version.empty()) {
451       // We have a local host platform
452       m_os_version = HostInfo::GetOSVersion();
453       m_os_version_set_while_connected = !m_os_version.empty();
454     }
455   } else {
456     // We have a remote platform. We can only fetch the remote
457     // OS version if we are connected, and we don't want to do it
458     // more than once.
459 
460     const bool is_connected = IsConnected();
461 
462     bool fetch = false;
463     if (!m_os_version.empty()) {
464       // We have valid OS version info, check to make sure it wasn't manually
465       // set prior to connecting. If it was manually set prior to connecting,
466       // then lets fetch the actual OS version info if we are now connected.
467       if (is_connected && !m_os_version_set_while_connected)
468         fetch = true;
469     } else {
470       // We don't have valid OS version info, fetch it if we are connected
471       fetch = is_connected;
472     }
473 
474     if (fetch)
475       m_os_version_set_while_connected = GetRemoteOSVersion();
476   }
477 
478   if (!m_os_version.empty())
479     return m_os_version;
480   if (process) {
481     // Check with the process in case it can answer the question if a process
482     // was provided
483     return process->GetHostOSVersion();
484   }
485   return llvm::VersionTuple();
486 }
487 
488 llvm::Optional<std::string> Platform::GetOSBuildString() {
489   if (IsHost())
490     return HostInfo::GetOSBuildString();
491   return GetRemoteOSBuildString();
492 }
493 
494 llvm::Optional<std::string> Platform::GetOSKernelDescription() {
495   if (IsHost())
496     return HostInfo::GetOSKernelDescription();
497   return GetRemoteOSKernelDescription();
498 }
499 
500 void Platform::AddClangModuleCompilationOptions(
501     Target *target, std::vector<std::string> &options) {
502   std::vector<std::string> default_compilation_options = {
503       "-x", "c++", "-Xclang", "-nostdsysteminc", "-Xclang", "-nostdsysteminc"};
504 
505   options.insert(options.end(), default_compilation_options.begin(),
506                  default_compilation_options.end());
507 }
508 
509 FileSpec Platform::GetWorkingDirectory() {
510   if (IsHost()) {
511     llvm::SmallString<64> cwd;
512     if (llvm::sys::fs::current_path(cwd))
513       return {};
514     else {
515       FileSpec file_spec(cwd);
516       FileSystem::Instance().Resolve(file_spec);
517       return file_spec;
518     }
519   } else {
520     if (!m_working_dir)
521       m_working_dir = GetRemoteWorkingDirectory();
522     return m_working_dir;
523   }
524 }
525 
526 struct RecurseCopyBaton {
527   const FileSpec &dst;
528   Platform *platform_ptr;
529   Status error;
530 };
531 
532 static FileSystem::EnumerateDirectoryResult
533 RecurseCopy_Callback(void *baton, llvm::sys::fs::file_type ft,
534                      llvm::StringRef path) {
535   RecurseCopyBaton *rc_baton = (RecurseCopyBaton *)baton;
536   FileSpec src(path);
537   namespace fs = llvm::sys::fs;
538   switch (ft) {
539   case fs::file_type::fifo_file:
540   case fs::file_type::socket_file:
541     // we have no way to copy pipes and sockets - ignore them and continue
542     return FileSystem::eEnumerateDirectoryResultNext;
543     break;
544 
545   case fs::file_type::directory_file: {
546     // make the new directory and get in there
547     FileSpec dst_dir = rc_baton->dst;
548     if (!dst_dir.GetFilename())
549       dst_dir.GetFilename() = src.GetLastPathComponent();
550     Status error = rc_baton->platform_ptr->MakeDirectory(
551         dst_dir, lldb::eFilePermissionsDirectoryDefault);
552     if (error.Fail()) {
553       rc_baton->error.SetErrorStringWithFormat(
554           "unable to setup directory %s on remote end", dst_dir.GetCString());
555       return FileSystem::eEnumerateDirectoryResultQuit; // got an error, bail out
556     }
557 
558     // now recurse
559     std::string src_dir_path(src.GetPath());
560 
561     // Make a filespec that only fills in the directory of a FileSpec so when
562     // we enumerate we can quickly fill in the filename for dst copies
563     FileSpec recurse_dst;
564     recurse_dst.GetDirectory().SetCString(dst_dir.GetPath().c_str());
565     RecurseCopyBaton rc_baton2 = {recurse_dst, rc_baton->platform_ptr,
566                                   Status()};
567     FileSystem::Instance().EnumerateDirectory(src_dir_path, true, true, true,
568                                               RecurseCopy_Callback, &rc_baton2);
569     if (rc_baton2.error.Fail()) {
570       rc_baton->error.SetErrorString(rc_baton2.error.AsCString());
571       return FileSystem::eEnumerateDirectoryResultQuit; // got an error, bail out
572     }
573     return FileSystem::eEnumerateDirectoryResultNext;
574   } break;
575 
576   case fs::file_type::symlink_file: {
577     // copy the file and keep going
578     FileSpec dst_file = rc_baton->dst;
579     if (!dst_file.GetFilename())
580       dst_file.GetFilename() = src.GetFilename();
581 
582     FileSpec src_resolved;
583 
584     rc_baton->error = FileSystem::Instance().Readlink(src, src_resolved);
585 
586     if (rc_baton->error.Fail())
587       return FileSystem::eEnumerateDirectoryResultQuit; // got an error, bail out
588 
589     rc_baton->error =
590         rc_baton->platform_ptr->CreateSymlink(dst_file, src_resolved);
591 
592     if (rc_baton->error.Fail())
593       return FileSystem::eEnumerateDirectoryResultQuit; // got an error, bail out
594 
595     return FileSystem::eEnumerateDirectoryResultNext;
596   } break;
597 
598   case fs::file_type::regular_file: {
599     // copy the file and keep going
600     FileSpec dst_file = rc_baton->dst;
601     if (!dst_file.GetFilename())
602       dst_file.GetFilename() = src.GetFilename();
603     Status err = rc_baton->platform_ptr->PutFile(src, dst_file);
604     if (err.Fail()) {
605       rc_baton->error.SetErrorString(err.AsCString());
606       return FileSystem::eEnumerateDirectoryResultQuit; // got an error, bail out
607     }
608     return FileSystem::eEnumerateDirectoryResultNext;
609   } break;
610 
611   default:
612     rc_baton->error.SetErrorStringWithFormat(
613         "invalid file detected during copy: %s", src.GetPath().c_str());
614     return FileSystem::eEnumerateDirectoryResultQuit; // got an error, bail out
615     break;
616   }
617   llvm_unreachable("Unhandled file_type!");
618 }
619 
620 Status Platform::Install(const FileSpec &src, const FileSpec &dst) {
621   Status error;
622 
623   Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM);
624   LLDB_LOGF(log, "Platform::Install (src='%s', dst='%s')",
625             src.GetPath().c_str(), dst.GetPath().c_str());
626   FileSpec fixed_dst(dst);
627 
628   if (!fixed_dst.GetFilename())
629     fixed_dst.GetFilename() = src.GetFilename();
630 
631   FileSpec working_dir = GetWorkingDirectory();
632 
633   if (dst) {
634     if (dst.GetDirectory()) {
635       const char first_dst_dir_char = dst.GetDirectory().GetCString()[0];
636       if (first_dst_dir_char == '/' || first_dst_dir_char == '\\') {
637         fixed_dst.GetDirectory() = dst.GetDirectory();
638       }
639       // If the fixed destination file doesn't have a directory yet, then we
640       // must have a relative path. We will resolve this relative path against
641       // the platform's working directory
642       if (!fixed_dst.GetDirectory()) {
643         FileSpec relative_spec;
644         std::string path;
645         if (working_dir) {
646           relative_spec = working_dir;
647           relative_spec.AppendPathComponent(dst.GetPath());
648           fixed_dst.GetDirectory() = relative_spec.GetDirectory();
649         } else {
650           error.SetErrorStringWithFormat(
651               "platform working directory must be valid for relative path '%s'",
652               dst.GetPath().c_str());
653           return error;
654         }
655       }
656     } else {
657       if (working_dir) {
658         fixed_dst.GetDirectory().SetCString(working_dir.GetCString());
659       } else {
660         error.SetErrorStringWithFormat(
661             "platform working directory must be valid for relative path '%s'",
662             dst.GetPath().c_str());
663         return error;
664       }
665     }
666   } else {
667     if (working_dir) {
668       fixed_dst.GetDirectory().SetCString(working_dir.GetCString());
669     } else {
670       error.SetErrorStringWithFormat("platform working directory must be valid "
671                                      "when destination directory is empty");
672       return error;
673     }
674   }
675 
676   LLDB_LOGF(log, "Platform::Install (src='%s', dst='%s') fixed_dst='%s'",
677             src.GetPath().c_str(), dst.GetPath().c_str(),
678             fixed_dst.GetPath().c_str());
679 
680   if (GetSupportsRSync()) {
681     error = PutFile(src, dst);
682   } else {
683     namespace fs = llvm::sys::fs;
684     switch (fs::get_file_type(src.GetPath(), false)) {
685     case fs::file_type::directory_file: {
686       llvm::sys::fs::remove(fixed_dst.GetPath());
687       uint32_t permissions = FileSystem::Instance().GetPermissions(src);
688       if (permissions == 0)
689         permissions = eFilePermissionsDirectoryDefault;
690       error = MakeDirectory(fixed_dst, permissions);
691       if (error.Success()) {
692         // Make a filespec that only fills in the directory of a FileSpec so
693         // when we enumerate we can quickly fill in the filename for dst copies
694         FileSpec recurse_dst;
695         recurse_dst.GetDirectory().SetCString(fixed_dst.GetCString());
696         std::string src_dir_path(src.GetPath());
697         RecurseCopyBaton baton = {recurse_dst, this, Status()};
698         FileSystem::Instance().EnumerateDirectory(
699             src_dir_path, true, true, true, RecurseCopy_Callback, &baton);
700         return baton.error;
701       }
702     } break;
703 
704     case fs::file_type::regular_file:
705       llvm::sys::fs::remove(fixed_dst.GetPath());
706       error = PutFile(src, fixed_dst);
707       break;
708 
709     case fs::file_type::symlink_file: {
710       llvm::sys::fs::remove(fixed_dst.GetPath());
711       FileSpec src_resolved;
712       error = FileSystem::Instance().Readlink(src, src_resolved);
713       if (error.Success())
714         error = CreateSymlink(dst, src_resolved);
715     } break;
716     case fs::file_type::fifo_file:
717       error.SetErrorString("platform install doesn't handle pipes");
718       break;
719     case fs::file_type::socket_file:
720       error.SetErrorString("platform install doesn't handle sockets");
721       break;
722     default:
723       error.SetErrorString(
724           "platform install doesn't handle non file or directory items");
725       break;
726     }
727   }
728   return error;
729 }
730 
731 bool Platform::SetWorkingDirectory(const FileSpec &file_spec) {
732   if (IsHost()) {
733     Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM);
734     LLDB_LOG(log, "{0}", file_spec);
735     if (std::error_code ec = llvm::sys::fs::set_current_path(file_spec.GetPath())) {
736       LLDB_LOG(log, "error: {0}", ec.message());
737       return false;
738     }
739     return true;
740   } else {
741     m_working_dir.Clear();
742     return SetRemoteWorkingDirectory(file_spec);
743   }
744 }
745 
746 Status Platform::MakeDirectory(const FileSpec &file_spec,
747                                uint32_t permissions) {
748   if (IsHost())
749     return llvm::sys::fs::create_directory(file_spec.GetPath(), permissions);
750   else {
751     Status error;
752     error.SetErrorStringWithFormatv("remote platform {0} doesn't support {1}",
753                                     GetPluginName(), LLVM_PRETTY_FUNCTION);
754     return error;
755   }
756 }
757 
758 Status Platform::GetFilePermissions(const FileSpec &file_spec,
759                                     uint32_t &file_permissions) {
760   if (IsHost()) {
761     auto Value = llvm::sys::fs::getPermissions(file_spec.GetPath());
762     if (Value)
763       file_permissions = Value.get();
764     return Status(Value.getError());
765   } else {
766     Status error;
767     error.SetErrorStringWithFormatv("remote platform {0} doesn't support {1}",
768                                     GetPluginName(), LLVM_PRETTY_FUNCTION);
769     return error;
770   }
771 }
772 
773 Status Platform::SetFilePermissions(const FileSpec &file_spec,
774                                     uint32_t file_permissions) {
775   if (IsHost()) {
776     auto Perms = static_cast<llvm::sys::fs::perms>(file_permissions);
777     return llvm::sys::fs::setPermissions(file_spec.GetPath(), Perms);
778   } else {
779     Status error;
780     error.SetErrorStringWithFormatv("remote platform {0} doesn't support {1}",
781                                     GetPluginName(), LLVM_PRETTY_FUNCTION);
782     return error;
783   }
784 }
785 
786 ConstString Platform::GetName() { return ConstString(GetPluginName()); }
787 
788 const char *Platform::GetHostname() {
789   if (IsHost())
790     return "127.0.0.1";
791 
792   if (m_name.empty())
793     return nullptr;
794   return m_name.c_str();
795 }
796 
797 ConstString Platform::GetFullNameForDylib(ConstString basename) {
798   return basename;
799 }
800 
801 bool Platform::SetRemoteWorkingDirectory(const FileSpec &working_dir) {
802   Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM);
803   LLDB_LOGF(log, "Platform::SetRemoteWorkingDirectory('%s')",
804             working_dir.GetCString());
805   m_working_dir = working_dir;
806   return true;
807 }
808 
809 bool Platform::SetOSVersion(llvm::VersionTuple version) {
810   if (IsHost()) {
811     // We don't need anyone setting the OS version for the host platform, we
812     // should be able to figure it out by calling HostInfo::GetOSVersion(...).
813     return false;
814   } else {
815     // We have a remote platform, allow setting the target OS version if we
816     // aren't connected, since if we are connected, we should be able to
817     // request the remote OS version from the connected platform.
818     if (IsConnected())
819       return false;
820     else {
821       // We aren't connected and we might want to set the OS version ahead of
822       // time before we connect so we can peruse files and use a local SDK or
823       // PDK cache of support files to disassemble or do other things.
824       m_os_version = version;
825       return true;
826     }
827   }
828   return false;
829 }
830 
831 Status
832 Platform::ResolveExecutable(const ModuleSpec &module_spec,
833                             lldb::ModuleSP &exe_module_sp,
834                             const FileSpecList *module_search_paths_ptr) {
835   Status error;
836 
837   if (FileSystem::Instance().Exists(module_spec.GetFileSpec())) {
838     if (module_spec.GetArchitecture().IsValid()) {
839       error = ModuleList::GetSharedModule(module_spec, exe_module_sp,
840                                           module_search_paths_ptr, nullptr,
841                                           nullptr);
842     } else {
843       // No valid architecture was specified, ask the platform for the
844       // architectures that we should be using (in the correct order) and see
845       // if we can find a match that way
846       ModuleSpec arch_module_spec(module_spec);
847       for (const ArchSpec &arch : GetSupportedArchitectures()) {
848         arch_module_spec.GetArchitecture() = arch;
849         error = ModuleList::GetSharedModule(arch_module_spec, exe_module_sp,
850                                             module_search_paths_ptr, nullptr,
851                                             nullptr);
852         // Did we find an executable using one of the
853         if (error.Success() && exe_module_sp)
854           break;
855       }
856     }
857   } else {
858     error.SetErrorStringWithFormat(
859         "'%s' does not exist", module_spec.GetFileSpec().GetPath().c_str());
860   }
861   return error;
862 }
863 
864 Status
865 Platform::ResolveRemoteExecutable(const ModuleSpec &module_spec,
866                             lldb::ModuleSP &exe_module_sp,
867                             const FileSpecList *module_search_paths_ptr) {
868   Status error;
869 
870   // We may connect to a process and use the provided executable (Don't use
871   // local $PATH).
872   ModuleSpec resolved_module_spec(module_spec);
873 
874   // Resolve any executable within a bundle on MacOSX
875   Host::ResolveExecutableInBundle(resolved_module_spec.GetFileSpec());
876 
877   if (FileSystem::Instance().Exists(resolved_module_spec.GetFileSpec()) ||
878       module_spec.GetUUID().IsValid()) {
879     if (resolved_module_spec.GetArchitecture().IsValid() ||
880         resolved_module_spec.GetUUID().IsValid()) {
881       error = ModuleList::GetSharedModule(resolved_module_spec, exe_module_sp,
882                                           module_search_paths_ptr, nullptr,
883                                           nullptr);
884 
885       if (exe_module_sp && exe_module_sp->GetObjectFile())
886         return error;
887       exe_module_sp.reset();
888     }
889     // No valid architecture was specified or the exact arch wasn't found so
890     // ask the platform for the architectures that we should be using (in the
891     // correct order) and see if we can find a match that way
892     StreamString arch_names;
893     llvm::ListSeparator LS;
894     for (const ArchSpec &arch : GetSupportedArchitectures()) {
895       resolved_module_spec.GetArchitecture() = arch;
896       error = ModuleList::GetSharedModule(resolved_module_spec, exe_module_sp,
897                                           module_search_paths_ptr, nullptr,
898                                           nullptr);
899       // Did we find an executable using one of the
900       if (error.Success()) {
901         if (exe_module_sp && exe_module_sp->GetObjectFile())
902           break;
903         else
904           error.SetErrorToGenericError();
905       }
906 
907       arch_names << LS << arch.GetArchitectureName();
908     }
909 
910     if (error.Fail() || !exe_module_sp) {
911       if (FileSystem::Instance().Readable(resolved_module_spec.GetFileSpec())) {
912         error.SetErrorStringWithFormatv(
913             "'{0}' doesn't contain any '{1}' platform architectures: {2}",
914             resolved_module_spec.GetFileSpec(), GetPluginName(),
915             arch_names.GetData());
916       } else {
917         error.SetErrorStringWithFormatv("'{0}' is not readable",
918                                         resolved_module_spec.GetFileSpec());
919       }
920     }
921   } else {
922     error.SetErrorStringWithFormatv("'{0}' does not exist",
923                                     resolved_module_spec.GetFileSpec());
924   }
925 
926   return error;
927 }
928 
929 Status Platform::ResolveSymbolFile(Target &target, const ModuleSpec &sym_spec,
930                                    FileSpec &sym_file) {
931   Status error;
932   if (FileSystem::Instance().Exists(sym_spec.GetSymbolFileSpec()))
933     sym_file = sym_spec.GetSymbolFileSpec();
934   else
935     error.SetErrorString("unable to resolve symbol file");
936   return error;
937 }
938 
939 bool Platform::ResolveRemotePath(const FileSpec &platform_path,
940                                  FileSpec &resolved_platform_path) {
941   resolved_platform_path = platform_path;
942   FileSystem::Instance().Resolve(resolved_platform_path);
943   return true;
944 }
945 
946 const ArchSpec &Platform::GetSystemArchitecture() {
947   if (IsHost()) {
948     if (!m_system_arch.IsValid()) {
949       // We have a local host platform
950       m_system_arch = HostInfo::GetArchitecture();
951       m_system_arch_set_while_connected = m_system_arch.IsValid();
952     }
953   } else {
954     // We have a remote platform. We can only fetch the remote system
955     // architecture if we are connected, and we don't want to do it more than
956     // once.
957 
958     const bool is_connected = IsConnected();
959 
960     bool fetch = false;
961     if (m_system_arch.IsValid()) {
962       // We have valid OS version info, check to make sure it wasn't manually
963       // set prior to connecting. If it was manually set prior to connecting,
964       // then lets fetch the actual OS version info if we are now connected.
965       if (is_connected && !m_system_arch_set_while_connected)
966         fetch = true;
967     } else {
968       // We don't have valid OS version info, fetch it if we are connected
969       fetch = is_connected;
970     }
971 
972     if (fetch) {
973       m_system_arch = GetRemoteSystemArchitecture();
974       m_system_arch_set_while_connected = m_system_arch.IsValid();
975     }
976   }
977   return m_system_arch;
978 }
979 
980 ArchSpec Platform::GetAugmentedArchSpec(llvm::StringRef triple) {
981   if (triple.empty())
982     return ArchSpec();
983   llvm::Triple normalized_triple(llvm::Triple::normalize(triple));
984   if (!ArchSpec::ContainsOnlyArch(normalized_triple))
985     return ArchSpec(triple);
986 
987   if (auto kind = HostInfo::ParseArchitectureKind(triple))
988     return HostInfo::GetArchitecture(*kind);
989 
990   ArchSpec compatible_arch;
991   ArchSpec raw_arch(triple);
992   if (!IsCompatibleArchitecture(raw_arch, false, &compatible_arch))
993     return raw_arch;
994 
995   if (!compatible_arch.IsValid())
996     return ArchSpec(normalized_triple);
997 
998   const llvm::Triple &compatible_triple = compatible_arch.GetTriple();
999   if (normalized_triple.getVendorName().empty())
1000     normalized_triple.setVendor(compatible_triple.getVendor());
1001   if (normalized_triple.getOSName().empty())
1002     normalized_triple.setOS(compatible_triple.getOS());
1003   if (normalized_triple.getEnvironmentName().empty())
1004     normalized_triple.setEnvironment(compatible_triple.getEnvironment());
1005   return ArchSpec(normalized_triple);
1006 }
1007 
1008 Status Platform::ConnectRemote(Args &args) {
1009   Status error;
1010   if (IsHost())
1011     error.SetErrorStringWithFormatv(
1012         "The currently selected platform ({0}) is "
1013         "the host platform and is always connected.",
1014         GetPluginName());
1015   else
1016     error.SetErrorStringWithFormatv(
1017         "Platform::ConnectRemote() is not supported by {0}", GetPluginName());
1018   return error;
1019 }
1020 
1021 Status Platform::DisconnectRemote() {
1022   Status error;
1023   if (IsHost())
1024     error.SetErrorStringWithFormatv(
1025         "The currently selected platform ({0}) is "
1026         "the host platform and is always connected.",
1027         GetPluginName());
1028   else
1029     error.SetErrorStringWithFormatv(
1030         "Platform::DisconnectRemote() is not supported by {0}",
1031         GetPluginName());
1032   return error;
1033 }
1034 
1035 bool Platform::GetProcessInfo(lldb::pid_t pid,
1036                               ProcessInstanceInfo &process_info) {
1037   // Take care of the host case so that each subclass can just call this
1038   // function to get the host functionality.
1039   if (IsHost())
1040     return Host::GetProcessInfo(pid, process_info);
1041   return false;
1042 }
1043 
1044 uint32_t Platform::FindProcesses(const ProcessInstanceInfoMatch &match_info,
1045                                  ProcessInstanceInfoList &process_infos) {
1046   // Take care of the host case so that each subclass can just call this
1047   // function to get the host functionality.
1048   uint32_t match_count = 0;
1049   if (IsHost())
1050     match_count = Host::FindProcesses(match_info, process_infos);
1051   return match_count;
1052 }
1053 
1054 Status Platform::LaunchProcess(ProcessLaunchInfo &launch_info) {
1055   Status error;
1056   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
1057   LLDB_LOGF(log, "Platform::%s()", __FUNCTION__);
1058 
1059   // Take care of the host case so that each subclass can just call this
1060   // function to get the host functionality.
1061   if (IsHost()) {
1062     if (::getenv("LLDB_LAUNCH_FLAG_LAUNCH_IN_TTY"))
1063       launch_info.GetFlags().Set(eLaunchFlagLaunchInTTY);
1064 
1065     if (launch_info.GetFlags().Test(eLaunchFlagLaunchInShell)) {
1066       const bool will_debug = launch_info.GetFlags().Test(eLaunchFlagDebug);
1067       const bool first_arg_is_full_shell_command = false;
1068       uint32_t num_resumes = GetResumeCountForLaunchInfo(launch_info);
1069       if (log) {
1070         const FileSpec &shell = launch_info.GetShell();
1071         std::string shell_str = (shell) ? shell.GetPath() : "<null>";
1072         LLDB_LOGF(log,
1073                   "Platform::%s GetResumeCountForLaunchInfo() returned %" PRIu32
1074                   ", shell is '%s'",
1075                   __FUNCTION__, num_resumes, shell_str.c_str());
1076       }
1077 
1078       if (!launch_info.ConvertArgumentsForLaunchingInShell(
1079               error, will_debug, first_arg_is_full_shell_command, num_resumes))
1080         return error;
1081     } else if (launch_info.GetFlags().Test(eLaunchFlagShellExpandArguments)) {
1082       error = ShellExpandArguments(launch_info);
1083       if (error.Fail()) {
1084         error.SetErrorStringWithFormat("shell expansion failed (reason: %s). "
1085                                        "consider launching with 'process "
1086                                        "launch'.",
1087                                        error.AsCString("unknown"));
1088         return error;
1089       }
1090     }
1091 
1092     LLDB_LOGF(log, "Platform::%s final launch_info resume count: %" PRIu32,
1093               __FUNCTION__, launch_info.GetResumeCount());
1094 
1095     error = Host::LaunchProcess(launch_info);
1096   } else
1097     error.SetErrorString(
1098         "base lldb_private::Platform class can't launch remote processes");
1099   return error;
1100 }
1101 
1102 Status Platform::ShellExpandArguments(ProcessLaunchInfo &launch_info) {
1103   if (IsHost())
1104     return Host::ShellExpandArguments(launch_info);
1105   return Status("base lldb_private::Platform class can't expand arguments");
1106 }
1107 
1108 Status Platform::KillProcess(const lldb::pid_t pid) {
1109   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
1110   LLDB_LOGF(log, "Platform::%s, pid %" PRIu64, __FUNCTION__, pid);
1111 
1112   if (!IsHost()) {
1113     return Status(
1114         "base lldb_private::Platform class can't kill remote processes");
1115   }
1116   Host::Kill(pid, SIGKILL);
1117   return Status();
1118 }
1119 
1120 lldb::ProcessSP Platform::DebugProcess(ProcessLaunchInfo &launch_info,
1121                                        Debugger &debugger, Target &target,
1122                                        Status &error) {
1123   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
1124   LLDB_LOG(log, "target = {0})", &target);
1125 
1126   ProcessSP process_sp;
1127   // Make sure we stop at the entry point
1128   launch_info.GetFlags().Set(eLaunchFlagDebug);
1129   // We always launch the process we are going to debug in a separate process
1130   // group, since then we can handle ^C interrupts ourselves w/o having to
1131   // worry about the target getting them as well.
1132   launch_info.SetLaunchInSeparateProcessGroup(true);
1133 
1134   // Allow any StructuredData process-bound plugins to adjust the launch info
1135   // if needed
1136   size_t i = 0;
1137   bool iteration_complete = false;
1138   // Note iteration can't simply go until a nullptr callback is returned, as it
1139   // is valid for a plugin to not supply a filter.
1140   auto get_filter_func = PluginManager::GetStructuredDataFilterCallbackAtIndex;
1141   for (auto filter_callback = get_filter_func(i, iteration_complete);
1142        !iteration_complete;
1143        filter_callback = get_filter_func(++i, iteration_complete)) {
1144     if (filter_callback) {
1145       // Give this ProcessLaunchInfo filter a chance to adjust the launch info.
1146       error = (*filter_callback)(launch_info, &target);
1147       if (!error.Success()) {
1148         LLDB_LOGF(log,
1149                   "Platform::%s() StructuredDataPlugin launch "
1150                   "filter failed.",
1151                   __FUNCTION__);
1152         return process_sp;
1153       }
1154     }
1155   }
1156 
1157   error = LaunchProcess(launch_info);
1158   if (error.Success()) {
1159     LLDB_LOGF(log,
1160               "Platform::%s LaunchProcess() call succeeded (pid=%" PRIu64 ")",
1161               __FUNCTION__, launch_info.GetProcessID());
1162     if (launch_info.GetProcessID() != LLDB_INVALID_PROCESS_ID) {
1163       ProcessAttachInfo attach_info(launch_info);
1164       process_sp = Attach(attach_info, debugger, &target, error);
1165       if (process_sp) {
1166         LLDB_LOG(log, "Attach() succeeded, Process plugin: {0}",
1167                  process_sp->GetPluginName());
1168         launch_info.SetHijackListener(attach_info.GetHijackListener());
1169 
1170         // Since we attached to the process, it will think it needs to detach
1171         // if the process object just goes away without an explicit call to
1172         // Process::Kill() or Process::Detach(), so let it know to kill the
1173         // process if this happens.
1174         process_sp->SetShouldDetach(false);
1175 
1176         // If we didn't have any file actions, the pseudo terminal might have
1177         // been used where the secondary side was given as the file to open for
1178         // stdin/out/err after we have already opened the primary so we can
1179         // read/write stdin/out/err.
1180         int pty_fd = launch_info.GetPTY().ReleasePrimaryFileDescriptor();
1181         if (pty_fd != PseudoTerminal::invalid_fd) {
1182           process_sp->SetSTDIOFileDescriptor(pty_fd);
1183         }
1184       } else {
1185         LLDB_LOGF(log, "Platform::%s Attach() failed: %s", __FUNCTION__,
1186                   error.AsCString());
1187       }
1188     } else {
1189       LLDB_LOGF(log,
1190                 "Platform::%s LaunchProcess() returned launch_info with "
1191                 "invalid process id",
1192                 __FUNCTION__);
1193     }
1194   } else {
1195     LLDB_LOGF(log, "Platform::%s LaunchProcess() failed: %s", __FUNCTION__,
1196               error.AsCString());
1197   }
1198 
1199   return process_sp;
1200 }
1201 
1202 lldb::PlatformSP
1203 Platform::GetPlatformForArchitecture(const ArchSpec &arch,
1204                                      ArchSpec *platform_arch_ptr) {
1205   lldb::PlatformSP platform_sp;
1206   Status error;
1207   if (arch.IsValid())
1208     platform_sp = Platform::Create(arch, platform_arch_ptr, error);
1209   return platform_sp;
1210 }
1211 
1212 std::vector<ArchSpec>
1213 Platform::CreateArchList(llvm::ArrayRef<llvm::Triple::ArchType> archs,
1214                          llvm::Triple::OSType os) {
1215   std::vector<ArchSpec> list;
1216   for(auto arch : archs) {
1217     llvm::Triple triple;
1218     triple.setArch(arch);
1219     triple.setOS(os);
1220     list.push_back(ArchSpec(triple));
1221   }
1222   return list;
1223 }
1224 
1225 bool Platform::GetSupportedArchitectureAtIndex(uint32_t idx, ArchSpec &arch) {
1226   const auto &archs = GetSupportedArchitectures();
1227   if (idx >= archs.size())
1228     return false;
1229   arch = archs[idx];
1230   return true;
1231 }
1232 
1233 std::vector<ArchSpec> Platform::GetSupportedArchitectures() {
1234   std::vector<ArchSpec> result;
1235   ArchSpec arch;
1236   for (uint32_t idx = 0; GetSupportedArchitectureAtIndex(idx, arch); ++idx)
1237     result.push_back(arch);
1238   return result;
1239 }
1240 
1241 /// Lets a platform answer if it is compatible with a given
1242 /// architecture and the target triple contained within.
1243 bool Platform::IsCompatibleArchitecture(const ArchSpec &arch,
1244                                         bool exact_arch_match,
1245                                         ArchSpec *compatible_arch_ptr) {
1246   // If the architecture is invalid, we must answer true...
1247   if (arch.IsValid()) {
1248     ArchSpec platform_arch;
1249     auto match = exact_arch_match ? &ArchSpec::IsExactMatch
1250                                   : &ArchSpec::IsCompatibleMatch;
1251     for (const ArchSpec &platform_arch : GetSupportedArchitectures()) {
1252       if ((arch.*match)(platform_arch)) {
1253         if (compatible_arch_ptr)
1254           *compatible_arch_ptr = platform_arch;
1255         return true;
1256       }
1257     }
1258   }
1259   if (compatible_arch_ptr)
1260     compatible_arch_ptr->Clear();
1261   return false;
1262 }
1263 
1264 Status Platform::PutFile(const FileSpec &source, const FileSpec &destination,
1265                          uint32_t uid, uint32_t gid) {
1266   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
1267   LLDB_LOGF(log, "[PutFile] Using block by block transfer....\n");
1268 
1269   auto source_open_options =
1270       File::eOpenOptionReadOnly | File::eOpenOptionCloseOnExec;
1271   namespace fs = llvm::sys::fs;
1272   if (fs::is_symlink_file(source.GetPath()))
1273     source_open_options |= File::eOpenOptionDontFollowSymlinks;
1274 
1275   auto source_file = FileSystem::Instance().Open(source, source_open_options,
1276                                                  lldb::eFilePermissionsUserRW);
1277   if (!source_file)
1278     return Status(source_file.takeError());
1279   Status error;
1280   uint32_t permissions = source_file.get()->GetPermissions(error);
1281   if (permissions == 0)
1282     permissions = lldb::eFilePermissionsFileDefault;
1283 
1284   lldb::user_id_t dest_file = OpenFile(
1285       destination, File::eOpenOptionCanCreate | File::eOpenOptionWriteOnly |
1286                        File::eOpenOptionTruncate | File::eOpenOptionCloseOnExec,
1287       permissions, error);
1288   LLDB_LOGF(log, "dest_file = %" PRIu64 "\n", dest_file);
1289 
1290   if (error.Fail())
1291     return error;
1292   if (dest_file == UINT64_MAX)
1293     return Status("unable to open target file");
1294   lldb::DataBufferSP buffer_sp(new DataBufferHeap(1024 * 16, 0));
1295   uint64_t offset = 0;
1296   for (;;) {
1297     size_t bytes_read = buffer_sp->GetByteSize();
1298     error = source_file.get()->Read(buffer_sp->GetBytes(), bytes_read);
1299     if (error.Fail() || bytes_read == 0)
1300       break;
1301 
1302     const uint64_t bytes_written =
1303         WriteFile(dest_file, offset, buffer_sp->GetBytes(), bytes_read, error);
1304     if (error.Fail())
1305       break;
1306 
1307     offset += bytes_written;
1308     if (bytes_written != bytes_read) {
1309       // We didn't write the correct number of bytes, so adjust the file
1310       // position in the source file we are reading from...
1311       source_file.get()->SeekFromStart(offset);
1312     }
1313   }
1314   CloseFile(dest_file, error);
1315 
1316   if (uid == UINT32_MAX && gid == UINT32_MAX)
1317     return error;
1318 
1319   // TODO: ChownFile?
1320 
1321   return error;
1322 }
1323 
1324 Status Platform::GetFile(const FileSpec &source, const FileSpec &destination) {
1325   Status error("unimplemented");
1326   return error;
1327 }
1328 
1329 Status
1330 Platform::CreateSymlink(const FileSpec &src, // The name of the link is in src
1331                         const FileSpec &dst) // The symlink points to dst
1332 {
1333   Status error("unimplemented");
1334   return error;
1335 }
1336 
1337 bool Platform::GetFileExists(const lldb_private::FileSpec &file_spec) {
1338   return false;
1339 }
1340 
1341 Status Platform::Unlink(const FileSpec &path) {
1342   Status error("unimplemented");
1343   return error;
1344 }
1345 
1346 MmapArgList Platform::GetMmapArgumentList(const ArchSpec &arch, addr_t addr,
1347                                           addr_t length, unsigned prot,
1348                                           unsigned flags, addr_t fd,
1349                                           addr_t offset) {
1350   uint64_t flags_platform = 0;
1351   if (flags & eMmapFlagsPrivate)
1352     flags_platform |= MAP_PRIVATE;
1353   if (flags & eMmapFlagsAnon)
1354     flags_platform |= MAP_ANON;
1355 
1356   MmapArgList args({addr, length, prot, flags_platform, fd, offset});
1357   return args;
1358 }
1359 
1360 lldb_private::Status Platform::RunShellCommand(
1361     llvm::StringRef command,
1362     const FileSpec &
1363         working_dir, // Pass empty FileSpec to use the current working directory
1364     int *status_ptr, // Pass nullptr if you don't want the process exit status
1365     int *signo_ptr, // Pass nullptr if you don't want the signal that caused the
1366                     // process to exit
1367     std::string
1368         *command_output, // Pass nullptr if you don't want the command output
1369     const Timeout<std::micro> &timeout) {
1370   return RunShellCommand(llvm::StringRef(), command, working_dir, status_ptr,
1371                          signo_ptr, command_output, timeout);
1372 }
1373 
1374 lldb_private::Status Platform::RunShellCommand(
1375     llvm::StringRef shell,   // Pass empty if you want to use the default
1376                              // shell interpreter
1377     llvm::StringRef command, // Shouldn't be empty
1378     const FileSpec &
1379         working_dir, // Pass empty FileSpec to use the current working directory
1380     int *status_ptr, // Pass nullptr if you don't want the process exit status
1381     int *signo_ptr, // Pass nullptr if you don't want the signal that caused the
1382                     // process to exit
1383     std::string
1384         *command_output, // Pass nullptr if you don't want the command output
1385     const Timeout<std::micro> &timeout) {
1386   if (IsHost())
1387     return Host::RunShellCommand(shell, command, working_dir, status_ptr,
1388                                  signo_ptr, command_output, timeout);
1389   else
1390     return Status("unimplemented");
1391 }
1392 
1393 bool Platform::CalculateMD5(const FileSpec &file_spec, uint64_t &low,
1394                             uint64_t &high) {
1395   if (!IsHost())
1396     return false;
1397   auto Result = llvm::sys::fs::md5_contents(file_spec.GetPath());
1398   if (!Result)
1399     return false;
1400   std::tie(high, low) = Result->words();
1401   return true;
1402 }
1403 
1404 void Platform::SetLocalCacheDirectory(const char *local) {
1405   m_local_cache_directory.assign(local);
1406 }
1407 
1408 const char *Platform::GetLocalCacheDirectory() {
1409   return m_local_cache_directory.c_str();
1410 }
1411 
1412 static constexpr OptionDefinition g_rsync_option_table[] = {
1413     {LLDB_OPT_SET_ALL, false, "rsync", 'r', OptionParser::eNoArgument, nullptr,
1414      {}, 0, eArgTypeNone, "Enable rsync."},
1415     {LLDB_OPT_SET_ALL, false, "rsync-opts", 'R',
1416      OptionParser::eRequiredArgument, nullptr, {}, 0, eArgTypeCommandName,
1417      "Platform-specific options required for rsync to work."},
1418     {LLDB_OPT_SET_ALL, false, "rsync-prefix", 'P',
1419      OptionParser::eRequiredArgument, nullptr, {}, 0, eArgTypeCommandName,
1420      "Platform-specific rsync prefix put before the remote path."},
1421     {LLDB_OPT_SET_ALL, false, "ignore-remote-hostname", 'i',
1422      OptionParser::eNoArgument, nullptr, {}, 0, eArgTypeNone,
1423      "Do not automatically fill in the remote hostname when composing the "
1424      "rsync command."},
1425 };
1426 
1427 static constexpr OptionDefinition g_ssh_option_table[] = {
1428     {LLDB_OPT_SET_ALL, false, "ssh", 's', OptionParser::eNoArgument, nullptr,
1429      {}, 0, eArgTypeNone, "Enable SSH."},
1430     {LLDB_OPT_SET_ALL, false, "ssh-opts", 'S', OptionParser::eRequiredArgument,
1431      nullptr, {}, 0, eArgTypeCommandName,
1432      "Platform-specific options required for SSH to work."},
1433 };
1434 
1435 static constexpr OptionDefinition g_caching_option_table[] = {
1436     {LLDB_OPT_SET_ALL, false, "local-cache-dir", 'c',
1437      OptionParser::eRequiredArgument, nullptr, {}, 0, eArgTypePath,
1438      "Path in which to store local copies of files."},
1439 };
1440 
1441 llvm::ArrayRef<OptionDefinition> OptionGroupPlatformRSync::GetDefinitions() {
1442   return llvm::makeArrayRef(g_rsync_option_table);
1443 }
1444 
1445 void OptionGroupPlatformRSync::OptionParsingStarting(
1446     ExecutionContext *execution_context) {
1447   m_rsync = false;
1448   m_rsync_opts.clear();
1449   m_rsync_prefix.clear();
1450   m_ignores_remote_hostname = false;
1451 }
1452 
1453 lldb_private::Status
1454 OptionGroupPlatformRSync::SetOptionValue(uint32_t option_idx,
1455                                          llvm::StringRef option_arg,
1456                                          ExecutionContext *execution_context) {
1457   Status error;
1458   char short_option = (char)GetDefinitions()[option_idx].short_option;
1459   switch (short_option) {
1460   case 'r':
1461     m_rsync = true;
1462     break;
1463 
1464   case 'R':
1465     m_rsync_opts.assign(std::string(option_arg));
1466     break;
1467 
1468   case 'P':
1469     m_rsync_prefix.assign(std::string(option_arg));
1470     break;
1471 
1472   case 'i':
1473     m_ignores_remote_hostname = true;
1474     break;
1475 
1476   default:
1477     error.SetErrorStringWithFormat("unrecognized option '%c'", short_option);
1478     break;
1479   }
1480 
1481   return error;
1482 }
1483 
1484 lldb::BreakpointSP
1485 Platform::SetThreadCreationBreakpoint(lldb_private::Target &target) {
1486   return lldb::BreakpointSP();
1487 }
1488 
1489 llvm::ArrayRef<OptionDefinition> OptionGroupPlatformSSH::GetDefinitions() {
1490   return llvm::makeArrayRef(g_ssh_option_table);
1491 }
1492 
1493 void OptionGroupPlatformSSH::OptionParsingStarting(
1494     ExecutionContext *execution_context) {
1495   m_ssh = false;
1496   m_ssh_opts.clear();
1497 }
1498 
1499 lldb_private::Status
1500 OptionGroupPlatformSSH::SetOptionValue(uint32_t option_idx,
1501                                        llvm::StringRef option_arg,
1502                                        ExecutionContext *execution_context) {
1503   Status error;
1504   char short_option = (char)GetDefinitions()[option_idx].short_option;
1505   switch (short_option) {
1506   case 's':
1507     m_ssh = true;
1508     break;
1509 
1510   case 'S':
1511     m_ssh_opts.assign(std::string(option_arg));
1512     break;
1513 
1514   default:
1515     error.SetErrorStringWithFormat("unrecognized option '%c'", short_option);
1516     break;
1517   }
1518 
1519   return error;
1520 }
1521 
1522 llvm::ArrayRef<OptionDefinition> OptionGroupPlatformCaching::GetDefinitions() {
1523   return llvm::makeArrayRef(g_caching_option_table);
1524 }
1525 
1526 void OptionGroupPlatformCaching::OptionParsingStarting(
1527     ExecutionContext *execution_context) {
1528   m_cache_dir.clear();
1529 }
1530 
1531 lldb_private::Status OptionGroupPlatformCaching::SetOptionValue(
1532     uint32_t option_idx, llvm::StringRef option_arg,
1533     ExecutionContext *execution_context) {
1534   Status error;
1535   char short_option = (char)GetDefinitions()[option_idx].short_option;
1536   switch (short_option) {
1537   case 'c':
1538     m_cache_dir.assign(std::string(option_arg));
1539     break;
1540 
1541   default:
1542     error.SetErrorStringWithFormat("unrecognized option '%c'", short_option);
1543     break;
1544   }
1545 
1546   return error;
1547 }
1548 
1549 Environment Platform::GetEnvironment() { return Environment(); }
1550 
1551 const std::vector<ConstString> &Platform::GetTrapHandlerSymbolNames() {
1552   if (!m_calculated_trap_handlers) {
1553     std::lock_guard<std::mutex> guard(m_mutex);
1554     if (!m_calculated_trap_handlers) {
1555       CalculateTrapHandlerSymbolNames();
1556       m_calculated_trap_handlers = true;
1557     }
1558   }
1559   return m_trap_handlers;
1560 }
1561 
1562 Status
1563 Platform::GetCachedExecutable(ModuleSpec &module_spec,
1564                               lldb::ModuleSP &module_sp,
1565                               const FileSpecList *module_search_paths_ptr) {
1566   const auto platform_spec = module_spec.GetFileSpec();
1567   const auto error =
1568       LoadCachedExecutable(module_spec, module_sp, module_search_paths_ptr);
1569   if (error.Success()) {
1570     module_spec.GetFileSpec() = module_sp->GetFileSpec();
1571     module_spec.GetPlatformFileSpec() = platform_spec;
1572   }
1573 
1574   return error;
1575 }
1576 
1577 Status
1578 Platform::LoadCachedExecutable(const ModuleSpec &module_spec,
1579                                lldb::ModuleSP &module_sp,
1580                                const FileSpecList *module_search_paths_ptr) {
1581   return GetRemoteSharedModule(
1582       module_spec, nullptr, module_sp,
1583       [&](const ModuleSpec &spec) {
1584         return ResolveRemoteExecutable(spec, module_sp,
1585                                        module_search_paths_ptr);
1586       },
1587       nullptr);
1588 }
1589 
1590 Status Platform::GetRemoteSharedModule(const ModuleSpec &module_spec,
1591                                        Process *process,
1592                                        lldb::ModuleSP &module_sp,
1593                                        const ModuleResolver &module_resolver,
1594                                        bool *did_create_ptr) {
1595   // Get module information from a target.
1596   ModuleSpec resolved_module_spec;
1597   bool got_module_spec = false;
1598   if (process) {
1599     // Try to get module information from the process
1600     if (process->GetModuleSpec(module_spec.GetFileSpec(),
1601                                module_spec.GetArchitecture(),
1602                                resolved_module_spec)) {
1603       if (!module_spec.GetUUID().IsValid() ||
1604           module_spec.GetUUID() == resolved_module_spec.GetUUID()) {
1605         got_module_spec = true;
1606       }
1607     }
1608   }
1609 
1610   if (!module_spec.GetArchitecture().IsValid()) {
1611     Status error;
1612     // No valid architecture was specified, ask the platform for the
1613     // architectures that we should be using (in the correct order) and see if
1614     // we can find a match that way
1615     ModuleSpec arch_module_spec(module_spec);
1616     for (const ArchSpec &arch : GetSupportedArchitectures()) {
1617       arch_module_spec.GetArchitecture() = arch;
1618       error = ModuleList::GetSharedModule(arch_module_spec, module_sp, nullptr,
1619                                           nullptr, nullptr);
1620       // Did we find an executable using one of the
1621       if (error.Success() && module_sp)
1622         break;
1623     }
1624     if (module_sp) {
1625       resolved_module_spec = arch_module_spec;
1626       got_module_spec = true;
1627     }
1628   }
1629 
1630   if (!got_module_spec) {
1631     // Get module information from a target.
1632     if (GetModuleSpec(module_spec.GetFileSpec(), module_spec.GetArchitecture(),
1633                       resolved_module_spec)) {
1634       if (!module_spec.GetUUID().IsValid() ||
1635           module_spec.GetUUID() == resolved_module_spec.GetUUID()) {
1636         got_module_spec = true;
1637       }
1638     }
1639   }
1640 
1641   if (!got_module_spec) {
1642     // Fall back to the given module resolver, which may have its own
1643     // search logic.
1644     return module_resolver(module_spec);
1645   }
1646 
1647   // If we are looking for a specific UUID, make sure resolved_module_spec has
1648   // the same one before we search.
1649   if (module_spec.GetUUID().IsValid()) {
1650     resolved_module_spec.GetUUID() = module_spec.GetUUID();
1651   }
1652 
1653   // Trying to find a module by UUID on local file system.
1654   const auto error = module_resolver(resolved_module_spec);
1655   if (error.Fail()) {
1656     if (GetCachedSharedModule(resolved_module_spec, module_sp, did_create_ptr))
1657       return Status();
1658   }
1659 
1660   return error;
1661 }
1662 
1663 bool Platform::GetCachedSharedModule(const ModuleSpec &module_spec,
1664                                      lldb::ModuleSP &module_sp,
1665                                      bool *did_create_ptr) {
1666   if (IsHost() || !GetGlobalPlatformProperties().GetUseModuleCache() ||
1667       !GetGlobalPlatformProperties().GetModuleCacheDirectory())
1668     return false;
1669 
1670   Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM);
1671 
1672   // Check local cache for a module.
1673   auto error = m_module_cache->GetAndPut(
1674       GetModuleCacheRoot(), GetCacheHostname(), module_spec,
1675       [this](const ModuleSpec &module_spec,
1676              const FileSpec &tmp_download_file_spec) {
1677         return DownloadModuleSlice(
1678             module_spec.GetFileSpec(), module_spec.GetObjectOffset(),
1679             module_spec.GetObjectSize(), tmp_download_file_spec);
1680 
1681       },
1682       [this](const ModuleSP &module_sp,
1683              const FileSpec &tmp_download_file_spec) {
1684         return DownloadSymbolFile(module_sp, tmp_download_file_spec);
1685       },
1686       module_sp, did_create_ptr);
1687   if (error.Success())
1688     return true;
1689 
1690   LLDB_LOGF(log, "Platform::%s - module %s not found in local cache: %s",
1691             __FUNCTION__, module_spec.GetUUID().GetAsString().c_str(),
1692             error.AsCString());
1693   return false;
1694 }
1695 
1696 Status Platform::DownloadModuleSlice(const FileSpec &src_file_spec,
1697                                      const uint64_t src_offset,
1698                                      const uint64_t src_size,
1699                                      const FileSpec &dst_file_spec) {
1700   Status error;
1701 
1702   std::error_code EC;
1703   llvm::raw_fd_ostream dst(dst_file_spec.GetPath(), EC, llvm::sys::fs::OF_None);
1704   if (EC) {
1705     error.SetErrorStringWithFormat("unable to open destination file: %s",
1706                                    dst_file_spec.GetPath().c_str());
1707     return error;
1708   }
1709 
1710   auto src_fd = OpenFile(src_file_spec, File::eOpenOptionReadOnly,
1711                          lldb::eFilePermissionsFileDefault, error);
1712 
1713   if (error.Fail()) {
1714     error.SetErrorStringWithFormat("unable to open source file: %s",
1715                                    error.AsCString());
1716     return error;
1717   }
1718 
1719   std::vector<char> buffer(1024);
1720   auto offset = src_offset;
1721   uint64_t total_bytes_read = 0;
1722   while (total_bytes_read < src_size) {
1723     const auto to_read = std::min(static_cast<uint64_t>(buffer.size()),
1724                                   src_size - total_bytes_read);
1725     const uint64_t n_read =
1726         ReadFile(src_fd, offset, &buffer[0], to_read, error);
1727     if (error.Fail())
1728       break;
1729     if (n_read == 0) {
1730       error.SetErrorString("read 0 bytes");
1731       break;
1732     }
1733     offset += n_read;
1734     total_bytes_read += n_read;
1735     dst.write(&buffer[0], n_read);
1736   }
1737 
1738   Status close_error;
1739   CloseFile(src_fd, close_error); // Ignoring close error.
1740 
1741   return error;
1742 }
1743 
1744 Status Platform::DownloadSymbolFile(const lldb::ModuleSP &module_sp,
1745                                     const FileSpec &dst_file_spec) {
1746   return Status(
1747       "Symbol file downloading not supported by the default platform.");
1748 }
1749 
1750 FileSpec Platform::GetModuleCacheRoot() {
1751   auto dir_spec = GetGlobalPlatformProperties().GetModuleCacheDirectory();
1752   dir_spec.AppendPathComponent(GetName().AsCString());
1753   return dir_spec;
1754 }
1755 
1756 const char *Platform::GetCacheHostname() { return GetHostname(); }
1757 
1758 const UnixSignalsSP &Platform::GetRemoteUnixSignals() {
1759   static const auto s_default_unix_signals_sp = std::make_shared<UnixSignals>();
1760   return s_default_unix_signals_sp;
1761 }
1762 
1763 UnixSignalsSP Platform::GetUnixSignals() {
1764   if (IsHost())
1765     return UnixSignals::CreateForHost();
1766   return GetRemoteUnixSignals();
1767 }
1768 
1769 uint32_t Platform::LoadImage(lldb_private::Process *process,
1770                              const lldb_private::FileSpec &local_file,
1771                              const lldb_private::FileSpec &remote_file,
1772                              lldb_private::Status &error) {
1773   if (local_file && remote_file) {
1774     // Both local and remote file was specified. Install the local file to the
1775     // given location.
1776     if (IsRemote() || local_file != remote_file) {
1777       error = Install(local_file, remote_file);
1778       if (error.Fail())
1779         return LLDB_INVALID_IMAGE_TOKEN;
1780     }
1781     return DoLoadImage(process, remote_file, nullptr, error);
1782   }
1783 
1784   if (local_file) {
1785     // Only local file was specified. Install it to the current working
1786     // directory.
1787     FileSpec target_file = GetWorkingDirectory();
1788     target_file.AppendPathComponent(local_file.GetFilename().AsCString());
1789     if (IsRemote() || local_file != target_file) {
1790       error = Install(local_file, target_file);
1791       if (error.Fail())
1792         return LLDB_INVALID_IMAGE_TOKEN;
1793     }
1794     return DoLoadImage(process, target_file, nullptr, error);
1795   }
1796 
1797   if (remote_file) {
1798     // Only remote file was specified so we don't have to do any copying
1799     return DoLoadImage(process, remote_file, nullptr, error);
1800   }
1801 
1802   error.SetErrorString("Neither local nor remote file was specified");
1803   return LLDB_INVALID_IMAGE_TOKEN;
1804 }
1805 
1806 uint32_t Platform::DoLoadImage(lldb_private::Process *process,
1807                                const lldb_private::FileSpec &remote_file,
1808                                const std::vector<std::string> *paths,
1809                                lldb_private::Status &error,
1810                                lldb_private::FileSpec *loaded_image) {
1811   error.SetErrorString("LoadImage is not supported on the current platform");
1812   return LLDB_INVALID_IMAGE_TOKEN;
1813 }
1814 
1815 uint32_t Platform::LoadImageUsingPaths(lldb_private::Process *process,
1816                                const lldb_private::FileSpec &remote_filename,
1817                                const std::vector<std::string> &paths,
1818                                lldb_private::Status &error,
1819                                lldb_private::FileSpec *loaded_path)
1820 {
1821   FileSpec file_to_use;
1822   if (remote_filename.IsAbsolute())
1823     file_to_use = FileSpec(remote_filename.GetFilename().GetStringRef(),
1824 
1825                            remote_filename.GetPathStyle());
1826   else
1827     file_to_use = remote_filename;
1828 
1829   return DoLoadImage(process, file_to_use, &paths, error, loaded_path);
1830 }
1831 
1832 Status Platform::UnloadImage(lldb_private::Process *process,
1833                              uint32_t image_token) {
1834   return Status("UnloadImage is not supported on the current platform");
1835 }
1836 
1837 lldb::ProcessSP Platform::ConnectProcess(llvm::StringRef connect_url,
1838                                          llvm::StringRef plugin_name,
1839                                          Debugger &debugger, Target *target,
1840                                          Status &error) {
1841   return DoConnectProcess(connect_url, plugin_name, debugger, nullptr, target,
1842                           error);
1843 }
1844 
1845 lldb::ProcessSP Platform::ConnectProcessSynchronous(
1846     llvm::StringRef connect_url, llvm::StringRef plugin_name,
1847     Debugger &debugger, Stream &stream, Target *target, Status &error) {
1848   return DoConnectProcess(connect_url, plugin_name, debugger, &stream, target,
1849                           error);
1850 }
1851 
1852 lldb::ProcessSP Platform::DoConnectProcess(llvm::StringRef connect_url,
1853                                            llvm::StringRef plugin_name,
1854                                            Debugger &debugger, Stream *stream,
1855                                            Target *target, Status &error) {
1856   error.Clear();
1857 
1858   if (!target) {
1859     ArchSpec arch;
1860     if (target && target->GetArchitecture().IsValid())
1861       arch = target->GetArchitecture();
1862     else
1863       arch = Target::GetDefaultArchitecture();
1864 
1865     const char *triple = "";
1866     if (arch.IsValid())
1867       triple = arch.GetTriple().getTriple().c_str();
1868 
1869     TargetSP new_target_sp;
1870     error = debugger.GetTargetList().CreateTarget(
1871         debugger, "", triple, eLoadDependentsNo, nullptr, new_target_sp);
1872     target = new_target_sp.get();
1873   }
1874 
1875   if (!target || error.Fail())
1876     return nullptr;
1877 
1878   lldb::ProcessSP process_sp =
1879       target->CreateProcess(debugger.GetListener(), plugin_name, nullptr, true);
1880 
1881   if (!process_sp)
1882     return nullptr;
1883 
1884   // If this private method is called with a stream we are synchronous.
1885   const bool synchronous = stream != nullptr;
1886 
1887   ListenerSP listener_sp(
1888       Listener::MakeListener("lldb.Process.ConnectProcess.hijack"));
1889   if (synchronous)
1890     process_sp->HijackProcessEvents(listener_sp);
1891 
1892   error = process_sp->ConnectRemote(connect_url);
1893   if (error.Fail()) {
1894     if (synchronous)
1895       process_sp->RestoreProcessEvents();
1896     return nullptr;
1897   }
1898 
1899   if (synchronous) {
1900     EventSP event_sp;
1901     process_sp->WaitForProcessToStop(llvm::None, &event_sp, true, listener_sp,
1902                                      nullptr);
1903     process_sp->RestoreProcessEvents();
1904     bool pop_process_io_handler = false;
1905     Process::HandleProcessStateChangedEvent(event_sp, stream,
1906                                             pop_process_io_handler);
1907   }
1908 
1909   return process_sp;
1910 }
1911 
1912 size_t Platform::ConnectToWaitingProcesses(lldb_private::Debugger &debugger,
1913                                            lldb_private::Status &error) {
1914   error.Clear();
1915   return 0;
1916 }
1917 
1918 size_t Platform::GetSoftwareBreakpointTrapOpcode(Target &target,
1919                                                  BreakpointSite *bp_site) {
1920   ArchSpec arch = target.GetArchitecture();
1921   assert(arch.IsValid());
1922   const uint8_t *trap_opcode = nullptr;
1923   size_t trap_opcode_size = 0;
1924 
1925   switch (arch.GetMachine()) {
1926   case llvm::Triple::aarch64_32:
1927   case llvm::Triple::aarch64: {
1928     static const uint8_t g_aarch64_opcode[] = {0x00, 0x00, 0x20, 0xd4};
1929     trap_opcode = g_aarch64_opcode;
1930     trap_opcode_size = sizeof(g_aarch64_opcode);
1931   } break;
1932 
1933   case llvm::Triple::arc: {
1934     static const uint8_t g_hex_opcode[] = { 0xff, 0x7f };
1935     trap_opcode = g_hex_opcode;
1936     trap_opcode_size = sizeof(g_hex_opcode);
1937   } break;
1938 
1939   // TODO: support big-endian arm and thumb trap codes.
1940   case llvm::Triple::arm: {
1941     // The ARM reference recommends the use of 0xe7fddefe and 0xdefe but the
1942     // linux kernel does otherwise.
1943     static const uint8_t g_arm_breakpoint_opcode[] = {0xf0, 0x01, 0xf0, 0xe7};
1944     static const uint8_t g_thumb_breakpoint_opcode[] = {0x01, 0xde};
1945 
1946     lldb::BreakpointLocationSP bp_loc_sp(bp_site->GetOwnerAtIndex(0));
1947     AddressClass addr_class = AddressClass::eUnknown;
1948 
1949     if (bp_loc_sp) {
1950       addr_class = bp_loc_sp->GetAddress().GetAddressClass();
1951       if (addr_class == AddressClass::eUnknown &&
1952           (bp_loc_sp->GetAddress().GetFileAddress() & 1))
1953         addr_class = AddressClass::eCodeAlternateISA;
1954     }
1955 
1956     if (addr_class == AddressClass::eCodeAlternateISA) {
1957       trap_opcode = g_thumb_breakpoint_opcode;
1958       trap_opcode_size = sizeof(g_thumb_breakpoint_opcode);
1959     } else {
1960       trap_opcode = g_arm_breakpoint_opcode;
1961       trap_opcode_size = sizeof(g_arm_breakpoint_opcode);
1962     }
1963   } break;
1964 
1965   case llvm::Triple::avr: {
1966     static const uint8_t g_hex_opcode[] = {0x98, 0x95};
1967     trap_opcode = g_hex_opcode;
1968     trap_opcode_size = sizeof(g_hex_opcode);
1969   } break;
1970 
1971   case llvm::Triple::mips:
1972   case llvm::Triple::mips64: {
1973     static const uint8_t g_hex_opcode[] = {0x00, 0x00, 0x00, 0x0d};
1974     trap_opcode = g_hex_opcode;
1975     trap_opcode_size = sizeof(g_hex_opcode);
1976   } break;
1977 
1978   case llvm::Triple::mipsel:
1979   case llvm::Triple::mips64el: {
1980     static const uint8_t g_hex_opcode[] = {0x0d, 0x00, 0x00, 0x00};
1981     trap_opcode = g_hex_opcode;
1982     trap_opcode_size = sizeof(g_hex_opcode);
1983   } break;
1984 
1985   case llvm::Triple::systemz: {
1986     static const uint8_t g_hex_opcode[] = {0x00, 0x01};
1987     trap_opcode = g_hex_opcode;
1988     trap_opcode_size = sizeof(g_hex_opcode);
1989   } break;
1990 
1991   case llvm::Triple::hexagon: {
1992     static const uint8_t g_hex_opcode[] = {0x0c, 0xdb, 0x00, 0x54};
1993     trap_opcode = g_hex_opcode;
1994     trap_opcode_size = sizeof(g_hex_opcode);
1995   } break;
1996 
1997   case llvm::Triple::ppc:
1998   case llvm::Triple::ppc64: {
1999     static const uint8_t g_ppc_opcode[] = {0x7f, 0xe0, 0x00, 0x08};
2000     trap_opcode = g_ppc_opcode;
2001     trap_opcode_size = sizeof(g_ppc_opcode);
2002   } break;
2003 
2004   case llvm::Triple::ppc64le: {
2005     static const uint8_t g_ppc64le_opcode[] = {0x08, 0x00, 0xe0, 0x7f}; // trap
2006     trap_opcode = g_ppc64le_opcode;
2007     trap_opcode_size = sizeof(g_ppc64le_opcode);
2008   } break;
2009 
2010   case llvm::Triple::x86:
2011   case llvm::Triple::x86_64: {
2012     static const uint8_t g_i386_opcode[] = {0xCC};
2013     trap_opcode = g_i386_opcode;
2014     trap_opcode_size = sizeof(g_i386_opcode);
2015   } break;
2016 
2017   default:
2018     return 0;
2019   }
2020 
2021   assert(bp_site);
2022   if (bp_site->SetTrapOpcode(trap_opcode, trap_opcode_size))
2023     return trap_opcode_size;
2024 
2025   return 0;
2026 }
2027