KVM: powerpc: Use Makefile.kvm for common files
[linux-2.6-microblaze.git] / fs / io-wq.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Basic worker thread pool for io_uring
4  *
5  * Copyright (C) 2019 Jens Axboe
6  *
7  */
8 #include <linux/kernel.h>
9 #include <linux/init.h>
10 #include <linux/errno.h>
11 #include <linux/sched/signal.h>
12 #include <linux/percpu.h>
13 #include <linux/slab.h>
14 #include <linux/rculist_nulls.h>
15 #include <linux/cpu.h>
16 #include <linux/tracehook.h>
17 #include <linux/audit.h>
18 #include <uapi/linux/io_uring.h>
19
20 #include "io-wq.h"
21
22 #define WORKER_IDLE_TIMEOUT     (5 * HZ)
23
24 enum {
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 */
28         IO_WORKER_F_BOUND       = 8,    /* is doing bounded work */
29 };
30
31 enum {
32         IO_WQ_BIT_EXIT          = 0,    /* wq exiting */
33 };
34
35 enum {
36         IO_ACCT_STALLED_BIT     = 0,    /* stalled on hash */
37 };
38
39 /*
40  * One for each thread in a wqe pool
41  */
42 struct io_worker {
43         refcount_t ref;
44         unsigned flags;
45         struct hlist_nulls_node nulls_node;
46         struct list_head all_list;
47         struct task_struct *task;
48         struct io_wqe *wqe;
49
50         struct io_wq_work *cur_work;
51         spinlock_t lock;
52
53         struct completion ref_done;
54
55         unsigned long create_state;
56         struct callback_head create_work;
57         int create_index;
58
59         union {
60                 struct rcu_head rcu;
61                 struct work_struct work;
62         };
63 };
64
65 #if BITS_PER_LONG == 64
66 #define IO_WQ_HASH_ORDER        6
67 #else
68 #define IO_WQ_HASH_ORDER        5
69 #endif
70
71 #define IO_WQ_NR_HASH_BUCKETS   (1u << IO_WQ_HASH_ORDER)
72
73 struct io_wqe_acct {
74         unsigned nr_workers;
75         unsigned max_workers;
76         int index;
77         atomic_t nr_running;
78         struct io_wq_work_list work_list;
79         unsigned long flags;
80 };
81
82 enum {
83         IO_WQ_ACCT_BOUND,
84         IO_WQ_ACCT_UNBOUND,
85         IO_WQ_ACCT_NR,
86 };
87
88 /*
89  * Per-node worker thread pool
90  */
91 struct io_wqe {
92         raw_spinlock_t lock;
93         struct io_wqe_acct acct[2];
94
95         int node;
96
97         struct hlist_nulls_head free_list;
98         struct list_head all_list;
99
100         struct wait_queue_entry wait;
101
102         struct io_wq *wq;
103         struct io_wq_work *hash_tail[IO_WQ_NR_HASH_BUCKETS];
104
105         cpumask_var_t cpu_mask;
106 };
107
108 /*
109  * Per io_wq state
110   */
111 struct io_wq {
112         unsigned long state;
113
114         free_work_fn *free_work;
115         io_wq_work_fn *do_work;
116
117         struct io_wq_hash *hash;
118
119         atomic_t worker_refs;
120         struct completion worker_done;
121
122         struct hlist_node cpuhp_node;
123
124         struct task_struct *task;
125
126         struct io_wqe *wqes[];
127 };
128
129 static enum cpuhp_state io_wq_online;
130
131 struct 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
139 static bool create_io_worker(struct io_wq *wq, struct io_wqe *wqe, int index);
140 static void io_wqe_dec_running(struct io_worker *worker);
141 static bool io_acct_cancel_pending_work(struct io_wqe *wqe,
142                                         struct io_wqe_acct *acct,
143                                         struct io_cb_cancel_data *match);
144 static void create_worker_cb(struct callback_head *cb);
145
146 static bool io_worker_get(struct io_worker *worker)
147 {
148         return refcount_inc_not_zero(&worker->ref);
149 }
150
151 static void io_worker_release(struct io_worker *worker)
152 {
153         if (refcount_dec_and_test(&worker->ref))
154                 complete(&worker->ref_done);
155 }
156
157 static 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
162 static inline struct io_wqe_acct *io_work_get_acct(struct io_wqe *wqe,
163                                                    struct io_wq_work *work)
164 {
165         return io_get_acct(wqe, !(work->flags & IO_WQ_WORK_UNBOUND));
166 }
167
168 static inline struct io_wqe_acct *io_wqe_get_acct(struct io_worker *worker)
169 {
170         return io_get_acct(worker->wqe, worker->flags & IO_WORKER_F_BOUND);
171 }
172
173 static 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
179 static 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
194 static 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
204 static void io_worker_exit(struct io_worker *worker)
205 {
206         struct io_wqe *wqe = worker->wqe;
207         struct io_wq *wq = wqe->wq;
208
209         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         }
217
218         io_worker_release(worker);
219         wait_for_completion(&worker->ref_done);
220
221         raw_spin_lock(&wqe->lock);
222         if (worker->flags & IO_WORKER_F_FREE)
223                 hlist_nulls_del_rcu(&worker->nulls_node);
224         list_del_rcu(&worker->all_list);
225         preempt_disable();
226         io_wqe_dec_running(worker);
227         worker->flags = 0;
228         current->flags &= ~PF_IO_WORKER;
229         preempt_enable();
230         raw_spin_unlock(&wqe->lock);
231
232         kfree_rcu(worker, rcu);
233         io_worker_ref_put(wqe->wq);
234         do_exit(0);
235 }
236
237 static inline bool io_acct_run_queue(struct io_wqe_acct *acct)
238 {
239         if (!wq_list_empty(&acct->work_list) &&
240             !test_bit(IO_ACCT_STALLED_BIT, &acct->flags))
241                 return true;
242         return false;
243 }
244
245 /*
246  * Check head of free list for an available worker. If one isn't available,
247  * caller must create one.
248  */
249 static bool io_wqe_activate_free_worker(struct io_wqe *wqe,
250                                         struct io_wqe_acct *acct)
251         __must_hold(RCU)
252 {
253         struct hlist_nulls_node *n;
254         struct io_worker *worker;
255
256         /*
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;
264                 if (io_wqe_get_acct(worker) != acct) {
265                         io_worker_release(worker);
266                         continue;
267                 }
268                 if (wake_up_process(worker->task)) {
269                         io_worker_release(worker);
270                         return true;
271                 }
272                 io_worker_release(worker);
273         }
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
280  * below the max number of workers, create one.
281  */
282 static bool io_wqe_create_worker(struct io_wqe *wqe, struct io_wqe_acct *acct)
283 {
284         /*
285          * Most likely an attempt to queue unbounded work on an io_wq that
286          * wasn't setup with any unbounded workers.
287          */
288         if (unlikely(!acct->max_workers))
289                 pr_warn_once("io-wq is not configured for unbound workers");
290
291         raw_spin_lock(&wqe->lock);
292         if (acct->nr_workers >= acct->max_workers) {
293                 raw_spin_unlock(&wqe->lock);
294                 return true;
295         }
296         acct->nr_workers++;
297         raw_spin_unlock(&wqe->lock);
298         atomic_inc(&acct->nr_running);
299         atomic_inc(&wqe->wq->worker_refs);
300         return create_io_worker(wqe->wq, wqe, acct->index);
301 }
302
303 static void io_wqe_inc_running(struct io_worker *worker)
304 {
305         struct io_wqe_acct *acct = io_wqe_get_acct(worker);
306
307         atomic_inc(&acct->nr_running);
308 }
309
310 static void create_worker_cb(struct callback_head *cb)
311 {
312         struct io_worker *worker;
313         struct io_wq *wq;
314         struct io_wqe *wqe;
315         struct io_wqe_acct *acct;
316         bool do_create = false;
317
318         worker = container_of(cb, struct io_worker, create_work);
319         wqe = worker->wqe;
320         wq = wqe->wq;
321         acct = &wqe->acct[worker->create_index];
322         raw_spin_lock(&wqe->lock);
323         if (acct->nr_workers < acct->max_workers) {
324                 acct->nr_workers++;
325                 do_create = true;
326         }
327         raw_spin_unlock(&wqe->lock);
328         if (do_create) {
329                 create_io_worker(wq, wqe, worker->create_index);
330         } else {
331                 atomic_dec(&acct->nr_running);
332                 io_worker_ref_put(wq);
333         }
334         clear_bit_unlock(0, &worker->create_state);
335         io_worker_release(worker);
336 }
337
338 static bool io_queue_worker_create(struct io_worker *worker,
339                                    struct io_wqe_acct *acct,
340                                    task_work_func_t func)
341 {
342         struct io_wqe *wqe = worker->wqe;
343         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;
348         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;
359
360         init_task_work(&worker->create_work, func);
361         worker->create_index = acct->index;
362         if (!task_work_add(wq->task, &worker->create_work, TWA_SIGNAL)) {
363                 clear_bit_unlock(0, &worker->create_state);
364                 return true;
365         }
366         clear_bit_unlock(0, &worker->create_state);
367 fail_release:
368         io_worker_release(worker);
369 fail:
370         atomic_dec(&acct->nr_running);
371         io_worker_ref_put(wq);
372         return false;
373 }
374
375 static void io_wqe_dec_running(struct io_worker *worker)
376         __must_hold(wqe->lock)
377 {
378         struct io_wqe_acct *acct = io_wqe_get_acct(worker);
379         struct io_wqe *wqe = worker->wqe;
380
381         if (!(worker->flags & IO_WORKER_F_UP))
382                 return;
383
384         if (atomic_dec_and_test(&acct->nr_running) && io_acct_run_queue(acct)) {
385                 atomic_inc(&acct->nr_running);
386                 atomic_inc(&wqe->wq->worker_refs);
387                 io_queue_worker_create(worker, acct, create_worker_cb);
388         }
389 }
390
391 /*
392  * Worker will start processing some work. Move it to the busy list, if
393  * it's currently on the freelist
394  */
395 static 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);
402         }
403 }
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  */
412 static void __io_worker_idle(struct io_wqe *wqe, struct io_worker *worker)
413         __must_hold(wqe->lock)
414 {
415         if (!(worker->flags & IO_WORKER_F_FREE)) {
416                 worker->flags |= IO_WORKER_F_FREE;
417                 hlist_nulls_add_head_rcu(&worker->nulls_node, &wqe->free_list);
418         }
419 }
420
421 static inline unsigned int io_get_work_hash(struct io_wq_work *work)
422 {
423         return work->flags >> IO_WQ_HASH_SHIFT;
424 }
425
426 static bool io_wait_on_hash(struct io_wqe *wqe, unsigned int hash)
427 {
428         struct io_wq *wq = wqe->wq;
429         bool ret = false;
430
431         spin_lock_irq(&wq->hash->wait.lock);
432         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);
437                         ret = true;
438                 }
439         }
440         spin_unlock_irq(&wq->hash->wait.lock);
441         return ret;
442 }
443
444 static struct io_wq_work *io_get_next_work(struct io_wqe_acct *acct,
445                                            struct io_worker *worker)
446         __must_hold(wqe->lock)
447 {
448         struct io_wq_work_node *node, *prev;
449         struct io_wq_work *work, *tail;
450         unsigned int stall_hash = -1U;
451         struct io_wqe *wqe = worker->wqe;
452
453         wq_list_for_each(node, prev, &acct->work_list) {
454                 unsigned int hash;
455
456                 work = container_of(node, struct io_wq_work, list);
457
458                 /* not hashed, can run anytime */
459                 if (!io_wq_is_hashed(work)) {
460                         wq_list_del(&acct->work_list, node, prev);
461                         return work;
462                 }
463
464                 hash = io_get_work_hash(work);
465                 /* 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)) {
470                         wqe->hash_tail[hash] = NULL;
471                         wq_list_cut(&acct->work_list, &tail->list, prev);
472                         return work;
473                 }
474                 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) {
481                 bool unstalled;
482
483                 /*
484                  * Set this before dropping the lock to avoid racing with new
485                  * work being added and clearing the stalled bit.
486                  */
487                 set_bit(IO_ACCT_STALLED_BIT, &acct->flags);
488                 raw_spin_unlock(&wqe->lock);
489                 unstalled = io_wait_on_hash(wqe, stall_hash);
490                 raw_spin_lock(&wqe->lock);
491                 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                 }
496         }
497
498         return NULL;
499 }
500
501 static bool io_flush_signals(void)
502 {
503         if (unlikely(test_thread_flag(TIF_NOTIFY_SIGNAL))) {
504                 __set_current_state(TASK_RUNNING);
505                 tracehook_notify_signal();
506                 return true;
507         }
508         return false;
509 }
510
511 static void io_assign_current_work(struct io_worker *worker,
512                                    struct io_wq_work *work)
513 {
514         if (work) {
515                 io_flush_signals();
516                 cond_resched();
517         }
518
519         spin_lock(&worker->lock);
520         worker->cur_work = work;
521         spin_unlock(&worker->lock);
522 }
523
524 static void io_wqe_enqueue(struct io_wqe *wqe, struct io_wq_work *work);
525
526 static void io_worker_handle_work(struct io_worker *worker)
527         __releases(wqe->lock)
528 {
529         struct io_wqe_acct *acct = io_wqe_get_acct(worker);
530         struct io_wqe *wqe = worker->wqe;
531         struct io_wq *wq = wqe->wq;
532         bool do_kill = test_bit(IO_WQ_BIT_EXIT, &wq->state);
533
534         do {
535                 struct io_wq_work *work;
536 get_next:
537                 /*
538                  * 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                  */
544                 work = io_get_next_work(acct, worker);
545                 if (work)
546                         __io_worker_busy(wqe, worker, work);
547
548                 raw_spin_unlock(&wqe->lock);
549                 if (!work)
550                         break;
551                 io_assign_current_work(worker, work);
552                 __set_current_state(TASK_RUNNING);
553
554                 /* handle a whole dependent link */
555                 do {
556                         struct io_wq_work *next_hashed, *linked;
557                         unsigned int hash = io_get_work_hash(work);
558
559                         next_hashed = wq_next_work(work);
560
561                         if (unlikely(do_kill) && (work->flags & IO_WQ_WORK_UNBOUND))
562                                 work->flags |= IO_WQ_WORK_CANCEL;
563                         wq->do_work(work);
564                         io_assign_current_work(worker, NULL);
565
566                         linked = wq->free_work(work);
567                         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);
573                         if (linked)
574                                 io_wqe_enqueue(wqe, linked);
575
576                         if (hash != -1U && !next_hashed) {
577                                 /* serialize hash clear with wake_up() */
578                                 spin_lock_irq(&wq->hash->wait.lock);
579                                 clear_bit(hash, &wq->hash->map);
580                                 clear_bit(IO_ACCT_STALLED_BIT, &acct->flags);
581                                 spin_unlock_irq(&wq->hash->wait.lock);
582                                 if (wq_has_sleeper(&wq->hash->wait))
583                                         wake_up(&wq->hash->wait);
584                                 raw_spin_lock(&wqe->lock);
585                                 /* skip unnecessary unlock-lock wqe->lock */
586                                 if (!work)
587                                         goto get_next;
588                                 raw_spin_unlock(&wqe->lock);
589                         }
590                 } while (work);
591
592                 raw_spin_lock(&wqe->lock);
593         } while (1);
594 }
595
596 static int io_wqe_worker(void *data)
597 {
598         struct io_worker *worker = data;
599         struct io_wqe_acct *acct = io_wqe_get_acct(worker);
600         struct io_wqe *wqe = worker->wqe;
601         struct io_wq *wq = wqe->wq;
602         bool last_timeout = false;
603         char buf[TASK_COMM_LEN];
604
605         worker->flags |= (IO_WORKER_F_UP | IO_WORKER_F_RUNNING);
606
607         snprintf(buf, sizeof(buf), "iou-wrk-%d", wq->task->pid);
608         set_task_comm(current, buf);
609
610         audit_alloc_kernel(current);
611
612         while (!test_bit(IO_WQ_BIT_EXIT, &wq->state)) {
613                 long ret;
614
615                 set_current_state(TASK_INTERRUPTIBLE);
616 loop:
617                 raw_spin_lock(&wqe->lock);
618                 if (io_acct_run_queue(acct)) {
619                         io_worker_handle_work(worker);
620                         goto loop;
621                 }
622                 /* timed out, exit unless we're the last worker */
623                 if (last_timeout && acct->nr_workers > 1) {
624                         acct->nr_workers--;
625                         raw_spin_unlock(&wqe->lock);
626                         __set_current_state(TASK_RUNNING);
627                         break;
628                 }
629                 last_timeout = false;
630                 __io_worker_idle(wqe, worker);
631                 raw_spin_unlock(&wqe->lock);
632                 if (io_flush_signals())
633                         continue;
634                 ret = schedule_timeout(WORKER_IDLE_TIMEOUT);
635                 if (signal_pending(current)) {
636                         struct ksignal ksig;
637
638                         if (!get_signal(&ksig))
639                                 continue;
640                         break;
641                 }
642                 last_timeout = !ret;
643         }
644
645         if (test_bit(IO_WQ_BIT_EXIT, &wq->state)) {
646                 raw_spin_lock(&wqe->lock);
647                 io_worker_handle_work(worker);
648         }
649
650         audit_free(current);
651         io_worker_exit(worker);
652         return 0;
653 }
654
655 /*
656  * Called when a worker is scheduled in. Mark us as currently running.
657  */
658 void io_wq_worker_running(struct task_struct *tsk)
659 {
660         struct io_worker *worker = tsk->pf_io_worker;
661
662         if (!worker)
663                 return;
664         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;
669         io_wqe_inc_running(worker);
670 }
671
672 /*
673  * Called when worker is going to sleep. If there are no workers currently
674  * running and we have work pending, wake up a free one or create a new one.
675  */
676 void io_wq_worker_sleeping(struct task_struct *tsk)
677 {
678         struct io_worker *worker = tsk->pf_io_worker;
679
680         if (!worker)
681                 return;
682         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
689         raw_spin_lock(&worker->wqe->lock);
690         io_wqe_dec_running(worker);
691         raw_spin_unlock(&worker->wqe->lock);
692 }
693
694 static void io_init_new_worker(struct io_wqe *wqe, struct io_worker *worker,
695                                struct task_struct *tsk)
696 {
697         tsk->pf_io_worker = worker;
698         worker->task = tsk;
699         set_cpus_allowed_ptr(tsk, wqe->cpu_mask);
700         tsk->flags |= PF_NO_SETAFFINITY;
701
702         raw_spin_lock(&wqe->lock);
703         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;
706         raw_spin_unlock(&wqe->lock);
707         wake_up_new_task(tsk);
708 }
709
710 static bool io_wq_work_match_all(struct io_wq_work *work, void *data)
711 {
712         return true;
713 }
714
715 static inline bool io_should_retry_thread(long err)
716 {
717         /*
718          * Prevent perpetual task_work retry, if the task (or its group) is
719          * exiting.
720          */
721         if (fatal_signal_pending(current))
722                 return false;
723
724         switch (err) {
725         case -EAGAIN:
726         case -ERESTARTSYS:
727         case -ERESTARTNOINTR:
728         case -ERESTARTNOHAND:
729                 return true;
730         default:
731                 return false;
732         }
733 }
734
735 static void create_worker_cont(struct callback_head *cb)
736 {
737         struct io_worker *worker;
738         struct task_struct *tsk;
739         struct io_wqe *wqe;
740
741         worker = container_of(cb, struct io_worker, create_work);
742         clear_bit_unlock(0, &worker->create_state);
743         wqe = worker->wqe;
744         tsk = create_io_thread(io_wqe_worker, worker, wqe->node);
745         if (!IS_ERR(tsk)) {
746                 io_init_new_worker(wqe, worker, tsk);
747                 io_worker_release(worker);
748                 return;
749         } else if (!io_should_retry_thread(PTR_ERR(tsk))) {
750                 struct io_wqe_acct *acct = io_wqe_get_acct(worker);
751
752                 atomic_dec(&acct->nr_running);
753                 raw_spin_lock(&wqe->lock);
754                 acct->nr_workers--;
755                 if (!acct->nr_workers) {
756                         struct io_cb_cancel_data match = {
757                                 .fn             = io_wq_work_match_all,
758                                 .cancel_all     = true,
759                         };
760
761                         while (io_acct_cancel_pending_work(wqe, acct, &match))
762                                 raw_spin_lock(&wqe->lock);
763                 }
764                 raw_spin_unlock(&wqe->lock);
765                 io_worker_ref_put(wqe->wq);
766                 kfree(worker);
767                 return;
768         }
769
770         /* re-create attempts grab a new worker ref, drop the existing one */
771         io_worker_release(worker);
772         schedule_work(&worker->work);
773 }
774
775 static void io_workqueue_create(struct work_struct *work)
776 {
777         struct io_worker *worker = container_of(work, struct io_worker, work);
778         struct io_wqe_acct *acct = io_wqe_get_acct(worker);
779
780         if (!io_queue_worker_create(worker, acct, create_worker_cont))
781                 kfree(worker);
782 }
783
784 static bool create_io_worker(struct io_wq *wq, struct io_wqe *wqe, int index)
785 {
786         struct io_wqe_acct *acct = &wqe->acct[index];
787         struct io_worker *worker;
788         struct task_struct *tsk;
789
790         __set_current_state(TASK_RUNNING);
791
792         worker = kzalloc_node(sizeof(*worker), GFP_KERNEL, wqe->node);
793         if (!worker) {
794 fail:
795                 atomic_dec(&acct->nr_running);
796                 raw_spin_lock(&wqe->lock);
797                 acct->nr_workers--;
798                 raw_spin_unlock(&wqe->lock);
799                 io_worker_ref_put(wq);
800                 return false;
801         }
802
803         refcount_set(&worker->ref, 1);
804         worker->wqe = wqe;
805         spin_lock_init(&worker->lock);
806         init_completion(&worker->ref_done);
807
808         if (index == IO_WQ_ACCT_BOUND)
809                 worker->flags |= IO_WORKER_F_BOUND;
810
811         tsk = create_io_thread(io_wqe_worker, worker, wqe->node);
812         if (!IS_ERR(tsk)) {
813                 io_init_new_worker(wqe, worker, tsk);
814         } else if (!io_should_retry_thread(PTR_ERR(tsk))) {
815                 kfree(worker);
816                 goto fail;
817         } else {
818                 INIT_WORK(&worker->work, io_workqueue_create);
819                 schedule_work(&worker->work);
820         }
821
822         return true;
823 }
824
825 /*
826  * Iterate the passed in list and call the specific function for each
827  * worker that isn't exiting
828  */
829 static bool io_wq_for_each_worker(struct io_wqe *wqe,
830                                   bool (*func)(struct io_worker *, void *),
831                                   void *data)
832 {
833         struct io_worker *worker;
834         bool ret = false;
835
836         list_for_each_entry_rcu(worker, &wqe->all_list, all_list) {
837                 if (io_worker_get(worker)) {
838                         /* no task if node is/was offline */
839                         if (worker->task)
840                                 ret = func(worker, data);
841                         io_worker_release(worker);
842                         if (ret)
843                                 break;
844                 }
845         }
846
847         return ret;
848 }
849
850 static bool io_wq_worker_wake(struct io_worker *worker, void *data)
851 {
852         set_notify_signal(worker->task);
853         wake_up_process(worker->task);
854         return false;
855 }
856
857 static void io_run_cancel(struct io_wq_work *work, struct io_wqe *wqe)
858 {
859         struct io_wq *wq = wqe->wq;
860
861         do {
862                 work->flags |= IO_WQ_WORK_CANCEL;
863                 wq->do_work(work);
864                 work = wq->free_work(work);
865         } while (work);
866 }
867
868 static void io_wqe_insert_work(struct io_wqe *wqe, struct io_wq_work *work)
869 {
870         struct io_wqe_acct *acct = io_work_get_acct(wqe, work);
871         unsigned int hash;
872         struct io_wq_work *tail;
873
874         if (!io_wq_is_hashed(work)) {
875 append:
876                 wq_list_add_tail(&work->list, &acct->work_list);
877                 return;
878         }
879
880         hash = io_get_work_hash(work);
881         tail = wqe->hash_tail[hash];
882         wqe->hash_tail[hash] = work;
883         if (!tail)
884                 goto append;
885
886         wq_list_add_after(&work->list, &tail->list, &acct->work_list);
887 }
888
889 static bool io_wq_work_match_item(struct io_wq_work *work, void *data)
890 {
891         return work == data;
892 }
893
894 static void io_wqe_enqueue(struct io_wqe *wqe, struct io_wq_work *work)
895 {
896         struct io_wqe_acct *acct = io_work_get_acct(wqe, work);
897         unsigned work_flags = work->flags;
898         bool do_create;
899
900         /*
901          * If io-wq is exiting for this task, or if the request has explicitly
902          * been marked as one that should not get executed, cancel it here.
903          */
904         if (test_bit(IO_WQ_BIT_EXIT, &wqe->wq->state) ||
905             (work->flags & IO_WQ_WORK_CANCEL)) {
906                 io_run_cancel(work, wqe);
907                 return;
908         }
909
910         raw_spin_lock(&wqe->lock);
911         io_wqe_insert_work(wqe, work);
912         clear_bit(IO_ACCT_STALLED_BIT, &acct->flags);
913
914         rcu_read_lock();
915         do_create = !io_wqe_activate_free_worker(wqe, acct);
916         rcu_read_unlock();
917
918         raw_spin_unlock(&wqe->lock);
919
920         if (do_create && ((work_flags & IO_WQ_WORK_CONCURRENT) ||
921             !atomic_read(&acct->nr_running))) {
922                 bool did_create;
923
924                 did_create = io_wqe_create_worker(wqe, acct);
925                 if (likely(did_create))
926                         return;
927
928                 raw_spin_lock(&wqe->lock);
929                 /* fatal condition, failed to create the first worker */
930                 if (!acct->nr_workers) {
931                         struct io_cb_cancel_data match = {
932                                 .fn             = io_wq_work_match_item,
933                                 .data           = work,
934                                 .cancel_all     = false,
935                         };
936
937                         if (io_acct_cancel_pending_work(wqe, acct, &match))
938                                 raw_spin_lock(&wqe->lock);
939                 }
940                 raw_spin_unlock(&wqe->lock);
941         }
942 }
943
944 void io_wq_enqueue(struct io_wq *wq, struct io_wq_work *work)
945 {
946         struct io_wqe *wqe = wq->wqes[numa_node_id()];
947
948         io_wqe_enqueue(wqe, work);
949 }
950
951 /*
952  * Work items that hash to the same value will not be done in parallel.
953  * Used to limit concurrent writes, generally hashed by inode.
954  */
955 void io_wq_hash_work(struct io_wq_work *work, void *val)
956 {
957         unsigned int bit;
958
959         bit = hash_ptr(val, IO_WQ_HASH_ORDER);
960         work->flags |= (IO_WQ_WORK_HASHED | (bit << IO_WQ_HASH_SHIFT));
961 }
962
963 static bool io_wq_worker_cancel(struct io_worker *worker, void *data)
964 {
965         struct io_cb_cancel_data *match = data;
966
967         /*
968          * Hold the lock to avoid ->cur_work going out of scope, caller
969          * may dereference the passed in work.
970          */
971         spin_lock(&worker->lock);
972         if (worker->cur_work &&
973             match->fn(worker->cur_work, match->data)) {
974                 set_notify_signal(worker->task);
975                 match->nr_running++;
976         }
977         spin_unlock(&worker->lock);
978
979         return match->nr_running && !match->cancel_all;
980 }
981
982 static inline void io_wqe_remove_pending(struct io_wqe *wqe,
983                                          struct io_wq_work *work,
984                                          struct io_wq_work_node *prev)
985 {
986         struct io_wqe_acct *acct = io_work_get_acct(wqe, work);
987         unsigned int hash = io_get_work_hash(work);
988         struct io_wq_work *prev_work = NULL;
989
990         if (io_wq_is_hashed(work) && work == wqe->hash_tail[hash]) {
991                 if (prev)
992                         prev_work = container_of(prev, struct io_wq_work, list);
993                 if (prev_work && io_get_work_hash(prev_work) == hash)
994                         wqe->hash_tail[hash] = prev_work;
995                 else
996                         wqe->hash_tail[hash] = NULL;
997         }
998         wq_list_del(&acct->work_list, &work->list, prev);
999 }
1000
1001 static bool io_acct_cancel_pending_work(struct io_wqe *wqe,
1002                                         struct io_wqe_acct *acct,
1003                                         struct io_cb_cancel_data *match)
1004         __releases(wqe->lock)
1005 {
1006         struct io_wq_work_node *node, *prev;
1007         struct io_wq_work *work;
1008
1009         wq_list_for_each(node, prev, &acct->work_list) {
1010                 work = container_of(node, struct io_wq_work, list);
1011                 if (!match->fn(work, match->data))
1012                         continue;
1013                 io_wqe_remove_pending(wqe, work, prev);
1014                 raw_spin_unlock(&wqe->lock);
1015                 io_run_cancel(work, wqe);
1016                 match->nr_pending++;
1017                 /* not safe to continue after unlock */
1018                 return true;
1019         }
1020
1021         return false;
1022 }
1023
1024 static void io_wqe_cancel_pending_work(struct io_wqe *wqe,
1025                                        struct io_cb_cancel_data *match)
1026 {
1027         int i;
1028 retry:
1029         raw_spin_lock(&wqe->lock);
1030         for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1031                 struct io_wqe_acct *acct = io_get_acct(wqe, i == 0);
1032
1033                 if (io_acct_cancel_pending_work(wqe, acct, match)) {
1034                         if (match->cancel_all)
1035                                 goto retry;
1036                         return;
1037                 }
1038         }
1039         raw_spin_unlock(&wqe->lock);
1040 }
1041
1042 static void io_wqe_cancel_running_work(struct io_wqe *wqe,
1043                                        struct io_cb_cancel_data *match)
1044 {
1045         rcu_read_lock();
1046         io_wq_for_each_worker(wqe, io_wq_worker_cancel, match);
1047         rcu_read_unlock();
1048 }
1049
1050 enum io_wq_cancel io_wq_cancel_cb(struct io_wq *wq, work_cancel_fn *cancel,
1051                                   void *data, bool cancel_all)
1052 {
1053         struct io_cb_cancel_data match = {
1054                 .fn             = cancel,
1055                 .data           = data,
1056                 .cancel_all     = cancel_all,
1057         };
1058         int node;
1059
1060         /*
1061          * First check pending list, if we're lucky we can just remove it
1062          * from there. CANCEL_OK means that the work is returned as-new,
1063          * no completion will be posted for it.
1064          */
1065         for_each_node(node) {
1066                 struct io_wqe *wqe = wq->wqes[node];
1067
1068                 io_wqe_cancel_pending_work(wqe, &match);
1069                 if (match.nr_pending && !match.cancel_all)
1070                         return IO_WQ_CANCEL_OK;
1071         }
1072
1073         /*
1074          * Now check if a free (going busy) or busy worker has the work
1075          * currently running. If we find it there, we'll return CANCEL_RUNNING
1076          * as an indication that we attempt to signal cancellation. The
1077          * completion will run normally in this case.
1078          */
1079         for_each_node(node) {
1080                 struct io_wqe *wqe = wq->wqes[node];
1081
1082                 io_wqe_cancel_running_work(wqe, &match);
1083                 if (match.nr_running && !match.cancel_all)
1084                         return IO_WQ_CANCEL_RUNNING;
1085         }
1086
1087         if (match.nr_running)
1088                 return IO_WQ_CANCEL_RUNNING;
1089         if (match.nr_pending)
1090                 return IO_WQ_CANCEL_OK;
1091         return IO_WQ_CANCEL_NOTFOUND;
1092 }
1093
1094 static int io_wqe_hash_wake(struct wait_queue_entry *wait, unsigned mode,
1095                             int sync, void *key)
1096 {
1097         struct io_wqe *wqe = container_of(wait, struct io_wqe, wait);
1098         int i;
1099
1100         list_del_init(&wait->entry);
1101
1102         rcu_read_lock();
1103         for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1104                 struct io_wqe_acct *acct = &wqe->acct[i];
1105
1106                 if (test_and_clear_bit(IO_ACCT_STALLED_BIT, &acct->flags))
1107                         io_wqe_activate_free_worker(wqe, acct);
1108         }
1109         rcu_read_unlock();
1110         return 1;
1111 }
1112
1113 struct io_wq *io_wq_create(unsigned bounded, struct io_wq_data *data)
1114 {
1115         int ret, node, i;
1116         struct io_wq *wq;
1117
1118         if (WARN_ON_ONCE(!data->free_work || !data->do_work))
1119                 return ERR_PTR(-EINVAL);
1120         if (WARN_ON_ONCE(!bounded))
1121                 return ERR_PTR(-EINVAL);
1122
1123         wq = kzalloc(struct_size(wq, wqes, nr_node_ids), GFP_KERNEL);
1124         if (!wq)
1125                 return ERR_PTR(-ENOMEM);
1126         ret = cpuhp_state_add_instance_nocalls(io_wq_online, &wq->cpuhp_node);
1127         if (ret)
1128                 goto err_wq;
1129
1130         refcount_inc(&data->hash->refs);
1131         wq->hash = data->hash;
1132         wq->free_work = data->free_work;
1133         wq->do_work = data->do_work;
1134
1135         ret = -ENOMEM;
1136         for_each_node(node) {
1137                 struct io_wqe *wqe;
1138                 int alloc_node = node;
1139
1140                 if (!node_online(alloc_node))
1141                         alloc_node = NUMA_NO_NODE;
1142                 wqe = kzalloc_node(sizeof(struct io_wqe), GFP_KERNEL, alloc_node);
1143                 if (!wqe)
1144                         goto err;
1145                 if (!alloc_cpumask_var(&wqe->cpu_mask, GFP_KERNEL))
1146                         goto err;
1147                 cpumask_copy(wqe->cpu_mask, cpumask_of_node(node));
1148                 wq->wqes[node] = wqe;
1149                 wqe->node = alloc_node;
1150                 wqe->acct[IO_WQ_ACCT_BOUND].max_workers = bounded;
1151                 wqe->acct[IO_WQ_ACCT_UNBOUND].max_workers =
1152                                         task_rlimit(current, RLIMIT_NPROC);
1153                 INIT_LIST_HEAD(&wqe->wait.entry);
1154                 wqe->wait.func = io_wqe_hash_wake;
1155                 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1156                         struct io_wqe_acct *acct = &wqe->acct[i];
1157
1158                         acct->index = i;
1159                         atomic_set(&acct->nr_running, 0);
1160                         INIT_WQ_LIST(&acct->work_list);
1161                 }
1162                 wqe->wq = wq;
1163                 raw_spin_lock_init(&wqe->lock);
1164                 INIT_HLIST_NULLS_HEAD(&wqe->free_list, 0);
1165                 INIT_LIST_HEAD(&wqe->all_list);
1166         }
1167
1168         wq->task = get_task_struct(data->task);
1169         atomic_set(&wq->worker_refs, 1);
1170         init_completion(&wq->worker_done);
1171         return wq;
1172 err:
1173         io_wq_put_hash(data->hash);
1174         cpuhp_state_remove_instance_nocalls(io_wq_online, &wq->cpuhp_node);
1175         for_each_node(node) {
1176                 if (!wq->wqes[node])
1177                         continue;
1178                 free_cpumask_var(wq->wqes[node]->cpu_mask);
1179                 kfree(wq->wqes[node]);
1180         }
1181 err_wq:
1182         kfree(wq);
1183         return ERR_PTR(ret);
1184 }
1185
1186 static bool io_task_work_match(struct callback_head *cb, void *data)
1187 {
1188         struct io_worker *worker;
1189
1190         if (cb->func != create_worker_cb && cb->func != create_worker_cont)
1191                 return false;
1192         worker = container_of(cb, struct io_worker, create_work);
1193         return worker->wqe->wq == data;
1194 }
1195
1196 void io_wq_exit_start(struct io_wq *wq)
1197 {
1198         set_bit(IO_WQ_BIT_EXIT, &wq->state);
1199 }
1200
1201 static void io_wq_exit_workers(struct io_wq *wq)
1202 {
1203         struct callback_head *cb;
1204         int node;
1205
1206         if (!wq->task)
1207                 return;
1208
1209         while ((cb = task_work_cancel_match(wq->task, io_task_work_match, wq)) != NULL) {
1210                 struct io_worker *worker;
1211
1212                 worker = container_of(cb, struct io_worker, create_work);
1213                 io_worker_cancel_cb(worker);
1214         }
1215
1216         rcu_read_lock();
1217         for_each_node(node) {
1218                 struct io_wqe *wqe = wq->wqes[node];
1219
1220                 io_wq_for_each_worker(wqe, io_wq_worker_wake, NULL);
1221         }
1222         rcu_read_unlock();
1223         io_worker_ref_put(wq);
1224         wait_for_completion(&wq->worker_done);
1225
1226         for_each_node(node) {
1227                 spin_lock_irq(&wq->hash->wait.lock);
1228                 list_del_init(&wq->wqes[node]->wait.entry);
1229                 spin_unlock_irq(&wq->hash->wait.lock);
1230         }
1231         put_task_struct(wq->task);
1232         wq->task = NULL;
1233 }
1234
1235 static void io_wq_destroy(struct io_wq *wq)
1236 {
1237         int node;
1238
1239         cpuhp_state_remove_instance_nocalls(io_wq_online, &wq->cpuhp_node);
1240
1241         for_each_node(node) {
1242                 struct io_wqe *wqe = wq->wqes[node];
1243                 struct io_cb_cancel_data match = {
1244                         .fn             = io_wq_work_match_all,
1245                         .cancel_all     = true,
1246                 };
1247                 io_wqe_cancel_pending_work(wqe, &match);
1248                 free_cpumask_var(wqe->cpu_mask);
1249                 kfree(wqe);
1250         }
1251         io_wq_put_hash(wq->hash);
1252         kfree(wq);
1253 }
1254
1255 void io_wq_put_and_exit(struct io_wq *wq)
1256 {
1257         WARN_ON_ONCE(!test_bit(IO_WQ_BIT_EXIT, &wq->state));
1258
1259         io_wq_exit_workers(wq);
1260         io_wq_destroy(wq);
1261 }
1262
1263 struct online_data {
1264         unsigned int cpu;
1265         bool online;
1266 };
1267
1268 static bool io_wq_worker_affinity(struct io_worker *worker, void *data)
1269 {
1270         struct online_data *od = data;
1271
1272         if (od->online)
1273                 cpumask_set_cpu(od->cpu, worker->wqe->cpu_mask);
1274         else
1275                 cpumask_clear_cpu(od->cpu, worker->wqe->cpu_mask);
1276         return false;
1277 }
1278
1279 static int __io_wq_cpu_online(struct io_wq *wq, unsigned int cpu, bool online)
1280 {
1281         struct online_data od = {
1282                 .cpu = cpu,
1283                 .online = online
1284         };
1285         int i;
1286
1287         rcu_read_lock();
1288         for_each_node(i)
1289                 io_wq_for_each_worker(wq->wqes[i], io_wq_worker_affinity, &od);
1290         rcu_read_unlock();
1291         return 0;
1292 }
1293
1294 static int io_wq_cpu_online(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, true);
1299 }
1300
1301 static int io_wq_cpu_offline(unsigned int cpu, struct hlist_node *node)
1302 {
1303         struct io_wq *wq = hlist_entry_safe(node, struct io_wq, cpuhp_node);
1304
1305         return __io_wq_cpu_online(wq, cpu, false);
1306 }
1307
1308 int io_wq_cpu_affinity(struct io_wq *wq, cpumask_var_t mask)
1309 {
1310         int i;
1311
1312         rcu_read_lock();
1313         for_each_node(i) {
1314                 struct io_wqe *wqe = wq->wqes[i];
1315
1316                 if (mask)
1317                         cpumask_copy(wqe->cpu_mask, mask);
1318                 else
1319                         cpumask_copy(wqe->cpu_mask, cpumask_of_node(i));
1320         }
1321         rcu_read_unlock();
1322         return 0;
1323 }
1324
1325 /*
1326  * Set max number of unbounded workers, returns old value. If new_count is 0,
1327  * then just return the old value.
1328  */
1329 int io_wq_max_workers(struct io_wq *wq, int *new_count)
1330 {
1331         int prev[IO_WQ_ACCT_NR];
1332         bool first_node = true;
1333         int i, node;
1334
1335         BUILD_BUG_ON((int) IO_WQ_ACCT_BOUND   != (int) IO_WQ_BOUND);
1336         BUILD_BUG_ON((int) IO_WQ_ACCT_UNBOUND != (int) IO_WQ_UNBOUND);
1337         BUILD_BUG_ON((int) IO_WQ_ACCT_NR      != 2);
1338
1339         for (i = 0; i < 2; i++) {
1340                 if (new_count[i] > task_rlimit(current, RLIMIT_NPROC))
1341                         new_count[i] = task_rlimit(current, RLIMIT_NPROC);
1342         }
1343
1344         for (i = 0; i < IO_WQ_ACCT_NR; i++)
1345                 prev[i] = 0;
1346
1347         rcu_read_lock();
1348         for_each_node(node) {
1349                 struct io_wqe *wqe = wq->wqes[node];
1350                 struct io_wqe_acct *acct;
1351
1352                 raw_spin_lock(&wqe->lock);
1353                 for (i = 0; i < IO_WQ_ACCT_NR; i++) {
1354                         acct = &wqe->acct[i];
1355                         if (first_node)
1356                                 prev[i] = max_t(int, acct->max_workers, prev[i]);
1357                         if (new_count[i])
1358                                 acct->max_workers = new_count[i];
1359                 }
1360                 raw_spin_unlock(&wqe->lock);
1361                 first_node = false;
1362         }
1363         rcu_read_unlock();
1364
1365         for (i = 0; i < IO_WQ_ACCT_NR; i++)
1366                 new_count[i] = prev[i];
1367
1368         return 0;
1369 }
1370
1371 static __init int io_wq_init(void)
1372 {
1373         int ret;
1374
1375         ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "io-wq/online",
1376                                         io_wq_cpu_online, io_wq_cpu_offline);
1377         if (ret < 0)
1378                 return ret;
1379         io_wq_online = ret;
1380         return 0;
1381 }
1382 subsys_initcall(io_wq_init);