]> git.proxmox.com Git - mirror_qemu.git/blame - include/block/aio.h
AioContext: fix broken placement of event_notifier_test_and_clear
[mirror_qemu.git] / include / block / aio.h
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 *
12 */
13
14#ifndef QEMU_AIO_H
15#define QEMU_AIO_H
16
6a1751b7 17#include "qemu/typedefs.h"
a76bab49 18#include "qemu-common.h"
1de7afc9
PB
19#include "qemu/queue.h"
20#include "qemu/event_notifier.h"
dcc772e2 21#include "qemu/thread.h"
98563fc3 22#include "qemu/rfifolock.h"
dae21b98 23#include "qemu/timer.h"
a76bab49 24
7c84b1b8 25typedef struct BlockAIOCB BlockAIOCB;
097310b5 26typedef void BlockCompletionFunc(void *opaque, int ret);
85e8dab1 27
d7331bed 28typedef struct AIOCBInfo {
7c84b1b8
MA
29 void (*cancel_async)(BlockAIOCB *acb);
30 AioContext *(*get_aio_context)(BlockAIOCB *acb);
8c82e9a4 31 size_t aiocb_size;
d7331bed 32} AIOCBInfo;
85e8dab1 33
7c84b1b8 34struct BlockAIOCB {
d7331bed 35 const AIOCBInfo *aiocb_info;
85e8dab1 36 BlockDriverState *bs;
097310b5 37 BlockCompletionFunc *cb;
85e8dab1 38 void *opaque;
f197fe2b 39 int refcnt;
85e8dab1
PB
40};
41
d7331bed 42void *qemu_aio_get(const AIOCBInfo *aiocb_info, BlockDriverState *bs,
097310b5 43 BlockCompletionFunc *cb, void *opaque);
8007429a 44void qemu_aio_unref(void *p);
f197fe2b 45void qemu_aio_ref(void *p);
85e8dab1 46
f627aab1
PB
47typedef struct AioHandler AioHandler;
48typedef void QEMUBHFunc(void *opaque);
49typedef void IOHandler(void *opaque);
50
6a1751b7 51struct AioContext {
e3713e00
PB
52 GSource source;
53
98563fc3
SH
54 /* Protects all fields from multi-threaded access */
55 RFifoLock lock;
56
a915f4bc
PB
57 /* The list of registered AIO handlers */
58 QLIST_HEAD(, AioHandler) aio_handlers;
59
60 /* This is a simple lock used to protect the aio_handlers list.
61 * Specifically, it's used to ensure that no callbacks are removed while
62 * we're walking and dispatching callbacks.
63 */
64 int walking_handlers;
65
eabc9779
PB
66 /* Used to avoid unnecessary event_notifier_set calls in aio_notify;
67 * accessed with atomic primitives. If this field is 0, everything
68 * (file descriptors, bottom halves, timers) will be re-evaluated
69 * before the next blocking poll(), thus the event_notifier_set call
70 * can be skipped. If it is non-zero, you may need to wake up a
71 * concurrent aio_poll or the glib main event loop, making
72 * event_notifier_set necessary.
73 *
74 * Bit 0 is reserved for GSource usage of the AioContext, and is 1
75 * between a call to aio_ctx_check and the next call to aio_ctx_dispatch.
76 * Bits 1-31 simply count the number of active calls to aio_poll
77 * that are in the prepare or poll phase.
78 *
79 * The GSource and aio_poll must use a different mechanism because
80 * there is no certainty that a call to GSource's prepare callback
81 * (via g_main_context_prepare) is indeed followed by check and
82 * dispatch. It's not clear whether this would be a bug, but let's
83 * play safe and allow it---it will just cause extra calls to
84 * event_notifier_set until the next call to dispatch.
85 *
86 * Instead, the aio_poll calls include both the prepare and the
87 * dispatch phase, hence a simple counter is enough for them.
0ceb849b 88 */
eabc9779 89 uint32_t notify_me;
0ceb849b 90
dcc772e2
LPF
91 /* lock to protect between bh's adders and deleter */
92 QemuMutex bh_lock;
0ceb849b 93
f627aab1
PB
94 /* Anchor of the list of Bottom Halves belonging to the context */
95 struct QEMUBH *first_bh;
96
97 /* A simple lock used to protect the first_bh list, and ensure that
98 * no callbacks are removed while we're walking and dispatching callbacks.
99 */
100 int walking_bh;
2f4dc3c1
PB
101
102 /* Used for aio_notify. */
103 EventNotifier notifier;
6b5f8762 104
9b34277d
SH
105 /* Thread pool for performing work and receiving completion callbacks */
106 struct ThreadPool *thread_pool;
dae21b98
AB
107
108 /* TimerLists for calling timers - one per clock type */
109 QEMUTimerListGroup tlg;
6a1751b7 110};
f627aab1 111
f627aab1
PB
112/**
113 * aio_context_new: Allocate a new AioContext.
114 *
115 * AioContext provide a mini event-loop that can be waited on synchronously.
116 * They also provide bottom halves, a service to execute a piece of code
117 * as soon as possible.
118 */
2f78e491 119AioContext *aio_context_new(Error **errp);
f627aab1 120
e3713e00
PB
121/**
122 * aio_context_ref:
123 * @ctx: The AioContext to operate on.
124 *
125 * Add a reference to an AioContext.
126 */
127void aio_context_ref(AioContext *ctx);
128
129/**
130 * aio_context_unref:
131 * @ctx: The AioContext to operate on.
132 *
133 * Drop a reference to an AioContext.
134 */
135void aio_context_unref(AioContext *ctx);
136
98563fc3 137/* Take ownership of the AioContext. If the AioContext will be shared between
49110174
PB
138 * threads, and a thread does not want to be interrupted, it will have to
139 * take ownership around calls to aio_poll(). Otherwise, aio_poll()
140 * automatically takes care of calling aio_context_acquire and
141 * aio_context_release.
98563fc3 142 *
49110174
PB
143 * Access to timers and BHs from a thread that has not acquired AioContext
144 * is possible. Access to callbacks for now must be done while the AioContext
145 * is owned by the thread (FIXME).
98563fc3
SH
146 */
147void aio_context_acquire(AioContext *ctx);
148
149/* Relinquish ownership of the AioContext. */
150void aio_context_release(AioContext *ctx);
151
f627aab1
PB
152/**
153 * aio_bh_new: Allocate a new bottom half structure.
154 *
155 * Bottom halves are lightweight callbacks whose invocation is guaranteed
156 * to be wait-free, thread-safe and signal-safe. The #QEMUBH structure
157 * is opaque and must be allocated prior to its use.
158 */
159QEMUBH *aio_bh_new(AioContext *ctx, QEMUBHFunc *cb, void *opaque);
160
2f4dc3c1
PB
161/**
162 * aio_notify: Force processing of pending events.
163 *
164 * Similar to signaling a condition variable, aio_notify forces
165 * aio_wait to exit, so that the next call will re-examine pending events.
166 * The caller of aio_notify will usually call aio_wait again very soon,
167 * or go through another iteration of the GLib main loop. Hence, aio_notify
168 * also has the side effect of recalculating the sets of file descriptors
169 * that the main loop waits for.
170 *
171 * Calling aio_notify is rarely necessary, because for example scheduling
172 * a bottom half calls it already.
173 */
174void aio_notify(AioContext *ctx);
175
f627aab1
PB
176/**
177 * aio_bh_poll: Poll bottom halves for an AioContext.
178 *
179 * These are internal functions used by the QEMU main loop.
dcc772e2
LPF
180 * And notice that multiple occurrences of aio_bh_poll cannot
181 * be called concurrently
f627aab1
PB
182 */
183int aio_bh_poll(AioContext *ctx);
f627aab1
PB
184
185/**
186 * qemu_bh_schedule: Schedule a bottom half.
187 *
188 * Scheduling a bottom half interrupts the main loop and causes the
189 * execution of the callback that was passed to qemu_bh_new.
190 *
191 * Bottom halves that are scheduled from a bottom half handler are instantly
192 * invoked. This can create an infinite loop if a bottom half handler
193 * schedules itself.
194 *
195 * @bh: The bottom half to be scheduled.
196 */
197void qemu_bh_schedule(QEMUBH *bh);
198
199/**
200 * qemu_bh_cancel: Cancel execution of a bottom half.
201 *
202 * Canceling execution of a bottom half undoes the effect of calls to
203 * qemu_bh_schedule without freeing its resources yet. While cancellation
204 * itself is also wait-free and thread-safe, it can of course race with the
205 * loop that executes bottom halves unless you are holding the iothread
206 * mutex. This makes it mostly useless if you are not holding the mutex.
207 *
208 * @bh: The bottom half to be canceled.
209 */
210void qemu_bh_cancel(QEMUBH *bh);
211
212/**
213 *qemu_bh_delete: Cancel execution of a bottom half and free its resources.
214 *
215 * Deleting a bottom half frees the memory that was allocated for it by
216 * qemu_bh_new. It also implies canceling the bottom half if it was
217 * scheduled.
dcc772e2
LPF
218 * This func is async. The bottom half will do the delete action at the finial
219 * end.
f627aab1
PB
220 *
221 * @bh: The bottom half to be deleted.
222 */
223void qemu_bh_delete(QEMUBH *bh);
224
cd9ba1eb 225/* Return whether there are any pending callbacks from the GSource
a3462c65
PB
226 * attached to the AioContext, before g_poll is invoked.
227 *
228 * This is used internally in the implementation of the GSource.
229 */
230bool aio_prepare(AioContext *ctx);
231
232/* Return whether there are any pending callbacks from the GSource
233 * attached to the AioContext, after g_poll is invoked.
cd9ba1eb
PB
234 *
235 * This is used internally in the implementation of the GSource.
236 */
237bool aio_pending(AioContext *ctx);
238
e4c7e2d1
PB
239/* Dispatch any pending callbacks from the GSource attached to the AioContext.
240 *
241 * This is used internally in the implementation of the GSource.
242 */
243bool aio_dispatch(AioContext *ctx);
244
7c0628b2
PB
245/* Progress in completing AIO work to occur. This can issue new pending
246 * aio as a result of executing I/O completion or bh callbacks.
bcdc1857 247 *
acfb23ad
PB
248 * Return whether any progress was made by executing AIO or bottom half
249 * handlers. If @blocking == true, this should always be true except
250 * if someone called aio_notify.
7c0628b2
PB
251 *
252 * If there are no pending bottom halves, but there are pending AIO
253 * operations, it may not be possible to make any progress without
254 * blocking. If @blocking is true, this function will wait until one
255 * or more AIO events have completed, to ensure something has moved
256 * before returning.
7c0628b2
PB
257 */
258bool aio_poll(AioContext *ctx, bool blocking);
a76bab49
AL
259
260/* Register a file descriptor and associated callbacks. Behaves very similarly
6484e422 261 * to qemu_set_fd_handler. Unlike qemu_set_fd_handler, these callbacks will
87f68d31 262 * be invoked when using aio_poll().
a76bab49
AL
263 *
264 * Code that invokes AIO completion functions should rely on this function
265 * instead of qemu_set_fd_handler[2].
266 */
a915f4bc
PB
267void aio_set_fd_handler(AioContext *ctx,
268 int fd,
269 IOHandler *io_read,
270 IOHandler *io_write,
a915f4bc 271 void *opaque);
9958c351
PB
272
273/* Register an event notifier and associated callbacks. Behaves very similarly
274 * to event_notifier_set_handler. Unlike event_notifier_set_handler, these callbacks
87f68d31 275 * will be invoked when using aio_poll().
9958c351
PB
276 *
277 * Code that invokes AIO completion functions should rely on this function
278 * instead of event_notifier_set_handler.
279 */
a915f4bc
PB
280void aio_set_event_notifier(AioContext *ctx,
281 EventNotifier *notifier,
f2e5dca4 282 EventNotifierHandler *io_read);
a915f4bc 283
e3713e00
PB
284/* Return a GSource that lets the main loop poll the file descriptors attached
285 * to this AioContext.
286 */
287GSource *aio_get_g_source(AioContext *ctx);
288
9b34277d
SH
289/* Return the ThreadPool bound to this AioContext */
290struct ThreadPool *aio_get_thread_pool(AioContext *ctx);
291
4e29e831
AB
292/**
293 * aio_timer_new:
294 * @ctx: the aio context
295 * @type: the clock type
296 * @scale: the scale
297 * @cb: the callback to call on timer expiry
298 * @opaque: the opaque pointer to pass to the callback
299 *
300 * Allocate a new timer attached to the context @ctx.
301 * The function is responsible for memory allocation.
302 *
303 * The preferred interface is aio_timer_init. Use that
304 * unless you really need dynamic memory allocation.
305 *
306 * Returns: a pointer to the new timer
307 */
308static inline QEMUTimer *aio_timer_new(AioContext *ctx, QEMUClockType type,
309 int scale,
310 QEMUTimerCB *cb, void *opaque)
311{
312 return timer_new_tl(ctx->tlg.tl[type], scale, cb, opaque);
313}
314
315/**
316 * aio_timer_init:
317 * @ctx: the aio context
318 * @ts: the timer
319 * @type: the clock type
320 * @scale: the scale
321 * @cb: the callback to call on timer expiry
322 * @opaque: the opaque pointer to pass to the callback
323 *
324 * Initialise a new timer attached to the context @ctx.
325 * The caller is responsible for memory allocation.
326 */
327static inline void aio_timer_init(AioContext *ctx,
328 QEMUTimer *ts, QEMUClockType type,
329 int scale,
330 QEMUTimerCB *cb, void *opaque)
331{
f186aa97 332 timer_init_tl(ts, ctx->tlg.tl[type], scale, cb, opaque);
4e29e831
AB
333}
334
845ca10d
PB
335/**
336 * aio_compute_timeout:
337 * @ctx: the aio context
338 *
339 * Compute the timeout that a blocking aio_poll should use.
340 */
341int64_t aio_compute_timeout(AioContext *ctx);
342
a76bab49 343#endif