
This patch adds support for the _M and _m gdb-remote packets, which (de)allocate memory in the inferior. This works by "injecting" a m(un)map syscall into the inferior. This consists of: - finding an executable page of memory - writing the syscall opcode to it - setting up registers according to the os syscall convention - single stepping over the syscall The advantage of this approach over calling the mmap function is that this works even in case the mmap function is buggy or unavailable. The disadvantage is it is more platform-dependent, which is why this patch only works on X86 (_32 and _64) right now. Adding support for other linux architectures should be easy and consist of defining the appropriate syscall constants. Adding support for other OSes depends on the its ability to do a similar trick. Differential Revision: https://reviews.llvm.org/D89124
185 lines
5.9 KiB
C++
185 lines
5.9 KiB
C++
//===-- NativeProcessWindows.h ----------------------------------*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef liblldb_NativeProcessWindows_h_
|
|
#define liblldb_NativeProcessWindows_h_
|
|
|
|
#include "lldb/Host/common/NativeProcessProtocol.h"
|
|
#include "lldb/lldb-forward.h"
|
|
|
|
#include "IDebugDelegate.h"
|
|
#include "ProcessDebugger.h"
|
|
|
|
namespace lldb_private {
|
|
|
|
class HostProcess;
|
|
class NativeProcessWindows;
|
|
class NativeThreadWindows;
|
|
class NativeDebugDelegate;
|
|
|
|
typedef std::shared_ptr<NativeDebugDelegate> NativeDebugDelegateSP;
|
|
|
|
//------------------------------------------------------------------
|
|
// NativeProcessWindows
|
|
//------------------------------------------------------------------
|
|
class NativeProcessWindows : public NativeProcessProtocol,
|
|
public ProcessDebugger {
|
|
|
|
public:
|
|
class Factory : public NativeProcessProtocol::Factory {
|
|
public:
|
|
llvm::Expected<std::unique_ptr<NativeProcessProtocol>>
|
|
Launch(ProcessLaunchInfo &launch_info, NativeDelegate &native_delegate,
|
|
MainLoop &mainloop) const override;
|
|
|
|
llvm::Expected<std::unique_ptr<NativeProcessProtocol>>
|
|
Attach(lldb::pid_t pid, NativeDelegate &native_delegate,
|
|
MainLoop &mainloop) const override;
|
|
};
|
|
|
|
Status Resume(const ResumeActionList &resume_actions) override;
|
|
|
|
Status Halt() override;
|
|
|
|
Status Detach() override;
|
|
|
|
Status Signal(int signo) override;
|
|
|
|
Status Interrupt() override;
|
|
|
|
Status Kill() override;
|
|
|
|
Status IgnoreSignals(llvm::ArrayRef<int> signals) override;
|
|
|
|
Status GetMemoryRegionInfo(lldb::addr_t load_addr,
|
|
MemoryRegionInfo &range_info) override;
|
|
|
|
Status ReadMemory(lldb::addr_t addr, void *buf, size_t size,
|
|
size_t &bytes_read) override;
|
|
|
|
Status WriteMemory(lldb::addr_t addr, const void *buf, size_t size,
|
|
size_t &bytes_written) override;
|
|
|
|
llvm::Expected<lldb::addr_t> AllocateMemory(size_t size,
|
|
uint32_t permissions) override;
|
|
|
|
llvm::Error DeallocateMemory(lldb::addr_t addr) override;
|
|
|
|
lldb::addr_t GetSharedLibraryInfoAddress() override;
|
|
|
|
bool IsAlive() const override;
|
|
|
|
size_t UpdateThreads() override;
|
|
|
|
const ArchSpec &GetArchitecture() const override { return m_arch; }
|
|
|
|
void SetArchitecture(const ArchSpec &arch_spec) { m_arch = arch_spec; }
|
|
|
|
Status SetBreakpoint(lldb::addr_t addr, uint32_t size,
|
|
bool hardware) override;
|
|
|
|
Status RemoveBreakpoint(lldb::addr_t addr, bool hardware = false) override;
|
|
|
|
llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>>
|
|
GetAuxvData() const override;
|
|
|
|
Status GetLoadedModuleFileSpec(const char *module_path,
|
|
FileSpec &file_spec) override;
|
|
|
|
Status GetFileLoadAddress(const llvm::StringRef &file_name,
|
|
lldb::addr_t &load_addr) override;
|
|
|
|
// ProcessDebugger Overrides
|
|
void OnExitProcess(uint32_t exit_code) override;
|
|
void OnDebuggerConnected(lldb::addr_t image_base) override;
|
|
ExceptionResult OnDebugException(bool first_chance,
|
|
const ExceptionRecord &record) override;
|
|
void OnCreateThread(const HostThread &thread) override;
|
|
void OnExitThread(lldb::tid_t thread_id, uint32_t exit_code) override;
|
|
void OnLoadDll(const ModuleSpec &module_spec,
|
|
lldb::addr_t module_addr) override;
|
|
void OnUnloadDll(lldb::addr_t module_addr) override;
|
|
|
|
protected:
|
|
NativeThreadWindows *GetThreadByID(lldb::tid_t thread_id);
|
|
|
|
bool FindSoftwareBreakpoint(lldb::addr_t addr);
|
|
|
|
void StopThread(lldb::tid_t thread_id, lldb::StopReason reason,
|
|
std::string description = "");
|
|
|
|
void SetStopReasonForThread(NativeThreadWindows &thread,
|
|
lldb::StopReason reason,
|
|
std::string description = "");
|
|
|
|
private:
|
|
ArchSpec m_arch;
|
|
|
|
NativeProcessWindows(ProcessLaunchInfo &launch_info, NativeDelegate &delegate,
|
|
llvm::Error &E);
|
|
|
|
NativeProcessWindows(lldb::pid_t pid, int terminal_fd,
|
|
NativeDelegate &delegate, llvm::Error &E);
|
|
|
|
Status CacheLoadedModules();
|
|
std::map<lldb_private::FileSpec, lldb::addr_t> m_loaded_modules;
|
|
};
|
|
|
|
//------------------------------------------------------------------
|
|
// NativeDebugDelegate
|
|
//------------------------------------------------------------------
|
|
class NativeDebugDelegate : public IDebugDelegate {
|
|
public:
|
|
NativeDebugDelegate(NativeProcessWindows &process) : m_process(process) {}
|
|
|
|
void OnExitProcess(uint32_t exit_code) override {
|
|
m_process.OnExitProcess(exit_code);
|
|
}
|
|
|
|
void OnDebuggerConnected(lldb::addr_t image_base) override {
|
|
m_process.OnDebuggerConnected(image_base);
|
|
}
|
|
|
|
ExceptionResult OnDebugException(bool first_chance,
|
|
const ExceptionRecord &record) override {
|
|
return m_process.OnDebugException(first_chance, record);
|
|
}
|
|
|
|
void OnCreateThread(const HostThread &thread) override {
|
|
m_process.OnCreateThread(thread);
|
|
}
|
|
|
|
void OnExitThread(lldb::tid_t thread_id, uint32_t exit_code) override {
|
|
m_process.OnExitThread(thread_id, exit_code);
|
|
}
|
|
|
|
void OnLoadDll(const lldb_private::ModuleSpec &module_spec,
|
|
lldb::addr_t module_addr) override {
|
|
m_process.OnLoadDll(module_spec, module_addr);
|
|
}
|
|
|
|
void OnUnloadDll(lldb::addr_t module_addr) override {
|
|
m_process.OnUnloadDll(module_addr);
|
|
}
|
|
|
|
void OnDebugString(const std::string &string) override {
|
|
m_process.OnDebugString(string);
|
|
}
|
|
|
|
void OnDebuggerError(const Status &error, uint32_t type) override {
|
|
return m_process.OnDebuggerError(error, type);
|
|
}
|
|
|
|
private:
|
|
NativeProcessWindows &m_process;
|
|
};
|
|
|
|
} // namespace lldb_private
|
|
|
|
#endif // #ifndef liblldb_NativeProcessWindows_h_
|