blob: 980bd33e525ec8ea7fbc9c8cbb5d93cf5f7c7200 [file] [log] [blame]
Marcelo Tosattidcc38d12010-10-11 15:31:15 -03001/*
2 * signalfd/eventfd compatibility
3 *
4 * Copyright IBM, Corp. 2008
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
Paolo Bonzini6b620ca2012-01-13 17:44:23 +010012 * Contributions after 2012-01-13 are licensed under the terms of the
13 * GNU GPL, version 2 or (at your option) any later version.
Marcelo Tosattidcc38d12010-10-11 15:31:15 -030014 */
15
Peter Maydellaafd7582016-01-29 17:49:55 +000016#include "qemu/osdep.h"
Marcelo Tosattidcc38d12010-10-11 15:31:15 -030017#include "qemu-common.h"
Jan Kiszka518420d2013-05-02 10:21:18 +020018#include "qemu/thread.h"
Marcelo Tosattidcc38d12010-10-11 15:31:15 -030019
20#include <sys/syscall.h>
Marcelo Tosattidcc38d12010-10-11 15:31:15 -030021
22struct sigfd_compat_info
23{
24 sigset_t mask;
25 int fd;
26};
27
28static void *sigwait_compat(void *opaque)
29{
30 struct sigfd_compat_info *info = opaque;
Marcelo Tosattidcc38d12010-10-11 15:31:15 -030031
Tristan Gingold30faaf72011-02-18 14:17:16 +010032 while (1) {
33 int sig;
34 int err;
Marcelo Tosattidcc38d12010-10-11 15:31:15 -030035
Tristan Gingold30faaf72011-02-18 14:17:16 +010036 err = sigwait(&info->mask, &sig);
37 if (err != 0) {
38 if (errno == EINTR) {
39 continue;
40 } else {
41 return NULL;
42 }
43 } else {
44 struct qemu_signalfd_siginfo buffer;
Marcelo Tosattidcc38d12010-10-11 15:31:15 -030045 size_t offset = 0;
46
Tristan Gingold30faaf72011-02-18 14:17:16 +010047 memset(&buffer, 0, sizeof(buffer));
48 buffer.ssi_signo = sig;
49
Marcelo Tosattidcc38d12010-10-11 15:31:15 -030050 while (offset < sizeof(buffer)) {
51 ssize_t len;
52
Tristan Gingold30faaf72011-02-18 14:17:16 +010053 len = write(info->fd, (char *)&buffer + offset,
Marcelo Tosattidcc38d12010-10-11 15:31:15 -030054 sizeof(buffer) - offset);
55 if (len == -1 && errno == EINTR)
56 continue;
57
58 if (len <= 0) {
Tristan Gingold30faaf72011-02-18 14:17:16 +010059 return NULL;
Marcelo Tosattidcc38d12010-10-11 15:31:15 -030060 }
61
62 offset += len;
63 }
64 }
Tristan Gingold30faaf72011-02-18 14:17:16 +010065 }
Marcelo Tosattidcc38d12010-10-11 15:31:15 -030066}
67
68static int qemu_signalfd_compat(const sigset_t *mask)
69{
Marcelo Tosattidcc38d12010-10-11 15:31:15 -030070 struct sigfd_compat_info *info;
Jan Kiszka518420d2013-05-02 10:21:18 +020071 QemuThread thread;
Marcelo Tosattidcc38d12010-10-11 15:31:15 -030072 int fds[2];
73
74 info = malloc(sizeof(*info));
75 if (info == NULL) {
76 errno = ENOMEM;
77 return -1;
78 }
79
80 if (pipe(fds) == -1) {
81 free(info);
82 return -1;
83 }
84
85 qemu_set_cloexec(fds[0]);
86 qemu_set_cloexec(fds[1]);
87
88 memcpy(&info->mask, mask, sizeof(*mask));
89 info->fd = fds[1];
90
Dr. David Alan Gilbert49001162014-01-30 10:20:32 +000091 qemu_thread_create(&thread, "signalfd_compat", sigwait_compat, info,
92 QEMU_THREAD_DETACHED);
Marcelo Tosattidcc38d12010-10-11 15:31:15 -030093
94 return fds[0];
95}
96
97int qemu_signalfd(const sigset_t *mask)
98{
99#if defined(CONFIG_SIGNALFD)
100 int ret;
101
102 ret = syscall(SYS_signalfd, -1, mask, _NSIG / 8);
103 if (ret != -1) {
104 qemu_set_cloexec(ret);
105 return ret;
106 }
107#endif
108
109 return qemu_signalfd_compat(mask);
110}