LLDB mainline
NativeProcessWindows.h
Go to the documentation of this file.
1//===-- NativeProcessWindows.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_NativeProcessWindows_h_
10#define liblldb_NativeProcessWindows_h_
11
14#include "lldb/lldb-forward.h"
15
16#include "IDebugDelegate.h"
17#include "ProcessDebugger.h"
18
19namespace lldb_private {
20
21class HostProcess;
25class PseudoConsole;
26
27using NativeDebugDelegateSP = std::shared_ptr<NativeDebugDelegate>;
28
29//------------------------------------------------------------------
30// NativeProcessWindows
31//------------------------------------------------------------------
33 public ProcessDebugger {
34
35public:
37 public:
39
40 llvm::Expected<std::unique_ptr<NativeProcessProtocol>>
41 Launch(ProcessLaunchInfo &launch_info,
42 NativeDelegate &native_delegate) override;
43
44 llvm::Expected<std::unique_ptr<NativeProcessProtocol>>
45 Attach(lldb::pid_t pid, NativeDelegate &native_delegate) override;
46
49 }
50 };
51
52 ~NativeProcessWindows() override;
53
54 Status Resume(const ResumeActionList &resume_actions) override;
55
56 Status Halt() override;
57
58 Status Detach() override;
59
60 Status Signal(int signo) override;
61
62 Status Interrupt() override;
63
64 Status Kill() override;
65
66 Status IgnoreSignals(llvm::ArrayRef<int> signals) override;
67
69 MemoryRegionInfo &range_info) override;
70
71 Status ReadMemory(lldb::addr_t addr, void *buf, size_t size,
72 size_t &bytes_read) override;
73
74 Status WriteMemory(lldb::addr_t addr, const void *buf, size_t size,
75 size_t &bytes_written) override;
76
77 llvm::Expected<lldb::addr_t> AllocateMemory(size_t size,
78 uint32_t permissions) override;
79
80 llvm::Error DeallocateMemory(lldb::addr_t addr) override;
81
83
84 bool IsAlive() const override;
85
86 size_t UpdateThreads() override;
87
88 const ArchSpec &GetArchitecture() const override { return m_arch; }
89
90 void SetArchitecture(const ArchSpec &arch_spec) { m_arch = arch_spec; }
91
92 Status SetBreakpoint(lldb::addr_t addr, uint32_t size,
93 bool hardware) override;
94
95 Status RemoveBreakpoint(lldb::addr_t addr, bool hardware = false) override;
96
97 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>>
98 GetAuxvData() const override;
99
100 Status GetLoadedModuleFileSpec(const char *module_path,
101 FileSpec &file_spec) override;
102
103 Status GetFileLoadAddress(const llvm::StringRef &file_name,
104 lldb::addr_t &load_addr) override;
105
106 llvm::Expected<std::vector<LoadedLibraryInfo>> GetLoadedLibraries() override;
107
108 bool HasPendingLibraryEvents() override;
109
113
114 /// Forwards to NativeProcessProtocol's bookkeeping.
120
121 /// Forward bytes from the gdb-remote `I` packet into the inferior's
122 /// ConPTY-backed stdin via `m_stdio_communication.Write` →
123 /// `ConnectionConPTY::Write` → `WriteFile` on the parent-side STDIN
124 /// HANDLE. Returns the number of bytes written (0 if the PTY is
125 /// disconnected or write fails).
126 size_t WriteStdin(const void *buf, size_t len, Status &error) override;
127
128 // ProcessDebugger Overrides
129 void OnExitProcess(uint32_t exit_code) override;
130 void OnDebuggerConnected(lldb::addr_t image_base) override;
131 ExceptionResult OnDebugException(bool first_chance,
132 const ExceptionRecord &record) override;
133 void OnCreateThread(const HostThread &thread) override;
134 void OnExitThread(lldb::tid_t thread_id, uint32_t exit_code) override;
135 DllEventAction OnLoadDll(const ModuleSpec &module_spec,
136 lldb::addr_t module_addr,
137 lldb::tid_t thread_id) override;
139 lldb::tid_t thread_id) override;
140 void OnDebugString(lldb::addr_t debug_string_addr, bool is_unicode,
141 uint16_t length_lower_word) override;
142
143protected:
145
146 llvm::Expected<llvm::ArrayRef<uint8_t>>
147 GetSoftwareBreakpointTrapOpcode(size_t size_hint) override;
148
149 size_t GetSoftwareBreakpointPCOffset() override;
150
152
153 void StopThread(lldb::tid_t thread_id, lldb::StopReason reason,
154 std::string description = "");
155
157 lldb::StopReason reason,
158 std::string description = "");
159
160private:
162
164 llvm::Error &E);
165
166 NativeProcessWindows(lldb::pid_t pid, int terminal_fd,
167 NativeDelegate &delegate, llvm::Error &E);
168
171 ExceptionResult HandleGenericException(bool first_chance,
172 const ExceptionRecord &record);
173
175 std::map<lldb_private::FileSpec, lldb::addr_t> m_loaded_modules;
176
177 /// Set whenever an OS DLL load/unload event has been seen since the last stop
178 /// reply.
180
181 /// Whether we've seen the loader breakpoint that fires once per process at
182 /// launch / attach.
184
185 /// Set when Halt() / Interrupt() schedules a DebugBreakProcess injection.
186 bool m_pending_halt = false;
187
189
190 /// PseudoConsole for the lldb-server stdio-forwarding path.
191 std::shared_ptr<PseudoConsole> m_pty;
192
193 /// Wraps a ConnectionConPTY around the PTY's parent-side STDOUT HANDLE.
195
196 /// Bridge between m_stdio_communication's read thread and
197 /// NativeDelegate::NewProcessOutput.
198 static void STDIOReadThreadBytesReceived(void *baton, const void *src,
199 size_t src_len);
200
201 /// Wire up m_stdio_communication on m_pty's STDOUT HANDLE.
203
204 /// Tear down the read thread and disconnect m_stdio_communication.
205 void StopStdioForwarding();
206};
207
208//------------------------------------------------------------------
209// NativeDebugDelegate
210//------------------------------------------------------------------
212public:
214
215 void OnExitProcess(uint32_t exit_code) override {
216 m_process.OnExitProcess(exit_code);
217 }
218
219 void OnDebuggerConnected(lldb::addr_t image_base) override {
220 m_process.OnDebuggerConnected(image_base);
221 }
222
224 const ExceptionRecord &record) override {
225 return m_process.OnDebugException(first_chance, record);
226 }
227
228 void OnCreateThread(const HostThread &thread) override {
229 m_process.OnCreateThread(thread);
230 }
231
232 void OnExitThread(lldb::tid_t thread_id, uint32_t exit_code) override {
233 m_process.OnExitThread(thread_id, exit_code);
234 }
235
237 lldb::addr_t module_addr,
238 lldb::tid_t thread_id) override {
239 return m_process.OnLoadDll(module_spec, module_addr, thread_id);
240 }
241
243 lldb::tid_t thread_id) override {
244 return m_process.OnUnloadDll(module_addr, thread_id);
245 }
246
247 void OnDebugString(lldb::addr_t debug_string_addr, bool is_unicode,
248 uint16_t length_lower_word) override {
249 m_process.OnDebugString(debug_string_addr, is_unicode, length_lower_word);
250 }
251
252 void OnDebuggerError(const Status &error, uint32_t type) override {
253 return m_process.OnDebuggerError(error, type);
254 }
255
256private:
258};
259
260} // namespace lldb_private
261
262#endif // #ifndef liblldb_NativeProcessWindows_h_
static llvm::raw_ostream & error(Stream &strm)
ExceptionResult
Definition ForwardDecl.h:16
DllEventAction
Definition ForwardDecl.h:29
An architecture specification class.
Definition ArchSpec.h:32
A file utility class.
Definition FileSpec.h:57
DllEventAction OnLoadDll(const lldb_private::ModuleSpec &module_spec, lldb::addr_t module_addr, lldb::tid_t thread_id) override
void OnExitProcess(uint32_t exit_code) override
void OnDebugString(lldb::addr_t debug_string_addr, bool is_unicode, uint16_t length_lower_word) override
void OnExitThread(lldb::tid_t thread_id, uint32_t exit_code) override
void OnDebuggerError(const Status &error, uint32_t type) override
ExceptionResult OnDebugException(bool first_chance, const ExceptionRecord &record) override
void OnCreateThread(const HostThread &thread) override
DllEventAction OnUnloadDll(lldb::addr_t module_addr, lldb::tid_t thread_id) override
NativeDebugDelegate(NativeProcessWindows &process)
void OnDebuggerConnected(lldb::addr_t image_base) override
virtual void SetEnabledExtensions(Extension flags)
Method called in order to propagate the bitmap of protocol extensions supported by the client.
NativeProcessProtocol(lldb::pid_t pid, int terminal_fd, NativeDelegate &delegate)
Extension
Extension flag constants, returned by Manager::GetSupportedExtensions() and passed to SetEnabledExten...
llvm::Expected< std::unique_ptr< NativeProcessProtocol > > Launch(ProcessLaunchInfo &launch_info, NativeDelegate &native_delegate) override
Launch a process for debugging.
llvm::Expected< std::unique_ptr< NativeProcessProtocol > > Attach(lldb::pid_t pid, NativeDelegate &native_delegate) override
Attach to an existing process.
Extension GetSupportedExtensions() const override
Get the bitmask of extensions supported by this process plugin.
Status GetMemoryRegionInfo(lldb::addr_t load_addr, MemoryRegionInfo &range_info) override
ExceptionResult HandleBreakpointException(const ExceptionRecord &record)
llvm::Error DeallocateMemory(lldb::addr_t addr) override
Status Resume(const ResumeActionList &resume_actions) override
void OnCreateThread(const HostThread &thread) override
void OnExitProcess(uint32_t exit_code) override
Status GetLoadedModuleFileSpec(const char *module_path, FileSpec &file_spec) override
void StartStdioForwarding()
Wire up m_stdio_communication on m_pty's STDOUT HANDLE.
static void STDIOReadThreadBytesReceived(void *baton, const void *src, size_t src_len)
Bridge between m_stdio_communication's read thread and NativeDelegate::NewProcessOutput.
llvm::Expected< llvm::ArrayRef< uint8_t > > GetSoftwareBreakpointTrapOpcode(size_t size_hint) override
void OnDebuggerConnected(lldb::addr_t image_base) override
Status ReadMemory(lldb::addr_t addr, void *buf, size_t size, size_t &bytes_read) override
NativeProcessWindows(ProcessLaunchInfo &launch_info, NativeDelegate &delegate, llvm::Error &E)
Status SetBreakpoint(lldb::addr_t addr, uint32_t size, bool hardware) override
void StopStdioForwarding()
Tear down the read thread and disconnect m_stdio_communication.
size_t WriteStdin(const void *buf, size_t len, Status &error) override
Forward bytes from the gdb-remote I packet into the inferior's ConPTY-backed stdin via m_stdio_commun...
void SetEnabledExtensions(Extension flags) override
Forwards to NativeProcessProtocol's bookkeeping.
bool m_pending_halt
Set when Halt() / Interrupt() schedules a DebugBreakProcess injection.
ExceptionResult HandleGenericException(bool first_chance, const ExceptionRecord &record)
void SetArchitecture(const ArchSpec &arch_spec)
ExceptionResult OnDebugException(bool first_chance, const ExceptionRecord &record) override
void OnDebugString(lldb::addr_t debug_string_addr, bool is_unicode, uint16_t length_lower_word) override
size_t GetSoftwareBreakpointPCOffset() override
Return the offset of the PC relative to the software breakpoint that was hit.
std::shared_ptr< PseudoConsole > m_pty
PseudoConsole for the lldb-server stdio-forwarding path.
ThreadedCommunication m_stdio_communication
Wraps a ConnectionConPTY around the PTY's parent-side STDOUT HANDLE.
llvm::ErrorOr< std::unique_ptr< llvm::MemoryBuffer > > GetAuxvData() const override
DllEventAction OnLoadDll(const ModuleSpec &module_spec, lldb::addr_t module_addr, lldb::tid_t thread_id) override
Status GetFileLoadAddress(const llvm::StringRef &file_name, lldb::addr_t &load_addr) override
NativeThreadWindows * GetThreadByID(lldb::tid_t thread_id)
Status WriteMemory(lldb::addr_t addr, const void *buf, size_t size, size_t &bytes_written) override
void OnExitThread(lldb::tid_t thread_id, uint32_t exit_code) override
llvm::Expected< lldb::addr_t > AllocateMemory(size_t size, uint32_t permissions) override
DllEventAction OnUnloadDll(lldb::addr_t module_addr, lldb::tid_t thread_id) override
Status Signal(int signo) override
Sends a process a UNIX signal signal.
Status RemoveBreakpoint(lldb::addr_t addr, bool hardware=false) override
const ArchSpec & GetArchitecture() const override
void SetStopReasonForThread(NativeThreadWindows &thread, lldb::StopReason reason, std::string description="")
Status Interrupt() override
Tells a process to interrupt all operations as if by a Ctrl-C.
void StopThread(lldb::tid_t thread_id, lldb::StopReason reason, std::string description="")
ExceptionResult HandleSingleStepException(const ExceptionRecord &record)
bool m_initial_stop_seen
Whether we've seen the loader breakpoint that fires once per process at launch / attach.
bool m_pending_library_events
Set whenever an OS DLL load/unload event has been seen since the last stop reply.
llvm::Expected< std::vector< LoadedLibraryInfo > > GetLoadedLibraries() override
Return the currently loaded libraries of the target in the qXfer:libraries:read form (generic name + ...
lldb::addr_t GetSharedLibraryInfoAddress() override
Status IgnoreSignals(llvm::ArrayRef< int > signals) override
std::map< lldb_private::FileSpec, lldb::addr_t > m_loaded_modules
An error handling class.
Definition Status.h:118
"lldb/Core/ThreadedCommunication.h" Variation of Communication that supports threaded reads.
A class that represents a running process on the host machine.
std::shared_ptr< NativeDebugDelegate > NativeDebugDelegateSP
uint64_t pid_t
Definition lldb-types.h:83
uint64_t addr_t
Definition lldb-types.h:80
StopReason
Thread stop reasons.
uint64_t tid_t
Definition lldb-types.h:84