LLDB mainline
NativeProcessLinux.h
Go to the documentation of this file.
1//===-- NativeProcessLinux.h ---------------------------------- -*- C++ -*-===//
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#ifndef liblldb_NativeProcessLinux_H_
10#define liblldb_NativeProcessLinux_H_
11
16#include "lldb/Host/Debug.h"
23#include "lldb/lldb-types.h"
24#include "llvm/ADT/SmallPtrSet.h"
25
26#include <csignal>
27#include <unordered_set>
28
29namespace lldb_private {
30class Status;
31class Scalar;
32
33namespace process_linux {
34/// \class NativeProcessLinux
35/// Manages communication with the inferior (debugee) process.
36///
37/// Upon construction, this class prepares and launches an inferior process
38/// for debugging.
39///
40/// Changes in the inferior process state are broadcasted.
43public:
45 public:
46 Manager(MainLoop &mainloop);
47
48 llvm::Expected<std::unique_ptr<NativeProcessProtocol>>
49 Launch(ProcessLaunchInfo &launch_info,
50 NativeDelegate &native_delegate) override;
51
52 llvm::Expected<std::unique_ptr<NativeProcessProtocol>>
53 Attach(lldb::pid_t pid, NativeDelegate &native_delegate) override;
54
55 Extension GetSupportedExtensions() const override;
56
58 m_processes.insert(&process);
59 }
60
62 m_processes.erase(&process);
63 }
64
65 // Collect an event for the given tid, waiting for it if necessary.
66 void CollectThread(::pid_t tid);
67
68 private:
70
71 llvm::SmallPtrSet<NativeProcessLinux *, 2> m_processes;
72
73 // Threads (events) which haven't been claimed by any process.
74 llvm::DenseSet<::pid_t> m_unowned_threads;
75
76 void SigchldHandler();
77 };
78
79 // NativeProcessProtocol Interface
80
81 ~NativeProcessLinux() override { m_manager.RemoveProcess(*this); }
82
83 Status Resume(const ResumeActionList &resume_actions) override;
84
85 Status Halt() override;
86
87 Status Detach() override;
88
89 Status Signal(int signo) override;
90
91 Status Interrupt() override;
92
93 Status Kill() override;
94
96 MemoryRegionInfo &range_info) override;
97
98 Status ReadMemory(const ProcessAddress &addr, void *buf, size_t size,
99 size_t &bytes_read) override;
100
101 Status DoWriteMemory(lldb::addr_t addr, const void *buf, size_t size,
102 size_t &bytes_written) override;
103
104 llvm::Expected<lldb::addr_t> AllocateMemory(size_t size,
105 uint32_t permissions) override;
106
107 llvm::Error DeallocateMemory(lldb::addr_t addr) override;
108
109 Status ReadMemoryTags(int32_t type, lldb::addr_t addr, size_t len,
110 std::vector<uint8_t> &tags) override;
111
112 Status WriteMemoryTags(int32_t type, lldb::addr_t addr, size_t len,
113 const std::vector<uint8_t> &tags) override;
114
115 size_t UpdateThreads() override;
116
117 const ArchSpec &GetArchitecture() const override { return m_arch; }
118
119 Status SetBreakpoint(lldb::addr_t addr, uint32_t size,
120 bool hardware) override;
121
122 Status RemoveBreakpoint(lldb::addr_t addr, bool hardware = false) override;
123
124 Status GetLoadedModuleFileSpec(const char *module_path,
125 FileSpec &file_spec) override;
126
127 Status GetFileLoadAddress(const llvm::StringRef &file_name,
128 lldb::addr_t &load_addr) override;
129
132
133 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>>
134 GetAuxvData() const override {
135 return getProcFile(GetID(), "auxv");
136 }
137
138 /// Tracing
139 /// These methods implement the jLLDBTrace packets
140 /// \{
141 llvm::Error TraceStart(llvm::StringRef json_request,
142 llvm::StringRef type) override;
143
144 llvm::Error TraceStop(const TraceStopRequest &request) override;
145
146 llvm::Expected<llvm::json::Value>
147 TraceGetState(llvm::StringRef type) override;
148
149 llvm::Expected<std::vector<uint8_t>>
150 TraceGetBinaryData(const TraceGetBinaryDataRequest &request) override;
151
152 llvm::Expected<TraceSupportedResponse> TraceSupported() override;
153 /// }
154
155 // Interface used by NativeRegisterContext-derived classes.
156 static Status PtraceWrapper(int req, lldb::pid_t pid, void *addr = nullptr,
157 void *data = nullptr, size_t data_size = 0,
158 long *result = nullptr);
159
161
162 /// Writes a siginfo_t structure corresponding to the given thread ID to the
163 /// memory region pointed to by \p siginfo.
164 Status GetSignalInfo(lldb::tid_t tid, void *siginfo) const;
165
166protected:
167 llvm::Expected<llvm::ArrayRef<uint8_t>>
168 GetSoftwareBreakpointTrapOpcode(size_t size_hint) override;
169
170 llvm::Expected<uint64_t> Syscall(llvm::ArrayRef<uint64_t> args);
171
172private:
175
177
179
180 /// Inferior memory (allocated by us) and its size.
181 llvm::DenseMap<lldb::addr_t, lldb::addr_t> m_allocated_memory;
182
183 // Private Instance Methods
184 NativeProcessLinux(::pid_t pid, int terminal_fd, NativeDelegate &delegate,
185 const ArchSpec &arch, Manager &manager,
186 llvm::ArrayRef<::pid_t> tids);
187
188 // Returns a list of process threads that we have attached to.
189 static llvm::Expected<std::vector<::pid_t>> Attach(::pid_t pid);
190
192
194
195 void MonitorCallback(NativeThreadLinux &thread, WaitStatus status);
196
197 void MonitorSIGTRAP(const siginfo_t &info, NativeThreadLinux &thread);
198
199 void MonitorTrace(NativeThreadLinux &thread);
200
202
203 void MonitorWatchpoint(NativeThreadLinux &thread, uint32_t wp_index);
204
205 void MonitorSignal(const siginfo_t &info, NativeThreadLinux &thread);
206
207 bool HasThreadNoLock(lldb::tid_t thread_id);
208
210
211 /// Create a new thread.
212 ///
213 /// If process tracing is enabled and the thread can't be traced, then the
214 /// thread is left stopped with a \a eStopReasonProcessorTrace status, and
215 /// then the process is stopped.
216 ///
217 /// \param[in] resume
218 /// If a tracing error didn't happen, then resume the thread after
219 /// creation if \b true, or leave it stopped with SIGSTOP if \b false.
220 NativeThreadLinux &AddThread(lldb::tid_t thread_id, bool resume);
221
222 /// Start tracing a new thread if process tracing is enabled.
223 ///
224 /// Trace mechanisms should modify this method to provide automatic tracing
225 /// for new threads.
227
228 /// Stop tracing threads upon a destroy event.
229 ///
230 /// Trace mechanisms should modify this method to provide automatic trace
231 /// stopping for threads being destroyed.
233
234 void NotifyTracersProcessWillResume() override;
235
236 void NotifyTracersProcessDidStop() override;
237
238 /// Writes the raw event message code (vis-a-vis PTRACE_GETEVENTMSG)
239 /// corresponding to the given thread ID to the memory pointed to by @p
240 /// message.
241 Status GetEventMessage(lldb::tid_t tid, unsigned long *message);
242
244
246
247 // This method is requests a stop on all threads which are still running. It
248 // sets up a
249 // deferred delegate notification, which will fire once threads report as
250 // stopped. The
251 // triggerring_tid will be set as the current thread (main stop reason).
252 void StopRunningThreads(lldb::tid_t triggering_tid);
253
254 // Notify the delegate if all threads have stopped.
256
257 // Resume the given thread, optionally passing it the given signal. The type
258 // of resume
259 // operation (continue, single-step) depends on the state parameter.
261 int signo);
262
264
266
268
269 /// Manages Intel PT process and thread traces.
271
272 // Handle a clone()-like event.
273 bool MonitorClone(NativeThreadLinux &parent, lldb::pid_t child_pid,
274 int event);
275};
276
277} // namespace process_linux
278} // namespace lldb_private
279
280#endif // #ifndef liblldb_NativeProcessLinux_H_
An architecture specification class.
Definition ArchSpec.h:32
A file utility class.
Definition FileSpec.h:56
std::unique_ptr< SignalHandle > SignalHandleUP
Abstract class that extends NativeProcessProtocol with ELF specific logic.
Extension
Extension flag constants, returned by Manager::GetSupportedExtensions() and passed to SetEnabledExten...
An address in a process, qualified by an address space.
An error handling class.
Definition Status.h:118
Main class that manages intel-pt process and thread tracing.
llvm::Expected< std::unique_ptr< NativeProcessProtocol > > Attach(lldb::pid_t pid, NativeDelegate &native_delegate) override
Attach to an existing process.
llvm::SmallPtrSet< NativeProcessLinux *, 2 > m_processes
Extension GetSupportedExtensions() const override
Get the bitmask of extensions supported by this process plugin.
llvm::Expected< std::unique_ptr< NativeProcessProtocol > > Launch(ProcessLaunchInfo &launch_info, NativeDelegate &native_delegate) override
Launch a process for debugging.
llvm::Expected< lldb::addr_t > AllocateMemory(size_t size, uint32_t permissions) override
llvm::Expected< std::vector< uint8_t > > TraceGetBinaryData(const TraceGetBinaryDataRequest &request) override
Get binary data given a trace technology and a data identifier.
NativeThreadLinux * GetThreadByID(lldb::tid_t id)
llvm::Error DeallocateMemory(lldb::addr_t addr) override
Status GetFileLoadAddress(const llvm::StringRef &file_name, lldb::addr_t &load_addr) override
Status NotifyTracersOfNewThread(lldb::tid_t tid)
Start tracing a new thread if process tracing is enabled.
const ArchSpec & GetArchitecture() const override
Status GetEventMessage(lldb::tid_t tid, unsigned long *message)
Writes the raw event message code (vis-a-vis PTRACE_GETEVENTMSG) corresponding to the given thread ID...
Status DoWriteMemory(lldb::addr_t addr, const void *buf, size_t size, size_t &bytes_written) override
IntelPTCollector m_intel_pt_collector
Manages Intel PT process and thread traces.
llvm::Error TraceStart(llvm::StringRef json_request, llvm::StringRef type) override
Tracing These methods implement the jLLDBTrace packets.
bool MonitorClone(NativeThreadLinux &parent, lldb::pid_t child_pid, int event)
llvm::DenseMap< lldb::addr_t, lldb::addr_t > m_allocated_memory
Inferior memory (allocated by us) and its size.
Status Interrupt() override
Tells a process to interrupt all operations as if by a Ctrl-C.
llvm::Expected< llvm::ArrayRef< uint8_t > > GetSoftwareBreakpointTrapOpcode(size_t size_hint) override
void NotifyTracersProcessWillResume() override
Notify tracers that the target process will resume.
void MonitorSIGTRAP(const siginfo_t &info, NativeThreadLinux &thread)
Status SetBreakpoint(lldb::addr_t addr, uint32_t size, bool hardware) override
llvm::ErrorOr< std::unique_ptr< llvm::MemoryBuffer > > GetAuxvData() const override
llvm::Expected< TraceSupportedResponse > TraceSupported() override
Get the processor tracing type supported for this process.
void MonitorWatchpoint(NativeThreadLinux &thread, uint32_t wp_index)
bool TryHandleWaitStatus(lldb::pid_t pid, WaitStatus status)
llvm::Error TraceStop(const TraceStopRequest &request) override
Stop tracing a live process or its threads.
Status Resume(const ResumeActionList &resume_actions) override
llvm::Expected< llvm::json::Value > TraceGetState(llvm::StringRef type) override
Get the current tracing state of the process and its threads.
Status RemoveBreakpoint(lldb::addr_t addr, bool hardware=false) override
NativeProcessLinux(::pid_t pid, int terminal_fd, NativeDelegate &delegate, const ArchSpec &arch, Manager &manager, llvm::ArrayRef<::pid_t > tids)
Status ReadMemory(const ProcessAddress &addr, void *buf, size_t size, size_t &bytes_read) override
Status NotifyTracersOfThreadDestroyed(lldb::tid_t tid)
Stop tracing threads upon a destroy event.
void NotifyTracersProcessDidStop() override
Notify tracers that the target process just stopped.
static Status SetDefaultPtraceOpts(const lldb::pid_t)
void MonitorSignal(const siginfo_t &info, NativeThreadLinux &thread)
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 WriteMemoryTags(int32_t type, lldb::addr_t addr, size_t len, const std::vector< uint8_t > &tags) override
Status ReadMemoryTags(int32_t type, lldb::addr_t addr, size_t len, std::vector< uint8_t > &tags) override
Status ResumeThread(NativeThreadLinux &thread, lldb::StateType state, int signo)
Status GetMemoryRegionInfo(lldb::addr_t load_addr, MemoryRegionInfo &range_info) override
NativeThreadLinux & AddThread(lldb::tid_t thread_id, bool resume)
Create a new thread.
static llvm::Expected< std::vector<::pid_t > > Attach(::pid_t pid)
llvm::Expected< uint64_t > Syscall(llvm::ArrayRef< uint64_t > args)
Status Signal(int signo) override
Sends a process a UNIX signal signal.
Status GetLoadedModuleFileSpec(const char *module_path, FileSpec &file_spec) override
void MonitorCallback(NativeThreadLinux &thread, WaitStatus status)
static Status PtraceWrapper(int req, lldb::pid_t pid, void *addr=nullptr, void *data=nullptr, size_t data_size=0, long *result=nullptr)
}
#define LLDB_INVALID_THREAD_ID
A class that represents a running process on the host machine.
llvm::ErrorOr< std::unique_ptr< llvm::MemoryBuffer > > getProcFile(::pid_t pid, ::pid_t tid, const llvm::Twine &file)
MainLoopPosix MainLoop
Definition MainLoop.h:20
StateType
Process and Thread States.
uint64_t pid_t
Definition lldb-types.h:84
uint64_t addr_t
Definition lldb-types.h:80
uint64_t tid_t
Definition lldb-types.h:85
jLLDBTraceGetBinaryData gdb-remote packet
jLLDBTraceStop gdb-remote packet