blob: 6fba913529a1ded1b0ffaac3da43b39e745cfcc0 [file] [log] [blame]
Paolo Bonzinid354c7e2012-02-23 13:23:34 +01001/*
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 */
Peter Maydelld38ea872016-01-29 17:50:05 +000017#include "qemu/osdep.h"
Paolo Bonzinid354c7e2012-02-23 13:23:34 +010018#include "qemu-common.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010019#include "qemu/queue.h"
20#include "qemu/thread.h"
Daniel P. Berrange10817bf2015-09-01 14:48:02 +010021#include "qemu/coroutine.h"
Paolo Bonzinid354c7e2012-02-23 13:23:34 +010022#include "trace.h"
Paolo Bonzini737e1502012-12-17 18:19:44 +010023#include "block/thread-pool.h"
Alex Bligh6a1751b2013-08-21 16:02:47 +010024#include "qemu/main-loop.h"
Paolo Bonzinid354c7e2012-02-23 13:23:34 +010025
Stefan Hajnoczib8112032013-03-07 13:41:45 +010026static void do_spawn_thread(ThreadPool *pool);
Paolo Bonzinid354c7e2012-02-23 13:23:34 +010027
28typedef struct ThreadPoolElement ThreadPoolElement;
29
30enum ThreadState {
31 THREAD_QUEUED,
32 THREAD_ACTIVE,
33 THREAD_DONE,
Paolo Bonzinid354c7e2012-02-23 13:23:34 +010034};
35
36struct ThreadPoolElement {
Markus Armbruster7c84b1b2014-10-07 13:59:14 +020037 BlockAIOCB common;
Stefan Hajnoczib8112032013-03-07 13:41:45 +010038 ThreadPool *pool;
Paolo Bonzinid354c7e2012-02-23 13:23:34 +010039 ThreadPoolFunc *func;
40 void *arg;
Paolo Bonzini19d092c2012-10-31 10:09:11 +010041
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 */
Paolo Bonzinid354c7e2012-02-23 13:23:34 +010046 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
Stefan Hajnoczib8112032013-03-07 13:41:45 +010056struct ThreadPool {
Stefan Hajnoczif7311cc2013-03-07 13:41:46 +010057 AioContext *ctx;
Stefan Hajnoczic2e50e32014-07-15 16:44:25 +020058 QEMUBH *completion_bh;
Stefan Hajnoczib8112032013-03-07 13:41:45 +010059 QemuMutex lock;
Stefan Hajnoczif7311cc2013-03-07 13:41:46 +010060 QemuCond worker_stopped;
Stefan Hajnoczib8112032013-03-07 13:41:45 +010061 QemuSemaphore sem;
62 int max_threads;
63 QEMUBH *new_thread_bh;
Paolo Bonzinid354c7e2012-02-23 13:23:34 +010064
Stefan Hajnoczib8112032013-03-07 13:41:45 +010065 /* The following variables are only accessed from one AioContext. */
66 QLIST_HEAD(, ThreadPoolElement) head;
Paolo Bonzinid354c7e2012-02-23 13:23:34 +010067
Stefan Hajnoczib8112032013-03-07 13:41:45 +010068 /* 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 */
Stefan Hajnoczif7311cc2013-03-07 13:41:46 +010074 bool stopping;
Stefan Hajnoczib8112032013-03-07 13:41:45 +010075};
Paolo Bonzinid354c7e2012-02-23 13:23:34 +010076
Stefan Hajnoczib8112032013-03-07 13:41:45 +010077static void *worker_thread(void *opaque)
Paolo Bonzinid354c7e2012-02-23 13:23:34 +010078{
Stefan Hajnoczib8112032013-03-07 13:41:45 +010079 ThreadPool *pool = opaque;
80
81 qemu_mutex_lock(&pool->lock);
82 pool->pending_threads--;
83 do_spawn_thread(pool);
Paolo Bonzinid354c7e2012-02-23 13:23:34 +010084
Stefan Hajnoczif7311cc2013-03-07 13:41:46 +010085 while (!pool->stopping) {
Paolo Bonzinid354c7e2012-02-23 13:23:34 +010086 ThreadPoolElement *req;
87 int ret;
88
89 do {
Stefan Hajnoczib8112032013-03-07 13:41:45 +010090 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));
Stefan Hajnoczif7311cc2013-03-07 13:41:46 +010096 if (ret == -1 || pool->stopping) {
Paolo Bonzinid354c7e2012-02-23 13:23:34 +010097 break;
98 }
99
Stefan Hajnoczib8112032013-03-07 13:41:45 +0100100 req = QTAILQ_FIRST(&pool->request_list);
101 QTAILQ_REMOVE(&pool->request_list, req, reqs);
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100102 req->state = THREAD_ACTIVE;
Stefan Hajnoczib8112032013-03-07 13:41:45 +0100103 qemu_mutex_unlock(&pool->lock);
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100104
105 ret = req->func(req->arg);
106
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100107 req->ret = ret;
Paolo Bonzini19d092c2012-10-31 10:09:11 +0100108 /* Write ret before state. */
109 smp_wmb();
110 req->state = THREAD_DONE;
111
Stefan Hajnoczib8112032013-03-07 13:41:45 +0100112 qemu_mutex_lock(&pool->lock);
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100113
Stefan Hajnoczic2e50e32014-07-15 16:44:25 +0200114 qemu_bh_schedule(pool->completion_bh);
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100115 }
116
Stefan Hajnoczib8112032013-03-07 13:41:45 +0100117 pool->cur_threads--;
Stefan Hajnoczif7311cc2013-03-07 13:41:46 +0100118 qemu_cond_signal(&pool->worker_stopped);
Stefan Hajnoczib8112032013-03-07 13:41:45 +0100119 qemu_mutex_unlock(&pool->lock);
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100120 return NULL;
121}
122
Stefan Hajnoczib8112032013-03-07 13:41:45 +0100123static void do_spawn_thread(ThreadPool *pool)
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100124{
125 QemuThread t;
126
127 /* Runs with lock taken. */
Stefan Hajnoczib8112032013-03-07 13:41:45 +0100128 if (!pool->new_threads) {
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100129 return;
130 }
131
Stefan Hajnoczib8112032013-03-07 13:41:45 +0100132 pool->new_threads--;
133 pool->pending_threads++;
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100134
Dr. David Alan Gilbert49001162014-01-30 10:20:32 +0000135 qemu_thread_create(&t, "worker", worker_thread, pool, QEMU_THREAD_DETACHED);
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100136}
137
138static void spawn_thread_bh_fn(void *opaque)
139{
Stefan Hajnoczib8112032013-03-07 13:41:45 +0100140 ThreadPool *pool = opaque;
141
142 qemu_mutex_lock(&pool->lock);
143 do_spawn_thread(pool);
144 qemu_mutex_unlock(&pool->lock);
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100145}
146
Stefan Hajnoczib8112032013-03-07 13:41:45 +0100147static void spawn_thread(ThreadPool *pool)
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100148{
Stefan Hajnoczib8112032013-03-07 13:41:45 +0100149 pool->cur_threads++;
150 pool->new_threads++;
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100151 /* 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 */
Stefan Hajnoczib8112032013-03-07 13:41:45 +0100158 if (!pool->pending_threads) {
159 qemu_bh_schedule(pool->new_thread_bh);
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100160 }
161}
162
Stefan Hajnoczic2e50e32014-07-15 16:44:25 +0200163static void thread_pool_completion_bh(void *opaque)
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100164{
Stefan Hajnoczic2e50e32014-07-15 16:44:25 +0200165 ThreadPool *pool = opaque;
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100166 ThreadPoolElement *elem, *next;
167
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100168restart:
Stefan Hajnoczib8112032013-03-07 13:41:45 +0100169 QLIST_FOREACH_SAFE(elem, &pool->head, all, next) {
Fam Zheng3391f5e2014-09-11 13:41:12 +0800170 if (elem->state != THREAD_DONE) {
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100171 continue;
172 }
Stefan Hajnoczi1faa5bb2015-04-02 17:39:22 +0100173
174 trace_thread_pool_complete(pool, elem, elem->common.opaque,
175 elem->ret);
176 QLIST_REMOVE(elem, all);
177
178 if (elem->common.cb) {
Paolo Bonzini19d092c2012-10-31 10:09:11 +0100179 /* Read state before ret. */
180 smp_rmb();
Stefan Hajnoczi3c80ca12014-07-15 16:44:26 +0200181
182 /* Schedule ourselves in case elem->common.cb() calls aio_poll() to
183 * wait for another request that completed at the same time.
184 */
185 qemu_bh_schedule(pool->completion_bh);
186
Paolo Bonzini19d092c2012-10-31 10:09:11 +0100187 elem->common.cb(elem->common.opaque, elem->ret);
Fam Zheng80074292014-09-11 13:41:28 +0800188 qemu_aio_unref(elem);
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100189 goto restart;
190 } else {
Fam Zheng80074292014-09-11 13:41:28 +0800191 qemu_aio_unref(elem);
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100192 }
193 }
194}
195
Markus Armbruster7c84b1b2014-10-07 13:59:14 +0200196static void thread_pool_cancel(BlockAIOCB *acb)
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100197{
198 ThreadPoolElement *elem = (ThreadPoolElement *)acb;
Stefan Hajnoczib8112032013-03-07 13:41:45 +0100199 ThreadPool *pool = elem->pool;
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100200
201 trace_thread_pool_cancel(elem, elem->common.opaque);
202
Stefan Hajnoczib8112032013-03-07 13:41:45 +0100203 qemu_mutex_lock(&pool->lock);
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100204 if (elem->state == THREAD_QUEUED &&
205 /* No thread has yet started working on elem. we can try to "steal"
206 * the item from the worker if we can get a signal from the
207 * semaphore. Because this is non-blocking, we can do it with
208 * the lock taken and ensure that elem will remain THREAD_QUEUED.
209 */
Stefan Hajnoczib8112032013-03-07 13:41:45 +0100210 qemu_sem_timedwait(&pool->sem, 0) == 0) {
211 QTAILQ_REMOVE(&pool->request_list, elem, reqs);
Stefan Hajnoczic2e50e32014-07-15 16:44:25 +0200212 qemu_bh_schedule(pool->completion_bh);
Fam Zheng3391f5e2014-09-11 13:41:12 +0800213
214 elem->state = THREAD_DONE;
215 elem->ret = -ECANCELED;
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100216 }
Fam Zheng3391f5e2014-09-11 13:41:12 +0800217
Stefan Hajnoczib8112032013-03-07 13:41:45 +0100218 qemu_mutex_unlock(&pool->lock);
Fam Zheng3391f5e2014-09-11 13:41:12 +0800219}
220
Markus Armbruster7c84b1b2014-10-07 13:59:14 +0200221static AioContext *thread_pool_get_aio_context(BlockAIOCB *acb)
Fam Zheng3391f5e2014-09-11 13:41:12 +0800222{
223 ThreadPoolElement *elem = (ThreadPoolElement *)acb;
224 ThreadPool *pool = elem->pool;
225 return pool->ctx;
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100226}
227
Stefan Hajnoczid7331be2012-10-31 16:34:37 +0100228static const AIOCBInfo thread_pool_aiocb_info = {
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100229 .aiocb_size = sizeof(ThreadPoolElement),
Fam Zheng3391f5e2014-09-11 13:41:12 +0800230 .cancel_async = thread_pool_cancel,
231 .get_aio_context = thread_pool_get_aio_context,
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100232};
233
Markus Armbruster7c84b1b2014-10-07 13:59:14 +0200234BlockAIOCB *thread_pool_submit_aio(ThreadPool *pool,
Stefan Hajnoczic4d9d192013-03-07 13:41:49 +0100235 ThreadPoolFunc *func, void *arg,
Markus Armbruster097310b2014-10-07 13:59:15 +0200236 BlockCompletionFunc *cb, void *opaque)
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100237{
238 ThreadPoolElement *req;
239
Stefan Hajnoczid7331be2012-10-31 16:34:37 +0100240 req = qemu_aio_get(&thread_pool_aiocb_info, NULL, cb, opaque);
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100241 req->func = func;
242 req->arg = arg;
243 req->state = THREAD_QUEUED;
Stefan Hajnoczib8112032013-03-07 13:41:45 +0100244 req->pool = pool;
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100245
Stefan Hajnoczib8112032013-03-07 13:41:45 +0100246 QLIST_INSERT_HEAD(&pool->head, req, all);
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100247
Stefan Hajnoczib8112032013-03-07 13:41:45 +0100248 trace_thread_pool_submit(pool, req, arg);
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100249
Stefan Hajnoczib8112032013-03-07 13:41:45 +0100250 qemu_mutex_lock(&pool->lock);
251 if (pool->idle_threads == 0 && pool->cur_threads < pool->max_threads) {
252 spawn_thread(pool);
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100253 }
Stefan Hajnoczib8112032013-03-07 13:41:45 +0100254 QTAILQ_INSERT_TAIL(&pool->request_list, req, reqs);
255 qemu_mutex_unlock(&pool->lock);
256 qemu_sem_post(&pool->sem);
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100257 return &req->common;
258}
259
260typedef struct ThreadPoolCo {
261 Coroutine *co;
262 int ret;
263} ThreadPoolCo;
264
265static void thread_pool_co_cb(void *opaque, int ret)
266{
267 ThreadPoolCo *co = opaque;
268
269 co->ret = ret;
Paolo Bonzini0b8b8752016-07-04 19:10:01 +0200270 qemu_coroutine_enter(co->co);
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100271}
272
Stefan Hajnoczic4d9d192013-03-07 13:41:49 +0100273int coroutine_fn thread_pool_submit_co(ThreadPool *pool, ThreadPoolFunc *func,
274 void *arg)
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100275{
276 ThreadPoolCo tpc = { .co = qemu_coroutine_self(), .ret = -EINPROGRESS };
277 assert(qemu_in_coroutine());
Stefan Hajnoczic4d9d192013-03-07 13:41:49 +0100278 thread_pool_submit_aio(pool, func, arg, thread_pool_co_cb, &tpc);
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100279 qemu_coroutine_yield();
280 return tpc.ret;
281}
282
Stefan Hajnoczic4d9d192013-03-07 13:41:49 +0100283void thread_pool_submit(ThreadPool *pool, ThreadPoolFunc *func, void *arg)
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100284{
Stefan Hajnoczic4d9d192013-03-07 13:41:49 +0100285 thread_pool_submit_aio(pool, func, arg, NULL, NULL);
Paolo Bonzinid354c7e2012-02-23 13:23:34 +0100286}
287
Stefan Hajnoczib8112032013-03-07 13:41:45 +0100288static void thread_pool_init_one(ThreadPool *pool, AioContext *ctx)
289{
290 if (!ctx) {
291 ctx = qemu_get_aio_context();
292 }
293
294 memset(pool, 0, sizeof(*pool));
Stefan Hajnoczif7311cc2013-03-07 13:41:46 +0100295 pool->ctx = ctx;
Stefan Hajnoczic2e50e32014-07-15 16:44:25 +0200296 pool->completion_bh = aio_bh_new(ctx, thread_pool_completion_bh, pool);
Stefan Hajnoczib8112032013-03-07 13:41:45 +0100297 qemu_mutex_init(&pool->lock);
Stefan Hajnoczif7311cc2013-03-07 13:41:46 +0100298 qemu_cond_init(&pool->worker_stopped);
Stefan Hajnoczib8112032013-03-07 13:41:45 +0100299 qemu_sem_init(&pool->sem, 0);
300 pool->max_threads = 64;
301 pool->new_thread_bh = aio_bh_new(ctx, spawn_thread_bh_fn, pool);
302
303 QLIST_INIT(&pool->head);
304 QTAILQ_INIT(&pool->request_list);
Stefan Hajnoczib8112032013-03-07 13:41:45 +0100305}
306
Stefan Hajnoczif7311cc2013-03-07 13:41:46 +0100307ThreadPool *thread_pool_new(AioContext *ctx)
308{
309 ThreadPool *pool = g_new(ThreadPool, 1);
310 thread_pool_init_one(pool, ctx);
311 return pool;
312}
313
314void thread_pool_free(ThreadPool *pool)
315{
316 if (!pool) {
317 return;
318 }
319
320 assert(QLIST_EMPTY(&pool->head));
321
322 qemu_mutex_lock(&pool->lock);
323
324 /* Stop new threads from spawning */
325 qemu_bh_delete(pool->new_thread_bh);
326 pool->cur_threads -= pool->new_threads;
327 pool->new_threads = 0;
328
329 /* Wait for worker threads to terminate */
330 pool->stopping = true;
331 while (pool->cur_threads > 0) {
332 qemu_sem_post(&pool->sem);
333 qemu_cond_wait(&pool->worker_stopped, &pool->lock);
334 }
335
336 qemu_mutex_unlock(&pool->lock);
337
Stefan Hajnoczic2e50e32014-07-15 16:44:25 +0200338 qemu_bh_delete(pool->completion_bh);
Stefan Hajnoczif7311cc2013-03-07 13:41:46 +0100339 qemu_sem_destroy(&pool->sem);
Stefan Hajnoczif7311cc2013-03-07 13:41:46 +0100340 qemu_cond_destroy(&pool->worker_stopped);
341 qemu_mutex_destroy(&pool->lock);
Stefan Hajnoczif7311cc2013-03-07 13:41:46 +0100342 g_free(pool);
343}