blob: 6355c5e90208b5c5f7b70ba74d20bcfd1b510dd5 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Denys Vlasenko385b4562010-03-26 10:09:34 +01002/*
Mike Frysinger7031f622006-05-08 03:20:50 +00003 * Signal pipe infrastructure. A reliable way of delivering signals.
4 *
5 * Russ Dill <Russ.Dill@asu.edu> December 2003
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
Mike Frysinger7031f622006-05-08 03:20:50 +000021#include "common.h"
22
Denys Vlasenko385b4562010-03-26 10:09:34 +010023/* Global variable: we access it from signal handler */
Denis Vlasenko37188322008-02-16 13:20:56 +000024static struct fd_pair signal_pipe;
Mike Frysinger7031f622006-05-08 03:20:50 +000025
26static void signal_handler(int sig)
27{
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +000028 unsigned char ch = sig; /* use char, avoid dealing with partial writes */
Denis Vlasenko37188322008-02-16 13:20:56 +000029 if (write(signal_pipe.wr, &ch, 1) != 1)
Denys Vlasenko6331cf02009-11-13 09:08:27 +010030 bb_perror_msg("can't send signal");
Mike Frysinger7031f622006-05-08 03:20:50 +000031}
32
Mike Frysinger7031f622006-05-08 03:20:50 +000033/* Call this before doing anything else. Sets up the socket pair
34 * and installs the signal handler */
Denis Vlasenkof1980f62008-09-26 09:34:59 +000035void FAST_FUNC udhcp_sp_setup(void)
Mike Frysinger7031f622006-05-08 03:20:50 +000036{
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +000037 /* was socketpair, but it needs AF_UNIX in kernel */
Denis Vlasenko37188322008-02-16 13:20:56 +000038 xpiped_pair(signal_pipe);
39 close_on_exec_on(signal_pipe.rd);
40 close_on_exec_on(signal_pipe.wr);
41 ndelay_on(signal_pipe.wr);
Denis Vlasenko25591c32008-02-16 22:58:56 +000042 bb_signals(0
43 + (1 << SIGUSR1)
44 + (1 << SIGUSR2)
45 + (1 << SIGTERM)
46 , signal_handler);
Mike Frysinger7031f622006-05-08 03:20:50 +000047}
48
Mike Frysinger7031f622006-05-08 03:20:50 +000049/* Quick little function to setup the rfds. Will return the
50 * max_fd for use with select. Limited in that you can only pass
51 * one extra fd */
Denis Vlasenkof1980f62008-09-26 09:34:59 +000052int FAST_FUNC udhcp_sp_fd_set(fd_set *rfds, int extra_fd)
Mike Frysinger7031f622006-05-08 03:20:50 +000053{
54 FD_ZERO(rfds);
Denis Vlasenko37188322008-02-16 13:20:56 +000055 FD_SET(signal_pipe.rd, rfds);
Mike Frysinger7031f622006-05-08 03:20:50 +000056 if (extra_fd >= 0) {
Denis Vlasenko96e1b382007-09-30 23:50:48 +000057 close_on_exec_on(extra_fd);
Mike Frysinger7031f622006-05-08 03:20:50 +000058 FD_SET(extra_fd, rfds);
59 }
Denis Vlasenko37188322008-02-16 13:20:56 +000060 return signal_pipe.rd > extra_fd ? signal_pipe.rd : extra_fd;
Mike Frysinger7031f622006-05-08 03:20:50 +000061}
62
Mike Frysinger7031f622006-05-08 03:20:50 +000063/* Read a signal from the signal pipe. Returns 0 if there is
64 * no signal, -1 on error (and sets errno appropriately), and
65 * your signal on success */
Denis Vlasenkof1980f62008-09-26 09:34:59 +000066int FAST_FUNC udhcp_sp_read(const fd_set *rfds)
Mike Frysinger7031f622006-05-08 03:20:50 +000067{
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +000068 unsigned char sig;
Mike Frysinger7031f622006-05-08 03:20:50 +000069
Denis Vlasenko37188322008-02-16 13:20:56 +000070 if (!FD_ISSET(signal_pipe.rd, rfds))
Mike Frysinger7031f622006-05-08 03:20:50 +000071 return 0;
72
Denis Vlasenko37188322008-02-16 13:20:56 +000073 if (safe_read(signal_pipe.rd, &sig, 1) != 1)
Mike Frysinger7031f622006-05-08 03:20:50 +000074 return -1;
75
76 return sig;
77}