libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::SignalFD::Info Class Reference

SigInfo style data structure returned by SignalFD::readEvent(). More...

#include <SignalFD.hxx>

Public Types

using Source = SigInfo::Source
 
using ProcessCtx = SigInfo::ProcessCtx
 
using UserSigData = SigInfo::UserSigData
 
using QueueSigData = SigInfo::QueueSigData
 
using MsgQueueData = SigInfo::MsgQueueData
 
using TimerData = SigInfo::TimerData
 
using ChildData = SigInfo::ChildData
 
using SysData = SigInfo::SysData
 
using PollData = SigInfo::PollData
 

Public Member Functions

 Info ()
 Creates a zero-initialized Info wrapper.
 
 Info (const no_init_t)
 Leaves the underlying data structure uninitialized.
 
const signalfd_siginfo * raw () const
 
signalfd_siginfo * raw ()
 
Signal sigNr () const
 Returns the signal number that occurred.
 
Source source () const
 Returns the source of the signal.
 
bool isTrustedSource () const
 Returns whether the signal was sent from a trusted source (i.e. the kernel).
 
std::optional< const UserSigDatauserSigData () const
 Returns the Source::USER specific data.
 
std::optional< const QueueSigDataqueueSigData () const
 Returns the Source::QUEUE specific data.
 
std::optional< const MsgQueueDatamsgQueueData () const
 Returns the Source::MSGQ specific data.
 
std::optional< const TimerDatatimerData () const
 Returns the Source::TIMER specific data.
 
std::optional< const SysDatasysData () const
 Returns signal::BAD_SYS specific data.
 
std::optional< const ChildDatachildData () const
 Returns signal::CHILD specific data.
 
std::optional< const PollDatapollData () const
 Returns signal::POLL specific data.
 
void clear ()
 Zeroes out the low level siginfo_t data structure.
 

Protected Member Functions

Errno error () const
 Returns an error code that is generally unused on Linux (always 0).
 
ProcessCtx procCtx () const
 
ProcessID pid () const
 
UserID uid () const
 

Protected Attributes

signalfd_siginfo m_raw
 

Detailed Description

SigInfo style data structure returned by SignalFD::readEvent().

This is mostly the same as SigInfo, but tailored towards SignalFD. The underlying data structures differ too much to merge them into one on libcosmos level.

One difference between this structure and SigInfo is that SignalFDs cannot be used to catch fault signals (these can only be caught by SigAction signal handlers). Thus the fault signal part is missing from this structure.

Definition at line 116 of file SignalFD.hxx.

Member Typedef Documentation

◆ ChildData

◆ MsgQueueData

◆ PollData

◆ ProcessCtx

◆ QueueSigData

◆ Source

Definition at line 121 of file SignalFD.hxx.

◆ SysData

◆ TimerData

◆ UserSigData

Constructor & Destructor Documentation

◆ Info() [1/2]

cosmos::SignalFD::Info::Info ( )
inline

Creates a zero-initialized Info wrapper.

Definition at line 134 of file SignalFD.hxx.

134 {
135 clear();
136 }
void clear()
Zeroes out the low level siginfo_t data structure.
Definition SignalFD.hxx:205

◆ Info() [2/2]

cosmos::SignalFD::Info::Info ( const no_init_t )
inline

Leaves the underlying data structure uninitialized.

When Info is used as an output parameter only (the typical case) then you can invoke this constructor to avoid unnecessary zero-initialization.

Definition at line 144 of file SignalFD.hxx.

144{}

Member Function Documentation

◆ childData()

std::optional< const Info::ChildData > cosmos::Info::childData ( ) const

Returns signal::CHILD specific data.

This data is only available for sigNr() == signal::CHILD.

Definition at line 142 of file SignalFD.cxx.

142 {
143 if (sigNr() == signal::CHILD) {
144 using Event = ChildData::Event;
145 const auto event = Event{m_raw.ssi_code};
146
147 return ChildData{
148 event,
149 this->procCtx(),
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}}),
152 // is an uint64_t here, so cast it to clock_t for reuse
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)})
155 };
156 }
157
158 return std::nullopt;
159}
Signal sigNr() const
Returns the signal number that occurred.
Definition SignalFD.hxx:155
SignalNr
A primitive signal number specification.
Definition types.hxx:50
Event
Different events that can occur in a tracee leading to ptrace-event-stop.
Definition ptrace.hxx:58
Event
Types of SIGCHLD events that can occur.
Definition SigInfo.hxx:325
ClockTicks
Type used to express time in clock ticks unit in some APIs.
Definition types.hxx:25

◆ clear()

void cosmos::SignalFD::Info::clear ( )
inline

Zeroes out the low level siginfo_t data structure.

Definition at line 205 of file SignalFD.hxx.

205 {
206 zero_object(m_raw);
207 }
void zero_object(T &obj)
Completely overwrites the given object with zeroes.
Definition memory.hxx:23

◆ error()

Errno cosmos::SignalFD::Info::error ( ) const
inlineprotected

Returns an error code that is generally unused on Linux (always 0).

An exception is the case of SIGSYS generated by seccomp(2) filters.

Definition at line 215 of file SignalFD.hxx.

215 {
216 return Errno{m_raw.ssi_errno};
217 }
Errno
Strong enum type representing errno error constants.
Definition errno.hxx:29

◆ isTrustedSource()

bool cosmos::SignalFD::Info::isTrustedSource ( ) const
inline

Returns whether the signal was sent from a trusted source (i.e. the kernel).

See also
SigInfo::isTrustedSource().

Definition at line 170 of file SignalFD.hxx.

170 {
171 return m_raw.ssi_code >= 0;
172 }

◆ msgQueueData()

std::optional< const Info::MsgQueueData > cosmos::Info::msgQueueData ( ) const

Returns the Source::MSGQ specific data.

Definition at line 104 of file SignalFD.cxx.

104 {
106 union sigval val;
107 val.sival_ptr = reinterpret_cast<void*>(m_raw.ssi_ptr);
108 return MsgQueueData{this->procCtx(), SigInfo::CustomData{val}};
109 }
110
111 return std::nullopt;
112}
@ MESGQ
POSIX message queue state changed.
Source source() const
Returns the source of the signal.
Definition SignalFD.cxx:65

◆ pid()

ProcessID cosmos::SignalFD::Info::pid ( ) const
inlineprotected

Definition at line 223 of file SignalFD.hxx.

223 {
224 // ssi_pid is unsigned while pid_t is signed
225 return ProcessID{static_cast<pid_t>(m_raw.ssi_pid)};
226 }
ProcessID
Definition types.hxx:25

◆ pollData()

std::optional< const Info::PollData > cosmos::Info::pollData ( ) const

Returns signal::POLL specific data.

This data is only available for sigNr() == signal::POLL.

Definition at line 161 of file SignalFD.cxx.

161 {
162 // SIGIO and SIGPOLL are the same on Linux, but just to be sure ...
163 if (sigNr() == signal::IO_EVENT || sigNr() == signal::POLL) {
164 return PollData{
165 PollData::Reason{m_raw.ssi_code},
166 FileNum{m_raw.ssi_fd},
167 /* there are conflicting types, PollEvents is short
168 * but in sigaction it's a long */
169 PollEvents{static_cast<short>(m_raw.ssi_band)}
170 };
171 }
172
173 return std::nullopt;
174}
FileNum
Primitive file descriptor.
Definition types.hxx:32
BitMask< PollEvent > PollEvents
BitMask of PollEvent flags denoting the I/O status of a file.
Definition types.hxx:34
Reason
Different reasons for delivering SIGPOLL.
Definition SigInfo.hxx:450

◆ procCtx()

ProcessCtx cosmos::SignalFD::Info::procCtx ( ) const
inlineprotected

Definition at line 219 of file SignalFD.hxx.

219 {
220 return ProcessCtx{pid(), uid()};
221 }

◆ queueSigData()

std::optional< const Info::QueueSigData > cosmos::Info::queueSigData ( ) const

Returns the Source::QUEUE specific data.

Definition at line 89 of file SignalFD.cxx.

89 {
91 // the signalfd_siginfo does not involve a union, but contains
92 // always both the 32-bit int value and the 64-bit pointer
93 // value. The pointer always contains the lower 32-bit of the
94 // int, if an int was sent. Thus we place the pointer into the
95 // union and constructor SigInfo::CustomData from it.
96 union sigval val;
97 val.sival_ptr = reinterpret_cast<void*>(m_raw.ssi_ptr);
98 return QueueSigData{this->procCtx(), SigInfo::CustomData{val}};
99 }
100
101 return std::nullopt;
102}
@ QUEUE
sent from user space via sigqueue().

◆ raw() [1/2]

signalfd_siginfo * cosmos::SignalFD::Info::raw ( )
inline

Definition at line 150 of file SignalFD.hxx.

150 {
151 return &m_raw;
152 }

◆ raw() [2/2]

const signalfd_siginfo * cosmos::SignalFD::Info::raw ( ) const
inline

Definition at line 146 of file SignalFD.hxx.

146 {
147 return &m_raw;
148 }

◆ sigNr()

Signal cosmos::SignalFD::Info::sigNr ( ) const
inline

Returns the signal number that occurred.

Definition at line 155 of file SignalFD.hxx.

155 {
156 // ssi_signo is unsigned, while in sigaction it's signed.
157 return Signal{SignalNr{static_cast<int>(m_raw.ssi_signo)}};
158 }

◆ source()

Info::Source cosmos::Info::source ( ) const

Returns the source of the signal.

See also
SigInfo::source().

Definition at line 65 of file SignalFD.cxx.

65 {
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,
69 signal::BAD_SYS};
70
71 // the lower level system call `rt_sigqueueinfo` allows userspace to
72 // send arbitrary codes < 0, thus the signal number alone doesn't mean
73 // the kernel was the source.
74 if (isTrustedSource() && in_list(this->sigNr(), SPECIAL_SIGS)) {
75 return Source::KERNEL;
76 }
77
78 return Source{m_raw.ssi_code};
79}
bool isTrustedSource() const
Returns whether the signal was sent from a trusted source (i.e. the kernel).
Definition SignalFD.hxx:170
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.
Definition utils.hxx:117

◆ sysData()

std::optional< const Info::SysData > cosmos::Info::sysData ( ) const

Returns signal::BAD_SYS specific data.

This data is only available for sigNr() == signal::BAD_SYS.

Definition at line 127 of file SignalFD.cxx.

127 {
128 if (sigNr() == signal::BAD_SYS) {
129 return SysData{
130 SysData::Reason{m_raw.ssi_code},
131 // is an uint64_t here, so cast it to void*
132 reinterpret_cast<void*>(m_raw.ssi_call_addr),
133 m_raw.ssi_syscall,
134 ptrace::Arch{m_raw.ssi_arch},
135 this->error()
136 };
137 }
138
139 return std::nullopt;
140}
Errno error() const
Returns an error code that is generally unused on Linux (always 0).
Definition SignalFD.hxx:215
Reason
Different reasons for delivering SIGYS.
Definition SigInfo.hxx:426

◆ timerData()

std::optional< const Info::TimerData > cosmos::Info::timerData ( ) const

Returns the Source::TIMER specific data.

Definition at line 114 of file SignalFD.cxx.

114 {
116 return TimerData{
117 // is unsigned here, so cast it to signed
118 TimerData::TimerID{static_cast<int>(m_raw.ssi_tid)},
119 // same here
120 static_cast<int>(m_raw.ssi_overrun)
121 };
122 }
123
124 return std::nullopt;
125}
@ TIMER
POSIX timer expired.

◆ uid()

UserID cosmos::SignalFD::Info::uid ( ) const
inlineprotected

Definition at line 228 of file SignalFD.hxx.

228 {
229 return UserID{m_raw.ssi_uid};
230 }

◆ userSigData()

std::optional< const Info::UserSigData > cosmos::Info::userSigData ( ) const

Returns the Source::USER specific data.

Definition at line 81 of file SignalFD.cxx.

81 {
83 return UserSigData{this->procCtx()};
84 }
85
86 return std::nullopt;
87}
@ USER
sent via kill().

Member Data Documentation

◆ m_raw

signalfd_siginfo cosmos::SignalFD::Info::m_raw
protected

Definition at line 234 of file SignalFD.hxx.


The documentation for this class was generated from the following files: