patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / kernel / kthread.c
1 /* Kernel thread helper functions.
2  *   Copyright (C) 2004 IBM Corporation, Rusty Russell.
3  *
4  * Creation is done via keventd, so that we get a clean environment
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>
12 #include <linux/unistd.h>
13 #include <linux/file.h>
14 #include <linux/module.h>
15 #include <asm/semaphore.h>
16
17 struct kthread_create_info
18 {
19         /* Information passed to kthread() from keventd. */
20         int (*threadfn)(void *data);
21         void *data;
22         struct completion started;
23
24         /* Result passed back to kthread_create() from keventd. */
25         struct task_struct *result;
26         struct completion done;
27 };
28
29 struct kthread_stop_info
30 {
31         struct task_struct *k;
32         int err;
33         struct completion done;
34 };
35
36 /* Thread stopping is done by setthing this var: lock serializes
37  * multiple kthread_stop calls. */
38 static DECLARE_MUTEX(kthread_stop_lock);
39 static struct kthread_stop_info kthread_stop_info;
40
41 int kthread_should_stop(void)
42 {
43         return (kthread_stop_info.k == current);
44 }
45 EXPORT_SYMBOL(kthread_should_stop);
46
47 static void kthread_exit_files(void)
48 {
49         struct fs_struct *fs;
50         struct task_struct *tsk = current;
51
52         exit_fs(tsk);           /* current->fs->count--; */
53         fs = init_task.fs;
54         tsk->fs = fs;
55         atomic_inc(&fs->count);
56         exit_files(tsk);
57         current->files = init_task.files;
58         atomic_inc(&tsk->files->count);
59 }
60
61 static int kthread(void *_create)
62 {
63         struct kthread_create_info *create = _create;
64         int (*threadfn)(void *data);
65         void *data;
66         sigset_t blocked;
67         int ret = -EINTR;
68         cpumask_t mask = CPU_MASK_ALL;
69
70         kthread_exit_files();
71
72         /* Copy data: it's on keventd's stack */
73         threadfn = create->threadfn;
74         data = create->data;
75
76         /* Block and flush all signals (in case we're not from keventd). */
77         sigfillset(&blocked);
78         sigprocmask(SIG_BLOCK, &blocked, NULL);
79         flush_signals(current);
80
81         /* By default we can run anywhere, unlike keventd. */
82         set_cpus_allowed(current, mask);
83
84         /* OK, tell user we're spawned, wait for stop or wakeup */
85         __set_current_state(TASK_INTERRUPTIBLE);
86         complete(&create->started);
87         schedule();
88
89         if (!kthread_should_stop())
90                 ret = threadfn(data);
91
92         /* It might have exited on its own, w/o kthread_stop.  Check. */
93         if (kthread_should_stop()) {
94                 kthread_stop_info.err = ret;
95                 complete(&kthread_stop_info.done);
96         }
97         return 0;
98 }
99
100 /* We are keventd: create a thread. */
101 static void keventd_create_kthread(void *_create)
102 {
103         struct kthread_create_info *create = _create;
104         int pid;
105
106         /* We want our own signal handler (we take no signals by default). */
107         pid = kernel_thread(kthread, create, CLONE_FS | CLONE_FILES | SIGCHLD);
108         if (pid < 0) {
109                 create->result = ERR_PTR(pid);
110         } else {
111                 wait_for_completion(&create->started);
112                 create->result = find_task_by_pid(pid);
113         }
114         complete(&create->done);
115 }
116
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;
123         DECLARE_WORK(work, keventd_create_kthread, &create);
124
125         create.threadfn = threadfn;
126         create.data = data;
127         init_completion(&create.started);
128         init_completion(&create.done);
129
130         /* If we're being called to start the first workqueue, we
131          * can't use keventd. */
132         if (!keventd_up())
133                 work.func(work.data);
134         else {
135                 schedule_work(&work);
136                 wait_for_completion(&create.done);
137         }
138         if (!IS_ERR(create.result)) {
139                 va_list args;
140                 va_start(args, namefmt);
141                 vsnprintf(create.result->comm, sizeof(create.result->comm),
142                           namefmt, args);
143                 va_end(args);
144         }
145
146         return create.result;
147 }
148 EXPORT_SYMBOL(kthread_create);
149
150 void kthread_bind(struct task_struct *k, unsigned int cpu)
151 {
152         BUG_ON(k->state != TASK_INTERRUPTIBLE);
153         /* Must have done schedule() in kthread() before we set_task_cpu */
154         wait_task_inactive(k);
155         set_task_cpu(k, cpu);
156         k->cpus_allowed = cpumask_of_cpu(cpu);
157 }
158 EXPORT_SYMBOL(kthread_bind);
159
160 int kthread_stop(struct task_struct *k)
161 {
162         int ret;
163
164         down(&kthread_stop_lock);
165
166         /* It could exit after stop_info.k set, but before wake_up_process. */
167         get_task_struct(k);
168
169         /* Must init completion *before* thread sees kthread_stop_info.k */
170         init_completion(&kthread_stop_info.done);
171         wmb();
172
173         /* Now set kthread_should_stop() to true, and wake it up. */
174         kthread_stop_info.k = k;
175         wake_up_process(k);
176         put_task_struct(k);
177
178         /* Once it dies, reset stop ptr, gather result and we're done. */
179         wait_for_completion(&kthread_stop_info.done);
180         kthread_stop_info.k = NULL;
181         ret = kthread_stop_info.err;
182         up(&kthread_stop_lock);
183
184         return ret;
185 }
186 EXPORT_SYMBOL(kthread_stop);