En breve:
sigaction()
es bueno y está bien definido, pero es una función de Linux y, por lo tanto, solo funciona en Linux. signal()
es malo y está mal definido, pero es una función estándar de C y, por lo tanto, funciona en cualquier cosa.
¿Qué tienen que decir las páginas de manual de Linux al respecto?
man 2 signal
(Véalo en línea aquí ) declara:
El comportamiento de la señal () varía según las versiones de UNIX, y también ha variado históricamente entre las diferentes versiones de Linux. Evite su uso: use sigaction(2)
en su lugar. Ver Portabilidad a continuación.
Portabilidad El único uso portátil de signal () es establecer la disposición de una señal en SIG_DFL o SIG_IGN. La semántica cuando se utiliza la señal () para establecer un controlador de señal varía entre sistemas (y POSIX.1 permite explícitamente esta variación); No lo use para este propósito.
En otras palabras: no usar signal()
. Use en su sigaction()
lugar!
¿Qué piensa el CCG?
Nota de compatibilidad: como se dijo anteriormente para signal
, esta función debe evitarse cuando sea posible. sigaction
Es el método preferido.
Fuente: https://www.gnu.org/software/libc/manual/html_node/Basic-Signal-Handling.html#Basic-Signal-Handling
Entonces, si tanto Linux como GCC dicen no usar signal()
, sino usar sigaction()
en su lugar, eso plantea la pregunta: ¿cómo diablos usamos esta sigaction()
cosa confusa ?
Ejemplos de uso:
Lea el EXCELENTE signal()
ejemplo de GCC aquí: https://www.gnu.org/software/libc/manual/html_node/Basic-Signal-Handling.html#Basic-Signal-Handling
Y su EXCELENTE sigaction()
ejemplo aquí: https://www.gnu.org/software/libc/manual/html_node/Sigaction-Function-Example.html
Después de leer esas páginas, se me ocurrió la siguiente técnica para sigaction()
:
1. sigaction()
, ya que es la forma correcta de adjuntar un controlador de señal, como se describe anteriormente:
#include <errno.h> // errno
#include <signal.h> // sigaction()
#include <stdio.h> // printf()
#include <string.h> // strerror()
#define LOG_LOCATION __FILE__, __LINE__, __func__ // Format: const char *, unsigned int, const char *
#define LOG_FORMAT_STR "file: %s, line: %u, func: %s: "
/// @brief Callback function to handle termination signals, such as Ctrl + C
/// @param[in] signal Signal number of the signal being handled by this callback function
/// @return None
static void termination_handler(const int signal)
{
switch (signal)
{
case SIGINT:
printf("\nSIGINT (%i) (Ctrl + C) signal caught.\n", signal);
break;
case SIGTERM:
printf("\nSIGTERM (%i) (default `kill` or `killall`) signal caught.\n", signal);
break;
case SIGHUP:
printf("\nSIGHUP (%i) (\"hang-up\") signal caught.\n", signal);
break;
default:
printf("\nUnk signal (%i) caught.\n", signal);
break;
}
// DO PROGRAM CLEANUP HERE, such as freeing memory, closing files, etc.
exit(signal);
}
/// @brief Set a new signal handler action for a given signal
/// @details Only update the signals with our custom handler if they are NOT set to "signal ignore" (`SIG_IGN`),
/// which means they are currently intentionally ignored. GCC recommends this "because non-job-control
/// shells often ignore certain signals when starting children, and it is important for children
/// to respect this." See
/// https://www.gnu.org/software/libc/manual/html_node/Basic-Signal-Handling.html#Basic-Signal-Handling
/// and https://www.gnu.org/software/libc/manual/html_node/Sigaction-Function-Example.html.
/// Note that termination signals can be found here:
/// https://www.gnu.org/software/libc/manual/html_node/Termination-Signals.html#Termination-Signals
/// @param[in] signal Signal to set to this action
/// @param[in] action Pointer to sigaction struct, including the callback function inside it, to attach to this signal
/// @return None
static inline void set_sigaction(int signal, const struct sigaction *action)
{
struct sigaction old_action;
// check current signal handler action to see if it's set to SIGNAL IGNORE
sigaction(signal, NULL, &old_action);
if (old_action.sa_handler != SIG_IGN)
{
// set new signal handler action to what we want
int ret_code = sigaction(signal, action, NULL);
if (ret_code == -1)
{
printf(LOG_FORMAT_STR "sigaction failed when setting signal to %i;\n"
" errno = %i: %s\n", LOG_LOCATION, signal, errno, strerror(errno));
}
}
}
int main(int argc, char *argv[])
{
//...
// Register callbacks to handle kill signals; prefer the Linux function `sigaction()` over the C function
// `signal()`: "It is better to use sigaction if it is available since the results are much more reliable."
// Source: https://www.gnu.org/software/libc/manual/html_node/Basic-Signal-Handling.html#Basic-Signal-Handling
// and /programming/231912/what-is-the-difference-between-sigaction-and-signal/232711#232711.
// See here for official gcc `sigaction()` demo, which this code is modeled after:
// https://www.gnu.org/software/libc/manual/html_node/Sigaction-Function-Example.html
// Set up the structure to specify the new action, per GCC's demo.
struct sigaction new_action;
new_action.sa_handler = termination_handler; // set callback function
sigemptyset(&new_action.sa_mask);
new_action.sa_flags = 0;
// SIGINT: ie: Ctrl + C kill signal
set_sigaction(SIGINT, &new_action);
// SIGTERM: termination signal--the default generated by `kill` and `killall`
set_sigaction(SIGTERM, &new_action);
// SIGHUP: "hang-up" signal due to lost connection
set_sigaction(SIGHUP, &new_action);
//...
}
2. Y signal()
, aunque no es una buena forma de adjuntar un controlador de señal, como se describió anteriormente, es bueno saber cómo usarlo.
Aquí está el código de demostración de GCC copiado y pegado, ya que es tan bueno como va a ser:
#include <signal.h>
void
termination_handler (int signum)
{
struct temp_file *p;
for (p = temp_file_list; p; p = p->next)
unlink (p->name);
}
int
main (void)
{
…
if (signal (SIGINT, termination_handler) == SIG_IGN)
signal (SIGINT, SIG_IGN);
if (signal (SIGHUP, termination_handler) == SIG_IGN)
signal (SIGHUP, SIG_IGN);
if (signal (SIGTERM, termination_handler) == SIG_IGN)
signal (SIGTERM, SIG_IGN);
…
}
Los principales enlaces a tener en cuenta:
- Señales estándar: https://www.gnu.org/software/libc/manual/html_node/Standard-Signals.html#Standard-Signals
- Señales de terminación: https://www.gnu.org/software/libc/manual/html_node/Termination-Signals.html#Termination-Signals
- Manejo básico de señales, incluido el
signal()
ejemplo oficial de uso de GCC : https://www.gnu.org/software/libc/manual/html_node/Basic-Signal-Handling.html#Basic-Signal-Handling
sigaction()
Ejemplo de uso oficial de GCC : https://www.gnu.org/software/libc/manual/html_node/Sigaction-Function-Example.html
- Conjuntos de señales, incluidos
sigemptyset()
y sigfillset()
; Todavía no los entiendo exactamente, pero sé que son importantes: https://www.gnu.org/software/libc/manual/html_node/Signal-Sets.html
Ver también:
- TutorialsPoint C ++ Signal Handling [con excelente código de demostración]: https://www.tutorialspoint.com/cplusplus/cpp_signal_handling.htm
- https://www.tutorialspoint.com/c_standard_library/signal_h.htm
signal
es en realidad del comportamiento de Unix System V. POSIX permite este comportamiento o el comportamiento BSD mucho más sensato, pero como no puede estar seguro de cuál obtendrá, es mejor usarlosigaction
.