blob: 6e297e9ef12464805f5b23ffd8b1942a19bb36c8 [file] [log] [blame]
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +01001/*
2 * Event loop thread
3 *
4 * Copyright Red Hat Inc., 2013
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
Peter Maydelld38ea872016-01-29 17:50:05 +000014#include "qemu/osdep.h"
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +010015#include "qom/object.h"
16#include "qom/object_interfaces.h"
17#include "qemu/module.h"
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +010018#include "block/aio.h"
Paolo Bonzinid16341f2016-10-27 12:49:00 +020019#include "block/block.h"
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +010020#include "sysemu/iothread.h"
Markus Armbrustere688df62018-02-01 12:18:31 +010021#include "qapi/error.h"
Markus Armbruster112ed242018-02-26 17:13:27 -060022#include "qapi/qapi-commands-misc.h"
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +030023#include "qemu/error-report.h"
Paolo Bonziniab28bd22015-07-09 08:55:38 +020024#include "qemu/rcu.h"
Paolo Bonzinie4370162016-10-27 12:48:59 +020025#include "qemu/main-loop.h"
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +010026
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +010027typedef ObjectClass IOThreadClass;
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +010028
29#define IOTHREAD_GET_CLASS(obj) \
30 OBJECT_GET_CLASS(IOThreadClass, obj, TYPE_IOTHREAD)
31#define IOTHREAD_CLASS(klass) \
32 OBJECT_CLASS_CHECK(IOThreadClass, klass, TYPE_IOTHREAD)
33
Peter Xu90c558b2018-03-22 16:56:30 +080034#ifdef CONFIG_POSIX
Stefan Hajnoczicdd7abf2017-01-26 17:01:19 +000035/* Benchmark results from 2016 on NVMe SSD drives show max polling times around
36 * 16-32 microseconds yield IOPS improvements for both iodepth=1 and iodepth=32
37 * workloads.
38 */
39#define IOTHREAD_POLL_MAX_NS_DEFAULT 32768ULL
Peter Xu90c558b2018-03-22 16:56:30 +080040#else
41#define IOTHREAD_POLL_MAX_NS_DEFAULT 0ULL
42#endif
Stefan Hajnoczicdd7abf2017-01-26 17:01:19 +000043
Paolo Bonzinie4370162016-10-27 12:48:59 +020044static __thread IOThread *my_iothread;
45
46AioContext *qemu_get_current_aio_context(void)
47{
48 return my_iothread ? my_iothread->ctx : qemu_get_aio_context();
49}
50
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +010051static void *iothread_run(void *opaque)
52{
53 IOThread *iothread = opaque;
54
Paolo Bonziniab28bd22015-07-09 08:55:38 +020055 rcu_register_thread();
56
Paolo Bonzinie4370162016-10-27 12:48:59 +020057 my_iothread = iothread;
Stefan Hajnoczi88eb7c22014-02-27 11:48:41 +010058 iothread->thread_id = qemu_get_thread_id();
Peter Xu21c4d152019-03-06 19:55:28 +080059 qemu_sem_post(&iothread->init_done_sem);
Stefan Hajnoczi88eb7c22014-02-27 11:48:41 +010060
Stefan Hajnoczi2362a282017-12-07 20:13:19 +000061 while (iothread->running) {
Paolo Bonzini65c1b5b2016-10-27 12:49:06 +020062 aio_poll(iothread->ctx, true);
Wang Yong329163c2017-08-29 15:22:37 +080063
Peter Xu6c953632019-01-29 13:14:32 +080064 /*
65 * We must check the running state again in case it was
66 * changed in previous aio_poll()
67 */
68 if (iothread->running && atomic_read(&iothread->worker_context)) {
Wang Yong329163c2017-08-29 15:22:37 +080069 GMainLoop *loop;
70
71 g_main_context_push_thread_default(iothread->worker_context);
72 iothread->main_loop =
73 g_main_loop_new(iothread->worker_context, TRUE);
74 loop = iothread->main_loop;
75
76 g_main_loop_run(iothread->main_loop);
77 iothread->main_loop = NULL;
78 g_main_loop_unref(loop);
79
80 g_main_context_pop_thread_default(iothread->worker_context);
Wang Yong329163c2017-08-29 15:22:37 +080081 }
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +010082 }
Paolo Bonziniab28bd22015-07-09 08:55:38 +020083
84 rcu_unregister_thread();
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +010085 return NULL;
86}
87
Stefan Hajnoczi2362a282017-12-07 20:13:19 +000088/* Runs in iothread_run() thread */
89static void iothread_stop_bh(void *opaque)
90{
91 IOThread *iothread = opaque;
92
93 iothread->running = false; /* stop iothread_run() */
94
95 if (iothread->main_loop) {
96 g_main_loop_quit(iothread->main_loop);
97 }
98}
99
Peter Xu82d90702017-09-28 10:59:56 +0800100void iothread_stop(IOThread *iothread)
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +0100101{
Peter Xu82d90702017-09-28 10:59:56 +0800102 if (!iothread->ctx || iothread->stopping) {
103 return;
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +0300104 }
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +0100105 iothread->stopping = true;
Stefan Hajnoczi2362a282017-12-07 20:13:19 +0000106 aio_bh_schedule_oneshot(iothread->ctx, iothread_stop_bh, iothread);
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +0100107 qemu_thread_join(&iothread->thread);
Peter Xu82d90702017-09-28 10:59:56 +0800108}
109
Stefan Hajnoczicdd7abf2017-01-26 17:01:19 +0000110static void iothread_instance_init(Object *obj)
111{
112 IOThread *iothread = IOTHREAD(obj);
113
114 iothread->poll_max_ns = IOTHREAD_POLL_MAX_NS_DEFAULT;
Marc-André Lureau14a2d112018-08-21 12:07:16 +0200115 iothread->thread_id = -1;
Peter Xu21c4d152019-03-06 19:55:28 +0800116 qemu_sem_init(&iothread->init_done_sem, 0);
Stefan Hajnoczicdd7abf2017-01-26 17:01:19 +0000117}
118
Fam Zhengdce89212016-09-08 17:28:51 +0800119static void iothread_instance_finalize(Object *obj)
120{
121 IOThread *iothread = IOTHREAD(obj);
122
Peter Xu82d90702017-09-28 10:59:56 +0800123 iothread_stop(iothread);
Marc-André Lureau14a2d112018-08-21 12:07:16 +0200124
Peter Xu15544342018-04-09 16:39:56 +0800125 /*
126 * Before glib2 2.33.10, there is a glib2 bug that GSource context
127 * pointer may not be cleared even if the context has already been
128 * destroyed (while it should). Here let's free the AIO context
129 * earlier to bypass that glib bug.
130 *
131 * We can remove this comment after the minimum supported glib2
132 * version boosts to 2.33.10. Before that, let's free the
133 * GSources first before destroying any GMainContext.
134 */
135 if (iothread->ctx) {
136 aio_context_unref(iothread->ctx);
137 iothread->ctx = NULL;
138 }
Peter Xu5b3ac232017-09-28 10:59:57 +0800139 if (iothread->worker_context) {
140 g_main_context_unref(iothread->worker_context);
141 iothread->worker_context = NULL;
142 }
Peter Xu21c4d152019-03-06 19:55:28 +0800143 qemu_sem_destroy(&iothread->init_done_sem);
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +0100144}
145
146static void iothread_complete(UserCreatable *obj, Error **errp)
147{
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +0300148 Error *local_error = NULL;
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +0100149 IOThread *iothread = IOTHREAD(obj);
Paolo Bonzinid21e8772015-11-24 14:46:44 +0100150 char *name, *thread_name;
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +0100151
152 iothread->stopping = false;
Stefan Hajnoczi2362a282017-12-07 20:13:19 +0000153 iothread->running = true;
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +0300154 iothread->ctx = aio_context_new(&local_error);
155 if (!iothread->ctx) {
156 error_propagate(errp, local_error);
157 return;
158 }
Stefan Hajnoczi88eb7c22014-02-27 11:48:41 +0100159
Stefan Hajnoczi5e5db492016-12-01 19:26:52 +0000160 aio_context_set_poll_params(iothread->ctx,
161 iothread->poll_max_ns,
162 iothread->poll_grow,
163 iothread->poll_shrink,
Stefan Hajnoczi0d9d86f2016-12-01 19:26:45 +0000164 &local_error);
165 if (local_error) {
166 error_propagate(errp, local_error);
167 aio_context_unref(iothread->ctx);
168 iothread->ctx = NULL;
169 return;
170 }
171
Wang Yong329163c2017-08-29 15:22:37 +0800172 iothread->once = (GOnce) G_ONCE_INIT;
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +0100173
174 /* This assumes we are called from a thread with useful CPU affinity for us
175 * to inherit.
176 */
Paolo Bonzinid21e8772015-11-24 14:46:44 +0100177 name = object_get_canonical_path_component(OBJECT(obj));
178 thread_name = g_strdup_printf("IO %s", name);
179 qemu_thread_create(&iothread->thread, thread_name, iothread_run,
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +0100180 iothread, QEMU_THREAD_JOINABLE);
Paolo Bonzinid21e8772015-11-24 14:46:44 +0100181 g_free(thread_name);
182 g_free(name);
Stefan Hajnoczi88eb7c22014-02-27 11:48:41 +0100183
184 /* Wait for initialization to complete */
Stefan Hajnoczi88eb7c22014-02-27 11:48:41 +0100185 while (iothread->thread_id == -1) {
Peter Xu21c4d152019-03-06 19:55:28 +0800186 qemu_sem_wait(&iothread->init_done_sem);
Stefan Hajnoczi88eb7c22014-02-27 11:48:41 +0100187 }
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +0100188}
189
Stefan Hajnoczi5e5db492016-12-01 19:26:52 +0000190typedef struct {
191 const char *name;
192 ptrdiff_t offset; /* field's byte offset in IOThread struct */
193} PollParamInfo;
194
195static PollParamInfo poll_max_ns_info = {
196 "poll-max-ns", offsetof(IOThread, poll_max_ns),
197};
198static PollParamInfo poll_grow_info = {
199 "poll-grow", offsetof(IOThread, poll_grow),
200};
201static PollParamInfo poll_shrink_info = {
202 "poll-shrink", offsetof(IOThread, poll_shrink),
203};
204
205static void iothread_get_poll_param(Object *obj, Visitor *v,
Stefan Hajnoczi0d9d86f2016-12-01 19:26:45 +0000206 const char *name, void *opaque, Error **errp)
207{
208 IOThread *iothread = IOTHREAD(obj);
Stefan Hajnoczi5e5db492016-12-01 19:26:52 +0000209 PollParamInfo *info = opaque;
210 int64_t *field = (void *)iothread + info->offset;
Stefan Hajnoczi0d9d86f2016-12-01 19:26:45 +0000211
Stefan Hajnoczi5e5db492016-12-01 19:26:52 +0000212 visit_type_int64(v, name, field, errp);
Stefan Hajnoczi0d9d86f2016-12-01 19:26:45 +0000213}
214
Stefan Hajnoczi5e5db492016-12-01 19:26:52 +0000215static void iothread_set_poll_param(Object *obj, Visitor *v,
Stefan Hajnoczi0d9d86f2016-12-01 19:26:45 +0000216 const char *name, void *opaque, Error **errp)
217{
218 IOThread *iothread = IOTHREAD(obj);
Stefan Hajnoczi5e5db492016-12-01 19:26:52 +0000219 PollParamInfo *info = opaque;
220 int64_t *field = (void *)iothread + info->offset;
Stefan Hajnoczi0d9d86f2016-12-01 19:26:45 +0000221 Error *local_err = NULL;
222 int64_t value;
223
224 visit_type_int64(v, name, &value, &local_err);
225 if (local_err) {
226 goto out;
227 }
228
229 if (value < 0) {
Stefan Hajnoczi5e5db492016-12-01 19:26:52 +0000230 error_setg(&local_err, "%s value must be in range [0, %"PRId64"]",
231 info->name, INT64_MAX);
Stefan Hajnoczi0d9d86f2016-12-01 19:26:45 +0000232 goto out;
233 }
234
Stefan Hajnoczi5e5db492016-12-01 19:26:52 +0000235 *field = value;
Stefan Hajnoczi0d9d86f2016-12-01 19:26:45 +0000236
237 if (iothread->ctx) {
Stefan Hajnoczi5e5db492016-12-01 19:26:52 +0000238 aio_context_set_poll_params(iothread->ctx,
239 iothread->poll_max_ns,
240 iothread->poll_grow,
241 iothread->poll_shrink,
242 &local_err);
Stefan Hajnoczi0d9d86f2016-12-01 19:26:45 +0000243 }
244
245out:
246 error_propagate(errp, local_err);
247}
248
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +0100249static void iothread_class_init(ObjectClass *klass, void *class_data)
250{
251 UserCreatableClass *ucc = USER_CREATABLE_CLASS(klass);
252 ucc->complete = iothread_complete;
Stefan Hajnoczi0d9d86f2016-12-01 19:26:45 +0000253
254 object_class_property_add(klass, "poll-max-ns", "int",
Stefan Hajnoczi5e5db492016-12-01 19:26:52 +0000255 iothread_get_poll_param,
256 iothread_set_poll_param,
257 NULL, &poll_max_ns_info, &error_abort);
258 object_class_property_add(klass, "poll-grow", "int",
259 iothread_get_poll_param,
260 iothread_set_poll_param,
261 NULL, &poll_grow_info, &error_abort);
262 object_class_property_add(klass, "poll-shrink", "int",
263 iothread_get_poll_param,
264 iothread_set_poll_param,
265 NULL, &poll_shrink_info, &error_abort);
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +0100266}
267
268static const TypeInfo iothread_info = {
269 .name = TYPE_IOTHREAD,
270 .parent = TYPE_OBJECT,
271 .class_init = iothread_class_init,
272 .instance_size = sizeof(IOThread),
Stefan Hajnoczicdd7abf2017-01-26 17:01:19 +0000273 .instance_init = iothread_instance_init,
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +0100274 .instance_finalize = iothread_instance_finalize,
275 .interfaces = (InterfaceInfo[]) {
276 {TYPE_USER_CREATABLE},
277 {}
278 },
279};
280
281static void iothread_register_types(void)
282{
283 type_register_static(&iothread_info);
284}
285
286type_init(iothread_register_types)
287
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +0100288char *iothread_get_id(IOThread *iothread)
289{
290 return object_get_canonical_path_component(OBJECT(iothread));
291}
292
293AioContext *iothread_get_aio_context(IOThread *iothread)
294{
295 return iothread->ctx;
296}
Stefan Hajnoczidc3dd0d2014-02-27 11:48:42 +0100297
298static int query_one_iothread(Object *object, void *opaque)
299{
300 IOThreadInfoList ***prev = opaque;
301 IOThreadInfoList *elem;
302 IOThreadInfo *info;
303 IOThread *iothread;
304
305 iothread = (IOThread *)object_dynamic_cast(object, TYPE_IOTHREAD);
306 if (!iothread) {
307 return 0;
308 }
309
310 info = g_new0(IOThreadInfo, 1);
311 info->id = iothread_get_id(iothread);
312 info->thread_id = iothread->thread_id;
Pavel Hrdina5fc00482017-02-10 10:41:17 +0100313 info->poll_max_ns = iothread->poll_max_ns;
314 info->poll_grow = iothread->poll_grow;
315 info->poll_shrink = iothread->poll_shrink;
Stefan Hajnoczidc3dd0d2014-02-27 11:48:42 +0100316
317 elem = g_new0(IOThreadInfoList, 1);
318 elem->value = info;
319 elem->next = NULL;
320
321 **prev = elem;
322 *prev = &elem->next;
323 return 0;
324}
325
326IOThreadInfoList *qmp_query_iothreads(Error **errp)
327{
328 IOThreadInfoList *head = NULL;
329 IOThreadInfoList **prev = &head;
Daniel P. Berrangebc2256c2015-05-13 17:14:05 +0100330 Object *container = object_get_objects_root();
Stefan Hajnoczidc3dd0d2014-02-27 11:48:42 +0100331
332 object_child_foreach(container, query_one_iothread, &prev);
333 return head;
334}
Fam Zhengdce89212016-09-08 17:28:51 +0800335
Wang Yong329163c2017-08-29 15:22:37 +0800336static gpointer iothread_g_main_context_init(gpointer opaque)
337{
338 AioContext *ctx;
339 IOThread *iothread = opaque;
340 GSource *source;
341
342 iothread->worker_context = g_main_context_new();
343
344 ctx = iothread_get_aio_context(iothread);
345 source = aio_get_g_source(ctx);
346 g_source_attach(source, iothread->worker_context);
347 g_source_unref(source);
348
349 aio_notify(iothread->ctx);
350 return NULL;
351}
352
353GMainContext *iothread_get_g_main_context(IOThread *iothread)
354{
355 g_once(&iothread->once, iothread_g_main_context_init, iothread);
356
357 return iothread->worker_context;
358}
Peter Xu0173e212017-09-28 10:59:55 +0800359
360IOThread *iothread_create(const char *id, Error **errp)
361{
362 Object *obj;
363
364 obj = object_new_with_props(TYPE_IOTHREAD,
365 object_get_internal_root(),
366 id, errp, NULL);
367
368 return IOTHREAD(obj);
369}
370
371void iothread_destroy(IOThread *iothread)
372{
373 object_unparent(OBJECT(iothread));
374}
Stefan Hajnoczifbcc6922017-12-06 14:45:48 +0000375
376/* Lookup IOThread by its id. Only finds user-created objects, not internal
377 * iothread_create() objects. */
378IOThread *iothread_by_id(const char *id)
379{
380 return IOTHREAD(object_resolve_path_type(id, TYPE_IOTHREAD, NULL));
381}