blob: 5c4f582d6549a11a8301fd793488a516fc41aaf0 [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 Axboe36c2f922019-11-13 09:43:34 -070051 spinlock_t lock;
Jens Axboe771b53d02019-10-22 10:25:58 -060052
Jens Axboeeb2de942021-02-23 19:59:06 -070053 struct completion ref_done;
54
Jens Axboed3e9f732021-08-04 08:37:25 -060055 unsigned long create_state;
56 struct callback_head create_work;
57 int create_index;
58
Jens Axboe3146cba2021-09-01 11:20:10 -060059 union {
60 struct rcu_head rcu;
61 struct work_struct work;
62 };
Jens Axboe771b53d02019-10-22 10:25:58 -060063};
64
Jens Axboe771b53d02019-10-22 10:25:58 -060065#if BITS_PER_LONG == 64
66#define IO_WQ_HASH_ORDER 6
67#else
68#define IO_WQ_HASH_ORDER 5
69#endif
70
Pavel Begunkov86f3cd12020-03-23 22:57:22 +030071#define IO_WQ_NR_HASH_BUCKETS (1u << IO_WQ_HASH_ORDER)
72
Jens Axboec5def4a2019-11-07 11:41:16 -070073struct io_wqe_acct {
74 unsigned nr_workers;
75 unsigned max_workers;
Jens Axboe685fe7f2021-03-08 09:37:51 -070076 int index;
Jens Axboec5def4a2019-11-07 11:41:16 -070077 atomic_t nr_running;
Jens Axboef95dc202021-08-31 13:57:32 -060078 struct io_wq_work_list work_list;
79 unsigned long flags;
Jens Axboec5def4a2019-11-07 11:41:16 -070080};
81
82enum {
83 IO_WQ_ACCT_BOUND,
84 IO_WQ_ACCT_UNBOUND,
Jens Axboef95dc202021-08-31 13:57:32 -060085 IO_WQ_ACCT_NR,
Jens Axboec5def4a2019-11-07 11:41:16 -070086};
87
Jens Axboe771b53d02019-10-22 10:25:58 -060088/*
89 * Per-node worker thread pool
90 */
91struct io_wqe {
Jens Axboef95dc202021-08-31 13:57:32 -060092 raw_spinlock_t lock;
93 struct io_wqe_acct acct[2];
Jens Axboe771b53d02019-10-22 10:25:58 -060094
95 int node;
Jens Axboe771b53d02019-10-22 10:25:58 -060096
Jens Axboe021d1cd2019-11-14 08:00:41 -070097 struct hlist_nulls_head free_list;
Jens Axboee61df662019-11-13 13:54:49 -070098 struct list_head all_list;
Jens Axboe771b53d02019-10-22 10:25:58 -060099
Jens Axboee9418942021-02-19 12:33:30 -0700100 struct wait_queue_entry wait;
101
Jens Axboe771b53d02019-10-22 10:25:58 -0600102 struct io_wq *wq;
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300103 struct io_wq_work *hash_tail[IO_WQ_NR_HASH_BUCKETS];
Jens Axboe0e034962021-06-17 10:08:11 -0600104
105 cpumask_var_t cpu_mask;
Jens Axboe771b53d02019-10-22 10:25:58 -0600106};
107
108/*
109 * Per io_wq state
110 */
111struct io_wq {
Jens Axboe771b53d02019-10-22 10:25:58 -0600112 unsigned long state;
Jens Axboe771b53d02019-10-22 10:25:58 -0600113
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300114 free_work_fn *free_work;
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +0300115 io_wq_work_fn *do_work;
Jens Axboe7d723062019-11-12 22:31:31 -0700116
Jens Axboee9418942021-02-19 12:33:30 -0700117 struct io_wq_hash *hash;
118
Jens Axboefb3a1f62021-02-26 09:47:20 -0700119 atomic_t worker_refs;
120 struct completion worker_done;
121
Jens Axboe43c01fb2020-10-22 09:02:50 -0600122 struct hlist_node cpuhp_node;
Jens Axboe3bfe6102021-02-16 14:15:30 -0700123
Jens Axboe685fe7f2021-03-08 09:37:51 -0700124 struct task_struct *task;
Pavel Begunkovc7f405d2021-06-14 02:36:12 +0100125
126 struct io_wqe *wqes[];
Jens Axboe771b53d02019-10-22 10:25:58 -0600127};
128
Jens Axboe43c01fb2020-10-22 09:02:50 -0600129static enum cpuhp_state io_wq_online;
130
Jens Axboef0127252021-03-03 15:47:04 -0700131struct io_cb_cancel_data {
132 work_cancel_fn *fn;
133 void *data;
134 int nr_running;
135 int nr_pending;
136 bool cancel_all;
137};
138
Jens Axboe3146cba2021-09-01 11:20:10 -0600139static bool create_io_worker(struct io_wq *wq, struct io_wqe *wqe, int index);
Jens Axboe83d6c392021-08-03 09:14:35 -0600140static void io_wqe_dec_running(struct io_worker *worker);
Jens Axboe3146cba2021-09-01 11:20:10 -0600141static bool io_acct_cancel_pending_work(struct io_wqe *wqe,
142 struct io_wqe_acct *acct,
143 struct io_cb_cancel_data *match);
Pavel Begunkov1d5f5ea2021-10-29 13:11:33 +0100144static void create_worker_cb(struct callback_head *cb);
Jens Axboe71a85382021-12-10 08:29:30 -0700145static void io_wq_cancel_tw_create(struct io_wq *wq);
Jens Axboef0127252021-03-03 15:47:04 -0700146
Jens Axboe771b53d02019-10-22 10:25:58 -0600147static bool io_worker_get(struct io_worker *worker)
148{
149 return refcount_inc_not_zero(&worker->ref);
150}
151
152static void io_worker_release(struct io_worker *worker)
153{
154 if (refcount_dec_and_test(&worker->ref))
Jens Axboeeb2de942021-02-23 19:59:06 -0700155 complete(&worker->ref_done);
Jens Axboe771b53d02019-10-22 10:25:58 -0600156}
157
Pavel Begunkov8418f222021-03-22 01:58:28 +0000158static inline struct io_wqe_acct *io_get_acct(struct io_wqe *wqe, bool bound)
159{
160 return &wqe->acct[bound ? IO_WQ_ACCT_BOUND : IO_WQ_ACCT_UNBOUND];
161}
162
Jens Axboec5def4a2019-11-07 11:41:16 -0700163static inline struct io_wqe_acct *io_work_get_acct(struct io_wqe *wqe,
164 struct io_wq_work *work)
165{
Pavel Begunkov8418f222021-03-22 01:58:28 +0000166 return io_get_acct(wqe, !(work->flags & IO_WQ_WORK_UNBOUND));
Jens Axboec5def4a2019-11-07 11:41:16 -0700167}
168
Jens Axboe958234d2021-02-17 09:00:57 -0700169static inline struct io_wqe_acct *io_wqe_get_acct(struct io_worker *worker)
Jens Axboec5def4a2019-11-07 11:41:16 -0700170{
Pavel Begunkov8418f222021-03-22 01:58:28 +0000171 return io_get_acct(worker->wqe, worker->flags & IO_WORKER_F_BOUND);
Jens Axboec5def4a2019-11-07 11:41:16 -0700172}
173
Jens Axboe685fe7f2021-03-08 09:37:51 -0700174static void io_worker_ref_put(struct io_wq *wq)
175{
176 if (atomic_dec_and_test(&wq->worker_refs))
177 complete(&wq->worker_done);
178}
179
Pavel Begunkov1d5f5ea2021-10-29 13:11:33 +0100180static void io_worker_cancel_cb(struct io_worker *worker)
181{
182 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
183 struct io_wqe *wqe = worker->wqe;
184 struct io_wq *wq = wqe->wq;
185
186 atomic_dec(&acct->nr_running);
187 raw_spin_lock(&worker->wqe->lock);
188 acct->nr_workers--;
189 raw_spin_unlock(&worker->wqe->lock);
190 io_worker_ref_put(wq);
191 clear_bit_unlock(0, &worker->create_state);
192 io_worker_release(worker);
193}
194
195static bool io_task_worker_match(struct callback_head *cb, void *data)
196{
197 struct io_worker *worker;
198
199 if (cb->func != create_worker_cb)
200 return false;
201 worker = container_of(cb, struct io_worker, create_work);
202 return worker == data;
203}
204
Jens Axboe771b53d02019-10-22 10:25:58 -0600205static void io_worker_exit(struct io_worker *worker)
206{
207 struct io_wqe *wqe = worker->wqe;
Pavel Begunkov1d5f5ea2021-10-29 13:11:33 +0100208 struct io_wq *wq = wqe->wq;
Jens Axboe771b53d02019-10-22 10:25:58 -0600209
Pavel Begunkov1d5f5ea2021-10-29 13:11:33 +0100210 while (1) {
211 struct callback_head *cb = task_work_cancel_match(wq->task,
212 io_task_worker_match, worker);
213
214 if (!cb)
215 break;
216 io_worker_cancel_cb(worker);
217 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600218
Pavel Begunkovc907e522021-10-23 12:13:55 +0100219 io_worker_release(worker);
Jens Axboeeb2de942021-02-23 19:59:06 -0700220 wait_for_completion(&worker->ref_done);
Jens Axboe771b53d02019-10-22 10:25:58 -0600221
Jens Axboea9a4aa92021-08-30 06:33:08 -0600222 raw_spin_lock(&wqe->lock);
Jens Axboe83d6c392021-08-03 09:14:35 -0600223 if (worker->flags & IO_WORKER_F_FREE)
Jens Axboebf1daa42021-02-16 18:00:55 -0700224 hlist_nulls_del_rcu(&worker->nulls_node);
Jens Axboee61df662019-11-13 13:54:49 -0700225 list_del_rcu(&worker->all_list);
Jens Axboe83d6c392021-08-03 09:14:35 -0600226 preempt_disable();
227 io_wqe_dec_running(worker);
228 worker->flags = 0;
229 current->flags &= ~PF_IO_WORKER;
230 preempt_enable();
Jens Axboea9a4aa92021-08-30 06:33:08 -0600231 raw_spin_unlock(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600232
YueHaibing364b05f2019-11-02 15:55:01 +0800233 kfree_rcu(worker, rcu);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700234 io_worker_ref_put(wqe->wq);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700235 do_exit(0);
Jens Axboe771b53d02019-10-22 10:25:58 -0600236}
237
Jens Axboef95dc202021-08-31 13:57:32 -0600238static inline bool io_acct_run_queue(struct io_wqe_acct *acct)
Jens Axboec5def4a2019-11-07 11:41:16 -0700239{
Jens Axboef95dc202021-08-31 13:57:32 -0600240 if (!wq_list_empty(&acct->work_list) &&
241 !test_bit(IO_ACCT_STALLED_BIT, &acct->flags))
Jens Axboec5def4a2019-11-07 11:41:16 -0700242 return true;
243 return false;
244}
245
246/*
247 * Check head of free list for an available worker. If one isn't available,
Jens Axboe685fe7f2021-03-08 09:37:51 -0700248 * caller must create one.
Jens Axboec5def4a2019-11-07 11:41:16 -0700249 */
Jens Axboef95dc202021-08-31 13:57:32 -0600250static bool io_wqe_activate_free_worker(struct io_wqe *wqe,
251 struct io_wqe_acct *acct)
Jens Axboec5def4a2019-11-07 11:41:16 -0700252 __must_hold(RCU)
253{
254 struct hlist_nulls_node *n;
255 struct io_worker *worker;
256
Jens Axboe83d6c392021-08-03 09:14:35 -0600257 /*
258 * Iterate free_list and see if we can find an idle worker to
259 * activate. If a given worker is on the free_list but in the process
260 * of exiting, keep trying.
261 */
262 hlist_nulls_for_each_entry_rcu(worker, n, &wqe->free_list, nulls_node) {
263 if (!io_worker_get(worker))
264 continue;
Jens Axboef95dc202021-08-31 13:57:32 -0600265 if (io_wqe_get_acct(worker) != acct) {
266 io_worker_release(worker);
267 continue;
268 }
Jens Axboe83d6c392021-08-03 09:14:35 -0600269 if (wake_up_process(worker->task)) {
270 io_worker_release(worker);
271 return true;
272 }
Jens Axboec5def4a2019-11-07 11:41:16 -0700273 io_worker_release(worker);
Jens Axboec5def4a2019-11-07 11:41:16 -0700274 }
275
276 return false;
277}
278
279/*
280 * 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 -0700281 * below the max number of workers, create one.
Jens Axboec5def4a2019-11-07 11:41:16 -0700282 */
Jens Axboe3146cba2021-09-01 11:20:10 -0600283static bool io_wqe_create_worker(struct io_wqe *wqe, struct io_wqe_acct *acct)
Jens Axboec5def4a2019-11-07 11:41:16 -0700284{
Jens Axboec5def4a2019-11-07 11:41:16 -0700285 /*
286 * Most likely an attempt to queue unbounded work on an io_wq that
287 * wasn't setup with any unbounded workers.
288 */
Pavel Begunkove6ab8992021-06-17 18:13:59 +0100289 if (unlikely(!acct->max_workers))
290 pr_warn_once("io-wq is not configured for unbound workers");
Jens Axboec5def4a2019-11-07 11:41:16 -0700291
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600292 raw_spin_lock(&wqe->lock);
Pavel Begunkovbc369922021-10-19 20:31:26 +0100293 if (acct->nr_workers >= acct->max_workers) {
Hao Xu7a842fb2021-09-12 03:40:50 +0800294 raw_spin_unlock(&wqe->lock);
295 return true;
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600296 }
Hao Xu7a842fb2021-09-12 03:40:50 +0800297 acct->nr_workers++;
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600298 raw_spin_unlock(&wqe->lock);
Hao Xu7a842fb2021-09-12 03:40:50 +0800299 atomic_inc(&acct->nr_running);
300 atomic_inc(&wqe->wq->worker_refs);
301 return create_io_worker(wqe->wq, wqe, acct->index);
Jens Axboec5def4a2019-11-07 11:41:16 -0700302}
303
Jens Axboe958234d2021-02-17 09:00:57 -0700304static void io_wqe_inc_running(struct io_worker *worker)
Jens Axboec5def4a2019-11-07 11:41:16 -0700305{
Jens Axboe958234d2021-02-17 09:00:57 -0700306 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
Jens Axboec5def4a2019-11-07 11:41:16 -0700307
308 atomic_inc(&acct->nr_running);
309}
310
Jens Axboe685fe7f2021-03-08 09:37:51 -0700311static void create_worker_cb(struct callback_head *cb)
312{
Jens Axboed3e9f732021-08-04 08:37:25 -0600313 struct io_worker *worker;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700314 struct io_wq *wq;
Hao Xu21698272021-08-05 18:05:38 +0800315 struct io_wqe *wqe;
316 struct io_wqe_acct *acct;
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600317 bool do_create = false;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700318
Jens Axboed3e9f732021-08-04 08:37:25 -0600319 worker = container_of(cb, struct io_worker, create_work);
320 wqe = worker->wqe;
Hao Xu21698272021-08-05 18:05:38 +0800321 wq = wqe->wq;
Jens Axboed3e9f732021-08-04 08:37:25 -0600322 acct = &wqe->acct[worker->create_index];
Jens Axboea9a4aa92021-08-30 06:33:08 -0600323 raw_spin_lock(&wqe->lock);
Hao Xu49e7f0c2021-08-08 21:54:33 +0800324 if (acct->nr_workers < acct->max_workers) {
Hao Xu21698272021-08-05 18:05:38 +0800325 acct->nr_workers++;
Hao Xu49e7f0c2021-08-08 21:54:33 +0800326 do_create = true;
327 }
Jens Axboea9a4aa92021-08-30 06:33:08 -0600328 raw_spin_unlock(&wqe->lock);
Hao Xu49e7f0c2021-08-08 21:54:33 +0800329 if (do_create) {
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600330 create_io_worker(wq, wqe, worker->create_index);
Hao Xu49e7f0c2021-08-08 21:54:33 +0800331 } else {
332 atomic_dec(&acct->nr_running);
333 io_worker_ref_put(wq);
334 }
Jens Axboed3e9f732021-08-04 08:37:25 -0600335 clear_bit_unlock(0, &worker->create_state);
336 io_worker_release(worker);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700337}
338
Jens Axboe3146cba2021-09-01 11:20:10 -0600339static bool io_queue_worker_create(struct io_worker *worker,
340 struct io_wqe_acct *acct,
341 task_work_func_t func)
Jens Axboe685fe7f2021-03-08 09:37:51 -0700342{
Jens Axboe3146cba2021-09-01 11:20:10 -0600343 struct io_wqe *wqe = worker->wqe;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700344 struct io_wq *wq = wqe->wq;
345
346 /* raced with exit, just ignore create call */
347 if (test_bit(IO_WQ_BIT_EXIT, &wq->state))
348 goto fail;
Jens Axboed3e9f732021-08-04 08:37:25 -0600349 if (!io_worker_get(worker))
350 goto fail;
351 /*
352 * create_state manages ownership of create_work/index. We should
353 * only need one entry per worker, as the worker going to sleep
354 * will trigger the condition, and waking will clear it once it
355 * runs the task_work.
356 */
357 if (test_bit(0, &worker->create_state) ||
358 test_and_set_bit_lock(0, &worker->create_state))
359 goto fail_release;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700360
Jens Axboe71a85382021-12-10 08:29:30 -0700361 atomic_inc(&wq->worker_refs);
Jens Axboe3146cba2021-09-01 11:20:10 -0600362 init_task_work(&worker->create_work, func);
Jens Axboed3e9f732021-08-04 08:37:25 -0600363 worker->create_index = acct->index;
Jens Axboe71a85382021-12-10 08:29:30 -0700364 if (!task_work_add(wq->task, &worker->create_work, TWA_SIGNAL)) {
365 /*
366 * EXIT may have been set after checking it above, check after
367 * adding the task_work and remove any creation item if it is
368 * now set. wq exit does that too, but we can have added this
369 * work item after we canceled in io_wq_exit_workers().
370 */
371 if (test_bit(IO_WQ_BIT_EXIT, &wq->state))
372 io_wq_cancel_tw_create(wq);
373 io_worker_ref_put(wq);
Jens Axboe3146cba2021-09-01 11:20:10 -0600374 return true;
Jens Axboe71a85382021-12-10 08:29:30 -0700375 }
376 io_worker_ref_put(wq);
Jens Axboed3e9f732021-08-04 08:37:25 -0600377 clear_bit_unlock(0, &worker->create_state);
378fail_release:
379 io_worker_release(worker);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700380fail:
381 atomic_dec(&acct->nr_running);
382 io_worker_ref_put(wq);
Jens Axboe3146cba2021-09-01 11:20:10 -0600383 return false;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700384}
385
Jens Axboe958234d2021-02-17 09:00:57 -0700386static void io_wqe_dec_running(struct io_worker *worker)
Jens Axboec5def4a2019-11-07 11:41:16 -0700387 __must_hold(wqe->lock)
388{
Jens Axboe958234d2021-02-17 09:00:57 -0700389 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
390 struct io_wqe *wqe = worker->wqe;
Jens Axboec5def4a2019-11-07 11:41:16 -0700391
Jens Axboe685fe7f2021-03-08 09:37:51 -0700392 if (!(worker->flags & IO_WORKER_F_UP))
393 return;
394
Jens Axboef95dc202021-08-31 13:57:32 -0600395 if (atomic_dec_and_test(&acct->nr_running) && io_acct_run_queue(acct)) {
Jens Axboe685fe7f2021-03-08 09:37:51 -0700396 atomic_inc(&acct->nr_running);
397 atomic_inc(&wqe->wq->worker_refs);
Jens Axboed800c652021-12-13 09:04:01 -0700398 raw_spin_unlock(&wqe->lock);
Jens Axboe3146cba2021-09-01 11:20:10 -0600399 io_queue_worker_create(worker, acct, create_worker_cb);
Jens Axboed800c652021-12-13 09:04:01 -0700400 raw_spin_lock(&wqe->lock);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700401 }
Jens Axboec5def4a2019-11-07 11:41:16 -0700402}
403
Jens Axboe771b53d02019-10-22 10:25:58 -0600404/*
405 * Worker will start processing some work. Move it to the busy list, if
406 * it's currently on the freelist
407 */
408static void __io_worker_busy(struct io_wqe *wqe, struct io_worker *worker,
409 struct io_wq_work *work)
410 __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 Axboea9a4aa92021-08-30 06:33:08 -0600532 spin_lock(&worker->lock);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300533 worker->cur_work = work;
Jens Axboea9a4aa92021-08-30 06:33:08 -0600534 spin_unlock(&worker->lock);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300535}
536
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300537static void io_wqe_enqueue(struct io_wqe *wqe, struct io_wq_work *work);
538
Jens Axboe771b53d02019-10-22 10:25:58 -0600539static void io_worker_handle_work(struct io_worker *worker)
540 __releases(wqe->lock)
541{
Jens Axboef95dc202021-08-31 13:57:32 -0600542 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600543 struct io_wqe *wqe = worker->wqe;
544 struct io_wq *wq = wqe->wq;
Pavel Begunkovc60eb042021-04-08 01:54:42 +0100545 bool do_kill = test_bit(IO_WQ_BIT_EXIT, &wq->state);
Jens Axboe771b53d02019-10-22 10:25:58 -0600546
547 do {
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300548 struct io_wq_work *work;
Pavel Begunkovf462fd32020-03-04 16:14:11 +0300549get_next:
Jens Axboe771b53d02019-10-22 10:25:58 -0600550 /*
Jens Axboe771b53d02019-10-22 10:25:58 -0600551 * If we got some work, mark us as busy. If we didn't, but
552 * the list isn't empty, it means we stalled on hashed work.
553 * Mark us stalled so we don't keep looking for work when we
554 * can't make progress, any work completion or insertion will
555 * clear the stalled flag.
556 */
Jens Axboef95dc202021-08-31 13:57:32 -0600557 work = io_get_next_work(acct, worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600558 if (work)
559 __io_worker_busy(wqe, worker, work);
Jens Axboe771b53d02019-10-22 10:25:58 -0600560
Jens Axboea9a4aa92021-08-30 06:33:08 -0600561 raw_spin_unlock(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600562 if (!work)
563 break;
Pavel Begunkov58e39312020-03-04 16:14:10 +0300564 io_assign_current_work(worker, work);
Jens Axboee9418942021-02-19 12:33:30 -0700565 __set_current_state(TASK_RUNNING);
Jens Axboe36c2f922019-11-13 09:43:34 -0700566
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300567 /* handle a whole dependent link */
568 do {
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000569 struct io_wq_work *next_hashed, *linked;
Pavel Begunkovb089ed392020-07-25 14:42:00 +0300570 unsigned int hash = io_get_work_hash(work);
Hillf Dantonfd1c4bc2019-12-24 09:14:29 -0700571
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300572 next_hashed = wq_next_work(work);
Pavel Begunkovc60eb042021-04-08 01:54:42 +0100573
574 if (unlikely(do_kill) && (work->flags & IO_WQ_WORK_UNBOUND))
575 work->flags |= IO_WQ_WORK_CANCEL;
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000576 wq->do_work(work);
577 io_assign_current_work(worker, NULL);
Jens Axboe36c2f922019-11-13 09:43:34 -0700578
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000579 linked = wq->free_work(work);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300580 work = next_hashed;
581 if (!work && linked && !io_wq_is_hashed(linked)) {
582 work = linked;
583 linked = NULL;
584 }
585 io_assign_current_work(worker, work);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300586 if (linked)
587 io_wqe_enqueue(wqe, linked);
588
589 if (hash != -1U && !next_hashed) {
Jens Axboed3e3c102021-11-11 17:32:53 -0700590 /* serialize hash clear with wake_up() */
591 spin_lock_irq(&wq->hash->wait.lock);
Jens Axboee9418942021-02-19 12:33:30 -0700592 clear_bit(hash, &wq->hash->map);
Jens Axboef95dc202021-08-31 13:57:32 -0600593 clear_bit(IO_ACCT_STALLED_BIT, &acct->flags);
Jens Axboed3e3c102021-11-11 17:32:53 -0700594 spin_unlock_irq(&wq->hash->wait.lock);
Jens Axboee9418942021-02-19 12:33:30 -0700595 if (wq_has_sleeper(&wq->hash->wait))
596 wake_up(&wq->hash->wait);
Jens Axboea9a4aa92021-08-30 06:33:08 -0600597 raw_spin_lock(&wqe->lock);
Pavel Begunkovf462fd32020-03-04 16:14:11 +0300598 /* skip unnecessary unlock-lock wqe->lock */
599 if (!work)
600 goto get_next;
Jens Axboea9a4aa92021-08-30 06:33:08 -0600601 raw_spin_unlock(&wqe->lock);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300602 }
Pavel Begunkov58e39312020-03-04 16:14:10 +0300603 } while (work);
Jens Axboe36c2f922019-11-13 09:43:34 -0700604
Jens Axboea9a4aa92021-08-30 06:33:08 -0600605 raw_spin_lock(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600606 } while (1);
607}
608
Jens Axboe771b53d02019-10-22 10:25:58 -0600609static int io_wqe_worker(void *data)
610{
611 struct io_worker *worker = data;
Jens Axboef95dc202021-08-31 13:57:32 -0600612 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600613 struct io_wqe *wqe = worker->wqe;
614 struct io_wq *wq = wqe->wq;
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600615 bool last_timeout = false;
Jens Axboe46fe18b2021-03-04 12:39:36 -0700616 char buf[TASK_COMM_LEN];
Jens Axboe771b53d02019-10-22 10:25:58 -0600617
Jens Axboe46fe18b2021-03-04 12:39:36 -0700618 worker->flags |= (IO_WORKER_F_UP | IO_WORKER_F_RUNNING);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700619
Jens Axboe685fe7f2021-03-08 09:37:51 -0700620 snprintf(buf, sizeof(buf), "iou-wrk-%d", wq->task->pid);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700621 set_task_comm(current, buf);
Jens Axboe771b53d02019-10-22 10:25:58 -0600622
Paul Moore5bd21822021-02-16 19:46:48 -0500623 audit_alloc_kernel(current);
624
Jens Axboe771b53d02019-10-22 10:25:58 -0600625 while (!test_bit(IO_WQ_BIT_EXIT, &wq->state)) {
Jens Axboe16efa4f2021-03-12 20:26:13 -0700626 long ret;
627
Jens Axboe506d95f2019-12-07 21:03:59 -0700628 set_current_state(TASK_INTERRUPTIBLE);
Jens Axboee995d512019-12-07 21:06:46 -0700629loop:
Jens Axboea9a4aa92021-08-30 06:33:08 -0600630 raw_spin_lock(&wqe->lock);
Jens Axboef95dc202021-08-31 13:57:32 -0600631 if (io_acct_run_queue(acct)) {
Jens Axboe771b53d02019-10-22 10:25:58 -0600632 io_worker_handle_work(worker);
Jens Axboee995d512019-12-07 21:06:46 -0700633 goto loop;
Jens Axboe771b53d02019-10-22 10:25:58 -0600634 }
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600635 /* timed out, exit unless we're the last worker */
636 if (last_timeout && acct->nr_workers > 1) {
Hao Xu767a65e2021-09-12 03:40:52 +0800637 acct->nr_workers--;
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600638 raw_spin_unlock(&wqe->lock);
639 __set_current_state(TASK_RUNNING);
640 break;
641 }
642 last_timeout = false;
Jens Axboec6d77d92021-02-15 13:26:34 -0700643 __io_worker_idle(wqe, worker);
Jens Axboea9a4aa92021-08-30 06:33:08 -0600644 raw_spin_unlock(&wqe->lock);
Jens Axboe00ddff42021-03-21 07:06:56 -0600645 if (io_flush_signals())
646 continue;
Jens Axboe16efa4f2021-03-12 20:26:13 -0700647 ret = schedule_timeout(WORKER_IDLE_TIMEOUT);
Jens Axboedbe1bdb2021-03-25 18:16:06 -0600648 if (signal_pending(current)) {
649 struct ksignal ksig;
650
651 if (!get_signal(&ksig))
652 continue;
Jens Axboe78f88762021-09-27 10:04:10 -0600653 break;
Jens Axboedbe1bdb2021-03-25 18:16:06 -0600654 }
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600655 last_timeout = !ret;
Jens Axboe771b53d02019-10-22 10:25:58 -0600656 }
657
Jens Axboe771b53d02019-10-22 10:25:58 -0600658 if (test_bit(IO_WQ_BIT_EXIT, &wq->state)) {
Jens Axboea9a4aa92021-08-30 06:33:08 -0600659 raw_spin_lock(&wqe->lock);
Pavel Begunkove5872272021-06-14 02:36:17 +0100660 io_worker_handle_work(worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600661 }
662
Paul Moore5bd21822021-02-16 19:46:48 -0500663 audit_free(current);
Jens Axboe771b53d02019-10-22 10:25:58 -0600664 io_worker_exit(worker);
665 return 0;
666}
667
668/*
Jens Axboe771b53d02019-10-22 10:25:58 -0600669 * Called when a worker is scheduled in. Mark us as currently running.
670 */
671void io_wq_worker_running(struct task_struct *tsk)
672{
Jens Axboe3bfe6102021-02-16 14:15:30 -0700673 struct io_worker *worker = tsk->pf_io_worker;
Jens Axboe771b53d02019-10-22 10:25:58 -0600674
Jens Axboe3bfe6102021-02-16 14:15:30 -0700675 if (!worker)
676 return;
Jens Axboe771b53d02019-10-22 10:25:58 -0600677 if (!(worker->flags & IO_WORKER_F_UP))
678 return;
679 if (worker->flags & IO_WORKER_F_RUNNING)
680 return;
681 worker->flags |= IO_WORKER_F_RUNNING;
Jens Axboe958234d2021-02-17 09:00:57 -0700682 io_wqe_inc_running(worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600683}
684
685/*
686 * Called when worker is going to sleep. If there are no workers currently
Jens Axboe685fe7f2021-03-08 09:37:51 -0700687 * running and we have work pending, wake up a free one or create a new one.
Jens Axboe771b53d02019-10-22 10:25:58 -0600688 */
689void io_wq_worker_sleeping(struct task_struct *tsk)
690{
Jens Axboe3bfe6102021-02-16 14:15:30 -0700691 struct io_worker *worker = tsk->pf_io_worker;
Jens Axboe771b53d02019-10-22 10:25:58 -0600692
Jens Axboe3bfe6102021-02-16 14:15:30 -0700693 if (!worker)
694 return;
Jens Axboe771b53d02019-10-22 10:25:58 -0600695 if (!(worker->flags & IO_WORKER_F_UP))
696 return;
697 if (!(worker->flags & IO_WORKER_F_RUNNING))
698 return;
699
700 worker->flags &= ~IO_WORKER_F_RUNNING;
701
Jens Axboea9a4aa92021-08-30 06:33:08 -0600702 raw_spin_lock(&worker->wqe->lock);
Jens Axboe958234d2021-02-17 09:00:57 -0700703 io_wqe_dec_running(worker);
Jens Axboea9a4aa92021-08-30 06:33:08 -0600704 raw_spin_unlock(&worker->wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600705}
706
Jens Axboe3146cba2021-09-01 11:20:10 -0600707static void io_init_new_worker(struct io_wqe *wqe, struct io_worker *worker,
708 struct task_struct *tsk)
Jens Axboe3bfe6102021-02-16 14:15:30 -0700709{
Jens Axboe46fe18b2021-03-04 12:39:36 -0700710 tsk->pf_io_worker = worker;
711 worker->task = tsk;
Jens Axboe0e034962021-06-17 10:08:11 -0600712 set_cpus_allowed_ptr(tsk, wqe->cpu_mask);
Jens Axboee22bc9b2021-03-09 19:49:02 -0700713 tsk->flags |= PF_NO_SETAFFINITY;
Jens Axboe46fe18b2021-03-04 12:39:36 -0700714
Jens Axboea9a4aa92021-08-30 06:33:08 -0600715 raw_spin_lock(&wqe->lock);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700716 hlist_nulls_add_head_rcu(&worker->nulls_node, &wqe->free_list);
717 list_add_tail_rcu(&worker->all_list, &wqe->all_list);
718 worker->flags |= IO_WORKER_F_FREE;
Jens Axboea9a4aa92021-08-30 06:33:08 -0600719 raw_spin_unlock(&wqe->lock);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700720 wake_up_new_task(tsk);
Jens Axboe771b53d02019-10-22 10:25:58 -0600721}
722
Jens Axboe3146cba2021-09-01 11:20:10 -0600723static bool io_wq_work_match_all(struct io_wq_work *work, void *data)
724{
725 return true;
726}
727
728static inline bool io_should_retry_thread(long err)
729{
Jens Axboea226abc2021-12-02 19:40:15 -0700730 /*
731 * Prevent perpetual task_work retry, if the task (or its group) is
732 * exiting.
733 */
734 if (fatal_signal_pending(current))
735 return false;
736
Jens Axboe3146cba2021-09-01 11:20:10 -0600737 switch (err) {
738 case -EAGAIN:
739 case -ERESTARTSYS:
740 case -ERESTARTNOINTR:
741 case -ERESTARTNOHAND:
742 return true;
743 default:
744 return false;
745 }
746}
747
748static void create_worker_cont(struct callback_head *cb)
749{
750 struct io_worker *worker;
751 struct task_struct *tsk;
752 struct io_wqe *wqe;
753
754 worker = container_of(cb, struct io_worker, create_work);
755 clear_bit_unlock(0, &worker->create_state);
756 wqe = worker->wqe;
757 tsk = create_io_thread(io_wqe_worker, worker, wqe->node);
758 if (!IS_ERR(tsk)) {
759 io_init_new_worker(wqe, worker, tsk);
760 io_worker_release(worker);
761 return;
762 } else if (!io_should_retry_thread(PTR_ERR(tsk))) {
763 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
764
765 atomic_dec(&acct->nr_running);
766 raw_spin_lock(&wqe->lock);
767 acct->nr_workers--;
768 if (!acct->nr_workers) {
769 struct io_cb_cancel_data match = {
770 .fn = io_wq_work_match_all,
771 .cancel_all = true,
772 };
773
774 while (io_acct_cancel_pending_work(wqe, acct, &match))
775 raw_spin_lock(&wqe->lock);
776 }
777 raw_spin_unlock(&wqe->lock);
778 io_worker_ref_put(wqe->wq);
Qiang.zhang66e70be2021-09-09 19:58:22 +0800779 kfree(worker);
Jens Axboe3146cba2021-09-01 11:20:10 -0600780 return;
781 }
782
783 /* re-create attempts grab a new worker ref, drop the existing one */
784 io_worker_release(worker);
785 schedule_work(&worker->work);
786}
787
788static void io_workqueue_create(struct work_struct *work)
789{
790 struct io_worker *worker = container_of(work, struct io_worker, work);
791 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
792
Bixuan Cui71e1cef2021-09-11 16:58:47 +0800793 if (!io_queue_worker_create(worker, acct, create_worker_cont))
Qiang.zhang66e70be2021-09-09 19:58:22 +0800794 kfree(worker);
Jens Axboe3146cba2021-09-01 11:20:10 -0600795}
796
797static bool create_io_worker(struct io_wq *wq, struct io_wqe *wqe, int index)
798{
799 struct io_wqe_acct *acct = &wqe->acct[index];
800 struct io_worker *worker;
801 struct task_struct *tsk;
802
803 __set_current_state(TASK_RUNNING);
804
805 worker = kzalloc_node(sizeof(*worker), GFP_KERNEL, wqe->node);
806 if (!worker) {
807fail:
808 atomic_dec(&acct->nr_running);
809 raw_spin_lock(&wqe->lock);
810 acct->nr_workers--;
811 raw_spin_unlock(&wqe->lock);
812 io_worker_ref_put(wq);
813 return false;
814 }
815
816 refcount_set(&worker->ref, 1);
817 worker->wqe = wqe;
818 spin_lock_init(&worker->lock);
819 init_completion(&worker->ref_done);
820
821 if (index == IO_WQ_ACCT_BOUND)
822 worker->flags |= IO_WORKER_F_BOUND;
823
824 tsk = create_io_thread(io_wqe_worker, worker, wqe->node);
825 if (!IS_ERR(tsk)) {
826 io_init_new_worker(wqe, worker, tsk);
827 } else if (!io_should_retry_thread(PTR_ERR(tsk))) {
Qiang.zhang66e70be2021-09-09 19:58:22 +0800828 kfree(worker);
Jens Axboe3146cba2021-09-01 11:20:10 -0600829 goto fail;
830 } else {
831 INIT_WORK(&worker->work, io_workqueue_create);
832 schedule_work(&worker->work);
833 }
834
835 return true;
836}
837
Hillf Dantonc4068bf2020-09-26 21:26:55 +0800838/*
839 * Iterate the passed in list and call the specific function for each
840 * worker that isn't exiting
841 */
842static bool io_wq_for_each_worker(struct io_wqe *wqe,
843 bool (*func)(struct io_worker *, void *),
844 void *data)
845{
846 struct io_worker *worker;
847 bool ret = false;
848
849 list_for_each_entry_rcu(worker, &wqe->all_list, all_list) {
850 if (io_worker_get(worker)) {
851 /* no task if node is/was offline */
852 if (worker->task)
853 ret = func(worker, data);
854 io_worker_release(worker);
855 if (ret)
856 break;
857 }
858 }
859
860 return ret;
861}
862
863static bool io_wq_worker_wake(struct io_worker *worker, void *data)
864{
Jens Axboe46fe18b2021-03-04 12:39:36 -0700865 set_notify_signal(worker->task);
Hillf Dantonc4068bf2020-09-26 21:26:55 +0800866 wake_up_process(worker->task);
867 return false;
868}
869
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300870static void io_run_cancel(struct io_wq_work *work, struct io_wqe *wqe)
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300871{
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300872 struct io_wq *wq = wqe->wq;
873
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300874 do {
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300875 work->flags |= IO_WQ_WORK_CANCEL;
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000876 wq->do_work(work);
877 work = wq->free_work(work);
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300878 } while (work);
879}
880
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300881static void io_wqe_insert_work(struct io_wqe *wqe, struct io_wq_work *work)
882{
Jens Axboef95dc202021-08-31 13:57:32 -0600883 struct io_wqe_acct *acct = io_work_get_acct(wqe, work);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300884 unsigned int hash;
885 struct io_wq_work *tail;
886
887 if (!io_wq_is_hashed(work)) {
888append:
Jens Axboef95dc202021-08-31 13:57:32 -0600889 wq_list_add_tail(&work->list, &acct->work_list);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300890 return;
891 }
892
893 hash = io_get_work_hash(work);
894 tail = wqe->hash_tail[hash];
895 wqe->hash_tail[hash] = work;
896 if (!tail)
897 goto append;
898
Jens Axboef95dc202021-08-31 13:57:32 -0600899 wq_list_add_after(&work->list, &tail->list, &acct->work_list);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300900}
901
Pavel Begunkov713b9822021-09-08 10:09:29 +0100902static bool io_wq_work_match_item(struct io_wq_work *work, void *data)
903{
904 return work == data;
905}
906
Jens Axboe771b53d02019-10-22 10:25:58 -0600907static void io_wqe_enqueue(struct io_wqe *wqe, struct io_wq_work *work)
908{
Jens Axboec5def4a2019-11-07 11:41:16 -0700909 struct io_wqe_acct *acct = io_work_get_acct(wqe, work);
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600910 unsigned work_flags = work->flags;
911 bool do_create;
Jens Axboe771b53d02019-10-22 10:25:58 -0600912
Jens Axboe991468d2021-07-23 11:53:54 -0600913 /*
914 * If io-wq is exiting for this task, or if the request has explicitly
915 * been marked as one that should not get executed, cancel it here.
916 */
917 if (test_bit(IO_WQ_BIT_EXIT, &wqe->wq->state) ||
918 (work->flags & IO_WQ_WORK_CANCEL)) {
yangerkun70e35122021-03-09 11:04:10 +0800919 io_run_cancel(work, wqe);
Jens Axboe4fb6ac32021-02-25 10:17:09 -0700920 return;
921 }
922
Jens Axboea9a4aa92021-08-30 06:33:08 -0600923 raw_spin_lock(&wqe->lock);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300924 io_wqe_insert_work(wqe, work);
Jens Axboef95dc202021-08-31 13:57:32 -0600925 clear_bit(IO_ACCT_STALLED_BIT, &acct->flags);
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600926
927 rcu_read_lock();
Jens Axboef95dc202021-08-31 13:57:32 -0600928 do_create = !io_wqe_activate_free_worker(wqe, acct);
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600929 rcu_read_unlock();
930
Jens Axboea9a4aa92021-08-30 06:33:08 -0600931 raw_spin_unlock(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600932
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600933 if (do_create && ((work_flags & IO_WQ_WORK_CONCURRENT) ||
Jens Axboe3146cba2021-09-01 11:20:10 -0600934 !atomic_read(&acct->nr_running))) {
935 bool did_create;
936
937 did_create = io_wqe_create_worker(wqe, acct);
Pavel Begunkov713b9822021-09-08 10:09:29 +0100938 if (likely(did_create))
939 return;
940
941 raw_spin_lock(&wqe->lock);
942 /* fatal condition, failed to create the first worker */
943 if (!acct->nr_workers) {
944 struct io_cb_cancel_data match = {
945 .fn = io_wq_work_match_item,
946 .data = work,
947 .cancel_all = false,
948 };
949
950 if (io_acct_cancel_pending_work(wqe, acct, &match))
951 raw_spin_lock(&wqe->lock);
Jens Axboe3146cba2021-09-01 11:20:10 -0600952 }
Pavel Begunkov713b9822021-09-08 10:09:29 +0100953 raw_spin_unlock(&wqe->lock);
Jens Axboe3146cba2021-09-01 11:20:10 -0600954 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600955}
956
957void io_wq_enqueue(struct io_wq *wq, struct io_wq_work *work)
958{
959 struct io_wqe *wqe = wq->wqes[numa_node_id()];
960
961 io_wqe_enqueue(wqe, work);
962}
963
964/*
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300965 * Work items that hash to the same value will not be done in parallel.
966 * Used to limit concurrent writes, generally hashed by inode.
Jens Axboe771b53d02019-10-22 10:25:58 -0600967 */
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300968void io_wq_hash_work(struct io_wq_work *work, void *val)
Jens Axboe771b53d02019-10-22 10:25:58 -0600969{
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300970 unsigned int bit;
Jens Axboe771b53d02019-10-22 10:25:58 -0600971
972 bit = hash_ptr(val, IO_WQ_HASH_ORDER);
973 work->flags |= (IO_WQ_WORK_HASHED | (bit << IO_WQ_HASH_SHIFT));
Jens Axboe771b53d02019-10-22 10:25:58 -0600974}
975
Pavel Begunkov2293b412020-03-07 01:15:39 +0300976static bool io_wq_worker_cancel(struct io_worker *worker, void *data)
Jens Axboe62755e32019-10-28 21:49:21 -0600977{
Pavel Begunkov2293b412020-03-07 01:15:39 +0300978 struct io_cb_cancel_data *match = data;
Jens Axboe62755e32019-10-28 21:49:21 -0600979
980 /*
981 * Hold the lock to avoid ->cur_work going out of scope, caller
Jens Axboe36c2f922019-11-13 09:43:34 -0700982 * may dereference the passed in work.
Jens Axboe62755e32019-10-28 21:49:21 -0600983 */
Jens Axboea9a4aa92021-08-30 06:33:08 -0600984 spin_lock(&worker->lock);
Jens Axboe62755e32019-10-28 21:49:21 -0600985 if (worker->cur_work &&
Pavel Begunkov2293b412020-03-07 01:15:39 +0300986 match->fn(worker->cur_work, match->data)) {
Jens Axboe3bfe6102021-02-16 14:15:30 -0700987 set_notify_signal(worker->task);
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300988 match->nr_running++;
Jens Axboe771b53d02019-10-22 10:25:58 -0600989 }
Jens Axboea9a4aa92021-08-30 06:33:08 -0600990 spin_unlock(&worker->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600991
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300992 return match->nr_running && !match->cancel_all;
Jens Axboe771b53d02019-10-22 10:25:58 -0600993}
994
Pavel Begunkov204361a2020-08-23 20:33:10 +0300995static inline void io_wqe_remove_pending(struct io_wqe *wqe,
996 struct io_wq_work *work,
997 struct io_wq_work_node *prev)
998{
Jens Axboef95dc202021-08-31 13:57:32 -0600999 struct io_wqe_acct *acct = io_work_get_acct(wqe, work);
Pavel Begunkov204361a2020-08-23 20:33:10 +03001000 unsigned int hash = io_get_work_hash(work);
1001 struct io_wq_work *prev_work = NULL;
1002
1003 if (io_wq_is_hashed(work) && work == wqe->hash_tail[hash]) {
1004 if (prev)
1005 prev_work = container_of(prev, struct io_wq_work, list);
1006 if (prev_work && io_get_work_hash(prev_work) == hash)
1007 wqe->hash_tail[hash] = prev_work;
1008 else
1009 wqe->hash_tail[hash] = NULL;
1010 }
Jens Axboef95dc202021-08-31 13:57:32 -06001011 wq_list_del(&acct->work_list, &work->list, prev);
Pavel Begunkov204361a2020-08-23 20:33:10 +03001012}
1013
Jens Axboe3146cba2021-09-01 11:20:10 -06001014static bool io_acct_cancel_pending_work(struct io_wqe *wqe,
1015 struct io_wqe_acct *acct,
1016 struct io_cb_cancel_data *match)
1017 __releases(wqe->lock)
Jens Axboe771b53d02019-10-22 10:25:58 -06001018{
Jens Axboe6206f0e2019-11-26 11:59:32 -07001019 struct io_wq_work_node *node, *prev;
Jens Axboe771b53d02019-10-22 10:25:58 -06001020 struct io_wq_work *work;
Jens Axboe771b53d02019-10-22 10:25:58 -06001021
Jens Axboe3146cba2021-09-01 11:20:10 -06001022 wq_list_for_each(node, prev, &acct->work_list) {
1023 work = container_of(node, struct io_wq_work, list);
1024 if (!match->fn(work, match->data))
1025 continue;
1026 io_wqe_remove_pending(wqe, work, prev);
1027 raw_spin_unlock(&wqe->lock);
1028 io_run_cancel(work, wqe);
1029 match->nr_pending++;
1030 /* not safe to continue after unlock */
1031 return true;
1032 }
1033
1034 return false;
1035}
1036
1037static void io_wqe_cancel_pending_work(struct io_wqe *wqe,
1038 struct io_cb_cancel_data *match)
1039{
1040 int i;
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001041retry:
Jens Axboea9a4aa92021-08-30 06:33:08 -06001042 raw_spin_lock(&wqe->lock);
Jens Axboef95dc202021-08-31 13:57:32 -06001043 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1044 struct io_wqe_acct *acct = io_get_acct(wqe, i == 0);
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001045
Jens Axboe3146cba2021-09-01 11:20:10 -06001046 if (io_acct_cancel_pending_work(wqe, acct, match)) {
1047 if (match->cancel_all)
1048 goto retry;
1049 return;
Jens Axboef95dc202021-08-31 13:57:32 -06001050 }
Jens Axboe771b53d02019-10-22 10:25:58 -06001051 }
Jens Axboea9a4aa92021-08-30 06:33:08 -06001052 raw_spin_unlock(&wqe->lock);
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001053}
Jens Axboe771b53d02019-10-22 10:25:58 -06001054
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001055static void io_wqe_cancel_running_work(struct io_wqe *wqe,
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001056 struct io_cb_cancel_data *match)
1057{
Jens Axboe771b53d02019-10-22 10:25:58 -06001058 rcu_read_lock();
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001059 io_wq_for_each_worker(wqe, io_wq_worker_cancel, match);
Jens Axboe771b53d02019-10-22 10:25:58 -06001060 rcu_read_unlock();
Jens Axboe771b53d02019-10-22 10:25:58 -06001061}
1062
Pavel Begunkov2293b412020-03-07 01:15:39 +03001063enum io_wq_cancel io_wq_cancel_cb(struct io_wq *wq, work_cancel_fn *cancel,
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001064 void *data, bool cancel_all)
Pavel Begunkov2293b412020-03-07 01:15:39 +03001065{
1066 struct io_cb_cancel_data match = {
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001067 .fn = cancel,
1068 .data = data,
1069 .cancel_all = cancel_all,
Pavel Begunkov2293b412020-03-07 01:15:39 +03001070 };
Pavel Begunkov2293b412020-03-07 01:15:39 +03001071 int node;
1072
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001073 /*
1074 * First check pending list, if we're lucky we can just remove it
1075 * from there. CANCEL_OK means that the work is returned as-new,
1076 * no completion will be posted for it.
1077 */
Pavel Begunkov2293b412020-03-07 01:15:39 +03001078 for_each_node(node) {
1079 struct io_wqe *wqe = wq->wqes[node];
1080
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001081 io_wqe_cancel_pending_work(wqe, &match);
1082 if (match.nr_pending && !match.cancel_all)
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001083 return IO_WQ_CANCEL_OK;
Pavel Begunkov2293b412020-03-07 01:15:39 +03001084 }
1085
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001086 /*
1087 * Now check if a free (going busy) or busy worker has the work
1088 * currently running. If we find it there, we'll return CANCEL_RUNNING
1089 * as an indication that we attempt to signal cancellation. The
1090 * completion will run normally in this case.
1091 */
1092 for_each_node(node) {
1093 struct io_wqe *wqe = wq->wqes[node];
1094
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001095 io_wqe_cancel_running_work(wqe, &match);
1096 if (match.nr_running && !match.cancel_all)
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001097 return IO_WQ_CANCEL_RUNNING;
1098 }
1099
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001100 if (match.nr_running)
1101 return IO_WQ_CANCEL_RUNNING;
1102 if (match.nr_pending)
1103 return IO_WQ_CANCEL_OK;
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001104 return IO_WQ_CANCEL_NOTFOUND;
Pavel Begunkov2293b412020-03-07 01:15:39 +03001105}
1106
Jens Axboee9418942021-02-19 12:33:30 -07001107static int io_wqe_hash_wake(struct wait_queue_entry *wait, unsigned mode,
1108 int sync, void *key)
1109{
1110 struct io_wqe *wqe = container_of(wait, struct io_wqe, wait);
Jens Axboef95dc202021-08-31 13:57:32 -06001111 int i;
Jens Axboee9418942021-02-19 12:33:30 -07001112
1113 list_del_init(&wait->entry);
1114
1115 rcu_read_lock();
Jens Axboef95dc202021-08-31 13:57:32 -06001116 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1117 struct io_wqe_acct *acct = &wqe->acct[i];
1118
1119 if (test_and_clear_bit(IO_ACCT_STALLED_BIT, &acct->flags))
1120 io_wqe_activate_free_worker(wqe, acct);
1121 }
Jens Axboee9418942021-02-19 12:33:30 -07001122 rcu_read_unlock();
Jens Axboee9418942021-02-19 12:33:30 -07001123 return 1;
1124}
1125
Jens Axboe576a3472019-11-25 08:49:20 -07001126struct io_wq *io_wq_create(unsigned bounded, struct io_wq_data *data)
Jens Axboe771b53d02019-10-22 10:25:58 -06001127{
Jens Axboef95dc202021-08-31 13:57:32 -06001128 int ret, node, i;
Jens Axboe771b53d02019-10-22 10:25:58 -06001129 struct io_wq *wq;
1130
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +03001131 if (WARN_ON_ONCE(!data->free_work || !data->do_work))
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001132 return ERR_PTR(-EINVAL);
Pavel Begunkove6ab8992021-06-17 18:13:59 +01001133 if (WARN_ON_ONCE(!bounded))
1134 return ERR_PTR(-EINVAL);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001135
Pavel Begunkovc7f405d2021-06-14 02:36:12 +01001136 wq = kzalloc(struct_size(wq, wqes, nr_node_ids), GFP_KERNEL);
Jens Axboe771b53d02019-10-22 10:25:58 -06001137 if (!wq)
1138 return ERR_PTR(-ENOMEM);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001139 ret = cpuhp_state_add_instance_nocalls(io_wq_online, &wq->cpuhp_node);
1140 if (ret)
Pavel Begunkovc7f405d2021-06-14 02:36:12 +01001141 goto err_wq;
Jens Axboe771b53d02019-10-22 10:25:58 -06001142
Jens Axboee9418942021-02-19 12:33:30 -07001143 refcount_inc(&data->hash->refs);
1144 wq->hash = data->hash;
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001145 wq->free_work = data->free_work;
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +03001146 wq->do_work = data->do_work;
Jens Axboe7d723062019-11-12 22:31:31 -07001147
Jens Axboe43c01fb2020-10-22 09:02:50 -06001148 ret = -ENOMEM;
Jann Horn3fc50ab2019-11-26 19:10:20 +01001149 for_each_node(node) {
Jens Axboe771b53d02019-10-22 10:25:58 -06001150 struct io_wqe *wqe;
Jens Axboe75634392020-02-11 06:30:06 -07001151 int alloc_node = node;
Jens Axboe771b53d02019-10-22 10:25:58 -06001152
Jens Axboe75634392020-02-11 06:30:06 -07001153 if (!node_online(alloc_node))
1154 alloc_node = NUMA_NO_NODE;
1155 wqe = kzalloc_node(sizeof(struct io_wqe), GFP_KERNEL, alloc_node);
Jens Axboe771b53d02019-10-22 10:25:58 -06001156 if (!wqe)
Jann Horn3fc50ab2019-11-26 19:10:20 +01001157 goto err;
Jens Axboe0e034962021-06-17 10:08:11 -06001158 if (!alloc_cpumask_var(&wqe->cpu_mask, GFP_KERNEL))
1159 goto err;
1160 cpumask_copy(wqe->cpu_mask, cpumask_of_node(node));
Jann Horn3fc50ab2019-11-26 19:10:20 +01001161 wq->wqes[node] = wqe;
Jens Axboe75634392020-02-11 06:30:06 -07001162 wqe->node = alloc_node;
Jens Axboec5def4a2019-11-07 11:41:16 -07001163 wqe->acct[IO_WQ_ACCT_BOUND].max_workers = bounded;
Jens Axboe728f13e2021-02-21 16:02:53 -07001164 wqe->acct[IO_WQ_ACCT_UNBOUND].max_workers =
Jens Axboec5def4a2019-11-07 11:41:16 -07001165 task_rlimit(current, RLIMIT_NPROC);
Jens Axboee9418942021-02-19 12:33:30 -07001166 INIT_LIST_HEAD(&wqe->wait.entry);
Jens Axboef95dc202021-08-31 13:57:32 -06001167 wqe->wait.func = io_wqe_hash_wake;
1168 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1169 struct io_wqe_acct *acct = &wqe->acct[i];
1170
1171 acct->index = i;
1172 atomic_set(&acct->nr_running, 0);
1173 INIT_WQ_LIST(&acct->work_list);
1174 }
Jens Axboe771b53d02019-10-22 10:25:58 -06001175 wqe->wq = wq;
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +02001176 raw_spin_lock_init(&wqe->lock);
Jens Axboe021d1cd2019-11-14 08:00:41 -07001177 INIT_HLIST_NULLS_HEAD(&wqe->free_list, 0);
Jens Axboee61df662019-11-13 13:54:49 -07001178 INIT_LIST_HEAD(&wqe->all_list);
Jens Axboe771b53d02019-10-22 10:25:58 -06001179 }
1180
Jens Axboe685fe7f2021-03-08 09:37:51 -07001181 wq->task = get_task_struct(data->task);
Jens Axboe685fe7f2021-03-08 09:37:51 -07001182 atomic_set(&wq->worker_refs, 1);
1183 init_completion(&wq->worker_done);
1184 return wq;
Jens Axboeb60fda62019-11-19 08:37:07 -07001185err:
Jens Axboedc7bbc92021-03-01 09:09:56 -07001186 io_wq_put_hash(data->hash);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001187 cpuhp_state_remove_instance_nocalls(io_wq_online, &wq->cpuhp_node);
Jens Axboe0e034962021-06-17 10:08:11 -06001188 for_each_node(node) {
1189 if (!wq->wqes[node])
1190 continue;
1191 free_cpumask_var(wq->wqes[node]->cpu_mask);
Jann Horn3fc50ab2019-11-26 19:10:20 +01001192 kfree(wq->wqes[node]);
Jens Axboe0e034962021-06-17 10:08:11 -06001193 }
Jens Axboe43c01fb2020-10-22 09:02:50 -06001194err_wq:
Jens Axboeb60fda62019-11-19 08:37:07 -07001195 kfree(wq);
Jens Axboe771b53d02019-10-22 10:25:58 -06001196 return ERR_PTR(ret);
1197}
1198
Jens Axboec80ca472021-04-01 19:57:07 -06001199static bool io_task_work_match(struct callback_head *cb, void *data)
1200{
Jens Axboed3e9f732021-08-04 08:37:25 -06001201 struct io_worker *worker;
Jens Axboec80ca472021-04-01 19:57:07 -06001202
Jens Axboe3b33e3f2021-09-08 19:57:26 -06001203 if (cb->func != create_worker_cb && cb->func != create_worker_cont)
Jens Axboec80ca472021-04-01 19:57:07 -06001204 return false;
Jens Axboed3e9f732021-08-04 08:37:25 -06001205 worker = container_of(cb, struct io_worker, create_work);
1206 return worker->wqe->wq == data;
Jens Axboec80ca472021-04-01 19:57:07 -06001207}
1208
Pavel Begunkov17a91052021-05-23 15:48:39 +01001209void io_wq_exit_start(struct io_wq *wq)
1210{
1211 set_bit(IO_WQ_BIT_EXIT, &wq->state);
1212}
1213
Jens Axboe71a85382021-12-10 08:29:30 -07001214static void io_wq_cancel_tw_create(struct io_wq *wq)
Jens Axboeafcc4012021-02-26 13:48:19 -07001215{
Jens Axboe685fe7f2021-03-08 09:37:51 -07001216 struct callback_head *cb;
Jens Axboe685fe7f2021-03-08 09:37:51 -07001217
Jens Axboec80ca472021-04-01 19:57:07 -06001218 while ((cb = task_work_cancel_match(wq->task, io_task_work_match, wq)) != NULL) {
Jens Axboed3e9f732021-08-04 08:37:25 -06001219 struct io_worker *worker;
Jens Axboe685fe7f2021-03-08 09:37:51 -07001220
Jens Axboed3e9f732021-08-04 08:37:25 -06001221 worker = container_of(cb, struct io_worker, create_work);
Pavel Begunkov1d5f5ea2021-10-29 13:11:33 +01001222 io_worker_cancel_cb(worker);
Jens Axboeafcc4012021-02-26 13:48:19 -07001223 }
Jens Axboe71a85382021-12-10 08:29:30 -07001224}
1225
1226static void io_wq_exit_workers(struct io_wq *wq)
1227{
1228 int node;
1229
1230 if (!wq->task)
1231 return;
1232
1233 io_wq_cancel_tw_create(wq);
Jens Axboe685fe7f2021-03-08 09:37:51 -07001234
1235 rcu_read_lock();
1236 for_each_node(node) {
1237 struct io_wqe *wqe = wq->wqes[node];
1238
1239 io_wq_for_each_worker(wqe, io_wq_worker_wake, NULL);
Jens Axboe685fe7f2021-03-08 09:37:51 -07001240 }
1241 rcu_read_unlock();
1242 io_worker_ref_put(wq);
1243 wait_for_completion(&wq->worker_done);
Zqiang3743c172021-05-26 13:08:26 +08001244
1245 for_each_node(node) {
1246 spin_lock_irq(&wq->hash->wait.lock);
1247 list_del_init(&wq->wqes[node]->wait.entry);
1248 spin_unlock_irq(&wq->hash->wait.lock);
1249 }
Jens Axboe685fe7f2021-03-08 09:37:51 -07001250 put_task_struct(wq->task);
1251 wq->task = NULL;
Jens Axboeafcc4012021-02-26 13:48:19 -07001252}
1253
Jens Axboe4fb6ac32021-02-25 10:17:09 -07001254static void io_wq_destroy(struct io_wq *wq)
Jens Axboe771b53d02019-10-22 10:25:58 -06001255{
Jann Horn3fc50ab2019-11-26 19:10:20 +01001256 int node;
Jens Axboe771b53d02019-10-22 10:25:58 -06001257
Jens Axboe43c01fb2020-10-22 09:02:50 -06001258 cpuhp_state_remove_instance_nocalls(io_wq_online, &wq->cpuhp_node);
1259
Jens Axboee9418942021-02-19 12:33:30 -07001260 for_each_node(node) {
1261 struct io_wqe *wqe = wq->wqes[node];
Jens Axboef5d2d232021-03-25 10:16:12 -06001262 struct io_cb_cancel_data match = {
1263 .fn = io_wq_work_match_all,
1264 .cancel_all = true,
1265 };
1266 io_wqe_cancel_pending_work(wqe, &match);
Jens Axboe0e034962021-06-17 10:08:11 -06001267 free_cpumask_var(wqe->cpu_mask);
Jens Axboee9418942021-02-19 12:33:30 -07001268 kfree(wqe);
1269 }
Jens Axboee9418942021-02-19 12:33:30 -07001270 io_wq_put_hash(wq->hash);
Jens Axboe771b53d02019-10-22 10:25:58 -06001271 kfree(wq);
Jens Axboe4fb6ac32021-02-25 10:17:09 -07001272}
1273
Jens Axboeafcc4012021-02-26 13:48:19 -07001274void io_wq_put_and_exit(struct io_wq *wq)
1275{
Pavel Begunkov17a91052021-05-23 15:48:39 +01001276 WARN_ON_ONCE(!test_bit(IO_WQ_BIT_EXIT, &wq->state));
1277
Jens Axboe685fe7f2021-03-08 09:37:51 -07001278 io_wq_exit_workers(wq);
Pavel Begunkov382cb032021-06-14 02:36:13 +01001279 io_wq_destroy(wq);
Jens Axboeafcc4012021-02-26 13:48:19 -07001280}
1281
Jens Axboe0e034962021-06-17 10:08:11 -06001282struct online_data {
1283 unsigned int cpu;
1284 bool online;
1285};
1286
Jens Axboe43c01fb2020-10-22 09:02:50 -06001287static bool io_wq_worker_affinity(struct io_worker *worker, void *data)
1288{
Jens Axboe0e034962021-06-17 10:08:11 -06001289 struct online_data *od = data;
Jens Axboe43c01fb2020-10-22 09:02:50 -06001290
Jens Axboe0e034962021-06-17 10:08:11 -06001291 if (od->online)
1292 cpumask_set_cpu(od->cpu, worker->wqe->cpu_mask);
1293 else
1294 cpumask_clear_cpu(od->cpu, worker->wqe->cpu_mask);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001295 return false;
1296}
1297
Jens Axboe0e034962021-06-17 10:08:11 -06001298static int __io_wq_cpu_online(struct io_wq *wq, unsigned int cpu, bool online)
1299{
1300 struct online_data od = {
1301 .cpu = cpu,
1302 .online = online
1303 };
1304 int i;
1305
1306 rcu_read_lock();
1307 for_each_node(i)
1308 io_wq_for_each_worker(wq->wqes[i], io_wq_worker_affinity, &od);
1309 rcu_read_unlock();
1310 return 0;
1311}
1312
Jens Axboe43c01fb2020-10-22 09:02:50 -06001313static int io_wq_cpu_online(unsigned int cpu, struct hlist_node *node)
1314{
1315 struct io_wq *wq = hlist_entry_safe(node, struct io_wq, cpuhp_node);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001316
Jens Axboe0e034962021-06-17 10:08:11 -06001317 return __io_wq_cpu_online(wq, cpu, true);
1318}
1319
1320static int io_wq_cpu_offline(unsigned int cpu, struct hlist_node *node)
1321{
1322 struct io_wq *wq = hlist_entry_safe(node, struct io_wq, cpuhp_node);
1323
1324 return __io_wq_cpu_online(wq, cpu, false);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001325}
1326
Jens Axboefe764212021-06-17 10:19:54 -06001327int io_wq_cpu_affinity(struct io_wq *wq, cpumask_var_t mask)
1328{
1329 int i;
1330
1331 rcu_read_lock();
1332 for_each_node(i) {
1333 struct io_wqe *wqe = wq->wqes[i];
1334
1335 if (mask)
1336 cpumask_copy(wqe->cpu_mask, mask);
1337 else
1338 cpumask_copy(wqe->cpu_mask, cpumask_of_node(i));
1339 }
1340 rcu_read_unlock();
1341 return 0;
1342}
1343
Jens Axboe2e480052021-08-27 11:33:19 -06001344/*
1345 * Set max number of unbounded workers, returns old value. If new_count is 0,
1346 * then just return the old value.
1347 */
1348int io_wq_max_workers(struct io_wq *wq, int *new_count)
1349{
Beld Zhang71c9ce22021-11-02 12:32:08 -06001350 int prev[IO_WQ_ACCT_NR];
1351 bool first_node = true;
1352 int i, node;
Jens Axboe2e480052021-08-27 11:33:19 -06001353
Eugene Syromiatnikovdd47c102021-09-13 17:44:15 +02001354 BUILD_BUG_ON((int) IO_WQ_ACCT_BOUND != (int) IO_WQ_BOUND);
1355 BUILD_BUG_ON((int) IO_WQ_ACCT_UNBOUND != (int) IO_WQ_UNBOUND);
1356 BUILD_BUG_ON((int) IO_WQ_ACCT_NR != 2);
1357
Jens Axboe2e480052021-08-27 11:33:19 -06001358 for (i = 0; i < 2; i++) {
1359 if (new_count[i] > task_rlimit(current, RLIMIT_NPROC))
1360 new_count[i] = task_rlimit(current, RLIMIT_NPROC);
1361 }
1362
Beld Zhang71c9ce22021-11-02 12:32:08 -06001363 for (i = 0; i < IO_WQ_ACCT_NR; i++)
1364 prev[i] = 0;
1365
Jens Axboe2e480052021-08-27 11:33:19 -06001366 rcu_read_lock();
1367 for_each_node(node) {
Pavel Begunkovbc369922021-10-19 20:31:26 +01001368 struct io_wqe *wqe = wq->wqes[node];
Jens Axboe2e480052021-08-27 11:33:19 -06001369 struct io_wqe_acct *acct;
1370
Pavel Begunkovbc369922021-10-19 20:31:26 +01001371 raw_spin_lock(&wqe->lock);
Jens Axboef95dc202021-08-31 13:57:32 -06001372 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
Pavel Begunkovbc369922021-10-19 20:31:26 +01001373 acct = &wqe->acct[i];
Beld Zhang71c9ce22021-11-02 12:32:08 -06001374 if (first_node)
1375 prev[i] = max_t(int, acct->max_workers, prev[i]);
Jens Axboe2e480052021-08-27 11:33:19 -06001376 if (new_count[i])
1377 acct->max_workers = new_count[i];
Jens Axboe2e480052021-08-27 11:33:19 -06001378 }
Pavel Begunkovbc369922021-10-19 20:31:26 +01001379 raw_spin_unlock(&wqe->lock);
Beld Zhang71c9ce22021-11-02 12:32:08 -06001380 first_node = false;
Jens Axboe2e480052021-08-27 11:33:19 -06001381 }
1382 rcu_read_unlock();
Beld Zhang71c9ce22021-11-02 12:32:08 -06001383
1384 for (i = 0; i < IO_WQ_ACCT_NR; i++)
1385 new_count[i] = prev[i];
1386
Jens Axboe2e480052021-08-27 11:33:19 -06001387 return 0;
1388}
1389
Jens Axboe43c01fb2020-10-22 09:02:50 -06001390static __init int io_wq_init(void)
1391{
1392 int ret;
1393
1394 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "io-wq/online",
Jens Axboe0e034962021-06-17 10:08:11 -06001395 io_wq_cpu_online, io_wq_cpu_offline);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001396 if (ret < 0)
1397 return ret;
1398 io_wq_online = ret;
1399 return 0;
1400}
1401subsys_initcall(io_wq_init);