cgroups: don't put struct cgroupfs_root protected by RCU
[safe/jmp/linux-2.6] / kernel / cgroup.c
1 /*
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>
34 #include <linux/proc_fs.h>
35 #include <linux/rcupdate.h>
36 #include <linux/sched.h>
37 #include <linux/backing-dev.h>
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>
43 #include <linux/sort.h>
44 #include <linux/kmod.h>
45 #include <linux/delayacct.h>
46 #include <linux/cgroupstats.h>
47 #include <linux/hash.h>
48 #include <linux/namei.h>
49
50 #include <asm/atomic.h>
51
52 static DEFINE_MUTEX(cgroup_mutex);
53
54 /* Generate an array of cgroup subsystem pointers */
55 #define SUBSYS(_x) &_x ## _subsys,
56
57 static struct cgroup_subsys *subsys[] = {
58 #include <linux/cgroup_subsys.h>
59 };
60
61 /*
62  * A cgroupfs_root represents the root of a cgroup hierarchy,
63  * and may be associated with a superblock to form an active
64  * hierarchy
65  */
66 struct cgroupfs_root {
67         struct super_block *sb;
68
69         /*
70          * The bitmask of subsystems intended to be attached to this
71          * hierarchy
72          */
73         unsigned long subsys_bits;
74
75         /* The bitmask of subsystems currently attached to this hierarchy */
76         unsigned long actual_subsys_bits;
77
78         /* A list running through the attached subsystems */
79         struct list_head subsys_list;
80
81         /* The root cgroup for this hierarchy */
82         struct cgroup top_cgroup;
83
84         /* Tracks how many cgroups are currently defined in hierarchy.*/
85         int number_of_cgroups;
86
87         /* A list running through the mounted hierarchies */
88         struct list_head root_list;
89
90         /* Hierarchy-specific flags */
91         unsigned long flags;
92
93         /* The path to use for release notifications. */
94         char release_agent_path[PATH_MAX];
95 };
96
97
98 /*
99  * The "rootnode" hierarchy is the "dummy hierarchy", reserved for the
100  * subsystems that are otherwise unattached - it never has more than a
101  * single cgroup, and all tasks are part of that cgroup.
102  */
103 static struct cgroupfs_root rootnode;
104
105 /* The list of hierarchy roots */
106
107 static LIST_HEAD(roots);
108 static int root_count;
109
110 /* dummytop is a shorthand for the dummy hierarchy's top cgroup */
111 #define dummytop (&rootnode.top_cgroup)
112
113 /* This flag indicates whether tasks in the fork and exit paths should
114  * check for fork/exit handlers to call. This avoids us having to do
115  * extra work in the fork/exit path if none of the subsystems need to
116  * be called.
117  */
118 static int need_forkexit_callback __read_mostly;
119
120 /* convenient tests for these bits */
121 inline int cgroup_is_removed(const struct cgroup *cgrp)
122 {
123         return test_bit(CGRP_REMOVED, &cgrp->flags);
124 }
125
126 /* bits in struct cgroupfs_root flags field */
127 enum {
128         ROOT_NOPREFIX, /* mounted subsystems have no named prefix */
129 };
130
131 static int cgroup_is_releasable(const struct cgroup *cgrp)
132 {
133         const int bits =
134                 (1 << CGRP_RELEASABLE) |
135                 (1 << CGRP_NOTIFY_ON_RELEASE);
136         return (cgrp->flags & bits) == bits;
137 }
138
139 static int notify_on_release(const struct cgroup *cgrp)
140 {
141         return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
142 }
143
144 /*
145  * for_each_subsys() allows you to iterate on each subsystem attached to
146  * an active hierarchy
147  */
148 #define for_each_subsys(_root, _ss) \
149 list_for_each_entry(_ss, &_root->subsys_list, sibling)
150
151 /* for_each_root() allows you to iterate across the active hierarchies */
152 #define for_each_root(_root) \
153 list_for_each_entry(_root, &roots, root_list)
154
155 /* the list of cgroups eligible for automatic release. Protected by
156  * release_list_lock */
157 static LIST_HEAD(release_list);
158 static DEFINE_SPINLOCK(release_list_lock);
159 static void cgroup_release_agent(struct work_struct *work);
160 static DECLARE_WORK(release_agent_work, cgroup_release_agent);
161 static void check_for_release(struct cgroup *cgrp);
162
163 /* Link structure for associating css_set objects with cgroups */
164 struct cg_cgroup_link {
165         /*
166          * List running through cg_cgroup_links associated with a
167          * cgroup, anchored on cgroup->css_sets
168          */
169         struct list_head cgrp_link_list;
170         /*
171          * List running through cg_cgroup_links pointing at a
172          * single css_set object, anchored on css_set->cg_links
173          */
174         struct list_head cg_link_list;
175         struct css_set *cg;
176 };
177
178 /* The default css_set - used by init and its children prior to any
179  * hierarchies being mounted. It contains a pointer to the root state
180  * for each subsystem. Also used to anchor the list of css_sets. Not
181  * reference-counted, to improve performance when child cgroups
182  * haven't been created.
183  */
184
185 static struct css_set init_css_set;
186 static struct cg_cgroup_link init_css_set_link;
187
188 /* css_set_lock protects the list of css_set objects, and the
189  * chain of tasks off each css_set.  Nests outside task->alloc_lock
190  * due to cgroup_iter_start() */
191 static DEFINE_RWLOCK(css_set_lock);
192 static int css_set_count;
193
194 /* hash table for cgroup groups. This improves the performance to
195  * find an existing css_set */
196 #define CSS_SET_HASH_BITS       7
197 #define CSS_SET_TABLE_SIZE      (1 << CSS_SET_HASH_BITS)
198 static struct hlist_head css_set_table[CSS_SET_TABLE_SIZE];
199
200 static struct hlist_head *css_set_hash(struct cgroup_subsys_state *css[])
201 {
202         int i;
203         int index;
204         unsigned long tmp = 0UL;
205
206         for (i = 0; i < CGROUP_SUBSYS_COUNT; i++)
207                 tmp += (unsigned long)css[i];
208         tmp = (tmp >> 16) ^ tmp;
209
210         index = hash_long(tmp, CSS_SET_HASH_BITS);
211
212         return &css_set_table[index];
213 }
214
215 /* We don't maintain the lists running through each css_set to its
216  * task until after the first call to cgroup_iter_start(). This
217  * reduces the fork()/exit() overhead for people who have cgroups
218  * compiled into their kernel but not actually in use */
219 static int use_task_css_set_links __read_mostly;
220
221 /* When we create or destroy a css_set, the operation simply
222  * takes/releases a reference count on all the cgroups referenced
223  * by subsystems in this css_set. This can end up multiple-counting
224  * some cgroups, but that's OK - the ref-count is just a
225  * busy/not-busy indicator; ensuring that we only count each cgroup
226  * once would require taking a global lock to ensure that no
227  * subsystems moved between hierarchies while we were doing so.
228  *
229  * Possible TODO: decide at boot time based on the number of
230  * registered subsystems and the number of CPUs or NUMA nodes whether
231  * it's better for performance to ref-count every subsystem, or to
232  * take a global lock and only add one ref count to each hierarchy.
233  */
234
235 /*
236  * unlink a css_set from the list and free it
237  */
238 static void unlink_css_set(struct css_set *cg)
239 {
240         struct cg_cgroup_link *link;
241         struct cg_cgroup_link *saved_link;
242
243         hlist_del(&cg->hlist);
244         css_set_count--;
245
246         list_for_each_entry_safe(link, saved_link, &cg->cg_links,
247                                  cg_link_list) {
248                 list_del(&link->cg_link_list);
249                 list_del(&link->cgrp_link_list);
250                 kfree(link);
251         }
252 }
253
254 static void __put_css_set(struct css_set *cg, int taskexit)
255 {
256         int i;
257         /*
258          * Ensure that the refcount doesn't hit zero while any readers
259          * can see it. Similar to atomic_dec_and_lock(), but for an
260          * rwlock
261          */
262         if (atomic_add_unless(&cg->refcount, -1, 1))
263                 return;
264         write_lock(&css_set_lock);
265         if (!atomic_dec_and_test(&cg->refcount)) {
266                 write_unlock(&css_set_lock);
267                 return;
268         }
269         unlink_css_set(cg);
270         write_unlock(&css_set_lock);
271
272         rcu_read_lock();
273         for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
274                 struct cgroup *cgrp = cg->subsys[i]->cgroup;
275                 if (atomic_dec_and_test(&cgrp->count) &&
276                     notify_on_release(cgrp)) {
277                         if (taskexit)
278                                 set_bit(CGRP_RELEASABLE, &cgrp->flags);
279                         check_for_release(cgrp);
280                 }
281         }
282         rcu_read_unlock();
283         kfree(cg);
284 }
285
286 /*
287  * refcounted get/put for css_set objects
288  */
289 static inline void get_css_set(struct css_set *cg)
290 {
291         atomic_inc(&cg->refcount);
292 }
293
294 static inline void put_css_set(struct css_set *cg)
295 {
296         __put_css_set(cg, 0);
297 }
298
299 static inline void put_css_set_taskexit(struct css_set *cg)
300 {
301         __put_css_set(cg, 1);
302 }
303
304 /*
305  * find_existing_css_set() is a helper for
306  * find_css_set(), and checks to see whether an existing
307  * css_set is suitable.
308  *
309  * oldcg: the cgroup group that we're using before the cgroup
310  * transition
311  *
312  * cgrp: the cgroup that we're moving into
313  *
314  * template: location in which to build the desired set of subsystem
315  * state objects for the new cgroup group
316  */
317 static struct css_set *find_existing_css_set(
318         struct css_set *oldcg,
319         struct cgroup *cgrp,
320         struct cgroup_subsys_state *template[])
321 {
322         int i;
323         struct cgroupfs_root *root = cgrp->root;
324         struct hlist_head *hhead;
325         struct hlist_node *node;
326         struct css_set *cg;
327
328         /* Built the set of subsystem state objects that we want to
329          * see in the new css_set */
330         for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
331                 if (root->subsys_bits & (1UL << i)) {
332                         /* Subsystem is in this hierarchy. So we want
333                          * the subsystem state from the new
334                          * cgroup */
335                         template[i] = cgrp->subsys[i];
336                 } else {
337                         /* Subsystem is not in this hierarchy, so we
338                          * don't want to change the subsystem state */
339                         template[i] = oldcg->subsys[i];
340                 }
341         }
342
343         hhead = css_set_hash(template);
344         hlist_for_each_entry(cg, node, hhead, hlist) {
345                 if (!memcmp(template, cg->subsys, sizeof(cg->subsys))) {
346                         /* All subsystems matched */
347                         return cg;
348                 }
349         }
350
351         /* No existing cgroup group matched */
352         return NULL;
353 }
354
355 static void free_cg_links(struct list_head *tmp)
356 {
357         struct cg_cgroup_link *link;
358         struct cg_cgroup_link *saved_link;
359
360         list_for_each_entry_safe(link, saved_link, tmp, cgrp_link_list) {
361                 list_del(&link->cgrp_link_list);
362                 kfree(link);
363         }
364 }
365
366 /*
367  * allocate_cg_links() allocates "count" cg_cgroup_link structures
368  * and chains them on tmp through their cgrp_link_list fields. Returns 0 on
369  * success or a negative error
370  */
371 static int allocate_cg_links(int count, struct list_head *tmp)
372 {
373         struct cg_cgroup_link *link;
374         int i;
375         INIT_LIST_HEAD(tmp);
376         for (i = 0; i < count; i++) {
377                 link = kmalloc(sizeof(*link), GFP_KERNEL);
378                 if (!link) {
379                         free_cg_links(tmp);
380                         return -ENOMEM;
381                 }
382                 list_add(&link->cgrp_link_list, tmp);
383         }
384         return 0;
385 }
386
387 /*
388  * find_css_set() takes an existing cgroup group and a
389  * cgroup object, and returns a css_set object that's
390  * equivalent to the old group, but with the given cgroup
391  * substituted into the appropriate hierarchy. Must be called with
392  * cgroup_mutex held
393  */
394 static struct css_set *find_css_set(
395         struct css_set *oldcg, struct cgroup *cgrp)
396 {
397         struct css_set *res;
398         struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT];
399         int i;
400
401         struct list_head tmp_cg_links;
402         struct cg_cgroup_link *link;
403
404         struct hlist_head *hhead;
405
406         /* First see if we already have a cgroup group that matches
407          * the desired set */
408         read_lock(&css_set_lock);
409         res = find_existing_css_set(oldcg, cgrp, template);
410         if (res)
411                 get_css_set(res);
412         read_unlock(&css_set_lock);
413
414         if (res)
415                 return res;
416
417         res = kmalloc(sizeof(*res), GFP_KERNEL);
418         if (!res)
419                 return NULL;
420
421         /* Allocate all the cg_cgroup_link objects that we'll need */
422         if (allocate_cg_links(root_count, &tmp_cg_links) < 0) {
423                 kfree(res);
424                 return NULL;
425         }
426
427         atomic_set(&res->refcount, 1);
428         INIT_LIST_HEAD(&res->cg_links);
429         INIT_LIST_HEAD(&res->tasks);
430         INIT_HLIST_NODE(&res->hlist);
431
432         /* Copy the set of subsystem state objects generated in
433          * find_existing_css_set() */
434         memcpy(res->subsys, template, sizeof(res->subsys));
435
436         write_lock(&css_set_lock);
437         /* Add reference counts and links from the new css_set. */
438         for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
439                 struct cgroup *cgrp = res->subsys[i]->cgroup;
440                 struct cgroup_subsys *ss = subsys[i];
441                 atomic_inc(&cgrp->count);
442                 /*
443                  * We want to add a link once per cgroup, so we
444                  * only do it for the first subsystem in each
445                  * hierarchy
446                  */
447                 if (ss->root->subsys_list.next == &ss->sibling) {
448                         BUG_ON(list_empty(&tmp_cg_links));
449                         link = list_entry(tmp_cg_links.next,
450                                           struct cg_cgroup_link,
451                                           cgrp_link_list);
452                         list_del(&link->cgrp_link_list);
453                         list_add(&link->cgrp_link_list, &cgrp->css_sets);
454                         link->cg = res;
455                         list_add(&link->cg_link_list, &res->cg_links);
456                 }
457         }
458         if (list_empty(&rootnode.subsys_list)) {
459                 link = list_entry(tmp_cg_links.next,
460                                   struct cg_cgroup_link,
461                                   cgrp_link_list);
462                 list_del(&link->cgrp_link_list);
463                 list_add(&link->cgrp_link_list, &dummytop->css_sets);
464                 link->cg = res;
465                 list_add(&link->cg_link_list, &res->cg_links);
466         }
467
468         BUG_ON(!list_empty(&tmp_cg_links));
469
470         css_set_count++;
471
472         /* Add this cgroup group to the hash table */
473         hhead = css_set_hash(res->subsys);
474         hlist_add_head(&res->hlist, hhead);
475
476         write_unlock(&css_set_lock);
477
478         return res;
479 }
480
481 /*
482  * There is one global cgroup mutex. We also require taking
483  * task_lock() when dereferencing a task's cgroup subsys pointers.
484  * See "The task_lock() exception", at the end of this comment.
485  *
486  * A task must hold cgroup_mutex to modify cgroups.
487  *
488  * Any task can increment and decrement the count field without lock.
489  * So in general, code holding cgroup_mutex can't rely on the count
490  * field not changing.  However, if the count goes to zero, then only
491  * cgroup_attach_task() can increment it again.  Because a count of zero
492  * means that no tasks are currently attached, therefore there is no
493  * way a task attached to that cgroup can fork (the other way to
494  * increment the count).  So code holding cgroup_mutex can safely
495  * assume that if the count is zero, it will stay zero. Similarly, if
496  * a task holds cgroup_mutex on a cgroup with zero count, it
497  * knows that the cgroup won't be removed, as cgroup_rmdir()
498  * needs that mutex.
499  *
500  * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
501  * (usually) take cgroup_mutex.  These are the two most performance
502  * critical pieces of code here.  The exception occurs on cgroup_exit(),
503  * when a task in a notify_on_release cgroup exits.  Then cgroup_mutex
504  * is taken, and if the cgroup count is zero, a usermode call made
505  * to the release agent with the name of the cgroup (path relative to
506  * the root of cgroup file system) as the argument.
507  *
508  * A cgroup can only be deleted if both its 'count' of using tasks
509  * is zero, and its list of 'children' cgroups is empty.  Since all
510  * tasks in the system use _some_ cgroup, and since there is always at
511  * least one task in the system (init, pid == 1), therefore, top_cgroup
512  * always has either children cgroups and/or using tasks.  So we don't
513  * need a special hack to ensure that top_cgroup cannot be deleted.
514  *
515  *      The task_lock() exception
516  *
517  * The need for this exception arises from the action of
518  * cgroup_attach_task(), which overwrites one tasks cgroup pointer with
519  * another.  It does so using cgroup_mutex, however there are
520  * several performance critical places that need to reference
521  * task->cgroup without the expense of grabbing a system global
522  * mutex.  Therefore except as noted below, when dereferencing or, as
523  * in cgroup_attach_task(), modifying a task'ss cgroup pointer we use
524  * task_lock(), which acts on a spinlock (task->alloc_lock) already in
525  * the task_struct routinely used for such matters.
526  *
527  * P.S.  One more locking exception.  RCU is used to guard the
528  * update of a tasks cgroup pointer by cgroup_attach_task()
529  */
530
531 /**
532  * cgroup_lock - lock out any changes to cgroup structures
533  *
534  */
535 void cgroup_lock(void)
536 {
537         mutex_lock(&cgroup_mutex);
538 }
539
540 /**
541  * cgroup_unlock - release lock on cgroup changes
542  *
543  * Undo the lock taken in a previous cgroup_lock() call.
544  */
545 void cgroup_unlock(void)
546 {
547         mutex_unlock(&cgroup_mutex);
548 }
549
550 /*
551  * A couple of forward declarations required, due to cyclic reference loop:
552  * cgroup_mkdir -> cgroup_create -> cgroup_populate_dir ->
553  * cgroup_add_file -> cgroup_create_file -> cgroup_dir_inode_operations
554  * -> cgroup_mkdir.
555  */
556
557 static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode);
558 static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry);
559 static int cgroup_populate_dir(struct cgroup *cgrp);
560 static struct inode_operations cgroup_dir_inode_operations;
561 static struct file_operations proc_cgroupstats_operations;
562
563 static struct backing_dev_info cgroup_backing_dev_info = {
564         .capabilities   = BDI_CAP_NO_ACCT_AND_WRITEBACK,
565 };
566
567 static struct inode *cgroup_new_inode(mode_t mode, struct super_block *sb)
568 {
569         struct inode *inode = new_inode(sb);
570
571         if (inode) {
572                 inode->i_mode = mode;
573                 inode->i_uid = current_fsuid();
574                 inode->i_gid = current_fsgid();
575                 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
576                 inode->i_mapping->backing_dev_info = &cgroup_backing_dev_info;
577         }
578         return inode;
579 }
580
581 /*
582  * Call subsys's pre_destroy handler.
583  * This is called before css refcnt check.
584  */
585 static void cgroup_call_pre_destroy(struct cgroup *cgrp)
586 {
587         struct cgroup_subsys *ss;
588         for_each_subsys(cgrp->root, ss)
589                 if (ss->pre_destroy)
590                         ss->pre_destroy(ss, cgrp);
591         return;
592 }
593
594 static void cgroup_diput(struct dentry *dentry, struct inode *inode)
595 {
596         /* is dentry a directory ? if so, kfree() associated cgroup */
597         if (S_ISDIR(inode->i_mode)) {
598                 struct cgroup *cgrp = dentry->d_fsdata;
599                 struct cgroup_subsys *ss;
600                 BUG_ON(!(cgroup_is_removed(cgrp)));
601                 /* It's possible for external users to be holding css
602                  * reference counts on a cgroup; css_put() needs to
603                  * be able to access the cgroup after decrementing
604                  * the reference count in order to know if it needs to
605                  * queue the cgroup to be handled by the release
606                  * agent */
607                 synchronize_rcu();
608
609                 mutex_lock(&cgroup_mutex);
610                 /*
611                  * Release the subsystem state objects.
612                  */
613                 for_each_subsys(cgrp->root, ss)
614                         ss->destroy(ss, cgrp);
615
616                 cgrp->root->number_of_cgroups--;
617                 mutex_unlock(&cgroup_mutex);
618
619                 /* Drop the active superblock reference that we took when we
620                  * created the cgroup */
621                 deactivate_super(cgrp->root->sb);
622
623                 kfree(cgrp);
624         }
625         iput(inode);
626 }
627
628 static void remove_dir(struct dentry *d)
629 {
630         struct dentry *parent = dget(d->d_parent);
631
632         d_delete(d);
633         simple_rmdir(parent->d_inode, d);
634         dput(parent);
635 }
636
637 static void cgroup_clear_directory(struct dentry *dentry)
638 {
639         struct list_head *node;
640
641         BUG_ON(!mutex_is_locked(&dentry->d_inode->i_mutex));
642         spin_lock(&dcache_lock);
643         node = dentry->d_subdirs.next;
644         while (node != &dentry->d_subdirs) {
645                 struct dentry *d = list_entry(node, struct dentry, d_u.d_child);
646                 list_del_init(node);
647                 if (d->d_inode) {
648                         /* This should never be called on a cgroup
649                          * directory with child cgroups */
650                         BUG_ON(d->d_inode->i_mode & S_IFDIR);
651                         d = dget_locked(d);
652                         spin_unlock(&dcache_lock);
653                         d_delete(d);
654                         simple_unlink(dentry->d_inode, d);
655                         dput(d);
656                         spin_lock(&dcache_lock);
657                 }
658                 node = dentry->d_subdirs.next;
659         }
660         spin_unlock(&dcache_lock);
661 }
662
663 /*
664  * NOTE : the dentry must have been dget()'ed
665  */
666 static void cgroup_d_remove_dir(struct dentry *dentry)
667 {
668         cgroup_clear_directory(dentry);
669
670         spin_lock(&dcache_lock);
671         list_del_init(&dentry->d_u.d_child);
672         spin_unlock(&dcache_lock);
673         remove_dir(dentry);
674 }
675
676 static int rebind_subsystems(struct cgroupfs_root *root,
677                               unsigned long final_bits)
678 {
679         unsigned long added_bits, removed_bits;
680         struct cgroup *cgrp = &root->top_cgroup;
681         int i;
682
683         removed_bits = root->actual_subsys_bits & ~final_bits;
684         added_bits = final_bits & ~root->actual_subsys_bits;
685         /* Check that any added subsystems are currently free */
686         for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
687                 unsigned long bit = 1UL << i;
688                 struct cgroup_subsys *ss = subsys[i];
689                 if (!(bit & added_bits))
690                         continue;
691                 if (ss->root != &rootnode) {
692                         /* Subsystem isn't free */
693                         return -EBUSY;
694                 }
695         }
696
697         /* Currently we don't handle adding/removing subsystems when
698          * any child cgroups exist. This is theoretically supportable
699          * but involves complex error handling, so it's being left until
700          * later */
701         if (root->number_of_cgroups > 1)
702                 return -EBUSY;
703
704         /* Process each subsystem */
705         for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
706                 struct cgroup_subsys *ss = subsys[i];
707                 unsigned long bit = 1UL << i;
708                 if (bit & added_bits) {
709                         /* We're binding this subsystem to this hierarchy */
710                         BUG_ON(cgrp->subsys[i]);
711                         BUG_ON(!dummytop->subsys[i]);
712                         BUG_ON(dummytop->subsys[i]->cgroup != dummytop);
713                         cgrp->subsys[i] = dummytop->subsys[i];
714                         cgrp->subsys[i]->cgroup = cgrp;
715                         list_add(&ss->sibling, &root->subsys_list);
716                         ss->root = root;
717                         if (ss->bind)
718                                 ss->bind(ss, cgrp);
719
720                 } else if (bit & removed_bits) {
721                         /* We're removing this subsystem */
722                         BUG_ON(cgrp->subsys[i] != dummytop->subsys[i]);
723                         BUG_ON(cgrp->subsys[i]->cgroup != cgrp);
724                         if (ss->bind)
725                                 ss->bind(ss, dummytop);
726                         dummytop->subsys[i]->cgroup = dummytop;
727                         cgrp->subsys[i] = NULL;
728                         subsys[i]->root = &rootnode;
729                         list_del(&ss->sibling);
730                 } else if (bit & final_bits) {
731                         /* Subsystem state should already exist */
732                         BUG_ON(!cgrp->subsys[i]);
733                 } else {
734                         /* Subsystem state shouldn't exist */
735                         BUG_ON(cgrp->subsys[i]);
736                 }
737         }
738         root->subsys_bits = root->actual_subsys_bits = final_bits;
739         synchronize_rcu();
740
741         return 0;
742 }
743
744 static int cgroup_show_options(struct seq_file *seq, struct vfsmount *vfs)
745 {
746         struct cgroupfs_root *root = vfs->mnt_sb->s_fs_info;
747         struct cgroup_subsys *ss;
748
749         mutex_lock(&cgroup_mutex);
750         for_each_subsys(root, ss)
751                 seq_printf(seq, ",%s", ss->name);
752         if (test_bit(ROOT_NOPREFIX, &root->flags))
753                 seq_puts(seq, ",noprefix");
754         if (strlen(root->release_agent_path))
755                 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
756         mutex_unlock(&cgroup_mutex);
757         return 0;
758 }
759
760 struct cgroup_sb_opts {
761         unsigned long subsys_bits;
762         unsigned long flags;
763         char *release_agent;
764 };
765
766 /* Convert a hierarchy specifier into a bitmask of subsystems and
767  * flags. */
768 static int parse_cgroupfs_options(char *data,
769                                      struct cgroup_sb_opts *opts)
770 {
771         char *token, *o = data ?: "all";
772
773         opts->subsys_bits = 0;
774         opts->flags = 0;
775         opts->release_agent = NULL;
776
777         while ((token = strsep(&o, ",")) != NULL) {
778                 if (!*token)
779                         return -EINVAL;
780                 if (!strcmp(token, "all")) {
781                         /* Add all non-disabled subsystems */
782                         int i;
783                         opts->subsys_bits = 0;
784                         for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
785                                 struct cgroup_subsys *ss = subsys[i];
786                                 if (!ss->disabled)
787                                         opts->subsys_bits |= 1ul << i;
788                         }
789                 } else if (!strcmp(token, "noprefix")) {
790                         set_bit(ROOT_NOPREFIX, &opts->flags);
791                 } else if (!strncmp(token, "release_agent=", 14)) {
792                         /* Specifying two release agents is forbidden */
793                         if (opts->release_agent)
794                                 return -EINVAL;
795                         opts->release_agent = kzalloc(PATH_MAX, GFP_KERNEL);
796                         if (!opts->release_agent)
797                                 return -ENOMEM;
798                         strncpy(opts->release_agent, token + 14, PATH_MAX - 1);
799                         opts->release_agent[PATH_MAX - 1] = 0;
800                 } else {
801                         struct cgroup_subsys *ss;
802                         int i;
803                         for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
804                                 ss = subsys[i];
805                                 if (!strcmp(token, ss->name)) {
806                                         if (!ss->disabled)
807                                                 set_bit(i, &opts->subsys_bits);
808                                         break;
809                                 }
810                         }
811                         if (i == CGROUP_SUBSYS_COUNT)
812                                 return -ENOENT;
813                 }
814         }
815
816         /* We can't have an empty hierarchy */
817         if (!opts->subsys_bits)
818                 return -EINVAL;
819
820         return 0;
821 }
822
823 static int cgroup_remount(struct super_block *sb, int *flags, char *data)
824 {
825         int ret = 0;
826         struct cgroupfs_root *root = sb->s_fs_info;
827         struct cgroup *cgrp = &root->top_cgroup;
828         struct cgroup_sb_opts opts;
829
830         mutex_lock(&cgrp->dentry->d_inode->i_mutex);
831         mutex_lock(&cgroup_mutex);
832
833         /* See what subsystems are wanted */
834         ret = parse_cgroupfs_options(data, &opts);
835         if (ret)
836                 goto out_unlock;
837
838         /* Don't allow flags to change at remount */
839         if (opts.flags != root->flags) {
840                 ret = -EINVAL;
841                 goto out_unlock;
842         }
843
844         ret = rebind_subsystems(root, opts.subsys_bits);
845
846         /* (re)populate subsystem files */
847         if (!ret)
848                 cgroup_populate_dir(cgrp);
849
850         if (opts.release_agent)
851                 strcpy(root->release_agent_path, opts.release_agent);
852  out_unlock:
853         if (opts.release_agent)
854                 kfree(opts.release_agent);
855         mutex_unlock(&cgroup_mutex);
856         mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
857         return ret;
858 }
859
860 static struct super_operations cgroup_ops = {
861         .statfs = simple_statfs,
862         .drop_inode = generic_delete_inode,
863         .show_options = cgroup_show_options,
864         .remount_fs = cgroup_remount,
865 };
866
867 static void init_cgroup_housekeeping(struct cgroup *cgrp)
868 {
869         INIT_LIST_HEAD(&cgrp->sibling);
870         INIT_LIST_HEAD(&cgrp->children);
871         INIT_LIST_HEAD(&cgrp->css_sets);
872         INIT_LIST_HEAD(&cgrp->release_list);
873         init_rwsem(&cgrp->pids_mutex);
874 }
875 static void init_cgroup_root(struct cgroupfs_root *root)
876 {
877         struct cgroup *cgrp = &root->top_cgroup;
878         INIT_LIST_HEAD(&root->subsys_list);
879         INIT_LIST_HEAD(&root->root_list);
880         root->number_of_cgroups = 1;
881         cgrp->root = root;
882         cgrp->top_cgroup = cgrp;
883         init_cgroup_housekeeping(cgrp);
884 }
885
886 static int cgroup_test_super(struct super_block *sb, void *data)
887 {
888         struct cgroupfs_root *new = data;
889         struct cgroupfs_root *root = sb->s_fs_info;
890
891         /* First check subsystems */
892         if (new->subsys_bits != root->subsys_bits)
893             return 0;
894
895         /* Next check flags */
896         if (new->flags != root->flags)
897                 return 0;
898
899         return 1;
900 }
901
902 static int cgroup_set_super(struct super_block *sb, void *data)
903 {
904         int ret;
905         struct cgroupfs_root *root = data;
906
907         ret = set_anon_super(sb, NULL);
908         if (ret)
909                 return ret;
910
911         sb->s_fs_info = root;
912         root->sb = sb;
913
914         sb->s_blocksize = PAGE_CACHE_SIZE;
915         sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
916         sb->s_magic = CGROUP_SUPER_MAGIC;
917         sb->s_op = &cgroup_ops;
918
919         return 0;
920 }
921
922 static int cgroup_get_rootdir(struct super_block *sb)
923 {
924         struct inode *inode =
925                 cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb);
926         struct dentry *dentry;
927
928         if (!inode)
929                 return -ENOMEM;
930
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
944 static 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;
952         struct list_head tmp_cg_links;
953
954         /* First find the desired set of subsystems */
955         ret = parse_cgroupfs_options(data, &opts);
956         if (ret) {
957                 if (opts.release_agent)
958                         kfree(opts.release_agent);
959                 return ret;
960         }
961
962         root = kzalloc(sizeof(*root), GFP_KERNEL);
963         if (!root) {
964                 if (opts.release_agent)
965                         kfree(opts.release_agent);
966                 return -ENOMEM;
967         }
968
969         init_cgroup_root(root);
970         root->subsys_bits = opts.subsys_bits;
971         root->flags = opts.flags;
972         if (opts.release_agent) {
973                 strcpy(root->release_agent_path, opts.release_agent);
974                 kfree(opts.release_agent);
975         }
976
977         sb = sget(fs_type, cgroup_test_super, cgroup_set_super, root);
978
979         if (IS_ERR(sb)) {
980                 kfree(root);
981                 return PTR_ERR(sb);
982         }
983
984         if (sb->s_fs_info != root) {
985                 /* Reusing an existing superblock */
986                 BUG_ON(sb->s_root == NULL);
987                 kfree(root);
988                 root = NULL;
989         } else {
990                 /* New superblock */
991                 struct cgroup *cgrp = &root->top_cgroup;
992                 struct inode *inode;
993                 int i;
994
995                 BUG_ON(sb->s_root != NULL);
996
997                 ret = cgroup_get_rootdir(sb);
998                 if (ret)
999                         goto drop_new_super;
1000                 inode = sb->s_root->d_inode;
1001
1002                 mutex_lock(&inode->i_mutex);
1003                 mutex_lock(&cgroup_mutex);
1004
1005                 /*
1006                  * We're accessing css_set_count without locking
1007                  * css_set_lock here, but that's OK - it can only be
1008                  * increased by someone holding cgroup_lock, and
1009                  * that's us. The worst that can happen is that we
1010                  * have some link structures left over
1011                  */
1012                 ret = allocate_cg_links(css_set_count, &tmp_cg_links);
1013                 if (ret) {
1014                         mutex_unlock(&cgroup_mutex);
1015                         mutex_unlock(&inode->i_mutex);
1016                         goto drop_new_super;
1017                 }
1018
1019                 ret = rebind_subsystems(root, root->subsys_bits);
1020                 if (ret == -EBUSY) {
1021                         mutex_unlock(&cgroup_mutex);
1022                         mutex_unlock(&inode->i_mutex);
1023                         goto free_cg_links;
1024                 }
1025
1026                 /* EBUSY should be the only error here */
1027                 BUG_ON(ret);
1028
1029                 list_add(&root->root_list, &roots);
1030                 root_count++;
1031
1032                 sb->s_root->d_fsdata = &root->top_cgroup;
1033                 root->top_cgroup.dentry = sb->s_root;
1034
1035                 /* Link the top cgroup in this hierarchy into all
1036                  * the css_set objects */
1037                 write_lock(&css_set_lock);
1038                 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
1039                         struct hlist_head *hhead = &css_set_table[i];
1040                         struct hlist_node *node;
1041                         struct css_set *cg;
1042
1043                         hlist_for_each_entry(cg, node, hhead, hlist) {
1044                                 struct cg_cgroup_link *link;
1045
1046                                 BUG_ON(list_empty(&tmp_cg_links));
1047                                 link = list_entry(tmp_cg_links.next,
1048                                                   struct cg_cgroup_link,
1049                                                   cgrp_link_list);
1050                                 list_del(&link->cgrp_link_list);
1051                                 link->cg = cg;
1052                                 list_add(&link->cgrp_link_list,
1053                                          &root->top_cgroup.css_sets);
1054                                 list_add(&link->cg_link_list, &cg->cg_links);
1055                         }
1056                 }
1057                 write_unlock(&css_set_lock);
1058
1059                 free_cg_links(&tmp_cg_links);
1060
1061                 BUG_ON(!list_empty(&cgrp->sibling));
1062                 BUG_ON(!list_empty(&cgrp->children));
1063                 BUG_ON(root->number_of_cgroups != 1);
1064
1065                 cgroup_populate_dir(cgrp);
1066                 mutex_unlock(&inode->i_mutex);
1067                 mutex_unlock(&cgroup_mutex);
1068         }
1069
1070         return simple_set_mnt(mnt, sb);
1071
1072  free_cg_links:
1073         free_cg_links(&tmp_cg_links);
1074  drop_new_super:
1075         up_write(&sb->s_umount);
1076         deactivate_super(sb);
1077         return ret;
1078 }
1079
1080 static void cgroup_kill_sb(struct super_block *sb) {
1081         struct cgroupfs_root *root = sb->s_fs_info;
1082         struct cgroup *cgrp = &root->top_cgroup;
1083         int ret;
1084         struct cg_cgroup_link *link;
1085         struct cg_cgroup_link *saved_link;
1086
1087         BUG_ON(!root);
1088
1089         BUG_ON(root->number_of_cgroups != 1);
1090         BUG_ON(!list_empty(&cgrp->children));
1091         BUG_ON(!list_empty(&cgrp->sibling));
1092
1093         mutex_lock(&cgroup_mutex);
1094
1095         /* Rebind all subsystems back to the default hierarchy */
1096         ret = rebind_subsystems(root, 0);
1097         /* Shouldn't be able to fail ... */
1098         BUG_ON(ret);
1099
1100         /*
1101          * Release all the links from css_sets to this hierarchy's
1102          * root cgroup
1103          */
1104         write_lock(&css_set_lock);
1105
1106         list_for_each_entry_safe(link, saved_link, &cgrp->css_sets,
1107                                  cgrp_link_list) {
1108                 list_del(&link->cg_link_list);
1109                 list_del(&link->cgrp_link_list);
1110                 kfree(link);
1111         }
1112         write_unlock(&css_set_lock);
1113
1114         if (!list_empty(&root->root_list)) {
1115                 list_del(&root->root_list);
1116                 root_count--;
1117         }
1118         mutex_unlock(&cgroup_mutex);
1119
1120         kfree(root);
1121         kill_litter_super(sb);
1122 }
1123
1124 static struct file_system_type cgroup_fs_type = {
1125         .name = "cgroup",
1126         .get_sb = cgroup_get_sb,
1127         .kill_sb = cgroup_kill_sb,
1128 };
1129
1130 static inline struct cgroup *__d_cgrp(struct dentry *dentry)
1131 {
1132         return dentry->d_fsdata;
1133 }
1134
1135 static inline struct cftype *__d_cft(struct dentry *dentry)
1136 {
1137         return dentry->d_fsdata;
1138 }
1139
1140 /**
1141  * cgroup_path - generate the path of a cgroup
1142  * @cgrp: the cgroup in question
1143  * @buf: the buffer to write the path into
1144  * @buflen: the length of the buffer
1145  *
1146  * Called with cgroup_mutex held. Writes path of cgroup into buf.
1147  * Returns 0 on success, -errno on error.
1148  */
1149 int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
1150 {
1151         char *start;
1152
1153         if (cgrp == dummytop) {
1154                 /*
1155                  * Inactive subsystems have no dentry for their root
1156                  * cgroup
1157                  */
1158                 strcpy(buf, "/");
1159                 return 0;
1160         }
1161
1162         start = buf + buflen;
1163
1164         *--start = '\0';
1165         for (;;) {
1166                 int len = cgrp->dentry->d_name.len;
1167                 if ((start -= len) < buf)
1168                         return -ENAMETOOLONG;
1169                 memcpy(start, cgrp->dentry->d_name.name, len);
1170                 cgrp = cgrp->parent;
1171                 if (!cgrp)
1172                         break;
1173                 if (!cgrp->parent)
1174                         continue;
1175                 if (--start < buf)
1176                         return -ENAMETOOLONG;
1177                 *start = '/';
1178         }
1179         memmove(buf, start, buf + buflen - start);
1180         return 0;
1181 }
1182
1183 /*
1184  * Return the first subsystem attached to a cgroup's hierarchy, and
1185  * its subsystem id.
1186  */
1187
1188 static void get_first_subsys(const struct cgroup *cgrp,
1189                         struct cgroup_subsys_state **css, int *subsys_id)
1190 {
1191         const struct cgroupfs_root *root = cgrp->root;
1192         const struct cgroup_subsys *test_ss;
1193         BUG_ON(list_empty(&root->subsys_list));
1194         test_ss = list_entry(root->subsys_list.next,
1195                              struct cgroup_subsys, sibling);
1196         if (css) {
1197                 *css = cgrp->subsys[test_ss->subsys_id];
1198                 BUG_ON(!*css);
1199         }
1200         if (subsys_id)
1201                 *subsys_id = test_ss->subsys_id;
1202 }
1203
1204 /**
1205  * cgroup_attach_task - attach task 'tsk' to cgroup 'cgrp'
1206  * @cgrp: the cgroup the task is attaching to
1207  * @tsk: the task to be attached
1208  *
1209  * Call holding cgroup_mutex. May take task_lock of
1210  * the task 'tsk' during call.
1211  */
1212 int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
1213 {
1214         int retval = 0;
1215         struct cgroup_subsys *ss;
1216         struct cgroup *oldcgrp;
1217         struct css_set *cg = tsk->cgroups;
1218         struct css_set *newcg;
1219         struct cgroupfs_root *root = cgrp->root;
1220         int subsys_id;
1221
1222         get_first_subsys(cgrp, NULL, &subsys_id);
1223
1224         /* Nothing to do if the task is already in that cgroup */
1225         oldcgrp = task_cgroup(tsk, subsys_id);
1226         if (cgrp == oldcgrp)
1227                 return 0;
1228
1229         for_each_subsys(root, ss) {
1230                 if (ss->can_attach) {
1231                         retval = ss->can_attach(ss, cgrp, tsk);
1232                         if (retval)
1233                                 return retval;
1234                 }
1235         }
1236
1237         /*
1238          * Locate or allocate a new css_set for this task,
1239          * based on its final set of cgroups
1240          */
1241         newcg = find_css_set(cg, cgrp);
1242         if (!newcg)
1243                 return -ENOMEM;
1244
1245         task_lock(tsk);
1246         if (tsk->flags & PF_EXITING) {
1247                 task_unlock(tsk);
1248                 put_css_set(newcg);
1249                 return -ESRCH;
1250         }
1251         rcu_assign_pointer(tsk->cgroups, newcg);
1252         task_unlock(tsk);
1253
1254         /* Update the css_set linked lists if we're using them */
1255         write_lock(&css_set_lock);
1256         if (!list_empty(&tsk->cg_list)) {
1257                 list_del(&tsk->cg_list);
1258                 list_add(&tsk->cg_list, &newcg->tasks);
1259         }
1260         write_unlock(&css_set_lock);
1261
1262         for_each_subsys(root, ss) {
1263                 if (ss->attach)
1264                         ss->attach(ss, cgrp, oldcgrp, tsk);
1265         }
1266         set_bit(CGRP_RELEASABLE, &oldcgrp->flags);
1267         synchronize_rcu();
1268         put_css_set(cg);
1269         return 0;
1270 }
1271
1272 /*
1273  * Attach task with pid 'pid' to cgroup 'cgrp'. Call with cgroup_mutex
1274  * held. May take task_lock of task
1275  */
1276 static int attach_task_by_pid(struct cgroup *cgrp, u64 pid)
1277 {
1278         struct task_struct *tsk;
1279         const struct cred *cred = current_cred(), *tcred;
1280         int ret;
1281
1282         if (pid) {
1283                 rcu_read_lock();
1284                 tsk = find_task_by_vpid(pid);
1285                 if (!tsk || tsk->flags & PF_EXITING) {
1286                         rcu_read_unlock();
1287                         return -ESRCH;
1288                 }
1289
1290                 tcred = __task_cred(tsk);
1291                 if (cred->euid &&
1292                     cred->euid != tcred->uid &&
1293                     cred->euid != tcred->suid) {
1294                         rcu_read_unlock();
1295                         return -EACCES;
1296                 }
1297                 get_task_struct(tsk);
1298                 rcu_read_unlock();
1299         } else {
1300                 tsk = current;
1301                 get_task_struct(tsk);
1302         }
1303
1304         ret = cgroup_attach_task(cgrp, tsk);
1305         put_task_struct(tsk);
1306         return ret;
1307 }
1308
1309 static int cgroup_tasks_write(struct cgroup *cgrp, struct cftype *cft, u64 pid)
1310 {
1311         int ret;
1312         if (!cgroup_lock_live_group(cgrp))
1313                 return -ENODEV;
1314         ret = attach_task_by_pid(cgrp, pid);
1315         cgroup_unlock();
1316         return ret;
1317 }
1318
1319 /* The various types of files and directories in a cgroup file system */
1320 enum cgroup_filetype {
1321         FILE_ROOT,
1322         FILE_DIR,
1323         FILE_TASKLIST,
1324         FILE_NOTIFY_ON_RELEASE,
1325         FILE_RELEASE_AGENT,
1326 };
1327
1328 /**
1329  * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive.
1330  * @cgrp: the cgroup to be checked for liveness
1331  *
1332  * On success, returns true; the lock should be later released with
1333  * cgroup_unlock(). On failure returns false with no lock held.
1334  */
1335 bool cgroup_lock_live_group(struct cgroup *cgrp)
1336 {
1337         mutex_lock(&cgroup_mutex);
1338         if (cgroup_is_removed(cgrp)) {
1339                 mutex_unlock(&cgroup_mutex);
1340                 return false;
1341         }
1342         return true;
1343 }
1344
1345 static int cgroup_release_agent_write(struct cgroup *cgrp, struct cftype *cft,
1346                                       const char *buffer)
1347 {
1348         BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
1349         if (!cgroup_lock_live_group(cgrp))
1350                 return -ENODEV;
1351         strcpy(cgrp->root->release_agent_path, buffer);
1352         cgroup_unlock();
1353         return 0;
1354 }
1355
1356 static int cgroup_release_agent_show(struct cgroup *cgrp, struct cftype *cft,
1357                                      struct seq_file *seq)
1358 {
1359         if (!cgroup_lock_live_group(cgrp))
1360                 return -ENODEV;
1361         seq_puts(seq, cgrp->root->release_agent_path);
1362         seq_putc(seq, '\n');
1363         cgroup_unlock();
1364         return 0;
1365 }
1366
1367 /* A buffer size big enough for numbers or short strings */
1368 #define CGROUP_LOCAL_BUFFER_SIZE 64
1369
1370 static ssize_t cgroup_write_X64(struct cgroup *cgrp, struct cftype *cft,
1371                                 struct file *file,
1372                                 const char __user *userbuf,
1373                                 size_t nbytes, loff_t *unused_ppos)
1374 {
1375         char buffer[CGROUP_LOCAL_BUFFER_SIZE];
1376         int retval = 0;
1377         char *end;
1378
1379         if (!nbytes)
1380                 return -EINVAL;
1381         if (nbytes >= sizeof(buffer))
1382                 return -E2BIG;
1383         if (copy_from_user(buffer, userbuf, nbytes))
1384                 return -EFAULT;
1385
1386         buffer[nbytes] = 0;     /* nul-terminate */
1387         strstrip(buffer);
1388         if (cft->write_u64) {
1389                 u64 val = simple_strtoull(buffer, &end, 0);
1390                 if (*end)
1391                         return -EINVAL;
1392                 retval = cft->write_u64(cgrp, cft, val);
1393         } else {
1394                 s64 val = simple_strtoll(buffer, &end, 0);
1395                 if (*end)
1396                         return -EINVAL;
1397                 retval = cft->write_s64(cgrp, cft, val);
1398         }
1399         if (!retval)
1400                 retval = nbytes;
1401         return retval;
1402 }
1403
1404 static ssize_t cgroup_write_string(struct cgroup *cgrp, struct cftype *cft,
1405                                    struct file *file,
1406                                    const char __user *userbuf,
1407                                    size_t nbytes, loff_t *unused_ppos)
1408 {
1409         char local_buffer[CGROUP_LOCAL_BUFFER_SIZE];
1410         int retval = 0;
1411         size_t max_bytes = cft->max_write_len;
1412         char *buffer = local_buffer;
1413
1414         if (!max_bytes)
1415                 max_bytes = sizeof(local_buffer) - 1;
1416         if (nbytes >= max_bytes)
1417                 return -E2BIG;
1418         /* Allocate a dynamic buffer if we need one */
1419         if (nbytes >= sizeof(local_buffer)) {
1420                 buffer = kmalloc(nbytes + 1, GFP_KERNEL);
1421                 if (buffer == NULL)
1422                         return -ENOMEM;
1423         }
1424         if (nbytes && copy_from_user(buffer, userbuf, nbytes)) {
1425                 retval = -EFAULT;
1426                 goto out;
1427         }
1428
1429         buffer[nbytes] = 0;     /* nul-terminate */
1430         strstrip(buffer);
1431         retval = cft->write_string(cgrp, cft, buffer);
1432         if (!retval)
1433                 retval = nbytes;
1434 out:
1435         if (buffer != local_buffer)
1436                 kfree(buffer);
1437         return retval;
1438 }
1439
1440 static ssize_t cgroup_file_write(struct file *file, const char __user *buf,
1441                                                 size_t nbytes, loff_t *ppos)
1442 {
1443         struct cftype *cft = __d_cft(file->f_dentry);
1444         struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
1445
1446         if (cgroup_is_removed(cgrp))
1447                 return -ENODEV;
1448         if (cft->write)
1449                 return cft->write(cgrp, cft, file, buf, nbytes, ppos);
1450         if (cft->write_u64 || cft->write_s64)
1451                 return cgroup_write_X64(cgrp, cft, file, buf, nbytes, ppos);
1452         if (cft->write_string)
1453                 return cgroup_write_string(cgrp, cft, file, buf, nbytes, ppos);
1454         if (cft->trigger) {
1455                 int ret = cft->trigger(cgrp, (unsigned int)cft->private);
1456                 return ret ? ret : nbytes;
1457         }
1458         return -EINVAL;
1459 }
1460
1461 static ssize_t cgroup_read_u64(struct cgroup *cgrp, struct cftype *cft,
1462                                struct file *file,
1463                                char __user *buf, size_t nbytes,
1464                                loff_t *ppos)
1465 {
1466         char tmp[CGROUP_LOCAL_BUFFER_SIZE];
1467         u64 val = cft->read_u64(cgrp, cft);
1468         int len = sprintf(tmp, "%llu\n", (unsigned long long) val);
1469
1470         return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
1471 }
1472
1473 static ssize_t cgroup_read_s64(struct cgroup *cgrp, struct cftype *cft,
1474                                struct file *file,
1475                                char __user *buf, size_t nbytes,
1476                                loff_t *ppos)
1477 {
1478         char tmp[CGROUP_LOCAL_BUFFER_SIZE];
1479         s64 val = cft->read_s64(cgrp, cft);
1480         int len = sprintf(tmp, "%lld\n", (long long) val);
1481
1482         return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
1483 }
1484
1485 static ssize_t cgroup_file_read(struct file *file, char __user *buf,
1486                                    size_t nbytes, loff_t *ppos)
1487 {
1488         struct cftype *cft = __d_cft(file->f_dentry);
1489         struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
1490
1491         if (cgroup_is_removed(cgrp))
1492                 return -ENODEV;
1493
1494         if (cft->read)
1495                 return cft->read(cgrp, cft, file, buf, nbytes, ppos);
1496         if (cft->read_u64)
1497                 return cgroup_read_u64(cgrp, cft, file, buf, nbytes, ppos);
1498         if (cft->read_s64)
1499                 return cgroup_read_s64(cgrp, cft, file, buf, nbytes, ppos);
1500         return -EINVAL;
1501 }
1502
1503 /*
1504  * seqfile ops/methods for returning structured data. Currently just
1505  * supports string->u64 maps, but can be extended in future.
1506  */
1507
1508 struct cgroup_seqfile_state {
1509         struct cftype *cft;
1510         struct cgroup *cgroup;
1511 };
1512
1513 static int cgroup_map_add(struct cgroup_map_cb *cb, const char *key, u64 value)
1514 {
1515         struct seq_file *sf = cb->state;
1516         return seq_printf(sf, "%s %llu\n", key, (unsigned long long)value);
1517 }
1518
1519 static int cgroup_seqfile_show(struct seq_file *m, void *arg)
1520 {
1521         struct cgroup_seqfile_state *state = m->private;
1522         struct cftype *cft = state->cft;
1523         if (cft->read_map) {
1524                 struct cgroup_map_cb cb = {
1525                         .fill = cgroup_map_add,
1526                         .state = m,
1527                 };
1528                 return cft->read_map(state->cgroup, cft, &cb);
1529         }
1530         return cft->read_seq_string(state->cgroup, cft, m);
1531 }
1532
1533 static int cgroup_seqfile_release(struct inode *inode, struct file *file)
1534 {
1535         struct seq_file *seq = file->private_data;
1536         kfree(seq->private);
1537         return single_release(inode, file);
1538 }
1539
1540 static struct file_operations cgroup_seqfile_operations = {
1541         .read = seq_read,
1542         .write = cgroup_file_write,
1543         .llseek = seq_lseek,
1544         .release = cgroup_seqfile_release,
1545 };
1546
1547 static int cgroup_file_open(struct inode *inode, struct file *file)
1548 {
1549         int err;
1550         struct cftype *cft;
1551
1552         err = generic_file_open(inode, file);
1553         if (err)
1554                 return err;
1555         cft = __d_cft(file->f_dentry);
1556
1557         if (cft->read_map || cft->read_seq_string) {
1558                 struct cgroup_seqfile_state *state =
1559                         kzalloc(sizeof(*state), GFP_USER);
1560                 if (!state)
1561                         return -ENOMEM;
1562                 state->cft = cft;
1563                 state->cgroup = __d_cgrp(file->f_dentry->d_parent);
1564                 file->f_op = &cgroup_seqfile_operations;
1565                 err = single_open(file, cgroup_seqfile_show, state);
1566                 if (err < 0)
1567                         kfree(state);
1568         } else if (cft->open)
1569                 err = cft->open(inode, file);
1570         else
1571                 err = 0;
1572
1573         return err;
1574 }
1575
1576 static int cgroup_file_release(struct inode *inode, struct file *file)
1577 {
1578         struct cftype *cft = __d_cft(file->f_dentry);
1579         if (cft->release)
1580                 return cft->release(inode, file);
1581         return 0;
1582 }
1583
1584 /*
1585  * cgroup_rename - Only allow simple rename of directories in place.
1586  */
1587 static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry,
1588                             struct inode *new_dir, struct dentry *new_dentry)
1589 {
1590         if (!S_ISDIR(old_dentry->d_inode->i_mode))
1591                 return -ENOTDIR;
1592         if (new_dentry->d_inode)
1593                 return -EEXIST;
1594         if (old_dir != new_dir)
1595                 return -EIO;
1596         return simple_rename(old_dir, old_dentry, new_dir, new_dentry);
1597 }
1598
1599 static struct file_operations cgroup_file_operations = {
1600         .read = cgroup_file_read,
1601         .write = cgroup_file_write,
1602         .llseek = generic_file_llseek,
1603         .open = cgroup_file_open,
1604         .release = cgroup_file_release,
1605 };
1606
1607 static struct inode_operations cgroup_dir_inode_operations = {
1608         .lookup = simple_lookup,
1609         .mkdir = cgroup_mkdir,
1610         .rmdir = cgroup_rmdir,
1611         .rename = cgroup_rename,
1612 };
1613
1614 static int cgroup_create_file(struct dentry *dentry, int mode,
1615                                 struct super_block *sb)
1616 {
1617         static struct dentry_operations cgroup_dops = {
1618                 .d_iput = cgroup_diput,
1619         };
1620
1621         struct inode *inode;
1622
1623         if (!dentry)
1624                 return -ENOENT;
1625         if (dentry->d_inode)
1626                 return -EEXIST;
1627
1628         inode = cgroup_new_inode(mode, sb);
1629         if (!inode)
1630                 return -ENOMEM;
1631
1632         if (S_ISDIR(mode)) {
1633                 inode->i_op = &cgroup_dir_inode_operations;
1634                 inode->i_fop = &simple_dir_operations;
1635
1636                 /* start off with i_nlink == 2 (for "." entry) */
1637                 inc_nlink(inode);
1638
1639                 /* start with the directory inode held, so that we can
1640                  * populate it without racing with another mkdir */
1641                 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
1642         } else if (S_ISREG(mode)) {
1643                 inode->i_size = 0;
1644                 inode->i_fop = &cgroup_file_operations;
1645         }
1646         dentry->d_op = &cgroup_dops;
1647         d_instantiate(dentry, inode);
1648         dget(dentry);   /* Extra count - pin the dentry in core */
1649         return 0;
1650 }
1651
1652 /*
1653  * cgroup_create_dir - create a directory for an object.
1654  * @cgrp: the cgroup we create the directory for. It must have a valid
1655  *        ->parent field. And we are going to fill its ->dentry field.
1656  * @dentry: dentry of the new cgroup
1657  * @mode: mode to set on new directory.
1658  */
1659 static int cgroup_create_dir(struct cgroup *cgrp, struct dentry *dentry,
1660                                 int mode)
1661 {
1662         struct dentry *parent;
1663         int error = 0;
1664
1665         parent = cgrp->parent->dentry;
1666         error = cgroup_create_file(dentry, S_IFDIR | mode, cgrp->root->sb);
1667         if (!error) {
1668                 dentry->d_fsdata = cgrp;
1669                 inc_nlink(parent->d_inode);
1670                 cgrp->dentry = dentry;
1671                 dget(dentry);
1672         }
1673         dput(dentry);
1674
1675         return error;
1676 }
1677
1678 int cgroup_add_file(struct cgroup *cgrp,
1679                        struct cgroup_subsys *subsys,
1680                        const struct cftype *cft)
1681 {
1682         struct dentry *dir = cgrp->dentry;
1683         struct dentry *dentry;
1684         int error;
1685
1686         char name[MAX_CGROUP_TYPE_NAMELEN + MAX_CFTYPE_NAME + 2] = { 0 };
1687         if (subsys && !test_bit(ROOT_NOPREFIX, &cgrp->root->flags)) {
1688                 strcpy(name, subsys->name);
1689                 strcat(name, ".");
1690         }
1691         strcat(name, cft->name);
1692         BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex));
1693         dentry = lookup_one_len(name, dir, strlen(name));
1694         if (!IS_ERR(dentry)) {
1695                 error = cgroup_create_file(dentry, 0644 | S_IFREG,
1696                                                 cgrp->root->sb);
1697                 if (!error)
1698                         dentry->d_fsdata = (void *)cft;
1699                 dput(dentry);
1700         } else
1701                 error = PTR_ERR(dentry);
1702         return error;
1703 }
1704
1705 int cgroup_add_files(struct cgroup *cgrp,
1706                         struct cgroup_subsys *subsys,
1707                         const struct cftype cft[],
1708                         int count)
1709 {
1710         int i, err;
1711         for (i = 0; i < count; i++) {
1712                 err = cgroup_add_file(cgrp, subsys, &cft[i]);
1713                 if (err)
1714                         return err;
1715         }
1716         return 0;
1717 }
1718
1719 /**
1720  * cgroup_task_count - count the number of tasks in a cgroup.
1721  * @cgrp: the cgroup in question
1722  *
1723  * Return the number of tasks in the cgroup.
1724  */
1725 int cgroup_task_count(const struct cgroup *cgrp)
1726 {
1727         int count = 0;
1728         struct cg_cgroup_link *link;
1729
1730         read_lock(&css_set_lock);
1731         list_for_each_entry(link, &cgrp->css_sets, cgrp_link_list) {
1732                 count += atomic_read(&link->cg->refcount);
1733         }
1734         read_unlock(&css_set_lock);
1735         return count;
1736 }
1737
1738 /*
1739  * Advance a list_head iterator.  The iterator should be positioned at
1740  * the start of a css_set
1741  */
1742 static void cgroup_advance_iter(struct cgroup *cgrp,
1743                                           struct cgroup_iter *it)
1744 {
1745         struct list_head *l = it->cg_link;
1746         struct cg_cgroup_link *link;
1747         struct css_set *cg;
1748
1749         /* Advance to the next non-empty css_set */
1750         do {
1751                 l = l->next;
1752                 if (l == &cgrp->css_sets) {
1753                         it->cg_link = NULL;
1754                         return;
1755                 }
1756                 link = list_entry(l, struct cg_cgroup_link, cgrp_link_list);
1757                 cg = link->cg;
1758         } while (list_empty(&cg->tasks));
1759         it->cg_link = l;
1760         it->task = cg->tasks.next;
1761 }
1762
1763 /*
1764  * To reduce the fork() overhead for systems that are not actually
1765  * using their cgroups capability, we don't maintain the lists running
1766  * through each css_set to its tasks until we see the list actually
1767  * used - in other words after the first call to cgroup_iter_start().
1768  *
1769  * The tasklist_lock is not held here, as do_each_thread() and
1770  * while_each_thread() are protected by RCU.
1771  */
1772 static void cgroup_enable_task_cg_lists(void)
1773 {
1774         struct task_struct *p, *g;
1775         write_lock(&css_set_lock);
1776         use_task_css_set_links = 1;
1777         do_each_thread(g, p) {
1778                 task_lock(p);
1779                 /*
1780                  * We should check if the process is exiting, otherwise
1781                  * it will race with cgroup_exit() in that the list
1782                  * entry won't be deleted though the process has exited.
1783                  */
1784                 if (!(p->flags & PF_EXITING) && list_empty(&p->cg_list))
1785                         list_add(&p->cg_list, &p->cgroups->tasks);
1786                 task_unlock(p);
1787         } while_each_thread(g, p);
1788         write_unlock(&css_set_lock);
1789 }
1790
1791 void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it)
1792 {
1793         /*
1794          * The first time anyone tries to iterate across a cgroup,
1795          * we need to enable the list linking each css_set to its
1796          * tasks, and fix up all existing tasks.
1797          */
1798         if (!use_task_css_set_links)
1799                 cgroup_enable_task_cg_lists();
1800
1801         read_lock(&css_set_lock);
1802         it->cg_link = &cgrp->css_sets;
1803         cgroup_advance_iter(cgrp, it);
1804 }
1805
1806 struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
1807                                         struct cgroup_iter *it)
1808 {
1809         struct task_struct *res;
1810         struct list_head *l = it->task;
1811         struct cg_cgroup_link *link;
1812
1813         /* If the iterator cg is NULL, we have no tasks */
1814         if (!it->cg_link)
1815                 return NULL;
1816         res = list_entry(l, struct task_struct, cg_list);
1817         /* Advance iterator to find next entry */
1818         l = l->next;
1819         link = list_entry(it->cg_link, struct cg_cgroup_link, cgrp_link_list);
1820         if (l == &link->cg->tasks) {
1821                 /* We reached the end of this task list - move on to
1822                  * the next cg_cgroup_link */
1823                 cgroup_advance_iter(cgrp, it);
1824         } else {
1825                 it->task = l;
1826         }
1827         return res;
1828 }
1829
1830 void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it)
1831 {
1832         read_unlock(&css_set_lock);
1833 }
1834
1835 static inline int started_after_time(struct task_struct *t1,
1836                                      struct timespec *time,
1837                                      struct task_struct *t2)
1838 {
1839         int start_diff = timespec_compare(&t1->start_time, time);
1840         if (start_diff > 0) {
1841                 return 1;
1842         } else if (start_diff < 0) {
1843                 return 0;
1844         } else {
1845                 /*
1846                  * Arbitrarily, if two processes started at the same
1847                  * time, we'll say that the lower pointer value
1848                  * started first. Note that t2 may have exited by now
1849                  * so this may not be a valid pointer any longer, but
1850                  * that's fine - it still serves to distinguish
1851                  * between two tasks started (effectively) simultaneously.
1852                  */
1853                 return t1 > t2;
1854         }
1855 }
1856
1857 /*
1858  * This function is a callback from heap_insert() and is used to order
1859  * the heap.
1860  * In this case we order the heap in descending task start time.
1861  */
1862 static inline int started_after(void *p1, void *p2)
1863 {
1864         struct task_struct *t1 = p1;
1865         struct task_struct *t2 = p2;
1866         return started_after_time(t1, &t2->start_time, t2);
1867 }
1868
1869 /**
1870  * cgroup_scan_tasks - iterate though all the tasks in a cgroup
1871  * @scan: struct cgroup_scanner containing arguments for the scan
1872  *
1873  * Arguments include pointers to callback functions test_task() and
1874  * process_task().
1875  * Iterate through all the tasks in a cgroup, calling test_task() for each,
1876  * and if it returns true, call process_task() for it also.
1877  * The test_task pointer may be NULL, meaning always true (select all tasks).
1878  * Effectively duplicates cgroup_iter_{start,next,end}()
1879  * but does not lock css_set_lock for the call to process_task().
1880  * The struct cgroup_scanner may be embedded in any structure of the caller's
1881  * creation.
1882  * It is guaranteed that process_task() will act on every task that
1883  * is a member of the cgroup for the duration of this call. This
1884  * function may or may not call process_task() for tasks that exit
1885  * or move to a different cgroup during the call, or are forked or
1886  * move into the cgroup during the call.
1887  *
1888  * Note that test_task() may be called with locks held, and may in some
1889  * situations be called multiple times for the same task, so it should
1890  * be cheap.
1891  * If the heap pointer in the struct cgroup_scanner is non-NULL, a heap has been
1892  * pre-allocated and will be used for heap operations (and its "gt" member will
1893  * be overwritten), else a temporary heap will be used (allocation of which
1894  * may cause this function to fail).
1895  */
1896 int cgroup_scan_tasks(struct cgroup_scanner *scan)
1897 {
1898         int retval, i;
1899         struct cgroup_iter it;
1900         struct task_struct *p, *dropped;
1901         /* Never dereference latest_task, since it's not refcounted */
1902         struct task_struct *latest_task = NULL;
1903         struct ptr_heap tmp_heap;
1904         struct ptr_heap *heap;
1905         struct timespec latest_time = { 0, 0 };
1906
1907         if (scan->heap) {
1908                 /* The caller supplied our heap and pre-allocated its memory */
1909                 heap = scan->heap;
1910                 heap->gt = &started_after;
1911         } else {
1912                 /* We need to allocate our own heap memory */
1913                 heap = &tmp_heap;
1914                 retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after);
1915                 if (retval)
1916                         /* cannot allocate the heap */
1917                         return retval;
1918         }
1919
1920  again:
1921         /*
1922          * Scan tasks in the cgroup, using the scanner's "test_task" callback
1923          * to determine which are of interest, and using the scanner's
1924          * "process_task" callback to process any of them that need an update.
1925          * Since we don't want to hold any locks during the task updates,
1926          * gather tasks to be processed in a heap structure.
1927          * The heap is sorted by descending task start time.
1928          * If the statically-sized heap fills up, we overflow tasks that
1929          * started later, and in future iterations only consider tasks that
1930          * started after the latest task in the previous pass. This
1931          * guarantees forward progress and that we don't miss any tasks.
1932          */
1933         heap->size = 0;
1934         cgroup_iter_start(scan->cg, &it);
1935         while ((p = cgroup_iter_next(scan->cg, &it))) {
1936                 /*
1937                  * Only affect tasks that qualify per the caller's callback,
1938                  * if he provided one
1939                  */
1940                 if (scan->test_task && !scan->test_task(p, scan))
1941                         continue;
1942                 /*
1943                  * Only process tasks that started after the last task
1944                  * we processed
1945                  */
1946                 if (!started_after_time(p, &latest_time, latest_task))
1947                         continue;
1948                 dropped = heap_insert(heap, p);
1949                 if (dropped == NULL) {
1950                         /*
1951                          * The new task was inserted; the heap wasn't
1952                          * previously full
1953                          */
1954                         get_task_struct(p);
1955                 } else if (dropped != p) {
1956                         /*
1957                          * The new task was inserted, and pushed out a
1958                          * different task
1959                          */
1960                         get_task_struct(p);
1961                         put_task_struct(dropped);
1962                 }
1963                 /*
1964                  * Else the new task was newer than anything already in
1965                  * the heap and wasn't inserted
1966                  */
1967         }
1968         cgroup_iter_end(scan->cg, &it);
1969
1970         if (heap->size) {
1971                 for (i = 0; i < heap->size; i++) {
1972                         struct task_struct *q = heap->ptrs[i];
1973                         if (i == 0) {
1974                                 latest_time = q->start_time;
1975                                 latest_task = q;
1976                         }
1977                         /* Process the task per the caller's callback */
1978                         scan->process_task(q, scan);
1979                         put_task_struct(q);
1980                 }
1981                 /*
1982                  * If we had to process any tasks at all, scan again
1983                  * in case some of them were in the middle of forking
1984                  * children that didn't get processed.
1985                  * Not the most efficient way to do it, but it avoids
1986                  * having to take callback_mutex in the fork path
1987                  */
1988                 goto again;
1989         }
1990         if (heap == &tmp_heap)
1991                 heap_free(&tmp_heap);
1992         return 0;
1993 }
1994
1995 /*
1996  * Stuff for reading the 'tasks' file.
1997  *
1998  * Reading this file can return large amounts of data if a cgroup has
1999  * *lots* of attached tasks. So it may need several calls to read(),
2000  * but we cannot guarantee that the information we produce is correct
2001  * unless we produce it entirely atomically.
2002  *
2003  */
2004
2005 /*
2006  * Load into 'pidarray' up to 'npids' of the tasks using cgroup
2007  * 'cgrp'.  Return actual number of pids loaded.  No need to
2008  * task_lock(p) when reading out p->cgroup, since we're in an RCU
2009  * read section, so the css_set can't go away, and is
2010  * immutable after creation.
2011  */
2012 static int pid_array_load(pid_t *pidarray, int npids, struct cgroup *cgrp)
2013 {
2014         int n = 0;
2015         struct cgroup_iter it;
2016         struct task_struct *tsk;
2017         cgroup_iter_start(cgrp, &it);
2018         while ((tsk = cgroup_iter_next(cgrp, &it))) {
2019                 if (unlikely(n == npids))
2020                         break;
2021                 pidarray[n++] = task_pid_vnr(tsk);
2022         }
2023         cgroup_iter_end(cgrp, &it);
2024         return n;
2025 }
2026
2027 /**
2028  * cgroupstats_build - build and fill cgroupstats
2029  * @stats: cgroupstats to fill information into
2030  * @dentry: A dentry entry belonging to the cgroup for which stats have
2031  * been requested.
2032  *
2033  * Build and fill cgroupstats so that taskstats can export it to user
2034  * space.
2035  */
2036 int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
2037 {
2038         int ret = -EINVAL;
2039         struct cgroup *cgrp;
2040         struct cgroup_iter it;
2041         struct task_struct *tsk;
2042
2043         /*
2044          * Validate dentry by checking the superblock operations,
2045          * and make sure it's a directory.
2046          */
2047         if (dentry->d_sb->s_op != &cgroup_ops ||
2048             !S_ISDIR(dentry->d_inode->i_mode))
2049                  goto err;
2050
2051         ret = 0;
2052         cgrp = dentry->d_fsdata;
2053         rcu_read_lock();
2054
2055         cgroup_iter_start(cgrp, &it);
2056         while ((tsk = cgroup_iter_next(cgrp, &it))) {
2057                 switch (tsk->state) {
2058                 case TASK_RUNNING:
2059                         stats->nr_running++;
2060                         break;
2061                 case TASK_INTERRUPTIBLE:
2062                         stats->nr_sleeping++;
2063                         break;
2064                 case TASK_UNINTERRUPTIBLE:
2065                         stats->nr_uninterruptible++;
2066                         break;
2067                 case TASK_STOPPED:
2068                         stats->nr_stopped++;
2069                         break;
2070                 default:
2071                         if (delayacct_is_task_waiting_on_io(tsk))
2072                                 stats->nr_io_wait++;
2073                         break;
2074                 }
2075         }
2076         cgroup_iter_end(cgrp, &it);
2077
2078         rcu_read_unlock();
2079 err:
2080         return ret;
2081 }
2082
2083 static int cmppid(const void *a, const void *b)
2084 {
2085         return *(pid_t *)a - *(pid_t *)b;
2086 }
2087
2088
2089 /*
2090  * seq_file methods for the "tasks" file. The seq_file position is the
2091  * next pid to display; the seq_file iterator is a pointer to the pid
2092  * in the cgroup->tasks_pids array.
2093  */
2094
2095 static void *cgroup_tasks_start(struct seq_file *s, loff_t *pos)
2096 {
2097         /*
2098          * Initially we receive a position value that corresponds to
2099          * one more than the last pid shown (or 0 on the first call or
2100          * after a seek to the start). Use a binary-search to find the
2101          * next pid to display, if any
2102          */
2103         struct cgroup *cgrp = s->private;
2104         int index = 0, pid = *pos;
2105         int *iter;
2106
2107         down_read(&cgrp->pids_mutex);
2108         if (pid) {
2109                 int end = cgrp->pids_length;
2110
2111                 while (index < end) {
2112                         int mid = (index + end) / 2;
2113                         if (cgrp->tasks_pids[mid] == pid) {
2114                                 index = mid;
2115                                 break;
2116                         } else if (cgrp->tasks_pids[mid] <= pid)
2117                                 index = mid + 1;
2118                         else
2119                                 end = mid;
2120                 }
2121         }
2122         /* If we're off the end of the array, we're done */
2123         if (index >= cgrp->pids_length)
2124                 return NULL;
2125         /* Update the abstract position to be the actual pid that we found */
2126         iter = cgrp->tasks_pids + index;
2127         *pos = *iter;
2128         return iter;
2129 }
2130
2131 static void cgroup_tasks_stop(struct seq_file *s, void *v)
2132 {
2133         struct cgroup *cgrp = s->private;
2134         up_read(&cgrp->pids_mutex);
2135 }
2136
2137 static void *cgroup_tasks_next(struct seq_file *s, void *v, loff_t *pos)
2138 {
2139         struct cgroup *cgrp = s->private;
2140         int *p = v;
2141         int *end = cgrp->tasks_pids + cgrp->pids_length;
2142
2143         /*
2144          * Advance to the next pid in the array. If this goes off the
2145          * end, we're done
2146          */
2147         p++;
2148         if (p >= end) {
2149                 return NULL;
2150         } else {
2151                 *pos = *p;
2152                 return p;
2153         }
2154 }
2155
2156 static int cgroup_tasks_show(struct seq_file *s, void *v)
2157 {
2158         return seq_printf(s, "%d\n", *(int *)v);
2159 }
2160
2161 static struct seq_operations cgroup_tasks_seq_operations = {
2162         .start = cgroup_tasks_start,
2163         .stop = cgroup_tasks_stop,
2164         .next = cgroup_tasks_next,
2165         .show = cgroup_tasks_show,
2166 };
2167
2168 static void release_cgroup_pid_array(struct cgroup *cgrp)
2169 {
2170         down_write(&cgrp->pids_mutex);
2171         BUG_ON(!cgrp->pids_use_count);
2172         if (!--cgrp->pids_use_count) {
2173                 kfree(cgrp->tasks_pids);
2174                 cgrp->tasks_pids = NULL;
2175                 cgrp->pids_length = 0;
2176         }
2177         up_write(&cgrp->pids_mutex);
2178 }
2179
2180 static int cgroup_tasks_release(struct inode *inode, struct file *file)
2181 {
2182         struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
2183
2184         if (!(file->f_mode & FMODE_READ))
2185                 return 0;
2186
2187         release_cgroup_pid_array(cgrp);
2188         return seq_release(inode, file);
2189 }
2190
2191 static struct file_operations cgroup_tasks_operations = {
2192         .read = seq_read,
2193         .llseek = seq_lseek,
2194         .write = cgroup_file_write,
2195         .release = cgroup_tasks_release,
2196 };
2197
2198 /*
2199  * Handle an open on 'tasks' file.  Prepare an array containing the
2200  * process id's of tasks currently attached to the cgroup being opened.
2201  */
2202
2203 static int cgroup_tasks_open(struct inode *unused, struct file *file)
2204 {
2205         struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
2206         pid_t *pidarray;
2207         int npids;
2208         int retval;
2209
2210         /* Nothing to do for write-only files */
2211         if (!(file->f_mode & FMODE_READ))
2212                 return 0;
2213
2214         /*
2215          * If cgroup gets more users after we read count, we won't have
2216          * enough space - tough.  This race is indistinguishable to the
2217          * caller from the case that the additional cgroup users didn't
2218          * show up until sometime later on.
2219          */
2220         npids = cgroup_task_count(cgrp);
2221         pidarray = kmalloc(npids * sizeof(pid_t), GFP_KERNEL);
2222         if (!pidarray)
2223                 return -ENOMEM;
2224         npids = pid_array_load(pidarray, npids, cgrp);
2225         sort(pidarray, npids, sizeof(pid_t), cmppid, NULL);
2226
2227         /*
2228          * Store the array in the cgroup, freeing the old
2229          * array if necessary
2230          */
2231         down_write(&cgrp->pids_mutex);
2232         kfree(cgrp->tasks_pids);
2233         cgrp->tasks_pids = pidarray;
2234         cgrp->pids_length = npids;
2235         cgrp->pids_use_count++;
2236         up_write(&cgrp->pids_mutex);
2237
2238         file->f_op = &cgroup_tasks_operations;
2239
2240         retval = seq_open(file, &cgroup_tasks_seq_operations);
2241         if (retval) {
2242                 release_cgroup_pid_array(cgrp);
2243                 return retval;
2244         }
2245         ((struct seq_file *)file->private_data)->private = cgrp;
2246         return 0;
2247 }
2248
2249 static u64 cgroup_read_notify_on_release(struct cgroup *cgrp,
2250                                             struct cftype *cft)
2251 {
2252         return notify_on_release(cgrp);
2253 }
2254
2255 static int cgroup_write_notify_on_release(struct cgroup *cgrp,
2256                                           struct cftype *cft,
2257                                           u64 val)
2258 {
2259         clear_bit(CGRP_RELEASABLE, &cgrp->flags);
2260         if (val)
2261                 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
2262         else
2263                 clear_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
2264         return 0;
2265 }
2266
2267 /*
2268  * for the common functions, 'private' gives the type of file
2269  */
2270 static struct cftype files[] = {
2271         {
2272                 .name = "tasks",
2273                 .open = cgroup_tasks_open,
2274                 .write_u64 = cgroup_tasks_write,
2275                 .release = cgroup_tasks_release,
2276                 .private = FILE_TASKLIST,
2277         },
2278
2279         {
2280                 .name = "notify_on_release",
2281                 .read_u64 = cgroup_read_notify_on_release,
2282                 .write_u64 = cgroup_write_notify_on_release,
2283                 .private = FILE_NOTIFY_ON_RELEASE,
2284         },
2285 };
2286
2287 static struct cftype cft_release_agent = {
2288         .name = "release_agent",
2289         .read_seq_string = cgroup_release_agent_show,
2290         .write_string = cgroup_release_agent_write,
2291         .max_write_len = PATH_MAX,
2292         .private = FILE_RELEASE_AGENT,
2293 };
2294
2295 static int cgroup_populate_dir(struct cgroup *cgrp)
2296 {
2297         int err;
2298         struct cgroup_subsys *ss;
2299
2300         /* First clear out any existing files */
2301         cgroup_clear_directory(cgrp->dentry);
2302
2303         err = cgroup_add_files(cgrp, NULL, files, ARRAY_SIZE(files));
2304         if (err < 0)
2305                 return err;
2306
2307         if (cgrp == cgrp->top_cgroup) {
2308                 if ((err = cgroup_add_file(cgrp, NULL, &cft_release_agent)) < 0)
2309                         return err;
2310         }
2311
2312         for_each_subsys(cgrp->root, ss) {
2313                 if (ss->populate && (err = ss->populate(ss, cgrp)) < 0)
2314                         return err;
2315         }
2316
2317         return 0;
2318 }
2319
2320 static void init_cgroup_css(struct cgroup_subsys_state *css,
2321                                struct cgroup_subsys *ss,
2322                                struct cgroup *cgrp)
2323 {
2324         css->cgroup = cgrp;
2325         atomic_set(&css->refcnt, 0);
2326         css->flags = 0;
2327         if (cgrp == dummytop)
2328                 set_bit(CSS_ROOT, &css->flags);
2329         BUG_ON(cgrp->subsys[ss->subsys_id]);
2330         cgrp->subsys[ss->subsys_id] = css;
2331 }
2332
2333 /*
2334  * cgroup_create - create a cgroup
2335  * @parent: cgroup that will be parent of the new cgroup
2336  * @dentry: dentry of the new cgroup
2337  * @mode: mode to set on new inode
2338  *
2339  * Must be called with the mutex on the parent inode held
2340  */
2341 static long cgroup_create(struct cgroup *parent, struct dentry *dentry,
2342                              int mode)
2343 {
2344         struct cgroup *cgrp;
2345         struct cgroupfs_root *root = parent->root;
2346         int err = 0;
2347         struct cgroup_subsys *ss;
2348         struct super_block *sb = root->sb;
2349
2350         cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
2351         if (!cgrp)
2352                 return -ENOMEM;
2353
2354         /* Grab a reference on the superblock so the hierarchy doesn't
2355          * get deleted on unmount if there are child cgroups.  This
2356          * can be done outside cgroup_mutex, since the sb can't
2357          * disappear while someone has an open control file on the
2358          * fs */
2359         atomic_inc(&sb->s_active);
2360
2361         mutex_lock(&cgroup_mutex);
2362
2363         init_cgroup_housekeeping(cgrp);
2364
2365         cgrp->parent = parent;
2366         cgrp->root = parent->root;
2367         cgrp->top_cgroup = parent->top_cgroup;
2368
2369         if (notify_on_release(parent))
2370                 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
2371
2372         for_each_subsys(root, ss) {
2373                 struct cgroup_subsys_state *css = ss->create(ss, cgrp);
2374                 if (IS_ERR(css)) {
2375                         err = PTR_ERR(css);
2376                         goto err_destroy;
2377                 }
2378                 init_cgroup_css(css, ss, cgrp);
2379         }
2380
2381         list_add(&cgrp->sibling, &cgrp->parent->children);
2382         root->number_of_cgroups++;
2383
2384         err = cgroup_create_dir(cgrp, dentry, mode);
2385         if (err < 0)
2386                 goto err_remove;
2387
2388         /* The cgroup directory was pre-locked for us */
2389         BUG_ON(!mutex_is_locked(&cgrp->dentry->d_inode->i_mutex));
2390
2391         err = cgroup_populate_dir(cgrp);
2392         /* If err < 0, we have a half-filled directory - oh well ;) */
2393
2394         mutex_unlock(&cgroup_mutex);
2395         mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
2396
2397         return 0;
2398
2399  err_remove:
2400
2401         list_del(&cgrp->sibling);
2402         root->number_of_cgroups--;
2403
2404  err_destroy:
2405
2406         for_each_subsys(root, ss) {
2407                 if (cgrp->subsys[ss->subsys_id])
2408                         ss->destroy(ss, cgrp);
2409         }
2410
2411         mutex_unlock(&cgroup_mutex);
2412
2413         /* Release the reference count that we took on the superblock */
2414         deactivate_super(sb);
2415
2416         kfree(cgrp);
2417         return err;
2418 }
2419
2420 static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2421 {
2422         struct cgroup *c_parent = dentry->d_parent->d_fsdata;
2423
2424         /* the vfs holds inode->i_mutex already */
2425         return cgroup_create(c_parent, dentry, mode | S_IFDIR);
2426 }
2427
2428 static int cgroup_has_css_refs(struct cgroup *cgrp)
2429 {
2430         /* Check the reference count on each subsystem. Since we
2431          * already established that there are no tasks in the
2432          * cgroup, if the css refcount is also 0, then there should
2433          * be no outstanding references, so the subsystem is safe to
2434          * destroy. We scan across all subsystems rather than using
2435          * the per-hierarchy linked list of mounted subsystems since
2436          * we can be called via check_for_release() with no
2437          * synchronization other than RCU, and the subsystem linked
2438          * list isn't RCU-safe */
2439         int i;
2440         for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2441                 struct cgroup_subsys *ss = subsys[i];
2442                 struct cgroup_subsys_state *css;
2443                 /* Skip subsystems not in this hierarchy */
2444                 if (ss->root != cgrp->root)
2445                         continue;
2446                 css = cgrp->subsys[ss->subsys_id];
2447                 /* When called from check_for_release() it's possible
2448                  * that by this point the cgroup has been removed
2449                  * and the css deleted. But a false-positive doesn't
2450                  * matter, since it can only happen if the cgroup
2451                  * has been deleted and hence no longer needs the
2452                  * release agent to be called anyway. */
2453                 if (css && atomic_read(&css->refcnt))
2454                         return 1;
2455         }
2456         return 0;
2457 }
2458
2459 static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry)
2460 {
2461         struct cgroup *cgrp = dentry->d_fsdata;
2462         struct dentry *d;
2463         struct cgroup *parent;
2464
2465         /* the vfs holds both inode->i_mutex already */
2466
2467         mutex_lock(&cgroup_mutex);
2468         if (atomic_read(&cgrp->count) != 0) {
2469                 mutex_unlock(&cgroup_mutex);
2470                 return -EBUSY;
2471         }
2472         if (!list_empty(&cgrp->children)) {
2473                 mutex_unlock(&cgroup_mutex);
2474                 return -EBUSY;
2475         }
2476         mutex_unlock(&cgroup_mutex);
2477
2478         /*
2479          * Call pre_destroy handlers of subsys. Notify subsystems
2480          * that rmdir() request comes.
2481          */
2482         cgroup_call_pre_destroy(cgrp);
2483
2484         mutex_lock(&cgroup_mutex);
2485         parent = cgrp->parent;
2486
2487         if (atomic_read(&cgrp->count)
2488             || !list_empty(&cgrp->children)
2489             || cgroup_has_css_refs(cgrp)) {
2490                 mutex_unlock(&cgroup_mutex);
2491                 return -EBUSY;
2492         }
2493
2494         spin_lock(&release_list_lock);
2495         set_bit(CGRP_REMOVED, &cgrp->flags);
2496         if (!list_empty(&cgrp->release_list))
2497                 list_del(&cgrp->release_list);
2498         spin_unlock(&release_list_lock);
2499         /* delete my sibling from parent->children */
2500         list_del(&cgrp->sibling);
2501         spin_lock(&cgrp->dentry->d_lock);
2502         d = dget(cgrp->dentry);
2503         spin_unlock(&d->d_lock);
2504
2505         cgroup_d_remove_dir(d);
2506         dput(d);
2507
2508         set_bit(CGRP_RELEASABLE, &parent->flags);
2509         check_for_release(parent);
2510
2511         mutex_unlock(&cgroup_mutex);
2512         return 0;
2513 }
2514
2515 static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
2516 {
2517         struct cgroup_subsys_state *css;
2518
2519         printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
2520
2521         /* Create the top cgroup state for this subsystem */
2522         ss->root = &rootnode;
2523         css = ss->create(ss, dummytop);
2524         /* We don't handle early failures gracefully */
2525         BUG_ON(IS_ERR(css));
2526         init_cgroup_css(css, ss, dummytop);
2527
2528         /* Update the init_css_set to contain a subsys
2529          * pointer to this state - since the subsystem is
2530          * newly registered, all tasks and hence the
2531          * init_css_set is in the subsystem's top cgroup. */
2532         init_css_set.subsys[ss->subsys_id] = dummytop->subsys[ss->subsys_id];
2533
2534         need_forkexit_callback |= ss->fork || ss->exit;
2535
2536         /* At system boot, before all subsystems have been
2537          * registered, no tasks have been forked, so we don't
2538          * need to invoke fork callbacks here. */
2539         BUG_ON(!list_empty(&init_task.tasks));
2540
2541         ss->active = 1;
2542 }
2543
2544 /**
2545  * cgroup_init_early - cgroup initialization at system boot
2546  *
2547  * Initialize cgroups at system boot, and initialize any
2548  * subsystems that request early init.
2549  */
2550 int __init cgroup_init_early(void)
2551 {
2552         int i;
2553         atomic_set(&init_css_set.refcount, 1);
2554         INIT_LIST_HEAD(&init_css_set.cg_links);
2555         INIT_LIST_HEAD(&init_css_set.tasks);
2556         INIT_HLIST_NODE(&init_css_set.hlist);
2557         css_set_count = 1;
2558         init_cgroup_root(&rootnode);
2559         list_add(&rootnode.root_list, &roots);
2560         root_count = 1;
2561         init_task.cgroups = &init_css_set;
2562
2563         init_css_set_link.cg = &init_css_set;
2564         list_add(&init_css_set_link.cgrp_link_list,
2565                  &rootnode.top_cgroup.css_sets);
2566         list_add(&init_css_set_link.cg_link_list,
2567                  &init_css_set.cg_links);
2568
2569         for (i = 0; i < CSS_SET_TABLE_SIZE; i++)
2570                 INIT_HLIST_HEAD(&css_set_table[i]);
2571
2572         for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2573                 struct cgroup_subsys *ss = subsys[i];
2574
2575                 BUG_ON(!ss->name);
2576                 BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN);
2577                 BUG_ON(!ss->create);
2578                 BUG_ON(!ss->destroy);
2579                 if (ss->subsys_id != i) {
2580                         printk(KERN_ERR "cgroup: Subsys %s id == %d\n",
2581                                ss->name, ss->subsys_id);
2582                         BUG();
2583                 }
2584
2585                 if (ss->early_init)
2586                         cgroup_init_subsys(ss);
2587         }
2588         return 0;
2589 }
2590
2591 /**
2592  * cgroup_init - cgroup initialization
2593  *
2594  * Register cgroup filesystem and /proc file, and initialize
2595  * any subsystems that didn't request early init.
2596  */
2597 int __init cgroup_init(void)
2598 {
2599         int err;
2600         int i;
2601         struct hlist_head *hhead;
2602
2603         err = bdi_init(&cgroup_backing_dev_info);
2604         if (err)
2605                 return err;
2606
2607         for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2608                 struct cgroup_subsys *ss = subsys[i];
2609                 if (!ss->early_init)
2610                         cgroup_init_subsys(ss);
2611         }
2612
2613         /* Add init_css_set to the hash table */
2614         hhead = css_set_hash(init_css_set.subsys);
2615         hlist_add_head(&init_css_set.hlist, hhead);
2616
2617         err = register_filesystem(&cgroup_fs_type);
2618         if (err < 0)
2619                 goto out;
2620
2621         proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
2622
2623 out:
2624         if (err)
2625                 bdi_destroy(&cgroup_backing_dev_info);
2626
2627         return err;
2628 }
2629
2630 /*
2631  * proc_cgroup_show()
2632  *  - Print task's cgroup paths into seq_file, one line for each hierarchy
2633  *  - Used for /proc/<pid>/cgroup.
2634  *  - No need to task_lock(tsk) on this tsk->cgroup reference, as it
2635  *    doesn't really matter if tsk->cgroup changes after we read it,
2636  *    and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
2637  *    anyway.  No need to check that tsk->cgroup != NULL, thanks to
2638  *    the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
2639  *    cgroup to top_cgroup.
2640  */
2641
2642 /* TODO: Use a proper seq_file iterator */
2643 static int proc_cgroup_show(struct seq_file *m, void *v)
2644 {
2645         struct pid *pid;
2646         struct task_struct *tsk;
2647         char *buf;
2648         int retval;
2649         struct cgroupfs_root *root;
2650
2651         retval = -ENOMEM;
2652         buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
2653         if (!buf)
2654                 goto out;
2655
2656         retval = -ESRCH;
2657         pid = m->private;
2658         tsk = get_pid_task(pid, PIDTYPE_PID);
2659         if (!tsk)
2660                 goto out_free;
2661
2662         retval = 0;
2663
2664         mutex_lock(&cgroup_mutex);
2665
2666         for_each_root(root) {
2667                 struct cgroup_subsys *ss;
2668                 struct cgroup *cgrp;
2669                 int subsys_id;
2670                 int count = 0;
2671
2672                 /* Skip this hierarchy if it has no active subsystems */
2673                 if (!root->actual_subsys_bits)
2674                         continue;
2675                 seq_printf(m, "%lu:", root->subsys_bits);
2676                 for_each_subsys(root, ss)
2677                         seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
2678                 seq_putc(m, ':');
2679                 get_first_subsys(&root->top_cgroup, NULL, &subsys_id);
2680                 cgrp = task_cgroup(tsk, subsys_id);
2681                 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
2682                 if (retval < 0)
2683                         goto out_unlock;
2684                 seq_puts(m, buf);
2685                 seq_putc(m, '\n');
2686         }
2687
2688 out_unlock:
2689         mutex_unlock(&cgroup_mutex);
2690         put_task_struct(tsk);
2691 out_free:
2692         kfree(buf);
2693 out:
2694         return retval;
2695 }
2696
2697 static int cgroup_open(struct inode *inode, struct file *file)
2698 {
2699         struct pid *pid = PROC_I(inode)->pid;
2700         return single_open(file, proc_cgroup_show, pid);
2701 }
2702
2703 struct file_operations proc_cgroup_operations = {
2704         .open           = cgroup_open,
2705         .read           = seq_read,
2706         .llseek         = seq_lseek,
2707         .release        = single_release,
2708 };
2709
2710 /* Display information about each subsystem and each hierarchy */
2711 static int proc_cgroupstats_show(struct seq_file *m, void *v)
2712 {
2713         int i;
2714
2715         seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
2716         mutex_lock(&cgroup_mutex);
2717         for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2718                 struct cgroup_subsys *ss = subsys[i];
2719                 seq_printf(m, "%s\t%lu\t%d\t%d\n",
2720                            ss->name, ss->root->subsys_bits,
2721                            ss->root->number_of_cgroups, !ss->disabled);
2722         }
2723         mutex_unlock(&cgroup_mutex);
2724         return 0;
2725 }
2726
2727 static int cgroupstats_open(struct inode *inode, struct file *file)
2728 {
2729         return single_open(file, proc_cgroupstats_show, NULL);
2730 }
2731
2732 static struct file_operations proc_cgroupstats_operations = {
2733         .open = cgroupstats_open,
2734         .read = seq_read,
2735         .llseek = seq_lseek,
2736         .release = single_release,
2737 };
2738
2739 /**
2740  * cgroup_fork - attach newly forked task to its parents cgroup.
2741  * @child: pointer to task_struct of forking parent process.
2742  *
2743  * Description: A task inherits its parent's cgroup at fork().
2744  *
2745  * A pointer to the shared css_set was automatically copied in
2746  * fork.c by dup_task_struct().  However, we ignore that copy, since
2747  * it was not made under the protection of RCU or cgroup_mutex, so
2748  * might no longer be a valid cgroup pointer.  cgroup_attach_task() might
2749  * have already changed current->cgroups, allowing the previously
2750  * referenced cgroup group to be removed and freed.
2751  *
2752  * At the point that cgroup_fork() is called, 'current' is the parent
2753  * task, and the passed argument 'child' points to the child task.
2754  */
2755 void cgroup_fork(struct task_struct *child)
2756 {
2757         task_lock(current);
2758         child->cgroups = current->cgroups;
2759         get_css_set(child->cgroups);
2760         task_unlock(current);
2761         INIT_LIST_HEAD(&child->cg_list);
2762 }
2763
2764 /**
2765  * cgroup_fork_callbacks - run fork callbacks
2766  * @child: the new task
2767  *
2768  * Called on a new task very soon before adding it to the
2769  * tasklist. No need to take any locks since no-one can
2770  * be operating on this task.
2771  */
2772 void cgroup_fork_callbacks(struct task_struct *child)
2773 {
2774         if (need_forkexit_callback) {
2775                 int i;
2776                 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2777                         struct cgroup_subsys *ss = subsys[i];
2778                         if (ss->fork)
2779                                 ss->fork(ss, child);
2780                 }
2781         }
2782 }
2783
2784 /**
2785  * cgroup_post_fork - called on a new task after adding it to the task list
2786  * @child: the task in question
2787  *
2788  * Adds the task to the list running through its css_set if necessary.
2789  * Has to be after the task is visible on the task list in case we race
2790  * with the first call to cgroup_iter_start() - to guarantee that the
2791  * new task ends up on its list.
2792  */
2793 void cgroup_post_fork(struct task_struct *child)
2794 {
2795         if (use_task_css_set_links) {
2796                 write_lock(&css_set_lock);
2797                 task_lock(child);
2798                 if (list_empty(&child->cg_list))
2799                         list_add(&child->cg_list, &child->cgroups->tasks);
2800                 task_unlock(child);
2801                 write_unlock(&css_set_lock);
2802         }
2803 }
2804 /**
2805  * cgroup_exit - detach cgroup from exiting task
2806  * @tsk: pointer to task_struct of exiting process
2807  * @run_callback: run exit callbacks?
2808  *
2809  * Description: Detach cgroup from @tsk and release it.
2810  *
2811  * Note that cgroups marked notify_on_release force every task in
2812  * them to take the global cgroup_mutex mutex when exiting.
2813  * This could impact scaling on very large systems.  Be reluctant to
2814  * use notify_on_release cgroups where very high task exit scaling
2815  * is required on large systems.
2816  *
2817  * the_top_cgroup_hack:
2818  *
2819  *    Set the exiting tasks cgroup to the root cgroup (top_cgroup).
2820  *
2821  *    We call cgroup_exit() while the task is still competent to
2822  *    handle notify_on_release(), then leave the task attached to the
2823  *    root cgroup in each hierarchy for the remainder of its exit.
2824  *
2825  *    To do this properly, we would increment the reference count on
2826  *    top_cgroup, and near the very end of the kernel/exit.c do_exit()
2827  *    code we would add a second cgroup function call, to drop that
2828  *    reference.  This would just create an unnecessary hot spot on
2829  *    the top_cgroup reference count, to no avail.
2830  *
2831  *    Normally, holding a reference to a cgroup without bumping its
2832  *    count is unsafe.   The cgroup could go away, or someone could
2833  *    attach us to a different cgroup, decrementing the count on
2834  *    the first cgroup that we never incremented.  But in this case,
2835  *    top_cgroup isn't going away, and either task has PF_EXITING set,
2836  *    which wards off any cgroup_attach_task() attempts, or task is a failed
2837  *    fork, never visible to cgroup_attach_task.
2838  */
2839 void cgroup_exit(struct task_struct *tsk, int run_callbacks)
2840 {
2841         int i;
2842         struct css_set *cg;
2843
2844         if (run_callbacks && need_forkexit_callback) {
2845                 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2846                         struct cgroup_subsys *ss = subsys[i];
2847                         if (ss->exit)
2848                                 ss->exit(ss, tsk);
2849                 }
2850         }
2851
2852         /*
2853          * Unlink from the css_set task list if necessary.
2854          * Optimistically check cg_list before taking
2855          * css_set_lock
2856          */
2857         if (!list_empty(&tsk->cg_list)) {
2858                 write_lock(&css_set_lock);
2859                 if (!list_empty(&tsk->cg_list))
2860                         list_del(&tsk->cg_list);
2861                 write_unlock(&css_set_lock);
2862         }
2863
2864         /* Reassign the task to the init_css_set. */
2865         task_lock(tsk);
2866         cg = tsk->cgroups;
2867         tsk->cgroups = &init_css_set;
2868         task_unlock(tsk);
2869         if (cg)
2870                 put_css_set_taskexit(cg);
2871 }
2872
2873 /**
2874  * cgroup_clone - clone the cgroup the given subsystem is attached to
2875  * @tsk: the task to be moved
2876  * @subsys: the given subsystem
2877  * @nodename: the name for the new cgroup
2878  *
2879  * Duplicate the current cgroup in the hierarchy that the given
2880  * subsystem is attached to, and move this task into the new
2881  * child.
2882  */
2883 int cgroup_clone(struct task_struct *tsk, struct cgroup_subsys *subsys,
2884                                                         char *nodename)
2885 {
2886         struct dentry *dentry;
2887         int ret = 0;
2888         struct cgroup *parent, *child;
2889         struct inode *inode;
2890         struct css_set *cg;
2891         struct cgroupfs_root *root;
2892         struct cgroup_subsys *ss;
2893
2894         /* We shouldn't be called by an unregistered subsystem */
2895         BUG_ON(!subsys->active);
2896
2897         /* First figure out what hierarchy and cgroup we're dealing
2898          * with, and pin them so we can drop cgroup_mutex */
2899         mutex_lock(&cgroup_mutex);
2900  again:
2901         root = subsys->root;
2902         if (root == &rootnode) {
2903                 mutex_unlock(&cgroup_mutex);
2904                 return 0;
2905         }
2906         cg = tsk->cgroups;
2907         parent = task_cgroup(tsk, subsys->subsys_id);
2908
2909         /* Pin the hierarchy */
2910         if (!atomic_inc_not_zero(&parent->root->sb->s_active)) {
2911                 /* We race with the final deactivate_super() */
2912                 mutex_unlock(&cgroup_mutex);
2913                 return 0;
2914         }
2915
2916         /* Keep the cgroup alive */
2917         get_css_set(cg);
2918         mutex_unlock(&cgroup_mutex);
2919
2920         /* Now do the VFS work to create a cgroup */
2921         inode = parent->dentry->d_inode;
2922
2923         /* Hold the parent directory mutex across this operation to
2924          * stop anyone else deleting the new cgroup */
2925         mutex_lock(&inode->i_mutex);
2926         dentry = lookup_one_len(nodename, parent->dentry, strlen(nodename));
2927         if (IS_ERR(dentry)) {
2928                 printk(KERN_INFO
2929                        "cgroup: Couldn't allocate dentry for %s: %ld\n", nodename,
2930                        PTR_ERR(dentry));
2931                 ret = PTR_ERR(dentry);
2932                 goto out_release;
2933         }
2934
2935         /* Create the cgroup directory, which also creates the cgroup */
2936         ret = vfs_mkdir(inode, dentry, 0755);
2937         child = __d_cgrp(dentry);
2938         dput(dentry);
2939         if (ret) {
2940                 printk(KERN_INFO
2941                        "Failed to create cgroup %s: %d\n", nodename,
2942                        ret);
2943                 goto out_release;
2944         }
2945
2946         /* The cgroup now exists. Retake cgroup_mutex and check
2947          * that we're still in the same state that we thought we
2948          * were. */
2949         mutex_lock(&cgroup_mutex);
2950         if ((root != subsys->root) ||
2951             (parent != task_cgroup(tsk, subsys->subsys_id))) {
2952                 /* Aargh, we raced ... */
2953                 mutex_unlock(&inode->i_mutex);
2954                 put_css_set(cg);
2955
2956                 deactivate_super(parent->root->sb);
2957                 /* The cgroup is still accessible in the VFS, but
2958                  * we're not going to try to rmdir() it at this
2959                  * point. */
2960                 printk(KERN_INFO
2961                        "Race in cgroup_clone() - leaking cgroup %s\n",
2962                        nodename);
2963                 goto again;
2964         }
2965
2966         /* do any required auto-setup */
2967         for_each_subsys(root, ss) {
2968                 if (ss->post_clone)
2969                         ss->post_clone(ss, child);
2970         }
2971
2972         /* All seems fine. Finish by moving the task into the new cgroup */
2973         ret = cgroup_attach_task(child, tsk);
2974         mutex_unlock(&cgroup_mutex);
2975
2976  out_release:
2977         mutex_unlock(&inode->i_mutex);
2978
2979         mutex_lock(&cgroup_mutex);
2980         put_css_set(cg);
2981         mutex_unlock(&cgroup_mutex);
2982         deactivate_super(parent->root->sb);
2983         return ret;
2984 }
2985
2986 /**
2987  * cgroup_is_descendant - see if @cgrp is a descendant of current task's cgrp
2988  * @cgrp: the cgroup in question
2989  *
2990  * See if @cgrp is a descendant of the current task's cgroup in
2991  * the appropriate hierarchy.
2992  *
2993  * If we are sending in dummytop, then presumably we are creating
2994  * the top cgroup in the subsystem.
2995  *
2996  * Called only by the ns (nsproxy) cgroup.
2997  */
2998 int cgroup_is_descendant(const struct cgroup *cgrp)
2999 {
3000         int ret;
3001         struct cgroup *target;
3002         int subsys_id;
3003
3004         if (cgrp == dummytop)
3005                 return 1;
3006
3007         get_first_subsys(cgrp, NULL, &subsys_id);
3008         target = task_cgroup(current, subsys_id);
3009         while (cgrp != target && cgrp!= cgrp->top_cgroup)
3010                 cgrp = cgrp->parent;
3011         ret = (cgrp == target);
3012         return ret;
3013 }
3014
3015 static void check_for_release(struct cgroup *cgrp)
3016 {
3017         /* All of these checks rely on RCU to keep the cgroup
3018          * structure alive */
3019         if (cgroup_is_releasable(cgrp) && !atomic_read(&cgrp->count)
3020             && list_empty(&cgrp->children) && !cgroup_has_css_refs(cgrp)) {
3021                 /* Control Group is currently removeable. If it's not
3022                  * already queued for a userspace notification, queue
3023                  * it now */
3024                 int need_schedule_work = 0;
3025                 spin_lock(&release_list_lock);
3026                 if (!cgroup_is_removed(cgrp) &&
3027                     list_empty(&cgrp->release_list)) {
3028                         list_add(&cgrp->release_list, &release_list);
3029                         need_schedule_work = 1;
3030                 }
3031                 spin_unlock(&release_list_lock);
3032                 if (need_schedule_work)
3033                         schedule_work(&release_agent_work);
3034         }
3035 }
3036
3037 void __css_put(struct cgroup_subsys_state *css)
3038 {
3039         struct cgroup *cgrp = css->cgroup;
3040         rcu_read_lock();
3041         if (atomic_dec_and_test(&css->refcnt) && notify_on_release(cgrp)) {
3042                 set_bit(CGRP_RELEASABLE, &cgrp->flags);
3043                 check_for_release(cgrp);
3044         }
3045         rcu_read_unlock();
3046 }
3047
3048 /*
3049  * Notify userspace when a cgroup is released, by running the
3050  * configured release agent with the name of the cgroup (path
3051  * relative to the root of cgroup file system) as the argument.
3052  *
3053  * Most likely, this user command will try to rmdir this cgroup.
3054  *
3055  * This races with the possibility that some other task will be
3056  * attached to this cgroup before it is removed, or that some other
3057  * user task will 'mkdir' a child cgroup of this cgroup.  That's ok.
3058  * The presumed 'rmdir' will fail quietly if this cgroup is no longer
3059  * unused, and this cgroup will be reprieved from its death sentence,
3060  * to continue to serve a useful existence.  Next time it's released,
3061  * we will get notified again, if it still has 'notify_on_release' set.
3062  *
3063  * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
3064  * means only wait until the task is successfully execve()'d.  The
3065  * separate release agent task is forked by call_usermodehelper(),
3066  * then control in this thread returns here, without waiting for the
3067  * release agent task.  We don't bother to wait because the caller of
3068  * this routine has no use for the exit status of the release agent
3069  * task, so no sense holding our caller up for that.
3070  */
3071 static void cgroup_release_agent(struct work_struct *work)
3072 {
3073         BUG_ON(work != &release_agent_work);
3074         mutex_lock(&cgroup_mutex);
3075         spin_lock(&release_list_lock);
3076         while (!list_empty(&release_list)) {
3077                 char *argv[3], *envp[3];
3078                 int i;
3079                 char *pathbuf = NULL, *agentbuf = NULL;
3080                 struct cgroup *cgrp = list_entry(release_list.next,
3081                                                     struct cgroup,
3082                                                     release_list);
3083                 list_del_init(&cgrp->release_list);
3084                 spin_unlock(&release_list_lock);
3085                 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
3086                 if (!pathbuf)
3087                         goto continue_free;
3088                 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0)
3089                         goto continue_free;
3090                 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
3091                 if (!agentbuf)
3092                         goto continue_free;
3093
3094                 i = 0;
3095                 argv[i++] = agentbuf;
3096                 argv[i++] = pathbuf;
3097                 argv[i] = NULL;
3098
3099                 i = 0;
3100                 /* minimal command environment */
3101                 envp[i++] = "HOME=/";
3102                 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
3103                 envp[i] = NULL;
3104
3105                 /* Drop the lock while we invoke the usermode helper,
3106                  * since the exec could involve hitting disk and hence
3107                  * be a slow process */
3108                 mutex_unlock(&cgroup_mutex);
3109                 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
3110                 mutex_lock(&cgroup_mutex);
3111  continue_free:
3112                 kfree(pathbuf);
3113                 kfree(agentbuf);
3114                 spin_lock(&release_list_lock);
3115         }
3116         spin_unlock(&release_list_lock);
3117         mutex_unlock(&cgroup_mutex);
3118 }
3119
3120 static int __init cgroup_disable(char *str)
3121 {
3122         int i;
3123         char *token;
3124
3125         while ((token = strsep(&str, ",")) != NULL) {
3126                 if (!*token)
3127                         continue;
3128
3129                 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3130                         struct cgroup_subsys *ss = subsys[i];
3131
3132                         if (!strcmp(token, ss->name)) {
3133                                 ss->disabled = 1;
3134                                 printk(KERN_INFO "Disabling %s control group"
3135                                         " subsystem\n", ss->name);
3136                                 break;
3137                         }
3138                 }
3139         }
3140         return 1;
3141 }
3142 __setup("cgroup_disable=", cgroup_disable);