blob: e92c4724480cadc8756360802ee9d44e748c0f32 [file] [log] [blame]
Jens Axboe771b53d02019-10-22 10:25:58 -06001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Basic worker thread pool for io_uring
4 *
5 * Copyright (C) 2019 Jens Axboe
6 *
7 */
8#include <linux/kernel.h>
9#include <linux/init.h>
10#include <linux/errno.h>
11#include <linux/sched/signal.h>
12#include <linux/mm.h>
Jens Axboe771b53d02019-10-22 10:25:58 -060013#include <linux/sched/mm.h>
14#include <linux/percpu.h>
15#include <linux/slab.h>
16#include <linux/kthread.h>
17#include <linux/rculist_nulls.h>
Jens Axboe9392a272020-02-06 21:42:51 -070018#include <linux/fs_struct.h>
Jens Axboeaa96bf82020-04-03 11:26:26 -060019#include <linux/task_work.h>
Jens Axboe771b53d02019-10-22 10:25:58 -060020
21#include "io-wq.h"
22
23#define WORKER_IDLE_TIMEOUT (5 * HZ)
24
25enum {
26 IO_WORKER_F_UP = 1, /* up and active */
27 IO_WORKER_F_RUNNING = 2, /* account as running */
28 IO_WORKER_F_FREE = 4, /* worker on free list */
29 IO_WORKER_F_EXITING = 8, /* worker exiting */
30 IO_WORKER_F_FIXED = 16, /* static idle worker */
Jens Axboec5def4a2019-11-07 11:41:16 -070031 IO_WORKER_F_BOUND = 32, /* is doing bounded work */
Jens Axboe771b53d02019-10-22 10:25:58 -060032};
33
34enum {
35 IO_WQ_BIT_EXIT = 0, /* wq exiting */
36 IO_WQ_BIT_CANCEL = 1, /* cancel work on list */
Jens Axboeb60fda62019-11-19 08:37:07 -070037 IO_WQ_BIT_ERROR = 2, /* error on setup */
Jens Axboe771b53d02019-10-22 10:25:58 -060038};
39
40enum {
41 IO_WQE_FLAG_STALLED = 1, /* stalled on hash */
42};
43
44/*
45 * One for each thread in a wqe pool
46 */
47struct io_worker {
48 refcount_t ref;
49 unsigned flags;
50 struct hlist_nulls_node nulls_node;
Jens Axboee61df662019-11-13 13:54:49 -070051 struct list_head all_list;
Jens Axboe771b53d02019-10-22 10:25:58 -060052 struct task_struct *task;
Jens Axboe771b53d02019-10-22 10:25:58 -060053 struct io_wqe *wqe;
Jens Axboe36c2f922019-11-13 09:43:34 -070054
Jens Axboe771b53d02019-10-22 10:25:58 -060055 struct io_wq_work *cur_work;
Jens Axboe36c2f922019-11-13 09:43:34 -070056 spinlock_t lock;
Jens Axboe771b53d02019-10-22 10:25:58 -060057
58 struct rcu_head rcu;
59 struct mm_struct *mm;
Jens Axboecccf0ee2020-01-27 16:34:48 -070060 const struct cred *cur_creds;
61 const struct cred *saved_creds;
Jens Axboefcb323c2019-10-24 12:39:47 -060062 struct files_struct *restore_files;
Jens Axboe9392a272020-02-06 21:42:51 -070063 struct fs_struct *restore_fs;
Jens Axboe771b53d02019-10-22 10:25:58 -060064};
65
Jens Axboe771b53d02019-10-22 10:25:58 -060066#if BITS_PER_LONG == 64
67#define IO_WQ_HASH_ORDER 6
68#else
69#define IO_WQ_HASH_ORDER 5
70#endif
71
Pavel Begunkov86f3cd12020-03-23 22:57:22 +030072#define IO_WQ_NR_HASH_BUCKETS (1u << IO_WQ_HASH_ORDER)
73
Jens Axboec5def4a2019-11-07 11:41:16 -070074struct io_wqe_acct {
75 unsigned nr_workers;
76 unsigned max_workers;
77 atomic_t nr_running;
78};
79
80enum {
81 IO_WQ_ACCT_BOUND,
82 IO_WQ_ACCT_UNBOUND,
83};
84
Jens Axboe771b53d02019-10-22 10:25:58 -060085/*
86 * Per-node worker thread pool
87 */
88struct io_wqe {
89 struct {
90 spinlock_t lock;
Jens Axboe6206f0e2019-11-26 11:59:32 -070091 struct io_wq_work_list work_list;
Jens Axboe771b53d02019-10-22 10:25:58 -060092 unsigned long hash_map;
93 unsigned flags;
94 } ____cacheline_aligned_in_smp;
95
96 int node;
Jens Axboec5def4a2019-11-07 11:41:16 -070097 struct io_wqe_acct acct[2];
Jens Axboe771b53d02019-10-22 10:25:58 -060098
Jens Axboe021d1cd2019-11-14 08:00:41 -070099 struct hlist_nulls_head free_list;
Jens Axboee61df662019-11-13 13:54:49 -0700100 struct list_head all_list;
Jens Axboe771b53d02019-10-22 10:25:58 -0600101
102 struct io_wq *wq;
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300103 struct io_wq_work *hash_tail[IO_WQ_NR_HASH_BUCKETS];
Jens Axboe771b53d02019-10-22 10:25:58 -0600104};
105
106/*
107 * Per io_wq state
108 */
109struct io_wq {
110 struct io_wqe **wqes;
111 unsigned long state;
Jens Axboe771b53d02019-10-22 10:25:58 -0600112
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300113 free_work_fn *free_work;
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +0300114 io_wq_work_fn *do_work;
Jens Axboe7d723062019-11-12 22:31:31 -0700115
Jens Axboe771b53d02019-10-22 10:25:58 -0600116 struct task_struct *manager;
Jens Axboec5def4a2019-11-07 11:41:16 -0700117 struct user_struct *user;
Jens Axboe771b53d02019-10-22 10:25:58 -0600118 refcount_t refs;
119 struct completion done;
Jens Axboe848f7e12020-01-23 15:33:32 -0700120
121 refcount_t use_refs;
Jens Axboe771b53d02019-10-22 10:25:58 -0600122};
123
Jens Axboe771b53d02019-10-22 10:25:58 -0600124static bool io_worker_get(struct io_worker *worker)
125{
126 return refcount_inc_not_zero(&worker->ref);
127}
128
129static void io_worker_release(struct io_worker *worker)
130{
131 if (refcount_dec_and_test(&worker->ref))
132 wake_up_process(worker->task);
133}
134
135/*
136 * Note: drops the wqe->lock if returning true! The caller must re-acquire
137 * the lock in that case. Some callers need to restart handling if this
138 * happens, so we can't just re-acquire the lock on behalf of the caller.
139 */
140static bool __io_worker_unuse(struct io_wqe *wqe, struct io_worker *worker)
141{
Jens Axboefcb323c2019-10-24 12:39:47 -0600142 bool dropped_lock = false;
143
Jens Axboecccf0ee2020-01-27 16:34:48 -0700144 if (worker->saved_creds) {
145 revert_creds(worker->saved_creds);
146 worker->cur_creds = worker->saved_creds = NULL;
Jens Axboe181e4482019-11-25 08:52:30 -0700147 }
148
Jens Axboefcb323c2019-10-24 12:39:47 -0600149 if (current->files != worker->restore_files) {
150 __acquire(&wqe->lock);
151 spin_unlock_irq(&wqe->lock);
152 dropped_lock = true;
153
154 task_lock(current);
155 current->files = worker->restore_files;
156 task_unlock(current);
157 }
158
Jens Axboe9392a272020-02-06 21:42:51 -0700159 if (current->fs != worker->restore_fs)
160 current->fs = worker->restore_fs;
161
Jens Axboe771b53d02019-10-22 10:25:58 -0600162 /*
163 * If we have an active mm, we need to drop the wq lock before unusing
164 * it. If we do, return true and let the caller retry the idle loop.
165 */
166 if (worker->mm) {
Jens Axboefcb323c2019-10-24 12:39:47 -0600167 if (!dropped_lock) {
168 __acquire(&wqe->lock);
169 spin_unlock_irq(&wqe->lock);
170 dropped_lock = true;
171 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600172 __set_current_state(TASK_RUNNING);
Christoph Hellwigf5678e72020-06-10 18:42:06 -0700173 kthread_unuse_mm(worker->mm);
Jens Axboe771b53d02019-10-22 10:25:58 -0600174 mmput(worker->mm);
175 worker->mm = NULL;
Jens Axboe771b53d02019-10-22 10:25:58 -0600176 }
177
Jens Axboefcb323c2019-10-24 12:39:47 -0600178 return dropped_lock;
Jens Axboe771b53d02019-10-22 10:25:58 -0600179}
180
Jens Axboec5def4a2019-11-07 11:41:16 -0700181static inline struct io_wqe_acct *io_work_get_acct(struct io_wqe *wqe,
182 struct io_wq_work *work)
183{
184 if (work->flags & IO_WQ_WORK_UNBOUND)
185 return &wqe->acct[IO_WQ_ACCT_UNBOUND];
186
187 return &wqe->acct[IO_WQ_ACCT_BOUND];
188}
189
190static inline struct io_wqe_acct *io_wqe_get_acct(struct io_wqe *wqe,
191 struct io_worker *worker)
192{
193 if (worker->flags & IO_WORKER_F_BOUND)
194 return &wqe->acct[IO_WQ_ACCT_BOUND];
195
196 return &wqe->acct[IO_WQ_ACCT_UNBOUND];
197}
198
Jens Axboe771b53d02019-10-22 10:25:58 -0600199static void io_worker_exit(struct io_worker *worker)
200{
201 struct io_wqe *wqe = worker->wqe;
Jens Axboec5def4a2019-11-07 11:41:16 -0700202 struct io_wqe_acct *acct = io_wqe_get_acct(wqe, worker);
203 unsigned nr_workers;
Jens Axboe771b53d02019-10-22 10:25:58 -0600204
205 /*
206 * If we're not at zero, someone else is holding a brief reference
207 * to the worker. Wait for that to go away.
208 */
209 set_current_state(TASK_INTERRUPTIBLE);
210 if (!refcount_dec_and_test(&worker->ref))
211 schedule();
212 __set_current_state(TASK_RUNNING);
213
214 preempt_disable();
215 current->flags &= ~PF_IO_WORKER;
216 if (worker->flags & IO_WORKER_F_RUNNING)
Jens Axboec5def4a2019-11-07 11:41:16 -0700217 atomic_dec(&acct->nr_running);
218 if (!(worker->flags & IO_WORKER_F_BOUND))
219 atomic_dec(&wqe->wq->user->processes);
Jens Axboe771b53d02019-10-22 10:25:58 -0600220 worker->flags = 0;
221 preempt_enable();
222
223 spin_lock_irq(&wqe->lock);
224 hlist_nulls_del_rcu(&worker->nulls_node);
Jens Axboee61df662019-11-13 13:54:49 -0700225 list_del_rcu(&worker->all_list);
Jens Axboe771b53d02019-10-22 10:25:58 -0600226 if (__io_worker_unuse(wqe, worker)) {
227 __release(&wqe->lock);
228 spin_lock_irq(&wqe->lock);
229 }
Jens Axboec5def4a2019-11-07 11:41:16 -0700230 acct->nr_workers--;
231 nr_workers = wqe->acct[IO_WQ_ACCT_BOUND].nr_workers +
232 wqe->acct[IO_WQ_ACCT_UNBOUND].nr_workers;
Jens Axboe771b53d02019-10-22 10:25:58 -0600233 spin_unlock_irq(&wqe->lock);
234
235 /* all workers gone, wq exit can proceed */
Jens Axboec5def4a2019-11-07 11:41:16 -0700236 if (!nr_workers && refcount_dec_and_test(&wqe->wq->refs))
Jens Axboe771b53d02019-10-22 10:25:58 -0600237 complete(&wqe->wq->done);
238
YueHaibing364b05f2019-11-02 15:55:01 +0800239 kfree_rcu(worker, rcu);
Jens Axboe771b53d02019-10-22 10:25:58 -0600240}
241
Jens Axboec5def4a2019-11-07 11:41:16 -0700242static inline bool io_wqe_run_queue(struct io_wqe *wqe)
243 __must_hold(wqe->lock)
244{
Jens Axboe6206f0e2019-11-26 11:59:32 -0700245 if (!wq_list_empty(&wqe->work_list) &&
246 !(wqe->flags & IO_WQE_FLAG_STALLED))
Jens Axboec5def4a2019-11-07 11:41:16 -0700247 return true;
248 return false;
249}
250
251/*
252 * Check head of free list for an available worker. If one isn't available,
253 * caller must wake up the wq manager to create one.
254 */
255static bool io_wqe_activate_free_worker(struct io_wqe *wqe)
256 __must_hold(RCU)
257{
258 struct hlist_nulls_node *n;
259 struct io_worker *worker;
260
Jens Axboe021d1cd2019-11-14 08:00:41 -0700261 n = rcu_dereference(hlist_nulls_first_rcu(&wqe->free_list));
Jens Axboec5def4a2019-11-07 11:41:16 -0700262 if (is_a_nulls(n))
263 return false;
264
265 worker = hlist_nulls_entry(n, struct io_worker, nulls_node);
266 if (io_worker_get(worker)) {
Jens Axboe506d95f2019-12-07 21:03:59 -0700267 wake_up_process(worker->task);
Jens Axboec5def4a2019-11-07 11:41:16 -0700268 io_worker_release(worker);
269 return true;
270 }
271
272 return false;
273}
274
275/*
276 * We need a worker. If we find a free one, we're good. If not, and we're
277 * below the max number of workers, wake up the manager to create one.
278 */
279static void io_wqe_wake_worker(struct io_wqe *wqe, struct io_wqe_acct *acct)
280{
281 bool ret;
282
283 /*
284 * Most likely an attempt to queue unbounded work on an io_wq that
285 * wasn't setup with any unbounded workers.
286 */
287 WARN_ON_ONCE(!acct->max_workers);
288
289 rcu_read_lock();
290 ret = io_wqe_activate_free_worker(wqe);
291 rcu_read_unlock();
292
293 if (!ret && acct->nr_workers < acct->max_workers)
294 wake_up_process(wqe->wq->manager);
295}
296
297static void io_wqe_inc_running(struct io_wqe *wqe, struct io_worker *worker)
298{
299 struct io_wqe_acct *acct = io_wqe_get_acct(wqe, worker);
300
301 atomic_inc(&acct->nr_running);
302}
303
304static void io_wqe_dec_running(struct io_wqe *wqe, struct io_worker *worker)
305 __must_hold(wqe->lock)
306{
307 struct io_wqe_acct *acct = io_wqe_get_acct(wqe, worker);
308
309 if (atomic_dec_and_test(&acct->nr_running) && io_wqe_run_queue(wqe))
310 io_wqe_wake_worker(wqe, acct);
311}
312
Jens Axboe771b53d02019-10-22 10:25:58 -0600313static void io_worker_start(struct io_wqe *wqe, struct io_worker *worker)
314{
315 allow_kernel_signal(SIGINT);
316
317 current->flags |= PF_IO_WORKER;
318
319 worker->flags |= (IO_WORKER_F_UP | IO_WORKER_F_RUNNING);
Jens Axboefcb323c2019-10-24 12:39:47 -0600320 worker->restore_files = current->files;
Jens Axboe9392a272020-02-06 21:42:51 -0700321 worker->restore_fs = current->fs;
Jens Axboec5def4a2019-11-07 11:41:16 -0700322 io_wqe_inc_running(wqe, worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600323}
324
325/*
326 * Worker will start processing some work. Move it to the busy list, if
327 * it's currently on the freelist
328 */
329static void __io_worker_busy(struct io_wqe *wqe, struct io_worker *worker,
330 struct io_wq_work *work)
331 __must_hold(wqe->lock)
332{
Jens Axboec5def4a2019-11-07 11:41:16 -0700333 bool worker_bound, work_bound;
334
Jens Axboe771b53d02019-10-22 10:25:58 -0600335 if (worker->flags & IO_WORKER_F_FREE) {
336 worker->flags &= ~IO_WORKER_F_FREE;
337 hlist_nulls_del_init_rcu(&worker->nulls_node);
Jens Axboe771b53d02019-10-22 10:25:58 -0600338 }
Jens Axboec5def4a2019-11-07 11:41:16 -0700339
340 /*
341 * If worker is moving from bound to unbound (or vice versa), then
342 * ensure we update the running accounting.
343 */
Dan Carpenterb2e9c7d62019-11-19 09:22:16 +0300344 worker_bound = (worker->flags & IO_WORKER_F_BOUND) != 0;
345 work_bound = (work->flags & IO_WQ_WORK_UNBOUND) == 0;
346 if (worker_bound != work_bound) {
Jens Axboec5def4a2019-11-07 11:41:16 -0700347 io_wqe_dec_running(wqe, worker);
348 if (work_bound) {
349 worker->flags |= IO_WORKER_F_BOUND;
350 wqe->acct[IO_WQ_ACCT_UNBOUND].nr_workers--;
351 wqe->acct[IO_WQ_ACCT_BOUND].nr_workers++;
352 atomic_dec(&wqe->wq->user->processes);
353 } else {
354 worker->flags &= ~IO_WORKER_F_BOUND;
355 wqe->acct[IO_WQ_ACCT_UNBOUND].nr_workers++;
356 wqe->acct[IO_WQ_ACCT_BOUND].nr_workers--;
357 atomic_inc(&wqe->wq->user->processes);
358 }
359 io_wqe_inc_running(wqe, worker);
360 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600361}
362
363/*
364 * No work, worker going to sleep. Move to freelist, and unuse mm if we
365 * have one attached. Dropping the mm may potentially sleep, so we drop
366 * the lock in that case and return success. Since the caller has to
367 * retry the loop in that case (we changed task state), we don't regrab
368 * the lock if we return success.
369 */
370static bool __io_worker_idle(struct io_wqe *wqe, struct io_worker *worker)
371 __must_hold(wqe->lock)
372{
373 if (!(worker->flags & IO_WORKER_F_FREE)) {
374 worker->flags |= IO_WORKER_F_FREE;
Jens Axboe021d1cd2019-11-14 08:00:41 -0700375 hlist_nulls_add_head_rcu(&worker->nulls_node, &wqe->free_list);
Jens Axboe771b53d02019-10-22 10:25:58 -0600376 }
377
378 return __io_worker_unuse(wqe, worker);
379}
380
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300381static inline unsigned int io_get_work_hash(struct io_wq_work *work)
382{
383 return work->flags >> IO_WQ_HASH_SHIFT;
384}
385
386static struct io_wq_work *io_get_next_work(struct io_wqe *wqe)
Jens Axboe771b53d02019-10-22 10:25:58 -0600387 __must_hold(wqe->lock)
388{
Jens Axboe6206f0e2019-11-26 11:59:32 -0700389 struct io_wq_work_node *node, *prev;
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300390 struct io_wq_work *work, *tail;
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300391 unsigned int hash;
Jens Axboe771b53d02019-10-22 10:25:58 -0600392
Jens Axboe6206f0e2019-11-26 11:59:32 -0700393 wq_list_for_each(node, prev, &wqe->work_list) {
394 work = container_of(node, struct io_wq_work, list);
395
Jens Axboe771b53d02019-10-22 10:25:58 -0600396 /* not hashed, can run anytime */
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300397 if (!io_wq_is_hashed(work)) {
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300398 wq_list_del(&wqe->work_list, node, prev);
Jens Axboe771b53d02019-10-22 10:25:58 -0600399 return work;
400 }
401
402 /* hashed, can run if not already running */
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300403 hash = io_get_work_hash(work);
404 if (!(wqe->hash_map & BIT(hash))) {
405 wqe->hash_map |= BIT(hash);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300406 /* all items with this hash lie in [work, tail] */
407 tail = wqe->hash_tail[hash];
408 wqe->hash_tail[hash] = NULL;
409 wq_list_cut(&wqe->work_list, &tail->list, prev);
Jens Axboe771b53d02019-10-22 10:25:58 -0600410 return work;
411 }
412 }
413
414 return NULL;
415}
416
Jens Axboecccf0ee2020-01-27 16:34:48 -0700417static void io_wq_switch_mm(struct io_worker *worker, struct io_wq_work *work)
418{
419 if (worker->mm) {
Christoph Hellwigf5678e72020-06-10 18:42:06 -0700420 kthread_unuse_mm(worker->mm);
Jens Axboecccf0ee2020-01-27 16:34:48 -0700421 mmput(worker->mm);
422 worker->mm = NULL;
423 }
Christoph Hellwig37c54f92020-06-10 18:42:10 -0700424 if (!work->mm)
Jens Axboecccf0ee2020-01-27 16:34:48 -0700425 return;
Christoph Hellwig37c54f92020-06-10 18:42:10 -0700426
Jens Axboecccf0ee2020-01-27 16:34:48 -0700427 if (mmget_not_zero(work->mm)) {
Christoph Hellwigf5678e72020-06-10 18:42:06 -0700428 kthread_use_mm(work->mm);
Jens Axboecccf0ee2020-01-27 16:34:48 -0700429 worker->mm = work->mm;
430 /* hang on to this mm */
431 work->mm = NULL;
432 return;
433 }
434
435 /* failed grabbing mm, ensure work gets cancelled */
436 work->flags |= IO_WQ_WORK_CANCEL;
437}
438
439static void io_wq_switch_creds(struct io_worker *worker,
440 struct io_wq_work *work)
441{
442 const struct cred *old_creds = override_creds(work->creds);
443
444 worker->cur_creds = work->creds;
445 if (worker->saved_creds)
446 put_cred(old_creds); /* creds set by previous switch */
447 else
448 worker->saved_creds = old_creds;
449}
450
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300451static void io_impersonate_work(struct io_worker *worker,
452 struct io_wq_work *work)
453{
454 if (work->files && current->files != work->files) {
455 task_lock(current);
456 current->files = work->files;
457 task_unlock(current);
458 }
459 if (work->fs && current->fs != work->fs)
460 current->fs = work->fs;
461 if (work->mm != worker->mm)
462 io_wq_switch_mm(worker, work);
463 if (worker->cur_creds != work->creds)
464 io_wq_switch_creds(worker, work);
Pavel Begunkov57f1a642020-07-15 12:46:52 +0300465 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = work->fsize;
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300466}
467
468static void io_assign_current_work(struct io_worker *worker,
469 struct io_wq_work *work)
470{
Pavel Begunkovd78298e2020-03-14 00:31:03 +0300471 if (work) {
472 /* flush pending signals before assigning new work */
473 if (signal_pending(current))
474 flush_signals(current);
475 cond_resched();
476 }
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300477
478 spin_lock_irq(&worker->lock);
479 worker->cur_work = work;
480 spin_unlock_irq(&worker->lock);
481}
482
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300483static void io_wqe_enqueue(struct io_wqe *wqe, struct io_wq_work *work);
484
Jens Axboe771b53d02019-10-22 10:25:58 -0600485static void io_worker_handle_work(struct io_worker *worker)
486 __releases(wqe->lock)
487{
Jens Axboe771b53d02019-10-22 10:25:58 -0600488 struct io_wqe *wqe = worker->wqe;
489 struct io_wq *wq = wqe->wq;
490
491 do {
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300492 struct io_wq_work *work;
Pavel Begunkovf462fd32020-03-04 16:14:11 +0300493get_next:
Jens Axboe771b53d02019-10-22 10:25:58 -0600494 /*
Jens Axboe771b53d02019-10-22 10:25:58 -0600495 * If we got some work, mark us as busy. If we didn't, but
496 * the list isn't empty, it means we stalled on hashed work.
497 * Mark us stalled so we don't keep looking for work when we
498 * can't make progress, any work completion or insertion will
499 * clear the stalled flag.
500 */
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300501 work = io_get_next_work(wqe);
Jens Axboe771b53d02019-10-22 10:25:58 -0600502 if (work)
503 __io_worker_busy(wqe, worker, work);
Jens Axboe6206f0e2019-11-26 11:59:32 -0700504 else if (!wq_list_empty(&wqe->work_list))
Jens Axboe771b53d02019-10-22 10:25:58 -0600505 wqe->flags |= IO_WQE_FLAG_STALLED;
506
507 spin_unlock_irq(&wqe->lock);
508 if (!work)
509 break;
Pavel Begunkov58e39312020-03-04 16:14:10 +0300510 io_assign_current_work(worker, work);
Jens Axboe36c2f922019-11-13 09:43:34 -0700511
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300512 /* handle a whole dependent link */
513 do {
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300514 struct io_wq_work *old_work, *next_hashed, *linked;
Pavel Begunkovb089ed392020-07-25 14:42:00 +0300515 unsigned int hash = io_get_work_hash(work);
Hillf Dantonfd1c4bc2019-12-24 09:14:29 -0700516
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300517 next_hashed = wq_next_work(work);
Pavel Begunkov58e39312020-03-04 16:14:10 +0300518 io_impersonate_work(worker, work);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300519 /*
520 * OK to set IO_WQ_WORK_CANCEL even for uncancellable
521 * work, the worker function will do the right thing.
522 */
523 if (test_bit(IO_WQ_BIT_CANCEL, &wq->state))
524 work->flags |= IO_WQ_WORK_CANCEL;
Jens Axboe36c2f922019-11-13 09:43:34 -0700525
Pavel Begunkovf4db7182020-06-25 18:20:54 +0300526 old_work = work;
527 linked = wq->do_work(work);
Pavel Begunkovf2cf1142020-03-22 19:14:26 +0300528
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300529 work = next_hashed;
530 if (!work && linked && !io_wq_is_hashed(linked)) {
531 work = linked;
532 linked = NULL;
533 }
534 io_assign_current_work(worker, work);
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300535 wq->free_work(old_work);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300536
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300537 if (linked)
538 io_wqe_enqueue(wqe, linked);
539
540 if (hash != -1U && !next_hashed) {
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300541 spin_lock_irq(&wqe->lock);
542 wqe->hash_map &= ~BIT_ULL(hash);
543 wqe->flags &= ~IO_WQE_FLAG_STALLED;
Pavel Begunkovf462fd32020-03-04 16:14:11 +0300544 /* skip unnecessary unlock-lock wqe->lock */
545 if (!work)
546 goto get_next;
547 spin_unlock_irq(&wqe->lock);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300548 }
Pavel Begunkov58e39312020-03-04 16:14:10 +0300549 } while (work);
Jens Axboe36c2f922019-11-13 09:43:34 -0700550
551 spin_lock_irq(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600552 } while (1);
553}
554
Jens Axboe771b53d02019-10-22 10:25:58 -0600555static int io_wqe_worker(void *data)
556{
557 struct io_worker *worker = data;
558 struct io_wqe *wqe = worker->wqe;
559 struct io_wq *wq = wqe->wq;
Jens Axboe771b53d02019-10-22 10:25:58 -0600560
561 io_worker_start(wqe, worker);
562
563 while (!test_bit(IO_WQ_BIT_EXIT, &wq->state)) {
Jens Axboe506d95f2019-12-07 21:03:59 -0700564 set_current_state(TASK_INTERRUPTIBLE);
Jens Axboee995d512019-12-07 21:06:46 -0700565loop:
Jens Axboe771b53d02019-10-22 10:25:58 -0600566 spin_lock_irq(&wqe->lock);
567 if (io_wqe_run_queue(wqe)) {
568 __set_current_state(TASK_RUNNING);
569 io_worker_handle_work(worker);
Jens Axboee995d512019-12-07 21:06:46 -0700570 goto loop;
Jens Axboe771b53d02019-10-22 10:25:58 -0600571 }
572 /* drops the lock on success, retry */
573 if (__io_worker_idle(wqe, worker)) {
574 __release(&wqe->lock);
Jens Axboee995d512019-12-07 21:06:46 -0700575 goto loop;
Jens Axboe771b53d02019-10-22 10:25:58 -0600576 }
577 spin_unlock_irq(&wqe->lock);
578 if (signal_pending(current))
579 flush_signals(current);
580 if (schedule_timeout(WORKER_IDLE_TIMEOUT))
581 continue;
582 /* timed out, exit unless we're the fixed worker */
583 if (test_bit(IO_WQ_BIT_EXIT, &wq->state) ||
584 !(worker->flags & IO_WORKER_F_FIXED))
585 break;
586 }
587
Jens Axboe771b53d02019-10-22 10:25:58 -0600588 if (test_bit(IO_WQ_BIT_EXIT, &wq->state)) {
589 spin_lock_irq(&wqe->lock);
Jens Axboe6206f0e2019-11-26 11:59:32 -0700590 if (!wq_list_empty(&wqe->work_list))
Jens Axboe771b53d02019-10-22 10:25:58 -0600591 io_worker_handle_work(worker);
592 else
593 spin_unlock_irq(&wqe->lock);
594 }
595
596 io_worker_exit(worker);
597 return 0;
598}
599
600/*
Jens Axboe771b53d02019-10-22 10:25:58 -0600601 * Called when a worker is scheduled in. Mark us as currently running.
602 */
603void io_wq_worker_running(struct task_struct *tsk)
604{
605 struct io_worker *worker = kthread_data(tsk);
606 struct io_wqe *wqe = worker->wqe;
607
608 if (!(worker->flags & IO_WORKER_F_UP))
609 return;
610 if (worker->flags & IO_WORKER_F_RUNNING)
611 return;
612 worker->flags |= IO_WORKER_F_RUNNING;
Jens Axboec5def4a2019-11-07 11:41:16 -0700613 io_wqe_inc_running(wqe, worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600614}
615
616/*
617 * Called when worker is going to sleep. If there are no workers currently
618 * running and we have work pending, wake up a free one or have the manager
619 * set one up.
620 */
621void io_wq_worker_sleeping(struct task_struct *tsk)
622{
623 struct io_worker *worker = kthread_data(tsk);
624 struct io_wqe *wqe = worker->wqe;
625
626 if (!(worker->flags & IO_WORKER_F_UP))
627 return;
628 if (!(worker->flags & IO_WORKER_F_RUNNING))
629 return;
630
631 worker->flags &= ~IO_WORKER_F_RUNNING;
632
633 spin_lock_irq(&wqe->lock);
Jens Axboec5def4a2019-11-07 11:41:16 -0700634 io_wqe_dec_running(wqe, worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600635 spin_unlock_irq(&wqe->lock);
636}
637
Jens Axboeb60fda62019-11-19 08:37:07 -0700638static bool create_io_worker(struct io_wq *wq, struct io_wqe *wqe, int index)
Jens Axboe771b53d02019-10-22 10:25:58 -0600639{
Jens Axboec5def4a2019-11-07 11:41:16 -0700640 struct io_wqe_acct *acct =&wqe->acct[index];
Jens Axboe771b53d02019-10-22 10:25:58 -0600641 struct io_worker *worker;
642
Jann Hornad6e0052019-11-26 17:39:45 +0100643 worker = kzalloc_node(sizeof(*worker), GFP_KERNEL, wqe->node);
Jens Axboe771b53d02019-10-22 10:25:58 -0600644 if (!worker)
Jens Axboeb60fda62019-11-19 08:37:07 -0700645 return false;
Jens Axboe771b53d02019-10-22 10:25:58 -0600646
647 refcount_set(&worker->ref, 1);
648 worker->nulls_node.pprev = NULL;
Jens Axboe771b53d02019-10-22 10:25:58 -0600649 worker->wqe = wqe;
Jens Axboe36c2f922019-11-13 09:43:34 -0700650 spin_lock_init(&worker->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600651
652 worker->task = kthread_create_on_node(io_wqe_worker, worker, wqe->node,
Jens Axboec5def4a2019-11-07 11:41:16 -0700653 "io_wqe_worker-%d/%d", index, wqe->node);
Jens Axboe771b53d02019-10-22 10:25:58 -0600654 if (IS_ERR(worker->task)) {
655 kfree(worker);
Jens Axboeb60fda62019-11-19 08:37:07 -0700656 return false;
Jens Axboe771b53d02019-10-22 10:25:58 -0600657 }
658
659 spin_lock_irq(&wqe->lock);
Jens Axboe021d1cd2019-11-14 08:00:41 -0700660 hlist_nulls_add_head_rcu(&worker->nulls_node, &wqe->free_list);
Jens Axboee61df662019-11-13 13:54:49 -0700661 list_add_tail_rcu(&worker->all_list, &wqe->all_list);
Jens Axboe771b53d02019-10-22 10:25:58 -0600662 worker->flags |= IO_WORKER_F_FREE;
Jens Axboec5def4a2019-11-07 11:41:16 -0700663 if (index == IO_WQ_ACCT_BOUND)
664 worker->flags |= IO_WORKER_F_BOUND;
665 if (!acct->nr_workers && (worker->flags & IO_WORKER_F_BOUND))
Jens Axboe771b53d02019-10-22 10:25:58 -0600666 worker->flags |= IO_WORKER_F_FIXED;
Jens Axboec5def4a2019-11-07 11:41:16 -0700667 acct->nr_workers++;
Jens Axboe771b53d02019-10-22 10:25:58 -0600668 spin_unlock_irq(&wqe->lock);
669
Jens Axboec5def4a2019-11-07 11:41:16 -0700670 if (index == IO_WQ_ACCT_UNBOUND)
671 atomic_inc(&wq->user->processes);
672
Jens Axboe771b53d02019-10-22 10:25:58 -0600673 wake_up_process(worker->task);
Jens Axboeb60fda62019-11-19 08:37:07 -0700674 return true;
Jens Axboe771b53d02019-10-22 10:25:58 -0600675}
676
Jens Axboec5def4a2019-11-07 11:41:16 -0700677static inline bool io_wqe_need_worker(struct io_wqe *wqe, int index)
Jens Axboe771b53d02019-10-22 10:25:58 -0600678 __must_hold(wqe->lock)
679{
Jens Axboec5def4a2019-11-07 11:41:16 -0700680 struct io_wqe_acct *acct = &wqe->acct[index];
Jens Axboe771b53d02019-10-22 10:25:58 -0600681
Jens Axboec5def4a2019-11-07 11:41:16 -0700682 /* if we have available workers or no work, no need */
Jens Axboe021d1cd2019-11-14 08:00:41 -0700683 if (!hlist_nulls_empty(&wqe->free_list) || !io_wqe_run_queue(wqe))
Jens Axboec5def4a2019-11-07 11:41:16 -0700684 return false;
685 return acct->nr_workers < acct->max_workers;
Jens Axboe771b53d02019-10-22 10:25:58 -0600686}
687
688/*
689 * Manager thread. Tasked with creating new workers, if we need them.
690 */
691static int io_wq_manager(void *data)
692{
693 struct io_wq *wq = data;
Jann Horn3fc50ab2019-11-26 19:10:20 +0100694 int workers_to_create = num_possible_nodes();
695 int node;
Jens Axboeb60fda62019-11-19 08:37:07 -0700696
697 /* create fixed workers */
Jann Horn3fc50ab2019-11-26 19:10:20 +0100698 refcount_set(&wq->refs, workers_to_create);
699 for_each_node(node) {
Jens Axboe75634392020-02-11 06:30:06 -0700700 if (!node_online(node))
701 continue;
Jann Horn3fc50ab2019-11-26 19:10:20 +0100702 if (!create_io_worker(wq, wq->wqes[node], IO_WQ_ACCT_BOUND))
703 goto err;
704 workers_to_create--;
Jens Axboeb60fda62019-11-19 08:37:07 -0700705 }
706
Jens Axboe75634392020-02-11 06:30:06 -0700707 while (workers_to_create--)
708 refcount_dec(&wq->refs);
709
Jens Axboeb60fda62019-11-19 08:37:07 -0700710 complete(&wq->done);
Jens Axboe771b53d02019-10-22 10:25:58 -0600711
712 while (!kthread_should_stop()) {
Jens Axboeaa96bf82020-04-03 11:26:26 -0600713 if (current->task_works)
714 task_work_run();
715
Jann Horn3fc50ab2019-11-26 19:10:20 +0100716 for_each_node(node) {
717 struct io_wqe *wqe = wq->wqes[node];
Jens Axboec5def4a2019-11-07 11:41:16 -0700718 bool fork_worker[2] = { false, false };
Jens Axboe771b53d02019-10-22 10:25:58 -0600719
Jens Axboe75634392020-02-11 06:30:06 -0700720 if (!node_online(node))
721 continue;
722
Jens Axboe771b53d02019-10-22 10:25:58 -0600723 spin_lock_irq(&wqe->lock);
Jens Axboec5def4a2019-11-07 11:41:16 -0700724 if (io_wqe_need_worker(wqe, IO_WQ_ACCT_BOUND))
725 fork_worker[IO_WQ_ACCT_BOUND] = true;
726 if (io_wqe_need_worker(wqe, IO_WQ_ACCT_UNBOUND))
727 fork_worker[IO_WQ_ACCT_UNBOUND] = true;
Jens Axboe771b53d02019-10-22 10:25:58 -0600728 spin_unlock_irq(&wqe->lock);
Jens Axboec5def4a2019-11-07 11:41:16 -0700729 if (fork_worker[IO_WQ_ACCT_BOUND])
730 create_io_worker(wq, wqe, IO_WQ_ACCT_BOUND);
731 if (fork_worker[IO_WQ_ACCT_UNBOUND])
732 create_io_worker(wq, wqe, IO_WQ_ACCT_UNBOUND);
Jens Axboe771b53d02019-10-22 10:25:58 -0600733 }
734 set_current_state(TASK_INTERRUPTIBLE);
735 schedule_timeout(HZ);
736 }
737
Jens Axboeaa96bf82020-04-03 11:26:26 -0600738 if (current->task_works)
739 task_work_run();
740
Jens Axboe771b53d02019-10-22 10:25:58 -0600741 return 0;
Jens Axboeb60fda62019-11-19 08:37:07 -0700742err:
743 set_bit(IO_WQ_BIT_ERROR, &wq->state);
744 set_bit(IO_WQ_BIT_EXIT, &wq->state);
Jann Horn3fc50ab2019-11-26 19:10:20 +0100745 if (refcount_sub_and_test(workers_to_create, &wq->refs))
Jens Axboeb60fda62019-11-19 08:37:07 -0700746 complete(&wq->done);
747 return 0;
Jens Axboe771b53d02019-10-22 10:25:58 -0600748}
749
Jens Axboec5def4a2019-11-07 11:41:16 -0700750static bool io_wq_can_queue(struct io_wqe *wqe, struct io_wqe_acct *acct,
751 struct io_wq_work *work)
752{
753 bool free_worker;
754
755 if (!(work->flags & IO_WQ_WORK_UNBOUND))
756 return true;
757 if (atomic_read(&acct->nr_running))
758 return true;
759
760 rcu_read_lock();
Jens Axboe021d1cd2019-11-14 08:00:41 -0700761 free_worker = !hlist_nulls_empty(&wqe->free_list);
Jens Axboec5def4a2019-11-07 11:41:16 -0700762 rcu_read_unlock();
763 if (free_worker)
764 return true;
765
766 if (atomic_read(&wqe->wq->user->processes) >= acct->max_workers &&
767 !(capable(CAP_SYS_RESOURCE) || capable(CAP_SYS_ADMIN)))
768 return false;
769
770 return true;
771}
772
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300773static void io_run_cancel(struct io_wq_work *work, struct io_wqe *wqe)
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300774{
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300775 struct io_wq *wq = wqe->wq;
776
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300777 do {
778 struct io_wq_work *old_work = work;
779
780 work->flags |= IO_WQ_WORK_CANCEL;
Pavel Begunkovf4db7182020-06-25 18:20:54 +0300781 work = wq->do_work(work);
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300782 wq->free_work(old_work);
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300783 } while (work);
784}
785
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300786static void io_wqe_insert_work(struct io_wqe *wqe, struct io_wq_work *work)
787{
788 unsigned int hash;
789 struct io_wq_work *tail;
790
791 if (!io_wq_is_hashed(work)) {
792append:
793 wq_list_add_tail(&work->list, &wqe->work_list);
794 return;
795 }
796
797 hash = io_get_work_hash(work);
798 tail = wqe->hash_tail[hash];
799 wqe->hash_tail[hash] = work;
800 if (!tail)
801 goto append;
802
803 wq_list_add_after(&work->list, &tail->list, &wqe->work_list);
804}
805
Jens Axboe771b53d02019-10-22 10:25:58 -0600806static void io_wqe_enqueue(struct io_wqe *wqe, struct io_wq_work *work)
807{
Jens Axboec5def4a2019-11-07 11:41:16 -0700808 struct io_wqe_acct *acct = io_work_get_acct(wqe, work);
Jens Axboe895e2ca2019-12-17 08:46:33 -0700809 int work_flags;
Jens Axboe771b53d02019-10-22 10:25:58 -0600810 unsigned long flags;
811
Jens Axboec5def4a2019-11-07 11:41:16 -0700812 /*
813 * Do early check to see if we need a new unbound worker, and if we do,
814 * if we're allowed to do so. This isn't 100% accurate as there's a
815 * gap between this check and incrementing the value, but that's OK.
816 * It's close enough to not be an issue, fork() has the same delay.
817 */
818 if (unlikely(!io_wq_can_queue(wqe, acct, work))) {
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300819 io_run_cancel(work, wqe);
Jens Axboec5def4a2019-11-07 11:41:16 -0700820 return;
821 }
822
Jens Axboe895e2ca2019-12-17 08:46:33 -0700823 work_flags = work->flags;
Jens Axboe771b53d02019-10-22 10:25:58 -0600824 spin_lock_irqsave(&wqe->lock, flags);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300825 io_wqe_insert_work(wqe, work);
Jens Axboe771b53d02019-10-22 10:25:58 -0600826 wqe->flags &= ~IO_WQE_FLAG_STALLED;
827 spin_unlock_irqrestore(&wqe->lock, flags);
828
Jens Axboe895e2ca2019-12-17 08:46:33 -0700829 if ((work_flags & IO_WQ_WORK_CONCURRENT) ||
830 !atomic_read(&acct->nr_running))
Jens Axboec5def4a2019-11-07 11:41:16 -0700831 io_wqe_wake_worker(wqe, acct);
Jens Axboe771b53d02019-10-22 10:25:58 -0600832}
833
834void io_wq_enqueue(struct io_wq *wq, struct io_wq_work *work)
835{
836 struct io_wqe *wqe = wq->wqes[numa_node_id()];
837
838 io_wqe_enqueue(wqe, work);
839}
840
841/*
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300842 * Work items that hash to the same value will not be done in parallel.
843 * Used to limit concurrent writes, generally hashed by inode.
Jens Axboe771b53d02019-10-22 10:25:58 -0600844 */
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300845void io_wq_hash_work(struct io_wq_work *work, void *val)
Jens Axboe771b53d02019-10-22 10:25:58 -0600846{
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300847 unsigned int bit;
Jens Axboe771b53d02019-10-22 10:25:58 -0600848
849 bit = hash_ptr(val, IO_WQ_HASH_ORDER);
850 work->flags |= (IO_WQ_WORK_HASHED | (bit << IO_WQ_HASH_SHIFT));
Jens Axboe771b53d02019-10-22 10:25:58 -0600851}
852
853static bool io_wqe_worker_send_sig(struct io_worker *worker, void *data)
854{
855 send_sig(SIGINT, worker->task, 1);
856 return false;
857}
858
859/*
860 * Iterate the passed in list and call the specific function for each
861 * worker that isn't exiting
862 */
863static bool io_wq_for_each_worker(struct io_wqe *wqe,
Jens Axboe771b53d02019-10-22 10:25:58 -0600864 bool (*func)(struct io_worker *, void *),
865 void *data)
866{
Jens Axboe771b53d02019-10-22 10:25:58 -0600867 struct io_worker *worker;
868 bool ret = false;
869
Jens Axboee61df662019-11-13 13:54:49 -0700870 list_for_each_entry_rcu(worker, &wqe->all_list, all_list) {
Jens Axboe771b53d02019-10-22 10:25:58 -0600871 if (io_worker_get(worker)) {
Jens Axboe75634392020-02-11 06:30:06 -0700872 /* no task if node is/was offline */
873 if (worker->task)
874 ret = func(worker, data);
Jens Axboe771b53d02019-10-22 10:25:58 -0600875 io_worker_release(worker);
876 if (ret)
877 break;
878 }
879 }
Jens Axboee61df662019-11-13 13:54:49 -0700880
Jens Axboe771b53d02019-10-22 10:25:58 -0600881 return ret;
882}
883
884void io_wq_cancel_all(struct io_wq *wq)
885{
Jann Horn3fc50ab2019-11-26 19:10:20 +0100886 int node;
Jens Axboe771b53d02019-10-22 10:25:58 -0600887
888 set_bit(IO_WQ_BIT_CANCEL, &wq->state);
889
Jens Axboe771b53d02019-10-22 10:25:58 -0600890 rcu_read_lock();
Jann Horn3fc50ab2019-11-26 19:10:20 +0100891 for_each_node(node) {
892 struct io_wqe *wqe = wq->wqes[node];
Jens Axboe771b53d02019-10-22 10:25:58 -0600893
Jens Axboee61df662019-11-13 13:54:49 -0700894 io_wq_for_each_worker(wqe, io_wqe_worker_send_sig, NULL);
Jens Axboe771b53d02019-10-22 10:25:58 -0600895 }
896 rcu_read_unlock();
897}
898
Jens Axboe62755e32019-10-28 21:49:21 -0600899struct io_cb_cancel_data {
Pavel Begunkov2293b412020-03-07 01:15:39 +0300900 work_cancel_fn *fn;
901 void *data;
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300902 int nr_running;
903 int nr_pending;
904 bool cancel_all;
Jens Axboe62755e32019-10-28 21:49:21 -0600905};
906
Pavel Begunkov2293b412020-03-07 01:15:39 +0300907static bool io_wq_worker_cancel(struct io_worker *worker, void *data)
Jens Axboe62755e32019-10-28 21:49:21 -0600908{
Pavel Begunkov2293b412020-03-07 01:15:39 +0300909 struct io_cb_cancel_data *match = data;
Jens Axboe6f726532019-11-05 13:51:51 -0700910 unsigned long flags;
Jens Axboe62755e32019-10-28 21:49:21 -0600911
912 /*
913 * Hold the lock to avoid ->cur_work going out of scope, caller
Jens Axboe36c2f922019-11-13 09:43:34 -0700914 * may dereference the passed in work.
Jens Axboe62755e32019-10-28 21:49:21 -0600915 */
Jens Axboe36c2f922019-11-13 09:43:34 -0700916 spin_lock_irqsave(&worker->lock, flags);
Jens Axboe62755e32019-10-28 21:49:21 -0600917 if (worker->cur_work &&
Jens Axboe0c9d5cc2019-12-11 19:29:43 -0700918 !(worker->cur_work->flags & IO_WQ_WORK_NO_CANCEL) &&
Pavel Begunkov2293b412020-03-07 01:15:39 +0300919 match->fn(worker->cur_work, match->data)) {
Jens Axboe771b53d02019-10-22 10:25:58 -0600920 send_sig(SIGINT, worker->task, 1);
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300921 match->nr_running++;
Jens Axboe771b53d02019-10-22 10:25:58 -0600922 }
Jens Axboe36c2f922019-11-13 09:43:34 -0700923 spin_unlock_irqrestore(&worker->lock, flags);
Jens Axboe771b53d02019-10-22 10:25:58 -0600924
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300925 return match->nr_running && !match->cancel_all;
Jens Axboe771b53d02019-10-22 10:25:58 -0600926}
927
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300928static void io_wqe_cancel_pending_work(struct io_wqe *wqe,
Pavel Begunkovf4c26652020-06-15 10:24:02 +0300929 struct io_cb_cancel_data *match)
Jens Axboe771b53d02019-10-22 10:25:58 -0600930{
Jens Axboe6206f0e2019-11-26 11:59:32 -0700931 struct io_wq_work_node *node, *prev;
Jens Axboe771b53d02019-10-22 10:25:58 -0600932 struct io_wq_work *work;
Jens Axboe6f726532019-11-05 13:51:51 -0700933 unsigned long flags;
Jens Axboe771b53d02019-10-22 10:25:58 -0600934
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300935retry:
Jens Axboe6f726532019-11-05 13:51:51 -0700936 spin_lock_irqsave(&wqe->lock, flags);
Jens Axboe6206f0e2019-11-26 11:59:32 -0700937 wq_list_for_each(node, prev, &wqe->work_list) {
938 work = container_of(node, struct io_wq_work, list);
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300939 if (!match->fn(work, match->data))
940 continue;
Jens Axboe6206f0e2019-11-26 11:59:32 -0700941
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300942 wq_list_del(&wqe->work_list, node, prev);
943 spin_unlock_irqrestore(&wqe->lock, flags);
944 io_run_cancel(work, wqe);
945 match->nr_pending++;
946 if (!match->cancel_all)
947 return;
948
949 /* not safe to continue after unlock */
950 goto retry;
Jens Axboe771b53d02019-10-22 10:25:58 -0600951 }
Jens Axboe6f726532019-11-05 13:51:51 -0700952 spin_unlock_irqrestore(&wqe->lock, flags);
Pavel Begunkovf4c26652020-06-15 10:24:02 +0300953}
Jens Axboe771b53d02019-10-22 10:25:58 -0600954
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300955static void io_wqe_cancel_running_work(struct io_wqe *wqe,
Pavel Begunkovf4c26652020-06-15 10:24:02 +0300956 struct io_cb_cancel_data *match)
957{
Jens Axboe771b53d02019-10-22 10:25:58 -0600958 rcu_read_lock();
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300959 io_wq_for_each_worker(wqe, io_wq_worker_cancel, match);
Jens Axboe771b53d02019-10-22 10:25:58 -0600960 rcu_read_unlock();
Jens Axboe771b53d02019-10-22 10:25:58 -0600961}
962
Pavel Begunkov2293b412020-03-07 01:15:39 +0300963enum io_wq_cancel io_wq_cancel_cb(struct io_wq *wq, work_cancel_fn *cancel,
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300964 void *data, bool cancel_all)
Pavel Begunkov2293b412020-03-07 01:15:39 +0300965{
966 struct io_cb_cancel_data match = {
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300967 .fn = cancel,
968 .data = data,
969 .cancel_all = cancel_all,
Pavel Begunkov2293b412020-03-07 01:15:39 +0300970 };
Pavel Begunkov2293b412020-03-07 01:15:39 +0300971 int node;
972
Pavel Begunkovf4c26652020-06-15 10:24:02 +0300973 /*
974 * First check pending list, if we're lucky we can just remove it
975 * from there. CANCEL_OK means that the work is returned as-new,
976 * no completion will be posted for it.
977 */
Pavel Begunkov2293b412020-03-07 01:15:39 +0300978 for_each_node(node) {
979 struct io_wqe *wqe = wq->wqes[node];
980
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300981 io_wqe_cancel_pending_work(wqe, &match);
982 if (match.nr_pending && !match.cancel_all)
Pavel Begunkovf4c26652020-06-15 10:24:02 +0300983 return IO_WQ_CANCEL_OK;
Pavel Begunkov2293b412020-03-07 01:15:39 +0300984 }
985
Pavel Begunkovf4c26652020-06-15 10:24:02 +0300986 /*
987 * Now check if a free (going busy) or busy worker has the work
988 * currently running. If we find it there, we'll return CANCEL_RUNNING
989 * as an indication that we attempt to signal cancellation. The
990 * completion will run normally in this case.
991 */
992 for_each_node(node) {
993 struct io_wqe *wqe = wq->wqes[node];
994
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300995 io_wqe_cancel_running_work(wqe, &match);
996 if (match.nr_running && !match.cancel_all)
Pavel Begunkovf4c26652020-06-15 10:24:02 +0300997 return IO_WQ_CANCEL_RUNNING;
998 }
999
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001000 if (match.nr_running)
1001 return IO_WQ_CANCEL_RUNNING;
1002 if (match.nr_pending)
1003 return IO_WQ_CANCEL_OK;
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001004 return IO_WQ_CANCEL_NOTFOUND;
Pavel Begunkov2293b412020-03-07 01:15:39 +03001005}
1006
1007static bool io_wq_io_cb_cancel_data(struct io_wq_work *work, void *data)
Jens Axboe00bcda12020-02-08 19:13:32 -07001008{
1009 return work == data;
1010}
1011
Jens Axboe771b53d02019-10-22 10:25:58 -06001012enum io_wq_cancel io_wq_cancel_work(struct io_wq *wq, struct io_wq_work *cwork)
1013{
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001014 return io_wq_cancel_cb(wq, io_wq_io_cb_cancel_data, (void *)cwork, false);
Jens Axboe771b53d02019-10-22 10:25:58 -06001015}
1016
Jens Axboe576a3472019-11-25 08:49:20 -07001017struct io_wq *io_wq_create(unsigned bounded, struct io_wq_data *data)
Jens Axboe771b53d02019-10-22 10:25:58 -06001018{
Jann Horn3fc50ab2019-11-26 19:10:20 +01001019 int ret = -ENOMEM, node;
Jens Axboe771b53d02019-10-22 10:25:58 -06001020 struct io_wq *wq;
1021
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +03001022 if (WARN_ON_ONCE(!data->free_work || !data->do_work))
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001023 return ERR_PTR(-EINVAL);
1024
Jann Hornad6e0052019-11-26 17:39:45 +01001025 wq = kzalloc(sizeof(*wq), GFP_KERNEL);
Jens Axboe771b53d02019-10-22 10:25:58 -06001026 if (!wq)
1027 return ERR_PTR(-ENOMEM);
1028
Jann Horn3fc50ab2019-11-26 19:10:20 +01001029 wq->wqes = kcalloc(nr_node_ids, sizeof(struct io_wqe *), GFP_KERNEL);
Jens Axboe771b53d02019-10-22 10:25:58 -06001030 if (!wq->wqes) {
1031 kfree(wq);
1032 return ERR_PTR(-ENOMEM);
1033 }
1034
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001035 wq->free_work = data->free_work;
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +03001036 wq->do_work = data->do_work;
Jens Axboe7d723062019-11-12 22:31:31 -07001037
Jens Axboec5def4a2019-11-07 11:41:16 -07001038 /* caller must already hold a reference to this */
Jens Axboe576a3472019-11-25 08:49:20 -07001039 wq->user = data->user;
Jens Axboec5def4a2019-11-07 11:41:16 -07001040
Jann Horn3fc50ab2019-11-26 19:10:20 +01001041 for_each_node(node) {
Jens Axboe771b53d02019-10-22 10:25:58 -06001042 struct io_wqe *wqe;
Jens Axboe75634392020-02-11 06:30:06 -07001043 int alloc_node = node;
Jens Axboe771b53d02019-10-22 10:25:58 -06001044
Jens Axboe75634392020-02-11 06:30:06 -07001045 if (!node_online(alloc_node))
1046 alloc_node = NUMA_NO_NODE;
1047 wqe = kzalloc_node(sizeof(struct io_wqe), GFP_KERNEL, alloc_node);
Jens Axboe771b53d02019-10-22 10:25:58 -06001048 if (!wqe)
Jann Horn3fc50ab2019-11-26 19:10:20 +01001049 goto err;
1050 wq->wqes[node] = wqe;
Jens Axboe75634392020-02-11 06:30:06 -07001051 wqe->node = alloc_node;
Jens Axboec5def4a2019-11-07 11:41:16 -07001052 wqe->acct[IO_WQ_ACCT_BOUND].max_workers = bounded;
1053 atomic_set(&wqe->acct[IO_WQ_ACCT_BOUND].nr_running, 0);
Jens Axboe576a3472019-11-25 08:49:20 -07001054 if (wq->user) {
Jens Axboec5def4a2019-11-07 11:41:16 -07001055 wqe->acct[IO_WQ_ACCT_UNBOUND].max_workers =
1056 task_rlimit(current, RLIMIT_NPROC);
1057 }
1058 atomic_set(&wqe->acct[IO_WQ_ACCT_UNBOUND].nr_running, 0);
Jens Axboe771b53d02019-10-22 10:25:58 -06001059 wqe->wq = wq;
1060 spin_lock_init(&wqe->lock);
Jens Axboe6206f0e2019-11-26 11:59:32 -07001061 INIT_WQ_LIST(&wqe->work_list);
Jens Axboe021d1cd2019-11-14 08:00:41 -07001062 INIT_HLIST_NULLS_HEAD(&wqe->free_list, 0);
Jens Axboee61df662019-11-13 13:54:49 -07001063 INIT_LIST_HEAD(&wqe->all_list);
Jens Axboe771b53d02019-10-22 10:25:58 -06001064 }
1065
1066 init_completion(&wq->done);
1067
Jens Axboe771b53d02019-10-22 10:25:58 -06001068 wq->manager = kthread_create(io_wq_manager, wq, "io_wq_manager");
1069 if (!IS_ERR(wq->manager)) {
1070 wake_up_process(wq->manager);
Jens Axboeb60fda62019-11-19 08:37:07 -07001071 wait_for_completion(&wq->done);
1072 if (test_bit(IO_WQ_BIT_ERROR, &wq->state)) {
1073 ret = -ENOMEM;
1074 goto err;
1075 }
Jens Axboe848f7e12020-01-23 15:33:32 -07001076 refcount_set(&wq->use_refs, 1);
Jens Axboeb60fda62019-11-19 08:37:07 -07001077 reinit_completion(&wq->done);
Jens Axboe771b53d02019-10-22 10:25:58 -06001078 return wq;
1079 }
1080
1081 ret = PTR_ERR(wq->manager);
Jens Axboe771b53d02019-10-22 10:25:58 -06001082 complete(&wq->done);
Jens Axboeb60fda62019-11-19 08:37:07 -07001083err:
Jann Horn3fc50ab2019-11-26 19:10:20 +01001084 for_each_node(node)
1085 kfree(wq->wqes[node]);
Jens Axboeb60fda62019-11-19 08:37:07 -07001086 kfree(wq->wqes);
1087 kfree(wq);
Jens Axboe771b53d02019-10-22 10:25:58 -06001088 return ERR_PTR(ret);
1089}
1090
Pavel Begunkoveba6f5a2020-01-28 03:15:47 +03001091bool io_wq_get(struct io_wq *wq, struct io_wq_data *data)
1092{
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +03001093 if (data->free_work != wq->free_work || data->do_work != wq->do_work)
Pavel Begunkoveba6f5a2020-01-28 03:15:47 +03001094 return false;
1095
1096 return refcount_inc_not_zero(&wq->use_refs);
1097}
1098
Jens Axboe771b53d02019-10-22 10:25:58 -06001099static bool io_wq_worker_wake(struct io_worker *worker, void *data)
1100{
1101 wake_up_process(worker->task);
1102 return false;
1103}
1104
Jens Axboe848f7e12020-01-23 15:33:32 -07001105static void __io_wq_destroy(struct io_wq *wq)
Jens Axboe771b53d02019-10-22 10:25:58 -06001106{
Jann Horn3fc50ab2019-11-26 19:10:20 +01001107 int node;
Jens Axboe771b53d02019-10-22 10:25:58 -06001108
Jens Axboeb60fda62019-11-19 08:37:07 -07001109 set_bit(IO_WQ_BIT_EXIT, &wq->state);
1110 if (wq->manager)
Jens Axboe771b53d02019-10-22 10:25:58 -06001111 kthread_stop(wq->manager);
Jens Axboe771b53d02019-10-22 10:25:58 -06001112
1113 rcu_read_lock();
Jann Horn3fc50ab2019-11-26 19:10:20 +01001114 for_each_node(node)
1115 io_wq_for_each_worker(wq->wqes[node], io_wq_worker_wake, NULL);
Jens Axboe771b53d02019-10-22 10:25:58 -06001116 rcu_read_unlock();
1117
1118 wait_for_completion(&wq->done);
1119
Jann Horn3fc50ab2019-11-26 19:10:20 +01001120 for_each_node(node)
1121 kfree(wq->wqes[node]);
Jens Axboe771b53d02019-10-22 10:25:58 -06001122 kfree(wq->wqes);
1123 kfree(wq);
1124}
Jens Axboe848f7e12020-01-23 15:33:32 -07001125
1126void io_wq_destroy(struct io_wq *wq)
1127{
1128 if (refcount_dec_and_test(&wq->use_refs))
1129 __io_wq_destroy(wq);
1130}
Jens Axboeaa96bf82020-04-03 11:26:26 -06001131
1132struct task_struct *io_wq_get_task(struct io_wq *wq)
1133{
1134 return wq->manager;
1135}