4#include <sys/signalfd.h>
7#include <cosmos/fs/FileDescriptor.hxx>
8#include <cosmos/proc/SigInfo.hxx>
9#include <cosmos/proc/SigSet.hxx>
10#include <cosmos/proc/types.hxx>
55 explicit SignalFD(
const std::initializer_list<Signal> siglist) {
73 void create(
const SigSet &mask);
75 void close() { m_fd.close(); }
77 auto valid()
const {
return m_fd.valid(); }
84 void adjustMask(
const SigSet &mask);
95 void readEvent(Info &info);
98 auto fd() {
return m_fd; }
146 const signalfd_siginfo* raw()
const {
150 signalfd_siginfo* raw() {
164 Source source()
const;
171 return m_raw.ssi_code >= 0;
175 std::optional<const UserSigData> userSigData()
const;
178 std::optional<const QueueSigData> queueSigData()
const;
181 std::optional<const MsgQueueData> msgQueueData()
const;
184 std::optional<const TimerData> timerData()
const;
190 std::optional<const SysData> sysData()
const;
196 std::optional<const ChildData> childData()
const;
202 std::optional<const PollData> pollData()
const;
216 return Errno{m_raw.ssi_errno};
219 ProcessCtx procCtx()
const {
220 return ProcessCtx{pid(), uid()};
223 ProcessID pid()
const {
225 return ProcessID{
static_cast<pid_t
>(m_raw.ssi_pid)};
229 return UserID{m_raw.ssi_uid};
234 signalfd_siginfo m_raw;
Thin Wrapper around OS file descriptors.
Source
The source of a signal.
A bit set of signal numbers for use in system calls.
SigInfo style data structure returned by SignalFD::readEvent().
bool isTrustedSource() const
Returns whether the signal was sent from a trusted source (i.e. the kernel).
Errno error() const
Returns an error code that is generally unused on Linux (always 0).
Signal sigNr() const
Returns the signal number that occurred.
void clear()
Zeroes out the low level siginfo_t data structure.
Info(const no_init_t)
Leaves the underlying data structure uninitialized.
Info()
Creates a zero-initialized Info wrapper.
A file descriptor for receiving process signals.
SignalFD(const SigSet &mask)
Creates a signal FD listening on the given signals.
SignalFD()
Creates an invalid SignalFD object.
SignalFD(const std::initializer_list< Signal > siglist)
Creates a signal FD listening on the given list of signals.
auto fd()
Returns the FileDescriptor object associated with the SignalFD.
SignalFD(const Signal s)
Creates a signal FD listening on exactly the given signal.
Represents a POSIX signal number and offers a minimal API around it.
Errno
Strong enum type representing errno error constants.
void zero_object(T &obj)
Completely overwrites the given object with zeroes.
SignalNr
A primitive signal number specification.
Additional data found in SigInfo with SIGCHILD.
Additional data found in SigInfo with Source::MESGQ.
Additional data found in SigInfo with SIGPOLL.
Information about the process a signal is from or about.
Additional data found in SigInfo with Source::QUEUE.
Additional data found in SigInfo delivered with SIGSYS.
Additional data found in SigInfo with Source::TIMER.
Additional data found in SigInfo with Source::USER.
Type used to invoke constructors that explicitly don't zero-initialize low level data structures.