libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
ProcessFile.cxx
1// Linux
2#include <sys/syscall.h>
3
4// libcosmos
5#include <cosmos/error/ApiError.hxx>
6#include <cosmos/formatting.hxx>
7#include <cosmos/private/cosmos.hxx>
8#include <cosmos/proc/ProcessFile.hxx>
9
10/*
11 * sys/pidfd.h contains the declarations for these system calls by now, but
12 * glibc still doesn't implement them, so we get linker errors.
13 *
14 * Implement the wrappers ourselves then here.
15 */
16
17int pidfd_getfd(int pidfd, int targetfd, unsigned int flags) noexcept(true) {
18 return ::syscall(SYS_pidfd_getfd, pidfd, targetfd, flags);
19}
20
21int pidfd_open(pid_t pid, unsigned int flags) noexcept(true) {
22 return ::syscall(SYS_pidfd_open, pid, flags);
23}
24
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);
27}
28
29namespace cosmos {
30
32 auto fd = pidfd_open(to_integral(pid), flags.raw());
33
34 if (fd == -1) {
35 cosmos_throw (ApiError("pidfd_open()"));
36 }
37
38 m_fd.setFD(FileNum{fd});
39}
40
41ProcessFile::~ProcessFile() {
42 const auto orig_fd = m_fd.raw();
43
44 try {
45 close();
46 } catch (const std::exception &e) {
47 noncritical_error(sprintf("%s: failed to close fd(%d)", __FUNCTION__, to_integral(orig_fd)), e);
48 }
49}
50
52 auto fd = pidfd_getfd(to_integral(m_fd.raw()), to_integral(targetfd), 0);
53
54 if (fd == -1) {
55 cosmos_throw (ApiError("pidfd_getfd()"));
56 }
57
58 return FileDescriptor{FileNum{fd}};
59}
60
61} // end ns
Specialized exception type used when system APIs fail.
Definition ApiError.hxx:18
A typesafe bit mask representation using class enums.
Definition BitMask.hxx:19
EnumBaseType raw() const
Returns the raw bitfield integer.
Definition BitMask.hxx:56
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.
Definition types.hxx:32
ProcessID
Definition types.hxx:25