]> git.tuebingen.mpg.de Git - dss.git/blob - signal.c
Bump version to 0.0.2.
[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\n", s);
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  *
112  * \param sig The number of the signal to catch.
113  *
114  * This installs the generic signal handler for the given signal.
115  *
116  * \return This function returns 1 on success and \p -E_SIGNAL_SIG_ERR on errors.
117  * \sa signal(2)
118  */
119 int install_sighandler(int sig)
120 {
121         DSS_DEBUG_LOG("catching signal %d\n", sig);
122         if (signal(sig, &generic_signal_handler) != SIG_ERR)
123                 return 1;
124         make_err_msg("signal %d", sig);
125         return -E_SIGNAL_SIG_ERR;
126 }
127
128 /**
129  * Return number of next pending signal.
130  *
131  * This should be called if the fd for the signal pipe is ready for reading.
132  *
133  * \return On success, the number of the received signal is returned.
134  * If the read was interrupted by another signal the function returns 0.
135  * Otherwise a negative error code is returned.
136  */
137 int next_signal(void)
138 {
139         int s, err;
140         ssize_t r;
141
142         r = read(signal_pipe[0], &s, sizeof(s));
143         if (r == sizeof(s)) {
144                 DSS_DEBUG_LOG("next signal: %d\n", s);
145                 return s;
146         }
147         err = errno;
148         assert(r < 0);
149         if (err == EAGAIN)
150                 return 0;
151         make_err_msg("failed to read from signal pipe");
152         return -ERRNO_TO_DSS_ERROR(err);
153 }
154
155 /**
156  * Close the signal pipe.
157  */
158 void signal_shutdown(void)
159 {
160         close(signal_pipe[1]);
161 }