]> git.proxmox.com Git - mirror_qemu.git/blame - util/thread-pool.c
Merge remote-tracking branch 'remotes/kraxel/tags/ui-20190313-pull-request' into...
[mirror_qemu.git] / util / thread-pool.c
CommitLineData
d354c7ec
PB
1/*
2 * QEMU block layer thread pool
3 *
4 * Copyright IBM, Corp. 2008
5 * Copyright Red Hat, Inc. 2012
6 *
7 * Authors:
8 * Anthony Liguori <aliguori@us.ibm.com>
9 * Paolo Bonzini <pbonzini@redhat.com>
10 *
11 * This work is licensed under the terms of the GNU GPL, version 2. See
12 * the COPYING file in the top-level directory.
13 *
14 * Contributions after 2012-01-13 are licensed under the terms of the
15 * GNU GPL, version 2 or (at your option) any later version.
16 */
d38ea87a 17#include "qemu/osdep.h"
d354c7ec 18#include "qemu-common.h"
1de7afc9
PB
19#include "qemu/queue.h"
20#include "qemu/thread.h"
10817bf0 21#include "qemu/coroutine.h"
c2b38b27 22#include "trace.h"
737e150e 23#include "block/thread-pool.h"
6a1751b7 24#include "qemu/main-loop.h"
d354c7ec 25
b811203c 26static void do_spawn_thread(ThreadPool *pool);
d354c7ec
PB
27
28typedef struct ThreadPoolElement ThreadPoolElement;
29
30enum ThreadState {
31 THREAD_QUEUED,
32 THREAD_ACTIVE,
33 THREAD_DONE,
d354c7ec
PB
34};
35
36struct ThreadPoolElement {
7c84b1b8 37 BlockAIOCB common;
b811203c 38 ThreadPool *pool;
d354c7ec
PB
39 ThreadPoolFunc *func;
40 void *arg;
19d092cf
PB
41
42 /* Moving state out of THREAD_QUEUED is protected by lock. After
43 * that, only the worker thread can write to it. Reads and writes
44 * of state and ret are ordered with memory barriers.
45 */
d354c7ec
PB
46 enum ThreadState state;
47 int ret;
48
49 /* Access to this list is protected by lock. */
50 QTAILQ_ENTRY(ThreadPoolElement) reqs;
51
52 /* Access to this list is protected by the global mutex. */
53 QLIST_ENTRY(ThreadPoolElement) all;
54};
55
b811203c 56struct ThreadPool {
f7311ccc 57 AioContext *ctx;
c2e50e3d 58 QEMUBH *completion_bh;
b811203c 59 QemuMutex lock;
f7311ccc 60 QemuCond worker_stopped;
b811203c
SH
61 QemuSemaphore sem;
62 int max_threads;
63 QEMUBH *new_thread_bh;
64
65 /* The following variables are only accessed from one AioContext. */
66 QLIST_HEAD(, ThreadPoolElement) head;
67
68 /* The following variables are protected by lock. */
69 QTAILQ_HEAD(, ThreadPoolElement) request_list;
70 int cur_threads;
71 int idle_threads;
72 int new_threads; /* backlog of threads we need to create */
73 int pending_threads; /* threads created but not running yet */
f7311ccc 74 bool stopping;
b811203c
SH
75};
76
b811203c 77static void *worker_thread(void *opaque)
d354c7ec 78{
b811203c
SH
79 ThreadPool *pool = opaque;
80
81 qemu_mutex_lock(&pool->lock);
82 pool->pending_threads--;
83 do_spawn_thread(pool);
d354c7ec 84
f7311ccc 85 while (!pool->stopping) {
d354c7ec
PB
86 ThreadPoolElement *req;
87 int ret;
88
89 do {
b811203c
SH
90 pool->idle_threads++;
91 qemu_mutex_unlock(&pool->lock);
92 ret = qemu_sem_timedwait(&pool->sem, 10000);
93 qemu_mutex_lock(&pool->lock);
94 pool->idle_threads--;
95 } while (ret == -1 && !QTAILQ_EMPTY(&pool->request_list));
f7311ccc 96 if (ret == -1 || pool->stopping) {
d354c7ec
PB
97 break;
98 }
99
b811203c
SH
100 req = QTAILQ_FIRST(&pool->request_list);
101 QTAILQ_REMOVE(&pool->request_list, req, reqs);
d354c7ec 102 req->state = THREAD_ACTIVE;
b811203c 103 qemu_mutex_unlock(&pool->lock);
d354c7ec
PB
104
105 ret = req->func(req->arg);
106
d354c7ec 107 req->ret = ret;
19d092cf
PB
108 /* Write ret before state. */
109 smp_wmb();
110 req->state = THREAD_DONE;
111
b811203c 112 qemu_mutex_lock(&pool->lock);
d354c7ec 113
c2e50e3d 114 qemu_bh_schedule(pool->completion_bh);
d354c7ec
PB
115 }
116
b811203c 117 pool->cur_threads--;
f7311ccc 118 qemu_cond_signal(&pool->worker_stopped);
b811203c 119 qemu_mutex_unlock(&pool->lock);
d354c7ec
PB
120 return NULL;
121}
122
b811203c 123static void do_spawn_thread(ThreadPool *pool)
d354c7ec
PB
124{
125 QemuThread t;
126
127 /* Runs with lock taken. */
b811203c 128 if (!pool->new_threads) {
d354c7ec
PB
129 return;
130 }
131
b811203c
SH
132 pool->new_threads--;
133 pool->pending_threads++;
d354c7ec 134
4900116e 135 qemu_thread_create(&t, "worker", worker_thread, pool, QEMU_THREAD_DETACHED);
d354c7ec
PB
136}
137
138static void spawn_thread_bh_fn(void *opaque)
139{
b811203c
SH
140 ThreadPool *pool = opaque;
141
142 qemu_mutex_lock(&pool->lock);
143 do_spawn_thread(pool);
144 qemu_mutex_unlock(&pool->lock);
d354c7ec
PB
145}
146
b811203c 147static void spawn_thread(ThreadPool *pool)
d354c7ec 148{
b811203c
SH
149 pool->cur_threads++;
150 pool->new_threads++;
d354c7ec
PB
151 /* If there are threads being created, they will spawn new workers, so
152 * we don't spend time creating many threads in a loop holding a mutex or
153 * starving the current vcpu.
154 *
155 * If there are no idle threads, ask the main thread to create one, so we
156 * inherit the correct affinity instead of the vcpu affinity.
157 */
b811203c
SH
158 if (!pool->pending_threads) {
159 qemu_bh_schedule(pool->new_thread_bh);
d354c7ec
PB
160 }
161}
162
c2e50e3d 163static void thread_pool_completion_bh(void *opaque)
d354c7ec 164{
c2e50e3d 165 ThreadPool *pool = opaque;
d354c7ec
PB
166 ThreadPoolElement *elem, *next;
167
1919631e 168 aio_context_acquire(pool->ctx);
d354c7ec 169restart:
b811203c 170 QLIST_FOREACH_SAFE(elem, &pool->head, all, next) {
3391f5e5 171 if (elem->state != THREAD_DONE) {
d354c7ec
PB
172 continue;
173 }
1faa5bb7
SH
174
175 trace_thread_pool_complete(pool, elem, elem->common.opaque,
176 elem->ret);
177 QLIST_REMOVE(elem, all);
178
179 if (elem->common.cb) {
19d092cf
PB
180 /* Read state before ret. */
181 smp_rmb();
3c80ca15
SH
182
183 /* Schedule ourselves in case elem->common.cb() calls aio_poll() to
184 * wait for another request that completed at the same time.
185 */
186 qemu_bh_schedule(pool->completion_bh);
187
b9e413dd 188 aio_context_release(pool->ctx);
19d092cf 189 elem->common.cb(elem->common.opaque, elem->ret);
b9e413dd 190 aio_context_acquire(pool->ctx);
b7a745dc
PL
191
192 /* We can safely cancel the completion_bh here regardless of someone
193 * else having scheduled it meanwhile because we reenter the
194 * completion function anyway (goto restart).
195 */
196 qemu_bh_cancel(pool->completion_bh);
197
8007429a 198 qemu_aio_unref(elem);
d354c7ec
PB
199 goto restart;
200 } else {
8007429a 201 qemu_aio_unref(elem);
d354c7ec
PB
202 }
203 }
1919631e 204 aio_context_release(pool->ctx);
d354c7ec
PB
205}
206
7c84b1b8 207static void thread_pool_cancel(BlockAIOCB *acb)
d354c7ec
PB
208{
209 ThreadPoolElement *elem = (ThreadPoolElement *)acb;
b811203c 210 ThreadPool *pool = elem->pool;
d354c7ec
PB
211
212 trace_thread_pool_cancel(elem, elem->common.opaque);
213
b811203c 214 qemu_mutex_lock(&pool->lock);
d354c7ec
PB
215 if (elem->state == THREAD_QUEUED &&
216 /* No thread has yet started working on elem. we can try to "steal"
217 * the item from the worker if we can get a signal from the
218 * semaphore. Because this is non-blocking, we can do it with
219 * the lock taken and ensure that elem will remain THREAD_QUEUED.
220 */
b811203c
SH
221 qemu_sem_timedwait(&pool->sem, 0) == 0) {
222 QTAILQ_REMOVE(&pool->request_list, elem, reqs);
c2e50e3d 223 qemu_bh_schedule(pool->completion_bh);
3391f5e5
FZ
224
225 elem->state = THREAD_DONE;
226 elem->ret = -ECANCELED;
d354c7ec 227 }
3391f5e5 228
b811203c 229 qemu_mutex_unlock(&pool->lock);
3391f5e5
FZ
230}
231
7c84b1b8 232static AioContext *thread_pool_get_aio_context(BlockAIOCB *acb)
3391f5e5
FZ
233{
234 ThreadPoolElement *elem = (ThreadPoolElement *)acb;
235 ThreadPool *pool = elem->pool;
236 return pool->ctx;
d354c7ec
PB
237}
238
d7331bed 239static const AIOCBInfo thread_pool_aiocb_info = {
d354c7ec 240 .aiocb_size = sizeof(ThreadPoolElement),
3391f5e5
FZ
241 .cancel_async = thread_pool_cancel,
242 .get_aio_context = thread_pool_get_aio_context,
d354c7ec
PB
243};
244
7c84b1b8 245BlockAIOCB *thread_pool_submit_aio(ThreadPool *pool,
c4d9d196 246 ThreadPoolFunc *func, void *arg,
097310b5 247 BlockCompletionFunc *cb, void *opaque)
d354c7ec
PB
248{
249 ThreadPoolElement *req;
250
d7331bed 251 req = qemu_aio_get(&thread_pool_aiocb_info, NULL, cb, opaque);
d354c7ec
PB
252 req->func = func;
253 req->arg = arg;
254 req->state = THREAD_QUEUED;
b811203c 255 req->pool = pool;
d354c7ec 256
b811203c 257 QLIST_INSERT_HEAD(&pool->head, req, all);
d354c7ec 258
b811203c 259 trace_thread_pool_submit(pool, req, arg);
d354c7ec 260
b811203c
SH
261 qemu_mutex_lock(&pool->lock);
262 if (pool->idle_threads == 0 && pool->cur_threads < pool->max_threads) {
263 spawn_thread(pool);
d354c7ec 264 }
b811203c
SH
265 QTAILQ_INSERT_TAIL(&pool->request_list, req, reqs);
266 qemu_mutex_unlock(&pool->lock);
267 qemu_sem_post(&pool->sem);
d354c7ec
PB
268 return &req->common;
269}
270
271typedef struct ThreadPoolCo {
272 Coroutine *co;
273 int ret;
274} ThreadPoolCo;
275
276static void thread_pool_co_cb(void *opaque, int ret)
277{
278 ThreadPoolCo *co = opaque;
279
280 co->ret = ret;
b9e413dd 281 aio_co_wake(co->co);
d354c7ec
PB
282}
283
c4d9d196
SH
284int coroutine_fn thread_pool_submit_co(ThreadPool *pool, ThreadPoolFunc *func,
285 void *arg)
d354c7ec
PB
286{
287 ThreadPoolCo tpc = { .co = qemu_coroutine_self(), .ret = -EINPROGRESS };
288 assert(qemu_in_coroutine());
c4d9d196 289 thread_pool_submit_aio(pool, func, arg, thread_pool_co_cb, &tpc);
d354c7ec
PB
290 qemu_coroutine_yield();
291 return tpc.ret;
292}
293
c4d9d196 294void thread_pool_submit(ThreadPool *pool, ThreadPoolFunc *func, void *arg)
d354c7ec 295{
c4d9d196 296 thread_pool_submit_aio(pool, func, arg, NULL, NULL);
d354c7ec
PB
297}
298
b811203c
SH
299static void thread_pool_init_one(ThreadPool *pool, AioContext *ctx)
300{
301 if (!ctx) {
302 ctx = qemu_get_aio_context();
303 }
304
305 memset(pool, 0, sizeof(*pool));
f7311ccc 306 pool->ctx = ctx;
c2e50e3d 307 pool->completion_bh = aio_bh_new(ctx, thread_pool_completion_bh, pool);
b811203c 308 qemu_mutex_init(&pool->lock);
f7311ccc 309 qemu_cond_init(&pool->worker_stopped);
b811203c
SH
310 qemu_sem_init(&pool->sem, 0);
311 pool->max_threads = 64;
312 pool->new_thread_bh = aio_bh_new(ctx, spawn_thread_bh_fn, pool);
313
314 QLIST_INIT(&pool->head);
315 QTAILQ_INIT(&pool->request_list);
b811203c
SH
316}
317
f7311ccc
SH
318ThreadPool *thread_pool_new(AioContext *ctx)
319{
320 ThreadPool *pool = g_new(ThreadPool, 1);
321 thread_pool_init_one(pool, ctx);
322 return pool;
323}
324
325void thread_pool_free(ThreadPool *pool)
326{
327 if (!pool) {
328 return;
329 }
330
331 assert(QLIST_EMPTY(&pool->head));
332
333 qemu_mutex_lock(&pool->lock);
334
335 /* Stop new threads from spawning */
336 qemu_bh_delete(pool->new_thread_bh);
337 pool->cur_threads -= pool->new_threads;
338 pool->new_threads = 0;
339
340 /* Wait for worker threads to terminate */
341 pool->stopping = true;
342 while (pool->cur_threads > 0) {
343 qemu_sem_post(&pool->sem);
344 qemu_cond_wait(&pool->worker_stopped, &pool->lock);
345 }
346
347 qemu_mutex_unlock(&pool->lock);
348
c2e50e3d 349 qemu_bh_delete(pool->completion_bh);
f7311ccc 350 qemu_sem_destroy(&pool->sem);
f7311ccc
SH
351 qemu_cond_destroy(&pool->worker_stopped);
352 qemu_mutex_destroy(&pool->lock);
f7311ccc
SH
353 g_free(pool);
354}