blob: fd0ebb942f5097495e493b79527da5b7c87f74d4 [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
11#include <linux/smp_lock.h>
12#include <linux/interrupt.h>
13#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18/*
19 * Timeout for stopping processes
20 */
Rafael J. Wysocki02aaeb92006-03-23 03:00:04 -080021#define TIMEOUT (20 * HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Rafael J. Wysockia9b6f562006-12-06 20:34:37 -080023#define FREEZER_KERNEL_THREADS 0
24#define FREEZER_USER_SPACE 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26static inline int freezeable(struct task_struct * p)
27{
28 if ((p == current) ||
29 (p->flags & PF_NOFREEZE) ||
30 (p->exit_state == EXIT_ZOMBIE) ||
31 (p->exit_state == EXIT_DEAD) ||
Pavel Machek85b6bce2006-03-31 02:30:06 -080032 (p->state == TASK_STOPPED))
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 return 0;
34 return 1;
35}
36
37/* Refrigerator is place where frozen processes are stored :-). */
Christoph Lameter3e1d1d22005-06-24 23:13:50 -070038void refrigerator(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
40 /* Hmm, should we be allowed to suspend when there are realtime
41 processes around? */
42 long save;
43 save = current->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 pr_debug("%s entered refrigerator\n", current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Christoph Lameter3e1d1d22005-06-24 23:13:50 -070046 frozen_process(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 spin_lock_irq(&current->sighand->siglock);
48 recalc_sigpending(); /* We sent fake signal, clean it up */
49 spin_unlock_irq(&current->sighand->siglock);
50
Pavel Machek2a23b5d2005-09-03 15:56:53 -070051 while (frozen(current)) {
52 current->state = TASK_UNINTERRUPTIBLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 schedule();
Pavel Machek2a23b5d2005-09-03 15:56:53 -070054 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 pr_debug("%s left refrigerator\n", current->comm);
56 current->state = save;
57}
58
Rafael J. Wysocki02aaeb92006-03-23 03:00:04 -080059static inline void freeze_process(struct task_struct *p)
60{
61 unsigned long flags;
62
63 if (!freezing(p)) {
64 freeze(p);
65 spin_lock_irqsave(&p->sighand->siglock, flags);
66 signal_wake_up(p, 0);
67 spin_unlock_irqrestore(&p->sighand->siglock, flags);
68 }
69}
70
Rafael J. Wysockia7ef7872006-08-05 12:13:42 -070071static void cancel_freezing(struct task_struct *p)
72{
73 unsigned long flags;
74
75 if (freezing(p)) {
76 pr_debug(" clean up: %s\n", p->comm);
77 do_not_freeze(p);
78 spin_lock_irqsave(&p->sighand->siglock, flags);
79 recalc_sigpending_tsk(p);
80 spin_unlock_irqrestore(&p->sighand->siglock, flags);
81 }
82}
83
Rafael J. Wysockia9b6f562006-12-06 20:34:37 -080084static inline int is_user_space(struct task_struct *p)
85{
86 return p->mm && !(p->flags & PF_BORROWED_MM);
87}
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/* 0 = success, else # of processes that we failed to stop */
90int freeze_processes(void)
91{
Rafael J. Wysocki02aaeb92006-03-23 03:00:04 -080092 int todo, nr_user, user_frozen;
Christoph Lameter3e1d1d22005-06-24 23:13:50 -070093 unsigned long start_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 struct task_struct *g, *p;
Christoph Lameter3e1d1d22005-06-24 23:13:50 -070095
Nigel Cunningham14b5b7c2006-12-06 20:34:26 -080096 printk("Stopping tasks... ");
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 start_time = jiffies;
Rafael J. Wysocki02aaeb92006-03-23 03:00:04 -080098 user_frozen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 do {
Rafael J. Wysocki02aaeb92006-03-23 03:00:04 -0800100 nr_user = todo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 read_lock(&tasklist_lock);
102 do_each_thread(g, p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 if (!freezeable(p))
104 continue;
Pavel Machek1322ad412005-07-07 17:56:45 -0700105 if (frozen(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 continue;
Rafael J. Wysocki3eb1b3a2006-12-06 20:34:34 -0800107 if (p->state == TASK_TRACED &&
108 (frozen(p->parent) ||
109 p->parent->state == TASK_STOPPED)) {
Rafael J. Wysockia7ef7872006-08-05 12:13:42 -0700110 cancel_freezing(p);
111 continue;
112 }
Rafael J. Wysockia9b6f562006-12-06 20:34:37 -0800113 if (is_user_space(p)) {
114 /* Freeze the task unless there is a vfork
115 * completion pending
Rafael J. Wysocki02aaeb92006-03-23 03:00:04 -0800116 */
117 if (!p->vfork_done)
118 freeze_process(p);
119 nr_user++;
120 } else {
121 /* Freeze only if the user space is frozen */
122 if (user_frozen)
123 freeze_process(p);
124 todo++;
125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 } while_each_thread(g, p);
127 read_unlock(&tasklist_lock);
Rafael J. Wysocki02aaeb92006-03-23 03:00:04 -0800128 todo += nr_user;
129 if (!user_frozen && !nr_user) {
130 sys_sync();
131 start_time = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 }
Rafael J. Wysocki02aaeb92006-03-23 03:00:04 -0800133 user_frozen = !nr_user;
134 yield(); /* Yield is okay here */
135 if (todo && time_after(jiffies, start_time + TIMEOUT))
136 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 } while(todo);
Christoph Lameter3e1d1d22005-06-24 23:13:50 -0700138
Pavel Machek6161b2c2005-09-03 15:57:05 -0700139 /* This does not unfreeze processes that are already frozen
140 * (we have slightly ugly calling convention in that respect,
141 * and caller must call thaw_processes() if something fails),
142 * but it cleans up leftover PF_FREEZE requests.
143 */
144 if (todo) {
Nigel Cunningham14b5b7c2006-12-06 20:34:26 -0800145 printk("\n");
146 printk(KERN_ERR "Stopping tasks timed out "
Rafael J. Wysocki02aaeb92006-03-23 03:00:04 -0800147 "after %d seconds (%d tasks remaining):\n",
148 TIMEOUT / HZ, todo);
Pavel Machek6161b2c2005-09-03 15:57:05 -0700149 read_lock(&tasklist_lock);
Rafael J. Wysocki02aaeb92006-03-23 03:00:04 -0800150 do_each_thread(g, p) {
151 if (freezeable(p) && !frozen(p))
Nigel Cunningham14b5b7c2006-12-06 20:34:26 -0800152 printk(KERN_ERR " %s\n", p->comm);
Rafael J. Wysockia7ef7872006-08-05 12:13:42 -0700153 cancel_freezing(p);
Rafael J. Wysocki02aaeb92006-03-23 03:00:04 -0800154 } while_each_thread(g, p);
Pavel Machek6161b2c2005-09-03 15:57:05 -0700155 read_unlock(&tasklist_lock);
156 return todo;
157 }
158
Nigel Cunningham14b5b7c2006-12-06 20:34:26 -0800159 printk("done.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 BUG_ON(in_atomic());
161 return 0;
162}
163
Rafael J. Wysockia9b6f562006-12-06 20:34:37 -0800164static void thaw_tasks(int thaw_user_space)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
166 struct task_struct *g, *p;
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 read_lock(&tasklist_lock);
Rafael J. Wysockia9b6f562006-12-06 20:34:37 -0800169 do_each_thread(g, p) {
170 if (!freezeable(p))
171 continue;
Nigel Cunninghamff395932006-12-06 20:34:28 -0800172
Rafael J. Wysockia9b6f562006-12-06 20:34:37 -0800173 if (is_user_space(p) == !thaw_user_space)
174 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Rafael J. Wysockia9b6f562006-12-06 20:34:37 -0800176 if (!thaw_process(p))
177 printk(KERN_WARNING " Strange, %s not stopped\n",
178 p->comm );
179 } while_each_thread(g, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 read_unlock(&tasklist_lock);
Rafael J. Wysockia9b6f562006-12-06 20:34:37 -0800181}
182
183void thaw_processes(void)
184{
185 printk("Restarting tasks ... ");
186 thaw_tasks(FREEZER_KERNEL_THREADS);
187 thaw_tasks(FREEZER_USER_SPACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 schedule();
Nigel Cunningham14b5b7c2006-12-06 20:34:26 -0800189 printk("done.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
192EXPORT_SYMBOL(refrigerator);