2#include "cosmos/error/RuntimeError.hxx"
3#include "cosmos/proc/SigInfo.hxx"
4#include "cosmos/proc/Tracee.hxx"
7#include <linux/filter.h>
16 if (instructions.empty()) {
17 const auto num_progs = this->request(ptrace::Request::SECCOMP_GET_FILTER, prog_index);
18 instructions.resize(*num_progs);
21 struct sock_fprog fprog;
22 fprog.len = instructions.size();
23 fprog.filter = instructions.data();
25 const auto num_progs = this->request(ptrace::Request::SECCOMP_GET_FILTER, prog_index, &fprog);
36 if (*num_progs < 0 ||
static_cast<unsigned long>(*num_progs) >= instructions.size()) {
37 cosmos_throw (
RuntimeError(
"seccomp filter array size inconsistency"));
42void Tracee::getThreadArea(
struct user_desc &desc)
const {
45 this->request(ptrace::Request::GET_THREAD_AREA, desc.entry_number, &desc);
48void Tracee::setThreadArea(
const struct user_desc &desc) {
49 this->request(ptrace::Request::SET_THREAD_AREA, desc.entry_number, &desc);
54 const auto obtained = this->request(ptrace::Request::GET_SYSCALL_INFO,
sizeof(*info.raw()), info.raw());
56 if (*obtained < 0 ||
static_cast<unsigned long>(*obtained) >
sizeof(*info.raw())) {
57 cosmos_throw (
RuntimeError(
"excess SYSCALL_INFO data, truncation occurred!"));
62 this->request(ptrace::Request::GETSIGINFO,
nullptr, info.raw());
66 this->request(ptrace::Request::SETSIGINFO,
nullptr, info.raw());
70 const auto raw_settings = settings.raw();
71 std::vector<SigInfo> ret;
72 ret.resize(raw_settings->nr);
74 const auto num_entries = this->request(
75 ptrace::Request::PEEKSIGINFO, raw_settings, ret.data());
77 ret.resize(*num_entries);
Exception type for generic runtime errors.
Signal information struct used when receiving signals.
std::vector< SigInfo > peekSigInfo(const ptrace::PeekSigInfo &settings)
Obtains SigInfo structures pending for the tracee.
void setSigInfo(const SigInfo &info)
Set signal information for the tracee.
void getSigInfo(SigInfo &info) const
Obtain information about the signal that caused the stop.
void getSyscallInfo(ptrace::SyscallInfo &info) const
Returns system call information in the context of the current ptrace stop.
void getSeccompFilter(std::vector< struct sock_filter > &instructions, const unsigned long prog_index) const
Retrieve a classic seccomp BPF program installed in the tracee.
Wrapper around data structure used with ptrace::Request::PEEKSIGINFO.
Wrapper around data structure used with ptrace::Request::GET_SYSCALL_INFO.