libcosmos
Linux C++ System Programming Library
|
#include <optional>
#include <stdint.h>
#include <elf.h>
#include <linux/audit.h>
#include <sys/ptrace.h>
#include <linux/ptrace.h>
#include <cosmos/BitMask.hxx>
#include <cosmos/dso_export.h>
#include <cosmos/memory.hxx>
#include <cosmos/proc/types.hxx>
Go to the source code of this file.
Classes | |
struct | cosmos::ptrace::SyscallInfo |
Wrapper around data structure used with ptrace::Request::GET_SYSCALL_INFO. More... | |
class | cosmos::ptrace::PeekSigInfo |
Wrapper around data structure used with ptrace::Request::PEEKSIGINFO. More... | |
Typedefs | |
using | cosmos::ptrace::Opts = BitMask<Opt> |
Enumerations | |
enum class | cosmos::ptrace::Opt : intptr_t { EXITKILL = PTRACE_O_EXITKILL , TRACECLONE = PTRACE_O_TRACECLONE , TRACEEXEC = PTRACE_O_TRACEEXEC , TRACEEXIT = PTRACE_O_TRACEEXIT , TRACEFORK = PTRACE_O_TRACEFORK , TRACEVFORK = PTRACE_O_TRACEVFORK , TRACEVFORKDONE = PTRACE_O_TRACEVFORKDONE , TRACESYSGOOD = PTRACE_O_TRACESYSGOOD , TRACESECCOMP = PTRACE_O_TRACESECCOMP , SUSPENDSECCOMP = PTRACE_O_SUSPEND_SECCOMP } |
Different options which can be set for a tracee. More... | |
enum class | cosmos::ptrace::Event { VFORK = PTRACE_EVENT_VFORK , FORK = PTRACE_EVENT_FORK , CLONE = PTRACE_EVENT_CLONE , VFORK_DONE = PTRACE_EVENT_VFORK_DONE , EXEC = PTRACE_EVENT_EXEC , EXIT = PTRACE_EVENT_EXIT , STOP = PTRACE_EVENT_STOP , SECCOMP = PTRACE_EVENT_SECCOMP } |
Different events that can occur in a tracee leading to ptrace-event-stop. More... | |
enum class | cosmos::ptrace::RegisterType { GENERAL_PURPOSE = NT_PRSTATUS , FLOATING_POINT = NT_FPREGSET } |
Different types of register sets that can be read from a tracee via Request::GETREGSET. More... | |
enum class | cosmos::ptrace::Request { TRACEME = PTRACE_TRACEME , PEEKDATA = PTRACE_PEEKDATA , PEEKTEXT = PTRACE_PEEKTEXT , PEEKUSER = PTRACE_PEEKUSER , POKEDATA = PTRACE_POKEDATA , POKEUSER = PTRACE_POKEUSER , GETREGS = PTRACE_GETREGS , GETFPREGS = PTRACE_GETFPREGS , GETREGSET = PTRACE_GETREGSET , SETREGS = PTRACE_SETREGS , SETFPREGS = PTRACE_SETFPREGS , SETREGSET = PTRACE_SETREGSET , GETSIGINFO = PTRACE_GETSIGINFO , SETSIGINFO = PTRACE_SETSIGINFO , PEEKSIGINFO = PTRACE_PEEKSIGINFO , GETSIGMASK = PTRACE_GETSIGMASK , SETSIGMASK = PTRACE_SETSIGMASK , SETOPTIONS = PTRACE_SETOPTIONS , GETEVENTMSG = PTRACE_GETEVENTMSG , CONT = PTRACE_CONT , SYSCALL = PTRACE_SYSCALL , SINGLESTEP = PTRACE_SINGLESTEP , LISTEN = PTRACE_LISTEN , KILL = PTRACE_KILL , INTERRUPT = PTRACE_INTERRUPT , ATTACH = PTRACE_ATTACH , SEIZE = PTRACE_SEIZE , SECCOMP_GET_FILTER = PTRACE_SECCOMP_GET_FILTER , DETACH = PTRACE_DETACH , GET_THREAD_AREA = PTRACE_GET_THREAD_AREA , GET_SYSCALL_INFO = PTRACE_GET_SYSCALL_INFO } |
Basic requests that can be passed to the ptrace() system call. More... | |
enum class | cosmos::ptrace::Arch : uint32_t { X86_64 = AUDIT_ARCH_X86_64 , I386 = AUDIT_ARCH_I386 } |
System call ABI architecture. More... | |
Functions | |
std::optional< long > | cosmos::ptrace::trace (const ptrace::Request req, const ProcessID pid, void *addr=nullptr, void *data=nullptr) |
Perform a tracer request. | |
void | cosmos::ptrace::traceme () |
Inform the kernel that this process is to be traced by its parent. | |
Wrappers around data structures for the ptrace()
system call.
ptrace()
is a complex ioctl()
like system call using varargs. To improve readability and type safety, every ptrace command is made available through an individual wrapper found in the Tracee class.
Definition in file ptrace.hxx.
using cosmos::ptrace::Opts = BitMask<Opt> |
Definition at line 55 of file ptrace.hxx.
|
strong |
System call ABI architecture.
This is currently shortened just for x86 ABIs until we add support for more exotics archs.
Definition at line 174 of file ptrace.hxx.
|
strong |
Different events that can occur in a tracee leading to ptrace-event-stop.
Definition at line 58 of file ptrace.hxx.
|
strong |
Different options which can be set for a tracee.
Definition at line 32 of file ptrace.hxx.
|
strong |
Different types of register sets that can be read from a tracee via Request::GETREGSET.
Definition at line 78 of file ptrace.hxx.
|
strong |
Basic requests that can be passed to the ptrace() system call.
enum __ptrace_request
type, thus there is no defined underlying type and we keep the compiler's default. Definition at line 89 of file ptrace.hxx.
std::optional< long > COSMOS_API cosmos::ptrace::trace | ( | const ptrace::Request | req, |
const ProcessID | pid, | ||
void * | addr = nullptr, | ||
void * | data = nullptr ) |
Perform a tracer request.
This is only a thin wrapper around the actual ptrace() system call. For a more convenient and safe interface use the Tracee class which splits this call into its individual sub-operations.
On error conditions this throws an ApiError
. Depending on req
a long value is returned (for PEEK operations, SECCOMP_GET_FILTER and GET_SYSCALL_INFO), otherwise std::nullopt.
The necessity and meaning of addr
and data
are also depending on the actual req
.
Definition at line 8 of file ptrace.cxx.
void COSMOS_API cosmos::ptrace::traceme | ( | ) |
Inform the kernel that this process is to be traced by its parent.
A typical pattern for tracing a child process is to:
Since this does not rely on ptrace::Request::SEIZE to attach to the tracee, certain features of the ptrace API won't be available when using the TRACEME approach.
Definition at line 42 of file ptrace.cxx.