blob: 4d67a39c58a825c59c8847a82cc214c1894a8aa7 [file] [log] [blame]
Paul Menageddbcc7e2007-10-18 23:39:30 -07001/*
Paul Menageddbcc7e2007-10-18 23:39:30 -07002 * Generic process-grouping system.
3 *
4 * Based originally on the cpuset system, extracted by Paul Menage
5 * Copyright (C) 2006 Google, Inc
6 *
7 * Copyright notices from the original cpuset code:
8 * --------------------------------------------------
9 * Copyright (C) 2003 BULL SA.
10 * Copyright (C) 2004-2006 Silicon Graphics, Inc.
11 *
12 * Portions derived from Patrick Mochel's sysfs code.
13 * sysfs is Copyright (c) 2001-3 Patrick Mochel
14 *
15 * 2003-10-10 Written by Simon Derr.
16 * 2003-10-22 Updates by Stephen Hemminger.
17 * 2004 May-July Rework by Paul Jackson.
18 * ---------------------------------------------------
19 *
20 * This file is subject to the terms and conditions of the GNU General Public
21 * License. See the file COPYING in the main directory of the Linux
22 * distribution for more details.
23 */
24
25#include <linux/cgroup.h>
26#include <linux/errno.h>
27#include <linux/fs.h>
28#include <linux/kernel.h>
29#include <linux/list.h>
30#include <linux/mm.h>
31#include <linux/mutex.h>
32#include <linux/mount.h>
33#include <linux/pagemap.h>
Paul Menagea4243162007-10-18 23:39:35 -070034#include <linux/proc_fs.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070035#include <linux/rcupdate.h>
36#include <linux/sched.h>
Paul Menage817929e2007-10-18 23:39:36 -070037#include <linux/backing-dev.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070038#include <linux/seq_file.h>
39#include <linux/slab.h>
40#include <linux/magic.h>
41#include <linux/spinlock.h>
42#include <linux/string.h>
Paul Menagebbcb81d2007-10-18 23:39:32 -070043#include <linux/sort.h>
Paul Menage81a6a5c2007-10-18 23:39:38 -070044#include <linux/kmod.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070045#include <linux/delayacct.h>
46#include <linux/cgroupstats.h>
47
Paul Menageddbcc7e2007-10-18 23:39:30 -070048#include <asm/atomic.h>
49
Paul Menage81a6a5c2007-10-18 23:39:38 -070050static DEFINE_MUTEX(cgroup_mutex);
51
Paul Menageddbcc7e2007-10-18 23:39:30 -070052/* Generate an array of cgroup subsystem pointers */
53#define SUBSYS(_x) &_x ## _subsys,
54
55static struct cgroup_subsys *subsys[] = {
56#include <linux/cgroup_subsys.h>
57};
58
59/*
60 * A cgroupfs_root represents the root of a cgroup hierarchy,
61 * and may be associated with a superblock to form an active
62 * hierarchy
63 */
64struct cgroupfs_root {
65 struct super_block *sb;
66
67 /*
68 * The bitmask of subsystems intended to be attached to this
69 * hierarchy
70 */
71 unsigned long subsys_bits;
72
73 /* The bitmask of subsystems currently attached to this hierarchy */
74 unsigned long actual_subsys_bits;
75
76 /* A list running through the attached subsystems */
77 struct list_head subsys_list;
78
79 /* The root cgroup for this hierarchy */
80 struct cgroup top_cgroup;
81
82 /* Tracks how many cgroups are currently defined in hierarchy.*/
83 int number_of_cgroups;
84
85 /* A list running through the mounted hierarchies */
86 struct list_head root_list;
87
88 /* Hierarchy-specific flags */
89 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -070090
91 /* The path to use for release notifications. No locking
92 * between setting and use - so if userspace updates this
93 * while child cgroups exist, you could miss a
94 * notification. We ensure that it's always a valid
95 * NUL-terminated string */
96 char release_agent_path[PATH_MAX];
Paul Menageddbcc7e2007-10-18 23:39:30 -070097};
98
99
100/*
101 * The "rootnode" hierarchy is the "dummy hierarchy", reserved for the
102 * subsystems that are otherwise unattached - it never has more than a
103 * single cgroup, and all tasks are part of that cgroup.
104 */
105static struct cgroupfs_root rootnode;
106
107/* The list of hierarchy roots */
108
109static LIST_HEAD(roots);
Paul Menage817929e2007-10-18 23:39:36 -0700110static int root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700111
112/* dummytop is a shorthand for the dummy hierarchy's top cgroup */
113#define dummytop (&rootnode.top_cgroup)
114
115/* This flag indicates whether tasks in the fork and exit paths should
116 * take callback_mutex and check for fork/exit handlers to call. This
117 * avoids us having to do extra work in the fork/exit path if none of the
118 * subsystems need to be called.
119 */
120static int need_forkexit_callback;
121
122/* bits in struct cgroup flags field */
123enum {
Paul Menage81a6a5c2007-10-18 23:39:38 -0700124 /* Control Group is dead */
Paul Menagebd89aab2007-10-18 23:40:44 -0700125 CGRP_REMOVED,
Paul Menage81a6a5c2007-10-18 23:39:38 -0700126 /* Control Group has previously had a child cgroup or a task,
Paul Menagebd89aab2007-10-18 23:40:44 -0700127 * but no longer (only if CGRP_NOTIFY_ON_RELEASE is set) */
128 CGRP_RELEASABLE,
Paul Menage81a6a5c2007-10-18 23:39:38 -0700129 /* Control Group requires release notifications to userspace */
Paul Menagebd89aab2007-10-18 23:40:44 -0700130 CGRP_NOTIFY_ON_RELEASE,
Paul Menageddbcc7e2007-10-18 23:39:30 -0700131};
132
133/* convenient tests for these bits */
Paul Menagebd89aab2007-10-18 23:40:44 -0700134inline int cgroup_is_removed(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700135{
Paul Menagebd89aab2007-10-18 23:40:44 -0700136 return test_bit(CGRP_REMOVED, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700137}
138
139/* bits in struct cgroupfs_root flags field */
140enum {
141 ROOT_NOPREFIX, /* mounted subsystems have no named prefix */
142};
143
Adrian Bunke9685a02008-02-07 00:13:46 -0800144static int cgroup_is_releasable(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700145{
146 const int bits =
Paul Menagebd89aab2007-10-18 23:40:44 -0700147 (1 << CGRP_RELEASABLE) |
148 (1 << CGRP_NOTIFY_ON_RELEASE);
149 return (cgrp->flags & bits) == bits;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700150}
151
Adrian Bunke9685a02008-02-07 00:13:46 -0800152static int notify_on_release(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700153{
Paul Menagebd89aab2007-10-18 23:40:44 -0700154 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700155}
156
Paul Menageddbcc7e2007-10-18 23:39:30 -0700157/*
158 * for_each_subsys() allows you to iterate on each subsystem attached to
159 * an active hierarchy
160 */
161#define for_each_subsys(_root, _ss) \
162list_for_each_entry(_ss, &_root->subsys_list, sibling)
163
164/* for_each_root() allows you to iterate across the active hierarchies */
165#define for_each_root(_root) \
166list_for_each_entry(_root, &roots, root_list)
167
Paul Menage81a6a5c2007-10-18 23:39:38 -0700168/* the list of cgroups eligible for automatic release. Protected by
169 * release_list_lock */
170static LIST_HEAD(release_list);
171static DEFINE_SPINLOCK(release_list_lock);
172static void cgroup_release_agent(struct work_struct *work);
173static DECLARE_WORK(release_agent_work, cgroup_release_agent);
Paul Menagebd89aab2007-10-18 23:40:44 -0700174static void check_for_release(struct cgroup *cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700175
Paul Menage817929e2007-10-18 23:39:36 -0700176/* Link structure for associating css_set objects with cgroups */
177struct cg_cgroup_link {
178 /*
179 * List running through cg_cgroup_links associated with a
180 * cgroup, anchored on cgroup->css_sets
181 */
Paul Menagebd89aab2007-10-18 23:40:44 -0700182 struct list_head cgrp_link_list;
Paul Menage817929e2007-10-18 23:39:36 -0700183 /*
184 * List running through cg_cgroup_links pointing at a
185 * single css_set object, anchored on css_set->cg_links
186 */
187 struct list_head cg_link_list;
188 struct css_set *cg;
189};
190
191/* The default css_set - used by init and its children prior to any
192 * hierarchies being mounted. It contains a pointer to the root state
193 * for each subsystem. Also used to anchor the list of css_sets. Not
194 * reference-counted, to improve performance when child cgroups
195 * haven't been created.
196 */
197
198static struct css_set init_css_set;
199static struct cg_cgroup_link init_css_set_link;
200
201/* css_set_lock protects the list of css_set objects, and the
202 * chain of tasks off each css_set. Nests outside task->alloc_lock
203 * due to cgroup_iter_start() */
204static DEFINE_RWLOCK(css_set_lock);
205static int css_set_count;
206
207/* We don't maintain the lists running through each css_set to its
208 * task until after the first call to cgroup_iter_start(). This
209 * reduces the fork()/exit() overhead for people who have cgroups
210 * compiled into their kernel but not actually in use */
211static int use_task_css_set_links;
212
213/* When we create or destroy a css_set, the operation simply
214 * takes/releases a reference count on all the cgroups referenced
215 * by subsystems in this css_set. This can end up multiple-counting
216 * some cgroups, but that's OK - the ref-count is just a
217 * busy/not-busy indicator; ensuring that we only count each cgroup
218 * once would require taking a global lock to ensure that no
Paul Menageb4f48b62007-10-18 23:39:33 -0700219 * subsystems moved between hierarchies while we were doing so.
220 *
221 * Possible TODO: decide at boot time based on the number of
222 * registered subsystems and the number of CPUs or NUMA nodes whether
223 * it's better for performance to ref-count every subsystem, or to
224 * take a global lock and only add one ref count to each hierarchy.
225 */
Paul Menageb4f48b62007-10-18 23:39:33 -0700226
Paul Menage817929e2007-10-18 23:39:36 -0700227/*
228 * unlink a css_set from the list and free it
229 */
Paul Menage81a6a5c2007-10-18 23:39:38 -0700230static void unlink_css_set(struct css_set *cg)
Paul Menageb4f48b62007-10-18 23:39:33 -0700231{
Paul Menage817929e2007-10-18 23:39:36 -0700232 write_lock(&css_set_lock);
233 list_del(&cg->list);
234 css_set_count--;
235 while (!list_empty(&cg->cg_links)) {
236 struct cg_cgroup_link *link;
237 link = list_entry(cg->cg_links.next,
238 struct cg_cgroup_link, cg_link_list);
239 list_del(&link->cg_link_list);
Paul Menagebd89aab2007-10-18 23:40:44 -0700240 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -0700241 kfree(link);
242 }
243 write_unlock(&css_set_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700244}
245
246static void __release_css_set(struct kref *k, int taskexit)
247{
248 int i;
249 struct css_set *cg = container_of(k, struct css_set, ref);
250
251 unlink_css_set(cg);
252
253 rcu_read_lock();
254 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700255 struct cgroup *cgrp = cg->subsys[i]->cgroup;
256 if (atomic_dec_and_test(&cgrp->count) &&
257 notify_on_release(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -0700258 if (taskexit)
Paul Menagebd89aab2007-10-18 23:40:44 -0700259 set_bit(CGRP_RELEASABLE, &cgrp->flags);
260 check_for_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700261 }
262 }
263 rcu_read_unlock();
Paul Menage817929e2007-10-18 23:39:36 -0700264 kfree(cg);
265}
266
Paul Menage81a6a5c2007-10-18 23:39:38 -0700267static void release_css_set(struct kref *k)
268{
269 __release_css_set(k, 0);
270}
271
272static void release_css_set_taskexit(struct kref *k)
273{
274 __release_css_set(k, 1);
275}
276
Paul Menage817929e2007-10-18 23:39:36 -0700277/*
278 * refcounted get/put for css_set objects
279 */
280static inline void get_css_set(struct css_set *cg)
281{
282 kref_get(&cg->ref);
283}
284
285static inline void put_css_set(struct css_set *cg)
286{
287 kref_put(&cg->ref, release_css_set);
288}
289
Paul Menage81a6a5c2007-10-18 23:39:38 -0700290static inline void put_css_set_taskexit(struct css_set *cg)
291{
292 kref_put(&cg->ref, release_css_set_taskexit);
293}
294
Paul Menage817929e2007-10-18 23:39:36 -0700295/*
296 * find_existing_css_set() is a helper for
297 * find_css_set(), and checks to see whether an existing
298 * css_set is suitable. This currently walks a linked-list for
299 * simplicity; a later patch will use a hash table for better
300 * performance
301 *
302 * oldcg: the cgroup group that we're using before the cgroup
303 * transition
304 *
Paul Menagebd89aab2007-10-18 23:40:44 -0700305 * cgrp: the cgroup that we're moving into
Paul Menage817929e2007-10-18 23:39:36 -0700306 *
307 * template: location in which to build the desired set of subsystem
308 * state objects for the new cgroup group
309 */
310
311static struct css_set *find_existing_css_set(
312 struct css_set *oldcg,
Paul Menagebd89aab2007-10-18 23:40:44 -0700313 struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -0700314 struct cgroup_subsys_state *template[])
315{
316 int i;
Paul Menagebd89aab2007-10-18 23:40:44 -0700317 struct cgroupfs_root *root = cgrp->root;
Paul Menage817929e2007-10-18 23:39:36 -0700318 struct list_head *l = &init_css_set.list;
319
320 /* Built the set of subsystem state objects that we want to
321 * see in the new css_set */
322 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
323 if (root->subsys_bits & (1ull << i)) {
324 /* Subsystem is in this hierarchy. So we want
325 * the subsystem state from the new
326 * cgroup */
Paul Menagebd89aab2007-10-18 23:40:44 -0700327 template[i] = cgrp->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700328 } else {
329 /* Subsystem is not in this hierarchy, so we
330 * don't want to change the subsystem state */
331 template[i] = oldcg->subsys[i];
332 }
333 }
334
335 /* Look through existing cgroup groups to find one to reuse */
336 do {
337 struct css_set *cg =
338 list_entry(l, struct css_set, list);
339
340 if (!memcmp(template, cg->subsys, sizeof(cg->subsys))) {
341 /* All subsystems matched */
342 return cg;
343 }
344 /* Try the next cgroup group */
345 l = l->next;
346 } while (l != &init_css_set.list);
347
348 /* No existing cgroup group matched */
349 return NULL;
350}
351
352/*
353 * allocate_cg_links() allocates "count" cg_cgroup_link structures
Paul Menagebd89aab2007-10-18 23:40:44 -0700354 * and chains them on tmp through their cgrp_link_list fields. Returns 0 on
Paul Menage817929e2007-10-18 23:39:36 -0700355 * success or a negative error
356 */
357
358static int allocate_cg_links(int count, struct list_head *tmp)
359{
360 struct cg_cgroup_link *link;
361 int i;
362 INIT_LIST_HEAD(tmp);
363 for (i = 0; i < count; i++) {
364 link = kmalloc(sizeof(*link), GFP_KERNEL);
365 if (!link) {
366 while (!list_empty(tmp)) {
367 link = list_entry(tmp->next,
368 struct cg_cgroup_link,
Paul Menagebd89aab2007-10-18 23:40:44 -0700369 cgrp_link_list);
370 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -0700371 kfree(link);
372 }
373 return -ENOMEM;
374 }
Paul Menagebd89aab2007-10-18 23:40:44 -0700375 list_add(&link->cgrp_link_list, tmp);
Paul Menage817929e2007-10-18 23:39:36 -0700376 }
377 return 0;
378}
379
380static void free_cg_links(struct list_head *tmp)
381{
382 while (!list_empty(tmp)) {
383 struct cg_cgroup_link *link;
384 link = list_entry(tmp->next,
385 struct cg_cgroup_link,
Paul Menagebd89aab2007-10-18 23:40:44 -0700386 cgrp_link_list);
387 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -0700388 kfree(link);
389 }
390}
391
392/*
393 * find_css_set() takes an existing cgroup group and a
394 * cgroup object, and returns a css_set object that's
395 * equivalent to the old group, but with the given cgroup
396 * substituted into the appropriate hierarchy. Must be called with
397 * cgroup_mutex held
398 */
399
400static struct css_set *find_css_set(
Paul Menagebd89aab2007-10-18 23:40:44 -0700401 struct css_set *oldcg, struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700402{
403 struct css_set *res;
404 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT];
405 int i;
406
407 struct list_head tmp_cg_links;
408 struct cg_cgroup_link *link;
409
410 /* First see if we already have a cgroup group that matches
411 * the desired set */
412 write_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -0700413 res = find_existing_css_set(oldcg, cgrp, template);
Paul Menage817929e2007-10-18 23:39:36 -0700414 if (res)
415 get_css_set(res);
416 write_unlock(&css_set_lock);
417
418 if (res)
419 return res;
420
421 res = kmalloc(sizeof(*res), GFP_KERNEL);
422 if (!res)
423 return NULL;
424
425 /* Allocate all the cg_cgroup_link objects that we'll need */
426 if (allocate_cg_links(root_count, &tmp_cg_links) < 0) {
427 kfree(res);
428 return NULL;
429 }
430
431 kref_init(&res->ref);
432 INIT_LIST_HEAD(&res->cg_links);
433 INIT_LIST_HEAD(&res->tasks);
434
435 /* Copy the set of subsystem state objects generated in
436 * find_existing_css_set() */
437 memcpy(res->subsys, template, sizeof(res->subsys));
438
439 write_lock(&css_set_lock);
440 /* Add reference counts and links from the new css_set. */
441 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700442 struct cgroup *cgrp = res->subsys[i]->cgroup;
Paul Menage817929e2007-10-18 23:39:36 -0700443 struct cgroup_subsys *ss = subsys[i];
Paul Menagebd89aab2007-10-18 23:40:44 -0700444 atomic_inc(&cgrp->count);
Paul Menage817929e2007-10-18 23:39:36 -0700445 /*
446 * We want to add a link once per cgroup, so we
447 * only do it for the first subsystem in each
448 * hierarchy
449 */
450 if (ss->root->subsys_list.next == &ss->sibling) {
451 BUG_ON(list_empty(&tmp_cg_links));
452 link = list_entry(tmp_cg_links.next,
453 struct cg_cgroup_link,
Paul Menagebd89aab2007-10-18 23:40:44 -0700454 cgrp_link_list);
455 list_del(&link->cgrp_link_list);
456 list_add(&link->cgrp_link_list, &cgrp->css_sets);
Paul Menage817929e2007-10-18 23:39:36 -0700457 link->cg = res;
458 list_add(&link->cg_link_list, &res->cg_links);
459 }
460 }
461 if (list_empty(&rootnode.subsys_list)) {
462 link = list_entry(tmp_cg_links.next,
463 struct cg_cgroup_link,
Paul Menagebd89aab2007-10-18 23:40:44 -0700464 cgrp_link_list);
465 list_del(&link->cgrp_link_list);
466 list_add(&link->cgrp_link_list, &dummytop->css_sets);
Paul Menage817929e2007-10-18 23:39:36 -0700467 link->cg = res;
468 list_add(&link->cg_link_list, &res->cg_links);
469 }
470
471 BUG_ON(!list_empty(&tmp_cg_links));
472
473 /* Link this cgroup group into the list */
474 list_add(&res->list, &init_css_set.list);
475 css_set_count++;
476 INIT_LIST_HEAD(&res->tasks);
477 write_unlock(&css_set_lock);
478
479 return res;
Paul Menageb4f48b62007-10-18 23:39:33 -0700480}
481
Paul Menageddbcc7e2007-10-18 23:39:30 -0700482/*
483 * There is one global cgroup mutex. We also require taking
484 * task_lock() when dereferencing a task's cgroup subsys pointers.
485 * See "The task_lock() exception", at the end of this comment.
486 *
487 * A task must hold cgroup_mutex to modify cgroups.
488 *
489 * Any task can increment and decrement the count field without lock.
490 * So in general, code holding cgroup_mutex can't rely on the count
491 * field not changing. However, if the count goes to zero, then only
492 * attach_task() can increment it again. Because a count of zero
493 * means that no tasks are currently attached, therefore there is no
494 * way a task attached to that cgroup can fork (the other way to
495 * increment the count). So code holding cgroup_mutex can safely
496 * assume that if the count is zero, it will stay zero. Similarly, if
497 * a task holds cgroup_mutex on a cgroup with zero count, it
498 * knows that the cgroup won't be removed, as cgroup_rmdir()
499 * needs that mutex.
500 *
501 * The cgroup_common_file_write handler for operations that modify
502 * the cgroup hierarchy holds cgroup_mutex across the entire operation,
503 * single threading all such cgroup modifications across the system.
504 *
505 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
506 * (usually) take cgroup_mutex. These are the two most performance
507 * critical pieces of code here. The exception occurs on cgroup_exit(),
508 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
509 * is taken, and if the cgroup count is zero, a usermode call made
510 * to /sbin/cgroup_release_agent with the name of the cgroup (path
511 * relative to the root of cgroup file system) as the argument.
512 *
513 * A cgroup can only be deleted if both its 'count' of using tasks
514 * is zero, and its list of 'children' cgroups is empty. Since all
515 * tasks in the system use _some_ cgroup, and since there is always at
516 * least one task in the system (init, pid == 1), therefore, top_cgroup
517 * always has either children cgroups and/or using tasks. So we don't
518 * need a special hack to ensure that top_cgroup cannot be deleted.
519 *
520 * The task_lock() exception
521 *
522 * The need for this exception arises from the action of
523 * attach_task(), which overwrites one tasks cgroup pointer with
524 * another. It does so using cgroup_mutexe, however there are
525 * several performance critical places that need to reference
526 * task->cgroup without the expense of grabbing a system global
527 * mutex. Therefore except as noted below, when dereferencing or, as
528 * in attach_task(), modifying a task'ss cgroup pointer we use
529 * task_lock(), which acts on a spinlock (task->alloc_lock) already in
530 * the task_struct routinely used for such matters.
531 *
532 * P.S. One more locking exception. RCU is used to guard the
533 * update of a tasks cgroup pointer by attach_task()
534 */
535
Paul Menageddbcc7e2007-10-18 23:39:30 -0700536/**
537 * cgroup_lock - lock out any changes to cgroup structures
538 *
539 */
540
541void cgroup_lock(void)
542{
543 mutex_lock(&cgroup_mutex);
544}
545
546/**
547 * cgroup_unlock - release lock on cgroup changes
548 *
549 * Undo the lock taken in a previous cgroup_lock() call.
550 */
551
552void cgroup_unlock(void)
553{
554 mutex_unlock(&cgroup_mutex);
555}
556
557/*
558 * A couple of forward declarations required, due to cyclic reference loop:
559 * cgroup_mkdir -> cgroup_create -> cgroup_populate_dir ->
560 * cgroup_add_file -> cgroup_create_file -> cgroup_dir_inode_operations
561 * -> cgroup_mkdir.
562 */
563
564static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode);
565static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -0700566static int cgroup_populate_dir(struct cgroup *cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700567static struct inode_operations cgroup_dir_inode_operations;
Paul Menagea4243162007-10-18 23:39:35 -0700568static struct file_operations proc_cgroupstats_operations;
569
570static struct backing_dev_info cgroup_backing_dev_info = {
571 .capabilities = BDI_CAP_NO_ACCT_DIRTY | BDI_CAP_NO_WRITEBACK,
572};
Paul Menageddbcc7e2007-10-18 23:39:30 -0700573
574static struct inode *cgroup_new_inode(mode_t mode, struct super_block *sb)
575{
576 struct inode *inode = new_inode(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700577
578 if (inode) {
579 inode->i_mode = mode;
580 inode->i_uid = current->fsuid;
581 inode->i_gid = current->fsgid;
582 inode->i_blocks = 0;
583 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
584 inode->i_mapping->backing_dev_info = &cgroup_backing_dev_info;
585 }
586 return inode;
587}
588
589static void cgroup_diput(struct dentry *dentry, struct inode *inode)
590{
591 /* is dentry a directory ? if so, kfree() associated cgroup */
592 if (S_ISDIR(inode->i_mode)) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700593 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800594 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -0700595 BUG_ON(!(cgroup_is_removed(cgrp)));
Paul Menage81a6a5c2007-10-18 23:39:38 -0700596 /* It's possible for external users to be holding css
597 * reference counts on a cgroup; css_put() needs to
598 * be able to access the cgroup after decrementing
599 * the reference count in order to know if it needs to
600 * queue the cgroup to be handled by the release
601 * agent */
602 synchronize_rcu();
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800603
604 mutex_lock(&cgroup_mutex);
605 /*
606 * Release the subsystem state objects.
607 */
608 for_each_subsys(cgrp->root, ss) {
609 if (cgrp->subsys[ss->subsys_id])
610 ss->destroy(ss, cgrp);
611 }
612
613 cgrp->root->number_of_cgroups--;
614 mutex_unlock(&cgroup_mutex);
615
616 /* Drop the active superblock reference that we took when we
617 * created the cgroup */
618 deactivate_super(cgrp->root->sb);
619
Paul Menagebd89aab2007-10-18 23:40:44 -0700620 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700621 }
622 iput(inode);
623}
624
625static void remove_dir(struct dentry *d)
626{
627 struct dentry *parent = dget(d->d_parent);
628
629 d_delete(d);
630 simple_rmdir(parent->d_inode, d);
631 dput(parent);
632}
633
634static void cgroup_clear_directory(struct dentry *dentry)
635{
636 struct list_head *node;
637
638 BUG_ON(!mutex_is_locked(&dentry->d_inode->i_mutex));
639 spin_lock(&dcache_lock);
640 node = dentry->d_subdirs.next;
641 while (node != &dentry->d_subdirs) {
642 struct dentry *d = list_entry(node, struct dentry, d_u.d_child);
643 list_del_init(node);
644 if (d->d_inode) {
645 /* This should never be called on a cgroup
646 * directory with child cgroups */
647 BUG_ON(d->d_inode->i_mode & S_IFDIR);
648 d = dget_locked(d);
649 spin_unlock(&dcache_lock);
650 d_delete(d);
651 simple_unlink(dentry->d_inode, d);
652 dput(d);
653 spin_lock(&dcache_lock);
654 }
655 node = dentry->d_subdirs.next;
656 }
657 spin_unlock(&dcache_lock);
658}
659
660/*
661 * NOTE : the dentry must have been dget()'ed
662 */
663static void cgroup_d_remove_dir(struct dentry *dentry)
664{
665 cgroup_clear_directory(dentry);
666
667 spin_lock(&dcache_lock);
668 list_del_init(&dentry->d_u.d_child);
669 spin_unlock(&dcache_lock);
670 remove_dir(dentry);
671}
672
673static int rebind_subsystems(struct cgroupfs_root *root,
674 unsigned long final_bits)
675{
676 unsigned long added_bits, removed_bits;
Paul Menagebd89aab2007-10-18 23:40:44 -0700677 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700678 int i;
679
680 removed_bits = root->actual_subsys_bits & ~final_bits;
681 added_bits = final_bits & ~root->actual_subsys_bits;
682 /* Check that any added subsystems are currently free */
683 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
684 unsigned long long bit = 1ull << i;
685 struct cgroup_subsys *ss = subsys[i];
686 if (!(bit & added_bits))
687 continue;
688 if (ss->root != &rootnode) {
689 /* Subsystem isn't free */
690 return -EBUSY;
691 }
692 }
693
694 /* Currently we don't handle adding/removing subsystems when
695 * any child cgroups exist. This is theoretically supportable
696 * but involves complex error handling, so it's being left until
697 * later */
Paul Menagebd89aab2007-10-18 23:40:44 -0700698 if (!list_empty(&cgrp->children))
Paul Menageddbcc7e2007-10-18 23:39:30 -0700699 return -EBUSY;
700
701 /* Process each subsystem */
702 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
703 struct cgroup_subsys *ss = subsys[i];
704 unsigned long bit = 1UL << i;
705 if (bit & added_bits) {
706 /* We're binding this subsystem to this hierarchy */
Paul Menagebd89aab2007-10-18 23:40:44 -0700707 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700708 BUG_ON(!dummytop->subsys[i]);
709 BUG_ON(dummytop->subsys[i]->cgroup != dummytop);
Paul Menagebd89aab2007-10-18 23:40:44 -0700710 cgrp->subsys[i] = dummytop->subsys[i];
711 cgrp->subsys[i]->cgroup = cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700712 list_add(&ss->sibling, &root->subsys_list);
713 rcu_assign_pointer(ss->root, root);
714 if (ss->bind)
Paul Menagebd89aab2007-10-18 23:40:44 -0700715 ss->bind(ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700716
717 } else if (bit & removed_bits) {
718 /* We're removing this subsystem */
Paul Menagebd89aab2007-10-18 23:40:44 -0700719 BUG_ON(cgrp->subsys[i] != dummytop->subsys[i]);
720 BUG_ON(cgrp->subsys[i]->cgroup != cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700721 if (ss->bind)
722 ss->bind(ss, dummytop);
723 dummytop->subsys[i]->cgroup = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -0700724 cgrp->subsys[i] = NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700725 rcu_assign_pointer(subsys[i]->root, &rootnode);
726 list_del(&ss->sibling);
727 } else if (bit & final_bits) {
728 /* Subsystem state should already exist */
Paul Menagebd89aab2007-10-18 23:40:44 -0700729 BUG_ON(!cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700730 } else {
731 /* Subsystem state shouldn't exist */
Paul Menagebd89aab2007-10-18 23:40:44 -0700732 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700733 }
734 }
735 root->subsys_bits = root->actual_subsys_bits = final_bits;
736 synchronize_rcu();
737
738 return 0;
739}
740
741static int cgroup_show_options(struct seq_file *seq, struct vfsmount *vfs)
742{
743 struct cgroupfs_root *root = vfs->mnt_sb->s_fs_info;
744 struct cgroup_subsys *ss;
745
746 mutex_lock(&cgroup_mutex);
747 for_each_subsys(root, ss)
748 seq_printf(seq, ",%s", ss->name);
749 if (test_bit(ROOT_NOPREFIX, &root->flags))
750 seq_puts(seq, ",noprefix");
Paul Menage81a6a5c2007-10-18 23:39:38 -0700751 if (strlen(root->release_agent_path))
752 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700753 mutex_unlock(&cgroup_mutex);
754 return 0;
755}
756
757struct cgroup_sb_opts {
758 unsigned long subsys_bits;
759 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700760 char *release_agent;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700761};
762
763/* Convert a hierarchy specifier into a bitmask of subsystems and
764 * flags. */
765static int parse_cgroupfs_options(char *data,
766 struct cgroup_sb_opts *opts)
767{
768 char *token, *o = data ?: "all";
769
770 opts->subsys_bits = 0;
771 opts->flags = 0;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700772 opts->release_agent = NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700773
774 while ((token = strsep(&o, ",")) != NULL) {
775 if (!*token)
776 return -EINVAL;
777 if (!strcmp(token, "all")) {
778 opts->subsys_bits = (1 << CGROUP_SUBSYS_COUNT) - 1;
779 } else if (!strcmp(token, "noprefix")) {
780 set_bit(ROOT_NOPREFIX, &opts->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700781 } else if (!strncmp(token, "release_agent=", 14)) {
782 /* Specifying two release agents is forbidden */
783 if (opts->release_agent)
784 return -EINVAL;
785 opts->release_agent = kzalloc(PATH_MAX, GFP_KERNEL);
786 if (!opts->release_agent)
787 return -ENOMEM;
788 strncpy(opts->release_agent, token + 14, PATH_MAX - 1);
789 opts->release_agent[PATH_MAX - 1] = 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700790 } else {
791 struct cgroup_subsys *ss;
792 int i;
793 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
794 ss = subsys[i];
795 if (!strcmp(token, ss->name)) {
796 set_bit(i, &opts->subsys_bits);
797 break;
798 }
799 }
800 if (i == CGROUP_SUBSYS_COUNT)
801 return -ENOENT;
802 }
803 }
804
805 /* We can't have an empty hierarchy */
806 if (!opts->subsys_bits)
807 return -EINVAL;
808
809 return 0;
810}
811
812static int cgroup_remount(struct super_block *sb, int *flags, char *data)
813{
814 int ret = 0;
815 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -0700816 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700817 struct cgroup_sb_opts opts;
818
Paul Menagebd89aab2007-10-18 23:40:44 -0700819 mutex_lock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700820 mutex_lock(&cgroup_mutex);
821
822 /* See what subsystems are wanted */
823 ret = parse_cgroupfs_options(data, &opts);
824 if (ret)
825 goto out_unlock;
826
827 /* Don't allow flags to change at remount */
828 if (opts.flags != root->flags) {
829 ret = -EINVAL;
830 goto out_unlock;
831 }
832
833 ret = rebind_subsystems(root, opts.subsys_bits);
834
835 /* (re)populate subsystem files */
836 if (!ret)
Paul Menagebd89aab2007-10-18 23:40:44 -0700837 cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700838
Paul Menage81a6a5c2007-10-18 23:39:38 -0700839 if (opts.release_agent)
840 strcpy(root->release_agent_path, opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700841 out_unlock:
Paul Menage81a6a5c2007-10-18 23:39:38 -0700842 if (opts.release_agent)
843 kfree(opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700844 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -0700845 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700846 return ret;
847}
848
849static struct super_operations cgroup_ops = {
850 .statfs = simple_statfs,
851 .drop_inode = generic_delete_inode,
852 .show_options = cgroup_show_options,
853 .remount_fs = cgroup_remount,
854};
855
856static void init_cgroup_root(struct cgroupfs_root *root)
857{
Paul Menagebd89aab2007-10-18 23:40:44 -0700858 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700859 INIT_LIST_HEAD(&root->subsys_list);
860 INIT_LIST_HEAD(&root->root_list);
861 root->number_of_cgroups = 1;
Paul Menagebd89aab2007-10-18 23:40:44 -0700862 cgrp->root = root;
863 cgrp->top_cgroup = cgrp;
864 INIT_LIST_HEAD(&cgrp->sibling);
865 INIT_LIST_HEAD(&cgrp->children);
866 INIT_LIST_HEAD(&cgrp->css_sets);
867 INIT_LIST_HEAD(&cgrp->release_list);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700868}
869
870static int cgroup_test_super(struct super_block *sb, void *data)
871{
872 struct cgroupfs_root *new = data;
873 struct cgroupfs_root *root = sb->s_fs_info;
874
875 /* First check subsystems */
876 if (new->subsys_bits != root->subsys_bits)
877 return 0;
878
879 /* Next check flags */
880 if (new->flags != root->flags)
881 return 0;
882
883 return 1;
884}
885
886static int cgroup_set_super(struct super_block *sb, void *data)
887{
888 int ret;
889 struct cgroupfs_root *root = data;
890
891 ret = set_anon_super(sb, NULL);
892 if (ret)
893 return ret;
894
895 sb->s_fs_info = root;
896 root->sb = sb;
897
898 sb->s_blocksize = PAGE_CACHE_SIZE;
899 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
900 sb->s_magic = CGROUP_SUPER_MAGIC;
901 sb->s_op = &cgroup_ops;
902
903 return 0;
904}
905
906static int cgroup_get_rootdir(struct super_block *sb)
907{
908 struct inode *inode =
909 cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb);
910 struct dentry *dentry;
911
912 if (!inode)
913 return -ENOMEM;
914
915 inode->i_op = &simple_dir_inode_operations;
916 inode->i_fop = &simple_dir_operations;
917 inode->i_op = &cgroup_dir_inode_operations;
918 /* directories start off with i_nlink == 2 (for "." entry) */
919 inc_nlink(inode);
920 dentry = d_alloc_root(inode);
921 if (!dentry) {
922 iput(inode);
923 return -ENOMEM;
924 }
925 sb->s_root = dentry;
926 return 0;
927}
928
929static int cgroup_get_sb(struct file_system_type *fs_type,
930 int flags, const char *unused_dev_name,
931 void *data, struct vfsmount *mnt)
932{
933 struct cgroup_sb_opts opts;
934 int ret = 0;
935 struct super_block *sb;
936 struct cgroupfs_root *root;
Paul Menage817929e2007-10-18 23:39:36 -0700937 struct list_head tmp_cg_links, *l;
938 INIT_LIST_HEAD(&tmp_cg_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700939
940 /* First find the desired set of subsystems */
941 ret = parse_cgroupfs_options(data, &opts);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700942 if (ret) {
943 if (opts.release_agent)
944 kfree(opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700945 return ret;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700946 }
Paul Menageddbcc7e2007-10-18 23:39:30 -0700947
948 root = kzalloc(sizeof(*root), GFP_KERNEL);
949 if (!root)
950 return -ENOMEM;
951
952 init_cgroup_root(root);
953 root->subsys_bits = opts.subsys_bits;
954 root->flags = opts.flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700955 if (opts.release_agent) {
956 strcpy(root->release_agent_path, opts.release_agent);
957 kfree(opts.release_agent);
958 }
Paul Menageddbcc7e2007-10-18 23:39:30 -0700959
960 sb = sget(fs_type, cgroup_test_super, cgroup_set_super, root);
961
962 if (IS_ERR(sb)) {
963 kfree(root);
964 return PTR_ERR(sb);
965 }
966
967 if (sb->s_fs_info != root) {
968 /* Reusing an existing superblock */
969 BUG_ON(sb->s_root == NULL);
970 kfree(root);
971 root = NULL;
972 } else {
973 /* New superblock */
Paul Menagebd89aab2007-10-18 23:40:44 -0700974 struct cgroup *cgrp = &root->top_cgroup;
Paul Menage817929e2007-10-18 23:39:36 -0700975 struct inode *inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700976
977 BUG_ON(sb->s_root != NULL);
978
979 ret = cgroup_get_rootdir(sb);
980 if (ret)
981 goto drop_new_super;
Paul Menage817929e2007-10-18 23:39:36 -0700982 inode = sb->s_root->d_inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700983
Paul Menage817929e2007-10-18 23:39:36 -0700984 mutex_lock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700985 mutex_lock(&cgroup_mutex);
986
Paul Menage817929e2007-10-18 23:39:36 -0700987 /*
988 * We're accessing css_set_count without locking
989 * css_set_lock here, but that's OK - it can only be
990 * increased by someone holding cgroup_lock, and
991 * that's us. The worst that can happen is that we
992 * have some link structures left over
993 */
994 ret = allocate_cg_links(css_set_count, &tmp_cg_links);
995 if (ret) {
996 mutex_unlock(&cgroup_mutex);
997 mutex_unlock(&inode->i_mutex);
998 goto drop_new_super;
999 }
1000
Paul Menageddbcc7e2007-10-18 23:39:30 -07001001 ret = rebind_subsystems(root, root->subsys_bits);
1002 if (ret == -EBUSY) {
1003 mutex_unlock(&cgroup_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07001004 mutex_unlock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001005 goto drop_new_super;
1006 }
1007
1008 /* EBUSY should be the only error here */
1009 BUG_ON(ret);
1010
1011 list_add(&root->root_list, &roots);
Paul Menage817929e2007-10-18 23:39:36 -07001012 root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001013
1014 sb->s_root->d_fsdata = &root->top_cgroup;
1015 root->top_cgroup.dentry = sb->s_root;
1016
Paul Menage817929e2007-10-18 23:39:36 -07001017 /* Link the top cgroup in this hierarchy into all
1018 * the css_set objects */
1019 write_lock(&css_set_lock);
1020 l = &init_css_set.list;
1021 do {
1022 struct css_set *cg;
1023 struct cg_cgroup_link *link;
1024 cg = list_entry(l, struct css_set, list);
1025 BUG_ON(list_empty(&tmp_cg_links));
1026 link = list_entry(tmp_cg_links.next,
1027 struct cg_cgroup_link,
Paul Menagebd89aab2007-10-18 23:40:44 -07001028 cgrp_link_list);
1029 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001030 link->cg = cg;
Paul Menagebd89aab2007-10-18 23:40:44 -07001031 list_add(&link->cgrp_link_list,
Paul Menage817929e2007-10-18 23:39:36 -07001032 &root->top_cgroup.css_sets);
1033 list_add(&link->cg_link_list, &cg->cg_links);
1034 l = l->next;
1035 } while (l != &init_css_set.list);
1036 write_unlock(&css_set_lock);
1037
1038 free_cg_links(&tmp_cg_links);
1039
Paul Menagebd89aab2007-10-18 23:40:44 -07001040 BUG_ON(!list_empty(&cgrp->sibling));
1041 BUG_ON(!list_empty(&cgrp->children));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001042 BUG_ON(root->number_of_cgroups != 1);
1043
Paul Menagebd89aab2007-10-18 23:40:44 -07001044 cgroup_populate_dir(cgrp);
Paul Menage817929e2007-10-18 23:39:36 -07001045 mutex_unlock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001046 mutex_unlock(&cgroup_mutex);
1047 }
1048
1049 return simple_set_mnt(mnt, sb);
1050
1051 drop_new_super:
1052 up_write(&sb->s_umount);
1053 deactivate_super(sb);
Paul Menage817929e2007-10-18 23:39:36 -07001054 free_cg_links(&tmp_cg_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001055 return ret;
1056}
1057
1058static void cgroup_kill_sb(struct super_block *sb) {
1059 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001060 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001061 int ret;
1062
1063 BUG_ON(!root);
1064
1065 BUG_ON(root->number_of_cgroups != 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001066 BUG_ON(!list_empty(&cgrp->children));
1067 BUG_ON(!list_empty(&cgrp->sibling));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001068
1069 mutex_lock(&cgroup_mutex);
1070
1071 /* Rebind all subsystems back to the default hierarchy */
1072 ret = rebind_subsystems(root, 0);
1073 /* Shouldn't be able to fail ... */
1074 BUG_ON(ret);
1075
Paul Menage817929e2007-10-18 23:39:36 -07001076 /*
1077 * Release all the links from css_sets to this hierarchy's
1078 * root cgroup
1079 */
1080 write_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07001081 while (!list_empty(&cgrp->css_sets)) {
Paul Menage817929e2007-10-18 23:39:36 -07001082 struct cg_cgroup_link *link;
Paul Menagebd89aab2007-10-18 23:40:44 -07001083 link = list_entry(cgrp->css_sets.next,
1084 struct cg_cgroup_link, cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001085 list_del(&link->cg_link_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07001086 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001087 kfree(link);
1088 }
1089 write_unlock(&css_set_lock);
1090
1091 if (!list_empty(&root->root_list)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001092 list_del(&root->root_list);
Paul Menage817929e2007-10-18 23:39:36 -07001093 root_count--;
1094 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001095 mutex_unlock(&cgroup_mutex);
1096
1097 kfree(root);
1098 kill_litter_super(sb);
1099}
1100
1101static struct file_system_type cgroup_fs_type = {
1102 .name = "cgroup",
1103 .get_sb = cgroup_get_sb,
1104 .kill_sb = cgroup_kill_sb,
1105};
1106
Paul Menagebd89aab2007-10-18 23:40:44 -07001107static inline struct cgroup *__d_cgrp(struct dentry *dentry)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001108{
1109 return dentry->d_fsdata;
1110}
1111
1112static inline struct cftype *__d_cft(struct dentry *dentry)
1113{
1114 return dentry->d_fsdata;
1115}
1116
1117/*
1118 * Called with cgroup_mutex held. Writes path of cgroup into buf.
1119 * Returns 0 on success, -errno on error.
1120 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001121int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001122{
1123 char *start;
1124
Paul Menagebd89aab2007-10-18 23:40:44 -07001125 if (cgrp == dummytop) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001126 /*
1127 * Inactive subsystems have no dentry for their root
1128 * cgroup
1129 */
1130 strcpy(buf, "/");
1131 return 0;
1132 }
1133
1134 start = buf + buflen;
1135
1136 *--start = '\0';
1137 for (;;) {
Paul Menagebd89aab2007-10-18 23:40:44 -07001138 int len = cgrp->dentry->d_name.len;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001139 if ((start -= len) < buf)
1140 return -ENAMETOOLONG;
Paul Menagebd89aab2007-10-18 23:40:44 -07001141 memcpy(start, cgrp->dentry->d_name.name, len);
1142 cgrp = cgrp->parent;
1143 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001144 break;
Paul Menagebd89aab2007-10-18 23:40:44 -07001145 if (!cgrp->parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001146 continue;
1147 if (--start < buf)
1148 return -ENAMETOOLONG;
1149 *start = '/';
1150 }
1151 memmove(buf, start, buf + buflen - start);
1152 return 0;
1153}
1154
Paul Menagebbcb81d2007-10-18 23:39:32 -07001155/*
1156 * Return the first subsystem attached to a cgroup's hierarchy, and
1157 * its subsystem id.
1158 */
1159
Paul Menagebd89aab2007-10-18 23:40:44 -07001160static void get_first_subsys(const struct cgroup *cgrp,
Paul Menagebbcb81d2007-10-18 23:39:32 -07001161 struct cgroup_subsys_state **css, int *subsys_id)
1162{
Paul Menagebd89aab2007-10-18 23:40:44 -07001163 const struct cgroupfs_root *root = cgrp->root;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001164 const struct cgroup_subsys *test_ss;
1165 BUG_ON(list_empty(&root->subsys_list));
1166 test_ss = list_entry(root->subsys_list.next,
1167 struct cgroup_subsys, sibling);
1168 if (css) {
Paul Menagebd89aab2007-10-18 23:40:44 -07001169 *css = cgrp->subsys[test_ss->subsys_id];
Paul Menagebbcb81d2007-10-18 23:39:32 -07001170 BUG_ON(!*css);
1171 }
1172 if (subsys_id)
1173 *subsys_id = test_ss->subsys_id;
1174}
1175
1176/*
Paul Menagebd89aab2007-10-18 23:40:44 -07001177 * Attach task 'tsk' to cgroup 'cgrp'
Paul Menagebbcb81d2007-10-18 23:39:32 -07001178 *
1179 * Call holding cgroup_mutex. May take task_lock of
1180 * the task 'pid' during call.
1181 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001182static int attach_task(struct cgroup *cgrp, struct task_struct *tsk)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001183{
1184 int retval = 0;
1185 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07001186 struct cgroup *oldcgrp;
Paul Menage817929e2007-10-18 23:39:36 -07001187 struct css_set *cg = tsk->cgroups;
1188 struct css_set *newcg;
Paul Menagebd89aab2007-10-18 23:40:44 -07001189 struct cgroupfs_root *root = cgrp->root;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001190 int subsys_id;
1191
Paul Menagebd89aab2007-10-18 23:40:44 -07001192 get_first_subsys(cgrp, NULL, &subsys_id);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001193
1194 /* Nothing to do if the task is already in that cgroup */
Paul Menagebd89aab2007-10-18 23:40:44 -07001195 oldcgrp = task_cgroup(tsk, subsys_id);
1196 if (cgrp == oldcgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001197 return 0;
1198
1199 for_each_subsys(root, ss) {
1200 if (ss->can_attach) {
Paul Menagebd89aab2007-10-18 23:40:44 -07001201 retval = ss->can_attach(ss, cgrp, tsk);
Paul Jacksone18f6312008-02-07 00:13:44 -08001202 if (retval)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001203 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001204 }
1205 }
1206
Paul Menage817929e2007-10-18 23:39:36 -07001207 /*
1208 * Locate or allocate a new css_set for this task,
1209 * based on its final set of cgroups
1210 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001211 newcg = find_css_set(cg, cgrp);
Paul Jacksone18f6312008-02-07 00:13:44 -08001212 if (!newcg)
Paul Menage817929e2007-10-18 23:39:36 -07001213 return -ENOMEM;
Paul Menage817929e2007-10-18 23:39:36 -07001214
Paul Menagebbcb81d2007-10-18 23:39:32 -07001215 task_lock(tsk);
1216 if (tsk->flags & PF_EXITING) {
1217 task_unlock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07001218 put_css_set(newcg);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001219 return -ESRCH;
1220 }
Paul Menage817929e2007-10-18 23:39:36 -07001221 rcu_assign_pointer(tsk->cgroups, newcg);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001222 task_unlock(tsk);
1223
Paul Menage817929e2007-10-18 23:39:36 -07001224 /* Update the css_set linked lists if we're using them */
1225 write_lock(&css_set_lock);
1226 if (!list_empty(&tsk->cg_list)) {
1227 list_del(&tsk->cg_list);
1228 list_add(&tsk->cg_list, &newcg->tasks);
1229 }
1230 write_unlock(&css_set_lock);
1231
Paul Menagebbcb81d2007-10-18 23:39:32 -07001232 for_each_subsys(root, ss) {
Paul Jacksone18f6312008-02-07 00:13:44 -08001233 if (ss->attach)
Paul Menagebd89aab2007-10-18 23:40:44 -07001234 ss->attach(ss, cgrp, oldcgrp, tsk);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001235 }
Paul Menagebd89aab2007-10-18 23:40:44 -07001236 set_bit(CGRP_RELEASABLE, &oldcgrp->flags);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001237 synchronize_rcu();
Paul Menage817929e2007-10-18 23:39:36 -07001238 put_css_set(cg);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001239 return 0;
1240}
1241
1242/*
Paul Menagebd89aab2007-10-18 23:40:44 -07001243 * Attach task with pid 'pid' to cgroup 'cgrp'. Call with
Paul Menagebbcb81d2007-10-18 23:39:32 -07001244 * cgroup_mutex, may take task_lock of task
1245 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001246static int attach_task_by_pid(struct cgroup *cgrp, char *pidbuf)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001247{
1248 pid_t pid;
1249 struct task_struct *tsk;
1250 int ret;
1251
1252 if (sscanf(pidbuf, "%d", &pid) != 1)
1253 return -EIO;
1254
1255 if (pid) {
1256 rcu_read_lock();
1257 tsk = find_task_by_pid(pid);
1258 if (!tsk || tsk->flags & PF_EXITING) {
1259 rcu_read_unlock();
1260 return -ESRCH;
1261 }
1262 get_task_struct(tsk);
1263 rcu_read_unlock();
1264
1265 if ((current->euid) && (current->euid != tsk->uid)
1266 && (current->euid != tsk->suid)) {
1267 put_task_struct(tsk);
1268 return -EACCES;
1269 }
1270 } else {
1271 tsk = current;
1272 get_task_struct(tsk);
1273 }
1274
Paul Menagebd89aab2007-10-18 23:40:44 -07001275 ret = attach_task(cgrp, tsk);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001276 put_task_struct(tsk);
1277 return ret;
1278}
1279
Paul Menageddbcc7e2007-10-18 23:39:30 -07001280/* The various types of files and directories in a cgroup file system */
1281
1282enum cgroup_filetype {
1283 FILE_ROOT,
1284 FILE_DIR,
1285 FILE_TASKLIST,
Paul Menage81a6a5c2007-10-18 23:39:38 -07001286 FILE_NOTIFY_ON_RELEASE,
1287 FILE_RELEASABLE,
1288 FILE_RELEASE_AGENT,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001289};
1290
Paul Menagebd89aab2007-10-18 23:40:44 -07001291static ssize_t cgroup_write_uint(struct cgroup *cgrp, struct cftype *cft,
Paul Menage355e0c42007-10-18 23:39:33 -07001292 struct file *file,
1293 const char __user *userbuf,
1294 size_t nbytes, loff_t *unused_ppos)
1295{
1296 char buffer[64];
1297 int retval = 0;
1298 u64 val;
1299 char *end;
1300
1301 if (!nbytes)
1302 return -EINVAL;
1303 if (nbytes >= sizeof(buffer))
1304 return -E2BIG;
1305 if (copy_from_user(buffer, userbuf, nbytes))
1306 return -EFAULT;
1307
1308 buffer[nbytes] = 0; /* nul-terminate */
1309
1310 /* strip newline if necessary */
1311 if (nbytes && (buffer[nbytes-1] == '\n'))
1312 buffer[nbytes-1] = 0;
1313 val = simple_strtoull(buffer, &end, 0);
1314 if (*end)
1315 return -EINVAL;
1316
1317 /* Pass to subsystem */
Paul Menagebd89aab2007-10-18 23:40:44 -07001318 retval = cft->write_uint(cgrp, cft, val);
Paul Menage355e0c42007-10-18 23:39:33 -07001319 if (!retval)
1320 retval = nbytes;
1321 return retval;
1322}
1323
Paul Menagebd89aab2007-10-18 23:40:44 -07001324static ssize_t cgroup_common_file_write(struct cgroup *cgrp,
Paul Menagebbcb81d2007-10-18 23:39:32 -07001325 struct cftype *cft,
1326 struct file *file,
1327 const char __user *userbuf,
1328 size_t nbytes, loff_t *unused_ppos)
1329{
1330 enum cgroup_filetype type = cft->private;
1331 char *buffer;
1332 int retval = 0;
1333
1334 if (nbytes >= PATH_MAX)
1335 return -E2BIG;
1336
1337 /* +1 for nul-terminator */
1338 buffer = kmalloc(nbytes + 1, GFP_KERNEL);
1339 if (buffer == NULL)
1340 return -ENOMEM;
1341
1342 if (copy_from_user(buffer, userbuf, nbytes)) {
1343 retval = -EFAULT;
1344 goto out1;
1345 }
1346 buffer[nbytes] = 0; /* nul-terminate */
Paul Jackson622d42c2008-02-07 00:13:44 -08001347 strstrip(buffer); /* strip -just- trailing whitespace */
Paul Menagebbcb81d2007-10-18 23:39:32 -07001348
1349 mutex_lock(&cgroup_mutex);
1350
Paul Menage8dc4f3e2008-02-07 00:13:45 -08001351 /*
1352 * This was already checked for in cgroup_file_write(), but
1353 * check again now we're holding cgroup_mutex.
1354 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001355 if (cgroup_is_removed(cgrp)) {
Paul Menagebbcb81d2007-10-18 23:39:32 -07001356 retval = -ENODEV;
1357 goto out2;
1358 }
1359
1360 switch (type) {
1361 case FILE_TASKLIST:
Paul Menagebd89aab2007-10-18 23:40:44 -07001362 retval = attach_task_by_pid(cgrp, buffer);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001363 break;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001364 case FILE_NOTIFY_ON_RELEASE:
Paul Menagebd89aab2007-10-18 23:40:44 -07001365 clear_bit(CGRP_RELEASABLE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001366 if (simple_strtoul(buffer, NULL, 10) != 0)
Paul Menagebd89aab2007-10-18 23:40:44 -07001367 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001368 else
Paul Menagebd89aab2007-10-18 23:40:44 -07001369 clear_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001370 break;
1371 case FILE_RELEASE_AGENT:
Paul Jackson622d42c2008-02-07 00:13:44 -08001372 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
1373 strcpy(cgrp->root->release_agent_path, buffer);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001374 break;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001375 default:
1376 retval = -EINVAL;
1377 goto out2;
1378 }
1379
1380 if (retval == 0)
1381 retval = nbytes;
1382out2:
1383 mutex_unlock(&cgroup_mutex);
1384out1:
1385 kfree(buffer);
1386 return retval;
1387}
1388
Paul Menageddbcc7e2007-10-18 23:39:30 -07001389static ssize_t cgroup_file_write(struct file *file, const char __user *buf,
1390 size_t nbytes, loff_t *ppos)
1391{
1392 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07001393 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001394
Paul Menage8dc4f3e2008-02-07 00:13:45 -08001395 if (!cft || cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001396 return -ENODEV;
Paul Menage355e0c42007-10-18 23:39:33 -07001397 if (cft->write)
Paul Menagebd89aab2007-10-18 23:40:44 -07001398 return cft->write(cgrp, cft, file, buf, nbytes, ppos);
Paul Menage355e0c42007-10-18 23:39:33 -07001399 if (cft->write_uint)
Paul Menagebd89aab2007-10-18 23:40:44 -07001400 return cgroup_write_uint(cgrp, cft, file, buf, nbytes, ppos);
Paul Menage355e0c42007-10-18 23:39:33 -07001401 return -EINVAL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001402}
1403
Paul Menagebd89aab2007-10-18 23:40:44 -07001404static ssize_t cgroup_read_uint(struct cgroup *cgrp, struct cftype *cft,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001405 struct file *file,
1406 char __user *buf, size_t nbytes,
1407 loff_t *ppos)
1408{
1409 char tmp[64];
Paul Menagebd89aab2007-10-18 23:40:44 -07001410 u64 val = cft->read_uint(cgrp, cft);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001411 int len = sprintf(tmp, "%llu\n", (unsigned long long) val);
1412
1413 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
1414}
1415
Paul Menagebd89aab2007-10-18 23:40:44 -07001416static ssize_t cgroup_common_file_read(struct cgroup *cgrp,
Paul Menage81a6a5c2007-10-18 23:39:38 -07001417 struct cftype *cft,
1418 struct file *file,
1419 char __user *buf,
1420 size_t nbytes, loff_t *ppos)
1421{
1422 enum cgroup_filetype type = cft->private;
1423 char *page;
1424 ssize_t retval = 0;
1425 char *s;
1426
1427 if (!(page = (char *)__get_free_page(GFP_KERNEL)))
1428 return -ENOMEM;
1429
1430 s = page;
1431
1432 switch (type) {
1433 case FILE_RELEASE_AGENT:
1434 {
1435 struct cgroupfs_root *root;
1436 size_t n;
1437 mutex_lock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07001438 root = cgrp->root;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001439 n = strnlen(root->release_agent_path,
1440 sizeof(root->release_agent_path));
1441 n = min(n, (size_t) PAGE_SIZE);
1442 strncpy(s, root->release_agent_path, n);
1443 mutex_unlock(&cgroup_mutex);
1444 s += n;
1445 break;
1446 }
1447 default:
1448 retval = -EINVAL;
1449 goto out;
1450 }
1451 *s++ = '\n';
1452
1453 retval = simple_read_from_buffer(buf, nbytes, ppos, page, s - page);
1454out:
1455 free_page((unsigned long)page);
1456 return retval;
1457}
1458
Paul Menageddbcc7e2007-10-18 23:39:30 -07001459static ssize_t cgroup_file_read(struct file *file, char __user *buf,
1460 size_t nbytes, loff_t *ppos)
1461{
1462 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07001463 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001464
Paul Menage8dc4f3e2008-02-07 00:13:45 -08001465 if (!cft || cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001466 return -ENODEV;
1467
1468 if (cft->read)
Paul Menagebd89aab2007-10-18 23:40:44 -07001469 return cft->read(cgrp, cft, file, buf, nbytes, ppos);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001470 if (cft->read_uint)
Paul Menagebd89aab2007-10-18 23:40:44 -07001471 return cgroup_read_uint(cgrp, cft, file, buf, nbytes, ppos);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001472 return -EINVAL;
1473}
1474
1475static int cgroup_file_open(struct inode *inode, struct file *file)
1476{
1477 int err;
1478 struct cftype *cft;
1479
1480 err = generic_file_open(inode, file);
1481 if (err)
1482 return err;
1483
1484 cft = __d_cft(file->f_dentry);
1485 if (!cft)
1486 return -ENODEV;
1487 if (cft->open)
1488 err = cft->open(inode, file);
1489 else
1490 err = 0;
1491
1492 return err;
1493}
1494
1495static int cgroup_file_release(struct inode *inode, struct file *file)
1496{
1497 struct cftype *cft = __d_cft(file->f_dentry);
1498 if (cft->release)
1499 return cft->release(inode, file);
1500 return 0;
1501}
1502
1503/*
1504 * cgroup_rename - Only allow simple rename of directories in place.
1505 */
1506static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry,
1507 struct inode *new_dir, struct dentry *new_dentry)
1508{
1509 if (!S_ISDIR(old_dentry->d_inode->i_mode))
1510 return -ENOTDIR;
1511 if (new_dentry->d_inode)
1512 return -EEXIST;
1513 if (old_dir != new_dir)
1514 return -EIO;
1515 return simple_rename(old_dir, old_dentry, new_dir, new_dentry);
1516}
1517
1518static struct file_operations cgroup_file_operations = {
1519 .read = cgroup_file_read,
1520 .write = cgroup_file_write,
1521 .llseek = generic_file_llseek,
1522 .open = cgroup_file_open,
1523 .release = cgroup_file_release,
1524};
1525
1526static struct inode_operations cgroup_dir_inode_operations = {
1527 .lookup = simple_lookup,
1528 .mkdir = cgroup_mkdir,
1529 .rmdir = cgroup_rmdir,
1530 .rename = cgroup_rename,
1531};
1532
1533static int cgroup_create_file(struct dentry *dentry, int mode,
1534 struct super_block *sb)
1535{
1536 static struct dentry_operations cgroup_dops = {
1537 .d_iput = cgroup_diput,
1538 };
1539
1540 struct inode *inode;
1541
1542 if (!dentry)
1543 return -ENOENT;
1544 if (dentry->d_inode)
1545 return -EEXIST;
1546
1547 inode = cgroup_new_inode(mode, sb);
1548 if (!inode)
1549 return -ENOMEM;
1550
1551 if (S_ISDIR(mode)) {
1552 inode->i_op = &cgroup_dir_inode_operations;
1553 inode->i_fop = &simple_dir_operations;
1554
1555 /* start off with i_nlink == 2 (for "." entry) */
1556 inc_nlink(inode);
1557
1558 /* start with the directory inode held, so that we can
1559 * populate it without racing with another mkdir */
Paul Menage817929e2007-10-18 23:39:36 -07001560 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001561 } else if (S_ISREG(mode)) {
1562 inode->i_size = 0;
1563 inode->i_fop = &cgroup_file_operations;
1564 }
1565 dentry->d_op = &cgroup_dops;
1566 d_instantiate(dentry, inode);
1567 dget(dentry); /* Extra count - pin the dentry in core */
1568 return 0;
1569}
1570
1571/*
1572 * cgroup_create_dir - create a directory for an object.
Paul Menagebd89aab2007-10-18 23:40:44 -07001573 * cgrp: the cgroup we create the directory for.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001574 * It must have a valid ->parent field
1575 * And we are going to fill its ->dentry field.
Paul Menagebd89aab2007-10-18 23:40:44 -07001576 * dentry: dentry of the new cgroup
Paul Menageddbcc7e2007-10-18 23:39:30 -07001577 * mode: mode to set on new directory.
1578 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001579static int cgroup_create_dir(struct cgroup *cgrp, struct dentry *dentry,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001580 int mode)
1581{
1582 struct dentry *parent;
1583 int error = 0;
1584
Paul Menagebd89aab2007-10-18 23:40:44 -07001585 parent = cgrp->parent->dentry;
1586 error = cgroup_create_file(dentry, S_IFDIR | mode, cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001587 if (!error) {
Paul Menagebd89aab2007-10-18 23:40:44 -07001588 dentry->d_fsdata = cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001589 inc_nlink(parent->d_inode);
Paul Menagebd89aab2007-10-18 23:40:44 -07001590 cgrp->dentry = dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001591 dget(dentry);
1592 }
1593 dput(dentry);
1594
1595 return error;
1596}
1597
Paul Menagebd89aab2007-10-18 23:40:44 -07001598int cgroup_add_file(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001599 struct cgroup_subsys *subsys,
1600 const struct cftype *cft)
1601{
Paul Menagebd89aab2007-10-18 23:40:44 -07001602 struct dentry *dir = cgrp->dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001603 struct dentry *dentry;
1604 int error;
1605
1606 char name[MAX_CGROUP_TYPE_NAMELEN + MAX_CFTYPE_NAME + 2] = { 0 };
Paul Menagebd89aab2007-10-18 23:40:44 -07001607 if (subsys && !test_bit(ROOT_NOPREFIX, &cgrp->root->flags)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001608 strcpy(name, subsys->name);
1609 strcat(name, ".");
1610 }
1611 strcat(name, cft->name);
1612 BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex));
1613 dentry = lookup_one_len(name, dir, strlen(name));
1614 if (!IS_ERR(dentry)) {
1615 error = cgroup_create_file(dentry, 0644 | S_IFREG,
Paul Menagebd89aab2007-10-18 23:40:44 -07001616 cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001617 if (!error)
1618 dentry->d_fsdata = (void *)cft;
1619 dput(dentry);
1620 } else
1621 error = PTR_ERR(dentry);
1622 return error;
1623}
1624
Paul Menagebd89aab2007-10-18 23:40:44 -07001625int cgroup_add_files(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001626 struct cgroup_subsys *subsys,
1627 const struct cftype cft[],
1628 int count)
1629{
1630 int i, err;
1631 for (i = 0; i < count; i++) {
Paul Menagebd89aab2007-10-18 23:40:44 -07001632 err = cgroup_add_file(cgrp, subsys, &cft[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001633 if (err)
1634 return err;
1635 }
1636 return 0;
1637}
1638
Paul Menage817929e2007-10-18 23:39:36 -07001639/* Count the number of tasks in a cgroup. */
1640
Paul Menagebd89aab2007-10-18 23:40:44 -07001641int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001642{
1643 int count = 0;
Paul Menage817929e2007-10-18 23:39:36 -07001644 struct list_head *l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001645
Paul Menage817929e2007-10-18 23:39:36 -07001646 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07001647 l = cgrp->css_sets.next;
1648 while (l != &cgrp->css_sets) {
Paul Menage817929e2007-10-18 23:39:36 -07001649 struct cg_cgroup_link *link =
Paul Menagebd89aab2007-10-18 23:40:44 -07001650 list_entry(l, struct cg_cgroup_link, cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001651 count += atomic_read(&link->cg->ref.refcount);
1652 l = l->next;
1653 }
1654 read_unlock(&css_set_lock);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001655 return count;
1656}
1657
1658/*
Paul Menage817929e2007-10-18 23:39:36 -07001659 * Advance a list_head iterator. The iterator should be positioned at
1660 * the start of a css_set
1661 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001662static void cgroup_advance_iter(struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -07001663 struct cgroup_iter *it)
1664{
1665 struct list_head *l = it->cg_link;
1666 struct cg_cgroup_link *link;
1667 struct css_set *cg;
1668
1669 /* Advance to the next non-empty css_set */
1670 do {
1671 l = l->next;
Paul Menagebd89aab2007-10-18 23:40:44 -07001672 if (l == &cgrp->css_sets) {
Paul Menage817929e2007-10-18 23:39:36 -07001673 it->cg_link = NULL;
1674 return;
1675 }
Paul Menagebd89aab2007-10-18 23:40:44 -07001676 link = list_entry(l, struct cg_cgroup_link, cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001677 cg = link->cg;
1678 } while (list_empty(&cg->tasks));
1679 it->cg_link = l;
1680 it->task = cg->tasks.next;
1681}
1682
Paul Menagebd89aab2007-10-18 23:40:44 -07001683void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07001684{
1685 /*
1686 * The first time anyone tries to iterate across a cgroup,
1687 * we need to enable the list linking each css_set to its
1688 * tasks, and fix up all existing tasks.
1689 */
1690 if (!use_task_css_set_links) {
1691 struct task_struct *p, *g;
1692 write_lock(&css_set_lock);
1693 use_task_css_set_links = 1;
1694 do_each_thread(g, p) {
1695 task_lock(p);
1696 if (list_empty(&p->cg_list))
1697 list_add(&p->cg_list, &p->cgroups->tasks);
1698 task_unlock(p);
1699 } while_each_thread(g, p);
1700 write_unlock(&css_set_lock);
1701 }
1702 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07001703 it->cg_link = &cgrp->css_sets;
1704 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07001705}
1706
Paul Menagebd89aab2007-10-18 23:40:44 -07001707struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -07001708 struct cgroup_iter *it)
1709{
1710 struct task_struct *res;
1711 struct list_head *l = it->task;
1712
1713 /* If the iterator cg is NULL, we have no tasks */
1714 if (!it->cg_link)
1715 return NULL;
1716 res = list_entry(l, struct task_struct, cg_list);
1717 /* Advance iterator to find next entry */
1718 l = l->next;
1719 if (l == &res->cgroups->tasks) {
1720 /* We reached the end of this task list - move on to
1721 * the next cg_cgroup_link */
Paul Menagebd89aab2007-10-18 23:40:44 -07001722 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07001723 } else {
1724 it->task = l;
1725 }
1726 return res;
1727}
1728
Paul Menagebd89aab2007-10-18 23:40:44 -07001729void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07001730{
1731 read_unlock(&css_set_lock);
1732}
1733
1734/*
Paul Menagebbcb81d2007-10-18 23:39:32 -07001735 * Stuff for reading the 'tasks' file.
1736 *
1737 * Reading this file can return large amounts of data if a cgroup has
1738 * *lots* of attached tasks. So it may need several calls to read(),
1739 * but we cannot guarantee that the information we produce is correct
1740 * unless we produce it entirely atomically.
1741 *
1742 * Upon tasks file open(), a struct ctr_struct is allocated, that
1743 * will have a pointer to an array (also allocated here). The struct
1744 * ctr_struct * is stored in file->private_data. Its resources will
1745 * be freed by release() when the file is closed. The array is used
1746 * to sprintf the PIDs and then used by read().
1747 */
1748struct ctr_struct {
1749 char *buf;
1750 int bufsz;
1751};
1752
1753/*
1754 * Load into 'pidarray' up to 'npids' of the tasks using cgroup
Paul Menagebd89aab2007-10-18 23:40:44 -07001755 * 'cgrp'. Return actual number of pids loaded. No need to
Paul Menagebbcb81d2007-10-18 23:39:32 -07001756 * task_lock(p) when reading out p->cgroup, since we're in an RCU
1757 * read section, so the css_set can't go away, and is
1758 * immutable after creation.
1759 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001760static int pid_array_load(pid_t *pidarray, int npids, struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001761{
1762 int n = 0;
Paul Menage817929e2007-10-18 23:39:36 -07001763 struct cgroup_iter it;
1764 struct task_struct *tsk;
Paul Menagebd89aab2007-10-18 23:40:44 -07001765 cgroup_iter_start(cgrp, &it);
1766 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Paul Menage817929e2007-10-18 23:39:36 -07001767 if (unlikely(n == npids))
1768 break;
Pavel Emelyanov69cccb82007-10-18 23:40:44 -07001769 pidarray[n++] = task_pid_nr(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07001770 }
Paul Menagebd89aab2007-10-18 23:40:44 -07001771 cgroup_iter_end(cgrp, &it);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001772 return n;
1773}
1774
Balbir Singh846c7bb2007-10-18 23:39:44 -07001775/**
1776 * Build and fill cgroupstats so that taskstats can export it to user
1777 * space.
1778 *
1779 * @stats: cgroupstats to fill information into
1780 * @dentry: A dentry entry belonging to the cgroup for which stats have
1781 * been requested.
1782 */
1783int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
1784{
1785 int ret = -EINVAL;
Paul Menagebd89aab2007-10-18 23:40:44 -07001786 struct cgroup *cgrp;
Balbir Singh846c7bb2007-10-18 23:39:44 -07001787 struct cgroup_iter it;
1788 struct task_struct *tsk;
1789 /*
1790 * Validate dentry by checking the superblock operations
1791 */
1792 if (dentry->d_sb->s_op != &cgroup_ops)
1793 goto err;
1794
1795 ret = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07001796 cgrp = dentry->d_fsdata;
Balbir Singh846c7bb2007-10-18 23:39:44 -07001797 rcu_read_lock();
1798
Paul Menagebd89aab2007-10-18 23:40:44 -07001799 cgroup_iter_start(cgrp, &it);
1800 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07001801 switch (tsk->state) {
1802 case TASK_RUNNING:
1803 stats->nr_running++;
1804 break;
1805 case TASK_INTERRUPTIBLE:
1806 stats->nr_sleeping++;
1807 break;
1808 case TASK_UNINTERRUPTIBLE:
1809 stats->nr_uninterruptible++;
1810 break;
1811 case TASK_STOPPED:
1812 stats->nr_stopped++;
1813 break;
1814 default:
1815 if (delayacct_is_task_waiting_on_io(tsk))
1816 stats->nr_io_wait++;
1817 break;
1818 }
1819 }
Paul Menagebd89aab2007-10-18 23:40:44 -07001820 cgroup_iter_end(cgrp, &it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07001821
1822 rcu_read_unlock();
1823err:
1824 return ret;
1825}
1826
Paul Menagebbcb81d2007-10-18 23:39:32 -07001827static int cmppid(const void *a, const void *b)
1828{
1829 return *(pid_t *)a - *(pid_t *)b;
1830}
1831
1832/*
1833 * Convert array 'a' of 'npids' pid_t's to a string of newline separated
1834 * decimal pids in 'buf'. Don't write more than 'sz' chars, but return
1835 * count 'cnt' of how many chars would be written if buf were large enough.
1836 */
1837static int pid_array_to_buf(char *buf, int sz, pid_t *a, int npids)
1838{
1839 int cnt = 0;
1840 int i;
1841
1842 for (i = 0; i < npids; i++)
1843 cnt += snprintf(buf + cnt, max(sz - cnt, 0), "%d\n", a[i]);
1844 return cnt;
1845}
1846
1847/*
1848 * Handle an open on 'tasks' file. Prepare a buffer listing the
1849 * process id's of tasks currently attached to the cgroup being opened.
1850 *
1851 * Does not require any specific cgroup mutexes, and does not take any.
1852 */
1853static int cgroup_tasks_open(struct inode *unused, struct file *file)
1854{
Paul Menagebd89aab2007-10-18 23:40:44 -07001855 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001856 struct ctr_struct *ctr;
1857 pid_t *pidarray;
1858 int npids;
1859 char c;
1860
1861 if (!(file->f_mode & FMODE_READ))
1862 return 0;
1863
1864 ctr = kmalloc(sizeof(*ctr), GFP_KERNEL);
1865 if (!ctr)
1866 goto err0;
1867
1868 /*
1869 * If cgroup gets more users after we read count, we won't have
1870 * enough space - tough. This race is indistinguishable to the
1871 * caller from the case that the additional cgroup users didn't
1872 * show up until sometime later on.
1873 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001874 npids = cgroup_task_count(cgrp);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001875 if (npids) {
1876 pidarray = kmalloc(npids * sizeof(pid_t), GFP_KERNEL);
1877 if (!pidarray)
1878 goto err1;
1879
Paul Menagebd89aab2007-10-18 23:40:44 -07001880 npids = pid_array_load(pidarray, npids, cgrp);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001881 sort(pidarray, npids, sizeof(pid_t), cmppid, NULL);
1882
1883 /* Call pid_array_to_buf() twice, first just to get bufsz */
1884 ctr->bufsz = pid_array_to_buf(&c, sizeof(c), pidarray, npids) + 1;
1885 ctr->buf = kmalloc(ctr->bufsz, GFP_KERNEL);
1886 if (!ctr->buf)
1887 goto err2;
1888 ctr->bufsz = pid_array_to_buf(ctr->buf, ctr->bufsz, pidarray, npids);
1889
1890 kfree(pidarray);
1891 } else {
1892 ctr->buf = 0;
1893 ctr->bufsz = 0;
1894 }
1895 file->private_data = ctr;
1896 return 0;
1897
1898err2:
1899 kfree(pidarray);
1900err1:
1901 kfree(ctr);
1902err0:
1903 return -ENOMEM;
1904}
1905
Paul Menagebd89aab2007-10-18 23:40:44 -07001906static ssize_t cgroup_tasks_read(struct cgroup *cgrp,
Paul Menagebbcb81d2007-10-18 23:39:32 -07001907 struct cftype *cft,
1908 struct file *file, char __user *buf,
1909 size_t nbytes, loff_t *ppos)
1910{
1911 struct ctr_struct *ctr = file->private_data;
1912
1913 return simple_read_from_buffer(buf, nbytes, ppos, ctr->buf, ctr->bufsz);
1914}
1915
1916static int cgroup_tasks_release(struct inode *unused_inode,
1917 struct file *file)
1918{
1919 struct ctr_struct *ctr;
1920
1921 if (file->f_mode & FMODE_READ) {
1922 ctr = file->private_data;
1923 kfree(ctr->buf);
1924 kfree(ctr);
1925 }
1926 return 0;
1927}
1928
Paul Menagebd89aab2007-10-18 23:40:44 -07001929static u64 cgroup_read_notify_on_release(struct cgroup *cgrp,
Paul Menage81a6a5c2007-10-18 23:39:38 -07001930 struct cftype *cft)
1931{
Paul Menagebd89aab2007-10-18 23:40:44 -07001932 return notify_on_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001933}
1934
Paul Menagebd89aab2007-10-18 23:40:44 -07001935static u64 cgroup_read_releasable(struct cgroup *cgrp, struct cftype *cft)
Paul Menage81a6a5c2007-10-18 23:39:38 -07001936{
Paul Menagebd89aab2007-10-18 23:40:44 -07001937 return test_bit(CGRP_RELEASABLE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001938}
1939
Paul Menagebbcb81d2007-10-18 23:39:32 -07001940/*
1941 * for the common functions, 'private' gives the type of file
1942 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07001943static struct cftype files[] = {
1944 {
1945 .name = "tasks",
1946 .open = cgroup_tasks_open,
1947 .read = cgroup_tasks_read,
1948 .write = cgroup_common_file_write,
1949 .release = cgroup_tasks_release,
1950 .private = FILE_TASKLIST,
1951 },
1952
1953 {
1954 .name = "notify_on_release",
1955 .read_uint = cgroup_read_notify_on_release,
1956 .write = cgroup_common_file_write,
1957 .private = FILE_NOTIFY_ON_RELEASE,
1958 },
1959
1960 {
1961 .name = "releasable",
1962 .read_uint = cgroup_read_releasable,
1963 .private = FILE_RELEASABLE,
1964 }
1965};
1966
1967static struct cftype cft_release_agent = {
1968 .name = "release_agent",
1969 .read = cgroup_common_file_read,
Paul Menagebbcb81d2007-10-18 23:39:32 -07001970 .write = cgroup_common_file_write,
Paul Menage81a6a5c2007-10-18 23:39:38 -07001971 .private = FILE_RELEASE_AGENT,
Paul Menagebbcb81d2007-10-18 23:39:32 -07001972};
1973
Paul Menagebd89aab2007-10-18 23:40:44 -07001974static int cgroup_populate_dir(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001975{
1976 int err;
1977 struct cgroup_subsys *ss;
1978
1979 /* First clear out any existing files */
Paul Menagebd89aab2007-10-18 23:40:44 -07001980 cgroup_clear_directory(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001981
Paul Menagebd89aab2007-10-18 23:40:44 -07001982 err = cgroup_add_files(cgrp, NULL, files, ARRAY_SIZE(files));
Paul Menagebbcb81d2007-10-18 23:39:32 -07001983 if (err < 0)
1984 return err;
1985
Paul Menagebd89aab2007-10-18 23:40:44 -07001986 if (cgrp == cgrp->top_cgroup) {
1987 if ((err = cgroup_add_file(cgrp, NULL, &cft_release_agent)) < 0)
Paul Menage81a6a5c2007-10-18 23:39:38 -07001988 return err;
1989 }
1990
Paul Menagebd89aab2007-10-18 23:40:44 -07001991 for_each_subsys(cgrp->root, ss) {
1992 if (ss->populate && (err = ss->populate(ss, cgrp)) < 0)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001993 return err;
1994 }
1995
1996 return 0;
1997}
1998
1999static void init_cgroup_css(struct cgroup_subsys_state *css,
2000 struct cgroup_subsys *ss,
Paul Menagebd89aab2007-10-18 23:40:44 -07002001 struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002002{
Paul Menagebd89aab2007-10-18 23:40:44 -07002003 css->cgroup = cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002004 atomic_set(&css->refcnt, 0);
2005 css->flags = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07002006 if (cgrp == dummytop)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002007 set_bit(CSS_ROOT, &css->flags);
Paul Menagebd89aab2007-10-18 23:40:44 -07002008 BUG_ON(cgrp->subsys[ss->subsys_id]);
2009 cgrp->subsys[ss->subsys_id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002010}
2011
2012/*
2013 * cgroup_create - create a cgroup
2014 * parent: cgroup that will be parent of the new cgroup.
2015 * name: name of the new cgroup. Will be strcpy'ed.
2016 * mode: mode to set on new inode
2017 *
2018 * Must be called with the mutex on the parent inode held
2019 */
2020
2021static long cgroup_create(struct cgroup *parent, struct dentry *dentry,
2022 int mode)
2023{
Paul Menagebd89aab2007-10-18 23:40:44 -07002024 struct cgroup *cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002025 struct cgroupfs_root *root = parent->root;
2026 int err = 0;
2027 struct cgroup_subsys *ss;
2028 struct super_block *sb = root->sb;
2029
Paul Menagebd89aab2007-10-18 23:40:44 -07002030 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
2031 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002032 return -ENOMEM;
2033
2034 /* Grab a reference on the superblock so the hierarchy doesn't
2035 * get deleted on unmount if there are child cgroups. This
2036 * can be done outside cgroup_mutex, since the sb can't
2037 * disappear while someone has an open control file on the
2038 * fs */
2039 atomic_inc(&sb->s_active);
2040
2041 mutex_lock(&cgroup_mutex);
2042
Paul Menagebd89aab2007-10-18 23:40:44 -07002043 cgrp->flags = 0;
2044 INIT_LIST_HEAD(&cgrp->sibling);
2045 INIT_LIST_HEAD(&cgrp->children);
2046 INIT_LIST_HEAD(&cgrp->css_sets);
2047 INIT_LIST_HEAD(&cgrp->release_list);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002048
Paul Menagebd89aab2007-10-18 23:40:44 -07002049 cgrp->parent = parent;
2050 cgrp->root = parent->root;
2051 cgrp->top_cgroup = parent->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002052
2053 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002054 struct cgroup_subsys_state *css = ss->create(ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002055 if (IS_ERR(css)) {
2056 err = PTR_ERR(css);
2057 goto err_destroy;
2058 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002059 init_cgroup_css(css, ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002060 }
2061
Paul Menagebd89aab2007-10-18 23:40:44 -07002062 list_add(&cgrp->sibling, &cgrp->parent->children);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002063 root->number_of_cgroups++;
2064
Paul Menagebd89aab2007-10-18 23:40:44 -07002065 err = cgroup_create_dir(cgrp, dentry, mode);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002066 if (err < 0)
2067 goto err_remove;
2068
2069 /* The cgroup directory was pre-locked for us */
Paul Menagebd89aab2007-10-18 23:40:44 -07002070 BUG_ON(!mutex_is_locked(&cgrp->dentry->d_inode->i_mutex));
Paul Menageddbcc7e2007-10-18 23:39:30 -07002071
Paul Menagebd89aab2007-10-18 23:40:44 -07002072 err = cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002073 /* If err < 0, we have a half-filled directory - oh well ;) */
2074
2075 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07002076 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002077
2078 return 0;
2079
2080 err_remove:
2081
Paul Menagebd89aab2007-10-18 23:40:44 -07002082 list_del(&cgrp->sibling);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002083 root->number_of_cgroups--;
2084
2085 err_destroy:
2086
2087 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002088 if (cgrp->subsys[ss->subsys_id])
2089 ss->destroy(ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002090 }
2091
2092 mutex_unlock(&cgroup_mutex);
2093
2094 /* Release the reference count that we took on the superblock */
2095 deactivate_super(sb);
2096
Paul Menagebd89aab2007-10-18 23:40:44 -07002097 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002098 return err;
2099}
2100
2101static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2102{
2103 struct cgroup *c_parent = dentry->d_parent->d_fsdata;
2104
2105 /* the vfs holds inode->i_mutex already */
2106 return cgroup_create(c_parent, dentry, mode | S_IFDIR);
2107}
2108
Paul Menagebd89aab2007-10-18 23:40:44 -07002109static inline int cgroup_has_css_refs(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07002110{
2111 /* Check the reference count on each subsystem. Since we
2112 * already established that there are no tasks in the
2113 * cgroup, if the css refcount is also 0, then there should
2114 * be no outstanding references, so the subsystem is safe to
2115 * destroy. We scan across all subsystems rather than using
2116 * the per-hierarchy linked list of mounted subsystems since
2117 * we can be called via check_for_release() with no
2118 * synchronization other than RCU, and the subsystem linked
2119 * list isn't RCU-safe */
2120 int i;
2121 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2122 struct cgroup_subsys *ss = subsys[i];
2123 struct cgroup_subsys_state *css;
2124 /* Skip subsystems not in this hierarchy */
Paul Menagebd89aab2007-10-18 23:40:44 -07002125 if (ss->root != cgrp->root)
Paul Menage81a6a5c2007-10-18 23:39:38 -07002126 continue;
Paul Menagebd89aab2007-10-18 23:40:44 -07002127 css = cgrp->subsys[ss->subsys_id];
Paul Menage81a6a5c2007-10-18 23:39:38 -07002128 /* When called from check_for_release() it's possible
2129 * that by this point the cgroup has been removed
2130 * and the css deleted. But a false-positive doesn't
2131 * matter, since it can only happen if the cgroup
2132 * has been deleted and hence no longer needs the
2133 * release agent to be called anyway. */
Paul Jacksone18f6312008-02-07 00:13:44 -08002134 if (css && atomic_read(&css->refcnt))
Paul Menage81a6a5c2007-10-18 23:39:38 -07002135 return 1;
Paul Menage81a6a5c2007-10-18 23:39:38 -07002136 }
2137 return 0;
2138}
2139
Paul Menageddbcc7e2007-10-18 23:39:30 -07002140static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry)
2141{
Paul Menagebd89aab2007-10-18 23:40:44 -07002142 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002143 struct dentry *d;
2144 struct cgroup *parent;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002145 struct super_block *sb;
2146 struct cgroupfs_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002147
2148 /* the vfs holds both inode->i_mutex already */
2149
2150 mutex_lock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07002151 if (atomic_read(&cgrp->count) != 0) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002152 mutex_unlock(&cgroup_mutex);
2153 return -EBUSY;
2154 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002155 if (!list_empty(&cgrp->children)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002156 mutex_unlock(&cgroup_mutex);
2157 return -EBUSY;
2158 }
2159
Paul Menagebd89aab2007-10-18 23:40:44 -07002160 parent = cgrp->parent;
2161 root = cgrp->root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002162 sb = root->sb;
2163
Paul Menagebd89aab2007-10-18 23:40:44 -07002164 if (cgroup_has_css_refs(cgrp)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002165 mutex_unlock(&cgroup_mutex);
2166 return -EBUSY;
2167 }
2168
Paul Menage81a6a5c2007-10-18 23:39:38 -07002169 spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07002170 set_bit(CGRP_REMOVED, &cgrp->flags);
2171 if (!list_empty(&cgrp->release_list))
2172 list_del(&cgrp->release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002173 spin_unlock(&release_list_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002174 /* delete my sibling from parent->children */
Paul Menagebd89aab2007-10-18 23:40:44 -07002175 list_del(&cgrp->sibling);
2176 spin_lock(&cgrp->dentry->d_lock);
2177 d = dget(cgrp->dentry);
2178 cgrp->dentry = NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002179 spin_unlock(&d->d_lock);
2180
2181 cgroup_d_remove_dir(d);
2182 dput(d);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002183
Paul Menagebd89aab2007-10-18 23:40:44 -07002184 set_bit(CGRP_RELEASABLE, &parent->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002185 check_for_release(parent);
2186
Paul Menageddbcc7e2007-10-18 23:39:30 -07002187 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002188 return 0;
2189}
2190
2191static void cgroup_init_subsys(struct cgroup_subsys *ss)
2192{
Paul Menageddbcc7e2007-10-18 23:39:30 -07002193 struct cgroup_subsys_state *css;
Paul Menage817929e2007-10-18 23:39:36 -07002194 struct list_head *l;
Diego Callejacfe36bd2007-11-14 16:58:54 -08002195
2196 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002197
2198 /* Create the top cgroup state for this subsystem */
2199 ss->root = &rootnode;
2200 css = ss->create(ss, dummytop);
2201 /* We don't handle early failures gracefully */
2202 BUG_ON(IS_ERR(css));
2203 init_cgroup_css(css, ss, dummytop);
2204
Paul Menage817929e2007-10-18 23:39:36 -07002205 /* Update all cgroup groups to contain a subsys
2206 * pointer to this state - since the subsystem is
2207 * newly registered, all tasks and hence all cgroup
2208 * groups are in the subsystem's top cgroup. */
2209 write_lock(&css_set_lock);
2210 l = &init_css_set.list;
2211 do {
2212 struct css_set *cg =
2213 list_entry(l, struct css_set, list);
2214 cg->subsys[ss->subsys_id] = dummytop->subsys[ss->subsys_id];
2215 l = l->next;
2216 } while (l != &init_css_set.list);
2217 write_unlock(&css_set_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002218
2219 /* If this subsystem requested that it be notified with fork
2220 * events, we should send it one now for every process in the
2221 * system */
Paul Menage81a6a5c2007-10-18 23:39:38 -07002222 if (ss->fork) {
2223 struct task_struct *g, *p;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002224
Paul Menage81a6a5c2007-10-18 23:39:38 -07002225 read_lock(&tasklist_lock);
2226 do_each_thread(g, p) {
2227 ss->fork(ss, p);
2228 } while_each_thread(g, p);
2229 read_unlock(&tasklist_lock);
2230 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002231
2232 need_forkexit_callback |= ss->fork || ss->exit;
2233
2234 ss->active = 1;
2235}
2236
2237/**
2238 * cgroup_init_early - initialize cgroups at system boot, and
2239 * initialize any subsystems that request early init.
2240 */
2241int __init cgroup_init_early(void)
2242{
2243 int i;
Paul Menage817929e2007-10-18 23:39:36 -07002244 kref_init(&init_css_set.ref);
2245 kref_get(&init_css_set.ref);
2246 INIT_LIST_HEAD(&init_css_set.list);
2247 INIT_LIST_HEAD(&init_css_set.cg_links);
2248 INIT_LIST_HEAD(&init_css_set.tasks);
2249 css_set_count = 1;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002250 init_cgroup_root(&rootnode);
2251 list_add(&rootnode.root_list, &roots);
Paul Menage817929e2007-10-18 23:39:36 -07002252 root_count = 1;
2253 init_task.cgroups = &init_css_set;
2254
2255 init_css_set_link.cg = &init_css_set;
Paul Menagebd89aab2007-10-18 23:40:44 -07002256 list_add(&init_css_set_link.cgrp_link_list,
Paul Menage817929e2007-10-18 23:39:36 -07002257 &rootnode.top_cgroup.css_sets);
2258 list_add(&init_css_set_link.cg_link_list,
2259 &init_css_set.cg_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002260
2261 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2262 struct cgroup_subsys *ss = subsys[i];
2263
2264 BUG_ON(!ss->name);
2265 BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN);
2266 BUG_ON(!ss->create);
2267 BUG_ON(!ss->destroy);
2268 if (ss->subsys_id != i) {
Diego Callejacfe36bd2007-11-14 16:58:54 -08002269 printk(KERN_ERR "cgroup: Subsys %s id == %d\n",
Paul Menageddbcc7e2007-10-18 23:39:30 -07002270 ss->name, ss->subsys_id);
2271 BUG();
2272 }
2273
2274 if (ss->early_init)
2275 cgroup_init_subsys(ss);
2276 }
2277 return 0;
2278}
2279
2280/**
2281 * cgroup_init - register cgroup filesystem and /proc file, and
2282 * initialize any subsystems that didn't request early init.
2283 */
2284int __init cgroup_init(void)
2285{
2286 int err;
2287 int i;
Paul Menagea4243162007-10-18 23:39:35 -07002288 struct proc_dir_entry *entry;
2289
2290 err = bdi_init(&cgroup_backing_dev_info);
2291 if (err)
2292 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002293
2294 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2295 struct cgroup_subsys *ss = subsys[i];
2296 if (!ss->early_init)
2297 cgroup_init_subsys(ss);
2298 }
2299
2300 err = register_filesystem(&cgroup_fs_type);
2301 if (err < 0)
2302 goto out;
2303
Paul Menagea4243162007-10-18 23:39:35 -07002304 entry = create_proc_entry("cgroups", 0, NULL);
2305 if (entry)
2306 entry->proc_fops = &proc_cgroupstats_operations;
2307
Paul Menageddbcc7e2007-10-18 23:39:30 -07002308out:
Paul Menagea4243162007-10-18 23:39:35 -07002309 if (err)
2310 bdi_destroy(&cgroup_backing_dev_info);
2311
Paul Menageddbcc7e2007-10-18 23:39:30 -07002312 return err;
2313}
Paul Menageb4f48b62007-10-18 23:39:33 -07002314
Paul Menagea4243162007-10-18 23:39:35 -07002315/*
2316 * proc_cgroup_show()
2317 * - Print task's cgroup paths into seq_file, one line for each hierarchy
2318 * - Used for /proc/<pid>/cgroup.
2319 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
2320 * doesn't really matter if tsk->cgroup changes after we read it,
2321 * and we take cgroup_mutex, keeping attach_task() from changing it
2322 * anyway. No need to check that tsk->cgroup != NULL, thanks to
2323 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
2324 * cgroup to top_cgroup.
2325 */
2326
2327/* TODO: Use a proper seq_file iterator */
2328static int proc_cgroup_show(struct seq_file *m, void *v)
2329{
2330 struct pid *pid;
2331 struct task_struct *tsk;
2332 char *buf;
2333 int retval;
2334 struct cgroupfs_root *root;
2335
2336 retval = -ENOMEM;
2337 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
2338 if (!buf)
2339 goto out;
2340
2341 retval = -ESRCH;
2342 pid = m->private;
2343 tsk = get_pid_task(pid, PIDTYPE_PID);
2344 if (!tsk)
2345 goto out_free;
2346
2347 retval = 0;
2348
2349 mutex_lock(&cgroup_mutex);
2350
2351 for_each_root(root) {
2352 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07002353 struct cgroup *cgrp;
Paul Menagea4243162007-10-18 23:39:35 -07002354 int subsys_id;
2355 int count = 0;
2356
2357 /* Skip this hierarchy if it has no active subsystems */
2358 if (!root->actual_subsys_bits)
2359 continue;
2360 for_each_subsys(root, ss)
2361 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
2362 seq_putc(m, ':');
2363 get_first_subsys(&root->top_cgroup, NULL, &subsys_id);
Paul Menagebd89aab2007-10-18 23:40:44 -07002364 cgrp = task_cgroup(tsk, subsys_id);
2365 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
Paul Menagea4243162007-10-18 23:39:35 -07002366 if (retval < 0)
2367 goto out_unlock;
2368 seq_puts(m, buf);
2369 seq_putc(m, '\n');
2370 }
2371
2372out_unlock:
2373 mutex_unlock(&cgroup_mutex);
2374 put_task_struct(tsk);
2375out_free:
2376 kfree(buf);
2377out:
2378 return retval;
2379}
2380
2381static int cgroup_open(struct inode *inode, struct file *file)
2382{
2383 struct pid *pid = PROC_I(inode)->pid;
2384 return single_open(file, proc_cgroup_show, pid);
2385}
2386
2387struct file_operations proc_cgroup_operations = {
2388 .open = cgroup_open,
2389 .read = seq_read,
2390 .llseek = seq_lseek,
2391 .release = single_release,
2392};
2393
2394/* Display information about each subsystem and each hierarchy */
2395static int proc_cgroupstats_show(struct seq_file *m, void *v)
2396{
2397 int i;
Paul Menagea4243162007-10-18 23:39:35 -07002398
Paul Menage817929e2007-10-18 23:39:36 -07002399 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\n");
Paul Menagea4243162007-10-18 23:39:35 -07002400 mutex_lock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07002401 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2402 struct cgroup_subsys *ss = subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -07002403 seq_printf(m, "%s\t%lu\t%d\n",
2404 ss->name, ss->root->subsys_bits,
2405 ss->root->number_of_cgroups);
Paul Menagea4243162007-10-18 23:39:35 -07002406 }
2407 mutex_unlock(&cgroup_mutex);
2408 return 0;
2409}
2410
2411static int cgroupstats_open(struct inode *inode, struct file *file)
2412{
2413 return single_open(file, proc_cgroupstats_show, 0);
2414}
2415
2416static struct file_operations proc_cgroupstats_operations = {
2417 .open = cgroupstats_open,
2418 .read = seq_read,
2419 .llseek = seq_lseek,
2420 .release = single_release,
2421};
2422
Paul Menageb4f48b62007-10-18 23:39:33 -07002423/**
2424 * cgroup_fork - attach newly forked task to its parents cgroup.
2425 * @tsk: pointer to task_struct of forking parent process.
2426 *
2427 * Description: A task inherits its parent's cgroup at fork().
2428 *
2429 * A pointer to the shared css_set was automatically copied in
2430 * fork.c by dup_task_struct(). However, we ignore that copy, since
2431 * it was not made under the protection of RCU or cgroup_mutex, so
2432 * might no longer be a valid cgroup pointer. attach_task() might
Paul Menage817929e2007-10-18 23:39:36 -07002433 * have already changed current->cgroups, allowing the previously
2434 * referenced cgroup group to be removed and freed.
Paul Menageb4f48b62007-10-18 23:39:33 -07002435 *
2436 * At the point that cgroup_fork() is called, 'current' is the parent
2437 * task, and the passed argument 'child' points to the child task.
2438 */
2439void cgroup_fork(struct task_struct *child)
2440{
Paul Menage817929e2007-10-18 23:39:36 -07002441 task_lock(current);
2442 child->cgroups = current->cgroups;
2443 get_css_set(child->cgroups);
2444 task_unlock(current);
2445 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07002446}
2447
2448/**
2449 * cgroup_fork_callbacks - called on a new task very soon before
2450 * adding it to the tasklist. No need to take any locks since no-one
2451 * can be operating on this task
2452 */
2453void cgroup_fork_callbacks(struct task_struct *child)
2454{
2455 if (need_forkexit_callback) {
2456 int i;
2457 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2458 struct cgroup_subsys *ss = subsys[i];
2459 if (ss->fork)
2460 ss->fork(ss, child);
2461 }
2462 }
2463}
2464
2465/**
Paul Menage817929e2007-10-18 23:39:36 -07002466 * cgroup_post_fork - called on a new task after adding it to the
2467 * task list. Adds the task to the list running through its css_set
2468 * if necessary. Has to be after the task is visible on the task list
2469 * in case we race with the first call to cgroup_iter_start() - to
2470 * guarantee that the new task ends up on its list. */
2471void cgroup_post_fork(struct task_struct *child)
2472{
2473 if (use_task_css_set_links) {
2474 write_lock(&css_set_lock);
2475 if (list_empty(&child->cg_list))
2476 list_add(&child->cg_list, &child->cgroups->tasks);
2477 write_unlock(&css_set_lock);
2478 }
2479}
2480/**
Paul Menageb4f48b62007-10-18 23:39:33 -07002481 * cgroup_exit - detach cgroup from exiting task
2482 * @tsk: pointer to task_struct of exiting process
2483 *
2484 * Description: Detach cgroup from @tsk and release it.
2485 *
2486 * Note that cgroups marked notify_on_release force every task in
2487 * them to take the global cgroup_mutex mutex when exiting.
2488 * This could impact scaling on very large systems. Be reluctant to
2489 * use notify_on_release cgroups where very high task exit scaling
2490 * is required on large systems.
2491 *
2492 * the_top_cgroup_hack:
2493 *
2494 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
2495 *
2496 * We call cgroup_exit() while the task is still competent to
2497 * handle notify_on_release(), then leave the task attached to the
2498 * root cgroup in each hierarchy for the remainder of its exit.
2499 *
2500 * To do this properly, we would increment the reference count on
2501 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
2502 * code we would add a second cgroup function call, to drop that
2503 * reference. This would just create an unnecessary hot spot on
2504 * the top_cgroup reference count, to no avail.
2505 *
2506 * Normally, holding a reference to a cgroup without bumping its
2507 * count is unsafe. The cgroup could go away, or someone could
2508 * attach us to a different cgroup, decrementing the count on
2509 * the first cgroup that we never incremented. But in this case,
2510 * top_cgroup isn't going away, and either task has PF_EXITING set,
2511 * which wards off any attach_task() attempts, or task is a failed
2512 * fork, never visible to attach_task.
2513 *
2514 */
2515void cgroup_exit(struct task_struct *tsk, int run_callbacks)
2516{
2517 int i;
Paul Menage817929e2007-10-18 23:39:36 -07002518 struct css_set *cg;
Paul Menageb4f48b62007-10-18 23:39:33 -07002519
2520 if (run_callbacks && need_forkexit_callback) {
2521 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2522 struct cgroup_subsys *ss = subsys[i];
2523 if (ss->exit)
2524 ss->exit(ss, tsk);
2525 }
2526 }
Paul Menage817929e2007-10-18 23:39:36 -07002527
2528 /*
2529 * Unlink from the css_set task list if necessary.
2530 * Optimistically check cg_list before taking
2531 * css_set_lock
2532 */
2533 if (!list_empty(&tsk->cg_list)) {
2534 write_lock(&css_set_lock);
2535 if (!list_empty(&tsk->cg_list))
2536 list_del(&tsk->cg_list);
2537 write_unlock(&css_set_lock);
2538 }
2539
Paul Menageb4f48b62007-10-18 23:39:33 -07002540 /* Reassign the task to the init_css_set. */
2541 task_lock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07002542 cg = tsk->cgroups;
2543 tsk->cgroups = &init_css_set;
Paul Menageb4f48b62007-10-18 23:39:33 -07002544 task_unlock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07002545 if (cg)
Paul Menage81a6a5c2007-10-18 23:39:38 -07002546 put_css_set_taskexit(cg);
Paul Menageb4f48b62007-10-18 23:39:33 -07002547}
Paul Menage697f4162007-10-18 23:39:34 -07002548
2549/**
2550 * cgroup_clone - duplicate the current cgroup in the hierarchy
2551 * that the given subsystem is attached to, and move this task into
2552 * the new child
2553 */
2554int cgroup_clone(struct task_struct *tsk, struct cgroup_subsys *subsys)
2555{
2556 struct dentry *dentry;
2557 int ret = 0;
2558 char nodename[MAX_CGROUP_TYPE_NAMELEN];
2559 struct cgroup *parent, *child;
2560 struct inode *inode;
2561 struct css_set *cg;
2562 struct cgroupfs_root *root;
2563 struct cgroup_subsys *ss;
2564
2565 /* We shouldn't be called by an unregistered subsystem */
2566 BUG_ON(!subsys->active);
2567
2568 /* First figure out what hierarchy and cgroup we're dealing
2569 * with, and pin them so we can drop cgroup_mutex */
2570 mutex_lock(&cgroup_mutex);
2571 again:
2572 root = subsys->root;
2573 if (root == &rootnode) {
2574 printk(KERN_INFO
2575 "Not cloning cgroup for unused subsystem %s\n",
2576 subsys->name);
2577 mutex_unlock(&cgroup_mutex);
2578 return 0;
2579 }
Paul Menage817929e2007-10-18 23:39:36 -07002580 cg = tsk->cgroups;
Paul Menage697f4162007-10-18 23:39:34 -07002581 parent = task_cgroup(tsk, subsys->subsys_id);
2582
2583 snprintf(nodename, MAX_CGROUP_TYPE_NAMELEN, "node_%d", tsk->pid);
2584
2585 /* Pin the hierarchy */
2586 atomic_inc(&parent->root->sb->s_active);
2587
Paul Menage817929e2007-10-18 23:39:36 -07002588 /* Keep the cgroup alive */
2589 get_css_set(cg);
Paul Menage697f4162007-10-18 23:39:34 -07002590 mutex_unlock(&cgroup_mutex);
2591
2592 /* Now do the VFS work to create a cgroup */
2593 inode = parent->dentry->d_inode;
2594
2595 /* Hold the parent directory mutex across this operation to
2596 * stop anyone else deleting the new cgroup */
2597 mutex_lock(&inode->i_mutex);
2598 dentry = lookup_one_len(nodename, parent->dentry, strlen(nodename));
2599 if (IS_ERR(dentry)) {
2600 printk(KERN_INFO
Diego Callejacfe36bd2007-11-14 16:58:54 -08002601 "cgroup: Couldn't allocate dentry for %s: %ld\n", nodename,
Paul Menage697f4162007-10-18 23:39:34 -07002602 PTR_ERR(dentry));
2603 ret = PTR_ERR(dentry);
2604 goto out_release;
2605 }
2606
2607 /* Create the cgroup directory, which also creates the cgroup */
2608 ret = vfs_mkdir(inode, dentry, S_IFDIR | 0755);
Paul Menagebd89aab2007-10-18 23:40:44 -07002609 child = __d_cgrp(dentry);
Paul Menage697f4162007-10-18 23:39:34 -07002610 dput(dentry);
2611 if (ret) {
2612 printk(KERN_INFO
2613 "Failed to create cgroup %s: %d\n", nodename,
2614 ret);
2615 goto out_release;
2616 }
2617
2618 if (!child) {
2619 printk(KERN_INFO
2620 "Couldn't find new cgroup %s\n", nodename);
2621 ret = -ENOMEM;
2622 goto out_release;
2623 }
2624
2625 /* The cgroup now exists. Retake cgroup_mutex and check
2626 * that we're still in the same state that we thought we
2627 * were. */
2628 mutex_lock(&cgroup_mutex);
2629 if ((root != subsys->root) ||
2630 (parent != task_cgroup(tsk, subsys->subsys_id))) {
2631 /* Aargh, we raced ... */
2632 mutex_unlock(&inode->i_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07002633 put_css_set(cg);
Paul Menage697f4162007-10-18 23:39:34 -07002634
2635 deactivate_super(parent->root->sb);
2636 /* The cgroup is still accessible in the VFS, but
2637 * we're not going to try to rmdir() it at this
2638 * point. */
2639 printk(KERN_INFO
2640 "Race in cgroup_clone() - leaking cgroup %s\n",
2641 nodename);
2642 goto again;
2643 }
2644
2645 /* do any required auto-setup */
2646 for_each_subsys(root, ss) {
2647 if (ss->post_clone)
2648 ss->post_clone(ss, child);
2649 }
2650
2651 /* All seems fine. Finish by moving the task into the new cgroup */
2652 ret = attach_task(child, tsk);
2653 mutex_unlock(&cgroup_mutex);
2654
2655 out_release:
2656 mutex_unlock(&inode->i_mutex);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002657
2658 mutex_lock(&cgroup_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07002659 put_css_set(cg);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002660 mutex_unlock(&cgroup_mutex);
Paul Menage697f4162007-10-18 23:39:34 -07002661 deactivate_super(parent->root->sb);
2662 return ret;
2663}
2664
2665/*
Paul Menagebd89aab2007-10-18 23:40:44 -07002666 * See if "cgrp" is a descendant of the current task's cgroup in
Paul Menage697f4162007-10-18 23:39:34 -07002667 * the appropriate hierarchy
2668 *
2669 * If we are sending in dummytop, then presumably we are creating
2670 * the top cgroup in the subsystem.
2671 *
2672 * Called only by the ns (nsproxy) cgroup.
2673 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002674int cgroup_is_descendant(const struct cgroup *cgrp)
Paul Menage697f4162007-10-18 23:39:34 -07002675{
2676 int ret;
2677 struct cgroup *target;
2678 int subsys_id;
2679
Paul Menagebd89aab2007-10-18 23:40:44 -07002680 if (cgrp == dummytop)
Paul Menage697f4162007-10-18 23:39:34 -07002681 return 1;
2682
Paul Menagebd89aab2007-10-18 23:40:44 -07002683 get_first_subsys(cgrp, NULL, &subsys_id);
Paul Menage697f4162007-10-18 23:39:34 -07002684 target = task_cgroup(current, subsys_id);
Paul Menagebd89aab2007-10-18 23:40:44 -07002685 while (cgrp != target && cgrp!= cgrp->top_cgroup)
2686 cgrp = cgrp->parent;
2687 ret = (cgrp == target);
Paul Menage697f4162007-10-18 23:39:34 -07002688 return ret;
2689}
Paul Menage81a6a5c2007-10-18 23:39:38 -07002690
Paul Menagebd89aab2007-10-18 23:40:44 -07002691static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07002692{
2693 /* All of these checks rely on RCU to keep the cgroup
2694 * structure alive */
Paul Menagebd89aab2007-10-18 23:40:44 -07002695 if (cgroup_is_releasable(cgrp) && !atomic_read(&cgrp->count)
2696 && list_empty(&cgrp->children) && !cgroup_has_css_refs(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07002697 /* Control Group is currently removeable. If it's not
2698 * already queued for a userspace notification, queue
2699 * it now */
2700 int need_schedule_work = 0;
2701 spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07002702 if (!cgroup_is_removed(cgrp) &&
2703 list_empty(&cgrp->release_list)) {
2704 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002705 need_schedule_work = 1;
2706 }
2707 spin_unlock(&release_list_lock);
2708 if (need_schedule_work)
2709 schedule_work(&release_agent_work);
2710 }
2711}
2712
2713void __css_put(struct cgroup_subsys_state *css)
2714{
Paul Menagebd89aab2007-10-18 23:40:44 -07002715 struct cgroup *cgrp = css->cgroup;
Paul Menage81a6a5c2007-10-18 23:39:38 -07002716 rcu_read_lock();
Paul Menagebd89aab2007-10-18 23:40:44 -07002717 if (atomic_dec_and_test(&css->refcnt) && notify_on_release(cgrp)) {
2718 set_bit(CGRP_RELEASABLE, &cgrp->flags);
2719 check_for_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002720 }
2721 rcu_read_unlock();
2722}
2723
2724/*
2725 * Notify userspace when a cgroup is released, by running the
2726 * configured release agent with the name of the cgroup (path
2727 * relative to the root of cgroup file system) as the argument.
2728 *
2729 * Most likely, this user command will try to rmdir this cgroup.
2730 *
2731 * This races with the possibility that some other task will be
2732 * attached to this cgroup before it is removed, or that some other
2733 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
2734 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
2735 * unused, and this cgroup will be reprieved from its death sentence,
2736 * to continue to serve a useful existence. Next time it's released,
2737 * we will get notified again, if it still has 'notify_on_release' set.
2738 *
2739 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
2740 * means only wait until the task is successfully execve()'d. The
2741 * separate release agent task is forked by call_usermodehelper(),
2742 * then control in this thread returns here, without waiting for the
2743 * release agent task. We don't bother to wait because the caller of
2744 * this routine has no use for the exit status of the release agent
2745 * task, so no sense holding our caller up for that.
2746 *
2747 */
2748
2749static void cgroup_release_agent(struct work_struct *work)
2750{
2751 BUG_ON(work != &release_agent_work);
2752 mutex_lock(&cgroup_mutex);
2753 spin_lock(&release_list_lock);
2754 while (!list_empty(&release_list)) {
2755 char *argv[3], *envp[3];
2756 int i;
2757 char *pathbuf;
Paul Menagebd89aab2007-10-18 23:40:44 -07002758 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07002759 struct cgroup,
2760 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07002761 list_del_init(&cgrp->release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002762 spin_unlock(&release_list_lock);
2763 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
2764 if (!pathbuf) {
2765 spin_lock(&release_list_lock);
2766 continue;
2767 }
2768
Paul Menagebd89aab2007-10-18 23:40:44 -07002769 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07002770 kfree(pathbuf);
2771 spin_lock(&release_list_lock);
2772 continue;
2773 }
2774
2775 i = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07002776 argv[i++] = cgrp->root->release_agent_path;
Paul Menage81a6a5c2007-10-18 23:39:38 -07002777 argv[i++] = (char *)pathbuf;
2778 argv[i] = NULL;
2779
2780 i = 0;
2781 /* minimal command environment */
2782 envp[i++] = "HOME=/";
2783 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
2784 envp[i] = NULL;
2785
2786 /* Drop the lock while we invoke the usermode helper,
2787 * since the exec could involve hitting disk and hence
2788 * be a slow process */
2789 mutex_unlock(&cgroup_mutex);
2790 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
2791 kfree(pathbuf);
2792 mutex_lock(&cgroup_mutex);
2793 spin_lock(&release_list_lock);
2794 }
2795 spin_unlock(&release_list_lock);
2796 mutex_unlock(&cgroup_mutex);
2797}