| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* Kernel thread helper functions. | 
|  | 2 | *   Copyright (C) 2004 IBM Corporation, Rusty Russell. | 
|  | 3 | * | 
| Eric W. Biederman | 73c2799 | 2007-05-09 02:34:32 -0700 | [diff] [blame] | 4 | * Creation is done via kthreadd, so that we get a clean environment | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> | 
| Miao Xie | 58568d2 | 2009-06-16 15:31:49 -0700 | [diff] [blame] | 12 | #include <linux/cpuset.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/unistd.h> | 
|  | 14 | #include <linux/file.h> | 
|  | 15 | #include <linux/module.h> | 
| Arjan van de Ven | 97d1f15 | 2006-03-23 03:00:24 -0800 | [diff] [blame] | 16 | #include <linux/mutex.h> | 
| Steven Rostedt | ad8d75f | 2009-04-14 19:39:12 -0400 | [diff] [blame] | 17 | #include <trace/events/sched.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 |  | 
| Michal Schmidt | 4f05b98 | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 19 | #define KTHREAD_NICE_LEVEL (-5) | 
|  | 20 |  | 
| Eric W. Biederman | 73c2799 | 2007-05-09 02:34:32 -0700 | [diff] [blame] | 21 | static DEFINE_SPINLOCK(kthread_create_lock); | 
|  | 22 | static LIST_HEAD(kthread_create_list); | 
|  | 23 | struct task_struct *kthreadd_task; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 |  | 
|  | 25 | struct kthread_create_info | 
|  | 26 | { | 
| Eric W. Biederman | 73c2799 | 2007-05-09 02:34:32 -0700 | [diff] [blame] | 27 | /* Information passed to kthread() from kthreadd. */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | int (*threadfn)(void *data); | 
|  | 29 | void *data; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 |  | 
| Eric W. Biederman | 73c2799 | 2007-05-09 02:34:32 -0700 | [diff] [blame] | 31 | /* Result passed back to kthread_create() from kthreadd. */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | struct task_struct *result; | 
|  | 33 | struct completion done; | 
| David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 34 |  | 
| Eric W. Biederman | 73c2799 | 2007-05-09 02:34:32 -0700 | [diff] [blame] | 35 | struct list_head list; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | }; | 
|  | 37 |  | 
| Oleg Nesterov | 6370617 | 2009-06-17 16:27:45 -0700 | [diff] [blame] | 38 | struct kthread { | 
|  | 39 | int should_stop; | 
|  | 40 | struct completion exited; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | }; | 
|  | 42 |  | 
| Oleg Nesterov | 6370617 | 2009-06-17 16:27:45 -0700 | [diff] [blame] | 43 | #define to_kthread(tsk)	\ | 
|  | 44 | container_of((tsk)->vfork_done, struct kthread, exited) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 |  | 
| Randy Dunlap | 9e37bd3 | 2006-06-25 05:49:19 -0700 | [diff] [blame] | 46 | /** | 
|  | 47 | * kthread_should_stop - should this kthread return now? | 
|  | 48 | * | 
| Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 49 | * When someone calls kthread_stop() on your kthread, it will be woken | 
| Randy Dunlap | 9e37bd3 | 2006-06-25 05:49:19 -0700 | [diff] [blame] | 50 | * and this will return true.  You should then return, and your return | 
|  | 51 | * value will be passed through to kthread_stop(). | 
|  | 52 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | int kthread_should_stop(void) | 
|  | 54 | { | 
| Oleg Nesterov | 6370617 | 2009-06-17 16:27:45 -0700 | [diff] [blame] | 55 | return to_kthread(current)->should_stop; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | } | 
|  | 57 | EXPORT_SYMBOL(kthread_should_stop); | 
|  | 58 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | static int kthread(void *_create) | 
|  | 60 | { | 
| Eric W. Biederman | 73c2799 | 2007-05-09 02:34:32 -0700 | [diff] [blame] | 61 | /* Copy data: it's on kthread's stack */ | 
| Oleg Nesterov | 6370617 | 2009-06-17 16:27:45 -0700 | [diff] [blame] | 62 | struct kthread_create_info *create = _create; | 
|  | 63 | int (*threadfn)(void *data) = create->threadfn; | 
|  | 64 | void *data = create->data; | 
|  | 65 | struct kthread self; | 
|  | 66 | int ret; | 
|  | 67 |  | 
|  | 68 | self.should_stop = 0; | 
|  | 69 | init_completion(&self.exited); | 
|  | 70 | current->vfork_done = &self.exited; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | /* OK, tell user we're spawned, wait for stop or wakeup */ | 
| Oleg Nesterov | a076e4b | 2007-05-23 13:57:27 -0700 | [diff] [blame] | 73 | __set_current_state(TASK_UNINTERRUPTIBLE); | 
| Vitaliy Gusev | 3217ab9 | 2009-04-09 09:50:35 -0600 | [diff] [blame] | 74 | create->result = current; | 
| Oleg Nesterov | cdd140b | 2009-06-17 16:27:43 -0700 | [diff] [blame] | 75 | complete(&create->done); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | schedule(); | 
|  | 77 |  | 
| Oleg Nesterov | 6370617 | 2009-06-17 16:27:45 -0700 | [diff] [blame] | 78 | ret = -EINTR; | 
|  | 79 | if (!self.should_stop) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | ret = threadfn(data); | 
|  | 81 |  | 
| Oleg Nesterov | 6370617 | 2009-06-17 16:27:45 -0700 | [diff] [blame] | 82 | /* we can't just return, we must preserve "self" on stack */ | 
|  | 83 | do_exit(ret); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | } | 
|  | 85 |  | 
| Eric W. Biederman | 73c2799 | 2007-05-09 02:34:32 -0700 | [diff] [blame] | 86 | static void create_kthread(struct kthread_create_info *create) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | int pid; | 
|  | 89 |  | 
|  | 90 | /* We want our own signal handler (we take no signals by default). */ | 
|  | 91 | pid = kernel_thread(kthread, create, CLONE_FS | CLONE_FILES | SIGCHLD); | 
| Oleg Nesterov | cdd140b | 2009-06-17 16:27:43 -0700 | [diff] [blame] | 92 | if (pid < 0) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | create->result = ERR_PTR(pid); | 
| Oleg Nesterov | cdd140b | 2009-06-17 16:27:43 -0700 | [diff] [blame] | 94 | complete(&create->done); | 
|  | 95 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | } | 
|  | 97 |  | 
| Randy Dunlap | 9e37bd3 | 2006-06-25 05:49:19 -0700 | [diff] [blame] | 98 | /** | 
|  | 99 | * kthread_create - create a kthread. | 
|  | 100 | * @threadfn: the function to run until signal_pending(current). | 
|  | 101 | * @data: data ptr for @threadfn. | 
|  | 102 | * @namefmt: printf-style name for the thread. | 
|  | 103 | * | 
|  | 104 | * Description: This helper function creates and names a kernel | 
|  | 105 | * thread.  The thread will be stopped: use wake_up_process() to start | 
|  | 106 | * it.  See also kthread_run(), kthread_create_on_cpu(). | 
|  | 107 | * | 
|  | 108 | * When woken, the thread will run @threadfn() with @data as its | 
| Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 109 | * argument. @threadfn() can either call do_exit() directly if it is a | 
| Randy Dunlap | 9e37bd3 | 2006-06-25 05:49:19 -0700 | [diff] [blame] | 110 | * standalone thread for which noone will call kthread_stop(), or | 
|  | 111 | * return when 'kthread_should_stop()' is true (which means | 
|  | 112 | * kthread_stop() has been called).  The return value should be zero | 
|  | 113 | * or a negative error number; it will be passed to kthread_stop(). | 
|  | 114 | * | 
|  | 115 | * Returns a task_struct or ERR_PTR(-ENOMEM). | 
|  | 116 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | struct task_struct *kthread_create(int (*threadfn)(void *data), | 
|  | 118 | void *data, | 
|  | 119 | const char namefmt[], | 
|  | 120 | ...) | 
|  | 121 | { | 
|  | 122 | struct kthread_create_info create; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 |  | 
|  | 124 | create.threadfn = threadfn; | 
|  | 125 | create.data = data; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | init_completion(&create.done); | 
|  | 127 |  | 
| Eric W. Biederman | 73c2799 | 2007-05-09 02:34:32 -0700 | [diff] [blame] | 128 | spin_lock(&kthread_create_lock); | 
|  | 129 | list_add_tail(&create.list, &kthread_create_list); | 
| Eric W. Biederman | 73c2799 | 2007-05-09 02:34:32 -0700 | [diff] [blame] | 130 | spin_unlock(&kthread_create_lock); | 
|  | 131 |  | 
| Dmitry Adamushko | cbd9b67 | 2008-04-29 00:59:23 -0700 | [diff] [blame] | 132 | wake_up_process(kthreadd_task); | 
| Eric W. Biederman | 73c2799 | 2007-05-09 02:34:32 -0700 | [diff] [blame] | 133 | wait_for_completion(&create.done); | 
|  | 134 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | if (!IS_ERR(create.result)) { | 
| Oleg Nesterov | 1c99315 | 2009-04-09 09:50:36 -0600 | [diff] [blame] | 136 | struct sched_param param = { .sched_priority = 0 }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | va_list args; | 
| Oleg Nesterov | 1c99315 | 2009-04-09 09:50:36 -0600 | [diff] [blame] | 138 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | va_start(args, namefmt); | 
|  | 140 | vsnprintf(create.result->comm, sizeof(create.result->comm), | 
|  | 141 | namefmt, args); | 
|  | 142 | va_end(args); | 
| Oleg Nesterov | 1c99315 | 2009-04-09 09:50:36 -0600 | [diff] [blame] | 143 | /* | 
|  | 144 | * root may have changed our (kthreadd's) priority or CPU mask. | 
|  | 145 | * The kernel thread should not inherit these properties. | 
|  | 146 | */ | 
|  | 147 | sched_setscheduler_nocheck(create.result, SCHED_NORMAL, ¶m); | 
|  | 148 | set_user_nice(create.result, KTHREAD_NICE_LEVEL); | 
|  | 149 | set_cpus_allowed_ptr(create.result, cpu_all_mask); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | return create.result; | 
|  | 152 | } | 
|  | 153 | EXPORT_SYMBOL(kthread_create); | 
|  | 154 |  | 
| Randy Dunlap | 9e37bd3 | 2006-06-25 05:49:19 -0700 | [diff] [blame] | 155 | /** | 
|  | 156 | * kthread_bind - bind a just-created kthread to a cpu. | 
|  | 157 | * @k: thread created by kthread_create(). | 
|  | 158 | * @cpu: cpu (might not be online, must be possible) for @k to run on. | 
|  | 159 | * | 
|  | 160 | * Description: This function is equivalent to set_cpus_allowed(), | 
|  | 161 | * except that @cpu doesn't need to be online, and the thread must be | 
| Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 162 | * stopped (i.e., just returned from kthread_create()). | 
| Randy Dunlap | 9e37bd3 | 2006-06-25 05:49:19 -0700 | [diff] [blame] | 163 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | void kthread_bind(struct task_struct *k, unsigned int cpu) | 
|  | 165 | { | 
| Oleg Nesterov | 293adee | 2008-10-18 20:28:24 -0700 | [diff] [blame] | 166 | /* Must have done schedule() in kthread() before we set_task_cpu */ | 
|  | 167 | if (!wait_task_inactive(k, TASK_UNINTERRUPTIBLE)) { | 
| Oleg Nesterov | a076e4b | 2007-05-23 13:57:27 -0700 | [diff] [blame] | 168 | WARN_ON(1); | 
|  | 169 | return; | 
|  | 170 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | set_task_cpu(k, cpu); | 
|  | 172 | k->cpus_allowed = cpumask_of_cpu(cpu); | 
| Gregory Haskins | 9f0e738 | 2008-02-12 13:30:05 -0500 | [diff] [blame] | 173 | k->rt.nr_cpus_allowed = 1; | 
| David Rientjes | 9985b0b | 2008-06-05 12:57:11 -0700 | [diff] [blame] | 174 | k->flags |= PF_THREAD_BOUND; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | } | 
|  | 176 | EXPORT_SYMBOL(kthread_bind); | 
|  | 177 |  | 
| Randy Dunlap | 9e37bd3 | 2006-06-25 05:49:19 -0700 | [diff] [blame] | 178 | /** | 
|  | 179 | * kthread_stop - stop a thread created by kthread_create(). | 
|  | 180 | * @k: thread created by kthread_create(). | 
|  | 181 | * | 
|  | 182 | * Sets kthread_should_stop() for @k to return true, wakes it, and | 
|  | 183 | * waits for it to exit.  Your threadfn() must not call do_exit() | 
|  | 184 | * itself if you use this function!  This can also be called after | 
|  | 185 | * kthread_create() instead of calling wake_up_process(): the thread | 
|  | 186 | * will exit without calling threadfn(). | 
|  | 187 | * | 
|  | 188 | * Returns the result of threadfn(), or %-EINTR if wake_up_process() | 
|  | 189 | * was never called. | 
|  | 190 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | int kthread_stop(struct task_struct *k) | 
|  | 192 | { | 
| Oleg Nesterov | 6370617 | 2009-06-17 16:27:45 -0700 | [diff] [blame] | 193 | struct kthread *kthread; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | int ret; | 
|  | 195 |  | 
| Oleg Nesterov | 6370617 | 2009-06-17 16:27:45 -0700 | [diff] [blame] | 196 | trace_sched_kthread_stop(k); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | get_task_struct(k); | 
|  | 198 |  | 
| Oleg Nesterov | 6370617 | 2009-06-17 16:27:45 -0700 | [diff] [blame] | 199 | kthread = to_kthread(k); | 
|  | 200 | barrier(); /* it might have exited */ | 
|  | 201 | if (k->vfork_done != NULL) { | 
|  | 202 | kthread->should_stop = 1; | 
|  | 203 | wake_up_process(k); | 
|  | 204 | wait_for_completion(&kthread->exited); | 
|  | 205 | } | 
|  | 206 | ret = k->exit_code; | 
| Mathieu Desnoyers | 0a16b60 | 2008-07-18 12:16:17 -0400 | [diff] [blame] | 207 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | put_task_struct(k); | 
| Mathieu Desnoyers | 0a16b60 | 2008-07-18 12:16:17 -0400 | [diff] [blame] | 209 | trace_sched_kthread_stop_ret(ret); | 
|  | 210 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | return ret; | 
|  | 212 | } | 
| Adrian Bunk | 52e92e5 | 2006-07-14 00:24:05 -0700 | [diff] [blame] | 213 | EXPORT_SYMBOL(kthread_stop); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 |  | 
| Satyam Sharma | e804a4a | 2007-07-31 00:39:16 -0700 | [diff] [blame] | 215 | int kthreadd(void *unused) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | { | 
| Eric W. Biederman | 73c2799 | 2007-05-09 02:34:32 -0700 | [diff] [blame] | 217 | struct task_struct *tsk = current; | 
| Eric W. Biederman | 73c2799 | 2007-05-09 02:34:32 -0700 | [diff] [blame] | 218 |  | 
| Satyam Sharma | e804a4a | 2007-07-31 00:39:16 -0700 | [diff] [blame] | 219 | /* Setup a clean context for our children to inherit. */ | 
| Eric W. Biederman | 73c2799 | 2007-05-09 02:34:32 -0700 | [diff] [blame] | 220 | set_task_comm(tsk, "kthreadd"); | 
| Oleg Nesterov | 10ab825 | 2007-05-09 02:34:37 -0700 | [diff] [blame] | 221 | ignore_signals(tsk); | 
| Michal Schmidt | 4f05b98 | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 222 | set_user_nice(tsk, KTHREAD_NICE_LEVEL); | 
| Rusty Russell | 1a2142a | 2009-03-30 22:05:10 -0600 | [diff] [blame] | 223 | set_cpus_allowed_ptr(tsk, cpu_all_mask); | 
| Miao Xie | 58568d2 | 2009-06-16 15:31:49 -0700 | [diff] [blame] | 224 | set_mems_allowed(node_possible_map); | 
| Eric W. Biederman | 73c2799 | 2007-05-09 02:34:32 -0700 | [diff] [blame] | 225 |  | 
| Rafael J. Wysocki | ebb12db | 2008-06-11 22:04:29 +0200 | [diff] [blame] | 226 | current->flags |= PF_NOFREEZE | PF_FREEZER_NOSIG; | 
| Eric W. Biederman | 73c2799 | 2007-05-09 02:34:32 -0700 | [diff] [blame] | 227 |  | 
|  | 228 | for (;;) { | 
|  | 229 | set_current_state(TASK_INTERRUPTIBLE); | 
|  | 230 | if (list_empty(&kthread_create_list)) | 
|  | 231 | schedule(); | 
|  | 232 | __set_current_state(TASK_RUNNING); | 
|  | 233 |  | 
|  | 234 | spin_lock(&kthread_create_lock); | 
|  | 235 | while (!list_empty(&kthread_create_list)) { | 
|  | 236 | struct kthread_create_info *create; | 
|  | 237 |  | 
|  | 238 | create = list_entry(kthread_create_list.next, | 
|  | 239 | struct kthread_create_info, list); | 
|  | 240 | list_del_init(&create->list); | 
|  | 241 | spin_unlock(&kthread_create_lock); | 
|  | 242 |  | 
|  | 243 | create_kthread(create); | 
|  | 244 |  | 
|  | 245 | spin_lock(&kthread_create_lock); | 
|  | 246 | } | 
|  | 247 | spin_unlock(&kthread_create_lock); | 
|  | 248 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 |  | 
|  | 250 | return 0; | 
|  | 251 | } |