blob: 9a12c835b6c29dd286736b269125304e41f988ea [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>
Ruchi Kandoi6118cb42014-10-29 10:36:27 -070021#include <linux/wakeup_reason.h>
Peter Zijlstraba155182017-09-07 11:13:38 +020022#include <linux/cpuset.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Peter Zijlstraba155182017-09-07 11:13:38 +020024/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 * Timeout for stopping processes
26 */
Li Fei957d1282013-02-01 08:56:03 +000027unsigned int __read_mostly freeze_timeout_msecs = 20 * MSEC_PER_SEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Tejun Heo839e3402011-11-21 12:32:26 -080029static int try_to_freeze_tasks(bool user_only)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030{
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 struct task_struct *g, *p;
Rafael J. Wysocki11b2ce22006-12-06 20:34:40 -080032 unsigned long end_time;
33 unsigned int todo;
Tejun Heoa0a1a5f2010-06-29 10:07:12 +020034 bool wq_busy = false;
Abhilash Jindalf7b382b2016-01-31 14:29:01 -050035 ktime_t start, end, elapsed;
Colin Cross18ad0c62013-05-06 23:50:10 +000036 unsigned int elapsed_msecs;
Rafael J. Wysockidbeeec52010-10-04 22:07:32 +020037 bool wakeup = false;
Colin Cross18ad0c62013-05-06 23:50:10 +000038 int sleep_usecs = USEC_PER_MSEC;
Lorenzo Colitti00a83e62014-11-27 15:12:10 +090039#ifdef CONFIG_PM_SLEEP
Ruchi Kandoi6118cb42014-10-29 10:36:27 -070040 char suspend_abort[MAX_SUSPEND_ABORT_LEN];
Lorenzo Colitti00a83e62014-11-27 15:12:10 +090041#endif
Rafael J. Wysocki438e2ce2007-10-18 03:04:49 -070042
Abhilash Jindalf7b382b2016-01-31 14:29:01 -050043 start = ktime_get_boottime();
Christoph Lameter3e1d1d22005-06-24 23:13:50 -070044
Li Fei957d1282013-02-01 08:56:03 +000045 end_time = jiffies + msecs_to_jiffies(freeze_timeout_msecs);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +020046
Tejun Heo839e3402011-11-21 12:32:26 -080047 if (!user_only)
Tejun Heoa0a1a5f2010-06-29 10:07:12 +020048 freeze_workqueues_begin();
49
Tejun Heobe404f02009-10-08 22:47:30 +020050 while (true) {
Rafael J. Wysocki11b2ce22006-12-06 20:34:40 -080051 todo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 read_lock(&tasklist_lock);
Michal Hockoa28e7852014-10-21 09:27:15 +020053 for_each_process_thread(g, p) {
Tejun Heo839e3402011-11-21 12:32:26 -080054 if (p == current || !freeze_task(p))
Rafael J. Wysockid5d8c592007-10-18 03:04:46 -070055 continue;
56
Oleg Nesterov5d8f72b2012-10-26 19:46:06 +020057 if (!freezer_should_skip(p))
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -070058 todo++;
Michal Hockoa28e7852014-10-21 09:27:15 +020059 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 read_unlock(&tasklist_lock);
Tejun Heoa0a1a5f2010-06-29 10:07:12 +020061
Tejun Heo839e3402011-11-21 12:32:26 -080062 if (!user_only) {
Tejun Heoa0a1a5f2010-06-29 10:07:12 +020063 wq_busy = freeze_workqueues_busy();
64 todo += wq_busy;
65 }
66
Tejun Heobe404f02009-10-08 22:47:30 +020067 if (!todo || time_after(jiffies, end_time))
Rafael J. Wysocki02aaeb92006-03-23 03:00:04 -080068 break;
Tejun Heobe404f02009-10-08 22:47:30 +020069
Rafael J. Wysockia2867e02010-12-03 22:58:31 +010070 if (pm_wakeup_pending()) {
Lorenzo Colitti00a83e62014-11-27 15:12:10 +090071#ifdef CONFIG_PM_SLEEP
Ruchi Kandoi6118cb42014-10-29 10:36:27 -070072 pm_get_active_wakeup_sources(suspend_abort,
73 MAX_SUSPEND_ABORT_LEN);
74 log_suspend_abort_reason(suspend_abort);
Lorenzo Colitti00a83e62014-11-27 15:12:10 +090075#endif
Rafael J. Wysockidbeeec52010-10-04 22:07:32 +020076 wakeup = true;
77 break;
78 }
79
Tejun Heobe404f02009-10-08 22:47:30 +020080 /*
81 * We need to retry, but first give the freezing tasks some
Colin Cross18ad0c62013-05-06 23:50:10 +000082 * time to enter the refrigerator. Start with an initial
83 * 1 ms sleep followed by exponential backoff until 8 ms.
Tejun Heobe404f02009-10-08 22:47:30 +020084 */
Colin Cross18ad0c62013-05-06 23:50:10 +000085 usleep_range(sleep_usecs / 2, sleep_usecs);
86 if (sleep_usecs < 8 * USEC_PER_MSEC)
87 sleep_usecs *= 2;
Tejun Heobe404f02009-10-08 22:47:30 +020088 }
Christoph Lameter3e1d1d22005-06-24 23:13:50 -070089
Abhilash Jindalf7b382b2016-01-31 14:29:01 -050090 end = ktime_get_boottime();
91 elapsed = ktime_sub(end, start);
92 elapsed_msecs = ktime_to_ms(elapsed);
Rafael J. Wysocki438e2ce2007-10-18 03:04:49 -070093
Ruchi Kandoif118f732014-10-14 17:43:21 -070094 if (wakeup) {
Michal Hocko35536ae2015-02-11 15:26:18 -080095 pr_cont("\n");
Ruchi Kandoif118f732014-10-14 17:43:21 -070096 pr_err("Freezing of tasks aborted after %d.%03d seconds",
97 elapsed_msecs / 1000, elapsed_msecs % 1000);
98 } else if (todo) {
99 pr_cont("\n");
100 pr_err("Freezing of tasks failed after %d.%03d seconds"
101 " (%d tasks refusing to freeze, wq_busy=%d):\n",
Colin Cross18ad0c62013-05-06 23:50:10 +0000102 elapsed_msecs / 1000, elapsed_msecs % 1000,
Tejun Heoa0a1a5f2010-06-29 10:07:12 +0200103 todo - wq_busy, wq_busy);
104
Roger Lu7b776af2016-07-01 11:05:02 +0800105 if (wq_busy)
106 show_workqueue_state();
107
Ruchi Kandoif118f732014-10-14 17:43:21 -0700108 read_lock(&tasklist_lock);
109 for_each_process_thread(g, p) {
110 if (p != current && !freezer_should_skip(p)
111 && freezing(p) && !frozen(p))
112 sched_show_task(p);
Rafael J. Wysocki6c83b482012-02-11 00:00:34 +0100113 }
Ruchi Kandoif118f732014-10-14 17:43:21 -0700114 read_unlock(&tasklist_lock);
Rafael J. Wysocki438e2ce2007-10-18 03:04:49 -0700115 } else {
Michal Hocko35536ae2015-02-11 15:26:18 -0800116 pr_cont("(elapsed %d.%03d seconds) ", elapsed_msecs / 1000,
Colin Cross18ad0c62013-05-06 23:50:10 +0000117 elapsed_msecs % 1000);
Pavel Machek6161b2c2005-09-03 15:57:05 -0700118 }
119
Rafael J. Wysockie7cd8a72007-07-19 01:47:34 -0700120 return todo ? -EBUSY : 0;
Rafael J. Wysocki11b2ce22006-12-06 20:34:40 -0800121}
122
123/**
Rafael J. Wysocki2aede852011-09-26 20:32:27 +0200124 * freeze_processes - Signal user space processes to enter the refrigerator.
Colin Cross2b44c4d2013-07-24 17:41:33 -0700125 * The current thread will not be frozen. The same process that calls
126 * freeze_processes must later call thaw_processes.
Tejun Heo03afed82011-11-21 12:32:24 -0800127 *
128 * On success, returns 0. On failure, -errno and system is fully thawed.
Rafael J. Wysocki11b2ce22006-12-06 20:34:40 -0800129 */
130int freeze_processes(void)
131{
Rafael J. Wysockie7cd8a72007-07-19 01:47:34 -0700132 int error;
Rafael J. Wysocki11b2ce22006-12-06 20:34:40 -0800133
Rafael J. Wysocki247bc032012-03-28 23:30:28 +0200134 error = __usermodehelper_disable(UMH_FREEZING);
Rafael J. Wysocki1e732032012-03-28 23:30:21 +0200135 if (error)
136 return error;
137
Colin Cross2b44c4d2013-07-24 17:41:33 -0700138 /* Make sure this task doesn't get frozen */
139 current->flags |= PF_SUSPEND_TASK;
140
Tejun Heoa3201222011-11-21 12:32:25 -0800141 if (!pm_freezing)
142 atomic_inc(&system_freezing_cnt);
143
Rafael J. Wysocki068765b2014-09-01 13:47:49 +0200144 pm_wakeup_clear();
Michal Hocko35536ae2015-02-11 15:26:18 -0800145 pr_info("Freezing user space processes ... ");
Tejun Heoa3201222011-11-21 12:32:25 -0800146 pm_freezing = true;
Rafael J. Wysockiebb12db2008-06-11 22:04:29 +0200147 error = try_to_freeze_tasks(true);
Rafael J. Wysocki2aede852011-09-26 20:32:27 +0200148 if (!error) {
Rafael J. Wysocki247bc032012-03-28 23:30:28 +0200149 __usermodehelper_set_disable_depth(UMH_DISABLED);
Michal Hockoc32b3cb2015-02-11 15:26:24 -0800150 pr_cont("done.");
Rafael J. Wysocki2aede852011-09-26 20:32:27 +0200151 }
Michal Hocko35536ae2015-02-11 15:26:18 -0800152 pr_cont("\n");
Rafael J. Wysocki2aede852011-09-26 20:32:27 +0200153 BUG_ON(in_atomic());
154
Michal Hockoc32b3cb2015-02-11 15:26:24 -0800155 /*
156 * Now that the whole userspace is frozen we need to disbale
157 * the OOM killer to disallow any further interference with
Michal Hocko7d2e7a22016-10-07 16:59:00 -0700158 * killable tasks. There is no guarantee oom victims will
159 * ever reach a point they go away we have to wait with a timeout.
Michal Hockoc32b3cb2015-02-11 15:26:24 -0800160 */
Michal Hocko7d2e7a22016-10-07 16:59:00 -0700161 if (!error && !oom_killer_disable(msecs_to_jiffies(freeze_timeout_msecs)))
Michal Hockoc32b3cb2015-02-11 15:26:24 -0800162 error = -EBUSY;
163
Tejun Heo03afed82011-11-21 12:32:24 -0800164 if (error)
165 thaw_processes();
Rafael J. Wysocki2aede852011-09-26 20:32:27 +0200166 return error;
167}
168
169/**
170 * freeze_kernel_threads - Make freezable kernel threads go to the refrigerator.
Tejun Heo03afed82011-11-21 12:32:24 -0800171 *
Srivatsa S. Bhat379e0be2012-02-03 22:22:41 +0100172 * On success, returns 0. On failure, -errno and only the kernel threads are
173 * thawed, so as to give a chance to the caller to do additional cleanups
174 * (if any) before thawing the userspace tasks. So, it is the responsibility
175 * of the caller to thaw the userspace tasks, when the time is right.
Rafael J. Wysocki2aede852011-09-26 20:32:27 +0200176 */
177int freeze_kernel_threads(void)
178{
179 int error;
Rafael J. Wysocki11b2ce22006-12-06 20:34:40 -0800180
Michal Hocko35536ae2015-02-11 15:26:18 -0800181 pr_info("Freezing remaining freezable tasks ... ");
182
Tejun Heoa3201222011-11-21 12:32:25 -0800183 pm_nosig_freezing = true;
Rafael J. Wysockiebb12db2008-06-11 22:04:29 +0200184 error = try_to_freeze_tasks(false);
Rafael J. Wysocki2aede852011-09-26 20:32:27 +0200185 if (!error)
Michal Hocko35536ae2015-02-11 15:26:18 -0800186 pr_cont("done.");
Rafael J. Wysocki7f33d492009-06-16 15:32:41 -0700187
Michal Hocko35536ae2015-02-11 15:26:18 -0800188 pr_cont("\n");
Rafael J. Wysocki2aede852011-09-26 20:32:27 +0200189 BUG_ON(in_atomic());
Rafael J. Wysocki7f33d492009-06-16 15:32:41 -0700190
Tejun Heo03afed82011-11-21 12:32:24 -0800191 if (error)
Srivatsa S. Bhat379e0be2012-02-03 22:22:41 +0100192 thaw_kernel_threads();
Rafael J. Wysockib842ee52007-10-18 03:04:48 -0700193 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
Tejun Heo6cd8ded2011-11-21 12:32:23 -0800196void thaw_processes(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
198 struct task_struct *g, *p;
Colin Cross2b44c4d2013-07-24 17:41:33 -0700199 struct task_struct *curr = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Todd E Brandtbb3632c2014-06-06 05:40:17 -0700201 trace_suspend_resume(TPS("thaw_processes"), 0, true);
Tejun Heoa3201222011-11-21 12:32:25 -0800202 if (pm_freezing)
203 atomic_dec(&system_freezing_cnt);
204 pm_freezing = false;
205 pm_nosig_freezing = false;
206
Tejun Heo6cd8ded2011-11-21 12:32:23 -0800207 oom_killer_enable();
208
Michal Hocko35536ae2015-02-11 15:26:18 -0800209 pr_info("Restarting tasks ... ");
Tejun Heo6cd8ded2011-11-21 12:32:23 -0800210
Takashi Iwai4320f6b2014-07-15 08:51:27 +0200211 __usermodehelper_set_disable_depth(UMH_FREEZING);
Tejun Heo6cd8ded2011-11-21 12:32:23 -0800212 thaw_workqueues();
213
Peter Zijlstraba155182017-09-07 11:13:38 +0200214 cpuset_wait_for_hotplug();
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 read_lock(&tasklist_lock);
Michal Hockoa28e7852014-10-21 09:27:15 +0200217 for_each_process_thread(g, p) {
Colin Cross2b44c4d2013-07-24 17:41:33 -0700218 /* No other threads should have PF_SUSPEND_TASK set */
219 WARN_ON((p != curr) && (p->flags & PF_SUSPEND_TASK));
Tejun Heoa5be2d02011-11-21 12:32:23 -0800220 __thaw_task(p);
Michal Hockoa28e7852014-10-21 09:27:15 +0200221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 read_unlock(&tasklist_lock);
Rafael J. Wysockia9b6f562006-12-06 20:34:37 -0800223
Colin Cross2b44c4d2013-07-24 17:41:33 -0700224 WARN_ON(!(curr->flags & PF_SUSPEND_TASK));
225 curr->flags &= ~PF_SUSPEND_TASK;
226
Rafael J. Wysocki1e732032012-03-28 23:30:21 +0200227 usermodehelper_enable();
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 schedule();
Michal Hocko35536ae2015-02-11 15:26:18 -0800230 pr_cont("done.\n");
Todd E Brandtbb3632c2014-06-06 05:40:17 -0700231 trace_suspend_resume(TPS("thaw_processes"), 0, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
233
Rafael J. Wysocki181e9bd2012-01-29 20:35:52 +0100234void thaw_kernel_threads(void)
235{
236 struct task_struct *g, *p;
237
238 pm_nosig_freezing = false;
Michal Hocko35536ae2015-02-11 15:26:18 -0800239 pr_info("Restarting kernel threads ... ");
Rafael J. Wysocki181e9bd2012-01-29 20:35:52 +0100240
241 thaw_workqueues();
242
243 read_lock(&tasklist_lock);
Michal Hockoa28e7852014-10-21 09:27:15 +0200244 for_each_process_thread(g, p) {
Rafael J. Wysocki181e9bd2012-01-29 20:35:52 +0100245 if (p->flags & (PF_KTHREAD | PF_WQ_WORKER))
246 __thaw_task(p);
Michal Hockoa28e7852014-10-21 09:27:15 +0200247 }
Rafael J. Wysocki181e9bd2012-01-29 20:35:52 +0100248 read_unlock(&tasklist_lock);
249
250 schedule();
Michal Hocko35536ae2015-02-11 15:26:18 -0800251 pr_cont("done.\n");
Rafael J. Wysocki181e9bd2012-01-29 20:35:52 +0100252}