]> git.proxmox.com Git - mirror_qemu.git/blame - util/event_notifier-posix.c
Merge tag 'edk2-20220315-pull-request' of git://git.kraxel.org/qemu into staging
[mirror_qemu.git] / util / event_notifier-posix.c
CommitLineData
2292b339
MT
1/*
2 * event notifier support
3 *
4 * Copyright Red Hat, Inc. 2010
5 *
6 * Authors:
7 * Michael S. Tsirkin <mst@redhat.com>
8 *
6b620ca3
PB
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
2292b339
MT
11 */
12
aafd7584 13#include "qemu/osdep.h"
e80c262b 14#include "qemu-common.h"
f348b6d1 15#include "qemu/cutils.h"
1de7afc9 16#include "qemu/event_notifier.h"
1de7afc9 17#include "qemu/main-loop.h"
e80c262b 18
2292b339
MT
19#ifdef CONFIG_EVENTFD
20#include <sys/eventfd.h>
21#endif
22
330b5836
MA
23#ifdef CONFIG_EVENTFD
24/*
25 * Initialize @e with existing file descriptor @fd.
26 * @fd must be a genuine eventfd object, emulation with pipe won't do.
27 */
e80c262b
PB
28void event_notifier_init_fd(EventNotifier *e, int fd)
29{
d0cc2fbf
PB
30 e->rfd = fd;
31 e->wfd = fd;
e34e47eb 32 e->initialized = true;
e80c262b 33}
330b5836 34#endif
e80c262b 35
2292b339
MT
36int event_notifier_init(EventNotifier *e, int active)
37{
d0cc2fbf
PB
38 int fds[2];
39 int ret;
40
2292b339 41#ifdef CONFIG_EVENTFD
d0cc2fbf 42 ret = eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC);
2292b339 43#else
d0cc2fbf
PB
44 ret = -1;
45 errno = ENOSYS;
2292b339 46#endif
d0cc2fbf
PB
47 if (ret >= 0) {
48 e->rfd = e->wfd = ret;
49 } else {
50 if (errno != ENOSYS) {
51 return -errno;
52 }
53 if (qemu_pipe(fds) < 0) {
54 return -errno;
55 }
56 ret = fcntl_setfl(fds[0], O_NONBLOCK);
57 if (ret < 0) {
58 ret = -errno;
59 goto fail;
60 }
61 ret = fcntl_setfl(fds[1], O_NONBLOCK);
62 if (ret < 0) {
63 ret = -errno;
64 goto fail;
65 }
66 e->rfd = fds[0];
67 e->wfd = fds[1];
68 }
82e27568 69 e->initialized = true;
d0cc2fbf
PB
70 if (active) {
71 event_notifier_set(e);
72 }
73 return 0;
74
75fail:
76 close(fds[0]);
77 close(fds[1]);
78 return ret;
2292b339
MT
79}
80
81void event_notifier_cleanup(EventNotifier *e)
82{
e34e47eb
ML
83 if (!e->initialized) {
84 return;
85 }
86
d0cc2fbf
PB
87 if (e->rfd != e->wfd) {
88 close(e->rfd);
89 }
e34e47eb 90
105e1023 91 e->rfd = -1;
d0cc2fbf 92 close(e->wfd);
aa262928 93 e->wfd = -1;
e34e47eb 94 e->initialized = false;
2292b339
MT
95}
96
12f0b68c 97int event_notifier_get_fd(const EventNotifier *e)
2292b339 98{
d0cc2fbf 99 return e->rfd;
2292b339
MT
100}
101
3bcf0fb3
SL
102int event_notifier_get_wfd(const EventNotifier *e)
103{
104 return e->wfd;
105}
106
2ec10b95
PB
107int event_notifier_set(EventNotifier *e)
108{
d0cc2fbf
PB
109 static const uint64_t value = 1;
110 ssize_t ret;
111
e34e47eb
ML
112 if (!e->initialized) {
113 return -1;
114 }
115
d0cc2fbf
PB
116 do {
117 ret = write(e->wfd, &value, sizeof(value));
118 } while (ret < 0 && errno == EINTR);
119
120 /* EAGAIN is fine, a read must be pending. */
121 if (ret < 0 && errno != EAGAIN) {
122 return -errno;
123 }
124 return 0;
2ec10b95
PB
125}
126
2292b339
MT
127int event_notifier_test_and_clear(EventNotifier *e)
128{
d0cc2fbf
PB
129 int value;
130 ssize_t len;
131 char buffer[512];
132
e34e47eb
ML
133 if (!e->initialized) {
134 return 0;
135 }
136
d0cc2fbf
PB
137 /* Drain the notify pipe. For eventfd, only 8 bytes will be read. */
138 value = 0;
139 do {
140 len = read(e->rfd, buffer, sizeof(buffer));
141 value |= (len > 0);
142 } while ((len == -1 && errno == EINTR) || len == sizeof(buffer));
143
144 return value;
2292b339 145}