infrastructure for saner ret_from_kernel_thread semantics
[deliverable/linux.git] / kernel / kthread.c
CommitLineData
1da177e4
LT
1/* Kernel thread helper functions.
2 * Copyright (C) 2004 IBM Corporation, Rusty Russell.
3 *
73c27992 4 * Creation is done via kthreadd, so that we get a clean environment
1da177e4
LT
5 * even if we're invoked from userspace (think modprobe, hotplug cpu,
6 * etc.).
7 */
8#include <linux/sched.h>
9#include <linux/kthread.h>
10#include <linux/completion.h>
11#include <linux/err.h>
58568d2a 12#include <linux/cpuset.h>
1da177e4
LT
13#include <linux/unistd.h>
14#include <linux/file.h>
9984de1a 15#include <linux/export.h>
97d1f15b 16#include <linux/mutex.h>
b56c0d89
TH
17#include <linux/slab.h>
18#include <linux/freezer.h>
a74fb73c 19#include <linux/ptrace.h>
ad8d75ff 20#include <trace/events/sched.h>
1da177e4 21
73c27992
EB
22static DEFINE_SPINLOCK(kthread_create_lock);
23static LIST_HEAD(kthread_create_list);
24struct task_struct *kthreadd_task;
1da177e4
LT
25
26struct kthread_create_info
27{
73c27992 28 /* Information passed to kthread() from kthreadd. */
1da177e4
LT
29 int (*threadfn)(void *data);
30 void *data;
207205a2 31 int node;
1da177e4 32
73c27992 33 /* Result passed back to kthread_create() from kthreadd. */
1da177e4
LT
34 struct task_struct *result;
35 struct completion done;
65f27f38 36
73c27992 37 struct list_head list;
1da177e4
LT
38};
39
63706172
ON
40struct kthread {
41 int should_stop;
82805ab7 42 void *data;
63706172 43 struct completion exited;
1da177e4
LT
44};
45
63706172
ON
46#define to_kthread(tsk) \
47 container_of((tsk)->vfork_done, struct kthread, exited)
1da177e4 48
9e37bd30
RD
49/**
50 * kthread_should_stop - should this kthread return now?
51 *
72fd4a35 52 * When someone calls kthread_stop() on your kthread, it will be woken
9e37bd30
RD
53 * and this will return true. You should then return, and your return
54 * value will be passed through to kthread_stop().
55 */
1da177e4
LT
56int kthread_should_stop(void)
57{
63706172 58 return to_kthread(current)->should_stop;
1da177e4
LT
59}
60EXPORT_SYMBOL(kthread_should_stop);
61
8a32c441
TH
62/**
63 * kthread_freezable_should_stop - should this freezable kthread return now?
64 * @was_frozen: optional out parameter, indicates whether %current was frozen
65 *
66 * kthread_should_stop() for freezable kthreads, which will enter
67 * refrigerator if necessary. This function is safe from kthread_stop() /
68 * freezer deadlock and freezable kthreads should use this function instead
69 * of calling try_to_freeze() directly.
70 */
71bool kthread_freezable_should_stop(bool *was_frozen)
72{
73 bool frozen = false;
74
75 might_sleep();
76
77 if (unlikely(freezing(current)))
78 frozen = __refrigerator(true);
79
80 if (was_frozen)
81 *was_frozen = frozen;
82
83 return kthread_should_stop();
84}
85EXPORT_SYMBOL_GPL(kthread_freezable_should_stop);
86
82805ab7
TH
87/**
88 * kthread_data - return data value specified on kthread creation
89 * @task: kthread task in question
90 *
91 * Return the data value specified when kthread @task was created.
92 * The caller is responsible for ensuring the validity of @task when
93 * calling this function.
94 */
95void *kthread_data(struct task_struct *task)
96{
97 return to_kthread(task)->data;
98}
99
1da177e4
LT
100static int kthread(void *_create)
101{
63706172 102 /* Copy data: it's on kthread's stack */
1da177e4 103 struct kthread_create_info *create = _create;
63706172
ON
104 int (*threadfn)(void *data) = create->threadfn;
105 void *data = create->data;
106 struct kthread self;
107 int ret;
1da177e4 108
63706172 109 self.should_stop = 0;
82805ab7 110 self.data = data;
63706172
ON
111 init_completion(&self.exited);
112 current->vfork_done = &self.exited;
1da177e4 113
1da177e4 114 /* OK, tell user we're spawned, wait for stop or wakeup */
a076e4bc 115 __set_current_state(TASK_UNINTERRUPTIBLE);
3217ab97 116 create->result = current;
cdd140bd 117 complete(&create->done);
1da177e4
LT
118 schedule();
119
63706172
ON
120 ret = -EINTR;
121 if (!self.should_stop)
1da177e4
LT
122 ret = threadfn(data);
123
63706172
ON
124 /* we can't just return, we must preserve "self" on stack */
125 do_exit(ret);
1da177e4
LT
126}
127
207205a2
ED
128/* called from do_fork() to get node information for about to be created task */
129int tsk_fork_get_node(struct task_struct *tsk)
130{
131#ifdef CONFIG_NUMA
132 if (tsk == kthreadd_task)
133 return tsk->pref_node_fork;
134#endif
135 return numa_node_id();
136}
137
73c27992 138static void create_kthread(struct kthread_create_info *create)
1da177e4 139{
1da177e4
LT
140 int pid;
141
207205a2
ED
142#ifdef CONFIG_NUMA
143 current->pref_node_fork = create->node;
144#endif
1da177e4
LT
145 /* We want our own signal handler (we take no signals by default). */
146 pid = kernel_thread(kthread, create, CLONE_FS | CLONE_FILES | SIGCHLD);
cdd140bd 147 if (pid < 0) {
1da177e4 148 create->result = ERR_PTR(pid);
cdd140bd
ON
149 complete(&create->done);
150 }
1da177e4
LT
151}
152
9e37bd30 153/**
207205a2 154 * kthread_create_on_node - create a kthread.
9e37bd30
RD
155 * @threadfn: the function to run until signal_pending(current).
156 * @data: data ptr for @threadfn.
207205a2 157 * @node: memory node number.
9e37bd30
RD
158 * @namefmt: printf-style name for the thread.
159 *
160 * Description: This helper function creates and names a kernel
161 * thread. The thread will be stopped: use wake_up_process() to start
301ba045 162 * it. See also kthread_run().
9e37bd30 163 *
207205a2
ED
164 * If thread is going to be bound on a particular cpu, give its node
165 * in @node, to get NUMA affinity for kthread stack, or else give -1.
9e37bd30 166 * When woken, the thread will run @threadfn() with @data as its
72fd4a35 167 * argument. @threadfn() can either call do_exit() directly if it is a
25985edc 168 * standalone thread for which no one will call kthread_stop(), or
9e37bd30
RD
169 * return when 'kthread_should_stop()' is true (which means
170 * kthread_stop() has been called). The return value should be zero
171 * or a negative error number; it will be passed to kthread_stop().
172 *
173 * Returns a task_struct or ERR_PTR(-ENOMEM).
174 */
207205a2
ED
175struct task_struct *kthread_create_on_node(int (*threadfn)(void *data),
176 void *data,
177 int node,
178 const char namefmt[],
179 ...)
1da177e4
LT
180{
181 struct kthread_create_info create;
1da177e4
LT
182
183 create.threadfn = threadfn;
184 create.data = data;
207205a2 185 create.node = node;
1da177e4 186 init_completion(&create.done);
73c27992
EB
187
188 spin_lock(&kthread_create_lock);
189 list_add_tail(&create.list, &kthread_create_list);
73c27992
EB
190 spin_unlock(&kthread_create_lock);
191
cbd9b67b 192 wake_up_process(kthreadd_task);
73c27992
EB
193 wait_for_completion(&create.done);
194
1da177e4 195 if (!IS_ERR(create.result)) {
c9b5f501 196 static const struct sched_param param = { .sched_priority = 0 };
1da177e4 197 va_list args;
1c99315b 198
1da177e4
LT
199 va_start(args, namefmt);
200 vsnprintf(create.result->comm, sizeof(create.result->comm),
201 namefmt, args);
202 va_end(args);
1c99315b
ON
203 /*
204 * root may have changed our (kthreadd's) priority or CPU mask.
205 * The kernel thread should not inherit these properties.
206 */
207 sched_setscheduler_nocheck(create.result, SCHED_NORMAL, &param);
1c99315b 208 set_cpus_allowed_ptr(create.result, cpu_all_mask);
1da177e4 209 }
1da177e4
LT
210 return create.result;
211}
207205a2 212EXPORT_SYMBOL(kthread_create_on_node);
1da177e4 213
881232b7
PZ
214/**
215 * kthread_bind - bind a just-created kthread to a cpu.
216 * @p: thread created by kthread_create().
217 * @cpu: cpu (might not be online, must be possible) for @k to run on.
218 *
219 * Description: This function is equivalent to set_cpus_allowed(),
220 * except that @cpu doesn't need to be online, and the thread must be
221 * stopped (i.e., just returned from kthread_create()).
222 */
223void kthread_bind(struct task_struct *p, unsigned int cpu)
224{
225 /* Must have done schedule() in kthread() before we set_task_cpu */
226 if (!wait_task_inactive(p, TASK_UNINTERRUPTIBLE)) {
227 WARN_ON(1);
228 return;
229 }
230
1e1b6c51
KM
231 /* It's safe because the task is inactive. */
232 do_set_cpus_allowed(p, cpumask_of(cpu));
881232b7
PZ
233 p->flags |= PF_THREAD_BOUND;
234}
235EXPORT_SYMBOL(kthread_bind);
236
9e37bd30
RD
237/**
238 * kthread_stop - stop a thread created by kthread_create().
239 * @k: thread created by kthread_create().
240 *
241 * Sets kthread_should_stop() for @k to return true, wakes it, and
9ae26027
ON
242 * waits for it to exit. This can also be called after kthread_create()
243 * instead of calling wake_up_process(): the thread will exit without
244 * calling threadfn().
245 *
246 * If threadfn() may call do_exit() itself, the caller must ensure
247 * task_struct can't go away.
9e37bd30
RD
248 *
249 * Returns the result of threadfn(), or %-EINTR if wake_up_process()
250 * was never called.
251 */
1da177e4
LT
252int kthread_stop(struct task_struct *k)
253{
63706172 254 struct kthread *kthread;
1da177e4
LT
255 int ret;
256
0a16b607 257 trace_sched_kthread_stop(k);
63706172 258 get_task_struct(k);
0a16b607 259
63706172
ON
260 kthread = to_kthread(k);
261 barrier(); /* it might have exited */
262 if (k->vfork_done != NULL) {
263 kthread->should_stop = 1;
264 wake_up_process(k);
265 wait_for_completion(&kthread->exited);
266 }
267 ret = k->exit_code;
1da177e4 268
1da177e4 269 put_task_struct(k);
0a16b607
MD
270 trace_sched_kthread_stop_ret(ret);
271
1da177e4
LT
272 return ret;
273}
52e92e57 274EXPORT_SYMBOL(kthread_stop);
1da177e4 275
e804a4a4 276int kthreadd(void *unused)
1da177e4 277{
73c27992 278 struct task_struct *tsk = current;
1da177e4 279
e804a4a4 280 /* Setup a clean context for our children to inherit. */
73c27992 281 set_task_comm(tsk, "kthreadd");
10ab825b 282 ignore_signals(tsk);
1a2142af 283 set_cpus_allowed_ptr(tsk, cpu_all_mask);
5ab116c9 284 set_mems_allowed(node_states[N_HIGH_MEMORY]);
73c27992 285
34b087e4 286 current->flags |= PF_NOFREEZE;
73c27992
EB
287
288 for (;;) {
289 set_current_state(TASK_INTERRUPTIBLE);
290 if (list_empty(&kthread_create_list))
291 schedule();
292 __set_current_state(TASK_RUNNING);
293
294 spin_lock(&kthread_create_lock);
295 while (!list_empty(&kthread_create_list)) {
296 struct kthread_create_info *create;
297
298 create = list_entry(kthread_create_list.next,
299 struct kthread_create_info, list);
300 list_del_init(&create->list);
301 spin_unlock(&kthread_create_lock);
302
303 create_kthread(create);
304
305 spin_lock(&kthread_create_lock);
306 }
307 spin_unlock(&kthread_create_lock);
308 }
309
310 return 0;
311}
b56c0d89 312
4f32e9b1
YZ
313void __init_kthread_worker(struct kthread_worker *worker,
314 const char *name,
315 struct lock_class_key *key)
316{
317 spin_lock_init(&worker->lock);
318 lockdep_set_class_and_name(&worker->lock, key, name);
319 INIT_LIST_HEAD(&worker->work_list);
320 worker->task = NULL;
321}
322EXPORT_SYMBOL_GPL(__init_kthread_worker);
323
b56c0d89
TH
324/**
325 * kthread_worker_fn - kthread function to process kthread_worker
326 * @worker_ptr: pointer to initialized kthread_worker
327 *
328 * This function can be used as @threadfn to kthread_create() or
329 * kthread_run() with @worker_ptr argument pointing to an initialized
330 * kthread_worker. The started kthread will process work_list until
331 * the it is stopped with kthread_stop(). A kthread can also call
332 * this function directly after extra initialization.
333 *
334 * Different kthreads can be used for the same kthread_worker as long
335 * as there's only one kthread attached to it at any given time. A
336 * kthread_worker without an attached kthread simply collects queued
337 * kthread_works.
338 */
339int kthread_worker_fn(void *worker_ptr)
340{
341 struct kthread_worker *worker = worker_ptr;
342 struct kthread_work *work;
343
344 WARN_ON(worker->task);
345 worker->task = current;
346repeat:
347 set_current_state(TASK_INTERRUPTIBLE); /* mb paired w/ kthread_stop */
348
349 if (kthread_should_stop()) {
350 __set_current_state(TASK_RUNNING);
351 spin_lock_irq(&worker->lock);
352 worker->task = NULL;
353 spin_unlock_irq(&worker->lock);
354 return 0;
355 }
356
357 work = NULL;
358 spin_lock_irq(&worker->lock);
359 if (!list_empty(&worker->work_list)) {
360 work = list_first_entry(&worker->work_list,
361 struct kthread_work, node);
362 list_del_init(&work->node);
363 }
46f3d976 364 worker->current_work = work;
b56c0d89
TH
365 spin_unlock_irq(&worker->lock);
366
367 if (work) {
368 __set_current_state(TASK_RUNNING);
369 work->func(work);
b56c0d89
TH
370 } else if (!freezing(current))
371 schedule();
372
373 try_to_freeze();
374 goto repeat;
375}
376EXPORT_SYMBOL_GPL(kthread_worker_fn);
377
9a2e03d8
TH
378/* insert @work before @pos in @worker */
379static void insert_kthread_work(struct kthread_worker *worker,
380 struct kthread_work *work,
381 struct list_head *pos)
382{
383 lockdep_assert_held(&worker->lock);
384
385 list_add_tail(&work->node, pos);
46f3d976 386 work->worker = worker;
9a2e03d8
TH
387 if (likely(worker->task))
388 wake_up_process(worker->task);
389}
390
b56c0d89
TH
391/**
392 * queue_kthread_work - queue a kthread_work
393 * @worker: target kthread_worker
394 * @work: kthread_work to queue
395 *
396 * Queue @work to work processor @task for async execution. @task
397 * must have been created with kthread_worker_create(). Returns %true
398 * if @work was successfully queued, %false if it was already pending.
399 */
400bool queue_kthread_work(struct kthread_worker *worker,
401 struct kthread_work *work)
402{
403 bool ret = false;
404 unsigned long flags;
405
406 spin_lock_irqsave(&worker->lock, flags);
407 if (list_empty(&work->node)) {
9a2e03d8 408 insert_kthread_work(worker, work, &worker->work_list);
b56c0d89
TH
409 ret = true;
410 }
411 spin_unlock_irqrestore(&worker->lock, flags);
412 return ret;
413}
414EXPORT_SYMBOL_GPL(queue_kthread_work);
415
9a2e03d8
TH
416struct kthread_flush_work {
417 struct kthread_work work;
418 struct completion done;
419};
420
421static void kthread_flush_work_fn(struct kthread_work *work)
422{
423 struct kthread_flush_work *fwork =
424 container_of(work, struct kthread_flush_work, work);
425 complete(&fwork->done);
426}
427
b56c0d89
TH
428/**
429 * flush_kthread_work - flush a kthread_work
430 * @work: work to flush
431 *
432 * If @work is queued or executing, wait for it to finish execution.
433 */
434void flush_kthread_work(struct kthread_work *work)
435{
46f3d976
TH
436 struct kthread_flush_work fwork = {
437 KTHREAD_WORK_INIT(fwork.work, kthread_flush_work_fn),
438 COMPLETION_INITIALIZER_ONSTACK(fwork.done),
439 };
440 struct kthread_worker *worker;
441 bool noop = false;
442
443retry:
444 worker = work->worker;
445 if (!worker)
446 return;
b56c0d89 447
46f3d976
TH
448 spin_lock_irq(&worker->lock);
449 if (work->worker != worker) {
450 spin_unlock_irq(&worker->lock);
451 goto retry;
452 }
b56c0d89 453
46f3d976
TH
454 if (!list_empty(&work->node))
455 insert_kthread_work(worker, &fwork.work, work->node.next);
456 else if (worker->current_work == work)
457 insert_kthread_work(worker, &fwork.work, worker->work_list.next);
458 else
459 noop = true;
b56c0d89 460
46f3d976 461 spin_unlock_irq(&worker->lock);
b56c0d89 462
46f3d976
TH
463 if (!noop)
464 wait_for_completion(&fwork.done);
b56c0d89
TH
465}
466EXPORT_SYMBOL_GPL(flush_kthread_work);
467
b56c0d89
TH
468/**
469 * flush_kthread_worker - flush all current works on a kthread_worker
470 * @worker: worker to flush
471 *
472 * Wait until all currently executing or pending works on @worker are
473 * finished.
474 */
475void flush_kthread_worker(struct kthread_worker *worker)
476{
477 struct kthread_flush_work fwork = {
478 KTHREAD_WORK_INIT(fwork.work, kthread_flush_work_fn),
479 COMPLETION_INITIALIZER_ONSTACK(fwork.done),
480 };
481
482 queue_kthread_work(worker, &fwork.work);
483 wait_for_completion(&fwork.done);
484}
485EXPORT_SYMBOL_GPL(flush_kthread_worker);
This page took 0.576432 seconds and 5 git commands to generate.