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 if (FileSystem::Instance().Exists(module_spec.GetFileSpec())) { 837 if (module_spec.GetArchitecture().IsValid()) { 838 error = ModuleList::GetSharedModule(module_spec, exe_module_sp, 839 module_search_paths_ptr, nullptr, 840 nullptr); 841 } else { 842 // No valid architecture was specified, ask the platform for the 843 // architectures that we should be using (in the correct order) and see 844 // if we can find a match that way 845 ModuleSpec arch_module_spec(module_spec); 846 for (uint32_t idx = 0; GetSupportedArchitectureAtIndex( 847 idx, arch_module_spec.GetArchitecture()); 848 ++idx) { 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("'%s' does not exist", 859 module_spec.GetFileSpec().GetPath().c_str()); 860 } 861 return error; 862 } 863 864 Status Platform::ResolveSymbolFile(Target &target, const ModuleSpec &sym_spec, 865 FileSpec &sym_file) { 866 Status error; 867 if (FileSystem::Instance().Exists(sym_spec.GetSymbolFileSpec())) 868 sym_file = sym_spec.GetSymbolFileSpec(); 869 else 870 error.SetErrorString("unable to resolve symbol file"); 871 return error; 872 } 873 874 bool Platform::ResolveRemotePath(const FileSpec &platform_path, 875 FileSpec &resolved_platform_path) { 876 resolved_platform_path = platform_path; 877 FileSystem::Instance().Resolve(resolved_platform_path); 878 return true; 879 } 880 881 const ArchSpec &Platform::GetSystemArchitecture() { 882 if (IsHost()) { 883 if (!m_system_arch.IsValid()) { 884 // We have a local host platform 885 m_system_arch = HostInfo::GetArchitecture(); 886 m_system_arch_set_while_connected = m_system_arch.IsValid(); 887 } 888 } else { 889 // We have a remote platform. We can only fetch the remote system 890 // architecture if we are connected, and we don't want to do it more than 891 // once. 892 893 const bool is_connected = IsConnected(); 894 895 bool fetch = false; 896 if (m_system_arch.IsValid()) { 897 // We have valid OS version info, check to make sure it wasn't manually 898 // set prior to connecting. If it was manually set prior to connecting, 899 // then lets fetch the actual OS version info if we are now connected. 900 if (is_connected && !m_system_arch_set_while_connected) 901 fetch = true; 902 } else { 903 // We don't have valid OS version info, fetch it if we are connected 904 fetch = is_connected; 905 } 906 907 if (fetch) { 908 m_system_arch = GetRemoteSystemArchitecture(); 909 m_system_arch_set_while_connected = m_system_arch.IsValid(); 910 } 911 } 912 return m_system_arch; 913 } 914 915 ArchSpec Platform::GetAugmentedArchSpec(llvm::StringRef triple) { 916 if (triple.empty()) 917 return ArchSpec(); 918 llvm::Triple normalized_triple(llvm::Triple::normalize(triple)); 919 if (!ArchSpec::ContainsOnlyArch(normalized_triple)) 920 return ArchSpec(triple); 921 922 if (auto kind = HostInfo::ParseArchitectureKind(triple)) 923 return HostInfo::GetArchitecture(*kind); 924 925 ArchSpec compatible_arch; 926 ArchSpec raw_arch(triple); 927 if (!IsCompatibleArchitecture(raw_arch, false, &compatible_arch)) 928 return raw_arch; 929 930 if (!compatible_arch.IsValid()) 931 return ArchSpec(normalized_triple); 932 933 const llvm::Triple &compatible_triple = compatible_arch.GetTriple(); 934 if (normalized_triple.getVendorName().empty()) 935 normalized_triple.setVendor(compatible_triple.getVendor()); 936 if (normalized_triple.getOSName().empty()) 937 normalized_triple.setOS(compatible_triple.getOS()); 938 if (normalized_triple.getEnvironmentName().empty()) 939 normalized_triple.setEnvironment(compatible_triple.getEnvironment()); 940 return ArchSpec(normalized_triple); 941 } 942 943 Status Platform::ConnectRemote(Args &args) { 944 Status error; 945 if (IsHost()) 946 error.SetErrorStringWithFormatv( 947 "The currently selected platform ({0}) is " 948 "the host platform and is always connected.", 949 GetPluginName()); 950 else 951 error.SetErrorStringWithFormatv( 952 "Platform::ConnectRemote() is not supported by {0}", GetPluginName()); 953 return error; 954 } 955 956 Status Platform::DisconnectRemote() { 957 Status error; 958 if (IsHost()) 959 error.SetErrorStringWithFormatv( 960 "The currently selected platform ({0}) is " 961 "the host platform and is always connected.", 962 GetPluginName()); 963 else 964 error.SetErrorStringWithFormatv( 965 "Platform::DisconnectRemote() is not supported by {0}", 966 GetPluginName()); 967 return error; 968 } 969 970 bool Platform::GetProcessInfo(lldb::pid_t pid, 971 ProcessInstanceInfo &process_info) { 972 // Take care of the host case so that each subclass can just call this 973 // function to get the host functionality. 974 if (IsHost()) 975 return Host::GetProcessInfo(pid, process_info); 976 return false; 977 } 978 979 uint32_t Platform::FindProcesses(const ProcessInstanceInfoMatch &match_info, 980 ProcessInstanceInfoList &process_infos) { 981 // Take care of the host case so that each subclass can just call this 982 // function to get the host functionality. 983 uint32_t match_count = 0; 984 if (IsHost()) 985 match_count = Host::FindProcesses(match_info, process_infos); 986 return match_count; 987 } 988 989 Status Platform::LaunchProcess(ProcessLaunchInfo &launch_info) { 990 Status error; 991 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM)); 992 LLDB_LOGF(log, "Platform::%s()", __FUNCTION__); 993 994 // Take care of the host case so that each subclass can just call this 995 // function to get the host functionality. 996 if (IsHost()) { 997 if (::getenv("LLDB_LAUNCH_FLAG_LAUNCH_IN_TTY")) 998 launch_info.GetFlags().Set(eLaunchFlagLaunchInTTY); 999 1000 if (launch_info.GetFlags().Test(eLaunchFlagLaunchInShell)) { 1001 const bool will_debug = launch_info.GetFlags().Test(eLaunchFlagDebug); 1002 const bool first_arg_is_full_shell_command = false; 1003 uint32_t num_resumes = GetResumeCountForLaunchInfo(launch_info); 1004 if (log) { 1005 const FileSpec &shell = launch_info.GetShell(); 1006 std::string shell_str = (shell) ? shell.GetPath() : "<null>"; 1007 LLDB_LOGF(log, 1008 "Platform::%s GetResumeCountForLaunchInfo() returned %" PRIu32 1009 ", shell is '%s'", 1010 __FUNCTION__, num_resumes, shell_str.c_str()); 1011 } 1012 1013 if (!launch_info.ConvertArgumentsForLaunchingInShell( 1014 error, will_debug, first_arg_is_full_shell_command, num_resumes)) 1015 return error; 1016 } else if (launch_info.GetFlags().Test(eLaunchFlagShellExpandArguments)) { 1017 error = ShellExpandArguments(launch_info); 1018 if (error.Fail()) { 1019 error.SetErrorStringWithFormat("shell expansion failed (reason: %s). " 1020 "consider launching with 'process " 1021 "launch'.", 1022 error.AsCString("unknown")); 1023 return error; 1024 } 1025 } 1026 1027 LLDB_LOGF(log, "Platform::%s final launch_info resume count: %" PRIu32, 1028 __FUNCTION__, launch_info.GetResumeCount()); 1029 1030 error = Host::LaunchProcess(launch_info); 1031 } else 1032 error.SetErrorString( 1033 "base lldb_private::Platform class can't launch remote processes"); 1034 return error; 1035 } 1036 1037 Status Platform::ShellExpandArguments(ProcessLaunchInfo &launch_info) { 1038 if (IsHost()) 1039 return Host::ShellExpandArguments(launch_info); 1040 return Status("base lldb_private::Platform class can't expand arguments"); 1041 } 1042 1043 Status Platform::KillProcess(const lldb::pid_t pid) { 1044 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM)); 1045 LLDB_LOGF(log, "Platform::%s, pid %" PRIu64, __FUNCTION__, pid); 1046 1047 // Try to find a process plugin to handle this Kill request. If we can't, 1048 // fall back to the default OS implementation. 1049 size_t num_debuggers = Debugger::GetNumDebuggers(); 1050 for (size_t didx = 0; didx < num_debuggers; ++didx) { 1051 DebuggerSP debugger = Debugger::GetDebuggerAtIndex(didx); 1052 lldb_private::TargetList &targets = debugger->GetTargetList(); 1053 for (int tidx = 0; tidx < targets.GetNumTargets(); ++tidx) { 1054 ProcessSP process = targets.GetTargetAtIndex(tidx)->GetProcessSP(); 1055 if (process->GetID() == pid) 1056 return process->Destroy(true); 1057 } 1058 } 1059 1060 if (!IsHost()) { 1061 return Status( 1062 "base lldb_private::Platform class can't kill remote processes unless " 1063 "they are controlled by a process plugin"); 1064 } 1065 Host::Kill(pid, SIGTERM); 1066 return Status(); 1067 } 1068 1069 lldb::ProcessSP Platform::DebugProcess(ProcessLaunchInfo &launch_info, 1070 Debugger &debugger, Target &target, 1071 Status &error) { 1072 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM)); 1073 LLDB_LOG(log, "target = {0})", &target); 1074 1075 ProcessSP process_sp; 1076 // Make sure we stop at the entry point 1077 launch_info.GetFlags().Set(eLaunchFlagDebug); 1078 // We always launch the process we are going to debug in a separate process 1079 // group, since then we can handle ^C interrupts ourselves w/o having to 1080 // worry about the target getting them as well. 1081 launch_info.SetLaunchInSeparateProcessGroup(true); 1082 1083 // Allow any StructuredData process-bound plugins to adjust the launch info 1084 // if needed 1085 size_t i = 0; 1086 bool iteration_complete = false; 1087 // Note iteration can't simply go until a nullptr callback is returned, as it 1088 // is valid for a plugin to not supply a filter. 1089 auto get_filter_func = PluginManager::GetStructuredDataFilterCallbackAtIndex; 1090 for (auto filter_callback = get_filter_func(i, iteration_complete); 1091 !iteration_complete; 1092 filter_callback = get_filter_func(++i, iteration_complete)) { 1093 if (filter_callback) { 1094 // Give this ProcessLaunchInfo filter a chance to adjust the launch info. 1095 error = (*filter_callback)(launch_info, &target); 1096 if (!error.Success()) { 1097 LLDB_LOGF(log, 1098 "Platform::%s() StructuredDataPlugin launch " 1099 "filter failed.", 1100 __FUNCTION__); 1101 return process_sp; 1102 } 1103 } 1104 } 1105 1106 error = LaunchProcess(launch_info); 1107 if (error.Success()) { 1108 LLDB_LOGF(log, 1109 "Platform::%s LaunchProcess() call succeeded (pid=%" PRIu64 ")", 1110 __FUNCTION__, launch_info.GetProcessID()); 1111 if (launch_info.GetProcessID() != LLDB_INVALID_PROCESS_ID) { 1112 ProcessAttachInfo attach_info(launch_info); 1113 process_sp = Attach(attach_info, debugger, &target, error); 1114 if (process_sp) { 1115 LLDB_LOG(log, "Attach() succeeded, Process plugin: {0}", 1116 process_sp->GetPluginName()); 1117 launch_info.SetHijackListener(attach_info.GetHijackListener()); 1118 1119 // Since we attached to the process, it will think it needs to detach 1120 // if the process object just goes away without an explicit call to 1121 // Process::Kill() or Process::Detach(), so let it know to kill the 1122 // process if this happens. 1123 process_sp->SetShouldDetach(false); 1124 1125 // If we didn't have any file actions, the pseudo terminal might have 1126 // been used where the secondary side was given as the file to open for 1127 // stdin/out/err after we have already opened the master so we can 1128 // read/write stdin/out/err. 1129 int pty_fd = launch_info.GetPTY().ReleasePrimaryFileDescriptor(); 1130 if (pty_fd != PseudoTerminal::invalid_fd) { 1131 process_sp->SetSTDIOFileDescriptor(pty_fd); 1132 } 1133 } else { 1134 LLDB_LOGF(log, "Platform::%s Attach() failed: %s", __FUNCTION__, 1135 error.AsCString()); 1136 } 1137 } else { 1138 LLDB_LOGF(log, 1139 "Platform::%s LaunchProcess() returned launch_info with " 1140 "invalid process id", 1141 __FUNCTION__); 1142 } 1143 } else { 1144 LLDB_LOGF(log, "Platform::%s LaunchProcess() failed: %s", __FUNCTION__, 1145 error.AsCString()); 1146 } 1147 1148 return process_sp; 1149 } 1150 1151 lldb::PlatformSP 1152 Platform::GetPlatformForArchitecture(const ArchSpec &arch, 1153 ArchSpec *platform_arch_ptr) { 1154 lldb::PlatformSP platform_sp; 1155 Status error; 1156 if (arch.IsValid()) 1157 platform_sp = Platform::Create(arch, platform_arch_ptr, error); 1158 return platform_sp; 1159 } 1160 1161 /// Lets a platform answer if it is compatible with a given 1162 /// architecture and the target triple contained within. 1163 bool Platform::IsCompatibleArchitecture(const ArchSpec &arch, 1164 bool exact_arch_match, 1165 ArchSpec *compatible_arch_ptr) { 1166 // If the architecture is invalid, we must answer true... 1167 if (arch.IsValid()) { 1168 ArchSpec platform_arch; 1169 // Try for an exact architecture match first. 1170 if (exact_arch_match) { 1171 for (uint32_t arch_idx = 0; 1172 GetSupportedArchitectureAtIndex(arch_idx, platform_arch); 1173 ++arch_idx) { 1174 if (arch.IsExactMatch(platform_arch)) { 1175 if (compatible_arch_ptr) 1176 *compatible_arch_ptr = platform_arch; 1177 return true; 1178 } 1179 } 1180 } else { 1181 for (uint32_t arch_idx = 0; 1182 GetSupportedArchitectureAtIndex(arch_idx, platform_arch); 1183 ++arch_idx) { 1184 if (arch.IsCompatibleMatch(platform_arch)) { 1185 if (compatible_arch_ptr) 1186 *compatible_arch_ptr = platform_arch; 1187 return true; 1188 } 1189 } 1190 } 1191 } 1192 if (compatible_arch_ptr) 1193 compatible_arch_ptr->Clear(); 1194 return false; 1195 } 1196 1197 Status Platform::PutFile(const FileSpec &source, const FileSpec &destination, 1198 uint32_t uid, uint32_t gid) { 1199 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_PLATFORM)); 1200 LLDB_LOGF(log, "[PutFile] Using block by block transfer....\n"); 1201 1202 auto source_open_options = 1203 File::eOpenOptionReadOnly | File::eOpenOptionCloseOnExec; 1204 namespace fs = llvm::sys::fs; 1205 if (fs::is_symlink_file(source.GetPath())) 1206 source_open_options |= File::eOpenOptionDontFollowSymlinks; 1207 1208 auto source_file = FileSystem::Instance().Open(source, source_open_options, 1209 lldb::eFilePermissionsUserRW); 1210 if (!source_file) 1211 return Status(source_file.takeError()); 1212 Status error; 1213 uint32_t permissions = source_file.get()->GetPermissions(error); 1214 if (permissions == 0) 1215 permissions = lldb::eFilePermissionsFileDefault; 1216 1217 lldb::user_id_t dest_file = OpenFile( 1218 destination, File::eOpenOptionCanCreate | File::eOpenOptionWriteOnly | 1219 File::eOpenOptionTruncate | File::eOpenOptionCloseOnExec, 1220 permissions, error); 1221 LLDB_LOGF(log, "dest_file = %" PRIu64 "\n", dest_file); 1222 1223 if (error.Fail()) 1224 return error; 1225 if (dest_file == UINT64_MAX) 1226 return Status("unable to open target file"); 1227 lldb::DataBufferSP buffer_sp(new DataBufferHeap(1024 * 16, 0)); 1228 uint64_t offset = 0; 1229 for (;;) { 1230 size_t bytes_read = buffer_sp->GetByteSize(); 1231 error = source_file.get()->Read(buffer_sp->GetBytes(), bytes_read); 1232 if (error.Fail() || bytes_read == 0) 1233 break; 1234 1235 const uint64_t bytes_written = 1236 WriteFile(dest_file, offset, buffer_sp->GetBytes(), bytes_read, error); 1237 if (error.Fail()) 1238 break; 1239 1240 offset += bytes_written; 1241 if (bytes_written != bytes_read) { 1242 // We didn't write the correct number of bytes, so adjust the file 1243 // position in the source file we are reading from... 1244 source_file.get()->SeekFromStart(offset); 1245 } 1246 } 1247 CloseFile(dest_file, error); 1248 1249 if (uid == UINT32_MAX && gid == UINT32_MAX) 1250 return error; 1251 1252 // TODO: ChownFile? 1253 1254 return error; 1255 } 1256 1257 Status Platform::GetFile(const FileSpec &source, const FileSpec &destination) { 1258 Status error("unimplemented"); 1259 return error; 1260 } 1261 1262 Status 1263 Platform::CreateSymlink(const FileSpec &src, // The name of the link is in src 1264 const FileSpec &dst) // The symlink points to dst 1265 { 1266 Status error("unimplemented"); 1267 return error; 1268 } 1269 1270 bool Platform::GetFileExists(const lldb_private::FileSpec &file_spec) { 1271 return false; 1272 } 1273 1274 Status Platform::Unlink(const FileSpec &path) { 1275 Status error("unimplemented"); 1276 return error; 1277 } 1278 1279 MmapArgList Platform::GetMmapArgumentList(const ArchSpec &arch, addr_t addr, 1280 addr_t length, unsigned prot, 1281 unsigned flags, addr_t fd, 1282 addr_t offset) { 1283 uint64_t flags_platform = 0; 1284 if (flags & eMmapFlagsPrivate) 1285 flags_platform |= MAP_PRIVATE; 1286 if (flags & eMmapFlagsAnon) 1287 flags_platform |= MAP_ANON; 1288 1289 MmapArgList args({addr, length, prot, flags_platform, fd, offset}); 1290 return args; 1291 } 1292 1293 lldb_private::Status Platform::RunShellCommand( 1294 llvm::StringRef command, 1295 const FileSpec & 1296 working_dir, // Pass empty FileSpec to use the current working directory 1297 int *status_ptr, // Pass nullptr if you don't want the process exit status 1298 int *signo_ptr, // Pass nullptr if you don't want the signal that caused the 1299 // process to exit 1300 std::string 1301 *command_output, // Pass nullptr if you don't want the command output 1302 const Timeout<std::micro> &timeout) { 1303 return RunShellCommand(llvm::StringRef(), command, working_dir, status_ptr, 1304 signo_ptr, command_output, timeout); 1305 } 1306 1307 lldb_private::Status Platform::RunShellCommand( 1308 llvm::StringRef shell, // Pass empty if you want to use the default 1309 // shell interpreter 1310 llvm::StringRef command, // Shouldn't be empty 1311 const FileSpec & 1312 working_dir, // Pass empty FileSpec to use the current working directory 1313 int *status_ptr, // Pass nullptr if you don't want the process exit status 1314 int *signo_ptr, // Pass nullptr if you don't want the signal that caused the 1315 // process to exit 1316 std::string 1317 *command_output, // Pass nullptr if you don't want the command output 1318 const Timeout<std::micro> &timeout) { 1319 if (IsHost()) 1320 return Host::RunShellCommand(shell, command, working_dir, status_ptr, 1321 signo_ptr, command_output, timeout); 1322 else 1323 return Status("unimplemented"); 1324 } 1325 1326 bool Platform::CalculateMD5(const FileSpec &file_spec, uint64_t &low, 1327 uint64_t &high) { 1328 if (!IsHost()) 1329 return false; 1330 auto Result = llvm::sys::fs::md5_contents(file_spec.GetPath()); 1331 if (!Result) 1332 return false; 1333 std::tie(high, low) = Result->words(); 1334 return true; 1335 } 1336 1337 void Platform::SetLocalCacheDirectory(const char *local) { 1338 m_local_cache_directory.assign(local); 1339 } 1340 1341 const char *Platform::GetLocalCacheDirectory() { 1342 return m_local_cache_directory.c_str(); 1343 } 1344 1345 static constexpr OptionDefinition g_rsync_option_table[] = { 1346 {LLDB_OPT_SET_ALL, false, "rsync", 'r', OptionParser::eNoArgument, nullptr, 1347 {}, 0, eArgTypeNone, "Enable rsync."}, 1348 {LLDB_OPT_SET_ALL, false, "rsync-opts", 'R', 1349 OptionParser::eRequiredArgument, nullptr, {}, 0, eArgTypeCommandName, 1350 "Platform-specific options required for rsync to work."}, 1351 {LLDB_OPT_SET_ALL, false, "rsync-prefix", 'P', 1352 OptionParser::eRequiredArgument, nullptr, {}, 0, eArgTypeCommandName, 1353 "Platform-specific rsync prefix put before the remote path."}, 1354 {LLDB_OPT_SET_ALL, false, "ignore-remote-hostname", 'i', 1355 OptionParser::eNoArgument, nullptr, {}, 0, eArgTypeNone, 1356 "Do not automatically fill in the remote hostname when composing the " 1357 "rsync command."}, 1358 }; 1359 1360 static constexpr OptionDefinition g_ssh_option_table[] = { 1361 {LLDB_OPT_SET_ALL, false, "ssh", 's', OptionParser::eNoArgument, nullptr, 1362 {}, 0, eArgTypeNone, "Enable SSH."}, 1363 {LLDB_OPT_SET_ALL, false, "ssh-opts", 'S', OptionParser::eRequiredArgument, 1364 nullptr, {}, 0, eArgTypeCommandName, 1365 "Platform-specific options required for SSH to work."}, 1366 }; 1367 1368 static constexpr OptionDefinition g_caching_option_table[] = { 1369 {LLDB_OPT_SET_ALL, false, "local-cache-dir", 'c', 1370 OptionParser::eRequiredArgument, nullptr, {}, 0, eArgTypePath, 1371 "Path in which to store local copies of files."}, 1372 }; 1373 1374 llvm::ArrayRef<OptionDefinition> OptionGroupPlatformRSync::GetDefinitions() { 1375 return llvm::makeArrayRef(g_rsync_option_table); 1376 } 1377 1378 void OptionGroupPlatformRSync::OptionParsingStarting( 1379 ExecutionContext *execution_context) { 1380 m_rsync = false; 1381 m_rsync_opts.clear(); 1382 m_rsync_prefix.clear(); 1383 m_ignores_remote_hostname = false; 1384 } 1385 1386 lldb_private::Status 1387 OptionGroupPlatformRSync::SetOptionValue(uint32_t option_idx, 1388 llvm::StringRef option_arg, 1389 ExecutionContext *execution_context) { 1390 Status error; 1391 char short_option = (char)GetDefinitions()[option_idx].short_option; 1392 switch (short_option) { 1393 case 'r': 1394 m_rsync = true; 1395 break; 1396 1397 case 'R': 1398 m_rsync_opts.assign(std::string(option_arg)); 1399 break; 1400 1401 case 'P': 1402 m_rsync_prefix.assign(std::string(option_arg)); 1403 break; 1404 1405 case 'i': 1406 m_ignores_remote_hostname = true; 1407 break; 1408 1409 default: 1410 error.SetErrorStringWithFormat("unrecognized option '%c'", short_option); 1411 break; 1412 } 1413 1414 return error; 1415 } 1416 1417 lldb::BreakpointSP 1418 Platform::SetThreadCreationBreakpoint(lldb_private::Target &target) { 1419 return lldb::BreakpointSP(); 1420 } 1421 1422 llvm::ArrayRef<OptionDefinition> OptionGroupPlatformSSH::GetDefinitions() { 1423 return llvm::makeArrayRef(g_ssh_option_table); 1424 } 1425 1426 void OptionGroupPlatformSSH::OptionParsingStarting( 1427 ExecutionContext *execution_context) { 1428 m_ssh = false; 1429 m_ssh_opts.clear(); 1430 } 1431 1432 lldb_private::Status 1433 OptionGroupPlatformSSH::SetOptionValue(uint32_t option_idx, 1434 llvm::StringRef option_arg, 1435 ExecutionContext *execution_context) { 1436 Status error; 1437 char short_option = (char)GetDefinitions()[option_idx].short_option; 1438 switch (short_option) { 1439 case 's': 1440 m_ssh = true; 1441 break; 1442 1443 case 'S': 1444 m_ssh_opts.assign(std::string(option_arg)); 1445 break; 1446 1447 default: 1448 error.SetErrorStringWithFormat("unrecognized option '%c'", short_option); 1449 break; 1450 } 1451 1452 return error; 1453 } 1454 1455 llvm::ArrayRef<OptionDefinition> OptionGroupPlatformCaching::GetDefinitions() { 1456 return llvm::makeArrayRef(g_caching_option_table); 1457 } 1458 1459 void OptionGroupPlatformCaching::OptionParsingStarting( 1460 ExecutionContext *execution_context) { 1461 m_cache_dir.clear(); 1462 } 1463 1464 lldb_private::Status OptionGroupPlatformCaching::SetOptionValue( 1465 uint32_t option_idx, llvm::StringRef option_arg, 1466 ExecutionContext *execution_context) { 1467 Status error; 1468 char short_option = (char)GetDefinitions()[option_idx].short_option; 1469 switch (short_option) { 1470 case 'c': 1471 m_cache_dir.assign(std::string(option_arg)); 1472 break; 1473 1474 default: 1475 error.SetErrorStringWithFormat("unrecognized option '%c'", short_option); 1476 break; 1477 } 1478 1479 return error; 1480 } 1481 1482 Environment Platform::GetEnvironment() { return Environment(); } 1483 1484 const std::vector<ConstString> &Platform::GetTrapHandlerSymbolNames() { 1485 if (!m_calculated_trap_handlers) { 1486 std::lock_guard<std::mutex> guard(m_mutex); 1487 if (!m_calculated_trap_handlers) { 1488 CalculateTrapHandlerSymbolNames(); 1489 m_calculated_trap_handlers = true; 1490 } 1491 } 1492 return m_trap_handlers; 1493 } 1494 1495 Status Platform::GetCachedExecutable( 1496 ModuleSpec &module_spec, lldb::ModuleSP &module_sp, 1497 const FileSpecList *module_search_paths_ptr, Platform &remote_platform) { 1498 const auto platform_spec = module_spec.GetFileSpec(); 1499 const auto error = LoadCachedExecutable( 1500 module_spec, module_sp, module_search_paths_ptr, remote_platform); 1501 if (error.Success()) { 1502 module_spec.GetFileSpec() = module_sp->GetFileSpec(); 1503 module_spec.GetPlatformFileSpec() = platform_spec; 1504 } 1505 1506 return error; 1507 } 1508 1509 Status Platform::LoadCachedExecutable( 1510 const ModuleSpec &module_spec, lldb::ModuleSP &module_sp, 1511 const FileSpecList *module_search_paths_ptr, Platform &remote_platform) { 1512 return GetRemoteSharedModule(module_spec, nullptr, module_sp, 1513 [&](const ModuleSpec &spec) { 1514 return remote_platform.ResolveExecutable( 1515 spec, module_sp, module_search_paths_ptr); 1516 }, 1517 nullptr); 1518 } 1519 1520 Status Platform::GetRemoteSharedModule(const ModuleSpec &module_spec, 1521 Process *process, 1522 lldb::ModuleSP &module_sp, 1523 const ModuleResolver &module_resolver, 1524 bool *did_create_ptr) { 1525 // Get module information from a target. 1526 ModuleSpec resolved_module_spec; 1527 bool got_module_spec = false; 1528 if (process) { 1529 // Try to get module information from the process 1530 if (process->GetModuleSpec(module_spec.GetFileSpec(), 1531 module_spec.GetArchitecture(), 1532 resolved_module_spec)) { 1533 if (!module_spec.GetUUID().IsValid() || 1534 module_spec.GetUUID() == resolved_module_spec.GetUUID()) { 1535 got_module_spec = true; 1536 } 1537 } 1538 } 1539 1540 if (!module_spec.GetArchitecture().IsValid()) { 1541 Status error; 1542 // No valid architecture was specified, ask the platform for the 1543 // architectures that we should be using (in the correct order) and see if 1544 // we can find a match that way 1545 ModuleSpec arch_module_spec(module_spec); 1546 for (uint32_t idx = 0; GetSupportedArchitectureAtIndex( 1547 idx, arch_module_spec.GetArchitecture()); 1548 ++idx) { 1549 error = ModuleList::GetSharedModule(arch_module_spec, module_sp, nullptr, 1550 nullptr, nullptr); 1551 // Did we find an executable using one of the 1552 if (error.Success() && module_sp) 1553 break; 1554 } 1555 if (module_sp) { 1556 resolved_module_spec = arch_module_spec; 1557 got_module_spec = true; 1558 } 1559 } 1560 1561 if (!got_module_spec) { 1562 // Get module information from a target. 1563 if (GetModuleSpec(module_spec.GetFileSpec(), module_spec.GetArchitecture(), 1564 resolved_module_spec)) { 1565 if (!module_spec.GetUUID().IsValid() || 1566 module_spec.GetUUID() == resolved_module_spec.GetUUID()) { 1567 got_module_spec = true; 1568 } 1569 } 1570 } 1571 1572 if (!got_module_spec) { 1573 // Fall back to the given module resolver, which may have its own 1574 // search logic. 1575 return module_resolver(module_spec); 1576 } 1577 1578 // If we are looking for a specific UUID, make sure resolved_module_spec has 1579 // the same one before we search. 1580 if (module_spec.GetUUID().IsValid()) { 1581 resolved_module_spec.GetUUID() = module_spec.GetUUID(); 1582 } 1583 1584 // Trying to find a module by UUID on local file system. 1585 const auto error = module_resolver(resolved_module_spec); 1586 if (error.Fail()) { 1587 if (GetCachedSharedModule(resolved_module_spec, module_sp, did_create_ptr)) 1588 return Status(); 1589 } 1590 1591 return error; 1592 } 1593 1594 bool Platform::GetCachedSharedModule(const ModuleSpec &module_spec, 1595 lldb::ModuleSP &module_sp, 1596 bool *did_create_ptr) { 1597 if (IsHost() || !GetGlobalPlatformProperties().GetUseModuleCache() || 1598 !GetGlobalPlatformProperties().GetModuleCacheDirectory()) 1599 return false; 1600 1601 Log *log = GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM); 1602 1603 // Check local cache for a module. 1604 auto error = m_module_cache->GetAndPut( 1605 GetModuleCacheRoot(), GetCacheHostname(), module_spec, 1606 [this](const ModuleSpec &module_spec, 1607 const FileSpec &tmp_download_file_spec) { 1608 return DownloadModuleSlice( 1609 module_spec.GetFileSpec(), module_spec.GetObjectOffset(), 1610 module_spec.GetObjectSize(), tmp_download_file_spec); 1611 1612 }, 1613 [this](const ModuleSP &module_sp, 1614 const FileSpec &tmp_download_file_spec) { 1615 return DownloadSymbolFile(module_sp, tmp_download_file_spec); 1616 }, 1617 module_sp, did_create_ptr); 1618 if (error.Success()) 1619 return true; 1620 1621 LLDB_LOGF(log, "Platform::%s - module %s not found in local cache: %s", 1622 __FUNCTION__, module_spec.GetUUID().GetAsString().c_str(), 1623 error.AsCString()); 1624 return false; 1625 } 1626 1627 Status Platform::DownloadModuleSlice(const FileSpec &src_file_spec, 1628 const uint64_t src_offset, 1629 const uint64_t src_size, 1630 const FileSpec &dst_file_spec) { 1631 Status error; 1632 1633 std::error_code EC; 1634 llvm::raw_fd_ostream dst(dst_file_spec.GetPath(), EC, llvm::sys::fs::OF_None); 1635 if (EC) { 1636 error.SetErrorStringWithFormat("unable to open destination file: %s", 1637 dst_file_spec.GetPath().c_str()); 1638 return error; 1639 } 1640 1641 auto src_fd = OpenFile(src_file_spec, File::eOpenOptionReadOnly, 1642 lldb::eFilePermissionsFileDefault, error); 1643 1644 if (error.Fail()) { 1645 error.SetErrorStringWithFormat("unable to open source file: %s", 1646 error.AsCString()); 1647 return error; 1648 } 1649 1650 std::vector<char> buffer(1024); 1651 auto offset = src_offset; 1652 uint64_t total_bytes_read = 0; 1653 while (total_bytes_read < src_size) { 1654 const auto to_read = std::min(static_cast<uint64_t>(buffer.size()), 1655 src_size - total_bytes_read); 1656 const uint64_t n_read = 1657 ReadFile(src_fd, offset, &buffer[0], to_read, error); 1658 if (error.Fail()) 1659 break; 1660 if (n_read == 0) { 1661 error.SetErrorString("read 0 bytes"); 1662 break; 1663 } 1664 offset += n_read; 1665 total_bytes_read += n_read; 1666 dst.write(&buffer[0], n_read); 1667 } 1668 1669 Status close_error; 1670 CloseFile(src_fd, close_error); // Ignoring close error. 1671 1672 return error; 1673 } 1674 1675 Status Platform::DownloadSymbolFile(const lldb::ModuleSP &module_sp, 1676 const FileSpec &dst_file_spec) { 1677 return Status( 1678 "Symbol file downloading not supported by the default platform."); 1679 } 1680 1681 FileSpec Platform::GetModuleCacheRoot() { 1682 auto dir_spec = GetGlobalPlatformProperties().GetModuleCacheDirectory(); 1683 dir_spec.AppendPathComponent(GetName().AsCString()); 1684 return dir_spec; 1685 } 1686 1687 const char *Platform::GetCacheHostname() { return GetHostname(); } 1688 1689 const UnixSignalsSP &Platform::GetRemoteUnixSignals() { 1690 static const auto s_default_unix_signals_sp = std::make_shared<UnixSignals>(); 1691 return s_default_unix_signals_sp; 1692 } 1693 1694 UnixSignalsSP Platform::GetUnixSignals() { 1695 if (IsHost()) 1696 return UnixSignals::CreateForHost(); 1697 return GetRemoteUnixSignals(); 1698 } 1699 1700 uint32_t Platform::LoadImage(lldb_private::Process *process, 1701 const lldb_private::FileSpec &local_file, 1702 const lldb_private::FileSpec &remote_file, 1703 lldb_private::Status &error) { 1704 if (local_file && remote_file) { 1705 // Both local and remote file was specified. Install the local file to the 1706 // given location. 1707 if (IsRemote() || local_file != remote_file) { 1708 error = Install(local_file, remote_file); 1709 if (error.Fail()) 1710 return LLDB_INVALID_IMAGE_TOKEN; 1711 } 1712 return DoLoadImage(process, remote_file, nullptr, error); 1713 } 1714 1715 if (local_file) { 1716 // Only local file was specified. Install it to the current working 1717 // directory. 1718 FileSpec target_file = GetWorkingDirectory(); 1719 target_file.AppendPathComponent(local_file.GetFilename().AsCString()); 1720 if (IsRemote() || local_file != target_file) { 1721 error = Install(local_file, target_file); 1722 if (error.Fail()) 1723 return LLDB_INVALID_IMAGE_TOKEN; 1724 } 1725 return DoLoadImage(process, target_file, nullptr, error); 1726 } 1727 1728 if (remote_file) { 1729 // Only remote file was specified so we don't have to do any copying 1730 return DoLoadImage(process, remote_file, nullptr, error); 1731 } 1732 1733 error.SetErrorString("Neither local nor remote file was specified"); 1734 return LLDB_INVALID_IMAGE_TOKEN; 1735 } 1736 1737 uint32_t Platform::DoLoadImage(lldb_private::Process *process, 1738 const lldb_private::FileSpec &remote_file, 1739 const std::vector<std::string> *paths, 1740 lldb_private::Status &error, 1741 lldb_private::FileSpec *loaded_image) { 1742 error.SetErrorString("LoadImage is not supported on the current platform"); 1743 return LLDB_INVALID_IMAGE_TOKEN; 1744 } 1745 1746 uint32_t Platform::LoadImageUsingPaths(lldb_private::Process *process, 1747 const lldb_private::FileSpec &remote_filename, 1748 const std::vector<std::string> &paths, 1749 lldb_private::Status &error, 1750 lldb_private::FileSpec *loaded_path) 1751 { 1752 FileSpec file_to_use; 1753 if (remote_filename.IsAbsolute()) 1754 file_to_use = FileSpec(remote_filename.GetFilename().GetStringRef(), 1755 1756 remote_filename.GetPathStyle()); 1757 else 1758 file_to_use = remote_filename; 1759 1760 return DoLoadImage(process, file_to_use, &paths, error, loaded_path); 1761 } 1762 1763 Status Platform::UnloadImage(lldb_private::Process *process, 1764 uint32_t image_token) { 1765 return Status("UnloadImage is not supported on the current platform"); 1766 } 1767 1768 lldb::ProcessSP Platform::ConnectProcess(llvm::StringRef connect_url, 1769 llvm::StringRef plugin_name, 1770 Debugger &debugger, Target *target, 1771 Status &error) { 1772 return DoConnectProcess(connect_url, plugin_name, debugger, nullptr, target, 1773 error); 1774 } 1775 1776 lldb::ProcessSP Platform::ConnectProcessSynchronous( 1777 llvm::StringRef connect_url, llvm::StringRef plugin_name, 1778 Debugger &debugger, Stream &stream, Target *target, Status &error) { 1779 return DoConnectProcess(connect_url, plugin_name, debugger, &stream, target, 1780 error); 1781 } 1782 1783 lldb::ProcessSP Platform::DoConnectProcess(llvm::StringRef connect_url, 1784 llvm::StringRef plugin_name, 1785 Debugger &debugger, Stream *stream, 1786 Target *target, Status &error) { 1787 error.Clear(); 1788 1789 if (!target) { 1790 ArchSpec arch; 1791 if (target && target->GetArchitecture().IsValid()) 1792 arch = target->GetArchitecture(); 1793 else 1794 arch = Target::GetDefaultArchitecture(); 1795 1796 const char *triple = ""; 1797 if (arch.IsValid()) 1798 triple = arch.GetTriple().getTriple().c_str(); 1799 1800 TargetSP new_target_sp; 1801 error = debugger.GetTargetList().CreateTarget( 1802 debugger, "", triple, eLoadDependentsNo, nullptr, new_target_sp); 1803 target = new_target_sp.get(); 1804 } 1805 1806 if (!target || error.Fail()) 1807 return nullptr; 1808 1809 lldb::ProcessSP process_sp = 1810 target->CreateProcess(debugger.GetListener(), plugin_name, nullptr, true); 1811 1812 if (!process_sp) 1813 return nullptr; 1814 1815 // If this private method is called with a stream we are synchronous. 1816 const bool synchronous = stream != nullptr; 1817 1818 ListenerSP listener_sp( 1819 Listener::MakeListener("lldb.Process.ConnectProcess.hijack")); 1820 if (synchronous) 1821 process_sp->HijackProcessEvents(listener_sp); 1822 1823 error = process_sp->ConnectRemote(connect_url); 1824 if (error.Fail()) { 1825 if (synchronous) 1826 process_sp->RestoreProcessEvents(); 1827 return nullptr; 1828 } 1829 1830 if (synchronous) { 1831 EventSP event_sp; 1832 process_sp->WaitForProcessToStop(llvm::None, &event_sp, true, listener_sp, 1833 nullptr); 1834 process_sp->RestoreProcessEvents(); 1835 bool pop_process_io_handler = false; 1836 Process::HandleProcessStateChangedEvent(event_sp, stream, 1837 pop_process_io_handler); 1838 } 1839 1840 return process_sp; 1841 } 1842 1843 size_t Platform::ConnectToWaitingProcesses(lldb_private::Debugger &debugger, 1844 lldb_private::Status &error) { 1845 error.Clear(); 1846 return 0; 1847 } 1848 1849 size_t Platform::GetSoftwareBreakpointTrapOpcode(Target &target, 1850 BreakpointSite *bp_site) { 1851 ArchSpec arch = target.GetArchitecture(); 1852 assert(arch.IsValid()); 1853 const uint8_t *trap_opcode = nullptr; 1854 size_t trap_opcode_size = 0; 1855 1856 switch (arch.GetMachine()) { 1857 case llvm::Triple::aarch64_32: 1858 case llvm::Triple::aarch64: { 1859 static const uint8_t g_aarch64_opcode[] = {0x00, 0x00, 0x20, 0xd4}; 1860 trap_opcode = g_aarch64_opcode; 1861 trap_opcode_size = sizeof(g_aarch64_opcode); 1862 } break; 1863 1864 case llvm::Triple::arc: { 1865 static const uint8_t g_hex_opcode[] = { 0xff, 0x7f }; 1866 trap_opcode = g_hex_opcode; 1867 trap_opcode_size = sizeof(g_hex_opcode); 1868 } break; 1869 1870 // TODO: support big-endian arm and thumb trap codes. 1871 case llvm::Triple::arm: { 1872 // The ARM reference recommends the use of 0xe7fddefe and 0xdefe but the 1873 // linux kernel does otherwise. 1874 static const uint8_t g_arm_breakpoint_opcode[] = {0xf0, 0x01, 0xf0, 0xe7}; 1875 static const uint8_t g_thumb_breakpoint_opcode[] = {0x01, 0xde}; 1876 1877 lldb::BreakpointLocationSP bp_loc_sp(bp_site->GetOwnerAtIndex(0)); 1878 AddressClass addr_class = AddressClass::eUnknown; 1879 1880 if (bp_loc_sp) { 1881 addr_class = bp_loc_sp->GetAddress().GetAddressClass(); 1882 if (addr_class == AddressClass::eUnknown && 1883 (bp_loc_sp->GetAddress().GetFileAddress() & 1)) 1884 addr_class = AddressClass::eCodeAlternateISA; 1885 } 1886 1887 if (addr_class == AddressClass::eCodeAlternateISA) { 1888 trap_opcode = g_thumb_breakpoint_opcode; 1889 trap_opcode_size = sizeof(g_thumb_breakpoint_opcode); 1890 } else { 1891 trap_opcode = g_arm_breakpoint_opcode; 1892 trap_opcode_size = sizeof(g_arm_breakpoint_opcode); 1893 } 1894 } break; 1895 1896 case llvm::Triple::avr: { 1897 static const uint8_t g_hex_opcode[] = {0x98, 0x95}; 1898 trap_opcode = g_hex_opcode; 1899 trap_opcode_size = sizeof(g_hex_opcode); 1900 } break; 1901 1902 case llvm::Triple::mips: 1903 case llvm::Triple::mips64: { 1904 static const uint8_t g_hex_opcode[] = {0x00, 0x00, 0x00, 0x0d}; 1905 trap_opcode = g_hex_opcode; 1906 trap_opcode_size = sizeof(g_hex_opcode); 1907 } break; 1908 1909 case llvm::Triple::mipsel: 1910 case llvm::Triple::mips64el: { 1911 static const uint8_t g_hex_opcode[] = {0x0d, 0x00, 0x00, 0x00}; 1912 trap_opcode = g_hex_opcode; 1913 trap_opcode_size = sizeof(g_hex_opcode); 1914 } break; 1915 1916 case llvm::Triple::systemz: { 1917 static const uint8_t g_hex_opcode[] = {0x00, 0x01}; 1918 trap_opcode = g_hex_opcode; 1919 trap_opcode_size = sizeof(g_hex_opcode); 1920 } break; 1921 1922 case llvm::Triple::hexagon: { 1923 static const uint8_t g_hex_opcode[] = {0x0c, 0xdb, 0x00, 0x54}; 1924 trap_opcode = g_hex_opcode; 1925 trap_opcode_size = sizeof(g_hex_opcode); 1926 } break; 1927 1928 case llvm::Triple::ppc: 1929 case llvm::Triple::ppc64: { 1930 static const uint8_t g_ppc_opcode[] = {0x7f, 0xe0, 0x00, 0x08}; 1931 trap_opcode = g_ppc_opcode; 1932 trap_opcode_size = sizeof(g_ppc_opcode); 1933 } break; 1934 1935 case llvm::Triple::ppc64le: { 1936 static const uint8_t g_ppc64le_opcode[] = {0x08, 0x00, 0xe0, 0x7f}; // trap 1937 trap_opcode = g_ppc64le_opcode; 1938 trap_opcode_size = sizeof(g_ppc64le_opcode); 1939 } break; 1940 1941 case llvm::Triple::x86: 1942 case llvm::Triple::x86_64: { 1943 static const uint8_t g_i386_opcode[] = {0xCC}; 1944 trap_opcode = g_i386_opcode; 1945 trap_opcode_size = sizeof(g_i386_opcode); 1946 } break; 1947 1948 default: 1949 return 0; 1950 } 1951 1952 assert(bp_site); 1953 if (bp_site->SetTrapOpcode(trap_opcode, trap_opcode_size)) 1954 return trap_opcode_size; 1955 1956 return 0; 1957 } 1958