blob: bb7f161bb19cd0e0ad35c90835505e50cfc130d6 [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>
Jens Axboe771b53d02019-10-22 10:25:58 -060012#include <linux/percpu.h>
13#include <linux/slab.h>
Jens Axboe771b53d02019-10-22 10:25:58 -060014#include <linux/rculist_nulls.h>
Jens Axboe43c01fb2020-10-22 09:02:50 -060015#include <linux/cpu.h>
Jens Axboe3bfe6102021-02-16 14:15:30 -070016#include <linux/tracehook.h>
Paul Moore5bd21822021-02-16 19:46:48 -050017#include <linux/audit.h>
Eugene Syromiatnikovdd47c102021-09-13 17:44:15 +020018#include <uapi/linux/io_uring.h>
Jens Axboe771b53d02019-10-22 10:25:58 -060019
20#include "io-wq.h"
21
22#define WORKER_IDLE_TIMEOUT (5 * HZ)
23
24enum {
25 IO_WORKER_F_UP = 1, /* up and active */
26 IO_WORKER_F_RUNNING = 2, /* account as running */
27 IO_WORKER_F_FREE = 4, /* worker on free list */
Jens Axboe05c5f4e2021-09-01 13:01:17 -060028 IO_WORKER_F_BOUND = 8, /* is doing bounded work */
Jens Axboe771b53d02019-10-22 10:25:58 -060029};
30
31enum {
32 IO_WQ_BIT_EXIT = 0, /* wq exiting */
Jens Axboe771b53d02019-10-22 10:25:58 -060033};
34
35enum {
Jens Axboef95dc202021-08-31 13:57:32 -060036 IO_ACCT_STALLED_BIT = 0, /* stalled on hash */
Jens Axboe771b53d02019-10-22 10:25:58 -060037};
38
39/*
40 * One for each thread in a wqe pool
41 */
42struct io_worker {
43 refcount_t ref;
44 unsigned flags;
45 struct hlist_nulls_node nulls_node;
Jens Axboee61df662019-11-13 13:54:49 -070046 struct list_head all_list;
Jens Axboe771b53d02019-10-22 10:25:58 -060047 struct task_struct *task;
Jens Axboe771b53d02019-10-22 10:25:58 -060048 struct io_wqe *wqe;
Jens Axboe36c2f922019-11-13 09:43:34 -070049
Jens Axboe771b53d02019-10-22 10:25:58 -060050 struct io_wq_work *cur_work;
Jens Axboe361aee42022-01-18 19:23:51 -070051 struct io_wq_work *next_work;
Jens Axboe081b5822022-01-18 19:13:43 -070052 raw_spinlock_t lock;
Jens Axboe771b53d02019-10-22 10:25:58 -060053
Jens Axboeeb2de942021-02-23 19:59:06 -070054 struct completion ref_done;
55
Jens Axboed3e9f732021-08-04 08:37:25 -060056 unsigned long create_state;
57 struct callback_head create_work;
58 int create_index;
59
Jens Axboe3146cba2021-09-01 11:20:10 -060060 union {
61 struct rcu_head rcu;
62 struct work_struct work;
63 };
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;
Jens Axboe685fe7f2021-03-08 09:37:51 -070077 int index;
Jens Axboec5def4a2019-11-07 11:41:16 -070078 atomic_t nr_running;
Jens Axboef95dc202021-08-31 13:57:32 -060079 struct io_wq_work_list work_list;
80 unsigned long flags;
Jens Axboec5def4a2019-11-07 11:41:16 -070081};
82
83enum {
84 IO_WQ_ACCT_BOUND,
85 IO_WQ_ACCT_UNBOUND,
Jens Axboef95dc202021-08-31 13:57:32 -060086 IO_WQ_ACCT_NR,
Jens Axboec5def4a2019-11-07 11:41:16 -070087};
88
Jens Axboe771b53d02019-10-22 10:25:58 -060089/*
90 * Per-node worker thread pool
91 */
92struct io_wqe {
Jens Axboef95dc202021-08-31 13:57:32 -060093 raw_spinlock_t lock;
94 struct io_wqe_acct acct[2];
Jens Axboe771b53d02019-10-22 10:25:58 -060095
96 int node;
Jens Axboe771b53d02019-10-22 10:25:58 -060097
Jens Axboe021d1cd2019-11-14 08:00:41 -070098 struct hlist_nulls_head free_list;
Jens Axboee61df662019-11-13 13:54:49 -070099 struct list_head all_list;
Jens Axboe771b53d02019-10-22 10:25:58 -0600100
Jens Axboee9418942021-02-19 12:33:30 -0700101 struct wait_queue_entry wait;
102
Jens Axboe771b53d02019-10-22 10:25:58 -0600103 struct io_wq *wq;
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300104 struct io_wq_work *hash_tail[IO_WQ_NR_HASH_BUCKETS];
Jens Axboe0e034962021-06-17 10:08:11 -0600105
106 cpumask_var_t cpu_mask;
Jens Axboe771b53d02019-10-22 10:25:58 -0600107};
108
109/*
110 * Per io_wq state
111 */
112struct io_wq {
Jens Axboe771b53d02019-10-22 10:25:58 -0600113 unsigned long state;
Jens Axboe771b53d02019-10-22 10:25:58 -0600114
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300115 free_work_fn *free_work;
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +0300116 io_wq_work_fn *do_work;
Jens Axboe7d723062019-11-12 22:31:31 -0700117
Jens Axboee9418942021-02-19 12:33:30 -0700118 struct io_wq_hash *hash;
119
Jens Axboefb3a1f62021-02-26 09:47:20 -0700120 atomic_t worker_refs;
121 struct completion worker_done;
122
Jens Axboe43c01fb2020-10-22 09:02:50 -0600123 struct hlist_node cpuhp_node;
Jens Axboe3bfe6102021-02-16 14:15:30 -0700124
Jens Axboe685fe7f2021-03-08 09:37:51 -0700125 struct task_struct *task;
Pavel Begunkovc7f405d2021-06-14 02:36:12 +0100126
127 struct io_wqe *wqes[];
Jens Axboe771b53d02019-10-22 10:25:58 -0600128};
129
Jens Axboe43c01fb2020-10-22 09:02:50 -0600130static enum cpuhp_state io_wq_online;
131
Jens Axboef0127252021-03-03 15:47:04 -0700132struct io_cb_cancel_data {
133 work_cancel_fn *fn;
134 void *data;
135 int nr_running;
136 int nr_pending;
137 bool cancel_all;
138};
139
Jens Axboe3146cba2021-09-01 11:20:10 -0600140static bool create_io_worker(struct io_wq *wq, struct io_wqe *wqe, int index);
Jens Axboe83d6c392021-08-03 09:14:35 -0600141static void io_wqe_dec_running(struct io_worker *worker);
Jens Axboe3146cba2021-09-01 11:20:10 -0600142static bool io_acct_cancel_pending_work(struct io_wqe *wqe,
143 struct io_wqe_acct *acct,
144 struct io_cb_cancel_data *match);
Pavel Begunkov1d5f5ea2021-10-29 13:11:33 +0100145static void create_worker_cb(struct callback_head *cb);
Jens Axboe71a85382021-12-10 08:29:30 -0700146static void io_wq_cancel_tw_create(struct io_wq *wq);
Jens Axboef0127252021-03-03 15:47:04 -0700147
Jens Axboe771b53d02019-10-22 10:25:58 -0600148static bool io_worker_get(struct io_worker *worker)
149{
150 return refcount_inc_not_zero(&worker->ref);
151}
152
153static void io_worker_release(struct io_worker *worker)
154{
155 if (refcount_dec_and_test(&worker->ref))
Jens Axboeeb2de942021-02-23 19:59:06 -0700156 complete(&worker->ref_done);
Jens Axboe771b53d02019-10-22 10:25:58 -0600157}
158
Pavel Begunkov8418f222021-03-22 01:58:28 +0000159static inline struct io_wqe_acct *io_get_acct(struct io_wqe *wqe, bool bound)
160{
161 return &wqe->acct[bound ? IO_WQ_ACCT_BOUND : IO_WQ_ACCT_UNBOUND];
162}
163
Jens Axboec5def4a2019-11-07 11:41:16 -0700164static inline struct io_wqe_acct *io_work_get_acct(struct io_wqe *wqe,
165 struct io_wq_work *work)
166{
Pavel Begunkov8418f222021-03-22 01:58:28 +0000167 return io_get_acct(wqe, !(work->flags & IO_WQ_WORK_UNBOUND));
Jens Axboec5def4a2019-11-07 11:41:16 -0700168}
169
Jens Axboe958234d2021-02-17 09:00:57 -0700170static inline struct io_wqe_acct *io_wqe_get_acct(struct io_worker *worker)
Jens Axboec5def4a2019-11-07 11:41:16 -0700171{
Pavel Begunkov8418f222021-03-22 01:58:28 +0000172 return io_get_acct(worker->wqe, worker->flags & IO_WORKER_F_BOUND);
Jens Axboec5def4a2019-11-07 11:41:16 -0700173}
174
Jens Axboe685fe7f2021-03-08 09:37:51 -0700175static void io_worker_ref_put(struct io_wq *wq)
176{
177 if (atomic_dec_and_test(&wq->worker_refs))
178 complete(&wq->worker_done);
179}
180
Pavel Begunkov1d5f5ea2021-10-29 13:11:33 +0100181static void io_worker_cancel_cb(struct io_worker *worker)
182{
183 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
184 struct io_wqe *wqe = worker->wqe;
185 struct io_wq *wq = wqe->wq;
186
187 atomic_dec(&acct->nr_running);
188 raw_spin_lock(&worker->wqe->lock);
189 acct->nr_workers--;
190 raw_spin_unlock(&worker->wqe->lock);
191 io_worker_ref_put(wq);
192 clear_bit_unlock(0, &worker->create_state);
193 io_worker_release(worker);
194}
195
196static bool io_task_worker_match(struct callback_head *cb, void *data)
197{
198 struct io_worker *worker;
199
200 if (cb->func != create_worker_cb)
201 return false;
202 worker = container_of(cb, struct io_worker, create_work);
203 return worker == data;
204}
205
Jens Axboe771b53d02019-10-22 10:25:58 -0600206static void io_worker_exit(struct io_worker *worker)
207{
208 struct io_wqe *wqe = worker->wqe;
Pavel Begunkov1d5f5ea2021-10-29 13:11:33 +0100209 struct io_wq *wq = wqe->wq;
Jens Axboe771b53d02019-10-22 10:25:58 -0600210
Pavel Begunkov1d5f5ea2021-10-29 13:11:33 +0100211 while (1) {
212 struct callback_head *cb = task_work_cancel_match(wq->task,
213 io_task_worker_match, worker);
214
215 if (!cb)
216 break;
217 io_worker_cancel_cb(worker);
218 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600219
Pavel Begunkovc907e522021-10-23 12:13:55 +0100220 io_worker_release(worker);
Jens Axboeeb2de942021-02-23 19:59:06 -0700221 wait_for_completion(&worker->ref_done);
Jens Axboe771b53d02019-10-22 10:25:58 -0600222
Jens Axboea9a4aa92021-08-30 06:33:08 -0600223 raw_spin_lock(&wqe->lock);
Jens Axboe83d6c392021-08-03 09:14:35 -0600224 if (worker->flags & IO_WORKER_F_FREE)
Jens Axboebf1daa42021-02-16 18:00:55 -0700225 hlist_nulls_del_rcu(&worker->nulls_node);
Jens Axboee61df662019-11-13 13:54:49 -0700226 list_del_rcu(&worker->all_list);
Jens Axboe83d6c392021-08-03 09:14:35 -0600227 preempt_disable();
228 io_wqe_dec_running(worker);
229 worker->flags = 0;
230 current->flags &= ~PF_IO_WORKER;
231 preempt_enable();
Jens Axboea9a4aa92021-08-30 06:33:08 -0600232 raw_spin_unlock(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600233
YueHaibing364b05f2019-11-02 15:55:01 +0800234 kfree_rcu(worker, rcu);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700235 io_worker_ref_put(wqe->wq);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700236 do_exit(0);
Jens Axboe771b53d02019-10-22 10:25:58 -0600237}
238
Jens Axboef95dc202021-08-31 13:57:32 -0600239static inline bool io_acct_run_queue(struct io_wqe_acct *acct)
Jens Axboec5def4a2019-11-07 11:41:16 -0700240{
Jens Axboef95dc202021-08-31 13:57:32 -0600241 if (!wq_list_empty(&acct->work_list) &&
242 !test_bit(IO_ACCT_STALLED_BIT, &acct->flags))
Jens Axboec5def4a2019-11-07 11:41:16 -0700243 return true;
244 return false;
245}
246
247/*
248 * Check head of free list for an available worker. If one isn't available,
Jens Axboe685fe7f2021-03-08 09:37:51 -0700249 * caller must create one.
Jens Axboec5def4a2019-11-07 11:41:16 -0700250 */
Jens Axboef95dc202021-08-31 13:57:32 -0600251static bool io_wqe_activate_free_worker(struct io_wqe *wqe,
252 struct io_wqe_acct *acct)
Jens Axboec5def4a2019-11-07 11:41:16 -0700253 __must_hold(RCU)
254{
255 struct hlist_nulls_node *n;
256 struct io_worker *worker;
257
Jens Axboe83d6c392021-08-03 09:14:35 -0600258 /*
259 * Iterate free_list and see if we can find an idle worker to
260 * activate. If a given worker is on the free_list but in the process
261 * of exiting, keep trying.
262 */
263 hlist_nulls_for_each_entry_rcu(worker, n, &wqe->free_list, nulls_node) {
264 if (!io_worker_get(worker))
265 continue;
Jens Axboef95dc202021-08-31 13:57:32 -0600266 if (io_wqe_get_acct(worker) != acct) {
267 io_worker_release(worker);
268 continue;
269 }
Jens Axboe83d6c392021-08-03 09:14:35 -0600270 if (wake_up_process(worker->task)) {
271 io_worker_release(worker);
272 return true;
273 }
Jens Axboec5def4a2019-11-07 11:41:16 -0700274 io_worker_release(worker);
Jens Axboec5def4a2019-11-07 11:41:16 -0700275 }
276
277 return false;
278}
279
280/*
281 * We need a worker. If we find a free one, we're good. If not, and we're
Jens Axboe685fe7f2021-03-08 09:37:51 -0700282 * below the max number of workers, create one.
Jens Axboec5def4a2019-11-07 11:41:16 -0700283 */
Jens Axboe3146cba2021-09-01 11:20:10 -0600284static bool io_wqe_create_worker(struct io_wqe *wqe, struct io_wqe_acct *acct)
Jens Axboec5def4a2019-11-07 11:41:16 -0700285{
Jens Axboec5def4a2019-11-07 11:41:16 -0700286 /*
287 * Most likely an attempt to queue unbounded work on an io_wq that
288 * wasn't setup with any unbounded workers.
289 */
Pavel Begunkove6ab8992021-06-17 18:13:59 +0100290 if (unlikely(!acct->max_workers))
291 pr_warn_once("io-wq is not configured for unbound workers");
Jens Axboec5def4a2019-11-07 11:41:16 -0700292
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600293 raw_spin_lock(&wqe->lock);
Pavel Begunkovbc369922021-10-19 20:31:26 +0100294 if (acct->nr_workers >= acct->max_workers) {
Hao Xu7a842fb2021-09-12 03:40:50 +0800295 raw_spin_unlock(&wqe->lock);
296 return true;
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600297 }
Hao Xu7a842fb2021-09-12 03:40:50 +0800298 acct->nr_workers++;
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600299 raw_spin_unlock(&wqe->lock);
Hao Xu7a842fb2021-09-12 03:40:50 +0800300 atomic_inc(&acct->nr_running);
301 atomic_inc(&wqe->wq->worker_refs);
302 return create_io_worker(wqe->wq, wqe, acct->index);
Jens Axboec5def4a2019-11-07 11:41:16 -0700303}
304
Jens Axboe958234d2021-02-17 09:00:57 -0700305static void io_wqe_inc_running(struct io_worker *worker)
Jens Axboec5def4a2019-11-07 11:41:16 -0700306{
Jens Axboe958234d2021-02-17 09:00:57 -0700307 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
Jens Axboec5def4a2019-11-07 11:41:16 -0700308
309 atomic_inc(&acct->nr_running);
310}
311
Jens Axboe685fe7f2021-03-08 09:37:51 -0700312static void create_worker_cb(struct callback_head *cb)
313{
Jens Axboed3e9f732021-08-04 08:37:25 -0600314 struct io_worker *worker;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700315 struct io_wq *wq;
Hao Xu21698272021-08-05 18:05:38 +0800316 struct io_wqe *wqe;
317 struct io_wqe_acct *acct;
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600318 bool do_create = false;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700319
Jens Axboed3e9f732021-08-04 08:37:25 -0600320 worker = container_of(cb, struct io_worker, create_work);
321 wqe = worker->wqe;
Hao Xu21698272021-08-05 18:05:38 +0800322 wq = wqe->wq;
Jens Axboed3e9f732021-08-04 08:37:25 -0600323 acct = &wqe->acct[worker->create_index];
Jens Axboea9a4aa92021-08-30 06:33:08 -0600324 raw_spin_lock(&wqe->lock);
Hao Xu49e7f0c2021-08-08 21:54:33 +0800325 if (acct->nr_workers < acct->max_workers) {
Hao Xu21698272021-08-05 18:05:38 +0800326 acct->nr_workers++;
Hao Xu49e7f0c2021-08-08 21:54:33 +0800327 do_create = true;
328 }
Jens Axboea9a4aa92021-08-30 06:33:08 -0600329 raw_spin_unlock(&wqe->lock);
Hao Xu49e7f0c2021-08-08 21:54:33 +0800330 if (do_create) {
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600331 create_io_worker(wq, wqe, worker->create_index);
Hao Xu49e7f0c2021-08-08 21:54:33 +0800332 } else {
333 atomic_dec(&acct->nr_running);
334 io_worker_ref_put(wq);
335 }
Jens Axboed3e9f732021-08-04 08:37:25 -0600336 clear_bit_unlock(0, &worker->create_state);
337 io_worker_release(worker);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700338}
339
Jens Axboe3146cba2021-09-01 11:20:10 -0600340static bool io_queue_worker_create(struct io_worker *worker,
341 struct io_wqe_acct *acct,
342 task_work_func_t func)
Jens Axboe685fe7f2021-03-08 09:37:51 -0700343{
Jens Axboe3146cba2021-09-01 11:20:10 -0600344 struct io_wqe *wqe = worker->wqe;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700345 struct io_wq *wq = wqe->wq;
346
347 /* raced with exit, just ignore create call */
348 if (test_bit(IO_WQ_BIT_EXIT, &wq->state))
349 goto fail;
Jens Axboed3e9f732021-08-04 08:37:25 -0600350 if (!io_worker_get(worker))
351 goto fail;
352 /*
353 * create_state manages ownership of create_work/index. We should
354 * only need one entry per worker, as the worker going to sleep
355 * will trigger the condition, and waking will clear it once it
356 * runs the task_work.
357 */
358 if (test_bit(0, &worker->create_state) ||
359 test_and_set_bit_lock(0, &worker->create_state))
360 goto fail_release;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700361
Jens Axboe71a85382021-12-10 08:29:30 -0700362 atomic_inc(&wq->worker_refs);
Jens Axboe3146cba2021-09-01 11:20:10 -0600363 init_task_work(&worker->create_work, func);
Jens Axboed3e9f732021-08-04 08:37:25 -0600364 worker->create_index = acct->index;
Jens Axboe71a85382021-12-10 08:29:30 -0700365 if (!task_work_add(wq->task, &worker->create_work, TWA_SIGNAL)) {
366 /*
367 * EXIT may have been set after checking it above, check after
368 * adding the task_work and remove any creation item if it is
369 * now set. wq exit does that too, but we can have added this
370 * work item after we canceled in io_wq_exit_workers().
371 */
372 if (test_bit(IO_WQ_BIT_EXIT, &wq->state))
373 io_wq_cancel_tw_create(wq);
374 io_worker_ref_put(wq);
Jens Axboe3146cba2021-09-01 11:20:10 -0600375 return true;
Jens Axboe71a85382021-12-10 08:29:30 -0700376 }
377 io_worker_ref_put(wq);
Jens Axboed3e9f732021-08-04 08:37:25 -0600378 clear_bit_unlock(0, &worker->create_state);
379fail_release:
380 io_worker_release(worker);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700381fail:
382 atomic_dec(&acct->nr_running);
383 io_worker_ref_put(wq);
Jens Axboe3146cba2021-09-01 11:20:10 -0600384 return false;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700385}
386
Jens Axboe958234d2021-02-17 09:00:57 -0700387static void io_wqe_dec_running(struct io_worker *worker)
Jens Axboec5def4a2019-11-07 11:41:16 -0700388 __must_hold(wqe->lock)
389{
Jens Axboe958234d2021-02-17 09:00:57 -0700390 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
391 struct io_wqe *wqe = worker->wqe;
Jens Axboec5def4a2019-11-07 11:41:16 -0700392
Jens Axboe685fe7f2021-03-08 09:37:51 -0700393 if (!(worker->flags & IO_WORKER_F_UP))
394 return;
395
Jens Axboef95dc202021-08-31 13:57:32 -0600396 if (atomic_dec_and_test(&acct->nr_running) && io_acct_run_queue(acct)) {
Jens Axboe685fe7f2021-03-08 09:37:51 -0700397 atomic_inc(&acct->nr_running);
398 atomic_inc(&wqe->wq->worker_refs);
Jens Axboed800c652021-12-13 09:04:01 -0700399 raw_spin_unlock(&wqe->lock);
Jens Axboe3146cba2021-09-01 11:20:10 -0600400 io_queue_worker_create(worker, acct, create_worker_cb);
Jens Axboed800c652021-12-13 09:04:01 -0700401 raw_spin_lock(&wqe->lock);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700402 }
Jens Axboec5def4a2019-11-07 11:41:16 -0700403}
404
Jens Axboe771b53d02019-10-22 10:25:58 -0600405/*
406 * Worker will start processing some work. Move it to the busy list, if
407 * it's currently on the freelist
408 */
Jens Axboeea6e7cee2022-01-18 19:10:11 -0700409static void __io_worker_busy(struct io_wqe *wqe, struct io_worker *worker)
Jens Axboe771b53d02019-10-22 10:25:58 -0600410 __must_hold(wqe->lock)
411{
412 if (worker->flags & IO_WORKER_F_FREE) {
413 worker->flags &= ~IO_WORKER_F_FREE;
414 hlist_nulls_del_init_rcu(&worker->nulls_node);
Jens Axboe771b53d02019-10-22 10:25:58 -0600415 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600416}
417
418/*
419 * No work, worker going to sleep. Move to freelist, and unuse mm if we
420 * have one attached. Dropping the mm may potentially sleep, so we drop
421 * the lock in that case and return success. Since the caller has to
422 * retry the loop in that case (we changed task state), we don't regrab
423 * the lock if we return success.
424 */
Jens Axboec6d77d92021-02-15 13:26:34 -0700425static void __io_worker_idle(struct io_wqe *wqe, struct io_worker *worker)
Jens Axboe771b53d02019-10-22 10:25:58 -0600426 __must_hold(wqe->lock)
427{
428 if (!(worker->flags & IO_WORKER_F_FREE)) {
429 worker->flags |= IO_WORKER_F_FREE;
Jens Axboe021d1cd2019-11-14 08:00:41 -0700430 hlist_nulls_add_head_rcu(&worker->nulls_node, &wqe->free_list);
Jens Axboe771b53d02019-10-22 10:25:58 -0600431 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600432}
433
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300434static inline unsigned int io_get_work_hash(struct io_wq_work *work)
435{
436 return work->flags >> IO_WQ_HASH_SHIFT;
437}
438
Jens Axboed3e3c102021-11-11 17:32:53 -0700439static bool io_wait_on_hash(struct io_wqe *wqe, unsigned int hash)
Jens Axboee9418942021-02-19 12:33:30 -0700440{
441 struct io_wq *wq = wqe->wq;
Jens Axboed3e3c102021-11-11 17:32:53 -0700442 bool ret = false;
Jens Axboee9418942021-02-19 12:33:30 -0700443
Jens Axboe08bdbd32021-08-31 06:57:25 -0600444 spin_lock_irq(&wq->hash->wait.lock);
Jens Axboee9418942021-02-19 12:33:30 -0700445 if (list_empty(&wqe->wait.entry)) {
446 __add_wait_queue(&wq->hash->wait, &wqe->wait);
447 if (!test_bit(hash, &wq->hash->map)) {
448 __set_current_state(TASK_RUNNING);
449 list_del_init(&wqe->wait.entry);
Jens Axboed3e3c102021-11-11 17:32:53 -0700450 ret = true;
Jens Axboee9418942021-02-19 12:33:30 -0700451 }
452 }
Jens Axboe08bdbd32021-08-31 06:57:25 -0600453 spin_unlock_irq(&wq->hash->wait.lock);
Jens Axboed3e3c102021-11-11 17:32:53 -0700454 return ret;
Jens Axboee9418942021-02-19 12:33:30 -0700455}
456
Jens Axboef95dc202021-08-31 13:57:32 -0600457static struct io_wq_work *io_get_next_work(struct io_wqe_acct *acct,
Jens Axboe0242f642021-08-31 13:53:00 -0600458 struct io_worker *worker)
Jens Axboe771b53d02019-10-22 10:25:58 -0600459 __must_hold(wqe->lock)
460{
Jens Axboe6206f0e2019-11-26 11:59:32 -0700461 struct io_wq_work_node *node, *prev;
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300462 struct io_wq_work *work, *tail;
Jens Axboee9418942021-02-19 12:33:30 -0700463 unsigned int stall_hash = -1U;
Jens Axboef95dc202021-08-31 13:57:32 -0600464 struct io_wqe *wqe = worker->wqe;
Jens Axboe771b53d02019-10-22 10:25:58 -0600465
Jens Axboef95dc202021-08-31 13:57:32 -0600466 wq_list_for_each(node, prev, &acct->work_list) {
Jens Axboee9418942021-02-19 12:33:30 -0700467 unsigned int hash;
468
Jens Axboe6206f0e2019-11-26 11:59:32 -0700469 work = container_of(node, struct io_wq_work, list);
470
Jens Axboe771b53d02019-10-22 10:25:58 -0600471 /* not hashed, can run anytime */
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300472 if (!io_wq_is_hashed(work)) {
Jens Axboef95dc202021-08-31 13:57:32 -0600473 wq_list_del(&acct->work_list, node, prev);
Jens Axboe771b53d02019-10-22 10:25:58 -0600474 return work;
475 }
476
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300477 hash = io_get_work_hash(work);
Jens Axboee9418942021-02-19 12:33:30 -0700478 /* all items with this hash lie in [work, tail] */
479 tail = wqe->hash_tail[hash];
480
481 /* hashed, can run if not already running */
482 if (!test_and_set_bit(hash, &wqe->wq->hash->map)) {
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300483 wqe->hash_tail[hash] = NULL;
Jens Axboef95dc202021-08-31 13:57:32 -0600484 wq_list_cut(&acct->work_list, &tail->list, prev);
Jens Axboe771b53d02019-10-22 10:25:58 -0600485 return work;
486 }
Jens Axboee9418942021-02-19 12:33:30 -0700487 if (stall_hash == -1U)
488 stall_hash = hash;
489 /* fast forward to a next hash, for-each will fix up @prev */
490 node = &tail->list;
491 }
492
493 if (stall_hash != -1U) {
Jens Axboed3e3c102021-11-11 17:32:53 -0700494 bool unstalled;
495
Jens Axboe0242f642021-08-31 13:53:00 -0600496 /*
497 * Set this before dropping the lock to avoid racing with new
498 * work being added and clearing the stalled bit.
499 */
Jens Axboef95dc202021-08-31 13:57:32 -0600500 set_bit(IO_ACCT_STALLED_BIT, &acct->flags);
Jens Axboee9418942021-02-19 12:33:30 -0700501 raw_spin_unlock(&wqe->lock);
Jens Axboed3e3c102021-11-11 17:32:53 -0700502 unstalled = io_wait_on_hash(wqe, stall_hash);
Jens Axboee9418942021-02-19 12:33:30 -0700503 raw_spin_lock(&wqe->lock);
Jens Axboed3e3c102021-11-11 17:32:53 -0700504 if (unstalled) {
505 clear_bit(IO_ACCT_STALLED_BIT, &acct->flags);
506 if (wq_has_sleeper(&wqe->wq->hash->wait))
507 wake_up(&wqe->wq->hash->wait);
508 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600509 }
510
511 return NULL;
512}
513
Jens Axboe00ddff42021-03-21 07:06:56 -0600514static bool io_flush_signals(void)
Jens Axboecccf0ee2020-01-27 16:34:48 -0700515{
Jens Axboe0b8cfa92021-03-21 14:16:08 -0600516 if (unlikely(test_thread_flag(TIF_NOTIFY_SIGNAL))) {
Jens Axboe00ddff42021-03-21 07:06:56 -0600517 __set_current_state(TASK_RUNNING);
Jens Axboe0b8cfa92021-03-21 14:16:08 -0600518 tracehook_notify_signal();
Jens Axboe00ddff42021-03-21 07:06:56 -0600519 return true;
Jens Axboecccf0ee2020-01-27 16:34:48 -0700520 }
Jens Axboe00ddff42021-03-21 07:06:56 -0600521 return false;
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300522}
523
524static void io_assign_current_work(struct io_worker *worker,
525 struct io_wq_work *work)
526{
Pavel Begunkovd78298e2020-03-14 00:31:03 +0300527 if (work) {
Jens Axboe3bfe6102021-02-16 14:15:30 -0700528 io_flush_signals();
Pavel Begunkovd78298e2020-03-14 00:31:03 +0300529 cond_resched();
530 }
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300531
Jens Axboe081b5822022-01-18 19:13:43 -0700532 raw_spin_lock(&worker->lock);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300533 worker->cur_work = work;
Jens Axboe361aee42022-01-18 19:23:51 -0700534 worker->next_work = NULL;
Jens Axboe081b5822022-01-18 19:13:43 -0700535 raw_spin_unlock(&worker->lock);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300536}
537
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300538static void io_wqe_enqueue(struct io_wqe *wqe, struct io_wq_work *work);
539
Jens Axboe771b53d02019-10-22 10:25:58 -0600540static void io_worker_handle_work(struct io_worker *worker)
541 __releases(wqe->lock)
542{
Jens Axboef95dc202021-08-31 13:57:32 -0600543 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600544 struct io_wqe *wqe = worker->wqe;
545 struct io_wq *wq = wqe->wq;
Pavel Begunkovc60eb042021-04-08 01:54:42 +0100546 bool do_kill = test_bit(IO_WQ_BIT_EXIT, &wq->state);
Jens Axboe771b53d02019-10-22 10:25:58 -0600547
548 do {
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300549 struct io_wq_work *work;
Jens Axboe73031f762022-01-19 13:11:58 -0700550
Jens Axboe771b53d02019-10-22 10:25:58 -0600551 /*
Jens Axboe771b53d02019-10-22 10:25:58 -0600552 * If we got some work, mark us as busy. If we didn't, but
553 * the list isn't empty, it means we stalled on hashed work.
554 * Mark us stalled so we don't keep looking for work when we
555 * can't make progress, any work completion or insertion will
556 * clear the stalled flag.
557 */
Jens Axboef95dc202021-08-31 13:57:32 -0600558 work = io_get_next_work(acct, worker);
Jens Axboe361aee42022-01-18 19:23:51 -0700559 if (work) {
Jens Axboeea6e7cee2022-01-18 19:10:11 -0700560 __io_worker_busy(wqe, worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600561
Jens Axboe361aee42022-01-18 19:23:51 -0700562 /*
563 * Make sure cancelation can find this, even before
564 * it becomes the active work. That avoids a window
565 * where the work has been removed from our general
566 * work list, but isn't yet discoverable as the
567 * current work item for this worker.
568 */
569 raw_spin_lock(&worker->lock);
570 worker->next_work = work;
571 raw_spin_unlock(&worker->lock);
572 }
Jens Axboea9a4aa92021-08-30 06:33:08 -0600573 raw_spin_unlock(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600574 if (!work)
575 break;
Pavel Begunkov58e39312020-03-04 16:14:10 +0300576 io_assign_current_work(worker, work);
Jens Axboee9418942021-02-19 12:33:30 -0700577 __set_current_state(TASK_RUNNING);
Jens Axboe36c2f922019-11-13 09:43:34 -0700578
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300579 /* handle a whole dependent link */
580 do {
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000581 struct io_wq_work *next_hashed, *linked;
Pavel Begunkovb089ed392020-07-25 14:42:00 +0300582 unsigned int hash = io_get_work_hash(work);
Hillf Dantonfd1c4bc2019-12-24 09:14:29 -0700583
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300584 next_hashed = wq_next_work(work);
Pavel Begunkovc60eb042021-04-08 01:54:42 +0100585
586 if (unlikely(do_kill) && (work->flags & IO_WQ_WORK_UNBOUND))
587 work->flags |= IO_WQ_WORK_CANCEL;
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000588 wq->do_work(work);
589 io_assign_current_work(worker, NULL);
Jens Axboe36c2f922019-11-13 09:43:34 -0700590
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000591 linked = wq->free_work(work);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300592 work = next_hashed;
593 if (!work && linked && !io_wq_is_hashed(linked)) {
594 work = linked;
595 linked = NULL;
596 }
597 io_assign_current_work(worker, work);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300598 if (linked)
599 io_wqe_enqueue(wqe, linked);
600
601 if (hash != -1U && !next_hashed) {
Jens Axboed3e3c102021-11-11 17:32:53 -0700602 /* serialize hash clear with wake_up() */
603 spin_lock_irq(&wq->hash->wait.lock);
Jens Axboee9418942021-02-19 12:33:30 -0700604 clear_bit(hash, &wq->hash->map);
Jens Axboef95dc202021-08-31 13:57:32 -0600605 clear_bit(IO_ACCT_STALLED_BIT, &acct->flags);
Jens Axboed3e3c102021-11-11 17:32:53 -0700606 spin_unlock_irq(&wq->hash->wait.lock);
Jens Axboee9418942021-02-19 12:33:30 -0700607 if (wq_has_sleeper(&wq->hash->wait))
608 wake_up(&wq->hash->wait);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300609 }
Pavel Begunkov58e39312020-03-04 16:14:10 +0300610 } while (work);
Jens Axboe36c2f922019-11-13 09:43:34 -0700611
Jens Axboea9a4aa92021-08-30 06:33:08 -0600612 raw_spin_lock(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600613 } while (1);
614}
615
Jens Axboe771b53d02019-10-22 10:25:58 -0600616static int io_wqe_worker(void *data)
617{
618 struct io_worker *worker = data;
Jens Axboef95dc202021-08-31 13:57:32 -0600619 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600620 struct io_wqe *wqe = worker->wqe;
621 struct io_wq *wq = wqe->wq;
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600622 bool last_timeout = false;
Jens Axboe46fe18b2021-03-04 12:39:36 -0700623 char buf[TASK_COMM_LEN];
Jens Axboe771b53d02019-10-22 10:25:58 -0600624
Jens Axboe46fe18b2021-03-04 12:39:36 -0700625 worker->flags |= (IO_WORKER_F_UP | IO_WORKER_F_RUNNING);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700626
Jens Axboe685fe7f2021-03-08 09:37:51 -0700627 snprintf(buf, sizeof(buf), "iou-wrk-%d", wq->task->pid);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700628 set_task_comm(current, buf);
Jens Axboe771b53d02019-10-22 10:25:58 -0600629
Paul Moore5bd21822021-02-16 19:46:48 -0500630 audit_alloc_kernel(current);
631
Jens Axboe771b53d02019-10-22 10:25:58 -0600632 while (!test_bit(IO_WQ_BIT_EXIT, &wq->state)) {
Jens Axboe16efa4f2021-03-12 20:26:13 -0700633 long ret;
634
Jens Axboe506d95f2019-12-07 21:03:59 -0700635 set_current_state(TASK_INTERRUPTIBLE);
Jens Axboee995d512019-12-07 21:06:46 -0700636loop:
Jens Axboea9a4aa92021-08-30 06:33:08 -0600637 raw_spin_lock(&wqe->lock);
Jens Axboef95dc202021-08-31 13:57:32 -0600638 if (io_acct_run_queue(acct)) {
Jens Axboe771b53d02019-10-22 10:25:58 -0600639 io_worker_handle_work(worker);
Jens Axboee995d512019-12-07 21:06:46 -0700640 goto loop;
Jens Axboe771b53d02019-10-22 10:25:58 -0600641 }
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600642 /* timed out, exit unless we're the last worker */
643 if (last_timeout && acct->nr_workers > 1) {
Hao Xu767a65e2021-09-12 03:40:52 +0800644 acct->nr_workers--;
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600645 raw_spin_unlock(&wqe->lock);
646 __set_current_state(TASK_RUNNING);
647 break;
648 }
649 last_timeout = false;
Jens Axboec6d77d92021-02-15 13:26:34 -0700650 __io_worker_idle(wqe, worker);
Jens Axboea9a4aa92021-08-30 06:33:08 -0600651 raw_spin_unlock(&wqe->lock);
Jens Axboe00ddff42021-03-21 07:06:56 -0600652 if (io_flush_signals())
653 continue;
Jens Axboe16efa4f2021-03-12 20:26:13 -0700654 ret = schedule_timeout(WORKER_IDLE_TIMEOUT);
Jens Axboedbe1bdb2021-03-25 18:16:06 -0600655 if (signal_pending(current)) {
656 struct ksignal ksig;
657
658 if (!get_signal(&ksig))
659 continue;
Jens Axboe78f88762021-09-27 10:04:10 -0600660 break;
Jens Axboedbe1bdb2021-03-25 18:16:06 -0600661 }
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600662 last_timeout = !ret;
Jens Axboe771b53d02019-10-22 10:25:58 -0600663 }
664
Jens Axboe771b53d02019-10-22 10:25:58 -0600665 if (test_bit(IO_WQ_BIT_EXIT, &wq->state)) {
Jens Axboea9a4aa92021-08-30 06:33:08 -0600666 raw_spin_lock(&wqe->lock);
Pavel Begunkove5872272021-06-14 02:36:17 +0100667 io_worker_handle_work(worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600668 }
669
Paul Moore5bd21822021-02-16 19:46:48 -0500670 audit_free(current);
Jens Axboe771b53d02019-10-22 10:25:58 -0600671 io_worker_exit(worker);
672 return 0;
673}
674
675/*
Jens Axboe771b53d02019-10-22 10:25:58 -0600676 * Called when a worker is scheduled in. Mark us as currently running.
677 */
678void io_wq_worker_running(struct task_struct *tsk)
679{
Eric W. Biedermane32cf5d2021-12-22 22:10:09 -0600680 struct io_worker *worker = tsk->worker_private;
Jens Axboe771b53d02019-10-22 10:25:58 -0600681
Jens Axboe3bfe6102021-02-16 14:15:30 -0700682 if (!worker)
683 return;
Jens Axboe771b53d02019-10-22 10:25:58 -0600684 if (!(worker->flags & IO_WORKER_F_UP))
685 return;
686 if (worker->flags & IO_WORKER_F_RUNNING)
687 return;
688 worker->flags |= IO_WORKER_F_RUNNING;
Jens Axboe958234d2021-02-17 09:00:57 -0700689 io_wqe_inc_running(worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600690}
691
692/*
693 * Called when worker is going to sleep. If there are no workers currently
Jens Axboe685fe7f2021-03-08 09:37:51 -0700694 * running and we have work pending, wake up a free one or create a new one.
Jens Axboe771b53d02019-10-22 10:25:58 -0600695 */
696void io_wq_worker_sleeping(struct task_struct *tsk)
697{
Eric W. Biedermane32cf5d2021-12-22 22:10:09 -0600698 struct io_worker *worker = tsk->worker_private;
Jens Axboe771b53d02019-10-22 10:25:58 -0600699
Jens Axboe3bfe6102021-02-16 14:15:30 -0700700 if (!worker)
701 return;
Jens Axboe771b53d02019-10-22 10:25:58 -0600702 if (!(worker->flags & IO_WORKER_F_UP))
703 return;
704 if (!(worker->flags & IO_WORKER_F_RUNNING))
705 return;
706
707 worker->flags &= ~IO_WORKER_F_RUNNING;
708
Jens Axboea9a4aa92021-08-30 06:33:08 -0600709 raw_spin_lock(&worker->wqe->lock);
Jens Axboe958234d2021-02-17 09:00:57 -0700710 io_wqe_dec_running(worker);
Jens Axboea9a4aa92021-08-30 06:33:08 -0600711 raw_spin_unlock(&worker->wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600712}
713
Jens Axboe3146cba2021-09-01 11:20:10 -0600714static void io_init_new_worker(struct io_wqe *wqe, struct io_worker *worker,
715 struct task_struct *tsk)
Jens Axboe3bfe6102021-02-16 14:15:30 -0700716{
Eric W. Biedermane32cf5d2021-12-22 22:10:09 -0600717 tsk->worker_private = worker;
Jens Axboe46fe18b2021-03-04 12:39:36 -0700718 worker->task = tsk;
Jens Axboe0e034962021-06-17 10:08:11 -0600719 set_cpus_allowed_ptr(tsk, wqe->cpu_mask);
Jens Axboee22bc9b2021-03-09 19:49:02 -0700720 tsk->flags |= PF_NO_SETAFFINITY;
Jens Axboe46fe18b2021-03-04 12:39:36 -0700721
Jens Axboea9a4aa92021-08-30 06:33:08 -0600722 raw_spin_lock(&wqe->lock);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700723 hlist_nulls_add_head_rcu(&worker->nulls_node, &wqe->free_list);
724 list_add_tail_rcu(&worker->all_list, &wqe->all_list);
725 worker->flags |= IO_WORKER_F_FREE;
Jens Axboea9a4aa92021-08-30 06:33:08 -0600726 raw_spin_unlock(&wqe->lock);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700727 wake_up_new_task(tsk);
Jens Axboe771b53d02019-10-22 10:25:58 -0600728}
729
Jens Axboe3146cba2021-09-01 11:20:10 -0600730static bool io_wq_work_match_all(struct io_wq_work *work, void *data)
731{
732 return true;
733}
734
735static inline bool io_should_retry_thread(long err)
736{
Jens Axboea226abc2021-12-02 19:40:15 -0700737 /*
738 * Prevent perpetual task_work retry, if the task (or its group) is
739 * exiting.
740 */
741 if (fatal_signal_pending(current))
742 return false;
743
Jens Axboe3146cba2021-09-01 11:20:10 -0600744 switch (err) {
745 case -EAGAIN:
746 case -ERESTARTSYS:
747 case -ERESTARTNOINTR:
748 case -ERESTARTNOHAND:
749 return true;
750 default:
751 return false;
752 }
753}
754
755static void create_worker_cont(struct callback_head *cb)
756{
757 struct io_worker *worker;
758 struct task_struct *tsk;
759 struct io_wqe *wqe;
760
761 worker = container_of(cb, struct io_worker, create_work);
762 clear_bit_unlock(0, &worker->create_state);
763 wqe = worker->wqe;
764 tsk = create_io_thread(io_wqe_worker, worker, wqe->node);
765 if (!IS_ERR(tsk)) {
766 io_init_new_worker(wqe, worker, tsk);
767 io_worker_release(worker);
768 return;
769 } else if (!io_should_retry_thread(PTR_ERR(tsk))) {
770 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
771
772 atomic_dec(&acct->nr_running);
773 raw_spin_lock(&wqe->lock);
774 acct->nr_workers--;
775 if (!acct->nr_workers) {
776 struct io_cb_cancel_data match = {
777 .fn = io_wq_work_match_all,
778 .cancel_all = true,
779 };
780
781 while (io_acct_cancel_pending_work(wqe, acct, &match))
782 raw_spin_lock(&wqe->lock);
783 }
784 raw_spin_unlock(&wqe->lock);
785 io_worker_ref_put(wqe->wq);
Qiang.zhang66e70be2021-09-09 19:58:22 +0800786 kfree(worker);
Jens Axboe3146cba2021-09-01 11:20:10 -0600787 return;
788 }
789
790 /* re-create attempts grab a new worker ref, drop the existing one */
791 io_worker_release(worker);
792 schedule_work(&worker->work);
793}
794
795static void io_workqueue_create(struct work_struct *work)
796{
797 struct io_worker *worker = container_of(work, struct io_worker, work);
798 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
799
Bixuan Cui71e1cef2021-09-11 16:58:47 +0800800 if (!io_queue_worker_create(worker, acct, create_worker_cont))
Qiang.zhang66e70be2021-09-09 19:58:22 +0800801 kfree(worker);
Jens Axboe3146cba2021-09-01 11:20:10 -0600802}
803
804static bool create_io_worker(struct io_wq *wq, struct io_wqe *wqe, int index)
805{
806 struct io_wqe_acct *acct = &wqe->acct[index];
807 struct io_worker *worker;
808 struct task_struct *tsk;
809
810 __set_current_state(TASK_RUNNING);
811
812 worker = kzalloc_node(sizeof(*worker), GFP_KERNEL, wqe->node);
813 if (!worker) {
814fail:
815 atomic_dec(&acct->nr_running);
816 raw_spin_lock(&wqe->lock);
817 acct->nr_workers--;
818 raw_spin_unlock(&wqe->lock);
819 io_worker_ref_put(wq);
820 return false;
821 }
822
823 refcount_set(&worker->ref, 1);
824 worker->wqe = wqe;
Jens Axboe081b5822022-01-18 19:13:43 -0700825 raw_spin_lock_init(&worker->lock);
Jens Axboe3146cba2021-09-01 11:20:10 -0600826 init_completion(&worker->ref_done);
827
828 if (index == IO_WQ_ACCT_BOUND)
829 worker->flags |= IO_WORKER_F_BOUND;
830
831 tsk = create_io_thread(io_wqe_worker, worker, wqe->node);
832 if (!IS_ERR(tsk)) {
833 io_init_new_worker(wqe, worker, tsk);
834 } else if (!io_should_retry_thread(PTR_ERR(tsk))) {
Qiang.zhang66e70be2021-09-09 19:58:22 +0800835 kfree(worker);
Jens Axboe3146cba2021-09-01 11:20:10 -0600836 goto fail;
837 } else {
838 INIT_WORK(&worker->work, io_workqueue_create);
839 schedule_work(&worker->work);
840 }
841
842 return true;
843}
844
Hillf Dantonc4068bf2020-09-26 21:26:55 +0800845/*
846 * Iterate the passed in list and call the specific function for each
847 * worker that isn't exiting
848 */
849static bool io_wq_for_each_worker(struct io_wqe *wqe,
850 bool (*func)(struct io_worker *, void *),
851 void *data)
852{
853 struct io_worker *worker;
854 bool ret = false;
855
856 list_for_each_entry_rcu(worker, &wqe->all_list, all_list) {
857 if (io_worker_get(worker)) {
858 /* no task if node is/was offline */
859 if (worker->task)
860 ret = func(worker, data);
861 io_worker_release(worker);
862 if (ret)
863 break;
864 }
865 }
866
867 return ret;
868}
869
870static bool io_wq_worker_wake(struct io_worker *worker, void *data)
871{
Jens Axboe46fe18b2021-03-04 12:39:36 -0700872 set_notify_signal(worker->task);
Hillf Dantonc4068bf2020-09-26 21:26:55 +0800873 wake_up_process(worker->task);
874 return false;
875}
876
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300877static void io_run_cancel(struct io_wq_work *work, struct io_wqe *wqe)
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300878{
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300879 struct io_wq *wq = wqe->wq;
880
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300881 do {
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300882 work->flags |= IO_WQ_WORK_CANCEL;
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000883 wq->do_work(work);
884 work = wq->free_work(work);
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300885 } while (work);
886}
887
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300888static void io_wqe_insert_work(struct io_wqe *wqe, struct io_wq_work *work)
889{
Jens Axboef95dc202021-08-31 13:57:32 -0600890 struct io_wqe_acct *acct = io_work_get_acct(wqe, work);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300891 unsigned int hash;
892 struct io_wq_work *tail;
893
894 if (!io_wq_is_hashed(work)) {
895append:
Jens Axboef95dc202021-08-31 13:57:32 -0600896 wq_list_add_tail(&work->list, &acct->work_list);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300897 return;
898 }
899
900 hash = io_get_work_hash(work);
901 tail = wqe->hash_tail[hash];
902 wqe->hash_tail[hash] = work;
903 if (!tail)
904 goto append;
905
Jens Axboef95dc202021-08-31 13:57:32 -0600906 wq_list_add_after(&work->list, &tail->list, &acct->work_list);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300907}
908
Pavel Begunkov713b9822021-09-08 10:09:29 +0100909static bool io_wq_work_match_item(struct io_wq_work *work, void *data)
910{
911 return work == data;
912}
913
Jens Axboe771b53d02019-10-22 10:25:58 -0600914static void io_wqe_enqueue(struct io_wqe *wqe, struct io_wq_work *work)
915{
Jens Axboec5def4a2019-11-07 11:41:16 -0700916 struct io_wqe_acct *acct = io_work_get_acct(wqe, work);
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600917 unsigned work_flags = work->flags;
918 bool do_create;
Jens Axboe771b53d02019-10-22 10:25:58 -0600919
Jens Axboe991468d2021-07-23 11:53:54 -0600920 /*
921 * If io-wq is exiting for this task, or if the request has explicitly
922 * been marked as one that should not get executed, cancel it here.
923 */
924 if (test_bit(IO_WQ_BIT_EXIT, &wqe->wq->state) ||
925 (work->flags & IO_WQ_WORK_CANCEL)) {
yangerkun70e35122021-03-09 11:04:10 +0800926 io_run_cancel(work, wqe);
Jens Axboe4fb6ac32021-02-25 10:17:09 -0700927 return;
928 }
929
Jens Axboea9a4aa92021-08-30 06:33:08 -0600930 raw_spin_lock(&wqe->lock);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300931 io_wqe_insert_work(wqe, work);
Jens Axboef95dc202021-08-31 13:57:32 -0600932 clear_bit(IO_ACCT_STALLED_BIT, &acct->flags);
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600933
934 rcu_read_lock();
Jens Axboef95dc202021-08-31 13:57:32 -0600935 do_create = !io_wqe_activate_free_worker(wqe, acct);
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600936 rcu_read_unlock();
937
Jens Axboea9a4aa92021-08-30 06:33:08 -0600938 raw_spin_unlock(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600939
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600940 if (do_create && ((work_flags & IO_WQ_WORK_CONCURRENT) ||
Jens Axboe3146cba2021-09-01 11:20:10 -0600941 !atomic_read(&acct->nr_running))) {
942 bool did_create;
943
944 did_create = io_wqe_create_worker(wqe, acct);
Pavel Begunkov713b9822021-09-08 10:09:29 +0100945 if (likely(did_create))
946 return;
947
948 raw_spin_lock(&wqe->lock);
949 /* fatal condition, failed to create the first worker */
950 if (!acct->nr_workers) {
951 struct io_cb_cancel_data match = {
952 .fn = io_wq_work_match_item,
953 .data = work,
954 .cancel_all = false,
955 };
956
957 if (io_acct_cancel_pending_work(wqe, acct, &match))
958 raw_spin_lock(&wqe->lock);
Jens Axboe3146cba2021-09-01 11:20:10 -0600959 }
Pavel Begunkov713b9822021-09-08 10:09:29 +0100960 raw_spin_unlock(&wqe->lock);
Jens Axboe3146cba2021-09-01 11:20:10 -0600961 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600962}
963
964void io_wq_enqueue(struct io_wq *wq, struct io_wq_work *work)
965{
966 struct io_wqe *wqe = wq->wqes[numa_node_id()];
967
968 io_wqe_enqueue(wqe, work);
969}
970
971/*
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300972 * Work items that hash to the same value will not be done in parallel.
973 * Used to limit concurrent writes, generally hashed by inode.
Jens Axboe771b53d02019-10-22 10:25:58 -0600974 */
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300975void io_wq_hash_work(struct io_wq_work *work, void *val)
Jens Axboe771b53d02019-10-22 10:25:58 -0600976{
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300977 unsigned int bit;
Jens Axboe771b53d02019-10-22 10:25:58 -0600978
979 bit = hash_ptr(val, IO_WQ_HASH_ORDER);
980 work->flags |= (IO_WQ_WORK_HASHED | (bit << IO_WQ_HASH_SHIFT));
Jens Axboe771b53d02019-10-22 10:25:58 -0600981}
982
Jens Axboe361aee42022-01-18 19:23:51 -0700983static bool __io_wq_worker_cancel(struct io_worker *worker,
984 struct io_cb_cancel_data *match,
985 struct io_wq_work *work)
986{
987 if (work && match->fn(work, match->data)) {
988 work->flags |= IO_WQ_WORK_CANCEL;
989 set_notify_signal(worker->task);
990 return true;
991 }
992
993 return false;
994}
995
Pavel Begunkov2293b412020-03-07 01:15:39 +0300996static bool io_wq_worker_cancel(struct io_worker *worker, void *data)
Jens Axboe62755e32019-10-28 21:49:21 -0600997{
Pavel Begunkov2293b412020-03-07 01:15:39 +0300998 struct io_cb_cancel_data *match = data;
Jens Axboe62755e32019-10-28 21:49:21 -0600999
1000 /*
1001 * Hold the lock to avoid ->cur_work going out of scope, caller
Jens Axboe36c2f922019-11-13 09:43:34 -07001002 * may dereference the passed in work.
Jens Axboe62755e32019-10-28 21:49:21 -06001003 */
Jens Axboe081b5822022-01-18 19:13:43 -07001004 raw_spin_lock(&worker->lock);
Jens Axboe361aee42022-01-18 19:23:51 -07001005 if (__io_wq_worker_cancel(worker, match, worker->cur_work) ||
1006 __io_wq_worker_cancel(worker, match, worker->next_work))
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001007 match->nr_running++;
Jens Axboe081b5822022-01-18 19:13:43 -07001008 raw_spin_unlock(&worker->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -06001009
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001010 return match->nr_running && !match->cancel_all;
Jens Axboe771b53d02019-10-22 10:25:58 -06001011}
1012
Pavel Begunkov204361a2020-08-23 20:33:10 +03001013static inline void io_wqe_remove_pending(struct io_wqe *wqe,
1014 struct io_wq_work *work,
1015 struct io_wq_work_node *prev)
1016{
Jens Axboef95dc202021-08-31 13:57:32 -06001017 struct io_wqe_acct *acct = io_work_get_acct(wqe, work);
Pavel Begunkov204361a2020-08-23 20:33:10 +03001018 unsigned int hash = io_get_work_hash(work);
1019 struct io_wq_work *prev_work = NULL;
1020
1021 if (io_wq_is_hashed(work) && work == wqe->hash_tail[hash]) {
1022 if (prev)
1023 prev_work = container_of(prev, struct io_wq_work, list);
1024 if (prev_work && io_get_work_hash(prev_work) == hash)
1025 wqe->hash_tail[hash] = prev_work;
1026 else
1027 wqe->hash_tail[hash] = NULL;
1028 }
Jens Axboef95dc202021-08-31 13:57:32 -06001029 wq_list_del(&acct->work_list, &work->list, prev);
Pavel Begunkov204361a2020-08-23 20:33:10 +03001030}
1031
Jens Axboe3146cba2021-09-01 11:20:10 -06001032static bool io_acct_cancel_pending_work(struct io_wqe *wqe,
1033 struct io_wqe_acct *acct,
1034 struct io_cb_cancel_data *match)
1035 __releases(wqe->lock)
Jens Axboe771b53d02019-10-22 10:25:58 -06001036{
Jens Axboe6206f0e2019-11-26 11:59:32 -07001037 struct io_wq_work_node *node, *prev;
Jens Axboe771b53d02019-10-22 10:25:58 -06001038 struct io_wq_work *work;
Jens Axboe771b53d02019-10-22 10:25:58 -06001039
Jens Axboe3146cba2021-09-01 11:20:10 -06001040 wq_list_for_each(node, prev, &acct->work_list) {
1041 work = container_of(node, struct io_wq_work, list);
1042 if (!match->fn(work, match->data))
1043 continue;
1044 io_wqe_remove_pending(wqe, work, prev);
1045 raw_spin_unlock(&wqe->lock);
1046 io_run_cancel(work, wqe);
1047 match->nr_pending++;
1048 /* not safe to continue after unlock */
1049 return true;
1050 }
1051
1052 return false;
1053}
1054
1055static void io_wqe_cancel_pending_work(struct io_wqe *wqe,
1056 struct io_cb_cancel_data *match)
1057{
1058 int i;
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001059retry:
Jens Axboef95dc202021-08-31 13:57:32 -06001060 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1061 struct io_wqe_acct *acct = io_get_acct(wqe, i == 0);
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001062
Jens Axboe3146cba2021-09-01 11:20:10 -06001063 if (io_acct_cancel_pending_work(wqe, acct, match)) {
Jens Axboe36e4c582022-01-18 19:18:20 -07001064 raw_spin_lock(&wqe->lock);
Jens Axboe3146cba2021-09-01 11:20:10 -06001065 if (match->cancel_all)
1066 goto retry;
Jens Axboe36e4c582022-01-18 19:18:20 -07001067 break;
Jens Axboef95dc202021-08-31 13:57:32 -06001068 }
Jens Axboe771b53d02019-10-22 10:25:58 -06001069 }
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001070}
Jens Axboe771b53d02019-10-22 10:25:58 -06001071
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001072static void io_wqe_cancel_running_work(struct io_wqe *wqe,
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001073 struct io_cb_cancel_data *match)
1074{
Jens Axboe771b53d02019-10-22 10:25:58 -06001075 rcu_read_lock();
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001076 io_wq_for_each_worker(wqe, io_wq_worker_cancel, match);
Jens Axboe771b53d02019-10-22 10:25:58 -06001077 rcu_read_unlock();
Jens Axboe771b53d02019-10-22 10:25:58 -06001078}
1079
Pavel Begunkov2293b412020-03-07 01:15:39 +03001080enum io_wq_cancel io_wq_cancel_cb(struct io_wq *wq, work_cancel_fn *cancel,
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001081 void *data, bool cancel_all)
Pavel Begunkov2293b412020-03-07 01:15:39 +03001082{
1083 struct io_cb_cancel_data match = {
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001084 .fn = cancel,
1085 .data = data,
1086 .cancel_all = cancel_all,
Pavel Begunkov2293b412020-03-07 01:15:39 +03001087 };
Pavel Begunkov2293b412020-03-07 01:15:39 +03001088 int node;
1089
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001090 /*
1091 * First check pending list, if we're lucky we can just remove it
1092 * from there. CANCEL_OK means that the work is returned as-new,
1093 * no completion will be posted for it.
Jens Axboeefdf5182022-01-18 19:22:32 -07001094 *
1095 * Then check if a free (going busy) or busy worker has the work
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001096 * currently running. If we find it there, we'll return CANCEL_RUNNING
1097 * as an indication that we attempt to signal cancellation. The
1098 * completion will run normally in this case.
Jens Axboeefdf5182022-01-18 19:22:32 -07001099 *
1100 * Do both of these while holding the wqe->lock, to ensure that
1101 * we'll find a work item regardless of state.
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001102 */
1103 for_each_node(node) {
1104 struct io_wqe *wqe = wq->wqes[node];
1105
Jens Axboe36e4c582022-01-18 19:18:20 -07001106 raw_spin_lock(&wqe->lock);
Pavel Begunkov2293b412020-03-07 01:15:39 +03001107 io_wqe_cancel_pending_work(wqe, &match);
Jens Axboeefdf5182022-01-18 19:22:32 -07001108 if (match.nr_pending && !match.cancel_all) {
1109 raw_spin_unlock(&wqe->lock);
Pavel Begunkov2293b412020-03-07 01:15:39 +03001110 return IO_WQ_CANCEL_OK;
Jens Axboeefdf5182022-01-18 19:22:32 -07001111 }
Pavel Begunkov2293b412020-03-07 01:15:39 +03001112
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001113 io_wqe_cancel_running_work(wqe, &match);
Jens Axboe36e4c582022-01-18 19:18:20 -07001114 raw_spin_unlock(&wqe->lock);
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001115 if (match.nr_running && !match.cancel_all)
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001116 return IO_WQ_CANCEL_RUNNING;
1117 }
1118
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001119 if (match.nr_running)
1120 return IO_WQ_CANCEL_RUNNING;
1121 if (match.nr_pending)
1122 return IO_WQ_CANCEL_OK;
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001123 return IO_WQ_CANCEL_NOTFOUND;
Pavel Begunkov2293b412020-03-07 01:15:39 +03001124}
1125
Jens Axboee9418942021-02-19 12:33:30 -07001126static int io_wqe_hash_wake(struct wait_queue_entry *wait, unsigned mode,
1127 int sync, void *key)
1128{
1129 struct io_wqe *wqe = container_of(wait, struct io_wqe, wait);
Jens Axboef95dc202021-08-31 13:57:32 -06001130 int i;
Jens Axboee9418942021-02-19 12:33:30 -07001131
1132 list_del_init(&wait->entry);
1133
1134 rcu_read_lock();
Jens Axboef95dc202021-08-31 13:57:32 -06001135 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1136 struct io_wqe_acct *acct = &wqe->acct[i];
1137
1138 if (test_and_clear_bit(IO_ACCT_STALLED_BIT, &acct->flags))
1139 io_wqe_activate_free_worker(wqe, acct);
1140 }
Jens Axboee9418942021-02-19 12:33:30 -07001141 rcu_read_unlock();
Jens Axboee9418942021-02-19 12:33:30 -07001142 return 1;
1143}
1144
Jens Axboe576a3472019-11-25 08:49:20 -07001145struct io_wq *io_wq_create(unsigned bounded, struct io_wq_data *data)
Jens Axboe771b53d02019-10-22 10:25:58 -06001146{
Jens Axboef95dc202021-08-31 13:57:32 -06001147 int ret, node, i;
Jens Axboe771b53d02019-10-22 10:25:58 -06001148 struct io_wq *wq;
1149
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +03001150 if (WARN_ON_ONCE(!data->free_work || !data->do_work))
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001151 return ERR_PTR(-EINVAL);
Pavel Begunkove6ab8992021-06-17 18:13:59 +01001152 if (WARN_ON_ONCE(!bounded))
1153 return ERR_PTR(-EINVAL);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001154
Pavel Begunkovc7f405d2021-06-14 02:36:12 +01001155 wq = kzalloc(struct_size(wq, wqes, nr_node_ids), GFP_KERNEL);
Jens Axboe771b53d02019-10-22 10:25:58 -06001156 if (!wq)
1157 return ERR_PTR(-ENOMEM);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001158 ret = cpuhp_state_add_instance_nocalls(io_wq_online, &wq->cpuhp_node);
1159 if (ret)
Pavel Begunkovc7f405d2021-06-14 02:36:12 +01001160 goto err_wq;
Jens Axboe771b53d02019-10-22 10:25:58 -06001161
Jens Axboee9418942021-02-19 12:33:30 -07001162 refcount_inc(&data->hash->refs);
1163 wq->hash = data->hash;
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001164 wq->free_work = data->free_work;
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +03001165 wq->do_work = data->do_work;
Jens Axboe7d723062019-11-12 22:31:31 -07001166
Jens Axboe43c01fb2020-10-22 09:02:50 -06001167 ret = -ENOMEM;
Jann Horn3fc50ab2019-11-26 19:10:20 +01001168 for_each_node(node) {
Jens Axboe771b53d02019-10-22 10:25:58 -06001169 struct io_wqe *wqe;
Jens Axboe75634392020-02-11 06:30:06 -07001170 int alloc_node = node;
Jens Axboe771b53d02019-10-22 10:25:58 -06001171
Jens Axboe75634392020-02-11 06:30:06 -07001172 if (!node_online(alloc_node))
1173 alloc_node = NUMA_NO_NODE;
1174 wqe = kzalloc_node(sizeof(struct io_wqe), GFP_KERNEL, alloc_node);
Jens Axboe771b53d02019-10-22 10:25:58 -06001175 if (!wqe)
Jann Horn3fc50ab2019-11-26 19:10:20 +01001176 goto err;
Jens Axboe0e034962021-06-17 10:08:11 -06001177 if (!alloc_cpumask_var(&wqe->cpu_mask, GFP_KERNEL))
1178 goto err;
1179 cpumask_copy(wqe->cpu_mask, cpumask_of_node(node));
Jann Horn3fc50ab2019-11-26 19:10:20 +01001180 wq->wqes[node] = wqe;
Jens Axboe75634392020-02-11 06:30:06 -07001181 wqe->node = alloc_node;
Jens Axboec5def4a2019-11-07 11:41:16 -07001182 wqe->acct[IO_WQ_ACCT_BOUND].max_workers = bounded;
Jens Axboe728f13e2021-02-21 16:02:53 -07001183 wqe->acct[IO_WQ_ACCT_UNBOUND].max_workers =
Jens Axboec5def4a2019-11-07 11:41:16 -07001184 task_rlimit(current, RLIMIT_NPROC);
Jens Axboee9418942021-02-19 12:33:30 -07001185 INIT_LIST_HEAD(&wqe->wait.entry);
Jens Axboef95dc202021-08-31 13:57:32 -06001186 wqe->wait.func = io_wqe_hash_wake;
1187 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1188 struct io_wqe_acct *acct = &wqe->acct[i];
1189
1190 acct->index = i;
1191 atomic_set(&acct->nr_running, 0);
1192 INIT_WQ_LIST(&acct->work_list);
1193 }
Jens Axboe771b53d02019-10-22 10:25:58 -06001194 wqe->wq = wq;
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +02001195 raw_spin_lock_init(&wqe->lock);
Jens Axboe021d1cd2019-11-14 08:00:41 -07001196 INIT_HLIST_NULLS_HEAD(&wqe->free_list, 0);
Jens Axboee61df662019-11-13 13:54:49 -07001197 INIT_LIST_HEAD(&wqe->all_list);
Jens Axboe771b53d02019-10-22 10:25:58 -06001198 }
1199
Jens Axboe685fe7f2021-03-08 09:37:51 -07001200 wq->task = get_task_struct(data->task);
Jens Axboe685fe7f2021-03-08 09:37:51 -07001201 atomic_set(&wq->worker_refs, 1);
1202 init_completion(&wq->worker_done);
1203 return wq;
Jens Axboeb60fda62019-11-19 08:37:07 -07001204err:
Jens Axboedc7bbc92021-03-01 09:09:56 -07001205 io_wq_put_hash(data->hash);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001206 cpuhp_state_remove_instance_nocalls(io_wq_online, &wq->cpuhp_node);
Jens Axboe0e034962021-06-17 10:08:11 -06001207 for_each_node(node) {
1208 if (!wq->wqes[node])
1209 continue;
1210 free_cpumask_var(wq->wqes[node]->cpu_mask);
Jann Horn3fc50ab2019-11-26 19:10:20 +01001211 kfree(wq->wqes[node]);
Jens Axboe0e034962021-06-17 10:08:11 -06001212 }
Jens Axboe43c01fb2020-10-22 09:02:50 -06001213err_wq:
Jens Axboeb60fda62019-11-19 08:37:07 -07001214 kfree(wq);
Jens Axboe771b53d02019-10-22 10:25:58 -06001215 return ERR_PTR(ret);
1216}
1217
Jens Axboec80ca472021-04-01 19:57:07 -06001218static bool io_task_work_match(struct callback_head *cb, void *data)
1219{
Jens Axboed3e9f732021-08-04 08:37:25 -06001220 struct io_worker *worker;
Jens Axboec80ca472021-04-01 19:57:07 -06001221
Jens Axboe3b33e3f2021-09-08 19:57:26 -06001222 if (cb->func != create_worker_cb && cb->func != create_worker_cont)
Jens Axboec80ca472021-04-01 19:57:07 -06001223 return false;
Jens Axboed3e9f732021-08-04 08:37:25 -06001224 worker = container_of(cb, struct io_worker, create_work);
1225 return worker->wqe->wq == data;
Jens Axboec80ca472021-04-01 19:57:07 -06001226}
1227
Pavel Begunkov17a91052021-05-23 15:48:39 +01001228void io_wq_exit_start(struct io_wq *wq)
1229{
1230 set_bit(IO_WQ_BIT_EXIT, &wq->state);
1231}
1232
Jens Axboe71a85382021-12-10 08:29:30 -07001233static void io_wq_cancel_tw_create(struct io_wq *wq)
Jens Axboeafcc4012021-02-26 13:48:19 -07001234{
Jens Axboe685fe7f2021-03-08 09:37:51 -07001235 struct callback_head *cb;
Jens Axboe685fe7f2021-03-08 09:37:51 -07001236
Jens Axboec80ca472021-04-01 19:57:07 -06001237 while ((cb = task_work_cancel_match(wq->task, io_task_work_match, wq)) != NULL) {
Jens Axboed3e9f732021-08-04 08:37:25 -06001238 struct io_worker *worker;
Jens Axboe685fe7f2021-03-08 09:37:51 -07001239
Jens Axboed3e9f732021-08-04 08:37:25 -06001240 worker = container_of(cb, struct io_worker, create_work);
Pavel Begunkov1d5f5ea2021-10-29 13:11:33 +01001241 io_worker_cancel_cb(worker);
Jens Axboeafcc4012021-02-26 13:48:19 -07001242 }
Jens Axboe71a85382021-12-10 08:29:30 -07001243}
1244
1245static void io_wq_exit_workers(struct io_wq *wq)
1246{
1247 int node;
1248
1249 if (!wq->task)
1250 return;
1251
1252 io_wq_cancel_tw_create(wq);
Jens Axboe685fe7f2021-03-08 09:37:51 -07001253
1254 rcu_read_lock();
1255 for_each_node(node) {
1256 struct io_wqe *wqe = wq->wqes[node];
1257
1258 io_wq_for_each_worker(wqe, io_wq_worker_wake, NULL);
Jens Axboe685fe7f2021-03-08 09:37:51 -07001259 }
1260 rcu_read_unlock();
1261 io_worker_ref_put(wq);
1262 wait_for_completion(&wq->worker_done);
Zqiang3743c172021-05-26 13:08:26 +08001263
1264 for_each_node(node) {
1265 spin_lock_irq(&wq->hash->wait.lock);
1266 list_del_init(&wq->wqes[node]->wait.entry);
1267 spin_unlock_irq(&wq->hash->wait.lock);
1268 }
Jens Axboe685fe7f2021-03-08 09:37:51 -07001269 put_task_struct(wq->task);
1270 wq->task = NULL;
Jens Axboeafcc4012021-02-26 13:48:19 -07001271}
1272
Jens Axboe4fb6ac32021-02-25 10:17:09 -07001273static void io_wq_destroy(struct io_wq *wq)
Jens Axboe771b53d02019-10-22 10:25:58 -06001274{
Jann Horn3fc50ab2019-11-26 19:10:20 +01001275 int node;
Jens Axboe771b53d02019-10-22 10:25:58 -06001276
Jens Axboe43c01fb2020-10-22 09:02:50 -06001277 cpuhp_state_remove_instance_nocalls(io_wq_online, &wq->cpuhp_node);
1278
Jens Axboee9418942021-02-19 12:33:30 -07001279 for_each_node(node) {
1280 struct io_wqe *wqe = wq->wqes[node];
Jens Axboef5d2d232021-03-25 10:16:12 -06001281 struct io_cb_cancel_data match = {
1282 .fn = io_wq_work_match_all,
1283 .cancel_all = true,
1284 };
Jens Axboe36e4c582022-01-18 19:18:20 -07001285 raw_spin_lock(&wqe->lock);
Jens Axboef5d2d232021-03-25 10:16:12 -06001286 io_wqe_cancel_pending_work(wqe, &match);
Jens Axboe36e4c582022-01-18 19:18:20 -07001287 raw_spin_unlock(&wqe->lock);
Jens Axboe0e034962021-06-17 10:08:11 -06001288 free_cpumask_var(wqe->cpu_mask);
Jens Axboee9418942021-02-19 12:33:30 -07001289 kfree(wqe);
1290 }
Jens Axboee9418942021-02-19 12:33:30 -07001291 io_wq_put_hash(wq->hash);
Jens Axboe771b53d02019-10-22 10:25:58 -06001292 kfree(wq);
Jens Axboe4fb6ac32021-02-25 10:17:09 -07001293}
1294
Jens Axboeafcc4012021-02-26 13:48:19 -07001295void io_wq_put_and_exit(struct io_wq *wq)
1296{
Pavel Begunkov17a91052021-05-23 15:48:39 +01001297 WARN_ON_ONCE(!test_bit(IO_WQ_BIT_EXIT, &wq->state));
1298
Jens Axboe685fe7f2021-03-08 09:37:51 -07001299 io_wq_exit_workers(wq);
Pavel Begunkov382cb032021-06-14 02:36:13 +01001300 io_wq_destroy(wq);
Jens Axboeafcc4012021-02-26 13:48:19 -07001301}
1302
Jens Axboe0e034962021-06-17 10:08:11 -06001303struct online_data {
1304 unsigned int cpu;
1305 bool online;
1306};
1307
Jens Axboe43c01fb2020-10-22 09:02:50 -06001308static bool io_wq_worker_affinity(struct io_worker *worker, void *data)
1309{
Jens Axboe0e034962021-06-17 10:08:11 -06001310 struct online_data *od = data;
Jens Axboe43c01fb2020-10-22 09:02:50 -06001311
Jens Axboe0e034962021-06-17 10:08:11 -06001312 if (od->online)
1313 cpumask_set_cpu(od->cpu, worker->wqe->cpu_mask);
1314 else
1315 cpumask_clear_cpu(od->cpu, worker->wqe->cpu_mask);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001316 return false;
1317}
1318
Jens Axboe0e034962021-06-17 10:08:11 -06001319static int __io_wq_cpu_online(struct io_wq *wq, unsigned int cpu, bool online)
1320{
1321 struct online_data od = {
1322 .cpu = cpu,
1323 .online = online
1324 };
1325 int i;
1326
1327 rcu_read_lock();
1328 for_each_node(i)
1329 io_wq_for_each_worker(wq->wqes[i], io_wq_worker_affinity, &od);
1330 rcu_read_unlock();
1331 return 0;
1332}
1333
Jens Axboe43c01fb2020-10-22 09:02:50 -06001334static int io_wq_cpu_online(unsigned int cpu, struct hlist_node *node)
1335{
1336 struct io_wq *wq = hlist_entry_safe(node, struct io_wq, cpuhp_node);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001337
Jens Axboe0e034962021-06-17 10:08:11 -06001338 return __io_wq_cpu_online(wq, cpu, true);
1339}
1340
1341static int io_wq_cpu_offline(unsigned int cpu, struct hlist_node *node)
1342{
1343 struct io_wq *wq = hlist_entry_safe(node, struct io_wq, cpuhp_node);
1344
1345 return __io_wq_cpu_online(wq, cpu, false);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001346}
1347
Jens Axboefe764212021-06-17 10:19:54 -06001348int io_wq_cpu_affinity(struct io_wq *wq, cpumask_var_t mask)
1349{
1350 int i;
1351
1352 rcu_read_lock();
1353 for_each_node(i) {
1354 struct io_wqe *wqe = wq->wqes[i];
1355
1356 if (mask)
1357 cpumask_copy(wqe->cpu_mask, mask);
1358 else
1359 cpumask_copy(wqe->cpu_mask, cpumask_of_node(i));
1360 }
1361 rcu_read_unlock();
1362 return 0;
1363}
1364
Jens Axboe2e480052021-08-27 11:33:19 -06001365/*
1366 * Set max number of unbounded workers, returns old value. If new_count is 0,
1367 * then just return the old value.
1368 */
1369int io_wq_max_workers(struct io_wq *wq, int *new_count)
1370{
Beld Zhang71c9ce22021-11-02 12:32:08 -06001371 int prev[IO_WQ_ACCT_NR];
1372 bool first_node = true;
1373 int i, node;
Jens Axboe2e480052021-08-27 11:33:19 -06001374
Eugene Syromiatnikovdd47c102021-09-13 17:44:15 +02001375 BUILD_BUG_ON((int) IO_WQ_ACCT_BOUND != (int) IO_WQ_BOUND);
1376 BUILD_BUG_ON((int) IO_WQ_ACCT_UNBOUND != (int) IO_WQ_UNBOUND);
1377 BUILD_BUG_ON((int) IO_WQ_ACCT_NR != 2);
1378
Jens Axboe2e480052021-08-27 11:33:19 -06001379 for (i = 0; i < 2; i++) {
1380 if (new_count[i] > task_rlimit(current, RLIMIT_NPROC))
1381 new_count[i] = task_rlimit(current, RLIMIT_NPROC);
1382 }
1383
Beld Zhang71c9ce22021-11-02 12:32:08 -06001384 for (i = 0; i < IO_WQ_ACCT_NR; i++)
1385 prev[i] = 0;
1386
Jens Axboe2e480052021-08-27 11:33:19 -06001387 rcu_read_lock();
1388 for_each_node(node) {
Pavel Begunkovbc369922021-10-19 20:31:26 +01001389 struct io_wqe *wqe = wq->wqes[node];
Jens Axboe2e480052021-08-27 11:33:19 -06001390 struct io_wqe_acct *acct;
1391
Pavel Begunkovbc369922021-10-19 20:31:26 +01001392 raw_spin_lock(&wqe->lock);
Jens Axboef95dc202021-08-31 13:57:32 -06001393 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
Pavel Begunkovbc369922021-10-19 20:31:26 +01001394 acct = &wqe->acct[i];
Beld Zhang71c9ce22021-11-02 12:32:08 -06001395 if (first_node)
1396 prev[i] = max_t(int, acct->max_workers, prev[i]);
Jens Axboe2e480052021-08-27 11:33:19 -06001397 if (new_count[i])
1398 acct->max_workers = new_count[i];
Jens Axboe2e480052021-08-27 11:33:19 -06001399 }
Pavel Begunkovbc369922021-10-19 20:31:26 +01001400 raw_spin_unlock(&wqe->lock);
Beld Zhang71c9ce22021-11-02 12:32:08 -06001401 first_node = false;
Jens Axboe2e480052021-08-27 11:33:19 -06001402 }
1403 rcu_read_unlock();
Beld Zhang71c9ce22021-11-02 12:32:08 -06001404
1405 for (i = 0; i < IO_WQ_ACCT_NR; i++)
1406 new_count[i] = prev[i];
1407
Jens Axboe2e480052021-08-27 11:33:19 -06001408 return 0;
1409}
1410
Jens Axboe43c01fb2020-10-22 09:02:50 -06001411static __init int io_wq_init(void)
1412{
1413 int ret;
1414
1415 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "io-wq/online",
Jens Axboe0e034962021-06-17 10:08:11 -06001416 io_wq_cpu_online, io_wq_cpu_offline);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001417 if (ret < 0)
1418 return ret;
1419 io_wq_online = ret;
1420 return 0;
1421}
1422subsys_initcall(io_wq_init);