block: fix buffer overflow when printing partition UUIDs
[pandora-kernel.git] / include / linux / freezer.h
1 /* Freezer declarations */
2
3 #ifndef FREEZER_H_INCLUDED
4 #define FREEZER_H_INCLUDED
5
6 #include <linux/sched.h>
7 #include <linux/wait.h>
8
9 #ifdef CONFIG_FREEZER
10 /*
11  * Check if a process has been frozen
12  */
13 static 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  */
21 static inline int freezing(struct task_struct *p)
22 {
23         return test_tsk_thread_flag(p, TIF_FREEZE);
24 }
25
26 /*
27  * Request that a process be frozen
28  */
29 static inline void set_freeze_flag(struct task_struct *p)
30 {
31         set_tsk_thread_flag(p, TIF_FREEZE);
32 }
33
34 /*
35  * Sometimes we may need to cancel the previous 'freeze' request
36  */
37 static inline void clear_freeze_flag(struct task_struct *p)
38 {
39         clear_tsk_thread_flag(p, TIF_FREEZE);
40 }
41
42 static inline bool should_send_signal(struct task_struct *p)
43 {
44         return !(p->flags & PF_FREEZER_NOSIG);
45 }
46
47 /* Takes and releases task alloc lock using task_lock() */
48 extern int thaw_process(struct task_struct *p);
49
50 extern void refrigerator(void);
51 extern int freeze_processes(void);
52 extern int freeze_kernel_threads(void);
53 extern void thaw_processes(void);
54 extern void thaw_kernel_threads(void);
55
56 static inline int try_to_freeze(void)
57 {
58         if (freezing(current)) {
59                 refrigerator();
60                 return 1;
61         } else
62                 return 0;
63 }
64
65 extern bool freeze_task(struct task_struct *p, bool sig_only);
66 extern void cancel_freezing(struct task_struct *p);
67
68 #ifdef CONFIG_CGROUP_FREEZER
69 extern int cgroup_freezing_or_frozen(struct task_struct *task);
70 #else /* !CONFIG_CGROUP_FREEZER */
71 static inline int cgroup_freezing_or_frozen(struct task_struct *task)
72 {
73         return 0;
74 }
75 #endif /* !CONFIG_CGROUP_FREEZER */
76
77 /*
78  * The PF_FREEZER_SKIP flag should be set by a vfork parent right before it
79  * calls wait_for_completion(&vfork) and reset right after it returns from this
80  * function.  Next, the parent should call try_to_freeze() to freeze itself
81  * appropriately in case the child has exited before the freezing of tasks is
82  * complete.  However, we don't want kernel threads to be frozen in unexpected
83  * places, so we allow them to block freeze_processes() instead or to set
84  * PF_NOFREEZE if needed and PF_FREEZER_SKIP is only set for userland vfork
85  * parents.  Fortunately, in the ____call_usermodehelper() case the parent won't
86  * really block freeze_processes(), since ____call_usermodehelper() (the child)
87  * does a little before exec/exit and it can't be frozen before waking up the
88  * parent.
89  */
90
91 /*
92  * If the current task is a user space one, tell the freezer not to count it as
93  * freezable.
94  */
95 static inline void freezer_do_not_count(void)
96 {
97         if (current->mm)
98                 current->flags |= PF_FREEZER_SKIP;
99 }
100
101 /*
102  * If the current task is a user space one, tell the freezer to count it as
103  * freezable again and try to freeze it.
104  */
105 static inline void freezer_count(void)
106 {
107         if (current->mm) {
108                 current->flags &= ~PF_FREEZER_SKIP;
109                 try_to_freeze();
110         }
111 }
112
113 /*
114  * Check if the task should be counted as freezable by the freezer
115  */
116 static inline int freezer_should_skip(struct task_struct *p)
117 {
118         return !!(p->flags & PF_FREEZER_SKIP);
119 }
120
121 /*
122  * Tell the freezer that the current task should be frozen by it
123  */
124 static inline void set_freezable(void)
125 {
126         current->flags &= ~PF_NOFREEZE;
127 }
128
129 /*
130  * Tell the freezer that the current task should be frozen by it and that it
131  * should send a fake signal to the task to freeze it.
132  */
133 static inline void set_freezable_with_signal(void)
134 {
135         current->flags &= ~(PF_NOFREEZE | PF_FREEZER_NOSIG);
136 }
137
138 /*
139  * Freezer-friendly wrappers around wait_event_interruptible(),
140  * wait_event_killable() and wait_event_interruptible_timeout(), originally
141  * defined in <linux/wait.h>
142  */
143
144 #define wait_event_freezekillable(wq, condition)                        \
145 ({                                                                      \
146         int __retval;                                                   \
147         freezer_do_not_count();                                         \
148         __retval = wait_event_killable(wq, (condition));                \
149         freezer_count();                                                \
150         __retval;                                                       \
151 })
152
153 #define wait_event_freezable(wq, condition)                             \
154 ({                                                                      \
155         int __retval;                                                   \
156         do {                                                            \
157                 __retval = wait_event_interruptible(wq,                 \
158                                 (condition) || freezing(current));      \
159                 if (__retval && !freezing(current))                     \
160                         break;                                          \
161                 else if (!(condition))                                  \
162                         __retval = -ERESTARTSYS;                        \
163         } while (try_to_freeze());                                      \
164         __retval;                                                       \
165 })
166
167
168 #define wait_event_freezable_timeout(wq, condition, timeout)            \
169 ({                                                                      \
170         long __retval = timeout;                                        \
171         do {                                                            \
172                 __retval = wait_event_interruptible_timeout(wq,         \
173                                 (condition) || freezing(current),       \
174                                 __retval);                              \
175         } while (try_to_freeze());                                      \
176         __retval;                                                       \
177 })
178 #else /* !CONFIG_FREEZER */
179 static inline int frozen(struct task_struct *p) { return 0; }
180 static inline int freezing(struct task_struct *p) { return 0; }
181 static inline void set_freeze_flag(struct task_struct *p) {}
182 static inline void clear_freeze_flag(struct task_struct *p) {}
183 static inline int thaw_process(struct task_struct *p) { return 1; }
184
185 static inline void refrigerator(void) {}
186 static inline int freeze_processes(void) { return -ENOSYS; }
187 static inline int freeze_kernel_threads(void) { return -ENOSYS; }
188 static inline void thaw_processes(void) {}
189 static inline void thaw_kernel_threads(void) {}
190
191 static inline int try_to_freeze(void) { return 0; }
192
193 static inline void freezer_do_not_count(void) {}
194 static inline void freezer_count(void) {}
195 static inline int freezer_should_skip(struct task_struct *p) { return 0; }
196 static inline void set_freezable(void) {}
197 static inline void set_freezable_with_signal(void) {}
198
199 #define wait_event_freezable(wq, condition)                             \
200                 wait_event_interruptible(wq, condition)
201
202 #define wait_event_freezable_timeout(wq, condition, timeout)            \
203                 wait_event_interruptible_timeout(wq, condition, timeout)
204
205 #define wait_event_freezekillable(wq, condition)                \
206                 wait_event_killable(wq, condition)
207
208 #endif /* !CONFIG_FREEZER */
209
210 #endif  /* FREEZER_H_INCLUDED */