8#include <cosmos/private/cosmos.hxx>
9#include <cosmos/error/ApiError.hxx>
10#include <cosmos/error/UsageError.hxx>
11#include <cosmos/error/RuntimeError.hxx>
12#include <cosmos/proc/SignalFD.hxx>
13#include <cosmos/utils.hxx>
17SignalFD::~SignalFD() {
20 }
catch (
const std::exception &ex) {
21 noncritical_error(
"Failed to close signal fd", ex);
27 auto fd = ::signalfd(-1, mask.
raw(), SFD_CLOEXEC);
29 cosmos_throw (
ApiError(
"signalfd()"));
37 cosmos_throw (
UsageError(
"no signal fd currently open"));
43 auto fd = ::signalfd(to_integral(m_fd.
raw()), mask.
raw(), 0);
45 cosmos_throw (
ApiError(
"signalfd()"));
50 auto raw = info.raw();
51 constexpr auto RAW_SIZE =
sizeof(*raw);
53 auto res = ::read(to_integral(m_fd.
raw()), raw, RAW_SIZE);
56 cosmos_throw (
ApiError(
"read(sigfd)"));
58 else if (
static_cast<size_t>(res) < RAW_SIZE) {
59 cosmos_throw (
RuntimeError(
"short read from signal fd"));
66 const std::initializer_list<Signal> SPECIAL_SIGS{
67 signal::FPE, signal::BUS, signal::ILL, signal::SEGV,
68 signal::BUS, signal::TRAP, signal::CHILD, signal::POLL,
75 return Source::KERNEL;
78 return Source{m_raw.ssi_code};
97 val.sival_ptr =
reinterpret_cast<void*
>(m_raw.ssi_ptr);
107 val.sival_ptr =
reinterpret_cast<void*
>(m_raw.ssi_ptr);
118 TimerData::TimerID{
static_cast<int>(m_raw.ssi_tid)},
120 static_cast<int>(m_raw.ssi_overrun)
128 if (
sigNr() == signal::BAD_SYS) {
132 reinterpret_cast<void*
>(m_raw.ssi_call_addr),
143 if (
sigNr() == signal::CHILD) {
145 const auto event = Event{m_raw.ssi_code};
150 event == Event::EXITED ? std::make_optional(
ExitStatus{m_raw.ssi_status}) : std::nullopt,
151 event == Event::EXITED ? std::nullopt : std::make_optional(
Signal{
SignalNr{m_raw.ssi_status}}),
153 std::make_optional(
ClockTicks{
static_cast<clock_t
>(m_raw.ssi_utime)}),
154 std::make_optional(
ClockTicks{
static_cast<clock_t
>(m_raw.ssi_stime)})
163 if (
sigNr() == signal::IO_EVENT ||
sigNr() == signal::POLL) {
169 PollEvents{
static_cast<short>(m_raw.ssi_band)}
Specialized exception type used when system APIs fail.
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.
Exception type for generic runtime errors.
Source
The source of a signal.
@ MESGQ
POSIX message queue state changed.
@ TIMER
POSIX timer expired.
@ QUEUE
sent from user space via sigqueue().
A bit set of signal numbers for use in system calls.
sigset_t * raw()
Returns a pointer to the raw sigset_t data structure for use in API calls.
SigInfo style data structure returned by SignalFD::readEvent().
std::optional< const UserSigData > userSigData() const
Returns the Source::USER specific data.
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).
Source source() const
Returns the source of the signal.
Signal sigNr() const
Returns the signal number that occurred.
std::optional< const MsgQueueData > msgQueueData() const
Returns the Source::MSGQ specific data.
std::optional< const TimerData > timerData() const
Returns the Source::TIMER specific data.
std::optional< const PollData > pollData() const
Returns signal::POLL specific data.
std::optional< const SysData > sysData() const
Returns signal::BAD_SYS specific data.
std::optional< const QueueSigData > queueSigData() const
Returns the Source::QUEUE specific data.
std::optional< const ChildData > childData() const
Returns signal::CHILD specific data.
void readEvent(Info &info)
Reads the next event event from the SignalFD.
auto fd()
Returns the FileDescriptor object associated with the SignalFD.
void adjustMask(const SigSet &mask)
Change the signals the file descriptor is listening for.
void create(const SigSet &mask)
Creates a new SignalFD.
Represents a POSIX signal number and offers a minimal API around it.
Exception type for logical usage errors within the application.
FileNum
Primitive file descriptor.
ExitStatus
Represents an exit status code from a child process.
SignalNr
A primitive signal number specification.
Arch
System call ABI architecture.
Additional data found in SigInfo with SIGCHILD.
Event
Types of SIGCHLD events that can occur.
Additional custom SigInfo data.
Additional data found in SigInfo with Source::MESGQ.
Additional data found in SigInfo with SIGPOLL.
Reason
Different reasons for delivering SIGPOLL.
Additional data found in SigInfo with Source::QUEUE.
Additional data found in SigInfo delivered with SIGSYS.
Reason
Different reasons for delivering SIGYS.
Additional data found in SigInfo with Source::TIMER.
Additional data found in SigInfo with Source::USER.
ClockTicks
Type used to express time in clock ticks unit in some APIs.
bool in_list(const T &v, const std::initializer_list< T > &l)
Checks whether the value v is found in the given list of values l.