blob: 96cff2f8710baac71e7ce91ec96202665142b5e8 [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>
12#include <linux/unistd.h>
13#include <linux/file.h>
14#include <linux/module.h>
Arjan van de Ven97d1f152006-03-23 03:00:24 -080015#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Michal Schmidt4f05b982008-01-25 21:08:33 +010017#define KTHREAD_NICE_LEVEL (-5)
18
Eric W. Biederman73c27992007-05-09 02:34:32 -070019static DEFINE_SPINLOCK(kthread_create_lock);
20static LIST_HEAD(kthread_create_list);
21struct task_struct *kthreadd_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23struct kthread_create_info
24{
Eric W. Biederman73c27992007-05-09 02:34:32 -070025 /* Information passed to kthread() from kthreadd. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 int (*threadfn)(void *data);
27 void *data;
28 struct completion started;
29
Eric W. Biederman73c27992007-05-09 02:34:32 -070030 /* Result passed back to kthread_create() from kthreadd. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 struct task_struct *result;
32 struct completion done;
David Howells65f27f32006-11-22 14:55:48 +000033
Eric W. Biederman73c27992007-05-09 02:34:32 -070034 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035};
36
37struct kthread_stop_info
38{
39 struct task_struct *k;
40 int err;
41 struct completion done;
42};
43
44/* Thread stopping is done by setthing this var: lock serializes
45 * multiple kthread_stop calls. */
Arjan van de Ven97d1f152006-03-23 03:00:24 -080046static DEFINE_MUTEX(kthread_stop_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047static struct kthread_stop_info kthread_stop_info;
48
Randy Dunlap9e37bd32006-06-25 05:49:19 -070049/**
50 * kthread_should_stop - should this kthread return now?
51 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -080052 * When someone calls kthread_stop() on your kthread, it will be woken
Randy Dunlap9e37bd32006-06-25 05:49:19 -070053 * and this will return true. You should then return, and your return
54 * value will be passed through to kthread_stop().
55 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056int kthread_should_stop(void)
57{
58 return (kthread_stop_info.k == current);
59}
60EXPORT_SYMBOL(kthread_should_stop);
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062static int kthread(void *_create)
63{
64 struct kthread_create_info *create = _create;
65 int (*threadfn)(void *data);
66 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 int ret = -EINTR;
68
Eric W. Biederman73c27992007-05-09 02:34:32 -070069 /* Copy data: it's on kthread's stack */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 threadfn = create->threadfn;
71 data = create->data;
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 /* OK, tell user we're spawned, wait for stop or wakeup */
Oleg Nesterova076e4b2007-05-23 13:57:27 -070074 __set_current_state(TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 complete(&create->started);
76 schedule();
77
78 if (!kthread_should_stop())
79 ret = threadfn(data);
80
81 /* It might have exited on its own, w/o kthread_stop. Check. */
82 if (kthread_should_stop()) {
83 kthread_stop_info.err = ret;
84 complete(&kthread_stop_info.done);
85 }
86 return 0;
87}
88
Eric W. Biederman73c27992007-05-09 02:34:32 -070089static void create_kthread(struct kthread_create_info *create)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 int pid;
92
93 /* We want our own signal handler (we take no signals by default). */
94 pid = kernel_thread(kthread, create, CLONE_FS | CLONE_FILES | SIGCHLD);
95 if (pid < 0) {
96 create->result = ERR_PTR(pid);
97 } else {
Michal Schmidt4f05b982008-01-25 21:08:33 +010098 struct sched_param param = { .sched_priority = 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 wait_for_completion(&create->started);
Andrew Morton05eeae22006-03-25 03:07:48 -0800100 read_lock(&tasklist_lock);
Pavel Emelyanov5cd20452008-04-30 00:54:24 -0700101 create->result = find_task_by_pid_ns(pid, &init_pid_ns);
Andrew Morton05eeae22006-03-25 03:07:48 -0800102 read_unlock(&tasklist_lock);
Michal Schmidt4f05b982008-01-25 21:08:33 +0100103 /*
104 * root may have changed our (kthreadd's) priority or CPU mask.
105 * The kernel thread should not inherit these properties.
106 */
107 sched_setscheduler(create->result, SCHED_NORMAL, &param);
108 set_user_nice(create->result, KTHREAD_NICE_LEVEL);
Mike Travis8df185a2008-07-08 15:55:48 -0700109 set_cpus_allowed_ptr(create->result, CPU_MASK_ALL_PTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
111 complete(&create->done);
112}
113
Randy Dunlap9e37bd32006-06-25 05:49:19 -0700114/**
115 * kthread_create - create a kthread.
116 * @threadfn: the function to run until signal_pending(current).
117 * @data: data ptr for @threadfn.
118 * @namefmt: printf-style name for the thread.
119 *
120 * Description: This helper function creates and names a kernel
121 * thread. The thread will be stopped: use wake_up_process() to start
122 * it. See also kthread_run(), kthread_create_on_cpu().
123 *
124 * When woken, the thread will run @threadfn() with @data as its
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800125 * argument. @threadfn() can either call do_exit() directly if it is a
Randy Dunlap9e37bd32006-06-25 05:49:19 -0700126 * standalone thread for which noone will call kthread_stop(), or
127 * return when 'kthread_should_stop()' is true (which means
128 * kthread_stop() has been called). The return value should be zero
129 * or a negative error number; it will be passed to kthread_stop().
130 *
131 * Returns a task_struct or ERR_PTR(-ENOMEM).
132 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133struct task_struct *kthread_create(int (*threadfn)(void *data),
134 void *data,
135 const char namefmt[],
136 ...)
137{
138 struct kthread_create_info create;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140 create.threadfn = threadfn;
141 create.data = data;
142 init_completion(&create.started);
143 init_completion(&create.done);
144
Eric W. Biederman73c27992007-05-09 02:34:32 -0700145 spin_lock(&kthread_create_lock);
146 list_add_tail(&create.list, &kthread_create_list);
Eric W. Biederman73c27992007-05-09 02:34:32 -0700147 spin_unlock(&kthread_create_lock);
148
Dmitry Adamushkocbd9b672008-04-29 00:59:23 -0700149 wake_up_process(kthreadd_task);
Eric W. Biederman73c27992007-05-09 02:34:32 -0700150 wait_for_completion(&create.done);
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 if (!IS_ERR(create.result)) {
153 va_list args;
154 va_start(args, namefmt);
155 vsnprintf(create.result->comm, sizeof(create.result->comm),
156 namefmt, args);
157 va_end(args);
158 }
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 Nesterova076e4b2007-05-23 13:57:27 -0700174 if (k->state != TASK_UNINTERRUPTIBLE) {
175 WARN_ON(1);
176 return;
177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 /* Must have done schedule() in kthread() before we set_task_cpu */
Roland McGrath85ba2d82008-07-25 19:45:58 -0700179 wait_task_inactive(k, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 set_task_cpu(k, cpu);
181 k->cpus_allowed = cpumask_of_cpu(cpu);
Gregory Haskins9f0e7382008-02-12 13:30:05 -0500182 k->rt.nr_cpus_allowed = 1;
David Rientjes9985b0b2008-06-05 12:57:11 -0700183 k->flags |= PF_THREAD_BOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
185EXPORT_SYMBOL(kthread_bind);
186
Randy Dunlap9e37bd32006-06-25 05:49:19 -0700187/**
188 * kthread_stop - stop a thread created by kthread_create().
189 * @k: thread created by kthread_create().
190 *
191 * Sets kthread_should_stop() for @k to return true, wakes it, and
192 * waits for it to exit. Your threadfn() must not call do_exit()
193 * itself if you use this function! This can also be called after
194 * kthread_create() instead of calling wake_up_process(): the thread
195 * will exit without calling threadfn().
196 *
197 * Returns the result of threadfn(), or %-EINTR if wake_up_process()
198 * was never called.
199 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200int kthread_stop(struct task_struct *k)
201{
202 int ret;
203
Arjan van de Ven97d1f152006-03-23 03:00:24 -0800204 mutex_lock(&kthread_stop_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 /* It could exit after stop_info.k set, but before wake_up_process. */
207 get_task_struct(k);
208
209 /* Must init completion *before* thread sees kthread_stop_info.k */
210 init_completion(&kthread_stop_info.done);
akpm@osdl.orgd59dd462005-05-01 08:58:47 -0700211 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 /* Now set kthread_should_stop() to true, and wake it up. */
214 kthread_stop_info.k = k;
Adrian Bunk52e92e52006-07-14 00:24:05 -0700215 wake_up_process(k);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 put_task_struct(k);
217
218 /* Once it dies, reset stop ptr, gather result and we're done. */
219 wait_for_completion(&kthread_stop_info.done);
220 kthread_stop_info.k = NULL;
221 ret = kthread_stop_info.err;
Arjan van de Ven97d1f152006-03-23 03:00:24 -0800222 mutex_unlock(&kthread_stop_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 return ret;
225}
Adrian Bunk52e92e52006-07-14 00:24:05 -0700226EXPORT_SYMBOL(kthread_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Satyam Sharmae804a4a2007-07-31 00:39:16 -0700228int kthreadd(void *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
Eric W. Biederman73c27992007-05-09 02:34:32 -0700230 struct task_struct *tsk = current;
Eric W. Biederman73c27992007-05-09 02:34:32 -0700231
Satyam Sharmae804a4a2007-07-31 00:39:16 -0700232 /* Setup a clean context for our children to inherit. */
Eric W. Biederman73c27992007-05-09 02:34:32 -0700233 set_task_comm(tsk, "kthreadd");
Oleg Nesterov10ab8252007-05-09 02:34:37 -0700234 ignore_signals(tsk);
Michal Schmidt4f05b982008-01-25 21:08:33 +0100235 set_user_nice(tsk, KTHREAD_NICE_LEVEL);
Mike Travis8df185a2008-07-08 15:55:48 -0700236 set_cpus_allowed_ptr(tsk, CPU_MASK_ALL_PTR);
Eric W. Biederman73c27992007-05-09 02:34:32 -0700237
Rafael J. Wysockiebb12db2008-06-11 22:04:29 +0200238 current->flags |= PF_NOFREEZE | PF_FREEZER_NOSIG;
Eric W. Biederman73c27992007-05-09 02:34:32 -0700239
240 for (;;) {
241 set_current_state(TASK_INTERRUPTIBLE);
242 if (list_empty(&kthread_create_list))
243 schedule();
244 __set_current_state(TASK_RUNNING);
245
246 spin_lock(&kthread_create_lock);
247 while (!list_empty(&kthread_create_list)) {
248 struct kthread_create_info *create;
249
250 create = list_entry(kthread_create_list.next,
251 struct kthread_create_info, list);
252 list_del_init(&create->list);
253 spin_unlock(&kthread_create_lock);
254
255 create_kthread(create);
256
257 spin_lock(&kthread_create_lock);
258 }
259 spin_unlock(&kthread_create_lock);
260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 return 0;
263}