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/module.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>
32 struct cgroup_subsys_state css
;
33 enum freezer_state state
;
34 spinlock_t lock
; /* protects _writes_ to state */
37 static inline struct freezer
*cgroup_freezer(
38 struct cgroup
*cgroup
)
41 cgroup_subsys_state(cgroup
, freezer_subsys_id
),
45 static inline struct freezer
*task_freezer(struct task_struct
*task
)
47 return container_of(task_subsys_state(task
, freezer_subsys_id
),
51 static inline int __cgroup_freezing_or_frozen(struct task_struct
*task
)
53 enum freezer_state state
= task_freezer(task
)->state
;
54 return (state
== CGROUP_FREEZING
) || (state
== CGROUP_FROZEN
);
57 int cgroup_freezing_or_frozen(struct task_struct
*task
)
61 result
= __cgroup_freezing_or_frozen(task
);
67 * cgroups_write_string() limits the size of freezer state strings to
68 * CGROUP_LOCAL_BUFFER_SIZE
70 static const char *freezer_state_strs
[] = {
78 * Transitions are caused by userspace writes to the freezer.state file.
79 * The values in parenthesis are state labels. The rest are edge labels.
81 * (THAWED) --FROZEN--> (FREEZING) --FROZEN--> (FROZEN)
83 * | \_______THAWED_______/ |
84 * \__________________________THAWED____________/
87 struct cgroup_subsys freezer_subsys
;
89 /* Locks taken and their ordering
90 * ------------------------------
91 * cgroup_mutex (AKA cgroup_lock)
94 * task->alloc_lock (AKA task_lock)
95 * task->sighand->siglock
97 * cgroup code forces css_set_lock to be taken before task->alloc_lock
99 * freezer_create(), freezer_destroy():
100 * cgroup_mutex [ by cgroup core ]
102 * freezer_can_attach():
103 * cgroup_mutex (held by caller of can_attach)
105 * cgroup_freezing_or_frozen():
106 * task->alloc_lock (to get task's cgroup)
108 * freezer_fork() (preserving fork() performance means can't take cgroup_mutex):
110 * sighand->siglock (if the cgroup is freezing)
115 * write_lock css_set_lock (cgroup iterator start)
117 * read_lock css_set_lock (cgroup iterator start)
119 * freezer_write() (freeze):
122 * write_lock css_set_lock (cgroup iterator start)
124 * read_lock css_set_lock (cgroup iterator start)
125 * sighand->siglock (fake signal delivery inside freeze_task())
127 * freezer_write() (unfreeze):
130 * write_lock css_set_lock (cgroup iterator start)
132 * read_lock css_set_lock (cgroup iterator start)
133 * task->alloc_lock (inside thaw_process(), prevents race with refrigerator())
136 static struct cgroup_subsys_state
*freezer_create(struct cgroup_subsys
*ss
,
137 struct cgroup
*cgroup
)
139 struct freezer
*freezer
;
141 freezer
= kzalloc(sizeof(struct freezer
), GFP_KERNEL
);
143 return ERR_PTR(-ENOMEM
);
145 spin_lock_init(&freezer
->lock
);
146 freezer
->state
= CGROUP_THAWED
;
147 return &freezer
->css
;
150 static void freezer_destroy(struct cgroup_subsys
*ss
,
151 struct cgroup
*cgroup
)
153 kfree(cgroup_freezer(cgroup
));
157 * The call to cgroup_lock() in the freezer.state write method prevents
158 * a write to that file racing against an attach, and hence the
159 * can_attach() result will remain valid until the attach completes.
161 static int freezer_can_attach(struct cgroup_subsys
*ss
,
162 struct cgroup
*new_cgroup
,
163 struct task_struct
*task
)
165 struct freezer
*freezer
;
168 * Anything frozen can't move or be moved to/from.
171 freezer
= cgroup_freezer(new_cgroup
);
172 if (freezer
->state
!= CGROUP_THAWED
)
178 static int freezer_can_attach_task(struct cgroup
*cgrp
, struct task_struct
*tsk
)
181 if (__cgroup_freezing_or_frozen(tsk
)) {
189 static void freezer_fork(struct cgroup_subsys
*ss
, struct task_struct
*task
)
191 struct freezer
*freezer
;
194 * No lock is needed, since the task isn't on tasklist yet,
195 * so it can't be moved to another cgroup, which means the
196 * freezer won't be removed and will be valid during this
197 * function call. Nevertheless, apply RCU read-side critical
198 * section to suppress RCU lockdep false positives.
201 freezer
= task_freezer(task
);
205 * The root cgroup is non-freezable, so we can skip the
208 if (!freezer
->css
.cgroup
->parent
)
211 spin_lock_irq(&freezer
->lock
);
212 BUG_ON(freezer
->state
== CGROUP_FROZEN
);
214 /* Locking avoids race with FREEZING -> THAWED transitions. */
215 if (freezer
->state
== CGROUP_FREEZING
)
216 freeze_task(task
, true);
217 spin_unlock_irq(&freezer
->lock
);
221 * caller must hold freezer->lock
223 static void update_if_frozen(struct cgroup
*cgroup
,
224 struct freezer
*freezer
)
226 struct cgroup_iter it
;
227 struct task_struct
*task
;
228 unsigned int nfrozen
= 0, ntotal
= 0;
229 enum freezer_state old_state
= freezer
->state
;
231 cgroup_iter_start(cgroup
, &it
);
232 while ((task
= cgroup_iter_next(cgroup
, &it
))) {
238 if (old_state
== CGROUP_THAWED
) {
240 } else if (old_state
== CGROUP_FREEZING
) {
241 if (nfrozen
== ntotal
)
242 freezer
->state
= CGROUP_FROZEN
;
243 } else { /* old_state == CGROUP_FROZEN */
244 BUG_ON(nfrozen
!= ntotal
);
247 cgroup_iter_end(cgroup
, &it
);
250 static int freezer_read(struct cgroup
*cgroup
, struct cftype
*cft
,
253 struct freezer
*freezer
;
254 enum freezer_state state
;
256 if (!cgroup_lock_live_group(cgroup
))
259 freezer
= cgroup_freezer(cgroup
);
260 spin_lock_irq(&freezer
->lock
);
261 state
= freezer
->state
;
262 if (state
== CGROUP_FREEZING
) {
263 /* We change from FREEZING to FROZEN lazily if the cgroup was
264 * only partially frozen when we exitted write. */
265 update_if_frozen(cgroup
, freezer
);
266 state
= freezer
->state
;
268 spin_unlock_irq(&freezer
->lock
);
271 seq_puts(m
, freezer_state_strs
[state
]);
276 static int try_to_freeze_cgroup(struct cgroup
*cgroup
, struct freezer
*freezer
)
278 struct cgroup_iter it
;
279 struct task_struct
*task
;
280 unsigned int num_cant_freeze_now
= 0;
282 freezer
->state
= CGROUP_FREEZING
;
283 cgroup_iter_start(cgroup
, &it
);
284 while ((task
= cgroup_iter_next(cgroup
, &it
))) {
285 if (!freeze_task(task
, true))
289 if (!freezing(task
) && !freezer_should_skip(task
))
290 num_cant_freeze_now
++;
292 cgroup_iter_end(cgroup
, &it
);
294 return num_cant_freeze_now
? -EBUSY
: 0;
297 static void unfreeze_cgroup(struct cgroup
*cgroup
, struct freezer
*freezer
)
299 struct cgroup_iter it
;
300 struct task_struct
*task
;
302 cgroup_iter_start(cgroup
, &it
);
303 while ((task
= cgroup_iter_next(cgroup
, &it
))) {
306 cgroup_iter_end(cgroup
, &it
);
308 freezer
->state
= CGROUP_THAWED
;
311 static int freezer_change_state(struct cgroup
*cgroup
,
312 enum freezer_state goal_state
)
314 struct freezer
*freezer
;
317 freezer
= cgroup_freezer(cgroup
);
319 spin_lock_irq(&freezer
->lock
);
321 update_if_frozen(cgroup
, freezer
);
322 if (goal_state
== freezer
->state
)
325 switch (goal_state
) {
327 unfreeze_cgroup(cgroup
, freezer
);
330 retval
= try_to_freeze_cgroup(cgroup
, freezer
);
336 spin_unlock_irq(&freezer
->lock
);
341 static int freezer_write(struct cgroup
*cgroup
,
346 enum freezer_state goal_state
;
348 if (strcmp(buffer
, freezer_state_strs
[CGROUP_THAWED
]) == 0)
349 goal_state
= CGROUP_THAWED
;
350 else if (strcmp(buffer
, freezer_state_strs
[CGROUP_FROZEN
]) == 0)
351 goal_state
= CGROUP_FROZEN
;
355 if (!cgroup_lock_live_group(cgroup
))
357 retval
= freezer_change_state(cgroup
, goal_state
);
362 static struct cftype files
[] = {
365 .read_seq_string
= freezer_read
,
366 .write_string
= freezer_write
,
370 static int freezer_populate(struct cgroup_subsys
*ss
, struct cgroup
*cgroup
)
374 return cgroup_add_files(cgroup
, ss
, files
, ARRAY_SIZE(files
));
377 struct cgroup_subsys freezer_subsys
= {
379 .create
= freezer_create
,
380 .destroy
= freezer_destroy
,
381 .populate
= freezer_populate
,
382 .subsys_id
= freezer_subsys_id
,
383 .can_attach
= freezer_can_attach
,
384 .can_attach_task
= freezer_can_attach_task
,
388 .fork
= freezer_fork
,