libcosmos
Linux C++ System Programming Library
|
Signal information struct used when receiving signals. More...
#include <SigInfo.hxx>
Classes | |
struct | BusData |
Additional data delivered with SIGBUS signals. More... | |
struct | ChildData |
Additional data found in SigInfo with SIGCHILD. More... | |
struct | CustomData |
Additional custom SigInfo data. More... | |
struct | FaultData |
Additional data found in SigInfo for one of the memory fault / trap signals. More... | |
struct | FPEData |
Extra data delivered with SIGFPE signals. More... | |
struct | IllData |
Additional data delivered with SIGILL signals. More... | |
struct | MsgQueueData |
Additional data found in SigInfo with Source::MESGQ. More... | |
struct | PollData |
Additional data found in SigInfo with SIGPOLL. More... | |
struct | ProcessCtx |
Information about the process a signal is from or about. More... | |
struct | QueueSigData |
Additional data found in SigInfo with Source::QUEUE. More... | |
struct | SegfaultData |
Additional data delivered with SIGSEGV signals. More... | |
struct | SysData |
Additional data found in SigInfo delivered with SIGSYS. More... | |
struct | TimerData |
Additional data found in SigInfo with Source::TIMER. More... | |
struct | UserSigData |
Additional data found in SigInfo with Source::USER. More... | |
Public Types | |
enum class | Source : int { USER = SI_USER , KERNEL = SI_KERNEL , QUEUE = SI_QUEUE , TIMER = SI_TIMER , MESGQ = SI_MESGQ , ASYNCIO = SI_ASYNCIO , QSIGIO = SI_SIGIO , TKILL = SI_TKILL } |
The source of a signal. More... | |
Public Member Functions | |
SigInfo () | |
Creates a zero-initialized SigInfo wrapper. | |
SigInfo (const no_init_t) | |
Leaves the underlying data structure uninitialized. | |
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). | |
bool | isFaultSignal () const |
Returns whether the signal is one of the fault signals. | |
std::optional< const UserSigData > | userSigData () const |
Returns the Source::USER specific data. | |
std::optional< const QueueSigData > | queueSigData () const |
Returns the Source::QUEUE specific data. | |
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 SysData > | sysData () const |
Returns signal::BAD_SYS specific data. | |
std::optional< const ChildData > | childData () const |
Returns signal::CHILD specific data. | |
std::optional< const PollData > | pollData () const |
Returns signal::POLL specific data. | |
std::optional< const IllData > | illData () const |
Returns SIGILL specific data. | |
std::optional< const FPEData > | fpeData () const |
Returns SIGFPE specific data. | |
std::optional< const SegfaultData > | segfaultData () const |
Returns SIGSEGV specific data. | |
std::optional< const BusData > | busData () const |
Returns SIGBUS specific data. | |
void | clear () |
Zeroes out the low level siginfo_t data structure. | |
const siginfo_t * | raw () const |
siginfo_t * | raw () |
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 | |
siginfo_t | m_raw |
Signal information struct used when receiving signals.
This kernel data structure is union-like and most of its fields only have meaning - and sometimes different meanings - depending on the SigInfo::Source value. Thus most information is returned as a std::optional containing a separate SigInfo::<Kind>Data type which contains the specialized data relevant for the context.
TODO: check whether it makes sense to add TrapData for SIGTRAP. It is a bit unclear what exactly to expect, since ptrace(2) is insanely complex.
Definition at line 79 of file SigInfo.hxx.
|
strong |
The source of a signal.
Definition at line 83 of file SigInfo.hxx.
|
inline |
Creates a zero-initialized SigInfo wrapper.
Definition at line 471 of file SigInfo.hxx.
|
inline |
Leaves the underlying data structure uninitialized.
When SigInfo is used as an output parameter only (the typical case) then you can invoke this constructor to avoid unnecessary zero-initialization.
Definition at line 481 of file SigInfo.hxx.
std::optional< const SigInfo::BusData > cosmos::SigInfo::busData | ( | ) | const |
Returns SIGBUS specific data.
This data is only available if sigNr() == signal::BUS
.
Definition at line 181 of file SigInfo.cxx.
std::optional< const SigInfo::ChildData > cosmos::SigInfo::childData | ( | ) | const |
Returns signal::CHILD specific data.
This data is only available for sigNr() == signal::CHILD
.
Definition at line 82 of file SigInfo.cxx.
|
inline |
Zeroes out the low level siginfo_t data structure.
Definition at line 581 of file SigInfo.hxx.
|
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 599 of file SigInfo.hxx.
std::optional< const SigInfo::FPEData > cosmos::SigInfo::fpeData | ( | ) | const |
Returns SIGFPE specific data.
This data is only available if sigNr() == signal::FPE
.
Definition at line 151 of file SigInfo.cxx.
std::optional< const SigInfo::IllData > cosmos::SigInfo::illData | ( | ) | const |
Returns SIGILL specific data.
This data is only available if sigNr() == signal::ILL
.
Definition at line 140 of file SigInfo.cxx.
bool cosmos::SigInfo::isFaultSignal | ( | ) | const |
Returns whether the signal is one of the fault signals.
Definition at line 28 of file SigInfo.cxx.
|
inline |
Returns whether the signal was sent from a trusted source (i.e. the kernel).
Only the kernel is allowed to set an si_code
>= 0. This is an indicator whether we can fully trust the integrity of the data contained in the siginfo_t.
An exception is when a process sends itself a signal, but this can also be considered a trusted source in all but very special cases (like executing untrusted code in another thread?).
Definition at line 519 of file SigInfo.hxx.
std::optional< const SigInfo::MsgQueueData > cosmos::SigInfo::msgQueueData | ( | ) | const |
Returns the Source::MSGQ specific data.
Definition at line 63 of file SigInfo.cxx.
|
inlineprotected |
Definition at line 607 of file SigInfo.hxx.
std::optional< const SigInfo::PollData > cosmos::SigInfo::pollData | ( | ) | const |
Returns signal::POLL specific data.
This data is only available for sigNr() == signal::POLL
.
Definition at line 125 of file SigInfo.cxx.
|
inlineprotected |
Definition at line 603 of file SigInfo.hxx.
std::optional< const SigInfo::QueueSigData > cosmos::SigInfo::queueSigData | ( | ) | const |
Returns the Source::QUEUE specific data.
Definition at line 55 of file SigInfo.cxx.
|
inline |
Definition at line 589 of file SigInfo.hxx.
|
inline |
Definition at line 585 of file SigInfo.hxx.
std::optional< const SigInfo::SegfaultData > cosmos::SigInfo::segfaultData | ( | ) | const |
Returns SIGSEGV specific data.
This data is only available if sigNr() == signal::SEGV
.
Definition at line 162 of file SigInfo.cxx.
|
inline |
Returns the signal number that occurred.
Definition at line 484 of file SigInfo.hxx.
SigInfo::Source cosmos::SigInfo::source | ( | ) | const |
Returns the source of the signal.
For some special signals SigSource::KERNEL is implied if isTrustedSource() returns true
. These special signals are SIGFPE, SIGBUS, SIGILL, SIGSEGV, SIGBUS, SIGTRAP, SIGCHILD, SIGPOLL/SIGIO and SIGSYS.
These signals use the si_code
field for special data, but their source is the kernel, if isTrustedSource() returns true
. Implying SigSource::KERNEL in these situations allows us to always return a value here instead of a std::optional, which could be empty in these cases.
Since other user space processes are allowed to set arbitrary Source values smaller than 0 it can happen that values outside the defined Source constants are returned here. The interpretation of source() is application specific in these cases (or should be ignored, if not expected).
Definition at line 12 of file SigInfo.cxx.
std::optional< const SigInfo::SysData > cosmos::SigInfo::sysData | ( | ) | const |
Returns signal::BAD_SYS specific data.
This data is only available for sigNr() == signal::BAD_SYS
.
Definition at line 111 of file SigInfo.cxx.
std::optional< const SigInfo::TimerData > cosmos::SigInfo::timerData | ( | ) | const |
Returns the Source::TIMER specific data.
Definition at line 71 of file SigInfo.cxx.
|
inlineprotected |
Definition at line 611 of file SigInfo.hxx.
std::optional< const SigInfo::UserSigData > cosmos::SigInfo::userSigData | ( | ) | const |
Returns the Source::USER specific data.
Definition at line 47 of file SigInfo.cxx.
|
protected |
Definition at line 617 of file SigInfo.hxx.