LLDB mainline
NativeThreadLinux.cpp
Go to the documentation of this file.
1//===-- NativeThreadLinux.cpp ---------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "NativeThreadLinux.h"
10
11#include <csignal>
12#include <sstream>
13
14#include "NativeProcessLinux.h"
16#include "SingleStepCheck.h"
17
23#include "lldb/Utility/Log.h"
24#include "lldb/Utility/State.h"
26
27#include "llvm/ADT/SmallString.h"
28
31
32#include <sys/syscall.h>
33// Try to define a macro to encapsulate the tgkill syscall
34#define tgkill(pid, tid, sig) \
35 syscall(__NR_tgkill, static_cast<::pid_t>(pid), static_cast<::pid_t>(tid), \
36 sig)
37
38using namespace lldb;
39using namespace lldb_private;
40using namespace lldb_private::process_linux;
41
42namespace {
43void LogThreadStopInfo(Log &log, const ThreadStopInfo &stop_info,
44 const char *const header) {
45 switch (stop_info.reason) {
46 case eStopReasonNone:
47 log.Printf("%s: %s no stop reason", __FUNCTION__, header);
48 return;
50 log.Printf("%s: %s trace, stopping signal 0x%" PRIx32, __FUNCTION__, header,
51 stop_info.signo);
52 return;
54 log.Printf("%s: %s breakpoint, stopping signal 0x%" PRIx32, __FUNCTION__,
55 header, stop_info.signo);
56 return;
58 log.Printf("%s: %s watchpoint, stopping signal 0x%" PRIx32, __FUNCTION__,
59 header, stop_info.signo);
60 return;
62 log.Printf("%s: %s signal 0x%02" PRIx32, __FUNCTION__, header,
63 stop_info.signo);
64 return;
66 log.Printf("%s: %s exception type 0x%02" PRIx64, __FUNCTION__, header,
67 stop_info.details.exception.type);
68 return;
69 case eStopReasonExec:
70 log.Printf("%s: %s exec, stopping signal 0x%" PRIx32, __FUNCTION__, header,
71 stop_info.signo);
72 return;
74 log.Printf("%s: %s plan complete", __FUNCTION__, header);
75 return;
77 log.Printf("%s: %s thread exiting", __FUNCTION__, header);
78 return;
80 log.Printf("%s: %s instrumentation", __FUNCTION__, header);
81 return;
83 log.Printf("%s: %s processor trace", __FUNCTION__, header);
84 return;
86 log.Printf("%s: %s history boundary", __FUNCTION__, header);
87 return;
88 default:
89 log.Printf("%s: %s invalid stop reason %" PRIu32, __FUNCTION__, header,
90 static_cast<uint32_t>(stop_info.reason));
91 }
92}
93}
94
96 lldb::tid_t tid)
100 NativeRegisterContextLinux::CreateHostNativeRegisterContextLinux(
101 process.GetArchitecture(), *this)),
103
105 NativeProcessLinux &process = GetProcess();
106
107 auto BufferOrError = getProcFile(process.GetID(), GetID(), "comm");
108 if (!BufferOrError)
109 return "";
110 return std::string(BufferOrError.get()->getBuffer().rtrim('\n'));
111}
112
114
116 std::string &description) {
117 Log *log = GetLog(LLDBLog::Thread);
118
119 description.clear();
120
121 switch (m_state) {
122 case eStateStopped:
123 case eStateCrashed:
124 case eStateExited:
125 case eStateSuspended:
126 case eStateUnloaded:
127 if (log)
128 LogThreadStopInfo(*log, m_stop_info, "m_stop_info in thread:");
129 stop_info = m_stop_info;
130 description = m_stop_description;
131 if (log)
132 LogThreadStopInfo(*log, stop_info, "returned stop_info:");
133
134 return true;
135
136 case eStateInvalid:
137 case eStateConnected:
138 case eStateAttaching:
139 case eStateLaunching:
140 case eStateRunning:
141 case eStateStepping:
142 case eStateDetached:
143 LLDB_LOGF(log,
144 "NativeThreadLinux::%s tid %" PRIu64
145 " in state %s cannot answer stop reason",
146 __FUNCTION__, GetID(), StateAsCString(m_state));
147 return false;
148 }
149 llvm_unreachable("unhandled StateType!");
150}
151
153 uint32_t watch_flags, bool hardware) {
154 if (!hardware)
155 return Status::FromErrorString("not implemented");
157 return Status();
159 if (error.Fail())
160 return error;
161 uint32_t wp_index =
162 m_reg_context_up->SetHardwareWatchpoint(addr, size, watch_flags);
163 if (wp_index == LLDB_INVALID_INDEX32)
164 return Status::FromErrorString("Setting hardware watchpoint failed.");
165 m_watchpoint_index_map.insert({addr, wp_index});
166 return Status();
167}
168
170 auto wp = m_watchpoint_index_map.find(addr);
171 if (wp == m_watchpoint_index_map.end())
172 return Status();
173 uint32_t wp_index = wp->second;
174 m_watchpoint_index_map.erase(wp);
175 if (m_reg_context_up->ClearHardwareWatchpoint(wp_index))
176 return Status();
177 return Status::FromErrorString("Clearing hardware watchpoint failed.");
178}
179
181 size_t size) {
183 return Status();
184
186 if (error.Fail())
187 return error;
188
189 uint32_t bp_index = m_reg_context_up->SetHardwareBreakpoint(addr, size);
190
191 if (bp_index == LLDB_INVALID_INDEX32)
192 return Status::FromErrorString("Setting hardware breakpoint failed.");
193
194 m_hw_break_index_map.insert({addr, bp_index});
195 return Status();
196}
197
199 auto bp = m_hw_break_index_map.find(addr);
200 if (bp == m_hw_break_index_map.end())
201 return Status();
202
203 uint32_t bp_index = bp->second;
204 if (m_reg_context_up->ClearHardwareBreakpoint(bp_index)) {
205 m_hw_break_index_map.erase(bp);
206 return Status();
207 }
208
209 return Status::FromErrorString("Clearing hardware breakpoint failed.");
210}
211
213 const StateType new_state = StateType::eStateRunning;
214 MaybeLogStateChange(new_state);
215 m_state = new_state;
216
218 m_stop_description.clear();
219
220 // If watchpoints have been set, but none on this thread, then this is a new
221 // thread. So set all existing watchpoints.
222 if (m_watchpoint_index_map.empty()) {
223 NativeProcessLinux &process = GetProcess();
224
225 const auto &watchpoint_map = process.GetWatchpointMap();
226 m_reg_context_up->ClearAllHardwareWatchpoints();
227 for (const auto &pair : watchpoint_map) {
228 const auto &wp = pair.second;
229 SetWatchpoint(wp.m_addr, wp.m_size, wp.m_watch_flags, wp.m_hardware);
230 }
231 }
232
233 // Set all active hardware breakpoint on all threads.
234 if (m_hw_break_index_map.empty()) {
235 NativeProcessLinux &process = GetProcess();
236
237 const auto &hw_breakpoint_map = process.GetHardwareBreakpointMap();
238 m_reg_context_up->ClearAllHardwareBreakpoints();
239 for (const auto &pair : hw_breakpoint_map) {
240 const auto &bp = pair.second;
241 SetHardwareBreakpoint(bp.m_addr, bp.m_size);
242 }
243 }
244
245 intptr_t data = 0;
246
247 if (signo != LLDB_INVALID_SIGNAL_NUMBER)
248 data = signo;
249
250 return NativeProcessLinux::PtraceWrapper(PTRACE_CONT, GetID(), nullptr,
251 reinterpret_cast<void *>(data));
252}
253
255 const StateType new_state = StateType::eStateStepping;
256 MaybeLogStateChange(new_state);
257 m_state = new_state;
259
260 if(!m_step_workaround) {
261 // If we already hava a workaround inplace, don't reset it. Otherwise, the
262 // destructor of the existing instance will run after the new instance has
263 // fetched the cpu mask, and the thread will end up with the wrong mask.
265 }
266
267 intptr_t data = 0;
268 if (signo != LLDB_INVALID_SIGNAL_NUMBER)
269 data = signo;
270
271 // If hardware single-stepping is not supported, we just do a continue. The
272 // breakpoint on the next instruction has been setup in
273 // NativeProcessLinux::Resume.
275 GetProcess().SupportHardwareSingleStepping() ? PTRACE_SINGLESTEP
276 : PTRACE_CONT,
277 m_tid, nullptr, reinterpret_cast<void *>(data));
278}
279
281 const siginfo_t *info) {
282 Log *log = GetLog(LLDBLog::Thread);
283 LLDB_LOGF(log, "NativeThreadLinux::%s called with signal 0x%02" PRIx32,
284 __FUNCTION__, signo);
285
286 SetStopped();
287
289 m_stop_info.signo = signo;
290
291 m_stop_description.clear();
292 if (info) {
293 switch (signo) {
294 case SIGSEGV:
295 case SIGBUS:
296 case SIGFPE:
297 case SIGILL:
299#ifndef SEGV_MTESERR
300#define SEGV_MTESERR 9
301#endif
302 if (info->si_signo == SIGSEGV && info->si_code == SEGV_MTESERR)
304 reinterpret_cast<lldb::addr_t>(info->si_addr));
305 break;
306 }
307 }
308}
309
311 int32_t allocation_tag_type = 0;
312 switch (GetProcess().GetArchitecture().GetMachine()) {
313 // aarch64_32 deliberately not here because there's no 32 bit MTE
314 case llvm::Triple::aarch64:
315 case llvm::Triple::aarch64_be:
317 break;
318 default:
319 return;
320 }
321
322 auto details =
323 GetRegisterContext().GetMemoryTaggingDetails(allocation_tag_type);
324 if (!details) {
325 llvm::consumeError(details.takeError());
326 return;
327 }
328
329 // We assume that the stop description is currently:
330 // signal SIGSEGV: sync tag check fault (fault address=<addr>)
331 // Remove the closing )
332 m_stop_description.pop_back();
333
334 std::stringstream ss;
335 std::unique_ptr<MemoryTagManager> manager(std::move(details->manager));
336
337 ss << " logical tag=0x" << std::hex << manager->GetLogicalTag(fault_addr);
338
339 std::vector<uint8_t> allocation_tag_data;
340 // The fault address may not be granule aligned. ReadMemoryTags will granule
341 // align any range you give it, potentially making it larger.
342 // To prevent this set len to 1. This always results in a range that is at
343 // most 1 granule in size and includes fault_addr.
344 Status status = GetProcess().ReadMemoryTags(allocation_tag_type, fault_addr,
345 1, allocation_tag_data);
346
347 if (status.Success()) {
348 llvm::Expected<std::vector<lldb::addr_t>> allocation_tag =
349 manager->UnpackTagsData(allocation_tag_data, 1);
350 if (allocation_tag) {
351 ss << " allocation tag=0x" << std::hex << allocation_tag->front() << ")";
352 } else {
353 llvm::consumeError(allocation_tag.takeError());
354 ss << ")";
355 }
356 } else
357 ss << ")";
358
359 m_stop_description += ss.str();
360}
361
363 if (!StateIsStoppedState(m_state, false))
364 return false;
365
366 // If we are stopped by a signal, return the signo.
367 if (signo && m_state == StateType::eStateStopped &&
369 *signo = m_stop_info.signo;
370 }
371
372 // Regardless, we are stopped.
373 return true;
374}
375
378 m_step_workaround.reset();
379
380 // On every stop, clear any cached register data structures
382
383 const StateType new_state = StateType::eStateStopped;
384 MaybeLogStateChange(new_state);
385 m_state = new_state;
386 m_stop_description.clear();
387}
388
390 Log *log = GetLog(LLDBLog::Thread);
391 LLDB_LOGF(log, "NativeThreadLinux::%s()", __FUNCTION__);
392
393 SetStopped();
394
396 m_stop_info.signo = SIGSTOP;
397}
398
406
408 SetStopped();
409
410 lldbassert(wp_index != LLDB_INVALID_INDEX32 && "wp_index cannot be invalid");
411
412 std::ostringstream ostr;
413 ostr << m_reg_context_up->GetWatchpointAddress(wp_index) << " ";
414 ostr << wp_index;
415
416 /*
417 * MIPS: Last 3bits of the watchpoint address are masked by the kernel. For
418 * example:
419 * 'n' is at 0x120010d00 and 'm' is 0x120010d04. When a watchpoint is set at
420 * 'm', then
421 * watch exception is generated even when 'n' is read/written. To handle this
422 * case,
423 * find the base address of the load/store instruction and append it in the
424 * stop-info
425 * packet.
426 */
427 ostr << " " << m_reg_context_up->GetWatchpointHitAddress(wp_index);
428
429 m_stop_description = ostr.str();
430
432 m_stop_info.signo = SIGTRAP;
433}
434
439
444
451
452void NativeThreadLinux::SetStoppedByFork(bool is_vfork, lldb::pid_t child_pid) {
453 SetStopped();
454
455 m_stop_info.reason =
457 m_stop_info.signo = SIGTRAP;
458 m_stop_info.details.fork.child_pid = child_pid;
459 m_stop_info.details.fork.child_tid = child_pid;
460 m_stop_description = std::to_string(child_pid);
461 m_stop_description += " ";
462 m_stop_description += std::to_string(child_pid);
463}
464
471
478
480 llvm::StringRef description) {
481 SetStopped();
482
484 m_stop_info.signo = 0;
485 m_stop_description = description.str();
486}
487
489 const StateType new_state = StateType::eStateExited;
490 MaybeLogStateChange(new_state);
491 m_state = new_state;
492
494}
495
497 Log *log = GetLog(LLDBLog::Thread);
498
499 NativeProcessLinux &process = GetProcess();
500
501 lldb::pid_t pid = process.GetID();
502 lldb::tid_t tid = GetID();
503
504 LLDB_LOGF(log,
505 "NativeThreadLinux::%s requesting thread stop(pid: %" PRIu64
506 ", tid: %" PRIu64 ")",
507 __FUNCTION__, pid, tid);
508
509 Status err;
510 errno = 0;
511 if (::tgkill(pid, tid, SIGSTOP) != 0) {
512 err = Status::FromErrno();
513 LLDB_LOGF(log,
514 "NativeThreadLinux::%s tgkill(%" PRIu64 ", %" PRIu64
515 ", SIGSTOP) failed: %s",
516 __FUNCTION__, pid, tid, err.AsCString());
517 }
518
519 return err;
520}
521
523 Log *log = GetLog(LLDBLog::Thread);
524 // If we're not logging, we're done.
525 if (!log)
526 return;
527
528 // If this is a state change to the same state, we're done.
529 lldb::StateType old_state = m_state;
530 if (new_state == old_state)
531 return;
532
533 LLDB_LOG(log, "pid={0}, tid={1}: changing from state {2} to {3}",
534 m_process.GetID(), GetID(), old_state, new_state);
535}
536
540
542 return static_cast<const NativeProcessLinux &>(m_process);
543}
544
545llvm::Expected<std::unique_ptr<llvm::MemoryBuffer>>
547 auto siginfo_buf =
548 llvm::WritableMemoryBuffer::getNewUninitMemBuffer(sizeof(siginfo_t));
549 Status error =
550 GetProcess().GetSignalInfo(GetID(), siginfo_buf->getBufferStart());
551 if (!error.Success())
552 return error.ToError();
553 return std::move(siginfo_buf);
554}
static llvm::raw_ostream & error(Stream &strm)
std::string GetCrashReasonString(const siginfo_t &info)
#define lldbassert(x)
Definition LLDBAssert.h:16
#define LLDB_LOG(log,...)
The LLDB_LOG* macros defined below are the way to emit log messages.
Definition Log.h:369
#define LLDB_LOGF(log,...)
Definition Log.h:383
#define SEGV_MTESERR
#define tgkill(pid, tid, sig)
#define SIGILL
#define SIGFPE
#define SIGSEGV
#define SIGBUS
void void Printf(const char *format,...) __attribute__((format(printf
Prefer using LLDB_LOGF whenever possible.
Definition Log.cpp:156
virtual const HardwareBreakpointMap & GetHardwareBreakpointMap() const
virtual const NativeWatchpointList::WatchpointMap & GetWatchpointMap() const
NativeThreadProtocol(NativeProcessProtocol &process, lldb::tid_t tid)
An error handling class.
Definition Status.h:118
static Status FromErrno()
Set the current error to errno.
Definition Status.cpp:299
static Status FromErrorString(const char *str)
Definition Status.h:141
const char * AsCString(const char *default_error_str="unknown error") const
Get the error string associated with the current error.
Definition Status.cpp:194
bool Success() const
Test for success condition.
Definition Status.cpp:303
Status GetSignalInfo(lldb::tid_t tid, void *siginfo) const
Writes a siginfo_t structure corresponding to the given thread ID to the memory region pointed to by ...
Status ReadMemoryTags(int32_t type, lldb::addr_t addr, size_t len, std::vector< uint8_t > &tags) override
static Status PtraceWrapper(int req, lldb::pid_t pid, void *addr=nullptr, void *data=nullptr, size_t data_size=0, long *result=nullptr)
}
virtual llvm::Expected< MemoryTaggingDetails > GetMemoryTaggingDetails(int32_t type)
Return architecture specific data needed to use memory tags, if they are supported.
NativeThreadLinux(NativeProcessLinux &process, lldb::tid_t tid)
void AnnotateSyncTagCheckFault(lldb::addr_t fault_addr)
Extend m_stop_description with logical and allocation tag values.
void MaybeLogStateChange(lldb::StateType new_state)
bool GetStopReason(ThreadStopInfo &stop_info, std::string &description) override
llvm::Expected< std::unique_ptr< llvm::MemoryBuffer > > GetSiginfo() const override
void SetStoppedBySignal(uint32_t signo, const siginfo_t *info=nullptr)
Status RemoveWatchpoint(lldb::addr_t addr) override
std::unique_ptr< NativeRegisterContextLinux > m_reg_context_up
Status SingleStep(uint32_t signo)
Single steps the thread.
std::unique_ptr< SingleStepWorkaround > m_step_workaround
Status SetWatchpoint(lldb::addr_t addr, size_t size, uint32_t watch_flags, bool hardware) override
bool IsStopped(int *signo)
Return true if the thread is stopped.
Status RemoveHardwareBreakpoint(lldb::addr_t addr) override
Status SetHardwareBreakpoint(lldb::addr_t addr, size_t size) override
void SetStoppedByProcessorTrace(llvm::StringRef description)
NativeRegisterContextLinux & GetRegisterContext() override
Status Resume(uint32_t signo)
Resumes the thread.
void SetStoppedByFork(bool is_vfork, lldb::pid_t child_pid)
static std::unique_ptr< SingleStepWorkaround > Get(::pid_t tid)
#define LLDB_INVALID_SIGNAL_NUMBER
#define LLDB_INVALID_INDEX32
A class that represents a running process on the host machine.
Log * GetLog(Cat mask)
Retrieve the Log object for the channel associated with the given log enum.
Definition Log.h:332
llvm::ErrorOr< std::unique_ptr< llvm::MemoryBuffer > > getProcFile(::pid_t pid, ::pid_t tid, const llvm::Twine &file)
bool StateIsStoppedState(lldb::StateType state, bool must_exist)
Check if a state represents a state where the process or thread is stopped.
Definition State.cpp:89
const char * StateAsCString(lldb::StateType state)
Converts a StateType to a C string.
Definition State.cpp:14
StateType
Process and Thread States.
@ eStateUnloaded
Process is object is valid, but not currently loaded.
@ eStateConnected
Process is connected to remote debug services, but not launched or attached to anything yet.
@ eStateDetached
Process has been detached and can't be examined.
@ eStateStopped
Process or thread is stopped and can be examined.
@ eStateSuspended
Process or thread is in a suspended state as far as the debugger is concerned while other processes o...
@ eStateRunning
Process or thread is running and can't be examined.
@ eStateLaunching
Process is in the process of launching.
@ eStateAttaching
Process is currently trying to attach.
@ eStateExited
Process has exited and can't be examined.
@ eStateStepping
Process or thread is in the process of stepping and can not be examined.
@ eStateCrashed
Process or thread has crashed and can be examined.
uint64_t pid_t
Definition lldb-types.h:83
uint64_t addr_t
Definition lldb-types.h:80
@ eStopReasonInstrumentation
@ eStopReasonPlanComplete
@ eStopReasonHistoryBoundary
@ eStopReasonBreakpoint
@ eStopReasonExec
Program was re-exec'ed.
@ eStopReasonVForkDone
@ eStopReasonProcessorTrace
@ eStopReasonThreadExiting
@ eStopReasonException
@ eStopReasonWatchpoint
uint64_t tid_t
Definition lldb-types.h:84
struct lldb_private::ThreadStopInfo::@116236113001137253323017204263037302160273237376::@034237007264067231263360140073224264215170222231 exception
lldb::StopReason reason
Definition Debug.h:132
union lldb_private::ThreadStopInfo::@116236113001137253323017204263037302160273237376 details
#define SIGSTOP
#define SIGTRAP