1 //===-- NativeThreadLinux.cpp --------------------------------- -*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 #include "NativeThreadLinux.h"
11 
12 #include <signal.h>
13 #include <sstream>
14 
15 #include "NativeProcessLinux.h"
16 #include "NativeRegisterContextLinux.h"
17 #include "SingleStepCheck.h"
18 
19 #include "lldb/Core/Log.h"
20 #include "lldb/Core/State.h"
21 #include "lldb/Host/HostNativeThread.h"
22 #include "lldb/Host/linux/Ptrace.h"
23 #include "lldb/Utility/LLDBAssert.h"
24 #include "lldb/lldb-enumerations.h"
25 
26 #include "llvm/ADT/SmallString.h"
27 
28 #include "Plugins/Process/POSIX/CrashReason.h"
29 
30 #include <sys/syscall.h>
31 // Try to define a macro to encapsulate the tgkill syscall
32 #define tgkill(pid, tid, sig)                                                  \
33   syscall(__NR_tgkill, static_cast<::pid_t>(pid), static_cast<::pid_t>(tid),   \
34           sig)
35 
36 using namespace lldb;
37 using namespace lldb_private;
38 using namespace lldb_private::process_linux;
39 
40 namespace {
41 void LogThreadStopInfo(Log &log, const ThreadStopInfo &stop_info,
42                        const char *const header) {
43   switch (stop_info.reason) {
44   case eStopReasonNone:
45     log.Printf("%s: %s no stop reason", __FUNCTION__, header);
46     return;
47   case eStopReasonTrace:
48     log.Printf("%s: %s trace, stopping signal 0x%" PRIx32, __FUNCTION__, header,
49                stop_info.details.signal.signo);
50     return;
51   case eStopReasonBreakpoint:
52     log.Printf("%s: %s breakpoint, stopping signal 0x%" PRIx32, __FUNCTION__,
53                header, stop_info.details.signal.signo);
54     return;
55   case eStopReasonWatchpoint:
56     log.Printf("%s: %s watchpoint, stopping signal 0x%" PRIx32, __FUNCTION__,
57                header, stop_info.details.signal.signo);
58     return;
59   case eStopReasonSignal:
60     log.Printf("%s: %s signal 0x%02" PRIx32, __FUNCTION__, header,
61                stop_info.details.signal.signo);
62     return;
63   case eStopReasonException:
64     log.Printf("%s: %s exception type 0x%02" PRIx64, __FUNCTION__, header,
65                stop_info.details.exception.type);
66     return;
67   case eStopReasonExec:
68     log.Printf("%s: %s exec, stopping signal 0x%" PRIx32, __FUNCTION__, header,
69                stop_info.details.signal.signo);
70     return;
71   case eStopReasonPlanComplete:
72     log.Printf("%s: %s plan complete", __FUNCTION__, header);
73     return;
74   case eStopReasonThreadExiting:
75     log.Printf("%s: %s thread exiting", __FUNCTION__, header);
76     return;
77   case eStopReasonInstrumentation:
78     log.Printf("%s: %s instrumentation", __FUNCTION__, header);
79     return;
80   default:
81     log.Printf("%s: %s invalid stop reason %" PRIu32, __FUNCTION__, header,
82                static_cast<uint32_t>(stop_info.reason));
83   }
84 }
85 }
86 
87 NativeThreadLinux::NativeThreadLinux(NativeProcessLinux *process,
88                                      lldb::tid_t tid)
89     : NativeThreadProtocol(process, tid), m_state(StateType::eStateInvalid),
90       m_stop_info(), m_reg_context_sp(), m_stop_description() {}
91 
92 std::string NativeThreadLinux::GetName() {
93   NativeProcessProtocolSP process_sp = m_process_wp.lock();
94   if (!process_sp)
95     return "<unknown: no process>";
96 
97   // const NativeProcessLinux *const process =
98   // reinterpret_cast<NativeProcessLinux*> (process_sp->get ());
99   llvm::SmallString<32> thread_name;
100   HostNativeThread::GetName(GetID(), thread_name);
101   return thread_name.c_str();
102 }
103 
104 lldb::StateType NativeThreadLinux::GetState() { return m_state; }
105 
106 bool NativeThreadLinux::GetStopReason(ThreadStopInfo &stop_info,
107                                       std::string &description) {
108   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
109 
110   description.clear();
111 
112   switch (m_state) {
113   case eStateStopped:
114   case eStateCrashed:
115   case eStateExited:
116   case eStateSuspended:
117   case eStateUnloaded:
118     if (log)
119       LogThreadStopInfo(*log, m_stop_info, "m_stop_info in thread:");
120     stop_info = m_stop_info;
121     description = m_stop_description;
122     if (log)
123       LogThreadStopInfo(*log, stop_info, "returned stop_info:");
124 
125     return true;
126 
127   case eStateInvalid:
128   case eStateConnected:
129   case eStateAttaching:
130   case eStateLaunching:
131   case eStateRunning:
132   case eStateStepping:
133   case eStateDetached:
134     if (log) {
135       log->Printf("NativeThreadLinux::%s tid %" PRIu64
136                   " in state %s cannot answer stop reason",
137                   __FUNCTION__, GetID(), StateAsCString(m_state));
138     }
139     return false;
140   }
141   llvm_unreachable("unhandled StateType!");
142 }
143 
144 NativeRegisterContextSP NativeThreadLinux::GetRegisterContext() {
145   // Return the register context if we already created it.
146   if (m_reg_context_sp)
147     return m_reg_context_sp;
148 
149   NativeProcessProtocolSP m_process_sp = m_process_wp.lock();
150   if (!m_process_sp)
151     return NativeRegisterContextSP();
152 
153   ArchSpec target_arch;
154   if (!m_process_sp->GetArchitecture(target_arch))
155     return NativeRegisterContextSP();
156 
157   const uint32_t concrete_frame_idx = 0;
158   m_reg_context_sp.reset(
159       NativeRegisterContextLinux::CreateHostNativeRegisterContextLinux(
160           target_arch, *this, concrete_frame_idx));
161 
162   return m_reg_context_sp;
163 }
164 
165 Error NativeThreadLinux::SetWatchpoint(lldb::addr_t addr, size_t size,
166                                        uint32_t watch_flags, bool hardware) {
167   if (!hardware)
168     return Error("not implemented");
169   if (m_state == eStateLaunching)
170     return Error();
171   Error error = RemoveWatchpoint(addr);
172   if (error.Fail())
173     return error;
174   NativeRegisterContextSP reg_ctx = GetRegisterContext();
175   uint32_t wp_index = reg_ctx->SetHardwareWatchpoint(addr, size, watch_flags);
176   if (wp_index == LLDB_INVALID_INDEX32)
177     return Error("Setting hardware watchpoint failed.");
178   m_watchpoint_index_map.insert({addr, wp_index});
179   return Error();
180 }
181 
182 Error NativeThreadLinux::RemoveWatchpoint(lldb::addr_t addr) {
183   auto wp = m_watchpoint_index_map.find(addr);
184   if (wp == m_watchpoint_index_map.end())
185     return Error();
186   uint32_t wp_index = wp->second;
187   m_watchpoint_index_map.erase(wp);
188   if (GetRegisterContext()->ClearHardwareWatchpoint(wp_index))
189     return Error();
190   return Error("Clearing hardware watchpoint failed.");
191 }
192 
193 Error NativeThreadLinux::Resume(uint32_t signo) {
194   const StateType new_state = StateType::eStateRunning;
195   MaybeLogStateChange(new_state);
196   m_state = new_state;
197 
198   m_stop_info.reason = StopReason::eStopReasonNone;
199   m_stop_description.clear();
200 
201   // If watchpoints have been set, but none on this thread,
202   // then this is a new thread. So set all existing watchpoints.
203   if (m_watchpoint_index_map.empty()) {
204     NativeProcessLinux &process = GetProcess();
205 
206     const auto &watchpoint_map = process.GetWatchpointMap();
207     GetRegisterContext()->ClearAllHardwareWatchpoints();
208     for (const auto &pair : watchpoint_map) {
209       const auto &wp = pair.second;
210       SetWatchpoint(wp.m_addr, wp.m_size, wp.m_watch_flags, wp.m_hardware);
211     }
212   }
213 
214   intptr_t data = 0;
215 
216   if (signo != LLDB_INVALID_SIGNAL_NUMBER)
217     data = signo;
218 
219   return NativeProcessLinux::PtraceWrapper(PTRACE_CONT, GetID(), nullptr,
220                                            reinterpret_cast<void *>(data));
221 }
222 
223 Error NativeThreadLinux::SingleStep(uint32_t signo) {
224   const StateType new_state = StateType::eStateStepping;
225   MaybeLogStateChange(new_state);
226   m_state = new_state;
227   m_stop_info.reason = StopReason::eStopReasonNone;
228   m_step_workaround = SingleStepWorkaround::Get(m_tid);
229 
230   intptr_t data = 0;
231   if (signo != LLDB_INVALID_SIGNAL_NUMBER)
232     data = signo;
233 
234   // If hardware single-stepping is not supported, we just do a continue. The
235   // breakpoint on the
236   // next instruction has been setup in NativeProcessLinux::Resume.
237   return NativeProcessLinux::PtraceWrapper(
238       GetProcess().SupportHardwareSingleStepping() ? PTRACE_SINGLESTEP
239                                                    : PTRACE_CONT,
240       m_tid, nullptr, reinterpret_cast<void *>(data));
241 }
242 
243 void NativeThreadLinux::SetStoppedBySignal(uint32_t signo,
244                                            const siginfo_t *info) {
245   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
246   if (log)
247     log->Printf("NativeThreadLinux::%s called with signal 0x%02" PRIx32,
248                 __FUNCTION__, signo);
249 
250   SetStopped();
251 
252   m_stop_info.reason = StopReason::eStopReasonSignal;
253   m_stop_info.details.signal.signo = signo;
254 
255   m_stop_description.clear();
256   if (info) {
257     switch (signo) {
258     case SIGSEGV:
259     case SIGBUS:
260     case SIGFPE:
261     case SIGILL:
262       // In case of MIPS64 target, SI_KERNEL is generated for invalid 64bit
263       // address.
264       const auto reason =
265           (info->si_signo == SIGBUS && info->si_code == SI_KERNEL)
266               ? CrashReason::eInvalidAddress
267               : GetCrashReason(*info);
268       m_stop_description = GetCrashReasonString(reason, *info);
269       break;
270     }
271   }
272 }
273 
274 bool NativeThreadLinux::IsStopped(int *signo) {
275   if (!StateIsStoppedState(m_state, false))
276     return false;
277 
278   // If we are stopped by a signal, return the signo.
279   if (signo && m_state == StateType::eStateStopped &&
280       m_stop_info.reason == StopReason::eStopReasonSignal) {
281     *signo = m_stop_info.details.signal.signo;
282   }
283 
284   // Regardless, we are stopped.
285   return true;
286 }
287 
288 void NativeThreadLinux::SetStopped() {
289   if (m_state == StateType::eStateStepping)
290     m_step_workaround.reset();
291 
292   const StateType new_state = StateType::eStateStopped;
293   MaybeLogStateChange(new_state);
294   m_state = new_state;
295   m_stop_description.clear();
296 }
297 
298 void NativeThreadLinux::SetStoppedByExec() {
299   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
300   if (log)
301     log->Printf("NativeThreadLinux::%s()", __FUNCTION__);
302 
303   SetStopped();
304 
305   m_stop_info.reason = StopReason::eStopReasonExec;
306   m_stop_info.details.signal.signo = SIGSTOP;
307 }
308 
309 void NativeThreadLinux::SetStoppedByBreakpoint() {
310   SetStopped();
311 
312   m_stop_info.reason = StopReason::eStopReasonBreakpoint;
313   m_stop_info.details.signal.signo = SIGTRAP;
314   m_stop_description.clear();
315 }
316 
317 void NativeThreadLinux::SetStoppedByWatchpoint(uint32_t wp_index) {
318   SetStopped();
319 
320   lldbassert(wp_index != LLDB_INVALID_INDEX32 && "wp_index cannot be invalid");
321 
322   std::ostringstream ostr;
323   ostr << GetRegisterContext()->GetWatchpointAddress(wp_index) << " ";
324   ostr << wp_index;
325 
326   /*
327    * MIPS: Last 3bits of the watchpoint address are masked by the kernel. For
328    * example:
329    * 'n' is at 0x120010d00 and 'm' is 0x120010d04. When a watchpoint is set at
330    * 'm', then
331    * watch exception is generated even when 'n' is read/written. To handle this
332    * case,
333    * find the base address of the load/store instruction and append it in the
334    * stop-info
335    * packet.
336   */
337   ostr << " " << GetRegisterContext()->GetWatchpointHitAddress(wp_index);
338 
339   m_stop_description = ostr.str();
340 
341   m_stop_info.reason = StopReason::eStopReasonWatchpoint;
342   m_stop_info.details.signal.signo = SIGTRAP;
343 }
344 
345 bool NativeThreadLinux::IsStoppedAtBreakpoint() {
346   return GetState() == StateType::eStateStopped &&
347          m_stop_info.reason == StopReason::eStopReasonBreakpoint;
348 }
349 
350 bool NativeThreadLinux::IsStoppedAtWatchpoint() {
351   return GetState() == StateType::eStateStopped &&
352          m_stop_info.reason == StopReason::eStopReasonWatchpoint;
353 }
354 
355 void NativeThreadLinux::SetStoppedByTrace() {
356   SetStopped();
357 
358   m_stop_info.reason = StopReason::eStopReasonTrace;
359   m_stop_info.details.signal.signo = SIGTRAP;
360 }
361 
362 void NativeThreadLinux::SetStoppedWithNoReason() {
363   SetStopped();
364 
365   m_stop_info.reason = StopReason::eStopReasonNone;
366   m_stop_info.details.signal.signo = 0;
367 }
368 
369 void NativeThreadLinux::SetExited() {
370   const StateType new_state = StateType::eStateExited;
371   MaybeLogStateChange(new_state);
372   m_state = new_state;
373 
374   m_stop_info.reason = StopReason::eStopReasonThreadExiting;
375 }
376 
377 Error NativeThreadLinux::RequestStop() {
378   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
379 
380   NativeProcessLinux &process = GetProcess();
381 
382   lldb::pid_t pid = process.GetID();
383   lldb::tid_t tid = GetID();
384 
385   if (log)
386     log->Printf("NativeThreadLinux::%s requesting thread stop(pid: %" PRIu64
387                 ", tid: %" PRIu64 ")",
388                 __FUNCTION__, pid, tid);
389 
390   Error err;
391   errno = 0;
392   if (::tgkill(pid, tid, SIGSTOP) != 0) {
393     err.SetErrorToErrno();
394     if (log)
395       log->Printf("NativeThreadLinux::%s tgkill(%" PRIu64 ", %" PRIu64
396                   ", SIGSTOP) failed: %s",
397                   __FUNCTION__, pid, tid, err.AsCString());
398   }
399 
400   return err;
401 }
402 
403 void NativeThreadLinux::MaybeLogStateChange(lldb::StateType new_state) {
404   Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_THREAD));
405   // If we're not logging, we're done.
406   if (!log)
407     return;
408 
409   // If this is a state change to the same state, we're done.
410   lldb::StateType old_state = m_state;
411   if (new_state == old_state)
412     return;
413 
414   NativeProcessProtocolSP m_process_sp = m_process_wp.lock();
415   lldb::pid_t pid =
416       m_process_sp ? m_process_sp->GetID() : LLDB_INVALID_PROCESS_ID;
417 
418   // Log it.
419   log->Printf("NativeThreadLinux: thread (pid=%" PRIu64 ", tid=%" PRIu64
420               ") changing from state %s to %s",
421               pid, GetID(), StateAsCString(old_state),
422               StateAsCString(new_state));
423 }
424 
425 NativeProcessLinux &NativeThreadLinux::GetProcess() {
426   auto process_sp = std::static_pointer_cast<NativeProcessLinux>(
427       NativeThreadProtocol::GetProcess());
428   assert(process_sp);
429   return *process_sp;
430 }
431