LLDB mainline
NativeThreadFreeBSD.cpp
Go to the documentation of this file.
1//===-- NativeThreadFreeBSD.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
11
13
18#include "lldb/Utility/State.h"
19#include "llvm/Support/Errno.h"
20
21// clang-format off
22#include <sys/types.h>
23#include <sys/ptrace.h>
24#include <sys/sysctl.h>
25#include <sys/user.h>
26// clang-format on
27
28#include <sstream>
29#include <vector>
30
31using namespace lldb;
32using namespace lldb_private;
33using namespace lldb_private::process_freebsd;
34
36 lldb::tid_t tid)
37 : NativeThreadProtocol(process, tid), m_state(StateType::eStateInvalid),
38 m_stop_info(),
39 m_reg_context_up(
40 NativeRegisterContextFreeBSD::CreateHostNativeRegisterContextFreeBSD(
41 process.GetArchitecture(), *this)),
42 m_stop_description() {}
43
46 if (!ret.Success())
47 return ret;
48 ret = NativeProcessFreeBSD::PtraceWrapper(PT_CLEARSTEP, GetID());
49 // we can get EINVAL if the architecture in question does not support
50 // hardware single-stepping -- that's fine, we have nothing to clear
51 // then
52 if (ret.GetError() == EINVAL)
53 ret.Clear();
54 if (ret.Success())
55 SetRunning();
56 return ret;
57}
58
61 if (!ret.Success())
62 return ret;
63 ret = NativeProcessFreeBSD::PtraceWrapper(PT_SETSTEP, GetID());
64 if (ret.Success())
66 return ret;
67}
68
71 if (ret.Success())
72 SetStopped();
73 return ret;
74}
75
77 const siginfo_t *info) {
79 LLDB_LOG(log, "tid = {0} in called with signal {1}", GetID(), signo);
80
81 SetStopped();
82
83 m_stop_info.reason = StopReason::eStopReasonSignal;
84 m_stop_info.signo = signo;
85
86 m_stop_description.clear();
87 if (info) {
88 switch (signo) {
89 case SIGSEGV:
90 case SIGBUS:
91 case SIGFPE:
92 case SIGILL:
94 break;
95 }
96 }
97}
98
100 SetStopped();
101 m_stop_info.reason = StopReason::eStopReasonBreakpoint;
103}
104
106 SetStopped();
107 m_stop_info.reason = StopReason::eStopReasonTrace;
109}
110
112 SetStopped();
113 m_stop_info.reason = StopReason::eStopReasonExec;
115}
116
118 lldbassert(wp_index != LLDB_INVALID_INDEX32 && "wp_index cannot be invalid");
119
120 std::ostringstream ostr;
121 ostr << GetRegisterContext().GetWatchpointAddress(wp_index) << " ";
122 ostr << wp_index;
123
124 ostr << " " << GetRegisterContext().GetWatchpointHitAddress(wp_index);
125
126 SetStopped();
127 m_stop_description = ostr.str();
128 m_stop_info.reason = StopReason::eStopReasonWatchpoint;
130}
131
133 lldb::tid_t child_tid) {
134 SetStopped();
135
136 m_stop_info.reason = StopReason::eStopReasonFork;
138 m_stop_info.details.fork.child_pid = child_pid;
139 m_stop_info.details.fork.child_tid = child_tid;
140}
141
143 lldb::tid_t child_tid) {
144 SetStopped();
145
146 m_stop_info.reason = StopReason::eStopReasonVFork;
148 m_stop_info.details.fork.child_pid = child_pid;
149 m_stop_info.details.fork.child_tid = child_tid;
150}
151
153 SetStopped();
154
155 m_stop_info.reason = StopReason::eStopReasonVForkDone;
157}
158
160 SetStopped();
161
162 m_stop_info.reason = StopReason::eStopReasonNone;
163 m_stop_info.signo = 0;
164}
165
167 const StateType new_state = StateType::eStateStopped;
168 m_state = new_state;
169 m_stop_description.clear();
170}
171
173 m_state = StateType::eStateRunning;
174 m_stop_info.reason = StopReason::eStopReasonNone;
175}
176
178 m_state = StateType::eStateStepping;
179 m_stop_info.reason = StopReason::eStopReasonNone;
180}
181
184
185 std::vector<struct kinfo_proc> kp;
186 int mib[4] = {CTL_KERN, KERN_PROC, KERN_PROC_PID | KERN_PROC_INC_THREAD,
187 static_cast<int>(GetProcess().GetID())};
188
189 while (1) {
190 size_t len = kp.size() * sizeof(struct kinfo_proc);
191 void *ptr = len == 0 ? nullptr : kp.data();
192 int error = ::sysctl(mib, 4, ptr, &len, nullptr, 0);
193 if (ptr == nullptr || (error != 0 && errno == ENOMEM)) {
194 kp.resize(len / sizeof(struct kinfo_proc));
195 continue;
196 }
197 if (error != 0) {
198 len = 0;
199 LLDB_LOG(log, "tid = {0} in state {1} failed to get thread name: {2}",
200 GetID(), m_state, strerror(errno));
201 }
202 kp.resize(len / sizeof(struct kinfo_proc));
203 break;
204 }
205
206 for (auto &procinfo : kp) {
207 if (procinfo.ki_tid == static_cast<lwpid_t>(GetID()))
208 return procinfo.ki_tdname;
209 }
210
211 return "";
212}
213
215
217 std::string &description) {
219 description.clear();
220
221 switch (m_state) {
222 case eStateStopped:
223 case eStateCrashed:
224 case eStateExited:
225 case eStateSuspended:
226 case eStateUnloaded:
227 stop_info = m_stop_info;
228 description = m_stop_description;
229
230 return true;
231
232 case eStateInvalid:
233 case eStateConnected:
234 case eStateAttaching:
235 case eStateLaunching:
236 case eStateRunning:
237 case eStateStepping:
238 case eStateDetached:
239 LLDB_LOG(log, "tid = {0} in state {1} cannot answer stop reason", GetID(),
241 return false;
242 }
243 llvm_unreachable("unhandled StateType!");
244}
245
247 assert(m_reg_context_up);
248 return *m_reg_context_up;
249}
250
252 uint32_t watch_flags, bool hardware) {
253 assert(m_state == eStateStopped);
254 if (!hardware)
255 return Status("not implemented");
257 if (error.Fail())
258 return error;
259 uint32_t wp_index =
260 GetRegisterContext().SetHardwareWatchpoint(addr, size, watch_flags);
261 if (wp_index == LLDB_INVALID_INDEX32)
262 return Status("Setting hardware watchpoint failed.");
263 m_watchpoint_index_map.insert({addr, wp_index});
264 return Status();
265}
266
268 auto wp = m_watchpoint_index_map.find(addr);
269 if (wp == m_watchpoint_index_map.end())
270 return Status();
271 uint32_t wp_index = wp->second;
272 m_watchpoint_index_map.erase(wp);
273 if (GetRegisterContext().ClearHardwareWatchpoint(wp_index))
274 return Status();
275 return Status("Clearing hardware watchpoint failed.");
276}
277
279 size_t size) {
280 assert(m_state == eStateStopped);
282 if (error.Fail())
283 return error;
284
285 uint32_t bp_index = GetRegisterContext().SetHardwareBreakpoint(addr, size);
286
287 if (bp_index == LLDB_INVALID_INDEX32)
288 return Status("Setting hardware breakpoint failed.");
289
290 m_hw_break_index_map.insert({addr, bp_index});
291 return Status();
292}
293
295 auto bp = m_hw_break_index_map.find(addr);
296 if (bp == m_hw_break_index_map.end())
297 return Status();
298
299 uint32_t bp_index = bp->second;
300 if (GetRegisterContext().ClearHardwareBreakpoint(bp_index)) {
301 m_hw_break_index_map.erase(bp);
302 return Status();
303 }
304
305 return Status("Clearing hardware breakpoint failed.");
306}
307
308llvm::Error
311 source.GetRegisterContext());
312 if (!s) {
315 }
316 return s;
317}
318
319llvm::Expected<std::unique_ptr<llvm::MemoryBuffer>>
322
323 struct ptrace_lwpinfo info;
324 const auto siginfo_err = NativeProcessFreeBSD::PtraceWrapper(
325 PT_LWPINFO, GetID(), &info, sizeof(info));
326 if (siginfo_err.Fail()) {
327 LLDB_LOG(log, "PT_LWPINFO failed {0}", siginfo_err);
328 return siginfo_err.ToError();
329 }
330
331 if (info.pl_event != PL_EVENT_SIGNAL)
332 return llvm::createStringError(llvm::inconvertibleErrorCode(),
333 "Thread not signaled");
334 if (!(info.pl_flags & PL_FLAG_SI))
335 return llvm::createStringError(llvm::inconvertibleErrorCode(),
336 "No siginfo for thread");
337
338 return llvm::MemoryBuffer::getMemBufferCopy(
339 llvm::StringRef(reinterpret_cast<const char *>(&info.pl_siginfo),
340 sizeof(info.pl_siginfo)));
341}
static llvm::raw_ostream & error(Stream &strm)
std::string GetCrashReasonString(const siginfo_t &info)
Definition: CrashReason.cpp:13
#define lldbassert(x)
Definition: LLDBAssert.h:15
#define LLDB_LOG(log,...)
The LLDB_LOG* macros defined below are the way to emit log messages.
Definition: Log.h:342
virtual lldb::addr_t GetWatchpointAddress(uint32_t wp_index)
virtual lldb::addr_t GetWatchpointHitAddress(uint32_t wp_index)
virtual uint32_t SetHardwareWatchpoint(lldb::addr_t addr, size_t size, uint32_t watch_flags)
virtual uint32_t SetHardwareBreakpoint(lldb::addr_t addr, size_t size)
NativeProcessProtocol & GetProcess()
An error handling class.
Definition: Status.h:44
void Clear()
Clear the object state.
Definition: Status.cpp:167
ValueType GetError() const
Access the error value.
Definition: Status.cpp:174
bool Success() const
Test for success condition.
Definition: Status.cpp:279
Manages communication with the inferior (debugee) process.
static Status PtraceWrapper(int req, lldb::pid_t pid, void *addr=nullptr, int data=0, int *result=nullptr)
virtual llvm::Error CopyHardwareWatchpointsFrom(NativeRegisterContextFreeBSD &source)=0
Status SetHardwareBreakpoint(lldb::addr_t addr, size_t size) override
llvm::Expected< std::unique_ptr< llvm::MemoryBuffer > > GetSiginfo() const override
NativeRegisterContextFreeBSD & GetRegisterContext() override
llvm::Error CopyWatchpointsFrom(NativeThreadFreeBSD &source)
std::unique_ptr< NativeRegisterContextFreeBSD > m_reg_context_up
void SetStoppedByVFork(lldb::pid_t child_pid, lldb::tid_t child_tid)
NativeThreadFreeBSD(NativeProcessFreeBSD &process, lldb::tid_t tid)
void SetStoppedByFork(lldb::pid_t child_pid, lldb::tid_t child_tid)
Status SetWatchpoint(lldb::addr_t addr, size_t size, uint32_t watch_flags, bool hardware) override
void SetStoppedBySignal(uint32_t signo, const siginfo_t *info=nullptr)
bool GetStopReason(ThreadStopInfo &stop_info, std::string &description) override
Status RemoveHardwareBreakpoint(lldb::addr_t addr) override
#define LLDB_INVALID_INDEX32
Definition: lldb-defines.h:83
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
Log * GetLog(Cat mask)
Retrieve the Log object for the channel associated with the given log enum.
Definition: Log.h:314
const char * StateAsCString(lldb::StateType state)
Converts a StateType to a C string.
Definition: State.cpp:14
Definition: SBAddress.h:15
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:81
uint64_t addr_t
Definition: lldb-types.h:79
uint64_t tid_t
Definition: lldb-types.h:82
lldb::StopReason reason
Definition: Debug.h:132
union lldb_private::ThreadStopInfo::@12 details
struct lldb_private::ThreadStopInfo::@12::@14 fork
#define SIGTRAP