blob: 1b3463cb004aebc698eb9fab88e40ff899034159 [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
Stefan Hajnoczicdd7abf2017-01-26 17:01:19 +000034/* Benchmark results from 2016 on NVMe SSD drives show max polling times around
35 * 16-32 microseconds yield IOPS improvements for both iodepth=1 and iodepth=32
36 * workloads.
37 */
38#define IOTHREAD_POLL_MAX_NS_DEFAULT 32768ULL
39
Paolo Bonzinie4370162016-10-27 12:48:59 +020040static __thread IOThread *my_iothread;
41
42AioContext *qemu_get_current_aio_context(void)
43{
44 return my_iothread ? my_iothread->ctx : qemu_get_aio_context();
45}
46
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +010047static void *iothread_run(void *opaque)
48{
49 IOThread *iothread = opaque;
50
Paolo Bonziniab28bd22015-07-09 08:55:38 +020051 rcu_register_thread();
52
Paolo Bonzinie4370162016-10-27 12:48:59 +020053 my_iothread = iothread;
Stefan Hajnoczi88eb7c22014-02-27 11:48:41 +010054 qemu_mutex_lock(&iothread->init_done_lock);
55 iothread->thread_id = qemu_get_thread_id();
56 qemu_cond_signal(&iothread->init_done_cond);
57 qemu_mutex_unlock(&iothread->init_done_lock);
58
Stefan Hajnoczi2362a282017-12-07 20:13:19 +000059 while (iothread->running) {
Paolo Bonzini65c1b5b2016-10-27 12:49:06 +020060 aio_poll(iothread->ctx, true);
Wang Yong329163c2017-08-29 15:22:37 +080061
62 if (atomic_read(&iothread->worker_context)) {
63 GMainLoop *loop;
64
65 g_main_context_push_thread_default(iothread->worker_context);
66 iothread->main_loop =
67 g_main_loop_new(iothread->worker_context, TRUE);
68 loop = iothread->main_loop;
69
70 g_main_loop_run(iothread->main_loop);
71 iothread->main_loop = NULL;
72 g_main_loop_unref(loop);
73
74 g_main_context_pop_thread_default(iothread->worker_context);
Wang Yong329163c2017-08-29 15:22:37 +080075 }
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +010076 }
Paolo Bonziniab28bd22015-07-09 08:55:38 +020077
78 rcu_unregister_thread();
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +010079 return NULL;
80}
81
Stefan Hajnoczi2362a282017-12-07 20:13:19 +000082/* 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
Peter Xu82d90702017-09-28 10:59:56 +080094void iothread_stop(IOThread *iothread)
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +010095{
Peter Xu82d90702017-09-28 10:59:56 +080096 if (!iothread->ctx || iothread->stopping) {
97 return;
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +030098 }
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +010099 iothread->stopping = true;
Stefan Hajnoczi2362a282017-12-07 20:13:19 +0000100 aio_bh_schedule_oneshot(iothread->ctx, iothread_stop_bh, iothread);
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +0100101 qemu_thread_join(&iothread->thread);
Peter Xu82d90702017-09-28 10:59:56 +0800102}
103
Stefan Hajnoczicdd7abf2017-01-26 17:01:19 +0000104static void iothread_instance_init(Object *obj)
105{
106 IOThread *iothread = IOTHREAD(obj);
107
108 iothread->poll_max_ns = IOTHREAD_POLL_MAX_NS_DEFAULT;
109}
110
Fam Zhengdce89212016-09-08 17:28:51 +0800111static void iothread_instance_finalize(Object *obj)
112{
113 IOThread *iothread = IOTHREAD(obj);
114
Peter Xu82d90702017-09-28 10:59:56 +0800115 iothread_stop(iothread);
Peter Xu5b3ac232017-09-28 10:59:57 +0800116 if (iothread->worker_context) {
117 g_main_context_unref(iothread->worker_context);
118 iothread->worker_context = NULL;
119 }
Stefan Hajnoczi88eb7c22014-02-27 11:48:41 +0100120 qemu_cond_destroy(&iothread->init_done_cond);
121 qemu_mutex_destroy(&iothread->init_done_lock);
Lin Maeb7b5c32016-09-26 13:29:58 +0800122 if (!iothread->ctx) {
123 return;
124 }
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +0100125 aio_context_unref(iothread->ctx);
126}
127
128static void iothread_complete(UserCreatable *obj, Error **errp)
129{
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +0300130 Error *local_error = NULL;
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +0100131 IOThread *iothread = IOTHREAD(obj);
Paolo Bonzinid21e8772015-11-24 14:46:44 +0100132 char *name, *thread_name;
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +0100133
134 iothread->stopping = false;
Stefan Hajnoczi2362a282017-12-07 20:13:19 +0000135 iothread->running = true;
Stefan Hajnoczi88eb7c22014-02-27 11:48:41 +0100136 iothread->thread_id = -1;
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +0300137 iothread->ctx = aio_context_new(&local_error);
138 if (!iothread->ctx) {
139 error_propagate(errp, local_error);
140 return;
141 }
Stefan Hajnoczi88eb7c22014-02-27 11:48:41 +0100142
Stefan Hajnoczi5e5db492016-12-01 19:26:52 +0000143 aio_context_set_poll_params(iothread->ctx,
144 iothread->poll_max_ns,
145 iothread->poll_grow,
146 iothread->poll_shrink,
Stefan Hajnoczi0d9d86f2016-12-01 19:26:45 +0000147 &local_error);
148 if (local_error) {
149 error_propagate(errp, local_error);
150 aio_context_unref(iothread->ctx);
151 iothread->ctx = NULL;
152 return;
153 }
154
Stefan Hajnoczi88eb7c22014-02-27 11:48:41 +0100155 qemu_mutex_init(&iothread->init_done_lock);
156 qemu_cond_init(&iothread->init_done_cond);
Wang Yong329163c2017-08-29 15:22:37 +0800157 iothread->once = (GOnce) G_ONCE_INIT;
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +0100158
159 /* This assumes we are called from a thread with useful CPU affinity for us
160 * to inherit.
161 */
Paolo Bonzinid21e8772015-11-24 14:46:44 +0100162 name = object_get_canonical_path_component(OBJECT(obj));
163 thread_name = g_strdup_printf("IO %s", name);
164 qemu_thread_create(&iothread->thread, thread_name, iothread_run,
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +0100165 iothread, QEMU_THREAD_JOINABLE);
Paolo Bonzinid21e8772015-11-24 14:46:44 +0100166 g_free(thread_name);
167 g_free(name);
Stefan Hajnoczi88eb7c22014-02-27 11:48:41 +0100168
169 /* Wait for initialization to complete */
170 qemu_mutex_lock(&iothread->init_done_lock);
171 while (iothread->thread_id == -1) {
172 qemu_cond_wait(&iothread->init_done_cond,
173 &iothread->init_done_lock);
174 }
175 qemu_mutex_unlock(&iothread->init_done_lock);
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +0100176}
177
Stefan Hajnoczi5e5db492016-12-01 19:26:52 +0000178typedef struct {
179 const char *name;
180 ptrdiff_t offset; /* field's byte offset in IOThread struct */
181} PollParamInfo;
182
183static PollParamInfo poll_max_ns_info = {
184 "poll-max-ns", offsetof(IOThread, poll_max_ns),
185};
186static PollParamInfo poll_grow_info = {
187 "poll-grow", offsetof(IOThread, poll_grow),
188};
189static PollParamInfo poll_shrink_info = {
190 "poll-shrink", offsetof(IOThread, poll_shrink),
191};
192
193static void iothread_get_poll_param(Object *obj, Visitor *v,
Stefan Hajnoczi0d9d86f2016-12-01 19:26:45 +0000194 const char *name, void *opaque, Error **errp)
195{
196 IOThread *iothread = IOTHREAD(obj);
Stefan Hajnoczi5e5db492016-12-01 19:26:52 +0000197 PollParamInfo *info = opaque;
198 int64_t *field = (void *)iothread + info->offset;
Stefan Hajnoczi0d9d86f2016-12-01 19:26:45 +0000199
Stefan Hajnoczi5e5db492016-12-01 19:26:52 +0000200 visit_type_int64(v, name, field, errp);
Stefan Hajnoczi0d9d86f2016-12-01 19:26:45 +0000201}
202
Stefan Hajnoczi5e5db492016-12-01 19:26:52 +0000203static void iothread_set_poll_param(Object *obj, Visitor *v,
Stefan Hajnoczi0d9d86f2016-12-01 19:26:45 +0000204 const char *name, void *opaque, Error **errp)
205{
206 IOThread *iothread = IOTHREAD(obj);
Stefan Hajnoczi5e5db492016-12-01 19:26:52 +0000207 PollParamInfo *info = opaque;
208 int64_t *field = (void *)iothread + info->offset;
Stefan Hajnoczi0d9d86f2016-12-01 19:26:45 +0000209 Error *local_err = NULL;
210 int64_t value;
211
212 visit_type_int64(v, name, &value, &local_err);
213 if (local_err) {
214 goto out;
215 }
216
217 if (value < 0) {
Stefan Hajnoczi5e5db492016-12-01 19:26:52 +0000218 error_setg(&local_err, "%s value must be in range [0, %"PRId64"]",
219 info->name, INT64_MAX);
Stefan Hajnoczi0d9d86f2016-12-01 19:26:45 +0000220 goto out;
221 }
222
Stefan Hajnoczi5e5db492016-12-01 19:26:52 +0000223 *field = value;
Stefan Hajnoczi0d9d86f2016-12-01 19:26:45 +0000224
225 if (iothread->ctx) {
Stefan Hajnoczi5e5db492016-12-01 19:26:52 +0000226 aio_context_set_poll_params(iothread->ctx,
227 iothread->poll_max_ns,
228 iothread->poll_grow,
229 iothread->poll_shrink,
230 &local_err);
Stefan Hajnoczi0d9d86f2016-12-01 19:26:45 +0000231 }
232
233out:
234 error_propagate(errp, local_err);
235}
236
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +0100237static void iothread_class_init(ObjectClass *klass, void *class_data)
238{
239 UserCreatableClass *ucc = USER_CREATABLE_CLASS(klass);
240 ucc->complete = iothread_complete;
Stefan Hajnoczi0d9d86f2016-12-01 19:26:45 +0000241
242 object_class_property_add(klass, "poll-max-ns", "int",
Stefan Hajnoczi5e5db492016-12-01 19:26:52 +0000243 iothread_get_poll_param,
244 iothread_set_poll_param,
245 NULL, &poll_max_ns_info, &error_abort);
246 object_class_property_add(klass, "poll-grow", "int",
247 iothread_get_poll_param,
248 iothread_set_poll_param,
249 NULL, &poll_grow_info, &error_abort);
250 object_class_property_add(klass, "poll-shrink", "int",
251 iothread_get_poll_param,
252 iothread_set_poll_param,
253 NULL, &poll_shrink_info, &error_abort);
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +0100254}
255
256static const TypeInfo iothread_info = {
257 .name = TYPE_IOTHREAD,
258 .parent = TYPE_OBJECT,
259 .class_init = iothread_class_init,
260 .instance_size = sizeof(IOThread),
Stefan Hajnoczicdd7abf2017-01-26 17:01:19 +0000261 .instance_init = iothread_instance_init,
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +0100262 .instance_finalize = iothread_instance_finalize,
263 .interfaces = (InterfaceInfo[]) {
264 {TYPE_USER_CREATABLE},
265 {}
266 },
267};
268
269static void iothread_register_types(void)
270{
271 type_register_static(&iothread_info);
272}
273
274type_init(iothread_register_types)
275
Stefan Hajnoczibe8d8532014-03-03 11:30:05 +0100276char *iothread_get_id(IOThread *iothread)
277{
278 return object_get_canonical_path_component(OBJECT(iothread));
279}
280
281AioContext *iothread_get_aio_context(IOThread *iothread)
282{
283 return iothread->ctx;
284}
Stefan Hajnoczidc3dd0d2014-02-27 11:48:42 +0100285
286static int query_one_iothread(Object *object, void *opaque)
287{
288 IOThreadInfoList ***prev = opaque;
289 IOThreadInfoList *elem;
290 IOThreadInfo *info;
291 IOThread *iothread;
292
293 iothread = (IOThread *)object_dynamic_cast(object, TYPE_IOTHREAD);
294 if (!iothread) {
295 return 0;
296 }
297
298 info = g_new0(IOThreadInfo, 1);
299 info->id = iothread_get_id(iothread);
300 info->thread_id = iothread->thread_id;
Pavel Hrdina5fc00482017-02-10 10:41:17 +0100301 info->poll_max_ns = iothread->poll_max_ns;
302 info->poll_grow = iothread->poll_grow;
303 info->poll_shrink = iothread->poll_shrink;
Stefan Hajnoczidc3dd0d2014-02-27 11:48:42 +0100304
305 elem = g_new0(IOThreadInfoList, 1);
306 elem->value = info;
307 elem->next = NULL;
308
309 **prev = elem;
310 *prev = &elem->next;
311 return 0;
312}
313
314IOThreadInfoList *qmp_query_iothreads(Error **errp)
315{
316 IOThreadInfoList *head = NULL;
317 IOThreadInfoList **prev = &head;
Daniel P. Berrangebc2256c2015-05-13 17:14:05 +0100318 Object *container = object_get_objects_root();
Stefan Hajnoczidc3dd0d2014-02-27 11:48:42 +0100319
320 object_child_foreach(container, query_one_iothread, &prev);
321 return head;
322}
Fam Zhengdce89212016-09-08 17:28:51 +0800323
Wang Yong329163c2017-08-29 15:22:37 +0800324static gpointer iothread_g_main_context_init(gpointer opaque)
325{
326 AioContext *ctx;
327 IOThread *iothread = opaque;
328 GSource *source;
329
330 iothread->worker_context = g_main_context_new();
331
332 ctx = iothread_get_aio_context(iothread);
333 source = aio_get_g_source(ctx);
334 g_source_attach(source, iothread->worker_context);
335 g_source_unref(source);
336
337 aio_notify(iothread->ctx);
338 return NULL;
339}
340
341GMainContext *iothread_get_g_main_context(IOThread *iothread)
342{
343 g_once(&iothread->once, iothread_g_main_context_init, iothread);
344
345 return iothread->worker_context;
346}
Peter Xu0173e212017-09-28 10:59:55 +0800347
348IOThread *iothread_create(const char *id, Error **errp)
349{
350 Object *obj;
351
352 obj = object_new_with_props(TYPE_IOTHREAD,
353 object_get_internal_root(),
354 id, errp, NULL);
355
356 return IOTHREAD(obj);
357}
358
359void iothread_destroy(IOThread *iothread)
360{
361 object_unparent(OBJECT(iothread));
362}
Stefan Hajnoczifbcc6922017-12-06 14:45:48 +0000363
364/* Lookup IOThread by its id. Only finds user-created objects, not internal
365 * iothread_create() objects. */
366IOThread *iothread_by_id(const char *id)
367{
368 return IOTHREAD(object_resolve_path_type(id, TYPE_IOTHREAD, NULL));
369}