LLDB mainline
ProcessDebugger.h
Go to the documentation of this file.
1//===-- ProcessDebugger.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_ProcessDebugger_h_
10#define liblldb_ProcessDebugger_h_
11
13
14#include "lldb/Utility/Status.h"
15#include "lldb/lldb-forward.h"
16#include "lldb/lldb-types.h"
17#include "llvm/ADT/SmallVector.h"
18#include "llvm/Support/Error.h"
19#include "llvm/Support/ErrorExtras.h"
20#include "llvm/Support/Mutex.h"
21
22#include "ForwardDecl.h"
23#include <map>
24#include <set>
25
26namespace lldb_private {
27
28class HostProcess;
29class HostThread;
32
34public:
35 ProcessWindowsData(bool stop_at_entry) : m_stop_at_entry(stop_at_entry) {
36 m_initial_stop_event = ::CreateEvent(nullptr, TRUE, FALSE, nullptr);
37 }
38
40
43 // StopInfoSP m_pending_stop_info;
47 std::map<lldb::tid_t, lldb::ThreadSP> m_new_threads;
48 std::set<lldb::tid_t> m_exited_threads;
49};
50
52
53public:
55
56 virtual void OnExitProcess(uint32_t exit_code);
57 virtual void OnDebuggerConnected(lldb::addr_t image_base);
58 virtual ExceptionResult OnDebugException(bool first_chance,
59 const ExceptionRecord &record);
60 virtual void OnCreateThread(const HostThread &thread);
61 virtual void OnExitThread(lldb::tid_t thread_id, uint32_t exit_code);
62 virtual void OnLoadDll(const ModuleSpec &module_spec,
63 lldb::addr_t module_addr);
64 virtual void OnUnloadDll(lldb::addr_t module_addr);
65 virtual void OnDebugString(lldb::addr_t debug_string_addr, bool is_unicode,
66 uint16_t length_lower_word);
67 virtual void OnDebuggerError(const Status &error, uint32_t type);
68
69protected:
71
73 DebugDelegateSP delegate);
74
75 Status AttachProcess(lldb::pid_t pid, const ProcessAttachInfo &attach_info,
76 DebugDelegateSP delegate);
77
79
80 Status HaltProcess(bool &caused_stop);
81
83 MemoryRegionInfo &range_info);
84
85 Status ReadMemory(lldb::addr_t addr, void *buf, size_t size,
86 size_t &bytes_read);
87
88 /// Read an OUTPUT_DEBUG_STRING_INFO payload from the inferior.
89 /// `length_lower_word` is the OS-supplied low 16 bits of the string length;
90 /// the helper walks 64 KiB chunks (up to 1 MiB) until it finds the NUL
91 /// terminator, then strips it. Shared between ProcessWindows (in-process)
92 /// and NativeProcessWindows (lldb-server).
93 llvm::Error ReadDebugString(lldb::addr_t debug_string_addr, bool is_unicode,
94 uint16_t length_lower_word,
96
97 Status WriteMemory(lldb::addr_t addr, const void *buf, size_t size,
98 size_t &bytes_written);
99
100 Status AllocateMemory(size_t size, uint32_t permissions, lldb::addr_t &addr);
101
103
105
107 HostProcess &process);
108
109protected:
110 llvm::sys::Mutex m_mutex;
111 std::unique_ptr<ProcessWindowsData> m_session_data;
112};
113
114} // namespace lldb_private
115
116#endif // #ifndef liblldb_ProcessDebugger_h_
static llvm::raw_ostream & error(Stream &strm)
ExceptionResult
Definition ForwardDecl.h:16
void * HANDLE
Status WriteMemory(lldb::addr_t addr, const void *buf, size_t size, size_t &bytes_written)
Status DestroyProcess(lldb::StateType process_state)
Status LaunchProcess(ProcessLaunchInfo &launch_info, DebugDelegateSP delegate)
Status WaitForDebuggerConnection(DebuggerThreadSP debugger, HostProcess &process)
Status GetMemoryRegionInfo(lldb::addr_t load_addr, MemoryRegionInfo &range_info)
virtual void OnCreateThread(const HostThread &thread)
virtual void OnDebuggerError(const Status &error, uint32_t type)
virtual void OnExitThread(lldb::tid_t thread_id, uint32_t exit_code)
virtual void OnDebuggerConnected(lldb::addr_t image_base)
std::unique_ptr< ProcessWindowsData > m_session_data
Status AllocateMemory(size_t size, uint32_t permissions, lldb::addr_t &addr)
virtual ExceptionResult OnDebugException(bool first_chance, const ExceptionRecord &record)
Status AttachProcess(lldb::pid_t pid, const ProcessAttachInfo &attach_info, DebugDelegateSP delegate)
virtual void OnUnloadDll(lldb::addr_t module_addr)
lldb::pid_t GetDebuggedProcessId() const
virtual void OnDebugString(lldb::addr_t debug_string_addr, bool is_unicode, uint16_t length_lower_word)
Status ReadMemory(lldb::addr_t addr, void *buf, size_t size, size_t &bytes_read)
virtual void OnExitProcess(uint32_t exit_code)
virtual void OnLoadDll(const ModuleSpec &module_spec, lldb::addr_t module_addr)
llvm::Error ReadDebugString(lldb::addr_t debug_string_addr, bool is_unicode, uint16_t length_lower_word, llvm::SmallVectorImpl< char > &output)
Read an OUTPUT_DEBUG_STRING_INFO payload from the inferior.
Status HaltProcess(bool &caused_stop)
Status DeallocateMemory(lldb::addr_t addr)
ProcessWindowsData(bool stop_at_entry)
std::map< lldb::tid_t, lldb::ThreadSP > m_new_threads
std::set< lldb::tid_t > m_exited_threads
An error handling class.
Definition Status.h:118
A class that represents a running process on the host machine.
std::shared_ptr< DebuggerThread > DebuggerThreadSP
Definition ForwardDecl.h:36
std::shared_ptr< IDebugDelegate > DebugDelegateSP
Definition ForwardDecl.h:35
StateType
Process and Thread States.
uint64_t pid_t
Definition lldb-types.h:83
uint64_t addr_t
Definition lldb-types.h:80
uint64_t tid_t
Definition lldb-types.h:84