dss.ggo: Reorder options and help text.
[dss.git] / signal.c
1 /*
2  * Copyright (C) 2004-2008 Andre Noll <maan@systemlinux.org>
3  *
4  * Licensed under the GPL v2. For licencing details see COPYING.
5  */
6 /** \file signal.c Signal handling functions. */
7
8 #include <string.h>
9 #include <errno.h>
10 #include <signal.h>
11 #include <sys/types.h>
12 #include <sys/wait.h>
13 #include <dirent.h>
14 #include <assert.h>
15 #include <stdio.h>
16 #include <unistd.h>
17 #include <signal.h>
18 #include <stdlib.h>
19
20
21 #include "gcc-compat.h"
22 #include "error.h"
23 #include "log.h"
24 #include "string.h"
25 #include "fd.h"
26
27 static int signal_pipe[2];
28
29 /**
30  * Initialize the signal subsystem.
31  *
32  * This function creates a pipe, the signal pipe, to deliver pending signals to
33  * the application (Bernstein's trick). It should be called during the
34  * application's startup part, followed by subsequent calls to
35  * install_sighandler() for each signal that should be caught.
36  *
37  * signal_init() installs a generic signal handler which is used for all
38  * signals simultaneously. When a signal arrives, this generic signal handler
39  * writes the corresponding signal number to the signal pipe so that the
40  * application can test for pending signals simply by checking the signal pipe
41  * for reading, e.g. by using the select(2) system call.
42  *
43  * \return This function either succeeds or calls exit(2) to terminate
44  * the current process. On success, the file descriptor of the signal pipe is
45  * returned.
46  */
47 int signal_init(void)
48 {
49         int ret;
50         if (pipe(signal_pipe) < 0) {
51                 ret = -ERRNO_TO_DSS_ERROR(errno);
52                 goto err_out;
53         }
54         ret = mark_fd_nonblocking(signal_pipe[0]);
55         if (ret < 0)
56                 goto err_out;
57         ret = mark_fd_nonblocking(signal_pipe[1]);
58         if (ret < 0)
59                 goto err_out;
60         return signal_pipe[0];
61 err_out:
62         DSS_EMERG_LOG("%s\n", dss_strerror(-ret));
63         exit(EXIT_FAILURE);
64 }
65
66 /*
67  * just write one integer to signal pipe
68  */
69 static void generic_signal_handler(int s)
70 {
71         write(signal_pipe[1], &s, sizeof(int));
72         //fprintf(stderr, "got sig %i, write returned %d\n", s, ret);
73 }
74
75 /**
76  * Reap one child.
77  *
78  * \param pid In case a child died, its pid is returned here.
79  *
80  * Call waitpid() and print a log message containing the pid and the cause of
81  * the child's death.
82  *
83  * \return A (negative) error code on errors, zero, if no child died, one
84  * otherwise. If and only if the function returns one, the content of \a pid is
85  * meaningful.
86  *
87  * \sa waitpid(2)
88  */
89 int reap_child(pid_t *pid)
90 {
91         int status;
92         *pid = waitpid(-1, &status, WNOHANG);
93
94         if (!*pid)
95                 return 0;
96         if (*pid < 0)
97                 return -ERRNO_TO_DSS_ERROR(errno);
98         if (WIFEXITED(status))
99                 DSS_DEBUG_LOG("child %i exited. Exit status: %i\n", (int)*pid,
100                         WEXITSTATUS(status));
101         else if (WIFSIGNALED(status))
102                 DSS_DEBUG_LOG("child %i was killed by signal %i\n", (int)*pid,
103                         WTERMSIG(status));
104         else
105                 DSS_WARNING_LOG("child %i terminated abormally\n", (int)*pid);
106         return 1;
107 }
108
109 /**
110  * wrapper around signal(2)
111  * \param sig the number of the signal to catch
112  *
113  * This installs the generic signal handler for the given signal.
114  * \return This function returns 1 on success and \p -E_SIGNAL_SIG_ERR on errors.
115  * \sa signal(2)
116  */
117 int install_sighandler(int sig)
118 {
119         DSS_DEBUG_LOG("catching signal %d\n", sig);
120         return signal(sig, &generic_signal_handler) == SIG_ERR?  -E_SIGNAL_SIG_ERR : 1;
121 }
122
123 /**
124  * return number of next pending signal
125  *
126  * This should be called if the fd for the signal pipe is ready for reading.
127  *
128  * \return On success, the number of the received signal is returned. \p
129  * -E_SIGNAL_READ is returned if a read error occurred while reading the signal
130  * pipe.  If the read was interrupted by another signal the function returns 0.
131  */
132 int next_signal(void)
133 {
134         int s;
135         ssize_t r;
136
137         r = read(signal_pipe[0], &s, sizeof(s));
138         if (r == sizeof(s)) {
139                 DSS_DEBUG_LOG("next signal: %d\n", s);
140                 return s;
141         }
142         return r < 0 && (errno != EAGAIN)? 0 : -ERRNO_TO_DSS_ERROR(errno);
143 }
144
145 /**
146  * Close the signal pipe.
147  */
148 void signal_shutdown(void)
149 {
150         close(signal_pipe[1]);
151 }