blob: c0738424bb43331bc96c787da8f3ec3d678053d8 [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Matt Helsley8174f152008-10-18 20:27:19 -07002/*
3 * kernel/freezer.c - Function to freeze a process
4 *
5 * Originally from kernel/power/process.c
6 */
7
8#include <linux/interrupt.h>
9#include <linux/suspend.h>
Paul Gortmaker9984de12011-05-23 14:51:41 -040010#include <linux/export.h>
Matt Helsley8174f152008-10-18 20:27:19 -070011#include <linux/syscalls.h>
12#include <linux/freezer.h>
Tejun Heo8a32c442011-11-21 12:32:23 -080013#include <linux/kthread.h>
Matt Helsley8174f152008-10-18 20:27:19 -070014
Tejun Heoa3201222011-11-21 12:32:25 -080015/* total number of freezing conditions in effect */
16atomic_t system_freezing_cnt = ATOMIC_INIT(0);
17EXPORT_SYMBOL(system_freezing_cnt);
18
Pingfan Liu55f25032018-07-31 16:51:32 +080019/* indicate whether PM freezing is in effect, protected by
20 * system_transition_mutex
21 */
Tejun Heoa3201222011-11-21 12:32:25 -080022bool pm_freezing;
23bool pm_nosig_freezing;
24
Tejun Heo85fbd722013-12-18 07:07:32 -050025/*
26 * Temporary export for the deadlock workaround in ata_scsi_hotplug().
27 * Remove once the hack becomes unnecessary.
28 */
29EXPORT_SYMBOL_GPL(pm_freezing);
30
Tejun Heo0c9af092011-11-21 12:32:24 -080031/* protects freezing and frozen transitions */
32static DEFINE_SPINLOCK(freezer_lock);
Matt Helsley8174f152008-10-18 20:27:19 -070033
Tejun Heoa3201222011-11-21 12:32:25 -080034/**
35 * freezing_slow_path - slow path for testing whether a task needs to be frozen
36 * @p: task to be tested
37 *
38 * This function is called by freezing() if system_freezing_cnt isn't zero
39 * and tests whether @p needs to enter and stay in frozen state. Can be
40 * called under any context. The freezers are responsible for ensuring the
41 * target tasks see the updated state.
42 */
43bool freezing_slow_path(struct task_struct *p)
44{
Colin Cross2b44c4d2013-07-24 17:41:33 -070045 if (p->flags & (PF_NOFREEZE | PF_SUSPEND_TASK))
Tejun Heoa3201222011-11-21 12:32:25 -080046 return false;
47
Michal Hockoa34c80a2016-07-28 15:45:16 -070048 if (test_tsk_thread_flag(p, TIF_MEMDIE))
Cong Wang51fae6da2014-10-21 09:27:12 +020049 return false;
50
Tejun Heoa3201222011-11-21 12:32:25 -080051 if (pm_nosig_freezing || cgroup_freezing(p))
52 return true;
53
Tejun Heo34b087e2011-11-23 09:28:17 -080054 if (pm_freezing && !(p->flags & PF_KTHREAD))
Tejun Heoa3201222011-11-21 12:32:25 -080055 return true;
56
57 return false;
58}
59EXPORT_SYMBOL(freezing_slow_path);
60
Matt Helsley8174f152008-10-18 20:27:19 -070061/* Refrigerator is place where frozen processes are stored :-). */
Tejun Heo8a32c442011-11-21 12:32:23 -080062bool __refrigerator(bool check_kthr_stop)
Matt Helsley8174f152008-10-18 20:27:19 -070063{
64 /* Hmm, should we be allowed to suspend when there are realtime
65 processes around? */
Tejun Heoa0acae02011-11-21 12:32:22 -080066 bool was_frozen = false;
Tejun Heo5ece3ea2011-11-21 12:32:26 -080067 long save = current->state;
Matt Helsley8174f152008-10-18 20:27:19 -070068
Matt Helsley8174f152008-10-18 20:27:19 -070069 pr_debug("%s entered refrigerator\n", current->comm);
70
Matt Helsley8174f152008-10-18 20:27:19 -070071 for (;;) {
72 set_current_state(TASK_UNINTERRUPTIBLE);
Tejun Heo5ece3ea2011-11-21 12:32:26 -080073
74 spin_lock_irq(&freezer_lock);
75 current->flags |= PF_FROZEN;
Tejun Heo69074832011-11-21 12:32:24 -080076 if (!freezing(current) ||
Tejun Heo8a32c442011-11-21 12:32:23 -080077 (check_kthr_stop && kthread_should_stop()))
Tejun Heo5ece3ea2011-11-21 12:32:26 -080078 current->flags &= ~PF_FROZEN;
79 spin_unlock_irq(&freezer_lock);
80
81 if (!(current->flags & PF_FROZEN))
Matt Helsley8174f152008-10-18 20:27:19 -070082 break;
Tejun Heoa0acae02011-11-21 12:32:22 -080083 was_frozen = true;
Matt Helsley8174f152008-10-18 20:27:19 -070084 schedule();
85 }
Thomas Gleixner6301cb92009-07-17 14:15:47 +020086
Matt Helsley8174f152008-10-18 20:27:19 -070087 pr_debug("%s left refrigerator\n", current->comm);
Tejun Heo50fb4f7f2011-11-21 12:32:22 -080088
89 /*
90 * Restore saved task state before returning. The mb'd version
91 * needs to be used; otherwise, it might silently break
92 * synchronization which depends on ordered task state change.
93 */
94 set_current_state(save);
Tejun Heoa0acae02011-11-21 12:32:22 -080095
96 return was_frozen;
Matt Helsley8174f152008-10-18 20:27:19 -070097}
Tejun Heoa0acae02011-11-21 12:32:22 -080098EXPORT_SYMBOL(__refrigerator);
Matt Helsley8174f152008-10-18 20:27:19 -070099
100static void fake_signal_wake_up(struct task_struct *p)
101{
102 unsigned long flags;
103
Tejun Heo37ad8ac2011-11-21 12:32:26 -0800104 if (lock_task_sighand(p, &flags)) {
105 signal_wake_up(p, 0);
106 unlock_task_sighand(p, &flags);
107 }
Matt Helsley8174f152008-10-18 20:27:19 -0700108}
109
110/**
Tejun Heo839e3402011-11-21 12:32:26 -0800111 * freeze_task - send a freeze request to given task
112 * @p: task to send the request to
Matt Helsley8174f152008-10-18 20:27:19 -0700113 *
Marcos Paulo de Souza37f08be2012-02-21 23:57:47 +0100114 * If @p is freezing, the freeze request is sent either by sending a fake
115 * signal (if it's not a kernel thread) or waking it up (if it's a kernel
116 * thread).
Tejun Heo839e3402011-11-21 12:32:26 -0800117 *
118 * RETURNS:
119 * %false, if @p is not freezing or already frozen; %true, otherwise
Matt Helsley8174f152008-10-18 20:27:19 -0700120 */
Tejun Heo839e3402011-11-21 12:32:26 -0800121bool freeze_task(struct task_struct *p)
Matt Helsley8174f152008-10-18 20:27:19 -0700122{
Tejun Heo0c9af092011-11-21 12:32:24 -0800123 unsigned long flags;
Matt Helsley8174f152008-10-18 20:27:19 -0700124
Colin Cross613f5d12013-05-06 23:50:11 +0000125 /*
126 * This check can race with freezer_do_not_count, but worst case that
127 * will result in an extra wakeup being sent to the task. It does not
128 * race with freezer_count(), the barriers in freezer_count() and
129 * freezer_should_skip() ensure that either freezer_count() sees
130 * freezing == true in try_to_freeze() and freezes, or
131 * freezer_should_skip() sees !PF_FREEZE_SKIP and freezes the task
132 * normally.
133 */
134 if (freezer_should_skip(p))
135 return false;
136
Tejun Heo0c9af092011-11-21 12:32:24 -0800137 spin_lock_irqsave(&freezer_lock, flags);
Tejun Heoa3201222011-11-21 12:32:25 -0800138 if (!freezing(p) || frozen(p)) {
139 spin_unlock_irqrestore(&freezer_lock, flags);
140 return false;
141 }
Matt Helsley8174f152008-10-18 20:27:19 -0700142
Oleg Nesterov5d8f72b2012-10-26 19:46:06 +0200143 if (!(p->flags & PF_KTHREAD))
Tejun Heo8cfe4002010-11-26 23:07:27 +0100144 fake_signal_wake_up(p);
Oleg Nesterov5d8f72b2012-10-26 19:46:06 +0200145 else
Matt Helsley8174f152008-10-18 20:27:19 -0700146 wake_up_state(p, TASK_INTERRUPTIBLE);
Tejun Heoa3201222011-11-21 12:32:25 -0800147
Tejun Heo0c9af092011-11-21 12:32:24 -0800148 spin_unlock_irqrestore(&freezer_lock, flags);
Tejun Heoa3201222011-11-21 12:32:25 -0800149 return true;
Matt Helsley8174f152008-10-18 20:27:19 -0700150}
151
Tejun Heoa5be2d02011-11-21 12:32:23 -0800152void __thaw_task(struct task_struct *p)
Matt Helsleydc52ddc2008-10-18 20:27:21 -0700153{
Tejun Heo0c9af092011-11-21 12:32:24 -0800154 unsigned long flags;
Tejun Heoa5be2d02011-11-21 12:32:23 -0800155
Tejun Heo0c9af092011-11-21 12:32:24 -0800156 spin_lock_irqsave(&freezer_lock, flags);
Tejun Heo34b087e2011-11-23 09:28:17 -0800157 if (frozen(p))
Tejun Heoa5be2d02011-11-21 12:32:23 -0800158 wake_up_process(p);
Tejun Heo0c9af092011-11-21 12:32:24 -0800159 spin_unlock_irqrestore(&freezer_lock, flags);
Matt Helsleydc52ddc2008-10-18 20:27:21 -0700160}
Tejun Heo96ee6d82011-11-21 12:32:25 -0800161
162/**
Tejun Heo34b087e2011-11-23 09:28:17 -0800163 * set_freezable - make %current freezable
Tejun Heo96ee6d82011-11-21 12:32:25 -0800164 *
165 * Mark %current freezable and enter refrigerator if necessary.
166 */
Tejun Heo34b087e2011-11-23 09:28:17 -0800167bool set_freezable(void)
Tejun Heo96ee6d82011-11-21 12:32:25 -0800168{
169 might_sleep();
170
171 /*
172 * Modify flags while holding freezer_lock. This ensures the
173 * freezer notices that we aren't frozen yet or the freezing
174 * condition is visible to try_to_freeze() below.
175 */
176 spin_lock_irq(&freezer_lock);
177 current->flags &= ~PF_NOFREEZE;
Tejun Heo96ee6d82011-11-21 12:32:25 -0800178 spin_unlock_irq(&freezer_lock);
179
180 return try_to_freeze();
181}
Tejun Heo34b087e2011-11-23 09:28:17 -0800182EXPORT_SYMBOL(set_freezable);