libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
SigAction.hxx
1#pragma once
2
3// Linux
4#include <signal.h>
5
6// C++
7#include <optional>
8
9// cosmos
10#include <cosmos/BitMask.hxx>
11#include <cosmos/proc/SigSet.hxx>
12#include <cosmos/memory.hxx>
13
14namespace cosmos {
15
16class SigInfo;
17class SigAction;
18
19namespace signal {
20 void set_action(const Signal sig, const SigAction &action, SigAction *old);
21 void get_action(const Signal, SigAction&);
22}
23
25
28class COSMOS_API SigAction {
29 friend void signal::set_action(const Signal, const SigAction&, SigAction*);
30 friend void signal::get_action(const Signal, SigAction&);
31public: // types
32
34 enum class Flag : int {
36 NO_CHILD_STOP = SA_NOCLDSTOP,
38 NO_CHILD_WAIT = SA_NOCLDWAIT,
40 NO_DEFER = SA_NODEFER,
42 ON_STACK = SA_ONSTACK,
43 /*
44 * This is the highest bit of the `int` and conflicts with the
45 * signedness of `int` when being used in an enum. Cast it explicitly
46 * to int to get around that.
47 */
49 RESET_HANDLER = static_cast<int>(SA_RESETHAND),
51 RESTART = SA_RESTART,
53 SIGINFO = SA_SIGINFO,
54 /* The rest here did not make it into the user space headers (yet?) */
56 RESTORER = 0x04000000, /*SA_RESTORER*/
57#if 0
59 UNSUPPORTED = SA_UNSUPPORTED,
61 EXPOSE_TAGBITS = SA_EXPOSE_TAGBITS,
62#endif
63 };
64
67
69 using SimpleHandler = void (*)(const Signal);
71 using InfoHandler = void (*)(const SigInfo&);
72
74 static const SimpleHandler IGNORE;
76 static const SimpleHandler DEFAULT;
78 static const SimpleHandler UNKNOWN;
79
80public: // functions
81
84 clear();
85 }
86
88
93 explicit SigAction(const no_init_t) {}
94
96 void clear() {
97 zero_object(m_raw);
98 }
99
101
106 void setFlags(const Flags flags) {
107 const auto had_siginfo = (m_raw.sa_flags & SA_SIGINFO) != 0;
108 m_raw.sa_flags = flags.raw();
109
110 if (had_siginfo) {
111 m_raw.sa_flags |= SA_SIGINFO;
112 } else {
113 m_raw.sa_flags &= ~SA_SIGINFO;
114 }
115 }
116
118 Flags getFlags() const {
119 return Flags{m_raw.sa_flags};
120 }
121
123 const SigSet& mask() const {
124 const auto mask = reinterpret_cast<const SigSet*>(&m_raw.sa_mask);
125 return *mask;
126 }
127
129
135 auto mask = reinterpret_cast<SigSet*>(&m_raw.sa_mask);
136 return *mask;
137 }
138
140
144 void setHandler(SimpleHandler handler);
145
147
151 void setHandler(InfoHandler handler);
152
154
161 std::optional<SimpleHandler> getSimpleHandler() const {
162 if (std::holds_alternative<SimpleHandler>(m_handler)) {
163 return std::get<SimpleHandler>(m_handler);
164 }
165
166 return {};
167 }
168
170 std::optional<InfoHandler> getInfoHandler() const {
171 if (std::holds_alternative<InfoHandler>(m_handler)) {
172 return std::get<InfoHandler>(m_handler);
173 }
174
175 return {};
176 }
177
179 const struct sigaction* raw() const {
180 return &m_raw;
181 }
182
183protected: // functions
184
186 struct sigaction* raw() {
187 return &m_raw;
188 }
189
190 void updateFromOld(InfoHandler info, SimpleHandler simple);
191
192protected: // data
193
195 struct sigaction m_raw;
196
198 std::variant<SimpleHandler,InfoHandler> m_handler;
199};
200
201} // end ns
A typesafe bit mask representation using class enums.
Definition BitMask.hxx:19
EnumBaseType raw() const
Returns the raw bitfield integer.
Definition BitMask.hxx:56
Data type used with signal::set_action() for controlling asynchronous signal delivery.
Definition SigAction.hxx:28
static const SimpleHandler DEFAULT
Special value of SimpleHandler to configure the default signal action as documented in man 7 signal.
Definition SigAction.hxx:76
void setFlags(const Flags flags)
Set new flags.
struct sigaction * raw()
Read-write low-level access to the underlying data structure.
void(*)(const Signal) SimpleHandler
Simple signal handler for receiving only the Signal number.
Definition SigAction.hxx:69
Flags getFlags() const
Retrieve the current flags.
std::variant< SimpleHandler, InfoHandler > m_handler
The currently configured callback.
std::optional< SimpleHandler > getSimpleHandler() const
Returns the currently set SimpleHandler, if any.
static const SimpleHandler UNKNOWN
Special value of SimpleHandler in case a custom non-libcosmos handler is installed.
Definition SigAction.hxx:78
static const SimpleHandler IGNORE
Special value of SimpleHandler to ignore signals.
Definition SigAction.hxx:74
SigSet & mask()
Access and possibly change the configured signal mask.
std::optional< InfoHandler > getInfoHandler() const
Returns the currently set InfoHandler, if any.
Flag
Settings influencing the behaviour of signal::set_action().
Definition SigAction.hxx:34
SigAction(const no_init_t)
Leaves underlying data uninitialized.
Definition SigAction.hxx:93
void clear()
overwrite the underlying data structure with zeroes.
Definition SigAction.hxx:96
const SigSet & mask() const
Access the currently set signal mask.
void(*)(const SigInfo &) InfoHandler
Extended signal handler for receiving additional SigInfo data.
Definition SigAction.hxx:71
SigAction()
Creates a zero-initialized object.
Definition SigAction.hxx:83
const struct sigaction * raw() const
Read-only low-level access to the underlying data structure.
Signal information struct used when receiving signals.
Definition SigInfo.hxx:79
A bit set of signal numbers for use in system calls.
Definition SigSet.hxx:25
Represents a POSIX signal number and offers a minimal API around it.
Definition types.hxx:96
void zero_object(T &obj)
Completely overwrites the given object with zeroes.
Definition memory.hxx:23
Type used to invoke constructors that explicitly don't zero-initialize low level data structures.
Definition types.hxx:37