blob: 7fa441333529588586cd5a538e7b1fbdd118fbfd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* Kernel thread helper functions.
2 * Copyright (C) 2004 IBM Corporation, Rusty Russell.
3 *
Eric W. Biederman73c27992007-05-09 02:34:32 -07004 * Creation is done via kthreadd, so that we get a clean environment
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * 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>
Miao Xie58568d22009-06-16 15:31:49 -070012#include <linux/cpuset.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/unistd.h>
14#include <linux/file.h>
15#include <linux/module.h>
Arjan van de Ven97d1f152006-03-23 03:00:24 -080016#include <linux/mutex.h>
Steven Rostedtad8d75f2009-04-14 19:39:12 -040017#include <trace/events/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Michal Schmidt4f05b982008-01-25 21:08:33 +010019#define KTHREAD_NICE_LEVEL (-5)
20
Eric W. Biederman73c27992007-05-09 02:34:32 -070021static DEFINE_SPINLOCK(kthread_create_lock);
22static LIST_HEAD(kthread_create_list);
23struct task_struct *kthreadd_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25struct kthread_create_info
26{
Eric W. Biederman73c27992007-05-09 02:34:32 -070027 /* Information passed to kthread() from kthreadd. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 int (*threadfn)(void *data);
29 void *data;
30 struct completion started;
31
Eric W. Biederman73c27992007-05-09 02:34:32 -070032 /* Result passed back to kthread_create() from kthreadd. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 struct task_struct *result;
34 struct completion done;
David Howells65f27f32006-11-22 14:55:48 +000035
Eric W. Biederman73c27992007-05-09 02:34:32 -070036 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037};
38
39struct kthread_stop_info
40{
41 struct task_struct *k;
42 int err;
43 struct completion done;
44};
45
46/* Thread stopping is done by setthing this var: lock serializes
47 * multiple kthread_stop calls. */
Arjan van de Ven97d1f152006-03-23 03:00:24 -080048static DEFINE_MUTEX(kthread_stop_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049static struct kthread_stop_info kthread_stop_info;
50
Randy Dunlap9e37bd32006-06-25 05:49:19 -070051/**
52 * kthread_should_stop - should this kthread return now?
53 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -080054 * When someone calls kthread_stop() on your kthread, it will be woken
Randy Dunlap9e37bd32006-06-25 05:49:19 -070055 * and this will return true. You should then return, and your return
56 * value will be passed through to kthread_stop().
57 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070058int kthread_should_stop(void)
59{
60 return (kthread_stop_info.k == current);
61}
62EXPORT_SYMBOL(kthread_should_stop);
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064static int kthread(void *_create)
65{
66 struct kthread_create_info *create = _create;
67 int (*threadfn)(void *data);
68 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 int ret = -EINTR;
70
Eric W. Biederman73c27992007-05-09 02:34:32 -070071 /* Copy data: it's on kthread's stack */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 threadfn = create->threadfn;
73 data = create->data;
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 /* OK, tell user we're spawned, wait for stop or wakeup */
Oleg Nesterova076e4b2007-05-23 13:57:27 -070076 __set_current_state(TASK_UNINTERRUPTIBLE);
Vitaliy Gusev3217ab92009-04-09 09:50:35 -060077 create->result = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 complete(&create->started);
79 schedule();
80
81 if (!kthread_should_stop())
82 ret = threadfn(data);
83
84 /* It might have exited on its own, w/o kthread_stop. Check. */
85 if (kthread_should_stop()) {
86 kthread_stop_info.err = ret;
87 complete(&kthread_stop_info.done);
88 }
89 return 0;
90}
91
Eric W. Biederman73c27992007-05-09 02:34:32 -070092static void create_kthread(struct kthread_create_info *create)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 int pid;
95
96 /* We want our own signal handler (we take no signals by default). */
97 pid = kernel_thread(kthread, create, CLONE_FS | CLONE_FILES | SIGCHLD);
Oleg Nesterov1c993152009-04-09 09:50:36 -060098 if (pid < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 create->result = ERR_PTR(pid);
Oleg Nesterov1c993152009-04-09 09:50:36 -0600100 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 wait_for_completion(&create->started);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 complete(&create->done);
103}
104
Randy Dunlap9e37bd32006-06-25 05:49:19 -0700105/**
106 * kthread_create - create a kthread.
107 * @threadfn: the function to run until signal_pending(current).
108 * @data: data ptr for @threadfn.
109 * @namefmt: printf-style name for the thread.
110 *
111 * Description: This helper function creates and names a kernel
112 * thread. The thread will be stopped: use wake_up_process() to start
113 * it. See also kthread_run(), kthread_create_on_cpu().
114 *
115 * When woken, the thread will run @threadfn() with @data as its
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800116 * argument. @threadfn() can either call do_exit() directly if it is a
Randy Dunlap9e37bd32006-06-25 05:49:19 -0700117 * standalone thread for which noone will call kthread_stop(), or
118 * return when 'kthread_should_stop()' is true (which means
119 * kthread_stop() has been called). The return value should be zero
120 * or a negative error number; it will be passed to kthread_stop().
121 *
122 * Returns a task_struct or ERR_PTR(-ENOMEM).
123 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124struct task_struct *kthread_create(int (*threadfn)(void *data),
125 void *data,
126 const char namefmt[],
127 ...)
128{
129 struct kthread_create_info create;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131 create.threadfn = threadfn;
132 create.data = data;
133 init_completion(&create.started);
134 init_completion(&create.done);
135
Eric W. Biederman73c27992007-05-09 02:34:32 -0700136 spin_lock(&kthread_create_lock);
137 list_add_tail(&create.list, &kthread_create_list);
Eric W. Biederman73c27992007-05-09 02:34:32 -0700138 spin_unlock(&kthread_create_lock);
139
Dmitry Adamushkocbd9b672008-04-29 00:59:23 -0700140 wake_up_process(kthreadd_task);
Eric W. Biederman73c27992007-05-09 02:34:32 -0700141 wait_for_completion(&create.done);
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 if (!IS_ERR(create.result)) {
Oleg Nesterov1c993152009-04-09 09:50:36 -0600144 struct sched_param param = { .sched_priority = 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 va_list args;
Oleg Nesterov1c993152009-04-09 09:50:36 -0600146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 va_start(args, namefmt);
148 vsnprintf(create.result->comm, sizeof(create.result->comm),
149 namefmt, args);
150 va_end(args);
Oleg Nesterov1c993152009-04-09 09:50:36 -0600151 /*
152 * root may have changed our (kthreadd's) priority or CPU mask.
153 * The kernel thread should not inherit these properties.
154 */
155 sched_setscheduler_nocheck(create.result, SCHED_NORMAL, &param);
156 set_user_nice(create.result, KTHREAD_NICE_LEVEL);
157 set_cpus_allowed_ptr(create.result, cpu_all_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 return create.result;
160}
161EXPORT_SYMBOL(kthread_create);
162
Randy Dunlap9e37bd32006-06-25 05:49:19 -0700163/**
164 * kthread_bind - bind a just-created kthread to a cpu.
165 * @k: thread created by kthread_create().
166 * @cpu: cpu (might not be online, must be possible) for @k to run on.
167 *
168 * Description: This function is equivalent to set_cpus_allowed(),
169 * except that @cpu doesn't need to be online, and the thread must be
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800170 * stopped (i.e., just returned from kthread_create()).
Randy Dunlap9e37bd32006-06-25 05:49:19 -0700171 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172void kthread_bind(struct task_struct *k, unsigned int cpu)
173{
Oleg Nesterov293adee2008-10-18 20:28:24 -0700174 /* Must have done schedule() in kthread() before we set_task_cpu */
175 if (!wait_task_inactive(k, TASK_UNINTERRUPTIBLE)) {
Oleg Nesterova076e4b2007-05-23 13:57:27 -0700176 WARN_ON(1);
177 return;
178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 set_task_cpu(k, cpu);
180 k->cpus_allowed = cpumask_of_cpu(cpu);
Gregory Haskins9f0e7382008-02-12 13:30:05 -0500181 k->rt.nr_cpus_allowed = 1;
David Rientjes9985b0b2008-06-05 12:57:11 -0700182 k->flags |= PF_THREAD_BOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}
184EXPORT_SYMBOL(kthread_bind);
185
Randy Dunlap9e37bd32006-06-25 05:49:19 -0700186/**
187 * kthread_stop - stop a thread created by kthread_create().
188 * @k: thread created by kthread_create().
189 *
190 * Sets kthread_should_stop() for @k to return true, wakes it, and
191 * waits for it to exit. Your threadfn() must not call do_exit()
192 * itself if you use this function! This can also be called after
193 * kthread_create() instead of calling wake_up_process(): the thread
194 * will exit without calling threadfn().
195 *
196 * Returns the result of threadfn(), or %-EINTR if wake_up_process()
197 * was never called.
198 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199int kthread_stop(struct task_struct *k)
200{
201 int ret;
202
Arjan van de Ven97d1f152006-03-23 03:00:24 -0800203 mutex_lock(&kthread_stop_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 /* It could exit after stop_info.k set, but before wake_up_process. */
206 get_task_struct(k);
207
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -0400208 trace_sched_kthread_stop(k);
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 /* Must init completion *before* thread sees kthread_stop_info.k */
211 init_completion(&kthread_stop_info.done);
akpm@osdl.orgd59dd462005-05-01 08:58:47 -0700212 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 /* Now set kthread_should_stop() to true, and wake it up. */
215 kthread_stop_info.k = k;
Adrian Bunk52e92e52006-07-14 00:24:05 -0700216 wake_up_process(k);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 put_task_struct(k);
218
219 /* Once it dies, reset stop ptr, gather result and we're done. */
220 wait_for_completion(&kthread_stop_info.done);
221 kthread_stop_info.k = NULL;
222 ret = kthread_stop_info.err;
Arjan van de Ven97d1f152006-03-23 03:00:24 -0800223 mutex_unlock(&kthread_stop_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -0400225 trace_sched_kthread_stop_ret(ret);
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return ret;
228}
Adrian Bunk52e92e52006-07-14 00:24:05 -0700229EXPORT_SYMBOL(kthread_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Satyam Sharmae804a4a2007-07-31 00:39:16 -0700231int kthreadd(void *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
Eric W. Biederman73c27992007-05-09 02:34:32 -0700233 struct task_struct *tsk = current;
Eric W. Biederman73c27992007-05-09 02:34:32 -0700234
Satyam Sharmae804a4a2007-07-31 00:39:16 -0700235 /* Setup a clean context for our children to inherit. */
Eric W. Biederman73c27992007-05-09 02:34:32 -0700236 set_task_comm(tsk, "kthreadd");
Oleg Nesterov10ab8252007-05-09 02:34:37 -0700237 ignore_signals(tsk);
Michal Schmidt4f05b982008-01-25 21:08:33 +0100238 set_user_nice(tsk, KTHREAD_NICE_LEVEL);
Rusty Russell1a2142a2009-03-30 22:05:10 -0600239 set_cpus_allowed_ptr(tsk, cpu_all_mask);
Miao Xie58568d22009-06-16 15:31:49 -0700240 set_mems_allowed(node_possible_map);
Eric W. Biederman73c27992007-05-09 02:34:32 -0700241
Rafael J. Wysockiebb12db2008-06-11 22:04:29 +0200242 current->flags |= PF_NOFREEZE | PF_FREEZER_NOSIG;
Eric W. Biederman73c27992007-05-09 02:34:32 -0700243
244 for (;;) {
245 set_current_state(TASK_INTERRUPTIBLE);
246 if (list_empty(&kthread_create_list))
247 schedule();
248 __set_current_state(TASK_RUNNING);
249
250 spin_lock(&kthread_create_lock);
251 while (!list_empty(&kthread_create_list)) {
252 struct kthread_create_info *create;
253
254 create = list_entry(kthread_create_list.next,
255 struct kthread_create_info, list);
256 list_del_init(&create->list);
257 spin_unlock(&kthread_create_lock);
258
259 create_kthread(create);
260
261 spin_lock(&kthread_create_lock);
262 }
263 spin_unlock(&kthread_create_lock);
264 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 return 0;
267}