]> git.proxmox.com Git - qemu.git/blame - aio-posix.c
clean unnecessary code: don't check g_strdup arg for NULL
[qemu.git] / aio-posix.c
CommitLineData
a76bab49
AL
1/*
2 * QEMU aio implementation
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 *
6b620ca3
PB
12 * Contributions after 2012-01-13 are licensed under the terms of the
13 * GNU GPL, version 2 or (at your option) any later version.
a76bab49
AL
14 */
15
16#include "qemu-common.h"
737e150e 17#include "block/block.h"
1de7afc9
PB
18#include "qemu/queue.h"
19#include "qemu/sockets.h"
a76bab49 20
a76bab49
AL
21struct AioHandler
22{
cd9ba1eb 23 GPollFD pfd;
a76bab49
AL
24 IOHandler *io_read;
25 IOHandler *io_write;
26 AioFlushHandler *io_flush;
27 int deleted;
6b5f8762 28 int pollfds_idx;
a76bab49 29 void *opaque;
72cf2d4f 30 QLIST_ENTRY(AioHandler) node;
a76bab49
AL
31};
32
a915f4bc 33static AioHandler *find_aio_handler(AioContext *ctx, int fd)
a76bab49
AL
34{
35 AioHandler *node;
36
a915f4bc 37 QLIST_FOREACH(node, &ctx->aio_handlers, node) {
cd9ba1eb 38 if (node->pfd.fd == fd)
79d5ca56
AG
39 if (!node->deleted)
40 return node;
a76bab49
AL
41 }
42
43 return NULL;
44}
45
a915f4bc
PB
46void aio_set_fd_handler(AioContext *ctx,
47 int fd,
48 IOHandler *io_read,
49 IOHandler *io_write,
50 AioFlushHandler *io_flush,
51 void *opaque)
a76bab49
AL
52{
53 AioHandler *node;
54
a915f4bc 55 node = find_aio_handler(ctx, fd);
a76bab49
AL
56
57 /* Are we deleting the fd handler? */
58 if (!io_read && !io_write) {
59 if (node) {
e3713e00
PB
60 g_source_remove_poll(&ctx->source, &node->pfd);
61
a76bab49 62 /* If the lock is held, just mark the node as deleted */
cd9ba1eb 63 if (ctx->walking_handlers) {
a76bab49 64 node->deleted = 1;
cd9ba1eb
PB
65 node->pfd.revents = 0;
66 } else {
a76bab49
AL
67 /* Otherwise, delete it for real. We can't just mark it as
68 * deleted because deleted nodes are only cleaned up after
69 * releasing the walking_handlers lock.
70 */
72cf2d4f 71 QLIST_REMOVE(node, node);
7267c094 72 g_free(node);
a76bab49
AL
73 }
74 }
75 } else {
76 if (node == NULL) {
77 /* Alloc and insert if it's not already there */
7267c094 78 node = g_malloc0(sizeof(AioHandler));
cd9ba1eb 79 node->pfd.fd = fd;
a915f4bc 80 QLIST_INSERT_HEAD(&ctx->aio_handlers, node, node);
e3713e00
PB
81
82 g_source_add_poll(&ctx->source, &node->pfd);
a76bab49
AL
83 }
84 /* Update handler with latest information */
85 node->io_read = io_read;
86 node->io_write = io_write;
87 node->io_flush = io_flush;
88 node->opaque = opaque;
6b5f8762 89 node->pollfds_idx = -1;
cd9ba1eb 90
b5a01a70
SH
91 node->pfd.events = (io_read ? G_IO_IN | G_IO_HUP | G_IO_ERR : 0);
92 node->pfd.events |= (io_write ? G_IO_OUT | G_IO_ERR : 0);
a76bab49 93 }
7ed2b24c
PB
94
95 aio_notify(ctx);
9958c351
PB
96}
97
a915f4bc
PB
98void aio_set_event_notifier(AioContext *ctx,
99 EventNotifier *notifier,
100 EventNotifierHandler *io_read,
101 AioFlushEventNotifierHandler *io_flush)
a76bab49 102{
a915f4bc
PB
103 aio_set_fd_handler(ctx, event_notifier_get_fd(notifier),
104 (IOHandler *)io_read, NULL,
105 (AioFlushHandler *)io_flush, notifier);
a76bab49
AL
106}
107
cd9ba1eb
PB
108bool aio_pending(AioContext *ctx)
109{
110 AioHandler *node;
111
112 QLIST_FOREACH(node, &ctx->aio_handlers, node) {
113 int revents;
114
cd9ba1eb
PB
115 revents = node->pfd.revents & node->pfd.events;
116 if (revents & (G_IO_IN | G_IO_HUP | G_IO_ERR) && node->io_read) {
117 return true;
118 }
119 if (revents & (G_IO_OUT | G_IO_ERR) && node->io_write) {
120 return true;
121 }
122 }
123
124 return false;
125}
126
d0c8d2c0 127static bool aio_dispatch(AioContext *ctx)
a76bab49 128{
9eb0bfca 129 AioHandler *node;
d0c8d2c0 130 bool progress = false;
7c0628b2 131
cd9ba1eb 132 /*
cd9ba1eb
PB
133 * We have to walk very carefully in case qemu_aio_set_fd_handler is
134 * called while we're walking.
135 */
136 node = QLIST_FIRST(&ctx->aio_handlers);
137 while (node) {
138 AioHandler *tmp;
139 int revents;
140
141 ctx->walking_handlers++;
142
143 revents = node->pfd.revents & node->pfd.events;
144 node->pfd.revents = 0;
145
d0c8d2c0
SH
146 if (!node->deleted &&
147 (revents & (G_IO_IN | G_IO_HUP | G_IO_ERR)) &&
148 node->io_read) {
cd9ba1eb
PB
149 node->io_read(node->opaque);
150 progress = true;
151 }
d0c8d2c0
SH
152 if (!node->deleted &&
153 (revents & (G_IO_OUT | G_IO_ERR)) &&
154 node->io_write) {
cd9ba1eb
PB
155 node->io_write(node->opaque);
156 progress = true;
157 }
158
159 tmp = node;
160 node = QLIST_NEXT(node, node);
161
162 ctx->walking_handlers--;
163
164 if (!ctx->walking_handlers && tmp->deleted) {
165 QLIST_REMOVE(tmp, node);
166 g_free(tmp);
167 }
168 }
d0c8d2c0
SH
169 return progress;
170}
171
172bool aio_poll(AioContext *ctx, bool blocking)
173{
d0c8d2c0 174 AioHandler *node;
d0c8d2c0
SH
175 int ret;
176 bool busy, progress;
177
178 progress = false;
179
180 /*
181 * If there are callbacks left that have been queued, we need to call them.
182 * Do not call select in this case, because it is possible that the caller
183 * does not need a complete flush (as is the case for qemu_aio_wait loops).
184 */
185 if (aio_bh_poll(ctx)) {
186 blocking = false;
187 progress = true;
188 }
189
190 if (aio_dispatch(ctx)) {
191 progress = true;
192 }
cd9ba1eb 193
7c0628b2 194 if (progress && !blocking) {
bcdc1857 195 return true;
bafbd6a1 196 }
8febfa26 197
a915f4bc 198 ctx->walking_handlers++;
a76bab49 199
6b5f8762 200 g_array_set_size(ctx->pollfds, 0);
a76bab49 201
6b5f8762 202 /* fill pollfds */
9eb0bfca 203 busy = false;
a915f4bc 204 QLIST_FOREACH(node, &ctx->aio_handlers, node) {
6b5f8762
SH
205 node->pollfds_idx = -1;
206
9eb0bfca
PB
207 /* If there aren't pending AIO operations, don't invoke callbacks.
208 * Otherwise, if there are no AIO requests, qemu_aio_wait() would
209 * wait indefinitely.
210 */
4231c88d 211 if (!node->deleted && node->io_flush) {
9eb0bfca
PB
212 if (node->io_flush(node->opaque) == 0) {
213 continue;
a76bab49 214 }
9eb0bfca
PB
215 busy = true;
216 }
6b5f8762
SH
217 if (!node->deleted && node->pfd.events) {
218 GPollFD pfd = {
219 .fd = node->pfd.fd,
220 .events = node->pfd.events,
221 };
222 node->pollfds_idx = ctx->pollfds->len;
223 g_array_append_val(ctx->pollfds, pfd);
9eb0bfca
PB
224 }
225 }
a76bab49 226
a915f4bc 227 ctx->walking_handlers--;
a76bab49 228
9eb0bfca
PB
229 /* No AIO operations? Get us out of here */
230 if (!busy) {
7c0628b2 231 return progress;
9eb0bfca 232 }
a76bab49 233
9eb0bfca 234 /* wait until next event */
6b5f8762
SH
235 ret = g_poll((GPollFD *)ctx->pollfds->data,
236 ctx->pollfds->len,
237 blocking ? -1 : 0);
9eb0bfca
PB
238
239 /* if we have any readable fds, dispatch event */
240 if (ret > 0) {
6b5f8762
SH
241 QLIST_FOREACH(node, &ctx->aio_handlers, node) {
242 if (node->pollfds_idx != -1) {
243 GPollFD *pfd = &g_array_index(ctx->pollfds, GPollFD,
244 node->pollfds_idx);
245 node->pfd.revents = pfd->revents;
9eb0bfca 246 }
a76bab49 247 }
6b5f8762
SH
248 if (aio_dispatch(ctx)) {
249 progress = true;
250 }
9eb0bfca 251 }
bcdc1857 252
2ea9b58f
KW
253 assert(progress || busy);
254 return true;
a76bab49 255}