]>
Commit | Line | Data |
---|---|---|
be8d8537 SH |
1 | /* |
2 | * Event loop thread | |
3 | * | |
4 | * Copyright Red Hat Inc., 2013 | |
5 | * | |
6 | * Authors: | |
7 | * Stefan Hajnoczi <[email protected]> | |
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 | 27 | typedef ObjectClass IOThreadClass; |
be8d8537 SH |
28 | |
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 | ||
90c558be | 34 | #ifdef CONFIG_POSIX |
cdd7abfd SH |
35 | /* 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 | |
90c558be PX |
40 | #else |
41 | #define IOTHREAD_POLL_MAX_NS_DEFAULT 0ULL | |
42 | #endif | |
cdd7abfd | 43 | |
e4370165 PB |
44 | static __thread IOThread *my_iothread; |
45 | ||
46 | AioContext *qemu_get_current_aio_context(void) | |
47 | { | |
48 | return my_iothread ? my_iothread->ctx : qemu_get_aio_context(); | |
49 | } | |
50 | ||
be8d8537 SH |
51 | static void *iothread_run(void *opaque) |
52 | { | |
53 | IOThread *iothread = opaque; | |
54 | ||
ab28bd23 | 55 | rcu_register_thread(); |
b60ec76a PX |
56 | /* |
57 | * g_main_context_push_thread_default() must be called before anything | |
58 | * in this new thread uses glib. | |
59 | */ | |
60 | g_main_context_push_thread_default(iothread->worker_context); | |
e4370165 | 61 | my_iothread = iothread; |
88eb7c29 | 62 | iothread->thread_id = qemu_get_thread_id(); |
21c4d15b | 63 | qemu_sem_post(&iothread->init_done_sem); |
88eb7c29 | 64 | |
2362a28e | 65 | while (iothread->running) { |
6ca20620 PX |
66 | /* |
67 | * Note: from functional-wise the g_main_loop_run() below can | |
68 | * already cover the aio_poll() events, but we can't run the | |
69 | * main loop unconditionally because explicit aio_poll() here | |
70 | * is faster than g_main_loop_run() when we do not need the | |
71 | * gcontext at all (e.g., pure block layer iothreads). In | |
72 | * other words, when we want to run the gcontext with the | |
73 | * iothread we need to pay some performance for functionality. | |
74 | */ | |
65c1b5b6 | 75 | aio_poll(iothread->ctx, true); |
329163cb | 76 | |
6c95363d PX |
77 | /* |
78 | * We must check the running state again in case it was | |
79 | * changed in previous aio_poll() | |
80 | */ | |
b506e0f1 | 81 | if (iothread->running && atomic_read(&iothread->run_gcontext)) { |
329163cb | 82 | g_main_loop_run(iothread->main_loop); |
329163cb | 83 | } |
be8d8537 | 84 | } |
ab28bd23 | 85 | |
b60ec76a | 86 | g_main_context_pop_thread_default(iothread->worker_context); |
ab28bd23 | 87 | rcu_unregister_thread(); |
be8d8537 SH |
88 | return NULL; |
89 | } | |
90 | ||
2362a28e SH |
91 | /* Runs in iothread_run() thread */ |
92 | static void iothread_stop_bh(void *opaque) | |
93 | { | |
94 | IOThread *iothread = opaque; | |
95 | ||
96 | iothread->running = false; /* stop iothread_run() */ | |
97 | ||
98 | if (iothread->main_loop) { | |
99 | g_main_loop_quit(iothread->main_loop); | |
100 | } | |
101 | } | |
102 | ||
82d90705 | 103 | void iothread_stop(IOThread *iothread) |
be8d8537 | 104 | { |
82d90705 PX |
105 | if (!iothread->ctx || iothread->stopping) { |
106 | return; | |
2f78e491 | 107 | } |
be8d8537 | 108 | iothread->stopping = true; |
2362a28e | 109 | aio_bh_schedule_oneshot(iothread->ctx, iothread_stop_bh, iothread); |
be8d8537 | 110 | qemu_thread_join(&iothread->thread); |
82d90705 PX |
111 | } |
112 | ||
cdd7abfd SH |
113 | static void iothread_instance_init(Object *obj) |
114 | { | |
115 | IOThread *iothread = IOTHREAD(obj); | |
116 | ||
117 | iothread->poll_max_ns = IOTHREAD_POLL_MAX_NS_DEFAULT; | |
14a2d118 | 118 | iothread->thread_id = -1; |
21c4d15b | 119 | qemu_sem_init(&iothread->init_done_sem, 0); |
b506e0f1 PX |
120 | /* By default, we don't run gcontext */ |
121 | atomic_set(&iothread->run_gcontext, 0); | |
cdd7abfd SH |
122 | } |
123 | ||
dce8921b FZ |
124 | static void iothread_instance_finalize(Object *obj) |
125 | { | |
126 | IOThread *iothread = IOTHREAD(obj); | |
127 | ||
82d90705 | 128 | iothread_stop(iothread); |
14a2d118 | 129 | |
15544349 PX |
130 | /* |
131 | * Before glib2 2.33.10, there is a glib2 bug that GSource context | |
132 | * pointer may not be cleared even if the context has already been | |
133 | * destroyed (while it should). Here let's free the AIO context | |
134 | * earlier to bypass that glib bug. | |
135 | * | |
136 | * We can remove this comment after the minimum supported glib2 | |
137 | * version boosts to 2.33.10. Before that, let's free the | |
138 | * GSources first before destroying any GMainContext. | |
139 | */ | |
140 | if (iothread->ctx) { | |
141 | aio_context_unref(iothread->ctx); | |
142 | iothread->ctx = NULL; | |
143 | } | |
5b3ac23f PX |
144 | if (iothread->worker_context) { |
145 | g_main_context_unref(iothread->worker_context); | |
146 | iothread->worker_context = NULL; | |
0bd2d233 PX |
147 | g_main_loop_unref(iothread->main_loop); |
148 | iothread->main_loop = NULL; | |
5b3ac23f | 149 | } |
21c4d15b | 150 | qemu_sem_destroy(&iothread->init_done_sem); |
be8d8537 SH |
151 | } |
152 | ||
b506e0f1 PX |
153 | static void iothread_init_gcontext(IOThread *iothread) |
154 | { | |
155 | GSource *source; | |
156 | ||
157 | iothread->worker_context = g_main_context_new(); | |
158 | source = aio_get_g_source(iothread_get_aio_context(iothread)); | |
159 | g_source_attach(source, iothread->worker_context); | |
160 | g_source_unref(source); | |
0bd2d233 | 161 | iothread->main_loop = g_main_loop_new(iothread->worker_context, TRUE); |
b506e0f1 PX |
162 | } |
163 | ||
be8d8537 SH |
164 | static void iothread_complete(UserCreatable *obj, Error **errp) |
165 | { | |
2f78e491 | 166 | Error *local_error = NULL; |
be8d8537 | 167 | IOThread *iothread = IOTHREAD(obj); |
d21e8776 | 168 | char *name, *thread_name; |
be8d8537 SH |
169 | |
170 | iothread->stopping = false; | |
2362a28e | 171 | iothread->running = true; |
668f62ec | 172 | iothread->ctx = aio_context_new(errp); |
2f78e491 | 173 | if (!iothread->ctx) { |
2f78e491 CN |
174 | return; |
175 | } | |
88eb7c29 | 176 | |
b506e0f1 PX |
177 | /* |
178 | * Init one GMainContext for the iothread unconditionally, even if | |
179 | * it's not used | |
180 | */ | |
181 | iothread_init_gcontext(iothread); | |
182 | ||
5e5db499 SH |
183 | aio_context_set_poll_params(iothread->ctx, |
184 | iothread->poll_max_ns, | |
185 | iothread->poll_grow, | |
186 | iothread->poll_shrink, | |
0d9d86fb SH |
187 | &local_error); |
188 | if (local_error) { | |
189 | error_propagate(errp, local_error); | |
190 | aio_context_unref(iothread->ctx); | |
191 | iothread->ctx = NULL; | |
192 | return; | |
193 | } | |
194 | ||
be8d8537 SH |
195 | /* This assumes we are called from a thread with useful CPU affinity for us |
196 | * to inherit. | |
197 | */ | |
d21e8776 PB |
198 | name = object_get_canonical_path_component(OBJECT(obj)); |
199 | thread_name = g_strdup_printf("IO %s", name); | |
200 | qemu_thread_create(&iothread->thread, thread_name, iothread_run, | |
be8d8537 | 201 | iothread, QEMU_THREAD_JOINABLE); |
d21e8776 PB |
202 | g_free(thread_name); |
203 | g_free(name); | |
88eb7c29 SH |
204 | |
205 | /* Wait for initialization to complete */ | |
88eb7c29 | 206 | while (iothread->thread_id == -1) { |
21c4d15b | 207 | qemu_sem_wait(&iothread->init_done_sem); |
88eb7c29 | 208 | } |
be8d8537 SH |
209 | } |
210 | ||
5e5db499 SH |
211 | typedef struct { |
212 | const char *name; | |
213 | ptrdiff_t offset; /* field's byte offset in IOThread struct */ | |
214 | } PollParamInfo; | |
215 | ||
216 | static PollParamInfo poll_max_ns_info = { | |
217 | "poll-max-ns", offsetof(IOThread, poll_max_ns), | |
218 | }; | |
219 | static PollParamInfo poll_grow_info = { | |
220 | "poll-grow", offsetof(IOThread, poll_grow), | |
221 | }; | |
222 | static PollParamInfo poll_shrink_info = { | |
223 | "poll-shrink", offsetof(IOThread, poll_shrink), | |
224 | }; | |
225 | ||
226 | static void iothread_get_poll_param(Object *obj, Visitor *v, | |
0d9d86fb SH |
227 | const char *name, void *opaque, Error **errp) |
228 | { | |
229 | IOThread *iothread = IOTHREAD(obj); | |
5e5db499 SH |
230 | PollParamInfo *info = opaque; |
231 | int64_t *field = (void *)iothread + info->offset; | |
0d9d86fb | 232 | |
5e5db499 | 233 | visit_type_int64(v, name, field, errp); |
0d9d86fb SH |
234 | } |
235 | ||
5e5db499 | 236 | static void iothread_set_poll_param(Object *obj, Visitor *v, |
0d9d86fb SH |
237 | const char *name, void *opaque, Error **errp) |
238 | { | |
239 | IOThread *iothread = IOTHREAD(obj); | |
5e5db499 SH |
240 | PollParamInfo *info = opaque; |
241 | int64_t *field = (void *)iothread + info->offset; | |
0d9d86fb SH |
242 | int64_t value; |
243 | ||
668f62ec | 244 | if (!visit_type_int64(v, name, &value, errp)) { |
dcfe4805 | 245 | return; |
0d9d86fb SH |
246 | } |
247 | ||
248 | if (value < 0) { | |
dcfe4805 | 249 | error_setg(errp, "%s value must be in range [0, %" PRId64 "]", |
5e5db499 | 250 | info->name, INT64_MAX); |
dcfe4805 | 251 | return; |
0d9d86fb SH |
252 | } |
253 | ||
5e5db499 | 254 | *field = value; |
0d9d86fb SH |
255 | |
256 | if (iothread->ctx) { | |
5e5db499 SH |
257 | aio_context_set_poll_params(iothread->ctx, |
258 | iothread->poll_max_ns, | |
259 | iothread->poll_grow, | |
260 | iothread->poll_shrink, | |
dcfe4805 | 261 | errp); |
0d9d86fb | 262 | } |
0d9d86fb SH |
263 | } |
264 | ||
be8d8537 SH |
265 | static void iothread_class_init(ObjectClass *klass, void *class_data) |
266 | { | |
267 | UserCreatableClass *ucc = USER_CREATABLE_CLASS(klass); | |
268 | ucc->complete = iothread_complete; | |
0d9d86fb SH |
269 | |
270 | object_class_property_add(klass, "poll-max-ns", "int", | |
5e5db499 SH |
271 | iothread_get_poll_param, |
272 | iothread_set_poll_param, | |
d2623129 | 273 | NULL, &poll_max_ns_info); |
5e5db499 SH |
274 | object_class_property_add(klass, "poll-grow", "int", |
275 | iothread_get_poll_param, | |
276 | iothread_set_poll_param, | |
d2623129 | 277 | NULL, &poll_grow_info); |
5e5db499 SH |
278 | object_class_property_add(klass, "poll-shrink", "int", |
279 | iothread_get_poll_param, | |
280 | iothread_set_poll_param, | |
d2623129 | 281 | NULL, &poll_shrink_info); |
be8d8537 SH |
282 | } |
283 | ||
284 | static const TypeInfo iothread_info = { | |
285 | .name = TYPE_IOTHREAD, | |
286 | .parent = TYPE_OBJECT, | |
287 | .class_init = iothread_class_init, | |
288 | .instance_size = sizeof(IOThread), | |
cdd7abfd | 289 | .instance_init = iothread_instance_init, |
be8d8537 SH |
290 | .instance_finalize = iothread_instance_finalize, |
291 | .interfaces = (InterfaceInfo[]) { | |
292 | {TYPE_USER_CREATABLE}, | |
293 | {} | |
294 | }, | |
295 | }; | |
296 | ||
297 | static void iothread_register_types(void) | |
298 | { | |
299 | type_register_static(&iothread_info); | |
300 | } | |
301 | ||
302 | type_init(iothread_register_types) | |
303 | ||
be8d8537 SH |
304 | char *iothread_get_id(IOThread *iothread) |
305 | { | |
306 | return object_get_canonical_path_component(OBJECT(iothread)); | |
307 | } | |
308 | ||
309 | AioContext *iothread_get_aio_context(IOThread *iothread) | |
310 | { | |
311 | return iothread->ctx; | |
312 | } | |
dc3dd0d2 SH |
313 | |
314 | static int query_one_iothread(Object *object, void *opaque) | |
315 | { | |
316 | IOThreadInfoList ***prev = opaque; | |
317 | IOThreadInfoList *elem; | |
318 | IOThreadInfo *info; | |
319 | IOThread *iothread; | |
320 | ||
321 | iothread = (IOThread *)object_dynamic_cast(object, TYPE_IOTHREAD); | |
322 | if (!iothread) { | |
323 | return 0; | |
324 | } | |
325 | ||
326 | info = g_new0(IOThreadInfo, 1); | |
327 | info->id = iothread_get_id(iothread); | |
328 | info->thread_id = iothread->thread_id; | |
5fc00480 PH |
329 | info->poll_max_ns = iothread->poll_max_ns; |
330 | info->poll_grow = iothread->poll_grow; | |
331 | info->poll_shrink = iothread->poll_shrink; | |
dc3dd0d2 SH |
332 | |
333 | elem = g_new0(IOThreadInfoList, 1); | |
334 | elem->value = info; | |
335 | elem->next = NULL; | |
336 | ||
337 | **prev = elem; | |
338 | *prev = &elem->next; | |
339 | return 0; | |
340 | } | |
341 | ||
342 | IOThreadInfoList *qmp_query_iothreads(Error **errp) | |
343 | { | |
344 | IOThreadInfoList *head = NULL; | |
345 | IOThreadInfoList **prev = &head; | |
bc2256c4 | 346 | Object *container = object_get_objects_root(); |
dc3dd0d2 SH |
347 | |
348 | object_child_foreach(container, query_one_iothread, &prev); | |
349 | return head; | |
350 | } | |
dce8921b | 351 | |
329163cb WY |
352 | GMainContext *iothread_get_g_main_context(IOThread *iothread) |
353 | { | |
b506e0f1 PX |
354 | atomic_set(&iothread->run_gcontext, 1); |
355 | aio_notify(iothread->ctx); | |
329163cb WY |
356 | return iothread->worker_context; |
357 | } | |
0173e21b PX |
358 | |
359 | IOThread *iothread_create(const char *id, Error **errp) | |
360 | { | |
361 | Object *obj; | |
362 | ||
363 | obj = object_new_with_props(TYPE_IOTHREAD, | |
364 | object_get_internal_root(), | |
365 | id, errp, NULL); | |
366 | ||
367 | return IOTHREAD(obj); | |
368 | } | |
369 | ||
370 | void iothread_destroy(IOThread *iothread) | |
371 | { | |
372 | object_unparent(OBJECT(iothread)); | |
373 | } | |
fbcc6923 SH |
374 | |
375 | /* Lookup IOThread by its id. Only finds user-created objects, not internal | |
376 | * iothread_create() objects. */ | |
377 | IOThread *iothread_by_id(const char *id) | |
378 | { | |
379 | return IOTHREAD(object_resolve_path_type(id, TYPE_IOTHREAD, NULL)); | |
380 | } |