libcosmos
Linux C++ System Programming Library
|
#include <variant>
#include <cosmos/BitMask.hxx>
#include <cosmos/memory.hxx>
#include <cosmos/proc/PidFD.hxx>
#include <cosmos/proc/types.hxx>
#include <cosmos/thread/thread.hxx>
#include <cosmos/time/types.hxx>
#include <cosmos/utils.hxx>
Go to the source code of this file.
Classes | |
class | cosmos::signal::Stack |
Data structure used for defining an alternate signal stack. More... | |
Enumerations | |
enum class | cosmos::signal::WaitRes { SIGNALED , NO_RESULT } |
Strong type to express timed_wait() and poll_info() results. More... | |
Functions | |
Signal | cosmos::signal::rt_min () |
Returns the first real-time signal available. | |
Signal | cosmos::signal::rt_max () |
Returns the last real-time signal available. | |
size_t | cosmos::signal::num_rt_sigs () |
Returns the number of available real-time signals. | |
void | cosmos::signal::raise (const Signal s) |
Sends a signal to the caller itself. | |
void | cosmos::signal::send (const ProcessID proc, const Signal s) |
Sends a signal to another process based on process ID (kill). | |
void | cosmos::signal::send (const ProcessID proc, const Signal s, std::variant< void *, int > data) |
Sends a signal including data (sigqueue() ). | |
void | cosmos::signal::send (const PidFD pidfd, const Signal s) |
Sends a signal to another process based on a pidfd. | |
void | cosmos::signal::send (const ProcessID proc, const ThreadID thread, const Signal s) |
Sends a signal to a specific thread of a process. | |
void | cosmos::signal::pause () |
Suspend execution of the calling thread until an asynchronous signal occurs. | |
void | cosmos::signal::suspend (const SigSet &mask) |
Suspend execution with altered signal mask until an asynchronous signal occurs. | |
Signal | cosmos::signal::wait (const SigSet &set) |
Wait for a signal from set to occur. | |
void | cosmos::signal::wait_info (const SigSet &set, SigInfo &info) |
Wait for a signal from set to occur and fill in info with signal details. | |
WaitRes | cosmos::signal::timed_wait (const SigSet &set, SigInfo &info, const IntervalTime timeout) |
Variant of wait_info() with a timeout. | |
WaitRes | cosmos::signal::poll_info (const SigSet &set, SigInfo &info) |
Check for a pending signal from set and fill in info with signal details. | |
void | cosmos::signal::set_action (const Signal sig, const SigAction &action, SigAction *old=nullptr) |
Configure asynchronous signal delivery behaviour. | |
void | cosmos::signal::get_action (const Signal sig, SigAction &action) |
Gets the currently installed SigAction configuration for sig . | |
void | cosmos::signal::block (const SigSet &s, SigSet *old=nullptr) |
Blocks the given set of signals in the caller's signal mask. | |
void | cosmos::signal::unblock (const SigSet &s, SigSet *old=nullptr) |
Unblocks the given set of signals in the caller's signal mask. | |
void | cosmos::signal::set_sigmask (const SigSet &s, SigSet *old=nullptr) |
Completely replace the caller's signal mask by the given set of blocked signals. | |
void | cosmos::signal::get_sigmask (SigSet &old) |
Returns the currently active signal mask for the calling thread. | |
void | cosmos::signal::restore (const Signal sig) |
Restores the default signal handling behaviour for the given signal. | |
void | cosmos::signal::ignore (const Signal sig) |
Ignore signal delivery for the given signal. | |
void | cosmos::signal::set_altstack (const Stack &stack, Stack *old=nullptr) |
Configure an alternate signal stack. | |
void | cosmos::signal::get_altstack (Stack &old) |
Retrieve the current alternate signal stack configuration. | |
Constants and functions for process signal handling.
Definition in file signal.hxx.
|
strong |
Strong type to express timed_wait() and poll_info() results.
Enumerator | |
---|---|
SIGNALED | a signal has been caught. |
NO_RESULT | no signal was caught / timeout occurred. |
Definition at line 179 of file signal.hxx.
Blocks the given set of signals in the caller's signal mask.
Blocked signals won't be delivered asynchronously to the process i.e. no asynchronous signal handler will be invoked, the default action will not be perfomed (except for signal where it cannot be suppressed). Also the default action will not be executed. This allows to collect the information synchronously e.g. by using a SignalFD.
If old
is provided then the previous signal mask is returned into this SigSet object.
Definition at line 154 of file signal.cxx.
Gets the currently installed SigAction configuration for sig
.
This can be used to explicitly store the current SigAction configuration for a signal for the purposes of restoring it at a later point in time via set_action()
.
On error an ApiError is thrown. The following errors are documented for this call:
action
does not have a valid address.sig
is not a valid signal number. Definition at line 113 of file SigAction.cxx.
COSMOS_API void cosmos::signal::get_altstack | ( | Stack & | old | ) |
Retrieve the current alternate signal stack configuration.
On error an ApiError is thrown. Errno::INVALID_ARG is documented for the case when old
is outside of the process's address space.
Definition at line 179 of file signal.cxx.
COSMOS_API void cosmos::signal::get_sigmask | ( | SigSet & | old | ) |
Returns the currently active signal mask for the calling thread.
Definition at line 166 of file signal.cxx.
|
inline |
Ignore signal delivery for the given signal.
Ignoring a signal can make sense for the Signal::CHILD signal, in which case child processes will not become zombies, even if the parent does not wait on them.
proc::wait()
. Definition at line 309 of file signal.hxx.
|
inline |
Returns the number of available real-time signals.
Definition at line 85 of file signal.hxx.
COSMOS_API void cosmos::signal::pause | ( | ) |
Suspend execution of the calling thread until an asynchronous signal occurs.
The calling thread will be blocked until a signal is delivered that either terminates the process or causes the execution of an asynchronous signal catching function (e.g. registered via cosmos::signal::set_action())..
Definition at line 113 of file signal.cxx.
Check for a pending signal from set
and fill in info
with signal details.
This is a polling variant of wait_info()
that will not block. If no signal is pending then WaitRes::NO_RESULT is returned and info
is left unchanged. Otherwise WaitRes::SIGNALED is returned and info
is filled accordingly.
The same errors as in timed_wait() can occur here.
Definition at line 208 of file signal.hxx.
COSMOS_API void cosmos::signal::raise | ( | const Signal | s | ) |
Sends a signal to the caller itself.
The given signal will be delivered to the calling process or thread itself.
Throws | an ApiError on error. |
Definition at line 34 of file signal.cxx.
|
inline |
Restores the default signal handling behaviour for the given signal.
Definition at line 299 of file signal.hxx.
|
inline |
|
inline |
Returns the first real-time signal available.
Real-time signals are a dynamic range of signals beyond the classic predefined signals described in SignalNr. They have the special property that they are queued i.e. multiple signals can accumulate for the same signal number and each occurrence will be delivered to the process.
Definition at line 75 of file signal.hxx.
Sends a signal to another process based on a pidfd.
[in] | pidfd | needs to refer to a valid PidFD type file descriptor. The process represented by it will be sent the specified signal s . |
Throws | an ApiError on error. |
Definition at line 65 of file signal.cxx.
Sends a signal to another process based on process ID (kill).
Throws | an ApiError on error. |
Definition at line 40 of file signal.cxx.
COSMOS_API void cosmos::signal::send | ( | const ProcessID | proc, |
const Signal | s, | ||
std::variant< void *, int > | data ) |
Sends a signal including data (sigqueue()
).
This is similar to send(ProcessID, Signal) but also attaches a data item to the signal to be sent. If the receiver uses extended APIs like an SA_SIGINFO signal handler then it can obtain the data from the si_value
or si_int
field of struct siginfo
. The si_code
field will be set to SI_QUEUE.
The data
can either be an int
or a void *
, which can have different sizes on some architectures.
Definition at line 46 of file signal.cxx.
COSMOS_API void cosmos::signal::send | ( | const ProcessID | proc, |
const ThreadID | thread, | ||
const Signal | s ) |
Sends a signal to a specific thread of a process.
Linux differentiates between process-directed and thread-directed signals. If a (multi-threaded) process is the target of a signal, then an arbitrary thread in that process will receive the signal. To target a specific thread this call can be used, which specifies a specific thread within a process.
Definition at line 59 of file signal.cxx.
COSMOS_API void cosmos::signal::set_action | ( | const Signal | sig, |
const SigAction & | action, | ||
SigAction * | old = nullptr ) |
Configure asynchronous signal delivery behaviour.
The asynchronous signal handling for sig
will be configured according to the settings in action
. Asynchronous signal handling should be avoided, if possible, for the following reasons:
man 7 signal-safety
). There is no protection against using unsafe functions in a signal handler, which can cause hard to find bugs.There are some signals that can only be caught asynchronously. These are the fault family of signals like SIGSEGV, SIGFPE, SIGBUS and SIGILL. These are directed at the thread that triggers them and thus cannot be waited for in another thread.
If old
is supplied then the previously installed signal handler configuration for sig
is returned there e.g. for being able to restore it at a later point in time.
Libcosmos offers asynchronous signal handlers with type safe parameters (SigAction::SimpleHandler, SigAction::InfoHandler), but this comes at a cost. The sigaction()
system call is very difficult to wrap. The extra level of indirection that libcosmos uses internally can cause additional types of race conditions. These race conditions can occur when an existing signal handling function is replaced by another. These race conditions make it impossible to determine if a signal that comes in while changing the signal handler is still based on the old signal handler configuration or already on the new one.
There should be very few use cases that actually require replacing one signal handler function by another. Typically a program installs signal handlers early on and never changes them again. If you do need to use different signal handlers for the same signal safely, though, then it is better to rely on synchronous signal handling (if possible) or employ direct sigaction()
calls instead of using libcosmos for establishing them.
On error an ApiError is thrown. The following errors are documented for this call:
action
or old
do not have valid addresses.sig
is not a valid signal number. Definition at line 66 of file SigAction.cxx.
Configure an alternate signal stack.
This call informs the kernel of a memory area to be used for establishing the stack of asynchronous signal handlers. After configuring the alternate stack it can be used by establishing an asynchronous signal handler via cosmos::signal::set_action() with SigAction::Flag::ON_STACK set.
The previous alternate stack settings can optionally be returned in old
. Only Flag::AUTO_DISARM will be recognized in stack
. The other flags are only used in output data that can be returned in old
.
On error an ApiError is thrown. The following error reasons are documented:
stack
or old
are outside the process's address space.stack.getFlags()
contains invalid flags.stack.getSize()
is smaller than MIN_SIZE.Definition at line 173 of file signal.cxx.
Completely replace the caller's signal mask by the given set of blocked signals.
Definition at line 162 of file signal.cxx.
COSMOS_API void cosmos::signal::suspend | ( | const SigSet & | mask | ) |
Suspend execution with altered signal mask until an asynchronous signal occurs.
This is similar to pause(), with the difference that the caller's signal mask is temporarily replaced by mask
. Upon return from the function, the original signal mask will be restored.
Definition at line 118 of file signal.cxx.
COSMOS_API WaitRes cosmos::signal::timed_wait | ( | const SigSet & | set, |
SigInfo & | info, | ||
const IntervalTime | timeout ) |
Variant of wait_info() with a timeout.
This is just like wait_info()
only with a timeout applied. If no signal from set
arrives within timeout
then info
is left untouched and WaitRes::NO_RESULT is returned. Otherwise WaitRes::SIGNALED is returned and info
is filled accordingly.
timeout
is a relative time interval. There is no way to continue waiting for the remaining time should this call be interrupted.
On errors an ApiError is thrown. Errno::INTERRUPT and Errno::INVALID (bad timeout value) are the only documented errors.
Definition at line 141 of file signal.cxx.
Unblocks the given set of signals in the caller's signal mask.
Definition at line 158 of file signal.cxx.
COSMOS_API Signal cosmos::signal::wait | ( | const SigSet & | set | ) |
Wait for a signal from set
to occur.
This call blocks execution until one of the signals found in set
becomes pending for the calling thread. Once a signal is pending it will be removed from the pending list of signals and the call returns the number of the signal that occurred.
This method of waiting for signals does not provide any contextual information that may exist for the signal, only the signal number is provided.
On error an ApiError is thrown. Only Errno::INVALID is defined as a possible error reason, when an invalid signal is seen in set
.
Definition at line 123 of file signal.cxx.
Wait for a signal from set
to occur and fill in info
with signal details.
This is similar to wait(const SigSet&) but provides additional details about the signal that occurred in info
.
On errors an ApiError is thrown. The only documented error condition is Errno::INTERRUPTED.
Definition at line 135 of file signal.cxx.
|
constexpr |
Definition at line 38 of file signal.hxx.
|
constexpr |
Definition at line 47 of file signal.hxx.
|
constexpr |
Definition at line 65 of file signal.hxx.
|
constexpr |
Definition at line 40 of file signal.hxx.
|
constexpr |
Definition at line 50 of file signal.hxx.
|
constexpr |
Definition at line 51 of file signal.hxx.
|
constexpr |
Definition at line 57 of file signal.hxx.
|
constexpr |
Definition at line 41 of file signal.hxx.
|
constexpr |
Definition at line 58 of file signal.hxx.
|
constexpr |
Definition at line 32 of file signal.hxx.
|
constexpr |
Definition at line 35 of file signal.hxx.
|
constexpr |
Definition at line 33 of file signal.hxx.
|
constexpr |
Definition at line 62 of file signal.hxx.
|
constexpr |
Definition at line 39 of file signal.hxx.
|
constexpr |
Definition at line 42 of file signal.hxx.
|
constexpr |
Definition at line 66 of file signal.hxx.
|
constexpr |
Definition at line 31 of file signal.hxx.
|
constexpr |
Definition at line 46 of file signal.hxx.
|
constexpr |
Definition at line 63 of file signal.hxx.
|
constexpr |
Definition at line 64 of file signal.hxx.
|
constexpr |
Definition at line 60 of file signal.hxx.
|
constexpr |
Definition at line 34 of file signal.hxx.
|
constexpr |
Definition at line 44 of file signal.hxx.
|
constexpr |
Definition at line 49 of file signal.hxx.
|
constexpr |
Definition at line 52 of file signal.hxx.
|
constexpr |
Definition at line 37 of file signal.hxx.
|
constexpr |
Definition at line 54 of file signal.hxx.
|
constexpr |
Definition at line 55 of file signal.hxx.
|
constexpr |
Definition at line 53 of file signal.hxx.
|
constexpr |
Definition at line 48 of file signal.hxx.
|
constexpr |
Definition at line 36 of file signal.hxx.
|
constexpr |
Definition at line 56 of file signal.hxx.
|
constexpr |
Definition at line 43 of file signal.hxx.
|
constexpr |
Definition at line 45 of file signal.hxx.
|
constexpr |
Definition at line 59 of file signal.hxx.
|
constexpr |
Definition at line 61 of file signal.hxx.