blob: 57afdde871ac2d2fc30490c4b0aacbc2eac28d57 [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
Li Zefana043e3b2008-02-23 15:24:09 -0800116 * check for fork/exit handlers to call. This avoids us having to do
117 * extra work in the fork/exit path if none of the subsystems need to
118 * be called.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700119 */
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 */
Paul Menage817929e2007-10-18 23:39:36 -0700310static struct css_set *find_existing_css_set(
311 struct css_set *oldcg,
Paul Menagebd89aab2007-10-18 23:40:44 -0700312 struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -0700313 struct cgroup_subsys_state *template[])
314{
315 int i;
Paul Menagebd89aab2007-10-18 23:40:44 -0700316 struct cgroupfs_root *root = cgrp->root;
Paul Menage817929e2007-10-18 23:39:36 -0700317 struct list_head *l = &init_css_set.list;
318
319 /* Built the set of subsystem state objects that we want to
320 * see in the new css_set */
321 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Li Zefan8d53d552008-02-23 15:24:11 -0800322 if (root->subsys_bits & (1UL << i)) {
Paul Menage817929e2007-10-18 23:39:36 -0700323 /* Subsystem is in this hierarchy. So we want
324 * the subsystem state from the new
325 * cgroup */
Paul Menagebd89aab2007-10-18 23:40:44 -0700326 template[i] = cgrp->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700327 } else {
328 /* Subsystem is not in this hierarchy, so we
329 * don't want to change the subsystem state */
330 template[i] = oldcg->subsys[i];
331 }
332 }
333
334 /* Look through existing cgroup groups to find one to reuse */
335 do {
336 struct css_set *cg =
337 list_entry(l, struct css_set, list);
338
339 if (!memcmp(template, cg->subsys, sizeof(cg->subsys))) {
340 /* All subsystems matched */
341 return cg;
342 }
343 /* Try the next cgroup group */
344 l = l->next;
345 } while (l != &init_css_set.list);
346
347 /* No existing cgroup group matched */
348 return NULL;
349}
350
351/*
352 * allocate_cg_links() allocates "count" cg_cgroup_link structures
Paul Menagebd89aab2007-10-18 23:40:44 -0700353 * and chains them on tmp through their cgrp_link_list fields. Returns 0 on
Paul Menage817929e2007-10-18 23:39:36 -0700354 * success or a negative error
355 */
Paul Menage817929e2007-10-18 23:39:36 -0700356static int allocate_cg_links(int count, struct list_head *tmp)
357{
358 struct cg_cgroup_link *link;
359 int i;
360 INIT_LIST_HEAD(tmp);
361 for (i = 0; i < count; i++) {
362 link = kmalloc(sizeof(*link), GFP_KERNEL);
363 if (!link) {
364 while (!list_empty(tmp)) {
365 link = list_entry(tmp->next,
366 struct cg_cgroup_link,
Paul Menagebd89aab2007-10-18 23:40:44 -0700367 cgrp_link_list);
368 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -0700369 kfree(link);
370 }
371 return -ENOMEM;
372 }
Paul Menagebd89aab2007-10-18 23:40:44 -0700373 list_add(&link->cgrp_link_list, tmp);
Paul Menage817929e2007-10-18 23:39:36 -0700374 }
375 return 0;
376}
377
378static void free_cg_links(struct list_head *tmp)
379{
380 while (!list_empty(tmp)) {
381 struct cg_cgroup_link *link;
382 link = list_entry(tmp->next,
383 struct cg_cgroup_link,
Paul Menagebd89aab2007-10-18 23:40:44 -0700384 cgrp_link_list);
385 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -0700386 kfree(link);
387 }
388}
389
390/*
391 * find_css_set() takes an existing cgroup group and a
392 * cgroup object, and returns a css_set object that's
393 * equivalent to the old group, but with the given cgroup
394 * substituted into the appropriate hierarchy. Must be called with
395 * cgroup_mutex held
396 */
Paul Menage817929e2007-10-18 23:39:36 -0700397static struct css_set *find_css_set(
Paul Menagebd89aab2007-10-18 23:40:44 -0700398 struct css_set *oldcg, struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700399{
400 struct css_set *res;
401 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT];
402 int i;
403
404 struct list_head tmp_cg_links;
405 struct cg_cgroup_link *link;
406
407 /* First see if we already have a cgroup group that matches
408 * the desired set */
409 write_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -0700410 res = find_existing_css_set(oldcg, cgrp, template);
Paul Menage817929e2007-10-18 23:39:36 -0700411 if (res)
412 get_css_set(res);
413 write_unlock(&css_set_lock);
414
415 if (res)
416 return res;
417
418 res = kmalloc(sizeof(*res), GFP_KERNEL);
419 if (!res)
420 return NULL;
421
422 /* Allocate all the cg_cgroup_link objects that we'll need */
423 if (allocate_cg_links(root_count, &tmp_cg_links) < 0) {
424 kfree(res);
425 return NULL;
426 }
427
428 kref_init(&res->ref);
429 INIT_LIST_HEAD(&res->cg_links);
430 INIT_LIST_HEAD(&res->tasks);
431
432 /* Copy the set of subsystem state objects generated in
433 * find_existing_css_set() */
434 memcpy(res->subsys, template, sizeof(res->subsys));
435
436 write_lock(&css_set_lock);
437 /* Add reference counts and links from the new css_set. */
438 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700439 struct cgroup *cgrp = res->subsys[i]->cgroup;
Paul Menage817929e2007-10-18 23:39:36 -0700440 struct cgroup_subsys *ss = subsys[i];
Paul Menagebd89aab2007-10-18 23:40:44 -0700441 atomic_inc(&cgrp->count);
Paul Menage817929e2007-10-18 23:39:36 -0700442 /*
443 * We want to add a link once per cgroup, so we
444 * only do it for the first subsystem in each
445 * hierarchy
446 */
447 if (ss->root->subsys_list.next == &ss->sibling) {
448 BUG_ON(list_empty(&tmp_cg_links));
449 link = list_entry(tmp_cg_links.next,
450 struct cg_cgroup_link,
Paul Menagebd89aab2007-10-18 23:40:44 -0700451 cgrp_link_list);
452 list_del(&link->cgrp_link_list);
453 list_add(&link->cgrp_link_list, &cgrp->css_sets);
Paul Menage817929e2007-10-18 23:39:36 -0700454 link->cg = res;
455 list_add(&link->cg_link_list, &res->cg_links);
456 }
457 }
458 if (list_empty(&rootnode.subsys_list)) {
459 link = list_entry(tmp_cg_links.next,
460 struct cg_cgroup_link,
Paul Menagebd89aab2007-10-18 23:40:44 -0700461 cgrp_link_list);
462 list_del(&link->cgrp_link_list);
463 list_add(&link->cgrp_link_list, &dummytop->css_sets);
Paul Menage817929e2007-10-18 23:39:36 -0700464 link->cg = res;
465 list_add(&link->cg_link_list, &res->cg_links);
466 }
467
468 BUG_ON(!list_empty(&tmp_cg_links));
469
470 /* Link this cgroup group into the list */
471 list_add(&res->list, &init_css_set.list);
472 css_set_count++;
Paul Menage817929e2007-10-18 23:39:36 -0700473 write_unlock(&css_set_lock);
474
475 return res;
Paul Menageb4f48b62007-10-18 23:39:33 -0700476}
477
Paul Menageddbcc7e2007-10-18 23:39:30 -0700478/*
479 * There is one global cgroup mutex. We also require taking
480 * task_lock() when dereferencing a task's cgroup subsys pointers.
481 * See "The task_lock() exception", at the end of this comment.
482 *
483 * A task must hold cgroup_mutex to modify cgroups.
484 *
485 * Any task can increment and decrement the count field without lock.
486 * So in general, code holding cgroup_mutex can't rely on the count
487 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -0800488 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -0700489 * means that no tasks are currently attached, therefore there is no
490 * way a task attached to that cgroup can fork (the other way to
491 * increment the count). So code holding cgroup_mutex can safely
492 * assume that if the count is zero, it will stay zero. Similarly, if
493 * a task holds cgroup_mutex on a cgroup with zero count, it
494 * knows that the cgroup won't be removed, as cgroup_rmdir()
495 * needs that mutex.
496 *
497 * The cgroup_common_file_write handler for operations that modify
498 * the cgroup hierarchy holds cgroup_mutex across the entire operation,
499 * single threading all such cgroup modifications across the system.
500 *
501 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
502 * (usually) take cgroup_mutex. These are the two most performance
503 * critical pieces of code here. The exception occurs on cgroup_exit(),
504 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
505 * is taken, and if the cgroup count is zero, a usermode call made
Li Zefana043e3b2008-02-23 15:24:09 -0800506 * to the release agent with the name of the cgroup (path relative to
507 * the root of cgroup file system) as the argument.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700508 *
509 * A cgroup can only be deleted if both its 'count' of using tasks
510 * is zero, and its list of 'children' cgroups is empty. Since all
511 * tasks in the system use _some_ cgroup, and since there is always at
512 * least one task in the system (init, pid == 1), therefore, top_cgroup
513 * always has either children cgroups and/or using tasks. So we don't
514 * need a special hack to ensure that top_cgroup cannot be deleted.
515 *
516 * The task_lock() exception
517 *
518 * The need for this exception arises from the action of
Cliff Wickman956db3c2008-02-07 00:14:43 -0800519 * cgroup_attach_task(), which overwrites one tasks cgroup pointer with
Li Zefana043e3b2008-02-23 15:24:09 -0800520 * another. It does so using cgroup_mutex, however there are
Paul Menageddbcc7e2007-10-18 23:39:30 -0700521 * several performance critical places that need to reference
522 * task->cgroup without the expense of grabbing a system global
523 * mutex. Therefore except as noted below, when dereferencing or, as
Cliff Wickman956db3c2008-02-07 00:14:43 -0800524 * in cgroup_attach_task(), modifying a task'ss cgroup pointer we use
Paul Menageddbcc7e2007-10-18 23:39:30 -0700525 * task_lock(), which acts on a spinlock (task->alloc_lock) already in
526 * the task_struct routinely used for such matters.
527 *
528 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -0800529 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700530 */
531
Paul Menageddbcc7e2007-10-18 23:39:30 -0700532/**
533 * cgroup_lock - lock out any changes to cgroup structures
534 *
535 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700536void cgroup_lock(void)
537{
538 mutex_lock(&cgroup_mutex);
539}
540
541/**
542 * cgroup_unlock - release lock on cgroup changes
543 *
544 * Undo the lock taken in a previous cgroup_lock() call.
545 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700546void cgroup_unlock(void)
547{
548 mutex_unlock(&cgroup_mutex);
549}
550
551/*
552 * A couple of forward declarations required, due to cyclic reference loop:
553 * cgroup_mkdir -> cgroup_create -> cgroup_populate_dir ->
554 * cgroup_add_file -> cgroup_create_file -> cgroup_dir_inode_operations
555 * -> cgroup_mkdir.
556 */
557
558static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode);
559static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -0700560static int cgroup_populate_dir(struct cgroup *cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700561static struct inode_operations cgroup_dir_inode_operations;
Paul Menagea4243162007-10-18 23:39:35 -0700562static struct file_operations proc_cgroupstats_operations;
563
564static struct backing_dev_info cgroup_backing_dev_info = {
565 .capabilities = BDI_CAP_NO_ACCT_DIRTY | BDI_CAP_NO_WRITEBACK,
566};
Paul Menageddbcc7e2007-10-18 23:39:30 -0700567
568static struct inode *cgroup_new_inode(mode_t mode, struct super_block *sb)
569{
570 struct inode *inode = new_inode(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700571
572 if (inode) {
573 inode->i_mode = mode;
574 inode->i_uid = current->fsuid;
575 inode->i_gid = current->fsgid;
576 inode->i_blocks = 0;
577 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
578 inode->i_mapping->backing_dev_info = &cgroup_backing_dev_info;
579 }
580 return inode;
581}
582
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800583/*
584 * Call subsys's pre_destroy handler.
585 * This is called before css refcnt check.
586 */
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800587static void cgroup_call_pre_destroy(struct cgroup *cgrp)
588{
589 struct cgroup_subsys *ss;
590 for_each_subsys(cgrp->root, ss)
591 if (ss->pre_destroy && cgrp->subsys[ss->subsys_id])
592 ss->pre_destroy(ss, cgrp);
593 return;
594}
595
Paul Menageddbcc7e2007-10-18 23:39:30 -0700596static void cgroup_diput(struct dentry *dentry, struct inode *inode)
597{
598 /* is dentry a directory ? if so, kfree() associated cgroup */
599 if (S_ISDIR(inode->i_mode)) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700600 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800601 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -0700602 BUG_ON(!(cgroup_is_removed(cgrp)));
Paul Menage81a6a5c2007-10-18 23:39:38 -0700603 /* It's possible for external users to be holding css
604 * reference counts on a cgroup; css_put() needs to
605 * be able to access the cgroup after decrementing
606 * the reference count in order to know if it needs to
607 * queue the cgroup to be handled by the release
608 * agent */
609 synchronize_rcu();
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800610
611 mutex_lock(&cgroup_mutex);
612 /*
613 * Release the subsystem state objects.
614 */
615 for_each_subsys(cgrp->root, ss) {
616 if (cgrp->subsys[ss->subsys_id])
617 ss->destroy(ss, cgrp);
618 }
619
620 cgrp->root->number_of_cgroups--;
621 mutex_unlock(&cgroup_mutex);
622
623 /* Drop the active superblock reference that we took when we
624 * created the cgroup */
625 deactivate_super(cgrp->root->sb);
626
Paul Menagebd89aab2007-10-18 23:40:44 -0700627 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700628 }
629 iput(inode);
630}
631
632static void remove_dir(struct dentry *d)
633{
634 struct dentry *parent = dget(d->d_parent);
635
636 d_delete(d);
637 simple_rmdir(parent->d_inode, d);
638 dput(parent);
639}
640
641static void cgroup_clear_directory(struct dentry *dentry)
642{
643 struct list_head *node;
644
645 BUG_ON(!mutex_is_locked(&dentry->d_inode->i_mutex));
646 spin_lock(&dcache_lock);
647 node = dentry->d_subdirs.next;
648 while (node != &dentry->d_subdirs) {
649 struct dentry *d = list_entry(node, struct dentry, d_u.d_child);
650 list_del_init(node);
651 if (d->d_inode) {
652 /* This should never be called on a cgroup
653 * directory with child cgroups */
654 BUG_ON(d->d_inode->i_mode & S_IFDIR);
655 d = dget_locked(d);
656 spin_unlock(&dcache_lock);
657 d_delete(d);
658 simple_unlink(dentry->d_inode, d);
659 dput(d);
660 spin_lock(&dcache_lock);
661 }
662 node = dentry->d_subdirs.next;
663 }
664 spin_unlock(&dcache_lock);
665}
666
667/*
668 * NOTE : the dentry must have been dget()'ed
669 */
670static void cgroup_d_remove_dir(struct dentry *dentry)
671{
672 cgroup_clear_directory(dentry);
673
674 spin_lock(&dcache_lock);
675 list_del_init(&dentry->d_u.d_child);
676 spin_unlock(&dcache_lock);
677 remove_dir(dentry);
678}
679
680static int rebind_subsystems(struct cgroupfs_root *root,
681 unsigned long final_bits)
682{
683 unsigned long added_bits, removed_bits;
Paul Menagebd89aab2007-10-18 23:40:44 -0700684 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700685 int i;
686
687 removed_bits = root->actual_subsys_bits & ~final_bits;
688 added_bits = final_bits & ~root->actual_subsys_bits;
689 /* Check that any added subsystems are currently free */
690 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Li Zefan8d53d552008-02-23 15:24:11 -0800691 unsigned long bit = 1UL << i;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700692 struct cgroup_subsys *ss = subsys[i];
693 if (!(bit & added_bits))
694 continue;
695 if (ss->root != &rootnode) {
696 /* Subsystem isn't free */
697 return -EBUSY;
698 }
699 }
700
701 /* Currently we don't handle adding/removing subsystems when
702 * any child cgroups exist. This is theoretically supportable
703 * but involves complex error handling, so it's being left until
704 * later */
Paul Menagebd89aab2007-10-18 23:40:44 -0700705 if (!list_empty(&cgrp->children))
Paul Menageddbcc7e2007-10-18 23:39:30 -0700706 return -EBUSY;
707
708 /* Process each subsystem */
709 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
710 struct cgroup_subsys *ss = subsys[i];
711 unsigned long bit = 1UL << i;
712 if (bit & added_bits) {
713 /* We're binding this subsystem to this hierarchy */
Paul Menagebd89aab2007-10-18 23:40:44 -0700714 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700715 BUG_ON(!dummytop->subsys[i]);
716 BUG_ON(dummytop->subsys[i]->cgroup != dummytop);
Paul Menagebd89aab2007-10-18 23:40:44 -0700717 cgrp->subsys[i] = dummytop->subsys[i];
718 cgrp->subsys[i]->cgroup = cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700719 list_add(&ss->sibling, &root->subsys_list);
720 rcu_assign_pointer(ss->root, root);
721 if (ss->bind)
Paul Menagebd89aab2007-10-18 23:40:44 -0700722 ss->bind(ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700723
724 } else if (bit & removed_bits) {
725 /* We're removing this subsystem */
Paul Menagebd89aab2007-10-18 23:40:44 -0700726 BUG_ON(cgrp->subsys[i] != dummytop->subsys[i]);
727 BUG_ON(cgrp->subsys[i]->cgroup != cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700728 if (ss->bind)
729 ss->bind(ss, dummytop);
730 dummytop->subsys[i]->cgroup = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -0700731 cgrp->subsys[i] = NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700732 rcu_assign_pointer(subsys[i]->root, &rootnode);
733 list_del(&ss->sibling);
734 } else if (bit & final_bits) {
735 /* Subsystem state should already exist */
Paul Menagebd89aab2007-10-18 23:40:44 -0700736 BUG_ON(!cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700737 } else {
738 /* Subsystem state shouldn't exist */
Paul Menagebd89aab2007-10-18 23:40:44 -0700739 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700740 }
741 }
742 root->subsys_bits = root->actual_subsys_bits = final_bits;
743 synchronize_rcu();
744
745 return 0;
746}
747
748static int cgroup_show_options(struct seq_file *seq, struct vfsmount *vfs)
749{
750 struct cgroupfs_root *root = vfs->mnt_sb->s_fs_info;
751 struct cgroup_subsys *ss;
752
753 mutex_lock(&cgroup_mutex);
754 for_each_subsys(root, ss)
755 seq_printf(seq, ",%s", ss->name);
756 if (test_bit(ROOT_NOPREFIX, &root->flags))
757 seq_puts(seq, ",noprefix");
Paul Menage81a6a5c2007-10-18 23:39:38 -0700758 if (strlen(root->release_agent_path))
759 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700760 mutex_unlock(&cgroup_mutex);
761 return 0;
762}
763
764struct cgroup_sb_opts {
765 unsigned long subsys_bits;
766 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700767 char *release_agent;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700768};
769
770/* Convert a hierarchy specifier into a bitmask of subsystems and
771 * flags. */
772static int parse_cgroupfs_options(char *data,
773 struct cgroup_sb_opts *opts)
774{
775 char *token, *o = data ?: "all";
776
777 opts->subsys_bits = 0;
778 opts->flags = 0;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700779 opts->release_agent = NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700780
781 while ((token = strsep(&o, ",")) != NULL) {
782 if (!*token)
783 return -EINVAL;
784 if (!strcmp(token, "all")) {
Paul Menage8bab8dd2008-04-04 14:29:57 -0700785 /* Add all non-disabled subsystems */
786 int i;
787 opts->subsys_bits = 0;
788 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
789 struct cgroup_subsys *ss = subsys[i];
790 if (!ss->disabled)
791 opts->subsys_bits |= 1ul << i;
792 }
Paul Menageddbcc7e2007-10-18 23:39:30 -0700793 } else if (!strcmp(token, "noprefix")) {
794 set_bit(ROOT_NOPREFIX, &opts->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700795 } else if (!strncmp(token, "release_agent=", 14)) {
796 /* Specifying two release agents is forbidden */
797 if (opts->release_agent)
798 return -EINVAL;
799 opts->release_agent = kzalloc(PATH_MAX, GFP_KERNEL);
800 if (!opts->release_agent)
801 return -ENOMEM;
802 strncpy(opts->release_agent, token + 14, PATH_MAX - 1);
803 opts->release_agent[PATH_MAX - 1] = 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700804 } else {
805 struct cgroup_subsys *ss;
806 int i;
807 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
808 ss = subsys[i];
809 if (!strcmp(token, ss->name)) {
Paul Menage8bab8dd2008-04-04 14:29:57 -0700810 if (!ss->disabled)
811 set_bit(i, &opts->subsys_bits);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700812 break;
813 }
814 }
815 if (i == CGROUP_SUBSYS_COUNT)
816 return -ENOENT;
817 }
818 }
819
820 /* We can't have an empty hierarchy */
821 if (!opts->subsys_bits)
822 return -EINVAL;
823
824 return 0;
825}
826
827static int cgroup_remount(struct super_block *sb, int *flags, char *data)
828{
829 int ret = 0;
830 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -0700831 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700832 struct cgroup_sb_opts opts;
833
Paul Menagebd89aab2007-10-18 23:40:44 -0700834 mutex_lock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700835 mutex_lock(&cgroup_mutex);
836
837 /* See what subsystems are wanted */
838 ret = parse_cgroupfs_options(data, &opts);
839 if (ret)
840 goto out_unlock;
841
842 /* Don't allow flags to change at remount */
843 if (opts.flags != root->flags) {
844 ret = -EINVAL;
845 goto out_unlock;
846 }
847
848 ret = rebind_subsystems(root, opts.subsys_bits);
849
850 /* (re)populate subsystem files */
851 if (!ret)
Paul Menagebd89aab2007-10-18 23:40:44 -0700852 cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700853
Paul Menage81a6a5c2007-10-18 23:39:38 -0700854 if (opts.release_agent)
855 strcpy(root->release_agent_path, opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700856 out_unlock:
Paul Menage81a6a5c2007-10-18 23:39:38 -0700857 if (opts.release_agent)
858 kfree(opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700859 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -0700860 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700861 return ret;
862}
863
864static struct super_operations cgroup_ops = {
865 .statfs = simple_statfs,
866 .drop_inode = generic_delete_inode,
867 .show_options = cgroup_show_options,
868 .remount_fs = cgroup_remount,
869};
870
871static void init_cgroup_root(struct cgroupfs_root *root)
872{
Paul Menagebd89aab2007-10-18 23:40:44 -0700873 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700874 INIT_LIST_HEAD(&root->subsys_list);
875 INIT_LIST_HEAD(&root->root_list);
876 root->number_of_cgroups = 1;
Paul Menagebd89aab2007-10-18 23:40:44 -0700877 cgrp->root = root;
878 cgrp->top_cgroup = cgrp;
879 INIT_LIST_HEAD(&cgrp->sibling);
880 INIT_LIST_HEAD(&cgrp->children);
881 INIT_LIST_HEAD(&cgrp->css_sets);
882 INIT_LIST_HEAD(&cgrp->release_list);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700883}
884
885static int cgroup_test_super(struct super_block *sb, void *data)
886{
887 struct cgroupfs_root *new = data;
888 struct cgroupfs_root *root = sb->s_fs_info;
889
890 /* First check subsystems */
891 if (new->subsys_bits != root->subsys_bits)
892 return 0;
893
894 /* Next check flags */
895 if (new->flags != root->flags)
896 return 0;
897
898 return 1;
899}
900
901static int cgroup_set_super(struct super_block *sb, void *data)
902{
903 int ret;
904 struct cgroupfs_root *root = data;
905
906 ret = set_anon_super(sb, NULL);
907 if (ret)
908 return ret;
909
910 sb->s_fs_info = root;
911 root->sb = sb;
912
913 sb->s_blocksize = PAGE_CACHE_SIZE;
914 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
915 sb->s_magic = CGROUP_SUPER_MAGIC;
916 sb->s_op = &cgroup_ops;
917
918 return 0;
919}
920
921static int cgroup_get_rootdir(struct super_block *sb)
922{
923 struct inode *inode =
924 cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb);
925 struct dentry *dentry;
926
927 if (!inode)
928 return -ENOMEM;
929
Paul Menageddbcc7e2007-10-18 23:39:30 -0700930 inode->i_fop = &simple_dir_operations;
931 inode->i_op = &cgroup_dir_inode_operations;
932 /* directories start off with i_nlink == 2 (for "." entry) */
933 inc_nlink(inode);
934 dentry = d_alloc_root(inode);
935 if (!dentry) {
936 iput(inode);
937 return -ENOMEM;
938 }
939 sb->s_root = dentry;
940 return 0;
941}
942
943static int cgroup_get_sb(struct file_system_type *fs_type,
944 int flags, const char *unused_dev_name,
945 void *data, struct vfsmount *mnt)
946{
947 struct cgroup_sb_opts opts;
948 int ret = 0;
949 struct super_block *sb;
950 struct cgroupfs_root *root;
Paul Menage817929e2007-10-18 23:39:36 -0700951 struct list_head tmp_cg_links, *l;
952 INIT_LIST_HEAD(&tmp_cg_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700953
954 /* First find the desired set of subsystems */
955 ret = parse_cgroupfs_options(data, &opts);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700956 if (ret) {
957 if (opts.release_agent)
958 kfree(opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700959 return ret;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700960 }
Paul Menageddbcc7e2007-10-18 23:39:30 -0700961
962 root = kzalloc(sizeof(*root), GFP_KERNEL);
Li Zefanf7770732008-02-23 15:24:10 -0800963 if (!root) {
964 if (opts.release_agent)
965 kfree(opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700966 return -ENOMEM;
Li Zefanf7770732008-02-23 15:24:10 -0800967 }
Paul Menageddbcc7e2007-10-18 23:39:30 -0700968
969 init_cgroup_root(root);
970 root->subsys_bits = opts.subsys_bits;
971 root->flags = opts.flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700972 if (opts.release_agent) {
973 strcpy(root->release_agent_path, opts.release_agent);
974 kfree(opts.release_agent);
975 }
Paul Menageddbcc7e2007-10-18 23:39:30 -0700976
977 sb = sget(fs_type, cgroup_test_super, cgroup_set_super, root);
978
979 if (IS_ERR(sb)) {
980 kfree(root);
981 return PTR_ERR(sb);
982 }
983
984 if (sb->s_fs_info != root) {
985 /* Reusing an existing superblock */
986 BUG_ON(sb->s_root == NULL);
987 kfree(root);
988 root = NULL;
989 } else {
990 /* New superblock */
Paul Menagebd89aab2007-10-18 23:40:44 -0700991 struct cgroup *cgrp = &root->top_cgroup;
Paul Menage817929e2007-10-18 23:39:36 -0700992 struct inode *inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700993
994 BUG_ON(sb->s_root != NULL);
995
996 ret = cgroup_get_rootdir(sb);
997 if (ret)
998 goto drop_new_super;
Paul Menage817929e2007-10-18 23:39:36 -0700999 inode = sb->s_root->d_inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001000
Paul Menage817929e2007-10-18 23:39:36 -07001001 mutex_lock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001002 mutex_lock(&cgroup_mutex);
1003
Paul Menage817929e2007-10-18 23:39:36 -07001004 /*
1005 * We're accessing css_set_count without locking
1006 * css_set_lock here, but that's OK - it can only be
1007 * increased by someone holding cgroup_lock, and
1008 * that's us. The worst that can happen is that we
1009 * have some link structures left over
1010 */
1011 ret = allocate_cg_links(css_set_count, &tmp_cg_links);
1012 if (ret) {
1013 mutex_unlock(&cgroup_mutex);
1014 mutex_unlock(&inode->i_mutex);
1015 goto drop_new_super;
1016 }
1017
Paul Menageddbcc7e2007-10-18 23:39:30 -07001018 ret = rebind_subsystems(root, root->subsys_bits);
1019 if (ret == -EBUSY) {
1020 mutex_unlock(&cgroup_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07001021 mutex_unlock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001022 goto drop_new_super;
1023 }
1024
1025 /* EBUSY should be the only error here */
1026 BUG_ON(ret);
1027
1028 list_add(&root->root_list, &roots);
Paul Menage817929e2007-10-18 23:39:36 -07001029 root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001030
1031 sb->s_root->d_fsdata = &root->top_cgroup;
1032 root->top_cgroup.dentry = sb->s_root;
1033
Paul Menage817929e2007-10-18 23:39:36 -07001034 /* Link the top cgroup in this hierarchy into all
1035 * the css_set objects */
1036 write_lock(&css_set_lock);
1037 l = &init_css_set.list;
1038 do {
1039 struct css_set *cg;
1040 struct cg_cgroup_link *link;
1041 cg = list_entry(l, struct css_set, list);
1042 BUG_ON(list_empty(&tmp_cg_links));
1043 link = list_entry(tmp_cg_links.next,
1044 struct cg_cgroup_link,
Paul Menagebd89aab2007-10-18 23:40:44 -07001045 cgrp_link_list);
1046 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001047 link->cg = cg;
Paul Menagebd89aab2007-10-18 23:40:44 -07001048 list_add(&link->cgrp_link_list,
Paul Menage817929e2007-10-18 23:39:36 -07001049 &root->top_cgroup.css_sets);
1050 list_add(&link->cg_link_list, &cg->cg_links);
1051 l = l->next;
1052 } while (l != &init_css_set.list);
1053 write_unlock(&css_set_lock);
1054
1055 free_cg_links(&tmp_cg_links);
1056
Paul Menagebd89aab2007-10-18 23:40:44 -07001057 BUG_ON(!list_empty(&cgrp->sibling));
1058 BUG_ON(!list_empty(&cgrp->children));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001059 BUG_ON(root->number_of_cgroups != 1);
1060
Paul Menagebd89aab2007-10-18 23:40:44 -07001061 cgroup_populate_dir(cgrp);
Paul Menage817929e2007-10-18 23:39:36 -07001062 mutex_unlock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001063 mutex_unlock(&cgroup_mutex);
1064 }
1065
1066 return simple_set_mnt(mnt, sb);
1067
1068 drop_new_super:
1069 up_write(&sb->s_umount);
1070 deactivate_super(sb);
Paul Menage817929e2007-10-18 23:39:36 -07001071 free_cg_links(&tmp_cg_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001072 return ret;
1073}
1074
1075static void cgroup_kill_sb(struct super_block *sb) {
1076 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001077 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001078 int ret;
1079
1080 BUG_ON(!root);
1081
1082 BUG_ON(root->number_of_cgroups != 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001083 BUG_ON(!list_empty(&cgrp->children));
1084 BUG_ON(!list_empty(&cgrp->sibling));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001085
1086 mutex_lock(&cgroup_mutex);
1087
1088 /* Rebind all subsystems back to the default hierarchy */
1089 ret = rebind_subsystems(root, 0);
1090 /* Shouldn't be able to fail ... */
1091 BUG_ON(ret);
1092
Paul Menage817929e2007-10-18 23:39:36 -07001093 /*
1094 * Release all the links from css_sets to this hierarchy's
1095 * root cgroup
1096 */
1097 write_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07001098 while (!list_empty(&cgrp->css_sets)) {
Paul Menage817929e2007-10-18 23:39:36 -07001099 struct cg_cgroup_link *link;
Paul Menagebd89aab2007-10-18 23:40:44 -07001100 link = list_entry(cgrp->css_sets.next,
1101 struct cg_cgroup_link, cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001102 list_del(&link->cg_link_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07001103 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001104 kfree(link);
1105 }
1106 write_unlock(&css_set_lock);
1107
1108 if (!list_empty(&root->root_list)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001109 list_del(&root->root_list);
Paul Menage817929e2007-10-18 23:39:36 -07001110 root_count--;
1111 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001112 mutex_unlock(&cgroup_mutex);
1113
1114 kfree(root);
1115 kill_litter_super(sb);
1116}
1117
1118static struct file_system_type cgroup_fs_type = {
1119 .name = "cgroup",
1120 .get_sb = cgroup_get_sb,
1121 .kill_sb = cgroup_kill_sb,
1122};
1123
Paul Menagebd89aab2007-10-18 23:40:44 -07001124static inline struct cgroup *__d_cgrp(struct dentry *dentry)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001125{
1126 return dentry->d_fsdata;
1127}
1128
1129static inline struct cftype *__d_cft(struct dentry *dentry)
1130{
1131 return dentry->d_fsdata;
1132}
1133
Li Zefana043e3b2008-02-23 15:24:09 -08001134/**
1135 * cgroup_path - generate the path of a cgroup
1136 * @cgrp: the cgroup in question
1137 * @buf: the buffer to write the path into
1138 * @buflen: the length of the buffer
1139 *
1140 * Called with cgroup_mutex held. Writes path of cgroup into buf.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001141 * Returns 0 on success, -errno on error.
1142 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001143int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001144{
1145 char *start;
1146
Paul Menagebd89aab2007-10-18 23:40:44 -07001147 if (cgrp == dummytop) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001148 /*
1149 * Inactive subsystems have no dentry for their root
1150 * cgroup
1151 */
1152 strcpy(buf, "/");
1153 return 0;
1154 }
1155
1156 start = buf + buflen;
1157
1158 *--start = '\0';
1159 for (;;) {
Paul Menagebd89aab2007-10-18 23:40:44 -07001160 int len = cgrp->dentry->d_name.len;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001161 if ((start -= len) < buf)
1162 return -ENAMETOOLONG;
Paul Menagebd89aab2007-10-18 23:40:44 -07001163 memcpy(start, cgrp->dentry->d_name.name, len);
1164 cgrp = cgrp->parent;
1165 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001166 break;
Paul Menagebd89aab2007-10-18 23:40:44 -07001167 if (!cgrp->parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001168 continue;
1169 if (--start < buf)
1170 return -ENAMETOOLONG;
1171 *start = '/';
1172 }
1173 memmove(buf, start, buf + buflen - start);
1174 return 0;
1175}
1176
Paul Menagebbcb81d2007-10-18 23:39:32 -07001177/*
1178 * Return the first subsystem attached to a cgroup's hierarchy, and
1179 * its subsystem id.
1180 */
1181
Paul Menagebd89aab2007-10-18 23:40:44 -07001182static void get_first_subsys(const struct cgroup *cgrp,
Paul Menagebbcb81d2007-10-18 23:39:32 -07001183 struct cgroup_subsys_state **css, int *subsys_id)
1184{
Paul Menagebd89aab2007-10-18 23:40:44 -07001185 const struct cgroupfs_root *root = cgrp->root;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001186 const struct cgroup_subsys *test_ss;
1187 BUG_ON(list_empty(&root->subsys_list));
1188 test_ss = list_entry(root->subsys_list.next,
1189 struct cgroup_subsys, sibling);
1190 if (css) {
Paul Menagebd89aab2007-10-18 23:40:44 -07001191 *css = cgrp->subsys[test_ss->subsys_id];
Paul Menagebbcb81d2007-10-18 23:39:32 -07001192 BUG_ON(!*css);
1193 }
1194 if (subsys_id)
1195 *subsys_id = test_ss->subsys_id;
1196}
1197
Li Zefana043e3b2008-02-23 15:24:09 -08001198/**
1199 * cgroup_attach_task - attach task 'tsk' to cgroup 'cgrp'
1200 * @cgrp: the cgroup the task is attaching to
1201 * @tsk: the task to be attached
Paul Menagebbcb81d2007-10-18 23:39:32 -07001202 *
Li Zefana043e3b2008-02-23 15:24:09 -08001203 * Call holding cgroup_mutex. May take task_lock of
1204 * the task 'tsk' during call.
Paul Menagebbcb81d2007-10-18 23:39:32 -07001205 */
Cliff Wickman956db3c2008-02-07 00:14:43 -08001206int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001207{
1208 int retval = 0;
1209 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07001210 struct cgroup *oldcgrp;
Paul Menage817929e2007-10-18 23:39:36 -07001211 struct css_set *cg = tsk->cgroups;
1212 struct css_set *newcg;
Paul Menagebd89aab2007-10-18 23:40:44 -07001213 struct cgroupfs_root *root = cgrp->root;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001214 int subsys_id;
1215
Paul Menagebd89aab2007-10-18 23:40:44 -07001216 get_first_subsys(cgrp, NULL, &subsys_id);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001217
1218 /* Nothing to do if the task is already in that cgroup */
Paul Menagebd89aab2007-10-18 23:40:44 -07001219 oldcgrp = task_cgroup(tsk, subsys_id);
1220 if (cgrp == oldcgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001221 return 0;
1222
1223 for_each_subsys(root, ss) {
1224 if (ss->can_attach) {
Paul Menagebd89aab2007-10-18 23:40:44 -07001225 retval = ss->can_attach(ss, cgrp, tsk);
Paul Jacksone18f6312008-02-07 00:13:44 -08001226 if (retval)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001227 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001228 }
1229 }
1230
Paul Menage817929e2007-10-18 23:39:36 -07001231 /*
1232 * Locate or allocate a new css_set for this task,
1233 * based on its final set of cgroups
1234 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001235 newcg = find_css_set(cg, cgrp);
Paul Jacksone18f6312008-02-07 00:13:44 -08001236 if (!newcg)
Paul Menage817929e2007-10-18 23:39:36 -07001237 return -ENOMEM;
Paul Menage817929e2007-10-18 23:39:36 -07001238
Paul Menagebbcb81d2007-10-18 23:39:32 -07001239 task_lock(tsk);
1240 if (tsk->flags & PF_EXITING) {
1241 task_unlock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07001242 put_css_set(newcg);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001243 return -ESRCH;
1244 }
Paul Menage817929e2007-10-18 23:39:36 -07001245 rcu_assign_pointer(tsk->cgroups, newcg);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001246 task_unlock(tsk);
1247
Paul Menage817929e2007-10-18 23:39:36 -07001248 /* Update the css_set linked lists if we're using them */
1249 write_lock(&css_set_lock);
1250 if (!list_empty(&tsk->cg_list)) {
1251 list_del(&tsk->cg_list);
1252 list_add(&tsk->cg_list, &newcg->tasks);
1253 }
1254 write_unlock(&css_set_lock);
1255
Paul Menagebbcb81d2007-10-18 23:39:32 -07001256 for_each_subsys(root, ss) {
Paul Jacksone18f6312008-02-07 00:13:44 -08001257 if (ss->attach)
Paul Menagebd89aab2007-10-18 23:40:44 -07001258 ss->attach(ss, cgrp, oldcgrp, tsk);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001259 }
Paul Menagebd89aab2007-10-18 23:40:44 -07001260 set_bit(CGRP_RELEASABLE, &oldcgrp->flags);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001261 synchronize_rcu();
Paul Menage817929e2007-10-18 23:39:36 -07001262 put_css_set(cg);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001263 return 0;
1264}
1265
1266/*
Paul Menagebd89aab2007-10-18 23:40:44 -07001267 * Attach task with pid 'pid' to cgroup 'cgrp'. Call with
Paul Menagebbcb81d2007-10-18 23:39:32 -07001268 * cgroup_mutex, may take task_lock of task
1269 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001270static int attach_task_by_pid(struct cgroup *cgrp, char *pidbuf)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001271{
1272 pid_t pid;
1273 struct task_struct *tsk;
1274 int ret;
1275
1276 if (sscanf(pidbuf, "%d", &pid) != 1)
1277 return -EIO;
1278
1279 if (pid) {
1280 rcu_read_lock();
Pavel Emelyanov73507f32008-02-07 00:14:47 -08001281 tsk = find_task_by_vpid(pid);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001282 if (!tsk || tsk->flags & PF_EXITING) {
1283 rcu_read_unlock();
1284 return -ESRCH;
1285 }
1286 get_task_struct(tsk);
1287 rcu_read_unlock();
1288
1289 if ((current->euid) && (current->euid != tsk->uid)
1290 && (current->euid != tsk->suid)) {
1291 put_task_struct(tsk);
1292 return -EACCES;
1293 }
1294 } else {
1295 tsk = current;
1296 get_task_struct(tsk);
1297 }
1298
Cliff Wickman956db3c2008-02-07 00:14:43 -08001299 ret = cgroup_attach_task(cgrp, tsk);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001300 put_task_struct(tsk);
1301 return ret;
1302}
1303
Paul Menageddbcc7e2007-10-18 23:39:30 -07001304/* The various types of files and directories in a cgroup file system */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001305enum cgroup_filetype {
1306 FILE_ROOT,
1307 FILE_DIR,
1308 FILE_TASKLIST,
Paul Menage81a6a5c2007-10-18 23:39:38 -07001309 FILE_NOTIFY_ON_RELEASE,
1310 FILE_RELEASABLE,
1311 FILE_RELEASE_AGENT,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001312};
1313
Paul Menagef4c753b2008-04-29 00:59:56 -07001314static ssize_t cgroup_write_u64(struct cgroup *cgrp, struct cftype *cft,
1315 struct file *file,
1316 const char __user *userbuf,
1317 size_t nbytes, loff_t *unused_ppos)
Paul Menage355e0c42007-10-18 23:39:33 -07001318{
1319 char buffer[64];
1320 int retval = 0;
1321 u64 val;
1322 char *end;
1323
1324 if (!nbytes)
1325 return -EINVAL;
1326 if (nbytes >= sizeof(buffer))
1327 return -E2BIG;
1328 if (copy_from_user(buffer, userbuf, nbytes))
1329 return -EFAULT;
1330
1331 buffer[nbytes] = 0; /* nul-terminate */
Paul Menageb7269df2008-04-29 00:59:59 -07001332 strstrip(buffer);
Paul Menage355e0c42007-10-18 23:39:33 -07001333 val = simple_strtoull(buffer, &end, 0);
1334 if (*end)
1335 return -EINVAL;
1336
1337 /* Pass to subsystem */
Paul Menagef4c753b2008-04-29 00:59:56 -07001338 retval = cft->write_u64(cgrp, cft, val);
Paul Menage355e0c42007-10-18 23:39:33 -07001339 if (!retval)
1340 retval = nbytes;
1341 return retval;
1342}
1343
Paul Menagebd89aab2007-10-18 23:40:44 -07001344static ssize_t cgroup_common_file_write(struct cgroup *cgrp,
Paul Menagebbcb81d2007-10-18 23:39:32 -07001345 struct cftype *cft,
1346 struct file *file,
1347 const char __user *userbuf,
1348 size_t nbytes, loff_t *unused_ppos)
1349{
1350 enum cgroup_filetype type = cft->private;
1351 char *buffer;
1352 int retval = 0;
1353
1354 if (nbytes >= PATH_MAX)
1355 return -E2BIG;
1356
1357 /* +1 for nul-terminator */
1358 buffer = kmalloc(nbytes + 1, GFP_KERNEL);
1359 if (buffer == NULL)
1360 return -ENOMEM;
1361
1362 if (copy_from_user(buffer, userbuf, nbytes)) {
1363 retval = -EFAULT;
1364 goto out1;
1365 }
1366 buffer[nbytes] = 0; /* nul-terminate */
Paul Jackson622d42c2008-02-07 00:13:44 -08001367 strstrip(buffer); /* strip -just- trailing whitespace */
Paul Menagebbcb81d2007-10-18 23:39:32 -07001368
1369 mutex_lock(&cgroup_mutex);
1370
Paul Menage8dc4f3e2008-02-07 00:13:45 -08001371 /*
1372 * This was already checked for in cgroup_file_write(), but
1373 * check again now we're holding cgroup_mutex.
1374 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001375 if (cgroup_is_removed(cgrp)) {
Paul Menagebbcb81d2007-10-18 23:39:32 -07001376 retval = -ENODEV;
1377 goto out2;
1378 }
1379
1380 switch (type) {
1381 case FILE_TASKLIST:
Paul Menagebd89aab2007-10-18 23:40:44 -07001382 retval = attach_task_by_pid(cgrp, buffer);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001383 break;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001384 case FILE_NOTIFY_ON_RELEASE:
Paul Menagebd89aab2007-10-18 23:40:44 -07001385 clear_bit(CGRP_RELEASABLE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001386 if (simple_strtoul(buffer, NULL, 10) != 0)
Paul Menagebd89aab2007-10-18 23:40:44 -07001387 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001388 else
Paul Menagebd89aab2007-10-18 23:40:44 -07001389 clear_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001390 break;
1391 case FILE_RELEASE_AGENT:
Paul Jackson622d42c2008-02-07 00:13:44 -08001392 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
1393 strcpy(cgrp->root->release_agent_path, buffer);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001394 break;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001395 default:
1396 retval = -EINVAL;
1397 goto out2;
1398 }
1399
1400 if (retval == 0)
1401 retval = nbytes;
1402out2:
1403 mutex_unlock(&cgroup_mutex);
1404out1:
1405 kfree(buffer);
1406 return retval;
1407}
1408
Paul Menageddbcc7e2007-10-18 23:39:30 -07001409static ssize_t cgroup_file_write(struct file *file, const char __user *buf,
1410 size_t nbytes, loff_t *ppos)
1411{
1412 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07001413 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001414
Paul Menage8dc4f3e2008-02-07 00:13:45 -08001415 if (!cft || cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001416 return -ENODEV;
Paul Menage355e0c42007-10-18 23:39:33 -07001417 if (cft->write)
Paul Menagebd89aab2007-10-18 23:40:44 -07001418 return cft->write(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagef4c753b2008-04-29 00:59:56 -07001419 if (cft->write_u64)
1420 return cgroup_write_u64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menage355e0c42007-10-18 23:39:33 -07001421 return -EINVAL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001422}
1423
Paul Menagef4c753b2008-04-29 00:59:56 -07001424static ssize_t cgroup_read_u64(struct cgroup *cgrp, struct cftype *cft,
1425 struct file *file,
1426 char __user *buf, size_t nbytes,
1427 loff_t *ppos)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001428{
1429 char tmp[64];
Paul Menagef4c753b2008-04-29 00:59:56 -07001430 u64 val = cft->read_u64(cgrp, cft);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001431 int len = sprintf(tmp, "%llu\n", (unsigned long long) val);
1432
1433 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
1434}
1435
Paul Menagebd89aab2007-10-18 23:40:44 -07001436static ssize_t cgroup_common_file_read(struct cgroup *cgrp,
Paul Menage81a6a5c2007-10-18 23:39:38 -07001437 struct cftype *cft,
1438 struct file *file,
1439 char __user *buf,
1440 size_t nbytes, loff_t *ppos)
1441{
1442 enum cgroup_filetype type = cft->private;
1443 char *page;
1444 ssize_t retval = 0;
1445 char *s;
1446
1447 if (!(page = (char *)__get_free_page(GFP_KERNEL)))
1448 return -ENOMEM;
1449
1450 s = page;
1451
1452 switch (type) {
1453 case FILE_RELEASE_AGENT:
1454 {
1455 struct cgroupfs_root *root;
1456 size_t n;
1457 mutex_lock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07001458 root = cgrp->root;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001459 n = strnlen(root->release_agent_path,
1460 sizeof(root->release_agent_path));
1461 n = min(n, (size_t) PAGE_SIZE);
1462 strncpy(s, root->release_agent_path, n);
1463 mutex_unlock(&cgroup_mutex);
1464 s += n;
1465 break;
1466 }
1467 default:
1468 retval = -EINVAL;
1469 goto out;
1470 }
1471 *s++ = '\n';
1472
1473 retval = simple_read_from_buffer(buf, nbytes, ppos, page, s - page);
1474out:
1475 free_page((unsigned long)page);
1476 return retval;
1477}
1478
Paul Menageddbcc7e2007-10-18 23:39:30 -07001479static ssize_t cgroup_file_read(struct file *file, char __user *buf,
1480 size_t nbytes, loff_t *ppos)
1481{
1482 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07001483 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001484
Paul Menage8dc4f3e2008-02-07 00:13:45 -08001485 if (!cft || cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001486 return -ENODEV;
1487
1488 if (cft->read)
Paul Menagebd89aab2007-10-18 23:40:44 -07001489 return cft->read(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagef4c753b2008-04-29 00:59:56 -07001490 if (cft->read_u64)
1491 return cgroup_read_u64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001492 return -EINVAL;
1493}
1494
1495static int cgroup_file_open(struct inode *inode, struct file *file)
1496{
1497 int err;
1498 struct cftype *cft;
1499
1500 err = generic_file_open(inode, file);
1501 if (err)
1502 return err;
1503
1504 cft = __d_cft(file->f_dentry);
1505 if (!cft)
1506 return -ENODEV;
1507 if (cft->open)
1508 err = cft->open(inode, file);
1509 else
1510 err = 0;
1511
1512 return err;
1513}
1514
1515static int cgroup_file_release(struct inode *inode, struct file *file)
1516{
1517 struct cftype *cft = __d_cft(file->f_dentry);
1518 if (cft->release)
1519 return cft->release(inode, file);
1520 return 0;
1521}
1522
1523/*
1524 * cgroup_rename - Only allow simple rename of directories in place.
1525 */
1526static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry,
1527 struct inode *new_dir, struct dentry *new_dentry)
1528{
1529 if (!S_ISDIR(old_dentry->d_inode->i_mode))
1530 return -ENOTDIR;
1531 if (new_dentry->d_inode)
1532 return -EEXIST;
1533 if (old_dir != new_dir)
1534 return -EIO;
1535 return simple_rename(old_dir, old_dentry, new_dir, new_dentry);
1536}
1537
1538static struct file_operations cgroup_file_operations = {
1539 .read = cgroup_file_read,
1540 .write = cgroup_file_write,
1541 .llseek = generic_file_llseek,
1542 .open = cgroup_file_open,
1543 .release = cgroup_file_release,
1544};
1545
1546static struct inode_operations cgroup_dir_inode_operations = {
1547 .lookup = simple_lookup,
1548 .mkdir = cgroup_mkdir,
1549 .rmdir = cgroup_rmdir,
1550 .rename = cgroup_rename,
1551};
1552
1553static int cgroup_create_file(struct dentry *dentry, int mode,
1554 struct super_block *sb)
1555{
1556 static struct dentry_operations cgroup_dops = {
1557 .d_iput = cgroup_diput,
1558 };
1559
1560 struct inode *inode;
1561
1562 if (!dentry)
1563 return -ENOENT;
1564 if (dentry->d_inode)
1565 return -EEXIST;
1566
1567 inode = cgroup_new_inode(mode, sb);
1568 if (!inode)
1569 return -ENOMEM;
1570
1571 if (S_ISDIR(mode)) {
1572 inode->i_op = &cgroup_dir_inode_operations;
1573 inode->i_fop = &simple_dir_operations;
1574
1575 /* start off with i_nlink == 2 (for "." entry) */
1576 inc_nlink(inode);
1577
1578 /* start with the directory inode held, so that we can
1579 * populate it without racing with another mkdir */
Paul Menage817929e2007-10-18 23:39:36 -07001580 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001581 } else if (S_ISREG(mode)) {
1582 inode->i_size = 0;
1583 inode->i_fop = &cgroup_file_operations;
1584 }
1585 dentry->d_op = &cgroup_dops;
1586 d_instantiate(dentry, inode);
1587 dget(dentry); /* Extra count - pin the dentry in core */
1588 return 0;
1589}
1590
1591/*
Li Zefana043e3b2008-02-23 15:24:09 -08001592 * cgroup_create_dir - create a directory for an object.
1593 * @cgrp: the cgroup we create the directory for. It must have a valid
1594 * ->parent field. And we are going to fill its ->dentry field.
1595 * @dentry: dentry of the new cgroup
1596 * @mode: mode to set on new directory.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001597 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001598static int cgroup_create_dir(struct cgroup *cgrp, struct dentry *dentry,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001599 int mode)
1600{
1601 struct dentry *parent;
1602 int error = 0;
1603
Paul Menagebd89aab2007-10-18 23:40:44 -07001604 parent = cgrp->parent->dentry;
1605 error = cgroup_create_file(dentry, S_IFDIR | mode, cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001606 if (!error) {
Paul Menagebd89aab2007-10-18 23:40:44 -07001607 dentry->d_fsdata = cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001608 inc_nlink(parent->d_inode);
Paul Menagebd89aab2007-10-18 23:40:44 -07001609 cgrp->dentry = dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001610 dget(dentry);
1611 }
1612 dput(dentry);
1613
1614 return error;
1615}
1616
Paul Menagebd89aab2007-10-18 23:40:44 -07001617int cgroup_add_file(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001618 struct cgroup_subsys *subsys,
1619 const struct cftype *cft)
1620{
Paul Menagebd89aab2007-10-18 23:40:44 -07001621 struct dentry *dir = cgrp->dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001622 struct dentry *dentry;
1623 int error;
1624
1625 char name[MAX_CGROUP_TYPE_NAMELEN + MAX_CFTYPE_NAME + 2] = { 0 };
Paul Menagebd89aab2007-10-18 23:40:44 -07001626 if (subsys && !test_bit(ROOT_NOPREFIX, &cgrp->root->flags)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001627 strcpy(name, subsys->name);
1628 strcat(name, ".");
1629 }
1630 strcat(name, cft->name);
1631 BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex));
1632 dentry = lookup_one_len(name, dir, strlen(name));
1633 if (!IS_ERR(dentry)) {
1634 error = cgroup_create_file(dentry, 0644 | S_IFREG,
Paul Menagebd89aab2007-10-18 23:40:44 -07001635 cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001636 if (!error)
1637 dentry->d_fsdata = (void *)cft;
1638 dput(dentry);
1639 } else
1640 error = PTR_ERR(dentry);
1641 return error;
1642}
1643
Paul Menagebd89aab2007-10-18 23:40:44 -07001644int cgroup_add_files(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001645 struct cgroup_subsys *subsys,
1646 const struct cftype cft[],
1647 int count)
1648{
1649 int i, err;
1650 for (i = 0; i < count; i++) {
Paul Menagebd89aab2007-10-18 23:40:44 -07001651 err = cgroup_add_file(cgrp, subsys, &cft[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001652 if (err)
1653 return err;
1654 }
1655 return 0;
1656}
1657
Li Zefana043e3b2008-02-23 15:24:09 -08001658/**
1659 * cgroup_task_count - count the number of tasks in a cgroup.
1660 * @cgrp: the cgroup in question
1661 *
1662 * Return the number of tasks in the cgroup.
1663 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001664int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001665{
1666 int count = 0;
Paul Menage817929e2007-10-18 23:39:36 -07001667 struct list_head *l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001668
Paul Menage817929e2007-10-18 23:39:36 -07001669 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07001670 l = cgrp->css_sets.next;
1671 while (l != &cgrp->css_sets) {
Paul Menage817929e2007-10-18 23:39:36 -07001672 struct cg_cgroup_link *link =
Paul Menagebd89aab2007-10-18 23:40:44 -07001673 list_entry(l, struct cg_cgroup_link, cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001674 count += atomic_read(&link->cg->ref.refcount);
1675 l = l->next;
1676 }
1677 read_unlock(&css_set_lock);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001678 return count;
1679}
1680
1681/*
Paul Menage817929e2007-10-18 23:39:36 -07001682 * Advance a list_head iterator. The iterator should be positioned at
1683 * the start of a css_set
1684 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001685static void cgroup_advance_iter(struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -07001686 struct cgroup_iter *it)
1687{
1688 struct list_head *l = it->cg_link;
1689 struct cg_cgroup_link *link;
1690 struct css_set *cg;
1691
1692 /* Advance to the next non-empty css_set */
1693 do {
1694 l = l->next;
Paul Menagebd89aab2007-10-18 23:40:44 -07001695 if (l == &cgrp->css_sets) {
Paul Menage817929e2007-10-18 23:39:36 -07001696 it->cg_link = NULL;
1697 return;
1698 }
Paul Menagebd89aab2007-10-18 23:40:44 -07001699 link = list_entry(l, struct cg_cgroup_link, cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001700 cg = link->cg;
1701 } while (list_empty(&cg->tasks));
1702 it->cg_link = l;
1703 it->task = cg->tasks.next;
1704}
1705
Cliff Wickman31a7df02008-02-07 00:14:42 -08001706/*
1707 * To reduce the fork() overhead for systems that are not actually
1708 * using their cgroups capability, we don't maintain the lists running
1709 * through each css_set to its tasks until we see the list actually
1710 * used - in other words after the first call to cgroup_iter_start().
1711 *
1712 * The tasklist_lock is not held here, as do_each_thread() and
1713 * while_each_thread() are protected by RCU.
1714 */
Adrian Bunk3df91fe2008-04-29 00:59:54 -07001715static void cgroup_enable_task_cg_lists(void)
Cliff Wickman31a7df02008-02-07 00:14:42 -08001716{
1717 struct task_struct *p, *g;
1718 write_lock(&css_set_lock);
1719 use_task_css_set_links = 1;
1720 do_each_thread(g, p) {
1721 task_lock(p);
Li Zefan0e043882008-04-17 11:37:15 +08001722 /*
1723 * We should check if the process is exiting, otherwise
1724 * it will race with cgroup_exit() in that the list
1725 * entry won't be deleted though the process has exited.
1726 */
1727 if (!(p->flags & PF_EXITING) && list_empty(&p->cg_list))
Cliff Wickman31a7df02008-02-07 00:14:42 -08001728 list_add(&p->cg_list, &p->cgroups->tasks);
1729 task_unlock(p);
1730 } while_each_thread(g, p);
1731 write_unlock(&css_set_lock);
1732}
1733
Paul Menagebd89aab2007-10-18 23:40:44 -07001734void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07001735{
1736 /*
1737 * The first time anyone tries to iterate across a cgroup,
1738 * we need to enable the list linking each css_set to its
1739 * tasks, and fix up all existing tasks.
1740 */
Cliff Wickman31a7df02008-02-07 00:14:42 -08001741 if (!use_task_css_set_links)
1742 cgroup_enable_task_cg_lists();
1743
Paul Menage817929e2007-10-18 23:39:36 -07001744 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07001745 it->cg_link = &cgrp->css_sets;
1746 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07001747}
1748
Paul Menagebd89aab2007-10-18 23:40:44 -07001749struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -07001750 struct cgroup_iter *it)
1751{
1752 struct task_struct *res;
1753 struct list_head *l = it->task;
1754
1755 /* If the iterator cg is NULL, we have no tasks */
1756 if (!it->cg_link)
1757 return NULL;
1758 res = list_entry(l, struct task_struct, cg_list);
1759 /* Advance iterator to find next entry */
1760 l = l->next;
1761 if (l == &res->cgroups->tasks) {
1762 /* We reached the end of this task list - move on to
1763 * the next cg_cgroup_link */
Paul Menagebd89aab2007-10-18 23:40:44 -07001764 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07001765 } else {
1766 it->task = l;
1767 }
1768 return res;
1769}
1770
Paul Menagebd89aab2007-10-18 23:40:44 -07001771void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07001772{
1773 read_unlock(&css_set_lock);
1774}
1775
Cliff Wickman31a7df02008-02-07 00:14:42 -08001776static inline int started_after_time(struct task_struct *t1,
1777 struct timespec *time,
1778 struct task_struct *t2)
1779{
1780 int start_diff = timespec_compare(&t1->start_time, time);
1781 if (start_diff > 0) {
1782 return 1;
1783 } else if (start_diff < 0) {
1784 return 0;
1785 } else {
1786 /*
1787 * Arbitrarily, if two processes started at the same
1788 * time, we'll say that the lower pointer value
1789 * started first. Note that t2 may have exited by now
1790 * so this may not be a valid pointer any longer, but
1791 * that's fine - it still serves to distinguish
1792 * between two tasks started (effectively) simultaneously.
1793 */
1794 return t1 > t2;
1795 }
1796}
1797
1798/*
1799 * This function is a callback from heap_insert() and is used to order
1800 * the heap.
1801 * In this case we order the heap in descending task start time.
1802 */
1803static inline int started_after(void *p1, void *p2)
1804{
1805 struct task_struct *t1 = p1;
1806 struct task_struct *t2 = p2;
1807 return started_after_time(t1, &t2->start_time, t2);
1808}
1809
1810/**
1811 * cgroup_scan_tasks - iterate though all the tasks in a cgroup
1812 * @scan: struct cgroup_scanner containing arguments for the scan
1813 *
1814 * Arguments include pointers to callback functions test_task() and
1815 * process_task().
1816 * Iterate through all the tasks in a cgroup, calling test_task() for each,
1817 * and if it returns true, call process_task() for it also.
1818 * The test_task pointer may be NULL, meaning always true (select all tasks).
1819 * Effectively duplicates cgroup_iter_{start,next,end}()
1820 * but does not lock css_set_lock for the call to process_task().
1821 * The struct cgroup_scanner may be embedded in any structure of the caller's
1822 * creation.
1823 * It is guaranteed that process_task() will act on every task that
1824 * is a member of the cgroup for the duration of this call. This
1825 * function may or may not call process_task() for tasks that exit
1826 * or move to a different cgroup during the call, or are forked or
1827 * move into the cgroup during the call.
1828 *
1829 * Note that test_task() may be called with locks held, and may in some
1830 * situations be called multiple times for the same task, so it should
1831 * be cheap.
1832 * If the heap pointer in the struct cgroup_scanner is non-NULL, a heap has been
1833 * pre-allocated and will be used for heap operations (and its "gt" member will
1834 * be overwritten), else a temporary heap will be used (allocation of which
1835 * may cause this function to fail).
1836 */
1837int cgroup_scan_tasks(struct cgroup_scanner *scan)
1838{
1839 int retval, i;
1840 struct cgroup_iter it;
1841 struct task_struct *p, *dropped;
1842 /* Never dereference latest_task, since it's not refcounted */
1843 struct task_struct *latest_task = NULL;
1844 struct ptr_heap tmp_heap;
1845 struct ptr_heap *heap;
1846 struct timespec latest_time = { 0, 0 };
1847
1848 if (scan->heap) {
1849 /* The caller supplied our heap and pre-allocated its memory */
1850 heap = scan->heap;
1851 heap->gt = &started_after;
1852 } else {
1853 /* We need to allocate our own heap memory */
1854 heap = &tmp_heap;
1855 retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after);
1856 if (retval)
1857 /* cannot allocate the heap */
1858 return retval;
1859 }
1860
1861 again:
1862 /*
1863 * Scan tasks in the cgroup, using the scanner's "test_task" callback
1864 * to determine which are of interest, and using the scanner's
1865 * "process_task" callback to process any of them that need an update.
1866 * Since we don't want to hold any locks during the task updates,
1867 * gather tasks to be processed in a heap structure.
1868 * The heap is sorted by descending task start time.
1869 * If the statically-sized heap fills up, we overflow tasks that
1870 * started later, and in future iterations only consider tasks that
1871 * started after the latest task in the previous pass. This
1872 * guarantees forward progress and that we don't miss any tasks.
1873 */
1874 heap->size = 0;
1875 cgroup_iter_start(scan->cg, &it);
1876 while ((p = cgroup_iter_next(scan->cg, &it))) {
1877 /*
1878 * Only affect tasks that qualify per the caller's callback,
1879 * if he provided one
1880 */
1881 if (scan->test_task && !scan->test_task(p, scan))
1882 continue;
1883 /*
1884 * Only process tasks that started after the last task
1885 * we processed
1886 */
1887 if (!started_after_time(p, &latest_time, latest_task))
1888 continue;
1889 dropped = heap_insert(heap, p);
1890 if (dropped == NULL) {
1891 /*
1892 * The new task was inserted; the heap wasn't
1893 * previously full
1894 */
1895 get_task_struct(p);
1896 } else if (dropped != p) {
1897 /*
1898 * The new task was inserted, and pushed out a
1899 * different task
1900 */
1901 get_task_struct(p);
1902 put_task_struct(dropped);
1903 }
1904 /*
1905 * Else the new task was newer than anything already in
1906 * the heap and wasn't inserted
1907 */
1908 }
1909 cgroup_iter_end(scan->cg, &it);
1910
1911 if (heap->size) {
1912 for (i = 0; i < heap->size; i++) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07001913 struct task_struct *q = heap->ptrs[i];
Cliff Wickman31a7df02008-02-07 00:14:42 -08001914 if (i == 0) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07001915 latest_time = q->start_time;
1916 latest_task = q;
Cliff Wickman31a7df02008-02-07 00:14:42 -08001917 }
1918 /* Process the task per the caller's callback */
Paul Jackson4fe91d52008-04-29 00:59:55 -07001919 scan->process_task(q, scan);
1920 put_task_struct(q);
Cliff Wickman31a7df02008-02-07 00:14:42 -08001921 }
1922 /*
1923 * If we had to process any tasks at all, scan again
1924 * in case some of them were in the middle of forking
1925 * children that didn't get processed.
1926 * Not the most efficient way to do it, but it avoids
1927 * having to take callback_mutex in the fork path
1928 */
1929 goto again;
1930 }
1931 if (heap == &tmp_heap)
1932 heap_free(&tmp_heap);
1933 return 0;
1934}
1935
Paul Menage817929e2007-10-18 23:39:36 -07001936/*
Paul Menagebbcb81d2007-10-18 23:39:32 -07001937 * Stuff for reading the 'tasks' file.
1938 *
1939 * Reading this file can return large amounts of data if a cgroup has
1940 * *lots* of attached tasks. So it may need several calls to read(),
1941 * but we cannot guarantee that the information we produce is correct
1942 * unless we produce it entirely atomically.
1943 *
1944 * Upon tasks file open(), a struct ctr_struct is allocated, that
1945 * will have a pointer to an array (also allocated here). The struct
1946 * ctr_struct * is stored in file->private_data. Its resources will
1947 * be freed by release() when the file is closed. The array is used
1948 * to sprintf the PIDs and then used by read().
1949 */
1950struct ctr_struct {
1951 char *buf;
1952 int bufsz;
1953};
1954
1955/*
1956 * Load into 'pidarray' up to 'npids' of the tasks using cgroup
Paul Menagebd89aab2007-10-18 23:40:44 -07001957 * 'cgrp'. Return actual number of pids loaded. No need to
Paul Menagebbcb81d2007-10-18 23:39:32 -07001958 * task_lock(p) when reading out p->cgroup, since we're in an RCU
1959 * read section, so the css_set can't go away, and is
1960 * immutable after creation.
1961 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001962static int pid_array_load(pid_t *pidarray, int npids, struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001963{
1964 int n = 0;
Paul Menage817929e2007-10-18 23:39:36 -07001965 struct cgroup_iter it;
1966 struct task_struct *tsk;
Paul Menagebd89aab2007-10-18 23:40:44 -07001967 cgroup_iter_start(cgrp, &it);
1968 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Paul Menage817929e2007-10-18 23:39:36 -07001969 if (unlikely(n == npids))
1970 break;
Pavel Emelyanov73507f32008-02-07 00:14:47 -08001971 pidarray[n++] = task_pid_vnr(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07001972 }
Paul Menagebd89aab2007-10-18 23:40:44 -07001973 cgroup_iter_end(cgrp, &it);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001974 return n;
1975}
1976
Balbir Singh846c7bb2007-10-18 23:39:44 -07001977/**
Li Zefana043e3b2008-02-23 15:24:09 -08001978 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07001979 * @stats: cgroupstats to fill information into
1980 * @dentry: A dentry entry belonging to the cgroup for which stats have
1981 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08001982 *
1983 * Build and fill cgroupstats so that taskstats can export it to user
1984 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07001985 */
1986int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
1987{
1988 int ret = -EINVAL;
Paul Menagebd89aab2007-10-18 23:40:44 -07001989 struct cgroup *cgrp;
Balbir Singh846c7bb2007-10-18 23:39:44 -07001990 struct cgroup_iter it;
1991 struct task_struct *tsk;
1992 /*
1993 * Validate dentry by checking the superblock operations
1994 */
1995 if (dentry->d_sb->s_op != &cgroup_ops)
1996 goto err;
1997
1998 ret = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07001999 cgrp = dentry->d_fsdata;
Balbir Singh846c7bb2007-10-18 23:39:44 -07002000 rcu_read_lock();
2001
Paul Menagebd89aab2007-10-18 23:40:44 -07002002 cgroup_iter_start(cgrp, &it);
2003 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07002004 switch (tsk->state) {
2005 case TASK_RUNNING:
2006 stats->nr_running++;
2007 break;
2008 case TASK_INTERRUPTIBLE:
2009 stats->nr_sleeping++;
2010 break;
2011 case TASK_UNINTERRUPTIBLE:
2012 stats->nr_uninterruptible++;
2013 break;
2014 case TASK_STOPPED:
2015 stats->nr_stopped++;
2016 break;
2017 default:
2018 if (delayacct_is_task_waiting_on_io(tsk))
2019 stats->nr_io_wait++;
2020 break;
2021 }
2022 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002023 cgroup_iter_end(cgrp, &it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07002024
2025 rcu_read_unlock();
2026err:
2027 return ret;
2028}
2029
Paul Menagebbcb81d2007-10-18 23:39:32 -07002030static int cmppid(const void *a, const void *b)
2031{
2032 return *(pid_t *)a - *(pid_t *)b;
2033}
2034
2035/*
2036 * Convert array 'a' of 'npids' pid_t's to a string of newline separated
2037 * decimal pids in 'buf'. Don't write more than 'sz' chars, but return
2038 * count 'cnt' of how many chars would be written if buf were large enough.
2039 */
2040static int pid_array_to_buf(char *buf, int sz, pid_t *a, int npids)
2041{
2042 int cnt = 0;
2043 int i;
2044
2045 for (i = 0; i < npids; i++)
2046 cnt += snprintf(buf + cnt, max(sz - cnt, 0), "%d\n", a[i]);
2047 return cnt;
2048}
2049
2050/*
2051 * Handle an open on 'tasks' file. Prepare a buffer listing the
2052 * process id's of tasks currently attached to the cgroup being opened.
2053 *
2054 * Does not require any specific cgroup mutexes, and does not take any.
2055 */
2056static int cgroup_tasks_open(struct inode *unused, struct file *file)
2057{
Paul Menagebd89aab2007-10-18 23:40:44 -07002058 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002059 struct ctr_struct *ctr;
2060 pid_t *pidarray;
2061 int npids;
2062 char c;
2063
2064 if (!(file->f_mode & FMODE_READ))
2065 return 0;
2066
2067 ctr = kmalloc(sizeof(*ctr), GFP_KERNEL);
2068 if (!ctr)
2069 goto err0;
2070
2071 /*
2072 * If cgroup gets more users after we read count, we won't have
2073 * enough space - tough. This race is indistinguishable to the
2074 * caller from the case that the additional cgroup users didn't
2075 * show up until sometime later on.
2076 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002077 npids = cgroup_task_count(cgrp);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002078 if (npids) {
2079 pidarray = kmalloc(npids * sizeof(pid_t), GFP_KERNEL);
2080 if (!pidarray)
2081 goto err1;
2082
Paul Menagebd89aab2007-10-18 23:40:44 -07002083 npids = pid_array_load(pidarray, npids, cgrp);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002084 sort(pidarray, npids, sizeof(pid_t), cmppid, NULL);
2085
2086 /* Call pid_array_to_buf() twice, first just to get bufsz */
2087 ctr->bufsz = pid_array_to_buf(&c, sizeof(c), pidarray, npids) + 1;
2088 ctr->buf = kmalloc(ctr->bufsz, GFP_KERNEL);
2089 if (!ctr->buf)
2090 goto err2;
2091 ctr->bufsz = pid_array_to_buf(ctr->buf, ctr->bufsz, pidarray, npids);
2092
2093 kfree(pidarray);
2094 } else {
Al Viro9dce07f2008-03-29 03:07:28 +00002095 ctr->buf = NULL;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002096 ctr->bufsz = 0;
2097 }
2098 file->private_data = ctr;
2099 return 0;
2100
2101err2:
2102 kfree(pidarray);
2103err1:
2104 kfree(ctr);
2105err0:
2106 return -ENOMEM;
2107}
2108
Paul Menagebd89aab2007-10-18 23:40:44 -07002109static ssize_t cgroup_tasks_read(struct cgroup *cgrp,
Paul Menagebbcb81d2007-10-18 23:39:32 -07002110 struct cftype *cft,
2111 struct file *file, char __user *buf,
2112 size_t nbytes, loff_t *ppos)
2113{
2114 struct ctr_struct *ctr = file->private_data;
2115
2116 return simple_read_from_buffer(buf, nbytes, ppos, ctr->buf, ctr->bufsz);
2117}
2118
2119static int cgroup_tasks_release(struct inode *unused_inode,
2120 struct file *file)
2121{
2122 struct ctr_struct *ctr;
2123
2124 if (file->f_mode & FMODE_READ) {
2125 ctr = file->private_data;
2126 kfree(ctr->buf);
2127 kfree(ctr);
2128 }
2129 return 0;
2130}
2131
Paul Menagebd89aab2007-10-18 23:40:44 -07002132static u64 cgroup_read_notify_on_release(struct cgroup *cgrp,
Paul Menage81a6a5c2007-10-18 23:39:38 -07002133 struct cftype *cft)
2134{
Paul Menagebd89aab2007-10-18 23:40:44 -07002135 return notify_on_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002136}
2137
Paul Menagebd89aab2007-10-18 23:40:44 -07002138static u64 cgroup_read_releasable(struct cgroup *cgrp, struct cftype *cft)
Paul Menage81a6a5c2007-10-18 23:39:38 -07002139{
Paul Menagebd89aab2007-10-18 23:40:44 -07002140 return test_bit(CGRP_RELEASABLE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002141}
2142
Paul Menagebbcb81d2007-10-18 23:39:32 -07002143/*
2144 * for the common functions, 'private' gives the type of file
2145 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07002146static struct cftype files[] = {
2147 {
2148 .name = "tasks",
2149 .open = cgroup_tasks_open,
2150 .read = cgroup_tasks_read,
2151 .write = cgroup_common_file_write,
2152 .release = cgroup_tasks_release,
2153 .private = FILE_TASKLIST,
2154 },
2155
2156 {
2157 .name = "notify_on_release",
Paul Menagef4c753b2008-04-29 00:59:56 -07002158 .read_u64 = cgroup_read_notify_on_release,
Paul Menage81a6a5c2007-10-18 23:39:38 -07002159 .write = cgroup_common_file_write,
2160 .private = FILE_NOTIFY_ON_RELEASE,
2161 },
2162
2163 {
2164 .name = "releasable",
Paul Menagef4c753b2008-04-29 00:59:56 -07002165 .read_u64 = cgroup_read_releasable,
Paul Menage81a6a5c2007-10-18 23:39:38 -07002166 .private = FILE_RELEASABLE,
2167 }
2168};
2169
2170static struct cftype cft_release_agent = {
2171 .name = "release_agent",
2172 .read = cgroup_common_file_read,
Paul Menagebbcb81d2007-10-18 23:39:32 -07002173 .write = cgroup_common_file_write,
Paul Menage81a6a5c2007-10-18 23:39:38 -07002174 .private = FILE_RELEASE_AGENT,
Paul Menagebbcb81d2007-10-18 23:39:32 -07002175};
2176
Paul Menagebd89aab2007-10-18 23:40:44 -07002177static int cgroup_populate_dir(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002178{
2179 int err;
2180 struct cgroup_subsys *ss;
2181
2182 /* First clear out any existing files */
Paul Menagebd89aab2007-10-18 23:40:44 -07002183 cgroup_clear_directory(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002184
Paul Menagebd89aab2007-10-18 23:40:44 -07002185 err = cgroup_add_files(cgrp, NULL, files, ARRAY_SIZE(files));
Paul Menagebbcb81d2007-10-18 23:39:32 -07002186 if (err < 0)
2187 return err;
2188
Paul Menagebd89aab2007-10-18 23:40:44 -07002189 if (cgrp == cgrp->top_cgroup) {
2190 if ((err = cgroup_add_file(cgrp, NULL, &cft_release_agent)) < 0)
Paul Menage81a6a5c2007-10-18 23:39:38 -07002191 return err;
2192 }
2193
Paul Menagebd89aab2007-10-18 23:40:44 -07002194 for_each_subsys(cgrp->root, ss) {
2195 if (ss->populate && (err = ss->populate(ss, cgrp)) < 0)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002196 return err;
2197 }
2198
2199 return 0;
2200}
2201
2202static void init_cgroup_css(struct cgroup_subsys_state *css,
2203 struct cgroup_subsys *ss,
Paul Menagebd89aab2007-10-18 23:40:44 -07002204 struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002205{
Paul Menagebd89aab2007-10-18 23:40:44 -07002206 css->cgroup = cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002207 atomic_set(&css->refcnt, 0);
2208 css->flags = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07002209 if (cgrp == dummytop)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002210 set_bit(CSS_ROOT, &css->flags);
Paul Menagebd89aab2007-10-18 23:40:44 -07002211 BUG_ON(cgrp->subsys[ss->subsys_id]);
2212 cgrp->subsys[ss->subsys_id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002213}
2214
2215/*
Li Zefana043e3b2008-02-23 15:24:09 -08002216 * cgroup_create - create a cgroup
2217 * @parent: cgroup that will be parent of the new cgroup
2218 * @dentry: dentry of the new cgroup
2219 * @mode: mode to set on new inode
Paul Menageddbcc7e2007-10-18 23:39:30 -07002220 *
Li Zefana043e3b2008-02-23 15:24:09 -08002221 * Must be called with the mutex on the parent inode held
Paul Menageddbcc7e2007-10-18 23:39:30 -07002222 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07002223static long cgroup_create(struct cgroup *parent, struct dentry *dentry,
2224 int mode)
2225{
Paul Menagebd89aab2007-10-18 23:40:44 -07002226 struct cgroup *cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002227 struct cgroupfs_root *root = parent->root;
2228 int err = 0;
2229 struct cgroup_subsys *ss;
2230 struct super_block *sb = root->sb;
2231
Paul Menagebd89aab2007-10-18 23:40:44 -07002232 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
2233 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002234 return -ENOMEM;
2235
2236 /* Grab a reference on the superblock so the hierarchy doesn't
2237 * get deleted on unmount if there are child cgroups. This
2238 * can be done outside cgroup_mutex, since the sb can't
2239 * disappear while someone has an open control file on the
2240 * fs */
2241 atomic_inc(&sb->s_active);
2242
2243 mutex_lock(&cgroup_mutex);
2244
Paul Menagebd89aab2007-10-18 23:40:44 -07002245 INIT_LIST_HEAD(&cgrp->sibling);
2246 INIT_LIST_HEAD(&cgrp->children);
2247 INIT_LIST_HEAD(&cgrp->css_sets);
2248 INIT_LIST_HEAD(&cgrp->release_list);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002249
Paul Menagebd89aab2007-10-18 23:40:44 -07002250 cgrp->parent = parent;
2251 cgrp->root = parent->root;
2252 cgrp->top_cgroup = parent->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002253
Li Zefanb6abdb02008-03-04 14:28:19 -08002254 if (notify_on_release(parent))
2255 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
2256
Paul Menageddbcc7e2007-10-18 23:39:30 -07002257 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002258 struct cgroup_subsys_state *css = ss->create(ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002259 if (IS_ERR(css)) {
2260 err = PTR_ERR(css);
2261 goto err_destroy;
2262 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002263 init_cgroup_css(css, ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002264 }
2265
Paul Menagebd89aab2007-10-18 23:40:44 -07002266 list_add(&cgrp->sibling, &cgrp->parent->children);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002267 root->number_of_cgroups++;
2268
Paul Menagebd89aab2007-10-18 23:40:44 -07002269 err = cgroup_create_dir(cgrp, dentry, mode);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002270 if (err < 0)
2271 goto err_remove;
2272
2273 /* The cgroup directory was pre-locked for us */
Paul Menagebd89aab2007-10-18 23:40:44 -07002274 BUG_ON(!mutex_is_locked(&cgrp->dentry->d_inode->i_mutex));
Paul Menageddbcc7e2007-10-18 23:39:30 -07002275
Paul Menagebd89aab2007-10-18 23:40:44 -07002276 err = cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002277 /* If err < 0, we have a half-filled directory - oh well ;) */
2278
2279 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07002280 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002281
2282 return 0;
2283
2284 err_remove:
2285
Paul Menagebd89aab2007-10-18 23:40:44 -07002286 list_del(&cgrp->sibling);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002287 root->number_of_cgroups--;
2288
2289 err_destroy:
2290
2291 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002292 if (cgrp->subsys[ss->subsys_id])
2293 ss->destroy(ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002294 }
2295
2296 mutex_unlock(&cgroup_mutex);
2297
2298 /* Release the reference count that we took on the superblock */
2299 deactivate_super(sb);
2300
Paul Menagebd89aab2007-10-18 23:40:44 -07002301 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002302 return err;
2303}
2304
2305static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2306{
2307 struct cgroup *c_parent = dentry->d_parent->d_fsdata;
2308
2309 /* the vfs holds inode->i_mutex already */
2310 return cgroup_create(c_parent, dentry, mode | S_IFDIR);
2311}
2312
Paul Menagebd89aab2007-10-18 23:40:44 -07002313static inline int cgroup_has_css_refs(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07002314{
2315 /* Check the reference count on each subsystem. Since we
2316 * already established that there are no tasks in the
2317 * cgroup, if the css refcount is also 0, then there should
2318 * be no outstanding references, so the subsystem is safe to
2319 * destroy. We scan across all subsystems rather than using
2320 * the per-hierarchy linked list of mounted subsystems since
2321 * we can be called via check_for_release() with no
2322 * synchronization other than RCU, and the subsystem linked
2323 * list isn't RCU-safe */
2324 int i;
2325 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2326 struct cgroup_subsys *ss = subsys[i];
2327 struct cgroup_subsys_state *css;
2328 /* Skip subsystems not in this hierarchy */
Paul Menagebd89aab2007-10-18 23:40:44 -07002329 if (ss->root != cgrp->root)
Paul Menage81a6a5c2007-10-18 23:39:38 -07002330 continue;
Paul Menagebd89aab2007-10-18 23:40:44 -07002331 css = cgrp->subsys[ss->subsys_id];
Paul Menage81a6a5c2007-10-18 23:39:38 -07002332 /* When called from check_for_release() it's possible
2333 * that by this point the cgroup has been removed
2334 * and the css deleted. But a false-positive doesn't
2335 * matter, since it can only happen if the cgroup
2336 * has been deleted and hence no longer needs the
2337 * release agent to be called anyway. */
Paul Jacksone18f6312008-02-07 00:13:44 -08002338 if (css && atomic_read(&css->refcnt))
Paul Menage81a6a5c2007-10-18 23:39:38 -07002339 return 1;
Paul Menage81a6a5c2007-10-18 23:39:38 -07002340 }
2341 return 0;
2342}
2343
Paul Menageddbcc7e2007-10-18 23:39:30 -07002344static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry)
2345{
Paul Menagebd89aab2007-10-18 23:40:44 -07002346 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002347 struct dentry *d;
2348 struct cgroup *parent;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002349 struct super_block *sb;
2350 struct cgroupfs_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002351
2352 /* the vfs holds both inode->i_mutex already */
2353
2354 mutex_lock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07002355 if (atomic_read(&cgrp->count) != 0) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002356 mutex_unlock(&cgroup_mutex);
2357 return -EBUSY;
2358 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002359 if (!list_empty(&cgrp->children)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002360 mutex_unlock(&cgroup_mutex);
2361 return -EBUSY;
2362 }
2363
Paul Menagebd89aab2007-10-18 23:40:44 -07002364 parent = cgrp->parent;
2365 root = cgrp->root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002366 sb = root->sb;
Li Zefana043e3b2008-02-23 15:24:09 -08002367
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08002368 /*
Li Zefana043e3b2008-02-23 15:24:09 -08002369 * Call pre_destroy handlers of subsys. Notify subsystems
2370 * that rmdir() request comes.
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08002371 */
2372 cgroup_call_pre_destroy(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002373
Paul Menagebd89aab2007-10-18 23:40:44 -07002374 if (cgroup_has_css_refs(cgrp)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002375 mutex_unlock(&cgroup_mutex);
2376 return -EBUSY;
2377 }
2378
Paul Menage81a6a5c2007-10-18 23:39:38 -07002379 spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07002380 set_bit(CGRP_REMOVED, &cgrp->flags);
2381 if (!list_empty(&cgrp->release_list))
2382 list_del(&cgrp->release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002383 spin_unlock(&release_list_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002384 /* delete my sibling from parent->children */
Paul Menagebd89aab2007-10-18 23:40:44 -07002385 list_del(&cgrp->sibling);
2386 spin_lock(&cgrp->dentry->d_lock);
2387 d = dget(cgrp->dentry);
2388 cgrp->dentry = NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002389 spin_unlock(&d->d_lock);
2390
2391 cgroup_d_remove_dir(d);
2392 dput(d);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002393
Paul Menagebd89aab2007-10-18 23:40:44 -07002394 set_bit(CGRP_RELEASABLE, &parent->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002395 check_for_release(parent);
2396
Paul Menageddbcc7e2007-10-18 23:39:30 -07002397 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002398 return 0;
2399}
2400
2401static void cgroup_init_subsys(struct cgroup_subsys *ss)
2402{
Paul Menageddbcc7e2007-10-18 23:39:30 -07002403 struct cgroup_subsys_state *css;
Paul Menage817929e2007-10-18 23:39:36 -07002404 struct list_head *l;
Diego Callejacfe36bd2007-11-14 16:58:54 -08002405
2406 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002407
2408 /* Create the top cgroup state for this subsystem */
2409 ss->root = &rootnode;
2410 css = ss->create(ss, dummytop);
2411 /* We don't handle early failures gracefully */
2412 BUG_ON(IS_ERR(css));
2413 init_cgroup_css(css, ss, dummytop);
2414
Paul Menage817929e2007-10-18 23:39:36 -07002415 /* Update all cgroup groups to contain a subsys
2416 * pointer to this state - since the subsystem is
2417 * newly registered, all tasks and hence all cgroup
2418 * groups are in the subsystem's top cgroup. */
2419 write_lock(&css_set_lock);
2420 l = &init_css_set.list;
2421 do {
2422 struct css_set *cg =
2423 list_entry(l, struct css_set, list);
2424 cg->subsys[ss->subsys_id] = dummytop->subsys[ss->subsys_id];
2425 l = l->next;
2426 } while (l != &init_css_set.list);
2427 write_unlock(&css_set_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002428
2429 /* If this subsystem requested that it be notified with fork
2430 * events, we should send it one now for every process in the
2431 * system */
Paul Menage81a6a5c2007-10-18 23:39:38 -07002432 if (ss->fork) {
2433 struct task_struct *g, *p;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002434
Paul Menage81a6a5c2007-10-18 23:39:38 -07002435 read_lock(&tasklist_lock);
2436 do_each_thread(g, p) {
2437 ss->fork(ss, p);
2438 } while_each_thread(g, p);
2439 read_unlock(&tasklist_lock);
2440 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002441
2442 need_forkexit_callback |= ss->fork || ss->exit;
2443
2444 ss->active = 1;
2445}
2446
2447/**
Li Zefana043e3b2008-02-23 15:24:09 -08002448 * cgroup_init_early - cgroup initialization at system boot
2449 *
2450 * Initialize cgroups at system boot, and initialize any
2451 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07002452 */
2453int __init cgroup_init_early(void)
2454{
2455 int i;
Paul Menage817929e2007-10-18 23:39:36 -07002456 kref_init(&init_css_set.ref);
2457 kref_get(&init_css_set.ref);
2458 INIT_LIST_HEAD(&init_css_set.list);
2459 INIT_LIST_HEAD(&init_css_set.cg_links);
2460 INIT_LIST_HEAD(&init_css_set.tasks);
2461 css_set_count = 1;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002462 init_cgroup_root(&rootnode);
2463 list_add(&rootnode.root_list, &roots);
Paul Menage817929e2007-10-18 23:39:36 -07002464 root_count = 1;
2465 init_task.cgroups = &init_css_set;
2466
2467 init_css_set_link.cg = &init_css_set;
Paul Menagebd89aab2007-10-18 23:40:44 -07002468 list_add(&init_css_set_link.cgrp_link_list,
Paul Menage817929e2007-10-18 23:39:36 -07002469 &rootnode.top_cgroup.css_sets);
2470 list_add(&init_css_set_link.cg_link_list,
2471 &init_css_set.cg_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002472
2473 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2474 struct cgroup_subsys *ss = subsys[i];
2475
2476 BUG_ON(!ss->name);
2477 BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN);
2478 BUG_ON(!ss->create);
2479 BUG_ON(!ss->destroy);
2480 if (ss->subsys_id != i) {
Diego Callejacfe36bd2007-11-14 16:58:54 -08002481 printk(KERN_ERR "cgroup: Subsys %s id == %d\n",
Paul Menageddbcc7e2007-10-18 23:39:30 -07002482 ss->name, ss->subsys_id);
2483 BUG();
2484 }
2485
2486 if (ss->early_init)
2487 cgroup_init_subsys(ss);
2488 }
2489 return 0;
2490}
2491
2492/**
Li Zefana043e3b2008-02-23 15:24:09 -08002493 * cgroup_init - cgroup initialization
2494 *
2495 * Register cgroup filesystem and /proc file, and initialize
2496 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07002497 */
2498int __init cgroup_init(void)
2499{
2500 int err;
2501 int i;
Paul Menagea4243162007-10-18 23:39:35 -07002502 struct proc_dir_entry *entry;
2503
2504 err = bdi_init(&cgroup_backing_dev_info);
2505 if (err)
2506 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002507
2508 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2509 struct cgroup_subsys *ss = subsys[i];
2510 if (!ss->early_init)
2511 cgroup_init_subsys(ss);
2512 }
2513
2514 err = register_filesystem(&cgroup_fs_type);
2515 if (err < 0)
2516 goto out;
2517
Paul Menagea4243162007-10-18 23:39:35 -07002518 entry = create_proc_entry("cgroups", 0, NULL);
2519 if (entry)
2520 entry->proc_fops = &proc_cgroupstats_operations;
2521
Paul Menageddbcc7e2007-10-18 23:39:30 -07002522out:
Paul Menagea4243162007-10-18 23:39:35 -07002523 if (err)
2524 bdi_destroy(&cgroup_backing_dev_info);
2525
Paul Menageddbcc7e2007-10-18 23:39:30 -07002526 return err;
2527}
Paul Menageb4f48b62007-10-18 23:39:33 -07002528
Paul Menagea4243162007-10-18 23:39:35 -07002529/*
2530 * proc_cgroup_show()
2531 * - Print task's cgroup paths into seq_file, one line for each hierarchy
2532 * - Used for /proc/<pid>/cgroup.
2533 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
2534 * doesn't really matter if tsk->cgroup changes after we read it,
Cliff Wickman956db3c2008-02-07 00:14:43 -08002535 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
Paul Menagea4243162007-10-18 23:39:35 -07002536 * anyway. No need to check that tsk->cgroup != NULL, thanks to
2537 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
2538 * cgroup to top_cgroup.
2539 */
2540
2541/* TODO: Use a proper seq_file iterator */
2542static int proc_cgroup_show(struct seq_file *m, void *v)
2543{
2544 struct pid *pid;
2545 struct task_struct *tsk;
2546 char *buf;
2547 int retval;
2548 struct cgroupfs_root *root;
2549
2550 retval = -ENOMEM;
2551 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
2552 if (!buf)
2553 goto out;
2554
2555 retval = -ESRCH;
2556 pid = m->private;
2557 tsk = get_pid_task(pid, PIDTYPE_PID);
2558 if (!tsk)
2559 goto out_free;
2560
2561 retval = 0;
2562
2563 mutex_lock(&cgroup_mutex);
2564
2565 for_each_root(root) {
2566 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07002567 struct cgroup *cgrp;
Paul Menagea4243162007-10-18 23:39:35 -07002568 int subsys_id;
2569 int count = 0;
2570
2571 /* Skip this hierarchy if it has no active subsystems */
2572 if (!root->actual_subsys_bits)
2573 continue;
Paul Menageb6c30062008-04-10 21:29:16 -07002574 seq_printf(m, "%lu:", root->subsys_bits);
Paul Menagea4243162007-10-18 23:39:35 -07002575 for_each_subsys(root, ss)
2576 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
2577 seq_putc(m, ':');
2578 get_first_subsys(&root->top_cgroup, NULL, &subsys_id);
Paul Menagebd89aab2007-10-18 23:40:44 -07002579 cgrp = task_cgroup(tsk, subsys_id);
2580 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
Paul Menagea4243162007-10-18 23:39:35 -07002581 if (retval < 0)
2582 goto out_unlock;
2583 seq_puts(m, buf);
2584 seq_putc(m, '\n');
2585 }
2586
2587out_unlock:
2588 mutex_unlock(&cgroup_mutex);
2589 put_task_struct(tsk);
2590out_free:
2591 kfree(buf);
2592out:
2593 return retval;
2594}
2595
2596static int cgroup_open(struct inode *inode, struct file *file)
2597{
2598 struct pid *pid = PROC_I(inode)->pid;
2599 return single_open(file, proc_cgroup_show, pid);
2600}
2601
2602struct file_operations proc_cgroup_operations = {
2603 .open = cgroup_open,
2604 .read = seq_read,
2605 .llseek = seq_lseek,
2606 .release = single_release,
2607};
2608
2609/* Display information about each subsystem and each hierarchy */
2610static int proc_cgroupstats_show(struct seq_file *m, void *v)
2611{
2612 int i;
Paul Menagea4243162007-10-18 23:39:35 -07002613
Paul Menage8bab8dd2008-04-04 14:29:57 -07002614 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Paul Menagea4243162007-10-18 23:39:35 -07002615 mutex_lock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07002616 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2617 struct cgroup_subsys *ss = subsys[i];
Paul Menage8bab8dd2008-04-04 14:29:57 -07002618 seq_printf(m, "%s\t%lu\t%d\t%d\n",
Paul Menage817929e2007-10-18 23:39:36 -07002619 ss->name, ss->root->subsys_bits,
Paul Menage8bab8dd2008-04-04 14:29:57 -07002620 ss->root->number_of_cgroups, !ss->disabled);
Paul Menagea4243162007-10-18 23:39:35 -07002621 }
2622 mutex_unlock(&cgroup_mutex);
2623 return 0;
2624}
2625
2626static int cgroupstats_open(struct inode *inode, struct file *file)
2627{
Al Viro9dce07f2008-03-29 03:07:28 +00002628 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07002629}
2630
2631static struct file_operations proc_cgroupstats_operations = {
2632 .open = cgroupstats_open,
2633 .read = seq_read,
2634 .llseek = seq_lseek,
2635 .release = single_release,
2636};
2637
Paul Menageb4f48b62007-10-18 23:39:33 -07002638/**
2639 * cgroup_fork - attach newly forked task to its parents cgroup.
Li Zefana043e3b2008-02-23 15:24:09 -08002640 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07002641 *
2642 * Description: A task inherits its parent's cgroup at fork().
2643 *
2644 * A pointer to the shared css_set was automatically copied in
2645 * fork.c by dup_task_struct(). However, we ignore that copy, since
2646 * it was not made under the protection of RCU or cgroup_mutex, so
Cliff Wickman956db3c2008-02-07 00:14:43 -08002647 * might no longer be a valid cgroup pointer. cgroup_attach_task() might
Paul Menage817929e2007-10-18 23:39:36 -07002648 * have already changed current->cgroups, allowing the previously
2649 * referenced cgroup group to be removed and freed.
Paul Menageb4f48b62007-10-18 23:39:33 -07002650 *
2651 * At the point that cgroup_fork() is called, 'current' is the parent
2652 * task, and the passed argument 'child' points to the child task.
2653 */
2654void cgroup_fork(struct task_struct *child)
2655{
Paul Menage817929e2007-10-18 23:39:36 -07002656 task_lock(current);
2657 child->cgroups = current->cgroups;
2658 get_css_set(child->cgroups);
2659 task_unlock(current);
2660 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07002661}
2662
2663/**
Li Zefana043e3b2008-02-23 15:24:09 -08002664 * cgroup_fork_callbacks - run fork callbacks
2665 * @child: the new task
2666 *
2667 * Called on a new task very soon before adding it to the
2668 * tasklist. No need to take any locks since no-one can
2669 * be operating on this task.
Paul Menageb4f48b62007-10-18 23:39:33 -07002670 */
2671void cgroup_fork_callbacks(struct task_struct *child)
2672{
2673 if (need_forkexit_callback) {
2674 int i;
2675 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2676 struct cgroup_subsys *ss = subsys[i];
2677 if (ss->fork)
2678 ss->fork(ss, child);
2679 }
2680 }
2681}
2682
2683/**
Li Zefana043e3b2008-02-23 15:24:09 -08002684 * cgroup_post_fork - called on a new task after adding it to the task list
2685 * @child: the task in question
2686 *
2687 * Adds the task to the list running through its css_set if necessary.
2688 * Has to be after the task is visible on the task list in case we race
2689 * with the first call to cgroup_iter_start() - to guarantee that the
2690 * new task ends up on its list.
2691 */
Paul Menage817929e2007-10-18 23:39:36 -07002692void cgroup_post_fork(struct task_struct *child)
2693{
2694 if (use_task_css_set_links) {
2695 write_lock(&css_set_lock);
2696 if (list_empty(&child->cg_list))
2697 list_add(&child->cg_list, &child->cgroups->tasks);
2698 write_unlock(&css_set_lock);
2699 }
2700}
2701/**
Paul Menageb4f48b62007-10-18 23:39:33 -07002702 * cgroup_exit - detach cgroup from exiting task
2703 * @tsk: pointer to task_struct of exiting process
Li Zefana043e3b2008-02-23 15:24:09 -08002704 * @run_callback: run exit callbacks?
Paul Menageb4f48b62007-10-18 23:39:33 -07002705 *
2706 * Description: Detach cgroup from @tsk and release it.
2707 *
2708 * Note that cgroups marked notify_on_release force every task in
2709 * them to take the global cgroup_mutex mutex when exiting.
2710 * This could impact scaling on very large systems. Be reluctant to
2711 * use notify_on_release cgroups where very high task exit scaling
2712 * is required on large systems.
2713 *
2714 * the_top_cgroup_hack:
2715 *
2716 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
2717 *
2718 * We call cgroup_exit() while the task is still competent to
2719 * handle notify_on_release(), then leave the task attached to the
2720 * root cgroup in each hierarchy for the remainder of its exit.
2721 *
2722 * To do this properly, we would increment the reference count on
2723 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
2724 * code we would add a second cgroup function call, to drop that
2725 * reference. This would just create an unnecessary hot spot on
2726 * the top_cgroup reference count, to no avail.
2727 *
2728 * Normally, holding a reference to a cgroup without bumping its
2729 * count is unsafe. The cgroup could go away, or someone could
2730 * attach us to a different cgroup, decrementing the count on
2731 * the first cgroup that we never incremented. But in this case,
2732 * top_cgroup isn't going away, and either task has PF_EXITING set,
Cliff Wickman956db3c2008-02-07 00:14:43 -08002733 * which wards off any cgroup_attach_task() attempts, or task is a failed
2734 * fork, never visible to cgroup_attach_task.
Paul Menageb4f48b62007-10-18 23:39:33 -07002735 */
2736void cgroup_exit(struct task_struct *tsk, int run_callbacks)
2737{
2738 int i;
Paul Menage817929e2007-10-18 23:39:36 -07002739 struct css_set *cg;
Paul Menageb4f48b62007-10-18 23:39:33 -07002740
2741 if (run_callbacks && need_forkexit_callback) {
2742 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2743 struct cgroup_subsys *ss = subsys[i];
2744 if (ss->exit)
2745 ss->exit(ss, tsk);
2746 }
2747 }
Paul Menage817929e2007-10-18 23:39:36 -07002748
2749 /*
2750 * Unlink from the css_set task list if necessary.
2751 * Optimistically check cg_list before taking
2752 * css_set_lock
2753 */
2754 if (!list_empty(&tsk->cg_list)) {
2755 write_lock(&css_set_lock);
2756 if (!list_empty(&tsk->cg_list))
2757 list_del(&tsk->cg_list);
2758 write_unlock(&css_set_lock);
2759 }
2760
Paul Menageb4f48b62007-10-18 23:39:33 -07002761 /* Reassign the task to the init_css_set. */
2762 task_lock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07002763 cg = tsk->cgroups;
2764 tsk->cgroups = &init_css_set;
Paul Menageb4f48b62007-10-18 23:39:33 -07002765 task_unlock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07002766 if (cg)
Paul Menage81a6a5c2007-10-18 23:39:38 -07002767 put_css_set_taskexit(cg);
Paul Menageb4f48b62007-10-18 23:39:33 -07002768}
Paul Menage697f4162007-10-18 23:39:34 -07002769
2770/**
Li Zefana043e3b2008-02-23 15:24:09 -08002771 * cgroup_clone - clone the cgroup the given subsystem is attached to
2772 * @tsk: the task to be moved
2773 * @subsys: the given subsystem
2774 *
2775 * Duplicate the current cgroup in the hierarchy that the given
2776 * subsystem is attached to, and move this task into the new
2777 * child.
Paul Menage697f4162007-10-18 23:39:34 -07002778 */
2779int cgroup_clone(struct task_struct *tsk, struct cgroup_subsys *subsys)
2780{
2781 struct dentry *dentry;
2782 int ret = 0;
2783 char nodename[MAX_CGROUP_TYPE_NAMELEN];
2784 struct cgroup *parent, *child;
2785 struct inode *inode;
2786 struct css_set *cg;
2787 struct cgroupfs_root *root;
2788 struct cgroup_subsys *ss;
2789
2790 /* We shouldn't be called by an unregistered subsystem */
2791 BUG_ON(!subsys->active);
2792
2793 /* First figure out what hierarchy and cgroup we're dealing
2794 * with, and pin them so we can drop cgroup_mutex */
2795 mutex_lock(&cgroup_mutex);
2796 again:
2797 root = subsys->root;
2798 if (root == &rootnode) {
2799 printk(KERN_INFO
2800 "Not cloning cgroup for unused subsystem %s\n",
2801 subsys->name);
2802 mutex_unlock(&cgroup_mutex);
2803 return 0;
2804 }
Paul Menage817929e2007-10-18 23:39:36 -07002805 cg = tsk->cgroups;
Paul Menage697f4162007-10-18 23:39:34 -07002806 parent = task_cgroup(tsk, subsys->subsys_id);
2807
2808 snprintf(nodename, MAX_CGROUP_TYPE_NAMELEN, "node_%d", tsk->pid);
2809
2810 /* Pin the hierarchy */
2811 atomic_inc(&parent->root->sb->s_active);
2812
Paul Menage817929e2007-10-18 23:39:36 -07002813 /* Keep the cgroup alive */
2814 get_css_set(cg);
Paul Menage697f4162007-10-18 23:39:34 -07002815 mutex_unlock(&cgroup_mutex);
2816
2817 /* Now do the VFS work to create a cgroup */
2818 inode = parent->dentry->d_inode;
2819
2820 /* Hold the parent directory mutex across this operation to
2821 * stop anyone else deleting the new cgroup */
2822 mutex_lock(&inode->i_mutex);
2823 dentry = lookup_one_len(nodename, parent->dentry, strlen(nodename));
2824 if (IS_ERR(dentry)) {
2825 printk(KERN_INFO
Diego Callejacfe36bd2007-11-14 16:58:54 -08002826 "cgroup: Couldn't allocate dentry for %s: %ld\n", nodename,
Paul Menage697f4162007-10-18 23:39:34 -07002827 PTR_ERR(dentry));
2828 ret = PTR_ERR(dentry);
2829 goto out_release;
2830 }
2831
2832 /* Create the cgroup directory, which also creates the cgroup */
2833 ret = vfs_mkdir(inode, dentry, S_IFDIR | 0755);
Paul Menagebd89aab2007-10-18 23:40:44 -07002834 child = __d_cgrp(dentry);
Paul Menage697f4162007-10-18 23:39:34 -07002835 dput(dentry);
2836 if (ret) {
2837 printk(KERN_INFO
2838 "Failed to create cgroup %s: %d\n", nodename,
2839 ret);
2840 goto out_release;
2841 }
2842
2843 if (!child) {
2844 printk(KERN_INFO
2845 "Couldn't find new cgroup %s\n", nodename);
2846 ret = -ENOMEM;
2847 goto out_release;
2848 }
2849
2850 /* The cgroup now exists. Retake cgroup_mutex and check
2851 * that we're still in the same state that we thought we
2852 * were. */
2853 mutex_lock(&cgroup_mutex);
2854 if ((root != subsys->root) ||
2855 (parent != task_cgroup(tsk, subsys->subsys_id))) {
2856 /* Aargh, we raced ... */
2857 mutex_unlock(&inode->i_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07002858 put_css_set(cg);
Paul Menage697f4162007-10-18 23:39:34 -07002859
2860 deactivate_super(parent->root->sb);
2861 /* The cgroup is still accessible in the VFS, but
2862 * we're not going to try to rmdir() it at this
2863 * point. */
2864 printk(KERN_INFO
2865 "Race in cgroup_clone() - leaking cgroup %s\n",
2866 nodename);
2867 goto again;
2868 }
2869
2870 /* do any required auto-setup */
2871 for_each_subsys(root, ss) {
2872 if (ss->post_clone)
2873 ss->post_clone(ss, child);
2874 }
2875
2876 /* All seems fine. Finish by moving the task into the new cgroup */
Cliff Wickman956db3c2008-02-07 00:14:43 -08002877 ret = cgroup_attach_task(child, tsk);
Paul Menage697f4162007-10-18 23:39:34 -07002878 mutex_unlock(&cgroup_mutex);
2879
2880 out_release:
2881 mutex_unlock(&inode->i_mutex);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002882
2883 mutex_lock(&cgroup_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07002884 put_css_set(cg);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002885 mutex_unlock(&cgroup_mutex);
Paul Menage697f4162007-10-18 23:39:34 -07002886 deactivate_super(parent->root->sb);
2887 return ret;
2888}
2889
Li Zefana043e3b2008-02-23 15:24:09 -08002890/**
2891 * cgroup_is_descendant - see if @cgrp is a descendant of current task's cgrp
2892 * @cgrp: the cgroup in question
2893 *
2894 * See if @cgrp is a descendant of the current task's cgroup in
2895 * the appropriate hierarchy.
Paul Menage697f4162007-10-18 23:39:34 -07002896 *
2897 * If we are sending in dummytop, then presumably we are creating
2898 * the top cgroup in the subsystem.
2899 *
2900 * Called only by the ns (nsproxy) cgroup.
2901 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002902int cgroup_is_descendant(const struct cgroup *cgrp)
Paul Menage697f4162007-10-18 23:39:34 -07002903{
2904 int ret;
2905 struct cgroup *target;
2906 int subsys_id;
2907
Paul Menagebd89aab2007-10-18 23:40:44 -07002908 if (cgrp == dummytop)
Paul Menage697f4162007-10-18 23:39:34 -07002909 return 1;
2910
Paul Menagebd89aab2007-10-18 23:40:44 -07002911 get_first_subsys(cgrp, NULL, &subsys_id);
Paul Menage697f4162007-10-18 23:39:34 -07002912 target = task_cgroup(current, subsys_id);
Paul Menagebd89aab2007-10-18 23:40:44 -07002913 while (cgrp != target && cgrp!= cgrp->top_cgroup)
2914 cgrp = cgrp->parent;
2915 ret = (cgrp == target);
Paul Menage697f4162007-10-18 23:39:34 -07002916 return ret;
2917}
Paul Menage81a6a5c2007-10-18 23:39:38 -07002918
Paul Menagebd89aab2007-10-18 23:40:44 -07002919static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07002920{
2921 /* All of these checks rely on RCU to keep the cgroup
2922 * structure alive */
Paul Menagebd89aab2007-10-18 23:40:44 -07002923 if (cgroup_is_releasable(cgrp) && !atomic_read(&cgrp->count)
2924 && list_empty(&cgrp->children) && !cgroup_has_css_refs(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07002925 /* Control Group is currently removeable. If it's not
2926 * already queued for a userspace notification, queue
2927 * it now */
2928 int need_schedule_work = 0;
2929 spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07002930 if (!cgroup_is_removed(cgrp) &&
2931 list_empty(&cgrp->release_list)) {
2932 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002933 need_schedule_work = 1;
2934 }
2935 spin_unlock(&release_list_lock);
2936 if (need_schedule_work)
2937 schedule_work(&release_agent_work);
2938 }
2939}
2940
2941void __css_put(struct cgroup_subsys_state *css)
2942{
Paul Menagebd89aab2007-10-18 23:40:44 -07002943 struct cgroup *cgrp = css->cgroup;
Paul Menage81a6a5c2007-10-18 23:39:38 -07002944 rcu_read_lock();
Paul Menagebd89aab2007-10-18 23:40:44 -07002945 if (atomic_dec_and_test(&css->refcnt) && notify_on_release(cgrp)) {
2946 set_bit(CGRP_RELEASABLE, &cgrp->flags);
2947 check_for_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002948 }
2949 rcu_read_unlock();
2950}
2951
2952/*
2953 * Notify userspace when a cgroup is released, by running the
2954 * configured release agent with the name of the cgroup (path
2955 * relative to the root of cgroup file system) as the argument.
2956 *
2957 * Most likely, this user command will try to rmdir this cgroup.
2958 *
2959 * This races with the possibility that some other task will be
2960 * attached to this cgroup before it is removed, or that some other
2961 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
2962 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
2963 * unused, and this cgroup will be reprieved from its death sentence,
2964 * to continue to serve a useful existence. Next time it's released,
2965 * we will get notified again, if it still has 'notify_on_release' set.
2966 *
2967 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
2968 * means only wait until the task is successfully execve()'d. The
2969 * separate release agent task is forked by call_usermodehelper(),
2970 * then control in this thread returns here, without waiting for the
2971 * release agent task. We don't bother to wait because the caller of
2972 * this routine has no use for the exit status of the release agent
2973 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07002974 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07002975static void cgroup_release_agent(struct work_struct *work)
2976{
2977 BUG_ON(work != &release_agent_work);
2978 mutex_lock(&cgroup_mutex);
2979 spin_lock(&release_list_lock);
2980 while (!list_empty(&release_list)) {
2981 char *argv[3], *envp[3];
2982 int i;
2983 char *pathbuf;
Paul Menagebd89aab2007-10-18 23:40:44 -07002984 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07002985 struct cgroup,
2986 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07002987 list_del_init(&cgrp->release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002988 spin_unlock(&release_list_lock);
2989 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
2990 if (!pathbuf) {
2991 spin_lock(&release_list_lock);
2992 continue;
2993 }
2994
Paul Menagebd89aab2007-10-18 23:40:44 -07002995 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07002996 kfree(pathbuf);
2997 spin_lock(&release_list_lock);
2998 continue;
2999 }
3000
3001 i = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07003002 argv[i++] = cgrp->root->release_agent_path;
Paul Menage81a6a5c2007-10-18 23:39:38 -07003003 argv[i++] = (char *)pathbuf;
3004 argv[i] = NULL;
3005
3006 i = 0;
3007 /* minimal command environment */
3008 envp[i++] = "HOME=/";
3009 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
3010 envp[i] = NULL;
3011
3012 /* Drop the lock while we invoke the usermode helper,
3013 * since the exec could involve hitting disk and hence
3014 * be a slow process */
3015 mutex_unlock(&cgroup_mutex);
3016 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
3017 kfree(pathbuf);
3018 mutex_lock(&cgroup_mutex);
3019 spin_lock(&release_list_lock);
3020 }
3021 spin_unlock(&release_list_lock);
3022 mutex_unlock(&cgroup_mutex);
3023}
Paul Menage8bab8dd2008-04-04 14:29:57 -07003024
3025static int __init cgroup_disable(char *str)
3026{
3027 int i;
3028 char *token;
3029
3030 while ((token = strsep(&str, ",")) != NULL) {
3031 if (!*token)
3032 continue;
3033
3034 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3035 struct cgroup_subsys *ss = subsys[i];
3036
3037 if (!strcmp(token, ss->name)) {
3038 ss->disabled = 1;
3039 printk(KERN_INFO "Disabling %s control group"
3040 " subsystem\n", ss->name);
3041 break;
3042 }
3043 }
3044 }
3045 return 1;
3046}
3047__setup("cgroup_disable=", cgroup_disable);