blob: 0c2ee9761d57b7aa585e0191b5fbfcd7d84d6ae4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/power/process.c - Functions for starting/stopping processes on
3 * suspend transitions.
4 *
5 * Originally from swsusp.
6 */
7
8
9#undef DEBUG
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/interrupt.h>
Alexey Dobriyan1a8670a2009-09-21 17:03:09 -070012#include <linux/oom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/suspend.h>
14#include <linux/module.h>
Rafael J. Wysocki02aaeb92006-03-23 03:00:04 -080015#include <linux/syscalls.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080016#include <linux/freezer.h>
Tejun Heobe404f02009-10-08 22:47:30 +020017#include <linux/delay.h>
Tejun Heoa0a1a5f2010-06-29 10:07:12 +020018#include <linux/workqueue.h>
Rafael J. Wysocki1e732032012-03-28 23:30:21 +020019#include <linux/kmod.h>
Todd E Brandtbb3632c2014-06-06 05:40:17 -070020#include <trace/events/power.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22/*
23 * Timeout for stopping processes
24 */
Li Fei957d1282013-02-01 08:56:03 +000025unsigned int __read_mostly freeze_timeout_msecs = 20 * MSEC_PER_SEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Tejun Heo839e3402011-11-21 12:32:26 -080027static int try_to_freeze_tasks(bool user_only)
Linus Torvalds1da177e2005-04-16 15:20:36 -070028{
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 struct task_struct *g, *p;
Rafael J. Wysocki11b2ce22006-12-06 20:34:40 -080030 unsigned long end_time;
31 unsigned int todo;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +020032 bool wq_busy = false;
Abhilash Jindalf7b382b2016-01-31 14:29:01 -050033 ktime_t start, end, elapsed;
Colin Cross18ad0c62013-05-06 23:50:10 +000034 unsigned int elapsed_msecs;
Rafael J. Wysockidbeeec52010-10-04 22:07:32 +020035 bool wakeup = false;
Colin Cross18ad0c62013-05-06 23:50:10 +000036 int sleep_usecs = USEC_PER_MSEC;
Rafael J. Wysocki438e2ce2007-10-18 03:04:49 -070037
Abhilash Jindalf7b382b2016-01-31 14:29:01 -050038 start = ktime_get_boottime();
Christoph Lameter3e1d1d22005-06-24 23:13:50 -070039
Li Fei957d1282013-02-01 08:56:03 +000040 end_time = jiffies + msecs_to_jiffies(freeze_timeout_msecs);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +020041
Tejun Heo839e3402011-11-21 12:32:26 -080042 if (!user_only)
Tejun Heoa0a1a5f2010-06-29 10:07:12 +020043 freeze_workqueues_begin();
44
Tejun Heobe404f02009-10-08 22:47:30 +020045 while (true) {
Rafael J. Wysocki11b2ce22006-12-06 20:34:40 -080046 todo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 read_lock(&tasklist_lock);
Michal Hockoa28e7852014-10-21 09:27:15 +020048 for_each_process_thread(g, p) {
Tejun Heo839e3402011-11-21 12:32:26 -080049 if (p == current || !freeze_task(p))
Rafael J. Wysockid5d8c592007-10-18 03:04:46 -070050 continue;
51
Oleg Nesterov5d8f72b2012-10-26 19:46:06 +020052 if (!freezer_should_skip(p))
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -070053 todo++;
Michal Hockoa28e7852014-10-21 09:27:15 +020054 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 read_unlock(&tasklist_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +020056
Tejun Heo839e3402011-11-21 12:32:26 -080057 if (!user_only) {
Tejun Heoa0a1a5f2010-06-29 10:07:12 +020058 wq_busy = freeze_workqueues_busy();
59 todo += wq_busy;
60 }
61
Tejun Heobe404f02009-10-08 22:47:30 +020062 if (!todo || time_after(jiffies, end_time))
Rafael J. Wysocki02aaeb92006-03-23 03:00:04 -080063 break;
Tejun Heobe404f02009-10-08 22:47:30 +020064
Rafael J. Wysockia2867e02010-12-03 22:58:31 +010065 if (pm_wakeup_pending()) {
Rafael J. Wysockidbeeec52010-10-04 22:07:32 +020066 wakeup = true;
67 break;
68 }
69
Tejun Heobe404f02009-10-08 22:47:30 +020070 /*
71 * We need to retry, but first give the freezing tasks some
Colin Cross18ad0c62013-05-06 23:50:10 +000072 * time to enter the refrigerator. Start with an initial
73 * 1 ms sleep followed by exponential backoff until 8 ms.
Tejun Heobe404f02009-10-08 22:47:30 +020074 */
Colin Cross18ad0c62013-05-06 23:50:10 +000075 usleep_range(sleep_usecs / 2, sleep_usecs);
76 if (sleep_usecs < 8 * USEC_PER_MSEC)
77 sleep_usecs *= 2;
Tejun Heobe404f02009-10-08 22:47:30 +020078 }
Christoph Lameter3e1d1d22005-06-24 23:13:50 -070079
Abhilash Jindalf7b382b2016-01-31 14:29:01 -050080 end = ktime_get_boottime();
81 elapsed = ktime_sub(end, start);
82 elapsed_msecs = ktime_to_ms(elapsed);
Rafael J. Wysocki438e2ce2007-10-18 03:04:49 -070083
Pavel Machek6161b2c2005-09-03 15:57:05 -070084 if (todo) {
Michal Hocko35536ae2015-02-11 15:26:18 -080085 pr_cont("\n");
86 pr_err("Freezing of tasks %s after %d.%03d seconds "
Tejun Heoa0a1a5f2010-06-29 10:07:12 +020087 "(%d tasks refusing to freeze, wq_busy=%d):\n",
Rafael J. Wysockidbeeec52010-10-04 22:07:32 +020088 wakeup ? "aborted" : "failed",
Colin Cross18ad0c62013-05-06 23:50:10 +000089 elapsed_msecs / 1000, elapsed_msecs % 1000,
Tejun Heoa0a1a5f2010-06-29 10:07:12 +020090 todo - wq_busy, wq_busy);
91
Rafael J. Wysocki6c83b482012-02-11 00:00:34 +010092 if (!wakeup) {
93 read_lock(&tasklist_lock);
Michal Hockoa28e7852014-10-21 09:27:15 +020094 for_each_process_thread(g, p) {
Rafael J. Wysocki6c83b482012-02-11 00:00:34 +010095 if (p != current && !freezer_should_skip(p)
96 && freezing(p) && !frozen(p))
97 sched_show_task(p);
Michal Hockoa28e7852014-10-21 09:27:15 +020098 }
Rafael J. Wysocki6c83b482012-02-11 00:00:34 +010099 read_unlock(&tasklist_lock);
100 }
Rafael J. Wysocki438e2ce2007-10-18 03:04:49 -0700101 } else {
Michal Hocko35536ae2015-02-11 15:26:18 -0800102 pr_cont("(elapsed %d.%03d seconds) ", elapsed_msecs / 1000,
Colin Cross18ad0c62013-05-06 23:50:10 +0000103 elapsed_msecs % 1000);
Pavel Machek6161b2c2005-09-03 15:57:05 -0700104 }
105
Rafael J. Wysockie7cd8a72007-07-19 01:47:34 -0700106 return todo ? -EBUSY : 0;
Rafael J. Wysocki11b2ce22006-12-06 20:34:40 -0800107}
108
109/**
Rafael J. Wysocki2aede852011-09-26 20:32:27 +0200110 * freeze_processes - Signal user space processes to enter the refrigerator.
Colin Cross2b44c4d2013-07-24 17:41:33 -0700111 * The current thread will not be frozen. The same process that calls
112 * freeze_processes must later call thaw_processes.
Tejun Heo03afed82011-11-21 12:32:24 -0800113 *
114 * On success, returns 0. On failure, -errno and system is fully thawed.
Rafael J. Wysocki11b2ce22006-12-06 20:34:40 -0800115 */
116int freeze_processes(void)
117{
Rafael J. Wysockie7cd8a72007-07-19 01:47:34 -0700118 int error;
Rafael J. Wysocki11b2ce22006-12-06 20:34:40 -0800119
Rafael J. Wysocki247bc032012-03-28 23:30:28 +0200120 error = __usermodehelper_disable(UMH_FREEZING);
Rafael J. Wysocki1e732032012-03-28 23:30:21 +0200121 if (error)
122 return error;
123
Colin Cross2b44c4d2013-07-24 17:41:33 -0700124 /* Make sure this task doesn't get frozen */
125 current->flags |= PF_SUSPEND_TASK;
126
Tejun Heoa3201222011-11-21 12:32:25 -0800127 if (!pm_freezing)
128 atomic_inc(&system_freezing_cnt);
129
Rafael J. Wysocki068765b2014-09-01 13:47:49 +0200130 pm_wakeup_clear();
Michal Hocko35536ae2015-02-11 15:26:18 -0800131 pr_info("Freezing user space processes ... ");
Tejun Heoa3201222011-11-21 12:32:25 -0800132 pm_freezing = true;
Rafael J. Wysockiebb12db2008-06-11 22:04:29 +0200133 error = try_to_freeze_tasks(true);
Rafael J. Wysocki2aede852011-09-26 20:32:27 +0200134 if (!error) {
Rafael J. Wysocki247bc032012-03-28 23:30:28 +0200135 __usermodehelper_set_disable_depth(UMH_DISABLED);
Michal Hockoc32b3cb2015-02-11 15:26:24 -0800136 pr_cont("done.");
Rafael J. Wysocki2aede852011-09-26 20:32:27 +0200137 }
Michal Hocko35536ae2015-02-11 15:26:18 -0800138 pr_cont("\n");
Rafael J. Wysocki2aede852011-09-26 20:32:27 +0200139 BUG_ON(in_atomic());
140
Michal Hockoc32b3cb2015-02-11 15:26:24 -0800141 /*
142 * Now that the whole userspace is frozen we need to disbale
143 * the OOM killer to disallow any further interference with
144 * killable tasks.
145 */
146 if (!error && !oom_killer_disable())
147 error = -EBUSY;
148
Michal Hocko74070542016-06-24 14:50:16 -0700149 /*
150 * There is a hard to fix race between oom_reaper kernel thread
151 * and oom_killer_disable. oom_reaper calls exit_oom_victim
152 * before the victim reaches exit_mm so try to freeze all the tasks
153 * again and catch such a left over task.
154 */
155 if (!error) {
156 pr_info("Double checking all user space processes after OOM killer disable... ");
157 error = try_to_freeze_tasks(true);
158 pr_cont("\n");
159 }
160
Tejun Heo03afed82011-11-21 12:32:24 -0800161 if (error)
162 thaw_processes();
Rafael J. Wysocki2aede852011-09-26 20:32:27 +0200163 return error;
164}
165
166/**
167 * freeze_kernel_threads - Make freezable kernel threads go to the refrigerator.
Tejun Heo03afed82011-11-21 12:32:24 -0800168 *
Srivatsa S. Bhat379e0be2012-02-03 22:22:41 +0100169 * On success, returns 0. On failure, -errno and only the kernel threads are
170 * thawed, so as to give a chance to the caller to do additional cleanups
171 * (if any) before thawing the userspace tasks. So, it is the responsibility
172 * of the caller to thaw the userspace tasks, when the time is right.
Rafael J. Wysocki2aede852011-09-26 20:32:27 +0200173 */
174int freeze_kernel_threads(void)
175{
176 int error;
Rafael J. Wysocki11b2ce22006-12-06 20:34:40 -0800177
Michal Hocko35536ae2015-02-11 15:26:18 -0800178 pr_info("Freezing remaining freezable tasks ... ");
179
Tejun Heoa3201222011-11-21 12:32:25 -0800180 pm_nosig_freezing = true;
Rafael J. Wysockiebb12db2008-06-11 22:04:29 +0200181 error = try_to_freeze_tasks(false);
Rafael J. Wysocki2aede852011-09-26 20:32:27 +0200182 if (!error)
Michal Hocko35536ae2015-02-11 15:26:18 -0800183 pr_cont("done.");
Rafael J. Wysocki7f33d492009-06-16 15:32:41 -0700184
Michal Hocko35536ae2015-02-11 15:26:18 -0800185 pr_cont("\n");
Rafael J. Wysocki2aede852011-09-26 20:32:27 +0200186 BUG_ON(in_atomic());
Rafael J. Wysocki7f33d492009-06-16 15:32:41 -0700187
Tejun Heo03afed82011-11-21 12:32:24 -0800188 if (error)
Srivatsa S. Bhat379e0be2012-02-03 22:22:41 +0100189 thaw_kernel_threads();
Rafael J. Wysockib842ee52007-10-18 03:04:48 -0700190 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191}
192
Tejun Heo6cd8ded2011-11-21 12:32:23 -0800193void thaw_processes(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
195 struct task_struct *g, *p;
Colin Cross2b44c4d2013-07-24 17:41:33 -0700196 struct task_struct *curr = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Todd E Brandtbb3632c2014-06-06 05:40:17 -0700198 trace_suspend_resume(TPS("thaw_processes"), 0, true);
Tejun Heoa3201222011-11-21 12:32:25 -0800199 if (pm_freezing)
200 atomic_dec(&system_freezing_cnt);
201 pm_freezing = false;
202 pm_nosig_freezing = false;
203
Tejun Heo6cd8ded2011-11-21 12:32:23 -0800204 oom_killer_enable();
205
Michal Hocko35536ae2015-02-11 15:26:18 -0800206 pr_info("Restarting tasks ... ");
Tejun Heo6cd8ded2011-11-21 12:32:23 -0800207
Takashi Iwai4320f6b2014-07-15 08:51:27 +0200208 __usermodehelper_set_disable_depth(UMH_FREEZING);
Tejun Heo6cd8ded2011-11-21 12:32:23 -0800209 thaw_workqueues();
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 read_lock(&tasklist_lock);
Michal Hockoa28e7852014-10-21 09:27:15 +0200212 for_each_process_thread(g, p) {
Colin Cross2b44c4d2013-07-24 17:41:33 -0700213 /* No other threads should have PF_SUSPEND_TASK set */
214 WARN_ON((p != curr) && (p->flags & PF_SUSPEND_TASK));
Tejun Heoa5be2d02011-11-21 12:32:23 -0800215 __thaw_task(p);
Michal Hockoa28e7852014-10-21 09:27:15 +0200216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 read_unlock(&tasklist_lock);
Rafael J. Wysockia9b6f562006-12-06 20:34:37 -0800218
Colin Cross2b44c4d2013-07-24 17:41:33 -0700219 WARN_ON(!(curr->flags & PF_SUSPEND_TASK));
220 curr->flags &= ~PF_SUSPEND_TASK;
221
Rafael J. Wysocki1e732032012-03-28 23:30:21 +0200222 usermodehelper_enable();
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 schedule();
Michal Hocko35536ae2015-02-11 15:26:18 -0800225 pr_cont("done.\n");
Todd E Brandtbb3632c2014-06-06 05:40:17 -0700226 trace_suspend_resume(TPS("thaw_processes"), 0, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
228
Rafael J. Wysocki181e9bd2012-01-29 20:35:52 +0100229void thaw_kernel_threads(void)
230{
231 struct task_struct *g, *p;
232
233 pm_nosig_freezing = false;
Michal Hocko35536ae2015-02-11 15:26:18 -0800234 pr_info("Restarting kernel threads ... ");
Rafael J. Wysocki181e9bd2012-01-29 20:35:52 +0100235
236 thaw_workqueues();
237
238 read_lock(&tasklist_lock);
Michal Hockoa28e7852014-10-21 09:27:15 +0200239 for_each_process_thread(g, p) {
Rafael J. Wysocki181e9bd2012-01-29 20:35:52 +0100240 if (p->flags & (PF_KTHREAD | PF_WQ_WORKER))
241 __thaw_task(p);
Michal Hockoa28e7852014-10-21 09:27:15 +0200242 }
Rafael J. Wysocki181e9bd2012-01-29 20:35:52 +0100243 read_unlock(&tasklist_lock);
244
245 schedule();
Michal Hocko35536ae2015-02-11 15:26:18 -0800246 pr_cont("done.\n");
Rafael J. Wysocki181e9bd2012-01-29 20:35:52 +0100247}