blob: 25aa7159122b9e75557ae68ee94828d708a20df5 [file] [log] [blame]
Greg Claytone996fd32011-03-08 22:40:15 +00001//===-- Platform.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
Greg Claytone996fd32011-03-08 22:40:15 +000010// C Includes
11// C++ Includes
Oleksiy Vyalov63acdfd2015-03-10 01:15:28 +000012#include <algorithm>
13#include <fstream>
14#include <vector>
15
Greg Claytone996fd32011-03-08 22:40:15 +000016// Other libraries and framework includes
Eugene Zelenko9394d7722016-02-18 00:10:17 +000017#include "llvm/Support/FileSystem.h"
18#include "llvm/Support/Path.h"
19
Greg Claytone996fd32011-03-08 22:40:15 +000020// Project includes
Greg Clayton4116e932012-05-15 02:33:01 +000021#include "lldb/Breakpoint/BreakpointIDList.h"
Aidan Dodds933d8db2016-02-22 17:29:56 +000022#include "lldb/Breakpoint/BreakpointLocation.h"
Zachary Turner7271bab2015-05-13 19:44:24 +000023#include "lldb/Core/Debugger.h"
Oleksiy Vyalov63acdfd2015-03-10 01:15:28 +000024#include "lldb/Core/Module.h"
Greg Clayton1f746072012-08-29 21:13:06 +000025#include "lldb/Core/ModuleSpec.h"
Greg Claytone996fd32011-03-08 22:40:15 +000026#include "lldb/Core/PluginManager.h"
Tamas Berghammerccd6cff2015-12-08 14:08:19 +000027#include "lldb/Core/StreamFile.h"
Zachary Turnerc00cf4a2014-08-15 22:04:21 +000028#include "lldb/Host/FileSystem.h"
Greg Claytonded470d2011-03-19 01:12:21 +000029#include "lldb/Host/Host.h"
Zachary Turner97a14e62014-08-19 17:18:29 +000030#include "lldb/Host/HostInfo.h"
Zachary Turner3eb2b442017-03-22 23:33:16 +000031#include "lldb/Host/OptionParser.h"
Oleksiy Vyalov63acdfd2015-03-10 01:15:28 +000032#include "lldb/Interpreter/OptionValueProperties.h"
33#include "lldb/Interpreter/Property.h"
34#include "lldb/Symbol/ObjectFile.h"
Zachary Turner01c32432017-02-14 19:06:07 +000035#include "lldb/Target/ModuleCache.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000036#include "lldb/Target/Platform.h"
Greg Clayton8b82f082011-04-12 05:54:46 +000037#include "lldb/Target/Process.h"
Greg Claytone996fd32011-03-08 22:40:15 +000038#include "lldb/Target/Target.h"
Chaoren Lin98d0a4b2015-07-14 01:09:28 +000039#include "lldb/Target/UnixSignals.h"
Zachary Turner666cc0b2017-03-04 01:30:05 +000040#include "lldb/Utility/DataBufferHeap.h"
Zachary Turner5713a052017-03-22 18:40:07 +000041#include "lldb/Utility/FileSpec.h"
Zachary Turner6f9e6902017-03-03 20:56:28 +000042#include "lldb/Utility/Log.h"
Zachary Turner97206d52017-05-12 04:51:55 +000043#include "lldb/Utility/Status.h"
Pavel Labathf2a8bcc2017-06-27 10:45:31 +000044#include "lldb/Utility/StructuredData.h"
Greg Claytone996fd32011-03-08 22:40:15 +000045
Zachary Turner7d86ee52017-03-08 17:56:08 +000046#include "llvm/Support/FileSystem.h"
47
Robert Flack96ad3de2015-05-09 15:53:31 +000048// Define these constants from POSIX mman.h rather than include the file
49// so that they will be correct even when compiled on Linux.
50#define MAP_PRIVATE 2
51#define MAP_ANON 0x1000
52
Greg Claytone996fd32011-03-08 22:40:15 +000053using namespace lldb;
54using namespace lldb_private;
Tamas Berghammer3c4f89d2015-02-12 18:18:27 +000055
56static uint32_t g_initialize_count = 0;
57
Greg Claytone996fd32011-03-08 22:40:15 +000058// Use a singleton function for g_local_platform_sp to avoid init
59// constructors since LLDB is often part of a shared library
Kate Stoneb9c1b512016-09-06 20:57:50 +000060static PlatformSP &GetHostPlatformSP() {
61 static PlatformSP g_platform_sp;
62 return g_platform_sp;
Greg Claytone996fd32011-03-08 22:40:15 +000063}
64
Kate Stoneb9c1b512016-09-06 20:57:50 +000065const char *Platform::GetHostPlatformName() { return "host"; }
Greg Claytonab65b342011-04-13 22:47:15 +000066
Oleksiy Vyalov63acdfd2015-03-10 01:15:28 +000067namespace {
68
Kate Stoneb9c1b512016-09-06 20:57:50 +000069PropertyDefinition g_properties[] = {
70 {"use-module-cache", OptionValue::eTypeBoolean, true, true, nullptr,
71 nullptr, "Use module cache."},
72 {"module-cache-directory", OptionValue::eTypeFileSpec, true, 0, nullptr,
73 nullptr, "Root directory for cached modules."},
74 {nullptr, OptionValue::eTypeInvalid, false, 0, nullptr, nullptr, nullptr}};
Oleksiy Vyalov63acdfd2015-03-10 01:15:28 +000075
Kate Stoneb9c1b512016-09-06 20:57:50 +000076enum { ePropertyUseModuleCache, ePropertyModuleCacheDirectory };
Oleksiy Vyalov63acdfd2015-03-10 01:15:28 +000077
Kate Stoneb9c1b512016-09-06 20:57:50 +000078} // namespace
Oleksiy Vyalov63acdfd2015-03-10 01:15:28 +000079
Kate Stoneb9c1b512016-09-06 20:57:50 +000080ConstString PlatformProperties::GetSettingName() {
81 static ConstString g_setting_name("platform");
82 return g_setting_name;
Oleksiy Vyalov63acdfd2015-03-10 01:15:28 +000083}
84
Kate Stoneb9c1b512016-09-06 20:57:50 +000085PlatformProperties::PlatformProperties() {
86 m_collection_sp.reset(new OptionValueProperties(GetSettingName()));
87 m_collection_sp->Initialize(g_properties);
Oleksiy Vyalov63acdfd2015-03-10 01:15:28 +000088
Kate Stoneb9c1b512016-09-06 20:57:50 +000089 auto module_cache_dir = GetModuleCacheDirectory();
90 if (module_cache_dir)
91 return;
Oleksiy Vyalovd21ca282015-10-01 17:48:57 +000092
Kate Stoneb9c1b512016-09-06 20:57:50 +000093 llvm::SmallString<64> user_home_dir;
94 if (!llvm::sys::path::home_directory(user_home_dir))
95 return;
Oleksiy Vyalovd21ca282015-10-01 17:48:57 +000096
Kate Stoneb9c1b512016-09-06 20:57:50 +000097 module_cache_dir = FileSpec(user_home_dir.c_str(), false);
98 module_cache_dir.AppendPathComponent(".lldb");
99 module_cache_dir.AppendPathComponent("module_cache");
100 SetModuleCacheDirectory(module_cache_dir);
Oleksiy Vyalov63acdfd2015-03-10 01:15:28 +0000101}
102
Kate Stoneb9c1b512016-09-06 20:57:50 +0000103bool PlatformProperties::GetUseModuleCache() const {
104 const auto idx = ePropertyUseModuleCache;
105 return m_collection_sp->GetPropertyAtIndexAsBoolean(
106 nullptr, idx, g_properties[idx].default_uint_value != 0);
Oleksiy Vyalov63acdfd2015-03-10 01:15:28 +0000107}
108
Kate Stoneb9c1b512016-09-06 20:57:50 +0000109bool PlatformProperties::SetUseModuleCache(bool use_module_cache) {
110 return m_collection_sp->SetPropertyAtIndexAsBoolean(
111 nullptr, ePropertyUseModuleCache, use_module_cache);
Oleksiy Vyalov63acdfd2015-03-10 01:15:28 +0000112}
113
Kate Stoneb9c1b512016-09-06 20:57:50 +0000114FileSpec PlatformProperties::GetModuleCacheDirectory() const {
115 return m_collection_sp->GetPropertyAtIndexAsFileSpec(
116 nullptr, ePropertyModuleCacheDirectory);
Oleksiy Vyalov63acdfd2015-03-10 01:15:28 +0000117}
118
Kate Stoneb9c1b512016-09-06 20:57:50 +0000119bool PlatformProperties::SetModuleCacheDirectory(const FileSpec &dir_spec) {
120 return m_collection_sp->SetPropertyAtIndexAsFileSpec(
121 nullptr, ePropertyModuleCacheDirectory, dir_spec);
Oleksiy Vyalov63acdfd2015-03-10 01:15:28 +0000122}
123
Greg Claytone996fd32011-03-08 22:40:15 +0000124//------------------------------------------------------------------
Kate Stoneb9c1b512016-09-06 20:57:50 +0000125/// Get the native host platform plug-in.
Greg Claytone996fd32011-03-08 22:40:15 +0000126///
127/// There should only be one of these for each host that LLDB runs
128/// upon that should be statically compiled in and registered using
129/// preprocessor macros or other similar build mechanisms.
130///
131/// This platform will be used as the default platform when launching
132/// or attaching to processes unless another platform is specified.
133//------------------------------------------------------------------
Kate Stoneb9c1b512016-09-06 20:57:50 +0000134PlatformSP Platform::GetHostPlatform() { return GetHostPlatformSP(); }
135
136static std::vector<PlatformSP> &GetPlatformList() {
137 static std::vector<PlatformSP> g_platform_list;
138 return g_platform_list;
Greg Clayton615eb7e2014-09-19 20:11:50 +0000139}
140
Kate Stoneb9c1b512016-09-06 20:57:50 +0000141static std::recursive_mutex &GetPlatformListMutex() {
142 static std::recursive_mutex g_mutex;
143 return g_mutex;
Greg Clayton615eb7e2014-09-19 20:11:50 +0000144}
145
Kate Stoneb9c1b512016-09-06 20:57:50 +0000146void Platform::Initialize() { g_initialize_count++; }
Greg Claytone996fd32011-03-08 22:40:15 +0000147
Kate Stoneb9c1b512016-09-06 20:57:50 +0000148void Platform::Terminate() {
149 if (g_initialize_count > 0) {
150 if (--g_initialize_count == 0) {
151 std::lock_guard<std::recursive_mutex> guard(GetPlatformListMutex());
152 GetPlatformList().clear();
Tamas Berghammer3c4f89d2015-02-12 18:18:27 +0000153 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000154 }
Tamas Berghammer3c4f89d2015-02-12 18:18:27 +0000155}
156
Kate Stoneb9c1b512016-09-06 20:57:50 +0000157const PlatformPropertiesSP &Platform::GetGlobalPlatformProperties() {
158 static const auto g_settings_sp(std::make_shared<PlatformProperties>());
159 return g_settings_sp;
Oleksiy Vyalov63acdfd2015-03-10 01:15:28 +0000160}
161
Kate Stoneb9c1b512016-09-06 20:57:50 +0000162void Platform::SetHostPlatform(const lldb::PlatformSP &platform_sp) {
163 // The native platform should use its static void Platform::Initialize()
164 // function to register itself as the native platform.
165 GetHostPlatformSP() = platform_sp;
Greg Clayton615eb7e2014-09-19 20:11:50 +0000166
Kate Stoneb9c1b512016-09-06 20:57:50 +0000167 if (platform_sp) {
168 std::lock_guard<std::recursive_mutex> guard(GetPlatformListMutex());
169 GetPlatformList().push_back(platform_sp);
170 }
Greg Claytone996fd32011-03-08 22:40:15 +0000171}
172
Zachary Turner97206d52017-05-12 04:51:55 +0000173Status Platform::GetFileWithUUID(const FileSpec &platform_file,
174 const UUID *uuid_ptr, FileSpec &local_file) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000175 // Default to the local case
176 local_file = platform_file;
Zachary Turner97206d52017-05-12 04:51:55 +0000177 return Status();
Greg Claytone996fd32011-03-08 22:40:15 +0000178}
179
Greg Clayton91c0e742013-01-11 23:44:27 +0000180FileSpecList
Kate Stoneb9c1b512016-09-06 20:57:50 +0000181Platform::LocateExecutableScriptingResources(Target *target, Module &module,
182 Stream *feedback_stream) {
183 return FileSpecList();
Enrico Granata17598482012-11-08 02:22:02 +0000184}
185
Kate Stoneb9c1b512016-09-06 20:57:50 +0000186// PlatformSP
187// Platform::FindPlugin (Process *process, const ConstString &plugin_name)
Greg Clayton615eb7e2014-09-19 20:11:50 +0000188//{
Eugene Zelenko9394d7722016-02-18 00:10:17 +0000189// PlatformCreateInstance create_callback = nullptr;
Greg Clayton615eb7e2014-09-19 20:11:50 +0000190// if (plugin_name)
191// {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000192// create_callback =
193// PluginManager::GetPlatformCreateCallbackForPluginName (plugin_name);
Greg Clayton615eb7e2014-09-19 20:11:50 +0000194// if (create_callback)
195// {
196// ArchSpec arch;
197// if (process)
198// {
199// arch = process->GetTarget().GetArchitecture();
200// }
201// PlatformSP platform_sp(create_callback(process, &arch));
202// if (platform_sp)
203// return platform_sp;
204// }
205// }
206// else
207// {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000208// for (uint32_t idx = 0; (create_callback =
209// PluginManager::GetPlatformCreateCallbackAtIndex(idx)) != nullptr;
210// ++idx)
Greg Clayton615eb7e2014-09-19 20:11:50 +0000211// {
212// PlatformSP platform_sp(create_callback(process, nullptr));
213// if (platform_sp)
214// return platform_sp;
215// }
216// }
217// return PlatformSP();
218//}
Jason Molenda1c627542013-04-05 01:03:25 +0000219
Zachary Turner97206d52017-05-12 04:51:55 +0000220Status Platform::GetSharedModule(const ModuleSpec &module_spec,
221 Process *process, ModuleSP &module_sp,
222 const FileSpecList *module_search_paths_ptr,
223 ModuleSP *old_module_sp_ptr,
224 bool *did_create_ptr) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000225 if (IsHost())
226 return ModuleList::GetSharedModule(
227 module_spec, module_sp, module_search_paths_ptr, old_module_sp_ptr,
228 did_create_ptr, false);
Oleksiy Vyalov63acdfd2015-03-10 01:15:28 +0000229
Kate Stoneb9c1b512016-09-06 20:57:50 +0000230 return GetRemoteSharedModule(module_spec, process, module_sp,
231 [&](const ModuleSpec &spec) {
Zachary Turner97206d52017-05-12 04:51:55 +0000232 Status error = ModuleList::GetSharedModule(
Kate Stoneb9c1b512016-09-06 20:57:50 +0000233 spec, module_sp, module_search_paths_ptr,
234 old_module_sp_ptr, did_create_ptr, false);
235 if (error.Success() && module_sp)
236 module_sp->SetPlatformFileSpec(
237 spec.GetFileSpec());
238 return error;
239 },
240 did_create_ptr);
Oleksiy Vyalov63acdfd2015-03-10 01:15:28 +0000241}
242
Kate Stoneb9c1b512016-09-06 20:57:50 +0000243bool Platform::GetModuleSpec(const FileSpec &module_file_spec,
244 const ArchSpec &arch, ModuleSpec &module_spec) {
245 ModuleSpecList module_specs;
246 if (ObjectFile::GetModuleSpecifications(module_file_spec, 0, 0,
247 module_specs) == 0)
248 return false;
Oleksiy Vyalov63acdfd2015-03-10 01:15:28 +0000249
Kate Stoneb9c1b512016-09-06 20:57:50 +0000250 ModuleSpec matched_module_spec;
251 return module_specs.FindMatchingModuleSpec(ModuleSpec(module_file_spec, arch),
252 module_spec);
Greg Clayton32e0a752011-03-30 18:16:51 +0000253}
254
Kate Stoneb9c1b512016-09-06 20:57:50 +0000255PlatformSP Platform::Find(const ConstString &name) {
256 if (name) {
257 static ConstString g_host_platform_name("host");
258 if (name == g_host_platform_name)
259 return GetHostPlatform();
Greg Clayton615eb7e2014-09-19 20:11:50 +0000260
Kate Stoneb9c1b512016-09-06 20:57:50 +0000261 std::lock_guard<std::recursive_mutex> guard(GetPlatformListMutex());
262 for (const auto &platform_sp : GetPlatformList()) {
263 if (platform_sp->GetName() == name)
264 return platform_sp;
Greg Clayton615eb7e2014-09-19 20:11:50 +0000265 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000266 }
267 return PlatformSP();
Greg Clayton615eb7e2014-09-19 20:11:50 +0000268}
269
Zachary Turner97206d52017-05-12 04:51:55 +0000270PlatformSP Platform::Create(const ConstString &name, Status &error) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000271 PlatformCreateInstance create_callback = nullptr;
272 lldb::PlatformSP platform_sp;
273 if (name) {
274 static ConstString g_host_platform_name("host");
275 if (name == g_host_platform_name)
276 return GetHostPlatform();
Greg Clayton615eb7e2014-09-19 20:11:50 +0000277
Kate Stoneb9c1b512016-09-06 20:57:50 +0000278 create_callback =
279 PluginManager::GetPlatformCreateCallbackForPluginName(name);
280 if (create_callback)
281 platform_sp = create_callback(true, nullptr);
Greg Claytone996fd32011-03-08 22:40:15 +0000282 else
Kate Stoneb9c1b512016-09-06 20:57:50 +0000283 error.SetErrorStringWithFormat(
284 "unable to find a plug-in for the platform named \"%s\"",
285 name.GetCString());
286 } else
287 error.SetErrorString("invalid platform name");
Greg Clayton615eb7e2014-09-19 20:11:50 +0000288
Kate Stoneb9c1b512016-09-06 20:57:50 +0000289 if (platform_sp) {
290 std::lock_guard<std::recursive_mutex> guard(GetPlatformListMutex());
291 GetPlatformList().push_back(platform_sp);
292 }
Greg Clayton615eb7e2014-09-19 20:11:50 +0000293
Kate Stoneb9c1b512016-09-06 20:57:50 +0000294 return platform_sp;
Greg Claytone996fd32011-03-08 22:40:15 +0000295}
296
Kate Stoneb9c1b512016-09-06 20:57:50 +0000297PlatformSP Platform::Create(const ArchSpec &arch, ArchSpec *platform_arch_ptr,
Zachary Turner97206d52017-05-12 04:51:55 +0000298 Status &error) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000299 lldb::PlatformSP platform_sp;
300 if (arch.IsValid()) {
301 // Scope for locker
Greg Claytonb3a40ba2012-03-20 18:34:04 +0000302 {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000303 // First try exact arch matches across all platforms already created
304 std::lock_guard<std::recursive_mutex> guard(GetPlatformListMutex());
305 for (const auto &platform_sp : GetPlatformList()) {
306 if (platform_sp->IsCompatibleArchitecture(arch, true,
307 platform_arch_ptr))
308 return platform_sp;
309 }
Greg Clayton615eb7e2014-09-19 20:11:50 +0000310
Kate Stoneb9c1b512016-09-06 20:57:50 +0000311 // Next try compatible arch matches across all platforms already created
312 for (const auto &platform_sp : GetPlatformList()) {
313 if (platform_sp->IsCompatibleArchitecture(arch, false,
314 platform_arch_ptr))
315 return platform_sp;
316 }
Greg Claytonb3a40ba2012-03-20 18:34:04 +0000317 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000318
319 PlatformCreateInstance create_callback;
320 // First try exact arch matches across all platform plug-ins
321 uint32_t idx;
322 for (idx = 0; (create_callback =
323 PluginManager::GetPlatformCreateCallbackAtIndex(idx));
324 ++idx) {
325 if (create_callback) {
326 platform_sp = create_callback(false, &arch);
327 if (platform_sp &&
328 platform_sp->IsCompatibleArchitecture(arch, true,
329 platform_arch_ptr)) {
330 std::lock_guard<std::recursive_mutex> guard(GetPlatformListMutex());
331 GetPlatformList().push_back(platform_sp);
332 return platform_sp;
333 }
334 }
335 }
336 // Next try compatible arch matches across all platform plug-ins
337 for (idx = 0; (create_callback =
338 PluginManager::GetPlatformCreateCallbackAtIndex(idx));
339 ++idx) {
340 if (create_callback) {
341 platform_sp = create_callback(false, &arch);
342 if (platform_sp &&
343 platform_sp->IsCompatibleArchitecture(arch, false,
344 platform_arch_ptr)) {
345 std::lock_guard<std::recursive_mutex> guard(GetPlatformListMutex());
346 GetPlatformList().push_back(platform_sp);
347 return platform_sp;
348 }
349 }
350 }
351 } else
352 error.SetErrorString("invalid platform name");
353 if (platform_arch_ptr)
354 platform_arch_ptr->Clear();
355 platform_sp.reset();
356 return platform_sp;
Greg Claytonb3a40ba2012-03-20 18:34:04 +0000357}
358
Pavel Labath7263f1b2017-10-31 10:56:03 +0000359ArchSpec Platform::GetAugmentedArchSpec(Platform *platform, llvm::StringRef triple) {
360 if (platform)
361 return platform->GetAugmentedArchSpec(triple);
362 return HostInfo::GetAugmentedArchSpec(triple);
363}
364
Greg Claytone996fd32011-03-08 22:40:15 +0000365//------------------------------------------------------------------
366/// Default Constructor
367//------------------------------------------------------------------
Saleem Abdulrasool16ff8602016-05-18 01:59:10 +0000368Platform::Platform(bool is_host)
Kate Stoneb9c1b512016-09-06 20:57:50 +0000369 : m_is_host(is_host), m_os_version_set_while_connected(false),
370 m_system_arch_set_while_connected(false), m_sdk_sysroot(), m_sdk_build(),
371 m_working_dir(), m_remote_url(), m_name(), m_major_os_version(UINT32_MAX),
372 m_minor_os_version(UINT32_MAX), m_update_os_version(UINT32_MAX),
373 m_system_arch(), m_mutex(), m_uid_map(), m_gid_map(),
374 m_max_uid_name_len(0), m_max_gid_name_len(0), m_supports_rsync(false),
375 m_rsync_opts(), m_rsync_prefix(), m_supports_ssh(false), m_ssh_opts(),
376 m_ignores_remote_hostname(false), m_trap_handlers(),
Saleem Abdulrasool16ff8602016-05-18 01:59:10 +0000377 m_calculated_trap_handlers(false),
Kate Stoneb9c1b512016-09-06 20:57:50 +0000378 m_module_cache(llvm::make_unique<ModuleCache>()) {
379 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_OBJECT));
380 if (log)
381 log->Printf("%p Platform::Platform()", static_cast<void *>(this));
Greg Claytone996fd32011-03-08 22:40:15 +0000382}
383
384//------------------------------------------------------------------
385/// Destructor.
386///
387/// The destructor is virtual since this class is designed to be
388/// inherited from by the plug-in instance.
389//------------------------------------------------------------------
Kate Stoneb9c1b512016-09-06 20:57:50 +0000390Platform::~Platform() {
391 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_OBJECT));
392 if (log)
393 log->Printf("%p Platform::~Platform()", static_cast<void *>(this));
Greg Claytone996fd32011-03-08 22:40:15 +0000394}
395
Kate Stoneb9c1b512016-09-06 20:57:50 +0000396void Platform::GetStatus(Stream &strm) {
397 uint32_t major = UINT32_MAX;
398 uint32_t minor = UINT32_MAX;
399 uint32_t update = UINT32_MAX;
400 std::string s;
401 strm.Printf(" Platform: %s\n", GetPluginName().GetCString());
Greg Clayton1cb64962011-03-24 04:28:38 +0000402
Kate Stoneb9c1b512016-09-06 20:57:50 +0000403 ArchSpec arch(GetSystemArchitecture());
404 if (arch.IsValid()) {
405 if (!arch.GetTriple().str().empty()) {
406 strm.Printf(" Triple: ");
407 arch.DumpTriple(strm);
408 strm.EOL();
Greg Clayton1cb64962011-03-24 04:28:38 +0000409 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000410 }
Greg Clayton1cb64962011-03-24 04:28:38 +0000411
Kate Stoneb9c1b512016-09-06 20:57:50 +0000412 if (GetOSVersion(major, minor, update)) {
413 strm.Printf("OS Version: %u", major);
414 if (minor != UINT32_MAX)
415 strm.Printf(".%u", minor);
416 if (update != UINT32_MAX)
417 strm.Printf(".%u", update);
Greg Clayton1cb64962011-03-24 04:28:38 +0000418
Kate Stoneb9c1b512016-09-06 20:57:50 +0000419 if (GetOSBuildString(s))
420 strm.Printf(" (%s)", s.c_str());
Greg Clayton1cb64962011-03-24 04:28:38 +0000421
Kate Stoneb9c1b512016-09-06 20:57:50 +0000422 strm.EOL();
423 }
Greg Clayton1cb64962011-03-24 04:28:38 +0000424
Kate Stoneb9c1b512016-09-06 20:57:50 +0000425 if (GetOSKernelDescription(s))
426 strm.Printf(" Kernel: %s\n", s.c_str());
Greg Clayton1cb64962011-03-24 04:28:38 +0000427
Kate Stoneb9c1b512016-09-06 20:57:50 +0000428 if (IsHost()) {
429 strm.Printf(" Hostname: %s\n", GetHostname());
430 } else {
431 const bool is_connected = IsConnected();
432 if (is_connected)
433 strm.Printf(" Hostname: %s\n", GetHostname());
434 strm.Printf(" Connected: %s\n", is_connected ? "yes" : "no");
435 }
Daniel Maleae0f8f572013-08-26 23:57:52 +0000436
Kate Stoneb9c1b512016-09-06 20:57:50 +0000437 if (GetWorkingDirectory()) {
438 strm.Printf("WorkingDir: %s\n", GetWorkingDirectory().GetCString());
439 }
440 if (!IsConnected())
441 return;
Daniel Maleae0f8f572013-08-26 23:57:52 +0000442
Kate Stoneb9c1b512016-09-06 20:57:50 +0000443 std::string specific_info(GetPlatformSpecificConnectionInformation());
444
445 if (!specific_info.empty())
446 strm.Printf("Platform-specific connection: %s\n", specific_info.c_str());
Greg Clayton1cb64962011-03-24 04:28:38 +0000447}
448
Kate Stoneb9c1b512016-09-06 20:57:50 +0000449bool Platform::GetOSVersion(uint32_t &major, uint32_t &minor, uint32_t &update,
450 Process *process) {
451 std::lock_guard<std::mutex> guard(m_mutex);
Greg Clayton7597b352015-02-02 20:45:17 +0000452
Kate Stoneb9c1b512016-09-06 20:57:50 +0000453 bool success = m_major_os_version != UINT32_MAX;
454 if (IsHost()) {
455 if (!success) {
456 // We have a local host platform
457 success = HostInfo::GetOSVersion(m_major_os_version, m_minor_os_version,
458 m_update_os_version);
459 m_os_version_set_while_connected = success;
Greg Claytonded470d2011-03-19 01:12:21 +0000460 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000461 } else {
462 // We have a remote platform. We can only fetch the remote
463 // OS version if we are connected, and we don't want to do it
464 // more than once.
Greg Claytonded470d2011-03-19 01:12:21 +0000465
Kate Stoneb9c1b512016-09-06 20:57:50 +0000466 const bool is_connected = IsConnected();
Greg Claytonded470d2011-03-19 01:12:21 +0000467
Kate Stoneb9c1b512016-09-06 20:57:50 +0000468 bool fetch = false;
469 if (success) {
470 // We have valid OS version info, check to make sure it wasn't
471 // manually set prior to connecting. If it was manually set prior
472 // to connecting, then lets fetch the actual OS version info
473 // if we are now connected.
474 if (is_connected && !m_os_version_set_while_connected)
475 fetch = true;
476 } else {
477 // We don't have valid OS version info, fetch it if we are connected
478 fetch = is_connected;
Greg Claytonded470d2011-03-19 01:12:21 +0000479 }
480
Kate Stoneb9c1b512016-09-06 20:57:50 +0000481 if (fetch) {
482 success = GetRemoteOSVersion();
483 m_os_version_set_while_connected = success;
Greg Claytonded470d2011-03-19 01:12:21 +0000484 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000485 }
486
487 if (success) {
488 major = m_major_os_version;
489 minor = m_minor_os_version;
490 update = m_update_os_version;
491 } else if (process) {
492 // Check with the process in case it can answer the question if
493 // a process was provided
494 return process->GetHostOSVersion(major, minor, update);
495 }
496 return success;
Greg Claytonded470d2011-03-19 01:12:21 +0000497}
Greg Clayton1cb64962011-03-24 04:28:38 +0000498
Kate Stoneb9c1b512016-09-06 20:57:50 +0000499bool Platform::GetOSBuildString(std::string &s) {
500 s.clear();
Zachary Turner97a14e62014-08-19 17:18:29 +0000501
Kate Stoneb9c1b512016-09-06 20:57:50 +0000502 if (IsHost())
Zachary Turner97a14e62014-08-19 17:18:29 +0000503#if !defined(__linux__)
Kate Stoneb9c1b512016-09-06 20:57:50 +0000504 return HostInfo::GetOSBuildString(s);
Zachary Turner97a14e62014-08-19 17:18:29 +0000505#else
Kate Stoneb9c1b512016-09-06 20:57:50 +0000506 return false;
Zachary Turner97a14e62014-08-19 17:18:29 +0000507#endif
Kate Stoneb9c1b512016-09-06 20:57:50 +0000508 else
509 return GetRemoteOSBuildString(s);
Greg Clayton1cb64962011-03-24 04:28:38 +0000510}
511
Kate Stoneb9c1b512016-09-06 20:57:50 +0000512bool Platform::GetOSKernelDescription(std::string &s) {
513 if (IsHost())
Zachary Turner97a14e62014-08-19 17:18:29 +0000514#if !defined(__linux__)
Kate Stoneb9c1b512016-09-06 20:57:50 +0000515 return HostInfo::GetOSKernelDescription(s);
Zachary Turner97a14e62014-08-19 17:18:29 +0000516#else
Kate Stoneb9c1b512016-09-06 20:57:50 +0000517 return false;
Zachary Turner97a14e62014-08-19 17:18:29 +0000518#endif
Kate Stoneb9c1b512016-09-06 20:57:50 +0000519 else
520 return GetRemoteOSKernelDescription(s);
521}
522
523void Platform::AddClangModuleCompilationOptions(
524 Target *target, std::vector<std::string> &options) {
525 std::vector<std::string> default_compilation_options = {
526 "-x", "c++", "-Xclang", "-nostdsysteminc", "-Xclang", "-nostdsysteminc"};
527
528 options.insert(options.end(), default_compilation_options.begin(),
529 default_compilation_options.end());
530}
531
532FileSpec Platform::GetWorkingDirectory() {
533 if (IsHost()) {
Pavel Labath1d5855b2017-01-23 15:56:45 +0000534 llvm::SmallString<64> cwd;
535 if (llvm::sys::fs::current_path(cwd))
Kate Stoneb9c1b512016-09-06 20:57:50 +0000536 return FileSpec{};
Pavel Labath1d5855b2017-01-23 15:56:45 +0000537 else
538 return FileSpec(cwd, true);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000539 } else {
540 if (!m_working_dir)
541 m_working_dir = GetRemoteWorkingDirectory();
542 return m_working_dir;
543 }
Greg Clayton1cb64962011-03-24 04:28:38 +0000544}
545
Kate Stoneb9c1b512016-09-06 20:57:50 +0000546struct RecurseCopyBaton {
547 const FileSpec &dst;
548 Platform *platform_ptr;
Zachary Turner97206d52017-05-12 04:51:55 +0000549 Status error;
Greg Claytonfbb76342013-11-20 21:07:01 +0000550};
551
Greg Claytonfbb76342013-11-20 21:07:01 +0000552static FileSpec::EnumerateDirectoryResult
Zachary Turner7d86ee52017-03-08 17:56:08 +0000553RecurseCopy_Callback(void *baton, llvm::sys::fs::file_type ft,
Kate Stoneb9c1b512016-09-06 20:57:50 +0000554 const FileSpec &src) {
555 RecurseCopyBaton *rc_baton = (RecurseCopyBaton *)baton;
Zachary Turner7d86ee52017-03-08 17:56:08 +0000556 namespace fs = llvm::sys::fs;
557 switch (ft) {
558 case fs::file_type::fifo_file:
559 case fs::file_type::socket_file:
Kate Stoneb9c1b512016-09-06 20:57:50 +0000560 // we have no way to copy pipes and sockets - ignore them and continue
561 return FileSpec::eEnumerateDirectoryResultNext;
562 break;
Zachary Turnerc00cf4a2014-08-15 22:04:21 +0000563
Zachary Turner7d86ee52017-03-08 17:56:08 +0000564 case fs::file_type::directory_file: {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000565 // make the new directory and get in there
566 FileSpec dst_dir = rc_baton->dst;
567 if (!dst_dir.GetFilename())
568 dst_dir.GetFilename() = src.GetLastPathComponent();
Zachary Turner97206d52017-05-12 04:51:55 +0000569 Status error = rc_baton->platform_ptr->MakeDirectory(
Kate Stoneb9c1b512016-09-06 20:57:50 +0000570 dst_dir, lldb::eFilePermissionsDirectoryDefault);
571 if (error.Fail()) {
572 rc_baton->error.SetErrorStringWithFormat(
573 "unable to setup directory %s on remote end", dst_dir.GetCString());
574 return FileSpec::eEnumerateDirectoryResultQuit; // got an error, bail out
Greg Claytonfbb76342013-11-20 21:07:01 +0000575 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000576
577 // now recurse
578 std::string src_dir_path(src.GetPath());
579
580 // Make a filespec that only fills in the directory of a FileSpec so
581 // when we enumerate we can quickly fill in the filename for dst copies
582 FileSpec recurse_dst;
583 recurse_dst.GetDirectory().SetCString(dst_dir.GetPath().c_str());
Zachary Turner97206d52017-05-12 04:51:55 +0000584 RecurseCopyBaton rc_baton2 = {recurse_dst, rc_baton->platform_ptr,
585 Status()};
Malcolm Parsons771ef6d2016-11-02 20:34:10 +0000586 FileSpec::EnumerateDirectory(src_dir_path, true, true, true,
Kate Stoneb9c1b512016-09-06 20:57:50 +0000587 RecurseCopy_Callback, &rc_baton2);
588 if (rc_baton2.error.Fail()) {
589 rc_baton->error.SetErrorString(rc_baton2.error.AsCString());
590 return FileSpec::eEnumerateDirectoryResultQuit; // got an error, bail out
591 }
592 return FileSpec::eEnumerateDirectoryResultNext;
593 } break;
594
Zachary Turner7d86ee52017-03-08 17:56:08 +0000595 case fs::file_type::symlink_file: {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000596 // copy the file and keep going
597 FileSpec dst_file = rc_baton->dst;
598 if (!dst_file.GetFilename())
599 dst_file.GetFilename() = src.GetFilename();
600
601 FileSpec src_resolved;
602
603 rc_baton->error = FileSystem::Readlink(src, src_resolved);
604
605 if (rc_baton->error.Fail())
606 return FileSpec::eEnumerateDirectoryResultQuit; // got an error, bail out
607
608 rc_baton->error =
609 rc_baton->platform_ptr->CreateSymlink(dst_file, src_resolved);
610
611 if (rc_baton->error.Fail())
612 return FileSpec::eEnumerateDirectoryResultQuit; // got an error, bail out
613
614 return FileSpec::eEnumerateDirectoryResultNext;
615 } break;
616
Zachary Turner7d86ee52017-03-08 17:56:08 +0000617 case fs::file_type::regular_file: {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000618 // copy the file and keep going
619 FileSpec dst_file = rc_baton->dst;
620 if (!dst_file.GetFilename())
621 dst_file.GetFilename() = src.GetFilename();
Zachary Turner97206d52017-05-12 04:51:55 +0000622 Status err = rc_baton->platform_ptr->PutFile(src, dst_file);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000623 if (err.Fail()) {
624 rc_baton->error.SetErrorString(err.AsCString());
625 return FileSpec::eEnumerateDirectoryResultQuit; // got an error, bail out
626 }
627 return FileSpec::eEnumerateDirectoryResultNext;
628 } break;
629
Zachary Turner7d86ee52017-03-08 17:56:08 +0000630 default:
Kate Stoneb9c1b512016-09-06 20:57:50 +0000631 rc_baton->error.SetErrorStringWithFormat(
632 "invalid file detected during copy: %s", src.GetPath().c_str());
633 return FileSpec::eEnumerateDirectoryResultQuit; // got an error, bail out
634 break;
635 }
Zachary Turner7d86ee52017-03-08 17:56:08 +0000636 llvm_unreachable("Unhandled file_type!");
Greg Claytonfbb76342013-11-20 21:07:01 +0000637}
638
Zachary Turner97206d52017-05-12 04:51:55 +0000639Status Platform::Install(const FileSpec &src, const FileSpec &dst) {
640 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000641
642 Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM);
643 if (log)
644 log->Printf("Platform::Install (src='%s', dst='%s')", src.GetPath().c_str(),
645 dst.GetPath().c_str());
646 FileSpec fixed_dst(dst);
647
648 if (!fixed_dst.GetFilename())
649 fixed_dst.GetFilename() = src.GetFilename();
650
651 FileSpec working_dir = GetWorkingDirectory();
652
653 if (dst) {
654 if (dst.GetDirectory()) {
655 const char first_dst_dir_char = dst.GetDirectory().GetCString()[0];
656 if (first_dst_dir_char == '/' || first_dst_dir_char == '\\') {
657 fixed_dst.GetDirectory() = dst.GetDirectory();
658 }
659 // If the fixed destination file doesn't have a directory yet,
660 // then we must have a relative path. We will resolve this relative
661 // path against the platform's working directory
662 if (!fixed_dst.GetDirectory()) {
663 FileSpec relative_spec;
664 std::string path;
665 if (working_dir) {
666 relative_spec = working_dir;
667 relative_spec.AppendPathComponent(dst.GetPath());
668 fixed_dst.GetDirectory() = relative_spec.GetDirectory();
669 } else {
670 error.SetErrorStringWithFormat(
671 "platform working directory must be valid for relative path '%s'",
672 dst.GetPath().c_str());
673 return error;
674 }
675 }
676 } else {
677 if (working_dir) {
678 fixed_dst.GetDirectory().SetCString(working_dir.GetCString());
679 } else {
680 error.SetErrorStringWithFormat(
681 "platform working directory must be valid for relative path '%s'",
682 dst.GetPath().c_str());
683 return error;
684 }
685 }
686 } else {
687 if (working_dir) {
688 fixed_dst.GetDirectory().SetCString(working_dir.GetCString());
689 } else {
690 error.SetErrorStringWithFormat("platform working directory must be valid "
691 "when destination directory is empty");
692 return error;
693 }
694 }
695
696 if (log)
697 log->Printf("Platform::Install (src='%s', dst='%s') fixed_dst='%s'",
698 src.GetPath().c_str(), dst.GetPath().c_str(),
699 fixed_dst.GetPath().c_str());
700
701 if (GetSupportsRSync()) {
702 error = PutFile(src, dst);
703 } else {
Zachary Turner7d86ee52017-03-08 17:56:08 +0000704 namespace fs = llvm::sys::fs;
705 switch (fs::get_file_type(src.GetPath(), false)) {
706 case fs::file_type::directory_file: {
Zachary Turner07db3f72017-03-21 05:47:57 +0000707 llvm::sys::fs::remove(fixed_dst.GetPath());
Kate Stoneb9c1b512016-09-06 20:57:50 +0000708 uint32_t permissions = src.GetPermissions();
709 if (permissions == 0)
710 permissions = eFilePermissionsDirectoryDefault;
711 error = MakeDirectory(fixed_dst, permissions);
712 if (error.Success()) {
713 // Make a filespec that only fills in the directory of a FileSpec so
714 // when we enumerate we can quickly fill in the filename for dst copies
715 FileSpec recurse_dst;
716 recurse_dst.GetDirectory().SetCString(fixed_dst.GetCString());
717 std::string src_dir_path(src.GetPath());
Zachary Turner97206d52017-05-12 04:51:55 +0000718 RecurseCopyBaton baton = {recurse_dst, this, Status()};
Malcolm Parsons771ef6d2016-11-02 20:34:10 +0000719 FileSpec::EnumerateDirectory(src_dir_path, true, true, true,
Kate Stoneb9c1b512016-09-06 20:57:50 +0000720 RecurseCopy_Callback, &baton);
721 return baton.error;
722 }
723 } break;
724
Zachary Turner7d86ee52017-03-08 17:56:08 +0000725 case fs::file_type::regular_file:
Zachary Turner07db3f72017-03-21 05:47:57 +0000726 llvm::sys::fs::remove(fixed_dst.GetPath());
Kate Stoneb9c1b512016-09-06 20:57:50 +0000727 error = PutFile(src, fixed_dst);
728 break;
729
Zachary Turner7d86ee52017-03-08 17:56:08 +0000730 case fs::file_type::symlink_file: {
Zachary Turner07db3f72017-03-21 05:47:57 +0000731 llvm::sys::fs::remove(fixed_dst.GetPath());
Kate Stoneb9c1b512016-09-06 20:57:50 +0000732 FileSpec src_resolved;
733 error = FileSystem::Readlink(src, src_resolved);
734 if (error.Success())
735 error = CreateSymlink(dst, src_resolved);
736 } break;
Zachary Turner7d86ee52017-03-08 17:56:08 +0000737 case fs::file_type::fifo_file:
Kate Stoneb9c1b512016-09-06 20:57:50 +0000738 error.SetErrorString("platform install doesn't handle pipes");
739 break;
Zachary Turner7d86ee52017-03-08 17:56:08 +0000740 case fs::file_type::socket_file:
Kate Stoneb9c1b512016-09-06 20:57:50 +0000741 error.SetErrorString("platform install doesn't handle sockets");
742 break;
Zachary Turner7d86ee52017-03-08 17:56:08 +0000743 default:
Kate Stoneb9c1b512016-09-06 20:57:50 +0000744 error.SetErrorString(
745 "platform install doesn't handle non file or directory items");
746 break;
747 }
748 }
749 return error;
750}
751
752bool Platform::SetWorkingDirectory(const FileSpec &file_spec) {
753 if (IsHost()) {
754 Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM);
Pavel Labath2d0c5b02017-01-25 11:10:52 +0000755 LLDB_LOG(log, "{0}", file_spec);
756 if (std::error_code ec = llvm::sys::fs::set_current_path(file_spec.GetPath())) {
757 LLDB_LOG(log, "error: {0}", ec.message());
758 return false;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000759 }
Pavel Labath2d0c5b02017-01-25 11:10:52 +0000760 return true;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000761 } else {
762 m_working_dir.Clear();
763 return SetRemoteWorkingDirectory(file_spec);
764 }
765}
766
Zachary Turner97206d52017-05-12 04:51:55 +0000767Status Platform::MakeDirectory(const FileSpec &file_spec,
768 uint32_t permissions) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000769 if (IsHost())
Zachary Turnerd3d95fd2017-03-19 05:48:47 +0000770 return llvm::sys::fs::create_directory(file_spec.GetPath(), permissions);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000771 else {
Zachary Turner97206d52017-05-12 04:51:55 +0000772 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000773 error.SetErrorStringWithFormat("remote platform %s doesn't support %s",
774 GetPluginName().GetCString(),
775 LLVM_PRETTY_FUNCTION);
Greg Claytonfbb76342013-11-20 21:07:01 +0000776 return error;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000777 }
Greg Claytonfbb76342013-11-20 21:07:01 +0000778}
779
Zachary Turner97206d52017-05-12 04:51:55 +0000780Status Platform::GetFilePermissions(const FileSpec &file_spec,
781 uint32_t &file_permissions) {
Zachary Turner6934e0a2017-03-19 05:49:43 +0000782 if (IsHost()) {
783 auto Value = llvm::sys::fs::getPermissions(file_spec.GetPath());
784 if (Value)
785 file_permissions = Value.get();
Zachary Turner97206d52017-05-12 04:51:55 +0000786 return Status(Value.getError());
Zachary Turner6934e0a2017-03-19 05:49:43 +0000787 } else {
Zachary Turner97206d52017-05-12 04:51:55 +0000788 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000789 error.SetErrorStringWithFormat("remote platform %s doesn't support %s",
790 GetPluginName().GetCString(),
791 LLVM_PRETTY_FUNCTION);
792 return error;
793 }
Greg Claytonfbb76342013-11-20 21:07:01 +0000794}
795
Zachary Turner97206d52017-05-12 04:51:55 +0000796Status Platform::SetFilePermissions(const FileSpec &file_spec,
797 uint32_t file_permissions) {
Zachary Turner6934e0a2017-03-19 05:49:43 +0000798 if (IsHost()) {
799 auto Perms = static_cast<llvm::sys::fs::perms>(file_permissions);
800 return llvm::sys::fs::setPermissions(file_spec.GetPath(), Perms);
801 } else {
Zachary Turner97206d52017-05-12 04:51:55 +0000802 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000803 error.SetErrorStringWithFormat("remote platform %s doesn't support %s",
804 GetPluginName().GetCString(),
805 LLVM_PRETTY_FUNCTION);
806 return error;
807 }
Greg Claytonfbb76342013-11-20 21:07:01 +0000808}
809
Kate Stoneb9c1b512016-09-06 20:57:50 +0000810ConstString Platform::GetName() { return GetPluginName(); }
811
812const char *Platform::GetHostname() {
813 if (IsHost())
814 return "127.0.0.1";
815
816 if (m_name.empty())
817 return nullptr;
818 return m_name.c_str();
Greg Claytonfbb76342013-11-20 21:07:01 +0000819}
820
Kate Stoneb9c1b512016-09-06 20:57:50 +0000821ConstString Platform::GetFullNameForDylib(ConstString basename) {
822 return basename;
Greg Claytonfbb76342013-11-20 21:07:01 +0000823}
824
Kate Stoneb9c1b512016-09-06 20:57:50 +0000825bool Platform::SetRemoteWorkingDirectory(const FileSpec &working_dir) {
826 Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM);
827 if (log)
828 log->Printf("Platform::SetRemoteWorkingDirectory('%s')",
Chaoren Lind3173f32015-05-29 19:52:29 +0000829 working_dir.GetCString());
Kate Stoneb9c1b512016-09-06 20:57:50 +0000830 m_working_dir = working_dir;
831 return true;
Greg Clayton5fb8f792013-12-02 19:35:49 +0000832}
833
Kate Stoneb9c1b512016-09-06 20:57:50 +0000834const char *Platform::GetUserName(uint32_t uid) {
Zachary Turnerb245eca2014-08-21 20:02:17 +0000835#if !defined(LLDB_DISABLE_POSIX)
Kate Stoneb9c1b512016-09-06 20:57:50 +0000836 const char *user_name = GetCachedUserName(uid);
837 if (user_name)
838 return user_name;
839 if (IsHost()) {
840 std::string name;
841 if (HostInfo::LookupUserName(uid, name))
842 return SetCachedUserName(uid, name.c_str(), name.size());
843 }
Zachary Turnerb245eca2014-08-21 20:02:17 +0000844#endif
Kate Stoneb9c1b512016-09-06 20:57:50 +0000845 return nullptr;
Greg Clayton1cb64962011-03-24 04:28:38 +0000846}
847
Kate Stoneb9c1b512016-09-06 20:57:50 +0000848const char *Platform::GetGroupName(uint32_t gid) {
Zachary Turnerb245eca2014-08-21 20:02:17 +0000849#if !defined(LLDB_DISABLE_POSIX)
Kate Stoneb9c1b512016-09-06 20:57:50 +0000850 const char *group_name = GetCachedGroupName(gid);
851 if (group_name)
852 return group_name;
853 if (IsHost()) {
854 std::string name;
855 if (HostInfo::LookupGroupName(gid, name))
856 return SetCachedGroupName(gid, name.c_str(), name.size());
857 }
Zachary Turnerb245eca2014-08-21 20:02:17 +0000858#endif
Kate Stoneb9c1b512016-09-06 20:57:50 +0000859 return nullptr;
Greg Clayton32e0a752011-03-30 18:16:51 +0000860}
Greg Clayton1cb64962011-03-24 04:28:38 +0000861
Kate Stoneb9c1b512016-09-06 20:57:50 +0000862bool Platform::SetOSVersion(uint32_t major, uint32_t minor, uint32_t update) {
863 if (IsHost()) {
864 // We don't need anyone setting the OS version for the host platform,
865 // we should be able to figure it out by calling
866 // HostInfo::GetOSVersion(...).
Greg Claytonded470d2011-03-19 01:12:21 +0000867 return false;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000868 } else {
869 // We have a remote platform, allow setting the target OS version if
870 // we aren't connected, since if we are connected, we should be able to
871 // request the remote OS version from the connected platform.
872 if (IsConnected())
873 return false;
874 else {
875 // We aren't connected and we might want to set the OS version
876 // ahead of time before we connect so we can peruse files and
877 // use a local SDK or PDK cache of support files to disassemble
878 // or do other things.
879 m_major_os_version = major;
880 m_minor_os_version = minor;
881 m_update_os_version = update;
882 return true;
Greg Claytone996fd32011-03-08 22:40:15 +0000883 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000884 }
885 return false;
886}
887
Zachary Turner97206d52017-05-12 04:51:55 +0000888Status
889Platform::ResolveExecutable(const ModuleSpec &module_spec,
890 lldb::ModuleSP &exe_module_sp,
891 const FileSpecList *module_search_paths_ptr) {
892 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000893 if (module_spec.GetFileSpec().Exists()) {
894 if (module_spec.GetArchitecture().IsValid()) {
895 error = ModuleList::GetSharedModule(module_spec, exe_module_sp,
896 module_search_paths_ptr, nullptr,
897 nullptr);
898 } else {
899 // No valid architecture was specified, ask the platform for
900 // the architectures that we should be using (in the correct order)
901 // and see if we can find a match that way
902 ModuleSpec arch_module_spec(module_spec);
903 for (uint32_t idx = 0; GetSupportedArchitectureAtIndex(
904 idx, arch_module_spec.GetArchitecture());
905 ++idx) {
906 error = ModuleList::GetSharedModule(arch_module_spec, exe_module_sp,
907 module_search_paths_ptr, nullptr,
908 nullptr);
909 // Did we find an executable using one of the
910 if (error.Success() && exe_module_sp)
911 break;
912 }
Greg Claytone996fd32011-03-08 22:40:15 +0000913 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000914 } else {
915 error.SetErrorStringWithFormat("'%s' does not exist",
916 module_spec.GetFileSpec().GetPath().c_str());
917 }
918 return error;
Greg Claytone996fd32011-03-08 22:40:15 +0000919}
920
Zachary Turner97206d52017-05-12 04:51:55 +0000921Status Platform::ResolveSymbolFile(Target &target, const ModuleSpec &sym_spec,
922 FileSpec &sym_file) {
923 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000924 if (sym_spec.GetSymbolFileSpec().Exists())
925 sym_file = sym_spec.GetSymbolFileSpec();
926 else
927 error.SetErrorString("unable to resolve symbol file");
928 return error;
Greg Claytonaa516842011-08-11 16:25:18 +0000929}
930
Kate Stoneb9c1b512016-09-06 20:57:50 +0000931bool Platform::ResolveRemotePath(const FileSpec &platform_path,
932 FileSpec &resolved_platform_path) {
933 resolved_platform_path = platform_path;
934 return resolved_platform_path.ResolvePath();
935}
936
937const ArchSpec &Platform::GetSystemArchitecture() {
938 if (IsHost()) {
939 if (!m_system_arch.IsValid()) {
940 // We have a local host platform
941 m_system_arch = HostInfo::GetArchitecture();
942 m_system_arch_set_while_connected = m_system_arch.IsValid();
Greg Claytonded470d2011-03-19 01:12:21 +0000943 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000944 } else {
945 // We have a remote platform. We can only fetch the remote
946 // system architecture if we are connected, and we don't want to do it
947 // more than once.
Greg Claytonded470d2011-03-19 01:12:21 +0000948
Kate Stoneb9c1b512016-09-06 20:57:50 +0000949 const bool is_connected = IsConnected();
Greg Claytonded470d2011-03-19 01:12:21 +0000950
Kate Stoneb9c1b512016-09-06 20:57:50 +0000951 bool fetch = false;
952 if (m_system_arch.IsValid()) {
953 // We have valid OS version info, check to make sure it wasn't
954 // manually set prior to connecting. If it was manually set prior
955 // to connecting, then lets fetch the actual OS version info
956 // if we are now connected.
957 if (is_connected && !m_system_arch_set_while_connected)
958 fetch = true;
959 } else {
960 // We don't have valid OS version info, fetch it if we are connected
961 fetch = is_connected;
Greg Claytonded470d2011-03-19 01:12:21 +0000962 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000963
964 if (fetch) {
965 m_system_arch = GetRemoteSystemArchitecture();
966 m_system_arch_set_while_connected = m_system_arch.IsValid();
967 }
968 }
969 return m_system_arch;
Greg Claytonded470d2011-03-19 01:12:21 +0000970}
971
Pavel Labath7263f1b2017-10-31 10:56:03 +0000972ArchSpec Platform::GetAugmentedArchSpec(llvm::StringRef triple) {
973 if (triple.empty())
974 return ArchSpec();
975 llvm::Triple normalized_triple(llvm::Triple::normalize(triple));
976 if (!ArchSpec::ContainsOnlyArch(normalized_triple))
977 return ArchSpec(triple);
978
Pavel Labath4ebb64b2017-11-13 15:57:20 +0000979 if (auto kind = HostInfo::ParseArchitectureKind(triple))
980 return HostInfo::GetArchitecture(*kind);
981
Pavel Labath7263f1b2017-10-31 10:56:03 +0000982 ArchSpec compatible_arch;
983 ArchSpec raw_arch(triple);
984 if (!IsCompatibleArchitecture(raw_arch, false, &compatible_arch))
985 return raw_arch;
986
987 if (!compatible_arch.IsValid())
988 return ArchSpec(normalized_triple);
989
990 const llvm::Triple &compatible_triple = compatible_arch.GetTriple();
991 if (normalized_triple.getVendorName().empty())
992 normalized_triple.setVendor(compatible_triple.getVendor());
993 if (normalized_triple.getOSName().empty())
994 normalized_triple.setOS(compatible_triple.getOS());
995 if (normalized_triple.getEnvironmentName().empty())
996 normalized_triple.setEnvironment(compatible_triple.getEnvironment());
997 return ArchSpec(normalized_triple);
998}
999
Zachary Turner97206d52017-05-12 04:51:55 +00001000Status Platform::ConnectRemote(Args &args) {
1001 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001002 if (IsHost())
1003 error.SetErrorStringWithFormat("The currently selected platform (%s) is "
1004 "the host platform and is always connected.",
1005 GetPluginName().GetCString());
1006 else
1007 error.SetErrorStringWithFormat(
1008 "Platform::ConnectRemote() is not supported by %s",
1009 GetPluginName().GetCString());
1010 return error;
Greg Claytone996fd32011-03-08 22:40:15 +00001011}
1012
Zachary Turner97206d52017-05-12 04:51:55 +00001013Status Platform::DisconnectRemote() {
1014 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001015 if (IsHost())
1016 error.SetErrorStringWithFormat("The currently selected platform (%s) is "
1017 "the host platform and is always connected.",
1018 GetPluginName().GetCString());
1019 else
1020 error.SetErrorStringWithFormat(
1021 "Platform::DisconnectRemote() is not supported by %s",
1022 GetPluginName().GetCString());
1023 return error;
Greg Claytone996fd32011-03-08 22:40:15 +00001024}
Greg Clayton32e0a752011-03-30 18:16:51 +00001025
Kate Stoneb9c1b512016-09-06 20:57:50 +00001026bool Platform::GetProcessInfo(lldb::pid_t pid,
1027 ProcessInstanceInfo &process_info) {
1028 // Take care of the host case so that each subclass can just
1029 // call this function to get the host functionality.
1030 if (IsHost())
1031 return Host::GetProcessInfo(pid, process_info);
1032 return false;
Greg Clayton32e0a752011-03-30 18:16:51 +00001033}
1034
Kate Stoneb9c1b512016-09-06 20:57:50 +00001035uint32_t Platform::FindProcesses(const ProcessInstanceInfoMatch &match_info,
1036 ProcessInstanceInfoList &process_infos) {
1037 // Take care of the host case so that each subclass can just
1038 // call this function to get the host functionality.
1039 uint32_t match_count = 0;
1040 if (IsHost())
1041 match_count = Host::FindProcesses(match_info, process_infos);
1042 return match_count;
Greg Clayton32e0a752011-03-30 18:16:51 +00001043}
Greg Clayton8b82f082011-04-12 05:54:46 +00001044
Zachary Turner97206d52017-05-12 04:51:55 +00001045Status Platform::LaunchProcess(ProcessLaunchInfo &launch_info) {
1046 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001047 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
1048 if (log)
1049 log->Printf("Platform::%s()", __FUNCTION__);
1050
1051 // Take care of the host case so that each subclass can just
1052 // call this function to get the host functionality.
1053 if (IsHost()) {
1054 if (::getenv("LLDB_LAUNCH_FLAG_LAUNCH_IN_TTY"))
1055 launch_info.GetFlags().Set(eLaunchFlagLaunchInTTY);
1056
1057 if (launch_info.GetFlags().Test(eLaunchFlagLaunchInShell)) {
1058 const bool is_localhost = true;
1059 const bool will_debug = launch_info.GetFlags().Test(eLaunchFlagDebug);
1060 const bool first_arg_is_full_shell_command = false;
1061 uint32_t num_resumes = GetResumeCountForLaunchInfo(launch_info);
1062 if (log) {
1063 const FileSpec &shell = launch_info.GetShell();
1064 const char *shell_str = (shell) ? shell.GetPath().c_str() : "<null>";
1065 log->Printf(
1066 "Platform::%s GetResumeCountForLaunchInfo() returned %" PRIu32
1067 ", shell is '%s'",
1068 __FUNCTION__, num_resumes, shell_str);
1069 }
1070
1071 if (!launch_info.ConvertArgumentsForLaunchingInShell(
1072 error, is_localhost, will_debug, first_arg_is_full_shell_command,
1073 num_resumes))
1074 return error;
1075 } else if (launch_info.GetFlags().Test(eLaunchFlagShellExpandArguments)) {
1076 error = ShellExpandArguments(launch_info);
1077 if (error.Fail()) {
1078 error.SetErrorStringWithFormat("shell expansion failed (reason: %s). "
1079 "consider launching with 'process "
1080 "launch'.",
1081 error.AsCString("unknown"));
1082 return error;
1083 }
1084 }
1085
Todd Fialaac33cc92014-10-09 01:02:08 +00001086 if (log)
Kate Stoneb9c1b512016-09-06 20:57:50 +00001087 log->Printf("Platform::%s final launch_info resume count: %" PRIu32,
1088 __FUNCTION__, launch_info.GetResumeCount());
Todd Fialaac33cc92014-10-09 01:02:08 +00001089
Kate Stoneb9c1b512016-09-06 20:57:50 +00001090 error = Host::LaunchProcess(launch_info);
1091 } else
1092 error.SetErrorString(
1093 "base lldb_private::Platform class can't launch remote processes");
1094 return error;
Greg Clayton8b82f082011-04-12 05:54:46 +00001095}
1096
Zachary Turner97206d52017-05-12 04:51:55 +00001097Status Platform::ShellExpandArguments(ProcessLaunchInfo &launch_info) {
Kate Stoneb9c1b512016-09-06 20:57:50 +00001098 if (IsHost())
1099 return Host::ShellExpandArguments(launch_info);
Zachary Turner97206d52017-05-12 04:51:55 +00001100 return Status("base lldb_private::Platform class can't expand arguments");
Enrico Granata83a14372015-02-20 21:48:38 +00001101}
1102
Zachary Turner97206d52017-05-12 04:51:55 +00001103Status Platform::KillProcess(const lldb::pid_t pid) {
Kate Stoneb9c1b512016-09-06 20:57:50 +00001104 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
1105 if (log)
1106 log->Printf("Platform::%s, pid %" PRIu64, __FUNCTION__, pid);
Oleksiy Vyalov1ef7b2c2015-02-04 23:19:15 +00001107
Kate Stoneb9c1b512016-09-06 20:57:50 +00001108 // Try to find a process plugin to handle this Kill request. If we can't,
1109 // fall back to
1110 // the default OS implementation.
1111 size_t num_debuggers = Debugger::GetNumDebuggers();
1112 for (size_t didx = 0; didx < num_debuggers; ++didx) {
1113 DebuggerSP debugger = Debugger::GetDebuggerAtIndex(didx);
1114 lldb_private::TargetList &targets = debugger->GetTargetList();
1115 for (int tidx = 0; tidx < targets.GetNumTargets(); ++tidx) {
1116 ProcessSP process = targets.GetTargetAtIndex(tidx)->GetProcessSP();
1117 if (process->GetID() == pid)
1118 return process->Destroy(true);
Zachary Turner7271bab2015-05-13 19:44:24 +00001119 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001120 }
Oleksiy Vyalov1ef7b2c2015-02-04 23:19:15 +00001121
Kate Stoneb9c1b512016-09-06 20:57:50 +00001122 if (!IsHost()) {
Zachary Turner97206d52017-05-12 04:51:55 +00001123 return Status(
Kate Stoneb9c1b512016-09-06 20:57:50 +00001124 "base lldb_private::Platform class can't kill remote processes unless "
1125 "they are controlled by a process plugin");
1126 }
1127 Host::Kill(pid, SIGTERM);
Zachary Turner97206d52017-05-12 04:51:55 +00001128 return Status();
Oleksiy Vyalov1ef7b2c2015-02-04 23:19:15 +00001129}
1130
Greg Clayton8b82f082011-04-12 05:54:46 +00001131lldb::ProcessSP
Kate Stoneb9c1b512016-09-06 20:57:50 +00001132Platform::DebugProcess(ProcessLaunchInfo &launch_info, Debugger &debugger,
1133 Target *target, // Can be nullptr, if nullptr create a
1134 // new target, else use existing one
Zachary Turner97206d52017-05-12 04:51:55 +00001135 Status &error) {
Kate Stoneb9c1b512016-09-06 20:57:50 +00001136 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
1137 if (log)
1138 log->Printf("Platform::%s entered (target %p)", __FUNCTION__,
1139 static_cast<void *>(target));
1140
1141 ProcessSP process_sp;
1142 // Make sure we stop at the entry point
1143 launch_info.GetFlags().Set(eLaunchFlagDebug);
1144 // We always launch the process we are going to debug in a separate process
1145 // group, since then we can handle ^C interrupts ourselves w/o having to worry
1146 // about the target getting them as well.
1147 launch_info.SetLaunchInSeparateProcessGroup(true);
1148
1149 // Allow any StructuredData process-bound plugins to adjust the launch info
1150 // if needed
1151 size_t i = 0;
1152 bool iteration_complete = false;
1153 // Note iteration can't simply go until a nullptr callback is returned, as
1154 // it is valid for a plugin to not supply a filter.
1155 auto get_filter_func = PluginManager::GetStructuredDataFilterCallbackAtIndex;
1156 for (auto filter_callback = get_filter_func(i, iteration_complete);
1157 !iteration_complete;
1158 filter_callback = get_filter_func(++i, iteration_complete)) {
1159 if (filter_callback) {
1160 // Give this ProcessLaunchInfo filter a chance to adjust the launch
1161 // info.
1162 error = (*filter_callback)(launch_info, target);
1163 if (!error.Success()) {
1164 if (log)
1165 log->Printf("Platform::%s() StructuredDataPlugin launch "
1166 "filter failed.",
1167 __FUNCTION__);
1168 return process_sp;
1169 }
1170 }
1171 }
1172
1173 error = LaunchProcess(launch_info);
1174 if (error.Success()) {
Todd Fialaac33cc92014-10-09 01:02:08 +00001175 if (log)
Kate Stoneb9c1b512016-09-06 20:57:50 +00001176 log->Printf("Platform::%s LaunchProcess() call succeeded (pid=%" PRIu64
1177 ")",
1178 __FUNCTION__, launch_info.GetProcessID());
1179 if (launch_info.GetProcessID() != LLDB_INVALID_PROCESS_ID) {
1180 ProcessAttachInfo attach_info(launch_info);
1181 process_sp = Attach(attach_info, debugger, target, error);
1182 if (process_sp) {
Todd Fialaac33cc92014-10-09 01:02:08 +00001183 if (log)
Kate Stoneb9c1b512016-09-06 20:57:50 +00001184 log->Printf("Platform::%s Attach() succeeded, Process plugin: %s",
1185 __FUNCTION__, process_sp->GetPluginName().AsCString());
1186 launch_info.SetHijackListener(attach_info.GetHijackListener());
Todd Fialaac33cc92014-10-09 01:02:08 +00001187
Kate Stoneb9c1b512016-09-06 20:57:50 +00001188 // Since we attached to the process, it will think it needs to detach
1189 // if the process object just goes away without an explicit call to
1190 // Process::Kill() or Process::Detach(), so let it know to kill the
1191 // process if this happens.
1192 process_sp->SetShouldDetach(false);
1193
1194 // If we didn't have any file actions, the pseudo terminal might
1195 // have been used where the slave side was given as the file to
1196 // open for stdin/out/err after we have already opened the master
1197 // so we can read/write stdin/out/err.
1198 int pty_fd = launch_info.GetPTY().ReleaseMasterFileDescriptor();
1199 if (pty_fd != lldb_utility::PseudoTerminal::invalid_fd) {
1200 process_sp->SetSTDIOFileDescriptor(pty_fd);
1201 }
1202 } else {
1203 if (log)
1204 log->Printf("Platform::%s Attach() failed: %s", __FUNCTION__,
1205 error.AsCString());
1206 }
1207 } else {
1208 if (log)
1209 log->Printf("Platform::%s LaunchProcess() returned launch_info with "
1210 "invalid process id",
1211 __FUNCTION__);
1212 }
1213 } else {
1214 if (log)
1215 log->Printf("Platform::%s LaunchProcess() failed: %s", __FUNCTION__,
1216 error.AsCString());
1217 }
1218
1219 return process_sp;
Greg Clayton8b82f082011-04-12 05:54:46 +00001220}
Greg Claytonb3a40ba2012-03-20 18:34:04 +00001221
Greg Claytonb3a40ba2012-03-20 18:34:04 +00001222lldb::PlatformSP
Kate Stoneb9c1b512016-09-06 20:57:50 +00001223Platform::GetPlatformForArchitecture(const ArchSpec &arch,
1224 ArchSpec *platform_arch_ptr) {
1225 lldb::PlatformSP platform_sp;
Zachary Turner97206d52017-05-12 04:51:55 +00001226 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001227 if (arch.IsValid())
1228 platform_sp = Platform::Create(arch, platform_arch_ptr, error);
1229 return platform_sp;
Greg Claytonb3a40ba2012-03-20 18:34:04 +00001230}
1231
Greg Claytonb3a40ba2012-03-20 18:34:04 +00001232//------------------------------------------------------------------
1233/// Lets a platform answer if it is compatible with a given
1234/// architecture and the target triple contained within.
1235//------------------------------------------------------------------
Kate Stoneb9c1b512016-09-06 20:57:50 +00001236bool Platform::IsCompatibleArchitecture(const ArchSpec &arch,
1237 bool exact_arch_match,
1238 ArchSpec *compatible_arch_ptr) {
1239 // If the architecture is invalid, we must answer true...
1240 if (arch.IsValid()) {
1241 ArchSpec platform_arch;
1242 // Try for an exact architecture match first.
1243 if (exact_arch_match) {
1244 for (uint32_t arch_idx = 0;
1245 GetSupportedArchitectureAtIndex(arch_idx, platform_arch);
1246 ++arch_idx) {
1247 if (arch.IsExactMatch(platform_arch)) {
1248 if (compatible_arch_ptr)
1249 *compatible_arch_ptr = platform_arch;
1250 return true;
Greg Clayton1e0c8842013-01-11 20:49:54 +00001251 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001252 }
1253 } else {
1254 for (uint32_t arch_idx = 0;
1255 GetSupportedArchitectureAtIndex(arch_idx, platform_arch);
1256 ++arch_idx) {
1257 if (arch.IsCompatibleMatch(platform_arch)) {
1258 if (compatible_arch_ptr)
1259 *compatible_arch_ptr = platform_arch;
1260 return true;
Greg Clayton70512312012-05-08 01:45:38 +00001261 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001262 }
Greg Claytonb3a40ba2012-03-20 18:34:04 +00001263 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001264 }
1265 if (compatible_arch_ptr)
1266 compatible_arch_ptr->Clear();
1267 return false;
Greg Claytonb3a40ba2012-03-20 18:34:04 +00001268}
1269
Zachary Turner97206d52017-05-12 04:51:55 +00001270Status Platform::PutFile(const FileSpec &source, const FileSpec &destination,
1271 uint32_t uid, uint32_t gid) {
Kate Stoneb9c1b512016-09-06 20:57:50 +00001272 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM));
1273 if (log)
1274 log->Printf("[PutFile] Using block by block transfer....\n");
Vince Harron1b5a74e2015-01-21 22:42:49 +00001275
Kate Stoneb9c1b512016-09-06 20:57:50 +00001276 uint32_t source_open_options =
1277 File::eOpenOptionRead | File::eOpenOptionCloseOnExec;
Zachary Turner7d86ee52017-03-08 17:56:08 +00001278 namespace fs = llvm::sys::fs;
1279 if (fs::is_symlink_file(source.GetPath()))
Kate Stoneb9c1b512016-09-06 20:57:50 +00001280 source_open_options |= File::eOpenOptionDontFollowSymlinks;
Vince Harron1b5a74e2015-01-21 22:42:49 +00001281
Kate Stoneb9c1b512016-09-06 20:57:50 +00001282 File source_file(source, source_open_options, lldb::eFilePermissionsUserRW);
Zachary Turner97206d52017-05-12 04:51:55 +00001283 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001284 uint32_t permissions = source_file.GetPermissions(error);
1285 if (permissions == 0)
1286 permissions = lldb::eFilePermissionsFileDefault;
Vince Harron1b5a74e2015-01-21 22:42:49 +00001287
Kate Stoneb9c1b512016-09-06 20:57:50 +00001288 if (!source_file.IsValid())
Zachary Turner97206d52017-05-12 04:51:55 +00001289 return Status("PutFile: unable to open source file");
Kate Stoneb9c1b512016-09-06 20:57:50 +00001290 lldb::user_id_t dest_file = OpenFile(
1291 destination, File::eOpenOptionCanCreate | File::eOpenOptionWrite |
1292 File::eOpenOptionTruncate | File::eOpenOptionCloseOnExec,
1293 permissions, error);
1294 if (log)
1295 log->Printf("dest_file = %" PRIu64 "\n", dest_file);
Vince Harron1b5a74e2015-01-21 22:42:49 +00001296
Kate Stoneb9c1b512016-09-06 20:57:50 +00001297 if (error.Fail())
1298 return error;
1299 if (dest_file == UINT64_MAX)
Zachary Turner97206d52017-05-12 04:51:55 +00001300 return Status("unable to open target file");
Kate Stoneb9c1b512016-09-06 20:57:50 +00001301 lldb::DataBufferSP buffer_sp(new DataBufferHeap(1024, 0));
1302 uint64_t offset = 0;
1303 for (;;) {
1304 size_t bytes_read = buffer_sp->GetByteSize();
1305 error = source_file.Read(buffer_sp->GetBytes(), bytes_read);
1306 if (error.Fail() || bytes_read == 0)
1307 break;
1308
1309 const uint64_t bytes_written =
1310 WriteFile(dest_file, offset, buffer_sp->GetBytes(), bytes_read, error);
Vince Harron1b5a74e2015-01-21 22:42:49 +00001311 if (error.Fail())
Kate Stoneb9c1b512016-09-06 20:57:50 +00001312 break;
Vince Harron1b5a74e2015-01-21 22:42:49 +00001313
Kate Stoneb9c1b512016-09-06 20:57:50 +00001314 offset += bytes_written;
1315 if (bytes_written != bytes_read) {
1316 // We didn't write the correct number of bytes, so adjust
1317 // the file position in the source file we are reading from...
1318 source_file.SeekFromStart(offset);
Vince Harron1b5a74e2015-01-21 22:42:49 +00001319 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001320 }
1321 CloseFile(dest_file, error);
Vince Harron1b5a74e2015-01-21 22:42:49 +00001322
Kate Stoneb9c1b512016-09-06 20:57:50 +00001323 if (uid == UINT32_MAX && gid == UINT32_MAX)
Daniel Maleae0f8f572013-08-26 23:57:52 +00001324 return error;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001325
1326 // TODO: ChownFile?
1327
1328 return error;
Daniel Maleae0f8f572013-08-26 23:57:52 +00001329}
1330
Zachary Turner97206d52017-05-12 04:51:55 +00001331Status Platform::GetFile(const FileSpec &source, const FileSpec &destination) {
1332 Status error("unimplemented");
Kate Stoneb9c1b512016-09-06 20:57:50 +00001333 return error;
Daniel Maleae0f8f572013-08-26 23:57:52 +00001334}
1335
Zachary Turner97206d52017-05-12 04:51:55 +00001336Status
1337Platform::CreateSymlink(const FileSpec &src, // The name of the link is in src
1338 const FileSpec &dst) // The symlink points to dst
Greg Claytonfbb76342013-11-20 21:07:01 +00001339{
Zachary Turner97206d52017-05-12 04:51:55 +00001340 Status error("unimplemented");
Kate Stoneb9c1b512016-09-06 20:57:50 +00001341 return error;
Greg Claytonfbb76342013-11-20 21:07:01 +00001342}
1343
Kate Stoneb9c1b512016-09-06 20:57:50 +00001344bool Platform::GetFileExists(const lldb_private::FileSpec &file_spec) {
1345 return false;
1346}
1347
Zachary Turner97206d52017-05-12 04:51:55 +00001348Status Platform::Unlink(const FileSpec &path) {
1349 Status error("unimplemented");
Kate Stoneb9c1b512016-09-06 20:57:50 +00001350 return error;
1351}
1352
Ed Maste37c40af2017-08-16 12:55:02 +00001353MmapArgList Platform::GetMmapArgumentList(const ArchSpec &arch, addr_t addr,
1354 addr_t length, unsigned prot,
1355 unsigned flags, addr_t fd,
1356 addr_t offset) {
Kate Stoneb9c1b512016-09-06 20:57:50 +00001357 uint64_t flags_platform = 0;
1358 if (flags & eMmapFlagsPrivate)
1359 flags_platform |= MAP_PRIVATE;
1360 if (flags & eMmapFlagsAnon)
1361 flags_platform |= MAP_ANON;
Ed Maste37c40af2017-08-16 12:55:02 +00001362
1363 MmapArgList args({addr, length, prot, flags_platform, fd, offset});
1364 return args;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001365}
1366
Zachary Turner97206d52017-05-12 04:51:55 +00001367lldb_private::Status Platform::RunShellCommand(
Kate Stoneb9c1b512016-09-06 20:57:50 +00001368 const char *command, // Shouldn't be nullptr
1369 const FileSpec &
1370 working_dir, // Pass empty FileSpec to use the current working directory
1371 int *status_ptr, // Pass nullptr if you don't want the process exit status
1372 int *signo_ptr, // Pass nullptr if you don't want the signal that caused the
1373 // process to exit
1374 std::string
1375 *command_output, // Pass nullptr if you don't want the command output
1376 uint32_t
1377 timeout_sec) // Timeout in seconds to wait for shell program to finish
Daniel Maleae0f8f572013-08-26 23:57:52 +00001378{
Kate Stoneb9c1b512016-09-06 20:57:50 +00001379 if (IsHost())
1380 return Host::RunShellCommand(command, working_dir, status_ptr, signo_ptr,
1381 command_output, timeout_sec);
1382 else
Zachary Turner97206d52017-05-12 04:51:55 +00001383 return Status("unimplemented");
Kate Stoneb9c1b512016-09-06 20:57:50 +00001384}
1385
1386bool Platform::CalculateMD5(const FileSpec &file_spec, uint64_t &low,
1387 uint64_t &high) {
Zachary Turner076a2592017-03-20 23:54:54 +00001388 if (!IsHost())
Daniel Maleae0f8f572013-08-26 23:57:52 +00001389 return false;
Zachary Turner076a2592017-03-20 23:54:54 +00001390 auto Result = llvm::sys::fs::md5_contents(file_spec.GetPath());
1391 if (!Result)
1392 return false;
1393 std::tie(high, low) = Result->words();
1394 return true;
Daniel Maleae0f8f572013-08-26 23:57:52 +00001395}
1396
Kate Stoneb9c1b512016-09-06 20:57:50 +00001397void Platform::SetLocalCacheDirectory(const char *local) {
1398 m_local_cache_directory.assign(local);
Greg Claytonfbb76342013-11-20 21:07:01 +00001399}
1400
Kate Stoneb9c1b512016-09-06 20:57:50 +00001401const char *Platform::GetLocalCacheDirectory() {
1402 return m_local_cache_directory.c_str();
Robert Flack96ad3de2015-05-09 15:53:31 +00001403}
Greg Claytonfbb76342013-11-20 21:07:01 +00001404
Kate Stoneb9c1b512016-09-06 20:57:50 +00001405static OptionDefinition g_rsync_option_table[] = {
1406 {LLDB_OPT_SET_ALL, false, "rsync", 'r', OptionParser::eNoArgument, nullptr,
1407 nullptr, 0, eArgTypeNone, "Enable rsync."},
1408 {LLDB_OPT_SET_ALL, false, "rsync-opts", 'R',
1409 OptionParser::eRequiredArgument, nullptr, nullptr, 0, eArgTypeCommandName,
1410 "Platform-specific options required for rsync to work."},
1411 {LLDB_OPT_SET_ALL, false, "rsync-prefix", 'P',
1412 OptionParser::eRequiredArgument, nullptr, nullptr, 0, eArgTypeCommandName,
1413 "Platform-specific rsync prefix put before the remote path."},
1414 {LLDB_OPT_SET_ALL, false, "ignore-remote-hostname", 'i',
1415 OptionParser::eNoArgument, nullptr, nullptr, 0, eArgTypeNone,
1416 "Do not automatically fill in the remote hostname when composing the "
1417 "rsync command."},
Daniel Maleae0f8f572013-08-26 23:57:52 +00001418};
1419
Kate Stoneb9c1b512016-09-06 20:57:50 +00001420static OptionDefinition g_ssh_option_table[] = {
1421 {LLDB_OPT_SET_ALL, false, "ssh", 's', OptionParser::eNoArgument, nullptr,
1422 nullptr, 0, eArgTypeNone, "Enable SSH."},
1423 {LLDB_OPT_SET_ALL, false, "ssh-opts", 'S', OptionParser::eRequiredArgument,
1424 nullptr, nullptr, 0, eArgTypeCommandName,
1425 "Platform-specific options required for SSH to work."},
Daniel Maleae0f8f572013-08-26 23:57:52 +00001426};
1427
Kate Stoneb9c1b512016-09-06 20:57:50 +00001428static OptionDefinition g_caching_option_table[] = {
1429 {LLDB_OPT_SET_ALL, false, "local-cache-dir", 'c',
1430 OptionParser::eRequiredArgument, nullptr, nullptr, 0, eArgTypePath,
1431 "Path in which to store local copies of files."},
Daniel Maleae0f8f572013-08-26 23:57:52 +00001432};
1433
Zachary Turner1f0f5b52016-09-22 20:22:55 +00001434llvm::ArrayRef<OptionDefinition> OptionGroupPlatformRSync::GetDefinitions() {
Zachary Turner70602432016-09-22 21:06:13 +00001435 return llvm::makeArrayRef(g_rsync_option_table);
Daniel Maleae0f8f572013-08-26 23:57:52 +00001436}
1437
Kate Stoneb9c1b512016-09-06 20:57:50 +00001438void OptionGroupPlatformRSync::OptionParsingStarting(
1439 ExecutionContext *execution_context) {
1440 m_rsync = false;
1441 m_rsync_opts.clear();
1442 m_rsync_prefix.clear();
1443 m_ignores_remote_hostname = false;
Daniel Maleae0f8f572013-08-26 23:57:52 +00001444}
1445
Zachary Turner97206d52017-05-12 04:51:55 +00001446lldb_private::Status
Todd Fialae1cfbc72016-08-11 23:51:28 +00001447OptionGroupPlatformRSync::SetOptionValue(uint32_t option_idx,
Zachary Turner8cef4b02016-09-23 17:48:13 +00001448 llvm::StringRef option_arg,
Kate Stoneb9c1b512016-09-06 20:57:50 +00001449 ExecutionContext *execution_context) {
Zachary Turner97206d52017-05-12 04:51:55 +00001450 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001451 char short_option = (char)GetDefinitions()[option_idx].short_option;
1452 switch (short_option) {
1453 case 'r':
1454 m_rsync = true;
1455 break;
1456
1457 case 'R':
1458 m_rsync_opts.assign(option_arg);
1459 break;
1460
1461 case 'P':
1462 m_rsync_prefix.assign(option_arg);
1463 break;
1464
1465 case 'i':
1466 m_ignores_remote_hostname = true;
1467 break;
1468
1469 default:
1470 error.SetErrorStringWithFormat("unrecognized option '%c'", short_option);
1471 break;
1472 }
1473
1474 return error;
Daniel Maleae0f8f572013-08-26 23:57:52 +00001475}
1476
Greg Clayton4116e932012-05-15 02:33:01 +00001477lldb::BreakpointSP
Kate Stoneb9c1b512016-09-06 20:57:50 +00001478Platform::SetThreadCreationBreakpoint(lldb_private::Target &target) {
1479 return lldb::BreakpointSP();
Greg Clayton4116e932012-05-15 02:33:01 +00001480}
Greg Claytonb3a40ba2012-03-20 18:34:04 +00001481
Zachary Turner1f0f5b52016-09-22 20:22:55 +00001482llvm::ArrayRef<OptionDefinition> OptionGroupPlatformSSH::GetDefinitions() {
Zachary Turner70602432016-09-22 21:06:13 +00001483 return llvm::makeArrayRef(g_ssh_option_table);
Daniel Maleae0f8f572013-08-26 23:57:52 +00001484}
1485
Kate Stoneb9c1b512016-09-06 20:57:50 +00001486void OptionGroupPlatformSSH::OptionParsingStarting(
1487 ExecutionContext *execution_context) {
1488 m_ssh = false;
1489 m_ssh_opts.clear();
Daniel Maleae0f8f572013-08-26 23:57:52 +00001490}
1491
Zachary Turner97206d52017-05-12 04:51:55 +00001492lldb_private::Status
Todd Fialae1cfbc72016-08-11 23:51:28 +00001493OptionGroupPlatformSSH::SetOptionValue(uint32_t option_idx,
Zachary Turner8cef4b02016-09-23 17:48:13 +00001494 llvm::StringRef option_arg,
Kate Stoneb9c1b512016-09-06 20:57:50 +00001495 ExecutionContext *execution_context) {
Zachary Turner97206d52017-05-12 04:51:55 +00001496 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001497 char short_option = (char)GetDefinitions()[option_idx].short_option;
1498 switch (short_option) {
1499 case 's':
1500 m_ssh = true;
1501 break;
1502
1503 case 'S':
1504 m_ssh_opts.assign(option_arg);
1505 break;
1506
1507 default:
1508 error.SetErrorStringWithFormat("unrecognized option '%c'", short_option);
1509 break;
1510 }
1511
1512 return error;
1513}
1514
Zachary Turner1f0f5b52016-09-22 20:22:55 +00001515llvm::ArrayRef<OptionDefinition> OptionGroupPlatformCaching::GetDefinitions() {
Zachary Turner70602432016-09-22 21:06:13 +00001516 return llvm::makeArrayRef(g_caching_option_table);
Kate Stoneb9c1b512016-09-06 20:57:50 +00001517}
1518
1519void OptionGroupPlatformCaching::OptionParsingStarting(
1520 ExecutionContext *execution_context) {
1521 m_cache_dir.clear();
1522}
1523
Zachary Turner97206d52017-05-12 04:51:55 +00001524lldb_private::Status OptionGroupPlatformCaching::SetOptionValue(
Zachary Turner8cef4b02016-09-23 17:48:13 +00001525 uint32_t option_idx, llvm::StringRef option_arg,
Kate Stoneb9c1b512016-09-06 20:57:50 +00001526 ExecutionContext *execution_context) {
Zachary Turner97206d52017-05-12 04:51:55 +00001527 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001528 char short_option = (char)GetDefinitions()[option_idx].short_option;
1529 switch (short_option) {
1530 case 'c':
1531 m_cache_dir.assign(option_arg);
1532 break;
1533
1534 default:
1535 error.SetErrorStringWithFormat("unrecognized option '%c'", short_option);
1536 break;
1537 }
1538
1539 return error;
1540}
1541
Kate Stoneb9c1b512016-09-06 20:57:50 +00001542size_t Platform::GetEnvironment(StringList &environment) {
1543 environment.Clear();
1544 return false;
1545}
1546
1547const std::vector<ConstString> &Platform::GetTrapHandlerSymbolNames() {
1548 if (!m_calculated_trap_handlers) {
1549 std::lock_guard<std::mutex> guard(m_mutex);
1550 if (!m_calculated_trap_handlers) {
1551 CalculateTrapHandlerSymbolNames();
1552 m_calculated_trap_handlers = true;
Daniel Maleae0f8f572013-08-26 23:57:52 +00001553 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001554 }
1555 return m_trap_handlers;
Daniel Maleae0f8f572013-08-26 23:57:52 +00001556}
1557
Zachary Turner97206d52017-05-12 04:51:55 +00001558Status Platform::GetCachedExecutable(
1559 ModuleSpec &module_spec, lldb::ModuleSP &module_sp,
1560 const FileSpecList *module_search_paths_ptr, Platform &remote_platform) {
Kate Stoneb9c1b512016-09-06 20:57:50 +00001561 const auto platform_spec = module_spec.GetFileSpec();
1562 const auto error = LoadCachedExecutable(
1563 module_spec, module_sp, module_search_paths_ptr, remote_platform);
1564 if (error.Success()) {
1565 module_spec.GetFileSpec() = module_sp->GetFileSpec();
1566 module_spec.GetPlatformFileSpec() = platform_spec;
1567 }
1568
1569 return error;
Daniel Maleae0f8f572013-08-26 23:57:52 +00001570}
1571
Zachary Turner97206d52017-05-12 04:51:55 +00001572Status Platform::LoadCachedExecutable(
Kate Stoneb9c1b512016-09-06 20:57:50 +00001573 const ModuleSpec &module_spec, lldb::ModuleSP &module_sp,
1574 const FileSpecList *module_search_paths_ptr, Platform &remote_platform) {
1575 return GetRemoteSharedModule(module_spec, nullptr, module_sp,
1576 [&](const ModuleSpec &spec) {
1577 return remote_platform.ResolveExecutable(
1578 spec, module_sp, module_search_paths_ptr);
1579 },
1580 nullptr);
Daniel Maleae0f8f572013-08-26 23:57:52 +00001581}
1582
Zachary Turner97206d52017-05-12 04:51:55 +00001583Status Platform::GetRemoteSharedModule(const ModuleSpec &module_spec,
1584 Process *process,
1585 lldb::ModuleSP &module_sp,
1586 const ModuleResolver &module_resolver,
1587 bool *did_create_ptr) {
Kate Stoneb9c1b512016-09-06 20:57:50 +00001588 // Get module information from a target.
1589 ModuleSpec resolved_module_spec;
1590 bool got_module_spec = false;
1591 if (process) {
1592 // Try to get module information from the process
1593 if (process->GetModuleSpec(module_spec.GetFileSpec(),
1594 module_spec.GetArchitecture(),
1595 resolved_module_spec)) {
1596 if (module_spec.GetUUID().IsValid() == false ||
1597 module_spec.GetUUID() == resolved_module_spec.GetUUID()) {
1598 got_module_spec = true;
1599 }
Daniel Maleae0f8f572013-08-26 23:57:52 +00001600 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001601 }
Daniel Maleae0f8f572013-08-26 23:57:52 +00001602
Jason Molenda3fce2fd2016-10-05 02:29:13 +00001603 if (module_spec.GetArchitecture().IsValid() == false) {
Zachary Turner97206d52017-05-12 04:51:55 +00001604 Status error;
Jason Molenda3fce2fd2016-10-05 02:29:13 +00001605 // No valid architecture was specified, ask the platform for
1606 // the architectures that we should be using (in the correct order)
1607 // and see if we can find a match that way
1608 ModuleSpec arch_module_spec(module_spec);
1609 for (uint32_t idx = 0; GetSupportedArchitectureAtIndex(
1610 idx, arch_module_spec.GetArchitecture());
1611 ++idx) {
1612 error = ModuleList::GetSharedModule(arch_module_spec, module_sp, nullptr,
1613 nullptr, nullptr);
1614 // Did we find an executable using one of the
1615 if (error.Success() && module_sp)
1616 break;
1617 }
1618 if (module_sp)
1619 got_module_spec = true;
1620 }
1621
Kate Stoneb9c1b512016-09-06 20:57:50 +00001622 if (!got_module_spec) {
Oleksiy Vyalov037f6b92015-03-24 23:45:49 +00001623 // Get module information from a target.
Kate Stoneb9c1b512016-09-06 20:57:50 +00001624 if (!GetModuleSpec(module_spec.GetFileSpec(), module_spec.GetArchitecture(),
1625 resolved_module_spec)) {
1626 if (module_spec.GetUUID().IsValid() == false ||
1627 module_spec.GetUUID() == resolved_module_spec.GetUUID()) {
1628 return module_resolver(module_spec);
1629 }
Tamas Berghammer7cb18bf2015-03-24 11:15:23 +00001630 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001631 }
Tamas Berghammer7cb18bf2015-03-24 11:15:23 +00001632
Kate Stoneb9c1b512016-09-06 20:57:50 +00001633 // If we are looking for a specific UUID, make sure resolved_module_spec has
1634 // the same one before we search.
1635 if (module_spec.GetUUID().IsValid()) {
1636 resolved_module_spec.GetUUID() = module_spec.GetUUID();
1637 }
Jason Molenda85967fa2016-07-12 03:25:22 +00001638
Kate Stoneb9c1b512016-09-06 20:57:50 +00001639 // Trying to find a module by UUID on local file system.
1640 const auto error = module_resolver(resolved_module_spec);
1641 if (error.Fail()) {
1642 if (GetCachedSharedModule(resolved_module_spec, module_sp, did_create_ptr))
Zachary Turner97206d52017-05-12 04:51:55 +00001643 return Status();
Kate Stoneb9c1b512016-09-06 20:57:50 +00001644 }
Oleksiy Vyalov63acdfd2015-03-10 01:15:28 +00001645
Kate Stoneb9c1b512016-09-06 20:57:50 +00001646 return error;
Oleksiy Vyalov037f6b92015-03-24 23:45:49 +00001647}
1648
Kate Stoneb9c1b512016-09-06 20:57:50 +00001649bool Platform::GetCachedSharedModule(const ModuleSpec &module_spec,
1650 lldb::ModuleSP &module_sp,
1651 bool *did_create_ptr) {
1652 if (IsHost() || !GetGlobalPlatformProperties()->GetUseModuleCache() ||
1653 !GetGlobalPlatformProperties()->GetModuleCacheDirectory())
Oleksiy Vyalov280d8dc2015-04-15 14:35:10 +00001654 return false;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001655
1656 Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM);
1657
1658 // Check local cache for a module.
1659 auto error = m_module_cache->GetAndPut(
1660 GetModuleCacheRoot(), GetCacheHostname(), module_spec,
1661 [this](const ModuleSpec &module_spec,
1662 const FileSpec &tmp_download_file_spec) {
1663 return DownloadModuleSlice(
1664 module_spec.GetFileSpec(), module_spec.GetObjectOffset(),
1665 module_spec.GetObjectSize(), tmp_download_file_spec);
1666
1667 },
1668 [this](const ModuleSP &module_sp,
1669 const FileSpec &tmp_download_file_spec) {
1670 return DownloadSymbolFile(module_sp, tmp_download_file_spec);
1671 },
1672 module_sp, did_create_ptr);
1673 if (error.Success())
1674 return true;
1675
1676 if (log)
1677 log->Printf("Platform::%s - module %s not found in local cache: %s",
1678 __FUNCTION__, module_spec.GetUUID().GetAsString().c_str(),
1679 error.AsCString());
1680 return false;
Oleksiy Vyalov63acdfd2015-03-10 01:15:28 +00001681}
1682
Zachary Turner97206d52017-05-12 04:51:55 +00001683Status Platform::DownloadModuleSlice(const FileSpec &src_file_spec,
1684 const uint64_t src_offset,
1685 const uint64_t src_size,
1686 const FileSpec &dst_file_spec) {
1687 Status error;
Oleksiy Vyalov63acdfd2015-03-10 01:15:28 +00001688
Pavel Labathe3ad2e22017-03-21 13:49:50 +00001689 std::error_code EC;
1690 llvm::raw_fd_ostream dst(dst_file_spec.GetPath(), EC, llvm::sys::fs::F_None);
1691 if (EC) {
Kate Stoneb9c1b512016-09-06 20:57:50 +00001692 error.SetErrorStringWithFormat("unable to open destination file: %s",
1693 dst_file_spec.GetPath().c_str());
Oleksiy Vyalov63acdfd2015-03-10 01:15:28 +00001694 return error;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001695 }
Oleksiy Vyalov63acdfd2015-03-10 01:15:28 +00001696
Kate Stoneb9c1b512016-09-06 20:57:50 +00001697 auto src_fd = OpenFile(src_file_spec, File::eOpenOptionRead,
1698 lldb::eFilePermissionsFileDefault, error);
Tamas Berghammerec3f92a2015-08-12 11:10:25 +00001699
Kate Stoneb9c1b512016-09-06 20:57:50 +00001700 if (error.Fail()) {
1701 error.SetErrorStringWithFormat("unable to open source file: %s",
1702 error.AsCString());
1703 return error;
1704 }
Oleksiy Vyalov6f001062015-03-25 17:58:13 +00001705
Kate Stoneb9c1b512016-09-06 20:57:50 +00001706 std::vector<char> buffer(1024);
1707 auto offset = src_offset;
1708 uint64_t total_bytes_read = 0;
1709 while (total_bytes_read < src_size) {
1710 const auto to_read = std::min(static_cast<uint64_t>(buffer.size()),
1711 src_size - total_bytes_read);
1712 const uint64_t n_read =
1713 ReadFile(src_fd, offset, &buffer[0], to_read, error);
Tamas Berghammerccd6cff2015-12-08 14:08:19 +00001714 if (error.Fail())
Kate Stoneb9c1b512016-09-06 20:57:50 +00001715 break;
1716 if (n_read == 0) {
1717 error.SetErrorString("read 0 bytes");
1718 break;
1719 }
1720 offset += n_read;
1721 total_bytes_read += n_read;
1722 dst.write(&buffer[0], n_read);
1723 }
Tamas Berghammerccd6cff2015-12-08 14:08:19 +00001724
Zachary Turner97206d52017-05-12 04:51:55 +00001725 Status close_error;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001726 CloseFile(src_fd, close_error); // Ignoring close error.
1727
1728 return error;
Tamas Berghammerccd6cff2015-12-08 14:08:19 +00001729}
1730
Zachary Turner97206d52017-05-12 04:51:55 +00001731Status Platform::DownloadSymbolFile(const lldb::ModuleSP &module_sp,
1732 const FileSpec &dst_file_spec) {
1733 return Status(
Kate Stoneb9c1b512016-09-06 20:57:50 +00001734 "Symbol file downloading not supported by the default platform.");
Tamas Berghammerccd6cff2015-12-08 14:08:19 +00001735}
Aidan Dodds933d8db2016-02-22 17:29:56 +00001736
Kate Stoneb9c1b512016-09-06 20:57:50 +00001737FileSpec Platform::GetModuleCacheRoot() {
1738 auto dir_spec = GetGlobalPlatformProperties()->GetModuleCacheDirectory();
1739 dir_spec.AppendPathComponent(GetName().AsCString());
1740 return dir_spec;
1741}
Aidan Dodds933d8db2016-02-22 17:29:56 +00001742
Kate Stoneb9c1b512016-09-06 20:57:50 +00001743const char *Platform::GetCacheHostname() { return GetHostname(); }
Aidan Dodds933d8db2016-02-22 17:29:56 +00001744
Kate Stoneb9c1b512016-09-06 20:57:50 +00001745const UnixSignalsSP &Platform::GetRemoteUnixSignals() {
1746 static const auto s_default_unix_signals_sp = std::make_shared<UnixSignals>();
1747 return s_default_unix_signals_sp;
1748}
Aidan Dodds933d8db2016-02-22 17:29:56 +00001749
Kate Stoneb9c1b512016-09-06 20:57:50 +00001750const UnixSignalsSP &Platform::GetUnixSignals() {
1751 if (IsHost())
1752 return Host::GetUnixSignals();
1753 return GetRemoteUnixSignals();
1754}
Aidan Dodds933d8db2016-02-22 17:29:56 +00001755
Kate Stoneb9c1b512016-09-06 20:57:50 +00001756uint32_t Platform::LoadImage(lldb_private::Process *process,
1757 const lldb_private::FileSpec &local_file,
1758 const lldb_private::FileSpec &remote_file,
Zachary Turner97206d52017-05-12 04:51:55 +00001759 lldb_private::Status &error) {
Kate Stoneb9c1b512016-09-06 20:57:50 +00001760 if (local_file && remote_file) {
1761 // Both local and remote file was specified. Install the local file to the
1762 // given location.
1763 if (IsRemote() || local_file != remote_file) {
1764 error = Install(local_file, remote_file);
1765 if (error.Fail())
1766 return LLDB_INVALID_IMAGE_TOKEN;
1767 }
1768 return DoLoadImage(process, remote_file, error);
1769 }
Aidan Dodds933d8db2016-02-22 17:29:56 +00001770
Kate Stoneb9c1b512016-09-06 20:57:50 +00001771 if (local_file) {
1772 // Only local file was specified. Install it to the current working
1773 // directory.
1774 FileSpec target_file = GetWorkingDirectory();
1775 target_file.AppendPathComponent(local_file.GetFilename().AsCString());
1776 if (IsRemote() || local_file != target_file) {
1777 error = Install(local_file, target_file);
1778 if (error.Fail())
1779 return LLDB_INVALID_IMAGE_TOKEN;
1780 }
1781 return DoLoadImage(process, target_file, error);
1782 }
Aidan Dodds933d8db2016-02-22 17:29:56 +00001783
Kate Stoneb9c1b512016-09-06 20:57:50 +00001784 if (remote_file) {
1785 // Only remote file was specified so we don't have to do any copying
1786 return DoLoadImage(process, remote_file, error);
1787 }
Aidan Dodds933d8db2016-02-22 17:29:56 +00001788
Kate Stoneb9c1b512016-09-06 20:57:50 +00001789 error.SetErrorString("Neither local nor remote file was specified");
1790 return LLDB_INVALID_IMAGE_TOKEN;
1791}
Aidan Dodds933d8db2016-02-22 17:29:56 +00001792
Kate Stoneb9c1b512016-09-06 20:57:50 +00001793uint32_t Platform::DoLoadImage(lldb_private::Process *process,
1794 const lldb_private::FileSpec &remote_file,
Zachary Turner97206d52017-05-12 04:51:55 +00001795 lldb_private::Status &error) {
Kate Stoneb9c1b512016-09-06 20:57:50 +00001796 error.SetErrorString("LoadImage is not supported on the current platform");
1797 return LLDB_INVALID_IMAGE_TOKEN;
1798}
Ulrich Weigandbb00d0b2016-04-14 14:28:34 +00001799
Zachary Turner97206d52017-05-12 04:51:55 +00001800Status Platform::UnloadImage(lldb_private::Process *process,
1801 uint32_t image_token) {
1802 return Status("UnloadImage is not supported on the current platform");
Kate Stoneb9c1b512016-09-06 20:57:50 +00001803}
Aidan Dodds933d8db2016-02-22 17:29:56 +00001804
Zachary Turner31659452016-11-17 21:15:14 +00001805lldb::ProcessSP Platform::ConnectProcess(llvm::StringRef connect_url,
1806 llvm::StringRef plugin_name,
Kate Stoneb9c1b512016-09-06 20:57:50 +00001807 lldb_private::Debugger &debugger,
1808 lldb_private::Target *target,
Zachary Turner97206d52017-05-12 04:51:55 +00001809 lldb_private::Status &error) {
Kate Stoneb9c1b512016-09-06 20:57:50 +00001810 error.Clear();
Aidan Dodds933d8db2016-02-22 17:29:56 +00001811
Kate Stoneb9c1b512016-09-06 20:57:50 +00001812 if (!target) {
1813 TargetSP new_target_sp;
Zachary Turnera47464b2016-11-18 20:44:46 +00001814 error = debugger.GetTargetList().CreateTarget(debugger, "", "", false,
1815 nullptr, new_target_sp);
Kate Stoneb9c1b512016-09-06 20:57:50 +00001816 target = new_target_sp.get();
1817 }
Aidan Dodds933d8db2016-02-22 17:29:56 +00001818
Kate Stoneb9c1b512016-09-06 20:57:50 +00001819 if (!target || error.Fail())
1820 return nullptr;
1821
1822 debugger.GetTargetList().SetSelectedTarget(target);
1823
1824 lldb::ProcessSP process_sp =
1825 target->CreateProcess(debugger.GetListener(), plugin_name, nullptr);
1826 if (!process_sp)
1827 return nullptr;
1828
1829 error =
1830 process_sp->ConnectRemote(debugger.GetOutputFile().get(), connect_url);
1831 if (error.Fail())
1832 return nullptr;
1833
1834 return process_sp;
1835}
1836
1837size_t Platform::ConnectToWaitingProcesses(lldb_private::Debugger &debugger,
Zachary Turner97206d52017-05-12 04:51:55 +00001838 lldb_private::Status &error) {
Kate Stoneb9c1b512016-09-06 20:57:50 +00001839 error.Clear();
1840 return 0;
1841}
1842
1843size_t Platform::GetSoftwareBreakpointTrapOpcode(Target &target,
1844 BreakpointSite *bp_site) {
1845 ArchSpec arch = target.GetArchitecture();
1846 const uint8_t *trap_opcode = nullptr;
1847 size_t trap_opcode_size = 0;
1848
1849 switch (arch.GetMachine()) {
1850 case llvm::Triple::aarch64: {
1851 static const uint8_t g_aarch64_opcode[] = {0x00, 0x00, 0x20, 0xd4};
1852 trap_opcode = g_aarch64_opcode;
1853 trap_opcode_size = sizeof(g_aarch64_opcode);
1854 } break;
1855
1856 // TODO: support big-endian arm and thumb trap codes.
1857 case llvm::Triple::arm: {
1858 // The ARM reference recommends the use of 0xe7fddefe and 0xdefe
1859 // but the linux kernel does otherwise.
1860 static const uint8_t g_arm_breakpoint_opcode[] = {0xf0, 0x01, 0xf0, 0xe7};
1861 static const uint8_t g_thumb_breakpoint_opcode[] = {0x01, 0xde};
1862
1863 lldb::BreakpointLocationSP bp_loc_sp(bp_site->GetOwnerAtIndex(0));
1864 AddressClass addr_class = eAddressClassUnknown;
1865
1866 if (bp_loc_sp) {
1867 addr_class = bp_loc_sp->GetAddress().GetAddressClass();
1868 if (addr_class == eAddressClassUnknown &&
1869 (bp_loc_sp->GetAddress().GetFileAddress() & 1))
1870 addr_class = eAddressClassCodeAlternateISA;
Aidan Dodds933d8db2016-02-22 17:29:56 +00001871 }
1872
Kate Stoneb9c1b512016-09-06 20:57:50 +00001873 if (addr_class == eAddressClassCodeAlternateISA) {
1874 trap_opcode = g_thumb_breakpoint_opcode;
1875 trap_opcode_size = sizeof(g_thumb_breakpoint_opcode);
1876 } else {
1877 trap_opcode = g_arm_breakpoint_opcode;
1878 trap_opcode_size = sizeof(g_arm_breakpoint_opcode);
1879 }
1880 } break;
Aidan Dodds933d8db2016-02-22 17:29:56 +00001881
Kate Stoneb9c1b512016-09-06 20:57:50 +00001882 case llvm::Triple::mips:
1883 case llvm::Triple::mips64: {
1884 static const uint8_t g_hex_opcode[] = {0x00, 0x00, 0x00, 0x0d};
1885 trap_opcode = g_hex_opcode;
1886 trap_opcode_size = sizeof(g_hex_opcode);
1887 } break;
1888
1889 case llvm::Triple::mipsel:
1890 case llvm::Triple::mips64el: {
1891 static const uint8_t g_hex_opcode[] = {0x0d, 0x00, 0x00, 0x00};
1892 trap_opcode = g_hex_opcode;
1893 trap_opcode_size = sizeof(g_hex_opcode);
1894 } break;
1895
1896 case llvm::Triple::systemz: {
1897 static const uint8_t g_hex_opcode[] = {0x00, 0x01};
1898 trap_opcode = g_hex_opcode;
1899 trap_opcode_size = sizeof(g_hex_opcode);
1900 } break;
1901
1902 case llvm::Triple::hexagon: {
1903 static const uint8_t g_hex_opcode[] = {0x0c, 0xdb, 0x00, 0x54};
1904 trap_opcode = g_hex_opcode;
1905 trap_opcode_size = sizeof(g_hex_opcode);
1906 } break;
1907
1908 case llvm::Triple::ppc:
1909 case llvm::Triple::ppc64: {
1910 static const uint8_t g_ppc_opcode[] = {0x7f, 0xe0, 0x00, 0x08};
1911 trap_opcode = g_ppc_opcode;
1912 trap_opcode_size = sizeof(g_ppc_opcode);
1913 } break;
1914
Eugene Zemtsovaae0a752017-10-05 19:44:05 +00001915 case llvm::Triple::ppc64le: {
1916 static const uint8_t g_ppc64le_opcode[] = {0x08, 0x00, 0xe0, 0x7f}; // trap
1917 trap_opcode = g_ppc64le_opcode;
1918 trap_opcode_size = sizeof(g_ppc64le_opcode);
1919 } break;
1920
Kate Stoneb9c1b512016-09-06 20:57:50 +00001921 case llvm::Triple::x86:
1922 case llvm::Triple::x86_64: {
1923 static const uint8_t g_i386_opcode[] = {0xCC};
1924 trap_opcode = g_i386_opcode;
1925 trap_opcode_size = sizeof(g_i386_opcode);
1926 } break;
1927
1928 default:
David Blaikiea322f362017-01-06 00:38:06 +00001929 llvm_unreachable(
1930 "Unhandled architecture in Platform::GetSoftwareBreakpointTrapOpcode");
Kate Stoneb9c1b512016-09-06 20:57:50 +00001931 }
1932
1933 assert(bp_site);
1934 if (bp_site->SetTrapOpcode(trap_opcode, trap_opcode_size))
1935 return trap_opcode_size;
1936
1937 return 0;
Aidan Dodds933d8db2016-02-22 17:29:56 +00001938}