42#include "llvm/ADT/STLExtras.h"
43#include "llvm/Support/FileSystem.h"
44#include "llvm/Support/Path.h"
49#define MAP_ANON 0x1000
65#define LLDB_PROPERTIES_platform
66#include "TargetProperties.inc"
69#define LLDB_PROPERTIES_platform
70#include "TargetPropertiesEnum.inc"
76 static constexpr llvm::StringLiteral g_setting_name(
"platform");
77 return g_setting_name;
88 llvm::SmallString<64> user_home_dir;
92 module_cache_dir =
FileSpec(user_home_dir.c_str());
93 module_cache_dir.AppendPathComponent(
".lldb");
94 module_cache_dir.AppendPathComponent(
"module_cache");
100 const auto idx = ePropertyUseModuleCache;
101 return GetPropertyAtIndexAs<bool>(
102 idx, g_platform_properties[idx].default_uint_value != 0);
110 return GetPropertyAtIndexAs<FileSpec>(ePropertyModuleCacheDirectory, {});
114 return m_collection_sp->SetPropertyAtIndex(ePropertyModuleCacheDirectory,
120 auto f_spec_opt =
m_collection_sp->GetPropertyAtIndexAsOptionValueFileSpec(
121 ePropertyModuleCacheDirectory);
123 f_spec_opt->SetDefaultValue(dir_spec);
154 local_file = platform_file;
160 Stream &feedback_stream) {
170 module_search_paths_ptr, old_modules,
171 did_create_ptr,
false);
180 resolved_spec = spec;
184 module_search_paths_ptr, old_modules,
185 did_create_ptr,
false);
189 if (!
error.Success()) {
190 resolved_spec = spec;
192 module_search_paths_ptr, old_modules,
193 did_create_ptr,
false);
195 if (
error.Success() && module_sp)
196 module_sp->SetPlatformFileSpec(resolved_spec.
GetFileSpec());
223 return create_callback(
true,
nullptr);
230 return HostInfo::GetAugmentedArchSpec(triple);
235 : m_is_host(is_host), m_os_version_set_while_connected(false),
236 m_system_arch_set_while_connected(false), m_max_uid_name_len(0),
237 m_max_gid_name_len(0), m_supports_rsync(false), m_rsync_opts(),
238 m_rsync_prefix(), m_supports_ssh(false), m_ssh_opts(),
239 m_ignores_remote_hostname(false), m_trap_handlers(),
240 m_calculated_trap_handlers(false),
243 LLDB_LOGF(log,
"%p Platform::Platform()",
static_cast<void *
>(
this));
261 if (!os_version.empty()) {
262 strm.
Format(
"OS Version: {0}", os_version.getAsString());
265 strm.
Format(
" ({0})", *s);
276 strm.
Printf(
" Connected: %s\n", is_connected ?
"yes" :
"no");
280 strm.
Format(
" Sysroot: {0}\n", sdk_root);
290 if (!specific_info.empty())
291 strm.
Printf(
"Platform-specific connection: %s\n", specific_info.c_str());
294 strm.
Format(
" Kernel: {0}\n", *s);
298 std::lock_guard<std::mutex> guard(
m_mutex);
322 fetch = is_connected;
336 return llvm::VersionTuple();
341 return HostInfo::GetOSBuildString();
347 return HostInfo::GetOSKernelDescription();
352 Target *target, std::vector<std::string> &options) {
353 std::vector<std::string> default_compilation_options = {
354 "-x",
"c++",
"-Xclang",
"-nostdsysteminc",
"-Xclang",
"-nostdsysteminc"};
356 options.insert(options.end(), default_compilation_options.begin(),
357 default_compilation_options.end());
362 llvm::SmallString<64> cwd;
363 if (llvm::sys::fs::current_path(cwd))
385 llvm::StringRef path) {
388 namespace fs = llvm::sys::fs;
390 case fs::file_type::fifo_file:
391 case fs::file_type::socket_file:
396 case fs::file_type::directory_file: {
402 dst_dir, lldb::eFilePermissionsDirectoryDefault);
405 "unable to setup directory %s on remote end",
411 std::string src_dir_path(src.
GetPath());
428 case fs::file_type::symlink_file: {
450 case fs::file_type::regular_file: {
465 "invalid file detected during copy: %s", src.
GetPath().c_str());
469 llvm_unreachable(
"Unhandled file_type!");
476 LLDB_LOGF(log,
"Platform::Install (src='%s', dst='%s')",
488 if (first_dst_dir_char ==
'/' || first_dst_dir_char ==
'\\') {
498 relative_spec = working_dir;
502 error.SetErrorStringWithFormat(
503 "platform working directory must be valid for relative path '%s'",
512 error.SetErrorStringWithFormat(
513 "platform working directory must be valid for relative path '%s'",
522 error.SetErrorStringWithFormat(
"platform working directory must be valid "
523 "when destination directory is empty");
528 LLDB_LOGF(log,
"Platform::Install (src='%s', dst='%s') fixed_dst='%s'",
535 namespace fs = llvm::sys::fs;
536 switch (fs::get_file_type(src.
GetPath(),
false)) {
537 case fs::file_type::directory_file: {
538 llvm::sys::fs::remove(fixed_dst.
GetPath());
540 if (permissions == 0)
541 permissions = eFilePermissionsDirectoryDefault;
543 if (
error.Success()) {
548 std::string src_dir_path(src.
GetPath());
556 case fs::file_type::regular_file:
557 llvm::sys::fs::remove(fixed_dst.
GetPath());
561 case fs::file_type::symlink_file: {
562 llvm::sys::fs::remove(fixed_dst.
GetPath());
568 case fs::file_type::fifo_file:
569 error.SetErrorString(
"platform install doesn't handle pipes");
571 case fs::file_type::socket_file:
572 error.SetErrorString(
"platform install doesn't handle sockets");
575 error.SetErrorString(
576 "platform install doesn't handle non file or directory items");
587 if (std::error_code ec = llvm::sys::fs::set_current_path(file_spec.
GetPath())) {
588 LLDB_LOG(log,
"error: {0}", ec.message());
599 uint32_t permissions) {
601 return llvm::sys::fs::create_directory(file_spec.
GetPath(), permissions);
604 error.SetErrorStringWithFormatv(
"remote platform {0} doesn't support {1}",
611 uint32_t &file_permissions) {
613 auto Value = llvm::sys::fs::getPermissions(file_spec.
GetPath());
615 file_permissions =
Value.get();
619 error.SetErrorStringWithFormatv(
"remote platform {0} doesn't support {1}",
626 uint32_t file_permissions) {
628 auto Perms =
static_cast<llvm::sys::fs::perms
>(file_permissions);
629 return llvm::sys::fs::setPermissions(file_spec.
GetPath(), Perms);
632 error.SetErrorStringWithFormatv(
"remote platform {0} doesn't support {1}",
657 if (llvm::sys::fs::file_size(file_spec.
GetPath(), Size))
666 error.SetErrorStringWithFormatv(
667 "Platform::ReadFile() is not supported in the {0} platform",
673 const void *src, uint64_t src_len,
Status &
error) {
676 error.SetErrorStringWithFormatv(
677 "Platform::WriteFile() is not supported in the {0} platform",
684 return HostInfo::GetUserIDResolver();
703 LLDB_LOGF(log,
"Platform::SetRemoteWorkingDirectory('%s')",
704 working_dir.
GetPath().c_str());
752 module_search_paths_ptr,
nullptr,
nullptr);
754 if (exe_module_sp && exe_module_sp->GetObjectFile())
756 exe_module_sp.reset();
762 llvm::ListSeparator LS;
769 module_search_paths_ptr,
nullptr,
nullptr);
770 if (
error.Success()) {
771 if (exe_module_sp && exe_module_sp->GetObjectFile())
773 error.SetErrorToGenericError();
776 arch_names << LS << arch.GetArchitectureName();
779 if (exe_module_sp &&
error.Success())
791 "'{0}' doesn't contain any '{1}' platform architectures: {2}",
802 error.SetErrorString(
"unable to resolve symbol file");
808 resolved_platform_path = platform_path;
836 fetch = is_connected;
850 llvm::Triple normalized_triple(llvm::Triple::normalize(triple));
854 if (
auto kind = HostInfo::ParseArchitectureKind(triple))
855 return HostInfo::GetArchitecture(*kind);
863 if (!compatible_arch.
IsValid())
866 const llvm::Triple &compatible_triple = compatible_arch.
GetTriple();
867 if (normalized_triple.getVendorName().empty())
868 normalized_triple.setVendor(compatible_triple.getVendor());
869 if (normalized_triple.getOSName().empty())
870 normalized_triple.setOS(compatible_triple.getOS());
871 if (normalized_triple.getEnvironmentName().empty())
872 normalized_triple.setEnvironment(compatible_triple.getEnvironment());
879 error.SetErrorStringWithFormatv(
880 "The currently selected platform ({0}) is "
881 "the host platform and is always connected.",
884 error.SetErrorStringWithFormatv(
885 "Platform::ConnectRemote() is not supported by {0}",
GetPluginName());
892 error.SetErrorStringWithFormatv(
893 "The currently selected platform ({0}) is "
894 "the host platform and is always connected.",
897 error.SetErrorStringWithFormatv(
898 "Platform::DisconnectRemote() is not supported by {0}",
916 uint32_t match_count = 0;
933 LLDB_LOGF(log,
"Platform::%s()", __FUNCTION__);
938 if (::getenv(
"LLDB_LAUNCH_FLAG_LAUNCH_IN_TTY"))
939 launch_info.
GetFlags().
Set(eLaunchFlagLaunchInTTY);
941 if (launch_info.
GetFlags().
Test(eLaunchFlagLaunchInShell)) {
942 const bool will_debug = launch_info.
GetFlags().
Test(eLaunchFlagDebug);
943 const bool first_arg_is_full_shell_command =
false;
947 std::string shell_str = (shell) ? shell.
GetPath() :
"<null>";
949 "Platform::%s GetResumeCountForLaunchInfo() returned %" PRIu32
951 __FUNCTION__, num_resumes, shell_str.c_str());
955 error, will_debug, first_arg_is_full_shell_command, num_resumes))
957 }
else if (launch_info.
GetFlags().
Test(eLaunchFlagShellExpandArguments)) {
960 error.SetErrorStringWithFormat(
"shell expansion failed (reason: %s). "
961 "consider launching with 'process "
963 error.AsCString(
"unknown"));
968 LLDB_LOGF(log,
"Platform::%s final launch_info resume count: %" PRIu32,
973 error.SetErrorString(
974 "base lldb_private::Platform class can't launch remote processes");
981 return Status(
"base lldb_private::Platform class can't expand arguments");
986 LLDB_LOGF(log,
"Platform::%s, pid %" PRIu64, __FUNCTION__, pid);
990 "base lldb_private::Platform class can't kill remote processes");
1000 LLDB_LOG(log,
"target = {0}", &target);
1013 bool iteration_complete =
false;
1017 for (
auto filter_callback = get_filter_func(i, iteration_complete);
1018 !iteration_complete;
1019 filter_callback = get_filter_func(++i, iteration_complete)) {
1020 if (filter_callback) {
1022 error = (*filter_callback)(launch_info, &target);
1023 if (!
error.Success()) {
1025 "Platform::%s() StructuredDataPlugin launch "
1034 if (
error.Success()) {
1036 "Platform::%s LaunchProcess() call succeeded (pid=%" PRIu64
")",
1040 process_sp =
Attach(attach_info, debugger, &target,
error);
1042 LLDB_LOG(log,
"Attach() succeeded, Process plugin: {0}",
1043 process_sp->GetPluginName());
1050 process_sp->SetShouldDetach(
false);
1058 process_sp->SetSTDIOFileDescriptor(pty_fd);
1061 LLDB_LOGF(log,
"Platform::%s Attach() failed: %s", __FUNCTION__,
1066 "Platform::%s LaunchProcess() returned launch_info with "
1067 "invalid process id",
1071 LLDB_LOGF(log,
"Platform::%s LaunchProcess() failed: %s", __FUNCTION__,
1078std::vector<ArchSpec>
1080 llvm::Triple::OSType os) {
1081 std::vector<ArchSpec> list;
1082 for(
auto arch : archs) {
1083 llvm::Triple triple;
1084 triple.setArch(arch);
1100 for (
const ArchSpec &platform_arch :
1102 if (arch.
IsMatch(platform_arch, match)) {
1103 if (compatible_arch_ptr)
1104 *compatible_arch_ptr = platform_arch;
1109 if (compatible_arch_ptr)
1110 compatible_arch_ptr->
Clear();
1115 uint32_t uid, uint32_t gid) {
1117 LLDB_LOGF(log,
"[PutFile] Using block by block transfer....\n");
1119 auto source_open_options =
1121 namespace fs = llvm::sys::fs;
1122 if (fs::is_symlink_file(source.
GetPath()))
1126 lldb::eFilePermissionsUserRW);
1128 return Status(source_file.takeError());
1131 bool requires_upload =
true;
1132 llvm::ErrorOr<llvm::MD5::MD5Result> remote_md5 =
CalculateMD5(destination);
1133 if (std::error_code ec = remote_md5.getError()) {
1134 LLDB_LOG(log,
"[PutFile] couldn't get md5 sum of destination: {0}",
1137 llvm::ErrorOr<llvm::MD5::MD5Result> local_md5 =
1138 llvm::sys::fs::md5_contents(source.
GetPath());
1139 if (std::error_code ec = local_md5.getError()) {
1140 LLDB_LOG(log,
"[PutFile] couldn't get md5 sum of source: {0}",
1143 LLDB_LOGF(log,
"[PutFile] destination md5: %016" PRIx64
"%016" PRIx64,
1144 remote_md5->high(), remote_md5->low());
1145 LLDB_LOGF(log,
"[PutFile] local md5: %016" PRIx64
"%016" PRIx64,
1146 local_md5->high(), local_md5->low());
1147 requires_upload = *remote_md5 != *local_md5;
1151 if (!requires_upload) {
1152 LLDB_LOGF(log,
"[PutFile] skipping PutFile because md5sums match");
1156 uint32_t permissions = source_file.get()->GetPermissions(
error);
1157 if (permissions == 0)
1158 permissions = lldb::eFilePermissionsUserRWX;
1163 permissions,
error);
1164 LLDB_LOGF(log,
"dest_file = %" PRIu64
"\n", dest_file);
1169 return Status(
"unable to open target file");
1171 uint64_t offset = 0;
1173 size_t bytes_read = buffer_sp->GetByteSize();
1174 error = source_file.get()->Read(buffer_sp->GetBytes(), bytes_read);
1175 if (
error.Fail() || bytes_read == 0)
1178 const uint64_t bytes_written =
1179 WriteFile(dest_file, offset, buffer_sp->GetBytes(), bytes_read,
error);
1183 offset += bytes_written;
1184 if (bytes_written != bytes_read) {
1187 source_file.get()->SeekFromStart(offset);
1211 return Status(
"unimplemented");
1222 return llvm::sys::fs::remove(path.
GetPath());
1223 return Status(
"unimplemented");
1227 addr_t length,
unsigned prot,
1228 unsigned flags,
addr_t fd,
1230 uint64_t flags_platform = 0;
1236 MmapArgList args({addr, length, prot, flags_platform, fd, offset});
1241 llvm::StringRef command,
1250 return RunShellCommand(llvm::StringRef(), command, working_dir, status_ptr,
1251 signo_ptr, command_output, timeout);
1255 llvm::StringRef shell,
1257 llvm::StringRef command,
1268 signo_ptr, command_output, timeout);
1269 return Status(
"unable to run a remote command without a platform");
1272llvm::ErrorOr<llvm::MD5::MD5Result>
1275 return std::make_error_code(std::errc::not_supported);
1276 return llvm::sys::fs::md5_contents(file_spec.
GetPath());
1292 "Platform-specific options required for rsync to work."},
1295 "Platform-specific rsync prefix put before the remote path."},
1298 "Do not automatically fill in the remote hostname when composing the "
1307 "Platform-specific options required for SSH to work."},
1313 "Path in which to store local copies of files."},
1330 llvm::StringRef option_arg,
1333 char short_option = (char)
GetDefinitions()[option_idx].short_option;
1334 switch (short_option) {
1352 error.SetErrorStringWithFormat(
"unrecognized option '%c'", short_option);
1376 llvm::StringRef option_arg,
1379 char short_option = (char)
GetDefinitions()[option_idx].short_option;
1380 switch (short_option) {
1390 error.SetErrorStringWithFormat(
"unrecognized option '%c'", short_option);
1407 uint32_t option_idx, llvm::StringRef option_arg,
1410 char short_option = (char)
GetDefinitions()[option_idx].short_option;
1411 switch (short_option) {
1417 error.SetErrorStringWithFormat(
"unrecognized option '%c'", short_option);
1432 std::lock_guard<std::mutex> guard(
m_mutex);
1447 module_spec,
nullptr, module_sp,
1450 module_search_paths_ptr);
1453 if (
error.Success()) {
1454 module_spec.
GetFileSpec() = module_sp->GetFileSpec();
1465 bool *did_create_ptr) {
1469 bool got_module_spec =
false;
1475 resolved_module_spec)) {
1478 got_module_spec =
true;
1494 if (
error.Success() && module_sp)
1498 resolved_module_spec = arch_module_spec;
1499 got_module_spec =
true;
1503 if (!got_module_spec) {
1506 resolved_module_spec)) {
1509 got_module_spec =
true;
1514 if (!got_module_spec) {
1517 return module_resolver(module_spec);
1532 symbol_file_spec, did_create_ptr);
1535 if (symbol_file_spec) {
1539 module_sp->SetSymbolFileFileSpec(symbol_file_spec);
1560 const Status error = module_resolver(resolved_module_spec);
1561 if (
error.Success()) {
1562 if (module_sp && symbol_file_spec) {
1565 module_sp->SetSymbolFileFileSpec(symbol_file_spec);
1572 if (module_sp && symbol_file_spec) {
1575 module_sp->SetSymbolFileFileSpec(symbol_file_spec);
1580 return Status(
"Failed to call GetCachedSharedModule");
1586 bool *did_create_ptr) {
1599 LLDB_LOGF(log,
"%s: locate module callback failed: %s",
1600 LLVM_PRETTY_FUNCTION,
error.AsCString());
1615 if (!module_file_spec && !symbol_file_spec) {
1619 "%s: locate module callback did not set both "
1620 "module_file_spec and symbol_file_spec",
1621 LLVM_PRETTY_FUNCTION);
1628 "%s: locate module callback set a non-existent file to "
1629 "module_file_spec: %s",
1630 LLVM_PRETTY_FUNCTION, module_file_spec.
GetPath().c_str());
1632 symbol_file_spec.
Clear();
1639 "%s: locate module callback set a non-existent file to "
1640 "symbol_file_spec: %s",
1641 LLVM_PRETTY_FUNCTION, symbol_file_spec.
GetPath().c_str());
1643 symbol_file_spec.
Clear();
1647 if (!module_file_spec && symbol_file_spec) {
1652 LLDB_LOGF(log,
"%s: locate module callback succeeded: symbol=%s",
1653 LLVM_PRETTY_FUNCTION, symbol_file_spec.
GetPath().c_str());
1663 auto cached_module_spec(module_spec);
1664 cached_module_spec.GetUUID().Clear();
1666 cached_module_spec.GetFileSpec() = module_file_spec;
1667 cached_module_spec.GetPlatformFileSpec() = module_spec.
GetFileSpec();
1668 cached_module_spec.SetObjectOffset(0);
1671 nullptr, did_create_ptr,
false);
1672 if (
error.Success() && module_sp) {
1674 LLDB_LOGF(log,
"%s: locate module callback succeeded: module=%s symbol=%s",
1675 LLVM_PRETTY_FUNCTION, module_file_spec.
GetPath().c_str(),
1676 symbol_file_spec.
GetPath().c_str());
1679 "%s: locate module callback succeeded but failed to load: "
1680 "module=%s symbol=%s",
1681 LLVM_PRETTY_FUNCTION, module_file_spec.
GetPath().c_str(),
1682 symbol_file_spec.
GetPath().c_str());
1685 symbol_file_spec.
Clear();
1691 bool *did_create_ptr) {
1702 const FileSpec &tmp_download_file_spec) {
1709 const FileSpec &tmp_download_file_spec) {
1712 module_sp, did_create_ptr);
1713 if (
error.Success())
1716 LLDB_LOGF(log,
"Platform::%s - module %s not found in local cache: %s",
1723 const uint64_t src_offset,
1724 const uint64_t src_size,
1729 llvm::raw_fd_ostream dst(dst_file_spec.
GetPath(), EC, llvm::sys::fs::OF_None);
1731 error.SetErrorStringWithFormat(
"unable to open destination file: %s",
1732 dst_file_spec.
GetPath().c_str());
1737 lldb::eFilePermissionsFileDefault,
error);
1740 error.SetErrorStringWithFormat(
"unable to open source file: %s",
1745 std::vector<char> buffer(512 * 1024);
1746 auto offset = src_offset;
1747 uint64_t total_bytes_read = 0;
1748 while (total_bytes_read < src_size) {
1749 const auto to_read = std::min(
static_cast<uint64_t
>(buffer.size()),
1750 src_size - total_bytes_read);
1751 const uint64_t n_read =
1756 error.SetErrorString(
"read 0 bytes");
1760 total_bytes_read += n_read;
1761 dst.write(&buffer[0], n_read);
1773 "Symbol file downloading not supported by the default platform.");
1785 static const auto s_default_unix_signals_sp = std::make_shared<UnixSignals>();
1786 return s_default_unix_signals_sp;
1799 if (local_file && remote_file) {
1802 if (
IsRemote() || local_file != remote_file) {
1815 if (
IsRemote() || local_file != target_file) {
1828 error.SetErrorString(
"Neither local nor remote file was specified");
1834 const std::vector<std::string> *paths,
1837 error.SetErrorString(
"LoadImage is not supported on the current platform");
1843 const std::vector<std::string> &paths,
1853 file_to_use = remote_filename;
1859 uint32_t image_token) {
1860 return Status(
"UnloadImage is not supported on the current platform");
1864 llvm::StringRef plugin_name,
1867 return DoConnectProcess(connect_url, plugin_name, debugger,
nullptr, target,
1872 llvm::StringRef connect_url, llvm::StringRef plugin_name,
1874 return DoConnectProcess(connect_url, plugin_name, debugger, &stream, target,
1879 llvm::StringRef plugin_name,
1887 const char *triple =
1894 target = new_target_sp.get();
1895 if (!target ||
error.Fail()) {
1907 const bool synchronous = stream !=
nullptr;
1912 process_sp->HijackProcessEvents(listener_sp);
1914 error = process_sp->ConnectRemote(connect_url);
1917 process_sp->RestoreProcessEvents();
1923 process_sp->WaitForProcessToStop(std::nullopt, &event_sp,
true, listener_sp,
1925 process_sp->RestoreProcessEvents();
1926 bool pop_process_io_handler =
false;
1945 const uint8_t *trap_opcode =
nullptr;
1946 size_t trap_opcode_size = 0;
1949 case llvm::Triple::aarch64_32:
1950 case llvm::Triple::aarch64: {
1951 static const uint8_t g_aarch64_opcode[] = {0x00, 0x00, 0x20, 0xd4};
1952 trap_opcode = g_aarch64_opcode;
1953 trap_opcode_size =
sizeof(g_aarch64_opcode);
1956 case llvm::Triple::arc: {
1957 static const uint8_t g_hex_opcode[] = { 0xff, 0x7f };
1958 trap_opcode = g_hex_opcode;
1959 trap_opcode_size =
sizeof(g_hex_opcode);
1963 case llvm::Triple::arm: {
1966 static const uint8_t g_arm_breakpoint_opcode[] = {0xf0, 0x01, 0xf0, 0xe7};
1967 static const uint8_t g_thumb_breakpoint_opcode[] = {0x01, 0xde};
1973 addr_class = bp_loc_sp->GetAddress().GetAddressClass();
1975 (bp_loc_sp->GetAddress().GetFileAddress() & 1))
1980 trap_opcode = g_thumb_breakpoint_opcode;
1981 trap_opcode_size =
sizeof(g_thumb_breakpoint_opcode);
1983 trap_opcode = g_arm_breakpoint_opcode;
1984 trap_opcode_size =
sizeof(g_arm_breakpoint_opcode);
1988 case llvm::Triple::avr: {
1989 static const uint8_t g_hex_opcode[] = {0x98, 0x95};
1990 trap_opcode = g_hex_opcode;
1991 trap_opcode_size =
sizeof(g_hex_opcode);
1994 case llvm::Triple::mips:
1995 case llvm::Triple::mips64: {
1996 static const uint8_t g_hex_opcode[] = {0x00, 0x00, 0x00, 0x0d};
1997 trap_opcode = g_hex_opcode;
1998 trap_opcode_size =
sizeof(g_hex_opcode);
2001 case llvm::Triple::mipsel:
2002 case llvm::Triple::mips64el: {
2003 static const uint8_t g_hex_opcode[] = {0x0d, 0x00, 0x00, 0x00};
2004 trap_opcode = g_hex_opcode;
2005 trap_opcode_size =
sizeof(g_hex_opcode);
2008 case llvm::Triple::msp430: {
2009 static const uint8_t g_msp430_opcode[] = {0x43, 0x43};
2010 trap_opcode = g_msp430_opcode;
2011 trap_opcode_size =
sizeof(g_msp430_opcode);
2014 case llvm::Triple::systemz: {
2015 static const uint8_t g_hex_opcode[] = {0x00, 0x01};
2016 trap_opcode = g_hex_opcode;
2017 trap_opcode_size =
sizeof(g_hex_opcode);
2020 case llvm::Triple::hexagon: {
2021 static const uint8_t g_hex_opcode[] = {0x0c, 0xdb, 0x00, 0x54};
2022 trap_opcode = g_hex_opcode;
2023 trap_opcode_size =
sizeof(g_hex_opcode);
2026 case llvm::Triple::ppc:
2027 case llvm::Triple::ppc64: {
2028 static const uint8_t g_ppc_opcode[] = {0x7f, 0xe0, 0x00, 0x08};
2029 trap_opcode = g_ppc_opcode;
2030 trap_opcode_size =
sizeof(g_ppc_opcode);
2033 case llvm::Triple::ppc64le: {
2034 static const uint8_t g_ppc64le_opcode[] = {0x08, 0x00, 0xe0, 0x7f};
2035 trap_opcode = g_ppc64le_opcode;
2036 trap_opcode_size =
sizeof(g_ppc64le_opcode);
2039 case llvm::Triple::x86:
2040 case llvm::Triple::x86_64: {
2041 static const uint8_t g_i386_opcode[] = {0xCC};
2042 trap_opcode = g_i386_opcode;
2043 trap_opcode_size =
sizeof(g_i386_opcode);
2046 case llvm::Triple::riscv32:
2047 case llvm::Triple::riscv64: {
2048 static const uint8_t g_riscv_opcode[] = {0x73, 0x00, 0x10, 0x00};
2049 static const uint8_t g_riscv_opcode_c[] = {0x02, 0x90};
2051 trap_opcode = g_riscv_opcode_c;
2052 trap_opcode_size =
sizeof(g_riscv_opcode_c);
2054 trap_opcode = g_riscv_opcode;
2055 trap_opcode_size =
sizeof(g_riscv_opcode);
2059 case llvm::Triple::loongarch32:
2060 case llvm::Triple::loongarch64: {
2061 static const uint8_t g_loongarch_opcode[] = {0x05, 0x00, 0x2a,
2063 trap_opcode = g_loongarch_opcode;
2064 trap_opcode_size =
sizeof(g_loongarch_opcode);
2073 return trap_opcode_size;
2095 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
2097 if (platform_sp->GetName() == name)
2107 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
2110 if (platform_sp->IsCompatibleArchitecture(
2117 if (platform_sp->IsCompatibleArchitecture(arch, process_host_arch,
2129 PlatformSP platform_sp = create_callback(
false, &arch);
2131 platform_sp->IsCompatibleArchitecture(
2141 PlatformSP platform_sp = create_callback(
false, &arch);
2142 if (platform_sp && platform_sp->IsCompatibleArchitecture(
2144 platform_arch_ptr)) {
2149 if (platform_arch_ptr)
2150 platform_arch_ptr->
Clear();
2165 std::vector<PlatformSP> &candidates) {
2167 candidates.reserve(archs.size());
2176 for (
const ArchSpec &arch : archs) {
2184 if (host_platform_sp) {
2185 for (
const ArchSpec &arch : archs) {
2186 if (host_platform_sp->IsCompatibleArchitecture(
2188 return host_platform_sp;
2193 for (
const ArchSpec &arch : archs) {
2195 candidates.push_back(platform);
2201 if (candidates.size() == archs.size()) {
2202 if (llvm::all_of(candidates, [&](
const PlatformSP &p) ->
bool {
2203 return p->GetName() == candidates.front()->GetName();
2205 return candidates.front();
2216 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
2224 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
2231 PlatformSP platform_sp = create_callback(
true, &arch);
2233 if (platform_sp->LoadPlatformBinaryAndSetup(process, addr, notify))
static llvm::raw_ostream & error(Stream &strm)
#define LLDB_LOG(log,...)
The LLDB_LOG* macros defined below are the way to emit log messages.
#define LLDB_LOGF(log,...)
An architecture specification class.
bool IsValid() const
Tests if this ArchSpec is valid.
void Clear()
Clears the object state.
llvm::Triple & GetTriple()
Architecture triple accessor.
bool IsMatch(const ArchSpec &rhs, MatchType match) const
Compare this ArchSpec to another ArchSpec.
void DumpTriple(llvm::raw_ostream &s) const
uint32_t GetFlags() const
llvm::Triple::ArchType GetMachine() const
Returns a machine family for the current architecture.
static bool ContainsOnlyArch(const llvm::Triple &normalized_triple)
Returns true if the OS, vendor and environment fields of the triple are unset.
A command line argument class.
Class that manages the actual breakpoint that will be inserted into the running program.
bool SetTrapOpcode(const uint8_t *trap_opcode, uint32_t trap_opcode_size)
Sets the trap opcode.
lldb::BreakpointLocationSP GetConstituentAtIndex(size_t idx)
This method returns the breakpoint location at index index located at this breakpoint site.
Generic representation of a type in a programming language.
A uniqued constant string class.
const char * AsCString(const char *value_if_empty=nullptr) const
Get the string value as a C string.
llvm::StringRef GetStringRef() const
Get the string value as a llvm::StringRef.
const char * GetCString() const
Get the string value as a C string.
A subclass of DataBuffer that stores a data buffer on the heap.
A class to manage flag bits.
TargetList & GetTargetList()
Get accessor for the target list.
lldb::ListenerSP GetListener()
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
bool CloseFile(lldb::user_id_t fd, Status &error)
uint64_t ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst, uint64_t dst_len, Status &error)
lldb::user_id_t OpenFile(const FileSpec &file_spec, File::OpenOptions flags, uint32_t mode, Status &error)
uint64_t WriteFile(lldb::user_id_t fd, uint64_t offset, const void *src, uint64_t src_len, Status &error)
static FileCache & GetInstance()
void AppendPathComponent(llvm::StringRef component)
void SetDirectory(ConstString directory)
Directory string set accessor.
const ConstString & GetFilename() const
Filename string const get accessor.
const ConstString & GetDirectory() const
Directory string const get accessor.
bool IsAbsolute() const
Returns true if the filespec represents an absolute path.
Style GetPathStyle() const
void PrependPathComponent(llvm::StringRef component)
size_t GetPath(char *path, size_t max_path_length, bool denormalize=true) const
Extract the full path to the file.
void Clear()
Clears the object state.
ConstString GetPathAsConstString(bool denormalize=true) const
Get the full path as a ConstString.
void SetFilename(ConstString filename)
Filename string set accessor.
void Resolve(llvm::SmallVectorImpl< char > &path)
Resolve path to make it canonical.
void EnumerateDirectory(llvm::Twine path, bool find_directories, bool find_files, bool find_other, EnumerateDirectoryCallbackType callback, void *callback_baton)
@ eEnumerateDirectoryResultNext
Enumerate next entry in the current directory.
@ eEnumerateDirectoryResultQuit
Stop directory enumerations at any level.
Status Symlink(const FileSpec &src, const FileSpec &dst)
bool Exists(const FileSpec &file_spec) const
Returns whether the given file exists.
int Open(const char *path, int flags, int mode=0600)
Wraps ::open in a platform-independent way.
Status Readlink(const FileSpec &src, FileSpec &dst)
uint32_t GetPermissions(const FileSpec &file_spec) const
Return the current permissions of the given file.
static FileSystem & Instance()
@ eOpenOptionDontFollowSymlinks
bool Test(ValueType bit) const
Test a single flag bit.
ValueType Set(ValueType mask)
Set one or more flags by logical OR'ing mask with the current flags.
static Status LaunchProcess(ProcessLaunchInfo &launch_info)
Launch the process specified in launch_info.
static bool ResolveExecutableInBundle(FileSpec &file)
When executable files may live within a directory, where the directory represents an executable bundl...
static Status ShellExpandArguments(ProcessLaunchInfo &launch_info)
Perform expansion of the command-line for this launch info This can potentially involve wildcard expa...
static Status RunShellCommand(llvm::StringRef command, const FileSpec &working_dir, int *status_ptr, int *signo_ptr, std::string *command_output, const Timeout< std::micro > &timeout, bool run_in_shell=true, bool hide_stderr=false)
Run a shell command.
static Environment GetEnvironment()
static bool GetProcessInfo(lldb::pid_t pid, ProcessInstanceInfo &proc_info)
static uint32_t FindProcesses(const ProcessInstanceInfoMatch &match_info, ProcessInstanceInfoList &proc_infos)
static void Kill(lldb::pid_t pid, int signo)
static lldb::ListenerSP MakeListener(const char *name)
static Status GetSharedModule(const ModuleSpec &module_spec, lldb::ModuleSP &module_sp, const FileSpecList *module_search_paths_ptr, llvm::SmallVectorImpl< lldb::ModuleSP > *old_modules, bool *did_create_ptr, bool always_create=false)
bool FindMatchingModuleSpec(const ModuleSpec &module_spec, ModuleSpec &match_module_spec) const
uint64_t GetObjectOffset() const
FileSpec & GetPlatformFileSpec()
ArchSpec & GetArchitecture()
FileSpec & GetSymbolFileSpec()
uint64_t GetObjectSize() const
A class that describes an executable image and its associated object and symbol files.
static bool IsObjectFile(lldb_private::FileSpec file_spec)
static size_t GetModuleSpecifications(const FileSpec &file, lldb::offset_t file_offset, lldb::offset_t file_size, ModuleSpecList &specs, lldb::DataBufferSP data_sp=lldb::DataBufferSP())
virtual llvm::StringRef GetPluginName()=0
static PlatformCreateInstance GetPlatformCreateCallbackAtIndex(uint32_t idx)
static PlatformCreateInstance GetPlatformCreateCallbackForPluginName(llvm::StringRef name)
static StructuredDataFilterLaunchInfo GetStructuredDataFilterCallbackAtIndex(uint32_t idx, bool &iteration_complete)
void SetHijackListener(const lldb::ListenerSP &listener_sp)
lldb::ListenerSP GetHijackListener() const
lldb::pid_t GetProcessID() const
bool MatchAllProcesses() const
const FileSpec & GetShell() const
PseudoTerminal & GetPTY()
uint32_t GetResumeCount() const
bool ConvertArgumentsForLaunchingInShell(Status &error, bool will_debug, bool first_arg_is_full_shell_command, uint32_t num_resumes)
void SetLaunchInSeparateProcessGroup(bool separate)
A plug-in interface definition class for debugging a process.
static bool HandleProcessStateChangedEvent(const lldb::EventSP &event_sp, Stream *stream, SelectMostRelevant select_most_relevant, bool &pop_process_io_handler)
Centralize the code that handles and prints descriptions for process state changes.
virtual bool GetModuleSpec(const FileSpec &module_file_spec, const ArchSpec &arch, ModuleSpec &module_spec)
Try to fetch the module specification for a module with the given file name and architecture.
virtual llvm::VersionTuple GetHostOSVersion()
Sometimes the connection to a process can detect the host OS version that the process is running on.
virtual ArchSpec GetSystemArchitecture()
Get the system architecture for this process.
lldb::OptionValuePropertiesSP m_collection_sp
bool SetPropertyAtIndex(uint32_t idx, T t, const ExecutionContext *exe_ctx=nullptr) const
int ReleasePrimaryFileDescriptor()
Release the primary file descriptor.
@ invalid_fd
Invalid file descriptor value.
static Status createWithFormat(const char *format, Args &&...args)
int SetErrorStringWithFormat(const char *format,...) __attribute__((format(printf
Set the current error string to a formatted error string.
bool Fail() const
Test for error condition.
const char * AsCString(const char *default_error_str="unknown error") const
Get the error string associated with the current error.
void SetErrorString(llvm::StringRef err_str)
Set the current error string to err_str.
const char * GetData() const
A stream class that can stream formatted output to a file.
void Format(const char *format, Args &&... args)
llvm::raw_ostream & AsRawOstream()
Returns a raw_ostream that forwards the data to this Stream object.
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
size_t EOL()
Output and End of Line character to the stream.
Status CreateTarget(Debugger &debugger, llvm::StringRef user_exe_path, llvm::StringRef triple_str, LoadDependentFiles get_dependent_modules, const OptionGroupPlatform *platform_options, lldb::TargetSP &target_sp)
Create a new Target.
const lldb::ProcessSP & CreateProcess(lldb::ListenerSP listener_sp, llvm::StringRef plugin_name, const FileSpec *crash_file, bool can_connect)
static ArchSpec GetDefaultArchitecture()
const ArchSpec & GetArchitecture() const
std::string GetAsString(llvm::StringRef separator="-") const
static lldb::UnixSignalsSP CreateForHost()
An abstract interface for things that know how to map numeric user/group IDs into names.
static UserIDResolver & GetNoopResolver()
Returns a resolver which returns a failure value for each query.
#define LLDB_INVALID_IMAGE_TOKEN
#define LLDB_INVALID_PROCESS_ID
@ SelectMostRelevantFrame
A class that represents a running process on the host machine.
Log * GetLog(Cat mask)
Retrieve the Log object for the channel associated with the given log enum.
llvm::SmallVector< lldb::addr_t, 6 > MmapArgList
lldb::PlatformSP(* PlatformCreateInstance)(bool force, const ArchSpec *arch)
std::vector< ProcessInstanceInfo > ProcessInstanceInfoList
std::shared_ptr< lldb_private::BreakpointLocation > BreakpointLocationSP
std::shared_ptr< lldb_private::UnixSignals > UnixSignalsSP
std::shared_ptr< lldb_private::Platform > PlatformSP
@ eErrorTypeGeneric
Generic errors that can be any value.
std::shared_ptr< lldb_private::Breakpoint > BreakpointSP
std::shared_ptr< lldb_private::Process > ProcessSP
std::shared_ptr< lldb_private::Event > EventSP
std::shared_ptr< lldb_private::Listener > ListenerSP
std::shared_ptr< lldb_private::WritableDataBuffer > WritableDataBufferSP
std::shared_ptr< lldb_private::Target > TargetSP
std::shared_ptr< lldb_private::Module > ModuleSP