180814287SRaphael Isemann //===-- NativeProcessLinux.cpp --------------------------------------------===// 2af245d11STodd Fiala // 32946cd70SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 42946cd70SChandler Carruth // See https://llvm.org/LICENSE.txt for license information. 52946cd70SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6af245d11STodd Fiala // 7af245d11STodd Fiala //===----------------------------------------------------------------------===// 8af245d11STodd Fiala 9af245d11STodd Fiala #include "NativeProcessLinux.h" 10af245d11STodd Fiala 1176e47d48SRaphael Isemann #include <cerrno> 1276e47d48SRaphael Isemann #include <cstdint> 1376e47d48SRaphael Isemann #include <cstring> 14af245d11STodd Fiala #include <unistd.h> 15af245d11STodd Fiala 16af245d11STodd Fiala #include <fstream> 17df7c6995SPavel Labath #include <mutex> 18c076559aSPavel Labath #include <sstream> 19af245d11STodd Fiala #include <string> 205b981ab9SPavel Labath #include <unordered_map> 21af245d11STodd Fiala 222c4226f8SPavel Labath #include "NativeThreadLinux.h" 232c4226f8SPavel Labath #include "Plugins/Process/POSIX/ProcessPOSIXLog.h" 242c4226f8SPavel Labath #include "Plugins/Process/Utility/LinuxProcMaps.h" 252c4226f8SPavel Labath #include "Procfs.h" 266edef204SOleksiy Vyalov #include "lldb/Core/ModuleSpec.h" 27af245d11STodd Fiala #include "lldb/Host/Host.h" 285ad891f7SPavel Labath #include "lldb/Host/HostProcess.h" 29eef758e9SPavel Labath #include "lldb/Host/ProcessLaunchInfo.h" 3024ae6294SZachary Turner #include "lldb/Host/PseudoTerminal.h" 3139de3110SZachary Turner #include "lldb/Host/ThreadLauncher.h" 322a86b555SPavel Labath #include "lldb/Host/common/NativeRegisterContext.h" 33c8d18cbaSMichał Górny #include "lldb/Host/linux/Host.h" 344ee1c952SPavel Labath #include "lldb/Host/linux/Ptrace.h" 354ee1c952SPavel Labath #include "lldb/Host/linux/Uio.h" 36816ae4b0SKamil Rytarowski #include "lldb/Host/posix/ProcessLauncherPosixFork.h" 372a86b555SPavel Labath #include "lldb/Symbol/ObjectFile.h" 3890aff47cSZachary Turner #include "lldb/Target/Process.h" 395b981ab9SPavel Labath #include "lldb/Target/Target.h" 40c16f5dcaSChaoren Lin #include "lldb/Utility/LLDBAssert.h" 41d821c997SPavel Labath #include "lldb/Utility/State.h" 4297206d57SZachary Turner #include "lldb/Utility/Status.h" 43f805e190SPavel Labath #include "lldb/Utility/StringExtractor.h" 442c4226f8SPavel Labath #include "llvm/ADT/ScopeExit.h" 4510c41f37SPavel Labath #include "llvm/Support/Errno.h" 4610c41f37SPavel Labath #include "llvm/Support/FileSystem.h" 4710c41f37SPavel Labath #include "llvm/Support/Threading.h" 48af245d11STodd Fiala 49d858487eSTamas Berghammer #include <linux/unistd.h> 50d858487eSTamas Berghammer #include <sys/socket.h> 51df7c6995SPavel Labath #include <sys/syscall.h> 52d858487eSTamas Berghammer #include <sys/types.h> 53d858487eSTamas Berghammer #include <sys/user.h> 54d858487eSTamas Berghammer #include <sys/wait.h> 55d858487eSTamas Berghammer 568d58fbd0SDavid Spickett #ifdef __aarch64__ 578d58fbd0SDavid Spickett #include <asm/hwcap.h> 588d58fbd0SDavid Spickett #include <sys/auxv.h> 598d58fbd0SDavid Spickett #endif 608d58fbd0SDavid Spickett 61af245d11STodd Fiala // Support hardware breakpoints in case it has not been defined 62af245d11STodd Fiala #ifndef TRAP_HWBKPT 63af245d11STodd Fiala #define TRAP_HWBKPT 4 64af245d11STodd Fiala #endif 65af245d11STodd Fiala 668d58fbd0SDavid Spickett #ifndef HWCAP2_MTE 678d58fbd0SDavid Spickett #define HWCAP2_MTE (1 << 18) 688d58fbd0SDavid Spickett #endif 698d58fbd0SDavid Spickett 707cb18bf5STamas Berghammer using namespace lldb; 717cb18bf5STamas Berghammer using namespace lldb_private; 72db264a6dSTamas Berghammer using namespace lldb_private::process_linux; 737cb18bf5STamas Berghammer using namespace llvm; 747cb18bf5STamas Berghammer 75af245d11STodd Fiala // Private bits we only need internally. 76df7c6995SPavel Labath 77b9c1b51eSKate Stone static bool ProcessVmReadvSupported() { 78df7c6995SPavel Labath static bool is_supported; 79c5f28e2aSKamil Rytarowski static llvm::once_flag flag; 80df7c6995SPavel Labath 81c5f28e2aSKamil Rytarowski llvm::call_once(flag, [] { 82a6321a8eSPavel Labath Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS)); 83df7c6995SPavel Labath 84df7c6995SPavel Labath uint32_t source = 0x47424742; 85df7c6995SPavel Labath uint32_t dest = 0; 86df7c6995SPavel Labath 87df7c6995SPavel Labath struct iovec local, remote; 88df7c6995SPavel Labath remote.iov_base = &source; 89df7c6995SPavel Labath local.iov_base = &dest; 90df7c6995SPavel Labath remote.iov_len = local.iov_len = sizeof source; 91df7c6995SPavel Labath 92b9c1b51eSKate Stone // We shall try if cross-process-memory reads work by attempting to read a 93b9c1b51eSKate Stone // value from our own process. 94df7c6995SPavel Labath ssize_t res = process_vm_readv(getpid(), &local, 1, &remote, 1, 0); 95df7c6995SPavel Labath is_supported = (res == sizeof(source) && source == dest); 96df7c6995SPavel Labath if (is_supported) 97a6321a8eSPavel Labath LLDB_LOG(log, 98a6321a8eSPavel Labath "Detected kernel support for process_vm_readv syscall. " 99a6321a8eSPavel Labath "Fast memory reads enabled."); 100df7c6995SPavel Labath else 101a6321a8eSPavel Labath LLDB_LOG(log, 102a6321a8eSPavel Labath "syscall process_vm_readv failed (error: {0}). Fast memory " 103a6321a8eSPavel Labath "reads disabled.", 10410c41f37SPavel Labath llvm::sys::StrError()); 105df7c6995SPavel Labath }); 106df7c6995SPavel Labath 107df7c6995SPavel Labath return is_supported; 108df7c6995SPavel Labath } 109df7c6995SPavel Labath 11093c1b3caSPavel Labath static void MaybeLogLaunchInfo(const ProcessLaunchInfo &info) { 111a6321a8eSPavel Labath Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS)); 1124abe5d69SPavel Labath if (!log) 1134abe5d69SPavel Labath return; 1144abe5d69SPavel Labath 1154abe5d69SPavel Labath if (const FileAction *action = info.GetFileActionForFD(STDIN_FILENO)) 116a6321a8eSPavel Labath LLDB_LOG(log, "setting STDIN to '{0}'", action->GetFileSpec()); 1174abe5d69SPavel Labath else 118a6321a8eSPavel Labath LLDB_LOG(log, "leaving STDIN as is"); 1194abe5d69SPavel Labath 1204abe5d69SPavel Labath if (const FileAction *action = info.GetFileActionForFD(STDOUT_FILENO)) 121a6321a8eSPavel Labath LLDB_LOG(log, "setting STDOUT to '{0}'", action->GetFileSpec()); 1224abe5d69SPavel Labath else 123a6321a8eSPavel Labath LLDB_LOG(log, "leaving STDOUT as is"); 1244abe5d69SPavel Labath 1254abe5d69SPavel Labath if (const FileAction *action = info.GetFileActionForFD(STDERR_FILENO)) 126a6321a8eSPavel Labath LLDB_LOG(log, "setting STDERR to '{0}'", action->GetFileSpec()); 1274abe5d69SPavel Labath else 128a6321a8eSPavel Labath LLDB_LOG(log, "leaving STDERR as is"); 1294abe5d69SPavel Labath 1304abe5d69SPavel Labath int i = 0; 131b9c1b51eSKate Stone for (const char **args = info.GetArguments().GetConstArgumentVector(); *args; 132b9c1b51eSKate Stone ++args, ++i) 133a6321a8eSPavel Labath LLDB_LOG(log, "arg {0}: '{1}'", i, *args); 1344abe5d69SPavel Labath } 1354abe5d69SPavel Labath 13693c1b3caSPavel Labath static void DisplayBytes(StreamString &s, void *bytes, uint32_t count) { 137af245d11STodd Fiala uint8_t *ptr = (uint8_t *)bytes; 138af245d11STodd Fiala const uint32_t loop_count = std::min<uint32_t>(DEBUG_PTRACE_MAXBYTES, count); 139b9c1b51eSKate Stone for (uint32_t i = 0; i < loop_count; i++) { 140af245d11STodd Fiala s.Printf("[%x]", *ptr); 141af245d11STodd Fiala ptr++; 142af245d11STodd Fiala } 143af245d11STodd Fiala } 144af245d11STodd Fiala 14593c1b3caSPavel Labath static void PtraceDisplayBytes(int &req, void *data, size_t data_size) { 146aafe053cSPavel Labath Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PTRACE)); 147a6321a8eSPavel Labath if (!log) 148a6321a8eSPavel Labath return; 149af245d11STodd Fiala StreamString buf; 150af245d11STodd Fiala 151b9c1b51eSKate Stone switch (req) { 152b9c1b51eSKate Stone case PTRACE_POKETEXT: { 153af245d11STodd Fiala DisplayBytes(buf, &data, 8); 154aafe053cSPavel Labath LLDB_LOGV(log, "PTRACE_POKETEXT {0}", buf.GetData()); 155af245d11STodd Fiala break; 156af245d11STodd Fiala } 157b9c1b51eSKate Stone case PTRACE_POKEDATA: { 158af245d11STodd Fiala DisplayBytes(buf, &data, 8); 159aafe053cSPavel Labath LLDB_LOGV(log, "PTRACE_POKEDATA {0}", buf.GetData()); 160af245d11STodd Fiala break; 161af245d11STodd Fiala } 162b9c1b51eSKate Stone case PTRACE_POKEUSER: { 163af245d11STodd Fiala DisplayBytes(buf, &data, 8); 164aafe053cSPavel Labath LLDB_LOGV(log, "PTRACE_POKEUSER {0}", buf.GetData()); 165af245d11STodd Fiala break; 166af245d11STodd Fiala } 167b9c1b51eSKate Stone case PTRACE_SETREGS: { 168af245d11STodd Fiala DisplayBytes(buf, data, data_size); 169aafe053cSPavel Labath LLDB_LOGV(log, "PTRACE_SETREGS {0}", buf.GetData()); 170af245d11STodd Fiala break; 171af245d11STodd Fiala } 172b9c1b51eSKate Stone case PTRACE_SETFPREGS: { 173af245d11STodd Fiala DisplayBytes(buf, data, data_size); 174aafe053cSPavel Labath LLDB_LOGV(log, "PTRACE_SETFPREGS {0}", buf.GetData()); 175af245d11STodd Fiala break; 176af245d11STodd Fiala } 177b9c1b51eSKate Stone case PTRACE_SETSIGINFO: { 178af245d11STodd Fiala DisplayBytes(buf, data, sizeof(siginfo_t)); 179aafe053cSPavel Labath LLDB_LOGV(log, "PTRACE_SETSIGINFO {0}", buf.GetData()); 180af245d11STodd Fiala break; 181af245d11STodd Fiala } 182b9c1b51eSKate Stone case PTRACE_SETREGSET: { 18311edb4eeSPavel Labath // Extract iov_base from data, which is a pointer to the struct iovec 184af245d11STodd Fiala DisplayBytes(buf, *(void **)data, data_size); 185aafe053cSPavel Labath LLDB_LOGV(log, "PTRACE_SETREGSET {0}", buf.GetData()); 186af245d11STodd Fiala break; 187af245d11STodd Fiala } 188b9c1b51eSKate Stone default: {} 189af245d11STodd Fiala } 190af245d11STodd Fiala } 191af245d11STodd Fiala 19219cbe96aSPavel Labath static constexpr unsigned k_ptrace_word_size = sizeof(void *); 193b9c1b51eSKate Stone static_assert(sizeof(long) >= k_ptrace_word_size, 194b9c1b51eSKate Stone "Size of long must be larger than ptrace word size"); 1951107b5a5SPavel Labath 196bd7cbc5aSPavel Labath // Simple helper function to ensure flags are enabled on the given file 197bd7cbc5aSPavel Labath // descriptor. 19897206d57SZachary Turner static Status EnsureFDFlags(int fd, int flags) { 19997206d57SZachary Turner Status error; 200bd7cbc5aSPavel Labath 201bd7cbc5aSPavel Labath int status = fcntl(fd, F_GETFL); 202b9c1b51eSKate Stone if (status == -1) { 203bd7cbc5aSPavel Labath error.SetErrorToErrno(); 204bd7cbc5aSPavel Labath return error; 205bd7cbc5aSPavel Labath } 206bd7cbc5aSPavel Labath 207b9c1b51eSKate Stone if (fcntl(fd, F_SETFL, status | flags) == -1) { 208bd7cbc5aSPavel Labath error.SetErrorToErrno(); 209bd7cbc5aSPavel Labath return error; 210bd7cbc5aSPavel Labath } 211bd7cbc5aSPavel Labath 212bd7cbc5aSPavel Labath return error; 213bd7cbc5aSPavel Labath } 214bd7cbc5aSPavel Labath 215af245d11STodd Fiala // Public Static Methods 216af245d11STodd Fiala 21782abefa4SPavel Labath llvm::Expected<std::unique_ptr<NativeProcessProtocol>> 21896e600fcSPavel Labath NativeProcessLinux::Factory::Launch(ProcessLaunchInfo &launch_info, 21996e600fcSPavel Labath NativeDelegate &native_delegate, 22096e600fcSPavel Labath MainLoop &mainloop) const { 221a6321a8eSPavel Labath Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS)); 222af245d11STodd Fiala 22396e600fcSPavel Labath MaybeLogLaunchInfo(launch_info); 224af245d11STodd Fiala 22596e600fcSPavel Labath Status status; 22696e600fcSPavel Labath ::pid_t pid = ProcessLauncherPosixFork() 22796e600fcSPavel Labath .LaunchProcess(launch_info, status) 22896e600fcSPavel Labath .GetProcessId(); 22996e600fcSPavel Labath LLDB_LOG(log, "pid = {0:x}", pid); 23096e600fcSPavel Labath if (status.Fail()) { 23196e600fcSPavel Labath LLDB_LOG(log, "failed to launch process: {0}", status); 23296e600fcSPavel Labath return status.ToError(); 233af245d11STodd Fiala } 234af245d11STodd Fiala 23596e600fcSPavel Labath // Wait for the child process to trap on its call to execve. 23696e600fcSPavel Labath int wstatus; 23796e600fcSPavel Labath ::pid_t wpid = llvm::sys::RetryAfterSignal(-1, ::waitpid, pid, &wstatus, 0); 23896e600fcSPavel Labath assert(wpid == pid); 23996e600fcSPavel Labath (void)wpid; 24096e600fcSPavel Labath if (!WIFSTOPPED(wstatus)) { 24196e600fcSPavel Labath LLDB_LOG(log, "Could not sync with inferior process: wstatus={1}", 24296e600fcSPavel Labath WaitStatus::Decode(wstatus)); 24396e600fcSPavel Labath return llvm::make_error<StringError>("Could not sync with inferior process", 24496e600fcSPavel Labath llvm::inconvertibleErrorCode()); 24596e600fcSPavel Labath } 24696e600fcSPavel Labath LLDB_LOG(log, "inferior started, now in stopped state"); 247af245d11STodd Fiala 24836e82208SPavel Labath ProcessInstanceInfo Info; 24936e82208SPavel Labath if (!Host::GetProcessInfo(pid, Info)) { 25036e82208SPavel Labath return llvm::make_error<StringError>("Cannot get process architecture", 25136e82208SPavel Labath llvm::inconvertibleErrorCode()); 25236e82208SPavel Labath } 25396e600fcSPavel Labath 25496e600fcSPavel Labath // Set the architecture to the exe architecture. 25596e600fcSPavel Labath LLDB_LOG(log, "pid = {0:x}, detected architecture {1}", pid, 25636e82208SPavel Labath Info.GetArchitecture().GetArchitectureName()); 25796e600fcSPavel Labath 25896e600fcSPavel Labath status = SetDefaultPtraceOpts(pid); 25996e600fcSPavel Labath if (status.Fail()) { 26096e600fcSPavel Labath LLDB_LOG(log, "failed to set default ptrace options: {0}", status); 26196e600fcSPavel Labath return status.ToError(); 262af245d11STodd Fiala } 263af245d11STodd Fiala 26482abefa4SPavel Labath return std::unique_ptr<NativeProcessLinux>(new NativeProcessLinux( 26564ec505dSJonas Devlieghere pid, launch_info.GetPTY().ReleasePrimaryFileDescriptor(), native_delegate, 26636e82208SPavel Labath Info.GetArchitecture(), mainloop, {pid})); 267af245d11STodd Fiala } 268af245d11STodd Fiala 26982abefa4SPavel Labath llvm::Expected<std::unique_ptr<NativeProcessProtocol>> 27082abefa4SPavel Labath NativeProcessLinux::Factory::Attach( 271b9c1b51eSKate Stone lldb::pid_t pid, NativeProcessProtocol::NativeDelegate &native_delegate, 27296e600fcSPavel Labath MainLoop &mainloop) const { 273a6321a8eSPavel Labath Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS)); 274a6321a8eSPavel Labath LLDB_LOG(log, "pid = {0:x}", pid); 275af245d11STodd Fiala 276af245d11STodd Fiala // Retrieve the architecture for the running process. 27736e82208SPavel Labath ProcessInstanceInfo Info; 27836e82208SPavel Labath if (!Host::GetProcessInfo(pid, Info)) { 27936e82208SPavel Labath return llvm::make_error<StringError>("Cannot get process architecture", 28036e82208SPavel Labath llvm::inconvertibleErrorCode()); 28136e82208SPavel Labath } 282af245d11STodd Fiala 28396e600fcSPavel Labath auto tids_or = NativeProcessLinux::Attach(pid); 28496e600fcSPavel Labath if (!tids_or) 28596e600fcSPavel Labath return tids_or.takeError(); 286af245d11STodd Fiala 28782abefa4SPavel Labath return std::unique_ptr<NativeProcessLinux>(new NativeProcessLinux( 28836e82208SPavel Labath pid, -1, native_delegate, Info.GetArchitecture(), mainloop, *tids_or)); 289af245d11STodd Fiala } 290af245d11STodd Fiala 291fd0af0cfSMichał Górny NativeProcessLinux::Extension 292fd0af0cfSMichał Górny NativeProcessLinux::Factory::GetSupportedExtensions() const { 2938d58fbd0SDavid Spickett NativeProcessLinux::Extension supported = 2948d58fbd0SDavid Spickett Extension::multiprocess | Extension::fork | Extension::vfork | 295ca7824c2SMichał Górny Extension::pass_signals | Extension::auxv | Extension::libraries_svr4; 2968d58fbd0SDavid Spickett 2978d58fbd0SDavid Spickett #ifdef __aarch64__ 2988d58fbd0SDavid Spickett // At this point we do not have a process so read auxv directly. 2998d58fbd0SDavid Spickett if ((getauxval(AT_HWCAP2) & HWCAP2_MTE)) 3008d58fbd0SDavid Spickett supported |= Extension::memory_tagging; 3018d58fbd0SDavid Spickett #endif 3028d58fbd0SDavid Spickett 3038d58fbd0SDavid Spickett return supported; 304fd0af0cfSMichał Górny } 305fd0af0cfSMichał Górny 306af245d11STodd Fiala // Public Instance Methods 307af245d11STodd Fiala 30896e600fcSPavel Labath NativeProcessLinux::NativeProcessLinux(::pid_t pid, int terminal_fd, 30996e600fcSPavel Labath NativeDelegate &delegate, 31082abefa4SPavel Labath const ArchSpec &arch, MainLoop &mainloop, 31182abefa4SPavel Labath llvm::ArrayRef<::pid_t> tids) 3120b697561SWalter Erquinigo : NativeProcessELF(pid, terminal_fd, delegate), m_arch(arch), 313fd0af0cfSMichał Górny m_main_loop(mainloop), m_intel_pt_manager(pid) { 314b9c1b51eSKate Stone if (m_terminal_fd != -1) { 31596e600fcSPavel Labath Status status = EnsureFDFlags(m_terminal_fd, O_NONBLOCK); 31696e600fcSPavel Labath assert(status.Success()); 3175ad891f7SPavel Labath } 318af245d11STodd Fiala 31996e600fcSPavel Labath Status status; 32096e600fcSPavel Labath m_sigchld_handle = mainloop.RegisterSignal( 32196e600fcSPavel Labath SIGCHLD, [this](MainLoopBase &) { SigchldHandler(); }, status); 32296e600fcSPavel Labath assert(m_sigchld_handle && status.Success()); 32396e600fcSPavel Labath 32496e600fcSPavel Labath for (const auto &tid : tids) { 3250b697561SWalter Erquinigo NativeThreadLinux &thread = AddThread(tid, /*resume*/ false); 326a5be48b3SPavel Labath ThreadWasCreated(thread); 327af245d11STodd Fiala } 328af245d11STodd Fiala 32996e600fcSPavel Labath // Let our process instance know the thread has stopped. 33096e600fcSPavel Labath SetCurrentThreadID(tids[0]); 33196e600fcSPavel Labath SetState(StateType::eStateStopped, false); 33296e600fcSPavel Labath 33396e600fcSPavel Labath // Proccess any signals we received before installing our handler 33496e600fcSPavel Labath SigchldHandler(); 33596e600fcSPavel Labath } 33696e600fcSPavel Labath 33796e600fcSPavel Labath llvm::Expected<std::vector<::pid_t>> NativeProcessLinux::Attach(::pid_t pid) { 338a6321a8eSPavel Labath Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS)); 339af245d11STodd Fiala 34096e600fcSPavel Labath Status status; 341b9c1b51eSKate Stone // Use a map to keep track of the threads which we have attached/need to 342b9c1b51eSKate Stone // attach. 343af245d11STodd Fiala Host::TidMap tids_to_attach; 344b9c1b51eSKate Stone while (Host::FindProcessThreads(pid, tids_to_attach)) { 345af245d11STodd Fiala for (Host::TidMap::iterator it = tids_to_attach.begin(); 346b9c1b51eSKate Stone it != tids_to_attach.end();) { 347b9c1b51eSKate Stone if (it->second == false) { 348af245d11STodd Fiala lldb::tid_t tid = it->first; 349af245d11STodd Fiala 350af245d11STodd Fiala // Attach to the requested process. 351af245d11STodd Fiala // An attach will cause the thread to stop with a SIGSTOP. 35296e600fcSPavel Labath if ((status = PtraceWrapper(PTRACE_ATTACH, tid)).Fail()) { 35305097246SAdrian Prantl // No such thread. The thread may have exited. More error handling 35405097246SAdrian Prantl // may be needed. 35596e600fcSPavel Labath if (status.GetError() == ESRCH) { 356af245d11STodd Fiala it = tids_to_attach.erase(it); 357af245d11STodd Fiala continue; 35896e600fcSPavel Labath } 35996e600fcSPavel Labath return status.ToError(); 360af245d11STodd Fiala } 361af245d11STodd Fiala 36296e600fcSPavel Labath int wpid = 36396e600fcSPavel Labath llvm::sys::RetryAfterSignal(-1, ::waitpid, tid, nullptr, __WALL); 36405097246SAdrian Prantl // Need to use __WALL otherwise we receive an error with errno=ECHLD At 36505097246SAdrian Prantl // this point we should have a thread stopped if waitpid succeeds. 36696e600fcSPavel Labath if (wpid < 0) { 36705097246SAdrian Prantl // No such thread. The thread may have exited. More error handling 36805097246SAdrian Prantl // may be needed. 369b9c1b51eSKate Stone if (errno == ESRCH) { 370af245d11STodd Fiala it = tids_to_attach.erase(it); 371af245d11STodd Fiala continue; 372af245d11STodd Fiala } 37396e600fcSPavel Labath return llvm::errorCodeToError( 37496e600fcSPavel Labath std::error_code(errno, std::generic_category())); 375af245d11STodd Fiala } 376af245d11STodd Fiala 37796e600fcSPavel Labath if ((status = SetDefaultPtraceOpts(tid)).Fail()) 37896e600fcSPavel Labath return status.ToError(); 379af245d11STodd Fiala 380a6321a8eSPavel Labath LLDB_LOG(log, "adding tid = {0}", tid); 381af245d11STodd Fiala it->second = true; 382af245d11STodd Fiala } 383af245d11STodd Fiala 384af245d11STodd Fiala // move the loop forward 385af245d11STodd Fiala ++it; 386af245d11STodd Fiala } 387af245d11STodd Fiala } 388af245d11STodd Fiala 38996e600fcSPavel Labath size_t tid_count = tids_to_attach.size(); 39096e600fcSPavel Labath if (tid_count == 0) 39196e600fcSPavel Labath return llvm::make_error<StringError>("No such process", 39296e600fcSPavel Labath llvm::inconvertibleErrorCode()); 393af245d11STodd Fiala 39496e600fcSPavel Labath std::vector<::pid_t> tids; 39596e600fcSPavel Labath tids.reserve(tid_count); 39696e600fcSPavel Labath for (const auto &p : tids_to_attach) 39796e600fcSPavel Labath tids.push_back(p.first); 39896e600fcSPavel Labath return std::move(tids); 399af245d11STodd Fiala } 400af245d11STodd Fiala 40197206d57SZachary Turner Status NativeProcessLinux::SetDefaultPtraceOpts(lldb::pid_t pid) { 402af245d11STodd Fiala long ptrace_opts = 0; 403af245d11STodd Fiala 404af245d11STodd Fiala // Have the child raise an event on exit. This is used to keep the child in 405af245d11STodd Fiala // limbo until it is destroyed. 406af245d11STodd Fiala ptrace_opts |= PTRACE_O_TRACEEXIT; 407af245d11STodd Fiala 408af245d11STodd Fiala // Have the tracer trace threads which spawn in the inferior process. 409af245d11STodd Fiala ptrace_opts |= PTRACE_O_TRACECLONE; 410af245d11STodd Fiala 41105097246SAdrian Prantl // Have the tracer notify us before execve returns (needed to disable legacy 41205097246SAdrian Prantl // SIGTRAP generation) 413af245d11STodd Fiala ptrace_opts |= PTRACE_O_TRACEEXEC; 414af245d11STodd Fiala 415c8d18cbaSMichał Górny // Have the tracer trace forked children. 416c8d18cbaSMichał Górny ptrace_opts |= PTRACE_O_TRACEFORK; 417c8d18cbaSMichał Górny 418c8d18cbaSMichał Górny // Have the tracer trace vforks. 419c8d18cbaSMichał Górny ptrace_opts |= PTRACE_O_TRACEVFORK; 420c8d18cbaSMichał Górny 421c8d18cbaSMichał Górny // Have the tracer trace vfork-done in order to restore breakpoints after 422c8d18cbaSMichał Górny // the child finishes sharing memory. 423c8d18cbaSMichał Górny ptrace_opts |= PTRACE_O_TRACEVFORKDONE; 424c8d18cbaSMichał Górny 4254a9babb2SPavel Labath return PtraceWrapper(PTRACE_SETOPTIONS, pid, nullptr, (void *)ptrace_opts); 426af245d11STodd Fiala } 427af245d11STodd Fiala 4281107b5a5SPavel Labath // Handles all waitpid events from the inferior process. 429b9c1b51eSKate Stone void NativeProcessLinux::MonitorCallback(lldb::pid_t pid, bool exited, 4303508fc8cSPavel Labath WaitStatus status) { 431af245d11STodd Fiala Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS)); 432af245d11STodd Fiala 433b9c1b51eSKate Stone // Certain activities differ based on whether the pid is the tid of the main 434b9c1b51eSKate Stone // thread. 4351107b5a5SPavel Labath const bool is_main_thread = (pid == GetID()); 436af245d11STodd Fiala 437af245d11STodd Fiala // Handle when the thread exits. 438b9c1b51eSKate Stone if (exited) { 439d8b3c1a1SPavel Labath LLDB_LOG(log, 4409303afb3SPavel Labath "got exit status({0}) , tid = {1} ({2} main thread), process " 441d8b3c1a1SPavel Labath "state = {3}", 4429303afb3SPavel Labath status, pid, is_main_thread ? "is" : "is not", GetState()); 443af245d11STodd Fiala 444af245d11STodd Fiala // This is a thread that exited. Ensure we're not tracking it anymore. 445d8b3c1a1SPavel Labath StopTrackingThread(pid); 446af245d11STodd Fiala 447b9c1b51eSKate Stone if (is_main_thread) { 448af245d11STodd Fiala // The main thread exited. We're done monitoring. Report to delegate. 4493508fc8cSPavel Labath SetExitStatus(status, true); 450af245d11STodd Fiala 451af245d11STodd Fiala // Notify delegate that our process has exited. 4521107b5a5SPavel Labath SetState(StateType::eStateExited, true); 453af245d11STodd Fiala } 4541107b5a5SPavel Labath return; 455af245d11STodd Fiala } 456af245d11STodd Fiala 457af245d11STodd Fiala siginfo_t info; 458b9cc0c75SPavel Labath const auto info_err = GetSignalInfo(pid, &info); 459b9cc0c75SPavel Labath auto thread_sp = GetThreadByID(pid); 460b9cc0c75SPavel Labath 461b9c1b51eSKate Stone if (!thread_sp) { 46205097246SAdrian Prantl // Normally, the only situation when we cannot find the thread is if we 46305097246SAdrian Prantl // have just received a new thread notification. This is indicated by 464a6321a8eSPavel Labath // GetSignalInfo() returning si_code == SI_USER and si_pid == 0 465a6321a8eSPavel Labath LLDB_LOG(log, "received notification about an unknown tid {0}.", pid); 466b9cc0c75SPavel Labath 467b9c1b51eSKate Stone if (info_err.Fail()) { 468a6321a8eSPavel Labath LLDB_LOG(log, 469a6321a8eSPavel Labath "(tid {0}) GetSignalInfo failed ({1}). " 470a6321a8eSPavel Labath "Ingoring this notification.", 471a6321a8eSPavel Labath pid, info_err); 472b9cc0c75SPavel Labath return; 473b9cc0c75SPavel Labath } 474b9cc0c75SPavel Labath 475a6321a8eSPavel Labath LLDB_LOG(log, "tid {0}, si_code: {1}, si_pid: {2}", pid, info.si_code, 476a6321a8eSPavel Labath info.si_pid); 477b9cc0c75SPavel Labath 478c8d18cbaSMichał Górny MonitorClone(pid, llvm::None); 479b9cc0c75SPavel Labath return; 480b9cc0c75SPavel Labath } 481b9cc0c75SPavel Labath 482b9cc0c75SPavel Labath // Get details on the signal raised. 483b9c1b51eSKate Stone if (info_err.Success()) { 484fa03ad2eSChaoren Lin // We have retrieved the signal info. Dispatch appropriately. 485fa03ad2eSChaoren Lin if (info.si_signo == SIGTRAP) 486b9cc0c75SPavel Labath MonitorSIGTRAP(info, *thread_sp); 487fa03ad2eSChaoren Lin else 488b9cc0c75SPavel Labath MonitorSignal(info, *thread_sp, exited); 489b9c1b51eSKate Stone } else { 490b9c1b51eSKate Stone if (info_err.GetError() == EINVAL) { 49105097246SAdrian Prantl // This is a group stop reception for this tid. We can reach here if we 49205097246SAdrian Prantl // reinject SIGSTOP, SIGSTP, SIGTTIN or SIGTTOU into the tracee, 49305097246SAdrian Prantl // triggering the group-stop mechanism. Normally receiving these would 49405097246SAdrian Prantl // stop the process, pending a SIGCONT. Simulating this state in a 49505097246SAdrian Prantl // debugger is hard and is generally not needed (one use case is 49605097246SAdrian Prantl // debugging background task being managed by a shell). For general use, 49705097246SAdrian Prantl // it is sufficient to stop the process in a signal-delivery stop which 49805097246SAdrian Prantl // happens before the group stop. This done by MonitorSignal and works 49905097246SAdrian Prantl // correctly for all signals. 500a6321a8eSPavel Labath LLDB_LOG(log, 501a6321a8eSPavel Labath "received a group stop for pid {0} tid {1}. Transparent " 502a6321a8eSPavel Labath "handling of group stops not supported, resuming the " 503a6321a8eSPavel Labath "thread.", 504a6321a8eSPavel Labath GetID(), pid); 505b9c1b51eSKate Stone ResumeThread(*thread_sp, thread_sp->GetState(), 506b9c1b51eSKate Stone LLDB_INVALID_SIGNAL_NUMBER); 507b9c1b51eSKate Stone } else { 508af245d11STodd Fiala // ptrace(GETSIGINFO) failed (but not due to group-stop). 509af245d11STodd Fiala 510b9c1b51eSKate Stone // A return value of ESRCH means the thread/process is no longer on the 511a6321a8eSPavel Labath // system, so it was killed somehow outside of our control. Either way, 512a6321a8eSPavel Labath // we can't do anything with it anymore. 513af245d11STodd Fiala 514b9c1b51eSKate Stone // Stop tracking the metadata for the thread since it's entirely off the 515b9c1b51eSKate Stone // system now. 5161107b5a5SPavel Labath const bool thread_found = StopTrackingThread(pid); 517af245d11STodd Fiala 518a6321a8eSPavel Labath LLDB_LOG(log, 5199303afb3SPavel Labath "GetSignalInfo failed: {0}, tid = {1}, status = {2}, " 520a6321a8eSPavel Labath "status = {3}, main_thread = {4}, thread_found: {5}", 5219303afb3SPavel Labath info_err, pid, status, status, is_main_thread, thread_found); 522af245d11STodd Fiala 523b9c1b51eSKate Stone if (is_main_thread) { 524b9c1b51eSKate Stone // Notify the delegate - our process is not available but appears to 52505097246SAdrian Prantl // have been killed outside our control. Is eStateExited the right 52605097246SAdrian Prantl // exit state in this case? 5273508fc8cSPavel Labath SetExitStatus(status, true); 5281107b5a5SPavel Labath SetState(StateType::eStateExited, true); 529b9c1b51eSKate Stone } else { 530b9c1b51eSKate Stone // This thread was pulled out from underneath us. Anything to do here? 531b9c1b51eSKate Stone // Do we want to do an all stop? 532a6321a8eSPavel Labath LLDB_LOG(log, 533a6321a8eSPavel Labath "pid {0} tid {1} non-main thread exit occurred, didn't " 534a6321a8eSPavel Labath "tell delegate anything since thread disappeared out " 535a6321a8eSPavel Labath "from underneath us", 536a6321a8eSPavel Labath GetID(), pid); 537af245d11STodd Fiala } 538af245d11STodd Fiala } 539af245d11STodd Fiala } 540af245d11STodd Fiala } 541af245d11STodd Fiala 542c8d18cbaSMichał Górny void NativeProcessLinux::WaitForCloneNotification(::pid_t pid) { 543a6321a8eSPavel Labath Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS)); 544426bdf88SPavel Labath 545c8d18cbaSMichał Górny // The PID is not tracked yet, let's wait for it to appear. 546426bdf88SPavel Labath int status = -1; 547a6321a8eSPavel Labath LLDB_LOG(log, 548c8d18cbaSMichał Górny "received clone event for pid {0}. pid not tracked yet, " 549c8d18cbaSMichał Górny "waiting for it to appear...", 550c8d18cbaSMichał Górny pid); 551c8d18cbaSMichał Górny ::pid_t wait_pid = 552c8d18cbaSMichał Górny llvm::sys::RetryAfterSignal(-1, ::waitpid, pid, &status, __WALL); 553c8d18cbaSMichał Górny // Since we are waiting on a specific pid, this must be the creation event. 554a6321a8eSPavel Labath // But let's do some checks just in case. 555c8d18cbaSMichał Górny if (wait_pid != pid) { 556a6321a8eSPavel Labath LLDB_LOG(log, 557c8d18cbaSMichał Górny "waiting for pid {0} failed. Assuming the pid has " 558a6321a8eSPavel Labath "disappeared in the meantime", 559c8d18cbaSMichał Górny pid); 560426bdf88SPavel Labath // The only way I know of this could happen is if the whole process was 561b9c1b51eSKate Stone // SIGKILLed in the mean time. In any case, we can't do anything about that 562b9c1b51eSKate Stone // now. 563426bdf88SPavel Labath return; 564426bdf88SPavel Labath } 565b9c1b51eSKate Stone if (WIFEXITED(status)) { 566a6321a8eSPavel Labath LLDB_LOG(log, 567c8d18cbaSMichał Górny "waiting for pid {0} returned an 'exited' event. Not " 568c8d18cbaSMichał Górny "tracking it.", 569c8d18cbaSMichał Górny pid); 570426bdf88SPavel Labath // Also a very improbable event. 571c8d18cbaSMichał Górny m_pending_pid_map.erase(pid); 572426bdf88SPavel Labath return; 573426bdf88SPavel Labath } 574426bdf88SPavel Labath 575c8d18cbaSMichał Górny MonitorClone(pid, llvm::None); 576426bdf88SPavel Labath } 577426bdf88SPavel Labath 578b9c1b51eSKate Stone void NativeProcessLinux::MonitorSIGTRAP(const siginfo_t &info, 579b9c1b51eSKate Stone NativeThreadLinux &thread) { 580a6321a8eSPavel Labath Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS)); 581b9cc0c75SPavel Labath const bool is_main_thread = (thread.GetID() == GetID()); 582af245d11STodd Fiala 583b9cc0c75SPavel Labath assert(info.si_signo == SIGTRAP && "Unexpected child signal!"); 584af245d11STodd Fiala 585b9c1b51eSKate Stone switch (info.si_code) { 586c8d18cbaSMichał Górny case (SIGTRAP | (PTRACE_EVENT_FORK << 8)): 587c8d18cbaSMichał Górny case (SIGTRAP | (PTRACE_EVENT_VFORK << 8)): 588b9c1b51eSKate Stone case (SIGTRAP | (PTRACE_EVENT_CLONE << 8)): { 589c8d18cbaSMichał Górny // This can either mean a new thread or a new process spawned via 590c8d18cbaSMichał Górny // clone(2) without SIGCHLD or CLONE_VFORK flag. Note that clone(2) 591c8d18cbaSMichał Górny // can also cause PTRACE_EVENT_FORK and PTRACE_EVENT_VFORK if one 592c8d18cbaSMichał Górny // of these flags are passed. 593af245d11STodd Fiala 594af245d11STodd Fiala unsigned long event_message = 0; 595b9c1b51eSKate Stone if (GetEventMessage(thread.GetID(), &event_message).Fail()) { 596a6321a8eSPavel Labath LLDB_LOG(log, 597c8d18cbaSMichał Górny "pid {0} received clone() event but GetEventMessage failed " 598c8d18cbaSMichał Górny "so we don't know the new pid/tid", 599a6321a8eSPavel Labath thread.GetID()); 600121cff78SPavel Labath ResumeThread(thread, thread.GetState(), LLDB_INVALID_SIGNAL_NUMBER); 601c8d18cbaSMichał Górny } else { 602c8d18cbaSMichał Górny if (!MonitorClone(event_message, {{(info.si_code >> 8), thread.GetID()}})) 603c8d18cbaSMichał Górny WaitForCloneNotification(event_message); 604c8d18cbaSMichał Górny } 605c8d18cbaSMichał Górny 606af245d11STodd Fiala break; 607af245d11STodd Fiala } 608af245d11STodd Fiala 609b9c1b51eSKate Stone case (SIGTRAP | (PTRACE_EVENT_EXEC << 8)): { 610a6321a8eSPavel Labath LLDB_LOG(log, "received exec event, code = {0}", info.si_code ^ SIGTRAP); 611a9882ceeSTodd Fiala 6121dbc6c9cSPavel Labath // Exec clears any pending notifications. 6130e1d729bSPavel Labath m_pending_notification_tid = LLDB_INVALID_THREAD_ID; 614fa03ad2eSChaoren Lin 615b9c1b51eSKate Stone // Remove all but the main thread here. Linux fork creates a new process 616b9c1b51eSKate Stone // which only copies the main thread. 617a6321a8eSPavel Labath LLDB_LOG(log, "exec received, stop tracking all but main thread"); 618a9882ceeSTodd Fiala 619ee74c9e5SPavel Labath llvm::erase_if(m_threads, [&](std::unique_ptr<NativeThreadProtocol> &t) { 620ee74c9e5SPavel Labath return t->GetID() != GetID(); 621ee74c9e5SPavel Labath }); 622a5be48b3SPavel Labath assert(m_threads.size() == 1); 623a5be48b3SPavel Labath auto *main_thread = static_cast<NativeThreadLinux *>(m_threads[0].get()); 624a9882ceeSTodd Fiala 625a5be48b3SPavel Labath SetCurrentThreadID(main_thread->GetID()); 626a5be48b3SPavel Labath main_thread->SetStoppedByExec(); 627a9882ceeSTodd Fiala 628fa03ad2eSChaoren Lin // Tell coordinator about about the "new" (since exec) stopped main thread. 629a5be48b3SPavel Labath ThreadWasCreated(*main_thread); 630fa03ad2eSChaoren Lin 631a9882ceeSTodd Fiala // Let our delegate know we have just exec'd. 632a9882ceeSTodd Fiala NotifyDidExec(); 633a9882ceeSTodd Fiala 634fa03ad2eSChaoren Lin // Let the process know we're stopped. 635a5be48b3SPavel Labath StopRunningThreads(main_thread->GetID()); 636a9882ceeSTodd Fiala 637af245d11STodd Fiala break; 638a9882ceeSTodd Fiala } 639af245d11STodd Fiala 640b9c1b51eSKate Stone case (SIGTRAP | (PTRACE_EVENT_EXIT << 8)): { 64105097246SAdrian Prantl // The inferior process or one of its threads is about to exit. We don't 64205097246SAdrian Prantl // want to do anything with the thread so we just resume it. In case we 64305097246SAdrian Prantl // want to implement "break on thread exit" functionality, we would need to 64405097246SAdrian Prantl // stop here. 645fa03ad2eSChaoren Lin 646af245d11STodd Fiala unsigned long data = 0; 647b9cc0c75SPavel Labath if (GetEventMessage(thread.GetID(), &data).Fail()) 648af245d11STodd Fiala data = -1; 649af245d11STodd Fiala 650a6321a8eSPavel Labath LLDB_LOG(log, 651a6321a8eSPavel Labath "received PTRACE_EVENT_EXIT, data = {0:x}, WIFEXITED={1}, " 652a6321a8eSPavel Labath "WIFSIGNALED={2}, pid = {3}, main_thread = {4}", 653a6321a8eSPavel Labath data, WIFEXITED(data), WIFSIGNALED(data), thread.GetID(), 654a6321a8eSPavel Labath is_main_thread); 655af245d11STodd Fiala 65675f47c3aSTodd Fiala 65786852d36SPavel Labath StateType state = thread.GetState(); 658b9c1b51eSKate Stone if (!StateIsRunningState(state)) { 659b9c1b51eSKate Stone // Due to a kernel bug, we may sometimes get this stop after the inferior 660d8b3c1a1SPavel Labath // gets a SIGKILL. This confuses our state tracking logic in 661d8b3c1a1SPavel Labath // ResumeThread(), since normally, we should not be receiving any ptrace 66205097246SAdrian Prantl // events while the inferior is stopped. This makes sure that the 66305097246SAdrian Prantl // inferior is resumed and exits normally. 66486852d36SPavel Labath state = eStateRunning; 66586852d36SPavel Labath } 66686852d36SPavel Labath ResumeThread(thread, state, LLDB_INVALID_SIGNAL_NUMBER); 667af245d11STodd Fiala 668af245d11STodd Fiala break; 669af245d11STodd Fiala } 670af245d11STodd Fiala 671c8d18cbaSMichał Górny case (SIGTRAP | (PTRACE_EVENT_VFORK_DONE << 8)): { 672fd0af0cfSMichał Górny if (bool(m_enabled_extensions & Extension::vfork)) { 673fd0af0cfSMichał Górny thread.SetStoppedByVForkDone(); 674fd0af0cfSMichał Górny StopRunningThreads(thread.GetID()); 675fd0af0cfSMichał Górny } 676fd0af0cfSMichał Górny else 677c8d18cbaSMichał Górny ResumeThread(thread, thread.GetState(), LLDB_INVALID_SIGNAL_NUMBER); 678c8d18cbaSMichał Górny break; 679c8d18cbaSMichał Górny } 680c8d18cbaSMichał Górny 681af245d11STodd Fiala case 0: 682c16f5dcaSChaoren Lin case TRAP_TRACE: // We receive this on single stepping. 683c16f5dcaSChaoren Lin case TRAP_HWBKPT: // We receive this on watchpoint hit 68486fd8e45SChaoren Lin { 685c16f5dcaSChaoren Lin // If a watchpoint was hit, report it 686c16f5dcaSChaoren Lin uint32_t wp_index; 687d37349f3SPavel Labath Status error = thread.GetRegisterContext().GetWatchpointHitIndex( 688b9c1b51eSKate Stone wp_index, (uintptr_t)info.si_addr); 689a6321a8eSPavel Labath if (error.Fail()) 690a6321a8eSPavel Labath LLDB_LOG(log, 691a6321a8eSPavel Labath "received error while checking for watchpoint hits, pid = " 692a6321a8eSPavel Labath "{0}, error = {1}", 693a6321a8eSPavel Labath thread.GetID(), error); 694b9c1b51eSKate Stone if (wp_index != LLDB_INVALID_INDEX32) { 695b9cc0c75SPavel Labath MonitorWatchpoint(thread, wp_index); 696c16f5dcaSChaoren Lin break; 697c16f5dcaSChaoren Lin } 698b9cc0c75SPavel Labath 699d5ffbad2SOmair Javaid // If a breakpoint was hit, report it 700d5ffbad2SOmair Javaid uint32_t bp_index; 701d37349f3SPavel Labath error = thread.GetRegisterContext().GetHardwareBreakHitIndex( 702d5ffbad2SOmair Javaid bp_index, (uintptr_t)info.si_addr); 703d5ffbad2SOmair Javaid if (error.Fail()) 704d5ffbad2SOmair Javaid LLDB_LOG(log, "received error while checking for hardware " 705d5ffbad2SOmair Javaid "breakpoint hits, pid = {0}, error = {1}", 706d5ffbad2SOmair Javaid thread.GetID(), error); 707d5ffbad2SOmair Javaid if (bp_index != LLDB_INVALID_INDEX32) { 708d5ffbad2SOmair Javaid MonitorBreakpoint(thread); 709d5ffbad2SOmair Javaid break; 710d5ffbad2SOmair Javaid } 711d5ffbad2SOmair Javaid 712be379e15STamas Berghammer // Otherwise, report step over 713be379e15STamas Berghammer MonitorTrace(thread); 714af245d11STodd Fiala break; 715b9cc0c75SPavel Labath } 716af245d11STodd Fiala 717af245d11STodd Fiala case SI_KERNEL: 71835799963SMohit K. Bhakkad #if defined __mips__ 71905097246SAdrian Prantl // For mips there is no special signal for watchpoint So we check for 72005097246SAdrian Prantl // watchpoint in kernel trap 72135799963SMohit K. Bhakkad { 72235799963SMohit K. Bhakkad // If a watchpoint was hit, report it 72335799963SMohit K. Bhakkad uint32_t wp_index; 724d37349f3SPavel Labath Status error = thread.GetRegisterContext().GetWatchpointHitIndex( 725b9c1b51eSKate Stone wp_index, LLDB_INVALID_ADDRESS); 726a6321a8eSPavel Labath if (error.Fail()) 727a6321a8eSPavel Labath LLDB_LOG(log, 728a6321a8eSPavel Labath "received error while checking for watchpoint hits, pid = " 729a6321a8eSPavel Labath "{0}, error = {1}", 730a6321a8eSPavel Labath thread.GetID(), error); 731b9c1b51eSKate Stone if (wp_index != LLDB_INVALID_INDEX32) { 732b9cc0c75SPavel Labath MonitorWatchpoint(thread, wp_index); 73335799963SMohit K. Bhakkad break; 73435799963SMohit K. Bhakkad } 73535799963SMohit K. Bhakkad } 73635799963SMohit K. Bhakkad // NO BREAK 73735799963SMohit K. Bhakkad #endif 738af245d11STodd Fiala case TRAP_BRKPT: 739b9cc0c75SPavel Labath MonitorBreakpoint(thread); 740af245d11STodd Fiala break; 741af245d11STodd Fiala 742af245d11STodd Fiala case SIGTRAP: 743af245d11STodd Fiala case (SIGTRAP | 0x80): 744a6321a8eSPavel Labath LLDB_LOG( 745a6321a8eSPavel Labath log, 746a6321a8eSPavel Labath "received unknown SIGTRAP stop event ({0}, pid {1} tid {2}, resuming", 747a6321a8eSPavel Labath info.si_code, GetID(), thread.GetID()); 748fa03ad2eSChaoren Lin 749af245d11STodd Fiala // Ignore these signals until we know more about them. 750b9cc0c75SPavel Labath ResumeThread(thread, thread.GetState(), LLDB_INVALID_SIGNAL_NUMBER); 751af245d11STodd Fiala break; 752af245d11STodd Fiala 753af245d11STodd Fiala default: 75421a365baSPavel Labath LLDB_LOG(log, "received unknown SIGTRAP stop event ({0}, pid {1} tid {2}", 755a6321a8eSPavel Labath info.si_code, GetID(), thread.GetID()); 75621a365baSPavel Labath MonitorSignal(info, thread, false); 757af245d11STodd Fiala break; 758af245d11STodd Fiala } 759af245d11STodd Fiala } 760af245d11STodd Fiala 761b9c1b51eSKate Stone void NativeProcessLinux::MonitorTrace(NativeThreadLinux &thread) { 762a6321a8eSPavel Labath Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS)); 763a6321a8eSPavel Labath LLDB_LOG(log, "received trace event, pid = {0}", thread.GetID()); 764c16f5dcaSChaoren Lin 7650e1d729bSPavel Labath // This thread is currently stopped. 766b9cc0c75SPavel Labath thread.SetStoppedByTrace(); 767c16f5dcaSChaoren Lin 768b9cc0c75SPavel Labath StopRunningThreads(thread.GetID()); 769c16f5dcaSChaoren Lin } 770c16f5dcaSChaoren Lin 771b9c1b51eSKate Stone void NativeProcessLinux::MonitorBreakpoint(NativeThreadLinux &thread) { 772b9c1b51eSKate Stone Log *log( 773b9c1b51eSKate Stone GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_BREAKPOINTS)); 774a6321a8eSPavel Labath LLDB_LOG(log, "received breakpoint event, pid = {0}", thread.GetID()); 775c16f5dcaSChaoren Lin 776c16f5dcaSChaoren Lin // Mark the thread as stopped at breakpoint. 777b9cc0c75SPavel Labath thread.SetStoppedByBreakpoint(); 778aef7908fSPavel Labath FixupBreakpointPCAsNeeded(thread); 779d8c338d4STamas Berghammer 780b9c1b51eSKate Stone if (m_threads_stepping_with_breakpoint.find(thread.GetID()) != 781b9c1b51eSKate Stone m_threads_stepping_with_breakpoint.end()) 782b9cc0c75SPavel Labath thread.SetStoppedByTrace(); 783c16f5dcaSChaoren Lin 784b9cc0c75SPavel Labath StopRunningThreads(thread.GetID()); 785c16f5dcaSChaoren Lin } 786c16f5dcaSChaoren Lin 787b9c1b51eSKate Stone void NativeProcessLinux::MonitorWatchpoint(NativeThreadLinux &thread, 788b9c1b51eSKate Stone uint32_t wp_index) { 789b9c1b51eSKate Stone Log *log( 790b9c1b51eSKate Stone GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_WATCHPOINTS)); 791a6321a8eSPavel Labath LLDB_LOG(log, "received watchpoint event, pid = {0}, wp_index = {1}", 792a6321a8eSPavel Labath thread.GetID(), wp_index); 793c16f5dcaSChaoren Lin 79405097246SAdrian Prantl // Mark the thread as stopped at watchpoint. The address is at 79505097246SAdrian Prantl // (lldb::addr_t)info->si_addr if we need it. 796f9077782SPavel Labath thread.SetStoppedByWatchpoint(wp_index); 797c16f5dcaSChaoren Lin 798b9c1b51eSKate Stone // We need to tell all other running threads before we notify the delegate 799b9c1b51eSKate Stone // about this stop. 800f9077782SPavel Labath StopRunningThreads(thread.GetID()); 801c16f5dcaSChaoren Lin } 802c16f5dcaSChaoren Lin 803b9c1b51eSKate Stone void NativeProcessLinux::MonitorSignal(const siginfo_t &info, 804b9c1b51eSKate Stone NativeThreadLinux &thread, bool exited) { 805b9cc0c75SPavel Labath const int signo = info.si_signo; 806b9cc0c75SPavel Labath const bool is_from_llgs = info.si_pid == getpid(); 807af245d11STodd Fiala 808a6321a8eSPavel Labath Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS)); 809af245d11STodd Fiala 810af245d11STodd Fiala // POSIX says that process behaviour is undefined after it ignores a SIGFPE, 81105097246SAdrian Prantl // SIGILL, SIGSEGV, or SIGBUS *unless* that signal was generated by a kill(2) 81205097246SAdrian Prantl // or raise(3). Similarly for tgkill(2) on Linux. 813af245d11STodd Fiala // 814af245d11STodd Fiala // IOW, user generated signals never generate what we consider to be a 815af245d11STodd Fiala // "crash". 816af245d11STodd Fiala // 817af245d11STodd Fiala // Similarly, ACK signals generated by this monitor. 818af245d11STodd Fiala 819af245d11STodd Fiala // Handle the signal. 820a6321a8eSPavel Labath LLDB_LOG(log, 821a6321a8eSPavel Labath "received signal {0} ({1}) with code {2}, (siginfo pid = {3}, " 822a6321a8eSPavel Labath "waitpid pid = {4})", 823a6321a8eSPavel Labath Host::GetSignalAsCString(signo), signo, info.si_code, 824b9cc0c75SPavel Labath thread.GetID()); 82558a2f669STodd Fiala 82658a2f669STodd Fiala // Check for thread stop notification. 827b9c1b51eSKate Stone if (is_from_llgs && (info.si_code == SI_TKILL) && (signo == SIGSTOP)) { 828af245d11STodd Fiala // This is a tgkill()-based stop. 829a6321a8eSPavel Labath LLDB_LOG(log, "pid {0} tid {1}, thread stopped", GetID(), thread.GetID()); 830fa03ad2eSChaoren Lin 83105097246SAdrian Prantl // Check that we're not already marked with a stop reason. Note this thread 83205097246SAdrian Prantl // really shouldn't already be marked as stopped - if we were, that would 83305097246SAdrian Prantl // imply that the kernel signaled us with the thread stopping which we 83405097246SAdrian Prantl // handled and marked as stopped, and that, without an intervening resume, 83505097246SAdrian Prantl // we received another stop. It is more likely that we are missing the 83605097246SAdrian Prantl // marking of a run state somewhere if we find that the thread was marked 83705097246SAdrian Prantl // as stopped. 838b9cc0c75SPavel Labath const StateType thread_state = thread.GetState(); 839b9c1b51eSKate Stone if (!StateIsStoppedState(thread_state, false)) { 840ed89c7feSPavel Labath // An inferior thread has stopped because of a SIGSTOP we have sent it. 841b9c1b51eSKate Stone // Generally, these are not important stops and we don't want to report 842a6321a8eSPavel Labath // them as they are just used to stop other threads when one thread (the 843a6321a8eSPavel Labath // one with the *real* stop reason) hits a breakpoint (watchpoint, 84405097246SAdrian Prantl // etc...). However, in the case of an asynchronous Interrupt(), this 84505097246SAdrian Prantl // *is* the real stop reason, so we leave the signal intact if this is 84605097246SAdrian Prantl // the thread that was chosen as the triggering thread. 847b9c1b51eSKate Stone if (m_pending_notification_tid != LLDB_INVALID_THREAD_ID) { 848b9cc0c75SPavel Labath if (m_pending_notification_tid == thread.GetID()) 849b9cc0c75SPavel Labath thread.SetStoppedBySignal(SIGSTOP, &info); 850ed89c7feSPavel Labath else 851b9cc0c75SPavel Labath thread.SetStoppedWithNoReason(); 852ed89c7feSPavel Labath 853b9cc0c75SPavel Labath SetCurrentThreadID(thread.GetID()); 8540e1d729bSPavel Labath SignalIfAllThreadsStopped(); 855b9c1b51eSKate Stone } else { 8560e1d729bSPavel Labath // We can end up here if stop was initiated by LLGS but by this time a 8570e1d729bSPavel Labath // thread stop has occurred - maybe initiated by another event. 85897206d57SZachary Turner Status error = ResumeThread(thread, thread.GetState(), 0); 859a6321a8eSPavel Labath if (error.Fail()) 860a6321a8eSPavel Labath LLDB_LOG(log, "failed to resume thread {0}: {1}", thread.GetID(), 861a6321a8eSPavel Labath error); 8620e1d729bSPavel Labath } 863b9c1b51eSKate Stone } else { 864a6321a8eSPavel Labath LLDB_LOG(log, 865a6321a8eSPavel Labath "pid {0} tid {1}, thread was already marked as a stopped " 866a6321a8eSPavel Labath "state (state={2}), leaving stop signal as is", 8678198db30SPavel Labath GetID(), thread.GetID(), thread_state); 8680e1d729bSPavel Labath SignalIfAllThreadsStopped(); 869af245d11STodd Fiala } 870af245d11STodd Fiala 87158a2f669STodd Fiala // Done handling. 872af245d11STodd Fiala return; 873af245d11STodd Fiala } 874af245d11STodd Fiala 87505097246SAdrian Prantl // Check if debugger should stop at this signal or just ignore it and resume 87605097246SAdrian Prantl // the inferior. 877*76f0f1ccSKazu Hirata if (m_signals_to_ignore.contains(signo)) { 8784a705e7eSPavel Labath ResumeThread(thread, thread.GetState(), signo); 8794a705e7eSPavel Labath return; 8804a705e7eSPavel Labath } 8814a705e7eSPavel Labath 88286fd8e45SChaoren Lin // This thread is stopped. 883a6321a8eSPavel Labath LLDB_LOG(log, "received signal {0}", Host::GetSignalAsCString(signo)); 884b9cc0c75SPavel Labath thread.SetStoppedBySignal(signo, &info); 88586fd8e45SChaoren Lin 88686fd8e45SChaoren Lin // Send a stop to the debugger after we get all other threads to stop. 887b9cc0c75SPavel Labath StopRunningThreads(thread.GetID()); 888511e5cdcSTodd Fiala } 889af245d11STodd Fiala 890c8d18cbaSMichał Górny bool NativeProcessLinux::MonitorClone( 891c8d18cbaSMichał Górny lldb::pid_t child_pid, 892c8d18cbaSMichał Górny llvm::Optional<NativeProcessLinux::CloneInfo> clone_info) { 893c8d18cbaSMichał Górny Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS)); 894c8d18cbaSMichał Górny LLDB_LOG(log, "clone, child_pid={0}, clone info?={1}", child_pid, 895c8d18cbaSMichał Górny clone_info.hasValue()); 896c8d18cbaSMichał Górny 897c8d18cbaSMichał Górny auto find_it = m_pending_pid_map.find(child_pid); 898c8d18cbaSMichał Górny if (find_it == m_pending_pid_map.end()) { 899c8d18cbaSMichał Górny // not in the map, so this is the first signal for the PID 900c8d18cbaSMichał Górny m_pending_pid_map.insert({child_pid, clone_info}); 901c8d18cbaSMichał Górny return false; 902c8d18cbaSMichał Górny } 903c8d18cbaSMichał Górny m_pending_pid_map.erase(find_it); 904c8d18cbaSMichał Górny 905c8d18cbaSMichał Górny // second signal for the pid 906c8d18cbaSMichał Górny assert(clone_info.hasValue() != find_it->second.hasValue()); 907c8d18cbaSMichał Górny if (!clone_info) { 908c8d18cbaSMichał Górny // child signal does not indicate the event, so grab the one stored 909c8d18cbaSMichał Górny // earlier 910c8d18cbaSMichał Górny clone_info = find_it->second; 911c8d18cbaSMichał Górny } 912c8d18cbaSMichał Górny 913c8d18cbaSMichał Górny LLDB_LOG(log, "second signal for child_pid={0}, parent_tid={1}, event={2}", 914c8d18cbaSMichał Górny child_pid, clone_info->parent_tid, clone_info->event); 915c8d18cbaSMichał Górny 916c8d18cbaSMichał Górny auto *parent_thread = GetThreadByID(clone_info->parent_tid); 917c8d18cbaSMichał Górny assert(parent_thread); 918c8d18cbaSMichał Górny 919c8d18cbaSMichał Górny switch (clone_info->event) { 920c8d18cbaSMichał Górny case PTRACE_EVENT_CLONE: { 921c8d18cbaSMichał Górny // PTRACE_EVENT_CLONE can either mean a new thread or a new process. 922c8d18cbaSMichał Górny // Try to grab the new process' PGID to figure out which one it is. 923c8d18cbaSMichał Górny // If PGID is the same as the PID, then it's a new process. Otherwise, 924c8d18cbaSMichał Górny // it's a thread. 925c8d18cbaSMichał Górny auto tgid_ret = getPIDForTID(child_pid); 926c8d18cbaSMichał Górny if (tgid_ret != child_pid) { 927c8d18cbaSMichał Górny // A new thread should have PGID matching our process' PID. 928c8d18cbaSMichał Górny assert(!tgid_ret || tgid_ret.getValue() == GetID()); 929c8d18cbaSMichał Górny 930c8d18cbaSMichał Górny NativeThreadLinux &child_thread = AddThread(child_pid, /*resume*/ true); 931c8d18cbaSMichał Górny ThreadWasCreated(child_thread); 932c8d18cbaSMichał Górny 933c8d18cbaSMichał Górny // Resume the parent. 934c8d18cbaSMichał Górny ResumeThread(*parent_thread, parent_thread->GetState(), 935c8d18cbaSMichał Górny LLDB_INVALID_SIGNAL_NUMBER); 936c8d18cbaSMichał Górny break; 937c8d18cbaSMichał Górny } 938c8d18cbaSMichał Górny } 939c8d18cbaSMichał Górny LLVM_FALLTHROUGH; 940c8d18cbaSMichał Górny case PTRACE_EVENT_FORK: 941c8d18cbaSMichał Górny case PTRACE_EVENT_VFORK: { 942fd0af0cfSMichał Górny bool is_vfork = clone_info->event == PTRACE_EVENT_VFORK; 943fd0af0cfSMichał Górny std::unique_ptr<NativeProcessLinux> child_process{new NativeProcessLinux( 944fd0af0cfSMichał Górny static_cast<::pid_t>(child_pid), m_terminal_fd, m_delegate, m_arch, 945fd0af0cfSMichał Górny m_main_loop, {static_cast<::pid_t>(child_pid)})}; 946fd0af0cfSMichał Górny if (!is_vfork) 947fd0af0cfSMichał Górny child_process->m_software_breakpoints = m_software_breakpoints; 948fd0af0cfSMichał Górny 949fd0af0cfSMichał Górny Extension expected_ext = is_vfork ? Extension::vfork : Extension::fork; 950fd0af0cfSMichał Górny if (bool(m_enabled_extensions & expected_ext)) { 951fd0af0cfSMichał Górny m_delegate.NewSubprocess(this, std::move(child_process)); 952fd0af0cfSMichał Górny // NB: non-vfork clone() is reported as fork 953fd0af0cfSMichał Górny parent_thread->SetStoppedByFork(is_vfork, child_pid); 954fd0af0cfSMichał Górny StopRunningThreads(parent_thread->GetID()); 955fd0af0cfSMichał Górny } else { 956fd0af0cfSMichał Górny child_process->Detach(); 957c8d18cbaSMichał Górny ResumeThread(*parent_thread, parent_thread->GetState(), 958c8d18cbaSMichał Górny LLDB_INVALID_SIGNAL_NUMBER); 959fd0af0cfSMichał Górny } 960c8d18cbaSMichał Górny break; 961c8d18cbaSMichał Górny } 962c8d18cbaSMichał Górny default: 963c8d18cbaSMichał Górny llvm_unreachable("unknown clone_info.event"); 964c8d18cbaSMichał Górny } 965c8d18cbaSMichał Górny 966c8d18cbaSMichał Górny return true; 967c8d18cbaSMichał Górny } 968c8d18cbaSMichał Górny 969b9c1b51eSKate Stone bool NativeProcessLinux::SupportHardwareSingleStepping() const { 970ddb93b63SFangrui Song if (m_arch.GetMachine() == llvm::Triple::arm || m_arch.IsMIPS()) 971cdc22a88SMohit K. Bhakkad return false; 972cdc22a88SMohit K. Bhakkad return true; 973e7708688STamas Berghammer } 974e7708688STamas Berghammer 97597206d57SZachary Turner Status NativeProcessLinux::Resume(const ResumeActionList &resume_actions) { 976a6321a8eSPavel Labath Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS)); 977a6321a8eSPavel Labath LLDB_LOG(log, "pid {0}", GetID()); 978af245d11STodd Fiala 979e7708688STamas Berghammer bool software_single_step = !SupportHardwareSingleStepping(); 980af245d11STodd Fiala 981b9c1b51eSKate Stone if (software_single_step) { 982a5be48b3SPavel Labath for (const auto &thread : m_threads) { 983a5be48b3SPavel Labath assert(thread && "thread list should not contain NULL threads"); 984e7708688STamas Berghammer 985b9c1b51eSKate Stone const ResumeAction *const action = 986a5be48b3SPavel Labath resume_actions.GetActionForThread(thread->GetID(), true); 987e7708688STamas Berghammer if (action == nullptr) 988e7708688STamas Berghammer continue; 989e7708688STamas Berghammer 990b9c1b51eSKate Stone if (action->state == eStateStepping) { 99197206d57SZachary Turner Status error = SetupSoftwareSingleStepping( 992a5be48b3SPavel Labath static_cast<NativeThreadLinux &>(*thread)); 993e7708688STamas Berghammer if (error.Fail()) 994e7708688STamas Berghammer return error; 995e7708688STamas Berghammer } 996e7708688STamas Berghammer } 997e7708688STamas Berghammer } 998e7708688STamas Berghammer 999a5be48b3SPavel Labath for (const auto &thread : m_threads) { 1000a5be48b3SPavel Labath assert(thread && "thread list should not contain NULL threads"); 1001af245d11STodd Fiala 1002b9c1b51eSKate Stone const ResumeAction *const action = 1003a5be48b3SPavel Labath resume_actions.GetActionForThread(thread->GetID(), true); 10046a196ce6SChaoren Lin 1005b9c1b51eSKate Stone if (action == nullptr) { 1006a6321a8eSPavel Labath LLDB_LOG(log, "no action specified for pid {0} tid {1}", GetID(), 1007a5be48b3SPavel Labath thread->GetID()); 10086a196ce6SChaoren Lin continue; 10096a196ce6SChaoren Lin } 1010af245d11STodd Fiala 1011a6321a8eSPavel Labath LLDB_LOG(log, "processing resume action state {0} for pid {1} tid {2}", 1012a5be48b3SPavel Labath action->state, GetID(), thread->GetID()); 1013af245d11STodd Fiala 1014b9c1b51eSKate Stone switch (action->state) { 1015af245d11STodd Fiala case eStateRunning: 1016b9c1b51eSKate Stone case eStateStepping: { 1017af245d11STodd Fiala // Run the thread, possibly feeding it the signal. 1018fa03ad2eSChaoren Lin const int signo = action->signal; 1019a5be48b3SPavel Labath ResumeThread(static_cast<NativeThreadLinux &>(*thread), action->state, 1020b9c1b51eSKate Stone signo); 1021af245d11STodd Fiala break; 1022ae29d395SChaoren Lin } 1023af245d11STodd Fiala 1024af245d11STodd Fiala case eStateSuspended: 1025af245d11STodd Fiala case eStateStopped: 1026a6321a8eSPavel Labath llvm_unreachable("Unexpected state"); 1027af245d11STodd Fiala 1028af245d11STodd Fiala default: 102997206d57SZachary Turner return Status("NativeProcessLinux::%s (): unexpected state %s specified " 1030b9c1b51eSKate Stone "for pid %" PRIu64 ", tid %" PRIu64, 1031b9c1b51eSKate Stone __FUNCTION__, StateAsCString(action->state), GetID(), 1032a5be48b3SPavel Labath thread->GetID()); 1033af245d11STodd Fiala } 1034af245d11STodd Fiala } 1035af245d11STodd Fiala 103697206d57SZachary Turner return Status(); 1037af245d11STodd Fiala } 1038af245d11STodd Fiala 103997206d57SZachary Turner Status NativeProcessLinux::Halt() { 104097206d57SZachary Turner Status error; 1041af245d11STodd Fiala 1042af245d11STodd Fiala if (kill(GetID(), SIGSTOP) != 0) 1043af245d11STodd Fiala error.SetErrorToErrno(); 1044af245d11STodd Fiala 1045af245d11STodd Fiala return error; 1046af245d11STodd Fiala } 1047af245d11STodd Fiala 104897206d57SZachary Turner Status NativeProcessLinux::Detach() { 104997206d57SZachary Turner Status error; 1050af245d11STodd Fiala 1051af245d11STodd Fiala // Stop monitoring the inferior. 105219cbe96aSPavel Labath m_sigchld_handle.reset(); 1053af245d11STodd Fiala 10547a9495bcSPavel Labath // Tell ptrace to detach from the process. 10557a9495bcSPavel Labath if (GetID() == LLDB_INVALID_PROCESS_ID) 10567a9495bcSPavel Labath return error; 10577a9495bcSPavel Labath 1058a5be48b3SPavel Labath for (const auto &thread : m_threads) { 1059a5be48b3SPavel Labath Status e = Detach(thread->GetID()); 10607a9495bcSPavel Labath if (e.Fail()) 1061b9c1b51eSKate Stone error = 1062b9c1b51eSKate Stone e; // Save the error, but still attempt to detach from other threads. 10637a9495bcSPavel Labath } 10647a9495bcSPavel Labath 10650b697561SWalter Erquinigo m_intel_pt_manager.Clear(); 106699e37695SRavitheja Addepally 1067af245d11STodd Fiala return error; 1068af245d11STodd Fiala } 1069af245d11STodd Fiala 107097206d57SZachary Turner Status NativeProcessLinux::Signal(int signo) { 107197206d57SZachary Turner Status error; 1072af245d11STodd Fiala 1073a6321a8eSPavel Labath Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS)); 1074a6321a8eSPavel Labath LLDB_LOG(log, "sending signal {0} ({1}) to pid {1}", signo, 1075a6321a8eSPavel Labath Host::GetSignalAsCString(signo), GetID()); 1076af245d11STodd Fiala 1077af245d11STodd Fiala if (kill(GetID(), signo)) 1078af245d11STodd Fiala error.SetErrorToErrno(); 1079af245d11STodd Fiala 1080af245d11STodd Fiala return error; 1081af245d11STodd Fiala } 1082af245d11STodd Fiala 108397206d57SZachary Turner Status NativeProcessLinux::Interrupt() { 108405097246SAdrian Prantl // Pick a running thread (or if none, a not-dead stopped thread) as the 108505097246SAdrian Prantl // chosen thread that will be the stop-reason thread. 1086a6321a8eSPavel Labath Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS)); 1087e9547b80SChaoren Lin 1088a5be48b3SPavel Labath NativeThreadProtocol *running_thread = nullptr; 1089a5be48b3SPavel Labath NativeThreadProtocol *stopped_thread = nullptr; 1090e9547b80SChaoren Lin 1091a6321a8eSPavel Labath LLDB_LOG(log, "selecting running thread for interrupt target"); 1092a5be48b3SPavel Labath for (const auto &thread : m_threads) { 109305097246SAdrian Prantl // If we have a running or stepping thread, we'll call that the target of 109405097246SAdrian Prantl // the interrupt. 1095a5be48b3SPavel Labath const auto thread_state = thread->GetState(); 1096b9c1b51eSKate Stone if (thread_state == eStateRunning || thread_state == eStateStepping) { 1097a5be48b3SPavel Labath running_thread = thread.get(); 1098e9547b80SChaoren Lin break; 1099a5be48b3SPavel Labath } else if (!stopped_thread && StateIsStoppedState(thread_state, true)) { 110005097246SAdrian Prantl // Remember the first non-dead stopped thread. We'll use that as a 110105097246SAdrian Prantl // backup if there are no running threads. 1102a5be48b3SPavel Labath stopped_thread = thread.get(); 1103e9547b80SChaoren Lin } 1104e9547b80SChaoren Lin } 1105e9547b80SChaoren Lin 1106a5be48b3SPavel Labath if (!running_thread && !stopped_thread) { 110797206d57SZachary Turner Status error("found no running/stepping or live stopped threads as target " 1108b9c1b51eSKate Stone "for interrupt"); 1109a6321a8eSPavel Labath LLDB_LOG(log, "skipping due to error: {0}", error); 11105830aa75STamas Berghammer 1111e9547b80SChaoren Lin return error; 1112e9547b80SChaoren Lin } 1113e9547b80SChaoren Lin 1114a5be48b3SPavel Labath NativeThreadProtocol *deferred_signal_thread = 1115a5be48b3SPavel Labath running_thread ? running_thread : stopped_thread; 1116e9547b80SChaoren Lin 1117a6321a8eSPavel Labath LLDB_LOG(log, "pid {0} {1} tid {2} chosen for interrupt target", GetID(), 1118a5be48b3SPavel Labath running_thread ? "running" : "stopped", 1119a5be48b3SPavel Labath deferred_signal_thread->GetID()); 1120e9547b80SChaoren Lin 1121a5be48b3SPavel Labath StopRunningThreads(deferred_signal_thread->GetID()); 112245f5cb31SPavel Labath 112397206d57SZachary Turner return Status(); 1124e9547b80SChaoren Lin } 1125e9547b80SChaoren Lin 112697206d57SZachary Turner Status NativeProcessLinux::Kill() { 1127a6321a8eSPavel Labath Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS)); 1128a6321a8eSPavel Labath LLDB_LOG(log, "pid {0}", GetID()); 1129af245d11STodd Fiala 113097206d57SZachary Turner Status error; 1131af245d11STodd Fiala 1132b9c1b51eSKate Stone switch (m_state) { 1133af245d11STodd Fiala case StateType::eStateInvalid: 1134af245d11STodd Fiala case StateType::eStateExited: 1135af245d11STodd Fiala case StateType::eStateCrashed: 1136af245d11STodd Fiala case StateType::eStateDetached: 1137af245d11STodd Fiala case StateType::eStateUnloaded: 1138af245d11STodd Fiala // Nothing to do - the process is already dead. 1139a6321a8eSPavel Labath LLDB_LOG(log, "ignored for PID {0} due to current state: {1}", GetID(), 11408198db30SPavel Labath m_state); 1141af245d11STodd Fiala return error; 1142af245d11STodd Fiala 1143af245d11STodd Fiala case StateType::eStateConnected: 1144af245d11STodd Fiala case StateType::eStateAttaching: 1145af245d11STodd Fiala case StateType::eStateLaunching: 1146af245d11STodd Fiala case StateType::eStateStopped: 1147af245d11STodd Fiala case StateType::eStateRunning: 1148af245d11STodd Fiala case StateType::eStateStepping: 1149af245d11STodd Fiala case StateType::eStateSuspended: 1150af245d11STodd Fiala // We can try to kill a process in these states. 1151af245d11STodd Fiala break; 1152af245d11STodd Fiala } 1153af245d11STodd Fiala 1154b9c1b51eSKate Stone if (kill(GetID(), SIGKILL) != 0) { 1155af245d11STodd Fiala error.SetErrorToErrno(); 1156af245d11STodd Fiala return error; 1157af245d11STodd Fiala } 1158af245d11STodd Fiala 1159af245d11STodd Fiala return error; 1160af245d11STodd Fiala } 1161af245d11STodd Fiala 116297206d57SZachary Turner Status NativeProcessLinux::GetMemoryRegionInfo(lldb::addr_t load_addr, 1163b9c1b51eSKate Stone MemoryRegionInfo &range_info) { 1164b9c1b51eSKate Stone // FIXME review that the final memory region returned extends to the end of 1165b9c1b51eSKate Stone // the virtual address space, 1166af245d11STodd Fiala // with no perms if it is not mapped. 1167af245d11STodd Fiala 116805097246SAdrian Prantl // Use an approach that reads memory regions from /proc/{pid}/maps. Assume 116905097246SAdrian Prantl // proc maps entries are in ascending order. 1170af245d11STodd Fiala // FIXME assert if we find differently. 1171af245d11STodd Fiala 1172b9c1b51eSKate Stone if (m_supports_mem_region == LazyBool::eLazyBoolNo) { 1173af245d11STodd Fiala // We're done. 117497206d57SZachary Turner return Status("unsupported"); 1175af245d11STodd Fiala } 1176af245d11STodd Fiala 117797206d57SZachary Turner Status error = PopulateMemoryRegionCache(); 1178b9c1b51eSKate Stone if (error.Fail()) { 1179af245d11STodd Fiala return error; 1180af245d11STodd Fiala } 1181af245d11STodd Fiala 1182af245d11STodd Fiala lldb::addr_t prev_base_address = 0; 1183af245d11STodd Fiala 1184b9c1b51eSKate Stone // FIXME start by finding the last region that is <= target address using 1185b9c1b51eSKate Stone // binary search. Data is sorted. 1186af245d11STodd Fiala // There can be a ton of regions on pthreads apps with lots of threads. 1187b9c1b51eSKate Stone for (auto it = m_mem_region_cache.begin(); it != m_mem_region_cache.end(); 1188b9c1b51eSKate Stone ++it) { 1189a6f5795aSTamas Berghammer MemoryRegionInfo &proc_entry_info = it->first; 1190af245d11STodd Fiala 1191af245d11STodd Fiala // Sanity check assumption that /proc/{pid}/maps entries are ascending. 1192b9c1b51eSKate Stone assert((proc_entry_info.GetRange().GetRangeBase() >= prev_base_address) && 1193b9c1b51eSKate Stone "descending /proc/pid/maps entries detected, unexpected"); 1194af245d11STodd Fiala prev_base_address = proc_entry_info.GetRange().GetRangeBase(); 1195b1554311SHafiz Abid Qadeer UNUSED_IF_ASSERT_DISABLED(prev_base_address); 1196af245d11STodd Fiala 1197b9c1b51eSKate Stone // If the target address comes before this entry, indicate distance to next 1198b9c1b51eSKate Stone // region. 1199b9c1b51eSKate Stone if (load_addr < proc_entry_info.GetRange().GetRangeBase()) { 1200af245d11STodd Fiala range_info.GetRange().SetRangeBase(load_addr); 1201b9c1b51eSKate Stone range_info.GetRange().SetByteSize( 1202b9c1b51eSKate Stone proc_entry_info.GetRange().GetRangeBase() - load_addr); 1203af245d11STodd Fiala range_info.SetReadable(MemoryRegionInfo::OptionalBool::eNo); 1204af245d11STodd Fiala range_info.SetWritable(MemoryRegionInfo::OptionalBool::eNo); 1205af245d11STodd Fiala range_info.SetExecutable(MemoryRegionInfo::OptionalBool::eNo); 1206ad007563SHoward Hellyer range_info.SetMapped(MemoryRegionInfo::OptionalBool::eNo); 1207af245d11STodd Fiala 1208af245d11STodd Fiala return error; 1209b9c1b51eSKate Stone } else if (proc_entry_info.GetRange().Contains(load_addr)) { 1210af245d11STodd Fiala // The target address is within the memory region we're processing here. 1211af245d11STodd Fiala range_info = proc_entry_info; 1212af245d11STodd Fiala return error; 1213af245d11STodd Fiala } 1214af245d11STodd Fiala 1215b9c1b51eSKate Stone // The target memory address comes somewhere after the region we just 1216b9c1b51eSKate Stone // parsed. 1217af245d11STodd Fiala } 1218af245d11STodd Fiala 1219b9c1b51eSKate Stone // If we made it here, we didn't find an entry that contained the given 122005097246SAdrian Prantl // address. Return the load_addr as start and the amount of bytes betwwen 122105097246SAdrian Prantl // load address and the end of the memory as size. 122209839c33STamas Berghammer range_info.GetRange().SetRangeBase(load_addr); 1223ad007563SHoward Hellyer range_info.GetRange().SetRangeEnd(LLDB_INVALID_ADDRESS); 122409839c33STamas Berghammer range_info.SetReadable(MemoryRegionInfo::OptionalBool::eNo); 122509839c33STamas Berghammer range_info.SetWritable(MemoryRegionInfo::OptionalBool::eNo); 122609839c33STamas Berghammer range_info.SetExecutable(MemoryRegionInfo::OptionalBool::eNo); 1227ad007563SHoward Hellyer range_info.SetMapped(MemoryRegionInfo::OptionalBool::eNo); 1228af245d11STodd Fiala return error; 1229af245d11STodd Fiala } 1230af245d11STodd Fiala 123197206d57SZachary Turner Status NativeProcessLinux::PopulateMemoryRegionCache() { 1232a6321a8eSPavel Labath Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS)); 1233a6f5795aSTamas Berghammer 1234a6f5795aSTamas Berghammer // If our cache is empty, pull the latest. There should always be at least 1235a6f5795aSTamas Berghammer // one memory region if memory region handling is supported. 1236a6f5795aSTamas Berghammer if (!m_mem_region_cache.empty()) { 1237a6321a8eSPavel Labath LLDB_LOG(log, "reusing {0} cached memory region entries", 1238a6321a8eSPavel Labath m_mem_region_cache.size()); 123997206d57SZachary Turner return Status(); 1240a6f5795aSTamas Berghammer } 1241a6f5795aSTamas Berghammer 124232541685SDavid Spickett Status Result; 124332541685SDavid Spickett LinuxMapCallback callback = [&](llvm::Expected<MemoryRegionInfo> Info) { 124432541685SDavid Spickett if (Info) { 124532541685SDavid Spickett FileSpec file_spec(Info->GetName().GetCString()); 124632541685SDavid Spickett FileSystem::Instance().Resolve(file_spec); 124732541685SDavid Spickett m_mem_region_cache.emplace_back(*Info, file_spec); 124832541685SDavid Spickett return true; 124932541685SDavid Spickett } 125032541685SDavid Spickett 125132541685SDavid Spickett Result = Info.takeError(); 125232541685SDavid Spickett m_supports_mem_region = LazyBool::eLazyBoolNo; 125332541685SDavid Spickett LLDB_LOG(log, "failed to parse proc maps: {0}", Result); 125432541685SDavid Spickett return false; 125532541685SDavid Spickett }; 125632541685SDavid Spickett 125732541685SDavid Spickett // Linux kernel since 2.6.14 has /proc/{pid}/smaps 125832541685SDavid Spickett // if CONFIG_PROC_PAGE_MONITOR is enabled 125932541685SDavid Spickett auto BufferOrError = getProcFile(GetID(), "smaps"); 126032541685SDavid Spickett if (BufferOrError) 126132541685SDavid Spickett ParseLinuxSMapRegions(BufferOrError.get()->getBuffer(), callback); 126232541685SDavid Spickett else { 126332541685SDavid Spickett BufferOrError = getProcFile(GetID(), "maps"); 126415930862SPavel Labath if (!BufferOrError) { 126515930862SPavel Labath m_supports_mem_region = LazyBool::eLazyBoolNo; 126615930862SPavel Labath return BufferOrError.getError(); 126715930862SPavel Labath } 126832541685SDavid Spickett 126932541685SDavid Spickett ParseLinuxMapRegions(BufferOrError.get()->getBuffer(), callback); 1270a6f5795aSTamas Berghammer } 127132541685SDavid Spickett 1272c8e364e8SPavel Labath if (Result.Fail()) 1273c8e364e8SPavel Labath return Result; 1274a6f5795aSTamas Berghammer 127515930862SPavel Labath if (m_mem_region_cache.empty()) { 1276a6f5795aSTamas Berghammer // No entries after attempting to read them. This shouldn't happen if 127705097246SAdrian Prantl // /proc/{pid}/maps is supported. Assume we don't support map entries via 127805097246SAdrian Prantl // procfs. 127915930862SPavel Labath m_supports_mem_region = LazyBool::eLazyBoolNo; 1280a6321a8eSPavel Labath LLDB_LOG(log, 1281a6321a8eSPavel Labath "failed to find any procfs maps entries, assuming no support " 1282a6321a8eSPavel Labath "for memory region metadata retrieval"); 128397206d57SZachary Turner return Status("not supported"); 1284a6f5795aSTamas Berghammer } 1285a6f5795aSTamas Berghammer 1286a6321a8eSPavel Labath LLDB_LOG(log, "read {0} memory region entries from /proc/{1}/maps", 1287a6321a8eSPavel Labath m_mem_region_cache.size(), GetID()); 1288a6f5795aSTamas Berghammer 1289a6f5795aSTamas Berghammer // We support memory retrieval, remember that. 1290a6f5795aSTamas Berghammer m_supports_mem_region = LazyBool::eLazyBoolYes; 129197206d57SZachary Turner return Status(); 1292a6f5795aSTamas Berghammer } 1293a6f5795aSTamas Berghammer 1294b9c1b51eSKate Stone void NativeProcessLinux::DoStopIDBumped(uint32_t newBumpId) { 1295a6321a8eSPavel Labath Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS)); 1296a6321a8eSPavel Labath LLDB_LOG(log, "newBumpId={0}", newBumpId); 1297a6321a8eSPavel Labath LLDB_LOG(log, "clearing {0} entries from memory region cache", 1298a6321a8eSPavel Labath m_mem_region_cache.size()); 1299af245d11STodd Fiala m_mem_region_cache.clear(); 1300af245d11STodd Fiala } 1301af245d11STodd Fiala 13022c4226f8SPavel Labath llvm::Expected<uint64_t> 13032c4226f8SPavel Labath NativeProcessLinux::Syscall(llvm::ArrayRef<uint64_t> args) { 13042c4226f8SPavel Labath PopulateMemoryRegionCache(); 13052c4226f8SPavel Labath auto region_it = llvm::find_if(m_mem_region_cache, [](const auto &pair) { 13062c4226f8SPavel Labath return pair.first.GetExecutable() == MemoryRegionInfo::eYes; 13072c4226f8SPavel Labath }); 13082c4226f8SPavel Labath if (region_it == m_mem_region_cache.end()) 13092c4226f8SPavel Labath return llvm::createStringError(llvm::inconvertibleErrorCode(), 13102c4226f8SPavel Labath "No executable memory region found!"); 1311af245d11STodd Fiala 13122c4226f8SPavel Labath addr_t exe_addr = region_it->first.GetRange().GetRangeBase(); 1313af245d11STodd Fiala 13142c4226f8SPavel Labath NativeThreadLinux &thread = *GetThreadByID(GetID()); 13152c4226f8SPavel Labath assert(thread.GetState() == eStateStopped); 13162c4226f8SPavel Labath NativeRegisterContextLinux ®_ctx = thread.GetRegisterContext(); 13172c4226f8SPavel Labath 13182c4226f8SPavel Labath NativeRegisterContextLinux::SyscallData syscall_data = 13192c4226f8SPavel Labath *reg_ctx.GetSyscallData(); 13202c4226f8SPavel Labath 13212c4226f8SPavel Labath DataBufferSP registers_sp; 13222c4226f8SPavel Labath if (llvm::Error Err = reg_ctx.ReadAllRegisterValues(registers_sp).ToError()) 13232c4226f8SPavel Labath return std::move(Err); 13242c4226f8SPavel Labath auto restore_regs = llvm::make_scope_exit( 13252c4226f8SPavel Labath [&] { reg_ctx.WriteAllRegisterValues(registers_sp); }); 13262c4226f8SPavel Labath 13272c4226f8SPavel Labath llvm::SmallVector<uint8_t, 8> memory(syscall_data.Insn.size()); 13282c4226f8SPavel Labath size_t bytes_read; 13292c4226f8SPavel Labath if (llvm::Error Err = 13302c4226f8SPavel Labath ReadMemory(exe_addr, memory.data(), memory.size(), bytes_read) 13312c4226f8SPavel Labath .ToError()) { 13322c4226f8SPavel Labath return std::move(Err); 1333af245d11STodd Fiala } 1334af245d11STodd Fiala 13352c4226f8SPavel Labath auto restore_mem = llvm::make_scope_exit( 13362c4226f8SPavel Labath [&] { WriteMemory(exe_addr, memory.data(), memory.size(), bytes_read); }); 13372c4226f8SPavel Labath 13382c4226f8SPavel Labath if (llvm::Error Err = reg_ctx.SetPC(exe_addr).ToError()) 13392c4226f8SPavel Labath return std::move(Err); 13402c4226f8SPavel Labath 13412c4226f8SPavel Labath for (const auto &zip : llvm::zip_first(args, syscall_data.Args)) { 13422c4226f8SPavel Labath if (llvm::Error Err = 13432c4226f8SPavel Labath reg_ctx 13442c4226f8SPavel Labath .WriteRegisterFromUnsigned(std::get<1>(zip), std::get<0>(zip)) 13452c4226f8SPavel Labath .ToError()) { 13462c4226f8SPavel Labath return std::move(Err); 13472c4226f8SPavel Labath } 13482c4226f8SPavel Labath } 13492c4226f8SPavel Labath if (llvm::Error Err = WriteMemory(exe_addr, syscall_data.Insn.data(), 13502c4226f8SPavel Labath syscall_data.Insn.size(), bytes_read) 13512c4226f8SPavel Labath .ToError()) 13522c4226f8SPavel Labath return std::move(Err); 13532c4226f8SPavel Labath 13542c4226f8SPavel Labath m_mem_region_cache.clear(); 13552c4226f8SPavel Labath 13562c4226f8SPavel Labath // With software single stepping the syscall insn buffer must also include a 13572c4226f8SPavel Labath // trap instruction to stop the process. 13582c4226f8SPavel Labath int req = SupportHardwareSingleStepping() ? PTRACE_SINGLESTEP : PTRACE_CONT; 13592c4226f8SPavel Labath if (llvm::Error Err = 13602c4226f8SPavel Labath PtraceWrapper(req, thread.GetID(), nullptr, nullptr).ToError()) 13612c4226f8SPavel Labath return std::move(Err); 13622c4226f8SPavel Labath 13632c4226f8SPavel Labath int status; 13642c4226f8SPavel Labath ::pid_t wait_pid = llvm::sys::RetryAfterSignal(-1, ::waitpid, thread.GetID(), 13652c4226f8SPavel Labath &status, __WALL); 13662c4226f8SPavel Labath if (wait_pid == -1) { 13672c4226f8SPavel Labath return llvm::errorCodeToError( 13682c4226f8SPavel Labath std::error_code(errno, std::generic_category())); 13692c4226f8SPavel Labath } 13702c4226f8SPavel Labath assert((unsigned)wait_pid == thread.GetID()); 13712c4226f8SPavel Labath 13722c4226f8SPavel Labath uint64_t result = reg_ctx.ReadRegisterAsUnsigned(syscall_data.Result, -ESRCH); 13732c4226f8SPavel Labath 13742c4226f8SPavel Labath // Values larger than this are actually negative errno numbers. 13752c4226f8SPavel Labath uint64_t errno_threshold = 13762c4226f8SPavel Labath (uint64_t(-1) >> (64 - 8 * m_arch.GetAddressByteSize())) - 0x1000; 13772c4226f8SPavel Labath if (result > errno_threshold) { 13782c4226f8SPavel Labath return llvm::errorCodeToError( 13792c4226f8SPavel Labath std::error_code(-result & 0xfff, std::generic_category())); 13802c4226f8SPavel Labath } 13812c4226f8SPavel Labath 13822c4226f8SPavel Labath return result; 13832c4226f8SPavel Labath } 13842c4226f8SPavel Labath 13852c4226f8SPavel Labath llvm::Expected<addr_t> 13862c4226f8SPavel Labath NativeProcessLinux::AllocateMemory(size_t size, uint32_t permissions) { 13872c4226f8SPavel Labath 13882c4226f8SPavel Labath llvm::Optional<NativeRegisterContextLinux::MmapData> mmap_data = 13892c4226f8SPavel Labath GetCurrentThread()->GetRegisterContext().GetMmapData(); 13902c4226f8SPavel Labath if (!mmap_data) 13912c4226f8SPavel Labath return llvm::make_error<UnimplementedError>(); 13922c4226f8SPavel Labath 13932c4226f8SPavel Labath unsigned prot = PROT_NONE; 13942c4226f8SPavel Labath assert((permissions & (ePermissionsReadable | ePermissionsWritable | 13952c4226f8SPavel Labath ePermissionsExecutable)) == permissions && 13962c4226f8SPavel Labath "Unknown permission!"); 13972c4226f8SPavel Labath if (permissions & ePermissionsReadable) 13982c4226f8SPavel Labath prot |= PROT_READ; 13992c4226f8SPavel Labath if (permissions & ePermissionsWritable) 14002c4226f8SPavel Labath prot |= PROT_WRITE; 14012c4226f8SPavel Labath if (permissions & ePermissionsExecutable) 14022c4226f8SPavel Labath prot |= PROT_EXEC; 14032c4226f8SPavel Labath 14042c4226f8SPavel Labath llvm::Expected<uint64_t> Result = 14052c4226f8SPavel Labath Syscall({mmap_data->SysMmap, 0, size, prot, MAP_ANONYMOUS | MAP_PRIVATE, 14062c4226f8SPavel Labath uint64_t(-1), 0}); 14072c4226f8SPavel Labath if (Result) 14082c4226f8SPavel Labath m_allocated_memory.try_emplace(*Result, size); 14092c4226f8SPavel Labath return Result; 14102c4226f8SPavel Labath } 14112c4226f8SPavel Labath 14122c4226f8SPavel Labath llvm::Error NativeProcessLinux::DeallocateMemory(lldb::addr_t addr) { 14132c4226f8SPavel Labath llvm::Optional<NativeRegisterContextLinux::MmapData> mmap_data = 14142c4226f8SPavel Labath GetCurrentThread()->GetRegisterContext().GetMmapData(); 14152c4226f8SPavel Labath if (!mmap_data) 14162c4226f8SPavel Labath return llvm::make_error<UnimplementedError>(); 14172c4226f8SPavel Labath 14182c4226f8SPavel Labath auto it = m_allocated_memory.find(addr); 14192c4226f8SPavel Labath if (it == m_allocated_memory.end()) 14202c4226f8SPavel Labath return llvm::createStringError(llvm::errc::invalid_argument, 14212c4226f8SPavel Labath "Memory not allocated by the debugger."); 14222c4226f8SPavel Labath 14232c4226f8SPavel Labath llvm::Expected<uint64_t> Result = 14242c4226f8SPavel Labath Syscall({mmap_data->SysMunmap, addr, it->second}); 14252c4226f8SPavel Labath if (!Result) 14262c4226f8SPavel Labath return Result.takeError(); 14272c4226f8SPavel Labath 14282c4226f8SPavel Labath m_allocated_memory.erase(it); 14292c4226f8SPavel Labath return llvm::Error::success(); 1430af245d11STodd Fiala } 1431af245d11STodd Fiala 1432da2e614fSDavid Spickett Status NativeProcessLinux::ReadMemoryTags(int32_t type, lldb::addr_t addr, 1433da2e614fSDavid Spickett size_t len, 1434da2e614fSDavid Spickett std::vector<uint8_t> &tags) { 1435da2e614fSDavid Spickett llvm::Expected<NativeRegisterContextLinux::MemoryTaggingDetails> details = 1436da2e614fSDavid Spickett GetCurrentThread()->GetRegisterContext().GetMemoryTaggingDetails(type); 1437da2e614fSDavid Spickett if (!details) 1438da2e614fSDavid Spickett return Status(details.takeError()); 1439da2e614fSDavid Spickett 1440da2e614fSDavid Spickett // Ignore 0 length read 1441da2e614fSDavid Spickett if (!len) 1442da2e614fSDavid Spickett return Status(); 1443da2e614fSDavid Spickett 1444da2e614fSDavid Spickett // lldb will align the range it requests but it is not required to by 1445da2e614fSDavid Spickett // the protocol so we'll do it again just in case. 1446da2e614fSDavid Spickett // Remove non address bits too. Ptrace calls may work regardless but that 1447da2e614fSDavid Spickett // is not a guarantee. 1448da2e614fSDavid Spickett MemoryTagManager::TagRange range(details->manager->RemoveNonAddressBits(addr), 1449da2e614fSDavid Spickett len); 1450da2e614fSDavid Spickett range = details->manager->ExpandToGranule(range); 1451da2e614fSDavid Spickett 1452da2e614fSDavid Spickett // Allocate enough space for all tags to be read 1453da2e614fSDavid Spickett size_t num_tags = range.GetByteSize() / details->manager->GetGranuleSize(); 1454da2e614fSDavid Spickett tags.resize(num_tags * details->manager->GetTagSizeInBytes()); 1455da2e614fSDavid Spickett 1456da2e614fSDavid Spickett struct iovec tags_iovec; 1457da2e614fSDavid Spickett uint8_t *dest = tags.data(); 1458da2e614fSDavid Spickett lldb::addr_t read_addr = range.GetRangeBase(); 1459da2e614fSDavid Spickett 1460da2e614fSDavid Spickett // This call can return partial data so loop until we error or 1461da2e614fSDavid Spickett // get all tags back. 1462da2e614fSDavid Spickett while (num_tags) { 1463da2e614fSDavid Spickett tags_iovec.iov_base = dest; 1464da2e614fSDavid Spickett tags_iovec.iov_len = num_tags; 1465da2e614fSDavid Spickett 1466da2e614fSDavid Spickett Status error = NativeProcessLinux::PtraceWrapper( 1467da2e614fSDavid Spickett details->ptrace_read_req, GetID(), reinterpret_cast<void *>(read_addr), 1468da2e614fSDavid Spickett static_cast<void *>(&tags_iovec), 0, nullptr); 1469da2e614fSDavid Spickett 1470da2e614fSDavid Spickett if (error.Fail()) { 1471da2e614fSDavid Spickett // Discard partial reads 1472da2e614fSDavid Spickett tags.resize(0); 1473da2e614fSDavid Spickett return error; 1474da2e614fSDavid Spickett } 1475da2e614fSDavid Spickett 1476da2e614fSDavid Spickett size_t tags_read = tags_iovec.iov_len; 1477da2e614fSDavid Spickett assert(tags_read && (tags_read <= num_tags)); 1478da2e614fSDavid Spickett 1479da2e614fSDavid Spickett dest += tags_read * details->manager->GetTagSizeInBytes(); 1480da2e614fSDavid Spickett read_addr += details->manager->GetGranuleSize() * tags_read; 1481da2e614fSDavid Spickett num_tags -= tags_read; 1482da2e614fSDavid Spickett } 1483da2e614fSDavid Spickett 1484da2e614fSDavid Spickett return Status(); 1485da2e614fSDavid Spickett } 1486da2e614fSDavid Spickett 14877d27230dSDavid Spickett Status NativeProcessLinux::WriteMemoryTags(int32_t type, lldb::addr_t addr, 14887d27230dSDavid Spickett size_t len, 14897d27230dSDavid Spickett const std::vector<uint8_t> &tags) { 14907d27230dSDavid Spickett llvm::Expected<NativeRegisterContextLinux::MemoryTaggingDetails> details = 14917d27230dSDavid Spickett GetCurrentThread()->GetRegisterContext().GetMemoryTaggingDetails(type); 14927d27230dSDavid Spickett if (!details) 14937d27230dSDavid Spickett return Status(details.takeError()); 14947d27230dSDavid Spickett 14957d27230dSDavid Spickett // Ignore 0 length write 14967d27230dSDavid Spickett if (!len) 14977d27230dSDavid Spickett return Status(); 14987d27230dSDavid Spickett 14997d27230dSDavid Spickett // lldb will align the range it requests but it is not required to by 15007d27230dSDavid Spickett // the protocol so we'll do it again just in case. 15017d27230dSDavid Spickett // Remove non address bits too. Ptrace calls may work regardless but that 15027d27230dSDavid Spickett // is not a guarantee. 15037d27230dSDavid Spickett MemoryTagManager::TagRange range(details->manager->RemoveNonAddressBits(addr), 15047d27230dSDavid Spickett len); 15057d27230dSDavid Spickett range = details->manager->ExpandToGranule(range); 15067d27230dSDavid Spickett 15077d27230dSDavid Spickett // Not checking number of tags here, we may repeat them below 15087d27230dSDavid Spickett llvm::Expected<std::vector<lldb::addr_t>> unpacked_tags_or_err = 15097d27230dSDavid Spickett details->manager->UnpackTagsData(tags); 15107d27230dSDavid Spickett if (!unpacked_tags_or_err) 15117d27230dSDavid Spickett return Status(unpacked_tags_or_err.takeError()); 15127d27230dSDavid Spickett 15137d27230dSDavid Spickett llvm::Expected<std::vector<lldb::addr_t>> repeated_tags_or_err = 15147d27230dSDavid Spickett details->manager->RepeatTagsForRange(*unpacked_tags_or_err, range); 15157d27230dSDavid Spickett if (!repeated_tags_or_err) 15167d27230dSDavid Spickett return Status(repeated_tags_or_err.takeError()); 15177d27230dSDavid Spickett 15187d27230dSDavid Spickett // Repack them for ptrace to use 15197d27230dSDavid Spickett llvm::Expected<std::vector<uint8_t>> final_tag_data = 15207d27230dSDavid Spickett details->manager->PackTags(*repeated_tags_or_err); 15217d27230dSDavid Spickett if (!final_tag_data) 15227d27230dSDavid Spickett return Status(final_tag_data.takeError()); 15237d27230dSDavid Spickett 15247d27230dSDavid Spickett struct iovec tags_vec; 15257d27230dSDavid Spickett uint8_t *src = final_tag_data->data(); 15267d27230dSDavid Spickett lldb::addr_t write_addr = range.GetRangeBase(); 15277d27230dSDavid Spickett // unpacked tags size because the number of bytes per tag might not be 1 15287d27230dSDavid Spickett size_t num_tags = repeated_tags_or_err->size(); 15297d27230dSDavid Spickett 15307d27230dSDavid Spickett // This call can partially write tags, so we loop until we 15317d27230dSDavid Spickett // error or all tags have been written. 15327d27230dSDavid Spickett while (num_tags > 0) { 15337d27230dSDavid Spickett tags_vec.iov_base = src; 15347d27230dSDavid Spickett tags_vec.iov_len = num_tags; 15357d27230dSDavid Spickett 15367d27230dSDavid Spickett Status error = NativeProcessLinux::PtraceWrapper( 15377d27230dSDavid Spickett details->ptrace_write_req, GetID(), 15387d27230dSDavid Spickett reinterpret_cast<void *>(write_addr), static_cast<void *>(&tags_vec), 0, 15397d27230dSDavid Spickett nullptr); 15407d27230dSDavid Spickett 15417d27230dSDavid Spickett if (error.Fail()) { 15427d27230dSDavid Spickett // Don't attempt to restore the original values in the case of a partial 15437d27230dSDavid Spickett // write 15447d27230dSDavid Spickett return error; 15457d27230dSDavid Spickett } 15467d27230dSDavid Spickett 15477d27230dSDavid Spickett size_t tags_written = tags_vec.iov_len; 15487d27230dSDavid Spickett assert(tags_written && (tags_written <= num_tags)); 15497d27230dSDavid Spickett 15507d27230dSDavid Spickett src += tags_written * details->manager->GetTagSizeInBytes(); 15517d27230dSDavid Spickett write_addr += details->manager->GetGranuleSize() * tags_written; 15527d27230dSDavid Spickett num_tags -= tags_written; 15537d27230dSDavid Spickett } 15547d27230dSDavid Spickett 15557d27230dSDavid Spickett return Status(); 15567d27230dSDavid Spickett } 15577d27230dSDavid Spickett 1558b9c1b51eSKate Stone size_t NativeProcessLinux::UpdateThreads() { 155905097246SAdrian Prantl // The NativeProcessLinux monitoring threads are always up to date with 156005097246SAdrian Prantl // respect to thread state and they keep the thread list populated properly. 156105097246SAdrian Prantl // All this method needs to do is return the thread count. 1562af245d11STodd Fiala return m_threads.size(); 1563af245d11STodd Fiala } 1564af245d11STodd Fiala 156597206d57SZachary Turner Status NativeProcessLinux::SetBreakpoint(lldb::addr_t addr, uint32_t size, 1566b9c1b51eSKate Stone bool hardware) { 1567af245d11STodd Fiala if (hardware) 1568d5ffbad2SOmair Javaid return SetHardwareBreakpoint(addr, size); 1569af245d11STodd Fiala else 1570af245d11STodd Fiala return SetSoftwareBreakpoint(addr, size); 1571af245d11STodd Fiala } 1572af245d11STodd Fiala 157397206d57SZachary Turner Status NativeProcessLinux::RemoveBreakpoint(lldb::addr_t addr, bool hardware) { 1574d5ffbad2SOmair Javaid if (hardware) 1575d5ffbad2SOmair Javaid return RemoveHardwareBreakpoint(addr); 1576d5ffbad2SOmair Javaid else 1577d5ffbad2SOmair Javaid return NativeProcessProtocol::RemoveBreakpoint(addr); 1578d5ffbad2SOmair Javaid } 1579d5ffbad2SOmair Javaid 1580f8b825f6SPavel Labath llvm::Expected<llvm::ArrayRef<uint8_t>> 1581f8b825f6SPavel Labath NativeProcessLinux::GetSoftwareBreakpointTrapOpcode(size_t size_hint) { 1582be379e15STamas Berghammer // The ARM reference recommends the use of 0xe7fddefe and 0xdefe but the 1583be379e15STamas Berghammer // linux kernel does otherwise. 1584f8b825f6SPavel Labath static const uint8_t g_arm_opcode[] = {0xf0, 0x01, 0xf0, 0xe7}; 1585f8b825f6SPavel Labath static const uint8_t g_thumb_opcode[] = {0x01, 0xde}; 158612286a27SPavel Labath 1587f8b825f6SPavel Labath switch (GetArchitecture().GetMachine()) { 158812286a27SPavel Labath case llvm::Triple::arm: 1589f8b825f6SPavel Labath switch (size_hint) { 159063c8be95STamas Berghammer case 2: 15914f545074SPavel Labath return llvm::makeArrayRef(g_thumb_opcode); 159263c8be95STamas Berghammer case 4: 15934f545074SPavel Labath return llvm::makeArrayRef(g_arm_opcode); 159463c8be95STamas Berghammer default: 1595f8b825f6SPavel Labath return llvm::createStringError(llvm::inconvertibleErrorCode(), 1596f8b825f6SPavel Labath "Unrecognised trap opcode size hint!"); 159763c8be95STamas Berghammer } 1598af245d11STodd Fiala default: 1599f8b825f6SPavel Labath return NativeProcessProtocol::GetSoftwareBreakpointTrapOpcode(size_hint); 1600af245d11STodd Fiala } 1601af245d11STodd Fiala } 1602af245d11STodd Fiala 160397206d57SZachary Turner Status NativeProcessLinux::ReadMemory(lldb::addr_t addr, void *buf, size_t size, 1604b9c1b51eSKate Stone size_t &bytes_read) { 1605df7c6995SPavel Labath if (ProcessVmReadvSupported()) { 1606b9c1b51eSKate Stone // The process_vm_readv path is about 50 times faster than ptrace api. We 160705097246SAdrian Prantl // want to use this syscall if it is supported. 1608df7c6995SPavel Labath 1609df7c6995SPavel Labath const ::pid_t pid = GetID(); 1610df7c6995SPavel Labath 1611df7c6995SPavel Labath struct iovec local_iov, remote_iov; 1612df7c6995SPavel Labath local_iov.iov_base = buf; 1613df7c6995SPavel Labath local_iov.iov_len = size; 1614df7c6995SPavel Labath remote_iov.iov_base = reinterpret_cast<void *>(addr); 1615df7c6995SPavel Labath remote_iov.iov_len = size; 1616df7c6995SPavel Labath 1617df7c6995SPavel Labath bytes_read = process_vm_readv(pid, &local_iov, 1, &remote_iov, 1, 0); 1618df7c6995SPavel Labath const bool success = bytes_read == size; 1619df7c6995SPavel Labath 1620a6321a8eSPavel Labath Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS)); 1621a6321a8eSPavel Labath LLDB_LOG(log, 1622a6321a8eSPavel Labath "using process_vm_readv to read {0} bytes from inferior " 1623a6321a8eSPavel Labath "address {1:x}: {2}", 162410c41f37SPavel Labath size, addr, success ? "Success" : llvm::sys::StrError(errno)); 1625df7c6995SPavel Labath 1626df7c6995SPavel Labath if (success) 162797206d57SZachary Turner return Status(); 1628a6321a8eSPavel Labath // else the call failed for some reason, let's retry the read using ptrace 1629b9c1b51eSKate Stone // api. 1630df7c6995SPavel Labath } 1631df7c6995SPavel Labath 163219cbe96aSPavel Labath unsigned char *dst = static_cast<unsigned char *>(buf); 163319cbe96aSPavel Labath size_t remainder; 163419cbe96aSPavel Labath long data; 163519cbe96aSPavel Labath 1636a6321a8eSPavel Labath Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_MEMORY)); 1637a6321a8eSPavel Labath LLDB_LOG(log, "addr = {0}, buf = {1}, size = {2}", addr, buf, size); 163819cbe96aSPavel Labath 1639b9c1b51eSKate Stone for (bytes_read = 0; bytes_read < size; bytes_read += remainder) { 164097206d57SZachary Turner Status error = NativeProcessLinux::PtraceWrapper( 1641b9c1b51eSKate Stone PTRACE_PEEKDATA, GetID(), (void *)addr, nullptr, 0, &data); 1642a6321a8eSPavel Labath if (error.Fail()) 164319cbe96aSPavel Labath return error; 164419cbe96aSPavel Labath 164519cbe96aSPavel Labath remainder = size - bytes_read; 164619cbe96aSPavel Labath remainder = remainder > k_ptrace_word_size ? k_ptrace_word_size : remainder; 164719cbe96aSPavel Labath 164819cbe96aSPavel Labath // Copy the data into our buffer 1649f6ef187bSMohit K. Bhakkad memcpy(dst, &data, remainder); 165019cbe96aSPavel Labath 1651a6321a8eSPavel Labath LLDB_LOG(log, "[{0:x}]:{1:x}", addr, data); 165219cbe96aSPavel Labath addr += k_ptrace_word_size; 165319cbe96aSPavel Labath dst += k_ptrace_word_size; 165419cbe96aSPavel Labath } 165597206d57SZachary Turner return Status(); 1656af245d11STodd Fiala } 1657af245d11STodd Fiala 165897206d57SZachary Turner Status NativeProcessLinux::WriteMemory(lldb::addr_t addr, const void *buf, 1659b9c1b51eSKate Stone size_t size, size_t &bytes_written) { 166019cbe96aSPavel Labath const unsigned char *src = static_cast<const unsigned char *>(buf); 166119cbe96aSPavel Labath size_t remainder; 166297206d57SZachary Turner Status error; 166319cbe96aSPavel Labath 1664a6321a8eSPavel Labath Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_MEMORY)); 1665a6321a8eSPavel Labath LLDB_LOG(log, "addr = {0}, buf = {1}, size = {2}", addr, buf, size); 166619cbe96aSPavel Labath 1667b9c1b51eSKate Stone for (bytes_written = 0; bytes_written < size; bytes_written += remainder) { 166819cbe96aSPavel Labath remainder = size - bytes_written; 166919cbe96aSPavel Labath remainder = remainder > k_ptrace_word_size ? k_ptrace_word_size : remainder; 167019cbe96aSPavel Labath 1671b9c1b51eSKate Stone if (remainder == k_ptrace_word_size) { 167219cbe96aSPavel Labath unsigned long data = 0; 1673f6ef187bSMohit K. Bhakkad memcpy(&data, src, k_ptrace_word_size); 167419cbe96aSPavel Labath 1675a6321a8eSPavel Labath LLDB_LOG(log, "[{0:x}]:{1:x}", addr, data); 1676b9c1b51eSKate Stone error = NativeProcessLinux::PtraceWrapper(PTRACE_POKEDATA, GetID(), 1677b9c1b51eSKate Stone (void *)addr, (void *)data); 1678a6321a8eSPavel Labath if (error.Fail()) 167919cbe96aSPavel Labath return error; 1680b9c1b51eSKate Stone } else { 168119cbe96aSPavel Labath unsigned char buff[8]; 168219cbe96aSPavel Labath size_t bytes_read; 168319cbe96aSPavel Labath error = ReadMemory(addr, buff, k_ptrace_word_size, bytes_read); 1684a6321a8eSPavel Labath if (error.Fail()) 168519cbe96aSPavel Labath return error; 168619cbe96aSPavel Labath 168719cbe96aSPavel Labath memcpy(buff, src, remainder); 168819cbe96aSPavel Labath 168919cbe96aSPavel Labath size_t bytes_written_rec; 169019cbe96aSPavel Labath error = WriteMemory(addr, buff, k_ptrace_word_size, bytes_written_rec); 1691a6321a8eSPavel Labath if (error.Fail()) 169219cbe96aSPavel Labath return error; 169319cbe96aSPavel Labath 1694a6321a8eSPavel Labath LLDB_LOG(log, "[{0:x}]:{1:x} ({2:x})", addr, *(const unsigned long *)src, 1695b9c1b51eSKate Stone *(unsigned long *)buff); 169619cbe96aSPavel Labath } 169719cbe96aSPavel Labath 169819cbe96aSPavel Labath addr += k_ptrace_word_size; 169919cbe96aSPavel Labath src += k_ptrace_word_size; 170019cbe96aSPavel Labath } 170119cbe96aSPavel Labath return error; 1702af245d11STodd Fiala } 1703af245d11STodd Fiala 170497206d57SZachary Turner Status NativeProcessLinux::GetSignalInfo(lldb::tid_t tid, void *siginfo) { 170519cbe96aSPavel Labath return PtraceWrapper(PTRACE_GETSIGINFO, tid, nullptr, siginfo); 1706af245d11STodd Fiala } 1707af245d11STodd Fiala 170897206d57SZachary Turner Status NativeProcessLinux::GetEventMessage(lldb::tid_t tid, 1709b9c1b51eSKate Stone unsigned long *message) { 171019cbe96aSPavel Labath return PtraceWrapper(PTRACE_GETEVENTMSG, tid, nullptr, message); 1711af245d11STodd Fiala } 1712af245d11STodd Fiala 171397206d57SZachary Turner Status NativeProcessLinux::Detach(lldb::tid_t tid) { 171497ccc294SChaoren Lin if (tid == LLDB_INVALID_THREAD_ID) 171597206d57SZachary Turner return Status(); 171697ccc294SChaoren Lin 171719cbe96aSPavel Labath return PtraceWrapper(PTRACE_DETACH, tid); 1718af245d11STodd Fiala } 1719af245d11STodd Fiala 1720b9c1b51eSKate Stone bool NativeProcessLinux::HasThreadNoLock(lldb::tid_t thread_id) { 1721a5be48b3SPavel Labath for (const auto &thread : m_threads) { 1722a5be48b3SPavel Labath assert(thread && "thread list should not contain NULL threads"); 1723a5be48b3SPavel Labath if (thread->GetID() == thread_id) { 1724af245d11STodd Fiala // We have this thread. 1725af245d11STodd Fiala return true; 1726af245d11STodd Fiala } 1727af245d11STodd Fiala } 1728af245d11STodd Fiala 1729af245d11STodd Fiala // We don't have this thread. 1730af245d11STodd Fiala return false; 1731af245d11STodd Fiala } 1732af245d11STodd Fiala 1733b9c1b51eSKate Stone bool NativeProcessLinux::StopTrackingThread(lldb::tid_t thread_id) { 1734a6321a8eSPavel Labath Log *const log = ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_THREAD); 1735a6321a8eSPavel Labath LLDB_LOG(log, "tid: {0})", thread_id); 17361dbc6c9cSPavel Labath 17371dbc6c9cSPavel Labath bool found = false; 1738b9c1b51eSKate Stone for (auto it = m_threads.begin(); it != m_threads.end(); ++it) { 1739b9c1b51eSKate Stone if (*it && ((*it)->GetID() == thread_id)) { 1740af245d11STodd Fiala m_threads.erase(it); 17411dbc6c9cSPavel Labath found = true; 17421dbc6c9cSPavel Labath break; 1743af245d11STodd Fiala } 1744af245d11STodd Fiala } 1745af245d11STodd Fiala 174699e37695SRavitheja Addepally if (found) 17470b697561SWalter Erquinigo NotifyTracersOfThreadDestroyed(thread_id); 17480b697561SWalter Erquinigo 17499eb1ecb9SPavel Labath SignalIfAllThreadsStopped(); 17501dbc6c9cSPavel Labath return found; 1751af245d11STodd Fiala } 1752af245d11STodd Fiala 17530b697561SWalter Erquinigo Status NativeProcessLinux::NotifyTracersOfNewThread(lldb::tid_t tid) { 17540b697561SWalter Erquinigo Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_THREAD)); 17550b697561SWalter Erquinigo Status error(m_intel_pt_manager.OnThreadCreated(tid)); 17560b697561SWalter Erquinigo if (error.Fail()) 17570b697561SWalter Erquinigo LLDB_LOG(log, "Failed to trace a new thread with intel-pt, tid = {0}. {1}", 17580b697561SWalter Erquinigo tid, error.AsCString()); 17590b697561SWalter Erquinigo return error; 17600b697561SWalter Erquinigo } 17610b697561SWalter Erquinigo 17620b697561SWalter Erquinigo Status NativeProcessLinux::NotifyTracersOfThreadDestroyed(lldb::tid_t tid) { 17630b697561SWalter Erquinigo Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_THREAD)); 17640b697561SWalter Erquinigo Status error(m_intel_pt_manager.OnThreadDestroyed(tid)); 17650b697561SWalter Erquinigo if (error.Fail()) 17660b697561SWalter Erquinigo LLDB_LOG(log, 17670b697561SWalter Erquinigo "Failed to stop a destroyed thread with intel-pt, tid = {0}. {1}", 17680b697561SWalter Erquinigo tid, error.AsCString()); 17690b697561SWalter Erquinigo return error; 17700b697561SWalter Erquinigo } 17710b697561SWalter Erquinigo 17720b697561SWalter Erquinigo NativeThreadLinux &NativeProcessLinux::AddThread(lldb::tid_t thread_id, 17730b697561SWalter Erquinigo bool resume) { 1774a6321a8eSPavel Labath Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_THREAD)); 1775a6321a8eSPavel Labath LLDB_LOG(log, "pid {0} adding thread with tid {1}", GetID(), thread_id); 1776af245d11STodd Fiala 1777b9c1b51eSKate Stone assert(!HasThreadNoLock(thread_id) && 1778b9c1b51eSKate Stone "attempted to add a thread by id that already exists"); 1779af245d11STodd Fiala 1780af245d11STodd Fiala // If this is the first thread, save it as the current thread 1781af245d11STodd Fiala if (m_threads.empty()) 1782af245d11STodd Fiala SetCurrentThreadID(thread_id); 1783af245d11STodd Fiala 1784a8f3ae7cSJonas Devlieghere m_threads.push_back(std::make_unique<NativeThreadLinux>(*this, thread_id)); 17850b697561SWalter Erquinigo NativeThreadLinux &thread = 17860b697561SWalter Erquinigo static_cast<NativeThreadLinux &>(*m_threads.back()); 178799e37695SRavitheja Addepally 17880b697561SWalter Erquinigo Status tracing_error = NotifyTracersOfNewThread(thread.GetID()); 17890b697561SWalter Erquinigo if (tracing_error.Fail()) { 17900b697561SWalter Erquinigo thread.SetStoppedByProcessorTrace(tracing_error.AsCString()); 17910b697561SWalter Erquinigo StopRunningThreads(thread.GetID()); 17920b697561SWalter Erquinigo } else if (resume) 17930b697561SWalter Erquinigo ResumeThread(thread, eStateRunning, LLDB_INVALID_SIGNAL_NUMBER); 17940b697561SWalter Erquinigo else 17950b697561SWalter Erquinigo thread.SetStoppedBySignal(SIGSTOP); 179699e37695SRavitheja Addepally 17970b697561SWalter Erquinigo return thread; 1798af245d11STodd Fiala } 1799af245d11STodd Fiala 180097206d57SZachary Turner Status NativeProcessLinux::GetLoadedModuleFileSpec(const char *module_path, 1801b9c1b51eSKate Stone FileSpec &file_spec) { 180297206d57SZachary Turner Status error = PopulateMemoryRegionCache(); 1803a6f5795aSTamas Berghammer if (error.Fail()) 1804a6f5795aSTamas Berghammer return error; 1805a6f5795aSTamas Berghammer 18068f3be7a3SJonas Devlieghere FileSpec module_file_spec(module_path); 18078f3be7a3SJonas Devlieghere FileSystem::Instance().Resolve(module_file_spec); 18087cb18bf5STamas Berghammer 18097cb18bf5STamas Berghammer file_spec.Clear(); 1810a6f5795aSTamas Berghammer for (const auto &it : m_mem_region_cache) { 1811a6f5795aSTamas Berghammer if (it.second.GetFilename() == module_file_spec.GetFilename()) { 1812a6f5795aSTamas Berghammer file_spec = it.second; 181397206d57SZachary Turner return Status(); 1814a6f5795aSTamas Berghammer } 1815a6f5795aSTamas Berghammer } 181697206d57SZachary Turner return Status("Module file (%s) not found in /proc/%" PRIu64 "/maps file!", 18177cb18bf5STamas Berghammer module_file_spec.GetFilename().AsCString(), GetID()); 18187cb18bf5STamas Berghammer } 1819c076559aSPavel Labath 182097206d57SZachary Turner Status NativeProcessLinux::GetFileLoadAddress(const llvm::StringRef &file_name, 1821b9c1b51eSKate Stone lldb::addr_t &load_addr) { 1822783bfc8cSTamas Berghammer load_addr = LLDB_INVALID_ADDRESS; 182397206d57SZachary Turner Status error = PopulateMemoryRegionCache(); 1824a6f5795aSTamas Berghammer if (error.Fail()) 1825783bfc8cSTamas Berghammer return error; 1826a6f5795aSTamas Berghammer 18278f3be7a3SJonas Devlieghere FileSpec file(file_name); 1828a6f5795aSTamas Berghammer for (const auto &it : m_mem_region_cache) { 1829a6f5795aSTamas Berghammer if (it.second == file) { 1830a6f5795aSTamas Berghammer load_addr = it.first.GetRange().GetRangeBase(); 183197206d57SZachary Turner return Status(); 1832a6f5795aSTamas Berghammer } 1833a6f5795aSTamas Berghammer } 183497206d57SZachary Turner return Status("No load address found for specified file."); 1835783bfc8cSTamas Berghammer } 1836783bfc8cSTamas Berghammer 1837a5be48b3SPavel Labath NativeThreadLinux *NativeProcessLinux::GetThreadByID(lldb::tid_t tid) { 1838a5be48b3SPavel Labath return static_cast<NativeThreadLinux *>( 1839b9c1b51eSKate Stone NativeProcessProtocol::GetThreadByID(tid)); 1840f9077782SPavel Labath } 1841f9077782SPavel Labath 18422c4226f8SPavel Labath NativeThreadLinux *NativeProcessLinux::GetCurrentThread() { 18432c4226f8SPavel Labath return static_cast<NativeThreadLinux *>( 18442c4226f8SPavel Labath NativeProcessProtocol::GetCurrentThread()); 18452c4226f8SPavel Labath } 18462c4226f8SPavel Labath 184797206d57SZachary Turner Status NativeProcessLinux::ResumeThread(NativeThreadLinux &thread, 1848b9c1b51eSKate Stone lldb::StateType state, int signo) { 1849a6321a8eSPavel Labath Log *const log = ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_THREAD); 1850a6321a8eSPavel Labath LLDB_LOG(log, "tid: {0}", thread.GetID()); 1851c076559aSPavel Labath 185205097246SAdrian Prantl // Before we do the resume below, first check if we have a pending stop 185305097246SAdrian Prantl // notification that is currently waiting for all threads to stop. This is 185405097246SAdrian Prantl // potentially a buggy situation since we're ostensibly waiting for threads 185505097246SAdrian Prantl // to stop before we send out the pending notification, and here we are 185605097246SAdrian Prantl // resuming one before we send out the pending stop notification. 1857a6321a8eSPavel Labath if (m_pending_notification_tid != LLDB_INVALID_THREAD_ID) { 1858a6321a8eSPavel Labath LLDB_LOG(log, 1859a6321a8eSPavel Labath "about to resume tid {0} per explicit request but we have a " 1860a6321a8eSPavel Labath "pending stop notification (tid {1}) that is actively " 1861a6321a8eSPavel Labath "waiting for this thread to stop. Valid sequence of events?", 1862a6321a8eSPavel Labath thread.GetID(), m_pending_notification_tid); 1863c076559aSPavel Labath } 1864c076559aSPavel Labath 186505097246SAdrian Prantl // Request a resume. We expect this to be synchronous and the system to 186605097246SAdrian Prantl // reflect it is running after this completes. 1867b9c1b51eSKate Stone switch (state) { 1868b9c1b51eSKate Stone case eStateRunning: { 1869605b51b8SPavel Labath const auto resume_result = thread.Resume(signo); 18700e1d729bSPavel Labath if (resume_result.Success()) 18710e1d729bSPavel Labath SetState(eStateRunning, true); 18720e1d729bSPavel Labath return resume_result; 1873c076559aSPavel Labath } 1874b9c1b51eSKate Stone case eStateStepping: { 1875605b51b8SPavel Labath const auto step_result = thread.SingleStep(signo); 18760e1d729bSPavel Labath if (step_result.Success()) 18770e1d729bSPavel Labath SetState(eStateRunning, true); 18780e1d729bSPavel Labath return step_result; 18790e1d729bSPavel Labath } 18800e1d729bSPavel Labath default: 18818198db30SPavel Labath LLDB_LOG(log, "Unhandled state {0}.", state); 18820e1d729bSPavel Labath llvm_unreachable("Unhandled state for resume"); 18830e1d729bSPavel Labath } 1884c076559aSPavel Labath } 1885c076559aSPavel Labath 1886c076559aSPavel Labath //===----------------------------------------------------------------------===// 1887c076559aSPavel Labath 1888b9c1b51eSKate Stone void NativeProcessLinux::StopRunningThreads(const lldb::tid_t triggering_tid) { 1889a6321a8eSPavel Labath Log *const log = ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_THREAD); 1890a6321a8eSPavel Labath LLDB_LOG(log, "about to process event: (triggering_tid: {0})", 1891a6321a8eSPavel Labath triggering_tid); 1892c076559aSPavel Labath 18930e1d729bSPavel Labath m_pending_notification_tid = triggering_tid; 18940e1d729bSPavel Labath 189505097246SAdrian Prantl // Request a stop for all the thread stops that need to be stopped and are 189605097246SAdrian Prantl // not already known to be stopped. 1897a5be48b3SPavel Labath for (const auto &thread : m_threads) { 1898a5be48b3SPavel Labath if (StateIsRunningState(thread->GetState())) 1899a5be48b3SPavel Labath static_cast<NativeThreadLinux *>(thread.get())->RequestStop(); 19000e1d729bSPavel Labath } 19010e1d729bSPavel Labath 19020e1d729bSPavel Labath SignalIfAllThreadsStopped(); 1903a6321a8eSPavel Labath LLDB_LOG(log, "event processing done"); 1904c076559aSPavel Labath } 1905c076559aSPavel Labath 1906b9c1b51eSKate Stone void NativeProcessLinux::SignalIfAllThreadsStopped() { 19070e1d729bSPavel Labath if (m_pending_notification_tid == LLDB_INVALID_THREAD_ID) 19080e1d729bSPavel Labath return; // No pending notification. Nothing to do. 19090e1d729bSPavel Labath 1910b9c1b51eSKate Stone for (const auto &thread_sp : m_threads) { 19110e1d729bSPavel Labath if (StateIsRunningState(thread_sp->GetState())) 19120e1d729bSPavel Labath return; // Some threads are still running. Don't signal yet. 19130e1d729bSPavel Labath } 19140e1d729bSPavel Labath 19150e1d729bSPavel Labath // We have a pending notification and all threads have stopped. 1916b9c1b51eSKate Stone Log *log( 1917b9c1b51eSKate Stone GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_BREAKPOINTS)); 19189eb1ecb9SPavel Labath 1919b9c1b51eSKate Stone // Clear any temporary breakpoints we used to implement software single 1920b9c1b51eSKate Stone // stepping. 1921b9c1b51eSKate Stone for (const auto &thread_info : m_threads_stepping_with_breakpoint) { 192297206d57SZachary Turner Status error = RemoveBreakpoint(thread_info.second); 19239eb1ecb9SPavel Labath if (error.Fail()) 1924a6321a8eSPavel Labath LLDB_LOG(log, "pid = {0} remove stepping breakpoint: {1}", 1925a6321a8eSPavel Labath thread_info.first, error); 19269eb1ecb9SPavel Labath } 19279eb1ecb9SPavel Labath m_threads_stepping_with_breakpoint.clear(); 19289eb1ecb9SPavel Labath 19299eb1ecb9SPavel Labath // Notify the delegate about the stop 19300e1d729bSPavel Labath SetCurrentThreadID(m_pending_notification_tid); 1931ed89c7feSPavel Labath SetState(StateType::eStateStopped, true); 19320e1d729bSPavel Labath m_pending_notification_tid = LLDB_INVALID_THREAD_ID; 1933c076559aSPavel Labath } 1934c076559aSPavel Labath 1935b9c1b51eSKate Stone void NativeProcessLinux::ThreadWasCreated(NativeThreadLinux &thread) { 1936a6321a8eSPavel Labath Log *const log = ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_THREAD); 1937a6321a8eSPavel Labath LLDB_LOG(log, "tid: {0}", thread.GetID()); 19381dbc6c9cSPavel Labath 1939b9c1b51eSKate Stone if (m_pending_notification_tid != LLDB_INVALID_THREAD_ID && 1940b9c1b51eSKate Stone StateIsRunningState(thread.GetState())) { 1941b9c1b51eSKate Stone // We will need to wait for this new thread to stop as well before firing 194205097246SAdrian Prantl // the notification. 1943f9077782SPavel Labath thread.RequestStop(); 1944c076559aSPavel Labath } 1945c076559aSPavel Labath } 1946068f8a7eSTamas Berghammer 1947b9c1b51eSKate Stone void NativeProcessLinux::SigchldHandler() { 1948a6321a8eSPavel Labath Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PROCESS)); 194919cbe96aSPavel Labath // Process all pending waitpid notifications. 1950b9c1b51eSKate Stone while (true) { 195119cbe96aSPavel Labath int status = -1; 1952c1a6b128SPavel Labath ::pid_t wait_pid = llvm::sys::RetryAfterSignal(-1, ::waitpid, -1, &status, 1953c1a6b128SPavel Labath __WALL | __WNOTHREAD | WNOHANG); 195419cbe96aSPavel Labath 195519cbe96aSPavel Labath if (wait_pid == 0) 195619cbe96aSPavel Labath break; // We are done. 195719cbe96aSPavel Labath 1958b9c1b51eSKate Stone if (wait_pid == -1) { 195997206d57SZachary Turner Status error(errno, eErrorTypePOSIX); 1960a6321a8eSPavel Labath LLDB_LOG(log, "waitpid (-1, &status, _) failed: {0}", error); 196119cbe96aSPavel Labath break; 196219cbe96aSPavel Labath } 196319cbe96aSPavel Labath 19643508fc8cSPavel Labath WaitStatus wait_status = WaitStatus::Decode(status); 19653508fc8cSPavel Labath bool exited = wait_status.type == WaitStatus::Exit || 19663508fc8cSPavel Labath (wait_status.type == WaitStatus::Signal && 19673508fc8cSPavel Labath wait_pid == static_cast<::pid_t>(GetID())); 196819cbe96aSPavel Labath 19693508fc8cSPavel Labath LLDB_LOG( 19703508fc8cSPavel Labath log, 19713508fc8cSPavel Labath "waitpid (-1, &status, _) => pid = {0}, status = {1}, exited = {2}", 19723508fc8cSPavel Labath wait_pid, wait_status, exited); 197319cbe96aSPavel Labath 19743508fc8cSPavel Labath MonitorCallback(wait_pid, exited, wait_status); 197519cbe96aSPavel Labath } 1976068f8a7eSTamas Berghammer } 1977068f8a7eSTamas Berghammer 197805097246SAdrian Prantl // Wrapper for ptrace to catch errors and log calls. Note that ptrace sets 197905097246SAdrian Prantl // errno on error because -1 can be a valid result (i.e. for PTRACE_PEEK*) 198097206d57SZachary Turner Status NativeProcessLinux::PtraceWrapper(int req, lldb::pid_t pid, void *addr, 1981b9c1b51eSKate Stone void *data, size_t data_size, 1982b9c1b51eSKate Stone long *result) { 198397206d57SZachary Turner Status error; 19844a9babb2SPavel Labath long int ret; 1985068f8a7eSTamas Berghammer 1986068f8a7eSTamas Berghammer Log *log(ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_PTRACE)); 1987068f8a7eSTamas Berghammer 1988068f8a7eSTamas Berghammer PtraceDisplayBytes(req, data, data_size); 1989068f8a7eSTamas Berghammer 1990068f8a7eSTamas Berghammer errno = 0; 1991068f8a7eSTamas Berghammer if (req == PTRACE_GETREGSET || req == PTRACE_SETREGSET) 1992b9c1b51eSKate Stone ret = ptrace(static_cast<__ptrace_request>(req), static_cast<::pid_t>(pid), 1993b9c1b51eSKate Stone *(unsigned int *)addr, data); 1994068f8a7eSTamas Berghammer else 1995b9c1b51eSKate Stone ret = ptrace(static_cast<__ptrace_request>(req), static_cast<::pid_t>(pid), 1996b9c1b51eSKate Stone addr, data); 1997068f8a7eSTamas Berghammer 19984a9babb2SPavel Labath if (ret == -1) 1999068f8a7eSTamas Berghammer error.SetErrorToErrno(); 2000068f8a7eSTamas Berghammer 20014a9babb2SPavel Labath if (result) 20024a9babb2SPavel Labath *result = ret; 20034a9babb2SPavel Labath 200428096200SPavel Labath LLDB_LOG(log, "ptrace({0}, {1}, {2}, {3}, {4})={5:x}", req, pid, addr, data, 200528096200SPavel Labath data_size, ret); 2006068f8a7eSTamas Berghammer 2007068f8a7eSTamas Berghammer PtraceDisplayBytes(req, data, data_size); 2008068f8a7eSTamas Berghammer 2009a6321a8eSPavel Labath if (error.Fail()) 2010a6321a8eSPavel Labath LLDB_LOG(log, "ptrace() failed: {0}", error); 2011068f8a7eSTamas Berghammer 20124a9babb2SPavel Labath return error; 2013068f8a7eSTamas Berghammer } 201499e37695SRavitheja Addepally 20150b697561SWalter Erquinigo llvm::Expected<TraceSupportedResponse> NativeProcessLinux::TraceSupported() { 20160b697561SWalter Erquinigo if (IntelPTManager::IsSupported()) 20170b697561SWalter Erquinigo return TraceSupportedResponse{"intel-pt", "Intel Processor Trace"}; 20180b697561SWalter Erquinigo return NativeProcessProtocol::TraceSupported(); 201999e37695SRavitheja Addepally } 202099e37695SRavitheja Addepally 20210b697561SWalter Erquinigo Error NativeProcessLinux::TraceStart(StringRef json_request, StringRef type) { 20220b697561SWalter Erquinigo if (type == "intel-pt") { 20230b697561SWalter Erquinigo if (Expected<TraceIntelPTStartRequest> request = 20240b697561SWalter Erquinigo json::parse<TraceIntelPTStartRequest>(json_request, 20250b697561SWalter Erquinigo "TraceIntelPTStartRequest")) { 20260b697561SWalter Erquinigo std::vector<lldb::tid_t> process_threads; 20270b697561SWalter Erquinigo for (auto &thread : m_threads) 20280b697561SWalter Erquinigo process_threads.push_back(thread->GetID()); 20290b697561SWalter Erquinigo return m_intel_pt_manager.TraceStart(*request, process_threads); 20300b697561SWalter Erquinigo } else 20310b697561SWalter Erquinigo return request.takeError(); 203299e37695SRavitheja Addepally } 203399e37695SRavitheja Addepally 20340b697561SWalter Erquinigo return NativeProcessProtocol::TraceStart(json_request, type); 203599e37695SRavitheja Addepally } 203699e37695SRavitheja Addepally 20370b697561SWalter Erquinigo Error NativeProcessLinux::TraceStop(const TraceStopRequest &request) { 20380b697561SWalter Erquinigo if (request.type == "intel-pt") 20390b697561SWalter Erquinigo return m_intel_pt_manager.TraceStop(request); 20400b697561SWalter Erquinigo return NativeProcessProtocol::TraceStop(request); 204199e37695SRavitheja Addepally } 204299e37695SRavitheja Addepally 20430b697561SWalter Erquinigo Expected<json::Value> NativeProcessLinux::TraceGetState(StringRef type) { 20440b697561SWalter Erquinigo if (type == "intel-pt") 20450b697561SWalter Erquinigo return m_intel_pt_manager.GetState(); 20460b697561SWalter Erquinigo return NativeProcessProtocol::TraceGetState(type); 204799e37695SRavitheja Addepally } 204899e37695SRavitheja Addepally 20490b697561SWalter Erquinigo Expected<std::vector<uint8_t>> NativeProcessLinux::TraceGetBinaryData( 20500b697561SWalter Erquinigo const TraceGetBinaryDataRequest &request) { 20510b697561SWalter Erquinigo if (request.type == "intel-pt") 20520b697561SWalter Erquinigo return m_intel_pt_manager.GetBinaryData(request); 20530b697561SWalter Erquinigo return NativeProcessProtocol::TraceGetBinaryData(request); 205499e37695SRavitheja Addepally } 2055