blob: 65234c89d85b4c38f9f59ad57aa6249d07ce3050 [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 */
Ingo Molnarae7e81c2017-02-01 18:07:51 +01008#include <uapi/linux/sched/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/sched.h>
Ingo Molnar29930022017-02-08 18:51:36 +010010#include <linux/sched/task.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/kthread.h>
12#include <linux/completion.h>
13#include <linux/err.h>
Miao Xie58568d22009-06-16 15:31:49 -070014#include <linux/cpuset.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/unistd.h>
16#include <linux/file.h>
Paul Gortmaker9984de12011-05-23 14:51:41 -040017#include <linux/export.h>
Arjan van de Ven97d1f152006-03-23 03:00:24 -080018#include <linux/mutex.h>
Tejun Heob56c0d82010-06-29 10:07:09 +020019#include <linux/slab.h>
20#include <linux/freezer.h>
Al Viroa74fb732012-10-10 21:28:25 -040021#include <linux/ptrace.h>
Tejun Heocd42d552013-04-30 15:27:21 -070022#include <linux/uaccess.h>
Steven Rostedtad8d75f2009-04-14 19:39:12 -040023#include <trace/events/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Eric W. Biederman73c27992007-05-09 02:34:32 -070025static DEFINE_SPINLOCK(kthread_create_lock);
26static LIST_HEAD(kthread_create_list);
27struct task_struct *kthreadd_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29struct kthread_create_info
30{
Eric W. Biederman73c27992007-05-09 02:34:32 -070031 /* Information passed to kthread() from kthreadd. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 int (*threadfn)(void *data);
33 void *data;
Eric Dumazet207205a2011-03-22 16:30:44 -070034 int node;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Eric W. Biederman73c27992007-05-09 02:34:32 -070036 /* Result passed back to kthread_create() from kthreadd. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 struct task_struct *result;
Tetsuo Handa786235ee2013-11-12 15:06:45 -080038 struct completion *done;
David Howells65f27f32006-11-22 14:55:48 +000039
Eric W. Biederman73c27992007-05-09 02:34:32 -070040 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041};
42
Oleg Nesterov63706172009-06-17 16:27:45 -070043struct kthread {
Thomas Gleixner2a1d4462012-07-16 10:42:36 +000044 unsigned long flags;
45 unsigned int cpu;
Tejun Heo82805ab2010-06-29 10:07:09 +020046 void *data;
Thomas Gleixner2a1d4462012-07-16 10:42:36 +000047 struct completion parked;
Oleg Nesterov63706172009-06-17 16:27:45 -070048 struct completion exited;
Shaohua Li0b508bc2017-09-26 11:02:12 -070049#ifdef CONFIG_BLK_CGROUP
Shaohua Li05e3db92017-09-14 14:02:04 -070050 struct cgroup_subsys_state *blkcg_css;
51#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070052};
53
Thomas Gleixner2a1d4462012-07-16 10:42:36 +000054enum KTHREAD_BITS {
55 KTHREAD_IS_PER_CPU = 0,
56 KTHREAD_SHOULD_STOP,
57 KTHREAD_SHOULD_PARK,
Thomas Gleixner2a1d4462012-07-16 10:42:36 +000058};
59
Oleg Nesterov1da5c462016-11-29 18:50:57 +010060static inline void set_kthread_struct(void *kthread)
61{
62 /*
63 * We abuse ->set_child_tid to avoid the new member and because it
64 * can't be wrongly copied by copy_process(). We also rely on fact
65 * that the caller can't exec, so PF_KTHREAD can't be cleared.
66 */
67 current->set_child_tid = (__force void __user *)kthread;
68}
Oleg Nesterov4ecdafc2013-04-29 15:05:01 -070069
70static inline struct kthread *to_kthread(struct task_struct *k)
71{
Oleg Nesterov1da5c462016-11-29 18:50:57 +010072 WARN_ON(!(k->flags & PF_KTHREAD));
73 return (__force void *)k->set_child_tid;
Oleg Nesterov4ecdafc2013-04-29 15:05:01 -070074}
75
Oleg Nesterov1da5c462016-11-29 18:50:57 +010076void free_kthread_struct(struct task_struct *k)
77{
Shaohua Li05e3db92017-09-14 14:02:04 -070078 struct kthread *kthread;
79
Oleg Nesterov1da5c462016-11-29 18:50:57 +010080 /*
81 * Can be NULL if this kthread was created by kernel_thread()
82 * or if kmalloc() in kthread() failed.
83 */
Shaohua Li05e3db92017-09-14 14:02:04 -070084 kthread = to_kthread(k);
Shaohua Li0b508bc2017-09-26 11:02:12 -070085#ifdef CONFIG_BLK_CGROUP
Shaohua Li05e3db92017-09-14 14:02:04 -070086 WARN_ON_ONCE(kthread && kthread->blkcg_css);
87#endif
88 kfree(kthread);
Oleg Nesterov1da5c462016-11-29 18:50:57 +010089}
90
Randy Dunlap9e37bd32006-06-25 05:49:19 -070091/**
92 * kthread_should_stop - should this kthread return now?
93 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -080094 * When someone calls kthread_stop() on your kthread, it will be woken
Randy Dunlap9e37bd32006-06-25 05:49:19 -070095 * and this will return true. You should then return, and your return
96 * value will be passed through to kthread_stop().
97 */
Thomas Gleixner2a1d4462012-07-16 10:42:36 +000098bool kthread_should_stop(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
Thomas Gleixner2a1d4462012-07-16 10:42:36 +0000100 return test_bit(KTHREAD_SHOULD_STOP, &to_kthread(current)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101}
102EXPORT_SYMBOL(kthread_should_stop);
103
Matthias Kaehlcke01218052019-01-28 15:46:24 -0800104bool __kthread_should_park(struct task_struct *k)
105{
106 return test_bit(KTHREAD_SHOULD_PARK, &to_kthread(k)->flags);
107}
108EXPORT_SYMBOL_GPL(__kthread_should_park);
109
Tejun Heo82805ab2010-06-29 10:07:09 +0200110/**
Thomas Gleixner2a1d4462012-07-16 10:42:36 +0000111 * kthread_should_park - should this kthread park now?
112 *
113 * When someone calls kthread_park() on your kthread, it will be woken
114 * and this will return true. You should then do the necessary
115 * cleanup and call kthread_parkme()
116 *
117 * Similar to kthread_should_stop(), but this keeps the thread alive
118 * and in a park position. kthread_unpark() "restarts" the thread and
119 * calls the thread function again.
120 */
121bool kthread_should_park(void)
122{
Matthias Kaehlcke01218052019-01-28 15:46:24 -0800123 return __kthread_should_park(current);
Thomas Gleixner2a1d4462012-07-16 10:42:36 +0000124}
David Kershner18896452015-08-06 15:46:45 -0700125EXPORT_SYMBOL_GPL(kthread_should_park);
Thomas Gleixner2a1d4462012-07-16 10:42:36 +0000126
127/**
Tejun Heo8a32c442011-11-21 12:32:23 -0800128 * kthread_freezable_should_stop - should this freezable kthread return now?
129 * @was_frozen: optional out parameter, indicates whether %current was frozen
130 *
131 * kthread_should_stop() for freezable kthreads, which will enter
132 * refrigerator if necessary. This function is safe from kthread_stop() /
133 * freezer deadlock and freezable kthreads should use this function instead
134 * of calling try_to_freeze() directly.
135 */
136bool kthread_freezable_should_stop(bool *was_frozen)
137{
138 bool frozen = false;
139
140 might_sleep();
141
142 if (unlikely(freezing(current)))
143 frozen = __refrigerator(true);
144
145 if (was_frozen)
146 *was_frozen = frozen;
147
148 return kthread_should_stop();
149}
150EXPORT_SYMBOL_GPL(kthread_freezable_should_stop);
151
152/**
Tejun Heo82805ab2010-06-29 10:07:09 +0200153 * kthread_data - return data value specified on kthread creation
154 * @task: kthread task in question
155 *
156 * Return the data value specified when kthread @task was created.
157 * The caller is responsible for ensuring the validity of @task when
158 * calling this function.
159 */
160void *kthread_data(struct task_struct *task)
161{
162 return to_kthread(task)->data;
163}
164
Tejun Heocd42d552013-04-30 15:27:21 -0700165/**
Petr Mladeke7005912016-10-11 13:55:17 -0700166 * kthread_probe_data - speculative version of kthread_data()
Tejun Heocd42d552013-04-30 15:27:21 -0700167 * @task: possible kthread task in question
168 *
169 * @task could be a kthread task. Return the data value specified when it
170 * was created if accessible. If @task isn't a kthread task or its data is
171 * inaccessible for any reason, %NULL is returned. This function requires
172 * that @task itself is safe to dereference.
173 */
Petr Mladeke7005912016-10-11 13:55:17 -0700174void *kthread_probe_data(struct task_struct *task)
Tejun Heocd42d552013-04-30 15:27:21 -0700175{
176 struct kthread *kthread = to_kthread(task);
177 void *data = NULL;
178
179 probe_kernel_read(&data, &kthread->data, sizeof(data));
180 return data;
181}
182
Thomas Gleixner2a1d4462012-07-16 10:42:36 +0000183static void __kthread_parkme(struct kthread *self)
184{
Peter Zijlstra741a76b2018-04-30 14:50:22 +0200185 for (;;) {
Peter Zijlstra1cef1152018-06-07 11:45:49 +0200186 /*
187 * TASK_PARKED is a special state; we must serialize against
188 * possible pending wakeups to avoid store-store collisions on
189 * task->state.
190 *
191 * Such a collision might possibly result in the task state
192 * changin from TASK_PARKED and us failing the
193 * wait_task_inactive() in kthread_park().
194 */
195 set_special_state(TASK_PARKED);
Peter Zijlstra741a76b2018-04-30 14:50:22 +0200196 if (!test_bit(KTHREAD_SHOULD_PARK, &self->flags))
197 break;
Peter Zijlstra1cef1152018-06-07 11:45:49 +0200198
Peter Zijlstraf83ee192018-06-07 10:55:56 +0200199 complete(&self->parked);
Thomas Gleixner2a1d4462012-07-16 10:42:36 +0000200 schedule();
Thomas Gleixner2a1d4462012-07-16 10:42:36 +0000201 }
Thomas Gleixner2a1d4462012-07-16 10:42:36 +0000202 __set_current_state(TASK_RUNNING);
203}
204
205void kthread_parkme(void)
206{
207 __kthread_parkme(to_kthread(current));
208}
David Kershner18896452015-08-06 15:46:45 -0700209EXPORT_SYMBOL_GPL(kthread_parkme);
Thomas Gleixner2a1d4462012-07-16 10:42:36 +0000210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211static int kthread(void *_create)
212{
Eric W. Biederman73c27992007-05-09 02:34:32 -0700213 /* Copy data: it's on kthread's stack */
Oleg Nesterov63706172009-06-17 16:27:45 -0700214 struct kthread_create_info *create = _create;
215 int (*threadfn)(void *data) = create->threadfn;
216 void *data = create->data;
Tetsuo Handa786235ee2013-11-12 15:06:45 -0800217 struct completion *done;
Oleg Nesterov1da5c462016-11-29 18:50:57 +0100218 struct kthread *self;
Oleg Nesterov63706172009-06-17 16:27:45 -0700219 int ret;
220
Shaohua Lie10237c2017-11-07 11:09:50 -0800221 self = kzalloc(sizeof(*self), GFP_KERNEL);
Oleg Nesterov1da5c462016-11-29 18:50:57 +0100222 set_kthread_struct(self);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Tetsuo Handa786235ee2013-11-12 15:06:45 -0800224 /* If user was SIGKILLed, I release the structure. */
225 done = xchg(&create->done, NULL);
226 if (!done) {
227 kfree(create);
228 do_exit(-EINTR);
229 }
Oleg Nesterov1da5c462016-11-29 18:50:57 +0100230
231 if (!self) {
232 create->result = ERR_PTR(-ENOMEM);
233 complete(done);
234 do_exit(-ENOMEM);
235 }
236
Oleg Nesterov1da5c462016-11-29 18:50:57 +0100237 self->data = data;
238 init_completion(&self->exited);
239 init_completion(&self->parked);
240 current->vfork_done = &self->exited;
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 /* OK, tell user we're spawned, wait for stop or wakeup */
Oleg Nesterova076e4b2007-05-23 13:57:27 -0700243 __set_current_state(TASK_UNINTERRUPTIBLE);
Vitaliy Gusev3217ab92009-04-09 09:50:35 -0600244 create->result = current;
Tetsuo Handa786235ee2013-11-12 15:06:45 -0800245 complete(done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 schedule();
247
Oleg Nesterov63706172009-06-17 16:27:45 -0700248 ret = -EINTR;
Oleg Nesterov1da5c462016-11-29 18:50:57 +0100249 if (!test_bit(KTHREAD_SHOULD_STOP, &self->flags)) {
Tejun Heo77f88792017-03-16 16:54:24 -0400250 cgroup_kthread_ready();
Oleg Nesterov1da5c462016-11-29 18:50:57 +0100251 __kthread_parkme(self);
Thomas Gleixner2a1d4462012-07-16 10:42:36 +0000252 ret = threadfn(data);
253 }
Oleg Nesterov63706172009-06-17 16:27:45 -0700254 do_exit(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255}
256
Eric Dumazet207205a2011-03-22 16:30:44 -0700257/* called from do_fork() to get node information for about to be created task */
258int tsk_fork_get_node(struct task_struct *tsk)
259{
260#ifdef CONFIG_NUMA
261 if (tsk == kthreadd_task)
262 return tsk->pref_node_fork;
263#endif
Nishanth Aravamudan81c98862014-04-03 14:46:25 -0700264 return NUMA_NO_NODE;
Eric Dumazet207205a2011-03-22 16:30:44 -0700265}
266
Eric W. Biederman73c27992007-05-09 02:34:32 -0700267static void create_kthread(struct kthread_create_info *create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 int pid;
270
Eric Dumazet207205a2011-03-22 16:30:44 -0700271#ifdef CONFIG_NUMA
272 current->pref_node_fork = create->node;
273#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 /* We want our own signal handler (we take no signals by default). */
275 pid = kernel_thread(kthread, create, CLONE_FS | CLONE_FILES | SIGCHLD);
Oleg Nesterovcdd140b2009-06-17 16:27:43 -0700276 if (pid < 0) {
Tetsuo Handa786235ee2013-11-12 15:06:45 -0800277 /* If user was SIGKILLed, I release the structure. */
278 struct completion *done = xchg(&create->done, NULL);
279
280 if (!done) {
281 kfree(create);
282 return;
283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 create->result = ERR_PTR(pid);
Tetsuo Handa786235ee2013-11-12 15:06:45 -0800285 complete(done);
Oleg Nesterovcdd140b2009-06-17 16:27:43 -0700286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
Nicolas Ioossc0b942a2016-12-12 16:40:39 -0800289static __printf(4, 0)
290struct task_struct *__kthread_create_on_node(int (*threadfn)(void *data),
Petr Mladek255451e2016-10-11 13:55:27 -0700291 void *data, int node,
292 const char namefmt[],
293 va_list args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
Tetsuo Handa786235ee2013-11-12 15:06:45 -0800295 DECLARE_COMPLETION_ONSTACK(done);
296 struct task_struct *task;
297 struct kthread_create_info *create = kmalloc(sizeof(*create),
298 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Tetsuo Handa786235ee2013-11-12 15:06:45 -0800300 if (!create)
301 return ERR_PTR(-ENOMEM);
302 create->threadfn = threadfn;
303 create->data = data;
304 create->node = node;
305 create->done = &done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Eric W. Biederman73c27992007-05-09 02:34:32 -0700307 spin_lock(&kthread_create_lock);
Tetsuo Handa786235ee2013-11-12 15:06:45 -0800308 list_add_tail(&create->list, &kthread_create_list);
Eric W. Biederman73c27992007-05-09 02:34:32 -0700309 spin_unlock(&kthread_create_lock);
310
Dmitry Adamushkocbd9b672008-04-29 00:59:23 -0700311 wake_up_process(kthreadd_task);
Tetsuo Handa786235ee2013-11-12 15:06:45 -0800312 /*
313 * Wait for completion in killable state, for I might be chosen by
314 * the OOM killer while kthreadd is trying to allocate memory for
315 * new kernel thread.
316 */
317 if (unlikely(wait_for_completion_killable(&done))) {
318 /*
319 * If I was SIGKILLed before kthreadd (or new kernel thread)
320 * calls complete(), leave the cleanup of this structure to
321 * that thread.
322 */
323 if (xchg(&create->done, NULL))
Tetsuo Handa8fe69292014-06-04 16:05:36 -0700324 return ERR_PTR(-EINTR);
Tetsuo Handa786235ee2013-11-12 15:06:45 -0800325 /*
326 * kthreadd (or new kernel thread) will call complete()
327 * shortly.
328 */
329 wait_for_completion(&done);
330 }
331 task = create->result;
332 if (!IS_ERR(task)) {
Peter Zijlstrac9b5f502011-01-07 13:41:40 +0100333 static const struct sched_param param = { .sched_priority = 0 };
Snild Dolkow3e536e22018-07-26 09:15:39 +0200334 char name[TASK_COMM_LEN];
Oleg Nesterov1c993152009-04-09 09:50:36 -0600335
Snild Dolkow3e536e22018-07-26 09:15:39 +0200336 /*
337 * task is already visible to other tasks, so updating
338 * COMM must be protected.
339 */
340 vsnprintf(name, sizeof(name), namefmt, args);
341 set_task_comm(task, name);
Oleg Nesterov1c993152009-04-09 09:50:36 -0600342 /*
343 * root may have changed our (kthreadd's) priority or CPU mask.
344 * The kernel thread should not inherit these properties.
345 */
Tetsuo Handa786235ee2013-11-12 15:06:45 -0800346 sched_setscheduler_nocheck(task, SCHED_NORMAL, &param);
347 set_cpus_allowed_ptr(task, cpu_all_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 }
Tetsuo Handa786235ee2013-11-12 15:06:45 -0800349 kfree(create);
350 return task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
Petr Mladek255451e2016-10-11 13:55:27 -0700352
353/**
354 * kthread_create_on_node - create a kthread.
355 * @threadfn: the function to run until signal_pending(current).
356 * @data: data ptr for @threadfn.
357 * @node: task and thread structures for the thread are allocated on this node
358 * @namefmt: printf-style name for the thread.
359 *
360 * Description: This helper function creates and names a kernel
361 * thread. The thread will be stopped: use wake_up_process() to start
362 * it. See also kthread_run(). The new thread has SCHED_NORMAL policy and
363 * is affine to all CPUs.
364 *
365 * If thread is going to be bound on a particular cpu, give its node
366 * in @node, to get NUMA affinity for kthread stack, or else give NUMA_NO_NODE.
367 * When woken, the thread will run @threadfn() with @data as its
368 * argument. @threadfn() can either call do_exit() directly if it is a
369 * standalone thread for which no one will call kthread_stop(), or
370 * return when 'kthread_should_stop()' is true (which means
371 * kthread_stop() has been called). The return value should be zero
372 * or a negative error number; it will be passed to kthread_stop().
373 *
374 * Returns a task_struct or ERR_PTR(-ENOMEM) or ERR_PTR(-EINTR).
375 */
376struct task_struct *kthread_create_on_node(int (*threadfn)(void *data),
377 void *data, int node,
378 const char namefmt[],
379 ...)
380{
381 struct task_struct *task;
382 va_list args;
383
384 va_start(args, namefmt);
385 task = __kthread_create_on_node(threadfn, data, node, namefmt, args);
386 va_end(args);
387
388 return task;
389}
Eric Dumazet207205a2011-03-22 16:30:44 -0700390EXPORT_SYMBOL(kthread_create_on_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Peter Zijlstra25834c72015-05-15 17:43:34 +0200392static void __kthread_bind_mask(struct task_struct *p, const struct cpumask *mask, long state)
Thomas Gleixner2a1d4462012-07-16 10:42:36 +0000393{
Peter Zijlstra25834c72015-05-15 17:43:34 +0200394 unsigned long flags;
395
Thomas Gleixnerf2530dc2013-04-09 09:33:34 +0200396 if (!wait_task_inactive(p, state)) {
397 WARN_ON(1);
398 return;
399 }
Peter Zijlstra25834c72015-05-15 17:43:34 +0200400
Thomas Gleixner2a1d4462012-07-16 10:42:36 +0000401 /* It's safe because the task is inactive. */
Peter Zijlstra25834c72015-05-15 17:43:34 +0200402 raw_spin_lock_irqsave(&p->pi_lock, flags);
403 do_set_cpus_allowed(p, mask);
Tejun Heo14a40ff2013-03-19 13:45:20 -0700404 p->flags |= PF_NO_SETAFFINITY;
Peter Zijlstra25834c72015-05-15 17:43:34 +0200405 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
406}
407
408static void __kthread_bind(struct task_struct *p, unsigned int cpu, long state)
409{
410 __kthread_bind_mask(p, cpumask_of(cpu), state);
411}
412
413void kthread_bind_mask(struct task_struct *p, const struct cpumask *mask)
414{
415 __kthread_bind_mask(p, mask, TASK_UNINTERRUPTIBLE);
Thomas Gleixner2a1d4462012-07-16 10:42:36 +0000416}
417
Randy Dunlap9e37bd32006-06-25 05:49:19 -0700418/**
Peter Zijlstra881232b2009-12-16 18:04:39 +0100419 * kthread_bind - bind a just-created kthread to a cpu.
420 * @p: thread created by kthread_create().
421 * @cpu: cpu (might not be online, must be possible) for @k to run on.
422 *
423 * Description: This function is equivalent to set_cpus_allowed(),
424 * except that @cpu doesn't need to be online, and the thread must be
425 * stopped (i.e., just returned from kthread_create()).
426 */
427void kthread_bind(struct task_struct *p, unsigned int cpu)
428{
Thomas Gleixnerf2530dc2013-04-09 09:33:34 +0200429 __kthread_bind(p, cpu, TASK_UNINTERRUPTIBLE);
Peter Zijlstra881232b2009-12-16 18:04:39 +0100430}
431EXPORT_SYMBOL(kthread_bind);
432
433/**
Thomas Gleixner2a1d4462012-07-16 10:42:36 +0000434 * kthread_create_on_cpu - Create a cpu bound kthread
435 * @threadfn: the function to run until signal_pending(current).
436 * @data: data ptr for @threadfn.
437 * @cpu: The cpu on which the thread should be bound,
438 * @namefmt: printf-style name for the thread. Format is restricted
439 * to "name.*%u". Code fills in cpu number.
440 *
441 * Description: This helper function creates and names a kernel thread
442 * The thread will be woken and put into park mode.
443 */
444struct task_struct *kthread_create_on_cpu(int (*threadfn)(void *data),
445 void *data, unsigned int cpu,
446 const char *namefmt)
447{
448 struct task_struct *p;
449
Nishanth Aravamudan10922832014-10-09 15:26:18 -0700450 p = kthread_create_on_node(threadfn, data, cpu_to_node(cpu), namefmt,
Thomas Gleixner2a1d4462012-07-16 10:42:36 +0000451 cpu);
452 if (IS_ERR(p))
453 return p;
Petr Mladeka65d4092016-10-11 13:55:23 -0700454 kthread_bind(p, cpu);
455 /* CPU hotplug need to bind once again when unparking the thread. */
Thomas Gleixner2a1d4462012-07-16 10:42:36 +0000456 set_bit(KTHREAD_IS_PER_CPU, &to_kthread(p)->flags);
457 to_kthread(p)->cpu = cpu;
Thomas Gleixner2a1d4462012-07-16 10:42:36 +0000458 return p;
459}
460
Oleg Nesterovcf380a42016-11-29 18:51:07 +0100461/**
462 * kthread_unpark - unpark a thread created by kthread_create().
463 * @k: thread created by kthread_create().
464 *
465 * Sets kthread_should_park() for @k to return false, wakes it, and
466 * waits for it to return. If the thread is marked percpu then its
467 * bound to the cpu again.
468 */
469void kthread_unpark(struct task_struct *k)
Thomas Gleixnerf2530dc2013-04-09 09:33:34 +0200470{
Oleg Nesterovcf380a42016-11-29 18:51:07 +0100471 struct kthread *kthread = to_kthread(k);
472
Thomas Gleixnerf2530dc2013-04-09 09:33:34 +0200473 /*
Peter Zijlstra85f1abe2018-05-01 18:14:45 +0200474 * Newly created kthread was parked when the CPU was offline.
475 * The binding was lost and we need to set it again.
Thomas Gleixnerf2530dc2013-04-09 09:33:34 +0200476 */
Peter Zijlstra85f1abe2018-05-01 18:14:45 +0200477 if (test_bit(KTHREAD_IS_PER_CPU, &kthread->flags))
478 __kthread_bind(k, kthread->cpu, TASK_PARKED);
479
480 clear_bit(KTHREAD_SHOULD_PARK, &kthread->flags);
Peter Zijlstra1cef1152018-06-07 11:45:49 +0200481 /*
482 * __kthread_parkme() will either see !SHOULD_PARK or get the wakeup.
483 */
Peter Zijlstra85f1abe2018-05-01 18:14:45 +0200484 wake_up_state(k, TASK_PARKED);
Thomas Gleixnerf2530dc2013-04-09 09:33:34 +0200485}
David Kershner18896452015-08-06 15:46:45 -0700486EXPORT_SYMBOL_GPL(kthread_unpark);
Thomas Gleixner2a1d4462012-07-16 10:42:36 +0000487
488/**
489 * kthread_park - park a thread created by kthread_create().
490 * @k: thread created by kthread_create().
491 *
492 * Sets kthread_should_park() for @k to return true, wakes it, and
493 * waits for it to return. This can also be called after kthread_create()
494 * instead of calling wake_up_process(): the thread will park without
495 * calling threadfn().
496 *
497 * Returns 0 if the thread is parked, -ENOSYS if the thread exited.
498 * If called by the kthread itself just the park bit is set.
499 */
500int kthread_park(struct task_struct *k)
501{
Oleg Nesterovcf380a42016-11-29 18:51:07 +0100502 struct kthread *kthread = to_kthread(k);
Thomas Gleixner2a1d4462012-07-16 10:42:36 +0000503
Oleg Nesterovcf380a42016-11-29 18:51:07 +0100504 if (WARN_ON(k->flags & PF_EXITING))
505 return -ENOSYS;
506
Peter Zijlstraf83ee192018-06-07 10:55:56 +0200507 if (WARN_ON_ONCE(test_bit(KTHREAD_SHOULD_PARK, &kthread->flags)))
508 return -EBUSY;
509
Peter Zijlstra85f1abe2018-05-01 18:14:45 +0200510 set_bit(KTHREAD_SHOULD_PARK, &kthread->flags);
511 if (k != current) {
512 wake_up_process(k);
Peter Zijlstra1cef1152018-06-07 11:45:49 +0200513 /*
514 * Wait for __kthread_parkme() to complete(), this means we
515 * _will_ have TASK_PARKED and are about to call schedule().
516 */
Peter Zijlstra85f1abe2018-05-01 18:14:45 +0200517 wait_for_completion(&kthread->parked);
Peter Zijlstra1cef1152018-06-07 11:45:49 +0200518 /*
519 * Now wait for that schedule() to complete and the task to
520 * get scheduled out.
521 */
522 WARN_ON_ONCE(!wait_task_inactive(k, TASK_PARKED));
Thomas Gleixner2a1d4462012-07-16 10:42:36 +0000523 }
Oleg Nesterovcf380a42016-11-29 18:51:07 +0100524
525 return 0;
Thomas Gleixner2a1d4462012-07-16 10:42:36 +0000526}
David Kershner18896452015-08-06 15:46:45 -0700527EXPORT_SYMBOL_GPL(kthread_park);
Thomas Gleixner2a1d4462012-07-16 10:42:36 +0000528
529/**
Randy Dunlap9e37bd32006-06-25 05:49:19 -0700530 * kthread_stop - stop a thread created by kthread_create().
531 * @k: thread created by kthread_create().
532 *
533 * Sets kthread_should_stop() for @k to return true, wakes it, and
Oleg Nesterov9ae26022009-06-19 02:51:13 +0200534 * waits for it to exit. This can also be called after kthread_create()
535 * instead of calling wake_up_process(): the thread will exit without
536 * calling threadfn().
537 *
538 * If threadfn() may call do_exit() itself, the caller must ensure
539 * task_struct can't go away.
Randy Dunlap9e37bd32006-06-25 05:49:19 -0700540 *
541 * Returns the result of threadfn(), or %-EINTR if wake_up_process()
542 * was never called.
543 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544int kthread_stop(struct task_struct *k)
545{
Oleg Nesterovb5c54422013-04-29 15:05:12 -0700546 struct kthread *kthread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 int ret;
548
Oleg Nesterov63706172009-06-17 16:27:45 -0700549 trace_sched_kthread_stop(k);
Oleg Nesterovb5c54422013-04-29 15:05:12 -0700550
551 get_task_struct(k);
Oleg Nesterovefb29fb2016-11-29 18:51:03 +0100552 kthread = to_kthread(k);
553 set_bit(KTHREAD_SHOULD_STOP, &kthread->flags);
Oleg Nesterovcf380a42016-11-29 18:51:07 +0100554 kthread_unpark(k);
Oleg Nesterovefb29fb2016-11-29 18:51:03 +0100555 wake_up_process(k);
556 wait_for_completion(&kthread->exited);
Oleg Nesterov63706172009-06-17 16:27:45 -0700557 ret = k->exit_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 put_task_struct(k);
Mathieu Desnoyers0a16b602008-07-18 12:16:17 -0400559
Oleg Nesterovb5c54422013-04-29 15:05:12 -0700560 trace_sched_kthread_stop_ret(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 return ret;
562}
Adrian Bunk52e92e52006-07-14 00:24:05 -0700563EXPORT_SYMBOL(kthread_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Satyam Sharmae804a4a2007-07-31 00:39:16 -0700565int kthreadd(void *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
Eric W. Biederman73c27992007-05-09 02:34:32 -0700567 struct task_struct *tsk = current;
Eric W. Biederman73c27992007-05-09 02:34:32 -0700568
Satyam Sharmae804a4a2007-07-31 00:39:16 -0700569 /* Setup a clean context for our children to inherit. */
Eric W. Biederman73c27992007-05-09 02:34:32 -0700570 set_task_comm(tsk, "kthreadd");
Oleg Nesterov10ab8252007-05-09 02:34:37 -0700571 ignore_signals(tsk);
Rusty Russell1a2142a2009-03-30 22:05:10 -0600572 set_cpus_allowed_ptr(tsk, cpu_all_mask);
Lai Jiangshanaee4faa2012-12-12 13:51:39 -0800573 set_mems_allowed(node_states[N_MEMORY]);
Eric W. Biederman73c27992007-05-09 02:34:32 -0700574
Tejun Heo34b087e2011-11-23 09:28:17 -0800575 current->flags |= PF_NOFREEZE;
Tejun Heo77f88792017-03-16 16:54:24 -0400576 cgroup_init_kthreadd();
Eric W. Biederman73c27992007-05-09 02:34:32 -0700577
578 for (;;) {
579 set_current_state(TASK_INTERRUPTIBLE);
580 if (list_empty(&kthread_create_list))
581 schedule();
582 __set_current_state(TASK_RUNNING);
583
584 spin_lock(&kthread_create_lock);
585 while (!list_empty(&kthread_create_list)) {
586 struct kthread_create_info *create;
587
588 create = list_entry(kthread_create_list.next,
589 struct kthread_create_info, list);
590 list_del_init(&create->list);
591 spin_unlock(&kthread_create_lock);
592
593 create_kthread(create);
594
595 spin_lock(&kthread_create_lock);
596 }
597 spin_unlock(&kthread_create_lock);
598 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 return 0;
601}
Tejun Heob56c0d82010-06-29 10:07:09 +0200602
Petr Mladek39891442016-10-11 13:55:20 -0700603void __kthread_init_worker(struct kthread_worker *worker,
Yong Zhang4f32e9b2010-12-22 10:27:53 +0100604 const char *name,
605 struct lock_class_key *key)
606{
Petr Mladekdbf52682016-10-11 13:55:50 -0700607 memset(worker, 0, sizeof(struct kthread_worker));
Yong Zhang4f32e9b2010-12-22 10:27:53 +0100608 spin_lock_init(&worker->lock);
609 lockdep_set_class_and_name(&worker->lock, key, name);
610 INIT_LIST_HEAD(&worker->work_list);
Petr Mladek22597dc2016-10-11 13:55:40 -0700611 INIT_LIST_HEAD(&worker->delayed_work_list);
Yong Zhang4f32e9b2010-12-22 10:27:53 +0100612}
Petr Mladek39891442016-10-11 13:55:20 -0700613EXPORT_SYMBOL_GPL(__kthread_init_worker);
Yong Zhang4f32e9b2010-12-22 10:27:53 +0100614
Tejun Heob56c0d82010-06-29 10:07:09 +0200615/**
616 * kthread_worker_fn - kthread function to process kthread_worker
617 * @worker_ptr: pointer to initialized kthread_worker
618 *
Petr Mladekfbae2d42016-10-11 13:55:30 -0700619 * This function implements the main cycle of kthread worker. It processes
620 * work_list until it is stopped with kthread_stop(). It sleeps when the queue
621 * is empty.
Tejun Heob56c0d82010-06-29 10:07:09 +0200622 *
Petr Mladekfbae2d42016-10-11 13:55:30 -0700623 * The works are not allowed to keep any locks, disable preemption or interrupts
624 * when they finish. There is defined a safe point for freezing when one work
625 * finishes and before a new one is started.
Petr Mladek8197b3d42016-10-11 13:55:36 -0700626 *
627 * Also the works must not be handled by more than one worker at the same time,
628 * see also kthread_queue_work().
Tejun Heob56c0d82010-06-29 10:07:09 +0200629 */
630int kthread_worker_fn(void *worker_ptr)
631{
632 struct kthread_worker *worker = worker_ptr;
633 struct kthread_work *work;
634
Petr Mladekfbae2d42016-10-11 13:55:30 -0700635 /*
636 * FIXME: Update the check and remove the assignment when all kthread
637 * worker users are created using kthread_create_worker*() functions.
638 */
639 WARN_ON(worker->task && worker->task != current);
Tejun Heob56c0d82010-06-29 10:07:09 +0200640 worker->task = current;
Petr Mladekdbf52682016-10-11 13:55:50 -0700641
642 if (worker->flags & KTW_FREEZABLE)
643 set_freezable();
644
Tejun Heob56c0d82010-06-29 10:07:09 +0200645repeat:
646 set_current_state(TASK_INTERRUPTIBLE); /* mb paired w/ kthread_stop */
647
648 if (kthread_should_stop()) {
649 __set_current_state(TASK_RUNNING);
650 spin_lock_irq(&worker->lock);
651 worker->task = NULL;
652 spin_unlock_irq(&worker->lock);
653 return 0;
654 }
655
656 work = NULL;
657 spin_lock_irq(&worker->lock);
658 if (!list_empty(&worker->work_list)) {
659 work = list_first_entry(&worker->work_list,
660 struct kthread_work, node);
661 list_del_init(&work->node);
662 }
Tejun Heo46f3d972012-07-19 13:52:53 -0700663 worker->current_work = work;
Tejun Heob56c0d82010-06-29 10:07:09 +0200664 spin_unlock_irq(&worker->lock);
665
666 if (work) {
667 __set_current_state(TASK_RUNNING);
668 work->func(work);
Tejun Heob56c0d82010-06-29 10:07:09 +0200669 } else if (!freezing(current))
670 schedule();
671
672 try_to_freeze();
Shaohua Li22cf8bc2017-08-31 16:15:23 -0700673 cond_resched();
Tejun Heob56c0d82010-06-29 10:07:09 +0200674 goto repeat;
675}
676EXPORT_SYMBOL_GPL(kthread_worker_fn);
677
Nicolas Ioossc0b942a2016-12-12 16:40:39 -0800678static __printf(3, 0) struct kthread_worker *
Petr Mladekdbf52682016-10-11 13:55:50 -0700679__kthread_create_worker(int cpu, unsigned int flags,
680 const char namefmt[], va_list args)
Petr Mladekfbae2d42016-10-11 13:55:30 -0700681{
682 struct kthread_worker *worker;
683 struct task_struct *task;
Oleg Nesterov8fb9dcb2016-11-29 18:51:10 +0100684 int node = -1;
Petr Mladekfbae2d42016-10-11 13:55:30 -0700685
686 worker = kzalloc(sizeof(*worker), GFP_KERNEL);
687 if (!worker)
688 return ERR_PTR(-ENOMEM);
689
690 kthread_init_worker(worker);
691
Oleg Nesterov8fb9dcb2016-11-29 18:51:10 +0100692 if (cpu >= 0)
693 node = cpu_to_node(cpu);
Petr Mladekfbae2d42016-10-11 13:55:30 -0700694
Oleg Nesterov8fb9dcb2016-11-29 18:51:10 +0100695 task = __kthread_create_on_node(kthread_worker_fn, worker,
696 node, namefmt, args);
Petr Mladekfbae2d42016-10-11 13:55:30 -0700697 if (IS_ERR(task))
698 goto fail_task;
699
Oleg Nesterov8fb9dcb2016-11-29 18:51:10 +0100700 if (cpu >= 0)
701 kthread_bind(task, cpu);
702
Petr Mladekdbf52682016-10-11 13:55:50 -0700703 worker->flags = flags;
Petr Mladekfbae2d42016-10-11 13:55:30 -0700704 worker->task = task;
705 wake_up_process(task);
706 return worker;
707
708fail_task:
709 kfree(worker);
710 return ERR_CAST(task);
711}
712
713/**
714 * kthread_create_worker - create a kthread worker
Petr Mladekdbf52682016-10-11 13:55:50 -0700715 * @flags: flags modifying the default behavior of the worker
Petr Mladekfbae2d42016-10-11 13:55:30 -0700716 * @namefmt: printf-style name for the kthread worker (task).
717 *
718 * Returns a pointer to the allocated worker on success, ERR_PTR(-ENOMEM)
719 * when the needed structures could not get allocated, and ERR_PTR(-EINTR)
720 * when the worker was SIGKILLed.
721 */
722struct kthread_worker *
Petr Mladekdbf52682016-10-11 13:55:50 -0700723kthread_create_worker(unsigned int flags, const char namefmt[], ...)
Petr Mladekfbae2d42016-10-11 13:55:30 -0700724{
725 struct kthread_worker *worker;
726 va_list args;
727
728 va_start(args, namefmt);
Petr Mladekdbf52682016-10-11 13:55:50 -0700729 worker = __kthread_create_worker(-1, flags, namefmt, args);
Petr Mladekfbae2d42016-10-11 13:55:30 -0700730 va_end(args);
731
732 return worker;
733}
734EXPORT_SYMBOL(kthread_create_worker);
735
736/**
737 * kthread_create_worker_on_cpu - create a kthread worker and bind it
738 * it to a given CPU and the associated NUMA node.
739 * @cpu: CPU number
Petr Mladekdbf52682016-10-11 13:55:50 -0700740 * @flags: flags modifying the default behavior of the worker
Petr Mladekfbae2d42016-10-11 13:55:30 -0700741 * @namefmt: printf-style name for the kthread worker (task).
742 *
743 * Use a valid CPU number if you want to bind the kthread worker
744 * to the given CPU and the associated NUMA node.
745 *
746 * A good practice is to add the cpu number also into the worker name.
747 * For example, use kthread_create_worker_on_cpu(cpu, "helper/%d", cpu).
748 *
749 * Returns a pointer to the allocated worker on success, ERR_PTR(-ENOMEM)
750 * when the needed structures could not get allocated, and ERR_PTR(-EINTR)
751 * when the worker was SIGKILLed.
752 */
753struct kthread_worker *
Petr Mladekdbf52682016-10-11 13:55:50 -0700754kthread_create_worker_on_cpu(int cpu, unsigned int flags,
755 const char namefmt[], ...)
Petr Mladekfbae2d42016-10-11 13:55:30 -0700756{
757 struct kthread_worker *worker;
758 va_list args;
759
760 va_start(args, namefmt);
Petr Mladekdbf52682016-10-11 13:55:50 -0700761 worker = __kthread_create_worker(cpu, flags, namefmt, args);
Petr Mladekfbae2d42016-10-11 13:55:30 -0700762 va_end(args);
763
764 return worker;
765}
766EXPORT_SYMBOL(kthread_create_worker_on_cpu);
767
Petr Mladek37be45d2016-10-11 13:55:43 -0700768/*
769 * Returns true when the work could not be queued at the moment.
770 * It happens when it is already pending in a worker list
771 * or when it is being cancelled.
772 */
773static inline bool queuing_blocked(struct kthread_worker *worker,
774 struct kthread_work *work)
775{
776 lockdep_assert_held(&worker->lock);
777
778 return !list_empty(&work->node) || work->canceling;
779}
780
Petr Mladek8197b3d42016-10-11 13:55:36 -0700781static void kthread_insert_work_sanity_check(struct kthread_worker *worker,
782 struct kthread_work *work)
Tejun Heo9a2e03d2012-07-19 13:52:53 -0700783{
784 lockdep_assert_held(&worker->lock);
Petr Mladek8197b3d42016-10-11 13:55:36 -0700785 WARN_ON_ONCE(!list_empty(&work->node));
786 /* Do not use a work with >1 worker, see kthread_queue_work() */
787 WARN_ON_ONCE(work->worker && work->worker != worker);
788}
789
790/* insert @work before @pos in @worker */
791static void kthread_insert_work(struct kthread_worker *worker,
792 struct kthread_work *work,
793 struct list_head *pos)
794{
795 kthread_insert_work_sanity_check(worker, work);
Tejun Heo9a2e03d2012-07-19 13:52:53 -0700796
797 list_add_tail(&work->node, pos);
Tejun Heo46f3d972012-07-19 13:52:53 -0700798 work->worker = worker;
Lai Jiangshaned1403e2014-07-26 12:03:59 +0800799 if (!worker->current_work && likely(worker->task))
Tejun Heo9a2e03d2012-07-19 13:52:53 -0700800 wake_up_process(worker->task);
801}
802
Tejun Heob56c0d82010-06-29 10:07:09 +0200803/**
Petr Mladek39891442016-10-11 13:55:20 -0700804 * kthread_queue_work - queue a kthread_work
Tejun Heob56c0d82010-06-29 10:07:09 +0200805 * @worker: target kthread_worker
806 * @work: kthread_work to queue
807 *
808 * Queue @work to work processor @task for async execution. @task
809 * must have been created with kthread_worker_create(). Returns %true
810 * if @work was successfully queued, %false if it was already pending.
Petr Mladek8197b3d42016-10-11 13:55:36 -0700811 *
812 * Reinitialize the work if it needs to be used by another worker.
813 * For example, when the worker was stopped and started again.
Tejun Heob56c0d82010-06-29 10:07:09 +0200814 */
Petr Mladek39891442016-10-11 13:55:20 -0700815bool kthread_queue_work(struct kthread_worker *worker,
Tejun Heob56c0d82010-06-29 10:07:09 +0200816 struct kthread_work *work)
817{
818 bool ret = false;
819 unsigned long flags;
820
821 spin_lock_irqsave(&worker->lock, flags);
Petr Mladek37be45d2016-10-11 13:55:43 -0700822 if (!queuing_blocked(worker, work)) {
Petr Mladek39891442016-10-11 13:55:20 -0700823 kthread_insert_work(worker, work, &worker->work_list);
Tejun Heob56c0d82010-06-29 10:07:09 +0200824 ret = true;
825 }
826 spin_unlock_irqrestore(&worker->lock, flags);
827 return ret;
828}
Petr Mladek39891442016-10-11 13:55:20 -0700829EXPORT_SYMBOL_GPL(kthread_queue_work);
Tejun Heob56c0d82010-06-29 10:07:09 +0200830
Petr Mladek22597dc2016-10-11 13:55:40 -0700831/**
832 * kthread_delayed_work_timer_fn - callback that queues the associated kthread
833 * delayed work when the timer expires.
Kees Cookfe5c3b62017-10-04 16:27:06 -0700834 * @t: pointer to the expired timer
Petr Mladek22597dc2016-10-11 13:55:40 -0700835 *
836 * The format of the function is defined by struct timer_list.
837 * It should have been called from irqsafe timer with irq already off.
838 */
Kees Cookfe5c3b62017-10-04 16:27:06 -0700839void kthread_delayed_work_timer_fn(struct timer_list *t)
Petr Mladek22597dc2016-10-11 13:55:40 -0700840{
Kees Cookfe5c3b62017-10-04 16:27:06 -0700841 struct kthread_delayed_work *dwork = from_timer(dwork, t, timer);
Petr Mladek22597dc2016-10-11 13:55:40 -0700842 struct kthread_work *work = &dwork->work;
843 struct kthread_worker *worker = work->worker;
844
845 /*
846 * This might happen when a pending work is reinitialized.
847 * It means that it is used a wrong way.
848 */
849 if (WARN_ON_ONCE(!worker))
850 return;
851
852 spin_lock(&worker->lock);
853 /* Work must not be used with >1 worker, see kthread_queue_work(). */
854 WARN_ON_ONCE(work->worker != worker);
855
856 /* Move the work from worker->delayed_work_list. */
857 WARN_ON_ONCE(list_empty(&work->node));
858 list_del_init(&work->node);
859 kthread_insert_work(worker, work, &worker->work_list);
860
861 spin_unlock(&worker->lock);
862}
863EXPORT_SYMBOL(kthread_delayed_work_timer_fn);
864
865void __kthread_queue_delayed_work(struct kthread_worker *worker,
866 struct kthread_delayed_work *dwork,
867 unsigned long delay)
868{
869 struct timer_list *timer = &dwork->timer;
870 struct kthread_work *work = &dwork->work;
871
Kees Cook841b86f2017-10-23 09:40:42 +0200872 WARN_ON_ONCE(timer->function != kthread_delayed_work_timer_fn);
Petr Mladek22597dc2016-10-11 13:55:40 -0700873
874 /*
875 * If @delay is 0, queue @dwork->work immediately. This is for
876 * both optimization and correctness. The earliest @timer can
877 * expire is on the closest next tick and delayed_work users depend
878 * on that there's no such delay when @delay is 0.
879 */
880 if (!delay) {
881 kthread_insert_work(worker, work, &worker->work_list);
882 return;
883 }
884
885 /* Be paranoid and try to detect possible races already now. */
886 kthread_insert_work_sanity_check(worker, work);
887
888 list_add(&work->node, &worker->delayed_work_list);
889 work->worker = worker;
Petr Mladek22597dc2016-10-11 13:55:40 -0700890 timer->expires = jiffies + delay;
891 add_timer(timer);
892}
893
894/**
895 * kthread_queue_delayed_work - queue the associated kthread work
896 * after a delay.
897 * @worker: target kthread_worker
898 * @dwork: kthread_delayed_work to queue
899 * @delay: number of jiffies to wait before queuing
900 *
901 * If the work has not been pending it starts a timer that will queue
902 * the work after the given @delay. If @delay is zero, it queues the
903 * work immediately.
904 *
905 * Return: %false if the @work has already been pending. It means that
906 * either the timer was running or the work was queued. It returns %true
907 * otherwise.
908 */
909bool kthread_queue_delayed_work(struct kthread_worker *worker,
910 struct kthread_delayed_work *dwork,
911 unsigned long delay)
912{
913 struct kthread_work *work = &dwork->work;
914 unsigned long flags;
915 bool ret = false;
916
917 spin_lock_irqsave(&worker->lock, flags);
918
Petr Mladek37be45d2016-10-11 13:55:43 -0700919 if (!queuing_blocked(worker, work)) {
Petr Mladek22597dc2016-10-11 13:55:40 -0700920 __kthread_queue_delayed_work(worker, dwork, delay);
921 ret = true;
922 }
923
924 spin_unlock_irqrestore(&worker->lock, flags);
925 return ret;
926}
927EXPORT_SYMBOL_GPL(kthread_queue_delayed_work);
928
Tejun Heo9a2e03d2012-07-19 13:52:53 -0700929struct kthread_flush_work {
930 struct kthread_work work;
931 struct completion done;
932};
933
934static void kthread_flush_work_fn(struct kthread_work *work)
935{
936 struct kthread_flush_work *fwork =
937 container_of(work, struct kthread_flush_work, work);
938 complete(&fwork->done);
939}
940
Tejun Heob56c0d82010-06-29 10:07:09 +0200941/**
Petr Mladek39891442016-10-11 13:55:20 -0700942 * kthread_flush_work - flush a kthread_work
Tejun Heob56c0d82010-06-29 10:07:09 +0200943 * @work: work to flush
944 *
945 * If @work is queued or executing, wait for it to finish execution.
946 */
Petr Mladek39891442016-10-11 13:55:20 -0700947void kthread_flush_work(struct kthread_work *work)
Tejun Heob56c0d82010-06-29 10:07:09 +0200948{
Tejun Heo46f3d972012-07-19 13:52:53 -0700949 struct kthread_flush_work fwork = {
950 KTHREAD_WORK_INIT(fwork.work, kthread_flush_work_fn),
951 COMPLETION_INITIALIZER_ONSTACK(fwork.done),
952 };
953 struct kthread_worker *worker;
954 bool noop = false;
Tejun Heob56c0d82010-06-29 10:07:09 +0200955
Tejun Heo46f3d972012-07-19 13:52:53 -0700956 worker = work->worker;
957 if (!worker)
958 return;
Tejun Heob56c0d82010-06-29 10:07:09 +0200959
Tejun Heo46f3d972012-07-19 13:52:53 -0700960 spin_lock_irq(&worker->lock);
Petr Mladek8197b3d42016-10-11 13:55:36 -0700961 /* Work must not be used with >1 worker, see kthread_queue_work(). */
962 WARN_ON_ONCE(work->worker != worker);
Tejun Heob56c0d82010-06-29 10:07:09 +0200963
Tejun Heo46f3d972012-07-19 13:52:53 -0700964 if (!list_empty(&work->node))
Petr Mladek39891442016-10-11 13:55:20 -0700965 kthread_insert_work(worker, &fwork.work, work->node.next);
Tejun Heo46f3d972012-07-19 13:52:53 -0700966 else if (worker->current_work == work)
Petr Mladek39891442016-10-11 13:55:20 -0700967 kthread_insert_work(worker, &fwork.work,
968 worker->work_list.next);
Tejun Heo46f3d972012-07-19 13:52:53 -0700969 else
970 noop = true;
Tejun Heob56c0d82010-06-29 10:07:09 +0200971
Tejun Heo46f3d972012-07-19 13:52:53 -0700972 spin_unlock_irq(&worker->lock);
973
974 if (!noop)
975 wait_for_completion(&fwork.done);
Tejun Heob56c0d82010-06-29 10:07:09 +0200976}
Petr Mladek39891442016-10-11 13:55:20 -0700977EXPORT_SYMBOL_GPL(kthread_flush_work);
Tejun Heob56c0d82010-06-29 10:07:09 +0200978
Petr Mladek37be45d2016-10-11 13:55:43 -0700979/*
980 * This function removes the work from the worker queue. Also it makes sure
981 * that it won't get queued later via the delayed work's timer.
982 *
983 * The work might still be in use when this function finishes. See the
984 * current_work proceed by the worker.
985 *
986 * Return: %true if @work was pending and successfully canceled,
987 * %false if @work was not pending
988 */
989static bool __kthread_cancel_work(struct kthread_work *work, bool is_dwork,
990 unsigned long *flags)
991{
992 /* Try to cancel the timer if exists. */
993 if (is_dwork) {
994 struct kthread_delayed_work *dwork =
995 container_of(work, struct kthread_delayed_work, work);
996 struct kthread_worker *worker = work->worker;
997
998 /*
999 * del_timer_sync() must be called to make sure that the timer
1000 * callback is not running. The lock must be temporary released
1001 * to avoid a deadlock with the callback. In the meantime,
1002 * any queuing is blocked by setting the canceling counter.
1003 */
1004 work->canceling++;
1005 spin_unlock_irqrestore(&worker->lock, *flags);
1006 del_timer_sync(&dwork->timer);
1007 spin_lock_irqsave(&worker->lock, *flags);
1008 work->canceling--;
1009 }
1010
1011 /*
1012 * Try to remove the work from a worker list. It might either
1013 * be from worker->work_list or from worker->delayed_work_list.
1014 */
1015 if (!list_empty(&work->node)) {
1016 list_del_init(&work->node);
1017 return true;
1018 }
1019
1020 return false;
1021}
1022
Petr Mladek9a6b06c2016-10-11 13:55:46 -07001023/**
1024 * kthread_mod_delayed_work - modify delay of or queue a kthread delayed work
1025 * @worker: kthread worker to use
1026 * @dwork: kthread delayed work to queue
1027 * @delay: number of jiffies to wait before queuing
1028 *
1029 * If @dwork is idle, equivalent to kthread_queue_delayed_work(). Otherwise,
1030 * modify @dwork's timer so that it expires after @delay. If @delay is zero,
1031 * @work is guaranteed to be queued immediately.
1032 *
1033 * Return: %true if @dwork was pending and its timer was modified,
1034 * %false otherwise.
1035 *
1036 * A special case is when the work is being canceled in parallel.
1037 * It might be caused either by the real kthread_cancel_delayed_work_sync()
1038 * or yet another kthread_mod_delayed_work() call. We let the other command
1039 * win and return %false here. The caller is supposed to synchronize these
1040 * operations a reasonable way.
1041 *
1042 * This function is safe to call from any context including IRQ handler.
1043 * See __kthread_cancel_work() and kthread_delayed_work_timer_fn()
1044 * for details.
1045 */
1046bool kthread_mod_delayed_work(struct kthread_worker *worker,
1047 struct kthread_delayed_work *dwork,
1048 unsigned long delay)
1049{
1050 struct kthread_work *work = &dwork->work;
1051 unsigned long flags;
1052 int ret = false;
1053
1054 spin_lock_irqsave(&worker->lock, flags);
1055
1056 /* Do not bother with canceling when never queued. */
1057 if (!work->worker)
1058 goto fast_queue;
1059
1060 /* Work must not be used with >1 worker, see kthread_queue_work() */
1061 WARN_ON_ONCE(work->worker != worker);
1062
1063 /* Do not fight with another command that is canceling this work. */
1064 if (work->canceling)
1065 goto out;
1066
1067 ret = __kthread_cancel_work(work, true, &flags);
1068fast_queue:
1069 __kthread_queue_delayed_work(worker, dwork, delay);
1070out:
1071 spin_unlock_irqrestore(&worker->lock, flags);
1072 return ret;
1073}
1074EXPORT_SYMBOL_GPL(kthread_mod_delayed_work);
1075
Petr Mladek37be45d2016-10-11 13:55:43 -07001076static bool __kthread_cancel_work_sync(struct kthread_work *work, bool is_dwork)
1077{
1078 struct kthread_worker *worker = work->worker;
1079 unsigned long flags;
1080 int ret = false;
1081
1082 if (!worker)
1083 goto out;
1084
1085 spin_lock_irqsave(&worker->lock, flags);
1086 /* Work must not be used with >1 worker, see kthread_queue_work(). */
1087 WARN_ON_ONCE(work->worker != worker);
1088
1089 ret = __kthread_cancel_work(work, is_dwork, &flags);
1090
1091 if (worker->current_work != work)
1092 goto out_fast;
1093
1094 /*
1095 * The work is in progress and we need to wait with the lock released.
1096 * In the meantime, block any queuing by setting the canceling counter.
1097 */
1098 work->canceling++;
1099 spin_unlock_irqrestore(&worker->lock, flags);
1100 kthread_flush_work(work);
1101 spin_lock_irqsave(&worker->lock, flags);
1102 work->canceling--;
1103
1104out_fast:
1105 spin_unlock_irqrestore(&worker->lock, flags);
1106out:
1107 return ret;
1108}
1109
1110/**
1111 * kthread_cancel_work_sync - cancel a kthread work and wait for it to finish
1112 * @work: the kthread work to cancel
1113 *
1114 * Cancel @work and wait for its execution to finish. This function
1115 * can be used even if the work re-queues itself. On return from this
1116 * function, @work is guaranteed to be not pending or executing on any CPU.
1117 *
1118 * kthread_cancel_work_sync(&delayed_work->work) must not be used for
1119 * delayed_work's. Use kthread_cancel_delayed_work_sync() instead.
1120 *
1121 * The caller must ensure that the worker on which @work was last
1122 * queued can't be destroyed before this function returns.
1123 *
1124 * Return: %true if @work was pending, %false otherwise.
1125 */
1126bool kthread_cancel_work_sync(struct kthread_work *work)
1127{
1128 return __kthread_cancel_work_sync(work, false);
1129}
1130EXPORT_SYMBOL_GPL(kthread_cancel_work_sync);
1131
1132/**
1133 * kthread_cancel_delayed_work_sync - cancel a kthread delayed work and
1134 * wait for it to finish.
1135 * @dwork: the kthread delayed work to cancel
1136 *
1137 * This is kthread_cancel_work_sync() for delayed works.
1138 *
1139 * Return: %true if @dwork was pending, %false otherwise.
1140 */
1141bool kthread_cancel_delayed_work_sync(struct kthread_delayed_work *dwork)
1142{
1143 return __kthread_cancel_work_sync(&dwork->work, true);
1144}
1145EXPORT_SYMBOL_GPL(kthread_cancel_delayed_work_sync);
1146
Tejun Heob56c0d82010-06-29 10:07:09 +02001147/**
Petr Mladek39891442016-10-11 13:55:20 -07001148 * kthread_flush_worker - flush all current works on a kthread_worker
Tejun Heob56c0d82010-06-29 10:07:09 +02001149 * @worker: worker to flush
1150 *
1151 * Wait until all currently executing or pending works on @worker are
1152 * finished.
1153 */
Petr Mladek39891442016-10-11 13:55:20 -07001154void kthread_flush_worker(struct kthread_worker *worker)
Tejun Heob56c0d82010-06-29 10:07:09 +02001155{
1156 struct kthread_flush_work fwork = {
1157 KTHREAD_WORK_INIT(fwork.work, kthread_flush_work_fn),
1158 COMPLETION_INITIALIZER_ONSTACK(fwork.done),
1159 };
1160
Petr Mladek39891442016-10-11 13:55:20 -07001161 kthread_queue_work(worker, &fwork.work);
Tejun Heob56c0d82010-06-29 10:07:09 +02001162 wait_for_completion(&fwork.done);
1163}
Petr Mladek39891442016-10-11 13:55:20 -07001164EXPORT_SYMBOL_GPL(kthread_flush_worker);
Petr Mladek35033fe2016-10-11 13:55:33 -07001165
1166/**
1167 * kthread_destroy_worker - destroy a kthread worker
1168 * @worker: worker to be destroyed
1169 *
1170 * Flush and destroy @worker. The simple flush is enough because the kthread
1171 * worker API is used only in trivial scenarios. There are no multi-step state
1172 * machines needed.
1173 */
1174void kthread_destroy_worker(struct kthread_worker *worker)
1175{
1176 struct task_struct *task;
1177
1178 task = worker->task;
1179 if (WARN_ON(!task))
1180 return;
1181
1182 kthread_flush_worker(worker);
1183 kthread_stop(task);
1184 WARN_ON(!list_empty(&worker->work_list));
1185 kfree(worker);
1186}
1187EXPORT_SYMBOL(kthread_destroy_worker);
Shaohua Li05e3db92017-09-14 14:02:04 -07001188
Shaohua Li0b508bc2017-09-26 11:02:12 -07001189#ifdef CONFIG_BLK_CGROUP
Shaohua Li05e3db92017-09-14 14:02:04 -07001190/**
1191 * kthread_associate_blkcg - associate blkcg to current kthread
1192 * @css: the cgroup info
1193 *
1194 * Current thread must be a kthread. The thread is running jobs on behalf of
1195 * other threads. In some cases, we expect the jobs attach cgroup info of
1196 * original threads instead of that of current thread. This function stores
1197 * original thread's cgroup info in current kthread context for later
1198 * retrieval.
1199 */
1200void kthread_associate_blkcg(struct cgroup_subsys_state *css)
1201{
1202 struct kthread *kthread;
1203
1204 if (!(current->flags & PF_KTHREAD))
1205 return;
1206 kthread = to_kthread(current);
1207 if (!kthread)
1208 return;
1209
1210 if (kthread->blkcg_css) {
1211 css_put(kthread->blkcg_css);
1212 kthread->blkcg_css = NULL;
1213 }
1214 if (css) {
1215 css_get(css);
1216 kthread->blkcg_css = css;
1217 }
1218}
1219EXPORT_SYMBOL(kthread_associate_blkcg);
1220
1221/**
1222 * kthread_blkcg - get associated blkcg css of current kthread
1223 *
1224 * Current thread must be a kthread.
1225 */
1226struct cgroup_subsys_state *kthread_blkcg(void)
1227{
1228 struct kthread *kthread;
1229
1230 if (current->flags & PF_KTHREAD) {
1231 kthread = to_kthread(current);
1232 if (kthread)
1233 return kthread->blkcg_css;
1234 }
1235 return NULL;
1236}
1237EXPORT_SYMBOL(kthread_blkcg);
1238#endif