libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
ptrace.cxx
1// cosmos
2#include <cosmos/error/ApiError.hxx>
3#include <cosmos/proc/ptrace.hxx>
4#include <cosmos/utils.hxx>
5
6namespace cosmos::ptrace {
7
8std::optional<long> trace(const Request req, const ProcessID pid, void *addr, void *data) {
9 const auto is_peek =
10 req == Request::PEEKDATA ||
11 req == Request::PEEKTEXT ||
12 req == Request::PEEKUSER;
13
14 if (is_peek) {
15 // PEEK requests have difficult error handling, we need to
16 // explicitly reset the errno.
18 }
19
20 const auto ret = ::ptrace(
21 static_cast<__ptrace_request>(to_integral(req)),
22 to_integral(pid), addr, data);
23
24 if (ret == -1) {
25 if (is_peek && !is_errno_set()) {
26 // we actually peeked a -1
27 return ret;
28 }
29
30 cosmos_throw (ApiError("ptrace()"));
31 }
32
33 // only these ptrace requests return meaningful data, otherwise just
34 // zero on success.
35 if (is_peek || req == Request::SECCOMP_GET_FILTER || req == Request::GET_SYSCALL_INFO) {
36 return ret;
37 }
38
39 return std::nullopt;
40}
41
42void traceme() {
43 // all arguments except the request are ignored.
44 // this is not clearly documented but I checked the kernel code to verify.
45 trace(Request::TRACEME, ProcessID{0}, nullptr, nullptr);
46}
47
48} // end ns
void reset_errno()
Resets the currently set errno to indicate no error.
Definition errno.hxx:113
bool is_errno_set()
Checks whether currently an errno is set.
Definition errno.hxx:117