blob: 4e8b16a8266c31855772c7ce40d50112f0e940f4 [file] [log] [blame]
Paul Menageddbcc7e2007-10-18 23:39:30 -07001/*
Paul Menageddbcc7e2007-10-18 23:39:30 -07002 * Generic process-grouping system.
3 *
4 * Based originally on the cpuset system, extracted by Paul Menage
5 * Copyright (C) 2006 Google, Inc
6 *
7 * Copyright notices from the original cpuset code:
8 * --------------------------------------------------
9 * Copyright (C) 2003 BULL SA.
10 * Copyright (C) 2004-2006 Silicon Graphics, Inc.
11 *
12 * Portions derived from Patrick Mochel's sysfs code.
13 * sysfs is Copyright (c) 2001-3 Patrick Mochel
14 *
15 * 2003-10-10 Written by Simon Derr.
16 * 2003-10-22 Updates by Stephen Hemminger.
17 * 2004 May-July Rework by Paul Jackson.
18 * ---------------------------------------------------
19 *
20 * This file is subject to the terms and conditions of the GNU General Public
21 * License. See the file COPYING in the main directory of the Linux
22 * distribution for more details.
23 */
24
25#include <linux/cgroup.h>
26#include <linux/errno.h>
27#include <linux/fs.h>
28#include <linux/kernel.h>
29#include <linux/list.h>
30#include <linux/mm.h>
31#include <linux/mutex.h>
32#include <linux/mount.h>
33#include <linux/pagemap.h>
Paul Menagea4243162007-10-18 23:39:35 -070034#include <linux/proc_fs.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070035#include <linux/rcupdate.h>
36#include <linux/sched.h>
Paul Menage817929e2007-10-18 23:39:36 -070037#include <linux/backing-dev.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070038#include <linux/seq_file.h>
39#include <linux/slab.h>
40#include <linux/magic.h>
41#include <linux/spinlock.h>
42#include <linux/string.h>
Paul Menagebbcb81d2007-10-18 23:39:32 -070043#include <linux/sort.h>
Paul Menage81a6a5c2007-10-18 23:39:38 -070044#include <linux/kmod.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070045#include <linux/delayacct.h>
46#include <linux/cgroupstats.h>
47
Paul Menageddbcc7e2007-10-18 23:39:30 -070048#include <asm/atomic.h>
49
Paul Menage81a6a5c2007-10-18 23:39:38 -070050static DEFINE_MUTEX(cgroup_mutex);
51
Paul Menageddbcc7e2007-10-18 23:39:30 -070052/* Generate an array of cgroup subsystem pointers */
53#define SUBSYS(_x) &_x ## _subsys,
54
55static struct cgroup_subsys *subsys[] = {
56#include <linux/cgroup_subsys.h>
57};
58
59/*
60 * A cgroupfs_root represents the root of a cgroup hierarchy,
61 * and may be associated with a superblock to form an active
62 * hierarchy
63 */
64struct cgroupfs_root {
65 struct super_block *sb;
66
67 /*
68 * The bitmask of subsystems intended to be attached to this
69 * hierarchy
70 */
71 unsigned long subsys_bits;
72
73 /* The bitmask of subsystems currently attached to this hierarchy */
74 unsigned long actual_subsys_bits;
75
76 /* A list running through the attached subsystems */
77 struct list_head subsys_list;
78
79 /* The root cgroup for this hierarchy */
80 struct cgroup top_cgroup;
81
82 /* Tracks how many cgroups are currently defined in hierarchy.*/
83 int number_of_cgroups;
84
85 /* A list running through the mounted hierarchies */
86 struct list_head root_list;
87
88 /* Hierarchy-specific flags */
89 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -070090
91 /* The path to use for release notifications. No locking
92 * between setting and use - so if userspace updates this
93 * while child cgroups exist, you could miss a
94 * notification. We ensure that it's always a valid
95 * NUL-terminated string */
96 char release_agent_path[PATH_MAX];
Paul Menageddbcc7e2007-10-18 23:39:30 -070097};
98
99
100/*
101 * The "rootnode" hierarchy is the "dummy hierarchy", reserved for the
102 * subsystems that are otherwise unattached - it never has more than a
103 * single cgroup, and all tasks are part of that cgroup.
104 */
105static struct cgroupfs_root rootnode;
106
107/* The list of hierarchy roots */
108
109static LIST_HEAD(roots);
Paul Menage817929e2007-10-18 23:39:36 -0700110static int root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700111
112/* dummytop is a shorthand for the dummy hierarchy's top cgroup */
113#define dummytop (&rootnode.top_cgroup)
114
115/* This flag indicates whether tasks in the fork and exit paths should
116 * take callback_mutex and check for fork/exit handlers to call. This
117 * avoids us having to do extra work in the fork/exit path if none of the
118 * subsystems need to be called.
119 */
120static int need_forkexit_callback;
121
122/* bits in struct cgroup flags field */
123enum {
Paul Menage81a6a5c2007-10-18 23:39:38 -0700124 /* Control Group is dead */
Paul Menagebd89aab2007-10-18 23:40:44 -0700125 CGRP_REMOVED,
Paul Menage81a6a5c2007-10-18 23:39:38 -0700126 /* Control Group has previously had a child cgroup or a task,
Paul Menagebd89aab2007-10-18 23:40:44 -0700127 * but no longer (only if CGRP_NOTIFY_ON_RELEASE is set) */
128 CGRP_RELEASABLE,
Paul Menage81a6a5c2007-10-18 23:39:38 -0700129 /* Control Group requires release notifications to userspace */
Paul Menagebd89aab2007-10-18 23:40:44 -0700130 CGRP_NOTIFY_ON_RELEASE,
Paul Menageddbcc7e2007-10-18 23:39:30 -0700131};
132
133/* convenient tests for these bits */
Paul Menagebd89aab2007-10-18 23:40:44 -0700134inline int cgroup_is_removed(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700135{
Paul Menagebd89aab2007-10-18 23:40:44 -0700136 return test_bit(CGRP_REMOVED, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700137}
138
139/* bits in struct cgroupfs_root flags field */
140enum {
141 ROOT_NOPREFIX, /* mounted subsystems have no named prefix */
142};
143
Adrian Bunke9685a02008-02-07 00:13:46 -0800144static int cgroup_is_releasable(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700145{
146 const int bits =
Paul Menagebd89aab2007-10-18 23:40:44 -0700147 (1 << CGRP_RELEASABLE) |
148 (1 << CGRP_NOTIFY_ON_RELEASE);
149 return (cgrp->flags & bits) == bits;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700150}
151
Adrian Bunke9685a02008-02-07 00:13:46 -0800152static int notify_on_release(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700153{
Paul Menagebd89aab2007-10-18 23:40:44 -0700154 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700155}
156
Paul Menageddbcc7e2007-10-18 23:39:30 -0700157/*
158 * for_each_subsys() allows you to iterate on each subsystem attached to
159 * an active hierarchy
160 */
161#define for_each_subsys(_root, _ss) \
162list_for_each_entry(_ss, &_root->subsys_list, sibling)
163
164/* for_each_root() allows you to iterate across the active hierarchies */
165#define for_each_root(_root) \
166list_for_each_entry(_root, &roots, root_list)
167
Paul Menage81a6a5c2007-10-18 23:39:38 -0700168/* the list of cgroups eligible for automatic release. Protected by
169 * release_list_lock */
170static LIST_HEAD(release_list);
171static DEFINE_SPINLOCK(release_list_lock);
172static void cgroup_release_agent(struct work_struct *work);
173static DECLARE_WORK(release_agent_work, cgroup_release_agent);
Paul Menagebd89aab2007-10-18 23:40:44 -0700174static void check_for_release(struct cgroup *cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700175
Paul Menage817929e2007-10-18 23:39:36 -0700176/* Link structure for associating css_set objects with cgroups */
177struct cg_cgroup_link {
178 /*
179 * List running through cg_cgroup_links associated with a
180 * cgroup, anchored on cgroup->css_sets
181 */
Paul Menagebd89aab2007-10-18 23:40:44 -0700182 struct list_head cgrp_link_list;
Paul Menage817929e2007-10-18 23:39:36 -0700183 /*
184 * List running through cg_cgroup_links pointing at a
185 * single css_set object, anchored on css_set->cg_links
186 */
187 struct list_head cg_link_list;
188 struct css_set *cg;
189};
190
191/* The default css_set - used by init and its children prior to any
192 * hierarchies being mounted. It contains a pointer to the root state
193 * for each subsystem. Also used to anchor the list of css_sets. Not
194 * reference-counted, to improve performance when child cgroups
195 * haven't been created.
196 */
197
198static struct css_set init_css_set;
199static struct cg_cgroup_link init_css_set_link;
200
201/* css_set_lock protects the list of css_set objects, and the
202 * chain of tasks off each css_set. Nests outside task->alloc_lock
203 * due to cgroup_iter_start() */
204static DEFINE_RWLOCK(css_set_lock);
205static int css_set_count;
206
207/* We don't maintain the lists running through each css_set to its
208 * task until after the first call to cgroup_iter_start(). This
209 * reduces the fork()/exit() overhead for people who have cgroups
210 * compiled into their kernel but not actually in use */
211static int use_task_css_set_links;
212
213/* When we create or destroy a css_set, the operation simply
214 * takes/releases a reference count on all the cgroups referenced
215 * by subsystems in this css_set. This can end up multiple-counting
216 * some cgroups, but that's OK - the ref-count is just a
217 * busy/not-busy indicator; ensuring that we only count each cgroup
218 * once would require taking a global lock to ensure that no
Paul Menageb4f48b62007-10-18 23:39:33 -0700219 * subsystems moved between hierarchies while we were doing so.
220 *
221 * Possible TODO: decide at boot time based on the number of
222 * registered subsystems and the number of CPUs or NUMA nodes whether
223 * it's better for performance to ref-count every subsystem, or to
224 * take a global lock and only add one ref count to each hierarchy.
225 */
Paul Menageb4f48b62007-10-18 23:39:33 -0700226
Paul Menage817929e2007-10-18 23:39:36 -0700227/*
228 * unlink a css_set from the list and free it
229 */
Paul Menage81a6a5c2007-10-18 23:39:38 -0700230static void unlink_css_set(struct css_set *cg)
Paul Menageb4f48b62007-10-18 23:39:33 -0700231{
Paul Menage817929e2007-10-18 23:39:36 -0700232 write_lock(&css_set_lock);
233 list_del(&cg->list);
234 css_set_count--;
235 while (!list_empty(&cg->cg_links)) {
236 struct cg_cgroup_link *link;
237 link = list_entry(cg->cg_links.next,
238 struct cg_cgroup_link, cg_link_list);
239 list_del(&link->cg_link_list);
Paul Menagebd89aab2007-10-18 23:40:44 -0700240 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -0700241 kfree(link);
242 }
243 write_unlock(&css_set_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700244}
245
246static void __release_css_set(struct kref *k, int taskexit)
247{
248 int i;
249 struct css_set *cg = container_of(k, struct css_set, ref);
250
251 unlink_css_set(cg);
252
253 rcu_read_lock();
254 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700255 struct cgroup *cgrp = cg->subsys[i]->cgroup;
256 if (atomic_dec_and_test(&cgrp->count) &&
257 notify_on_release(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -0700258 if (taskexit)
Paul Menagebd89aab2007-10-18 23:40:44 -0700259 set_bit(CGRP_RELEASABLE, &cgrp->flags);
260 check_for_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700261 }
262 }
263 rcu_read_unlock();
Paul Menage817929e2007-10-18 23:39:36 -0700264 kfree(cg);
265}
266
Paul Menage81a6a5c2007-10-18 23:39:38 -0700267static void release_css_set(struct kref *k)
268{
269 __release_css_set(k, 0);
270}
271
272static void release_css_set_taskexit(struct kref *k)
273{
274 __release_css_set(k, 1);
275}
276
Paul Menage817929e2007-10-18 23:39:36 -0700277/*
278 * refcounted get/put for css_set objects
279 */
280static inline void get_css_set(struct css_set *cg)
281{
282 kref_get(&cg->ref);
283}
284
285static inline void put_css_set(struct css_set *cg)
286{
287 kref_put(&cg->ref, release_css_set);
288}
289
Paul Menage81a6a5c2007-10-18 23:39:38 -0700290static inline void put_css_set_taskexit(struct css_set *cg)
291{
292 kref_put(&cg->ref, release_css_set_taskexit);
293}
294
Paul Menage817929e2007-10-18 23:39:36 -0700295/*
296 * find_existing_css_set() is a helper for
297 * find_css_set(), and checks to see whether an existing
298 * css_set is suitable. This currently walks a linked-list for
299 * simplicity; a later patch will use a hash table for better
300 * performance
301 *
302 * oldcg: the cgroup group that we're using before the cgroup
303 * transition
304 *
Paul Menagebd89aab2007-10-18 23:40:44 -0700305 * cgrp: the cgroup that we're moving into
Paul Menage817929e2007-10-18 23:39:36 -0700306 *
307 * template: location in which to build the desired set of subsystem
308 * state objects for the new cgroup group
309 */
310
311static struct css_set *find_existing_css_set(
312 struct css_set *oldcg,
Paul Menagebd89aab2007-10-18 23:40:44 -0700313 struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -0700314 struct cgroup_subsys_state *template[])
315{
316 int i;
Paul Menagebd89aab2007-10-18 23:40:44 -0700317 struct cgroupfs_root *root = cgrp->root;
Paul Menage817929e2007-10-18 23:39:36 -0700318 struct list_head *l = &init_css_set.list;
319
320 /* Built the set of subsystem state objects that we want to
321 * see in the new css_set */
322 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
323 if (root->subsys_bits & (1ull << i)) {
324 /* Subsystem is in this hierarchy. So we want
325 * the subsystem state from the new
326 * cgroup */
Paul Menagebd89aab2007-10-18 23:40:44 -0700327 template[i] = cgrp->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700328 } else {
329 /* Subsystem is not in this hierarchy, so we
330 * don't want to change the subsystem state */
331 template[i] = oldcg->subsys[i];
332 }
333 }
334
335 /* Look through existing cgroup groups to find one to reuse */
336 do {
337 struct css_set *cg =
338 list_entry(l, struct css_set, list);
339
340 if (!memcmp(template, cg->subsys, sizeof(cg->subsys))) {
341 /* All subsystems matched */
342 return cg;
343 }
344 /* Try the next cgroup group */
345 l = l->next;
346 } while (l != &init_css_set.list);
347
348 /* No existing cgroup group matched */
349 return NULL;
350}
351
352/*
353 * allocate_cg_links() allocates "count" cg_cgroup_link structures
Paul Menagebd89aab2007-10-18 23:40:44 -0700354 * and chains them on tmp through their cgrp_link_list fields. Returns 0 on
Paul Menage817929e2007-10-18 23:39:36 -0700355 * success or a negative error
356 */
357
358static int allocate_cg_links(int count, struct list_head *tmp)
359{
360 struct cg_cgroup_link *link;
361 int i;
362 INIT_LIST_HEAD(tmp);
363 for (i = 0; i < count; i++) {
364 link = kmalloc(sizeof(*link), GFP_KERNEL);
365 if (!link) {
366 while (!list_empty(tmp)) {
367 link = list_entry(tmp->next,
368 struct cg_cgroup_link,
Paul Menagebd89aab2007-10-18 23:40:44 -0700369 cgrp_link_list);
370 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -0700371 kfree(link);
372 }
373 return -ENOMEM;
374 }
Paul Menagebd89aab2007-10-18 23:40:44 -0700375 list_add(&link->cgrp_link_list, tmp);
Paul Menage817929e2007-10-18 23:39:36 -0700376 }
377 return 0;
378}
379
380static void free_cg_links(struct list_head *tmp)
381{
382 while (!list_empty(tmp)) {
383 struct cg_cgroup_link *link;
384 link = list_entry(tmp->next,
385 struct cg_cgroup_link,
Paul Menagebd89aab2007-10-18 23:40:44 -0700386 cgrp_link_list);
387 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -0700388 kfree(link);
389 }
390}
391
392/*
393 * find_css_set() takes an existing cgroup group and a
394 * cgroup object, and returns a css_set object that's
395 * equivalent to the old group, but with the given cgroup
396 * substituted into the appropriate hierarchy. Must be called with
397 * cgroup_mutex held
398 */
399
400static struct css_set *find_css_set(
Paul Menagebd89aab2007-10-18 23:40:44 -0700401 struct css_set *oldcg, struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700402{
403 struct css_set *res;
404 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT];
405 int i;
406
407 struct list_head tmp_cg_links;
408 struct cg_cgroup_link *link;
409
410 /* First see if we already have a cgroup group that matches
411 * the desired set */
412 write_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -0700413 res = find_existing_css_set(oldcg, cgrp, template);
Paul Menage817929e2007-10-18 23:39:36 -0700414 if (res)
415 get_css_set(res);
416 write_unlock(&css_set_lock);
417
418 if (res)
419 return res;
420
421 res = kmalloc(sizeof(*res), GFP_KERNEL);
422 if (!res)
423 return NULL;
424
425 /* Allocate all the cg_cgroup_link objects that we'll need */
426 if (allocate_cg_links(root_count, &tmp_cg_links) < 0) {
427 kfree(res);
428 return NULL;
429 }
430
431 kref_init(&res->ref);
432 INIT_LIST_HEAD(&res->cg_links);
433 INIT_LIST_HEAD(&res->tasks);
434
435 /* Copy the set of subsystem state objects generated in
436 * find_existing_css_set() */
437 memcpy(res->subsys, template, sizeof(res->subsys));
438
439 write_lock(&css_set_lock);
440 /* Add reference counts and links from the new css_set. */
441 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700442 struct cgroup *cgrp = res->subsys[i]->cgroup;
Paul Menage817929e2007-10-18 23:39:36 -0700443 struct cgroup_subsys *ss = subsys[i];
Paul Menagebd89aab2007-10-18 23:40:44 -0700444 atomic_inc(&cgrp->count);
Paul Menage817929e2007-10-18 23:39:36 -0700445 /*
446 * We want to add a link once per cgroup, so we
447 * only do it for the first subsystem in each
448 * hierarchy
449 */
450 if (ss->root->subsys_list.next == &ss->sibling) {
451 BUG_ON(list_empty(&tmp_cg_links));
452 link = list_entry(tmp_cg_links.next,
453 struct cg_cgroup_link,
Paul Menagebd89aab2007-10-18 23:40:44 -0700454 cgrp_link_list);
455 list_del(&link->cgrp_link_list);
456 list_add(&link->cgrp_link_list, &cgrp->css_sets);
Paul Menage817929e2007-10-18 23:39:36 -0700457 link->cg = res;
458 list_add(&link->cg_link_list, &res->cg_links);
459 }
460 }
461 if (list_empty(&rootnode.subsys_list)) {
462 link = list_entry(tmp_cg_links.next,
463 struct cg_cgroup_link,
Paul Menagebd89aab2007-10-18 23:40:44 -0700464 cgrp_link_list);
465 list_del(&link->cgrp_link_list);
466 list_add(&link->cgrp_link_list, &dummytop->css_sets);
Paul Menage817929e2007-10-18 23:39:36 -0700467 link->cg = res;
468 list_add(&link->cg_link_list, &res->cg_links);
469 }
470
471 BUG_ON(!list_empty(&tmp_cg_links));
472
473 /* Link this cgroup group into the list */
474 list_add(&res->list, &init_css_set.list);
475 css_set_count++;
476 INIT_LIST_HEAD(&res->tasks);
477 write_unlock(&css_set_lock);
478
479 return res;
Paul Menageb4f48b62007-10-18 23:39:33 -0700480}
481
Paul Menageddbcc7e2007-10-18 23:39:30 -0700482/*
483 * There is one global cgroup mutex. We also require taking
484 * task_lock() when dereferencing a task's cgroup subsys pointers.
485 * See "The task_lock() exception", at the end of this comment.
486 *
487 * A task must hold cgroup_mutex to modify cgroups.
488 *
489 * Any task can increment and decrement the count field without lock.
490 * So in general, code holding cgroup_mutex can't rely on the count
491 * field not changing. However, if the count goes to zero, then only
492 * attach_task() can increment it again. Because a count of zero
493 * means that no tasks are currently attached, therefore there is no
494 * way a task attached to that cgroup can fork (the other way to
495 * increment the count). So code holding cgroup_mutex can safely
496 * assume that if the count is zero, it will stay zero. Similarly, if
497 * a task holds cgroup_mutex on a cgroup with zero count, it
498 * knows that the cgroup won't be removed, as cgroup_rmdir()
499 * needs that mutex.
500 *
501 * The cgroup_common_file_write handler for operations that modify
502 * the cgroup hierarchy holds cgroup_mutex across the entire operation,
503 * single threading all such cgroup modifications across the system.
504 *
505 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
506 * (usually) take cgroup_mutex. These are the two most performance
507 * critical pieces of code here. The exception occurs on cgroup_exit(),
508 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
509 * is taken, and if the cgroup count is zero, a usermode call made
510 * to /sbin/cgroup_release_agent with the name of the cgroup (path
511 * relative to the root of cgroup file system) as the argument.
512 *
513 * A cgroup can only be deleted if both its 'count' of using tasks
514 * is zero, and its list of 'children' cgroups is empty. Since all
515 * tasks in the system use _some_ cgroup, and since there is always at
516 * least one task in the system (init, pid == 1), therefore, top_cgroup
517 * always has either children cgroups and/or using tasks. So we don't
518 * need a special hack to ensure that top_cgroup cannot be deleted.
519 *
520 * The task_lock() exception
521 *
522 * The need for this exception arises from the action of
523 * attach_task(), which overwrites one tasks cgroup pointer with
524 * another. It does so using cgroup_mutexe, however there are
525 * several performance critical places that need to reference
526 * task->cgroup without the expense of grabbing a system global
527 * mutex. Therefore except as noted below, when dereferencing or, as
528 * in attach_task(), modifying a task'ss cgroup pointer we use
529 * task_lock(), which acts on a spinlock (task->alloc_lock) already in
530 * the task_struct routinely used for such matters.
531 *
532 * P.S. One more locking exception. RCU is used to guard the
533 * update of a tasks cgroup pointer by attach_task()
534 */
535
Paul Menageddbcc7e2007-10-18 23:39:30 -0700536/**
537 * cgroup_lock - lock out any changes to cgroup structures
538 *
539 */
540
541void cgroup_lock(void)
542{
543 mutex_lock(&cgroup_mutex);
544}
545
546/**
547 * cgroup_unlock - release lock on cgroup changes
548 *
549 * Undo the lock taken in a previous cgroup_lock() call.
550 */
551
552void cgroup_unlock(void)
553{
554 mutex_unlock(&cgroup_mutex);
555}
556
557/*
558 * A couple of forward declarations required, due to cyclic reference loop:
559 * cgroup_mkdir -> cgroup_create -> cgroup_populate_dir ->
560 * cgroup_add_file -> cgroup_create_file -> cgroup_dir_inode_operations
561 * -> cgroup_mkdir.
562 */
563
564static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode);
565static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -0700566static int cgroup_populate_dir(struct cgroup *cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700567static struct inode_operations cgroup_dir_inode_operations;
Paul Menagea4243162007-10-18 23:39:35 -0700568static struct file_operations proc_cgroupstats_operations;
569
570static struct backing_dev_info cgroup_backing_dev_info = {
571 .capabilities = BDI_CAP_NO_ACCT_DIRTY | BDI_CAP_NO_WRITEBACK,
572};
Paul Menageddbcc7e2007-10-18 23:39:30 -0700573
574static struct inode *cgroup_new_inode(mode_t mode, struct super_block *sb)
575{
576 struct inode *inode = new_inode(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700577
578 if (inode) {
579 inode->i_mode = mode;
580 inode->i_uid = current->fsuid;
581 inode->i_gid = current->fsgid;
582 inode->i_blocks = 0;
583 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
584 inode->i_mapping->backing_dev_info = &cgroup_backing_dev_info;
585 }
586 return inode;
587}
588
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800589/*
590 * Call subsys's pre_destroy handler.
591 * This is called before css refcnt check.
592 */
593
594static void cgroup_call_pre_destroy(struct cgroup *cgrp)
595{
596 struct cgroup_subsys *ss;
597 for_each_subsys(cgrp->root, ss)
598 if (ss->pre_destroy && cgrp->subsys[ss->subsys_id])
599 ss->pre_destroy(ss, cgrp);
600 return;
601}
602
603
Paul Menageddbcc7e2007-10-18 23:39:30 -0700604static void cgroup_diput(struct dentry *dentry, struct inode *inode)
605{
606 /* is dentry a directory ? if so, kfree() associated cgroup */
607 if (S_ISDIR(inode->i_mode)) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700608 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800609 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -0700610 BUG_ON(!(cgroup_is_removed(cgrp)));
Paul Menage81a6a5c2007-10-18 23:39:38 -0700611 /* It's possible for external users to be holding css
612 * reference counts on a cgroup; css_put() needs to
613 * be able to access the cgroup after decrementing
614 * the reference count in order to know if it needs to
615 * queue the cgroup to be handled by the release
616 * agent */
617 synchronize_rcu();
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800618
619 mutex_lock(&cgroup_mutex);
620 /*
621 * Release the subsystem state objects.
622 */
623 for_each_subsys(cgrp->root, ss) {
624 if (cgrp->subsys[ss->subsys_id])
625 ss->destroy(ss, cgrp);
626 }
627
628 cgrp->root->number_of_cgroups--;
629 mutex_unlock(&cgroup_mutex);
630
631 /* Drop the active superblock reference that we took when we
632 * created the cgroup */
633 deactivate_super(cgrp->root->sb);
634
Paul Menagebd89aab2007-10-18 23:40:44 -0700635 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700636 }
637 iput(inode);
638}
639
640static void remove_dir(struct dentry *d)
641{
642 struct dentry *parent = dget(d->d_parent);
643
644 d_delete(d);
645 simple_rmdir(parent->d_inode, d);
646 dput(parent);
647}
648
649static void cgroup_clear_directory(struct dentry *dentry)
650{
651 struct list_head *node;
652
653 BUG_ON(!mutex_is_locked(&dentry->d_inode->i_mutex));
654 spin_lock(&dcache_lock);
655 node = dentry->d_subdirs.next;
656 while (node != &dentry->d_subdirs) {
657 struct dentry *d = list_entry(node, struct dentry, d_u.d_child);
658 list_del_init(node);
659 if (d->d_inode) {
660 /* This should never be called on a cgroup
661 * directory with child cgroups */
662 BUG_ON(d->d_inode->i_mode & S_IFDIR);
663 d = dget_locked(d);
664 spin_unlock(&dcache_lock);
665 d_delete(d);
666 simple_unlink(dentry->d_inode, d);
667 dput(d);
668 spin_lock(&dcache_lock);
669 }
670 node = dentry->d_subdirs.next;
671 }
672 spin_unlock(&dcache_lock);
673}
674
675/*
676 * NOTE : the dentry must have been dget()'ed
677 */
678static void cgroup_d_remove_dir(struct dentry *dentry)
679{
680 cgroup_clear_directory(dentry);
681
682 spin_lock(&dcache_lock);
683 list_del_init(&dentry->d_u.d_child);
684 spin_unlock(&dcache_lock);
685 remove_dir(dentry);
686}
687
688static int rebind_subsystems(struct cgroupfs_root *root,
689 unsigned long final_bits)
690{
691 unsigned long added_bits, removed_bits;
Paul Menagebd89aab2007-10-18 23:40:44 -0700692 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700693 int i;
694
695 removed_bits = root->actual_subsys_bits & ~final_bits;
696 added_bits = final_bits & ~root->actual_subsys_bits;
697 /* Check that any added subsystems are currently free */
698 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
699 unsigned long long bit = 1ull << i;
700 struct cgroup_subsys *ss = subsys[i];
701 if (!(bit & added_bits))
702 continue;
703 if (ss->root != &rootnode) {
704 /* Subsystem isn't free */
705 return -EBUSY;
706 }
707 }
708
709 /* Currently we don't handle adding/removing subsystems when
710 * any child cgroups exist. This is theoretically supportable
711 * but involves complex error handling, so it's being left until
712 * later */
Paul Menagebd89aab2007-10-18 23:40:44 -0700713 if (!list_empty(&cgrp->children))
Paul Menageddbcc7e2007-10-18 23:39:30 -0700714 return -EBUSY;
715
716 /* Process each subsystem */
717 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
718 struct cgroup_subsys *ss = subsys[i];
719 unsigned long bit = 1UL << i;
720 if (bit & added_bits) {
721 /* We're binding this subsystem to this hierarchy */
Paul Menagebd89aab2007-10-18 23:40:44 -0700722 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700723 BUG_ON(!dummytop->subsys[i]);
724 BUG_ON(dummytop->subsys[i]->cgroup != dummytop);
Paul Menagebd89aab2007-10-18 23:40:44 -0700725 cgrp->subsys[i] = dummytop->subsys[i];
726 cgrp->subsys[i]->cgroup = cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700727 list_add(&ss->sibling, &root->subsys_list);
728 rcu_assign_pointer(ss->root, root);
729 if (ss->bind)
Paul Menagebd89aab2007-10-18 23:40:44 -0700730 ss->bind(ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700731
732 } else if (bit & removed_bits) {
733 /* We're removing this subsystem */
Paul Menagebd89aab2007-10-18 23:40:44 -0700734 BUG_ON(cgrp->subsys[i] != dummytop->subsys[i]);
735 BUG_ON(cgrp->subsys[i]->cgroup != cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700736 if (ss->bind)
737 ss->bind(ss, dummytop);
738 dummytop->subsys[i]->cgroup = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -0700739 cgrp->subsys[i] = NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700740 rcu_assign_pointer(subsys[i]->root, &rootnode);
741 list_del(&ss->sibling);
742 } else if (bit & final_bits) {
743 /* Subsystem state should already exist */
Paul Menagebd89aab2007-10-18 23:40:44 -0700744 BUG_ON(!cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700745 } else {
746 /* Subsystem state shouldn't exist */
Paul Menagebd89aab2007-10-18 23:40:44 -0700747 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700748 }
749 }
750 root->subsys_bits = root->actual_subsys_bits = final_bits;
751 synchronize_rcu();
752
753 return 0;
754}
755
756static int cgroup_show_options(struct seq_file *seq, struct vfsmount *vfs)
757{
758 struct cgroupfs_root *root = vfs->mnt_sb->s_fs_info;
759 struct cgroup_subsys *ss;
760
761 mutex_lock(&cgroup_mutex);
762 for_each_subsys(root, ss)
763 seq_printf(seq, ",%s", ss->name);
764 if (test_bit(ROOT_NOPREFIX, &root->flags))
765 seq_puts(seq, ",noprefix");
Paul Menage81a6a5c2007-10-18 23:39:38 -0700766 if (strlen(root->release_agent_path))
767 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700768 mutex_unlock(&cgroup_mutex);
769 return 0;
770}
771
772struct cgroup_sb_opts {
773 unsigned long subsys_bits;
774 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700775 char *release_agent;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700776};
777
778/* Convert a hierarchy specifier into a bitmask of subsystems and
779 * flags. */
780static int parse_cgroupfs_options(char *data,
781 struct cgroup_sb_opts *opts)
782{
783 char *token, *o = data ?: "all";
784
785 opts->subsys_bits = 0;
786 opts->flags = 0;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700787 opts->release_agent = NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700788
789 while ((token = strsep(&o, ",")) != NULL) {
790 if (!*token)
791 return -EINVAL;
792 if (!strcmp(token, "all")) {
793 opts->subsys_bits = (1 << CGROUP_SUBSYS_COUNT) - 1;
794 } else if (!strcmp(token, "noprefix")) {
795 set_bit(ROOT_NOPREFIX, &opts->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700796 } else if (!strncmp(token, "release_agent=", 14)) {
797 /* Specifying two release agents is forbidden */
798 if (opts->release_agent)
799 return -EINVAL;
800 opts->release_agent = kzalloc(PATH_MAX, GFP_KERNEL);
801 if (!opts->release_agent)
802 return -ENOMEM;
803 strncpy(opts->release_agent, token + 14, PATH_MAX - 1);
804 opts->release_agent[PATH_MAX - 1] = 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700805 } else {
806 struct cgroup_subsys *ss;
807 int i;
808 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
809 ss = subsys[i];
810 if (!strcmp(token, ss->name)) {
811 set_bit(i, &opts->subsys_bits);
812 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
930 inode->i_op = &simple_dir_inode_operations;
931 inode->i_fop = &simple_dir_operations;
932 inode->i_op = &cgroup_dir_inode_operations;
933 /* directories start off with i_nlink == 2 (for "." entry) */
934 inc_nlink(inode);
935 dentry = d_alloc_root(inode);
936 if (!dentry) {
937 iput(inode);
938 return -ENOMEM;
939 }
940 sb->s_root = dentry;
941 return 0;
942}
943
944static int cgroup_get_sb(struct file_system_type *fs_type,
945 int flags, const char *unused_dev_name,
946 void *data, struct vfsmount *mnt)
947{
948 struct cgroup_sb_opts opts;
949 int ret = 0;
950 struct super_block *sb;
951 struct cgroupfs_root *root;
Paul Menage817929e2007-10-18 23:39:36 -0700952 struct list_head tmp_cg_links, *l;
953 INIT_LIST_HEAD(&tmp_cg_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700954
955 /* First find the desired set of subsystems */
956 ret = parse_cgroupfs_options(data, &opts);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700957 if (ret) {
958 if (opts.release_agent)
959 kfree(opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700960 return ret;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700961 }
Paul Menageddbcc7e2007-10-18 23:39:30 -0700962
963 root = kzalloc(sizeof(*root), GFP_KERNEL);
964 if (!root)
965 return -ENOMEM;
966
967 init_cgroup_root(root);
968 root->subsys_bits = opts.subsys_bits;
969 root->flags = opts.flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700970 if (opts.release_agent) {
971 strcpy(root->release_agent_path, opts.release_agent);
972 kfree(opts.release_agent);
973 }
Paul Menageddbcc7e2007-10-18 23:39:30 -0700974
975 sb = sget(fs_type, cgroup_test_super, cgroup_set_super, root);
976
977 if (IS_ERR(sb)) {
978 kfree(root);
979 return PTR_ERR(sb);
980 }
981
982 if (sb->s_fs_info != root) {
983 /* Reusing an existing superblock */
984 BUG_ON(sb->s_root == NULL);
985 kfree(root);
986 root = NULL;
987 } else {
988 /* New superblock */
Paul Menagebd89aab2007-10-18 23:40:44 -0700989 struct cgroup *cgrp = &root->top_cgroup;
Paul Menage817929e2007-10-18 23:39:36 -0700990 struct inode *inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700991
992 BUG_ON(sb->s_root != NULL);
993
994 ret = cgroup_get_rootdir(sb);
995 if (ret)
996 goto drop_new_super;
Paul Menage817929e2007-10-18 23:39:36 -0700997 inode = sb->s_root->d_inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700998
Paul Menage817929e2007-10-18 23:39:36 -0700999 mutex_lock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001000 mutex_lock(&cgroup_mutex);
1001
Paul Menage817929e2007-10-18 23:39:36 -07001002 /*
1003 * We're accessing css_set_count without locking
1004 * css_set_lock here, but that's OK - it can only be
1005 * increased by someone holding cgroup_lock, and
1006 * that's us. The worst that can happen is that we
1007 * have some link structures left over
1008 */
1009 ret = allocate_cg_links(css_set_count, &tmp_cg_links);
1010 if (ret) {
1011 mutex_unlock(&cgroup_mutex);
1012 mutex_unlock(&inode->i_mutex);
1013 goto drop_new_super;
1014 }
1015
Paul Menageddbcc7e2007-10-18 23:39:30 -07001016 ret = rebind_subsystems(root, root->subsys_bits);
1017 if (ret == -EBUSY) {
1018 mutex_unlock(&cgroup_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07001019 mutex_unlock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001020 goto drop_new_super;
1021 }
1022
1023 /* EBUSY should be the only error here */
1024 BUG_ON(ret);
1025
1026 list_add(&root->root_list, &roots);
Paul Menage817929e2007-10-18 23:39:36 -07001027 root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001028
1029 sb->s_root->d_fsdata = &root->top_cgroup;
1030 root->top_cgroup.dentry = sb->s_root;
1031
Paul Menage817929e2007-10-18 23:39:36 -07001032 /* Link the top cgroup in this hierarchy into all
1033 * the css_set objects */
1034 write_lock(&css_set_lock);
1035 l = &init_css_set.list;
1036 do {
1037 struct css_set *cg;
1038 struct cg_cgroup_link *link;
1039 cg = list_entry(l, struct css_set, list);
1040 BUG_ON(list_empty(&tmp_cg_links));
1041 link = list_entry(tmp_cg_links.next,
1042 struct cg_cgroup_link,
Paul Menagebd89aab2007-10-18 23:40:44 -07001043 cgrp_link_list);
1044 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001045 link->cg = cg;
Paul Menagebd89aab2007-10-18 23:40:44 -07001046 list_add(&link->cgrp_link_list,
Paul Menage817929e2007-10-18 23:39:36 -07001047 &root->top_cgroup.css_sets);
1048 list_add(&link->cg_link_list, &cg->cg_links);
1049 l = l->next;
1050 } while (l != &init_css_set.list);
1051 write_unlock(&css_set_lock);
1052
1053 free_cg_links(&tmp_cg_links);
1054
Paul Menagebd89aab2007-10-18 23:40:44 -07001055 BUG_ON(!list_empty(&cgrp->sibling));
1056 BUG_ON(!list_empty(&cgrp->children));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001057 BUG_ON(root->number_of_cgroups != 1);
1058
Paul Menagebd89aab2007-10-18 23:40:44 -07001059 cgroup_populate_dir(cgrp);
Paul Menage817929e2007-10-18 23:39:36 -07001060 mutex_unlock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001061 mutex_unlock(&cgroup_mutex);
1062 }
1063
1064 return simple_set_mnt(mnt, sb);
1065
1066 drop_new_super:
1067 up_write(&sb->s_umount);
1068 deactivate_super(sb);
Paul Menage817929e2007-10-18 23:39:36 -07001069 free_cg_links(&tmp_cg_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001070 return ret;
1071}
1072
1073static void cgroup_kill_sb(struct super_block *sb) {
1074 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001075 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001076 int ret;
1077
1078 BUG_ON(!root);
1079
1080 BUG_ON(root->number_of_cgroups != 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001081 BUG_ON(!list_empty(&cgrp->children));
1082 BUG_ON(!list_empty(&cgrp->sibling));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001083
1084 mutex_lock(&cgroup_mutex);
1085
1086 /* Rebind all subsystems back to the default hierarchy */
1087 ret = rebind_subsystems(root, 0);
1088 /* Shouldn't be able to fail ... */
1089 BUG_ON(ret);
1090
Paul Menage817929e2007-10-18 23:39:36 -07001091 /*
1092 * Release all the links from css_sets to this hierarchy's
1093 * root cgroup
1094 */
1095 write_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07001096 while (!list_empty(&cgrp->css_sets)) {
Paul Menage817929e2007-10-18 23:39:36 -07001097 struct cg_cgroup_link *link;
Paul Menagebd89aab2007-10-18 23:40:44 -07001098 link = list_entry(cgrp->css_sets.next,
1099 struct cg_cgroup_link, cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001100 list_del(&link->cg_link_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07001101 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001102 kfree(link);
1103 }
1104 write_unlock(&css_set_lock);
1105
1106 if (!list_empty(&root->root_list)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001107 list_del(&root->root_list);
Paul Menage817929e2007-10-18 23:39:36 -07001108 root_count--;
1109 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001110 mutex_unlock(&cgroup_mutex);
1111
1112 kfree(root);
1113 kill_litter_super(sb);
1114}
1115
1116static struct file_system_type cgroup_fs_type = {
1117 .name = "cgroup",
1118 .get_sb = cgroup_get_sb,
1119 .kill_sb = cgroup_kill_sb,
1120};
1121
Paul Menagebd89aab2007-10-18 23:40:44 -07001122static inline struct cgroup *__d_cgrp(struct dentry *dentry)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001123{
1124 return dentry->d_fsdata;
1125}
1126
1127static inline struct cftype *__d_cft(struct dentry *dentry)
1128{
1129 return dentry->d_fsdata;
1130}
1131
1132/*
1133 * Called with cgroup_mutex held. Writes path of cgroup into buf.
1134 * Returns 0 on success, -errno on error.
1135 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001136int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001137{
1138 char *start;
1139
Paul Menagebd89aab2007-10-18 23:40:44 -07001140 if (cgrp == dummytop) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001141 /*
1142 * Inactive subsystems have no dentry for their root
1143 * cgroup
1144 */
1145 strcpy(buf, "/");
1146 return 0;
1147 }
1148
1149 start = buf + buflen;
1150
1151 *--start = '\0';
1152 for (;;) {
Paul Menagebd89aab2007-10-18 23:40:44 -07001153 int len = cgrp->dentry->d_name.len;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001154 if ((start -= len) < buf)
1155 return -ENAMETOOLONG;
Paul Menagebd89aab2007-10-18 23:40:44 -07001156 memcpy(start, cgrp->dentry->d_name.name, len);
1157 cgrp = cgrp->parent;
1158 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001159 break;
Paul Menagebd89aab2007-10-18 23:40:44 -07001160 if (!cgrp->parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001161 continue;
1162 if (--start < buf)
1163 return -ENAMETOOLONG;
1164 *start = '/';
1165 }
1166 memmove(buf, start, buf + buflen - start);
1167 return 0;
1168}
1169
Paul Menagebbcb81d2007-10-18 23:39:32 -07001170/*
1171 * Return the first subsystem attached to a cgroup's hierarchy, and
1172 * its subsystem id.
1173 */
1174
Paul Menagebd89aab2007-10-18 23:40:44 -07001175static void get_first_subsys(const struct cgroup *cgrp,
Paul Menagebbcb81d2007-10-18 23:39:32 -07001176 struct cgroup_subsys_state **css, int *subsys_id)
1177{
Paul Menagebd89aab2007-10-18 23:40:44 -07001178 const struct cgroupfs_root *root = cgrp->root;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001179 const struct cgroup_subsys *test_ss;
1180 BUG_ON(list_empty(&root->subsys_list));
1181 test_ss = list_entry(root->subsys_list.next,
1182 struct cgroup_subsys, sibling);
1183 if (css) {
Paul Menagebd89aab2007-10-18 23:40:44 -07001184 *css = cgrp->subsys[test_ss->subsys_id];
Paul Menagebbcb81d2007-10-18 23:39:32 -07001185 BUG_ON(!*css);
1186 }
1187 if (subsys_id)
1188 *subsys_id = test_ss->subsys_id;
1189}
1190
1191/*
Paul Menagebd89aab2007-10-18 23:40:44 -07001192 * Attach task 'tsk' to cgroup 'cgrp'
Paul Menagebbcb81d2007-10-18 23:39:32 -07001193 *
1194 * Call holding cgroup_mutex. May take task_lock of
1195 * the task 'pid' during call.
1196 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001197static int attach_task(struct cgroup *cgrp, struct task_struct *tsk)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001198{
1199 int retval = 0;
1200 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07001201 struct cgroup *oldcgrp;
Paul Menage817929e2007-10-18 23:39:36 -07001202 struct css_set *cg = tsk->cgroups;
1203 struct css_set *newcg;
Paul Menagebd89aab2007-10-18 23:40:44 -07001204 struct cgroupfs_root *root = cgrp->root;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001205 int subsys_id;
1206
Paul Menagebd89aab2007-10-18 23:40:44 -07001207 get_first_subsys(cgrp, NULL, &subsys_id);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001208
1209 /* Nothing to do if the task is already in that cgroup */
Paul Menagebd89aab2007-10-18 23:40:44 -07001210 oldcgrp = task_cgroup(tsk, subsys_id);
1211 if (cgrp == oldcgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001212 return 0;
1213
1214 for_each_subsys(root, ss) {
1215 if (ss->can_attach) {
Paul Menagebd89aab2007-10-18 23:40:44 -07001216 retval = ss->can_attach(ss, cgrp, tsk);
Paul Jacksone18f6312008-02-07 00:13:44 -08001217 if (retval)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001218 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001219 }
1220 }
1221
Paul Menage817929e2007-10-18 23:39:36 -07001222 /*
1223 * Locate or allocate a new css_set for this task,
1224 * based on its final set of cgroups
1225 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001226 newcg = find_css_set(cg, cgrp);
Paul Jacksone18f6312008-02-07 00:13:44 -08001227 if (!newcg)
Paul Menage817929e2007-10-18 23:39:36 -07001228 return -ENOMEM;
Paul Menage817929e2007-10-18 23:39:36 -07001229
Paul Menagebbcb81d2007-10-18 23:39:32 -07001230 task_lock(tsk);
1231 if (tsk->flags & PF_EXITING) {
1232 task_unlock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07001233 put_css_set(newcg);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001234 return -ESRCH;
1235 }
Paul Menage817929e2007-10-18 23:39:36 -07001236 rcu_assign_pointer(tsk->cgroups, newcg);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001237 task_unlock(tsk);
1238
Paul Menage817929e2007-10-18 23:39:36 -07001239 /* Update the css_set linked lists if we're using them */
1240 write_lock(&css_set_lock);
1241 if (!list_empty(&tsk->cg_list)) {
1242 list_del(&tsk->cg_list);
1243 list_add(&tsk->cg_list, &newcg->tasks);
1244 }
1245 write_unlock(&css_set_lock);
1246
Paul Menagebbcb81d2007-10-18 23:39:32 -07001247 for_each_subsys(root, ss) {
Paul Jacksone18f6312008-02-07 00:13:44 -08001248 if (ss->attach)
Paul Menagebd89aab2007-10-18 23:40:44 -07001249 ss->attach(ss, cgrp, oldcgrp, tsk);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001250 }
Paul Menagebd89aab2007-10-18 23:40:44 -07001251 set_bit(CGRP_RELEASABLE, &oldcgrp->flags);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001252 synchronize_rcu();
Paul Menage817929e2007-10-18 23:39:36 -07001253 put_css_set(cg);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001254 return 0;
1255}
1256
1257/*
Paul Menagebd89aab2007-10-18 23:40:44 -07001258 * Attach task with pid 'pid' to cgroup 'cgrp'. Call with
Paul Menagebbcb81d2007-10-18 23:39:32 -07001259 * cgroup_mutex, may take task_lock of task
1260 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001261static int attach_task_by_pid(struct cgroup *cgrp, char *pidbuf)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001262{
1263 pid_t pid;
1264 struct task_struct *tsk;
1265 int ret;
1266
1267 if (sscanf(pidbuf, "%d", &pid) != 1)
1268 return -EIO;
1269
1270 if (pid) {
1271 rcu_read_lock();
1272 tsk = find_task_by_pid(pid);
1273 if (!tsk || tsk->flags & PF_EXITING) {
1274 rcu_read_unlock();
1275 return -ESRCH;
1276 }
1277 get_task_struct(tsk);
1278 rcu_read_unlock();
1279
1280 if ((current->euid) && (current->euid != tsk->uid)
1281 && (current->euid != tsk->suid)) {
1282 put_task_struct(tsk);
1283 return -EACCES;
1284 }
1285 } else {
1286 tsk = current;
1287 get_task_struct(tsk);
1288 }
1289
Paul Menagebd89aab2007-10-18 23:40:44 -07001290 ret = attach_task(cgrp, tsk);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001291 put_task_struct(tsk);
1292 return ret;
1293}
1294
Paul Menageddbcc7e2007-10-18 23:39:30 -07001295/* The various types of files and directories in a cgroup file system */
1296
1297enum cgroup_filetype {
1298 FILE_ROOT,
1299 FILE_DIR,
1300 FILE_TASKLIST,
Paul Menage81a6a5c2007-10-18 23:39:38 -07001301 FILE_NOTIFY_ON_RELEASE,
1302 FILE_RELEASABLE,
1303 FILE_RELEASE_AGENT,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001304};
1305
Paul Menagebd89aab2007-10-18 23:40:44 -07001306static ssize_t cgroup_write_uint(struct cgroup *cgrp, struct cftype *cft,
Paul Menage355e0c42007-10-18 23:39:33 -07001307 struct file *file,
1308 const char __user *userbuf,
1309 size_t nbytes, loff_t *unused_ppos)
1310{
1311 char buffer[64];
1312 int retval = 0;
1313 u64 val;
1314 char *end;
1315
1316 if (!nbytes)
1317 return -EINVAL;
1318 if (nbytes >= sizeof(buffer))
1319 return -E2BIG;
1320 if (copy_from_user(buffer, userbuf, nbytes))
1321 return -EFAULT;
1322
1323 buffer[nbytes] = 0; /* nul-terminate */
1324
1325 /* strip newline if necessary */
1326 if (nbytes && (buffer[nbytes-1] == '\n'))
1327 buffer[nbytes-1] = 0;
1328 val = simple_strtoull(buffer, &end, 0);
1329 if (*end)
1330 return -EINVAL;
1331
1332 /* Pass to subsystem */
Paul Menagebd89aab2007-10-18 23:40:44 -07001333 retval = cft->write_uint(cgrp, cft, val);
Paul Menage355e0c42007-10-18 23:39:33 -07001334 if (!retval)
1335 retval = nbytes;
1336 return retval;
1337}
1338
Paul Menagebd89aab2007-10-18 23:40:44 -07001339static ssize_t cgroup_common_file_write(struct cgroup *cgrp,
Paul Menagebbcb81d2007-10-18 23:39:32 -07001340 struct cftype *cft,
1341 struct file *file,
1342 const char __user *userbuf,
1343 size_t nbytes, loff_t *unused_ppos)
1344{
1345 enum cgroup_filetype type = cft->private;
1346 char *buffer;
1347 int retval = 0;
1348
1349 if (nbytes >= PATH_MAX)
1350 return -E2BIG;
1351
1352 /* +1 for nul-terminator */
1353 buffer = kmalloc(nbytes + 1, GFP_KERNEL);
1354 if (buffer == NULL)
1355 return -ENOMEM;
1356
1357 if (copy_from_user(buffer, userbuf, nbytes)) {
1358 retval = -EFAULT;
1359 goto out1;
1360 }
1361 buffer[nbytes] = 0; /* nul-terminate */
Paul Jackson622d42c2008-02-07 00:13:44 -08001362 strstrip(buffer); /* strip -just- trailing whitespace */
Paul Menagebbcb81d2007-10-18 23:39:32 -07001363
1364 mutex_lock(&cgroup_mutex);
1365
Paul Menage8dc4f3e2008-02-07 00:13:45 -08001366 /*
1367 * This was already checked for in cgroup_file_write(), but
1368 * check again now we're holding cgroup_mutex.
1369 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001370 if (cgroup_is_removed(cgrp)) {
Paul Menagebbcb81d2007-10-18 23:39:32 -07001371 retval = -ENODEV;
1372 goto out2;
1373 }
1374
1375 switch (type) {
1376 case FILE_TASKLIST:
Paul Menagebd89aab2007-10-18 23:40:44 -07001377 retval = attach_task_by_pid(cgrp, buffer);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001378 break;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001379 case FILE_NOTIFY_ON_RELEASE:
Paul Menagebd89aab2007-10-18 23:40:44 -07001380 clear_bit(CGRP_RELEASABLE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001381 if (simple_strtoul(buffer, NULL, 10) != 0)
Paul Menagebd89aab2007-10-18 23:40:44 -07001382 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001383 else
Paul Menagebd89aab2007-10-18 23:40:44 -07001384 clear_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001385 break;
1386 case FILE_RELEASE_AGENT:
Paul Jackson622d42c2008-02-07 00:13:44 -08001387 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
1388 strcpy(cgrp->root->release_agent_path, buffer);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001389 break;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001390 default:
1391 retval = -EINVAL;
1392 goto out2;
1393 }
1394
1395 if (retval == 0)
1396 retval = nbytes;
1397out2:
1398 mutex_unlock(&cgroup_mutex);
1399out1:
1400 kfree(buffer);
1401 return retval;
1402}
1403
Paul Menageddbcc7e2007-10-18 23:39:30 -07001404static ssize_t cgroup_file_write(struct file *file, const char __user *buf,
1405 size_t nbytes, loff_t *ppos)
1406{
1407 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07001408 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001409
Paul Menage8dc4f3e2008-02-07 00:13:45 -08001410 if (!cft || cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001411 return -ENODEV;
Paul Menage355e0c42007-10-18 23:39:33 -07001412 if (cft->write)
Paul Menagebd89aab2007-10-18 23:40:44 -07001413 return cft->write(cgrp, cft, file, buf, nbytes, ppos);
Paul Menage355e0c42007-10-18 23:39:33 -07001414 if (cft->write_uint)
Paul Menagebd89aab2007-10-18 23:40:44 -07001415 return cgroup_write_uint(cgrp, cft, file, buf, nbytes, ppos);
Paul Menage355e0c42007-10-18 23:39:33 -07001416 return -EINVAL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001417}
1418
Paul Menagebd89aab2007-10-18 23:40:44 -07001419static ssize_t cgroup_read_uint(struct cgroup *cgrp, struct cftype *cft,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001420 struct file *file,
1421 char __user *buf, size_t nbytes,
1422 loff_t *ppos)
1423{
1424 char tmp[64];
Paul Menagebd89aab2007-10-18 23:40:44 -07001425 u64 val = cft->read_uint(cgrp, cft);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001426 int len = sprintf(tmp, "%llu\n", (unsigned long long) val);
1427
1428 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
1429}
1430
Paul Menagebd89aab2007-10-18 23:40:44 -07001431static ssize_t cgroup_common_file_read(struct cgroup *cgrp,
Paul Menage81a6a5c2007-10-18 23:39:38 -07001432 struct cftype *cft,
1433 struct file *file,
1434 char __user *buf,
1435 size_t nbytes, loff_t *ppos)
1436{
1437 enum cgroup_filetype type = cft->private;
1438 char *page;
1439 ssize_t retval = 0;
1440 char *s;
1441
1442 if (!(page = (char *)__get_free_page(GFP_KERNEL)))
1443 return -ENOMEM;
1444
1445 s = page;
1446
1447 switch (type) {
1448 case FILE_RELEASE_AGENT:
1449 {
1450 struct cgroupfs_root *root;
1451 size_t n;
1452 mutex_lock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07001453 root = cgrp->root;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001454 n = strnlen(root->release_agent_path,
1455 sizeof(root->release_agent_path));
1456 n = min(n, (size_t) PAGE_SIZE);
1457 strncpy(s, root->release_agent_path, n);
1458 mutex_unlock(&cgroup_mutex);
1459 s += n;
1460 break;
1461 }
1462 default:
1463 retval = -EINVAL;
1464 goto out;
1465 }
1466 *s++ = '\n';
1467
1468 retval = simple_read_from_buffer(buf, nbytes, ppos, page, s - page);
1469out:
1470 free_page((unsigned long)page);
1471 return retval;
1472}
1473
Paul Menageddbcc7e2007-10-18 23:39:30 -07001474static ssize_t cgroup_file_read(struct file *file, char __user *buf,
1475 size_t nbytes, loff_t *ppos)
1476{
1477 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07001478 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001479
Paul Menage8dc4f3e2008-02-07 00:13:45 -08001480 if (!cft || cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001481 return -ENODEV;
1482
1483 if (cft->read)
Paul Menagebd89aab2007-10-18 23:40:44 -07001484 return cft->read(cgrp, cft, file, buf, nbytes, ppos);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001485 if (cft->read_uint)
Paul Menagebd89aab2007-10-18 23:40:44 -07001486 return cgroup_read_uint(cgrp, cft, file, buf, nbytes, ppos);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001487 return -EINVAL;
1488}
1489
1490static int cgroup_file_open(struct inode *inode, struct file *file)
1491{
1492 int err;
1493 struct cftype *cft;
1494
1495 err = generic_file_open(inode, file);
1496 if (err)
1497 return err;
1498
1499 cft = __d_cft(file->f_dentry);
1500 if (!cft)
1501 return -ENODEV;
1502 if (cft->open)
1503 err = cft->open(inode, file);
1504 else
1505 err = 0;
1506
1507 return err;
1508}
1509
1510static int cgroup_file_release(struct inode *inode, struct file *file)
1511{
1512 struct cftype *cft = __d_cft(file->f_dentry);
1513 if (cft->release)
1514 return cft->release(inode, file);
1515 return 0;
1516}
1517
1518/*
1519 * cgroup_rename - Only allow simple rename of directories in place.
1520 */
1521static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry,
1522 struct inode *new_dir, struct dentry *new_dentry)
1523{
1524 if (!S_ISDIR(old_dentry->d_inode->i_mode))
1525 return -ENOTDIR;
1526 if (new_dentry->d_inode)
1527 return -EEXIST;
1528 if (old_dir != new_dir)
1529 return -EIO;
1530 return simple_rename(old_dir, old_dentry, new_dir, new_dentry);
1531}
1532
1533static struct file_operations cgroup_file_operations = {
1534 .read = cgroup_file_read,
1535 .write = cgroup_file_write,
1536 .llseek = generic_file_llseek,
1537 .open = cgroup_file_open,
1538 .release = cgroup_file_release,
1539};
1540
1541static struct inode_operations cgroup_dir_inode_operations = {
1542 .lookup = simple_lookup,
1543 .mkdir = cgroup_mkdir,
1544 .rmdir = cgroup_rmdir,
1545 .rename = cgroup_rename,
1546};
1547
1548static int cgroup_create_file(struct dentry *dentry, int mode,
1549 struct super_block *sb)
1550{
1551 static struct dentry_operations cgroup_dops = {
1552 .d_iput = cgroup_diput,
1553 };
1554
1555 struct inode *inode;
1556
1557 if (!dentry)
1558 return -ENOENT;
1559 if (dentry->d_inode)
1560 return -EEXIST;
1561
1562 inode = cgroup_new_inode(mode, sb);
1563 if (!inode)
1564 return -ENOMEM;
1565
1566 if (S_ISDIR(mode)) {
1567 inode->i_op = &cgroup_dir_inode_operations;
1568 inode->i_fop = &simple_dir_operations;
1569
1570 /* start off with i_nlink == 2 (for "." entry) */
1571 inc_nlink(inode);
1572
1573 /* start with the directory inode held, so that we can
1574 * populate it without racing with another mkdir */
Paul Menage817929e2007-10-18 23:39:36 -07001575 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001576 } else if (S_ISREG(mode)) {
1577 inode->i_size = 0;
1578 inode->i_fop = &cgroup_file_operations;
1579 }
1580 dentry->d_op = &cgroup_dops;
1581 d_instantiate(dentry, inode);
1582 dget(dentry); /* Extra count - pin the dentry in core */
1583 return 0;
1584}
1585
1586/*
1587 * cgroup_create_dir - create a directory for an object.
Paul Menagebd89aab2007-10-18 23:40:44 -07001588 * cgrp: the cgroup we create the directory for.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001589 * It must have a valid ->parent field
1590 * And we are going to fill its ->dentry field.
Paul Menagebd89aab2007-10-18 23:40:44 -07001591 * dentry: dentry of the new cgroup
Paul Menageddbcc7e2007-10-18 23:39:30 -07001592 * mode: mode to set on new directory.
1593 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001594static int cgroup_create_dir(struct cgroup *cgrp, struct dentry *dentry,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001595 int mode)
1596{
1597 struct dentry *parent;
1598 int error = 0;
1599
Paul Menagebd89aab2007-10-18 23:40:44 -07001600 parent = cgrp->parent->dentry;
1601 error = cgroup_create_file(dentry, S_IFDIR | mode, cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001602 if (!error) {
Paul Menagebd89aab2007-10-18 23:40:44 -07001603 dentry->d_fsdata = cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001604 inc_nlink(parent->d_inode);
Paul Menagebd89aab2007-10-18 23:40:44 -07001605 cgrp->dentry = dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001606 dget(dentry);
1607 }
1608 dput(dentry);
1609
1610 return error;
1611}
1612
Paul Menagebd89aab2007-10-18 23:40:44 -07001613int cgroup_add_file(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001614 struct cgroup_subsys *subsys,
1615 const struct cftype *cft)
1616{
Paul Menagebd89aab2007-10-18 23:40:44 -07001617 struct dentry *dir = cgrp->dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001618 struct dentry *dentry;
1619 int error;
1620
1621 char name[MAX_CGROUP_TYPE_NAMELEN + MAX_CFTYPE_NAME + 2] = { 0 };
Paul Menagebd89aab2007-10-18 23:40:44 -07001622 if (subsys && !test_bit(ROOT_NOPREFIX, &cgrp->root->flags)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001623 strcpy(name, subsys->name);
1624 strcat(name, ".");
1625 }
1626 strcat(name, cft->name);
1627 BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex));
1628 dentry = lookup_one_len(name, dir, strlen(name));
1629 if (!IS_ERR(dentry)) {
1630 error = cgroup_create_file(dentry, 0644 | S_IFREG,
Paul Menagebd89aab2007-10-18 23:40:44 -07001631 cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001632 if (!error)
1633 dentry->d_fsdata = (void *)cft;
1634 dput(dentry);
1635 } else
1636 error = PTR_ERR(dentry);
1637 return error;
1638}
1639
Paul Menagebd89aab2007-10-18 23:40:44 -07001640int cgroup_add_files(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001641 struct cgroup_subsys *subsys,
1642 const struct cftype cft[],
1643 int count)
1644{
1645 int i, err;
1646 for (i = 0; i < count; i++) {
Paul Menagebd89aab2007-10-18 23:40:44 -07001647 err = cgroup_add_file(cgrp, subsys, &cft[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001648 if (err)
1649 return err;
1650 }
1651 return 0;
1652}
1653
Paul Menage817929e2007-10-18 23:39:36 -07001654/* Count the number of tasks in a cgroup. */
1655
Paul Menagebd89aab2007-10-18 23:40:44 -07001656int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001657{
1658 int count = 0;
Paul Menage817929e2007-10-18 23:39:36 -07001659 struct list_head *l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001660
Paul Menage817929e2007-10-18 23:39:36 -07001661 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07001662 l = cgrp->css_sets.next;
1663 while (l != &cgrp->css_sets) {
Paul Menage817929e2007-10-18 23:39:36 -07001664 struct cg_cgroup_link *link =
Paul Menagebd89aab2007-10-18 23:40:44 -07001665 list_entry(l, struct cg_cgroup_link, cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001666 count += atomic_read(&link->cg->ref.refcount);
1667 l = l->next;
1668 }
1669 read_unlock(&css_set_lock);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001670 return count;
1671}
1672
1673/*
Paul Menage817929e2007-10-18 23:39:36 -07001674 * Advance a list_head iterator. The iterator should be positioned at
1675 * the start of a css_set
1676 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001677static void cgroup_advance_iter(struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -07001678 struct cgroup_iter *it)
1679{
1680 struct list_head *l = it->cg_link;
1681 struct cg_cgroup_link *link;
1682 struct css_set *cg;
1683
1684 /* Advance to the next non-empty css_set */
1685 do {
1686 l = l->next;
Paul Menagebd89aab2007-10-18 23:40:44 -07001687 if (l == &cgrp->css_sets) {
Paul Menage817929e2007-10-18 23:39:36 -07001688 it->cg_link = NULL;
1689 return;
1690 }
Paul Menagebd89aab2007-10-18 23:40:44 -07001691 link = list_entry(l, struct cg_cgroup_link, cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001692 cg = link->cg;
1693 } while (list_empty(&cg->tasks));
1694 it->cg_link = l;
1695 it->task = cg->tasks.next;
1696}
1697
Paul Menagebd89aab2007-10-18 23:40:44 -07001698void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07001699{
1700 /*
1701 * The first time anyone tries to iterate across a cgroup,
1702 * we need to enable the list linking each css_set to its
1703 * tasks, and fix up all existing tasks.
1704 */
1705 if (!use_task_css_set_links) {
1706 struct task_struct *p, *g;
1707 write_lock(&css_set_lock);
1708 use_task_css_set_links = 1;
1709 do_each_thread(g, p) {
1710 task_lock(p);
1711 if (list_empty(&p->cg_list))
1712 list_add(&p->cg_list, &p->cgroups->tasks);
1713 task_unlock(p);
1714 } while_each_thread(g, p);
1715 write_unlock(&css_set_lock);
1716 }
1717 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07001718 it->cg_link = &cgrp->css_sets;
1719 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07001720}
1721
Paul Menagebd89aab2007-10-18 23:40:44 -07001722struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -07001723 struct cgroup_iter *it)
1724{
1725 struct task_struct *res;
1726 struct list_head *l = it->task;
1727
1728 /* If the iterator cg is NULL, we have no tasks */
1729 if (!it->cg_link)
1730 return NULL;
1731 res = list_entry(l, struct task_struct, cg_list);
1732 /* Advance iterator to find next entry */
1733 l = l->next;
1734 if (l == &res->cgroups->tasks) {
1735 /* We reached the end of this task list - move on to
1736 * the next cg_cgroup_link */
Paul Menagebd89aab2007-10-18 23:40:44 -07001737 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07001738 } else {
1739 it->task = l;
1740 }
1741 return res;
1742}
1743
Paul Menagebd89aab2007-10-18 23:40:44 -07001744void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07001745{
1746 read_unlock(&css_set_lock);
1747}
1748
1749/*
Paul Menagebbcb81d2007-10-18 23:39:32 -07001750 * Stuff for reading the 'tasks' file.
1751 *
1752 * Reading this file can return large amounts of data if a cgroup has
1753 * *lots* of attached tasks. So it may need several calls to read(),
1754 * but we cannot guarantee that the information we produce is correct
1755 * unless we produce it entirely atomically.
1756 *
1757 * Upon tasks file open(), a struct ctr_struct is allocated, that
1758 * will have a pointer to an array (also allocated here). The struct
1759 * ctr_struct * is stored in file->private_data. Its resources will
1760 * be freed by release() when the file is closed. The array is used
1761 * to sprintf the PIDs and then used by read().
1762 */
1763struct ctr_struct {
1764 char *buf;
1765 int bufsz;
1766};
1767
1768/*
1769 * Load into 'pidarray' up to 'npids' of the tasks using cgroup
Paul Menagebd89aab2007-10-18 23:40:44 -07001770 * 'cgrp'. Return actual number of pids loaded. No need to
Paul Menagebbcb81d2007-10-18 23:39:32 -07001771 * task_lock(p) when reading out p->cgroup, since we're in an RCU
1772 * read section, so the css_set can't go away, and is
1773 * immutable after creation.
1774 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001775static int pid_array_load(pid_t *pidarray, int npids, struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001776{
1777 int n = 0;
Paul Menage817929e2007-10-18 23:39:36 -07001778 struct cgroup_iter it;
1779 struct task_struct *tsk;
Paul Menagebd89aab2007-10-18 23:40:44 -07001780 cgroup_iter_start(cgrp, &it);
1781 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Paul Menage817929e2007-10-18 23:39:36 -07001782 if (unlikely(n == npids))
1783 break;
Pavel Emelyanov69cccb82007-10-18 23:40:44 -07001784 pidarray[n++] = task_pid_nr(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07001785 }
Paul Menagebd89aab2007-10-18 23:40:44 -07001786 cgroup_iter_end(cgrp, &it);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001787 return n;
1788}
1789
Balbir Singh846c7bb2007-10-18 23:39:44 -07001790/**
1791 * Build and fill cgroupstats so that taskstats can export it to user
1792 * space.
1793 *
1794 * @stats: cgroupstats to fill information into
1795 * @dentry: A dentry entry belonging to the cgroup for which stats have
1796 * been requested.
1797 */
1798int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
1799{
1800 int ret = -EINVAL;
Paul Menagebd89aab2007-10-18 23:40:44 -07001801 struct cgroup *cgrp;
Balbir Singh846c7bb2007-10-18 23:39:44 -07001802 struct cgroup_iter it;
1803 struct task_struct *tsk;
1804 /*
1805 * Validate dentry by checking the superblock operations
1806 */
1807 if (dentry->d_sb->s_op != &cgroup_ops)
1808 goto err;
1809
1810 ret = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07001811 cgrp = dentry->d_fsdata;
Balbir Singh846c7bb2007-10-18 23:39:44 -07001812 rcu_read_lock();
1813
Paul Menagebd89aab2007-10-18 23:40:44 -07001814 cgroup_iter_start(cgrp, &it);
1815 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07001816 switch (tsk->state) {
1817 case TASK_RUNNING:
1818 stats->nr_running++;
1819 break;
1820 case TASK_INTERRUPTIBLE:
1821 stats->nr_sleeping++;
1822 break;
1823 case TASK_UNINTERRUPTIBLE:
1824 stats->nr_uninterruptible++;
1825 break;
1826 case TASK_STOPPED:
1827 stats->nr_stopped++;
1828 break;
1829 default:
1830 if (delayacct_is_task_waiting_on_io(tsk))
1831 stats->nr_io_wait++;
1832 break;
1833 }
1834 }
Paul Menagebd89aab2007-10-18 23:40:44 -07001835 cgroup_iter_end(cgrp, &it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07001836
1837 rcu_read_unlock();
1838err:
1839 return ret;
1840}
1841
Paul Menagebbcb81d2007-10-18 23:39:32 -07001842static int cmppid(const void *a, const void *b)
1843{
1844 return *(pid_t *)a - *(pid_t *)b;
1845}
1846
1847/*
1848 * Convert array 'a' of 'npids' pid_t's to a string of newline separated
1849 * decimal pids in 'buf'. Don't write more than 'sz' chars, but return
1850 * count 'cnt' of how many chars would be written if buf were large enough.
1851 */
1852static int pid_array_to_buf(char *buf, int sz, pid_t *a, int npids)
1853{
1854 int cnt = 0;
1855 int i;
1856
1857 for (i = 0; i < npids; i++)
1858 cnt += snprintf(buf + cnt, max(sz - cnt, 0), "%d\n", a[i]);
1859 return cnt;
1860}
1861
1862/*
1863 * Handle an open on 'tasks' file. Prepare a buffer listing the
1864 * process id's of tasks currently attached to the cgroup being opened.
1865 *
1866 * Does not require any specific cgroup mutexes, and does not take any.
1867 */
1868static int cgroup_tasks_open(struct inode *unused, struct file *file)
1869{
Paul Menagebd89aab2007-10-18 23:40:44 -07001870 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001871 struct ctr_struct *ctr;
1872 pid_t *pidarray;
1873 int npids;
1874 char c;
1875
1876 if (!(file->f_mode & FMODE_READ))
1877 return 0;
1878
1879 ctr = kmalloc(sizeof(*ctr), GFP_KERNEL);
1880 if (!ctr)
1881 goto err0;
1882
1883 /*
1884 * If cgroup gets more users after we read count, we won't have
1885 * enough space - tough. This race is indistinguishable to the
1886 * caller from the case that the additional cgroup users didn't
1887 * show up until sometime later on.
1888 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001889 npids = cgroup_task_count(cgrp);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001890 if (npids) {
1891 pidarray = kmalloc(npids * sizeof(pid_t), GFP_KERNEL);
1892 if (!pidarray)
1893 goto err1;
1894
Paul Menagebd89aab2007-10-18 23:40:44 -07001895 npids = pid_array_load(pidarray, npids, cgrp);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001896 sort(pidarray, npids, sizeof(pid_t), cmppid, NULL);
1897
1898 /* Call pid_array_to_buf() twice, first just to get bufsz */
1899 ctr->bufsz = pid_array_to_buf(&c, sizeof(c), pidarray, npids) + 1;
1900 ctr->buf = kmalloc(ctr->bufsz, GFP_KERNEL);
1901 if (!ctr->buf)
1902 goto err2;
1903 ctr->bufsz = pid_array_to_buf(ctr->buf, ctr->bufsz, pidarray, npids);
1904
1905 kfree(pidarray);
1906 } else {
1907 ctr->buf = 0;
1908 ctr->bufsz = 0;
1909 }
1910 file->private_data = ctr;
1911 return 0;
1912
1913err2:
1914 kfree(pidarray);
1915err1:
1916 kfree(ctr);
1917err0:
1918 return -ENOMEM;
1919}
1920
Paul Menagebd89aab2007-10-18 23:40:44 -07001921static ssize_t cgroup_tasks_read(struct cgroup *cgrp,
Paul Menagebbcb81d2007-10-18 23:39:32 -07001922 struct cftype *cft,
1923 struct file *file, char __user *buf,
1924 size_t nbytes, loff_t *ppos)
1925{
1926 struct ctr_struct *ctr = file->private_data;
1927
1928 return simple_read_from_buffer(buf, nbytes, ppos, ctr->buf, ctr->bufsz);
1929}
1930
1931static int cgroup_tasks_release(struct inode *unused_inode,
1932 struct file *file)
1933{
1934 struct ctr_struct *ctr;
1935
1936 if (file->f_mode & FMODE_READ) {
1937 ctr = file->private_data;
1938 kfree(ctr->buf);
1939 kfree(ctr);
1940 }
1941 return 0;
1942}
1943
Paul Menagebd89aab2007-10-18 23:40:44 -07001944static u64 cgroup_read_notify_on_release(struct cgroup *cgrp,
Paul Menage81a6a5c2007-10-18 23:39:38 -07001945 struct cftype *cft)
1946{
Paul Menagebd89aab2007-10-18 23:40:44 -07001947 return notify_on_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001948}
1949
Paul Menagebd89aab2007-10-18 23:40:44 -07001950static u64 cgroup_read_releasable(struct cgroup *cgrp, struct cftype *cft)
Paul Menage81a6a5c2007-10-18 23:39:38 -07001951{
Paul Menagebd89aab2007-10-18 23:40:44 -07001952 return test_bit(CGRP_RELEASABLE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001953}
1954
Paul Menagebbcb81d2007-10-18 23:39:32 -07001955/*
1956 * for the common functions, 'private' gives the type of file
1957 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07001958static struct cftype files[] = {
1959 {
1960 .name = "tasks",
1961 .open = cgroup_tasks_open,
1962 .read = cgroup_tasks_read,
1963 .write = cgroup_common_file_write,
1964 .release = cgroup_tasks_release,
1965 .private = FILE_TASKLIST,
1966 },
1967
1968 {
1969 .name = "notify_on_release",
1970 .read_uint = cgroup_read_notify_on_release,
1971 .write = cgroup_common_file_write,
1972 .private = FILE_NOTIFY_ON_RELEASE,
1973 },
1974
1975 {
1976 .name = "releasable",
1977 .read_uint = cgroup_read_releasable,
1978 .private = FILE_RELEASABLE,
1979 }
1980};
1981
1982static struct cftype cft_release_agent = {
1983 .name = "release_agent",
1984 .read = cgroup_common_file_read,
Paul Menagebbcb81d2007-10-18 23:39:32 -07001985 .write = cgroup_common_file_write,
Paul Menage81a6a5c2007-10-18 23:39:38 -07001986 .private = FILE_RELEASE_AGENT,
Paul Menagebbcb81d2007-10-18 23:39:32 -07001987};
1988
Paul Menagebd89aab2007-10-18 23:40:44 -07001989static int cgroup_populate_dir(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001990{
1991 int err;
1992 struct cgroup_subsys *ss;
1993
1994 /* First clear out any existing files */
Paul Menagebd89aab2007-10-18 23:40:44 -07001995 cgroup_clear_directory(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001996
Paul Menagebd89aab2007-10-18 23:40:44 -07001997 err = cgroup_add_files(cgrp, NULL, files, ARRAY_SIZE(files));
Paul Menagebbcb81d2007-10-18 23:39:32 -07001998 if (err < 0)
1999 return err;
2000
Paul Menagebd89aab2007-10-18 23:40:44 -07002001 if (cgrp == cgrp->top_cgroup) {
2002 if ((err = cgroup_add_file(cgrp, NULL, &cft_release_agent)) < 0)
Paul Menage81a6a5c2007-10-18 23:39:38 -07002003 return err;
2004 }
2005
Paul Menagebd89aab2007-10-18 23:40:44 -07002006 for_each_subsys(cgrp->root, ss) {
2007 if (ss->populate && (err = ss->populate(ss, cgrp)) < 0)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002008 return err;
2009 }
2010
2011 return 0;
2012}
2013
2014static void init_cgroup_css(struct cgroup_subsys_state *css,
2015 struct cgroup_subsys *ss,
Paul Menagebd89aab2007-10-18 23:40:44 -07002016 struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002017{
Paul Menagebd89aab2007-10-18 23:40:44 -07002018 css->cgroup = cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002019 atomic_set(&css->refcnt, 0);
2020 css->flags = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07002021 if (cgrp == dummytop)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002022 set_bit(CSS_ROOT, &css->flags);
Paul Menagebd89aab2007-10-18 23:40:44 -07002023 BUG_ON(cgrp->subsys[ss->subsys_id]);
2024 cgrp->subsys[ss->subsys_id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002025}
2026
2027/*
2028 * cgroup_create - create a cgroup
2029 * parent: cgroup that will be parent of the new cgroup.
2030 * name: name of the new cgroup. Will be strcpy'ed.
2031 * mode: mode to set on new inode
2032 *
2033 * Must be called with the mutex on the parent inode held
2034 */
2035
2036static long cgroup_create(struct cgroup *parent, struct dentry *dentry,
2037 int mode)
2038{
Paul Menagebd89aab2007-10-18 23:40:44 -07002039 struct cgroup *cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002040 struct cgroupfs_root *root = parent->root;
2041 int err = 0;
2042 struct cgroup_subsys *ss;
2043 struct super_block *sb = root->sb;
2044
Paul Menagebd89aab2007-10-18 23:40:44 -07002045 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
2046 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002047 return -ENOMEM;
2048
2049 /* Grab a reference on the superblock so the hierarchy doesn't
2050 * get deleted on unmount if there are child cgroups. This
2051 * can be done outside cgroup_mutex, since the sb can't
2052 * disappear while someone has an open control file on the
2053 * fs */
2054 atomic_inc(&sb->s_active);
2055
2056 mutex_lock(&cgroup_mutex);
2057
Paul Menagebd89aab2007-10-18 23:40:44 -07002058 cgrp->flags = 0;
2059 INIT_LIST_HEAD(&cgrp->sibling);
2060 INIT_LIST_HEAD(&cgrp->children);
2061 INIT_LIST_HEAD(&cgrp->css_sets);
2062 INIT_LIST_HEAD(&cgrp->release_list);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002063
Paul Menagebd89aab2007-10-18 23:40:44 -07002064 cgrp->parent = parent;
2065 cgrp->root = parent->root;
2066 cgrp->top_cgroup = parent->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002067
2068 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002069 struct cgroup_subsys_state *css = ss->create(ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002070 if (IS_ERR(css)) {
2071 err = PTR_ERR(css);
2072 goto err_destroy;
2073 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002074 init_cgroup_css(css, ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002075 }
2076
Paul Menagebd89aab2007-10-18 23:40:44 -07002077 list_add(&cgrp->sibling, &cgrp->parent->children);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002078 root->number_of_cgroups++;
2079
Paul Menagebd89aab2007-10-18 23:40:44 -07002080 err = cgroup_create_dir(cgrp, dentry, mode);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002081 if (err < 0)
2082 goto err_remove;
2083
2084 /* The cgroup directory was pre-locked for us */
Paul Menagebd89aab2007-10-18 23:40:44 -07002085 BUG_ON(!mutex_is_locked(&cgrp->dentry->d_inode->i_mutex));
Paul Menageddbcc7e2007-10-18 23:39:30 -07002086
Paul Menagebd89aab2007-10-18 23:40:44 -07002087 err = cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002088 /* If err < 0, we have a half-filled directory - oh well ;) */
2089
2090 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07002091 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002092
2093 return 0;
2094
2095 err_remove:
2096
Paul Menagebd89aab2007-10-18 23:40:44 -07002097 list_del(&cgrp->sibling);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002098 root->number_of_cgroups--;
2099
2100 err_destroy:
2101
2102 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002103 if (cgrp->subsys[ss->subsys_id])
2104 ss->destroy(ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002105 }
2106
2107 mutex_unlock(&cgroup_mutex);
2108
2109 /* Release the reference count that we took on the superblock */
2110 deactivate_super(sb);
2111
Paul Menagebd89aab2007-10-18 23:40:44 -07002112 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002113 return err;
2114}
2115
2116static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2117{
2118 struct cgroup *c_parent = dentry->d_parent->d_fsdata;
2119
2120 /* the vfs holds inode->i_mutex already */
2121 return cgroup_create(c_parent, dentry, mode | S_IFDIR);
2122}
2123
Paul Menagebd89aab2007-10-18 23:40:44 -07002124static inline int cgroup_has_css_refs(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07002125{
2126 /* Check the reference count on each subsystem. Since we
2127 * already established that there are no tasks in the
2128 * cgroup, if the css refcount is also 0, then there should
2129 * be no outstanding references, so the subsystem is safe to
2130 * destroy. We scan across all subsystems rather than using
2131 * the per-hierarchy linked list of mounted subsystems since
2132 * we can be called via check_for_release() with no
2133 * synchronization other than RCU, and the subsystem linked
2134 * list isn't RCU-safe */
2135 int i;
2136 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2137 struct cgroup_subsys *ss = subsys[i];
2138 struct cgroup_subsys_state *css;
2139 /* Skip subsystems not in this hierarchy */
Paul Menagebd89aab2007-10-18 23:40:44 -07002140 if (ss->root != cgrp->root)
Paul Menage81a6a5c2007-10-18 23:39:38 -07002141 continue;
Paul Menagebd89aab2007-10-18 23:40:44 -07002142 css = cgrp->subsys[ss->subsys_id];
Paul Menage81a6a5c2007-10-18 23:39:38 -07002143 /* When called from check_for_release() it's possible
2144 * that by this point the cgroup has been removed
2145 * and the css deleted. But a false-positive doesn't
2146 * matter, since it can only happen if the cgroup
2147 * has been deleted and hence no longer needs the
2148 * release agent to be called anyway. */
Paul Jacksone18f6312008-02-07 00:13:44 -08002149 if (css && atomic_read(&css->refcnt))
Paul Menage81a6a5c2007-10-18 23:39:38 -07002150 return 1;
Paul Menage81a6a5c2007-10-18 23:39:38 -07002151 }
2152 return 0;
2153}
2154
Paul Menageddbcc7e2007-10-18 23:39:30 -07002155static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry)
2156{
Paul Menagebd89aab2007-10-18 23:40:44 -07002157 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002158 struct dentry *d;
2159 struct cgroup *parent;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002160 struct super_block *sb;
2161 struct cgroupfs_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002162
2163 /* the vfs holds both inode->i_mutex already */
2164
2165 mutex_lock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07002166 if (atomic_read(&cgrp->count) != 0) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002167 mutex_unlock(&cgroup_mutex);
2168 return -EBUSY;
2169 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002170 if (!list_empty(&cgrp->children)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002171 mutex_unlock(&cgroup_mutex);
2172 return -EBUSY;
2173 }
2174
Paul Menagebd89aab2007-10-18 23:40:44 -07002175 parent = cgrp->parent;
2176 root = cgrp->root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002177 sb = root->sb;
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08002178 /*
2179 * Call pre_destroy handlers of subsys
2180 */
2181 cgroup_call_pre_destroy(cgrp);
2182 /*
2183 * Notify subsyses that rmdir() request comes.
2184 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07002185
Paul Menagebd89aab2007-10-18 23:40:44 -07002186 if (cgroup_has_css_refs(cgrp)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002187 mutex_unlock(&cgroup_mutex);
2188 return -EBUSY;
2189 }
2190
Paul Menage81a6a5c2007-10-18 23:39:38 -07002191 spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07002192 set_bit(CGRP_REMOVED, &cgrp->flags);
2193 if (!list_empty(&cgrp->release_list))
2194 list_del(&cgrp->release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002195 spin_unlock(&release_list_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002196 /* delete my sibling from parent->children */
Paul Menagebd89aab2007-10-18 23:40:44 -07002197 list_del(&cgrp->sibling);
2198 spin_lock(&cgrp->dentry->d_lock);
2199 d = dget(cgrp->dentry);
2200 cgrp->dentry = NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002201 spin_unlock(&d->d_lock);
2202
2203 cgroup_d_remove_dir(d);
2204 dput(d);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002205
Paul Menagebd89aab2007-10-18 23:40:44 -07002206 set_bit(CGRP_RELEASABLE, &parent->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002207 check_for_release(parent);
2208
Paul Menageddbcc7e2007-10-18 23:39:30 -07002209 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002210 return 0;
2211}
2212
2213static void cgroup_init_subsys(struct cgroup_subsys *ss)
2214{
Paul Menageddbcc7e2007-10-18 23:39:30 -07002215 struct cgroup_subsys_state *css;
Paul Menage817929e2007-10-18 23:39:36 -07002216 struct list_head *l;
Diego Callejacfe36bd2007-11-14 16:58:54 -08002217
2218 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002219
2220 /* Create the top cgroup state for this subsystem */
2221 ss->root = &rootnode;
2222 css = ss->create(ss, dummytop);
2223 /* We don't handle early failures gracefully */
2224 BUG_ON(IS_ERR(css));
2225 init_cgroup_css(css, ss, dummytop);
2226
Paul Menage817929e2007-10-18 23:39:36 -07002227 /* Update all cgroup groups to contain a subsys
2228 * pointer to this state - since the subsystem is
2229 * newly registered, all tasks and hence all cgroup
2230 * groups are in the subsystem's top cgroup. */
2231 write_lock(&css_set_lock);
2232 l = &init_css_set.list;
2233 do {
2234 struct css_set *cg =
2235 list_entry(l, struct css_set, list);
2236 cg->subsys[ss->subsys_id] = dummytop->subsys[ss->subsys_id];
2237 l = l->next;
2238 } while (l != &init_css_set.list);
2239 write_unlock(&css_set_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002240
2241 /* If this subsystem requested that it be notified with fork
2242 * events, we should send it one now for every process in the
2243 * system */
Paul Menage81a6a5c2007-10-18 23:39:38 -07002244 if (ss->fork) {
2245 struct task_struct *g, *p;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002246
Paul Menage81a6a5c2007-10-18 23:39:38 -07002247 read_lock(&tasklist_lock);
2248 do_each_thread(g, p) {
2249 ss->fork(ss, p);
2250 } while_each_thread(g, p);
2251 read_unlock(&tasklist_lock);
2252 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002253
2254 need_forkexit_callback |= ss->fork || ss->exit;
2255
2256 ss->active = 1;
2257}
2258
2259/**
2260 * cgroup_init_early - initialize cgroups at system boot, and
2261 * initialize any subsystems that request early init.
2262 */
2263int __init cgroup_init_early(void)
2264{
2265 int i;
Paul Menage817929e2007-10-18 23:39:36 -07002266 kref_init(&init_css_set.ref);
2267 kref_get(&init_css_set.ref);
2268 INIT_LIST_HEAD(&init_css_set.list);
2269 INIT_LIST_HEAD(&init_css_set.cg_links);
2270 INIT_LIST_HEAD(&init_css_set.tasks);
2271 css_set_count = 1;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002272 init_cgroup_root(&rootnode);
2273 list_add(&rootnode.root_list, &roots);
Paul Menage817929e2007-10-18 23:39:36 -07002274 root_count = 1;
2275 init_task.cgroups = &init_css_set;
2276
2277 init_css_set_link.cg = &init_css_set;
Paul Menagebd89aab2007-10-18 23:40:44 -07002278 list_add(&init_css_set_link.cgrp_link_list,
Paul Menage817929e2007-10-18 23:39:36 -07002279 &rootnode.top_cgroup.css_sets);
2280 list_add(&init_css_set_link.cg_link_list,
2281 &init_css_set.cg_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002282
2283 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2284 struct cgroup_subsys *ss = subsys[i];
2285
2286 BUG_ON(!ss->name);
2287 BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN);
2288 BUG_ON(!ss->create);
2289 BUG_ON(!ss->destroy);
2290 if (ss->subsys_id != i) {
Diego Callejacfe36bd2007-11-14 16:58:54 -08002291 printk(KERN_ERR "cgroup: Subsys %s id == %d\n",
Paul Menageddbcc7e2007-10-18 23:39:30 -07002292 ss->name, ss->subsys_id);
2293 BUG();
2294 }
2295
2296 if (ss->early_init)
2297 cgroup_init_subsys(ss);
2298 }
2299 return 0;
2300}
2301
2302/**
2303 * cgroup_init - register cgroup filesystem and /proc file, and
2304 * initialize any subsystems that didn't request early init.
2305 */
2306int __init cgroup_init(void)
2307{
2308 int err;
2309 int i;
Paul Menagea4243162007-10-18 23:39:35 -07002310 struct proc_dir_entry *entry;
2311
2312 err = bdi_init(&cgroup_backing_dev_info);
2313 if (err)
2314 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002315
2316 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2317 struct cgroup_subsys *ss = subsys[i];
2318 if (!ss->early_init)
2319 cgroup_init_subsys(ss);
2320 }
2321
2322 err = register_filesystem(&cgroup_fs_type);
2323 if (err < 0)
2324 goto out;
2325
Paul Menagea4243162007-10-18 23:39:35 -07002326 entry = create_proc_entry("cgroups", 0, NULL);
2327 if (entry)
2328 entry->proc_fops = &proc_cgroupstats_operations;
2329
Paul Menageddbcc7e2007-10-18 23:39:30 -07002330out:
Paul Menagea4243162007-10-18 23:39:35 -07002331 if (err)
2332 bdi_destroy(&cgroup_backing_dev_info);
2333
Paul Menageddbcc7e2007-10-18 23:39:30 -07002334 return err;
2335}
Paul Menageb4f48b62007-10-18 23:39:33 -07002336
Paul Menagea4243162007-10-18 23:39:35 -07002337/*
2338 * proc_cgroup_show()
2339 * - Print task's cgroup paths into seq_file, one line for each hierarchy
2340 * - Used for /proc/<pid>/cgroup.
2341 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
2342 * doesn't really matter if tsk->cgroup changes after we read it,
2343 * and we take cgroup_mutex, keeping attach_task() from changing it
2344 * anyway. No need to check that tsk->cgroup != NULL, thanks to
2345 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
2346 * cgroup to top_cgroup.
2347 */
2348
2349/* TODO: Use a proper seq_file iterator */
2350static int proc_cgroup_show(struct seq_file *m, void *v)
2351{
2352 struct pid *pid;
2353 struct task_struct *tsk;
2354 char *buf;
2355 int retval;
2356 struct cgroupfs_root *root;
2357
2358 retval = -ENOMEM;
2359 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
2360 if (!buf)
2361 goto out;
2362
2363 retval = -ESRCH;
2364 pid = m->private;
2365 tsk = get_pid_task(pid, PIDTYPE_PID);
2366 if (!tsk)
2367 goto out_free;
2368
2369 retval = 0;
2370
2371 mutex_lock(&cgroup_mutex);
2372
2373 for_each_root(root) {
2374 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07002375 struct cgroup *cgrp;
Paul Menagea4243162007-10-18 23:39:35 -07002376 int subsys_id;
2377 int count = 0;
2378
2379 /* Skip this hierarchy if it has no active subsystems */
2380 if (!root->actual_subsys_bits)
2381 continue;
2382 for_each_subsys(root, ss)
2383 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
2384 seq_putc(m, ':');
2385 get_first_subsys(&root->top_cgroup, NULL, &subsys_id);
Paul Menagebd89aab2007-10-18 23:40:44 -07002386 cgrp = task_cgroup(tsk, subsys_id);
2387 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
Paul Menagea4243162007-10-18 23:39:35 -07002388 if (retval < 0)
2389 goto out_unlock;
2390 seq_puts(m, buf);
2391 seq_putc(m, '\n');
2392 }
2393
2394out_unlock:
2395 mutex_unlock(&cgroup_mutex);
2396 put_task_struct(tsk);
2397out_free:
2398 kfree(buf);
2399out:
2400 return retval;
2401}
2402
2403static int cgroup_open(struct inode *inode, struct file *file)
2404{
2405 struct pid *pid = PROC_I(inode)->pid;
2406 return single_open(file, proc_cgroup_show, pid);
2407}
2408
2409struct file_operations proc_cgroup_operations = {
2410 .open = cgroup_open,
2411 .read = seq_read,
2412 .llseek = seq_lseek,
2413 .release = single_release,
2414};
2415
2416/* Display information about each subsystem and each hierarchy */
2417static int proc_cgroupstats_show(struct seq_file *m, void *v)
2418{
2419 int i;
Paul Menagea4243162007-10-18 23:39:35 -07002420
Paul Menage817929e2007-10-18 23:39:36 -07002421 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\n");
Paul Menagea4243162007-10-18 23:39:35 -07002422 mutex_lock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07002423 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2424 struct cgroup_subsys *ss = subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -07002425 seq_printf(m, "%s\t%lu\t%d\n",
2426 ss->name, ss->root->subsys_bits,
2427 ss->root->number_of_cgroups);
Paul Menagea4243162007-10-18 23:39:35 -07002428 }
2429 mutex_unlock(&cgroup_mutex);
2430 return 0;
2431}
2432
2433static int cgroupstats_open(struct inode *inode, struct file *file)
2434{
2435 return single_open(file, proc_cgroupstats_show, 0);
2436}
2437
2438static struct file_operations proc_cgroupstats_operations = {
2439 .open = cgroupstats_open,
2440 .read = seq_read,
2441 .llseek = seq_lseek,
2442 .release = single_release,
2443};
2444
Paul Menageb4f48b62007-10-18 23:39:33 -07002445/**
2446 * cgroup_fork - attach newly forked task to its parents cgroup.
2447 * @tsk: pointer to task_struct of forking parent process.
2448 *
2449 * Description: A task inherits its parent's cgroup at fork().
2450 *
2451 * A pointer to the shared css_set was automatically copied in
2452 * fork.c by dup_task_struct(). However, we ignore that copy, since
2453 * it was not made under the protection of RCU or cgroup_mutex, so
2454 * might no longer be a valid cgroup pointer. attach_task() might
Paul Menage817929e2007-10-18 23:39:36 -07002455 * have already changed current->cgroups, allowing the previously
2456 * referenced cgroup group to be removed and freed.
Paul Menageb4f48b62007-10-18 23:39:33 -07002457 *
2458 * At the point that cgroup_fork() is called, 'current' is the parent
2459 * task, and the passed argument 'child' points to the child task.
2460 */
2461void cgroup_fork(struct task_struct *child)
2462{
Paul Menage817929e2007-10-18 23:39:36 -07002463 task_lock(current);
2464 child->cgroups = current->cgroups;
2465 get_css_set(child->cgroups);
2466 task_unlock(current);
2467 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07002468}
2469
2470/**
2471 * cgroup_fork_callbacks - called on a new task very soon before
2472 * adding it to the tasklist. No need to take any locks since no-one
2473 * can be operating on this task
2474 */
2475void cgroup_fork_callbacks(struct task_struct *child)
2476{
2477 if (need_forkexit_callback) {
2478 int i;
2479 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2480 struct cgroup_subsys *ss = subsys[i];
2481 if (ss->fork)
2482 ss->fork(ss, child);
2483 }
2484 }
2485}
2486
2487/**
Paul Menage817929e2007-10-18 23:39:36 -07002488 * cgroup_post_fork - called on a new task after adding it to the
2489 * task list. Adds the task to the list running through its css_set
2490 * if necessary. Has to be after the task is visible on the task list
2491 * in case we race with the first call to cgroup_iter_start() - to
2492 * guarantee that the new task ends up on its list. */
2493void cgroup_post_fork(struct task_struct *child)
2494{
2495 if (use_task_css_set_links) {
2496 write_lock(&css_set_lock);
2497 if (list_empty(&child->cg_list))
2498 list_add(&child->cg_list, &child->cgroups->tasks);
2499 write_unlock(&css_set_lock);
2500 }
2501}
2502/**
Paul Menageb4f48b62007-10-18 23:39:33 -07002503 * cgroup_exit - detach cgroup from exiting task
2504 * @tsk: pointer to task_struct of exiting process
2505 *
2506 * Description: Detach cgroup from @tsk and release it.
2507 *
2508 * Note that cgroups marked notify_on_release force every task in
2509 * them to take the global cgroup_mutex mutex when exiting.
2510 * This could impact scaling on very large systems. Be reluctant to
2511 * use notify_on_release cgroups where very high task exit scaling
2512 * is required on large systems.
2513 *
2514 * the_top_cgroup_hack:
2515 *
2516 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
2517 *
2518 * We call cgroup_exit() while the task is still competent to
2519 * handle notify_on_release(), then leave the task attached to the
2520 * root cgroup in each hierarchy for the remainder of its exit.
2521 *
2522 * To do this properly, we would increment the reference count on
2523 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
2524 * code we would add a second cgroup function call, to drop that
2525 * reference. This would just create an unnecessary hot spot on
2526 * the top_cgroup reference count, to no avail.
2527 *
2528 * Normally, holding a reference to a cgroup without bumping its
2529 * count is unsafe. The cgroup could go away, or someone could
2530 * attach us to a different cgroup, decrementing the count on
2531 * the first cgroup that we never incremented. But in this case,
2532 * top_cgroup isn't going away, and either task has PF_EXITING set,
2533 * which wards off any attach_task() attempts, or task is a failed
2534 * fork, never visible to attach_task.
2535 *
2536 */
2537void cgroup_exit(struct task_struct *tsk, int run_callbacks)
2538{
2539 int i;
Paul Menage817929e2007-10-18 23:39:36 -07002540 struct css_set *cg;
Paul Menageb4f48b62007-10-18 23:39:33 -07002541
2542 if (run_callbacks && need_forkexit_callback) {
2543 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2544 struct cgroup_subsys *ss = subsys[i];
2545 if (ss->exit)
2546 ss->exit(ss, tsk);
2547 }
2548 }
Paul Menage817929e2007-10-18 23:39:36 -07002549
2550 /*
2551 * Unlink from the css_set task list if necessary.
2552 * Optimistically check cg_list before taking
2553 * css_set_lock
2554 */
2555 if (!list_empty(&tsk->cg_list)) {
2556 write_lock(&css_set_lock);
2557 if (!list_empty(&tsk->cg_list))
2558 list_del(&tsk->cg_list);
2559 write_unlock(&css_set_lock);
2560 }
2561
Paul Menageb4f48b62007-10-18 23:39:33 -07002562 /* Reassign the task to the init_css_set. */
2563 task_lock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07002564 cg = tsk->cgroups;
2565 tsk->cgroups = &init_css_set;
Paul Menageb4f48b62007-10-18 23:39:33 -07002566 task_unlock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07002567 if (cg)
Paul Menage81a6a5c2007-10-18 23:39:38 -07002568 put_css_set_taskexit(cg);
Paul Menageb4f48b62007-10-18 23:39:33 -07002569}
Paul Menage697f4162007-10-18 23:39:34 -07002570
2571/**
2572 * cgroup_clone - duplicate the current cgroup in the hierarchy
2573 * that the given subsystem is attached to, and move this task into
2574 * the new child
2575 */
2576int cgroup_clone(struct task_struct *tsk, struct cgroup_subsys *subsys)
2577{
2578 struct dentry *dentry;
2579 int ret = 0;
2580 char nodename[MAX_CGROUP_TYPE_NAMELEN];
2581 struct cgroup *parent, *child;
2582 struct inode *inode;
2583 struct css_set *cg;
2584 struct cgroupfs_root *root;
2585 struct cgroup_subsys *ss;
2586
2587 /* We shouldn't be called by an unregistered subsystem */
2588 BUG_ON(!subsys->active);
2589
2590 /* First figure out what hierarchy and cgroup we're dealing
2591 * with, and pin them so we can drop cgroup_mutex */
2592 mutex_lock(&cgroup_mutex);
2593 again:
2594 root = subsys->root;
2595 if (root == &rootnode) {
2596 printk(KERN_INFO
2597 "Not cloning cgroup for unused subsystem %s\n",
2598 subsys->name);
2599 mutex_unlock(&cgroup_mutex);
2600 return 0;
2601 }
Paul Menage817929e2007-10-18 23:39:36 -07002602 cg = tsk->cgroups;
Paul Menage697f4162007-10-18 23:39:34 -07002603 parent = task_cgroup(tsk, subsys->subsys_id);
2604
2605 snprintf(nodename, MAX_CGROUP_TYPE_NAMELEN, "node_%d", tsk->pid);
2606
2607 /* Pin the hierarchy */
2608 atomic_inc(&parent->root->sb->s_active);
2609
Paul Menage817929e2007-10-18 23:39:36 -07002610 /* Keep the cgroup alive */
2611 get_css_set(cg);
Paul Menage697f4162007-10-18 23:39:34 -07002612 mutex_unlock(&cgroup_mutex);
2613
2614 /* Now do the VFS work to create a cgroup */
2615 inode = parent->dentry->d_inode;
2616
2617 /* Hold the parent directory mutex across this operation to
2618 * stop anyone else deleting the new cgroup */
2619 mutex_lock(&inode->i_mutex);
2620 dentry = lookup_one_len(nodename, parent->dentry, strlen(nodename));
2621 if (IS_ERR(dentry)) {
2622 printk(KERN_INFO
Diego Callejacfe36bd2007-11-14 16:58:54 -08002623 "cgroup: Couldn't allocate dentry for %s: %ld\n", nodename,
Paul Menage697f4162007-10-18 23:39:34 -07002624 PTR_ERR(dentry));
2625 ret = PTR_ERR(dentry);
2626 goto out_release;
2627 }
2628
2629 /* Create the cgroup directory, which also creates the cgroup */
2630 ret = vfs_mkdir(inode, dentry, S_IFDIR | 0755);
Paul Menagebd89aab2007-10-18 23:40:44 -07002631 child = __d_cgrp(dentry);
Paul Menage697f4162007-10-18 23:39:34 -07002632 dput(dentry);
2633 if (ret) {
2634 printk(KERN_INFO
2635 "Failed to create cgroup %s: %d\n", nodename,
2636 ret);
2637 goto out_release;
2638 }
2639
2640 if (!child) {
2641 printk(KERN_INFO
2642 "Couldn't find new cgroup %s\n", nodename);
2643 ret = -ENOMEM;
2644 goto out_release;
2645 }
2646
2647 /* The cgroup now exists. Retake cgroup_mutex and check
2648 * that we're still in the same state that we thought we
2649 * were. */
2650 mutex_lock(&cgroup_mutex);
2651 if ((root != subsys->root) ||
2652 (parent != task_cgroup(tsk, subsys->subsys_id))) {
2653 /* Aargh, we raced ... */
2654 mutex_unlock(&inode->i_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07002655 put_css_set(cg);
Paul Menage697f4162007-10-18 23:39:34 -07002656
2657 deactivate_super(parent->root->sb);
2658 /* The cgroup is still accessible in the VFS, but
2659 * we're not going to try to rmdir() it at this
2660 * point. */
2661 printk(KERN_INFO
2662 "Race in cgroup_clone() - leaking cgroup %s\n",
2663 nodename);
2664 goto again;
2665 }
2666
2667 /* do any required auto-setup */
2668 for_each_subsys(root, ss) {
2669 if (ss->post_clone)
2670 ss->post_clone(ss, child);
2671 }
2672
2673 /* All seems fine. Finish by moving the task into the new cgroup */
2674 ret = attach_task(child, tsk);
2675 mutex_unlock(&cgroup_mutex);
2676
2677 out_release:
2678 mutex_unlock(&inode->i_mutex);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002679
2680 mutex_lock(&cgroup_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07002681 put_css_set(cg);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002682 mutex_unlock(&cgroup_mutex);
Paul Menage697f4162007-10-18 23:39:34 -07002683 deactivate_super(parent->root->sb);
2684 return ret;
2685}
2686
2687/*
Paul Menagebd89aab2007-10-18 23:40:44 -07002688 * See if "cgrp" is a descendant of the current task's cgroup in
Paul Menage697f4162007-10-18 23:39:34 -07002689 * the appropriate hierarchy
2690 *
2691 * If we are sending in dummytop, then presumably we are creating
2692 * the top cgroup in the subsystem.
2693 *
2694 * Called only by the ns (nsproxy) cgroup.
2695 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002696int cgroup_is_descendant(const struct cgroup *cgrp)
Paul Menage697f4162007-10-18 23:39:34 -07002697{
2698 int ret;
2699 struct cgroup *target;
2700 int subsys_id;
2701
Paul Menagebd89aab2007-10-18 23:40:44 -07002702 if (cgrp == dummytop)
Paul Menage697f4162007-10-18 23:39:34 -07002703 return 1;
2704
Paul Menagebd89aab2007-10-18 23:40:44 -07002705 get_first_subsys(cgrp, NULL, &subsys_id);
Paul Menage697f4162007-10-18 23:39:34 -07002706 target = task_cgroup(current, subsys_id);
Paul Menagebd89aab2007-10-18 23:40:44 -07002707 while (cgrp != target && cgrp!= cgrp->top_cgroup)
2708 cgrp = cgrp->parent;
2709 ret = (cgrp == target);
Paul Menage697f4162007-10-18 23:39:34 -07002710 return ret;
2711}
Paul Menage81a6a5c2007-10-18 23:39:38 -07002712
Paul Menagebd89aab2007-10-18 23:40:44 -07002713static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07002714{
2715 /* All of these checks rely on RCU to keep the cgroup
2716 * structure alive */
Paul Menagebd89aab2007-10-18 23:40:44 -07002717 if (cgroup_is_releasable(cgrp) && !atomic_read(&cgrp->count)
2718 && list_empty(&cgrp->children) && !cgroup_has_css_refs(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07002719 /* Control Group is currently removeable. If it's not
2720 * already queued for a userspace notification, queue
2721 * it now */
2722 int need_schedule_work = 0;
2723 spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07002724 if (!cgroup_is_removed(cgrp) &&
2725 list_empty(&cgrp->release_list)) {
2726 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002727 need_schedule_work = 1;
2728 }
2729 spin_unlock(&release_list_lock);
2730 if (need_schedule_work)
2731 schedule_work(&release_agent_work);
2732 }
2733}
2734
2735void __css_put(struct cgroup_subsys_state *css)
2736{
Paul Menagebd89aab2007-10-18 23:40:44 -07002737 struct cgroup *cgrp = css->cgroup;
Paul Menage81a6a5c2007-10-18 23:39:38 -07002738 rcu_read_lock();
Paul Menagebd89aab2007-10-18 23:40:44 -07002739 if (atomic_dec_and_test(&css->refcnt) && notify_on_release(cgrp)) {
2740 set_bit(CGRP_RELEASABLE, &cgrp->flags);
2741 check_for_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002742 }
2743 rcu_read_unlock();
2744}
2745
2746/*
2747 * Notify userspace when a cgroup is released, by running the
2748 * configured release agent with the name of the cgroup (path
2749 * relative to the root of cgroup file system) as the argument.
2750 *
2751 * Most likely, this user command will try to rmdir this cgroup.
2752 *
2753 * This races with the possibility that some other task will be
2754 * attached to this cgroup before it is removed, or that some other
2755 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
2756 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
2757 * unused, and this cgroup will be reprieved from its death sentence,
2758 * to continue to serve a useful existence. Next time it's released,
2759 * we will get notified again, if it still has 'notify_on_release' set.
2760 *
2761 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
2762 * means only wait until the task is successfully execve()'d. The
2763 * separate release agent task is forked by call_usermodehelper(),
2764 * then control in this thread returns here, without waiting for the
2765 * release agent task. We don't bother to wait because the caller of
2766 * this routine has no use for the exit status of the release agent
2767 * task, so no sense holding our caller up for that.
2768 *
2769 */
2770
2771static void cgroup_release_agent(struct work_struct *work)
2772{
2773 BUG_ON(work != &release_agent_work);
2774 mutex_lock(&cgroup_mutex);
2775 spin_lock(&release_list_lock);
2776 while (!list_empty(&release_list)) {
2777 char *argv[3], *envp[3];
2778 int i;
2779 char *pathbuf;
Paul Menagebd89aab2007-10-18 23:40:44 -07002780 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07002781 struct cgroup,
2782 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07002783 list_del_init(&cgrp->release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002784 spin_unlock(&release_list_lock);
2785 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
2786 if (!pathbuf) {
2787 spin_lock(&release_list_lock);
2788 continue;
2789 }
2790
Paul Menagebd89aab2007-10-18 23:40:44 -07002791 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07002792 kfree(pathbuf);
2793 spin_lock(&release_list_lock);
2794 continue;
2795 }
2796
2797 i = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07002798 argv[i++] = cgrp->root->release_agent_path;
Paul Menage81a6a5c2007-10-18 23:39:38 -07002799 argv[i++] = (char *)pathbuf;
2800 argv[i] = NULL;
2801
2802 i = 0;
2803 /* minimal command environment */
2804 envp[i++] = "HOME=/";
2805 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
2806 envp[i] = NULL;
2807
2808 /* Drop the lock while we invoke the usermode helper,
2809 * since the exec could involve hitting disk and hence
2810 * be a slow process */
2811 mutex_unlock(&cgroup_mutex);
2812 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
2813 kfree(pathbuf);
2814 mutex_lock(&cgroup_mutex);
2815 spin_lock(&release_list_lock);
2816 }
2817 spin_unlock(&release_list_lock);
2818 mutex_unlock(&cgroup_mutex);
2819}