blob: 17e3bb42dd3cc541373aba08191e3592bdc6f67d [file] [log] [blame]
Nigel Cunningham7dfb7102006-12-06 20:34:23 -08001/* Freezer declarations */
2
Rafael J. Wysocki83144182007-07-17 04:03:35 -07003#ifndef FREEZER_H_INCLUDED
4#define FREEZER_H_INCLUDED
5
Randy Dunlap5c543ef2006-12-10 02:18:58 -08006#include <linux/sched.h>
Rafael J. Wysockie42837b2007-10-18 03:04:45 -07007#include <linux/wait.h>
Randy Dunlap5c543ef2006-12-10 02:18:58 -08008
Matt Helsley8174f152008-10-18 20:27:19 -07009#ifdef CONFIG_FREEZER
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080010/*
11 * Check if a process has been frozen
12 */
13static inline int frozen(struct task_struct *p)
14{
15 return p->flags & PF_FROZEN;
16}
17
18/*
19 * Check if there is a request to freeze a process
20 */
21static inline int freezing(struct task_struct *p)
22{
Rafael J. Wysocki8a102ee2006-12-13 00:34:30 -080023 return test_tsk_thread_flag(p, TIF_FREEZE);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080024}
25
26/*
27 * Request that a process be frozen
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080028 */
Rafael J. Wysocki0c1eecf2007-07-19 01:47:33 -070029static inline void set_freeze_flag(struct task_struct *p)
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080030{
Rafael J. Wysocki8a102ee2006-12-13 00:34:30 -080031 set_tsk_thread_flag(p, TIF_FREEZE);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080032}
33
34/*
35 * Sometimes we may need to cancel the previous 'freeze' request
36 */
Rafael J. Wysocki0c1eecf2007-07-19 01:47:33 -070037static inline void clear_freeze_flag(struct task_struct *p)
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080038{
Rafael J. Wysocki8a102ee2006-12-13 00:34:30 -080039 clear_tsk_thread_flag(p, TIF_FREEZE);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080040}
41
Matt Helsley8174f152008-10-18 20:27:19 -070042static inline bool should_send_signal(struct task_struct *p)
43{
44 return !(p->flags & PF_FREEZER_NOSIG);
45}
46
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080047/*
48 * Wake up a frozen process
Rafael J. Wysocki33e1c282007-05-23 13:57:24 -070049 *
50 * task_lock() is taken to prevent the race with refrigerator() which may
51 * occur if the freezing of tasks fails. Namely, without the lock, if the
52 * freezing of tasks failed, thaw_tasks() might have run before a task in
53 * refrigerator() could call frozen_process(), in which case the task would be
54 * frozen and no one would thaw it.
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080055 */
56static inline int thaw_process(struct task_struct *p)
57{
Rafael J. Wysocki33e1c282007-05-23 13:57:24 -070058 task_lock(p);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080059 if (frozen(p)) {
60 p->flags &= ~PF_FROZEN;
Rafael J. Wysocki33e1c282007-05-23 13:57:24 -070061 task_unlock(p);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080062 wake_up_process(p);
63 return 1;
64 }
Rafael J. Wysocki0c1eecf2007-07-19 01:47:33 -070065 clear_freeze_flag(p);
Rafael J. Wysocki33e1c282007-05-23 13:57:24 -070066 task_unlock(p);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080067 return 0;
68}
69
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080070extern void refrigerator(void);
71extern int freeze_processes(void);
Rafael J. Wysockia9b6f562006-12-06 20:34:37 -080072extern void thaw_processes(void);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080073
74static inline int try_to_freeze(void)
75{
76 if (freezing(current)) {
77 refrigerator();
78 return 1;
79 } else
80 return 0;
81}
Nigel Cunninghamff395932006-12-06 20:34:28 -080082
Matt Helsley8174f152008-10-18 20:27:19 -070083extern bool freeze_task(struct task_struct *p, bool sig_only);
84extern void cancel_freezing(struct task_struct *p);
85
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -070086/*
87 * The PF_FREEZER_SKIP flag should be set by a vfork parent right before it
88 * calls wait_for_completion(&vfork) and reset right after it returns from this
89 * function. Next, the parent should call try_to_freeze() to freeze itself
90 * appropriately in case the child has exited before the freezing of tasks is
91 * complete. However, we don't want kernel threads to be frozen in unexpected
92 * places, so we allow them to block freeze_processes() instead or to set
93 * PF_NOFREEZE if needed and PF_FREEZER_SKIP is only set for userland vfork
94 * parents. Fortunately, in the ____call_usermodehelper() case the parent won't
95 * really block freeze_processes(), since ____call_usermodehelper() (the child)
96 * does a little before exec/exit and it can't be frozen before waking up the
97 * parent.
98 */
99
100/*
101 * If the current task is a user space one, tell the freezer not to count it as
102 * freezable.
103 */
104static inline void freezer_do_not_count(void)
105{
106 if (current->mm)
107 current->flags |= PF_FREEZER_SKIP;
108}
109
110/*
111 * If the current task is a user space one, tell the freezer to count it as
112 * freezable again and try to freeze it.
113 */
114static inline void freezer_count(void)
115{
116 if (current->mm) {
117 current->flags &= ~PF_FREEZER_SKIP;
118 try_to_freeze();
119 }
120}
121
122/*
123 * Check if the task should be counted as freezeable by the freezer
124 */
125static inline int freezer_should_skip(struct task_struct *p)
126{
127 return !!(p->flags & PF_FREEZER_SKIP);
128}
Nigel Cunninghamff395932006-12-06 20:34:28 -0800129
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700130/*
131 * Tell the freezer that the current task should be frozen by it
132 */
133static inline void set_freezable(void)
134{
135 current->flags &= ~PF_NOFREEZE;
136}
137
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700138/*
Rafael J. Wysockiebb12db2008-06-11 22:04:29 +0200139 * Tell the freezer that the current task should be frozen by it and that it
140 * should send a fake signal to the task to freeze it.
141 */
142static inline void set_freezable_with_signal(void)
143{
144 current->flags &= ~(PF_NOFREEZE | PF_FREEZER_NOSIG);
145}
146
147/*
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700148 * Freezer-friendly wrappers around wait_event_interruptible() and
149 * wait_event_interruptible_timeout(), originally defined in <linux/wait.h>
150 */
151
152#define wait_event_freezable(wq, condition) \
153({ \
154 int __retval; \
155 do { \
156 __retval = wait_event_interruptible(wq, \
157 (condition) || freezing(current)); \
158 if (__retval && !freezing(current)) \
159 break; \
160 else if (!(condition)) \
161 __retval = -ERESTARTSYS; \
162 } while (try_to_freeze()); \
163 __retval; \
164})
165
166
167#define wait_event_freezable_timeout(wq, condition, timeout) \
168({ \
169 long __retval = timeout; \
170 do { \
171 __retval = wait_event_interruptible_timeout(wq, \
172 (condition) || freezing(current), \
173 __retval); \
174 } while (try_to_freeze()); \
175 __retval; \
176})
Matt Helsley8174f152008-10-18 20:27:19 -0700177#else /* !CONFIG_FREEZER */
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800178static inline int frozen(struct task_struct *p) { return 0; }
179static inline int freezing(struct task_struct *p) { return 0; }
Rafael J. Wysocki0c1eecf2007-07-19 01:47:33 -0700180static inline void set_freeze_flag(struct task_struct *p) {}
181static inline void clear_freeze_flag(struct task_struct *p) {}
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800182static inline int thaw_process(struct task_struct *p) { return 1; }
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800183
184static inline void refrigerator(void) {}
185static inline int freeze_processes(void) { BUG(); return 0; }
186static inline void thaw_processes(void) {}
187
188static inline int try_to_freeze(void) { return 0; }
189
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -0700190static inline void freezer_do_not_count(void) {}
191static inline void freezer_count(void) {}
192static inline int freezer_should_skip(struct task_struct *p) { return 0; }
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700193static inline void set_freezable(void) {}
Rafael J. Wysockiebb12db2008-06-11 22:04:29 +0200194static inline void set_freezable_with_signal(void) {}
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700195
196#define wait_event_freezable(wq, condition) \
197 wait_event_interruptible(wq, condition)
198
199#define wait_event_freezable_timeout(wq, condition, timeout) \
200 wait_event_interruptible_timeout(wq, condition, timeout)
201
Matt Helsley8174f152008-10-18 20:27:19 -0700202#endif /* !CONFIG_FREEZER */
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700203
204#endif /* FREEZER_H_INCLUDED */