2#include <sys/syscall.h>
5#include <cosmos/error/ApiError.hxx>
6#include <cosmos/formatting.hxx>
7#include <cosmos/private/cosmos.hxx>
8#include <cosmos/proc/ProcessFile.hxx>
17int pidfd_getfd(
int pidfd,
int targetfd,
unsigned int flags)
noexcept(
true) {
18 return ::syscall(SYS_pidfd_getfd, pidfd, targetfd, flags);
21int pidfd_open(pid_t pid,
unsigned int flags)
noexcept(
true) {
22 return ::syscall(SYS_pidfd_open, pid, flags);
25int pidfd_send_signal(
int pidfd,
int sig, siginfo_t *info,
unsigned int flags)
noexcept(
true) {
26 return ::syscall(SYS_pidfd_send_signal, pidfd, sig, info, flags);
32 auto fd = pidfd_open(to_integral(pid), flags.
raw());
35 cosmos_throw (
ApiError(
"pidfd_open()"));
41ProcessFile::~ProcessFile() {
42 const auto orig_fd = m_fd.
raw();
46 }
catch (
const std::exception &e) {
47 noncritical_error(sprintf(
"%s: failed to close fd(%d)", __FUNCTION__, to_integral(orig_fd)), e);
52 auto fd = pidfd_getfd(to_integral(m_fd.
raw()), to_integral(targetfd), 0);
55 cosmos_throw (
ApiError(
"pidfd_getfd()"));
Specialized exception type used when system APIs fail.
A typesafe bit mask representation using class enums.
EnumBaseType raw() const
Returns the raw bitfield integer.
Thin Wrapper around OS file descriptors.
FileNum raw() const
Returns the primitive file descriptor contained in the object.
void setFD(const FileNum fd)
Assigns a new primitive file descriptor to the object.
PidFD fd() const
Returns the raw PidFD file descriptor.
FileDescriptor dupFD(const FileNum targetfd) const
Duplicate a file descriptor from the target process into the current process.
ProcessFile(const ProcessID pid, const OpenFlags flags=OpenFlags{})
Creates a new coupling to the given process ID.
FileNum
Primitive file descriptor.