blob: 88202de519f6d1755103f435ae6b2eea14e55adb [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 Axboef0127252021-03-03 15:47:04 -0700145
Jens Axboe771b53d02019-10-22 10:25:58 -0600146static bool io_worker_get(struct io_worker *worker)
147{
148 return refcount_inc_not_zero(&worker->ref);
149}
150
151static void io_worker_release(struct io_worker *worker)
152{
153 if (refcount_dec_and_test(&worker->ref))
Jens Axboeeb2de942021-02-23 19:59:06 -0700154 complete(&worker->ref_done);
Jens Axboe771b53d02019-10-22 10:25:58 -0600155}
156
Pavel Begunkov8418f222021-03-22 01:58:28 +0000157static inline struct io_wqe_acct *io_get_acct(struct io_wqe *wqe, bool bound)
158{
159 return &wqe->acct[bound ? IO_WQ_ACCT_BOUND : IO_WQ_ACCT_UNBOUND];
160}
161
Jens Axboec5def4a2019-11-07 11:41:16 -0700162static inline struct io_wqe_acct *io_work_get_acct(struct io_wqe *wqe,
163 struct io_wq_work *work)
164{
Pavel Begunkov8418f222021-03-22 01:58:28 +0000165 return io_get_acct(wqe, !(work->flags & IO_WQ_WORK_UNBOUND));
Jens Axboec5def4a2019-11-07 11:41:16 -0700166}
167
Jens Axboe958234d2021-02-17 09:00:57 -0700168static inline struct io_wqe_acct *io_wqe_get_acct(struct io_worker *worker)
Jens Axboec5def4a2019-11-07 11:41:16 -0700169{
Pavel Begunkov8418f222021-03-22 01:58:28 +0000170 return io_get_acct(worker->wqe, worker->flags & IO_WORKER_F_BOUND);
Jens Axboec5def4a2019-11-07 11:41:16 -0700171}
172
Jens Axboe685fe7f2021-03-08 09:37:51 -0700173static void io_worker_ref_put(struct io_wq *wq)
174{
175 if (atomic_dec_and_test(&wq->worker_refs))
176 complete(&wq->worker_done);
177}
178
Pavel Begunkov1d5f5ea2021-10-29 13:11:33 +0100179static void io_worker_cancel_cb(struct io_worker *worker)
180{
181 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
182 struct io_wqe *wqe = worker->wqe;
183 struct io_wq *wq = wqe->wq;
184
185 atomic_dec(&acct->nr_running);
186 raw_spin_lock(&worker->wqe->lock);
187 acct->nr_workers--;
188 raw_spin_unlock(&worker->wqe->lock);
189 io_worker_ref_put(wq);
190 clear_bit_unlock(0, &worker->create_state);
191 io_worker_release(worker);
192}
193
194static bool io_task_worker_match(struct callback_head *cb, void *data)
195{
196 struct io_worker *worker;
197
198 if (cb->func != create_worker_cb)
199 return false;
200 worker = container_of(cb, struct io_worker, create_work);
201 return worker == data;
202}
203
Jens Axboe771b53d02019-10-22 10:25:58 -0600204static void io_worker_exit(struct io_worker *worker)
205{
206 struct io_wqe *wqe = worker->wqe;
Pavel Begunkov1d5f5ea2021-10-29 13:11:33 +0100207 struct io_wq *wq = wqe->wq;
Jens Axboe771b53d02019-10-22 10:25:58 -0600208
Pavel Begunkov1d5f5ea2021-10-29 13:11:33 +0100209 while (1) {
210 struct callback_head *cb = task_work_cancel_match(wq->task,
211 io_task_worker_match, worker);
212
213 if (!cb)
214 break;
215 io_worker_cancel_cb(worker);
216 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600217
Pavel Begunkovc907e522021-10-23 12:13:55 +0100218 io_worker_release(worker);
Jens Axboeeb2de942021-02-23 19:59:06 -0700219 wait_for_completion(&worker->ref_done);
Jens Axboe771b53d02019-10-22 10:25:58 -0600220
Jens Axboea9a4aa92021-08-30 06:33:08 -0600221 raw_spin_lock(&wqe->lock);
Jens Axboe83d6c392021-08-03 09:14:35 -0600222 if (worker->flags & IO_WORKER_F_FREE)
Jens Axboebf1daa42021-02-16 18:00:55 -0700223 hlist_nulls_del_rcu(&worker->nulls_node);
Jens Axboee61df662019-11-13 13:54:49 -0700224 list_del_rcu(&worker->all_list);
Jens Axboe83d6c392021-08-03 09:14:35 -0600225 preempt_disable();
226 io_wqe_dec_running(worker);
227 worker->flags = 0;
228 current->flags &= ~PF_IO_WORKER;
229 preempt_enable();
Jens Axboea9a4aa92021-08-30 06:33:08 -0600230 raw_spin_unlock(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600231
YueHaibing364b05f2019-11-02 15:55:01 +0800232 kfree_rcu(worker, rcu);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700233 io_worker_ref_put(wqe->wq);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700234 do_exit(0);
Jens Axboe771b53d02019-10-22 10:25:58 -0600235}
236
Jens Axboef95dc202021-08-31 13:57:32 -0600237static inline bool io_acct_run_queue(struct io_wqe_acct *acct)
Jens Axboec5def4a2019-11-07 11:41:16 -0700238{
Jens Axboef95dc202021-08-31 13:57:32 -0600239 if (!wq_list_empty(&acct->work_list) &&
240 !test_bit(IO_ACCT_STALLED_BIT, &acct->flags))
Jens Axboec5def4a2019-11-07 11:41:16 -0700241 return true;
242 return false;
243}
244
245/*
246 * Check head of free list for an available worker. If one isn't available,
Jens Axboe685fe7f2021-03-08 09:37:51 -0700247 * caller must create one.
Jens Axboec5def4a2019-11-07 11:41:16 -0700248 */
Jens Axboef95dc202021-08-31 13:57:32 -0600249static bool io_wqe_activate_free_worker(struct io_wqe *wqe,
250 struct io_wqe_acct *acct)
Jens Axboec5def4a2019-11-07 11:41:16 -0700251 __must_hold(RCU)
252{
253 struct hlist_nulls_node *n;
254 struct io_worker *worker;
255
Jens Axboe83d6c392021-08-03 09:14:35 -0600256 /*
257 * Iterate free_list and see if we can find an idle worker to
258 * activate. If a given worker is on the free_list but in the process
259 * of exiting, keep trying.
260 */
261 hlist_nulls_for_each_entry_rcu(worker, n, &wqe->free_list, nulls_node) {
262 if (!io_worker_get(worker))
263 continue;
Jens Axboef95dc202021-08-31 13:57:32 -0600264 if (io_wqe_get_acct(worker) != acct) {
265 io_worker_release(worker);
266 continue;
267 }
Jens Axboe83d6c392021-08-03 09:14:35 -0600268 if (wake_up_process(worker->task)) {
269 io_worker_release(worker);
270 return true;
271 }
Jens Axboec5def4a2019-11-07 11:41:16 -0700272 io_worker_release(worker);
Jens Axboec5def4a2019-11-07 11:41:16 -0700273 }
274
275 return false;
276}
277
278/*
279 * 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 -0700280 * below the max number of workers, create one.
Jens Axboec5def4a2019-11-07 11:41:16 -0700281 */
Jens Axboe3146cba2021-09-01 11:20:10 -0600282static bool io_wqe_create_worker(struct io_wqe *wqe, struct io_wqe_acct *acct)
Jens Axboec5def4a2019-11-07 11:41:16 -0700283{
Jens Axboec5def4a2019-11-07 11:41:16 -0700284 /*
285 * Most likely an attempt to queue unbounded work on an io_wq that
286 * wasn't setup with any unbounded workers.
287 */
Pavel Begunkove6ab8992021-06-17 18:13:59 +0100288 if (unlikely(!acct->max_workers))
289 pr_warn_once("io-wq is not configured for unbound workers");
Jens Axboec5def4a2019-11-07 11:41:16 -0700290
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600291 raw_spin_lock(&wqe->lock);
Pavel Begunkovbc369922021-10-19 20:31:26 +0100292 if (acct->nr_workers >= acct->max_workers) {
Hao Xu7a842fb2021-09-12 03:40:50 +0800293 raw_spin_unlock(&wqe->lock);
294 return true;
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600295 }
Hao Xu7a842fb2021-09-12 03:40:50 +0800296 acct->nr_workers++;
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600297 raw_spin_unlock(&wqe->lock);
Hao Xu7a842fb2021-09-12 03:40:50 +0800298 atomic_inc(&acct->nr_running);
299 atomic_inc(&wqe->wq->worker_refs);
300 return create_io_worker(wqe->wq, wqe, acct->index);
Jens Axboec5def4a2019-11-07 11:41:16 -0700301}
302
Jens Axboe958234d2021-02-17 09:00:57 -0700303static void io_wqe_inc_running(struct io_worker *worker)
Jens Axboec5def4a2019-11-07 11:41:16 -0700304{
Jens Axboe958234d2021-02-17 09:00:57 -0700305 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
Jens Axboec5def4a2019-11-07 11:41:16 -0700306
307 atomic_inc(&acct->nr_running);
308}
309
Jens Axboe685fe7f2021-03-08 09:37:51 -0700310static void create_worker_cb(struct callback_head *cb)
311{
Jens Axboed3e9f732021-08-04 08:37:25 -0600312 struct io_worker *worker;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700313 struct io_wq *wq;
Hao Xu21698272021-08-05 18:05:38 +0800314 struct io_wqe *wqe;
315 struct io_wqe_acct *acct;
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600316 bool do_create = false;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700317
Jens Axboed3e9f732021-08-04 08:37:25 -0600318 worker = container_of(cb, struct io_worker, create_work);
319 wqe = worker->wqe;
Hao Xu21698272021-08-05 18:05:38 +0800320 wq = wqe->wq;
Jens Axboed3e9f732021-08-04 08:37:25 -0600321 acct = &wqe->acct[worker->create_index];
Jens Axboea9a4aa92021-08-30 06:33:08 -0600322 raw_spin_lock(&wqe->lock);
Hao Xu49e7f0c2021-08-08 21:54:33 +0800323 if (acct->nr_workers < acct->max_workers) {
Hao Xu21698272021-08-05 18:05:38 +0800324 acct->nr_workers++;
Hao Xu49e7f0c2021-08-08 21:54:33 +0800325 do_create = true;
326 }
Jens Axboea9a4aa92021-08-30 06:33:08 -0600327 raw_spin_unlock(&wqe->lock);
Hao Xu49e7f0c2021-08-08 21:54:33 +0800328 if (do_create) {
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600329 create_io_worker(wq, wqe, worker->create_index);
Hao Xu49e7f0c2021-08-08 21:54:33 +0800330 } else {
331 atomic_dec(&acct->nr_running);
332 io_worker_ref_put(wq);
333 }
Jens Axboed3e9f732021-08-04 08:37:25 -0600334 clear_bit_unlock(0, &worker->create_state);
335 io_worker_release(worker);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700336}
337
Jens Axboe3146cba2021-09-01 11:20:10 -0600338static bool io_queue_worker_create(struct io_worker *worker,
339 struct io_wqe_acct *acct,
340 task_work_func_t func)
Jens Axboe685fe7f2021-03-08 09:37:51 -0700341{
Jens Axboe3146cba2021-09-01 11:20:10 -0600342 struct io_wqe *wqe = worker->wqe;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700343 struct io_wq *wq = wqe->wq;
344
345 /* raced with exit, just ignore create call */
346 if (test_bit(IO_WQ_BIT_EXIT, &wq->state))
347 goto fail;
Jens Axboed3e9f732021-08-04 08:37:25 -0600348 if (!io_worker_get(worker))
349 goto fail;
350 /*
351 * create_state manages ownership of create_work/index. We should
352 * only need one entry per worker, as the worker going to sleep
353 * will trigger the condition, and waking will clear it once it
354 * runs the task_work.
355 */
356 if (test_bit(0, &worker->create_state) ||
357 test_and_set_bit_lock(0, &worker->create_state))
358 goto fail_release;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700359
Jens Axboe3146cba2021-09-01 11:20:10 -0600360 init_task_work(&worker->create_work, func);
Jens Axboed3e9f732021-08-04 08:37:25 -0600361 worker->create_index = acct->index;
Bixuan Cui71e1cef2021-09-11 16:58:47 +0800362 if (!task_work_add(wq->task, &worker->create_work, TWA_SIGNAL)) {
363 clear_bit_unlock(0, &worker->create_state);
Jens Axboe3146cba2021-09-01 11:20:10 -0600364 return true;
Bixuan Cui71e1cef2021-09-11 16:58:47 +0800365 }
Jens Axboed3e9f732021-08-04 08:37:25 -0600366 clear_bit_unlock(0, &worker->create_state);
367fail_release:
368 io_worker_release(worker);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700369fail:
370 atomic_dec(&acct->nr_running);
371 io_worker_ref_put(wq);
Jens Axboe3146cba2021-09-01 11:20:10 -0600372 return false;
Jens Axboe685fe7f2021-03-08 09:37:51 -0700373}
374
Jens Axboe958234d2021-02-17 09:00:57 -0700375static void io_wqe_dec_running(struct io_worker *worker)
Jens Axboec5def4a2019-11-07 11:41:16 -0700376 __must_hold(wqe->lock)
377{
Jens Axboe958234d2021-02-17 09:00:57 -0700378 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
379 struct io_wqe *wqe = worker->wqe;
Jens Axboec5def4a2019-11-07 11:41:16 -0700380
Jens Axboe685fe7f2021-03-08 09:37:51 -0700381 if (!(worker->flags & IO_WORKER_F_UP))
382 return;
383
Jens Axboef95dc202021-08-31 13:57:32 -0600384 if (atomic_dec_and_test(&acct->nr_running) && io_acct_run_queue(acct)) {
Jens Axboe685fe7f2021-03-08 09:37:51 -0700385 atomic_inc(&acct->nr_running);
386 atomic_inc(&wqe->wq->worker_refs);
Jens Axboe3146cba2021-09-01 11:20:10 -0600387 io_queue_worker_create(worker, acct, create_worker_cb);
Jens Axboe685fe7f2021-03-08 09:37:51 -0700388 }
Jens Axboec5def4a2019-11-07 11:41:16 -0700389}
390
Jens Axboe771b53d02019-10-22 10:25:58 -0600391/*
392 * Worker will start processing some work. Move it to the busy list, if
393 * it's currently on the freelist
394 */
395static void __io_worker_busy(struct io_wqe *wqe, struct io_worker *worker,
396 struct io_wq_work *work)
397 __must_hold(wqe->lock)
398{
399 if (worker->flags & IO_WORKER_F_FREE) {
400 worker->flags &= ~IO_WORKER_F_FREE;
401 hlist_nulls_del_init_rcu(&worker->nulls_node);
Jens Axboe771b53d02019-10-22 10:25:58 -0600402 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600403}
404
405/*
406 * No work, worker going to sleep. Move to freelist, and unuse mm if we
407 * have one attached. Dropping the mm may potentially sleep, so we drop
408 * the lock in that case and return success. Since the caller has to
409 * retry the loop in that case (we changed task state), we don't regrab
410 * the lock if we return success.
411 */
Jens Axboec6d77d92021-02-15 13:26:34 -0700412static void __io_worker_idle(struct io_wqe *wqe, struct io_worker *worker)
Jens Axboe771b53d02019-10-22 10:25:58 -0600413 __must_hold(wqe->lock)
414{
415 if (!(worker->flags & IO_WORKER_F_FREE)) {
416 worker->flags |= IO_WORKER_F_FREE;
Jens Axboe021d1cd2019-11-14 08:00:41 -0700417 hlist_nulls_add_head_rcu(&worker->nulls_node, &wqe->free_list);
Jens Axboe771b53d02019-10-22 10:25:58 -0600418 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600419}
420
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300421static inline unsigned int io_get_work_hash(struct io_wq_work *work)
422{
423 return work->flags >> IO_WQ_HASH_SHIFT;
424}
425
Jens Axboed3e3c102021-11-11 17:32:53 -0700426static bool io_wait_on_hash(struct io_wqe *wqe, unsigned int hash)
Jens Axboee9418942021-02-19 12:33:30 -0700427{
428 struct io_wq *wq = wqe->wq;
Jens Axboed3e3c102021-11-11 17:32:53 -0700429 bool ret = false;
Jens Axboee9418942021-02-19 12:33:30 -0700430
Jens Axboe08bdbd32021-08-31 06:57:25 -0600431 spin_lock_irq(&wq->hash->wait.lock);
Jens Axboee9418942021-02-19 12:33:30 -0700432 if (list_empty(&wqe->wait.entry)) {
433 __add_wait_queue(&wq->hash->wait, &wqe->wait);
434 if (!test_bit(hash, &wq->hash->map)) {
435 __set_current_state(TASK_RUNNING);
436 list_del_init(&wqe->wait.entry);
Jens Axboed3e3c102021-11-11 17:32:53 -0700437 ret = true;
Jens Axboee9418942021-02-19 12:33:30 -0700438 }
439 }
Jens Axboe08bdbd32021-08-31 06:57:25 -0600440 spin_unlock_irq(&wq->hash->wait.lock);
Jens Axboed3e3c102021-11-11 17:32:53 -0700441 return ret;
Jens Axboee9418942021-02-19 12:33:30 -0700442}
443
Jens Axboef95dc202021-08-31 13:57:32 -0600444static struct io_wq_work *io_get_next_work(struct io_wqe_acct *acct,
Jens Axboe0242f642021-08-31 13:53:00 -0600445 struct io_worker *worker)
Jens Axboe771b53d02019-10-22 10:25:58 -0600446 __must_hold(wqe->lock)
447{
Jens Axboe6206f0e2019-11-26 11:59:32 -0700448 struct io_wq_work_node *node, *prev;
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300449 struct io_wq_work *work, *tail;
Jens Axboee9418942021-02-19 12:33:30 -0700450 unsigned int stall_hash = -1U;
Jens Axboef95dc202021-08-31 13:57:32 -0600451 struct io_wqe *wqe = worker->wqe;
Jens Axboe771b53d02019-10-22 10:25:58 -0600452
Jens Axboef95dc202021-08-31 13:57:32 -0600453 wq_list_for_each(node, prev, &acct->work_list) {
Jens Axboee9418942021-02-19 12:33:30 -0700454 unsigned int hash;
455
Jens Axboe6206f0e2019-11-26 11:59:32 -0700456 work = container_of(node, struct io_wq_work, list);
457
Jens Axboe771b53d02019-10-22 10:25:58 -0600458 /* not hashed, can run anytime */
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300459 if (!io_wq_is_hashed(work)) {
Jens Axboef95dc202021-08-31 13:57:32 -0600460 wq_list_del(&acct->work_list, node, prev);
Jens Axboe771b53d02019-10-22 10:25:58 -0600461 return work;
462 }
463
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300464 hash = io_get_work_hash(work);
Jens Axboee9418942021-02-19 12:33:30 -0700465 /* all items with this hash lie in [work, tail] */
466 tail = wqe->hash_tail[hash];
467
468 /* hashed, can run if not already running */
469 if (!test_and_set_bit(hash, &wqe->wq->hash->map)) {
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300470 wqe->hash_tail[hash] = NULL;
Jens Axboef95dc202021-08-31 13:57:32 -0600471 wq_list_cut(&acct->work_list, &tail->list, prev);
Jens Axboe771b53d02019-10-22 10:25:58 -0600472 return work;
473 }
Jens Axboee9418942021-02-19 12:33:30 -0700474 if (stall_hash == -1U)
475 stall_hash = hash;
476 /* fast forward to a next hash, for-each will fix up @prev */
477 node = &tail->list;
478 }
479
480 if (stall_hash != -1U) {
Jens Axboed3e3c102021-11-11 17:32:53 -0700481 bool unstalled;
482
Jens Axboe0242f642021-08-31 13:53:00 -0600483 /*
484 * Set this before dropping the lock to avoid racing with new
485 * work being added and clearing the stalled bit.
486 */
Jens Axboef95dc202021-08-31 13:57:32 -0600487 set_bit(IO_ACCT_STALLED_BIT, &acct->flags);
Jens Axboee9418942021-02-19 12:33:30 -0700488 raw_spin_unlock(&wqe->lock);
Jens Axboed3e3c102021-11-11 17:32:53 -0700489 unstalled = io_wait_on_hash(wqe, stall_hash);
Jens Axboee9418942021-02-19 12:33:30 -0700490 raw_spin_lock(&wqe->lock);
Jens Axboed3e3c102021-11-11 17:32:53 -0700491 if (unstalled) {
492 clear_bit(IO_ACCT_STALLED_BIT, &acct->flags);
493 if (wq_has_sleeper(&wqe->wq->hash->wait))
494 wake_up(&wqe->wq->hash->wait);
495 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600496 }
497
498 return NULL;
499}
500
Jens Axboe00ddff42021-03-21 07:06:56 -0600501static bool io_flush_signals(void)
Jens Axboecccf0ee2020-01-27 16:34:48 -0700502{
Jens Axboe0b8cfa92021-03-21 14:16:08 -0600503 if (unlikely(test_thread_flag(TIF_NOTIFY_SIGNAL))) {
Jens Axboe00ddff42021-03-21 07:06:56 -0600504 __set_current_state(TASK_RUNNING);
Jens Axboe0b8cfa92021-03-21 14:16:08 -0600505 tracehook_notify_signal();
Jens Axboe00ddff42021-03-21 07:06:56 -0600506 return true;
Jens Axboecccf0ee2020-01-27 16:34:48 -0700507 }
Jens Axboe00ddff42021-03-21 07:06:56 -0600508 return false;
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300509}
510
511static void io_assign_current_work(struct io_worker *worker,
512 struct io_wq_work *work)
513{
Pavel Begunkovd78298e2020-03-14 00:31:03 +0300514 if (work) {
Jens Axboe3bfe6102021-02-16 14:15:30 -0700515 io_flush_signals();
Pavel Begunkovd78298e2020-03-14 00:31:03 +0300516 cond_resched();
517 }
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300518
Jens Axboea9a4aa92021-08-30 06:33:08 -0600519 spin_lock(&worker->lock);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300520 worker->cur_work = work;
Jens Axboea9a4aa92021-08-30 06:33:08 -0600521 spin_unlock(&worker->lock);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300522}
523
Pavel Begunkov60cf46a2020-03-14 00:31:05 +0300524static void io_wqe_enqueue(struct io_wqe *wqe, struct io_wq_work *work);
525
Jens Axboe771b53d02019-10-22 10:25:58 -0600526static void io_worker_handle_work(struct io_worker *worker)
527 __releases(wqe->lock)
528{
Jens Axboef95dc202021-08-31 13:57:32 -0600529 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600530 struct io_wqe *wqe = worker->wqe;
531 struct io_wq *wq = wqe->wq;
Pavel Begunkovc60eb042021-04-08 01:54:42 +0100532 bool do_kill = test_bit(IO_WQ_BIT_EXIT, &wq->state);
Jens Axboe771b53d02019-10-22 10:25:58 -0600533
534 do {
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300535 struct io_wq_work *work;
Pavel Begunkovf462fd32020-03-04 16:14:11 +0300536get_next:
Jens Axboe771b53d02019-10-22 10:25:58 -0600537 /*
Jens Axboe771b53d02019-10-22 10:25:58 -0600538 * If we got some work, mark us as busy. If we didn't, but
539 * the list isn't empty, it means we stalled on hashed work.
540 * Mark us stalled so we don't keep looking for work when we
541 * can't make progress, any work completion or insertion will
542 * clear the stalled flag.
543 */
Jens Axboef95dc202021-08-31 13:57:32 -0600544 work = io_get_next_work(acct, worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600545 if (work)
546 __io_worker_busy(wqe, worker, work);
Jens Axboe771b53d02019-10-22 10:25:58 -0600547
Jens Axboea9a4aa92021-08-30 06:33:08 -0600548 raw_spin_unlock(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600549 if (!work)
550 break;
Pavel Begunkov58e39312020-03-04 16:14:10 +0300551 io_assign_current_work(worker, work);
Jens Axboee9418942021-02-19 12:33:30 -0700552 __set_current_state(TASK_RUNNING);
Jens Axboe36c2f922019-11-13 09:43:34 -0700553
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300554 /* handle a whole dependent link */
555 do {
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000556 struct io_wq_work *next_hashed, *linked;
Pavel Begunkovb089ed392020-07-25 14:42:00 +0300557 unsigned int hash = io_get_work_hash(work);
Hillf Dantonfd1c4bc2019-12-24 09:14:29 -0700558
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300559 next_hashed = wq_next_work(work);
Pavel Begunkovc60eb042021-04-08 01:54:42 +0100560
561 if (unlikely(do_kill) && (work->flags & IO_WQ_WORK_UNBOUND))
562 work->flags |= IO_WQ_WORK_CANCEL;
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000563 wq->do_work(work);
564 io_assign_current_work(worker, NULL);
Jens Axboe36c2f922019-11-13 09:43:34 -0700565
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000566 linked = wq->free_work(work);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300567 work = next_hashed;
568 if (!work && linked && !io_wq_is_hashed(linked)) {
569 work = linked;
570 linked = NULL;
571 }
572 io_assign_current_work(worker, work);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300573 if (linked)
574 io_wqe_enqueue(wqe, linked);
575
576 if (hash != -1U && !next_hashed) {
Jens Axboed3e3c102021-11-11 17:32:53 -0700577 /* serialize hash clear with wake_up() */
578 spin_lock_irq(&wq->hash->wait.lock);
Jens Axboee9418942021-02-19 12:33:30 -0700579 clear_bit(hash, &wq->hash->map);
Jens Axboef95dc202021-08-31 13:57:32 -0600580 clear_bit(IO_ACCT_STALLED_BIT, &acct->flags);
Jens Axboed3e3c102021-11-11 17:32:53 -0700581 spin_unlock_irq(&wq->hash->wait.lock);
Jens Axboee9418942021-02-19 12:33:30 -0700582 if (wq_has_sleeper(&wq->hash->wait))
583 wake_up(&wq->hash->wait);
Jens Axboea9a4aa92021-08-30 06:33:08 -0600584 raw_spin_lock(&wqe->lock);
Pavel Begunkovf462fd32020-03-04 16:14:11 +0300585 /* skip unnecessary unlock-lock wqe->lock */
586 if (!work)
587 goto get_next;
Jens Axboea9a4aa92021-08-30 06:33:08 -0600588 raw_spin_unlock(&wqe->lock);
Pavel Begunkovdc026a72020-03-04 16:14:09 +0300589 }
Pavel Begunkov58e39312020-03-04 16:14:10 +0300590 } while (work);
Jens Axboe36c2f922019-11-13 09:43:34 -0700591
Jens Axboea9a4aa92021-08-30 06:33:08 -0600592 raw_spin_lock(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600593 } while (1);
594}
595
Jens Axboe771b53d02019-10-22 10:25:58 -0600596static int io_wqe_worker(void *data)
597{
598 struct io_worker *worker = data;
Jens Axboef95dc202021-08-31 13:57:32 -0600599 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600600 struct io_wqe *wqe = worker->wqe;
601 struct io_wq *wq = wqe->wq;
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600602 bool last_timeout = false;
Jens Axboe46fe18b2021-03-04 12:39:36 -0700603 char buf[TASK_COMM_LEN];
Jens Axboe771b53d02019-10-22 10:25:58 -0600604
Jens Axboe46fe18b2021-03-04 12:39:36 -0700605 worker->flags |= (IO_WORKER_F_UP | IO_WORKER_F_RUNNING);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700606
Jens Axboe685fe7f2021-03-08 09:37:51 -0700607 snprintf(buf, sizeof(buf), "iou-wrk-%d", wq->task->pid);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700608 set_task_comm(current, buf);
Jens Axboe771b53d02019-10-22 10:25:58 -0600609
Paul Moore5bd21822021-02-16 19:46:48 -0500610 audit_alloc_kernel(current);
611
Jens Axboe771b53d02019-10-22 10:25:58 -0600612 while (!test_bit(IO_WQ_BIT_EXIT, &wq->state)) {
Jens Axboe16efa4f2021-03-12 20:26:13 -0700613 long ret;
614
Jens Axboe506d95f2019-12-07 21:03:59 -0700615 set_current_state(TASK_INTERRUPTIBLE);
Jens Axboee995d512019-12-07 21:06:46 -0700616loop:
Jens Axboea9a4aa92021-08-30 06:33:08 -0600617 raw_spin_lock(&wqe->lock);
Jens Axboef95dc202021-08-31 13:57:32 -0600618 if (io_acct_run_queue(acct)) {
Jens Axboe771b53d02019-10-22 10:25:58 -0600619 io_worker_handle_work(worker);
Jens Axboee995d512019-12-07 21:06:46 -0700620 goto loop;
Jens Axboe771b53d02019-10-22 10:25:58 -0600621 }
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600622 /* timed out, exit unless we're the last worker */
623 if (last_timeout && acct->nr_workers > 1) {
Hao Xu767a65e2021-09-12 03:40:52 +0800624 acct->nr_workers--;
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600625 raw_spin_unlock(&wqe->lock);
626 __set_current_state(TASK_RUNNING);
627 break;
628 }
629 last_timeout = false;
Jens Axboec6d77d92021-02-15 13:26:34 -0700630 __io_worker_idle(wqe, worker);
Jens Axboea9a4aa92021-08-30 06:33:08 -0600631 raw_spin_unlock(&wqe->lock);
Jens Axboe00ddff42021-03-21 07:06:56 -0600632 if (io_flush_signals())
633 continue;
Jens Axboe16efa4f2021-03-12 20:26:13 -0700634 ret = schedule_timeout(WORKER_IDLE_TIMEOUT);
Jens Axboedbe1bdb2021-03-25 18:16:06 -0600635 if (signal_pending(current)) {
636 struct ksignal ksig;
637
638 if (!get_signal(&ksig))
639 continue;
Jens Axboe78f88762021-09-27 10:04:10 -0600640 break;
Jens Axboedbe1bdb2021-03-25 18:16:06 -0600641 }
Jens Axboe05c5f4e2021-09-01 13:01:17 -0600642 last_timeout = !ret;
Jens Axboe771b53d02019-10-22 10:25:58 -0600643 }
644
Jens Axboe771b53d02019-10-22 10:25:58 -0600645 if (test_bit(IO_WQ_BIT_EXIT, &wq->state)) {
Jens Axboea9a4aa92021-08-30 06:33:08 -0600646 raw_spin_lock(&wqe->lock);
Pavel Begunkove5872272021-06-14 02:36:17 +0100647 io_worker_handle_work(worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600648 }
649
Paul Moore5bd21822021-02-16 19:46:48 -0500650 audit_free(current);
Jens Axboe771b53d02019-10-22 10:25:58 -0600651 io_worker_exit(worker);
652 return 0;
653}
654
655/*
Jens Axboe771b53d02019-10-22 10:25:58 -0600656 * Called when a worker is scheduled in. Mark us as currently running.
657 */
658void io_wq_worker_running(struct task_struct *tsk)
659{
Jens Axboe3bfe6102021-02-16 14:15:30 -0700660 struct io_worker *worker = tsk->pf_io_worker;
Jens Axboe771b53d02019-10-22 10:25:58 -0600661
Jens Axboe3bfe6102021-02-16 14:15:30 -0700662 if (!worker)
663 return;
Jens Axboe771b53d02019-10-22 10:25:58 -0600664 if (!(worker->flags & IO_WORKER_F_UP))
665 return;
666 if (worker->flags & IO_WORKER_F_RUNNING)
667 return;
668 worker->flags |= IO_WORKER_F_RUNNING;
Jens Axboe958234d2021-02-17 09:00:57 -0700669 io_wqe_inc_running(worker);
Jens Axboe771b53d02019-10-22 10:25:58 -0600670}
671
672/*
673 * Called when worker is going to sleep. If there are no workers currently
Jens Axboe685fe7f2021-03-08 09:37:51 -0700674 * running and we have work pending, wake up a free one or create a new one.
Jens Axboe771b53d02019-10-22 10:25:58 -0600675 */
676void io_wq_worker_sleeping(struct task_struct *tsk)
677{
Jens Axboe3bfe6102021-02-16 14:15:30 -0700678 struct io_worker *worker = tsk->pf_io_worker;
Jens Axboe771b53d02019-10-22 10:25:58 -0600679
Jens Axboe3bfe6102021-02-16 14:15:30 -0700680 if (!worker)
681 return;
Jens Axboe771b53d02019-10-22 10:25:58 -0600682 if (!(worker->flags & IO_WORKER_F_UP))
683 return;
684 if (!(worker->flags & IO_WORKER_F_RUNNING))
685 return;
686
687 worker->flags &= ~IO_WORKER_F_RUNNING;
688
Jens Axboea9a4aa92021-08-30 06:33:08 -0600689 raw_spin_lock(&worker->wqe->lock);
Jens Axboe958234d2021-02-17 09:00:57 -0700690 io_wqe_dec_running(worker);
Jens Axboea9a4aa92021-08-30 06:33:08 -0600691 raw_spin_unlock(&worker->wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600692}
693
Jens Axboe3146cba2021-09-01 11:20:10 -0600694static void io_init_new_worker(struct io_wqe *wqe, struct io_worker *worker,
695 struct task_struct *tsk)
Jens Axboe3bfe6102021-02-16 14:15:30 -0700696{
Jens Axboe46fe18b2021-03-04 12:39:36 -0700697 tsk->pf_io_worker = worker;
698 worker->task = tsk;
Jens Axboe0e034962021-06-17 10:08:11 -0600699 set_cpus_allowed_ptr(tsk, wqe->cpu_mask);
Jens Axboee22bc9b2021-03-09 19:49:02 -0700700 tsk->flags |= PF_NO_SETAFFINITY;
Jens Axboe46fe18b2021-03-04 12:39:36 -0700701
Jens Axboea9a4aa92021-08-30 06:33:08 -0600702 raw_spin_lock(&wqe->lock);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700703 hlist_nulls_add_head_rcu(&worker->nulls_node, &wqe->free_list);
704 list_add_tail_rcu(&worker->all_list, &wqe->all_list);
705 worker->flags |= IO_WORKER_F_FREE;
Jens Axboea9a4aa92021-08-30 06:33:08 -0600706 raw_spin_unlock(&wqe->lock);
Jens Axboe46fe18b2021-03-04 12:39:36 -0700707 wake_up_new_task(tsk);
Jens Axboe771b53d02019-10-22 10:25:58 -0600708}
709
Jens Axboe3146cba2021-09-01 11:20:10 -0600710static bool io_wq_work_match_all(struct io_wq_work *work, void *data)
711{
712 return true;
713}
714
715static inline bool io_should_retry_thread(long err)
716{
717 switch (err) {
718 case -EAGAIN:
719 case -ERESTARTSYS:
720 case -ERESTARTNOINTR:
721 case -ERESTARTNOHAND:
722 return true;
723 default:
724 return false;
725 }
726}
727
728static void create_worker_cont(struct callback_head *cb)
729{
730 struct io_worker *worker;
731 struct task_struct *tsk;
732 struct io_wqe *wqe;
733
734 worker = container_of(cb, struct io_worker, create_work);
735 clear_bit_unlock(0, &worker->create_state);
736 wqe = worker->wqe;
737 tsk = create_io_thread(io_wqe_worker, worker, wqe->node);
738 if (!IS_ERR(tsk)) {
739 io_init_new_worker(wqe, worker, tsk);
740 io_worker_release(worker);
741 return;
742 } else if (!io_should_retry_thread(PTR_ERR(tsk))) {
743 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
744
745 atomic_dec(&acct->nr_running);
746 raw_spin_lock(&wqe->lock);
747 acct->nr_workers--;
748 if (!acct->nr_workers) {
749 struct io_cb_cancel_data match = {
750 .fn = io_wq_work_match_all,
751 .cancel_all = true,
752 };
753
754 while (io_acct_cancel_pending_work(wqe, acct, &match))
755 raw_spin_lock(&wqe->lock);
756 }
757 raw_spin_unlock(&wqe->lock);
758 io_worker_ref_put(wqe->wq);
Qiang.zhang66e70be2021-09-09 19:58:22 +0800759 kfree(worker);
Jens Axboe3146cba2021-09-01 11:20:10 -0600760 return;
761 }
762
763 /* re-create attempts grab a new worker ref, drop the existing one */
764 io_worker_release(worker);
765 schedule_work(&worker->work);
766}
767
768static void io_workqueue_create(struct work_struct *work)
769{
770 struct io_worker *worker = container_of(work, struct io_worker, work);
771 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
772
Bixuan Cui71e1cef2021-09-11 16:58:47 +0800773 if (!io_queue_worker_create(worker, acct, create_worker_cont))
Qiang.zhang66e70be2021-09-09 19:58:22 +0800774 kfree(worker);
Jens Axboe3146cba2021-09-01 11:20:10 -0600775}
776
777static bool create_io_worker(struct io_wq *wq, struct io_wqe *wqe, int index)
778{
779 struct io_wqe_acct *acct = &wqe->acct[index];
780 struct io_worker *worker;
781 struct task_struct *tsk;
782
783 __set_current_state(TASK_RUNNING);
784
785 worker = kzalloc_node(sizeof(*worker), GFP_KERNEL, wqe->node);
786 if (!worker) {
787fail:
788 atomic_dec(&acct->nr_running);
789 raw_spin_lock(&wqe->lock);
790 acct->nr_workers--;
791 raw_spin_unlock(&wqe->lock);
792 io_worker_ref_put(wq);
793 return false;
794 }
795
796 refcount_set(&worker->ref, 1);
797 worker->wqe = wqe;
798 spin_lock_init(&worker->lock);
799 init_completion(&worker->ref_done);
800
801 if (index == IO_WQ_ACCT_BOUND)
802 worker->flags |= IO_WORKER_F_BOUND;
803
804 tsk = create_io_thread(io_wqe_worker, worker, wqe->node);
805 if (!IS_ERR(tsk)) {
806 io_init_new_worker(wqe, worker, tsk);
807 } else if (!io_should_retry_thread(PTR_ERR(tsk))) {
Qiang.zhang66e70be2021-09-09 19:58:22 +0800808 kfree(worker);
Jens Axboe3146cba2021-09-01 11:20:10 -0600809 goto fail;
810 } else {
811 INIT_WORK(&worker->work, io_workqueue_create);
812 schedule_work(&worker->work);
813 }
814
815 return true;
816}
817
Hillf Dantonc4068bf2020-09-26 21:26:55 +0800818/*
819 * Iterate the passed in list and call the specific function for each
820 * worker that isn't exiting
821 */
822static bool io_wq_for_each_worker(struct io_wqe *wqe,
823 bool (*func)(struct io_worker *, void *),
824 void *data)
825{
826 struct io_worker *worker;
827 bool ret = false;
828
829 list_for_each_entry_rcu(worker, &wqe->all_list, all_list) {
830 if (io_worker_get(worker)) {
831 /* no task if node is/was offline */
832 if (worker->task)
833 ret = func(worker, data);
834 io_worker_release(worker);
835 if (ret)
836 break;
837 }
838 }
839
840 return ret;
841}
842
843static bool io_wq_worker_wake(struct io_worker *worker, void *data)
844{
Jens Axboe46fe18b2021-03-04 12:39:36 -0700845 set_notify_signal(worker->task);
Hillf Dantonc4068bf2020-09-26 21:26:55 +0800846 wake_up_process(worker->task);
847 return false;
848}
849
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300850static void io_run_cancel(struct io_wq_work *work, struct io_wqe *wqe)
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300851{
Pavel Begunkove9fd9392020-03-04 16:14:12 +0300852 struct io_wq *wq = wqe->wq;
853
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300854 do {
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300855 work->flags |= IO_WQ_WORK_CANCEL;
Pavel Begunkov5280f7e2021-02-04 13:52:08 +0000856 wq->do_work(work);
857 work = wq->free_work(work);
Pavel Begunkovfc04c392020-03-01 19:18:19 +0300858 } while (work);
859}
860
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300861static void io_wqe_insert_work(struct io_wqe *wqe, struct io_wq_work *work)
862{
Jens Axboef95dc202021-08-31 13:57:32 -0600863 struct io_wqe_acct *acct = io_work_get_acct(wqe, work);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300864 unsigned int hash;
865 struct io_wq_work *tail;
866
867 if (!io_wq_is_hashed(work)) {
868append:
Jens Axboef95dc202021-08-31 13:57:32 -0600869 wq_list_add_tail(&work->list, &acct->work_list);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300870 return;
871 }
872
873 hash = io_get_work_hash(work);
874 tail = wqe->hash_tail[hash];
875 wqe->hash_tail[hash] = work;
876 if (!tail)
877 goto append;
878
Jens Axboef95dc202021-08-31 13:57:32 -0600879 wq_list_add_after(&work->list, &tail->list, &acct->work_list);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300880}
881
Pavel Begunkov713b9822021-09-08 10:09:29 +0100882static bool io_wq_work_match_item(struct io_wq_work *work, void *data)
883{
884 return work == data;
885}
886
Jens Axboe771b53d02019-10-22 10:25:58 -0600887static void io_wqe_enqueue(struct io_wqe *wqe, struct io_wq_work *work)
888{
Jens Axboec5def4a2019-11-07 11:41:16 -0700889 struct io_wqe_acct *acct = io_work_get_acct(wqe, work);
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600890 unsigned work_flags = work->flags;
891 bool do_create;
Jens Axboe771b53d02019-10-22 10:25:58 -0600892
Jens Axboe991468d2021-07-23 11:53:54 -0600893 /*
894 * If io-wq is exiting for this task, or if the request has explicitly
895 * been marked as one that should not get executed, cancel it here.
896 */
897 if (test_bit(IO_WQ_BIT_EXIT, &wqe->wq->state) ||
898 (work->flags & IO_WQ_WORK_CANCEL)) {
yangerkun70e35122021-03-09 11:04:10 +0800899 io_run_cancel(work, wqe);
Jens Axboe4fb6ac32021-02-25 10:17:09 -0700900 return;
901 }
902
Jens Axboea9a4aa92021-08-30 06:33:08 -0600903 raw_spin_lock(&wqe->lock);
Pavel Begunkov86f3cd12020-03-23 22:57:22 +0300904 io_wqe_insert_work(wqe, work);
Jens Axboef95dc202021-08-31 13:57:32 -0600905 clear_bit(IO_ACCT_STALLED_BIT, &acct->flags);
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600906
907 rcu_read_lock();
Jens Axboef95dc202021-08-31 13:57:32 -0600908 do_create = !io_wqe_activate_free_worker(wqe, acct);
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600909 rcu_read_unlock();
910
Jens Axboea9a4aa92021-08-30 06:33:08 -0600911 raw_spin_unlock(&wqe->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600912
Jens Axboe94ffb0a2021-08-30 11:55:22 -0600913 if (do_create && ((work_flags & IO_WQ_WORK_CONCURRENT) ||
Jens Axboe3146cba2021-09-01 11:20:10 -0600914 !atomic_read(&acct->nr_running))) {
915 bool did_create;
916
917 did_create = io_wqe_create_worker(wqe, acct);
Pavel Begunkov713b9822021-09-08 10:09:29 +0100918 if (likely(did_create))
919 return;
920
921 raw_spin_lock(&wqe->lock);
922 /* fatal condition, failed to create the first worker */
923 if (!acct->nr_workers) {
924 struct io_cb_cancel_data match = {
925 .fn = io_wq_work_match_item,
926 .data = work,
927 .cancel_all = false,
928 };
929
930 if (io_acct_cancel_pending_work(wqe, acct, &match))
931 raw_spin_lock(&wqe->lock);
Jens Axboe3146cba2021-09-01 11:20:10 -0600932 }
Pavel Begunkov713b9822021-09-08 10:09:29 +0100933 raw_spin_unlock(&wqe->lock);
Jens Axboe3146cba2021-09-01 11:20:10 -0600934 }
Jens Axboe771b53d02019-10-22 10:25:58 -0600935}
936
937void io_wq_enqueue(struct io_wq *wq, struct io_wq_work *work)
938{
939 struct io_wqe *wqe = wq->wqes[numa_node_id()];
940
941 io_wqe_enqueue(wqe, work);
942}
943
944/*
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300945 * Work items that hash to the same value will not be done in parallel.
946 * Used to limit concurrent writes, generally hashed by inode.
Jens Axboe771b53d02019-10-22 10:25:58 -0600947 */
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300948void io_wq_hash_work(struct io_wq_work *work, void *val)
Jens Axboe771b53d02019-10-22 10:25:58 -0600949{
Pavel Begunkov8766dd52020-03-14 00:31:04 +0300950 unsigned int bit;
Jens Axboe771b53d02019-10-22 10:25:58 -0600951
952 bit = hash_ptr(val, IO_WQ_HASH_ORDER);
953 work->flags |= (IO_WQ_WORK_HASHED | (bit << IO_WQ_HASH_SHIFT));
Jens Axboe771b53d02019-10-22 10:25:58 -0600954}
955
Pavel Begunkov2293b412020-03-07 01:15:39 +0300956static bool io_wq_worker_cancel(struct io_worker *worker, void *data)
Jens Axboe62755e32019-10-28 21:49:21 -0600957{
Pavel Begunkov2293b412020-03-07 01:15:39 +0300958 struct io_cb_cancel_data *match = data;
Jens Axboe62755e32019-10-28 21:49:21 -0600959
960 /*
961 * Hold the lock to avoid ->cur_work going out of scope, caller
Jens Axboe36c2f922019-11-13 09:43:34 -0700962 * may dereference the passed in work.
Jens Axboe62755e32019-10-28 21:49:21 -0600963 */
Jens Axboea9a4aa92021-08-30 06:33:08 -0600964 spin_lock(&worker->lock);
Jens Axboe62755e32019-10-28 21:49:21 -0600965 if (worker->cur_work &&
Pavel Begunkov2293b412020-03-07 01:15:39 +0300966 match->fn(worker->cur_work, match->data)) {
Jens Axboe3bfe6102021-02-16 14:15:30 -0700967 set_notify_signal(worker->task);
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300968 match->nr_running++;
Jens Axboe771b53d02019-10-22 10:25:58 -0600969 }
Jens Axboea9a4aa92021-08-30 06:33:08 -0600970 spin_unlock(&worker->lock);
Jens Axboe771b53d02019-10-22 10:25:58 -0600971
Pavel Begunkov4f26bda2020-06-15 10:24:03 +0300972 return match->nr_running && !match->cancel_all;
Jens Axboe771b53d02019-10-22 10:25:58 -0600973}
974
Pavel Begunkov204361a2020-08-23 20:33:10 +0300975static inline void io_wqe_remove_pending(struct io_wqe *wqe,
976 struct io_wq_work *work,
977 struct io_wq_work_node *prev)
978{
Jens Axboef95dc202021-08-31 13:57:32 -0600979 struct io_wqe_acct *acct = io_work_get_acct(wqe, work);
Pavel Begunkov204361a2020-08-23 20:33:10 +0300980 unsigned int hash = io_get_work_hash(work);
981 struct io_wq_work *prev_work = NULL;
982
983 if (io_wq_is_hashed(work) && work == wqe->hash_tail[hash]) {
984 if (prev)
985 prev_work = container_of(prev, struct io_wq_work, list);
986 if (prev_work && io_get_work_hash(prev_work) == hash)
987 wqe->hash_tail[hash] = prev_work;
988 else
989 wqe->hash_tail[hash] = NULL;
990 }
Jens Axboef95dc202021-08-31 13:57:32 -0600991 wq_list_del(&acct->work_list, &work->list, prev);
Pavel Begunkov204361a2020-08-23 20:33:10 +0300992}
993
Jens Axboe3146cba2021-09-01 11:20:10 -0600994static bool io_acct_cancel_pending_work(struct io_wqe *wqe,
995 struct io_wqe_acct *acct,
996 struct io_cb_cancel_data *match)
997 __releases(wqe->lock)
Jens Axboe771b53d02019-10-22 10:25:58 -0600998{
Jens Axboe6206f0e2019-11-26 11:59:32 -0700999 struct io_wq_work_node *node, *prev;
Jens Axboe771b53d02019-10-22 10:25:58 -06001000 struct io_wq_work *work;
Jens Axboe771b53d02019-10-22 10:25:58 -06001001
Jens Axboe3146cba2021-09-01 11:20:10 -06001002 wq_list_for_each(node, prev, &acct->work_list) {
1003 work = container_of(node, struct io_wq_work, list);
1004 if (!match->fn(work, match->data))
1005 continue;
1006 io_wqe_remove_pending(wqe, work, prev);
1007 raw_spin_unlock(&wqe->lock);
1008 io_run_cancel(work, wqe);
1009 match->nr_pending++;
1010 /* not safe to continue after unlock */
1011 return true;
1012 }
1013
1014 return false;
1015}
1016
1017static void io_wqe_cancel_pending_work(struct io_wqe *wqe,
1018 struct io_cb_cancel_data *match)
1019{
1020 int i;
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001021retry:
Jens Axboea9a4aa92021-08-30 06:33:08 -06001022 raw_spin_lock(&wqe->lock);
Jens Axboef95dc202021-08-31 13:57:32 -06001023 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1024 struct io_wqe_acct *acct = io_get_acct(wqe, i == 0);
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001025
Jens Axboe3146cba2021-09-01 11:20:10 -06001026 if (io_acct_cancel_pending_work(wqe, acct, match)) {
1027 if (match->cancel_all)
1028 goto retry;
1029 return;
Jens Axboef95dc202021-08-31 13:57:32 -06001030 }
Jens Axboe771b53d02019-10-22 10:25:58 -06001031 }
Jens Axboea9a4aa92021-08-30 06:33:08 -06001032 raw_spin_unlock(&wqe->lock);
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001033}
Jens Axboe771b53d02019-10-22 10:25:58 -06001034
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001035static void io_wqe_cancel_running_work(struct io_wqe *wqe,
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001036 struct io_cb_cancel_data *match)
1037{
Jens Axboe771b53d02019-10-22 10:25:58 -06001038 rcu_read_lock();
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001039 io_wq_for_each_worker(wqe, io_wq_worker_cancel, match);
Jens Axboe771b53d02019-10-22 10:25:58 -06001040 rcu_read_unlock();
Jens Axboe771b53d02019-10-22 10:25:58 -06001041}
1042
Pavel Begunkov2293b412020-03-07 01:15:39 +03001043enum io_wq_cancel io_wq_cancel_cb(struct io_wq *wq, work_cancel_fn *cancel,
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001044 void *data, bool cancel_all)
Pavel Begunkov2293b412020-03-07 01:15:39 +03001045{
1046 struct io_cb_cancel_data match = {
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001047 .fn = cancel,
1048 .data = data,
1049 .cancel_all = cancel_all,
Pavel Begunkov2293b412020-03-07 01:15:39 +03001050 };
Pavel Begunkov2293b412020-03-07 01:15:39 +03001051 int node;
1052
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001053 /*
1054 * First check pending list, if we're lucky we can just remove it
1055 * from there. CANCEL_OK means that the work is returned as-new,
1056 * no completion will be posted for it.
1057 */
Pavel Begunkov2293b412020-03-07 01:15:39 +03001058 for_each_node(node) {
1059 struct io_wqe *wqe = wq->wqes[node];
1060
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001061 io_wqe_cancel_pending_work(wqe, &match);
1062 if (match.nr_pending && !match.cancel_all)
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001063 return IO_WQ_CANCEL_OK;
Pavel Begunkov2293b412020-03-07 01:15:39 +03001064 }
1065
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001066 /*
1067 * Now check if a free (going busy) or busy worker has the work
1068 * currently running. If we find it there, we'll return CANCEL_RUNNING
1069 * as an indication that we attempt to signal cancellation. The
1070 * completion will run normally in this case.
1071 */
1072 for_each_node(node) {
1073 struct io_wqe *wqe = wq->wqes[node];
1074
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001075 io_wqe_cancel_running_work(wqe, &match);
1076 if (match.nr_running && !match.cancel_all)
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001077 return IO_WQ_CANCEL_RUNNING;
1078 }
1079
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03001080 if (match.nr_running)
1081 return IO_WQ_CANCEL_RUNNING;
1082 if (match.nr_pending)
1083 return IO_WQ_CANCEL_OK;
Pavel Begunkovf4c26652020-06-15 10:24:02 +03001084 return IO_WQ_CANCEL_NOTFOUND;
Pavel Begunkov2293b412020-03-07 01:15:39 +03001085}
1086
Jens Axboee9418942021-02-19 12:33:30 -07001087static int io_wqe_hash_wake(struct wait_queue_entry *wait, unsigned mode,
1088 int sync, void *key)
1089{
1090 struct io_wqe *wqe = container_of(wait, struct io_wqe, wait);
Jens Axboef95dc202021-08-31 13:57:32 -06001091 int i;
Jens Axboee9418942021-02-19 12:33:30 -07001092
1093 list_del_init(&wait->entry);
1094
1095 rcu_read_lock();
Jens Axboef95dc202021-08-31 13:57:32 -06001096 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1097 struct io_wqe_acct *acct = &wqe->acct[i];
1098
1099 if (test_and_clear_bit(IO_ACCT_STALLED_BIT, &acct->flags))
1100 io_wqe_activate_free_worker(wqe, acct);
1101 }
Jens Axboee9418942021-02-19 12:33:30 -07001102 rcu_read_unlock();
Jens Axboee9418942021-02-19 12:33:30 -07001103 return 1;
1104}
1105
Jens Axboe576a3472019-11-25 08:49:20 -07001106struct io_wq *io_wq_create(unsigned bounded, struct io_wq_data *data)
Jens Axboe771b53d02019-10-22 10:25:58 -06001107{
Jens Axboef95dc202021-08-31 13:57:32 -06001108 int ret, node, i;
Jens Axboe771b53d02019-10-22 10:25:58 -06001109 struct io_wq *wq;
1110
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +03001111 if (WARN_ON_ONCE(!data->free_work || !data->do_work))
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001112 return ERR_PTR(-EINVAL);
Pavel Begunkove6ab8992021-06-17 18:13:59 +01001113 if (WARN_ON_ONCE(!bounded))
1114 return ERR_PTR(-EINVAL);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001115
Pavel Begunkovc7f405d2021-06-14 02:36:12 +01001116 wq = kzalloc(struct_size(wq, wqes, nr_node_ids), GFP_KERNEL);
Jens Axboe771b53d02019-10-22 10:25:58 -06001117 if (!wq)
1118 return ERR_PTR(-ENOMEM);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001119 ret = cpuhp_state_add_instance_nocalls(io_wq_online, &wq->cpuhp_node);
1120 if (ret)
Pavel Begunkovc7f405d2021-06-14 02:36:12 +01001121 goto err_wq;
Jens Axboe771b53d02019-10-22 10:25:58 -06001122
Jens Axboee9418942021-02-19 12:33:30 -07001123 refcount_inc(&data->hash->refs);
1124 wq->hash = data->hash;
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001125 wq->free_work = data->free_work;
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +03001126 wq->do_work = data->do_work;
Jens Axboe7d723062019-11-12 22:31:31 -07001127
Jens Axboe43c01fb2020-10-22 09:02:50 -06001128 ret = -ENOMEM;
Jann Horn3fc50ab2019-11-26 19:10:20 +01001129 for_each_node(node) {
Jens Axboe771b53d02019-10-22 10:25:58 -06001130 struct io_wqe *wqe;
Jens Axboe75634392020-02-11 06:30:06 -07001131 int alloc_node = node;
Jens Axboe771b53d02019-10-22 10:25:58 -06001132
Jens Axboe75634392020-02-11 06:30:06 -07001133 if (!node_online(alloc_node))
1134 alloc_node = NUMA_NO_NODE;
1135 wqe = kzalloc_node(sizeof(struct io_wqe), GFP_KERNEL, alloc_node);
Jens Axboe771b53d02019-10-22 10:25:58 -06001136 if (!wqe)
Jann Horn3fc50ab2019-11-26 19:10:20 +01001137 goto err;
Jens Axboe0e034962021-06-17 10:08:11 -06001138 if (!alloc_cpumask_var(&wqe->cpu_mask, GFP_KERNEL))
1139 goto err;
1140 cpumask_copy(wqe->cpu_mask, cpumask_of_node(node));
Jann Horn3fc50ab2019-11-26 19:10:20 +01001141 wq->wqes[node] = wqe;
Jens Axboe75634392020-02-11 06:30:06 -07001142 wqe->node = alloc_node;
Jens Axboec5def4a2019-11-07 11:41:16 -07001143 wqe->acct[IO_WQ_ACCT_BOUND].max_workers = bounded;
Jens Axboe728f13e2021-02-21 16:02:53 -07001144 wqe->acct[IO_WQ_ACCT_UNBOUND].max_workers =
Jens Axboec5def4a2019-11-07 11:41:16 -07001145 task_rlimit(current, RLIMIT_NPROC);
Jens Axboee9418942021-02-19 12:33:30 -07001146 INIT_LIST_HEAD(&wqe->wait.entry);
Jens Axboef95dc202021-08-31 13:57:32 -06001147 wqe->wait.func = io_wqe_hash_wake;
1148 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1149 struct io_wqe_acct *acct = &wqe->acct[i];
1150
1151 acct->index = i;
1152 atomic_set(&acct->nr_running, 0);
1153 INIT_WQ_LIST(&acct->work_list);
1154 }
Jens Axboe771b53d02019-10-22 10:25:58 -06001155 wqe->wq = wq;
Sebastian Andrzej Siewior95da8462020-09-01 10:41:46 +02001156 raw_spin_lock_init(&wqe->lock);
Jens Axboe021d1cd2019-11-14 08:00:41 -07001157 INIT_HLIST_NULLS_HEAD(&wqe->free_list, 0);
Jens Axboee61df662019-11-13 13:54:49 -07001158 INIT_LIST_HEAD(&wqe->all_list);
Jens Axboe771b53d02019-10-22 10:25:58 -06001159 }
1160
Jens Axboe685fe7f2021-03-08 09:37:51 -07001161 wq->task = get_task_struct(data->task);
Jens Axboe685fe7f2021-03-08 09:37:51 -07001162 atomic_set(&wq->worker_refs, 1);
1163 init_completion(&wq->worker_done);
1164 return wq;
Jens Axboeb60fda62019-11-19 08:37:07 -07001165err:
Jens Axboedc7bbc92021-03-01 09:09:56 -07001166 io_wq_put_hash(data->hash);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001167 cpuhp_state_remove_instance_nocalls(io_wq_online, &wq->cpuhp_node);
Jens Axboe0e034962021-06-17 10:08:11 -06001168 for_each_node(node) {
1169 if (!wq->wqes[node])
1170 continue;
1171 free_cpumask_var(wq->wqes[node]->cpu_mask);
Jann Horn3fc50ab2019-11-26 19:10:20 +01001172 kfree(wq->wqes[node]);
Jens Axboe0e034962021-06-17 10:08:11 -06001173 }
Jens Axboe43c01fb2020-10-22 09:02:50 -06001174err_wq:
Jens Axboeb60fda62019-11-19 08:37:07 -07001175 kfree(wq);
Jens Axboe771b53d02019-10-22 10:25:58 -06001176 return ERR_PTR(ret);
1177}
1178
Jens Axboec80ca472021-04-01 19:57:07 -06001179static bool io_task_work_match(struct callback_head *cb, void *data)
1180{
Jens Axboed3e9f732021-08-04 08:37:25 -06001181 struct io_worker *worker;
Jens Axboec80ca472021-04-01 19:57:07 -06001182
Jens Axboe3b33e3f2021-09-08 19:57:26 -06001183 if (cb->func != create_worker_cb && cb->func != create_worker_cont)
Jens Axboec80ca472021-04-01 19:57:07 -06001184 return false;
Jens Axboed3e9f732021-08-04 08:37:25 -06001185 worker = container_of(cb, struct io_worker, create_work);
1186 return worker->wqe->wq == data;
Jens Axboec80ca472021-04-01 19:57:07 -06001187}
1188
Pavel Begunkov17a91052021-05-23 15:48:39 +01001189void io_wq_exit_start(struct io_wq *wq)
1190{
1191 set_bit(IO_WQ_BIT_EXIT, &wq->state);
1192}
1193
Jens Axboe685fe7f2021-03-08 09:37:51 -07001194static void io_wq_exit_workers(struct io_wq *wq)
Jens Axboeafcc4012021-02-26 13:48:19 -07001195{
Jens Axboe685fe7f2021-03-08 09:37:51 -07001196 struct callback_head *cb;
1197 int node;
1198
Jens Axboe685fe7f2021-03-08 09:37:51 -07001199 if (!wq->task)
1200 return;
1201
Jens Axboec80ca472021-04-01 19:57:07 -06001202 while ((cb = task_work_cancel_match(wq->task, io_task_work_match, wq)) != NULL) {
Jens Axboed3e9f732021-08-04 08:37:25 -06001203 struct io_worker *worker;
Jens Axboe685fe7f2021-03-08 09:37:51 -07001204
Jens Axboed3e9f732021-08-04 08:37:25 -06001205 worker = container_of(cb, struct io_worker, create_work);
Pavel Begunkov1d5f5ea2021-10-29 13:11:33 +01001206 io_worker_cancel_cb(worker);
Jens Axboeafcc4012021-02-26 13:48:19 -07001207 }
Jens Axboe685fe7f2021-03-08 09:37:51 -07001208
1209 rcu_read_lock();
1210 for_each_node(node) {
1211 struct io_wqe *wqe = wq->wqes[node];
1212
1213 io_wq_for_each_worker(wqe, io_wq_worker_wake, NULL);
Jens Axboe685fe7f2021-03-08 09:37:51 -07001214 }
1215 rcu_read_unlock();
1216 io_worker_ref_put(wq);
1217 wait_for_completion(&wq->worker_done);
Zqiang3743c172021-05-26 13:08:26 +08001218
1219 for_each_node(node) {
1220 spin_lock_irq(&wq->hash->wait.lock);
1221 list_del_init(&wq->wqes[node]->wait.entry);
1222 spin_unlock_irq(&wq->hash->wait.lock);
1223 }
Jens Axboe685fe7f2021-03-08 09:37:51 -07001224 put_task_struct(wq->task);
1225 wq->task = NULL;
Jens Axboeafcc4012021-02-26 13:48:19 -07001226}
1227
Jens Axboe4fb6ac32021-02-25 10:17:09 -07001228static void io_wq_destroy(struct io_wq *wq)
Jens Axboe771b53d02019-10-22 10:25:58 -06001229{
Jann Horn3fc50ab2019-11-26 19:10:20 +01001230 int node;
Jens Axboe771b53d02019-10-22 10:25:58 -06001231
Jens Axboe43c01fb2020-10-22 09:02:50 -06001232 cpuhp_state_remove_instance_nocalls(io_wq_online, &wq->cpuhp_node);
1233
Jens Axboee9418942021-02-19 12:33:30 -07001234 for_each_node(node) {
1235 struct io_wqe *wqe = wq->wqes[node];
Jens Axboef5d2d232021-03-25 10:16:12 -06001236 struct io_cb_cancel_data match = {
1237 .fn = io_wq_work_match_all,
1238 .cancel_all = true,
1239 };
1240 io_wqe_cancel_pending_work(wqe, &match);
Jens Axboe0e034962021-06-17 10:08:11 -06001241 free_cpumask_var(wqe->cpu_mask);
Jens Axboee9418942021-02-19 12:33:30 -07001242 kfree(wqe);
1243 }
Jens Axboee9418942021-02-19 12:33:30 -07001244 io_wq_put_hash(wq->hash);
Jens Axboe771b53d02019-10-22 10:25:58 -06001245 kfree(wq);
Jens Axboe4fb6ac32021-02-25 10:17:09 -07001246}
1247
Jens Axboeafcc4012021-02-26 13:48:19 -07001248void io_wq_put_and_exit(struct io_wq *wq)
1249{
Pavel Begunkov17a91052021-05-23 15:48:39 +01001250 WARN_ON_ONCE(!test_bit(IO_WQ_BIT_EXIT, &wq->state));
1251
Jens Axboe685fe7f2021-03-08 09:37:51 -07001252 io_wq_exit_workers(wq);
Pavel Begunkov382cb032021-06-14 02:36:13 +01001253 io_wq_destroy(wq);
Jens Axboeafcc4012021-02-26 13:48:19 -07001254}
1255
Jens Axboe0e034962021-06-17 10:08:11 -06001256struct online_data {
1257 unsigned int cpu;
1258 bool online;
1259};
1260
Jens Axboe43c01fb2020-10-22 09:02:50 -06001261static bool io_wq_worker_affinity(struct io_worker *worker, void *data)
1262{
Jens Axboe0e034962021-06-17 10:08:11 -06001263 struct online_data *od = data;
Jens Axboe43c01fb2020-10-22 09:02:50 -06001264
Jens Axboe0e034962021-06-17 10:08:11 -06001265 if (od->online)
1266 cpumask_set_cpu(od->cpu, worker->wqe->cpu_mask);
1267 else
1268 cpumask_clear_cpu(od->cpu, worker->wqe->cpu_mask);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001269 return false;
1270}
1271
Jens Axboe0e034962021-06-17 10:08:11 -06001272static int __io_wq_cpu_online(struct io_wq *wq, unsigned int cpu, bool online)
1273{
1274 struct online_data od = {
1275 .cpu = cpu,
1276 .online = online
1277 };
1278 int i;
1279
1280 rcu_read_lock();
1281 for_each_node(i)
1282 io_wq_for_each_worker(wq->wqes[i], io_wq_worker_affinity, &od);
1283 rcu_read_unlock();
1284 return 0;
1285}
1286
Jens Axboe43c01fb2020-10-22 09:02:50 -06001287static int io_wq_cpu_online(unsigned int cpu, struct hlist_node *node)
1288{
1289 struct io_wq *wq = hlist_entry_safe(node, struct io_wq, cpuhp_node);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001290
Jens Axboe0e034962021-06-17 10:08:11 -06001291 return __io_wq_cpu_online(wq, cpu, true);
1292}
1293
1294static int io_wq_cpu_offline(unsigned int cpu, struct hlist_node *node)
1295{
1296 struct io_wq *wq = hlist_entry_safe(node, struct io_wq, cpuhp_node);
1297
1298 return __io_wq_cpu_online(wq, cpu, false);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001299}
1300
Jens Axboefe764212021-06-17 10:19:54 -06001301int io_wq_cpu_affinity(struct io_wq *wq, cpumask_var_t mask)
1302{
1303 int i;
1304
1305 rcu_read_lock();
1306 for_each_node(i) {
1307 struct io_wqe *wqe = wq->wqes[i];
1308
1309 if (mask)
1310 cpumask_copy(wqe->cpu_mask, mask);
1311 else
1312 cpumask_copy(wqe->cpu_mask, cpumask_of_node(i));
1313 }
1314 rcu_read_unlock();
1315 return 0;
1316}
1317
Jens Axboe2e480052021-08-27 11:33:19 -06001318/*
1319 * Set max number of unbounded workers, returns old value. If new_count is 0,
1320 * then just return the old value.
1321 */
1322int io_wq_max_workers(struct io_wq *wq, int *new_count)
1323{
Beld Zhang71c9ce22021-11-02 12:32:08 -06001324 int prev[IO_WQ_ACCT_NR];
1325 bool first_node = true;
1326 int i, node;
Jens Axboe2e480052021-08-27 11:33:19 -06001327
Eugene Syromiatnikovdd47c102021-09-13 17:44:15 +02001328 BUILD_BUG_ON((int) IO_WQ_ACCT_BOUND != (int) IO_WQ_BOUND);
1329 BUILD_BUG_ON((int) IO_WQ_ACCT_UNBOUND != (int) IO_WQ_UNBOUND);
1330 BUILD_BUG_ON((int) IO_WQ_ACCT_NR != 2);
1331
Jens Axboe2e480052021-08-27 11:33:19 -06001332 for (i = 0; i < 2; i++) {
1333 if (new_count[i] > task_rlimit(current, RLIMIT_NPROC))
1334 new_count[i] = task_rlimit(current, RLIMIT_NPROC);
1335 }
1336
Beld Zhang71c9ce22021-11-02 12:32:08 -06001337 for (i = 0; i < IO_WQ_ACCT_NR; i++)
1338 prev[i] = 0;
1339
Jens Axboe2e480052021-08-27 11:33:19 -06001340 rcu_read_lock();
1341 for_each_node(node) {
Pavel Begunkovbc369922021-10-19 20:31:26 +01001342 struct io_wqe *wqe = wq->wqes[node];
Jens Axboe2e480052021-08-27 11:33:19 -06001343 struct io_wqe_acct *acct;
1344
Pavel Begunkovbc369922021-10-19 20:31:26 +01001345 raw_spin_lock(&wqe->lock);
Jens Axboef95dc202021-08-31 13:57:32 -06001346 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
Pavel Begunkovbc369922021-10-19 20:31:26 +01001347 acct = &wqe->acct[i];
Beld Zhang71c9ce22021-11-02 12:32:08 -06001348 if (first_node)
1349 prev[i] = max_t(int, acct->max_workers, prev[i]);
Jens Axboe2e480052021-08-27 11:33:19 -06001350 if (new_count[i])
1351 acct->max_workers = new_count[i];
Jens Axboe2e480052021-08-27 11:33:19 -06001352 }
Pavel Begunkovbc369922021-10-19 20:31:26 +01001353 raw_spin_unlock(&wqe->lock);
Beld Zhang71c9ce22021-11-02 12:32:08 -06001354 first_node = false;
Jens Axboe2e480052021-08-27 11:33:19 -06001355 }
1356 rcu_read_unlock();
Beld Zhang71c9ce22021-11-02 12:32:08 -06001357
1358 for (i = 0; i < IO_WQ_ACCT_NR; i++)
1359 new_count[i] = prev[i];
1360
Jens Axboe2e480052021-08-27 11:33:19 -06001361 return 0;
1362}
1363
Jens Axboe43c01fb2020-10-22 09:02:50 -06001364static __init int io_wq_init(void)
1365{
1366 int ret;
1367
1368 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "io-wq/online",
Jens Axboe0e034962021-06-17 10:08:11 -06001369 io_wq_cpu_online, io_wq_cpu_offline);
Jens Axboe43c01fb2020-10-22 09:02:50 -06001370 if (ret < 0)
1371 return ret;
1372 io_wq_online = ret;
1373 return 0;
1374}
1375subsys_initcall(io_wq_init);