kernel/cgroup.c: remove dead code
[linux-2.6-block.git] / kernel / cgroup.c
CommitLineData
ddbcc7e8 1/*
ddbcc7e8
PM
2 * 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>
a424316c 34#include <linux/proc_fs.h>
ddbcc7e8
PM
35#include <linux/rcupdate.h>
36#include <linux/sched.h>
817929ec 37#include <linux/backing-dev.h>
ddbcc7e8
PM
38#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>
bbcb81d0 43#include <linux/sort.h>
81a6a5cd 44#include <linux/kmod.h>
846c7bb0
BS
45#include <linux/delayacct.h>
46#include <linux/cgroupstats.h>
47
ddbcc7e8
PM
48#include <asm/atomic.h>
49
81a6a5cd
PM
50static DEFINE_MUTEX(cgroup_mutex);
51
ddbcc7e8
PM
52/* 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;
81a6a5cd
PM
90
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];
ddbcc7e8
PM
97};
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);
817929ec 110static int root_count;
ddbcc7e8
PM
111
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 {
81a6a5cd 124 /* Control Group is dead */
bd89aabc 125 CGRP_REMOVED,
81a6a5cd 126 /* Control Group has previously had a child cgroup or a task,
bd89aabc
PM
127 * but no longer (only if CGRP_NOTIFY_ON_RELEASE is set) */
128 CGRP_RELEASABLE,
81a6a5cd 129 /* Control Group requires release notifications to userspace */
bd89aabc 130 CGRP_NOTIFY_ON_RELEASE,
ddbcc7e8
PM
131};
132
133/* convenient tests for these bits */
bd89aabc 134inline int cgroup_is_removed(const struct cgroup *cgrp)
ddbcc7e8 135{
bd89aabc 136 return test_bit(CGRP_REMOVED, &cgrp->flags);
ddbcc7e8
PM
137}
138
139/* bits in struct cgroupfs_root flags field */
140enum {
141 ROOT_NOPREFIX, /* mounted subsystems have no named prefix */
142};
143
bd89aabc 144inline int cgroup_is_releasable(const struct cgroup *cgrp)
81a6a5cd
PM
145{
146 const int bits =
bd89aabc
PM
147 (1 << CGRP_RELEASABLE) |
148 (1 << CGRP_NOTIFY_ON_RELEASE);
149 return (cgrp->flags & bits) == bits;
81a6a5cd
PM
150}
151
bd89aabc 152inline int notify_on_release(const struct cgroup *cgrp)
81a6a5cd 153{
bd89aabc 154 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
81a6a5cd
PM
155}
156
ddbcc7e8
PM
157/*
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
81a6a5cd
PM
168/* 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);
bd89aabc 174static void check_for_release(struct cgroup *cgrp);
81a6a5cd 175
817929ec
PM
176/* 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 */
bd89aabc 182 struct list_head cgrp_link_list;
817929ec
PM
183 /*
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
b4f48b63
PM
219 * 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 */
817929ec
PM
226
227/*
228 * unlink a css_set from the list and free it
229 */
81a6a5cd 230static void unlink_css_set(struct css_set *cg)
b4f48b63 231{
817929ec
PM
232 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);
bd89aabc 240 list_del(&link->cgrp_link_list);
817929ec
PM
241 kfree(link);
242 }
243 write_unlock(&css_set_lock);
81a6a5cd
PM
244}
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++) {
bd89aabc
PM
255 struct cgroup *cgrp = cg->subsys[i]->cgroup;
256 if (atomic_dec_and_test(&cgrp->count) &&
257 notify_on_release(cgrp)) {
81a6a5cd 258 if (taskexit)
bd89aabc
PM
259 set_bit(CGRP_RELEASABLE, &cgrp->flags);
260 check_for_release(cgrp);
81a6a5cd
PM
261 }
262 }
263 rcu_read_unlock();
817929ec 264 kfree(cg);
b4f48b63
PM
265}
266
81a6a5cd
PM
267static 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
817929ec
PM
277/*
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
81a6a5cd
PM
290static inline void put_css_set_taskexit(struct css_set *cg)
291{
292 kref_put(&cg->ref, release_css_set_taskexit);
293}
294
817929ec
PM
295/*
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 *
bd89aabc 305 * cgrp: the cgroup that we're moving into
817929ec
PM
306 *
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,
bd89aabc 313 struct cgroup *cgrp,
817929ec 314 struct cgroup_subsys_state *template[])
b4f48b63
PM
315{
316 int i;
bd89aabc 317 struct cgroupfs_root *root = cgrp->root;
817929ec
PM
318 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 */
bd89aabc 327 template[i] = cgrp->subsys[i];
817929ec
PM
328 } 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
bd89aabc 354 * and chains them on tmp through their cgrp_link_list fields. Returns 0 on
817929ec
PM
355 * 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,
bd89aabc
PM
369 cgrp_link_list);
370 list_del(&link->cgrp_link_list);
817929ec
PM
371 kfree(link);
372 }
373 return -ENOMEM;
374 }
bd89aabc 375 list_add(&link->cgrp_link_list, tmp);
817929ec
PM
376 }
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,
bd89aabc
PM
386 cgrp_link_list);
387 list_del(&link->cgrp_link_list);
817929ec
PM
388 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(
bd89aabc 401 struct css_set *oldcg, struct cgroup *cgrp)
817929ec
PM
402{
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);
bd89aabc 413 res = find_existing_css_set(oldcg, cgrp, template);
817929ec
PM
414 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++) {
bd89aabc 442 struct cgroup *cgrp = res->subsys[i]->cgroup;
817929ec 443 struct cgroup_subsys *ss = subsys[i];
bd89aabc 444 atomic_inc(&cgrp->count);
817929ec
PM
445 /*
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,
bd89aabc
PM
454 cgrp_link_list);
455 list_del(&link->cgrp_link_list);
456 list_add(&link->cgrp_link_list, &cgrp->css_sets);
817929ec
PM
457 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,
bd89aabc
PM
464 cgrp_link_list);
465 list_del(&link->cgrp_link_list);
466 list_add(&link->cgrp_link_list, &dummytop->css_sets);
817929ec
PM
467 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;
b4f48b63
PM
480}
481
ddbcc7e8
PM
482/*
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
ddbcc7e8
PM
536/**
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);
bd89aabc 566static int cgroup_populate_dir(struct cgroup *cgrp);
ddbcc7e8 567static struct inode_operations cgroup_dir_inode_operations;
a424316c
PM
568static 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};
ddbcc7e8
PM
573
574static struct inode *cgroup_new_inode(mode_t mode, struct super_block *sb)
575{
576 struct inode *inode = new_inode(sb);
ddbcc7e8
PM
577
578 if (inode) {
579 inode->i_mode = mode;
580 inode->i_uid = current->fsuid;
581 inode->i_gid = current->fsgid;
582 inode->i_blocks = 0;
583 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
584 inode->i_mapping->backing_dev_info = &cgroup_backing_dev_info;
585 }
586 return inode;
587}
588
589static void cgroup_diput(struct dentry *dentry, struct inode *inode)
590{
591 /* is dentry a directory ? if so, kfree() associated cgroup */
592 if (S_ISDIR(inode->i_mode)) {
bd89aabc
PM
593 struct cgroup *cgrp = dentry->d_fsdata;
594 BUG_ON(!(cgroup_is_removed(cgrp)));
81a6a5cd
PM
595 /* It's possible for external users to be holding css
596 * reference counts on a cgroup; css_put() needs to
597 * be able to access the cgroup after decrementing
598 * the reference count in order to know if it needs to
599 * queue the cgroup to be handled by the release
600 * agent */
601 synchronize_rcu();
bd89aabc 602 kfree(cgrp);
ddbcc7e8
PM
603 }
604 iput(inode);
605}
606
607static void remove_dir(struct dentry *d)
608{
609 struct dentry *parent = dget(d->d_parent);
610
611 d_delete(d);
612 simple_rmdir(parent->d_inode, d);
613 dput(parent);
614}
615
616static void cgroup_clear_directory(struct dentry *dentry)
617{
618 struct list_head *node;
619
620 BUG_ON(!mutex_is_locked(&dentry->d_inode->i_mutex));
621 spin_lock(&dcache_lock);
622 node = dentry->d_subdirs.next;
623 while (node != &dentry->d_subdirs) {
624 struct dentry *d = list_entry(node, struct dentry, d_u.d_child);
625 list_del_init(node);
626 if (d->d_inode) {
627 /* This should never be called on a cgroup
628 * directory with child cgroups */
629 BUG_ON(d->d_inode->i_mode & S_IFDIR);
630 d = dget_locked(d);
631 spin_unlock(&dcache_lock);
632 d_delete(d);
633 simple_unlink(dentry->d_inode, d);
634 dput(d);
635 spin_lock(&dcache_lock);
636 }
637 node = dentry->d_subdirs.next;
638 }
639 spin_unlock(&dcache_lock);
640}
641
642/*
643 * NOTE : the dentry must have been dget()'ed
644 */
645static void cgroup_d_remove_dir(struct dentry *dentry)
646{
647 cgroup_clear_directory(dentry);
648
649 spin_lock(&dcache_lock);
650 list_del_init(&dentry->d_u.d_child);
651 spin_unlock(&dcache_lock);
652 remove_dir(dentry);
653}
654
655static int rebind_subsystems(struct cgroupfs_root *root,
656 unsigned long final_bits)
657{
658 unsigned long added_bits, removed_bits;
bd89aabc 659 struct cgroup *cgrp = &root->top_cgroup;
ddbcc7e8
PM
660 int i;
661
662 removed_bits = root->actual_subsys_bits & ~final_bits;
663 added_bits = final_bits & ~root->actual_subsys_bits;
664 /* Check that any added subsystems are currently free */
665 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
666 unsigned long long bit = 1ull << i;
667 struct cgroup_subsys *ss = subsys[i];
668 if (!(bit & added_bits))
669 continue;
670 if (ss->root != &rootnode) {
671 /* Subsystem isn't free */
672 return -EBUSY;
673 }
674 }
675
676 /* Currently we don't handle adding/removing subsystems when
677 * any child cgroups exist. This is theoretically supportable
678 * but involves complex error handling, so it's being left until
679 * later */
bd89aabc 680 if (!list_empty(&cgrp->children))
ddbcc7e8
PM
681 return -EBUSY;
682
683 /* Process each subsystem */
684 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
685 struct cgroup_subsys *ss = subsys[i];
686 unsigned long bit = 1UL << i;
687 if (bit & added_bits) {
688 /* We're binding this subsystem to this hierarchy */
bd89aabc 689 BUG_ON(cgrp->subsys[i]);
ddbcc7e8
PM
690 BUG_ON(!dummytop->subsys[i]);
691 BUG_ON(dummytop->subsys[i]->cgroup != dummytop);
bd89aabc
PM
692 cgrp->subsys[i] = dummytop->subsys[i];
693 cgrp->subsys[i]->cgroup = cgrp;
ddbcc7e8
PM
694 list_add(&ss->sibling, &root->subsys_list);
695 rcu_assign_pointer(ss->root, root);
696 if (ss->bind)
bd89aabc 697 ss->bind(ss, cgrp);
ddbcc7e8
PM
698
699 } else if (bit & removed_bits) {
700 /* We're removing this subsystem */
bd89aabc
PM
701 BUG_ON(cgrp->subsys[i] != dummytop->subsys[i]);
702 BUG_ON(cgrp->subsys[i]->cgroup != cgrp);
ddbcc7e8
PM
703 if (ss->bind)
704 ss->bind(ss, dummytop);
705 dummytop->subsys[i]->cgroup = dummytop;
bd89aabc 706 cgrp->subsys[i] = NULL;
ddbcc7e8
PM
707 rcu_assign_pointer(subsys[i]->root, &rootnode);
708 list_del(&ss->sibling);
709 } else if (bit & final_bits) {
710 /* Subsystem state should already exist */
bd89aabc 711 BUG_ON(!cgrp->subsys[i]);
ddbcc7e8
PM
712 } else {
713 /* Subsystem state shouldn't exist */
bd89aabc 714 BUG_ON(cgrp->subsys[i]);
ddbcc7e8
PM
715 }
716 }
717 root->subsys_bits = root->actual_subsys_bits = final_bits;
718 synchronize_rcu();
719
720 return 0;
721}
722
723static int cgroup_show_options(struct seq_file *seq, struct vfsmount *vfs)
724{
725 struct cgroupfs_root *root = vfs->mnt_sb->s_fs_info;
726 struct cgroup_subsys *ss;
727
728 mutex_lock(&cgroup_mutex);
729 for_each_subsys(root, ss)
730 seq_printf(seq, ",%s", ss->name);
731 if (test_bit(ROOT_NOPREFIX, &root->flags))
732 seq_puts(seq, ",noprefix");
81a6a5cd
PM
733 if (strlen(root->release_agent_path))
734 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
ddbcc7e8
PM
735 mutex_unlock(&cgroup_mutex);
736 return 0;
737}
738
739struct cgroup_sb_opts {
740 unsigned long subsys_bits;
741 unsigned long flags;
81a6a5cd 742 char *release_agent;
ddbcc7e8
PM
743};
744
745/* Convert a hierarchy specifier into a bitmask of subsystems and
746 * flags. */
747static int parse_cgroupfs_options(char *data,
748 struct cgroup_sb_opts *opts)
749{
750 char *token, *o = data ?: "all";
751
752 opts->subsys_bits = 0;
753 opts->flags = 0;
81a6a5cd 754 opts->release_agent = NULL;
ddbcc7e8
PM
755
756 while ((token = strsep(&o, ",")) != NULL) {
757 if (!*token)
758 return -EINVAL;
759 if (!strcmp(token, "all")) {
760 opts->subsys_bits = (1 << CGROUP_SUBSYS_COUNT) - 1;
761 } else if (!strcmp(token, "noprefix")) {
762 set_bit(ROOT_NOPREFIX, &opts->flags);
81a6a5cd
PM
763 } else if (!strncmp(token, "release_agent=", 14)) {
764 /* Specifying two release agents is forbidden */
765 if (opts->release_agent)
766 return -EINVAL;
767 opts->release_agent = kzalloc(PATH_MAX, GFP_KERNEL);
768 if (!opts->release_agent)
769 return -ENOMEM;
770 strncpy(opts->release_agent, token + 14, PATH_MAX - 1);
771 opts->release_agent[PATH_MAX - 1] = 0;
ddbcc7e8
PM
772 } else {
773 struct cgroup_subsys *ss;
774 int i;
775 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
776 ss = subsys[i];
777 if (!strcmp(token, ss->name)) {
778 set_bit(i, &opts->subsys_bits);
779 break;
780 }
781 }
782 if (i == CGROUP_SUBSYS_COUNT)
783 return -ENOENT;
784 }
785 }
786
787 /* We can't have an empty hierarchy */
788 if (!opts->subsys_bits)
789 return -EINVAL;
790
791 return 0;
792}
793
794static int cgroup_remount(struct super_block *sb, int *flags, char *data)
795{
796 int ret = 0;
797 struct cgroupfs_root *root = sb->s_fs_info;
bd89aabc 798 struct cgroup *cgrp = &root->top_cgroup;
ddbcc7e8
PM
799 struct cgroup_sb_opts opts;
800
bd89aabc 801 mutex_lock(&cgrp->dentry->d_inode->i_mutex);
ddbcc7e8
PM
802 mutex_lock(&cgroup_mutex);
803
804 /* See what subsystems are wanted */
805 ret = parse_cgroupfs_options(data, &opts);
806 if (ret)
807 goto out_unlock;
808
809 /* Don't allow flags to change at remount */
810 if (opts.flags != root->flags) {
811 ret = -EINVAL;
812 goto out_unlock;
813 }
814
815 ret = rebind_subsystems(root, opts.subsys_bits);
816
817 /* (re)populate subsystem files */
818 if (!ret)
bd89aabc 819 cgroup_populate_dir(cgrp);
ddbcc7e8 820
81a6a5cd
PM
821 if (opts.release_agent)
822 strcpy(root->release_agent_path, opts.release_agent);
ddbcc7e8 823 out_unlock:
81a6a5cd
PM
824 if (opts.release_agent)
825 kfree(opts.release_agent);
ddbcc7e8 826 mutex_unlock(&cgroup_mutex);
bd89aabc 827 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
ddbcc7e8
PM
828 return ret;
829}
830
831static struct super_operations cgroup_ops = {
832 .statfs = simple_statfs,
833 .drop_inode = generic_delete_inode,
834 .show_options = cgroup_show_options,
835 .remount_fs = cgroup_remount,
836};
837
838static void init_cgroup_root(struct cgroupfs_root *root)
839{
bd89aabc 840 struct cgroup *cgrp = &root->top_cgroup;
ddbcc7e8
PM
841 INIT_LIST_HEAD(&root->subsys_list);
842 INIT_LIST_HEAD(&root->root_list);
843 root->number_of_cgroups = 1;
bd89aabc
PM
844 cgrp->root = root;
845 cgrp->top_cgroup = cgrp;
846 INIT_LIST_HEAD(&cgrp->sibling);
847 INIT_LIST_HEAD(&cgrp->children);
848 INIT_LIST_HEAD(&cgrp->css_sets);
849 INIT_LIST_HEAD(&cgrp->release_list);
ddbcc7e8
PM
850}
851
852static int cgroup_test_super(struct super_block *sb, void *data)
853{
854 struct cgroupfs_root *new = data;
855 struct cgroupfs_root *root = sb->s_fs_info;
856
857 /* First check subsystems */
858 if (new->subsys_bits != root->subsys_bits)
859 return 0;
860
861 /* Next check flags */
862 if (new->flags != root->flags)
863 return 0;
864
865 return 1;
866}
867
868static int cgroup_set_super(struct super_block *sb, void *data)
869{
870 int ret;
871 struct cgroupfs_root *root = data;
872
873 ret = set_anon_super(sb, NULL);
874 if (ret)
875 return ret;
876
877 sb->s_fs_info = root;
878 root->sb = sb;
879
880 sb->s_blocksize = PAGE_CACHE_SIZE;
881 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
882 sb->s_magic = CGROUP_SUPER_MAGIC;
883 sb->s_op = &cgroup_ops;
884
885 return 0;
886}
887
888static int cgroup_get_rootdir(struct super_block *sb)
889{
890 struct inode *inode =
891 cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb);
892 struct dentry *dentry;
893
894 if (!inode)
895 return -ENOMEM;
896
897 inode->i_op = &simple_dir_inode_operations;
898 inode->i_fop = &simple_dir_operations;
899 inode->i_op = &cgroup_dir_inode_operations;
900 /* directories start off with i_nlink == 2 (for "." entry) */
901 inc_nlink(inode);
902 dentry = d_alloc_root(inode);
903 if (!dentry) {
904 iput(inode);
905 return -ENOMEM;
906 }
907 sb->s_root = dentry;
908 return 0;
909}
910
911static int cgroup_get_sb(struct file_system_type *fs_type,
912 int flags, const char *unused_dev_name,
913 void *data, struct vfsmount *mnt)
914{
915 struct cgroup_sb_opts opts;
916 int ret = 0;
917 struct super_block *sb;
918 struct cgroupfs_root *root;
817929ec
PM
919 struct list_head tmp_cg_links, *l;
920 INIT_LIST_HEAD(&tmp_cg_links);
ddbcc7e8
PM
921
922 /* First find the desired set of subsystems */
923 ret = parse_cgroupfs_options(data, &opts);
81a6a5cd
PM
924 if (ret) {
925 if (opts.release_agent)
926 kfree(opts.release_agent);
ddbcc7e8 927 return ret;
81a6a5cd 928 }
ddbcc7e8
PM
929
930 root = kzalloc(sizeof(*root), GFP_KERNEL);
931 if (!root)
932 return -ENOMEM;
933
934 init_cgroup_root(root);
935 root->subsys_bits = opts.subsys_bits;
936 root->flags = opts.flags;
81a6a5cd
PM
937 if (opts.release_agent) {
938 strcpy(root->release_agent_path, opts.release_agent);
939 kfree(opts.release_agent);
940 }
ddbcc7e8
PM
941
942 sb = sget(fs_type, cgroup_test_super, cgroup_set_super, root);
943
944 if (IS_ERR(sb)) {
945 kfree(root);
946 return PTR_ERR(sb);
947 }
948
949 if (sb->s_fs_info != root) {
950 /* Reusing an existing superblock */
951 BUG_ON(sb->s_root == NULL);
952 kfree(root);
953 root = NULL;
954 } else {
955 /* New superblock */
bd89aabc 956 struct cgroup *cgrp = &root->top_cgroup;
817929ec 957 struct inode *inode;
ddbcc7e8
PM
958
959 BUG_ON(sb->s_root != NULL);
960
961 ret = cgroup_get_rootdir(sb);
962 if (ret)
963 goto drop_new_super;
817929ec 964 inode = sb->s_root->d_inode;
ddbcc7e8 965
817929ec 966 mutex_lock(&inode->i_mutex);
ddbcc7e8
PM
967 mutex_lock(&cgroup_mutex);
968
817929ec
PM
969 /*
970 * We're accessing css_set_count without locking
971 * css_set_lock here, but that's OK - it can only be
972 * increased by someone holding cgroup_lock, and
973 * that's us. The worst that can happen is that we
974 * have some link structures left over
975 */
976 ret = allocate_cg_links(css_set_count, &tmp_cg_links);
977 if (ret) {
978 mutex_unlock(&cgroup_mutex);
979 mutex_unlock(&inode->i_mutex);
980 goto drop_new_super;
981 }
982
ddbcc7e8
PM
983 ret = rebind_subsystems(root, root->subsys_bits);
984 if (ret == -EBUSY) {
985 mutex_unlock(&cgroup_mutex);
817929ec 986 mutex_unlock(&inode->i_mutex);
ddbcc7e8
PM
987 goto drop_new_super;
988 }
989
990 /* EBUSY should be the only error here */
991 BUG_ON(ret);
992
993 list_add(&root->root_list, &roots);
817929ec 994 root_count++;
ddbcc7e8
PM
995
996 sb->s_root->d_fsdata = &root->top_cgroup;
997 root->top_cgroup.dentry = sb->s_root;
998
817929ec
PM
999 /* Link the top cgroup in this hierarchy into all
1000 * the css_set objects */
1001 write_lock(&css_set_lock);
1002 l = &init_css_set.list;
1003 do {
1004 struct css_set *cg;
1005 struct cg_cgroup_link *link;
1006 cg = list_entry(l, struct css_set, list);
1007 BUG_ON(list_empty(&tmp_cg_links));
1008 link = list_entry(tmp_cg_links.next,
1009 struct cg_cgroup_link,
bd89aabc
PM
1010 cgrp_link_list);
1011 list_del(&link->cgrp_link_list);
817929ec 1012 link->cg = cg;
bd89aabc 1013 list_add(&link->cgrp_link_list,
817929ec
PM
1014 &root->top_cgroup.css_sets);
1015 list_add(&link->cg_link_list, &cg->cg_links);
1016 l = l->next;
1017 } while (l != &init_css_set.list);
1018 write_unlock(&css_set_lock);
1019
1020 free_cg_links(&tmp_cg_links);
1021
bd89aabc
PM
1022 BUG_ON(!list_empty(&cgrp->sibling));
1023 BUG_ON(!list_empty(&cgrp->children));
ddbcc7e8
PM
1024 BUG_ON(root->number_of_cgroups != 1);
1025
bd89aabc 1026 cgroup_populate_dir(cgrp);
817929ec 1027 mutex_unlock(&inode->i_mutex);
ddbcc7e8
PM
1028 mutex_unlock(&cgroup_mutex);
1029 }
1030
1031 return simple_set_mnt(mnt, sb);
1032
1033 drop_new_super:
1034 up_write(&sb->s_umount);
1035 deactivate_super(sb);
817929ec 1036 free_cg_links(&tmp_cg_links);
ddbcc7e8
PM
1037 return ret;
1038}
1039
1040static void cgroup_kill_sb(struct super_block *sb) {
1041 struct cgroupfs_root *root = sb->s_fs_info;
bd89aabc 1042 struct cgroup *cgrp = &root->top_cgroup;
ddbcc7e8
PM
1043 int ret;
1044
1045 BUG_ON(!root);
1046
1047 BUG_ON(root->number_of_cgroups != 1);
bd89aabc
PM
1048 BUG_ON(!list_empty(&cgrp->children));
1049 BUG_ON(!list_empty(&cgrp->sibling));
ddbcc7e8
PM
1050
1051 mutex_lock(&cgroup_mutex);
1052
1053 /* Rebind all subsystems back to the default hierarchy */
1054 ret = rebind_subsystems(root, 0);
1055 /* Shouldn't be able to fail ... */
1056 BUG_ON(ret);
1057
817929ec
PM
1058 /*
1059 * Release all the links from css_sets to this hierarchy's
1060 * root cgroup
1061 */
1062 write_lock(&css_set_lock);
bd89aabc 1063 while (!list_empty(&cgrp->css_sets)) {
817929ec 1064 struct cg_cgroup_link *link;
bd89aabc
PM
1065 link = list_entry(cgrp->css_sets.next,
1066 struct cg_cgroup_link, cgrp_link_list);
817929ec 1067 list_del(&link->cg_link_list);
bd89aabc 1068 list_del(&link->cgrp_link_list);
817929ec
PM
1069 kfree(link);
1070 }
1071 write_unlock(&css_set_lock);
1072
1073 if (!list_empty(&root->root_list)) {
ddbcc7e8 1074 list_del(&root->root_list);
817929ec
PM
1075 root_count--;
1076 }
ddbcc7e8
PM
1077 mutex_unlock(&cgroup_mutex);
1078
1079 kfree(root);
1080 kill_litter_super(sb);
1081}
1082
1083static struct file_system_type cgroup_fs_type = {
1084 .name = "cgroup",
1085 .get_sb = cgroup_get_sb,
1086 .kill_sb = cgroup_kill_sb,
1087};
1088
bd89aabc 1089static inline struct cgroup *__d_cgrp(struct dentry *dentry)
ddbcc7e8
PM
1090{
1091 return dentry->d_fsdata;
1092}
1093
1094static inline struct cftype *__d_cft(struct dentry *dentry)
1095{
1096 return dentry->d_fsdata;
1097}
1098
1099/*
1100 * Called with cgroup_mutex held. Writes path of cgroup into buf.
1101 * Returns 0 on success, -errno on error.
1102 */
bd89aabc 1103int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
ddbcc7e8
PM
1104{
1105 char *start;
1106
bd89aabc 1107 if (cgrp == dummytop) {
ddbcc7e8
PM
1108 /*
1109 * Inactive subsystems have no dentry for their root
1110 * cgroup
1111 */
1112 strcpy(buf, "/");
1113 return 0;
1114 }
1115
1116 start = buf + buflen;
1117
1118 *--start = '\0';
1119 for (;;) {
bd89aabc 1120 int len = cgrp->dentry->d_name.len;
ddbcc7e8
PM
1121 if ((start -= len) < buf)
1122 return -ENAMETOOLONG;
bd89aabc
PM
1123 memcpy(start, cgrp->dentry->d_name.name, len);
1124 cgrp = cgrp->parent;
1125 if (!cgrp)
ddbcc7e8 1126 break;
bd89aabc 1127 if (!cgrp->parent)
ddbcc7e8
PM
1128 continue;
1129 if (--start < buf)
1130 return -ENAMETOOLONG;
1131 *start = '/';
1132 }
1133 memmove(buf, start, buf + buflen - start);
1134 return 0;
1135}
1136
bbcb81d0
PM
1137/*
1138 * Return the first subsystem attached to a cgroup's hierarchy, and
1139 * its subsystem id.
1140 */
1141
bd89aabc 1142static void get_first_subsys(const struct cgroup *cgrp,
bbcb81d0
PM
1143 struct cgroup_subsys_state **css, int *subsys_id)
1144{
bd89aabc 1145 const struct cgroupfs_root *root = cgrp->root;
bbcb81d0
PM
1146 const struct cgroup_subsys *test_ss;
1147 BUG_ON(list_empty(&root->subsys_list));
1148 test_ss = list_entry(root->subsys_list.next,
1149 struct cgroup_subsys, sibling);
1150 if (css) {
bd89aabc 1151 *css = cgrp->subsys[test_ss->subsys_id];
bbcb81d0
PM
1152 BUG_ON(!*css);
1153 }
1154 if (subsys_id)
1155 *subsys_id = test_ss->subsys_id;
1156}
1157
1158/*
bd89aabc 1159 * Attach task 'tsk' to cgroup 'cgrp'
bbcb81d0
PM
1160 *
1161 * Call holding cgroup_mutex. May take task_lock of
1162 * the task 'pid' during call.
1163 */
bd89aabc 1164static int attach_task(struct cgroup *cgrp, struct task_struct *tsk)
bbcb81d0
PM
1165{
1166 int retval = 0;
1167 struct cgroup_subsys *ss;
bd89aabc 1168 struct cgroup *oldcgrp;
817929ec
PM
1169 struct css_set *cg = tsk->cgroups;
1170 struct css_set *newcg;
bd89aabc 1171 struct cgroupfs_root *root = cgrp->root;
bbcb81d0
PM
1172 int subsys_id;
1173
bd89aabc 1174 get_first_subsys(cgrp, NULL, &subsys_id);
bbcb81d0
PM
1175
1176 /* Nothing to do if the task is already in that cgroup */
bd89aabc
PM
1177 oldcgrp = task_cgroup(tsk, subsys_id);
1178 if (cgrp == oldcgrp)
bbcb81d0
PM
1179 return 0;
1180
1181 for_each_subsys(root, ss) {
1182 if (ss->can_attach) {
bd89aabc 1183 retval = ss->can_attach(ss, cgrp, tsk);
bbcb81d0
PM
1184 if (retval) {
1185 return retval;
1186 }
1187 }
1188 }
1189
817929ec
PM
1190 /*
1191 * Locate or allocate a new css_set for this task,
1192 * based on its final set of cgroups
1193 */
bd89aabc 1194 newcg = find_css_set(cg, cgrp);
817929ec
PM
1195 if (!newcg) {
1196 return -ENOMEM;
1197 }
1198
bbcb81d0
PM
1199 task_lock(tsk);
1200 if (tsk->flags & PF_EXITING) {
1201 task_unlock(tsk);
817929ec 1202 put_css_set(newcg);
bbcb81d0
PM
1203 return -ESRCH;
1204 }
817929ec 1205 rcu_assign_pointer(tsk->cgroups, newcg);
bbcb81d0
PM
1206 task_unlock(tsk);
1207
817929ec
PM
1208 /* Update the css_set linked lists if we're using them */
1209 write_lock(&css_set_lock);
1210 if (!list_empty(&tsk->cg_list)) {
1211 list_del(&tsk->cg_list);
1212 list_add(&tsk->cg_list, &newcg->tasks);
1213 }
1214 write_unlock(&css_set_lock);
1215
bbcb81d0
PM
1216 for_each_subsys(root, ss) {
1217 if (ss->attach) {
bd89aabc 1218 ss->attach(ss, cgrp, oldcgrp, tsk);
bbcb81d0
PM
1219 }
1220 }
bd89aabc 1221 set_bit(CGRP_RELEASABLE, &oldcgrp->flags);
bbcb81d0 1222 synchronize_rcu();
817929ec 1223 put_css_set(cg);
bbcb81d0
PM
1224 return 0;
1225}
1226
1227/*
bd89aabc 1228 * Attach task with pid 'pid' to cgroup 'cgrp'. Call with
bbcb81d0
PM
1229 * cgroup_mutex, may take task_lock of task
1230 */
bd89aabc 1231static int attach_task_by_pid(struct cgroup *cgrp, char *pidbuf)
bbcb81d0
PM
1232{
1233 pid_t pid;
1234 struct task_struct *tsk;
1235 int ret;
1236
1237 if (sscanf(pidbuf, "%d", &pid) != 1)
1238 return -EIO;
1239
1240 if (pid) {
1241 rcu_read_lock();
1242 tsk = find_task_by_pid(pid);
1243 if (!tsk || tsk->flags & PF_EXITING) {
1244 rcu_read_unlock();
1245 return -ESRCH;
1246 }
1247 get_task_struct(tsk);
1248 rcu_read_unlock();
1249
1250 if ((current->euid) && (current->euid != tsk->uid)
1251 && (current->euid != tsk->suid)) {
1252 put_task_struct(tsk);
1253 return -EACCES;
1254 }
1255 } else {
1256 tsk = current;
1257 get_task_struct(tsk);
1258 }
1259
bd89aabc 1260 ret = attach_task(cgrp, tsk);
bbcb81d0
PM
1261 put_task_struct(tsk);
1262 return ret;
1263}
1264
ddbcc7e8
PM
1265/* The various types of files and directories in a cgroup file system */
1266
1267enum cgroup_filetype {
1268 FILE_ROOT,
1269 FILE_DIR,
1270 FILE_TASKLIST,
81a6a5cd
PM
1271 FILE_NOTIFY_ON_RELEASE,
1272 FILE_RELEASABLE,
1273 FILE_RELEASE_AGENT,
ddbcc7e8
PM
1274};
1275
bd89aabc 1276static ssize_t cgroup_write_uint(struct cgroup *cgrp, struct cftype *cft,
355e0c48
PM
1277 struct file *file,
1278 const char __user *userbuf,
1279 size_t nbytes, loff_t *unused_ppos)
1280{
1281 char buffer[64];
1282 int retval = 0;
1283 u64 val;
1284 char *end;
1285
1286 if (!nbytes)
1287 return -EINVAL;
1288 if (nbytes >= sizeof(buffer))
1289 return -E2BIG;
1290 if (copy_from_user(buffer, userbuf, nbytes))
1291 return -EFAULT;
1292
1293 buffer[nbytes] = 0; /* nul-terminate */
1294
1295 /* strip newline if necessary */
1296 if (nbytes && (buffer[nbytes-1] == '\n'))
1297 buffer[nbytes-1] = 0;
1298 val = simple_strtoull(buffer, &end, 0);
1299 if (*end)
1300 return -EINVAL;
1301
1302 /* Pass to subsystem */
bd89aabc 1303 retval = cft->write_uint(cgrp, cft, val);
355e0c48
PM
1304 if (!retval)
1305 retval = nbytes;
1306 return retval;
1307}
1308
bd89aabc 1309static ssize_t cgroup_common_file_write(struct cgroup *cgrp,
bbcb81d0
PM
1310 struct cftype *cft,
1311 struct file *file,
1312 const char __user *userbuf,
1313 size_t nbytes, loff_t *unused_ppos)
1314{
1315 enum cgroup_filetype type = cft->private;
1316 char *buffer;
1317 int retval = 0;
1318
1319 if (nbytes >= PATH_MAX)
1320 return -E2BIG;
1321
1322 /* +1 for nul-terminator */
1323 buffer = kmalloc(nbytes + 1, GFP_KERNEL);
1324 if (buffer == NULL)
1325 return -ENOMEM;
1326
1327 if (copy_from_user(buffer, userbuf, nbytes)) {
1328 retval = -EFAULT;
1329 goto out1;
1330 }
1331 buffer[nbytes] = 0; /* nul-terminate */
1332
1333 mutex_lock(&cgroup_mutex);
1334
bd89aabc 1335 if (cgroup_is_removed(cgrp)) {
bbcb81d0
PM
1336 retval = -ENODEV;
1337 goto out2;
1338 }
1339
1340 switch (type) {
1341 case FILE_TASKLIST:
bd89aabc 1342 retval = attach_task_by_pid(cgrp, buffer);
bbcb81d0 1343 break;
81a6a5cd 1344 case FILE_NOTIFY_ON_RELEASE:
bd89aabc 1345 clear_bit(CGRP_RELEASABLE, &cgrp->flags);
81a6a5cd 1346 if (simple_strtoul(buffer, NULL, 10) != 0)
bd89aabc 1347 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
81a6a5cd 1348 else
bd89aabc 1349 clear_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
81a6a5cd
PM
1350 break;
1351 case FILE_RELEASE_AGENT:
1352 {
bd89aabc 1353 struct cgroupfs_root *root = cgrp->root;
81a6a5cd
PM
1354 /* Strip trailing newline */
1355 if (nbytes && (buffer[nbytes-1] == '\n')) {
1356 buffer[nbytes-1] = 0;
1357 }
3cdeed29
AB
1358
1359 /* We never write anything other than '\0'
1360 * into the last char of release_agent_path,
1361 * so it always remains a NUL-terminated
1362 * string */
1363 strncpy(root->release_agent_path, buffer, nbytes);
1364 root->release_agent_path[nbytes] = 0;
1365
81a6a5cd
PM
1366 break;
1367 }
bbcb81d0
PM
1368 default:
1369 retval = -EINVAL;
1370 goto out2;
1371 }
1372
1373 if (retval == 0)
1374 retval = nbytes;
1375out2:
1376 mutex_unlock(&cgroup_mutex);
1377out1:
1378 kfree(buffer);
1379 return retval;
1380}
1381
ddbcc7e8
PM
1382static ssize_t cgroup_file_write(struct file *file, const char __user *buf,
1383 size_t nbytes, loff_t *ppos)
1384{
1385 struct cftype *cft = __d_cft(file->f_dentry);
bd89aabc 1386 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
ddbcc7e8
PM
1387
1388 if (!cft)
1389 return -ENODEV;
355e0c48 1390 if (cft->write)
bd89aabc 1391 return cft->write(cgrp, cft, file, buf, nbytes, ppos);
355e0c48 1392 if (cft->write_uint)
bd89aabc 1393 return cgroup_write_uint(cgrp, cft, file, buf, nbytes, ppos);
355e0c48 1394 return -EINVAL;
ddbcc7e8
PM
1395}
1396
bd89aabc 1397static ssize_t cgroup_read_uint(struct cgroup *cgrp, struct cftype *cft,
ddbcc7e8
PM
1398 struct file *file,
1399 char __user *buf, size_t nbytes,
1400 loff_t *ppos)
1401{
1402 char tmp[64];
bd89aabc 1403 u64 val = cft->read_uint(cgrp, cft);
ddbcc7e8
PM
1404 int len = sprintf(tmp, "%llu\n", (unsigned long long) val);
1405
1406 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
1407}
1408
bd89aabc 1409static ssize_t cgroup_common_file_read(struct cgroup *cgrp,
81a6a5cd
PM
1410 struct cftype *cft,
1411 struct file *file,
1412 char __user *buf,
1413 size_t nbytes, loff_t *ppos)
1414{
1415 enum cgroup_filetype type = cft->private;
1416 char *page;
1417 ssize_t retval = 0;
1418 char *s;
1419
1420 if (!(page = (char *)__get_free_page(GFP_KERNEL)))
1421 return -ENOMEM;
1422
1423 s = page;
1424
1425 switch (type) {
1426 case FILE_RELEASE_AGENT:
1427 {
1428 struct cgroupfs_root *root;
1429 size_t n;
1430 mutex_lock(&cgroup_mutex);
bd89aabc 1431 root = cgrp->root;
81a6a5cd
PM
1432 n = strnlen(root->release_agent_path,
1433 sizeof(root->release_agent_path));
1434 n = min(n, (size_t) PAGE_SIZE);
1435 strncpy(s, root->release_agent_path, n);
1436 mutex_unlock(&cgroup_mutex);
1437 s += n;
1438 break;
1439 }
1440 default:
1441 retval = -EINVAL;
1442 goto out;
1443 }
1444 *s++ = '\n';
1445
1446 retval = simple_read_from_buffer(buf, nbytes, ppos, page, s - page);
1447out:
1448 free_page((unsigned long)page);
1449 return retval;
1450}
1451
ddbcc7e8
PM
1452static ssize_t cgroup_file_read(struct file *file, char __user *buf,
1453 size_t nbytes, loff_t *ppos)
1454{
1455 struct cftype *cft = __d_cft(file->f_dentry);
bd89aabc 1456 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
ddbcc7e8
PM
1457
1458 if (!cft)
1459 return -ENODEV;
1460
1461 if (cft->read)
bd89aabc 1462 return cft->read(cgrp, cft, file, buf, nbytes, ppos);
ddbcc7e8 1463 if (cft->read_uint)
bd89aabc 1464 return cgroup_read_uint(cgrp, cft, file, buf, nbytes, ppos);
ddbcc7e8
PM
1465 return -EINVAL;
1466}
1467
1468static int cgroup_file_open(struct inode *inode, struct file *file)
1469{
1470 int err;
1471 struct cftype *cft;
1472
1473 err = generic_file_open(inode, file);
1474 if (err)
1475 return err;
1476
1477 cft = __d_cft(file->f_dentry);
1478 if (!cft)
1479 return -ENODEV;
1480 if (cft->open)
1481 err = cft->open(inode, file);
1482 else
1483 err = 0;
1484
1485 return err;
1486}
1487
1488static int cgroup_file_release(struct inode *inode, struct file *file)
1489{
1490 struct cftype *cft = __d_cft(file->f_dentry);
1491 if (cft->release)
1492 return cft->release(inode, file);
1493 return 0;
1494}
1495
1496/*
1497 * cgroup_rename - Only allow simple rename of directories in place.
1498 */
1499static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry,
1500 struct inode *new_dir, struct dentry *new_dentry)
1501{
1502 if (!S_ISDIR(old_dentry->d_inode->i_mode))
1503 return -ENOTDIR;
1504 if (new_dentry->d_inode)
1505 return -EEXIST;
1506 if (old_dir != new_dir)
1507 return -EIO;
1508 return simple_rename(old_dir, old_dentry, new_dir, new_dentry);
1509}
1510
1511static struct file_operations cgroup_file_operations = {
1512 .read = cgroup_file_read,
1513 .write = cgroup_file_write,
1514 .llseek = generic_file_llseek,
1515 .open = cgroup_file_open,
1516 .release = cgroup_file_release,
1517};
1518
1519static struct inode_operations cgroup_dir_inode_operations = {
1520 .lookup = simple_lookup,
1521 .mkdir = cgroup_mkdir,
1522 .rmdir = cgroup_rmdir,
1523 .rename = cgroup_rename,
1524};
1525
1526static int cgroup_create_file(struct dentry *dentry, int mode,
1527 struct super_block *sb)
1528{
1529 static struct dentry_operations cgroup_dops = {
1530 .d_iput = cgroup_diput,
1531 };
1532
1533 struct inode *inode;
1534
1535 if (!dentry)
1536 return -ENOENT;
1537 if (dentry->d_inode)
1538 return -EEXIST;
1539
1540 inode = cgroup_new_inode(mode, sb);
1541 if (!inode)
1542 return -ENOMEM;
1543
1544 if (S_ISDIR(mode)) {
1545 inode->i_op = &cgroup_dir_inode_operations;
1546 inode->i_fop = &simple_dir_operations;
1547
1548 /* start off with i_nlink == 2 (for "." entry) */
1549 inc_nlink(inode);
1550
1551 /* start with the directory inode held, so that we can
1552 * populate it without racing with another mkdir */
817929ec 1553 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
ddbcc7e8
PM
1554 } else if (S_ISREG(mode)) {
1555 inode->i_size = 0;
1556 inode->i_fop = &cgroup_file_operations;
1557 }
1558 dentry->d_op = &cgroup_dops;
1559 d_instantiate(dentry, inode);
1560 dget(dentry); /* Extra count - pin the dentry in core */
1561 return 0;
1562}
1563
1564/*
1565 * cgroup_create_dir - create a directory for an object.
bd89aabc 1566 * cgrp: the cgroup we create the directory for.
ddbcc7e8
PM
1567 * It must have a valid ->parent field
1568 * And we are going to fill its ->dentry field.
bd89aabc 1569 * dentry: dentry of the new cgroup
ddbcc7e8
PM
1570 * mode: mode to set on new directory.
1571 */
bd89aabc 1572static int cgroup_create_dir(struct cgroup *cgrp, struct dentry *dentry,
ddbcc7e8
PM
1573 int mode)
1574{
1575 struct dentry *parent;
1576 int error = 0;
1577
bd89aabc
PM
1578 parent = cgrp->parent->dentry;
1579 error = cgroup_create_file(dentry, S_IFDIR | mode, cgrp->root->sb);
ddbcc7e8 1580 if (!error) {
bd89aabc 1581 dentry->d_fsdata = cgrp;
ddbcc7e8 1582 inc_nlink(parent->d_inode);
bd89aabc 1583 cgrp->dentry = dentry;
ddbcc7e8
PM
1584 dget(dentry);
1585 }
1586 dput(dentry);
1587
1588 return error;
1589}
1590
bd89aabc 1591int cgroup_add_file(struct cgroup *cgrp,
ddbcc7e8
PM
1592 struct cgroup_subsys *subsys,
1593 const struct cftype *cft)
1594{
bd89aabc 1595 struct dentry *dir = cgrp->dentry;
ddbcc7e8
PM
1596 struct dentry *dentry;
1597 int error;
1598
1599 char name[MAX_CGROUP_TYPE_NAMELEN + MAX_CFTYPE_NAME + 2] = { 0 };
bd89aabc 1600 if (subsys && !test_bit(ROOT_NOPREFIX, &cgrp->root->flags)) {
ddbcc7e8
PM
1601 strcpy(name, subsys->name);
1602 strcat(name, ".");
1603 }
1604 strcat(name, cft->name);
1605 BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex));
1606 dentry = lookup_one_len(name, dir, strlen(name));
1607 if (!IS_ERR(dentry)) {
1608 error = cgroup_create_file(dentry, 0644 | S_IFREG,
bd89aabc 1609 cgrp->root->sb);
ddbcc7e8
PM
1610 if (!error)
1611 dentry->d_fsdata = (void *)cft;
1612 dput(dentry);
1613 } else
1614 error = PTR_ERR(dentry);
1615 return error;
1616}
1617
bd89aabc 1618int cgroup_add_files(struct cgroup *cgrp,
ddbcc7e8
PM
1619 struct cgroup_subsys *subsys,
1620 const struct cftype cft[],
1621 int count)
1622{
1623 int i, err;
1624 for (i = 0; i < count; i++) {
bd89aabc 1625 err = cgroup_add_file(cgrp, subsys, &cft[i]);
ddbcc7e8
PM
1626 if (err)
1627 return err;
1628 }
1629 return 0;
1630}
1631
817929ec
PM
1632/* Count the number of tasks in a cgroup. */
1633
bd89aabc 1634int cgroup_task_count(const struct cgroup *cgrp)
bbcb81d0
PM
1635{
1636 int count = 0;
817929ec
PM
1637 struct list_head *l;
1638
1639 read_lock(&css_set_lock);
bd89aabc
PM
1640 l = cgrp->css_sets.next;
1641 while (l != &cgrp->css_sets) {
817929ec 1642 struct cg_cgroup_link *link =
bd89aabc 1643 list_entry(l, struct cg_cgroup_link, cgrp_link_list);
817929ec
PM
1644 count += atomic_read(&link->cg->ref.refcount);
1645 l = l->next;
1646 }
1647 read_unlock(&css_set_lock);
bbcb81d0
PM
1648 return count;
1649}
1650
817929ec
PM
1651/*
1652 * Advance a list_head iterator. The iterator should be positioned at
1653 * the start of a css_set
1654 */
bd89aabc 1655static void cgroup_advance_iter(struct cgroup *cgrp,
817929ec
PM
1656 struct cgroup_iter *it)
1657{
1658 struct list_head *l = it->cg_link;
1659 struct cg_cgroup_link *link;
1660 struct css_set *cg;
1661
1662 /* Advance to the next non-empty css_set */
1663 do {
1664 l = l->next;
bd89aabc 1665 if (l == &cgrp->css_sets) {
817929ec
PM
1666 it->cg_link = NULL;
1667 return;
1668 }
bd89aabc 1669 link = list_entry(l, struct cg_cgroup_link, cgrp_link_list);
817929ec
PM
1670 cg = link->cg;
1671 } while (list_empty(&cg->tasks));
1672 it->cg_link = l;
1673 it->task = cg->tasks.next;
1674}
1675
bd89aabc 1676void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it)
817929ec
PM
1677{
1678 /*
1679 * The first time anyone tries to iterate across a cgroup,
1680 * we need to enable the list linking each css_set to its
1681 * tasks, and fix up all existing tasks.
1682 */
1683 if (!use_task_css_set_links) {
1684 struct task_struct *p, *g;
1685 write_lock(&css_set_lock);
1686 use_task_css_set_links = 1;
1687 do_each_thread(g, p) {
1688 task_lock(p);
1689 if (list_empty(&p->cg_list))
1690 list_add(&p->cg_list, &p->cgroups->tasks);
1691 task_unlock(p);
1692 } while_each_thread(g, p);
1693 write_unlock(&css_set_lock);
1694 }
1695 read_lock(&css_set_lock);
bd89aabc
PM
1696 it->cg_link = &cgrp->css_sets;
1697 cgroup_advance_iter(cgrp, it);
817929ec
PM
1698}
1699
bd89aabc 1700struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
817929ec
PM
1701 struct cgroup_iter *it)
1702{
1703 struct task_struct *res;
1704 struct list_head *l = it->task;
1705
1706 /* If the iterator cg is NULL, we have no tasks */
1707 if (!it->cg_link)
1708 return NULL;
1709 res = list_entry(l, struct task_struct, cg_list);
1710 /* Advance iterator to find next entry */
1711 l = l->next;
1712 if (l == &res->cgroups->tasks) {
1713 /* We reached the end of this task list - move on to
1714 * the next cg_cgroup_link */
bd89aabc 1715 cgroup_advance_iter(cgrp, it);
817929ec
PM
1716 } else {
1717 it->task = l;
1718 }
1719 return res;
1720}
1721
bd89aabc 1722void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it)
817929ec
PM
1723{
1724 read_unlock(&css_set_lock);
1725}
1726
bbcb81d0
PM
1727/*
1728 * Stuff for reading the 'tasks' file.
1729 *
1730 * Reading this file can return large amounts of data if a cgroup has
1731 * *lots* of attached tasks. So it may need several calls to read(),
1732 * but we cannot guarantee that the information we produce is correct
1733 * unless we produce it entirely atomically.
1734 *
1735 * Upon tasks file open(), a struct ctr_struct is allocated, that
1736 * will have a pointer to an array (also allocated here). The struct
1737 * ctr_struct * is stored in file->private_data. Its resources will
1738 * be freed by release() when the file is closed. The array is used
1739 * to sprintf the PIDs and then used by read().
1740 */
1741struct ctr_struct {
1742 char *buf;
1743 int bufsz;
1744};
1745
1746/*
1747 * Load into 'pidarray' up to 'npids' of the tasks using cgroup
bd89aabc 1748 * 'cgrp'. Return actual number of pids loaded. No need to
bbcb81d0
PM
1749 * task_lock(p) when reading out p->cgroup, since we're in an RCU
1750 * read section, so the css_set can't go away, and is
1751 * immutable after creation.
1752 */
bd89aabc 1753static int pid_array_load(pid_t *pidarray, int npids, struct cgroup *cgrp)
bbcb81d0
PM
1754{
1755 int n = 0;
817929ec
PM
1756 struct cgroup_iter it;
1757 struct task_struct *tsk;
bd89aabc
PM
1758 cgroup_iter_start(cgrp, &it);
1759 while ((tsk = cgroup_iter_next(cgrp, &it))) {
817929ec
PM
1760 if (unlikely(n == npids))
1761 break;
69cccb88 1762 pidarray[n++] = task_pid_nr(tsk);
817929ec 1763 }
bd89aabc 1764 cgroup_iter_end(cgrp, &it);
bbcb81d0
PM
1765 return n;
1766}
1767
846c7bb0
BS
1768/**
1769 * Build and fill cgroupstats so that taskstats can export it to user
1770 * space.
1771 *
1772 * @stats: cgroupstats to fill information into
1773 * @dentry: A dentry entry belonging to the cgroup for which stats have
1774 * been requested.
1775 */
1776int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
1777{
1778 int ret = -EINVAL;
bd89aabc 1779 struct cgroup *cgrp;
846c7bb0
BS
1780 struct cgroup_iter it;
1781 struct task_struct *tsk;
1782 /*
1783 * Validate dentry by checking the superblock operations
1784 */
1785 if (dentry->d_sb->s_op != &cgroup_ops)
1786 goto err;
1787
1788 ret = 0;
bd89aabc 1789 cgrp = dentry->d_fsdata;
846c7bb0
BS
1790 rcu_read_lock();
1791
bd89aabc
PM
1792 cgroup_iter_start(cgrp, &it);
1793 while ((tsk = cgroup_iter_next(cgrp, &it))) {
846c7bb0
BS
1794 switch (tsk->state) {
1795 case TASK_RUNNING:
1796 stats->nr_running++;
1797 break;
1798 case TASK_INTERRUPTIBLE:
1799 stats->nr_sleeping++;
1800 break;
1801 case TASK_UNINTERRUPTIBLE:
1802 stats->nr_uninterruptible++;
1803 break;
1804 case TASK_STOPPED:
1805 stats->nr_stopped++;
1806 break;
1807 default:
1808 if (delayacct_is_task_waiting_on_io(tsk))
1809 stats->nr_io_wait++;
1810 break;
1811 }
1812 }
bd89aabc 1813 cgroup_iter_end(cgrp, &it);
846c7bb0
BS
1814
1815 rcu_read_unlock();
1816err:
1817 return ret;
1818}
1819
bbcb81d0
PM
1820static int cmppid(const void *a, const void *b)
1821{
1822 return *(pid_t *)a - *(pid_t *)b;
1823}
1824
1825/*
1826 * Convert array 'a' of 'npids' pid_t's to a string of newline separated
1827 * decimal pids in 'buf'. Don't write more than 'sz' chars, but return
1828 * count 'cnt' of how many chars would be written if buf were large enough.
1829 */
1830static int pid_array_to_buf(char *buf, int sz, pid_t *a, int npids)
1831{
1832 int cnt = 0;
1833 int i;
1834
1835 for (i = 0; i < npids; i++)
1836 cnt += snprintf(buf + cnt, max(sz - cnt, 0), "%d\n", a[i]);
1837 return cnt;
1838}
1839
1840/*
1841 * Handle an open on 'tasks' file. Prepare a buffer listing the
1842 * process id's of tasks currently attached to the cgroup being opened.
1843 *
1844 * Does not require any specific cgroup mutexes, and does not take any.
1845 */
1846static int cgroup_tasks_open(struct inode *unused, struct file *file)
1847{
bd89aabc 1848 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
bbcb81d0
PM
1849 struct ctr_struct *ctr;
1850 pid_t *pidarray;
1851 int npids;
1852 char c;
1853
1854 if (!(file->f_mode & FMODE_READ))
1855 return 0;
1856
1857 ctr = kmalloc(sizeof(*ctr), GFP_KERNEL);
1858 if (!ctr)
1859 goto err0;
1860
1861 /*
1862 * If cgroup gets more users after we read count, we won't have
1863 * enough space - tough. This race is indistinguishable to the
1864 * caller from the case that the additional cgroup users didn't
1865 * show up until sometime later on.
1866 */
bd89aabc 1867 npids = cgroup_task_count(cgrp);
bbcb81d0
PM
1868 if (npids) {
1869 pidarray = kmalloc(npids * sizeof(pid_t), GFP_KERNEL);
1870 if (!pidarray)
1871 goto err1;
1872
bd89aabc 1873 npids = pid_array_load(pidarray, npids, cgrp);
bbcb81d0
PM
1874 sort(pidarray, npids, sizeof(pid_t), cmppid, NULL);
1875
1876 /* Call pid_array_to_buf() twice, first just to get bufsz */
1877 ctr->bufsz = pid_array_to_buf(&c, sizeof(c), pidarray, npids) + 1;
1878 ctr->buf = kmalloc(ctr->bufsz, GFP_KERNEL);
1879 if (!ctr->buf)
1880 goto err2;
1881 ctr->bufsz = pid_array_to_buf(ctr->buf, ctr->bufsz, pidarray, npids);
1882
1883 kfree(pidarray);
1884 } else {
1885 ctr->buf = 0;
1886 ctr->bufsz = 0;
1887 }
1888 file->private_data = ctr;
1889 return 0;
1890
1891err2:
1892 kfree(pidarray);
1893err1:
1894 kfree(ctr);
1895err0:
1896 return -ENOMEM;
1897}
1898
bd89aabc 1899static ssize_t cgroup_tasks_read(struct cgroup *cgrp,
bbcb81d0
PM
1900 struct cftype *cft,
1901 struct file *file, char __user *buf,
1902 size_t nbytes, loff_t *ppos)
1903{
1904 struct ctr_struct *ctr = file->private_data;
1905
1906 return simple_read_from_buffer(buf, nbytes, ppos, ctr->buf, ctr->bufsz);
1907}
1908
1909static int cgroup_tasks_release(struct inode *unused_inode,
1910 struct file *file)
1911{
1912 struct ctr_struct *ctr;
1913
1914 if (file->f_mode & FMODE_READ) {
1915 ctr = file->private_data;
1916 kfree(ctr->buf);
1917 kfree(ctr);
1918 }
1919 return 0;
1920}
1921
bd89aabc 1922static u64 cgroup_read_notify_on_release(struct cgroup *cgrp,
81a6a5cd
PM
1923 struct cftype *cft)
1924{
bd89aabc 1925 return notify_on_release(cgrp);
81a6a5cd
PM
1926}
1927
bd89aabc 1928static u64 cgroup_read_releasable(struct cgroup *cgrp, struct cftype *cft)
81a6a5cd 1929{
bd89aabc 1930 return test_bit(CGRP_RELEASABLE, &cgrp->flags);
81a6a5cd
PM
1931}
1932
bbcb81d0
PM
1933/*
1934 * for the common functions, 'private' gives the type of file
1935 */
81a6a5cd
PM
1936static struct cftype files[] = {
1937 {
1938 .name = "tasks",
1939 .open = cgroup_tasks_open,
1940 .read = cgroup_tasks_read,
1941 .write = cgroup_common_file_write,
1942 .release = cgroup_tasks_release,
1943 .private = FILE_TASKLIST,
1944 },
1945
1946 {
1947 .name = "notify_on_release",
1948 .read_uint = cgroup_read_notify_on_release,
1949 .write = cgroup_common_file_write,
1950 .private = FILE_NOTIFY_ON_RELEASE,
1951 },
1952
1953 {
1954 .name = "releasable",
1955 .read_uint = cgroup_read_releasable,
1956 .private = FILE_RELEASABLE,
1957 }
1958};
1959
1960static struct cftype cft_release_agent = {
1961 .name = "release_agent",
1962 .read = cgroup_common_file_read,
bbcb81d0 1963 .write = cgroup_common_file_write,
81a6a5cd 1964 .private = FILE_RELEASE_AGENT,
bbcb81d0
PM
1965};
1966
bd89aabc 1967static int cgroup_populate_dir(struct cgroup *cgrp)
ddbcc7e8
PM
1968{
1969 int err;
1970 struct cgroup_subsys *ss;
1971
1972 /* First clear out any existing files */
bd89aabc 1973 cgroup_clear_directory(cgrp->dentry);
ddbcc7e8 1974
bd89aabc 1975 err = cgroup_add_files(cgrp, NULL, files, ARRAY_SIZE(files));
bbcb81d0
PM
1976 if (err < 0)
1977 return err;
1978
bd89aabc
PM
1979 if (cgrp == cgrp->top_cgroup) {
1980 if ((err = cgroup_add_file(cgrp, NULL, &cft_release_agent)) < 0)
81a6a5cd
PM
1981 return err;
1982 }
1983
bd89aabc
PM
1984 for_each_subsys(cgrp->root, ss) {
1985 if (ss->populate && (err = ss->populate(ss, cgrp)) < 0)
ddbcc7e8
PM
1986 return err;
1987 }
1988
1989 return 0;
1990}
1991
1992static void init_cgroup_css(struct cgroup_subsys_state *css,
1993 struct cgroup_subsys *ss,
bd89aabc 1994 struct cgroup *cgrp)
ddbcc7e8 1995{
bd89aabc 1996 css->cgroup = cgrp;
ddbcc7e8
PM
1997 atomic_set(&css->refcnt, 0);
1998 css->flags = 0;
bd89aabc 1999 if (cgrp == dummytop)
ddbcc7e8 2000 set_bit(CSS_ROOT, &css->flags);
bd89aabc
PM
2001 BUG_ON(cgrp->subsys[ss->subsys_id]);
2002 cgrp->subsys[ss->subsys_id] = css;
ddbcc7e8
PM
2003}
2004
2005/*
2006 * cgroup_create - create a cgroup
2007 * parent: cgroup that will be parent of the new cgroup.
2008 * name: name of the new cgroup. Will be strcpy'ed.
2009 * mode: mode to set on new inode
2010 *
2011 * Must be called with the mutex on the parent inode held
2012 */
2013
2014static long cgroup_create(struct cgroup *parent, struct dentry *dentry,
2015 int mode)
2016{
bd89aabc 2017 struct cgroup *cgrp;
ddbcc7e8
PM
2018 struct cgroupfs_root *root = parent->root;
2019 int err = 0;
2020 struct cgroup_subsys *ss;
2021 struct super_block *sb = root->sb;
2022
bd89aabc
PM
2023 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
2024 if (!cgrp)
ddbcc7e8
PM
2025 return -ENOMEM;
2026
2027 /* Grab a reference on the superblock so the hierarchy doesn't
2028 * get deleted on unmount if there are child cgroups. This
2029 * can be done outside cgroup_mutex, since the sb can't
2030 * disappear while someone has an open control file on the
2031 * fs */
2032 atomic_inc(&sb->s_active);
2033
2034 mutex_lock(&cgroup_mutex);
2035
bd89aabc
PM
2036 cgrp->flags = 0;
2037 INIT_LIST_HEAD(&cgrp->sibling);
2038 INIT_LIST_HEAD(&cgrp->children);
2039 INIT_LIST_HEAD(&cgrp->css_sets);
2040 INIT_LIST_HEAD(&cgrp->release_list);
ddbcc7e8 2041
bd89aabc
PM
2042 cgrp->parent = parent;
2043 cgrp->root = parent->root;
2044 cgrp->top_cgroup = parent->top_cgroup;
ddbcc7e8
PM
2045
2046 for_each_subsys(root, ss) {
bd89aabc 2047 struct cgroup_subsys_state *css = ss->create(ss, cgrp);
ddbcc7e8
PM
2048 if (IS_ERR(css)) {
2049 err = PTR_ERR(css);
2050 goto err_destroy;
2051 }
bd89aabc 2052 init_cgroup_css(css, ss, cgrp);
ddbcc7e8
PM
2053 }
2054
bd89aabc 2055 list_add(&cgrp->sibling, &cgrp->parent->children);
ddbcc7e8
PM
2056 root->number_of_cgroups++;
2057
bd89aabc 2058 err = cgroup_create_dir(cgrp, dentry, mode);
ddbcc7e8
PM
2059 if (err < 0)
2060 goto err_remove;
2061
2062 /* The cgroup directory was pre-locked for us */
bd89aabc 2063 BUG_ON(!mutex_is_locked(&cgrp->dentry->d_inode->i_mutex));
ddbcc7e8 2064
bd89aabc 2065 err = cgroup_populate_dir(cgrp);
ddbcc7e8
PM
2066 /* If err < 0, we have a half-filled directory - oh well ;) */
2067
2068 mutex_unlock(&cgroup_mutex);
bd89aabc 2069 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
ddbcc7e8
PM
2070
2071 return 0;
2072
2073 err_remove:
2074
bd89aabc 2075 list_del(&cgrp->sibling);
ddbcc7e8
PM
2076 root->number_of_cgroups--;
2077
2078 err_destroy:
2079
2080 for_each_subsys(root, ss) {
bd89aabc
PM
2081 if (cgrp->subsys[ss->subsys_id])
2082 ss->destroy(ss, cgrp);
ddbcc7e8
PM
2083 }
2084
2085 mutex_unlock(&cgroup_mutex);
2086
2087 /* Release the reference count that we took on the superblock */
2088 deactivate_super(sb);
2089
bd89aabc 2090 kfree(cgrp);
ddbcc7e8
PM
2091 return err;
2092}
2093
2094static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2095{
2096 struct cgroup *c_parent = dentry->d_parent->d_fsdata;
2097
2098 /* the vfs holds inode->i_mutex already */
2099 return cgroup_create(c_parent, dentry, mode | S_IFDIR);
2100}
2101
bd89aabc 2102static inline int cgroup_has_css_refs(struct cgroup *cgrp)
81a6a5cd
PM
2103{
2104 /* Check the reference count on each subsystem. Since we
2105 * already established that there are no tasks in the
2106 * cgroup, if the css refcount is also 0, then there should
2107 * be no outstanding references, so the subsystem is safe to
2108 * destroy. We scan across all subsystems rather than using
2109 * the per-hierarchy linked list of mounted subsystems since
2110 * we can be called via check_for_release() with no
2111 * synchronization other than RCU, and the subsystem linked
2112 * list isn't RCU-safe */
2113 int i;
2114 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2115 struct cgroup_subsys *ss = subsys[i];
2116 struct cgroup_subsys_state *css;
2117 /* Skip subsystems not in this hierarchy */
bd89aabc 2118 if (ss->root != cgrp->root)
81a6a5cd 2119 continue;
bd89aabc 2120 css = cgrp->subsys[ss->subsys_id];
81a6a5cd
PM
2121 /* When called from check_for_release() it's possible
2122 * that by this point the cgroup has been removed
2123 * and the css deleted. But a false-positive doesn't
2124 * matter, since it can only happen if the cgroup
2125 * has been deleted and hence no longer needs the
2126 * release agent to be called anyway. */
2127 if (css && atomic_read(&css->refcnt)) {
2128 return 1;
2129 }
2130 }
2131 return 0;
2132}
2133
ddbcc7e8
PM
2134static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry)
2135{
bd89aabc 2136 struct cgroup *cgrp = dentry->d_fsdata;
ddbcc7e8
PM
2137 struct dentry *d;
2138 struct cgroup *parent;
2139 struct cgroup_subsys *ss;
2140 struct super_block *sb;
2141 struct cgroupfs_root *root;
ddbcc7e8
PM
2142
2143 /* the vfs holds both inode->i_mutex already */
2144
2145 mutex_lock(&cgroup_mutex);
bd89aabc 2146 if (atomic_read(&cgrp->count) != 0) {
ddbcc7e8
PM
2147 mutex_unlock(&cgroup_mutex);
2148 return -EBUSY;
2149 }
bd89aabc 2150 if (!list_empty(&cgrp->children)) {
ddbcc7e8
PM
2151 mutex_unlock(&cgroup_mutex);
2152 return -EBUSY;
2153 }
2154
bd89aabc
PM
2155 parent = cgrp->parent;
2156 root = cgrp->root;
ddbcc7e8
PM
2157 sb = root->sb;
2158
bd89aabc 2159 if (cgroup_has_css_refs(cgrp)) {
ddbcc7e8
PM
2160 mutex_unlock(&cgroup_mutex);
2161 return -EBUSY;
2162 }
2163
2164 for_each_subsys(root, ss) {
bd89aabc
PM
2165 if (cgrp->subsys[ss->subsys_id])
2166 ss->destroy(ss, cgrp);
ddbcc7e8
PM
2167 }
2168
81a6a5cd 2169 spin_lock(&release_list_lock);
bd89aabc
PM
2170 set_bit(CGRP_REMOVED, &cgrp->flags);
2171 if (!list_empty(&cgrp->release_list))
2172 list_del(&cgrp->release_list);
81a6a5cd 2173 spin_unlock(&release_list_lock);
ddbcc7e8 2174 /* delete my sibling from parent->children */
bd89aabc
PM
2175 list_del(&cgrp->sibling);
2176 spin_lock(&cgrp->dentry->d_lock);
2177 d = dget(cgrp->dentry);
2178 cgrp->dentry = NULL;
ddbcc7e8
PM
2179 spin_unlock(&d->d_lock);
2180
2181 cgroup_d_remove_dir(d);
2182 dput(d);
2183 root->number_of_cgroups--;
2184
bd89aabc 2185 set_bit(CGRP_RELEASABLE, &parent->flags);
81a6a5cd
PM
2186 check_for_release(parent);
2187
ddbcc7e8
PM
2188 mutex_unlock(&cgroup_mutex);
2189 /* Drop the active superblock reference that we took when we
2190 * created the cgroup */
2191 deactivate_super(sb);
2192 return 0;
2193}
2194
2195static void cgroup_init_subsys(struct cgroup_subsys *ss)
2196{
ddbcc7e8 2197 struct cgroup_subsys_state *css;
817929ec 2198 struct list_head *l;
cfe36bde
DC
2199
2200 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
ddbcc7e8
PM
2201
2202 /* Create the top cgroup state for this subsystem */
2203 ss->root = &rootnode;
2204 css = ss->create(ss, dummytop);
2205 /* We don't handle early failures gracefully */
2206 BUG_ON(IS_ERR(css));
2207 init_cgroup_css(css, ss, dummytop);
2208
817929ec
PM
2209 /* Update all cgroup groups to contain a subsys
2210 * pointer to this state - since the subsystem is
2211 * newly registered, all tasks and hence all cgroup
2212 * groups are in the subsystem's top cgroup. */
2213 write_lock(&css_set_lock);
2214 l = &init_css_set.list;
2215 do {
2216 struct css_set *cg =
2217 list_entry(l, struct css_set, list);
2218 cg->subsys[ss->subsys_id] = dummytop->subsys[ss->subsys_id];
2219 l = l->next;
2220 } while (l != &init_css_set.list);
2221 write_unlock(&css_set_lock);
ddbcc7e8
PM
2222
2223 /* If this subsystem requested that it be notified with fork
2224 * events, we should send it one now for every process in the
2225 * system */
81a6a5cd
PM
2226 if (ss->fork) {
2227 struct task_struct *g, *p;
2228
2229 read_lock(&tasklist_lock);
2230 do_each_thread(g, p) {
2231 ss->fork(ss, p);
2232 } while_each_thread(g, p);
2233 read_unlock(&tasklist_lock);
2234 }
ddbcc7e8
PM
2235
2236 need_forkexit_callback |= ss->fork || ss->exit;
2237
2238 ss->active = 1;
2239}
2240
2241/**
2242 * cgroup_init_early - initialize cgroups at system boot, and
2243 * initialize any subsystems that request early init.
2244 */
2245int __init cgroup_init_early(void)
2246{
2247 int i;
817929ec
PM
2248 kref_init(&init_css_set.ref);
2249 kref_get(&init_css_set.ref);
2250 INIT_LIST_HEAD(&init_css_set.list);
2251 INIT_LIST_HEAD(&init_css_set.cg_links);
2252 INIT_LIST_HEAD(&init_css_set.tasks);
2253 css_set_count = 1;
ddbcc7e8
PM
2254 init_cgroup_root(&rootnode);
2255 list_add(&rootnode.root_list, &roots);
817929ec
PM
2256 root_count = 1;
2257 init_task.cgroups = &init_css_set;
2258
2259 init_css_set_link.cg = &init_css_set;
bd89aabc 2260 list_add(&init_css_set_link.cgrp_link_list,
817929ec
PM
2261 &rootnode.top_cgroup.css_sets);
2262 list_add(&init_css_set_link.cg_link_list,
2263 &init_css_set.cg_links);
ddbcc7e8
PM
2264
2265 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2266 struct cgroup_subsys *ss = subsys[i];
2267
2268 BUG_ON(!ss->name);
2269 BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN);
2270 BUG_ON(!ss->create);
2271 BUG_ON(!ss->destroy);
2272 if (ss->subsys_id != i) {
cfe36bde 2273 printk(KERN_ERR "cgroup: Subsys %s id == %d\n",
ddbcc7e8
PM
2274 ss->name, ss->subsys_id);
2275 BUG();
2276 }
2277
2278 if (ss->early_init)
2279 cgroup_init_subsys(ss);
2280 }
2281 return 0;
2282}
2283
2284/**
2285 * cgroup_init - register cgroup filesystem and /proc file, and
2286 * initialize any subsystems that didn't request early init.
2287 */
2288int __init cgroup_init(void)
2289{
2290 int err;
2291 int i;
a424316c
PM
2292 struct proc_dir_entry *entry;
2293
2294 err = bdi_init(&cgroup_backing_dev_info);
2295 if (err)
2296 return err;
ddbcc7e8
PM
2297
2298 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2299 struct cgroup_subsys *ss = subsys[i];
2300 if (!ss->early_init)
2301 cgroup_init_subsys(ss);
2302 }
2303
2304 err = register_filesystem(&cgroup_fs_type);
2305 if (err < 0)
2306 goto out;
2307
a424316c
PM
2308 entry = create_proc_entry("cgroups", 0, NULL);
2309 if (entry)
2310 entry->proc_fops = &proc_cgroupstats_operations;
2311
ddbcc7e8 2312out:
a424316c
PM
2313 if (err)
2314 bdi_destroy(&cgroup_backing_dev_info);
2315
ddbcc7e8
PM
2316 return err;
2317}
b4f48b63 2318
a424316c
PM
2319/*
2320 * proc_cgroup_show()
2321 * - Print task's cgroup paths into seq_file, one line for each hierarchy
2322 * - Used for /proc/<pid>/cgroup.
2323 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
2324 * doesn't really matter if tsk->cgroup changes after we read it,
2325 * and we take cgroup_mutex, keeping attach_task() from changing it
2326 * anyway. No need to check that tsk->cgroup != NULL, thanks to
2327 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
2328 * cgroup to top_cgroup.
2329 */
2330
2331/* TODO: Use a proper seq_file iterator */
2332static int proc_cgroup_show(struct seq_file *m, void *v)
2333{
2334 struct pid *pid;
2335 struct task_struct *tsk;
2336 char *buf;
2337 int retval;
2338 struct cgroupfs_root *root;
2339
2340 retval = -ENOMEM;
2341 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
2342 if (!buf)
2343 goto out;
2344
2345 retval = -ESRCH;
2346 pid = m->private;
2347 tsk = get_pid_task(pid, PIDTYPE_PID);
2348 if (!tsk)
2349 goto out_free;
2350
2351 retval = 0;
2352
2353 mutex_lock(&cgroup_mutex);
2354
2355 for_each_root(root) {
2356 struct cgroup_subsys *ss;
bd89aabc 2357 struct cgroup *cgrp;
a424316c
PM
2358 int subsys_id;
2359 int count = 0;
2360
2361 /* Skip this hierarchy if it has no active subsystems */
2362 if (!root->actual_subsys_bits)
2363 continue;
2364 for_each_subsys(root, ss)
2365 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
2366 seq_putc(m, ':');
2367 get_first_subsys(&root->top_cgroup, NULL, &subsys_id);
bd89aabc
PM
2368 cgrp = task_cgroup(tsk, subsys_id);
2369 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
a424316c
PM
2370 if (retval < 0)
2371 goto out_unlock;
2372 seq_puts(m, buf);
2373 seq_putc(m, '\n');
2374 }
2375
2376out_unlock:
2377 mutex_unlock(&cgroup_mutex);
2378 put_task_struct(tsk);
2379out_free:
2380 kfree(buf);
2381out:
2382 return retval;
2383}
2384
2385static int cgroup_open(struct inode *inode, struct file *file)
2386{
2387 struct pid *pid = PROC_I(inode)->pid;
2388 return single_open(file, proc_cgroup_show, pid);
2389}
2390
2391struct file_operations proc_cgroup_operations = {
2392 .open = cgroup_open,
2393 .read = seq_read,
2394 .llseek = seq_lseek,
2395 .release = single_release,
2396};
2397
2398/* Display information about each subsystem and each hierarchy */
2399static int proc_cgroupstats_show(struct seq_file *m, void *v)
2400{
2401 int i;
a424316c 2402
817929ec 2403 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\n");
a424316c 2404 mutex_lock(&cgroup_mutex);
a424316c
PM
2405 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2406 struct cgroup_subsys *ss = subsys[i];
817929ec
PM
2407 seq_printf(m, "%s\t%lu\t%d\n",
2408 ss->name, ss->root->subsys_bits,
2409 ss->root->number_of_cgroups);
a424316c
PM
2410 }
2411 mutex_unlock(&cgroup_mutex);
2412 return 0;
2413}
2414
2415static int cgroupstats_open(struct inode *inode, struct file *file)
2416{
2417 return single_open(file, proc_cgroupstats_show, 0);
2418}
2419
2420static struct file_operations proc_cgroupstats_operations = {
2421 .open = cgroupstats_open,
2422 .read = seq_read,
2423 .llseek = seq_lseek,
2424 .release = single_release,
2425};
2426
b4f48b63
PM
2427/**
2428 * cgroup_fork - attach newly forked task to its parents cgroup.
2429 * @tsk: pointer to task_struct of forking parent process.
2430 *
2431 * Description: A task inherits its parent's cgroup at fork().
2432 *
2433 * A pointer to the shared css_set was automatically copied in
2434 * fork.c by dup_task_struct(). However, we ignore that copy, since
2435 * it was not made under the protection of RCU or cgroup_mutex, so
2436 * might no longer be a valid cgroup pointer. attach_task() might
817929ec
PM
2437 * have already changed current->cgroups, allowing the previously
2438 * referenced cgroup group to be removed and freed.
b4f48b63
PM
2439 *
2440 * At the point that cgroup_fork() is called, 'current' is the parent
2441 * task, and the passed argument 'child' points to the child task.
2442 */
2443void cgroup_fork(struct task_struct *child)
2444{
817929ec
PM
2445 task_lock(current);
2446 child->cgroups = current->cgroups;
2447 get_css_set(child->cgroups);
2448 task_unlock(current);
2449 INIT_LIST_HEAD(&child->cg_list);
b4f48b63
PM
2450}
2451
2452/**
2453 * cgroup_fork_callbacks - called on a new task very soon before
2454 * adding it to the tasklist. No need to take any locks since no-one
2455 * can be operating on this task
2456 */
2457void cgroup_fork_callbacks(struct task_struct *child)
2458{
2459 if (need_forkexit_callback) {
2460 int i;
2461 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2462 struct cgroup_subsys *ss = subsys[i];
2463 if (ss->fork)
2464 ss->fork(ss, child);
2465 }
2466 }
2467}
2468
817929ec
PM
2469/**
2470 * cgroup_post_fork - called on a new task after adding it to the
2471 * task list. Adds the task to the list running through its css_set
2472 * if necessary. Has to be after the task is visible on the task list
2473 * in case we race with the first call to cgroup_iter_start() - to
2474 * guarantee that the new task ends up on its list. */
2475void cgroup_post_fork(struct task_struct *child)
2476{
2477 if (use_task_css_set_links) {
2478 write_lock(&css_set_lock);
2479 if (list_empty(&child->cg_list))
2480 list_add(&child->cg_list, &child->cgroups->tasks);
2481 write_unlock(&css_set_lock);
2482 }
2483}
b4f48b63
PM
2484/**
2485 * cgroup_exit - detach cgroup from exiting task
2486 * @tsk: pointer to task_struct of exiting process
2487 *
2488 * Description: Detach cgroup from @tsk and release it.
2489 *
2490 * Note that cgroups marked notify_on_release force every task in
2491 * them to take the global cgroup_mutex mutex when exiting.
2492 * This could impact scaling on very large systems. Be reluctant to
2493 * use notify_on_release cgroups where very high task exit scaling
2494 * is required on large systems.
2495 *
2496 * the_top_cgroup_hack:
2497 *
2498 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
2499 *
2500 * We call cgroup_exit() while the task is still competent to
2501 * handle notify_on_release(), then leave the task attached to the
2502 * root cgroup in each hierarchy for the remainder of its exit.
2503 *
2504 * To do this properly, we would increment the reference count on
2505 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
2506 * code we would add a second cgroup function call, to drop that
2507 * reference. This would just create an unnecessary hot spot on
2508 * the top_cgroup reference count, to no avail.
2509 *
2510 * Normally, holding a reference to a cgroup without bumping its
2511 * count is unsafe. The cgroup could go away, or someone could
2512 * attach us to a different cgroup, decrementing the count on
2513 * the first cgroup that we never incremented. But in this case,
2514 * top_cgroup isn't going away, and either task has PF_EXITING set,
2515 * which wards off any attach_task() attempts, or task is a failed
2516 * fork, never visible to attach_task.
2517 *
2518 */
2519void cgroup_exit(struct task_struct *tsk, int run_callbacks)
2520{
2521 int i;
817929ec 2522 struct css_set *cg;
b4f48b63
PM
2523
2524 if (run_callbacks && need_forkexit_callback) {
2525 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2526 struct cgroup_subsys *ss = subsys[i];
2527 if (ss->exit)
2528 ss->exit(ss, tsk);
2529 }
2530 }
817929ec
PM
2531
2532 /*
2533 * Unlink from the css_set task list if necessary.
2534 * Optimistically check cg_list before taking
2535 * css_set_lock
2536 */
2537 if (!list_empty(&tsk->cg_list)) {
2538 write_lock(&css_set_lock);
2539 if (!list_empty(&tsk->cg_list))
2540 list_del(&tsk->cg_list);
2541 write_unlock(&css_set_lock);
2542 }
2543
b4f48b63
PM
2544 /* Reassign the task to the init_css_set. */
2545 task_lock(tsk);
817929ec
PM
2546 cg = tsk->cgroups;
2547 tsk->cgroups = &init_css_set;
b4f48b63 2548 task_unlock(tsk);
817929ec 2549 if (cg)
81a6a5cd 2550 put_css_set_taskexit(cg);
b4f48b63 2551}
697f4161
PM
2552
2553/**
2554 * cgroup_clone - duplicate the current cgroup in the hierarchy
2555 * that the given subsystem is attached to, and move this task into
2556 * the new child
2557 */
2558int cgroup_clone(struct task_struct *tsk, struct cgroup_subsys *subsys)
2559{
2560 struct dentry *dentry;
2561 int ret = 0;
2562 char nodename[MAX_CGROUP_TYPE_NAMELEN];
2563 struct cgroup *parent, *child;
2564 struct inode *inode;
2565 struct css_set *cg;
2566 struct cgroupfs_root *root;
2567 struct cgroup_subsys *ss;
2568
2569 /* We shouldn't be called by an unregistered subsystem */
2570 BUG_ON(!subsys->active);
2571
2572 /* First figure out what hierarchy and cgroup we're dealing
2573 * with, and pin them so we can drop cgroup_mutex */
2574 mutex_lock(&cgroup_mutex);
2575 again:
2576 root = subsys->root;
2577 if (root == &rootnode) {
2578 printk(KERN_INFO
2579 "Not cloning cgroup for unused subsystem %s\n",
2580 subsys->name);
2581 mutex_unlock(&cgroup_mutex);
2582 return 0;
2583 }
817929ec 2584 cg = tsk->cgroups;
697f4161
PM
2585 parent = task_cgroup(tsk, subsys->subsys_id);
2586
2587 snprintf(nodename, MAX_CGROUP_TYPE_NAMELEN, "node_%d", tsk->pid);
2588
2589 /* Pin the hierarchy */
2590 atomic_inc(&parent->root->sb->s_active);
2591
817929ec
PM
2592 /* Keep the cgroup alive */
2593 get_css_set(cg);
697f4161
PM
2594 mutex_unlock(&cgroup_mutex);
2595
2596 /* Now do the VFS work to create a cgroup */
2597 inode = parent->dentry->d_inode;
2598
2599 /* Hold the parent directory mutex across this operation to
2600 * stop anyone else deleting the new cgroup */
2601 mutex_lock(&inode->i_mutex);
2602 dentry = lookup_one_len(nodename, parent->dentry, strlen(nodename));
2603 if (IS_ERR(dentry)) {
2604 printk(KERN_INFO
cfe36bde 2605 "cgroup: Couldn't allocate dentry for %s: %ld\n", nodename,
697f4161
PM
2606 PTR_ERR(dentry));
2607 ret = PTR_ERR(dentry);
2608 goto out_release;
2609 }
2610
2611 /* Create the cgroup directory, which also creates the cgroup */
2612 ret = vfs_mkdir(inode, dentry, S_IFDIR | 0755);
bd89aabc 2613 child = __d_cgrp(dentry);
697f4161
PM
2614 dput(dentry);
2615 if (ret) {
2616 printk(KERN_INFO
2617 "Failed to create cgroup %s: %d\n", nodename,
2618 ret);
2619 goto out_release;
2620 }
2621
2622 if (!child) {
2623 printk(KERN_INFO
2624 "Couldn't find new cgroup %s\n", nodename);
2625 ret = -ENOMEM;
2626 goto out_release;
2627 }
2628
2629 /* The cgroup now exists. Retake cgroup_mutex and check
2630 * that we're still in the same state that we thought we
2631 * were. */
2632 mutex_lock(&cgroup_mutex);
2633 if ((root != subsys->root) ||
2634 (parent != task_cgroup(tsk, subsys->subsys_id))) {
2635 /* Aargh, we raced ... */
2636 mutex_unlock(&inode->i_mutex);
817929ec 2637 put_css_set(cg);
697f4161
PM
2638
2639 deactivate_super(parent->root->sb);
2640 /* The cgroup is still accessible in the VFS, but
2641 * we're not going to try to rmdir() it at this
2642 * point. */
2643 printk(KERN_INFO
2644 "Race in cgroup_clone() - leaking cgroup %s\n",
2645 nodename);
2646 goto again;
2647 }
2648
2649 /* do any required auto-setup */
2650 for_each_subsys(root, ss) {
2651 if (ss->post_clone)
2652 ss->post_clone(ss, child);
2653 }
2654
2655 /* All seems fine. Finish by moving the task into the new cgroup */
2656 ret = attach_task(child, tsk);
2657 mutex_unlock(&cgroup_mutex);
2658
2659 out_release:
2660 mutex_unlock(&inode->i_mutex);
81a6a5cd
PM
2661
2662 mutex_lock(&cgroup_mutex);
817929ec 2663 put_css_set(cg);
81a6a5cd 2664 mutex_unlock(&cgroup_mutex);
697f4161
PM
2665 deactivate_super(parent->root->sb);
2666 return ret;
2667}
2668
2669/*
bd89aabc 2670 * See if "cgrp" is a descendant of the current task's cgroup in
697f4161
PM
2671 * the appropriate hierarchy
2672 *
2673 * If we are sending in dummytop, then presumably we are creating
2674 * the top cgroup in the subsystem.
2675 *
2676 * Called only by the ns (nsproxy) cgroup.
2677 */
bd89aabc 2678int cgroup_is_descendant(const struct cgroup *cgrp)
697f4161
PM
2679{
2680 int ret;
2681 struct cgroup *target;
2682 int subsys_id;
2683
bd89aabc 2684 if (cgrp == dummytop)
697f4161
PM
2685 return 1;
2686
bd89aabc 2687 get_first_subsys(cgrp, NULL, &subsys_id);
697f4161 2688 target = task_cgroup(current, subsys_id);
bd89aabc
PM
2689 while (cgrp != target && cgrp!= cgrp->top_cgroup)
2690 cgrp = cgrp->parent;
2691 ret = (cgrp == target);
697f4161
PM
2692 return ret;
2693}
81a6a5cd 2694
bd89aabc 2695static void check_for_release(struct cgroup *cgrp)
81a6a5cd
PM
2696{
2697 /* All of these checks rely on RCU to keep the cgroup
2698 * structure alive */
bd89aabc
PM
2699 if (cgroup_is_releasable(cgrp) && !atomic_read(&cgrp->count)
2700 && list_empty(&cgrp->children) && !cgroup_has_css_refs(cgrp)) {
81a6a5cd
PM
2701 /* Control Group is currently removeable. If it's not
2702 * already queued for a userspace notification, queue
2703 * it now */
2704 int need_schedule_work = 0;
2705 spin_lock(&release_list_lock);
bd89aabc
PM
2706 if (!cgroup_is_removed(cgrp) &&
2707 list_empty(&cgrp->release_list)) {
2708 list_add(&cgrp->release_list, &release_list);
81a6a5cd
PM
2709 need_schedule_work = 1;
2710 }
2711 spin_unlock(&release_list_lock);
2712 if (need_schedule_work)
2713 schedule_work(&release_agent_work);
2714 }
2715}
2716
2717void __css_put(struct cgroup_subsys_state *css)
2718{
bd89aabc 2719 struct cgroup *cgrp = css->cgroup;
81a6a5cd 2720 rcu_read_lock();
bd89aabc
PM
2721 if (atomic_dec_and_test(&css->refcnt) && notify_on_release(cgrp)) {
2722 set_bit(CGRP_RELEASABLE, &cgrp->flags);
2723 check_for_release(cgrp);
81a6a5cd
PM
2724 }
2725 rcu_read_unlock();
2726}
2727
2728/*
2729 * Notify userspace when a cgroup is released, by running the
2730 * configured release agent with the name of the cgroup (path
2731 * relative to the root of cgroup file system) as the argument.
2732 *
2733 * Most likely, this user command will try to rmdir this cgroup.
2734 *
2735 * This races with the possibility that some other task will be
2736 * attached to this cgroup before it is removed, or that some other
2737 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
2738 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
2739 * unused, and this cgroup will be reprieved from its death sentence,
2740 * to continue to serve a useful existence. Next time it's released,
2741 * we will get notified again, if it still has 'notify_on_release' set.
2742 *
2743 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
2744 * means only wait until the task is successfully execve()'d. The
2745 * separate release agent task is forked by call_usermodehelper(),
2746 * then control in this thread returns here, without waiting for the
2747 * release agent task. We don't bother to wait because the caller of
2748 * this routine has no use for the exit status of the release agent
2749 * task, so no sense holding our caller up for that.
2750 *
2751 */
2752
2753static void cgroup_release_agent(struct work_struct *work)
2754{
2755 BUG_ON(work != &release_agent_work);
2756 mutex_lock(&cgroup_mutex);
2757 spin_lock(&release_list_lock);
2758 while (!list_empty(&release_list)) {
2759 char *argv[3], *envp[3];
2760 int i;
2761 char *pathbuf;
bd89aabc 2762 struct cgroup *cgrp = list_entry(release_list.next,
81a6a5cd
PM
2763 struct cgroup,
2764 release_list);
bd89aabc 2765 list_del_init(&cgrp->release_list);
81a6a5cd
PM
2766 spin_unlock(&release_list_lock);
2767 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
2768 if (!pathbuf) {
2769 spin_lock(&release_list_lock);
2770 continue;
2771 }
2772
bd89aabc 2773 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0) {
81a6a5cd
PM
2774 kfree(pathbuf);
2775 spin_lock(&release_list_lock);
2776 continue;
2777 }
2778
2779 i = 0;
bd89aabc 2780 argv[i++] = cgrp->root->release_agent_path;
81a6a5cd
PM
2781 argv[i++] = (char *)pathbuf;
2782 argv[i] = NULL;
2783
2784 i = 0;
2785 /* minimal command environment */
2786 envp[i++] = "HOME=/";
2787 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
2788 envp[i] = NULL;
2789
2790 /* Drop the lock while we invoke the usermode helper,
2791 * since the exec could involve hitting disk and hence
2792 * be a slow process */
2793 mutex_unlock(&cgroup_mutex);
2794 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
2795 kfree(pathbuf);
2796 mutex_lock(&cgroup_mutex);
2797 spin_lock(&release_list_lock);
2798 }
2799 spin_unlock(&release_list_lock);
2800 mutex_unlock(&cgroup_mutex);
2801}