]> git.proxmox.com Git - mirror_qemu.git/blame - iothread.c
nbd/server.c: Remove unused field
[mirror_qemu.git] / iothread.c
CommitLineData
be8d8537
SH
1/*
2 * Event loop thread
3 *
c3033fd3 4 * Copyright Red Hat Inc., 2013, 2020
be8d8537
SH
5 *
6 * Authors:
7 * Stefan Hajnoczi <stefanha@redhat.com>
8 *
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.
11 *
12 */
13
d38ea87a 14#include "qemu/osdep.h"
be8d8537
SH
15#include "qom/object.h"
16#include "qom/object_interfaces.h"
17#include "qemu/module.h"
be8d8537 18#include "block/aio.h"
d16341fa 19#include "block/block.h"
be8d8537 20#include "sysemu/iothread.h"
e688df6b 21#include "qapi/error.h"
112ed241 22#include "qapi/qapi-commands-misc.h"
2f78e491 23#include "qemu/error-report.h"
ab28bd23 24#include "qemu/rcu.h"
e4370165 25#include "qemu/main-loop.h"
be8d8537 26
be8d8537 27typedef ObjectClass IOThreadClass;
be8d8537 28
8110fa1d
EH
29DECLARE_CLASS_CHECKERS(IOThreadClass, IOTHREAD,
30 TYPE_IOTHREAD)
be8d8537 31
90c558be 32#ifdef CONFIG_POSIX
cdd7abfd
SH
33/* Benchmark results from 2016 on NVMe SSD drives show max polling times around
34 * 16-32 microseconds yield IOPS improvements for both iodepth=1 and iodepth=32
35 * workloads.
36 */
37#define IOTHREAD_POLL_MAX_NS_DEFAULT 32768ULL
90c558be
PX
38#else
39#define IOTHREAD_POLL_MAX_NS_DEFAULT 0ULL
40#endif
cdd7abfd 41
be8d8537
SH
42static void *iothread_run(void *opaque)
43{
44 IOThread *iothread = opaque;
45
ab28bd23 46 rcu_register_thread();
b60ec76a
PX
47 /*
48 * g_main_context_push_thread_default() must be called before anything
49 * in this new thread uses glib.
50 */
51 g_main_context_push_thread_default(iothread->worker_context);
5f50be9b 52 qemu_set_current_aio_context(iothread->ctx);
88eb7c29 53 iothread->thread_id = qemu_get_thread_id();
21c4d15b 54 qemu_sem_post(&iothread->init_done_sem);
88eb7c29 55
2362a28e 56 while (iothread->running) {
6ca20620
PX
57 /*
58 * Note: from functional-wise the g_main_loop_run() below can
59 * already cover the aio_poll() events, but we can't run the
60 * main loop unconditionally because explicit aio_poll() here
61 * is faster than g_main_loop_run() when we do not need the
62 * gcontext at all (e.g., pure block layer iothreads). In
63 * other words, when we want to run the gcontext with the
64 * iothread we need to pay some performance for functionality.
65 */
65c1b5b6 66 aio_poll(iothread->ctx, true);
329163cb 67
6c95363d
PX
68 /*
69 * We must check the running state again in case it was
70 * changed in previous aio_poll()
71 */
d73415a3 72 if (iothread->running && qatomic_read(&iothread->run_gcontext)) {
329163cb 73 g_main_loop_run(iothread->main_loop);
329163cb 74 }
be8d8537 75 }
ab28bd23 76
b60ec76a 77 g_main_context_pop_thread_default(iothread->worker_context);
ab28bd23 78 rcu_unregister_thread();
be8d8537
SH
79 return NULL;
80}
81
2362a28e
SH
82/* Runs in iothread_run() thread */
83static void iothread_stop_bh(void *opaque)
84{
85 IOThread *iothread = opaque;
86
87 iothread->running = false; /* stop iothread_run() */
88
89 if (iothread->main_loop) {
90 g_main_loop_quit(iothread->main_loop);
91 }
92}
93
82d90705 94void iothread_stop(IOThread *iothread)
be8d8537 95{
82d90705
PX
96 if (!iothread->ctx || iothread->stopping) {
97 return;
2f78e491 98 }
be8d8537 99 iothread->stopping = true;
2362a28e 100 aio_bh_schedule_oneshot(iothread->ctx, iothread_stop_bh, iothread);
be8d8537 101 qemu_thread_join(&iothread->thread);
82d90705
PX
102}
103
cdd7abfd
SH
104static void iothread_instance_init(Object *obj)
105{
106 IOThread *iothread = IOTHREAD(obj);
107
108 iothread->poll_max_ns = IOTHREAD_POLL_MAX_NS_DEFAULT;
14a2d118 109 iothread->thread_id = -1;
21c4d15b 110 qemu_sem_init(&iothread->init_done_sem, 0);
b506e0f1 111 /* By default, we don't run gcontext */
d73415a3 112 qatomic_set(&iothread->run_gcontext, 0);
cdd7abfd
SH
113}
114
dce8921b
FZ
115static void iothread_instance_finalize(Object *obj)
116{
117 IOThread *iothread = IOTHREAD(obj);
118
82d90705 119 iothread_stop(iothread);
14a2d118 120
15544349
PX
121 /*
122 * Before glib2 2.33.10, there is a glib2 bug that GSource context
123 * pointer may not be cleared even if the context has already been
124 * destroyed (while it should). Here let's free the AIO context
125 * earlier to bypass that glib bug.
126 *
127 * We can remove this comment after the minimum supported glib2
128 * version boosts to 2.33.10. Before that, let's free the
129 * GSources first before destroying any GMainContext.
130 */
131 if (iothread->ctx) {
132 aio_context_unref(iothread->ctx);
133 iothread->ctx = NULL;
134 }
5b3ac23f
PX
135 if (iothread->worker_context) {
136 g_main_context_unref(iothread->worker_context);
137 iothread->worker_context = NULL;
0bd2d233
PX
138 g_main_loop_unref(iothread->main_loop);
139 iothread->main_loop = NULL;
5b3ac23f 140 }
21c4d15b 141 qemu_sem_destroy(&iothread->init_done_sem);
be8d8537
SH
142}
143
b506e0f1
PX
144static void iothread_init_gcontext(IOThread *iothread)
145{
146 GSource *source;
147
148 iothread->worker_context = g_main_context_new();
149 source = aio_get_g_source(iothread_get_aio_context(iothread));
150 g_source_attach(source, iothread->worker_context);
151 g_source_unref(source);
0bd2d233 152 iothread->main_loop = g_main_loop_new(iothread->worker_context, TRUE);
b506e0f1
PX
153}
154
1793ad02
SG
155static void iothread_set_aio_context_params(IOThread *iothread, Error **errp)
156{
157 ERRP_GUARD();
158
159 aio_context_set_poll_params(iothread->ctx,
160 iothread->poll_max_ns,
161 iothread->poll_grow,
162 iothread->poll_shrink,
163 errp);
164 if (*errp) {
165 return;
166 }
167
168 aio_context_set_aio_params(iothread->ctx,
169 iothread->aio_max_batch,
170 errp);
171}
172
be8d8537
SH
173static void iothread_complete(UserCreatable *obj, Error **errp)
174{
2f78e491 175 Error *local_error = NULL;
be8d8537 176 IOThread *iothread = IOTHREAD(obj);
7a309cc9 177 char *thread_name;
be8d8537
SH
178
179 iothread->stopping = false;
2362a28e 180 iothread->running = true;
668f62ec 181 iothread->ctx = aio_context_new(errp);
2f78e491 182 if (!iothread->ctx) {
2f78e491
CN
183 return;
184 }
88eb7c29 185
b506e0f1
PX
186 /*
187 * Init one GMainContext for the iothread unconditionally, even if
188 * it's not used
189 */
190 iothread_init_gcontext(iothread);
191
1793ad02 192 iothread_set_aio_context_params(iothread, &local_error);
0d9d86fb
SH
193 if (local_error) {
194 error_propagate(errp, local_error);
195 aio_context_unref(iothread->ctx);
196 iothread->ctx = NULL;
197 return;
198 }
199
be8d8537
SH
200 /* This assumes we are called from a thread with useful CPU affinity for us
201 * to inherit.
202 */
7a309cc9
MA
203 thread_name = g_strdup_printf("IO %s",
204 object_get_canonical_path_component(OBJECT(obj)));
d21e8776 205 qemu_thread_create(&iothread->thread, thread_name, iothread_run,
be8d8537 206 iothread, QEMU_THREAD_JOINABLE);
d21e8776 207 g_free(thread_name);
88eb7c29
SH
208
209 /* Wait for initialization to complete */
88eb7c29 210 while (iothread->thread_id == -1) {
21c4d15b 211 qemu_sem_wait(&iothread->init_done_sem);
88eb7c29 212 }
be8d8537
SH
213}
214
5e5db499
SH
215typedef struct {
216 const char *name;
217 ptrdiff_t offset; /* field's byte offset in IOThread struct */
f0ed36a6 218} IOThreadParamInfo;
5e5db499 219
f0ed36a6 220static IOThreadParamInfo poll_max_ns_info = {
5e5db499
SH
221 "poll-max-ns", offsetof(IOThread, poll_max_ns),
222};
f0ed36a6 223static IOThreadParamInfo poll_grow_info = {
5e5db499
SH
224 "poll-grow", offsetof(IOThread, poll_grow),
225};
f0ed36a6 226static IOThreadParamInfo poll_shrink_info = {
5e5db499
SH
227 "poll-shrink", offsetof(IOThread, poll_shrink),
228};
f0ed36a6 229static IOThreadParamInfo aio_max_batch_info = {
1793ad02
SG
230 "aio-max-batch", offsetof(IOThread, aio_max_batch),
231};
5e5db499 232
0445409d 233static void iothread_get_param(Object *obj, Visitor *v,
1cc7eada 234 const char *name, IOThreadParamInfo *info, Error **errp)
0d9d86fb
SH
235{
236 IOThread *iothread = IOTHREAD(obj);
5e5db499 237 int64_t *field = (void *)iothread + info->offset;
0d9d86fb 238
5e5db499 239 visit_type_int64(v, name, field, errp);
0d9d86fb
SH
240}
241
0445409d 242static bool iothread_set_param(Object *obj, Visitor *v,
1cc7eada 243 const char *name, IOThreadParamInfo *info, Error **errp)
0d9d86fb
SH
244{
245 IOThread *iothread = IOTHREAD(obj);
5e5db499 246 int64_t *field = (void *)iothread + info->offset;
0d9d86fb
SH
247 int64_t value;
248
668f62ec 249 if (!visit_type_int64(v, name, &value, errp)) {
0445409d 250 return false;
0d9d86fb
SH
251 }
252
253 if (value < 0) {
dcfe4805 254 error_setg(errp, "%s value must be in range [0, %" PRId64 "]",
5e5db499 255 info->name, INT64_MAX);
0445409d 256 return false;
0d9d86fb
SH
257 }
258
5e5db499 259 *field = value;
0d9d86fb 260
0445409d
SG
261 return true;
262}
263
264static void iothread_get_poll_param(Object *obj, Visitor *v,
265 const char *name, void *opaque, Error **errp)
266{
1cc7eada 267 IOThreadParamInfo *info = opaque;
0445409d 268
1cc7eada 269 iothread_get_param(obj, v, name, info, errp);
0445409d
SG
270}
271
272static void iothread_set_poll_param(Object *obj, Visitor *v,
273 const char *name, void *opaque, Error **errp)
274{
275 IOThread *iothread = IOTHREAD(obj);
1cc7eada 276 IOThreadParamInfo *info = opaque;
0445409d 277
1cc7eada 278 if (!iothread_set_param(obj, v, name, info, errp)) {
0445409d
SG
279 return;
280 }
281
0d9d86fb 282 if (iothread->ctx) {
5e5db499
SH
283 aio_context_set_poll_params(iothread->ctx,
284 iothread->poll_max_ns,
285 iothread->poll_grow,
286 iothread->poll_shrink,
dcfe4805 287 errp);
0d9d86fb 288 }
0d9d86fb
SH
289}
290
1793ad02
SG
291static void iothread_get_aio_param(Object *obj, Visitor *v,
292 const char *name, void *opaque, Error **errp)
293{
1cc7eada 294 IOThreadParamInfo *info = opaque;
1793ad02 295
1cc7eada 296 iothread_get_param(obj, v, name, info, errp);
1793ad02
SG
297}
298
299static void iothread_set_aio_param(Object *obj, Visitor *v,
300 const char *name, void *opaque, Error **errp)
301{
302 IOThread *iothread = IOTHREAD(obj);
1cc7eada 303 IOThreadParamInfo *info = opaque;
1793ad02 304
1cc7eada 305 if (!iothread_set_param(obj, v, name, info, errp)) {
1793ad02
SG
306 return;
307 }
308
309 if (iothread->ctx) {
310 aio_context_set_aio_params(iothread->ctx,
311 iothread->aio_max_batch,
312 errp);
313 }
314}
315
be8d8537
SH
316static void iothread_class_init(ObjectClass *klass, void *class_data)
317{
318 UserCreatableClass *ucc = USER_CREATABLE_CLASS(klass);
319 ucc->complete = iothread_complete;
0d9d86fb
SH
320
321 object_class_property_add(klass, "poll-max-ns", "int",
5e5db499
SH
322 iothread_get_poll_param,
323 iothread_set_poll_param,
d2623129 324 NULL, &poll_max_ns_info);
5e5db499
SH
325 object_class_property_add(klass, "poll-grow", "int",
326 iothread_get_poll_param,
327 iothread_set_poll_param,
d2623129 328 NULL, &poll_grow_info);
5e5db499
SH
329 object_class_property_add(klass, "poll-shrink", "int",
330 iothread_get_poll_param,
331 iothread_set_poll_param,
d2623129 332 NULL, &poll_shrink_info);
1793ad02
SG
333 object_class_property_add(klass, "aio-max-batch", "int",
334 iothread_get_aio_param,
335 iothread_set_aio_param,
336 NULL, &aio_max_batch_info);
be8d8537
SH
337}
338
339static const TypeInfo iothread_info = {
340 .name = TYPE_IOTHREAD,
341 .parent = TYPE_OBJECT,
342 .class_init = iothread_class_init,
343 .instance_size = sizeof(IOThread),
cdd7abfd 344 .instance_init = iothread_instance_init,
be8d8537
SH
345 .instance_finalize = iothread_instance_finalize,
346 .interfaces = (InterfaceInfo[]) {
347 {TYPE_USER_CREATABLE},
348 {}
349 },
350};
351
352static void iothread_register_types(void)
353{
354 type_register_static(&iothread_info);
355}
356
357type_init(iothread_register_types)
358
be8d8537
SH
359char *iothread_get_id(IOThread *iothread)
360{
7a309cc9 361 return g_strdup(object_get_canonical_path_component(OBJECT(iothread)));
be8d8537
SH
362}
363
364AioContext *iothread_get_aio_context(IOThread *iothread)
365{
366 return iothread->ctx;
367}
dc3dd0d2
SH
368
369static int query_one_iothread(Object *object, void *opaque)
370{
c3033fd3 371 IOThreadInfoList ***tail = opaque;
dc3dd0d2
SH
372 IOThreadInfo *info;
373 IOThread *iothread;
374
375 iothread = (IOThread *)object_dynamic_cast(object, TYPE_IOTHREAD);
376 if (!iothread) {
377 return 0;
378 }
379
380 info = g_new0(IOThreadInfo, 1);
381 info->id = iothread_get_id(iothread);
382 info->thread_id = iothread->thread_id;
5fc00480
PH
383 info->poll_max_ns = iothread->poll_max_ns;
384 info->poll_grow = iothread->poll_grow;
385 info->poll_shrink = iothread->poll_shrink;
1793ad02 386 info->aio_max_batch = iothread->aio_max_batch;
dc3dd0d2 387
c3033fd3 388 QAPI_LIST_APPEND(*tail, info);
dc3dd0d2
SH
389 return 0;
390}
391
392IOThreadInfoList *qmp_query_iothreads(Error **errp)
393{
394 IOThreadInfoList *head = NULL;
395 IOThreadInfoList **prev = &head;
bc2256c4 396 Object *container = object_get_objects_root();
dc3dd0d2
SH
397
398 object_child_foreach(container, query_one_iothread, &prev);
399 return head;
400}
dce8921b 401
329163cb
WY
402GMainContext *iothread_get_g_main_context(IOThread *iothread)
403{
d73415a3 404 qatomic_set(&iothread->run_gcontext, 1);
b506e0f1 405 aio_notify(iothread->ctx);
329163cb
WY
406 return iothread->worker_context;
407}
0173e21b
PX
408
409IOThread *iothread_create(const char *id, Error **errp)
410{
411 Object *obj;
412
413 obj = object_new_with_props(TYPE_IOTHREAD,
414 object_get_internal_root(),
415 id, errp, NULL);
416
417 return IOTHREAD(obj);
418}
419
420void iothread_destroy(IOThread *iothread)
421{
422 object_unparent(OBJECT(iothread));
423}
fbcc6923
SH
424
425/* Lookup IOThread by its id. Only finds user-created objects, not internal
426 * iothread_create() objects. */
427IOThread *iothread_by_id(const char *id)
428{
429 return IOTHREAD(object_resolve_path_type(id, TYPE_IOTHREAD, NULL));
430}
ad22c308
EU
431
432bool qemu_in_iothread(void)
433{
434 return qemu_get_current_aio_context() == qemu_get_aio_context() ?
435 false : true;
436}