2 * kernel/freezer.c - Function to freeze a process
4 * Originally from kernel/power/process.c
7 #include <linux/interrupt.h>
8 #include <linux/suspend.h>
9 #include <linux/export.h>
10 #include <linux/syscalls.h>
11 #include <linux/freezer.h>
12 #include <linux/kthread.h>
14 /* total number of freezing conditions in effect */
15 atomic_t system_freezing_cnt
= ATOMIC_INIT(0);
16 EXPORT_SYMBOL(system_freezing_cnt
);
18 /* indicate whether PM freezing is in effect, protected by pm_mutex */
20 bool pm_nosig_freezing
;
22 /* protects freezing and frozen transitions */
23 static DEFINE_SPINLOCK(freezer_lock
);
26 * freezing_slow_path - slow path for testing whether a task needs to be frozen
27 * @p: task to be tested
29 * This function is called by freezing() if system_freezing_cnt isn't zero
30 * and tests whether @p needs to enter and stay in frozen state. Can be
31 * called under any context. The freezers are responsible for ensuring the
32 * target tasks see the updated state.
34 bool freezing_slow_path(struct task_struct
*p
)
36 if (p
->flags
& PF_NOFREEZE
)
39 if (pm_nosig_freezing
|| cgroup_freezing(p
))
42 if (pm_freezing
&& !(p
->flags
& PF_FREEZER_NOSIG
))
47 EXPORT_SYMBOL(freezing_slow_path
);
49 /* Refrigerator is place where frozen processes are stored :-). */
50 bool __refrigerator(bool check_kthr_stop
)
52 /* Hmm, should we be allowed to suspend when there are realtime
54 bool was_frozen
= false;
58 * No point in checking freezing() again - the caller already did.
59 * Proceed to enter FROZEN.
61 spin_lock_irq(&freezer_lock
);
62 current
->flags
|= PF_FROZEN
;
63 spin_unlock_irq(&freezer_lock
);
65 save
= current
->state
;
66 pr_debug("%s entered refrigerator\n", current
->comm
);
68 spin_lock_irq(¤t
->sighand
->siglock
);
69 recalc_sigpending(); /* We sent fake signal, clean it up */
70 spin_unlock_irq(¤t
->sighand
->siglock
);
73 set_current_state(TASK_UNINTERRUPTIBLE
);
74 if (!freezing(current
) ||
75 (check_kthr_stop
&& kthread_should_stop()))
82 spin_lock_irq(&freezer_lock
);
83 current
->flags
&= ~PF_FROZEN
;
84 spin_unlock_irq(&freezer_lock
);
86 pr_debug("%s left refrigerator\n", current
->comm
);
89 * Restore saved task state before returning. The mb'd version
90 * needs to be used; otherwise, it might silently break
91 * synchronization which depends on ordered task state change.
93 set_current_state(save
);
97 EXPORT_SYMBOL(__refrigerator
);
99 static void fake_signal_wake_up(struct task_struct
*p
)
103 spin_lock_irqsave(&p
->sighand
->siglock
, flags
);
104 signal_wake_up(p
, 0);
105 spin_unlock_irqrestore(&p
->sighand
->siglock
, flags
);
109 * freeze_task - send a freeze request to given task
110 * @p: task to send the request to
111 * @sig_only: if set, the request will only be sent if the task has the
112 * PF_FREEZER_NOSIG flag unset
113 * Return value: 'false', if @sig_only is set and the task has
114 * PF_FREEZER_NOSIG set or the task is frozen, 'true', otherwise
116 * The freeze request is sent by setting the tasks's TIF_FREEZE flag and
117 * either sending a fake signal to it or waking it up, depending on whether
118 * or not it has PF_FREEZER_NOSIG set. If @sig_only is set and the task
119 * has PF_FREEZER_NOSIG set (ie. it is a typical kernel thread), its
120 * TIF_FREEZE flag will not be set.
122 bool freeze_task(struct task_struct
*p
, bool sig_only
)
126 spin_lock_irqsave(&freezer_lock
, flags
);
127 if (!freezing(p
) || frozen(p
)) {
128 spin_unlock_irqrestore(&freezer_lock
, flags
);
132 if (!(p
->flags
& PF_FREEZER_NOSIG
)) {
133 fake_signal_wake_up(p
);
135 * fake_signal_wake_up() goes through p's scheduler
136 * lock and guarantees that TASK_STOPPED/TRACED ->
137 * TASK_RUNNING transition can't race with task state
138 * testing in try_to_freeze_tasks().
141 wake_up_state(p
, TASK_INTERRUPTIBLE
);
144 spin_unlock_irqrestore(&freezer_lock
, flags
);
148 void __thaw_task(struct task_struct
*p
)
153 * Clear freezing and kick @p if FROZEN. Clearing is guaranteed to
154 * be visible to @p as waking up implies wmb. Waking up inside
155 * freezer_lock also prevents wakeups from leaking outside
158 * If !FROZEN, @p hasn't reached refrigerator, recalc sigpending to
159 * avoid leaving dangling TIF_SIGPENDING behind.
161 spin_lock_irqsave(&freezer_lock
, flags
);
165 spin_lock(&p
->sighand
->siglock
);
166 recalc_sigpending_and_wake(p
);
167 spin_unlock(&p
->sighand
->siglock
);
169 spin_unlock_irqrestore(&freezer_lock
, flags
);
173 * __set_freezable - make %current freezable
174 * @with_signal: do we want %TIF_SIGPENDING for notification too?
176 * Mark %current freezable and enter refrigerator if necessary.
178 bool __set_freezable(bool with_signal
)
183 * Modify flags while holding freezer_lock. This ensures the
184 * freezer notices that we aren't frozen yet or the freezing
185 * condition is visible to try_to_freeze() below.
187 spin_lock_irq(&freezer_lock
);
188 current
->flags
&= ~PF_NOFREEZE
;
190 current
->flags
&= ~PF_FREEZER_NOSIG
;
191 spin_unlock_irq(&freezer_lock
);
193 return try_to_freeze();
195 EXPORT_SYMBOL(__set_freezable
);