2 * cgroup_freezer.c - control group freezer subsystem
4 * Copyright IBM Corporation, 2007
6 * Author : Cedric Le Goater <clg@fr.ibm.com>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of version 2.1 of the GNU Lesser General Public License
10 * as published by the Free Software Foundation.
12 * This program is distributed in the hope that it would be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17 #include <linux/export.h>
18 #include <linux/slab.h>
19 #include <linux/cgroup.h>
21 #include <linux/uaccess.h>
22 #include <linux/freezer.h>
23 #include <linux/seq_file.h>
24 #include <linux/mutex.h>
25 #include <linux/cpu.h>
28 * A cgroup is freezing if any FREEZING flags are set. FREEZING_SELF is
29 * set if "FROZEN" is written to freezer.state cgroupfs file, and cleared
30 * for "THAWED". FREEZING_PARENT is set if the parent freezer is FREEZING
31 * for whatever reason. IOW, a cgroup has FREEZING_PARENT set if one of
32 * its ancestors has FREEZING_SELF set.
34 enum freezer_state_flags
{
35 CGROUP_FREEZER_ONLINE
= (1 << 0), /* freezer is fully online */
36 CGROUP_FREEZING_SELF
= (1 << 1), /* this freezer is freezing */
37 CGROUP_FREEZING_PARENT
= (1 << 2), /* the parent freezer is freezing */
38 CGROUP_FROZEN
= (1 << 3), /* this and its descendants frozen */
40 /* mask for all FREEZING flags */
41 CGROUP_FREEZING
= CGROUP_FREEZING_SELF
| CGROUP_FREEZING_PARENT
,
45 struct cgroup_subsys_state css
;
49 static DEFINE_MUTEX(freezer_mutex
);
51 static inline struct freezer
*css_freezer(struct cgroup_subsys_state
*css
)
53 return css
? container_of(css
, struct freezer
, css
) : NULL
;
56 static inline struct freezer
*task_freezer(struct task_struct
*task
)
58 return css_freezer(task_css(task
, freezer_cgrp_id
));
61 static struct freezer
*parent_freezer(struct freezer
*freezer
)
63 return css_freezer(freezer
->css
.parent
);
66 bool cgroup_freezing(struct task_struct
*task
)
72 /* Check if the cgroup is still FREEZING, but not FROZEN. The extra
73 * !FROZEN check is required, because the FREEZING bit is not cleared
74 * when the state FROZEN is reached.
76 state
= task_freezer(task
)->state
;
77 ret
= (state
& CGROUP_FREEZING
) && !(state
& CGROUP_FROZEN
);
83 static const char *freezer_state_strs(unsigned int state
)
85 if (state
& CGROUP_FROZEN
)
87 if (state
& CGROUP_FREEZING
)
92 static struct cgroup_subsys_state
*
93 freezer_css_alloc(struct cgroup_subsys_state
*parent_css
)
95 struct freezer
*freezer
;
97 freezer
= kzalloc(sizeof(struct freezer
), GFP_KERNEL
);
99 return ERR_PTR(-ENOMEM
);
101 return &freezer
->css
;
105 * freezer_css_online - commit creation of a freezer css
106 * @css: css being created
108 * We're committing to creation of @css. Mark it online and inherit
109 * parent's freezing state while holding cpus read lock and freezer_mutex.
111 static int freezer_css_online(struct cgroup_subsys_state
*css
)
113 struct freezer
*freezer
= css_freezer(css
);
114 struct freezer
*parent
= parent_freezer(freezer
);
117 mutex_lock(&freezer_mutex
);
119 freezer
->state
|= CGROUP_FREEZER_ONLINE
;
121 if (parent
&& (parent
->state
& CGROUP_FREEZING
)) {
122 freezer
->state
|= CGROUP_FREEZING_PARENT
| CGROUP_FROZEN
;
123 static_branch_inc_cpuslocked(&freezer_active
);
126 mutex_unlock(&freezer_mutex
);
132 * freezer_css_offline - initiate destruction of a freezer css
133 * @css: css being destroyed
135 * @css is going away. Mark it dead and decrement freezer_active if
136 * it was holding one.
138 static void freezer_css_offline(struct cgroup_subsys_state
*css
)
140 struct freezer
*freezer
= css_freezer(css
);
143 mutex_lock(&freezer_mutex
);
145 if (freezer
->state
& CGROUP_FREEZING
)
146 static_branch_dec_cpuslocked(&freezer_active
);
150 mutex_unlock(&freezer_mutex
);
154 static void freezer_css_free(struct cgroup_subsys_state
*css
)
156 kfree(css_freezer(css
));
160 * Tasks can be migrated into a different freezer anytime regardless of its
161 * current state. freezer_attach() is responsible for making new tasks
162 * conform to the current state.
164 * Freezer state changes and task migration are synchronized via
165 * @freezer->lock. freezer_attach() makes the new tasks conform to the
166 * current state and all following state changes can see the new tasks.
168 static void freezer_attach(struct cgroup_taskset
*tset
)
170 struct task_struct
*task
;
171 struct cgroup_subsys_state
*new_css
;
173 mutex_lock(&freezer_mutex
);
176 * Make the new tasks conform to the current state of @new_css.
177 * For simplicity, when migrating any task to a FROZEN cgroup, we
178 * revert it to FREEZING and let update_if_frozen() determine the
179 * correct state later.
181 * Tasks in @tset are on @new_css but may not conform to its
182 * current state before executing the following - !frozen tasks may
183 * be visible in a FROZEN cgroup and frozen tasks in a THAWED one.
185 cgroup_taskset_for_each(task
, new_css
, tset
) {
186 struct freezer
*freezer
= css_freezer(new_css
);
188 if (!(freezer
->state
& CGROUP_FREEZING
)) {
193 /* clear FROZEN and propagate upwards */
194 while (freezer
&& (freezer
->state
& CGROUP_FROZEN
)) {
195 freezer
->state
&= ~CGROUP_FROZEN
;
196 freezer
= parent_freezer(freezer
);
201 mutex_unlock(&freezer_mutex
);
205 * freezer_fork - cgroup post fork callback
206 * @task: a task which has just been forked
208 * @task has just been created and should conform to the current state of
209 * the cgroup_freezer it belongs to. This function may race against
210 * freezer_attach(). Losing to freezer_attach() means that we don't have
211 * to do anything as freezer_attach() will put @task into the appropriate
214 static void freezer_fork(struct task_struct
*task
)
216 struct freezer
*freezer
;
219 * The root cgroup is non-freezable, so we can skip locking the
220 * freezer. This is safe regardless of race with task migration.
221 * If we didn't race or won, skipping is obviously the right thing
222 * to do. If we lost and root is the new cgroup, noop is still the
225 if (task_css_is_root(task
, freezer_cgrp_id
))
228 mutex_lock(&freezer_mutex
);
231 freezer
= task_freezer(task
);
232 if (freezer
->state
& CGROUP_FREEZING
)
236 mutex_unlock(&freezer_mutex
);
240 * update_if_frozen - update whether a cgroup finished freezing
241 * @css: css of interest
243 * Once FREEZING is initiated, transition to FROZEN is lazily updated by
244 * calling this function. If the current state is FREEZING but not FROZEN,
245 * this function checks whether all tasks of this cgroup and the descendant
246 * cgroups finished freezing and, if so, sets FROZEN.
248 * The caller is responsible for grabbing RCU read lock and calling
249 * update_if_frozen() on all descendants prior to invoking this function.
251 * Task states and freezer state might disagree while tasks are being
252 * migrated into or out of @css, so we can't verify task states against
253 * @freezer state here. See freezer_attach() for details.
255 static void update_if_frozen(struct cgroup_subsys_state
*css
)
257 struct freezer
*freezer
= css_freezer(css
);
258 struct cgroup_subsys_state
*pos
;
259 struct css_task_iter it
;
260 struct task_struct
*task
;
262 lockdep_assert_held(&freezer_mutex
);
264 if (!(freezer
->state
& CGROUP_FREEZING
) ||
265 (freezer
->state
& CGROUP_FROZEN
))
268 /* are all (live) children frozen? */
270 css_for_each_child(pos
, css
) {
271 struct freezer
*child
= css_freezer(pos
);
273 if ((child
->state
& CGROUP_FREEZER_ONLINE
) &&
274 !(child
->state
& CGROUP_FROZEN
)) {
281 /* are all tasks frozen? */
282 css_task_iter_start(css
, 0, &it
);
284 while ((task
= css_task_iter_next(&it
))) {
285 if (freezing(task
) && !frozen(task
))
289 freezer
->state
|= CGROUP_FROZEN
;
291 css_task_iter_end(&it
);
294 static int freezer_read(struct seq_file
*m
, void *v
)
296 struct cgroup_subsys_state
*css
= seq_css(m
), *pos
;
298 mutex_lock(&freezer_mutex
);
301 /* update states bottom-up */
302 css_for_each_descendant_post(pos
, css
) {
303 if (!css_tryget_online(pos
))
307 update_if_frozen(pos
);
314 mutex_unlock(&freezer_mutex
);
316 seq_puts(m
, freezer_state_strs(css_freezer(css
)->state
));
321 static void freeze_cgroup(struct freezer
*freezer
)
323 struct css_task_iter it
;
324 struct task_struct
*task
;
326 css_task_iter_start(&freezer
->css
, 0, &it
);
327 while ((task
= css_task_iter_next(&it
)))
329 css_task_iter_end(&it
);
332 static void unfreeze_cgroup(struct freezer
*freezer
)
334 struct css_task_iter it
;
335 struct task_struct
*task
;
337 css_task_iter_start(&freezer
->css
, 0, &it
);
338 while ((task
= css_task_iter_next(&it
)))
340 css_task_iter_end(&it
);
344 * freezer_apply_state - apply state change to a single cgroup_freezer
345 * @freezer: freezer to apply state change to
346 * @freeze: whether to freeze or unfreeze
347 * @state: CGROUP_FREEZING_* flag to set or clear
349 * Set or clear @state on @cgroup according to @freeze, and perform
350 * freezing or thawing as necessary.
352 static void freezer_apply_state(struct freezer
*freezer
, bool freeze
,
355 /* also synchronizes against task migration, see freezer_attach() */
356 lockdep_assert_held(&freezer_mutex
);
358 if (!(freezer
->state
& CGROUP_FREEZER_ONLINE
))
362 if (!(freezer
->state
& CGROUP_FREEZING
))
363 static_branch_inc_cpuslocked(&freezer_active
);
364 freezer
->state
|= state
;
365 freeze_cgroup(freezer
);
367 bool was_freezing
= freezer
->state
& CGROUP_FREEZING
;
369 freezer
->state
&= ~state
;
371 if (!(freezer
->state
& CGROUP_FREEZING
)) {
372 freezer
->state
&= ~CGROUP_FROZEN
;
374 static_branch_dec_cpuslocked(&freezer_active
);
375 unfreeze_cgroup(freezer
);
381 * freezer_change_state - change the freezing state of a cgroup_freezer
382 * @freezer: freezer of interest
383 * @freeze: whether to freeze or thaw
385 * Freeze or thaw @freezer according to @freeze. The operations are
386 * recursive - all descendants of @freezer will be affected.
388 static void freezer_change_state(struct freezer
*freezer
, bool freeze
)
390 struct cgroup_subsys_state
*pos
;
394 * Update all its descendants in pre-order traversal. Each
395 * descendant will try to inherit its parent's FREEZING state as
396 * CGROUP_FREEZING_PARENT.
398 mutex_lock(&freezer_mutex
);
400 css_for_each_descendant_pre(pos
, &freezer
->css
) {
401 struct freezer
*pos_f
= css_freezer(pos
);
402 struct freezer
*parent
= parent_freezer(pos_f
);
404 if (!css_tryget_online(pos
))
408 if (pos_f
== freezer
)
409 freezer_apply_state(pos_f
, freeze
,
410 CGROUP_FREEZING_SELF
);
412 freezer_apply_state(pos_f
,
413 parent
->state
& CGROUP_FREEZING
,
414 CGROUP_FREEZING_PARENT
);
420 mutex_unlock(&freezer_mutex
);
424 static ssize_t
freezer_write(struct kernfs_open_file
*of
,
425 char *buf
, size_t nbytes
, loff_t off
)
431 if (strcmp(buf
, freezer_state_strs(0)) == 0)
433 else if (strcmp(buf
, freezer_state_strs(CGROUP_FROZEN
)) == 0)
438 freezer_change_state(css_freezer(of_css(of
)), freeze
);
442 static u64
freezer_self_freezing_read(struct cgroup_subsys_state
*css
,
445 struct freezer
*freezer
= css_freezer(css
);
447 return (bool)(freezer
->state
& CGROUP_FREEZING_SELF
);
450 static u64
freezer_parent_freezing_read(struct cgroup_subsys_state
*css
,
453 struct freezer
*freezer
= css_freezer(css
);
455 return (bool)(freezer
->state
& CGROUP_FREEZING_PARENT
);
458 static struct cftype files
[] = {
461 .flags
= CFTYPE_NOT_ON_ROOT
,
462 .seq_show
= freezer_read
,
463 .write
= freezer_write
,
466 .name
= "self_freezing",
467 .flags
= CFTYPE_NOT_ON_ROOT
,
468 .read_u64
= freezer_self_freezing_read
,
471 .name
= "parent_freezing",
472 .flags
= CFTYPE_NOT_ON_ROOT
,
473 .read_u64
= freezer_parent_freezing_read
,
478 struct cgroup_subsys freezer_cgrp_subsys
= {
479 .css_alloc
= freezer_css_alloc
,
480 .css_online
= freezer_css_online
,
481 .css_offline
= freezer_css_offline
,
482 .css_free
= freezer_css_free
,
483 .attach
= freezer_attach
,
484 .fork
= freezer_fork
,
485 .legacy_cftypes
= files
,