6#include <cosmos/error/ApiError.hxx>
7#include <cosmos/error/UsageError.hxx>
8#include <cosmos/proc/SigAction.hxx>
9#include <cosmos/proc/SigInfo.hxx>
10#include <cosmos/proc/signal.hxx>
11#include <cosmos/utils.hxx>
24std::array<std::atomic_intptr_t, to_integral(SignalNr::MAXIMUM)> simple_handlers;
25std::array<std::atomic_intptr_t, to_integral(SignalNr::MAXIMUM)> info_handlers;
31void simple_handler(
int sig) {
32 const auto &handler = simple_handlers[sig];
45void info_handler(
int sig, siginfo_t *info,
void *ctx) {
50 const auto &handler = info_handlers[sig];
56 const auto info2 = *
reinterpret_cast<SigInfo*
>(info);
66void set_action(
const Signal sig,
const SigAction &action, SigAction *old) {
68 const auto raw_sig = to_integral(sig.raw());
70 if (::sigaction(raw_sig, action.raw(), old ? old->raw() :
nullptr) != 0) {
71 cosmos_throw (ApiError(
"sigaction()"));
88 const auto &variant = action.m_handler;
89 SimpleHandler old_simple =
reinterpret_cast<SimpleHandler
>(simple_handlers[raw_sig].load());
90 InfoHandler old_info =
reinterpret_cast<InfoHandler
>(info_handlers[raw_sig].load());;
92 if (std::holds_alternative<SimpleHandler>(variant)) {
93 const auto handler = std::get<SimpleHandler>(variant);
97 simple_handlers[raw_sig].store(0);
98 info_handlers[raw_sig].store(0);
100 const auto intptr =
reinterpret_cast<intptr_t
>(handler);
101 simple_handlers[raw_sig].store(intptr);
103 }
else if (std::holds_alternative<InfoHandler>(variant)) {
104 const auto intptr =
reinterpret_cast<intptr_t
>(std::get<InfoHandler>(variant));
105 info_handlers[raw_sig].store(intptr);
109 old->updateFromOld(old_info, old_simple);
113void get_action(
const Signal sig, SigAction &action) {
115 const auto raw_sig = to_integral(sig.raw());
117 if (::sigaction(raw_sig,
nullptr, action.raw())) {
118 cosmos_throw (ApiError(
"sigaction()"));
121 action.updateFromOld(
140 cosmos_throw (
UsageError(
"Cannot set UNKNOWN type handler"));
145 m_raw.sa_flags &= ~SA_SIGINFO;
148 m_raw.sa_handler = SIG_IGN;
149 }
else if (handler ==
DEFAULT) {
150 m_raw.sa_handler = SIG_DFL;
152 m_raw.sa_handler = &simple_handler;
161 m_raw.sa_flags |= SA_SIGINFO;
162 m_raw.sa_sigaction = &info_handler;
166void SigAction::updateFromOld(InfoHandler info, SimpleHandler simple) {
171 if (
m_raw.sa_sigaction != info_handler) {
179 if (
m_raw.sa_handler == SIG_DFL) {
181 }
else if (
m_raw.sa_handler == SIG_IGN) {
183 }
else if (
m_raw.sa_handler != simple_handler) {
static const SimpleHandler DEFAULT
Special value of SimpleHandler to configure the default signal action as documented in man 7 signal.
void(*)(const Signal) SimpleHandler
Simple signal handler for receiving only the Signal number.
Flags getFlags() const
Retrieve the current flags.
std::variant< SimpleHandler, InfoHandler > m_handler
The currently configured callback.
struct sigaction m_raw
Low level sigaction struct.
static const SimpleHandler UNKNOWN
Special value of SimpleHandler in case a custom non-libcosmos handler is installed.
static const SimpleHandler IGNORE
Special value of SimpleHandler to ignore signals.
@ SIGINFO
The signal handler callback takes three arguments providing additional information (SigInfo).
void setHandler(SimpleHandler handler)
Sets a new SimpleHandler style signal handler function.
void(*)(const SigInfo &) InfoHandler
Extended signal handler for receiving additional SigInfo data.
Exception type for logical usage errors within the application.
SignalNr
A primitive signal number specification.
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.