Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@nbd.name>2016-05-17 14:23:28 +0300
committerFelix Fietkau <nbd@nbd.name>2016-05-17 14:23:38 +0300
commit6a75b3b6437d3c98d852c1bca131c8f81646f2f5 (patch)
tree1223e9f430ceab79033ef9952d0b98244d93ba23 /uloop-epoll.c
parent8ae74b4378827d48f655c509d786a6e054e9d0b2 (diff)
uloop: try to use signalfd for signal handling if available
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'uloop-epoll.c')
-rw-r--r--uloop-epoll.c61
1 files changed, 61 insertions, 0 deletions
diff --git a/uloop-epoll.c b/uloop-epoll.c
index bb652fd..9581e12 100644
--- a/uloop-epoll.c
+++ b/uloop-epoll.c
@@ -16,6 +16,8 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#include <sys/signalfd.h>
+
/**
* FIXME: uClibc < 0.9.30.3 does not define EPOLLRDHUP for Linux >= 2.6.17
*/
@@ -23,8 +25,63 @@
#define EPOLLRDHUP 0x2000
#endif
+static void
+uloop_signal_fd_cb(struct uloop_fd *fd, unsigned int events)
+{
+ struct signalfd_siginfo fdsi;
+ int ret;
+
+retry:
+ ret = read(fd->fd, &fdsi, sizeof(fdsi));
+ if (ret < 0 && errno == EINTR)
+ goto retry;
+
+ if (ret != sizeof(fdsi))
+ return;
+
+ uloop_handle_signal(fdsi.ssi_signo);
+}
+
+static bool
+uloop_setup_signalfd(bool add)
+{
+ static struct uloop_fd sfd = {
+ .cb = uloop_signal_fd_cb
+ };
+ static sigset_t prev_mask;
+ sigset_t mask;
+
+ if (signal_fd < 0)
+ return false;
+
+ sigemptyset(&mask);
+
+ if (!add) {
+ uloop_fd_delete(&sfd);
+ sigprocmask(SIG_BLOCK, &prev_mask, NULL);
+ } else {
+ sigaddset(&mask, SIGQUIT);
+ sigaddset(&mask, SIGINT);
+ sigaddset(&mask, SIGTERM);
+ sigaddset(&mask, SIGCHLD);
+ sigprocmask(SIG_BLOCK, &mask, &prev_mask);
+
+ sfd.fd = signal_fd;
+ uloop_fd_add(&sfd, ULOOP_READ | ULOOP_EDGE_TRIGGER);
+ }
+
+ if (signalfd(signal_fd, &mask, SFD_NONBLOCK | SFD_CLOEXEC) < 0) {
+ sigprocmask(SIG_BLOCK, &prev_mask, NULL);
+ return false;
+ }
+
+ return true;
+}
+
int uloop_init(void)
{
+ sigset_t mask;
+
if (poll_fd >= 0)
return 0;
@@ -33,6 +90,10 @@ int uloop_init(void)
return -1;
fcntl(poll_fd, F_SETFD, fcntl(poll_fd, F_GETFD) | FD_CLOEXEC);
+
+ sigemptyset(&mask);
+ signal_fd = signalfd(-1, &mask, SFD_NONBLOCK | SFD_CLOEXEC);
+
return 0;
}