2 * Copyright (C) 2004-2008 Andre Noll <maan@systemlinux.org>
4 * Licensed under the GPL v2. For licencing details see COPYING.
6 /** \file signal.c Signal handling functions. */
16 static int signal_pipe
[2];
19 * Initialize the paraslash signal subsystem.
21 * This function creates a pipe, the signal pipe, to deliver pending
22 * signals to the application (Bernstein's trick). It should be called
23 * during the application's startup part, followed by subsequent calls
24 * to para_install_sighandler() for each signal that should be caught.
26 * para_signal_init() installs a generic signal handler which is used for all
27 * signals simultaneously. When a signal arrives, this generic signal handler
28 * writes the corresponding signal number to the signal pipe so that the
29 * application can test for pending signals simply by checking the signal pipe
30 * for reading, e.g. by using the select(2) system call.
32 * \return This function either succeeds or calls exit(2) to terminate
33 * the current process. On success, the file descriptor of the signal pipe is
36 int para_signal_init(void)
39 if (pipe(signal_pipe
) < 0) {
40 ret
= -ERRNO_TO_PARA_ERROR(errno
);
43 ret
= mark_fd_nonblocking(signal_pipe
[0]);
46 ret
= mark_fd_nonblocking(signal_pipe
[1]);
49 return signal_pipe
[0];
51 PARA_EMERG_LOG("%s\n", para_strerror(-ret
));
56 * just write one integer to signal pipe
58 static void generic_signal_handler(int s
)
60 write(signal_pipe
[1], &s
, sizeof(int));
61 //fprintf(stderr, "got sig %i, write returned %d\n", s, ret);
67 * \param pid In case a child died, its pid is returned here.
69 * Call waitpid() and print a log message containing the pid and the cause of
72 * \return A (negative) paraslash error code on errors, zero, if no child died,
73 * one otherwise. If and only if the function returns one, the content of \a
78 int para_reap_child(pid_t
*pid
)
81 *pid
= waitpid(-1, &status
, WNOHANG
);
86 return -ERRNO_TO_PARA_ERROR(errno
);
87 if (WIFEXITED(status
))
88 PARA_DEBUG_LOG("child %i exited. Exit status: %i\n", (int)*pid
,
90 else if (WIFSIGNALED(status
))
91 PARA_DEBUG_LOG("child %i was killed by signal %i\n", (int)*pid
,
94 PARA_WARNING_LOG("child %i terminated abormally\n", (int)*pid
);
99 * Paraslash's zombie killer.
101 * It just calls \p para_reap_child() until there are no more children left to
104 void para_reap_children(void)
108 while (para_reap_child(&pid
) > 0)
113 * Wrapper around signal(2).
115 * \param sig The number of the signal to catch.
117 * This installs the generic signal handler for the given signal.
119 * \return This function returns 1 on success and \p -E_SIGNAL_SIG_ERR on errors.
123 int para_install_sighandler(int sig
)
125 PARA_DEBUG_LOG("catching signal %d\n", sig
);
126 return signal(sig
, &generic_signal_handler
) == SIG_ERR
? -E_SIGNAL_SIG_ERR
: 1;
130 * Return the number of next pending signal.
132 * This should be called if the fd for the signal pipe is ready for reading.
134 * \return On success, the number of the received signal is returned. If the
135 * read returned zero or was interrupted by another signal the function returns
136 * 0. Otherwise, a negative error value is returned.
138 int para_next_signal(void)
141 ssize_t r
= read(signal_pipe
[0], &s
, sizeof(s
));
144 PARA_CRIT_LOG("read from signal pipe returned zero\n");
148 if (errno
== EAGAIN
|| errno
== EINTR
)
150 return -ERRNO_TO_PARA_ERROR(errno
);
152 assert(r
== sizeof(s
));
153 PARA_DEBUG_LOG("next signal: %d\n", s
);
158 * Close the write end of the signal pipe.
160 void para_signal_shutdown(void)
162 close(signal_pipe
[1]);