cgroup_freezer.c 9.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * cgroup_freezer.c -  control group freezer subsystem
 *
 * Copyright IBM Corporation, 2007
 *
 * Author : Cedric Le Goater <clg@fr.ibm.com>
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of version 2.1 of the GNU Lesser General Public License
 * as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it would be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 */

17
#include <linux/export.h>
18
#include <linux/slab.h>
19 20 21 22 23 24 25
#include <linux/cgroup.h>
#include <linux/fs.h>
#include <linux/uaccess.h>
#include <linux/freezer.h>
#include <linux/seq_file.h>

enum freezer_state {
26 27 28
	CGROUP_THAWED = 0,
	CGROUP_FREEZING,
	CGROUP_FROZEN,
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
};

struct freezer {
	struct cgroup_subsys_state css;
	enum freezer_state state;
	spinlock_t lock; /* protects _writes_ to state */
};

static inline struct freezer *cgroup_freezer(
		struct cgroup *cgroup)
{
	return container_of(
		cgroup_subsys_state(cgroup, freezer_subsys_id),
		struct freezer, css);
}

static inline struct freezer *task_freezer(struct task_struct *task)
{
	return container_of(task_subsys_state(task, freezer_subsys_id),
			    struct freezer, css);
}

51
bool cgroup_freezing(struct task_struct *task)
52
{
53 54
	enum freezer_state state;
	bool ret;
55

56 57 58 59 60 61
	rcu_read_lock();
	state = task_freezer(task)->state;
	ret = state == CGROUP_FREEZING || state == CGROUP_FROZEN;
	rcu_read_unlock();

	return ret;
62 63 64 65 66 67 68
}

/*
 * cgroups_write_string() limits the size of freezer state strings to
 * CGROUP_LOCAL_BUFFER_SIZE
 */
static const char *freezer_state_strs[] = {
69
	"THAWED",
70 71 72 73 74 75 76 77 78
	"FREEZING",
	"FROZEN",
};

/*
 * State diagram
 * Transitions are caused by userspace writes to the freezer.state file.
 * The values in parenthesis are state labels. The rest are edge labels.
 *
79 80 81 82
 * (THAWED) --FROZEN--> (FREEZING) --FROZEN--> (FROZEN)
 *    ^ ^                    |                     |
 *    | \_______THAWED_______/                     |
 *    \__________________________THAWED____________/
83 84 85 86 87 88 89 90
 */

struct cgroup_subsys freezer_subsys;

/* Locks taken and their ordering
 * ------------------------------
 * cgroup_mutex (AKA cgroup_lock)
 * freezer->lock
91 92
 * css_set_lock
 * task->alloc_lock (AKA task_lock)
93 94 95 96 97 98 99
 * task->sighand->siglock
 *
 * cgroup code forces css_set_lock to be taken before task->alloc_lock
 *
 * freezer_create(), freezer_destroy():
 * cgroup_mutex [ by cgroup core ]
 *
100 101
 * freezer_can_attach():
 * cgroup_mutex (held by caller of can_attach)
102 103 104 105 106 107 108 109
 *
 * freezer_fork() (preserving fork() performance means can't take cgroup_mutex):
 * freezer->lock
 *  sighand->siglock (if the cgroup is freezing)
 *
 * freezer_read():
 * cgroup_mutex
 *  freezer->lock
110 111
 *   write_lock css_set_lock (cgroup iterator start)
 *    task->alloc_lock
112 113 114 115 116
 *   read_lock css_set_lock (cgroup iterator start)
 *
 * freezer_write() (freeze):
 * cgroup_mutex
 *  freezer->lock
117 118
 *   write_lock css_set_lock (cgroup iterator start)
 *    task->alloc_lock
119
 *   read_lock css_set_lock (cgroup iterator start)
120
 *    sighand->siglock (fake signal delivery inside freeze_task())
121 122 123 124
 *
 * freezer_write() (unfreeze):
 * cgroup_mutex
 *  freezer->lock
125 126
 *   write_lock css_set_lock (cgroup iterator start)
 *    task->alloc_lock
127
 *   read_lock css_set_lock (cgroup iterator start)
128
 *    task->alloc_lock (inside __thaw_task(), prevents race with refrigerator())
129 130
 *     sighand->siglock
 */
131
static struct cgroup_subsys_state *freezer_create(struct cgroup *cgroup)
132 133 134 135 136 137 138 139
{
	struct freezer *freezer;

	freezer = kzalloc(sizeof(struct freezer), GFP_KERNEL);
	if (!freezer)
		return ERR_PTR(-ENOMEM);

	spin_lock_init(&freezer->lock);
140
	freezer->state = CGROUP_THAWED;
141 142 143
	return &freezer->css;
}

144
static void freezer_destroy(struct cgroup *cgroup)
145
{
146 147 148 149 150
	struct freezer *freezer = cgroup_freezer(cgroup);

	if (freezer->state != CGROUP_THAWED)
		atomic_dec(&system_freezing_cnt);
	kfree(freezer);
151 152
}

153 154 155 156 157 158 159
/* task is frozen or will freeze immediately when next it gets woken */
static bool is_task_frozen_enough(struct task_struct *task)
{
	return frozen(task) ||
		(task_is_stopped_or_traced(task) && freezing(task));
}

160 161 162 163 164
/*
 * The call to cgroup_lock() in the freezer.state write method prevents
 * a write to that file racing against an attach, and hence the
 * can_attach() result will remain valid until the attach completes.
 */
165
static int freezer_can_attach(struct cgroup *new_cgroup,
166
			      struct cgroup_taskset *tset)
167 168
{
	struct freezer *freezer;
169
	struct task_struct *task;
170

171 172 173
	/*
	 * Anything frozen can't move or be moved to/from.
	 */
174 175 176
	cgroup_taskset_for_each(task, new_cgroup, tset)
		if (cgroup_freezing(task))
			return -EBUSY;
177

178 179
	freezer = cgroup_freezer(new_cgroup);
	if (freezer->state != CGROUP_THAWED)
180
		return -EBUSY;
181

182 183 184
	return 0;
}

185
static void freezer_fork(struct task_struct *task)
186 187 188
{
	struct freezer *freezer;

189
	rcu_read_lock();
190 191
	freezer = task_freezer(task);

192 193 194 195 196
	/*
	 * The root cgroup is non-freezable, so we can skip the
	 * following check.
	 */
	if (!freezer->css.cgroup->parent)
197
		goto out;
198

199
	spin_lock_irq(&freezer->lock);
200 201
	BUG_ON(freezer->state == CGROUP_FROZEN);

202 203
	/* Locking avoids race with FREEZING -> THAWED transitions. */
	if (freezer->state == CGROUP_FREEZING)
204
		freeze_task(task);
205

206
	spin_unlock_irq(&freezer->lock);
207 208
out:
	rcu_read_unlock();
209 210 211 212 213
}

/*
 * caller must hold freezer->lock
 */
214
static void update_if_frozen(struct cgroup *cgroup,
215
				 struct freezer *freezer)
216 217 218 219
{
	struct cgroup_iter it;
	struct task_struct *task;
	unsigned int nfrozen = 0, ntotal = 0;
220
	enum freezer_state old_state = freezer->state;
221 222 223 224

	cgroup_iter_start(cgroup, &it);
	while ((task = cgroup_iter_next(cgroup, &it))) {
		ntotal++;
225
		if (freezing(task) && is_task_frozen_enough(task))
226 227 228
			nfrozen++;
	}

229 230 231 232 233 234 235 236 237
	if (old_state == CGROUP_THAWED) {
		BUG_ON(nfrozen > 0);
	} else if (old_state == CGROUP_FREEZING) {
		if (nfrozen == ntotal)
			freezer->state = CGROUP_FROZEN;
	} else { /* old_state == CGROUP_FROZEN */
		BUG_ON(nfrozen != ntotal);
	}

238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
	cgroup_iter_end(cgroup, &it);
}

static int freezer_read(struct cgroup *cgroup, struct cftype *cft,
			struct seq_file *m)
{
	struct freezer *freezer;
	enum freezer_state state;

	if (!cgroup_lock_live_group(cgroup))
		return -ENODEV;

	freezer = cgroup_freezer(cgroup);
	spin_lock_irq(&freezer->lock);
	state = freezer->state;
253
	if (state == CGROUP_FREEZING) {
254 255
		/* We change from FREEZING to FROZEN lazily if the cgroup was
		 * only partially frozen when we exitted write. */
256
		update_if_frozen(cgroup, freezer);
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
		state = freezer->state;
	}
	spin_unlock_irq(&freezer->lock);
	cgroup_unlock();

	seq_puts(m, freezer_state_strs[state]);
	seq_putc(m, '\n');
	return 0;
}

static int try_to_freeze_cgroup(struct cgroup *cgroup, struct freezer *freezer)
{
	struct cgroup_iter it;
	struct task_struct *task;
	unsigned int num_cant_freeze_now = 0;

	cgroup_iter_start(cgroup, &it);
	while ((task = cgroup_iter_next(cgroup, &it))) {
275
		if (!freeze_task(task))
276
			continue;
277
		if (is_task_frozen_enough(task))
278 279 280 281 282 283 284 285 286
			continue;
		if (!freezing(task) && !freezer_should_skip(task))
			num_cant_freeze_now++;
	}
	cgroup_iter_end(cgroup, &it);

	return num_cant_freeze_now ? -EBUSY : 0;
}

287
static void unfreeze_cgroup(struct cgroup *cgroup, struct freezer *freezer)
288 289 290 291 292
{
	struct cgroup_iter it;
	struct task_struct *task;

	cgroup_iter_start(cgroup, &it);
293 294
	while ((task = cgroup_iter_next(cgroup, &it)))
		__thaw_task(task);
295 296 297 298 299 300 301 302 303 304
	cgroup_iter_end(cgroup, &it);
}

static int freezer_change_state(struct cgroup *cgroup,
				enum freezer_state goal_state)
{
	struct freezer *freezer;
	int retval = 0;

	freezer = cgroup_freezer(cgroup);
305

306
	spin_lock_irq(&freezer->lock);
307

308
	update_if_frozen(cgroup, freezer);
309 310

	switch (goal_state) {
311
	case CGROUP_THAWED:
312 313
		if (freezer->state != CGROUP_THAWED)
			atomic_dec(&system_freezing_cnt);
314
		freezer->state = CGROUP_THAWED;
315
		unfreeze_cgroup(cgroup, freezer);
316
		break;
317
	case CGROUP_FROZEN:
318 319
		if (freezer->state == CGROUP_THAWED)
			atomic_inc(&system_freezing_cnt);
320
		freezer->state = CGROUP_FREEZING;
321
		retval = try_to_freeze_cgroup(cgroup, freezer);
322 323
		break;
	default:
324
		BUG();
325
	}
326

327 328 329 330 331 332 333 334 335 336 337 338
	spin_unlock_irq(&freezer->lock);

	return retval;
}

static int freezer_write(struct cgroup *cgroup,
			 struct cftype *cft,
			 const char *buffer)
{
	int retval;
	enum freezer_state goal_state;

339 340 341 342
	if (strcmp(buffer, freezer_state_strs[CGROUP_THAWED]) == 0)
		goal_state = CGROUP_THAWED;
	else if (strcmp(buffer, freezer_state_strs[CGROUP_FROZEN]) == 0)
		goal_state = CGROUP_FROZEN;
343
	else
344
		return -EINVAL;
345 346 347 348 349 350 351 352 353 354 355

	if (!cgroup_lock_live_group(cgroup))
		return -ENODEV;
	retval = freezer_change_state(cgroup, goal_state);
	cgroup_unlock();
	return retval;
}

static struct cftype files[] = {
	{
		.name = "state",
356
		.flags = CFTYPE_NOT_ON_ROOT,
357 358 359
		.read_seq_string = freezer_read,
		.write_string = freezer_write,
	},
360
	{ }	/* terminate */
361 362 363 364 365 366 367 368 369
};

struct cgroup_subsys freezer_subsys = {
	.name		= "freezer",
	.create		= freezer_create,
	.destroy	= freezer_destroy,
	.subsys_id	= freezer_subsys_id,
	.can_attach	= freezer_can_attach,
	.fork		= freezer_fork,
370
	.base_cftypes	= files,
371 372 373 374 375 376 377 378

	/*
	 * freezer subsys doesn't handle hierarchy at all.  Frozen state
	 * should be inherited through the hierarchy - if a parent is
	 * frozen, all its children should be frozen.  Fix it and remove
	 * the following.
	 */
	.broken_hierarchy = true,
379
};