]> git.proxmox.com Git - mirror_spl.git/blob - module/spl/spl-taskq.c
Fix use-after-free in taskq_seq_show_impl
[mirror_spl.git] / module / spl / spl-taskq.c
1 /*
2 * Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC.
3 * Copyright (C) 2007 The Regents of the University of California.
4 * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
5 * Written by Brian Behlendorf <behlendorf1@llnl.gov>.
6 * UCRL-CODE-235197
7 *
8 * This file is part of the SPL, Solaris Porting Layer.
9 * For details, see <http://zfsonlinux.org/>.
10 *
11 * The SPL is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
15 *
16 * The SPL is distributed in the hope that it will be useful, but WITHOUT
17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 * for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
22 * with the SPL. If not, see <http://www.gnu.org/licenses/>.
23 *
24 * Solaris Porting Layer (SPL) Task Queue Implementation.
25 */
26
27 #include <sys/taskq.h>
28 #include <sys/kmem.h>
29 #include <sys/tsd.h>
30
31 int spl_taskq_thread_bind = 0;
32 module_param(spl_taskq_thread_bind, int, 0644);
33 MODULE_PARM_DESC(spl_taskq_thread_bind, "Bind taskq thread to CPU by default");
34
35
36 int spl_taskq_thread_dynamic = 1;
37 module_param(spl_taskq_thread_dynamic, int, 0644);
38 MODULE_PARM_DESC(spl_taskq_thread_dynamic, "Allow dynamic taskq threads");
39
40 int spl_taskq_thread_priority = 1;
41 module_param(spl_taskq_thread_priority, int, 0644);
42 MODULE_PARM_DESC(spl_taskq_thread_priority,
43 "Allow non-default priority for taskq threads");
44
45 int spl_taskq_thread_sequential = 4;
46 module_param(spl_taskq_thread_sequential, int, 0644);
47 MODULE_PARM_DESC(spl_taskq_thread_sequential,
48 "Create new taskq threads after N sequential tasks");
49
50 /* Global system-wide dynamic task queue available for all consumers */
51 taskq_t *system_taskq;
52 EXPORT_SYMBOL(system_taskq);
53 /* Global dynamic task queue for long delay */
54 taskq_t *system_delay_taskq;
55 EXPORT_SYMBOL(system_delay_taskq);
56
57 /* Private dedicated taskq for creating new taskq threads on demand. */
58 static taskq_t *dynamic_taskq;
59 static taskq_thread_t *taskq_thread_create(taskq_t *);
60
61 /* List of all taskqs */
62 LIST_HEAD(tq_list);
63 DECLARE_RWSEM(tq_list_sem);
64 static uint_t taskq_tsd;
65
66 static int
67 task_km_flags(uint_t flags)
68 {
69 if (flags & TQ_NOSLEEP)
70 return (KM_NOSLEEP);
71
72 if (flags & TQ_PUSHPAGE)
73 return (KM_PUSHPAGE);
74
75 return (KM_SLEEP);
76 }
77
78 /*
79 * taskq_find_by_name - Find the largest instance number of a named taskq.
80 */
81 static int
82 taskq_find_by_name(const char *name)
83 {
84 struct list_head *tql;
85 taskq_t *tq;
86
87 list_for_each_prev(tql, &tq_list) {
88 tq = list_entry(tql, taskq_t, tq_taskqs);
89 if (strcmp(name, tq->tq_name) == 0)
90 return tq->tq_instance;
91 }
92 return (-1);
93 }
94
95 /*
96 * NOTE: Must be called with tq->tq_lock held, returns a list_t which
97 * is not attached to the free, work, or pending taskq lists.
98 */
99 static taskq_ent_t *
100 task_alloc(taskq_t *tq, uint_t flags, unsigned long *irqflags)
101 {
102 taskq_ent_t *t;
103 int count = 0;
104
105 ASSERT(tq);
106 ASSERT(spin_is_locked(&tq->tq_lock));
107 retry:
108 /* Acquire taskq_ent_t's from free list if available */
109 if (!list_empty(&tq->tq_free_list) && !(flags & TQ_NEW)) {
110 t = list_entry(tq->tq_free_list.next, taskq_ent_t, tqent_list);
111
112 ASSERT(!(t->tqent_flags & TQENT_FLAG_PREALLOC));
113 ASSERT(!(t->tqent_flags & TQENT_FLAG_CANCEL));
114 ASSERT(!timer_pending(&t->tqent_timer));
115
116 list_del_init(&t->tqent_list);
117 return (t);
118 }
119
120 /* Free list is empty and memory allocations are prohibited */
121 if (flags & TQ_NOALLOC)
122 return (NULL);
123
124 /* Hit maximum taskq_ent_t pool size */
125 if (tq->tq_nalloc >= tq->tq_maxalloc) {
126 if (flags & TQ_NOSLEEP)
127 return (NULL);
128
129 /*
130 * Sleep periodically polling the free list for an available
131 * taskq_ent_t. Dispatching with TQ_SLEEP should always succeed
132 * but we cannot block forever waiting for an taskq_ent_t to
133 * show up in the free list, otherwise a deadlock can happen.
134 *
135 * Therefore, we need to allocate a new task even if the number
136 * of allocated tasks is above tq->tq_maxalloc, but we still
137 * end up delaying the task allocation by one second, thereby
138 * throttling the task dispatch rate.
139 */
140 spin_unlock_irqrestore(&tq->tq_lock, *irqflags);
141 schedule_timeout(HZ / 100);
142 spin_lock_irqsave_nested(&tq->tq_lock, *irqflags,
143 tq->tq_lock_class);
144 if (count < 100) {
145 count++;
146 goto retry;
147 }
148 }
149
150 spin_unlock_irqrestore(&tq->tq_lock, *irqflags);
151 t = kmem_alloc(sizeof (taskq_ent_t), task_km_flags(flags));
152 spin_lock_irqsave_nested(&tq->tq_lock, *irqflags, tq->tq_lock_class);
153
154 if (t) {
155 taskq_init_ent(t);
156 tq->tq_nalloc++;
157 }
158
159 return (t);
160 }
161
162 /*
163 * NOTE: Must be called with tq->tq_lock held, expects the taskq_ent_t
164 * to already be removed from the free, work, or pending taskq lists.
165 */
166 static void
167 task_free(taskq_t *tq, taskq_ent_t *t)
168 {
169 ASSERT(tq);
170 ASSERT(t);
171 ASSERT(spin_is_locked(&tq->tq_lock));
172 ASSERT(list_empty(&t->tqent_list));
173 ASSERT(!timer_pending(&t->tqent_timer));
174
175 kmem_free(t, sizeof (taskq_ent_t));
176 tq->tq_nalloc--;
177 }
178
179 /*
180 * NOTE: Must be called with tq->tq_lock held, either destroys the
181 * taskq_ent_t if too many exist or moves it to the free list for later use.
182 */
183 static void
184 task_done(taskq_t *tq, taskq_ent_t *t)
185 {
186 ASSERT(tq);
187 ASSERT(t);
188 ASSERT(spin_is_locked(&tq->tq_lock));
189
190 /* Wake tasks blocked in taskq_wait_id() */
191 wake_up_all(&t->tqent_waitq);
192
193 list_del_init(&t->tqent_list);
194
195 if (tq->tq_nalloc <= tq->tq_minalloc) {
196 t->tqent_id = TASKQID_INVALID;
197 t->tqent_func = NULL;
198 t->tqent_arg = NULL;
199 t->tqent_flags = 0;
200
201 list_add_tail(&t->tqent_list, &tq->tq_free_list);
202 } else {
203 task_free(tq, t);
204 }
205 }
206
207 /*
208 * When a delayed task timer expires remove it from the delay list and
209 * add it to the priority list in order for immediate processing.
210 */
211 static void
212 task_expire(unsigned long data)
213 {
214 taskq_ent_t *w, *t = (taskq_ent_t *)data;
215 taskq_t *tq = t->tqent_taskq;
216 struct list_head *l;
217 unsigned long flags;
218
219 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
220
221 if (t->tqent_flags & TQENT_FLAG_CANCEL) {
222 ASSERT(list_empty(&t->tqent_list));
223 spin_unlock_irqrestore(&tq->tq_lock, flags);
224 return;
225 }
226
227 t->tqent_birth = jiffies;
228 /*
229 * The priority list must be maintained in strict task id order
230 * from lowest to highest for lowest_id to be easily calculable.
231 */
232 list_del(&t->tqent_list);
233 list_for_each_prev(l, &tq->tq_prio_list) {
234 w = list_entry(l, taskq_ent_t, tqent_list);
235 if (w->tqent_id < t->tqent_id) {
236 list_add(&t->tqent_list, l);
237 break;
238 }
239 }
240 if (l == &tq->tq_prio_list)
241 list_add(&t->tqent_list, &tq->tq_prio_list);
242
243 spin_unlock_irqrestore(&tq->tq_lock, flags);
244
245 wake_up(&tq->tq_work_waitq);
246 }
247
248 /*
249 * Returns the lowest incomplete taskqid_t. The taskqid_t may
250 * be queued on the pending list, on the priority list, on the
251 * delay list, or on the work list currently being handled, but
252 * it is not 100% complete yet.
253 */
254 static taskqid_t
255 taskq_lowest_id(taskq_t *tq)
256 {
257 taskqid_t lowest_id = tq->tq_next_id;
258 taskq_ent_t *t;
259 taskq_thread_t *tqt;
260
261 ASSERT(tq);
262 ASSERT(spin_is_locked(&tq->tq_lock));
263
264 if (!list_empty(&tq->tq_pend_list)) {
265 t = list_entry(tq->tq_pend_list.next, taskq_ent_t, tqent_list);
266 lowest_id = MIN(lowest_id, t->tqent_id);
267 }
268
269 if (!list_empty(&tq->tq_prio_list)) {
270 t = list_entry(tq->tq_prio_list.next, taskq_ent_t, tqent_list);
271 lowest_id = MIN(lowest_id, t->tqent_id);
272 }
273
274 if (!list_empty(&tq->tq_delay_list)) {
275 t = list_entry(tq->tq_delay_list.next, taskq_ent_t, tqent_list);
276 lowest_id = MIN(lowest_id, t->tqent_id);
277 }
278
279 if (!list_empty(&tq->tq_active_list)) {
280 tqt = list_entry(tq->tq_active_list.next, taskq_thread_t,
281 tqt_active_list);
282 ASSERT(tqt->tqt_id != TASKQID_INVALID);
283 lowest_id = MIN(lowest_id, tqt->tqt_id);
284 }
285
286 return (lowest_id);
287 }
288
289 /*
290 * Insert a task into a list keeping the list sorted by increasing taskqid.
291 */
292 static void
293 taskq_insert_in_order(taskq_t *tq, taskq_thread_t *tqt)
294 {
295 taskq_thread_t *w;
296 struct list_head *l;
297
298 ASSERT(tq);
299 ASSERT(tqt);
300 ASSERT(spin_is_locked(&tq->tq_lock));
301
302 list_for_each_prev(l, &tq->tq_active_list) {
303 w = list_entry(l, taskq_thread_t, tqt_active_list);
304 if (w->tqt_id < tqt->tqt_id) {
305 list_add(&tqt->tqt_active_list, l);
306 break;
307 }
308 }
309 if (l == &tq->tq_active_list)
310 list_add(&tqt->tqt_active_list, &tq->tq_active_list);
311 }
312
313 /*
314 * Find and return a task from the given list if it exists. The list
315 * must be in lowest to highest task id order.
316 */
317 static taskq_ent_t *
318 taskq_find_list(taskq_t *tq, struct list_head *lh, taskqid_t id)
319 {
320 struct list_head *l;
321 taskq_ent_t *t;
322
323 ASSERT(spin_is_locked(&tq->tq_lock));
324
325 list_for_each(l, lh) {
326 t = list_entry(l, taskq_ent_t, tqent_list);
327
328 if (t->tqent_id == id)
329 return (t);
330
331 if (t->tqent_id > id)
332 break;
333 }
334
335 return (NULL);
336 }
337
338 /*
339 * Find an already dispatched task given the task id regardless of what
340 * state it is in. If a task is still pending it will be returned.
341 * If a task is executing, then -EBUSY will be returned instead.
342 * If the task has already been run then NULL is returned.
343 */
344 static taskq_ent_t *
345 taskq_find(taskq_t *tq, taskqid_t id)
346 {
347 taskq_thread_t *tqt;
348 struct list_head *l;
349 taskq_ent_t *t;
350
351 ASSERT(spin_is_locked(&tq->tq_lock));
352
353 t = taskq_find_list(tq, &tq->tq_delay_list, id);
354 if (t)
355 return (t);
356
357 t = taskq_find_list(tq, &tq->tq_prio_list, id);
358 if (t)
359 return (t);
360
361 t = taskq_find_list(tq, &tq->tq_pend_list, id);
362 if (t)
363 return (t);
364
365 list_for_each(l, &tq->tq_active_list) {
366 tqt = list_entry(l, taskq_thread_t, tqt_active_list);
367 if (tqt->tqt_id == id) {
368 /*
369 * Instead of returning tqt_task, we just return a non
370 * NULL value to prevent misuse, since tqt_task only
371 * has two valid fields.
372 */
373 return (ERR_PTR(-EBUSY));
374 }
375 }
376
377 return (NULL);
378 }
379
380 /*
381 * Theory for the taskq_wait_id(), taskq_wait_outstanding(), and
382 * taskq_wait() functions below.
383 *
384 * Taskq waiting is accomplished by tracking the lowest outstanding task
385 * id and the next available task id. As tasks are dispatched they are
386 * added to the tail of the pending, priority, or delay lists. As worker
387 * threads become available the tasks are removed from the heads of these
388 * lists and linked to the worker threads. This ensures the lists are
389 * kept sorted by lowest to highest task id.
390 *
391 * Therefore the lowest outstanding task id can be quickly determined by
392 * checking the head item from all of these lists. This value is stored
393 * with the taskq as the lowest id. It only needs to be recalculated when
394 * either the task with the current lowest id completes or is canceled.
395 *
396 * By blocking until the lowest task id exceeds the passed task id the
397 * taskq_wait_outstanding() function can be easily implemented. Similarly,
398 * by blocking until the lowest task id matches the next task id taskq_wait()
399 * can be implemented.
400 *
401 * Callers should be aware that when there are multiple worked threads it
402 * is possible for larger task ids to complete before smaller ones. Also
403 * when the taskq contains delay tasks with small task ids callers may
404 * block for a considerable length of time waiting for them to expire and
405 * execute.
406 */
407 static int
408 taskq_wait_id_check(taskq_t *tq, taskqid_t id)
409 {
410 int rc;
411 unsigned long flags;
412
413 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
414 rc = (taskq_find(tq, id) == NULL);
415 spin_unlock_irqrestore(&tq->tq_lock, flags);
416
417 return (rc);
418 }
419
420 /*
421 * The taskq_wait_id() function blocks until the passed task id completes.
422 * This does not guarantee that all lower task ids have completed.
423 */
424 void
425 taskq_wait_id(taskq_t *tq, taskqid_t id)
426 {
427 wait_event(tq->tq_wait_waitq, taskq_wait_id_check(tq, id));
428 }
429 EXPORT_SYMBOL(taskq_wait_id);
430
431 static int
432 taskq_wait_outstanding_check(taskq_t *tq, taskqid_t id)
433 {
434 int rc;
435 unsigned long flags;
436
437 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
438 rc = (id < tq->tq_lowest_id);
439 spin_unlock_irqrestore(&tq->tq_lock, flags);
440
441 return (rc);
442 }
443
444 /*
445 * The taskq_wait_outstanding() function will block until all tasks with a
446 * lower taskqid than the passed 'id' have been completed. Note that all
447 * task id's are assigned monotonically at dispatch time. Zero may be
448 * passed for the id to indicate all tasks dispatch up to this point,
449 * but not after, should be waited for.
450 */
451 void
452 taskq_wait_outstanding(taskq_t *tq, taskqid_t id)
453 {
454 id = id ? id : tq->tq_next_id - 1;
455 wait_event(tq->tq_wait_waitq, taskq_wait_outstanding_check(tq, id));
456 }
457 EXPORT_SYMBOL(taskq_wait_outstanding);
458
459 static int
460 taskq_wait_check(taskq_t *tq)
461 {
462 int rc;
463 unsigned long flags;
464
465 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
466 rc = (tq->tq_lowest_id == tq->tq_next_id);
467 spin_unlock_irqrestore(&tq->tq_lock, flags);
468
469 return (rc);
470 }
471
472 /*
473 * The taskq_wait() function will block until the taskq is empty.
474 * This means that if a taskq re-dispatches work to itself taskq_wait()
475 * callers will block indefinitely.
476 */
477 void
478 taskq_wait(taskq_t *tq)
479 {
480 wait_event(tq->tq_wait_waitq, taskq_wait_check(tq));
481 }
482 EXPORT_SYMBOL(taskq_wait);
483
484 int
485 taskq_member(taskq_t *tq, kthread_t *t)
486 {
487 return (tq == (taskq_t *)tsd_get_by_thread(taskq_tsd, t));
488 }
489 EXPORT_SYMBOL(taskq_member);
490
491 /*
492 * Cancel an already dispatched task given the task id. Still pending tasks
493 * will be immediately canceled, and if the task is active the function will
494 * block until it completes. Preallocated tasks which are canceled must be
495 * freed by the caller.
496 */
497 int
498 taskq_cancel_id(taskq_t *tq, taskqid_t id)
499 {
500 taskq_ent_t *t;
501 int rc = ENOENT;
502 unsigned long flags;
503
504 ASSERT(tq);
505
506 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
507 t = taskq_find(tq, id);
508 if (t && t != ERR_PTR(-EBUSY)) {
509 list_del_init(&t->tqent_list);
510 t->tqent_flags |= TQENT_FLAG_CANCEL;
511
512 /*
513 * When canceling the lowest outstanding task id we
514 * must recalculate the new lowest outstanding id.
515 */
516 if (tq->tq_lowest_id == t->tqent_id) {
517 tq->tq_lowest_id = taskq_lowest_id(tq);
518 ASSERT3S(tq->tq_lowest_id, >, t->tqent_id);
519 }
520
521 /*
522 * The task_expire() function takes the tq->tq_lock so drop
523 * drop the lock before synchronously cancelling the timer.
524 */
525 if (timer_pending(&t->tqent_timer)) {
526 spin_unlock_irqrestore(&tq->tq_lock, flags);
527 del_timer_sync(&t->tqent_timer);
528 spin_lock_irqsave_nested(&tq->tq_lock, flags,
529 tq->tq_lock_class);
530 }
531
532 if (!(t->tqent_flags & TQENT_FLAG_PREALLOC))
533 task_done(tq, t);
534
535 rc = 0;
536 }
537 spin_unlock_irqrestore(&tq->tq_lock, flags);
538
539 if (t == ERR_PTR(-EBUSY)) {
540 taskq_wait_id(tq, id);
541 rc = EBUSY;
542 }
543
544 return (rc);
545 }
546 EXPORT_SYMBOL(taskq_cancel_id);
547
548 static int taskq_thread_spawn(taskq_t *tq);
549
550 taskqid_t
551 taskq_dispatch(taskq_t *tq, task_func_t func, void *arg, uint_t flags)
552 {
553 taskq_ent_t *t;
554 taskqid_t rc = TASKQID_INVALID;
555 unsigned long irqflags;
556
557 ASSERT(tq);
558 ASSERT(func);
559
560 spin_lock_irqsave_nested(&tq->tq_lock, irqflags, tq->tq_lock_class);
561
562 /* Taskq being destroyed and all tasks drained */
563 if (!(tq->tq_flags & TASKQ_ACTIVE))
564 goto out;
565
566 /* Do not queue the task unless there is idle thread for it */
567 ASSERT(tq->tq_nactive <= tq->tq_nthreads);
568 if ((flags & TQ_NOQUEUE) && (tq->tq_nactive == tq->tq_nthreads)) {
569 /* Dynamic taskq may be able to spawn another thread */
570 if (!(tq->tq_flags & TASKQ_DYNAMIC) || taskq_thread_spawn(tq) == 0)
571 goto out;
572 }
573
574 if ((t = task_alloc(tq, flags, &irqflags)) == NULL)
575 goto out;
576
577 spin_lock(&t->tqent_lock);
578
579 /* Queue to the front of the list to enforce TQ_NOQUEUE semantics */
580 if (flags & TQ_NOQUEUE)
581 list_add(&t->tqent_list, &tq->tq_prio_list);
582 /* Queue to the priority list instead of the pending list */
583 else if (flags & TQ_FRONT)
584 list_add_tail(&t->tqent_list, &tq->tq_prio_list);
585 else
586 list_add_tail(&t->tqent_list, &tq->tq_pend_list);
587
588 t->tqent_id = rc = tq->tq_next_id;
589 tq->tq_next_id++;
590 t->tqent_func = func;
591 t->tqent_arg = arg;
592 t->tqent_taskq = tq;
593 t->tqent_timer.data = 0;
594 t->tqent_timer.function = NULL;
595 t->tqent_timer.expires = 0;
596 t->tqent_birth = jiffies;
597
598 ASSERT(!(t->tqent_flags & TQENT_FLAG_PREALLOC));
599
600 spin_unlock(&t->tqent_lock);
601
602 wake_up(&tq->tq_work_waitq);
603 out:
604 /* Spawn additional taskq threads if required. */
605 if (!(flags & TQ_NOQUEUE) && tq->tq_nactive == tq->tq_nthreads)
606 (void) taskq_thread_spawn(tq);
607
608 spin_unlock_irqrestore(&tq->tq_lock, irqflags);
609 return (rc);
610 }
611 EXPORT_SYMBOL(taskq_dispatch);
612
613 taskqid_t
614 taskq_dispatch_delay(taskq_t *tq, task_func_t func, void *arg,
615 uint_t flags, clock_t expire_time)
616 {
617 taskqid_t rc = TASKQID_INVALID;
618 taskq_ent_t *t;
619 unsigned long irqflags;
620
621 ASSERT(tq);
622 ASSERT(func);
623
624 spin_lock_irqsave_nested(&tq->tq_lock, irqflags, tq->tq_lock_class);
625
626 /* Taskq being destroyed and all tasks drained */
627 if (!(tq->tq_flags & TASKQ_ACTIVE))
628 goto out;
629
630 if ((t = task_alloc(tq, flags, &irqflags)) == NULL)
631 goto out;
632
633 spin_lock(&t->tqent_lock);
634
635 /* Queue to the delay list for subsequent execution */
636 list_add_tail(&t->tqent_list, &tq->tq_delay_list);
637
638 t->tqent_id = rc = tq->tq_next_id;
639 tq->tq_next_id++;
640 t->tqent_func = func;
641 t->tqent_arg = arg;
642 t->tqent_taskq = tq;
643 t->tqent_timer.data = (unsigned long)t;
644 t->tqent_timer.function = task_expire;
645 t->tqent_timer.expires = (unsigned long)expire_time;
646 add_timer(&t->tqent_timer);
647
648 ASSERT(!(t->tqent_flags & TQENT_FLAG_PREALLOC));
649
650 spin_unlock(&t->tqent_lock);
651 out:
652 /* Spawn additional taskq threads if required. */
653 if (tq->tq_nactive == tq->tq_nthreads)
654 (void) taskq_thread_spawn(tq);
655 spin_unlock_irqrestore(&tq->tq_lock, irqflags);
656 return (rc);
657 }
658 EXPORT_SYMBOL(taskq_dispatch_delay);
659
660 void
661 taskq_dispatch_ent(taskq_t *tq, task_func_t func, void *arg, uint_t flags,
662 taskq_ent_t *t)
663 {
664 unsigned long irqflags;
665 ASSERT(tq);
666 ASSERT(func);
667
668 spin_lock_irqsave_nested(&tq->tq_lock, irqflags,
669 tq->tq_lock_class);
670
671 /* Taskq being destroyed and all tasks drained */
672 if (!(tq->tq_flags & TASKQ_ACTIVE)) {
673 t->tqent_id = TASKQID_INVALID;
674 goto out;
675 }
676
677 if ((flags & TQ_NOQUEUE) && (tq->tq_nactive == tq->tq_nthreads)) {
678 /* Dynamic taskq may be able to spawn another thread */
679 if (!(tq->tq_flags & TASKQ_DYNAMIC) || taskq_thread_spawn(tq) == 0)
680 goto out2;
681 flags |= TQ_FRONT;
682 }
683
684 spin_lock(&t->tqent_lock);
685
686 /*
687 * Mark it as a prealloc'd task. This is important
688 * to ensure that we don't free it later.
689 */
690 t->tqent_flags |= TQENT_FLAG_PREALLOC;
691
692 /* Queue to the priority list instead of the pending list */
693 if (flags & TQ_FRONT)
694 list_add_tail(&t->tqent_list, &tq->tq_prio_list);
695 else
696 list_add_tail(&t->tqent_list, &tq->tq_pend_list);
697
698 t->tqent_id = tq->tq_next_id;
699 tq->tq_next_id++;
700 t->tqent_func = func;
701 t->tqent_arg = arg;
702 t->tqent_taskq = tq;
703 t->tqent_birth = jiffies;
704
705 spin_unlock(&t->tqent_lock);
706
707 wake_up(&tq->tq_work_waitq);
708 out:
709 /* Spawn additional taskq threads if required. */
710 if (tq->tq_nactive == tq->tq_nthreads)
711 (void) taskq_thread_spawn(tq);
712 out2:
713 spin_unlock_irqrestore(&tq->tq_lock, irqflags);
714 }
715 EXPORT_SYMBOL(taskq_dispatch_ent);
716
717 int
718 taskq_empty_ent(taskq_ent_t *t)
719 {
720 return (list_empty(&t->tqent_list));
721 }
722 EXPORT_SYMBOL(taskq_empty_ent);
723
724 void
725 taskq_init_ent(taskq_ent_t *t)
726 {
727 spin_lock_init(&t->tqent_lock);
728 init_waitqueue_head(&t->tqent_waitq);
729 init_timer(&t->tqent_timer);
730 INIT_LIST_HEAD(&t->tqent_list);
731 t->tqent_id = 0;
732 t->tqent_func = NULL;
733 t->tqent_arg = NULL;
734 t->tqent_flags = 0;
735 t->tqent_taskq = NULL;
736 }
737 EXPORT_SYMBOL(taskq_init_ent);
738
739 /*
740 * Return the next pending task, preference is given to tasks on the
741 * priority list which were dispatched with TQ_FRONT.
742 */
743 static taskq_ent_t *
744 taskq_next_ent(taskq_t *tq)
745 {
746 struct list_head *list;
747
748 ASSERT(spin_is_locked(&tq->tq_lock));
749
750 if (!list_empty(&tq->tq_prio_list))
751 list = &tq->tq_prio_list;
752 else if (!list_empty(&tq->tq_pend_list))
753 list = &tq->tq_pend_list;
754 else
755 return (NULL);
756
757 return (list_entry(list->next, taskq_ent_t, tqent_list));
758 }
759
760 /*
761 * Spawns a new thread for the specified taskq.
762 */
763 static void
764 taskq_thread_spawn_task(void *arg)
765 {
766 taskq_t *tq = (taskq_t *)arg;
767 unsigned long flags;
768
769 if (taskq_thread_create(tq) == NULL) {
770 /* restore spawning count if failed */
771 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
772 tq->tq_nspawn--;
773 spin_unlock_irqrestore(&tq->tq_lock, flags);
774 }
775 }
776
777 /*
778 * Spawn addition threads for dynamic taskqs (TASKQ_DYNAMIC) the current
779 * number of threads is insufficient to handle the pending tasks. These
780 * new threads must be created by the dedicated dynamic_taskq to avoid
781 * deadlocks between thread creation and memory reclaim. The system_taskq
782 * which is also a dynamic taskq cannot be safely used for this.
783 */
784 static int
785 taskq_thread_spawn(taskq_t *tq)
786 {
787 int spawning = 0;
788
789 if (!(tq->tq_flags & TASKQ_DYNAMIC))
790 return (0);
791
792 if ((tq->tq_nthreads + tq->tq_nspawn < tq->tq_maxthreads) &&
793 (tq->tq_flags & TASKQ_ACTIVE)) {
794 spawning = (++tq->tq_nspawn);
795 taskq_dispatch(dynamic_taskq, taskq_thread_spawn_task,
796 tq, TQ_NOSLEEP);
797 }
798
799 return (spawning);
800 }
801
802 /*
803 * Threads in a dynamic taskq should only exit once it has been completely
804 * drained and no other threads are actively servicing tasks. This prevents
805 * threads from being created and destroyed more than is required.
806 *
807 * The first thread is the thread list is treated as the primary thread.
808 * There is nothing special about the primary thread but in order to avoid
809 * all the taskq pids from changing we opt to make it long running.
810 */
811 static int
812 taskq_thread_should_stop(taskq_t *tq, taskq_thread_t *tqt)
813 {
814 ASSERT(spin_is_locked(&tq->tq_lock));
815
816 if (!(tq->tq_flags & TASKQ_DYNAMIC))
817 return (0);
818
819 if (list_first_entry(&(tq->tq_thread_list), taskq_thread_t,
820 tqt_thread_list) == tqt)
821 return (0);
822
823 return
824 ((tq->tq_nspawn == 0) && /* No threads are being spawned */
825 (tq->tq_nactive == 0) && /* No threads are handling tasks */
826 (tq->tq_nthreads > 1) && /* More than 1 thread is running */
827 (!taskq_next_ent(tq)) && /* There are no pending tasks */
828 (spl_taskq_thread_dynamic)); /* Dynamic taskqs are allowed */
829 }
830
831 static int
832 taskq_thread(void *args)
833 {
834 DECLARE_WAITQUEUE(wait, current);
835 sigset_t blocked;
836 taskq_thread_t *tqt = args;
837 taskq_t *tq;
838 taskq_ent_t *t;
839 int seq_tasks = 0;
840 unsigned long flags;
841 taskq_ent_t dup_task = {};
842
843 ASSERT(tqt);
844 ASSERT(tqt->tqt_tq);
845 tq = tqt->tqt_tq;
846 current->flags |= PF_NOFREEZE;
847
848 (void) spl_fstrans_mark();
849
850 sigfillset(&blocked);
851 sigprocmask(SIG_BLOCK, &blocked, NULL);
852 flush_signals(current);
853
854 tsd_set(taskq_tsd, tq);
855 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
856 /*
857 * If we are dynamically spawned, decrease spawning count. Note that
858 * we could be created during taskq_create, in which case we shouldn't
859 * do the decrement. But it's fine because taskq_create will reset
860 * tq_nspawn later.
861 */
862 if (tq->tq_flags & TASKQ_DYNAMIC)
863 tq->tq_nspawn--;
864
865 /* Immediately exit if more threads than allowed were created. */
866 if (tq->tq_nthreads >= tq->tq_maxthreads)
867 goto error;
868
869 tq->tq_nthreads++;
870 list_add_tail(&tqt->tqt_thread_list, &tq->tq_thread_list);
871 wake_up(&tq->tq_wait_waitq);
872 set_current_state(TASK_INTERRUPTIBLE);
873
874 while (!kthread_should_stop()) {
875
876 if (list_empty(&tq->tq_pend_list) &&
877 list_empty(&tq->tq_prio_list)) {
878
879 if (taskq_thread_should_stop(tq, tqt)) {
880 wake_up_all(&tq->tq_wait_waitq);
881 break;
882 }
883
884 add_wait_queue_exclusive(&tq->tq_work_waitq, &wait);
885 spin_unlock_irqrestore(&tq->tq_lock, flags);
886
887 schedule();
888 seq_tasks = 0;
889
890 spin_lock_irqsave_nested(&tq->tq_lock, flags,
891 tq->tq_lock_class);
892 remove_wait_queue(&tq->tq_work_waitq, &wait);
893 } else {
894 __set_current_state(TASK_RUNNING);
895 }
896
897 if ((t = taskq_next_ent(tq)) != NULL) {
898 list_del_init(&t->tqent_list);
899
900 /*
901 * A TQENT_FLAG_PREALLOC task may be reused or freed
902 * during the task function call. Store tqent_id and
903 * tqent_flags here.
904 *
905 * Also use an on stack taskq_ent_t for tqt_task
906 * assignment in this case. We only populate the two
907 * fields used by the only user in taskq proc file.
908 */
909 tqt->tqt_id = t->tqent_id;
910 tqt->tqt_flags = t->tqent_flags;
911
912 if (t->tqent_flags & TQENT_FLAG_PREALLOC) {
913 dup_task.tqent_func = t->tqent_func;
914 dup_task.tqent_arg = t->tqent_arg;
915 t = &dup_task;
916 }
917 tqt->tqt_task = t;
918
919 taskq_insert_in_order(tq, tqt);
920 tq->tq_nactive++;
921 spin_unlock_irqrestore(&tq->tq_lock, flags);
922
923 /* Perform the requested task */
924 t->tqent_func(t->tqent_arg);
925
926 spin_lock_irqsave_nested(&tq->tq_lock, flags,
927 tq->tq_lock_class);
928 tq->tq_nactive--;
929 list_del_init(&tqt->tqt_active_list);
930 tqt->tqt_task = NULL;
931
932 /* For prealloc'd tasks, we don't free anything. */
933 if (!(tqt->tqt_flags & TQENT_FLAG_PREALLOC))
934 task_done(tq, t);
935
936 /*
937 * When the current lowest outstanding taskqid is
938 * done calculate the new lowest outstanding id
939 */
940 if (tq->tq_lowest_id == tqt->tqt_id) {
941 tq->tq_lowest_id = taskq_lowest_id(tq);
942 ASSERT3S(tq->tq_lowest_id, >, tqt->tqt_id);
943 }
944
945 /* Spawn additional taskq threads if required. */
946 if ((++seq_tasks) > spl_taskq_thread_sequential &&
947 taskq_thread_spawn(tq))
948 seq_tasks = 0;
949
950 tqt->tqt_id = TASKQID_INVALID;
951 tqt->tqt_flags = 0;
952 wake_up_all(&tq->tq_wait_waitq);
953 } else {
954 if (taskq_thread_should_stop(tq, tqt))
955 break;
956 }
957
958 set_current_state(TASK_INTERRUPTIBLE);
959
960 }
961
962 __set_current_state(TASK_RUNNING);
963 tq->tq_nthreads--;
964 list_del_init(&tqt->tqt_thread_list);
965 error:
966 kmem_free(tqt, sizeof (taskq_thread_t));
967 spin_unlock_irqrestore(&tq->tq_lock, flags);
968
969 tsd_set(taskq_tsd, NULL);
970
971 return (0);
972 }
973
974 static taskq_thread_t *
975 taskq_thread_create(taskq_t *tq)
976 {
977 static int last_used_cpu = 0;
978 taskq_thread_t *tqt;
979
980 tqt = kmem_alloc(sizeof (*tqt), KM_PUSHPAGE);
981 INIT_LIST_HEAD(&tqt->tqt_thread_list);
982 INIT_LIST_HEAD(&tqt->tqt_active_list);
983 tqt->tqt_tq = tq;
984 tqt->tqt_id = TASKQID_INVALID;
985
986 tqt->tqt_thread = spl_kthread_create(taskq_thread, tqt,
987 "%s", tq->tq_name);
988 if (tqt->tqt_thread == NULL) {
989 kmem_free(tqt, sizeof (taskq_thread_t));
990 return (NULL);
991 }
992
993 if (spl_taskq_thread_bind) {
994 last_used_cpu = (last_used_cpu + 1) % num_online_cpus();
995 kthread_bind(tqt->tqt_thread, last_used_cpu);
996 }
997
998 if (spl_taskq_thread_priority)
999 set_user_nice(tqt->tqt_thread, PRIO_TO_NICE(tq->tq_pri));
1000
1001 wake_up_process(tqt->tqt_thread);
1002
1003 return (tqt);
1004 }
1005
1006 taskq_t *
1007 taskq_create(const char *name, int nthreads, pri_t pri,
1008 int minalloc, int maxalloc, uint_t flags)
1009 {
1010 taskq_t *tq;
1011 taskq_thread_t *tqt;
1012 int count = 0, rc = 0, i;
1013 unsigned long irqflags;
1014
1015 ASSERT(name != NULL);
1016 ASSERT(minalloc >= 0);
1017 ASSERT(maxalloc <= INT_MAX);
1018 ASSERT(!(flags & (TASKQ_CPR_SAFE))); /* Unsupported */
1019
1020 /* Scale the number of threads using nthreads as a percentage */
1021 if (flags & TASKQ_THREADS_CPU_PCT) {
1022 ASSERT(nthreads <= 100);
1023 ASSERT(nthreads >= 0);
1024 nthreads = MIN(nthreads, 100);
1025 nthreads = MAX(nthreads, 0);
1026 nthreads = MAX((num_online_cpus() * nthreads) / 100, 1);
1027 }
1028
1029 tq = kmem_alloc(sizeof (*tq), KM_PUSHPAGE);
1030 if (tq == NULL)
1031 return (NULL);
1032
1033 spin_lock_init(&tq->tq_lock);
1034 INIT_LIST_HEAD(&tq->tq_thread_list);
1035 INIT_LIST_HEAD(&tq->tq_active_list);
1036 tq->tq_name = strdup(name);
1037 tq->tq_nactive = 0;
1038 tq->tq_nthreads = 0;
1039 tq->tq_nspawn = 0;
1040 tq->tq_maxthreads = nthreads;
1041 tq->tq_pri = pri;
1042 tq->tq_minalloc = minalloc;
1043 tq->tq_maxalloc = maxalloc;
1044 tq->tq_nalloc = 0;
1045 tq->tq_flags = (flags | TASKQ_ACTIVE);
1046 tq->tq_next_id = TASKQID_INITIAL;
1047 tq->tq_lowest_id = TASKQID_INITIAL;
1048 INIT_LIST_HEAD(&tq->tq_free_list);
1049 INIT_LIST_HEAD(&tq->tq_pend_list);
1050 INIT_LIST_HEAD(&tq->tq_prio_list);
1051 INIT_LIST_HEAD(&tq->tq_delay_list);
1052 init_waitqueue_head(&tq->tq_work_waitq);
1053 init_waitqueue_head(&tq->tq_wait_waitq);
1054 tq->tq_lock_class = TQ_LOCK_GENERAL;
1055 INIT_LIST_HEAD(&tq->tq_taskqs);
1056
1057 if (flags & TASKQ_PREPOPULATE) {
1058 spin_lock_irqsave_nested(&tq->tq_lock, irqflags,
1059 tq->tq_lock_class);
1060
1061 for (i = 0; i < minalloc; i++)
1062 task_done(tq, task_alloc(tq, TQ_PUSHPAGE | TQ_NEW,
1063 &irqflags));
1064
1065 spin_unlock_irqrestore(&tq->tq_lock, irqflags);
1066 }
1067
1068 if ((flags & TASKQ_DYNAMIC) && spl_taskq_thread_dynamic)
1069 nthreads = 1;
1070
1071 for (i = 0; i < nthreads; i++) {
1072 tqt = taskq_thread_create(tq);
1073 if (tqt == NULL)
1074 rc = 1;
1075 else
1076 count++;
1077 }
1078
1079 /* Wait for all threads to be started before potential destroy */
1080 wait_event(tq->tq_wait_waitq, tq->tq_nthreads == count);
1081 /*
1082 * taskq_thread might have touched nspawn, but we don't want them to
1083 * because they're not dynamically spawned. So we reset it to 0
1084 */
1085 tq->tq_nspawn = 0;
1086
1087 if (rc) {
1088 taskq_destroy(tq);
1089 tq = NULL;
1090 } else {
1091 down_write(&tq_list_sem);
1092 tq->tq_instance = taskq_find_by_name(name) + 1;
1093 list_add_tail(&tq->tq_taskqs, &tq_list);
1094 up_write(&tq_list_sem);
1095 }
1096
1097 return (tq);
1098 }
1099 EXPORT_SYMBOL(taskq_create);
1100
1101 void
1102 taskq_destroy(taskq_t *tq)
1103 {
1104 struct task_struct *thread;
1105 taskq_thread_t *tqt;
1106 taskq_ent_t *t;
1107 unsigned long flags;
1108
1109 ASSERT(tq);
1110 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
1111 tq->tq_flags &= ~TASKQ_ACTIVE;
1112 spin_unlock_irqrestore(&tq->tq_lock, flags);
1113
1114 /*
1115 * When TASKQ_ACTIVE is clear new tasks may not be added nor may
1116 * new worker threads be spawned for dynamic taskq.
1117 */
1118 if (dynamic_taskq != NULL)
1119 taskq_wait_outstanding(dynamic_taskq, 0);
1120
1121 taskq_wait(tq);
1122
1123 /* remove taskq from global list used by the kstats */
1124 down_write(&tq_list_sem);
1125 list_del(&tq->tq_taskqs);
1126 up_write(&tq_list_sem);
1127
1128 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
1129 /* wait for spawning threads to insert themselves to the list */
1130 while (tq->tq_nspawn) {
1131 spin_unlock_irqrestore(&tq->tq_lock, flags);
1132 schedule_timeout_interruptible(1);
1133 spin_lock_irqsave_nested(&tq->tq_lock, flags, tq->tq_lock_class);
1134 }
1135
1136 /*
1137 * Signal each thread to exit and block until it does. Each thread
1138 * is responsible for removing itself from the list and freeing its
1139 * taskq_thread_t. This allows for idle threads to opt to remove
1140 * themselves from the taskq. They can be recreated as needed.
1141 */
1142 while (!list_empty(&tq->tq_thread_list)) {
1143 tqt = list_entry(tq->tq_thread_list.next,
1144 taskq_thread_t, tqt_thread_list);
1145 thread = tqt->tqt_thread;
1146 spin_unlock_irqrestore(&tq->tq_lock, flags);
1147
1148 kthread_stop(thread);
1149
1150 spin_lock_irqsave_nested(&tq->tq_lock, flags,
1151 tq->tq_lock_class);
1152 }
1153
1154 while (!list_empty(&tq->tq_free_list)) {
1155 t = list_entry(tq->tq_free_list.next, taskq_ent_t, tqent_list);
1156
1157 ASSERT(!(t->tqent_flags & TQENT_FLAG_PREALLOC));
1158
1159 list_del_init(&t->tqent_list);
1160 task_free(tq, t);
1161 }
1162
1163 ASSERT0(tq->tq_nthreads);
1164 ASSERT0(tq->tq_nalloc);
1165 ASSERT0(tq->tq_nspawn);
1166 ASSERT(list_empty(&tq->tq_thread_list));
1167 ASSERT(list_empty(&tq->tq_active_list));
1168 ASSERT(list_empty(&tq->tq_free_list));
1169 ASSERT(list_empty(&tq->tq_pend_list));
1170 ASSERT(list_empty(&tq->tq_prio_list));
1171 ASSERT(list_empty(&tq->tq_delay_list));
1172
1173 spin_unlock_irqrestore(&tq->tq_lock, flags);
1174
1175 strfree(tq->tq_name);
1176 kmem_free(tq, sizeof (taskq_t));
1177 }
1178 EXPORT_SYMBOL(taskq_destroy);
1179
1180
1181 static unsigned int spl_taskq_kick = 0;
1182
1183 /*
1184 * 2.6.36 API Change
1185 * module_param_cb is introduced to take kernel_param_ops and
1186 * module_param_call is marked as obsolete. Also set and get operations
1187 * were changed to take a 'const struct kernel_param *'.
1188 */
1189 static int
1190 #ifdef module_param_cb
1191 param_set_taskq_kick(const char *val, const struct kernel_param *kp)
1192 #else
1193 param_set_taskq_kick(const char *val, struct kernel_param *kp)
1194 #endif
1195 {
1196 int ret;
1197 taskq_t *tq;
1198 taskq_ent_t *t;
1199 unsigned long flags;
1200
1201 ret = param_set_uint(val, kp);
1202 if (ret < 0 || !spl_taskq_kick)
1203 return (ret);
1204 /* reset value */
1205 spl_taskq_kick = 0;
1206
1207 down_read(&tq_list_sem);
1208 list_for_each_entry(tq, &tq_list, tq_taskqs) {
1209 spin_lock_irqsave_nested(&tq->tq_lock, flags,
1210 tq->tq_lock_class);
1211 /* Check if the first pending is older than 5 seconds */
1212 t = taskq_next_ent(tq);
1213 if (t && time_after(jiffies, t->tqent_birth + 5*HZ)) {
1214 (void) taskq_thread_spawn(tq);
1215 printk(KERN_INFO "spl: Kicked taskq %s/%d\n",
1216 tq->tq_name, tq->tq_instance);
1217 }
1218 spin_unlock_irqrestore(&tq->tq_lock, flags);
1219 }
1220 up_read(&tq_list_sem);
1221 return (ret);
1222 }
1223
1224 #ifdef module_param_cb
1225 static const struct kernel_param_ops param_ops_taskq_kick = {
1226 .set = param_set_taskq_kick,
1227 .get = param_get_uint,
1228 };
1229 module_param_cb(spl_taskq_kick, &param_ops_taskq_kick, &spl_taskq_kick, 0644);
1230 #else
1231 module_param_call(spl_taskq_kick, param_set_taskq_kick, param_get_uint,
1232 &spl_taskq_kick, 0644);
1233 #endif
1234 MODULE_PARM_DESC(spl_taskq_kick,
1235 "Write nonzero to kick stuck taskqs to spawn more threads");
1236
1237 int
1238 spl_taskq_init(void)
1239 {
1240 tsd_create(&taskq_tsd, NULL);
1241
1242 system_taskq = taskq_create("spl_system_taskq", MAX(boot_ncpus, 64),
1243 maxclsyspri, boot_ncpus, INT_MAX, TASKQ_PREPOPULATE|TASKQ_DYNAMIC);
1244 if (system_taskq == NULL)
1245 return (1);
1246
1247 system_delay_taskq = taskq_create("spl_delay_taskq", MAX(boot_ncpus, 4),
1248 maxclsyspri, boot_ncpus, INT_MAX, TASKQ_PREPOPULATE|TASKQ_DYNAMIC);
1249 if (system_delay_taskq == NULL) {
1250 taskq_destroy(system_taskq);
1251 return (1);
1252 }
1253
1254 dynamic_taskq = taskq_create("spl_dynamic_taskq", 1,
1255 maxclsyspri, boot_ncpus, INT_MAX, TASKQ_PREPOPULATE);
1256 if (dynamic_taskq == NULL) {
1257 taskq_destroy(system_taskq);
1258 taskq_destroy(system_delay_taskq);
1259 return (1);
1260 }
1261
1262 /*
1263 * This is used to annotate tq_lock, so
1264 * taskq_dispatch -> taskq_thread_spawn -> taskq_dispatch
1265 * does not trigger a lockdep warning re: possible recursive locking
1266 */
1267 dynamic_taskq->tq_lock_class = TQ_LOCK_DYNAMIC;
1268
1269 return (0);
1270 }
1271
1272 void
1273 spl_taskq_fini(void)
1274 {
1275 taskq_destroy(dynamic_taskq);
1276 dynamic_taskq = NULL;
1277
1278 taskq_destroy(system_delay_taskq);
1279 system_delay_taskq = NULL;
1280
1281 taskq_destroy(system_taskq);
1282 system_taskq = NULL;
1283
1284 tsd_destroy(&taskq_tsd);
1285 }