BKL: Explicitly add BKL around get_sb/fill_super
[linux-flexiantxendom0-natty.git] / 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  *  Notifications support
8  *  Copyright (C) 2009 Nokia Corporation
9  *  Author: Kirill A. Shutemov
10  *
11  *  Copyright notices from the original cpuset code:
12  *  --------------------------------------------------
13  *  Copyright (C) 2003 BULL SA.
14  *  Copyright (C) 2004-2006 Silicon Graphics, Inc.
15  *
16  *  Portions derived from Patrick Mochel's sysfs code.
17  *  sysfs is Copyright (c) 2001-3 Patrick Mochel
18  *
19  *  2003-10-10 Written by Simon Derr.
20  *  2003-10-22 Updates by Stephen Hemminger.
21  *  2004 May-July Rework by Paul Jackson.
22  *  ---------------------------------------------------
23  *
24  *  This file is subject to the terms and conditions of the GNU General Public
25  *  License.  See the file COPYING in the main directory of the Linux
26  *  distribution for more details.
27  */
28
29 #include <linux/cgroup.h>
30 #include <linux/ctype.h>
31 #include <linux/errno.h>
32 #include <linux/fs.h>
33 #include <linux/kernel.h>
34 #include <linux/list.h>
35 #include <linux/mm.h>
36 #include <linux/mutex.h>
37 #include <linux/mount.h>
38 #include <linux/pagemap.h>
39 #include <linux/proc_fs.h>
40 #include <linux/rcupdate.h>
41 #include <linux/sched.h>
42 #include <linux/backing-dev.h>
43 #include <linux/seq_file.h>
44 #include <linux/slab.h>
45 #include <linux/magic.h>
46 #include <linux/spinlock.h>
47 #include <linux/string.h>
48 #include <linux/sort.h>
49 #include <linux/kmod.h>
50 #include <linux/module.h>
51 #include <linux/delayacct.h>
52 #include <linux/cgroupstats.h>
53 #include <linux/hash.h>
54 #include <linux/namei.h>
55 #include <linux/smp_lock.h>
56 #include <linux/pid_namespace.h>
57 #include <linux/idr.h>
58 #include <linux/vmalloc.h> /* TODO: replace with more sophisticated array */
59 #include <linux/eventfd.h>
60 #include <linux/poll.h>
61
62 #include <asm/atomic.h>
63
64 static DEFINE_MUTEX(cgroup_mutex);
65
66 /*
67  * Generate an array of cgroup subsystem pointers. At boot time, this is
68  * populated up to CGROUP_BUILTIN_SUBSYS_COUNT, and modular subsystems are
69  * registered after that. The mutable section of this array is protected by
70  * cgroup_mutex.
71  */
72 #define SUBSYS(_x) &_x ## _subsys,
73 static struct cgroup_subsys *subsys[CGROUP_SUBSYS_COUNT] = {
74 #include <linux/cgroup_subsys.h>
75 };
76
77 #define MAX_CGROUP_ROOT_NAMELEN 64
78
79 /*
80  * A cgroupfs_root represents the root of a cgroup hierarchy,
81  * and may be associated with a superblock to form an active
82  * hierarchy
83  */
84 struct cgroupfs_root {
85         struct super_block *sb;
86
87         /*
88          * The bitmask of subsystems intended to be attached to this
89          * hierarchy
90          */
91         unsigned long subsys_bits;
92
93         /* Unique id for this hierarchy. */
94         int hierarchy_id;
95
96         /* The bitmask of subsystems currently attached to this hierarchy */
97         unsigned long actual_subsys_bits;
98
99         /* A list running through the attached subsystems */
100         struct list_head subsys_list;
101
102         /* The root cgroup for this hierarchy */
103         struct cgroup top_cgroup;
104
105         /* Tracks how many cgroups are currently defined in hierarchy.*/
106         int number_of_cgroups;
107
108         /* A list running through the active hierarchies */
109         struct list_head root_list;
110
111         /* Hierarchy-specific flags */
112         unsigned long flags;
113
114         /* The path to use for release notifications. */
115         char release_agent_path[PATH_MAX];
116
117         /* The name for this hierarchy - may be empty */
118         char name[MAX_CGROUP_ROOT_NAMELEN];
119 };
120
121 /*
122  * The "rootnode" hierarchy is the "dummy hierarchy", reserved for the
123  * subsystems that are otherwise unattached - it never has more than a
124  * single cgroup, and all tasks are part of that cgroup.
125  */
126 static struct cgroupfs_root rootnode;
127
128 /*
129  * CSS ID -- ID per subsys's Cgroup Subsys State(CSS). used only when
130  * cgroup_subsys->use_id != 0.
131  */
132 #define CSS_ID_MAX      (65535)
133 struct css_id {
134         /*
135          * The css to which this ID points. This pointer is set to valid value
136          * after cgroup is populated. If cgroup is removed, this will be NULL.
137          * This pointer is expected to be RCU-safe because destroy()
138          * is called after synchronize_rcu(). But for safe use, css_is_removed()
139          * css_tryget() should be used for avoiding race.
140          */
141         struct cgroup_subsys_state *css;
142         /*
143          * ID of this css.
144          */
145         unsigned short id;
146         /*
147          * Depth in hierarchy which this ID belongs to.
148          */
149         unsigned short depth;
150         /*
151          * ID is freed by RCU. (and lookup routine is RCU safe.)
152          */
153         struct rcu_head rcu_head;
154         /*
155          * Hierarchy of CSS ID belongs to.
156          */
157         unsigned short stack[0]; /* Array of Length (depth+1) */
158 };
159
160 /*
161  * cgroup_event represents events which userspace want to recieve.
162  */
163 struct cgroup_event {
164         /*
165          * Cgroup which the event belongs to.
166          */
167         struct cgroup *cgrp;
168         /*
169          * Control file which the event associated.
170          */
171         struct cftype *cft;
172         /*
173          * eventfd to signal userspace about the event.
174          */
175         struct eventfd_ctx *eventfd;
176         /*
177          * Each of these stored in a list by the cgroup.
178          */
179         struct list_head list;
180         /*
181          * All fields below needed to unregister event when
182          * userspace closes eventfd.
183          */
184         poll_table pt;
185         wait_queue_head_t *wqh;
186         wait_queue_t wait;
187         struct work_struct remove;
188 };
189
190 /* The list of hierarchy roots */
191
192 static LIST_HEAD(roots);
193 static int root_count;
194
195 static DEFINE_IDA(hierarchy_ida);
196 static int next_hierarchy_id;
197 static DEFINE_SPINLOCK(hierarchy_id_lock);
198
199 /* dummytop is a shorthand for the dummy hierarchy's top cgroup */
200 #define dummytop (&rootnode.top_cgroup)
201
202 /* This flag indicates whether tasks in the fork and exit paths should
203  * check for fork/exit handlers to call. This avoids us having to do
204  * extra work in the fork/exit path if none of the subsystems need to
205  * be called.
206  */
207 static int need_forkexit_callback __read_mostly;
208
209 #ifdef CONFIG_PROVE_LOCKING
210 int cgroup_lock_is_held(void)
211 {
212         return lockdep_is_held(&cgroup_mutex);
213 }
214 #else /* #ifdef CONFIG_PROVE_LOCKING */
215 int cgroup_lock_is_held(void)
216 {
217         return mutex_is_locked(&cgroup_mutex);
218 }
219 #endif /* #else #ifdef CONFIG_PROVE_LOCKING */
220
221 EXPORT_SYMBOL_GPL(cgroup_lock_is_held);
222
223 /* convenient tests for these bits */
224 inline int cgroup_is_removed(const struct cgroup *cgrp)
225 {
226         return test_bit(CGRP_REMOVED, &cgrp->flags);
227 }
228
229 /* bits in struct cgroupfs_root flags field */
230 enum {
231         ROOT_NOPREFIX, /* mounted subsystems have no named prefix */
232 };
233
234 static int cgroup_is_releasable(const struct cgroup *cgrp)
235 {
236         const int bits =
237                 (1 << CGRP_RELEASABLE) |
238                 (1 << CGRP_NOTIFY_ON_RELEASE);
239         return (cgrp->flags & bits) == bits;
240 }
241
242 static int notify_on_release(const struct cgroup *cgrp)
243 {
244         return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
245 }
246
247 /*
248  * for_each_subsys() allows you to iterate on each subsystem attached to
249  * an active hierarchy
250  */
251 #define for_each_subsys(_root, _ss) \
252 list_for_each_entry(_ss, &_root->subsys_list, sibling)
253
254 /* for_each_active_root() allows you to iterate across the active hierarchies */
255 #define for_each_active_root(_root) \
256 list_for_each_entry(_root, &roots, root_list)
257
258 /* the list of cgroups eligible for automatic release. Protected by
259  * release_list_lock */
260 static LIST_HEAD(release_list);
261 static DEFINE_SPINLOCK(release_list_lock);
262 static void cgroup_release_agent(struct work_struct *work);
263 static DECLARE_WORK(release_agent_work, cgroup_release_agent);
264 static void check_for_release(struct cgroup *cgrp);
265
266 /* Link structure for associating css_set objects with cgroups */
267 struct cg_cgroup_link {
268         /*
269          * List running through cg_cgroup_links associated with a
270          * cgroup, anchored on cgroup->css_sets
271          */
272         struct list_head cgrp_link_list;
273         struct cgroup *cgrp;
274         /*
275          * List running through cg_cgroup_links pointing at a
276          * single css_set object, anchored on css_set->cg_links
277          */
278         struct list_head cg_link_list;
279         struct css_set *cg;
280 };
281
282 /* The default css_set - used by init and its children prior to any
283  * hierarchies being mounted. It contains a pointer to the root state
284  * for each subsystem. Also used to anchor the list of css_sets. Not
285  * reference-counted, to improve performance when child cgroups
286  * haven't been created.
287  */
288
289 static struct css_set init_css_set;
290 static struct cg_cgroup_link init_css_set_link;
291
292 static int cgroup_init_idr(struct cgroup_subsys *ss,
293                            struct cgroup_subsys_state *css);
294
295 /* css_set_lock protects the list of css_set objects, and the
296  * chain of tasks off each css_set.  Nests outside task->alloc_lock
297  * due to cgroup_iter_start() */
298 static DEFINE_RWLOCK(css_set_lock);
299 static int css_set_count;
300
301 /*
302  * hash table for cgroup groups. This improves the performance to find
303  * an existing css_set. This hash doesn't (currently) take into
304  * account cgroups in empty hierarchies.
305  */
306 #define CSS_SET_HASH_BITS       7
307 #define CSS_SET_TABLE_SIZE      (1 << CSS_SET_HASH_BITS)
308 static struct hlist_head css_set_table[CSS_SET_TABLE_SIZE];
309
310 static struct hlist_head *css_set_hash(struct cgroup_subsys_state *css[])
311 {
312         int i;
313         int index;
314         unsigned long tmp = 0UL;
315
316         for (i = 0; i < CGROUP_SUBSYS_COUNT; i++)
317                 tmp += (unsigned long)css[i];
318         tmp = (tmp >> 16) ^ tmp;
319
320         index = hash_long(tmp, CSS_SET_HASH_BITS);
321
322         return &css_set_table[index];
323 }
324
325 static void free_css_set_rcu(struct rcu_head *obj)
326 {
327         struct css_set *cg = container_of(obj, struct css_set, rcu_head);
328         kfree(cg);
329 }
330
331 /* We don't maintain the lists running through each css_set to its
332  * task until after the first call to cgroup_iter_start(). This
333  * reduces the fork()/exit() overhead for people who have cgroups
334  * compiled into their kernel but not actually in use */
335 static int use_task_css_set_links __read_mostly;
336
337 static void __put_css_set(struct css_set *cg, int taskexit)
338 {
339         struct cg_cgroup_link *link;
340         struct cg_cgroup_link *saved_link;
341         /*
342          * Ensure that the refcount doesn't hit zero while any readers
343          * can see it. Similar to atomic_dec_and_lock(), but for an
344          * rwlock
345          */
346         if (atomic_add_unless(&cg->refcount, -1, 1))
347                 return;
348         write_lock(&css_set_lock);
349         if (!atomic_dec_and_test(&cg->refcount)) {
350                 write_unlock(&css_set_lock);
351                 return;
352         }
353
354         /* This css_set is dead. unlink it and release cgroup refcounts */
355         hlist_del(&cg->hlist);
356         css_set_count--;
357
358         list_for_each_entry_safe(link, saved_link, &cg->cg_links,
359                                  cg_link_list) {
360                 struct cgroup *cgrp = link->cgrp;
361                 list_del(&link->cg_link_list);
362                 list_del(&link->cgrp_link_list);
363                 if (atomic_dec_and_test(&cgrp->count) &&
364                     notify_on_release(cgrp)) {
365                         if (taskexit)
366                                 set_bit(CGRP_RELEASABLE, &cgrp->flags);
367                         check_for_release(cgrp);
368                 }
369
370                 kfree(link);
371         }
372
373         write_unlock(&css_set_lock);
374         call_rcu(&cg->rcu_head, free_css_set_rcu);
375 }
376
377 /*
378  * refcounted get/put for css_set objects
379  */
380 static inline void get_css_set(struct css_set *cg)
381 {
382         atomic_inc(&cg->refcount);
383 }
384
385 static inline void put_css_set(struct css_set *cg)
386 {
387         __put_css_set(cg, 0);
388 }
389
390 static inline void put_css_set_taskexit(struct css_set *cg)
391 {
392         __put_css_set(cg, 1);
393 }
394
395 /*
396  * compare_css_sets - helper function for find_existing_css_set().
397  * @cg: candidate css_set being tested
398  * @old_cg: existing css_set for a task
399  * @new_cgrp: cgroup that's being entered by the task
400  * @template: desired set of css pointers in css_set (pre-calculated)
401  *
402  * Returns true if "cg" matches "old_cg" except for the hierarchy
403  * which "new_cgrp" belongs to, for which it should match "new_cgrp".
404  */
405 static bool compare_css_sets(struct css_set *cg,
406                              struct css_set *old_cg,
407                              struct cgroup *new_cgrp,
408                              struct cgroup_subsys_state *template[])
409 {
410         struct list_head *l1, *l2;
411
412         if (memcmp(template, cg->subsys, sizeof(cg->subsys))) {
413                 /* Not all subsystems matched */
414                 return false;
415         }
416
417         /*
418          * Compare cgroup pointers in order to distinguish between
419          * different cgroups in heirarchies with no subsystems. We
420          * could get by with just this check alone (and skip the
421          * memcmp above) but on most setups the memcmp check will
422          * avoid the need for this more expensive check on almost all
423          * candidates.
424          */
425
426         l1 = &cg->cg_links;
427         l2 = &old_cg->cg_links;
428         while (1) {
429                 struct cg_cgroup_link *cgl1, *cgl2;
430                 struct cgroup *cg1, *cg2;
431
432                 l1 = l1->next;
433                 l2 = l2->next;
434                 /* See if we reached the end - both lists are equal length. */
435                 if (l1 == &cg->cg_links) {
436                         BUG_ON(l2 != &old_cg->cg_links);
437                         break;
438                 } else {
439                         BUG_ON(l2 == &old_cg->cg_links);
440                 }
441                 /* Locate the cgroups associated with these links. */
442                 cgl1 = list_entry(l1, struct cg_cgroup_link, cg_link_list);
443                 cgl2 = list_entry(l2, struct cg_cgroup_link, cg_link_list);
444                 cg1 = cgl1->cgrp;
445                 cg2 = cgl2->cgrp;
446                 /* Hierarchies should be linked in the same order. */
447                 BUG_ON(cg1->root != cg2->root);
448
449                 /*
450                  * If this hierarchy is the hierarchy of the cgroup
451                  * that's changing, then we need to check that this
452                  * css_set points to the new cgroup; if it's any other
453                  * hierarchy, then this css_set should point to the
454                  * same cgroup as the old css_set.
455                  */
456                 if (cg1->root == new_cgrp->root) {
457                         if (cg1 != new_cgrp)
458                                 return false;
459                 } else {
460                         if (cg1 != cg2)
461                                 return false;
462                 }
463         }
464         return true;
465 }
466
467 /*
468  * find_existing_css_set() is a helper for
469  * find_css_set(), and checks to see whether an existing
470  * css_set is suitable.
471  *
472  * oldcg: the cgroup group that we're using before the cgroup
473  * transition
474  *
475  * cgrp: the cgroup that we're moving into
476  *
477  * template: location in which to build the desired set of subsystem
478  * state objects for the new cgroup group
479  */
480 static struct css_set *find_existing_css_set(
481         struct css_set *oldcg,
482         struct cgroup *cgrp,
483         struct cgroup_subsys_state *template[])
484 {
485         int i;
486         struct cgroupfs_root *root = cgrp->root;
487         struct hlist_head *hhead;
488         struct hlist_node *node;
489         struct css_set *cg;
490
491         /*
492          * Build the set of subsystem state objects that we want to see in the
493          * new css_set. while subsystems can change globally, the entries here
494          * won't change, so no need for locking.
495          */
496         for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
497                 if (root->subsys_bits & (1UL << i)) {
498                         /* Subsystem is in this hierarchy. So we want
499                          * the subsystem state from the new
500                          * cgroup */
501                         template[i] = cgrp->subsys[i];
502                 } else {
503                         /* Subsystem is not in this hierarchy, so we
504                          * don't want to change the subsystem state */
505                         template[i] = oldcg->subsys[i];
506                 }
507         }
508
509         hhead = css_set_hash(template);
510         hlist_for_each_entry(cg, node, hhead, hlist) {
511                 if (!compare_css_sets(cg, oldcg, cgrp, template))
512                         continue;
513
514                 /* This css_set matches what we need */
515                 return cg;
516         }
517
518         /* No existing cgroup group matched */
519         return NULL;
520 }
521
522 static void free_cg_links(struct list_head *tmp)
523 {
524         struct cg_cgroup_link *link;
525         struct cg_cgroup_link *saved_link;
526
527         list_for_each_entry_safe(link, saved_link, tmp, cgrp_link_list) {
528                 list_del(&link->cgrp_link_list);
529                 kfree(link);
530         }
531 }
532
533 /*
534  * allocate_cg_links() allocates "count" cg_cgroup_link structures
535  * and chains them on tmp through their cgrp_link_list fields. Returns 0 on
536  * success or a negative error
537  */
538 static int allocate_cg_links(int count, struct list_head *tmp)
539 {
540         struct cg_cgroup_link *link;
541         int i;
542         INIT_LIST_HEAD(tmp);
543         for (i = 0; i < count; i++) {
544                 link = kmalloc(sizeof(*link), GFP_KERNEL);
545                 if (!link) {
546                         free_cg_links(tmp);
547                         return -ENOMEM;
548                 }
549                 list_add(&link->cgrp_link_list, tmp);
550         }
551         return 0;
552 }
553
554 /**
555  * link_css_set - a helper function to link a css_set to a cgroup
556  * @tmp_cg_links: cg_cgroup_link objects allocated by allocate_cg_links()
557  * @cg: the css_set to be linked
558  * @cgrp: the destination cgroup
559  */
560 static void link_css_set(struct list_head *tmp_cg_links,
561                          struct css_set *cg, struct cgroup *cgrp)
562 {
563         struct cg_cgroup_link *link;
564
565         BUG_ON(list_empty(tmp_cg_links));
566         link = list_first_entry(tmp_cg_links, struct cg_cgroup_link,
567                                 cgrp_link_list);
568         link->cg = cg;
569         link->cgrp = cgrp;
570         atomic_inc(&cgrp->count);
571         list_move(&link->cgrp_link_list, &cgrp->css_sets);
572         /*
573          * Always add links to the tail of the list so that the list
574          * is sorted by order of hierarchy creation
575          */
576         list_add_tail(&link->cg_link_list, &cg->cg_links);
577 }
578
579 /*
580  * find_css_set() takes an existing cgroup group and a
581  * cgroup object, and returns a css_set object that's
582  * equivalent to the old group, but with the given cgroup
583  * substituted into the appropriate hierarchy. Must be called with
584  * cgroup_mutex held
585  */
586 static struct css_set *find_css_set(
587         struct css_set *oldcg, struct cgroup *cgrp)
588 {
589         struct css_set *res;
590         struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT];
591
592         struct list_head tmp_cg_links;
593
594         struct hlist_head *hhead;
595         struct cg_cgroup_link *link;
596
597         /* First see if we already have a cgroup group that matches
598          * the desired set */
599         read_lock(&css_set_lock);
600         res = find_existing_css_set(oldcg, cgrp, template);
601         if (res)
602                 get_css_set(res);
603         read_unlock(&css_set_lock);
604
605         if (res)
606                 return res;
607
608         res = kmalloc(sizeof(*res), GFP_KERNEL);
609         if (!res)
610                 return NULL;
611
612         /* Allocate all the cg_cgroup_link objects that we'll need */
613         if (allocate_cg_links(root_count, &tmp_cg_links) < 0) {
614                 kfree(res);
615                 return NULL;
616         }
617
618         atomic_set(&res->refcount, 1);
619         INIT_LIST_HEAD(&res->cg_links);
620         INIT_LIST_HEAD(&res->tasks);
621         INIT_HLIST_NODE(&res->hlist);
622
623         /* Copy the set of subsystem state objects generated in
624          * find_existing_css_set() */
625         memcpy(res->subsys, template, sizeof(res->subsys));
626
627         write_lock(&css_set_lock);
628         /* Add reference counts and links from the new css_set. */
629         list_for_each_entry(link, &oldcg->cg_links, cg_link_list) {
630                 struct cgroup *c = link->cgrp;
631                 if (c->root == cgrp->root)
632                         c = cgrp;
633                 link_css_set(&tmp_cg_links, res, c);
634         }
635
636         BUG_ON(!list_empty(&tmp_cg_links));
637
638         css_set_count++;
639
640         /* Add this cgroup group to the hash table */
641         hhead = css_set_hash(res->subsys);
642         hlist_add_head(&res->hlist, hhead);
643
644         write_unlock(&css_set_lock);
645
646         return res;
647 }
648
649 /*
650  * Return the cgroup for "task" from the given hierarchy. Must be
651  * called with cgroup_mutex held.
652  */
653 static struct cgroup *task_cgroup_from_root(struct task_struct *task,
654                                             struct cgroupfs_root *root)
655 {
656         struct css_set *css;
657         struct cgroup *res = NULL;
658
659         BUG_ON(!mutex_is_locked(&cgroup_mutex));
660         read_lock(&css_set_lock);
661         /*
662          * No need to lock the task - since we hold cgroup_mutex the
663          * task can't change groups, so the only thing that can happen
664          * is that it exits and its css is set back to init_css_set.
665          */
666         css = task->cgroups;
667         if (css == &init_css_set) {
668                 res = &root->top_cgroup;
669         } else {
670                 struct cg_cgroup_link *link;
671                 list_for_each_entry(link, &css->cg_links, cg_link_list) {
672                         struct cgroup *c = link->cgrp;
673                         if (c->root == root) {
674                                 res = c;
675                                 break;
676                         }
677                 }
678         }
679         read_unlock(&css_set_lock);
680         BUG_ON(!res);
681         return res;
682 }
683
684 /*
685  * There is one global cgroup mutex. We also require taking
686  * task_lock() when dereferencing a task's cgroup subsys pointers.
687  * See "The task_lock() exception", at the end of this comment.
688  *
689  * A task must hold cgroup_mutex to modify cgroups.
690  *
691  * Any task can increment and decrement the count field without lock.
692  * So in general, code holding cgroup_mutex can't rely on the count
693  * field not changing.  However, if the count goes to zero, then only
694  * cgroup_attach_task() can increment it again.  Because a count of zero
695  * means that no tasks are currently attached, therefore there is no
696  * way a task attached to that cgroup can fork (the other way to
697  * increment the count).  So code holding cgroup_mutex can safely
698  * assume that if the count is zero, it will stay zero. Similarly, if
699  * a task holds cgroup_mutex on a cgroup with zero count, it
700  * knows that the cgroup won't be removed, as cgroup_rmdir()
701  * needs that mutex.
702  *
703  * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
704  * (usually) take cgroup_mutex.  These are the two most performance
705  * critical pieces of code here.  The exception occurs on cgroup_exit(),
706  * when a task in a notify_on_release cgroup exits.  Then cgroup_mutex
707  * is taken, and if the cgroup count is zero, a usermode call made
708  * to the release agent with the name of the cgroup (path relative to
709  * the root of cgroup file system) as the argument.
710  *
711  * A cgroup can only be deleted if both its 'count' of using tasks
712  * is zero, and its list of 'children' cgroups is empty.  Since all
713  * tasks in the system use _some_ cgroup, and since there is always at
714  * least one task in the system (init, pid == 1), therefore, top_cgroup
715  * always has either children cgroups and/or using tasks.  So we don't
716  * need a special hack to ensure that top_cgroup cannot be deleted.
717  *
718  *      The task_lock() exception
719  *
720  * The need for this exception arises from the action of
721  * cgroup_attach_task(), which overwrites one tasks cgroup pointer with
722  * another.  It does so using cgroup_mutex, however there are
723  * several performance critical places that need to reference
724  * task->cgroup without the expense of grabbing a system global
725  * mutex.  Therefore except as noted below, when dereferencing or, as
726  * in cgroup_attach_task(), modifying a task'ss cgroup pointer we use
727  * task_lock(), which acts on a spinlock (task->alloc_lock) already in
728  * the task_struct routinely used for such matters.
729  *
730  * P.S.  One more locking exception.  RCU is used to guard the
731  * update of a tasks cgroup pointer by cgroup_attach_task()
732  */
733
734 /**
735  * cgroup_lock - lock out any changes to cgroup structures
736  *
737  */
738 void cgroup_lock(void)
739 {
740         mutex_lock(&cgroup_mutex);
741 }
742 EXPORT_SYMBOL_GPL(cgroup_lock);
743
744 /**
745  * cgroup_unlock - release lock on cgroup changes
746  *
747  * Undo the lock taken in a previous cgroup_lock() call.
748  */
749 void cgroup_unlock(void)
750 {
751         mutex_unlock(&cgroup_mutex);
752 }
753 EXPORT_SYMBOL_GPL(cgroup_unlock);
754
755 /*
756  * A couple of forward declarations required, due to cyclic reference loop:
757  * cgroup_mkdir -> cgroup_create -> cgroup_populate_dir ->
758  * cgroup_add_file -> cgroup_create_file -> cgroup_dir_inode_operations
759  * -> cgroup_mkdir.
760  */
761
762 static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode);
763 static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry);
764 static int cgroup_populate_dir(struct cgroup *cgrp);
765 static const struct inode_operations cgroup_dir_inode_operations;
766 static const struct file_operations proc_cgroupstats_operations;
767
768 static struct backing_dev_info cgroup_backing_dev_info = {
769         .name           = "cgroup",
770         .capabilities   = BDI_CAP_NO_ACCT_AND_WRITEBACK,
771 };
772
773 static int alloc_css_id(struct cgroup_subsys *ss,
774                         struct cgroup *parent, struct cgroup *child);
775
776 static struct inode *cgroup_new_inode(mode_t mode, struct super_block *sb)
777 {
778         struct inode *inode = new_inode(sb);
779
780         if (inode) {
781                 inode->i_mode = mode;
782                 inode->i_uid = current_fsuid();
783                 inode->i_gid = current_fsgid();
784                 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
785                 inode->i_mapping->backing_dev_info = &cgroup_backing_dev_info;
786         }
787         return inode;
788 }
789
790 /*
791  * Call subsys's pre_destroy handler.
792  * This is called before css refcnt check.
793  */
794 static int cgroup_call_pre_destroy(struct cgroup *cgrp)
795 {
796         struct cgroup_subsys *ss;
797         int ret = 0;
798
799         for_each_subsys(cgrp->root, ss)
800                 if (ss->pre_destroy) {
801                         ret = ss->pre_destroy(ss, cgrp);
802                         if (ret)
803                                 break;
804                 }
805
806         return ret;
807 }
808
809 static void free_cgroup_rcu(struct rcu_head *obj)
810 {
811         struct cgroup *cgrp = container_of(obj, struct cgroup, rcu_head);
812
813         kfree(cgrp);
814 }
815
816 static void cgroup_diput(struct dentry *dentry, struct inode *inode)
817 {
818         /* is dentry a directory ? if so, kfree() associated cgroup */
819         if (S_ISDIR(inode->i_mode)) {
820                 struct cgroup *cgrp = dentry->d_fsdata;
821                 struct cgroup_subsys *ss;
822                 BUG_ON(!(cgroup_is_removed(cgrp)));
823                 /* It's possible for external users to be holding css
824                  * reference counts on a cgroup; css_put() needs to
825                  * be able to access the cgroup after decrementing
826                  * the reference count in order to know if it needs to
827                  * queue the cgroup to be handled by the release
828                  * agent */
829                 synchronize_rcu();
830
831                 mutex_lock(&cgroup_mutex);
832                 /*
833                  * Release the subsystem state objects.
834                  */
835                 for_each_subsys(cgrp->root, ss)
836                         ss->destroy(ss, cgrp);
837
838                 cgrp->root->number_of_cgroups--;
839                 mutex_unlock(&cgroup_mutex);
840
841                 /*
842                  * Drop the active superblock reference that we took when we
843                  * created the cgroup
844                  */
845                 deactivate_super(cgrp->root->sb);
846
847                 /*
848                  * if we're getting rid of the cgroup, refcount should ensure
849                  * that there are no pidlists left.
850                  */
851                 BUG_ON(!list_empty(&cgrp->pidlists));
852
853                 call_rcu(&cgrp->rcu_head, free_cgroup_rcu);
854         }
855         iput(inode);
856 }
857
858 static void remove_dir(struct dentry *d)
859 {
860         struct dentry *parent = dget(d->d_parent);
861
862         d_delete(d);
863         simple_rmdir(parent->d_inode, d);
864         dput(parent);
865 }
866
867 static void cgroup_clear_directory(struct dentry *dentry)
868 {
869         struct list_head *node;
870
871         BUG_ON(!mutex_is_locked(&dentry->d_inode->i_mutex));
872         spin_lock(&dcache_lock);
873         node = dentry->d_subdirs.next;
874         while (node != &dentry->d_subdirs) {
875                 struct dentry *d = list_entry(node, struct dentry, d_u.d_child);
876                 list_del_init(node);
877                 if (d->d_inode) {
878                         /* This should never be called on a cgroup
879                          * directory with child cgroups */
880                         BUG_ON(d->d_inode->i_mode & S_IFDIR);
881                         d = dget_locked(d);
882                         spin_unlock(&dcache_lock);
883                         d_delete(d);
884                         simple_unlink(dentry->d_inode, d);
885                         dput(d);
886                         spin_lock(&dcache_lock);
887                 }
888                 node = dentry->d_subdirs.next;
889         }
890         spin_unlock(&dcache_lock);
891 }
892
893 /*
894  * NOTE : the dentry must have been dget()'ed
895  */
896 static void cgroup_d_remove_dir(struct dentry *dentry)
897 {
898         cgroup_clear_directory(dentry);
899
900         spin_lock(&dcache_lock);
901         list_del_init(&dentry->d_u.d_child);
902         spin_unlock(&dcache_lock);
903         remove_dir(dentry);
904 }
905
906 /*
907  * A queue for waiters to do rmdir() cgroup. A tasks will sleep when
908  * cgroup->count == 0 && list_empty(&cgroup->children) && subsys has some
909  * reference to css->refcnt. In general, this refcnt is expected to goes down
910  * to zero, soon.
911  *
912  * CGRP_WAIT_ON_RMDIR flag is set under cgroup's inode->i_mutex;
913  */
914 DECLARE_WAIT_QUEUE_HEAD(cgroup_rmdir_waitq);
915
916 static void cgroup_wakeup_rmdir_waiter(struct cgroup *cgrp)
917 {
918         if (unlikely(test_and_clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags)))
919                 wake_up_all(&cgroup_rmdir_waitq);
920 }
921
922 void cgroup_exclude_rmdir(struct cgroup_subsys_state *css)
923 {
924         css_get(css);
925 }
926
927 void cgroup_release_and_wakeup_rmdir(struct cgroup_subsys_state *css)
928 {
929         cgroup_wakeup_rmdir_waiter(css->cgroup);
930         css_put(css);
931 }
932
933 /*
934  * Call with cgroup_mutex held. Drops reference counts on modules, including
935  * any duplicate ones that parse_cgroupfs_options took. If this function
936  * returns an error, no reference counts are touched.
937  */
938 static int rebind_subsystems(struct cgroupfs_root *root,
939                               unsigned long final_bits)
940 {
941         unsigned long added_bits, removed_bits;
942         struct cgroup *cgrp = &root->top_cgroup;
943         int i;
944
945         BUG_ON(!mutex_is_locked(&cgroup_mutex));
946
947         removed_bits = root->actual_subsys_bits & ~final_bits;
948         added_bits = final_bits & ~root->actual_subsys_bits;
949         /* Check that any added subsystems are currently free */
950         for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
951                 unsigned long bit = 1UL << i;
952                 struct cgroup_subsys *ss = subsys[i];
953                 if (!(bit & added_bits))
954                         continue;
955                 /*
956                  * Nobody should tell us to do a subsys that doesn't exist:
957                  * parse_cgroupfs_options should catch that case and refcounts
958                  * ensure that subsystems won't disappear once selected.
959                  */
960                 BUG_ON(ss == NULL);
961                 if (ss->root != &rootnode) {
962                         /* Subsystem isn't free */
963                         return -EBUSY;
964                 }
965         }
966
967         /* Currently we don't handle adding/removing subsystems when
968          * any child cgroups exist. This is theoretically supportable
969          * but involves complex error handling, so it's being left until
970          * later */
971         if (root->number_of_cgroups > 1)
972                 return -EBUSY;
973
974         /* Process each subsystem */
975         for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
976                 struct cgroup_subsys *ss = subsys[i];
977                 unsigned long bit = 1UL << i;
978                 if (bit & added_bits) {
979                         /* We're binding this subsystem to this hierarchy */
980                         BUG_ON(ss == NULL);
981                         BUG_ON(cgrp->subsys[i]);
982                         BUG_ON(!dummytop->subsys[i]);
983                         BUG_ON(dummytop->subsys[i]->cgroup != dummytop);
984                         mutex_lock(&ss->hierarchy_mutex);
985                         cgrp->subsys[i] = dummytop->subsys[i];
986                         cgrp->subsys[i]->cgroup = cgrp;
987                         list_move(&ss->sibling, &root->subsys_list);
988                         ss->root = root;
989                         if (ss->bind)
990                                 ss->bind(ss, cgrp);
991                         mutex_unlock(&ss->hierarchy_mutex);
992                         /* refcount was already taken, and we're keeping it */
993                 } else if (bit & removed_bits) {
994                         /* We're removing this subsystem */
995                         BUG_ON(ss == NULL);
996                         BUG_ON(cgrp->subsys[i] != dummytop->subsys[i]);
997                         BUG_ON(cgrp->subsys[i]->cgroup != cgrp);
998                         mutex_lock(&ss->hierarchy_mutex);
999                         if (ss->bind)
1000                                 ss->bind(ss, dummytop);
1001                         dummytop->subsys[i]->cgroup = dummytop;
1002                         cgrp->subsys[i] = NULL;
1003                         subsys[i]->root = &rootnode;
1004                         list_move(&ss->sibling, &rootnode.subsys_list);
1005                         mutex_unlock(&ss->hierarchy_mutex);
1006                         /* subsystem is now free - drop reference on module */
1007                         module_put(ss->module);
1008                 } else if (bit & final_bits) {
1009                         /* Subsystem state should already exist */
1010                         BUG_ON(ss == NULL);
1011                         BUG_ON(!cgrp->subsys[i]);
1012                         /*
1013                          * a refcount was taken, but we already had one, so
1014                          * drop the extra reference.
1015                          */
1016                         module_put(ss->module);
1017 #ifdef CONFIG_MODULE_UNLOAD
1018                         BUG_ON(ss->module && !module_refcount(ss->module));
1019 #endif
1020                 } else {
1021                         /* Subsystem state shouldn't exist */
1022                         BUG_ON(cgrp->subsys[i]);
1023                 }
1024         }
1025         root->subsys_bits = root->actual_subsys_bits = final_bits;
1026         synchronize_rcu();
1027
1028         return 0;
1029 }
1030
1031 static int cgroup_show_options(struct seq_file *seq, struct vfsmount *vfs)
1032 {
1033         struct cgroupfs_root *root = vfs->mnt_sb->s_fs_info;
1034         struct cgroup_subsys *ss;
1035
1036         mutex_lock(&cgroup_mutex);
1037         for_each_subsys(root, ss)
1038                 seq_printf(seq, ",%s", ss->name);
1039         if (test_bit(ROOT_NOPREFIX, &root->flags))
1040                 seq_puts(seq, ",noprefix");
1041         if (strlen(root->release_agent_path))
1042                 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
1043         if (strlen(root->name))
1044                 seq_printf(seq, ",name=%s", root->name);
1045         mutex_unlock(&cgroup_mutex);
1046         return 0;
1047 }
1048
1049 struct cgroup_sb_opts {
1050         unsigned long subsys_bits;
1051         unsigned long flags;
1052         char *release_agent;
1053         char *name;
1054         /* User explicitly requested empty subsystem */
1055         bool none;
1056
1057         struct cgroupfs_root *new_root;
1058
1059 };
1060
1061 /*
1062  * Convert a hierarchy specifier into a bitmask of subsystems and flags. Call
1063  * with cgroup_mutex held to protect the subsys[] array. This function takes
1064  * refcounts on subsystems to be used, unless it returns error, in which case
1065  * no refcounts are taken.
1066  */
1067 static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
1068 {
1069         char *token, *o = data ?: "all";
1070         unsigned long mask = (unsigned long)-1;
1071         int i;
1072         bool module_pin_failed = false;
1073
1074         BUG_ON(!mutex_is_locked(&cgroup_mutex));
1075
1076 #ifdef CONFIG_CPUSETS
1077         mask = ~(1UL << cpuset_subsys_id);
1078 #endif
1079
1080         memset(opts, 0, sizeof(*opts));
1081
1082         while ((token = strsep(&o, ",")) != NULL) {
1083                 if (!*token)
1084                         return -EINVAL;
1085                 if (!strcmp(token, "all")) {
1086                         /* Add all non-disabled subsystems */
1087                         opts->subsys_bits = 0;
1088                         for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1089                                 struct cgroup_subsys *ss = subsys[i];
1090                                 if (ss == NULL)
1091                                         continue;
1092                                 if (!ss->disabled)
1093                                         opts->subsys_bits |= 1ul << i;
1094                         }
1095                 } else if (!strcmp(token, "none")) {
1096                         /* Explicitly have no subsystems */
1097                         opts->none = true;
1098                 } else if (!strcmp(token, "noprefix")) {
1099                         set_bit(ROOT_NOPREFIX, &opts->flags);
1100                 } else if (!strncmp(token, "release_agent=", 14)) {
1101                         /* Specifying two release agents is forbidden */
1102                         if (opts->release_agent)
1103                                 return -EINVAL;
1104                         opts->release_agent =
1105                                 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
1106                         if (!opts->release_agent)
1107                                 return -ENOMEM;
1108                 } else if (!strncmp(token, "name=", 5)) {
1109                         const char *name = token + 5;
1110                         /* Can't specify an empty name */
1111                         if (!strlen(name))
1112                                 return -EINVAL;
1113                         /* Must match [\w.-]+ */
1114                         for (i = 0; i < strlen(name); i++) {
1115                                 char c = name[i];
1116                                 if (isalnum(c))
1117                                         continue;
1118                                 if ((c == '.') || (c == '-') || (c == '_'))
1119                                         continue;
1120                                 return -EINVAL;
1121                         }
1122                         /* Specifying two names is forbidden */
1123                         if (opts->name)
1124                                 return -EINVAL;
1125                         opts->name = kstrndup(name,
1126                                               MAX_CGROUP_ROOT_NAMELEN - 1,
1127                                               GFP_KERNEL);
1128                         if (!opts->name)
1129                                 return -ENOMEM;
1130                 } else {
1131                         struct cgroup_subsys *ss;
1132                         for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1133                                 ss = subsys[i];
1134                                 if (ss == NULL)
1135                                         continue;
1136                                 if (!strcmp(token, ss->name)) {
1137                                         if (!ss->disabled)
1138                                                 set_bit(i, &opts->subsys_bits);
1139                                         break;
1140                                 }
1141                         }
1142                         if (i == CGROUP_SUBSYS_COUNT)
1143                                 return -ENOENT;
1144                 }
1145         }
1146
1147         /* Consistency checks */
1148
1149         /*
1150          * Option noprefix was introduced just for backward compatibility
1151          * with the old cpuset, so we allow noprefix only if mounting just
1152          * the cpuset subsystem.
1153          */
1154         if (test_bit(ROOT_NOPREFIX, &opts->flags) &&
1155             (opts->subsys_bits & mask))
1156                 return -EINVAL;
1157
1158
1159         /* Can't specify "none" and some subsystems */
1160         if (opts->subsys_bits && opts->none)
1161                 return -EINVAL;
1162
1163         /*
1164          * We either have to specify by name or by subsystems. (So all
1165          * empty hierarchies must have a name).
1166          */
1167         if (!opts->subsys_bits && !opts->name)
1168                 return -EINVAL;
1169
1170         /*
1171          * Grab references on all the modules we'll need, so the subsystems
1172          * don't dance around before rebind_subsystems attaches them. This may
1173          * take duplicate reference counts on a subsystem that's already used,
1174          * but rebind_subsystems handles this case.
1175          */
1176         for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
1177                 unsigned long bit = 1UL << i;
1178
1179                 if (!(bit & opts->subsys_bits))
1180                         continue;
1181                 if (!try_module_get(subsys[i]->module)) {
1182                         module_pin_failed = true;
1183                         break;
1184                 }
1185         }
1186         if (module_pin_failed) {
1187                 /*
1188                  * oops, one of the modules was going away. this means that we
1189                  * raced with a module_delete call, and to the user this is
1190                  * essentially a "subsystem doesn't exist" case.
1191                  */
1192                 for (i--; i >= CGROUP_BUILTIN_SUBSYS_COUNT; i--) {
1193                         /* drop refcounts only on the ones we took */
1194                         unsigned long bit = 1UL << i;
1195
1196                         if (!(bit & opts->subsys_bits))
1197                                 continue;
1198                         module_put(subsys[i]->module);
1199                 }
1200                 return -ENOENT;
1201         }
1202
1203         return 0;
1204 }
1205
1206 static void drop_parsed_module_refcounts(unsigned long subsys_bits)
1207 {
1208         int i;
1209         for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
1210                 unsigned long bit = 1UL << i;
1211
1212                 if (!(bit & subsys_bits))
1213                         continue;
1214                 module_put(subsys[i]->module);
1215         }
1216 }
1217
1218 static int cgroup_remount(struct super_block *sb, int *flags, char *data)
1219 {
1220         int ret = 0;
1221         struct cgroupfs_root *root = sb->s_fs_info;
1222         struct cgroup *cgrp = &root->top_cgroup;
1223         struct cgroup_sb_opts opts;
1224
1225         lock_kernel();
1226         mutex_lock(&cgrp->dentry->d_inode->i_mutex);
1227         mutex_lock(&cgroup_mutex);
1228
1229         /* See what subsystems are wanted */
1230         ret = parse_cgroupfs_options(data, &opts);
1231         if (ret)
1232                 goto out_unlock;
1233
1234         /* Don't allow flags or name to change at remount */
1235         if (opts.flags != root->flags ||
1236             (opts.name && strcmp(opts.name, root->name))) {
1237                 ret = -EINVAL;
1238                 drop_parsed_module_refcounts(opts.subsys_bits);
1239                 goto out_unlock;
1240         }
1241
1242         ret = rebind_subsystems(root, opts.subsys_bits);
1243         if (ret) {
1244                 drop_parsed_module_refcounts(opts.subsys_bits);
1245                 goto out_unlock;
1246         }
1247
1248         /* (re)populate subsystem files */
1249         cgroup_populate_dir(cgrp);
1250
1251         if (opts.release_agent)
1252                 strcpy(root->release_agent_path, opts.release_agent);
1253  out_unlock:
1254         kfree(opts.release_agent);
1255         kfree(opts.name);
1256         mutex_unlock(&cgroup_mutex);
1257         mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
1258         unlock_kernel();
1259         return ret;
1260 }
1261
1262 static const struct super_operations cgroup_ops = {
1263         .statfs = simple_statfs,
1264         .drop_inode = generic_delete_inode,
1265         .show_options = cgroup_show_options,
1266         .remount_fs = cgroup_remount,
1267 };
1268
1269 static void init_cgroup_housekeeping(struct cgroup *cgrp)
1270 {
1271         INIT_LIST_HEAD(&cgrp->sibling);
1272         INIT_LIST_HEAD(&cgrp->children);
1273         INIT_LIST_HEAD(&cgrp->css_sets);
1274         INIT_LIST_HEAD(&cgrp->release_list);
1275         INIT_LIST_HEAD(&cgrp->pidlists);
1276         mutex_init(&cgrp->pidlist_mutex);
1277         INIT_LIST_HEAD(&cgrp->event_list);
1278         spin_lock_init(&cgrp->event_list_lock);
1279 }
1280
1281 static void init_cgroup_root(struct cgroupfs_root *root)
1282 {
1283         struct cgroup *cgrp = &root->top_cgroup;
1284         INIT_LIST_HEAD(&root->subsys_list);
1285         INIT_LIST_HEAD(&root->root_list);
1286         root->number_of_cgroups = 1;
1287         cgrp->root = root;
1288         cgrp->top_cgroup = cgrp;
1289         init_cgroup_housekeeping(cgrp);
1290 }
1291
1292 static bool init_root_id(struct cgroupfs_root *root)
1293 {
1294         int ret = 0;
1295
1296         do {
1297                 if (!ida_pre_get(&hierarchy_ida, GFP_KERNEL))
1298                         return false;
1299                 spin_lock(&hierarchy_id_lock);
1300                 /* Try to allocate the next unused ID */
1301                 ret = ida_get_new_above(&hierarchy_ida, next_hierarchy_id,
1302                                         &root->hierarchy_id);
1303                 if (ret == -ENOSPC)
1304                         /* Try again starting from 0 */
1305                         ret = ida_get_new(&hierarchy_ida, &root->hierarchy_id);
1306                 if (!ret) {
1307                         next_hierarchy_id = root->hierarchy_id + 1;
1308                 } else if (ret != -EAGAIN) {
1309                         /* Can only get here if the 31-bit IDR is full ... */
1310                         BUG_ON(ret);
1311                 }
1312                 spin_unlock(&hierarchy_id_lock);
1313         } while (ret);
1314         return true;
1315 }
1316
1317 static int cgroup_test_super(struct super_block *sb, void *data)
1318 {
1319         struct cgroup_sb_opts *opts = data;
1320         struct cgroupfs_root *root = sb->s_fs_info;
1321
1322         /* If we asked for a name then it must match */
1323         if (opts->name && strcmp(opts->name, root->name))
1324                 return 0;
1325
1326         /*
1327          * If we asked for subsystems (or explicitly for no
1328          * subsystems) then they must match
1329          */
1330         if ((opts->subsys_bits || opts->none)
1331             && (opts->subsys_bits != root->subsys_bits))
1332                 return 0;
1333
1334         return 1;
1335 }
1336
1337 static struct cgroupfs_root *cgroup_root_from_opts(struct cgroup_sb_opts *opts)
1338 {
1339         struct cgroupfs_root *root;
1340
1341         if (!opts->subsys_bits && !opts->none)
1342                 return NULL;
1343
1344         root = kzalloc(sizeof(*root), GFP_KERNEL);
1345         if (!root)
1346                 return ERR_PTR(-ENOMEM);
1347
1348         if (!init_root_id(root)) {
1349                 kfree(root);
1350                 return ERR_PTR(-ENOMEM);
1351         }
1352         init_cgroup_root(root);
1353
1354         root->subsys_bits = opts->subsys_bits;
1355         root->flags = opts->flags;
1356         if (opts->release_agent)
1357                 strcpy(root->release_agent_path, opts->release_agent);
1358         if (opts->name)
1359                 strcpy(root->name, opts->name);
1360         return root;
1361 }
1362
1363 static void cgroup_drop_root(struct cgroupfs_root *root)
1364 {
1365         if (!root)
1366                 return;
1367
1368         BUG_ON(!root->hierarchy_id);
1369         spin_lock(&hierarchy_id_lock);
1370         ida_remove(&hierarchy_ida, root->hierarchy_id);
1371         spin_unlock(&hierarchy_id_lock);
1372         kfree(root);
1373 }
1374
1375 static int cgroup_set_super(struct super_block *sb, void *data)
1376 {
1377         int ret;
1378         struct cgroup_sb_opts *opts = data;
1379
1380         /* If we don't have a new root, we can't set up a new sb */
1381         if (!opts->new_root)
1382                 return -EINVAL;
1383
1384         BUG_ON(!opts->subsys_bits && !opts->none);
1385
1386         ret = set_anon_super(sb, NULL);
1387         if (ret)
1388                 return ret;
1389
1390         sb->s_fs_info = opts->new_root;
1391         opts->new_root->sb = sb;
1392
1393         sb->s_blocksize = PAGE_CACHE_SIZE;
1394         sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
1395         sb->s_magic = CGROUP_SUPER_MAGIC;
1396         sb->s_op = &cgroup_ops;
1397
1398         return 0;
1399 }
1400
1401 static int cgroup_get_rootdir(struct super_block *sb)
1402 {
1403         struct inode *inode =
1404                 cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb);
1405         struct dentry *dentry;
1406
1407         if (!inode)
1408                 return -ENOMEM;
1409
1410         inode->i_fop = &simple_dir_operations;
1411         inode->i_op = &cgroup_dir_inode_operations;
1412         /* directories start off with i_nlink == 2 (for "." entry) */
1413         inc_nlink(inode);
1414         dentry = d_alloc_root(inode);
1415         if (!dentry) {
1416                 iput(inode);
1417                 return -ENOMEM;
1418         }
1419         sb->s_root = dentry;
1420         return 0;
1421 }
1422
1423 static int cgroup_get_sb(struct file_system_type *fs_type,
1424                          int flags, const char *unused_dev_name,
1425                          void *data, struct vfsmount *mnt)
1426 {
1427         struct cgroup_sb_opts opts;
1428         struct cgroupfs_root *root;
1429         int ret = 0;
1430         struct super_block *sb;
1431         struct cgroupfs_root *new_root;
1432
1433         lock_kernel();
1434
1435         /* First find the desired set of subsystems */
1436         mutex_lock(&cgroup_mutex);
1437         ret = parse_cgroupfs_options(data, &opts);
1438         mutex_unlock(&cgroup_mutex);
1439         if (ret)
1440                 goto out_err;
1441
1442         /*
1443          * Allocate a new cgroup root. We may not need it if we're
1444          * reusing an existing hierarchy.
1445          */
1446         new_root = cgroup_root_from_opts(&opts);
1447         if (IS_ERR(new_root)) {
1448                 ret = PTR_ERR(new_root);
1449                 goto drop_modules;
1450         }
1451         opts.new_root = new_root;
1452
1453         /* Locate an existing or new sb for this hierarchy */
1454         sb = sget(fs_type, cgroup_test_super, cgroup_set_super, &opts);
1455         if (IS_ERR(sb)) {
1456                 ret = PTR_ERR(sb);
1457                 cgroup_drop_root(opts.new_root);
1458                 goto drop_modules;
1459         }
1460
1461         root = sb->s_fs_info;
1462         BUG_ON(!root);
1463         if (root == opts.new_root) {
1464                 /* We used the new root structure, so this is a new hierarchy */
1465                 struct list_head tmp_cg_links;
1466                 struct cgroup *root_cgrp = &root->top_cgroup;
1467                 struct inode *inode;
1468                 struct cgroupfs_root *existing_root;
1469                 int i;
1470
1471                 BUG_ON(sb->s_root != NULL);
1472
1473                 ret = cgroup_get_rootdir(sb);
1474                 if (ret)
1475                         goto drop_new_super;
1476                 inode = sb->s_root->d_inode;
1477
1478                 mutex_lock(&inode->i_mutex);
1479                 mutex_lock(&cgroup_mutex);
1480
1481                 if (strlen(root->name)) {
1482                         /* Check for name clashes with existing mounts */
1483                         for_each_active_root(existing_root) {
1484                                 if (!strcmp(existing_root->name, root->name)) {
1485                                         ret = -EBUSY;
1486                                         mutex_unlock(&cgroup_mutex);
1487                                         mutex_unlock(&inode->i_mutex);
1488                                         goto drop_new_super;
1489                                 }
1490                         }
1491                 }
1492
1493                 /*
1494                  * We're accessing css_set_count without locking
1495                  * css_set_lock here, but that's OK - it can only be
1496                  * increased by someone holding cgroup_lock, and
1497                  * that's us. The worst that can happen is that we
1498                  * have some link structures left over
1499                  */
1500                 ret = allocate_cg_links(css_set_count, &tmp_cg_links);
1501                 if (ret) {
1502                         mutex_unlock(&cgroup_mutex);
1503                         mutex_unlock(&inode->i_mutex);
1504                         goto drop_new_super;
1505                 }
1506
1507                 ret = rebind_subsystems(root, root->subsys_bits);
1508                 if (ret == -EBUSY) {
1509                         mutex_unlock(&cgroup_mutex);
1510                         mutex_unlock(&inode->i_mutex);
1511                         free_cg_links(&tmp_cg_links);
1512                         goto drop_new_super;
1513                 }
1514                 /*
1515                  * There must be no failure case after here, since rebinding
1516                  * takes care of subsystems' refcounts, which are explicitly
1517                  * dropped in the failure exit path.
1518                  */
1519
1520                 /* EBUSY should be the only error here */
1521                 BUG_ON(ret);
1522
1523                 list_add(&root->root_list, &roots);
1524                 root_count++;
1525
1526                 sb->s_root->d_fsdata = root_cgrp;
1527                 root->top_cgroup.dentry = sb->s_root;
1528
1529                 /* Link the top cgroup in this hierarchy into all
1530                  * the css_set objects */
1531                 write_lock(&css_set_lock);
1532                 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
1533                         struct hlist_head *hhead = &css_set_table[i];
1534                         struct hlist_node *node;
1535                         struct css_set *cg;
1536
1537                         hlist_for_each_entry(cg, node, hhead, hlist)
1538                                 link_css_set(&tmp_cg_links, cg, root_cgrp);
1539                 }
1540                 write_unlock(&css_set_lock);
1541
1542                 free_cg_links(&tmp_cg_links);
1543
1544                 BUG_ON(!list_empty(&root_cgrp->sibling));
1545                 BUG_ON(!list_empty(&root_cgrp->children));
1546                 BUG_ON(root->number_of_cgroups != 1);
1547
1548                 cgroup_populate_dir(root_cgrp);
1549                 mutex_unlock(&cgroup_mutex);
1550                 mutex_unlock(&inode->i_mutex);
1551         } else {
1552                 /*
1553                  * We re-used an existing hierarchy - the new root (if
1554                  * any) is not needed
1555                  */
1556                 cgroup_drop_root(opts.new_root);
1557                 /* no subsys rebinding, so refcounts don't change */
1558                 drop_parsed_module_refcounts(opts.subsys_bits);
1559         }
1560
1561         simple_set_mnt(mnt, sb);
1562         kfree(opts.release_agent);
1563         kfree(opts.name);
1564         unlock_kernel();
1565         return 0;
1566
1567  drop_new_super:
1568         deactivate_locked_super(sb);
1569  drop_modules:
1570         drop_parsed_module_refcounts(opts.subsys_bits);
1571  out_err:
1572         kfree(opts.release_agent);
1573         kfree(opts.name);
1574         unlock_kernel();
1575
1576         return ret;
1577 }
1578
1579 static void cgroup_kill_sb(struct super_block *sb) {
1580         struct cgroupfs_root *root = sb->s_fs_info;
1581         struct cgroup *cgrp = &root->top_cgroup;
1582         int ret;
1583         struct cg_cgroup_link *link;
1584         struct cg_cgroup_link *saved_link;
1585
1586         BUG_ON(!root);
1587
1588         BUG_ON(root->number_of_cgroups != 1);
1589         BUG_ON(!list_empty(&cgrp->children));
1590         BUG_ON(!list_empty(&cgrp->sibling));
1591
1592         mutex_lock(&cgroup_mutex);
1593
1594         /* Rebind all subsystems back to the default hierarchy */
1595         ret = rebind_subsystems(root, 0);
1596         /* Shouldn't be able to fail ... */
1597         BUG_ON(ret);
1598
1599         /*
1600          * Release all the links from css_sets to this hierarchy's
1601          * root cgroup
1602          */
1603         write_lock(&css_set_lock);
1604
1605         list_for_each_entry_safe(link, saved_link, &cgrp->css_sets,
1606                                  cgrp_link_list) {
1607                 list_del(&link->cg_link_list);
1608                 list_del(&link->cgrp_link_list);
1609                 kfree(link);
1610         }
1611         write_unlock(&css_set_lock);
1612
1613         if (!list_empty(&root->root_list)) {
1614                 list_del(&root->root_list);
1615                 root_count--;
1616         }
1617
1618         mutex_unlock(&cgroup_mutex);
1619
1620         kill_litter_super(sb);
1621         cgroup_drop_root(root);
1622 }
1623
1624 static struct file_system_type cgroup_fs_type = {
1625         .name = "cgroup",
1626         .get_sb = cgroup_get_sb,
1627         .kill_sb = cgroup_kill_sb,
1628 };
1629
1630 static struct kobject *cgroup_kobj;
1631
1632 static inline struct cgroup *__d_cgrp(struct dentry *dentry)
1633 {
1634         return dentry->d_fsdata;
1635 }
1636
1637 static inline struct cftype *__d_cft(struct dentry *dentry)
1638 {
1639         return dentry->d_fsdata;
1640 }
1641
1642 /**
1643  * cgroup_path - generate the path of a cgroup
1644  * @cgrp: the cgroup in question
1645  * @buf: the buffer to write the path into
1646  * @buflen: the length of the buffer
1647  *
1648  * Called with cgroup_mutex held or else with an RCU-protected cgroup
1649  * reference.  Writes path of cgroup into buf.  Returns 0 on success,
1650  * -errno on error.
1651  */
1652 int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
1653 {
1654         char *start;
1655         struct dentry *dentry = rcu_dereference_check(cgrp->dentry,
1656                                                       rcu_read_lock_held() ||
1657                                                       cgroup_lock_is_held());
1658
1659         if (!dentry || cgrp == dummytop) {
1660                 /*
1661                  * Inactive subsystems have no dentry for their root
1662                  * cgroup
1663                  */
1664                 strcpy(buf, "/");
1665                 return 0;
1666         }
1667
1668         start = buf + buflen;
1669
1670         *--start = '\0';
1671         for (;;) {
1672                 int len = dentry->d_name.len;
1673
1674                 if ((start -= len) < buf)
1675                         return -ENAMETOOLONG;
1676                 memcpy(start, dentry->d_name.name, len);
1677                 cgrp = cgrp->parent;
1678                 if (!cgrp)
1679                         break;
1680
1681                 dentry = rcu_dereference_check(cgrp->dentry,
1682                                                rcu_read_lock_held() ||
1683                                                cgroup_lock_is_held());
1684                 if (!cgrp->parent)
1685                         continue;
1686                 if (--start < buf)
1687                         return -ENAMETOOLONG;
1688                 *start = '/';
1689         }
1690         memmove(buf, start, buf + buflen - start);
1691         return 0;
1692 }
1693 EXPORT_SYMBOL_GPL(cgroup_path);
1694
1695 /**
1696  * cgroup_attach_task - attach task 'tsk' to cgroup 'cgrp'
1697  * @cgrp: the cgroup the task is attaching to
1698  * @tsk: the task to be attached
1699  *
1700  * Call holding cgroup_mutex. May take task_lock of
1701  * the task 'tsk' during call.
1702  */
1703 int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
1704 {
1705         int retval = 0;
1706         struct cgroup_subsys *ss, *failed_ss = NULL;
1707         struct cgroup *oldcgrp;
1708         struct css_set *cg;
1709         struct css_set *newcg;
1710         struct cgroupfs_root *root = cgrp->root;
1711
1712         /* Nothing to do if the task is already in that cgroup */
1713         oldcgrp = task_cgroup_from_root(tsk, root);
1714         if (cgrp == oldcgrp)
1715                 return 0;
1716
1717         for_each_subsys(root, ss) {
1718                 if (ss->can_attach) {
1719                         retval = ss->can_attach(ss, cgrp, tsk, false);
1720                         if (retval) {
1721                                 /*
1722                                  * Remember on which subsystem the can_attach()
1723                                  * failed, so that we only call cancel_attach()
1724                                  * against the subsystems whose can_attach()
1725                                  * succeeded. (See below)
1726                                  */
1727                                 failed_ss = ss;
1728                                 goto out;
1729                         }
1730                 }
1731         }
1732
1733         task_lock(tsk);
1734         cg = tsk->cgroups;
1735         get_css_set(cg);
1736         task_unlock(tsk);
1737         /*
1738          * Locate or allocate a new css_set for this task,
1739          * based on its final set of cgroups
1740          */
1741         newcg = find_css_set(cg, cgrp);
1742         put_css_set(cg);
1743         if (!newcg) {
1744                 retval = -ENOMEM;
1745                 goto out;
1746         }
1747
1748         task_lock(tsk);
1749         if (tsk->flags & PF_EXITING) {
1750                 task_unlock(tsk);
1751                 put_css_set(newcg);
1752                 retval = -ESRCH;
1753                 goto out;
1754         }
1755         rcu_assign_pointer(tsk->cgroups, newcg);
1756         task_unlock(tsk);
1757
1758         /* Update the css_set linked lists if we're using them */
1759         write_lock(&css_set_lock);
1760         if (!list_empty(&tsk->cg_list)) {
1761                 list_del(&tsk->cg_list);
1762                 list_add(&tsk->cg_list, &newcg->tasks);
1763         }
1764         write_unlock(&css_set_lock);
1765
1766         for_each_subsys(root, ss) {
1767                 if (ss->attach)
1768                         ss->attach(ss, cgrp, oldcgrp, tsk, false);
1769         }
1770         set_bit(CGRP_RELEASABLE, &oldcgrp->flags);
1771         synchronize_rcu();
1772         put_css_set(cg);
1773
1774         /*
1775          * wake up rmdir() waiter. the rmdir should fail since the cgroup
1776          * is no longer empty.
1777          */
1778         cgroup_wakeup_rmdir_waiter(cgrp);
1779 out:
1780         if (retval) {
1781                 for_each_subsys(root, ss) {
1782                         if (ss == failed_ss)
1783                                 /*
1784                                  * This subsystem was the one that failed the
1785                                  * can_attach() check earlier, so we don't need
1786                                  * to call cancel_attach() against it or any
1787                                  * remaining subsystems.
1788                                  */
1789                                 break;
1790                         if (ss->cancel_attach)
1791                                 ss->cancel_attach(ss, cgrp, tsk, false);
1792                 }
1793         }
1794         return retval;
1795 }
1796
1797 /**
1798  * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
1799  * @from: attach to all cgroups of a given task
1800  * @tsk: the task to be attached
1801  */
1802 int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
1803 {
1804         struct cgroupfs_root *root;
1805         int retval = 0;
1806
1807         cgroup_lock();
1808         for_each_active_root(root) {
1809                 struct cgroup *from_cg = task_cgroup_from_root(from, root);
1810
1811                 retval = cgroup_attach_task(from_cg, tsk);
1812                 if (retval)
1813                         break;
1814         }
1815         cgroup_unlock();
1816
1817         return retval;
1818 }
1819 EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
1820
1821 /*
1822  * Attach task with pid 'pid' to cgroup 'cgrp'. Call with cgroup_mutex
1823  * held. May take task_lock of task
1824  */
1825 static int attach_task_by_pid(struct cgroup *cgrp, u64 pid)
1826 {
1827         struct task_struct *tsk;
1828         const struct cred *cred = current_cred(), *tcred;
1829         int ret;
1830
1831         if (pid) {
1832                 rcu_read_lock();
1833                 tsk = find_task_by_vpid(pid);
1834                 if (!tsk || tsk->flags & PF_EXITING) {
1835                         rcu_read_unlock();
1836                         return -ESRCH;
1837                 }
1838
1839                 tcred = __task_cred(tsk);
1840                 if (cred->euid &&
1841                     cred->euid != tcred->uid &&
1842                     cred->euid != tcred->suid) {
1843                         rcu_read_unlock();
1844                         return -EACCES;
1845                 }
1846                 get_task_struct(tsk);
1847                 rcu_read_unlock();
1848         } else {
1849                 tsk = current;
1850                 get_task_struct(tsk);
1851         }
1852
1853         ret = cgroup_attach_task(cgrp, tsk);
1854         put_task_struct(tsk);
1855         return ret;
1856 }
1857
1858 static int cgroup_tasks_write(struct cgroup *cgrp, struct cftype *cft, u64 pid)
1859 {
1860         int ret;
1861         if (!cgroup_lock_live_group(cgrp))
1862                 return -ENODEV;
1863         ret = attach_task_by_pid(cgrp, pid);
1864         cgroup_unlock();
1865         return ret;
1866 }
1867
1868 /**
1869  * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive.
1870  * @cgrp: the cgroup to be checked for liveness
1871  *
1872  * On success, returns true; the lock should be later released with
1873  * cgroup_unlock(). On failure returns false with no lock held.
1874  */
1875 bool cgroup_lock_live_group(struct cgroup *cgrp)
1876 {
1877         mutex_lock(&cgroup_mutex);
1878         if (cgroup_is_removed(cgrp)) {
1879                 mutex_unlock(&cgroup_mutex);
1880                 return false;
1881         }
1882         return true;
1883 }
1884 EXPORT_SYMBOL_GPL(cgroup_lock_live_group);
1885
1886 static int cgroup_release_agent_write(struct cgroup *cgrp, struct cftype *cft,
1887                                       const char *buffer)
1888 {
1889         BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
1890         if (!cgroup_lock_live_group(cgrp))
1891                 return -ENODEV;
1892         strcpy(cgrp->root->release_agent_path, buffer);
1893         cgroup_unlock();
1894         return 0;
1895 }
1896
1897 static int cgroup_release_agent_show(struct cgroup *cgrp, struct cftype *cft,
1898                                      struct seq_file *seq)
1899 {
1900         if (!cgroup_lock_live_group(cgrp))
1901                 return -ENODEV;
1902         seq_puts(seq, cgrp->root->release_agent_path);
1903         seq_putc(seq, '\n');
1904         cgroup_unlock();
1905         return 0;
1906 }
1907
1908 /* A buffer size big enough for numbers or short strings */
1909 #define CGROUP_LOCAL_BUFFER_SIZE 64
1910
1911 static ssize_t cgroup_write_X64(struct cgroup *cgrp, struct cftype *cft,
1912                                 struct file *file,
1913                                 const char __user *userbuf,
1914                                 size_t nbytes, loff_t *unused_ppos)
1915 {
1916         char buffer[CGROUP_LOCAL_BUFFER_SIZE];
1917         int retval = 0;
1918         char *end;
1919
1920         if (!nbytes)
1921                 return -EINVAL;
1922         if (nbytes >= sizeof(buffer))
1923                 return -E2BIG;
1924         if (copy_from_user(buffer, userbuf, nbytes))
1925                 return -EFAULT;
1926
1927         buffer[nbytes] = 0;     /* nul-terminate */
1928         if (cft->write_u64) {
1929                 u64 val = simple_strtoull(strstrip(buffer), &end, 0);
1930                 if (*end)
1931                         return -EINVAL;
1932                 retval = cft->write_u64(cgrp, cft, val);
1933         } else {
1934                 s64 val = simple_strtoll(strstrip(buffer), &end, 0);
1935                 if (*end)
1936                         return -EINVAL;
1937                 retval = cft->write_s64(cgrp, cft, val);
1938         }
1939         if (!retval)
1940                 retval = nbytes;
1941         return retval;
1942 }
1943
1944 static ssize_t cgroup_write_string(struct cgroup *cgrp, struct cftype *cft,
1945                                    struct file *file,
1946                                    const char __user *userbuf,
1947                                    size_t nbytes, loff_t *unused_ppos)
1948 {
1949         char local_buffer[CGROUP_LOCAL_BUFFER_SIZE];
1950         int retval = 0;
1951         size_t max_bytes = cft->max_write_len;
1952         char *buffer = local_buffer;
1953
1954         if (!max_bytes)
1955                 max_bytes = sizeof(local_buffer) - 1;
1956         if (nbytes >= max_bytes)
1957                 return -E2BIG;
1958         /* Allocate a dynamic buffer if we need one */
1959         if (nbytes >= sizeof(local_buffer)) {
1960                 buffer = kmalloc(nbytes + 1, GFP_KERNEL);
1961                 if (buffer == NULL)
1962                         return -ENOMEM;
1963         }
1964         if (nbytes && copy_from_user(buffer, userbuf, nbytes)) {
1965                 retval = -EFAULT;
1966                 goto out;
1967         }
1968
1969         buffer[nbytes] = 0;     /* nul-terminate */
1970         retval = cft->write_string(cgrp, cft, strstrip(buffer));
1971         if (!retval)
1972                 retval = nbytes;
1973 out:
1974         if (buffer != local_buffer)
1975                 kfree(buffer);
1976         return retval;
1977 }
1978
1979 static ssize_t cgroup_file_write(struct file *file, const char __user *buf,
1980                                                 size_t nbytes, loff_t *ppos)
1981 {
1982         struct cftype *cft = __d_cft(file->f_dentry);
1983         struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
1984
1985         if (cgroup_is_removed(cgrp))
1986                 return -ENODEV;
1987         if (cft->write)
1988                 return cft->write(cgrp, cft, file, buf, nbytes, ppos);
1989         if (cft->write_u64 || cft->write_s64)
1990                 return cgroup_write_X64(cgrp, cft, file, buf, nbytes, ppos);
1991         if (cft->write_string)
1992                 return cgroup_write_string(cgrp, cft, file, buf, nbytes, ppos);
1993         if (cft->trigger) {
1994                 int ret = cft->trigger(cgrp, (unsigned int)cft->private);
1995                 return ret ? ret : nbytes;
1996         }
1997         return -EINVAL;
1998 }
1999
2000 static ssize_t cgroup_read_u64(struct cgroup *cgrp, struct cftype *cft,
2001                                struct file *file,
2002                                char __user *buf, size_t nbytes,
2003                                loff_t *ppos)
2004 {
2005         char tmp[CGROUP_LOCAL_BUFFER_SIZE];
2006         u64 val = cft->read_u64(cgrp, cft);
2007         int len = sprintf(tmp, "%llu\n", (unsigned long long) val);
2008
2009         return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2010 }
2011
2012 static ssize_t cgroup_read_s64(struct cgroup *cgrp, struct cftype *cft,
2013                                struct file *file,
2014                                char __user *buf, size_t nbytes,
2015                                loff_t *ppos)
2016 {
2017         char tmp[CGROUP_LOCAL_BUFFER_SIZE];
2018         s64 val = cft->read_s64(cgrp, cft);
2019         int len = sprintf(tmp, "%lld\n", (long long) val);
2020
2021         return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2022 }
2023
2024 static ssize_t cgroup_file_read(struct file *file, char __user *buf,
2025                                    size_t nbytes, loff_t *ppos)
2026 {
2027         struct cftype *cft = __d_cft(file->f_dentry);
2028         struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
2029
2030         if (cgroup_is_removed(cgrp))
2031                 return -ENODEV;
2032
2033         if (cft->read)
2034                 return cft->read(cgrp, cft, file, buf, nbytes, ppos);
2035         if (cft->read_u64)
2036                 return cgroup_read_u64(cgrp, cft, file, buf, nbytes, ppos);
2037         if (cft->read_s64)
2038                 return cgroup_read_s64(cgrp, cft, file, buf, nbytes, ppos);
2039         return -EINVAL;
2040 }
2041
2042 /*
2043  * seqfile ops/methods for returning structured data. Currently just
2044  * supports string->u64 maps, but can be extended in future.
2045  */
2046
2047 struct cgroup_seqfile_state {
2048         struct cftype *cft;
2049         struct cgroup *cgroup;
2050 };
2051
2052 static int cgroup_map_add(struct cgroup_map_cb *cb, const char *key, u64 value)
2053 {
2054         struct seq_file *sf = cb->state;
2055         return seq_printf(sf, "%s %llu\n", key, (unsigned long long)value);
2056 }
2057
2058 static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2059 {
2060         struct cgroup_seqfile_state *state = m->private;
2061         struct cftype *cft = state->cft;
2062         if (cft->read_map) {
2063                 struct cgroup_map_cb cb = {
2064                         .fill = cgroup_map_add,
2065                         .state = m,
2066                 };
2067                 return cft->read_map(state->cgroup, cft, &cb);
2068         }
2069         return cft->read_seq_string(state->cgroup, cft, m);
2070 }
2071
2072 static int cgroup_seqfile_release(struct inode *inode, struct file *file)
2073 {
2074         struct seq_file *seq = file->private_data;
2075         kfree(seq->private);
2076         return single_release(inode, file);
2077 }
2078
2079 static const struct file_operations cgroup_seqfile_operations = {
2080         .read = seq_read,
2081         .write = cgroup_file_write,
2082         .llseek = seq_lseek,
2083         .release = cgroup_seqfile_release,
2084 };
2085
2086 static int cgroup_file_open(struct inode *inode, struct file *file)
2087 {
2088         int err;
2089         struct cftype *cft;
2090
2091         err = generic_file_open(inode, file);
2092         if (err)
2093                 return err;
2094         cft = __d_cft(file->f_dentry);
2095
2096         if (cft->read_map || cft->read_seq_string) {
2097                 struct cgroup_seqfile_state *state =
2098                         kzalloc(sizeof(*state), GFP_USER);
2099                 if (!state)
2100                         return -ENOMEM;
2101                 state->cft = cft;
2102                 state->cgroup = __d_cgrp(file->f_dentry->d_parent);
2103                 file->f_op = &cgroup_seqfile_operations;
2104                 err = single_open(file, cgroup_seqfile_show, state);
2105                 if (err < 0)
2106                         kfree(state);
2107         } else if (cft->open)
2108                 err = cft->open(inode, file);
2109         else
2110                 err = 0;
2111
2112         return err;
2113 }
2114
2115 static int cgroup_file_release(struct inode *inode, struct file *file)
2116 {
2117         struct cftype *cft = __d_cft(file->f_dentry);
2118         if (cft->release)
2119                 return cft->release(inode, file);
2120         return 0;
2121 }
2122
2123 /*
2124  * cgroup_rename - Only allow simple rename of directories in place.
2125  */
2126 static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry,
2127                             struct inode *new_dir, struct dentry *new_dentry)
2128 {
2129         if (!S_ISDIR(old_dentry->d_inode->i_mode))
2130                 return -ENOTDIR;
2131         if (new_dentry->d_inode)
2132                 return -EEXIST;
2133         if (old_dir != new_dir)
2134                 return -EIO;
2135         return simple_rename(old_dir, old_dentry, new_dir, new_dentry);
2136 }
2137
2138 static const struct file_operations cgroup_file_operations = {
2139         .read = cgroup_file_read,
2140         .write = cgroup_file_write,
2141         .llseek = generic_file_llseek,
2142         .open = cgroup_file_open,
2143         .release = cgroup_file_release,
2144 };
2145
2146 static const struct inode_operations cgroup_dir_inode_operations = {
2147         .lookup = simple_lookup,
2148         .mkdir = cgroup_mkdir,
2149         .rmdir = cgroup_rmdir,
2150         .rename = cgroup_rename,
2151 };
2152
2153 /*
2154  * Check if a file is a control file
2155  */
2156 static inline struct cftype *__file_cft(struct file *file)
2157 {
2158         if (file->f_dentry->d_inode->i_fop != &cgroup_file_operations)
2159                 return ERR_PTR(-EINVAL);
2160         return __d_cft(file->f_dentry);
2161 }
2162
2163 static int cgroup_create_file(struct dentry *dentry, mode_t mode,
2164                                 struct super_block *sb)
2165 {
2166         static const struct dentry_operations cgroup_dops = {
2167                 .d_iput = cgroup_diput,
2168         };
2169
2170         struct inode *inode;
2171
2172         if (!dentry)
2173                 return -ENOENT;
2174         if (dentry->d_inode)
2175                 return -EEXIST;
2176
2177         inode = cgroup_new_inode(mode, sb);
2178         if (!inode)
2179                 return -ENOMEM;
2180
2181         if (S_ISDIR(mode)) {
2182                 inode->i_op = &cgroup_dir_inode_operations;
2183                 inode->i_fop = &simple_dir_operations;
2184
2185                 /* start off with i_nlink == 2 (for "." entry) */
2186                 inc_nlink(inode);
2187
2188                 /* start with the directory inode held, so that we can
2189                  * populate it without racing with another mkdir */
2190                 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
2191         } else if (S_ISREG(mode)) {
2192                 inode->i_size = 0;
2193                 inode->i_fop = &cgroup_file_operations;
2194         }
2195         dentry->d_op = &cgroup_dops;
2196         d_instantiate(dentry, inode);
2197         dget(dentry);   /* Extra count - pin the dentry in core */
2198         return 0;
2199 }
2200
2201 /*
2202  * cgroup_create_dir - create a directory for an object.
2203  * @cgrp: the cgroup we create the directory for. It must have a valid
2204  *        ->parent field. And we are going to fill its ->dentry field.
2205  * @dentry: dentry of the new cgroup
2206  * @mode: mode to set on new directory.
2207  */
2208 static int cgroup_create_dir(struct cgroup *cgrp, struct dentry *dentry,
2209                                 mode_t mode)
2210 {
2211         struct dentry *parent;
2212         int error = 0;
2213
2214         parent = cgrp->parent->dentry;
2215         error = cgroup_create_file(dentry, S_IFDIR | mode, cgrp->root->sb);
2216         if (!error) {
2217                 dentry->d_fsdata = cgrp;
2218                 inc_nlink(parent->d_inode);
2219                 rcu_assign_pointer(cgrp->dentry, dentry);
2220                 dget(dentry);
2221         }
2222         dput(dentry);
2223
2224         return error;
2225 }
2226
2227 /**
2228  * cgroup_file_mode - deduce file mode of a control file
2229  * @cft: the control file in question
2230  *
2231  * returns cft->mode if ->mode is not 0
2232  * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
2233  * returns S_IRUGO if it has only a read handler
2234  * returns S_IWUSR if it has only a write hander
2235  */
2236 static mode_t cgroup_file_mode(const struct cftype *cft)
2237 {
2238         mode_t mode = 0;
2239
2240         if (cft->mode)
2241                 return cft->mode;
2242
2243         if (cft->read || cft->read_u64 || cft->read_s64 ||
2244             cft->read_map || cft->read_seq_string)
2245                 mode |= S_IRUGO;
2246
2247         if (cft->write || cft->write_u64 || cft->write_s64 ||
2248             cft->write_string || cft->trigger)
2249                 mode |= S_IWUSR;
2250
2251         return mode;
2252 }
2253
2254 int cgroup_add_file(struct cgroup *cgrp,
2255                        struct cgroup_subsys *subsys,
2256                        const struct cftype *cft)
2257 {
2258         struct dentry *dir = cgrp->dentry;
2259         struct dentry *dentry;
2260         int error;
2261         mode_t mode;
2262
2263         char name[MAX_CGROUP_TYPE_NAMELEN + MAX_CFTYPE_NAME + 2] = { 0 };
2264         if (subsys && !test_bit(ROOT_NOPREFIX, &cgrp->root->flags)) {
2265                 strcpy(name, subsys->name);
2266                 strcat(name, ".");
2267         }
2268         strcat(name, cft->name);
2269         BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex));
2270         dentry = lookup_one_len(name, dir, strlen(name));
2271         if (!IS_ERR(dentry)) {
2272                 mode = cgroup_file_mode(cft);
2273                 error = cgroup_create_file(dentry, mode | S_IFREG,
2274                                                 cgrp->root->sb);
2275                 if (!error)
2276                         dentry->d_fsdata = (void *)cft;
2277                 dput(dentry);
2278         } else
2279                 error = PTR_ERR(dentry);
2280         return error;
2281 }
2282 EXPORT_SYMBOL_GPL(cgroup_add_file);
2283
2284 int cgroup_add_files(struct cgroup *cgrp,
2285                         struct cgroup_subsys *subsys,
2286                         const struct cftype cft[],
2287                         int count)
2288 {
2289         int i, err;
2290         for (i = 0; i < count; i++) {
2291                 err = cgroup_add_file(cgrp, subsys, &cft[i]);
2292                 if (err)
2293                         return err;
2294         }
2295         return 0;
2296 }
2297 EXPORT_SYMBOL_GPL(cgroup_add_files);
2298
2299 /**
2300  * cgroup_task_count - count the number of tasks in a cgroup.
2301  * @cgrp: the cgroup in question
2302  *
2303  * Return the number of tasks in the cgroup.
2304  */
2305 int cgroup_task_count(const struct cgroup *cgrp)
2306 {
2307         int count = 0;
2308         struct cg_cgroup_link *link;
2309
2310         read_lock(&css_set_lock);
2311         list_for_each_entry(link, &cgrp->css_sets, cgrp_link_list) {
2312                 count += atomic_read(&link->cg->refcount);
2313         }
2314         read_unlock(&css_set_lock);
2315         return count;
2316 }
2317
2318 /*
2319  * Advance a list_head iterator.  The iterator should be positioned at
2320  * the start of a css_set
2321  */
2322 static void cgroup_advance_iter(struct cgroup *cgrp,
2323                                 struct cgroup_iter *it)
2324 {
2325         struct list_head *l = it->cg_link;
2326         struct cg_cgroup_link *link;
2327         struct css_set *cg;
2328
2329         /* Advance to the next non-empty css_set */
2330         do {
2331                 l = l->next;
2332                 if (l == &cgrp->css_sets) {
2333                         it->cg_link = NULL;
2334                         return;
2335                 }
2336                 link = list_entry(l, struct cg_cgroup_link, cgrp_link_list);
2337                 cg = link->cg;
2338         } while (list_empty(&cg->tasks));
2339         it->cg_link = l;
2340         it->task = cg->tasks.next;
2341 }
2342
2343 /*
2344  * To reduce the fork() overhead for systems that are not actually
2345  * using their cgroups capability, we don't maintain the lists running
2346  * through each css_set to its tasks until we see the list actually
2347  * used - in other words after the first call to cgroup_iter_start().
2348  *
2349  * The tasklist_lock is not held here, as do_each_thread() and
2350  * while_each_thread() are protected by RCU.
2351  */
2352 static void cgroup_enable_task_cg_lists(void)
2353 {
2354         struct task_struct *p, *g;
2355         write_lock(&css_set_lock);
2356         use_task_css_set_links = 1;
2357         do_each_thread(g, p) {
2358                 task_lock(p);
2359                 /*
2360                  * We should check if the process is exiting, otherwise
2361                  * it will race with cgroup_exit() in that the list
2362                  * entry won't be deleted though the process has exited.
2363                  */
2364                 if (!(p->flags & PF_EXITING) && list_empty(&p->cg_list))
2365                         list_add(&p->cg_list, &p->cgroups->tasks);
2366                 task_unlock(p);
2367         } while_each_thread(g, p);
2368         write_unlock(&css_set_lock);
2369 }
2370
2371 void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it)
2372 {
2373         /*
2374          * The first time anyone tries to iterate across a cgroup,
2375          * we need to enable the list linking each css_set to its
2376          * tasks, and fix up all existing tasks.
2377          */
2378         if (!use_task_css_set_links)
2379                 cgroup_enable_task_cg_lists();
2380
2381         read_lock(&css_set_lock);
2382         it->cg_link = &cgrp->css_sets;
2383         cgroup_advance_iter(cgrp, it);
2384 }
2385
2386 struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
2387                                         struct cgroup_iter *it)
2388 {
2389         struct task_struct *res;
2390         struct list_head *l = it->task;
2391         struct cg_cgroup_link *link;
2392
2393         /* If the iterator cg is NULL, we have no tasks */
2394         if (!it->cg_link)
2395                 return NULL;
2396         res = list_entry(l, struct task_struct, cg_list);
2397         /* Advance iterator to find next entry */
2398         l = l->next;
2399         link = list_entry(it->cg_link, struct cg_cgroup_link, cgrp_link_list);
2400         if (l == &link->cg->tasks) {
2401                 /* We reached the end of this task list - move on to
2402                  * the next cg_cgroup_link */
2403                 cgroup_advance_iter(cgrp, it);
2404         } else {
2405                 it->task = l;
2406         }
2407         return res;
2408 }
2409
2410 void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it)
2411 {
2412         read_unlock(&css_set_lock);
2413 }
2414
2415 static inline int started_after_time(struct task_struct *t1,
2416                                      struct timespec *time,
2417                                      struct task_struct *t2)
2418 {
2419         int start_diff = timespec_compare(&t1->start_time, time);
2420         if (start_diff > 0) {
2421                 return 1;
2422         } else if (start_diff < 0) {
2423                 return 0;
2424         } else {
2425                 /*
2426                  * Arbitrarily, if two processes started at the same
2427                  * time, we'll say that the lower pointer value
2428                  * started first. Note that t2 may have exited by now
2429                  * so this may not be a valid pointer any longer, but
2430                  * that's fine - it still serves to distinguish
2431                  * between two tasks started (effectively) simultaneously.
2432                  */
2433                 return t1 > t2;
2434         }
2435 }
2436
2437 /*
2438  * This function is a callback from heap_insert() and is used to order
2439  * the heap.
2440  * In this case we order the heap in descending task start time.
2441  */
2442 static inline int started_after(void *p1, void *p2)
2443 {
2444         struct task_struct *t1 = p1;
2445         struct task_struct *t2 = p2;
2446         return started_after_time(t1, &t2->start_time, t2);
2447 }
2448
2449 /**
2450  * cgroup_scan_tasks - iterate though all the tasks in a cgroup
2451  * @scan: struct cgroup_scanner containing arguments for the scan
2452  *
2453  * Arguments include pointers to callback functions test_task() and
2454  * process_task().
2455  * Iterate through all the tasks in a cgroup, calling test_task() for each,
2456  * and if it returns true, call process_task() for it also.
2457  * The test_task pointer may be NULL, meaning always true (select all tasks).
2458  * Effectively duplicates cgroup_iter_{start,next,end}()
2459  * but does not lock css_set_lock for the call to process_task().
2460  * The struct cgroup_scanner may be embedded in any structure of the caller's
2461  * creation.
2462  * It is guaranteed that process_task() will act on every task that
2463  * is a member of the cgroup for the duration of this call. This
2464  * function may or may not call process_task() for tasks that exit
2465  * or move to a different cgroup during the call, or are forked or
2466  * move into the cgroup during the call.
2467  *
2468  * Note that test_task() may be called with locks held, and may in some
2469  * situations be called multiple times for the same task, so it should
2470  * be cheap.
2471  * If the heap pointer in the struct cgroup_scanner is non-NULL, a heap has been
2472  * pre-allocated and will be used for heap operations (and its "gt" member will
2473  * be overwritten), else a temporary heap will be used (allocation of which
2474  * may cause this function to fail).
2475  */
2476 int cgroup_scan_tasks(struct cgroup_scanner *scan)
2477 {
2478         int retval, i;
2479         struct cgroup_iter it;
2480         struct task_struct *p, *dropped;
2481         /* Never dereference latest_task, since it's not refcounted */
2482         struct task_struct *latest_task = NULL;
2483         struct ptr_heap tmp_heap;
2484         struct ptr_heap *heap;
2485         struct timespec latest_time = { 0, 0 };
2486
2487         if (scan->heap) {
2488                 /* The caller supplied our heap and pre-allocated its memory */
2489                 heap = scan->heap;
2490                 heap->gt = &started_after;
2491         } else {
2492                 /* We need to allocate our own heap memory */
2493                 heap = &tmp_heap;
2494                 retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after);
2495                 if (retval)
2496                         /* cannot allocate the heap */
2497                         return retval;
2498         }
2499
2500  again:
2501         /*
2502          * Scan tasks in the cgroup, using the scanner's "test_task" callback
2503          * to determine which are of interest, and using the scanner's
2504          * "process_task" callback to process any of them that need an update.
2505          * Since we don't want to hold any locks during the task updates,
2506          * gather tasks to be processed in a heap structure.
2507          * The heap is sorted by descending task start time.
2508          * If the statically-sized heap fills up, we overflow tasks that
2509          * started later, and in future iterations only consider tasks that
2510          * started after the latest task in the previous pass. This
2511          * guarantees forward progress and that we don't miss any tasks.
2512          */
2513         heap->size = 0;
2514         cgroup_iter_start(scan->cg, &it);
2515         while ((p = cgroup_iter_next(scan->cg, &it))) {
2516                 /*
2517                  * Only affect tasks that qualify per the caller's callback,
2518                  * if he provided one
2519                  */
2520                 if (scan->test_task && !scan->test_task(p, scan))
2521                         continue;
2522                 /*
2523                  * Only process tasks that started after the last task
2524                  * we processed
2525                  */
2526                 if (!started_after_time(p, &latest_time, latest_task))
2527                         continue;
2528                 dropped = heap_insert(heap, p);
2529                 if (dropped == NULL) {
2530                         /*
2531                          * The new task was inserted; the heap wasn't
2532                          * previously full
2533                          */
2534                         get_task_struct(p);
2535                 } else if (dropped != p) {
2536                         /*
2537                          * The new task was inserted, and pushed out a
2538                          * different task
2539                          */
2540                         get_task_struct(p);
2541                         put_task_struct(dropped);
2542                 }
2543                 /*
2544                  * Else the new task was newer than anything already in
2545                  * the heap and wasn't inserted
2546                  */
2547         }
2548         cgroup_iter_end(scan->cg, &it);
2549
2550         if (heap->size) {
2551                 for (i = 0; i < heap->size; i++) {
2552                         struct task_struct *q = heap->ptrs[i];
2553                         if (i == 0) {
2554                                 latest_time = q->start_time;
2555                                 latest_task = q;
2556                         }
2557                         /* Process the task per the caller's callback */
2558                         scan->process_task(q, scan);
2559                         put_task_struct(q);
2560                 }
2561                 /*
2562                  * If we had to process any tasks at all, scan again
2563                  * in case some of them were in the middle of forking
2564                  * children that didn't get processed.
2565                  * Not the most efficient way to do it, but it avoids
2566                  * having to take callback_mutex in the fork path
2567                  */
2568                 goto again;
2569         }
2570         if (heap == &tmp_heap)
2571                 heap_free(&tmp_heap);
2572         return 0;
2573 }
2574
2575 /*
2576  * Stuff for reading the 'tasks'/'procs' files.
2577  *
2578  * Reading this file can return large amounts of data if a cgroup has
2579  * *lots* of attached tasks. So it may need several calls to read(),
2580  * but we cannot guarantee that the information we produce is correct
2581  * unless we produce it entirely atomically.
2582  *
2583  */
2584
2585 /*
2586  * The following two functions "fix" the issue where there are more pids
2587  * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
2588  * TODO: replace with a kernel-wide solution to this problem
2589  */
2590 #define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
2591 static void *pidlist_allocate(int count)
2592 {
2593         if (PIDLIST_TOO_LARGE(count))
2594                 return vmalloc(count * sizeof(pid_t));
2595         else
2596                 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
2597 }
2598 static void pidlist_free(void *p)
2599 {
2600         if (is_vmalloc_addr(p))
2601                 vfree(p);
2602         else
2603                 kfree(p);
2604 }
2605 static void *pidlist_resize(void *p, int newcount)
2606 {
2607         void *newlist;
2608         /* note: if new alloc fails, old p will still be valid either way */
2609         if (is_vmalloc_addr(p)) {
2610                 newlist = vmalloc(newcount * sizeof(pid_t));
2611                 if (!newlist)
2612                         return NULL;
2613                 memcpy(newlist, p, newcount * sizeof(pid_t));
2614                 vfree(p);
2615         } else {
2616                 newlist = krealloc(p, newcount * sizeof(pid_t), GFP_KERNEL);
2617         }
2618         return newlist;
2619 }
2620
2621 /*
2622  * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
2623  * If the new stripped list is sufficiently smaller and there's enough memory
2624  * to allocate a new buffer, will let go of the unneeded memory. Returns the
2625  * number of unique elements.
2626  */
2627 /* is the size difference enough that we should re-allocate the array? */
2628 #define PIDLIST_REALLOC_DIFFERENCE(old, new) ((old) - PAGE_SIZE >= (new))
2629 static int pidlist_uniq(pid_t **p, int length)
2630 {
2631         int src, dest = 1;
2632         pid_t *list = *p;
2633         pid_t *newlist;
2634
2635         /*
2636          * we presume the 0th element is unique, so i starts at 1. trivial
2637          * edge cases first; no work needs to be done for either
2638          */
2639         if (length == 0 || length == 1)
2640                 return length;
2641         /* src and dest walk down the list; dest counts unique elements */
2642         for (src = 1; src < length; src++) {
2643                 /* find next unique element */
2644                 while (list[src] == list[src-1]) {
2645                         src++;
2646                         if (src == length)
2647                                 goto after;
2648                 }
2649                 /* dest always points to where the next unique element goes */
2650                 list[dest] = list[src];
2651                 dest++;
2652         }
2653 after:
2654         /*
2655          * if the length difference is large enough, we want to allocate a
2656          * smaller buffer to save memory. if this fails due to out of memory,
2657          * we'll just stay with what we've got.
2658          */
2659         if (PIDLIST_REALLOC_DIFFERENCE(length, dest)) {
2660                 newlist = pidlist_resize(list, dest);
2661                 if (newlist)
2662                         *p = newlist;
2663         }
2664         return dest;
2665 }
2666
2667 static int cmppid(const void *a, const void *b)
2668 {
2669         return *(pid_t *)a - *(pid_t *)b;
2670 }
2671
2672 /*
2673  * find the appropriate pidlist for our purpose (given procs vs tasks)
2674  * returns with the lock on that pidlist already held, and takes care
2675  * of the use count, or returns NULL with no locks held if we're out of
2676  * memory.
2677  */
2678 static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
2679                                                   enum cgroup_filetype type)
2680 {
2681         struct cgroup_pidlist *l;
2682         /* don't need task_nsproxy() if we're looking at ourself */
2683         struct pid_namespace *ns = current->nsproxy->pid_ns;
2684
2685         /*
2686          * We can't drop the pidlist_mutex before taking the l->mutex in case
2687          * the last ref-holder is trying to remove l from the list at the same
2688          * time. Holding the pidlist_mutex precludes somebody taking whichever
2689          * list we find out from under us - compare release_pid_array().
2690          */
2691         mutex_lock(&cgrp->pidlist_mutex);
2692         list_for_each_entry(l, &cgrp->pidlists, links) {
2693                 if (l->key.type == type && l->key.ns == ns) {
2694                         /* make sure l doesn't vanish out from under us */
2695                         down_write(&l->mutex);
2696                         mutex_unlock(&cgrp->pidlist_mutex);
2697                         return l;
2698                 }
2699         }
2700         /* entry not found; create a new one */
2701         l = kmalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
2702         if (!l) {
2703                 mutex_unlock(&cgrp->pidlist_mutex);
2704                 return l;
2705         }
2706         init_rwsem(&l->mutex);
2707         down_write(&l->mutex);
2708         l->key.type = type;
2709         l->key.ns = get_pid_ns(ns);
2710         l->use_count = 0; /* don't increment here */
2711         l->list = NULL;
2712         l->owner = cgrp;
2713         list_add(&l->links, &cgrp->pidlists);
2714         mutex_unlock(&cgrp->pidlist_mutex);
2715         return l;
2716 }
2717
2718 /*
2719  * Load a cgroup's pidarray with either procs' tgids or tasks' pids
2720  */
2721 static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
2722                               struct cgroup_pidlist **lp)
2723 {
2724         pid_t *array;
2725         int length;
2726         int pid, n = 0; /* used for populating the array */
2727         struct cgroup_iter it;
2728         struct task_struct *tsk;
2729         struct cgroup_pidlist *l;
2730
2731         /*
2732          * If cgroup gets more users after we read count, we won't have
2733          * enough space - tough.  This race is indistinguishable to the
2734          * caller from the case that the additional cgroup users didn't
2735          * show up until sometime later on.
2736          */
2737         length = cgroup_task_count(cgrp);
2738         array = pidlist_allocate(length);
2739         if (!array)
2740                 return -ENOMEM;
2741         /* now, populate the array */
2742         cgroup_iter_start(cgrp, &it);
2743         while ((tsk = cgroup_iter_next(cgrp, &it))) {
2744                 if (unlikely(n == length))
2745                         break;
2746                 /* get tgid or pid for procs or tasks file respectively */
2747                 if (type == CGROUP_FILE_PROCS)
2748                         pid = task_tgid_vnr(tsk);
2749                 else
2750                         pid = task_pid_vnr(tsk);
2751                 if (pid > 0) /* make sure to only use valid results */
2752                         array[n++] = pid;
2753         }
2754         cgroup_iter_end(cgrp, &it);
2755         length = n;
2756         /* now sort & (if procs) strip out duplicates */
2757         sort(array, length, sizeof(pid_t), cmppid, NULL);
2758         if (type == CGROUP_FILE_PROCS)
2759                 length = pidlist_uniq(&array, length);
2760         l = cgroup_pidlist_find(cgrp, type);
2761         if (!l) {
2762                 pidlist_free(array);
2763                 return -ENOMEM;
2764         }
2765         /* store array, freeing old if necessary - lock already held */
2766         pidlist_free(l->list);
2767         l->list = array;
2768         l->length = length;
2769         l->use_count++;
2770         up_write(&l->mutex);
2771         *lp = l;
2772         return 0;
2773 }
2774
2775 /**
2776  * cgroupstats_build - build and fill cgroupstats
2777  * @stats: cgroupstats to fill information into
2778  * @dentry: A dentry entry belonging to the cgroup for which stats have
2779  * been requested.
2780  *
2781  * Build and fill cgroupstats so that taskstats can export it to user
2782  * space.
2783  */
2784 int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
2785 {
2786         int ret = -EINVAL;
2787         struct cgroup *cgrp;
2788         struct cgroup_iter it;
2789         struct task_struct *tsk;
2790
2791         /*
2792          * Validate dentry by checking the superblock operations,
2793          * and make sure it's a directory.
2794          */
2795         if (dentry->d_sb->s_op != &cgroup_ops ||
2796             !S_ISDIR(dentry->d_inode->i_mode))
2797                  goto err;
2798
2799         ret = 0;
2800         cgrp = dentry->d_fsdata;
2801
2802         cgroup_iter_start(cgrp, &it);
2803         while ((tsk = cgroup_iter_next(cgrp, &it))) {
2804                 switch (tsk->state) {
2805                 case TASK_RUNNING:
2806                         stats->nr_running++;
2807                         break;
2808                 case TASK_INTERRUPTIBLE:
2809                         stats->nr_sleeping++;
2810                         break;
2811                 case TASK_UNINTERRUPTIBLE:
2812                         stats->nr_uninterruptible++;
2813                         break;
2814                 case TASK_STOPPED:
2815                         stats->nr_stopped++;
2816                         break;
2817                 default:
2818                         if (delayacct_is_task_waiting_on_io(tsk))
2819                                 stats->nr_io_wait++;
2820                         break;
2821                 }
2822         }
2823         cgroup_iter_end(cgrp, &it);
2824
2825 err:
2826         return ret;
2827 }
2828
2829
2830 /*
2831  * seq_file methods for the tasks/procs files. The seq_file position is the
2832  * next pid to display; the seq_file iterator is a pointer to the pid
2833  * in the cgroup->l->list array.
2834  */
2835
2836 static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
2837 {
2838         /*
2839          * Initially we receive a position value that corresponds to
2840          * one more than the last pid shown (or 0 on the first call or
2841          * after a seek to the start). Use a binary-search to find the
2842          * next pid to display, if any
2843          */
2844         struct cgroup_pidlist *l = s->private;
2845         int index = 0, pid = *pos;
2846         int *iter;
2847
2848         down_read(&l->mutex);
2849         if (pid) {
2850                 int end = l->length;
2851
2852                 while (index < end) {
2853                         int mid = (index + end) / 2;
2854                         if (l->list[mid] == pid) {
2855                                 index = mid;
2856                                 break;
2857                         } else if (l->list[mid] <= pid)
2858                                 index = mid + 1;
2859                         else
2860                                 end = mid;
2861                 }
2862         }
2863         /* If we're off the end of the array, we're done */
2864         if (index >= l->length)
2865                 return NULL;
2866         /* Update the abstract position to be the actual pid that we found */
2867         iter = l->list + index;
2868         *pos = *iter;
2869         return iter;
2870 }
2871
2872 static void cgroup_pidlist_stop(struct seq_file *s, void *v)
2873 {
2874         struct cgroup_pidlist *l = s->private;
2875         up_read(&l->mutex);
2876 }
2877
2878 static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
2879 {
2880         struct cgroup_pidlist *l = s->private;
2881         pid_t *p = v;
2882         pid_t *end = l->list + l->length;
2883         /*
2884          * Advance to the next pid in the array. If this goes off the
2885          * end, we're done
2886          */
2887         p++;
2888         if (p >= end) {
2889                 return NULL;
2890         } else {
2891                 *pos = *p;
2892                 return p;
2893         }
2894 }
2895
2896 static int cgroup_pidlist_show(struct seq_file *s, void *v)
2897 {
2898         return seq_printf(s, "%d\n", *(int *)v);
2899 }
2900
2901 /*
2902  * seq_operations functions for iterating on pidlists through seq_file -
2903  * independent of whether it's tasks or procs
2904  */
2905 static const struct seq_operations cgroup_pidlist_seq_operations = {
2906         .start = cgroup_pidlist_start,
2907         .stop = cgroup_pidlist_stop,
2908         .next = cgroup_pidlist_next,
2909         .show = cgroup_pidlist_show,
2910 };
2911
2912 static void cgroup_release_pid_array(struct cgroup_pidlist *l)
2913 {
2914         /*
2915          * the case where we're the last user of this particular pidlist will
2916          * have us remove it from the cgroup's list, which entails taking the
2917          * mutex. since in pidlist_find the pidlist->lock depends on cgroup->
2918          * pidlist_mutex, we have to take pidlist_mutex first.
2919          */
2920         mutex_lock(&l->owner->pidlist_mutex);
2921         down_write(&l->mutex);
2922         BUG_ON(!l->use_count);
2923         if (!--l->use_count) {
2924                 /* we're the last user if refcount is 0; remove and free */
2925                 list_del(&l->links);
2926                 mutex_unlock(&l->owner->pidlist_mutex);
2927                 pidlist_free(l->list);
2928                 put_pid_ns(l->key.ns);
2929                 up_write(&l->mutex);
2930                 kfree(l);
2931                 return;
2932         }
2933         mutex_unlock(&l->owner->pidlist_mutex);
2934         up_write(&l->mutex);
2935 }
2936
2937 static int cgroup_pidlist_release(struct inode *inode, struct file *file)
2938 {
2939         struct cgroup_pidlist *l;
2940         if (!(file->f_mode & FMODE_READ))
2941                 return 0;
2942         /*
2943          * the seq_file will only be initialized if the file was opened for
2944          * reading; hence we check if it's not null only in that case.
2945          */
2946         l = ((struct seq_file *)file->private_data)->private;
2947         cgroup_release_pid_array(l);
2948         return seq_release(inode, file);
2949 }
2950
2951 static const struct file_operations cgroup_pidlist_operations = {
2952         .read = seq_read,
2953         .llseek = seq_lseek,
2954         .write = cgroup_file_write,
2955         .release = cgroup_pidlist_release,
2956 };
2957
2958 /*
2959  * The following functions handle opens on a file that displays a pidlist
2960  * (tasks or procs). Prepare an array of the process/thread IDs of whoever's
2961  * in the cgroup.
2962  */
2963 /* helper function for the two below it */
2964 static int cgroup_pidlist_open(struct file *file, enum cgroup_filetype type)
2965 {
2966         struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
2967         struct cgroup_pidlist *l;
2968         int retval;
2969
2970         /* Nothing to do for write-only files */
2971         if (!(file->f_mode & FMODE_READ))
2972                 return 0;
2973
2974         /* have the array populated */
2975         retval = pidlist_array_load(cgrp, type, &l);
2976         if (retval)
2977                 return retval;
2978         /* configure file information */
2979         file->f_op = &cgroup_pidlist_operations;
2980
2981         retval = seq_open(file, &cgroup_pidlist_seq_operations);
2982         if (retval) {
2983                 cgroup_release_pid_array(l);
2984                 return retval;
2985         }
2986         ((struct seq_file *)file->private_data)->private = l;
2987         return 0;
2988 }
2989 static int cgroup_tasks_open(struct inode *unused, struct file *file)
2990 {
2991         return cgroup_pidlist_open(file, CGROUP_FILE_TASKS);
2992 }
2993 static int cgroup_procs_open(struct inode *unused, struct file *file)
2994 {
2995         return cgroup_pidlist_open(file, CGROUP_FILE_PROCS);
2996 }
2997
2998 static u64 cgroup_read_notify_on_release(struct cgroup *cgrp,
2999                                             struct cftype *cft)
3000 {
3001         return notify_on_release(cgrp);
3002 }
3003
3004 static int cgroup_write_notify_on_release(struct cgroup *cgrp,
3005                                           struct cftype *cft,
3006                                           u64 val)
3007 {
3008         clear_bit(CGRP_RELEASABLE, &cgrp->flags);
3009         if (val)
3010                 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3011         else
3012                 clear_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3013         return 0;
3014 }
3015
3016 /*
3017  * Unregister event and free resources.
3018  *
3019  * Gets called from workqueue.
3020  */
3021 static void cgroup_event_remove(struct work_struct *work)
3022 {
3023         struct cgroup_event *event = container_of(work, struct cgroup_event,
3024                         remove);
3025         struct cgroup *cgrp = event->cgrp;
3026
3027         event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3028
3029         eventfd_ctx_put(event->eventfd);
3030         kfree(event);
3031         dput(cgrp->dentry);
3032 }
3033
3034 /*
3035  * Gets called on POLLHUP on eventfd when user closes it.
3036  *
3037  * Called with wqh->lock held and interrupts disabled.
3038  */
3039 static int cgroup_event_wake(wait_queue_t *wait, unsigned mode,
3040                 int sync, void *key)
3041 {
3042         struct cgroup_event *event = container_of(wait,
3043                         struct cgroup_event, wait);
3044         struct cgroup *cgrp = event->cgrp;
3045         unsigned long flags = (unsigned long)key;
3046
3047         if (flags & POLLHUP) {
3048                 __remove_wait_queue(event->wqh, &event->wait);
3049                 spin_lock(&cgrp->event_list_lock);
3050                 list_del(&event->list);
3051                 spin_unlock(&cgrp->event_list_lock);
3052                 /*
3053                  * We are in atomic context, but cgroup_event_remove() may
3054                  * sleep, so we have to call it in workqueue.
3055                  */
3056                 schedule_work(&event->remove);
3057         }
3058
3059         return 0;
3060 }
3061
3062 static void cgroup_event_ptable_queue_proc(struct file *file,
3063                 wait_queue_head_t *wqh, poll_table *pt)
3064 {
3065         struct cgroup_event *event = container_of(pt,
3066                         struct cgroup_event, pt);
3067
3068         event->wqh = wqh;
3069         add_wait_queue(wqh, &event->wait);
3070 }
3071
3072 /*
3073  * Parse input and register new cgroup event handler.
3074  *
3075  * Input must be in format '<event_fd> <control_fd> <args>'.
3076  * Interpretation of args is defined by control file implementation.
3077  */
3078 static int cgroup_write_event_control(struct cgroup *cgrp, struct cftype *cft,
3079                                       const char *buffer)
3080 {
3081         struct cgroup_event *event = NULL;
3082         unsigned int efd, cfd;
3083         struct file *efile = NULL;
3084         struct file *cfile = NULL;
3085         char *endp;
3086         int ret;
3087
3088         efd = simple_strtoul(buffer, &endp, 10);
3089         if (*endp != ' ')
3090                 return -EINVAL;
3091         buffer = endp + 1;
3092
3093         cfd = simple_strtoul(buffer, &endp, 10);
3094         if ((*endp != ' ') && (*endp != '\0'))
3095                 return -EINVAL;
3096         buffer = endp + 1;
3097
3098         event = kzalloc(sizeof(*event), GFP_KERNEL);
3099         if (!event)
3100                 return -ENOMEM;
3101         event->cgrp = cgrp;
3102         INIT_LIST_HEAD(&event->list);
3103         init_poll_funcptr(&event->pt, cgroup_event_ptable_queue_proc);
3104         init_waitqueue_func_entry(&event->wait, cgroup_event_wake);
3105         INIT_WORK(&event->remove, cgroup_event_remove);
3106
3107         efile = eventfd_fget(efd);
3108         if (IS_ERR(efile)) {
3109                 ret = PTR_ERR(efile);
3110                 goto fail;
3111         }
3112
3113         event->eventfd = eventfd_ctx_fileget(efile);
3114         if (IS_ERR(event->eventfd)) {
3115                 ret = PTR_ERR(event->eventfd);
3116                 goto fail;
3117         }
3118
3119         cfile = fget(cfd);
3120         if (!cfile) {
3121                 ret = -EBADF;
3122                 goto fail;
3123         }
3124
3125         /* the process need read permission on control file */
3126         ret = file_permission(cfile, MAY_READ);
3127         if (ret < 0)
3128                 goto fail;
3129
3130         event->cft = __file_cft(cfile);
3131         if (IS_ERR(event->cft)) {
3132                 ret = PTR_ERR(event->cft);
3133                 goto fail;
3134         }
3135
3136         if (!event->cft->register_event || !event->cft->unregister_event) {
3137                 ret = -EINVAL;
3138                 goto fail;
3139         }
3140
3141         ret = event->cft->register_event(cgrp, event->cft,
3142                         event->eventfd, buffer);
3143         if (ret)
3144                 goto fail;
3145
3146         if (efile->f_op->poll(efile, &event->pt) & POLLHUP) {
3147                 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3148                 ret = 0;
3149                 goto fail;
3150         }
3151
3152         /*
3153          * Events should be removed after rmdir of cgroup directory, but before
3154          * destroying subsystem state objects. Let's take reference to cgroup
3155          * directory dentry to do that.
3156          */
3157         dget(cgrp->dentry);
3158
3159         spin_lock(&cgrp->event_list_lock);
3160         list_add(&event->list, &cgrp->event_list);
3161         spin_unlock(&cgrp->event_list_lock);
3162
3163         fput(cfile);
3164         fput(efile);
3165
3166         return 0;
3167
3168 fail:
3169         if (cfile)
3170                 fput(cfile);
3171
3172         if (event && event->eventfd && !IS_ERR(event->eventfd))
3173                 eventfd_ctx_put(event->eventfd);
3174
3175         if (!IS_ERR_OR_NULL(efile))
3176                 fput(efile);
3177
3178         kfree(event);
3179
3180         return ret;
3181 }
3182
3183 /*
3184  * for the common functions, 'private' gives the type of file
3185  */
3186 /* for hysterical raisins, we can't put this on the older files */
3187 #define CGROUP_FILE_GENERIC_PREFIX "cgroup."
3188 static struct cftype files[] = {
3189         {
3190                 .name = "tasks",
3191                 .open = cgroup_tasks_open,
3192                 .write_u64 = cgroup_tasks_write,
3193                 .release = cgroup_pidlist_release,
3194                 .mode = S_IRUGO | S_IWUSR,
3195         },
3196         {
3197                 .name = CGROUP_FILE_GENERIC_PREFIX "procs",
3198                 .open = cgroup_procs_open,
3199                 /* .write_u64 = cgroup_procs_write, TODO */
3200                 .release = cgroup_pidlist_release,
3201                 .mode = S_IRUGO,
3202         },
3203         {
3204                 .name = "notify_on_release",
3205                 .read_u64 = cgroup_read_notify_on_release,
3206                 .write_u64 = cgroup_write_notify_on_release,
3207         },
3208         {
3209                 .name = CGROUP_FILE_GENERIC_PREFIX "event_control",
3210                 .write_string = cgroup_write_event_control,
3211                 .mode = S_IWUGO,
3212         },
3213 };
3214
3215 static struct cftype cft_release_agent = {
3216         .name = "release_agent",
3217         .read_seq_string = cgroup_release_agent_show,
3218         .write_string = cgroup_release_agent_write,
3219         .max_write_len = PATH_MAX,
3220 };
3221
3222 static int cgroup_populate_dir(struct cgroup *cgrp)
3223 {
3224         int err;
3225         struct cgroup_subsys *ss;
3226
3227         /* First clear out any existing files */
3228         cgroup_clear_directory(cgrp->dentry);
3229
3230         err = cgroup_add_files(cgrp, NULL, files, ARRAY_SIZE(files));
3231         if (err < 0)
3232                 return err;
3233
3234         if (cgrp == cgrp->top_cgroup) {
3235                 if ((err = cgroup_add_file(cgrp, NULL, &cft_release_agent)) < 0)
3236                         return err;
3237         }
3238
3239         for_each_subsys(cgrp->root, ss) {
3240                 if (ss->populate && (err = ss->populate(ss, cgrp)) < 0)
3241                         return err;
3242         }
3243         /* This cgroup is ready now */
3244         for_each_subsys(cgrp->root, ss) {
3245                 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3246                 /*
3247                  * Update id->css pointer and make this css visible from
3248                  * CSS ID functions. This pointer will be dereferened
3249                  * from RCU-read-side without locks.
3250                  */
3251                 if (css->id)
3252                         rcu_assign_pointer(css->id->css, css);
3253         }
3254
3255         return 0;
3256 }
3257
3258 static void init_cgroup_css(struct cgroup_subsys_state *css,
3259                                struct cgroup_subsys *ss,
3260                                struct cgroup *cgrp)
3261 {
3262         css->cgroup = cgrp;
3263         atomic_set(&css->refcnt, 1);
3264         css->flags = 0;
3265         css->id = NULL;
3266         if (cgrp == dummytop)
3267                 set_bit(CSS_ROOT, &css->flags);
3268         BUG_ON(cgrp->subsys[ss->subsys_id]);
3269         cgrp->subsys[ss->subsys_id] = css;
3270 }
3271
3272 static void cgroup_lock_hierarchy(struct cgroupfs_root *root)
3273 {
3274         /* We need to take each hierarchy_mutex in a consistent order */
3275         int i;
3276
3277         /*
3278          * No worry about a race with rebind_subsystems that might mess up the
3279          * locking order, since both parties are under cgroup_mutex.
3280          */
3281         for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3282                 struct cgroup_subsys *ss = subsys[i];
3283                 if (ss == NULL)
3284                         continue;
3285                 if (ss->root == root)
3286                         mutex_lock(&ss->hierarchy_mutex);
3287         }
3288 }
3289
3290 static void cgroup_unlock_hierarchy(struct cgroupfs_root *root)
3291 {
3292         int i;
3293
3294         for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3295                 struct cgroup_subsys *ss = subsys[i];
3296                 if (ss == NULL)
3297                         continue;
3298                 if (ss->root == root)
3299                         mutex_unlock(&ss->hierarchy_mutex);
3300         }
3301 }
3302
3303 /*
3304  * cgroup_create - create a cgroup
3305  * @parent: cgroup that will be parent of the new cgroup
3306  * @dentry: dentry of the new cgroup
3307  * @mode: mode to set on new inode
3308  *
3309  * Must be called with the mutex on the parent inode held
3310  */
3311 static long cgroup_create(struct cgroup *parent, struct dentry *dentry,
3312                              mode_t mode)
3313 {
3314         struct cgroup *cgrp;
3315         struct cgroupfs_root *root = parent->root;
3316         int err = 0;
3317         struct cgroup_subsys *ss;
3318         struct super_block *sb = root->sb;
3319
3320         cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
3321         if (!cgrp)
3322                 return -ENOMEM;
3323
3324         /* Grab a reference on the superblock so the hierarchy doesn't
3325          * get deleted on unmount if there are child cgroups.  This
3326          * can be done outside cgroup_mutex, since the sb can't
3327          * disappear while someone has an open control file on the
3328          * fs */
3329         atomic_inc(&sb->s_active);
3330
3331         mutex_lock(&cgroup_mutex);
3332
3333         init_cgroup_housekeeping(cgrp);
3334
3335         cgrp->parent = parent;
3336         cgrp->root = parent->root;
3337         cgrp->top_cgroup = parent->top_cgroup;
3338
3339         if (notify_on_release(parent))
3340                 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3341
3342         for_each_subsys(root, ss) {
3343                 struct cgroup_subsys_state *css = ss->create(ss, cgrp);
3344
3345                 if (IS_ERR(css)) {
3346                         err = PTR_ERR(css);
3347                         goto err_destroy;
3348                 }
3349                 init_cgroup_css(css, ss, cgrp);
3350                 if (ss->use_id) {
3351                         err = alloc_css_id(ss, parent, cgrp);
3352                         if (err)
3353                                 goto err_destroy;
3354                 }
3355                 /* At error, ->destroy() callback has to free assigned ID. */
3356         }
3357
3358         cgroup_lock_hierarchy(root);
3359         list_add(&cgrp->sibling, &cgrp->parent->children);
3360         cgroup_unlock_hierarchy(root);
3361         root->number_of_cgroups++;
3362
3363         err = cgroup_create_dir(cgrp, dentry, mode);
3364         if (err < 0)
3365                 goto err_remove;
3366
3367         /* The cgroup directory was pre-locked for us */
3368         BUG_ON(!mutex_is_locked(&cgrp->dentry->d_inode->i_mutex));
3369
3370         err = cgroup_populate_dir(cgrp);
3371         /* If err < 0, we have a half-filled directory - oh well ;) */
3372
3373         mutex_unlock(&cgroup_mutex);
3374         mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
3375
3376         return 0;
3377
3378  err_remove:
3379
3380         cgroup_lock_hierarchy(root);
3381         list_del(&cgrp->sibling);
3382         cgroup_unlock_hierarchy(root);
3383         root->number_of_cgroups--;
3384
3385  err_destroy:
3386
3387         for_each_subsys(root, ss) {
3388                 if (cgrp->subsys[ss->subsys_id])
3389                         ss->destroy(ss, cgrp);
3390         }
3391
3392         mutex_unlock(&cgroup_mutex);
3393
3394         /* Release the reference count that we took on the superblock */
3395         deactivate_super(sb);
3396
3397         kfree(cgrp);
3398         return err;
3399 }
3400
3401 static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode)
3402 {
3403         struct cgroup *c_parent = dentry->d_parent->d_fsdata;
3404
3405         /* the vfs holds inode->i_mutex already */
3406         return cgroup_create(c_parent, dentry, mode | S_IFDIR);
3407 }
3408
3409 static int cgroup_has_css_refs(struct cgroup *cgrp)
3410 {
3411         /* Check the reference count on each subsystem. Since we
3412          * already established that there are no tasks in the
3413          * cgroup, if the css refcount is also 1, then there should
3414          * be no outstanding references, so the subsystem is safe to
3415          * destroy. We scan across all subsystems rather than using
3416          * the per-hierarchy linked list of mounted subsystems since
3417          * we can be called via check_for_release() with no
3418          * synchronization other than RCU, and the subsystem linked
3419          * list isn't RCU-safe */
3420         int i;
3421         /*
3422          * We won't need to lock the subsys array, because the subsystems
3423          * we're concerned about aren't going anywhere since our cgroup root
3424          * has a reference on them.
3425          */
3426         for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3427                 struct cgroup_subsys *ss = subsys[i];
3428                 struct cgroup_subsys_state *css;
3429                 /* Skip subsystems not present or not in this hierarchy */
3430                 if (ss == NULL || ss->root != cgrp->root)
3431                         continue;
3432                 css = cgrp->subsys[ss->subsys_id];
3433                 /* When called from check_for_release() it's possible
3434                  * that by this point the cgroup has been removed
3435                  * and the css deleted. But a false-positive doesn't
3436                  * matter, since it can only happen if the cgroup
3437                  * has been deleted and hence no longer needs the
3438                  * release agent to be called anyway. */
3439                 if (css && (atomic_read(&css->refcnt) > 1))
3440                         return 1;
3441         }
3442         return 0;
3443 }
3444
3445 /*
3446  * Atomically mark all (or else none) of the cgroup's CSS objects as
3447  * CSS_REMOVED. Return true on success, or false if the cgroup has
3448  * busy subsystems. Call with cgroup_mutex held
3449  */
3450
3451 static int cgroup_clear_css_refs(struct cgroup *cgrp)
3452 {
3453         struct cgroup_subsys *ss;
3454         unsigned long flags;
3455         bool failed = false;
3456         local_irq_save(flags);
3457         for_each_subsys(cgrp->root, ss) {
3458                 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3459                 int refcnt;
3460                 while (1) {
3461                         /* We can only remove a CSS with a refcnt==1 */
3462                         refcnt = atomic_read(&css->refcnt);
3463                         if (refcnt > 1) {
3464                                 failed = true;
3465                                 goto done;
3466                         }
3467                         BUG_ON(!refcnt);
3468                         /*
3469                          * Drop the refcnt to 0 while we check other
3470                          * subsystems. This will cause any racing
3471                          * css_tryget() to spin until we set the
3472                          * CSS_REMOVED bits or abort
3473                          */
3474                         if (atomic_cmpxchg(&css->refcnt, refcnt, 0) == refcnt)
3475                                 break;
3476                         cpu_relax();
3477                 }
3478         }
3479  done:
3480         for_each_subsys(cgrp->root, ss) {
3481                 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3482                 if (failed) {
3483                         /*
3484                          * Restore old refcnt if we previously managed
3485                          * to clear it from 1 to 0
3486                          */
3487                         if (!atomic_read(&css->refcnt))
3488                                 atomic_set(&css->refcnt, 1);
3489                 } else {
3490                         /* Commit the fact that the CSS is removed */
3491                         set_bit(CSS_REMOVED, &css->flags);
3492                 }
3493         }
3494         local_irq_restore(flags);
3495         return !failed;
3496 }
3497
3498 static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry)
3499 {
3500         struct cgroup *cgrp = dentry->d_fsdata;
3501         struct dentry *d;
3502         struct cgroup *parent;
3503         DEFINE_WAIT(wait);
3504         struct cgroup_event *event, *tmp;
3505         int ret;
3506
3507         /* the vfs holds both inode->i_mutex already */
3508 again:
3509         mutex_lock(&cgroup_mutex);
3510         if (atomic_read(&cgrp->count) != 0) {
3511                 mutex_unlock(&cgroup_mutex);
3512                 return -EBUSY;
3513         }
3514         if (!list_empty(&cgrp->children)) {
3515                 mutex_unlock(&cgroup_mutex);
3516                 return -EBUSY;
3517         }
3518         mutex_unlock(&cgroup_mutex);
3519
3520         /*
3521          * In general, subsystem has no css->refcnt after pre_destroy(). But
3522          * in racy cases, subsystem may have to get css->refcnt after
3523          * pre_destroy() and it makes rmdir return with -EBUSY. This sometimes
3524          * make rmdir return -EBUSY too often. To avoid that, we use waitqueue
3525          * for cgroup's rmdir. CGRP_WAIT_ON_RMDIR is for synchronizing rmdir
3526          * and subsystem's reference count handling. Please see css_get/put
3527          * and css_tryget() and cgroup_wakeup_rmdir_waiter() implementation.
3528          */
3529         set_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
3530
3531         /*
3532          * Call pre_destroy handlers of subsys. Notify subsystems
3533          * that rmdir() request comes.
3534          */
3535         ret = cgroup_call_pre_destroy(cgrp);
3536         if (ret) {
3537                 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
3538                 return ret;
3539         }
3540
3541         mutex_lock(&cgroup_mutex);
3542         parent = cgrp->parent;
3543         if (atomic_read(&cgrp->count) || !list_empty(&cgrp->children)) {
3544                 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
3545                 mutex_unlock(&cgroup_mutex);
3546                 return -EBUSY;
3547         }
3548         prepare_to_wait(&cgroup_rmdir_waitq, &wait, TASK_INTERRUPTIBLE);
3549         if (!cgroup_clear_css_refs(cgrp)) {
3550                 mutex_unlock(&cgroup_mutex);
3551                 /*
3552                  * Because someone may call cgroup_wakeup_rmdir_waiter() before
3553                  * prepare_to_wait(), we need to check this flag.
3554                  */
3555                 if (test_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags))
3556                         schedule();
3557                 finish_wait(&cgroup_rmdir_waitq, &wait);
3558                 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
3559                 if (signal_pending(current))
3560                         return -EINTR;
3561                 goto again;
3562         }
3563         /* NO css_tryget() can success after here. */
3564         finish_wait(&cgroup_rmdir_waitq, &wait);
3565         clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
3566
3567         spin_lock(&release_list_lock);
3568         set_bit(CGRP_REMOVED, &cgrp->flags);
3569         if (!list_empty(&cgrp->release_list))
3570                 list_del(&cgrp->release_list);
3571         spin_unlock(&release_list_lock);
3572
3573         cgroup_lock_hierarchy(cgrp->root);
3574         /* delete this cgroup from parent->children */
3575         list_del(&cgrp->sibling);
3576         cgroup_unlock_hierarchy(cgrp->root);
3577
3578         spin_lock(&cgrp->dentry->d_lock);
3579         d = dget(cgrp->dentry);
3580         spin_unlock(&d->d_lock);
3581
3582         cgroup_d_remove_dir(d);
3583         dput(d);
3584
3585         set_bit(CGRP_RELEASABLE, &parent->flags);
3586         check_for_release(parent);
3587
3588         /*
3589          * Unregister events and notify userspace.
3590          * Notify userspace about cgroup removing only after rmdir of cgroup
3591          * directory to avoid race between userspace and kernelspace
3592          */
3593         spin_lock(&cgrp->event_list_lock);
3594         list_for_each_entry_safe(event, tmp, &cgrp->event_list, list) {
3595                 list_del(&event->list);
3596                 remove_wait_queue(event->wqh, &event->wait);
3597                 eventfd_signal(event->eventfd, 1);
3598                 schedule_work(&event->remove);
3599         }
3600         spin_unlock(&cgrp->event_list_lock);
3601
3602         mutex_unlock(&cgroup_mutex);
3603         return 0;
3604 }
3605
3606 static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
3607 {
3608         struct cgroup_subsys_state *css;
3609
3610         printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
3611
3612         /* Create the top cgroup state for this subsystem */
3613         list_add(&ss->sibling, &rootnode.subsys_list);
3614         ss->root = &rootnode;
3615         css = ss->create(ss, dummytop);
3616         /* We don't handle early failures gracefully */
3617         BUG_ON(IS_ERR(css));
3618         init_cgroup_css(css, ss, dummytop);
3619
3620         /* Update the init_css_set to contain a subsys
3621          * pointer to this state - since the subsystem is
3622          * newly registered, all tasks and hence the
3623          * init_css_set is in the subsystem's top cgroup. */
3624         init_css_set.subsys[ss->subsys_id] = dummytop->subsys[ss->subsys_id];
3625
3626         need_forkexit_callback |= ss->fork || ss->exit;
3627
3628         /* At system boot, before all subsystems have been
3629          * registered, no tasks have been forked, so we don't
3630          * need to invoke fork callbacks here. */
3631         BUG_ON(!list_empty(&init_task.tasks));
3632
3633         mutex_init(&ss->hierarchy_mutex);
3634         lockdep_set_class(&ss->hierarchy_mutex, &ss->subsys_key);
3635         ss->active = 1;
3636
3637         /* this function shouldn't be used with modular subsystems, since they
3638          * need to register a subsys_id, among other things */
3639         BUG_ON(ss->module);
3640 }
3641
3642 /**
3643  * cgroup_load_subsys: load and register a modular subsystem at runtime
3644  * @ss: the subsystem to load
3645  *
3646  * This function should be called in a modular subsystem's initcall. If the
3647  * subsystem is built as a module, it will be assigned a new subsys_id and set
3648  * up for use. If the subsystem is built-in anyway, work is delegated to the
3649  * simpler cgroup_init_subsys.
3650  */
3651 int __init_or_module cgroup_load_subsys(struct cgroup_subsys *ss)
3652 {
3653         int i;
3654         struct cgroup_subsys_state *css;
3655
3656         /* check name and function validity */
3657         if (ss->name == NULL || strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN ||
3658             ss->create == NULL || ss->destroy == NULL)
3659                 return -EINVAL;
3660
3661         /*
3662          * we don't support callbacks in modular subsystems. this check is
3663          * before the ss->module check for consistency; a subsystem that could
3664          * be a module should still have no callbacks even if the user isn't
3665          * compiling it as one.
3666          */
3667         if (ss->fork || ss->exit)
3668                 return -EINVAL;
3669
3670         /*
3671          * an optionally modular subsystem is built-in: we want to do nothing,
3672          * since cgroup_init_subsys will have already taken care of it.
3673          */
3674         if (ss->module == NULL) {
3675                 /* a few sanity checks */
3676                 BUG_ON(ss->subsys_id >= CGROUP_BUILTIN_SUBSYS_COUNT);
3677                 BUG_ON(subsys[ss->subsys_id] != ss);
3678                 return 0;
3679         }
3680
3681         /*
3682          * need to register a subsys id before anything else - for example,
3683          * init_cgroup_css needs it.
3684          */
3685         mutex_lock(&cgroup_mutex);
3686         /* find the first empty slot in the array */
3687         for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
3688                 if (subsys[i] == NULL)
3689                         break;
3690         }
3691         if (i == CGROUP_SUBSYS_COUNT) {
3692                 /* maximum number of subsystems already registered! */
3693                 mutex_unlock(&cgroup_mutex);
3694                 return -EBUSY;
3695         }
3696         /* assign ourselves the subsys_id */
3697         ss->subsys_id = i;
3698         subsys[i] = ss;
3699
3700         /*
3701          * no ss->create seems to need anything important in the ss struct, so
3702          * this can happen first (i.e. before the rootnode attachment).
3703          */
3704         css = ss->create(ss, dummytop);
3705         if (IS_ERR(css)) {
3706                 /* failure case - need to deassign the subsys[] slot. */
3707                 subsys[i] = NULL;
3708                 mutex_unlock(&cgroup_mutex);
3709                 return PTR_ERR(css);
3710         }
3711
3712         list_add(&ss->sibling, &rootnode.subsys_list);
3713         ss->root = &rootnode;
3714
3715         /* our new subsystem will be attached to the dummy hierarchy. */
3716         init_cgroup_css(css, ss, dummytop);
3717         /* init_idr must be after init_cgroup_css because it sets css->id. */
3718         if (ss->use_id) {
3719                 int ret = cgroup_init_idr(ss, css);
3720                 if (ret) {
3721                         dummytop->subsys[ss->subsys_id] = NULL;
3722                         ss->destroy(ss, dummytop);
3723                         subsys[i] = NULL;
3724                         mutex_unlock(&cgroup_mutex);
3725                         return ret;
3726                 }
3727         }
3728
3729         /*
3730          * Now we need to entangle the css into the existing css_sets. unlike
3731          * in cgroup_init_subsys, there are now multiple css_sets, so each one
3732          * will need a new pointer to it; done by iterating the css_set_table.
3733          * furthermore, modifying the existing css_sets will corrupt the hash
3734          * table state, so each changed css_set will need its hash recomputed.
3735          * this is all done under the css_set_lock.
3736          */
3737         write_lock(&css_set_lock);
3738         for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
3739                 struct css_set *cg;
3740                 struct hlist_node *node, *tmp;
3741                 struct hlist_head *bucket = &css_set_table[i], *new_bucket;
3742
3743                 hlist_for_each_entry_safe(cg, node, tmp, bucket, hlist) {
3744                         /* skip entries that we already rehashed */
3745                         if (cg->subsys[ss->subsys_id])
3746                                 continue;
3747                         /* remove existing entry */
3748                         hlist_del(&cg->hlist);
3749                         /* set new value */
3750                         cg->subsys[ss->subsys_id] = css;
3751                         /* recompute hash and restore entry */
3752                         new_bucket = css_set_hash(cg->subsys);
3753                         hlist_add_head(&cg->hlist, new_bucket);
3754                 }
3755         }
3756         write_unlock(&css_set_lock);
3757
3758         mutex_init(&ss->hierarchy_mutex);
3759         lockdep_set_class(&ss->hierarchy_mutex, &ss->subsys_key);
3760         ss->active = 1;
3761
3762         /* success! */
3763         mutex_unlock(&cgroup_mutex);
3764         return 0;
3765 }
3766 EXPORT_SYMBOL_GPL(cgroup_load_subsys);
3767
3768 /**
3769  * cgroup_unload_subsys: unload a modular subsystem
3770  * @ss: the subsystem to unload
3771  *
3772  * This function should be called in a modular subsystem's exitcall. When this
3773  * function is invoked, the refcount on the subsystem's module will be 0, so
3774  * the subsystem will not be attached to any hierarchy.
3775  */
3776 void cgroup_unload_subsys(struct cgroup_subsys *ss)
3777 {
3778         struct cg_cgroup_link *link;
3779         struct hlist_head *hhead;
3780
3781         BUG_ON(ss->module == NULL);
3782
3783         /*
3784          * we shouldn't be called if the subsystem is in use, and the use of
3785          * try_module_get in parse_cgroupfs_options should ensure that it
3786          * doesn't start being used while we're killing it off.
3787          */
3788         BUG_ON(ss->root != &rootnode);
3789
3790         mutex_lock(&cgroup_mutex);
3791         /* deassign the subsys_id */
3792         BUG_ON(ss->subsys_id < CGROUP_BUILTIN_SUBSYS_COUNT);
3793         subsys[ss->subsys_id] = NULL;
3794
3795         /* remove subsystem from rootnode's list of subsystems */
3796         list_del(&ss->sibling);
3797
3798         /*
3799          * disentangle the css from all css_sets attached to the dummytop. as
3800          * in loading, we need to pay our respects to the hashtable gods.
3801          */
3802         write_lock(&css_set_lock);
3803         list_for_each_entry(link, &dummytop->css_sets, cgrp_link_list) {
3804                 struct css_set *cg = link->cg;
3805
3806                 hlist_del(&cg->hlist);
3807                 BUG_ON(!cg->subsys[ss->subsys_id]);
3808                 cg->subsys[ss->subsys_id] = NULL;
3809                 hhead = css_set_hash(cg->subsys);
3810                 hlist_add_head(&cg->hlist, hhead);
3811         }
3812         write_unlock(&css_set_lock);
3813
3814         /*
3815          * remove subsystem's css from the dummytop and free it - need to free
3816          * before marking as null because ss->destroy needs the cgrp->subsys
3817          * pointer to find their state. note that this also takes care of
3818          * freeing the css_id.
3819          */
3820         ss->destroy(ss, dummytop);
3821         dummytop->subsys[ss->subsys_id] = NULL;
3822
3823         mutex_unlock(&cgroup_mutex);
3824 }
3825 EXPORT_SYMBOL_GPL(cgroup_unload_subsys);
3826
3827 /**
3828  * cgroup_init_early - cgroup initialization at system boot
3829  *
3830  * Initialize cgroups at system boot, and initialize any
3831  * subsystems that request early init.
3832  */
3833 int __init cgroup_init_early(void)
3834 {
3835         int i;
3836         atomic_set(&init_css_set.refcount, 1);
3837         INIT_LIST_HEAD(&init_css_set.cg_links);
3838         INIT_LIST_HEAD(&init_css_set.tasks);
3839         INIT_HLIST_NODE(&init_css_set.hlist);
3840         css_set_count = 1;
3841         init_cgroup_root(&rootnode);
3842         root_count = 1;
3843         init_task.cgroups = &init_css_set;
3844
3845         init_css_set_link.cg = &init_css_set;
3846         init_css_set_link.cgrp = dummytop;
3847         list_add(&init_css_set_link.cgrp_link_list,
3848                  &rootnode.top_cgroup.css_sets);
3849         list_add(&init_css_set_link.cg_link_list,
3850                  &init_css_set.cg_links);
3851
3852         for (i = 0; i < CSS_SET_TABLE_SIZE; i++)
3853                 INIT_HLIST_HEAD(&css_set_table[i]);
3854
3855         /* at bootup time, we don't worry about modular subsystems */
3856         for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
3857                 struct cgroup_subsys *ss = subsys[i];
3858
3859                 BUG_ON(!ss->name);
3860                 BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN);
3861                 BUG_ON(!ss->create);
3862                 BUG_ON(!ss->destroy);
3863                 if (ss->subsys_id != i) {
3864                         printk(KERN_ERR "cgroup: Subsys %s id == %d\n",
3865                                ss->name, ss->subsys_id);
3866                         BUG();
3867                 }
3868
3869                 if (ss->early_init)
3870                         cgroup_init_subsys(ss);
3871         }
3872         return 0;
3873 }
3874
3875 /**
3876  * cgroup_init - cgroup initialization
3877  *
3878  * Register cgroup filesystem and /proc file, and initialize
3879  * any subsystems that didn't request early init.
3880  */
3881 int __init cgroup_init(void)
3882 {
3883         int err;
3884         int i;
3885         struct hlist_head *hhead;
3886
3887         err = bdi_init(&cgroup_backing_dev_info);
3888         if (err)
3889                 return err;
3890
3891         /* at bootup time, we don't worry about modular subsystems */
3892         for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
3893                 struct cgroup_subsys *ss = subsys[i];
3894                 if (!ss->early_init)
3895                         cgroup_init_subsys(ss);
3896                 if (ss->use_id)
3897                         cgroup_init_idr(ss, init_css_set.subsys[ss->subsys_id]);
3898         }
3899
3900         /* Add init_css_set to the hash table */
3901         hhead = css_set_hash(init_css_set.subsys);
3902         hlist_add_head(&init_css_set.hlist, hhead);
3903         BUG_ON(!init_root_id(&rootnode));
3904
3905         cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
3906         if (!cgroup_kobj) {
3907                 err = -ENOMEM;
3908                 goto out;
3909         }
3910
3911         err = register_filesystem(&cgroup_fs_type);
3912         if (err < 0) {
3913                 kobject_put(cgroup_kobj);
3914                 goto out;
3915         }
3916
3917         proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
3918
3919 out:
3920         if (err)
3921                 bdi_destroy(&cgroup_backing_dev_info);
3922
3923         return err;
3924 }
3925
3926 /*
3927  * proc_cgroup_show()
3928  *  - Print task's cgroup paths into seq_file, one line for each hierarchy
3929  *  - Used for /proc/<pid>/cgroup.
3930  *  - No need to task_lock(tsk) on this tsk->cgroup reference, as it
3931  *    doesn't really matter if tsk->cgroup changes after we read it,
3932  *    and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
3933  *    anyway.  No need to check that tsk->cgroup != NULL, thanks to
3934  *    the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
3935  *    cgroup to top_cgroup.
3936  */
3937
3938 /* TODO: Use a proper seq_file iterator */
3939 static int proc_cgroup_show(struct seq_file *m, void *v)
3940 {
3941         struct pid *pid;
3942         struct task_struct *tsk;
3943         char *buf;
3944         int retval;
3945         struct cgroupfs_root *root;
3946
3947         retval = -ENOMEM;
3948         buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
3949         if (!buf)
3950                 goto out;
3951
3952         retval = -ESRCH;
3953         pid = m->private;
3954         tsk = get_pid_task(pid, PIDTYPE_PID);
3955         if (!tsk)
3956                 goto out_free;
3957
3958         retval = 0;
3959
3960         mutex_lock(&cgroup_mutex);
3961
3962         for_each_active_root(root) {
3963                 struct cgroup_subsys *ss;
3964                 struct cgroup *cgrp;
3965                 int count = 0;
3966
3967                 seq_printf(m, "%d:", root->hierarchy_id);
3968                 for_each_subsys(root, ss)
3969                         seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
3970                 if (strlen(root->name))
3971                         seq_printf(m, "%sname=%s", count ? "," : "",
3972                                    root->name);
3973                 seq_putc(m, ':');
3974                 cgrp = task_cgroup_from_root(tsk, root);
3975                 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
3976                 if (retval < 0)
3977                         goto out_unlock;
3978                 seq_puts(m, buf);
3979                 seq_putc(m, '\n');
3980         }
3981
3982 out_unlock:
3983         mutex_unlock(&cgroup_mutex);
3984         put_task_struct(tsk);
3985 out_free:
3986         kfree(buf);
3987 out:
3988         return retval;
3989 }
3990
3991 static int cgroup_open(struct inode *inode, struct file *file)
3992 {
3993         struct pid *pid = PROC_I(inode)->pid;
3994         return single_open(file, proc_cgroup_show, pid);
3995 }
3996
3997 const struct file_operations proc_cgroup_operations = {
3998         .open           = cgroup_open,
3999         .read           = seq_read,
4000         .llseek         = seq_lseek,
4001         .release        = single_release,
4002 };
4003
4004 /* Display information about each subsystem and each hierarchy */
4005 static int proc_cgroupstats_show(struct seq_file *m, void *v)
4006 {
4007         int i;
4008
4009         seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
4010         /*
4011          * ideally we don't want subsystems moving around while we do this.
4012          * cgroup_mutex is also necessary to guarantee an atomic snapshot of
4013          * subsys/hierarchy state.
4014          */
4015         mutex_lock(&cgroup_mutex);
4016         for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
4017                 struct cgroup_subsys *ss = subsys[i];
4018                 if (ss == NULL)
4019                         continue;
4020                 seq_printf(m, "%s\t%d\t%d\t%d\n",
4021                            ss->name, ss->root->hierarchy_id,
4022                            ss->root->number_of_cgroups, !ss->disabled);
4023         }
4024         mutex_unlock(&cgroup_mutex);
4025         return 0;
4026 }
4027
4028 static int cgroupstats_open(struct inode *inode, struct file *file)
4029 {
4030         return single_open(file, proc_cgroupstats_show, NULL);
4031 }
4032
4033 static const struct file_operations proc_cgroupstats_operations = {
4034         .open = cgroupstats_open,
4035         .read = seq_read,
4036         .llseek = seq_lseek,
4037         .release = single_release,
4038 };
4039
4040 /**
4041  * cgroup_fork - attach newly forked task to its parents cgroup.
4042  * @child: pointer to task_struct of forking parent process.
4043  *
4044  * Description: A task inherits its parent's cgroup at fork().
4045  *
4046  * A pointer to the shared css_set was automatically copied in
4047  * fork.c by dup_task_struct().  However, we ignore that copy, since
4048  * it was not made under the protection of RCU or cgroup_mutex, so
4049  * might no longer be a valid cgroup pointer.  cgroup_attach_task() might
4050  * have already changed current->cgroups, allowing the previously
4051  * referenced cgroup group to be removed and freed.
4052  *
4053  * At the point that cgroup_fork() is called, 'current' is the parent
4054  * task, and the passed argument 'child' points to the child task.
4055  */
4056 void cgroup_fork(struct task_struct *child)
4057 {
4058         task_lock(current);
4059         child->cgroups = current->cgroups;
4060         get_css_set(child->cgroups);
4061         task_unlock(current);
4062         INIT_LIST_HEAD(&child->cg_list);
4063 }
4064
4065 /**
4066  * cgroup_fork_callbacks - run fork callbacks
4067  * @child: the new task
4068  *
4069  * Called on a new task very soon before adding it to the
4070  * tasklist. No need to take any locks since no-one can
4071  * be operating on this task.
4072  */
4073 void cgroup_fork_callbacks(struct task_struct *child)
4074 {
4075         if (need_forkexit_callback) {
4076                 int i;
4077                 /*
4078                  * forkexit callbacks are only supported for builtin
4079                  * subsystems, and the builtin section of the subsys array is
4080                  * immutable, so we don't need to lock the subsys array here.
4081                  */
4082                 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
4083                         struct cgroup_subsys *ss = subsys[i];
4084                         if (ss->fork)
4085                                 ss->fork(ss, child);
4086                 }
4087         }
4088 }
4089
4090 /**
4091  * cgroup_post_fork - called on a new task after adding it to the task list
4092  * @child: the task in question
4093  *
4094  * Adds the task to the list running through its css_set if necessary.
4095  * Has to be after the task is visible on the task list in case we race
4096  * with the first call to cgroup_iter_start() - to guarantee that the
4097  * new task ends up on its list.
4098  */
4099 void cgroup_post_fork(struct task_struct *child)
4100 {
4101         if (use_task_css_set_links) {
4102                 write_lock(&css_set_lock);
4103                 task_lock(child);
4104                 if (list_empty(&child->cg_list))
4105                         list_add(&child->cg_list, &child->cgroups->tasks);
4106                 task_unlock(child);
4107                 write_unlock(&css_set_lock);
4108         }
4109 }
4110 /**
4111  * cgroup_exit - detach cgroup from exiting task
4112  * @tsk: pointer to task_struct of exiting process
4113  * @run_callback: run exit callbacks?
4114  *
4115  * Description: Detach cgroup from @tsk and release it.
4116  *
4117  * Note that cgroups marked notify_on_release force every task in
4118  * them to take the global cgroup_mutex mutex when exiting.
4119  * This could impact scaling on very large systems.  Be reluctant to
4120  * use notify_on_release cgroups where very high task exit scaling
4121  * is required on large systems.
4122  *
4123  * the_top_cgroup_hack:
4124  *
4125  *    Set the exiting tasks cgroup to the root cgroup (top_cgroup).
4126  *
4127  *    We call cgroup_exit() while the task is still competent to
4128  *    handle notify_on_release(), then leave the task attached to the
4129  *    root cgroup in each hierarchy for the remainder of its exit.
4130  *
4131  *    To do this properly, we would increment the reference count on
4132  *    top_cgroup, and near the very end of the kernel/exit.c do_exit()
4133  *    code we would add a second cgroup function call, to drop that
4134  *    reference.  This would just create an unnecessary hot spot on
4135  *    the top_cgroup reference count, to no avail.
4136  *
4137  *    Normally, holding a reference to a cgroup without bumping its
4138  *    count is unsafe.   The cgroup could go away, or someone could
4139  *    attach us to a different cgroup, decrementing the count on
4140  *    the first cgroup that we never incremented.  But in this case,
4141  *    top_cgroup isn't going away, and either task has PF_EXITING set,
4142  *    which wards off any cgroup_attach_task() attempts, or task is a failed
4143  *    fork, never visible to cgroup_attach_task.
4144  */
4145 void cgroup_exit(struct task_struct *tsk, int run_callbacks)
4146 {
4147         int i;
4148         struct css_set *cg;
4149
4150         if (run_callbacks && need_forkexit_callback) {
4151                 /*
4152                  * modular subsystems can't use callbacks, so no need to lock
4153                  * the subsys array
4154                  */
4155                 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
4156                         struct cgroup_subsys *ss = subsys[i];
4157                         if (ss->exit)
4158                                 ss->exit(ss, tsk);
4159                 }
4160         }
4161
4162         /*
4163          * Unlink from the css_set task list if necessary.
4164          * Optimistically check cg_list before taking
4165          * css_set_lock
4166          */
4167         if (!list_empty(&tsk->cg_list)) {
4168                 write_lock(&css_set_lock);
4169                 if (!list_empty(&tsk->cg_list))
4170                         list_del(&tsk->cg_list);
4171                 write_unlock(&css_set_lock);
4172         }
4173
4174         /* Reassign the task to the init_css_set. */
4175         task_lock(tsk);
4176         cg = tsk->cgroups;
4177         tsk->cgroups = &init_css_set;
4178         task_unlock(tsk);
4179         if (cg)
4180                 put_css_set_taskexit(cg);
4181 }
4182
4183 /**
4184  * cgroup_clone - clone the cgroup the given subsystem is attached to
4185  * @tsk: the task to be moved
4186  * @subsys: the given subsystem
4187  * @nodename: the name for the new cgroup
4188  *
4189  * Duplicate the current cgroup in the hierarchy that the given
4190  * subsystem is attached to, and move this task into the new
4191  * child.
4192  */
4193 int cgroup_clone(struct task_struct *tsk, struct cgroup_subsys *subsys,
4194                                                         char *nodename)
4195 {
4196         struct dentry *dentry;
4197         int ret = 0;
4198         struct cgroup *parent, *child;
4199         struct inode *inode;
4200         struct css_set *cg;
4201         struct cgroupfs_root *root;
4202         struct cgroup_subsys *ss;
4203
4204         /* We shouldn't be called by an unregistered subsystem */
4205         BUG_ON(!subsys->active);
4206
4207         /* First figure out what hierarchy and cgroup we're dealing
4208          * with, and pin them so we can drop cgroup_mutex */
4209         mutex_lock(&cgroup_mutex);
4210  again:
4211         root = subsys->root;
4212         if (root == &rootnode) {
4213                 mutex_unlock(&cgroup_mutex);
4214                 return 0;
4215         }
4216
4217         /* Pin the hierarchy */
4218         if (!atomic_inc_not_zero(&root->sb->s_active)) {
4219                 /* We race with the final deactivate_super() */
4220                 mutex_unlock(&cgroup_mutex);
4221                 return 0;
4222         }
4223
4224         /* Keep the cgroup alive */
4225         task_lock(tsk);
4226         parent = task_cgroup(tsk, subsys->subsys_id);
4227         cg = tsk->cgroups;
4228         get_css_set(cg);
4229         task_unlock(tsk);
4230
4231         mutex_unlock(&cgroup_mutex);
4232
4233         /* Now do the VFS work to create a cgroup */
4234         inode = parent->dentry->d_inode;
4235
4236         /* Hold the parent directory mutex across this operation to
4237          * stop anyone else deleting the new cgroup */
4238         mutex_lock(&inode->i_mutex);
4239         dentry = lookup_one_len(nodename, parent->dentry, strlen(nodename));
4240         if (IS_ERR(dentry)) {
4241                 printk(KERN_INFO
4242                        "cgroup: Couldn't allocate dentry for %s: %ld\n", nodename,
4243                        PTR_ERR(dentry));
4244                 ret = PTR_ERR(dentry);
4245                 goto out_release;
4246         }
4247
4248         /* Create the cgroup directory, which also creates the cgroup */
4249         ret = vfs_mkdir(inode, dentry, 0755);
4250         child = __d_cgrp(dentry);
4251         dput(dentry);
4252         if (ret) {
4253                 printk(KERN_INFO
4254                        "Failed to create cgroup %s: %d\n", nodename,
4255                        ret);
4256                 goto out_release;
4257         }
4258
4259         /* The cgroup now exists. Retake cgroup_mutex and check
4260          * that we're still in the same state that we thought we
4261          * were. */
4262         mutex_lock(&cgroup_mutex);
4263         if ((root != subsys->root) ||
4264             (parent != task_cgroup(tsk, subsys->subsys_id))) {
4265                 /* Aargh, we raced ... */
4266                 mutex_unlock(&inode->i_mutex);
4267                 put_css_set(cg);
4268
4269                 deactivate_super(root->sb);
4270                 /* The cgroup is still accessible in the VFS, but
4271                  * we're not going to try to rmdir() it at this
4272                  * point. */
4273                 printk(KERN_INFO
4274                        "Race in cgroup_clone() - leaking cgroup %s\n",
4275                        nodename);
4276                 goto again;
4277         }
4278
4279         /* do any required auto-setup */
4280         for_each_subsys(root, ss) {
4281                 if (ss->post_clone)
4282                         ss->post_clone(ss, child);
4283         }
4284
4285         /* All seems fine. Finish by moving the task into the new cgroup */
4286         ret = cgroup_attach_task(child, tsk);
4287         mutex_unlock(&cgroup_mutex);
4288
4289  out_release:
4290         mutex_unlock(&inode->i_mutex);
4291
4292         mutex_lock(&cgroup_mutex);
4293         put_css_set(cg);
4294         mutex_unlock(&cgroup_mutex);
4295         deactivate_super(root->sb);
4296         return ret;
4297 }
4298
4299 /**
4300  * cgroup_is_descendant - see if @cgrp is a descendant of @task's cgrp
4301  * @cgrp: the cgroup in question
4302  * @task: the task in question
4303  *
4304  * See if @cgrp is a descendant of @task's cgroup in the appropriate
4305  * hierarchy.
4306  *
4307  * If we are sending in dummytop, then presumably we are creating
4308  * the top cgroup in the subsystem.
4309  *
4310  * Called only by the ns (nsproxy) cgroup.
4311  */
4312 int cgroup_is_descendant(const struct cgroup *cgrp, struct task_struct *task)
4313 {
4314         int ret;
4315         struct cgroup *target;
4316
4317         if (cgrp == dummytop)
4318                 return 1;
4319
4320         target = task_cgroup_from_root(task, cgrp->root);
4321         while (cgrp != target && cgrp!= cgrp->top_cgroup)
4322                 cgrp = cgrp->parent;
4323         ret = (cgrp == target);
4324         return ret;
4325 }
4326
4327 static void check_for_release(struct cgroup *cgrp)
4328 {
4329         /* All of these checks rely on RCU to keep the cgroup
4330          * structure alive */
4331         if (cgroup_is_releasable(cgrp) && !atomic_read(&cgrp->count)
4332             && list_empty(&cgrp->children) && !cgroup_has_css_refs(cgrp)) {
4333                 /* Control Group is currently removeable. If it's not
4334                  * already queued for a userspace notification, queue
4335                  * it now */
4336                 int need_schedule_work = 0;
4337                 spin_lock(&release_list_lock);
4338                 if (!cgroup_is_removed(cgrp) &&
4339                     list_empty(&cgrp->release_list)) {
4340                         list_add(&cgrp->release_list, &release_list);
4341                         need_schedule_work = 1;
4342                 }
4343                 spin_unlock(&release_list_lock);
4344                 if (need_schedule_work)
4345                         schedule_work(&release_agent_work);
4346         }
4347 }
4348
4349 /* Caller must verify that the css is not for root cgroup */
4350 void __css_put(struct cgroup_subsys_state *css, int count)
4351 {
4352         struct cgroup *cgrp = css->cgroup;
4353         int val;
4354         rcu_read_lock();
4355         val = atomic_sub_return(count, &css->refcnt);
4356         if (val == 1) {
4357                 if (notify_on_release(cgrp)) {
4358                         set_bit(CGRP_RELEASABLE, &cgrp->flags);
4359                         check_for_release(cgrp);
4360                 }
4361                 cgroup_wakeup_rmdir_waiter(cgrp);
4362         }
4363         rcu_read_unlock();
4364         WARN_ON_ONCE(val < 1);
4365 }
4366 EXPORT_SYMBOL_GPL(__css_put);
4367
4368 /*
4369  * Notify userspace when a cgroup is released, by running the
4370  * configured release agent with the name of the cgroup (path
4371  * relative to the root of cgroup file system) as the argument.
4372  *
4373  * Most likely, this user command will try to rmdir this cgroup.
4374  *
4375  * This races with the possibility that some other task will be
4376  * attached to this cgroup before it is removed, or that some other
4377  * user task will 'mkdir' a child cgroup of this cgroup.  That's ok.
4378  * The presumed 'rmdir' will fail quietly if this cgroup is no longer
4379  * unused, and this cgroup will be reprieved from its death sentence,
4380  * to continue to serve a useful existence.  Next time it's released,
4381  * we will get notified again, if it still has 'notify_on_release' set.
4382  *
4383  * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
4384  * means only wait until the task is successfully execve()'d.  The
4385  * separate release agent task is forked by call_usermodehelper(),
4386  * then control in this thread returns here, without waiting for the
4387  * release agent task.  We don't bother to wait because the caller of
4388  * this routine has no use for the exit status of the release agent
4389  * task, so no sense holding our caller up for that.
4390  */
4391 static void cgroup_release_agent(struct work_struct *work)
4392 {
4393         BUG_ON(work != &release_agent_work);
4394         mutex_lock(&cgroup_mutex);
4395         spin_lock(&release_list_lock);
4396         while (!list_empty(&release_list)) {
4397                 char *argv[3], *envp[3];
4398                 int i;
4399                 char *pathbuf = NULL, *agentbuf = NULL;
4400                 struct cgroup *cgrp = list_entry(release_list.next,
4401                                                     struct cgroup,
4402                                                     release_list);
4403                 list_del_init(&cgrp->release_list);
4404                 spin_unlock(&release_list_lock);
4405                 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
4406                 if (!pathbuf)
4407                         goto continue_free;
4408                 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0)
4409                         goto continue_free;
4410                 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
4411                 if (!agentbuf)
4412                         goto continue_free;
4413
4414                 i = 0;
4415                 argv[i++] = agentbuf;
4416                 argv[i++] = pathbuf;
4417                 argv[i] = NULL;
4418
4419                 i = 0;
4420                 /* minimal command environment */
4421                 envp[i++] = "HOME=/";
4422                 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
4423                 envp[i] = NULL;
4424
4425                 /* Drop the lock while we invoke the usermode helper,
4426                  * since the exec could involve hitting disk and hence
4427                  * be a slow process */
4428                 mutex_unlock(&cgroup_mutex);
4429                 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
4430                 mutex_lock(&cgroup_mutex);
4431  continue_free:
4432                 kfree(pathbuf);
4433                 kfree(agentbuf);
4434                 spin_lock(&release_list_lock);
4435         }
4436         spin_unlock(&release_list_lock);
4437         mutex_unlock(&cgroup_mutex);
4438 }
4439
4440 static int __init cgroup_disable(char *str)
4441 {
4442         int i;
4443         char *token;
4444
4445         while ((token = strsep(&str, ",")) != NULL) {
4446                 if (!*token)
4447                         continue;
4448                 /*
4449                  * cgroup_disable, being at boot time, can't know about module
4450                  * subsystems, so we don't worry about them.
4451                  */
4452                 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
4453                         struct cgroup_subsys *ss = subsys[i];
4454
4455                         if (!strcmp(token, ss->name)) {
4456                                 ss->disabled = 1;
4457                                 printk(KERN_INFO "Disabling %s control group"
4458                                         " subsystem\n", ss->name);
4459                                 break;
4460                         }
4461                 }
4462         }
4463         return 1;
4464 }
4465 __setup("cgroup_disable=", cgroup_disable);
4466
4467 /*
4468  * Functons for CSS ID.
4469  */
4470
4471 /*
4472  *To get ID other than 0, this should be called when !cgroup_is_removed().
4473  */
4474 unsigned short css_id(struct cgroup_subsys_state *css)
4475 {
4476         struct css_id *cssid;
4477
4478         /*
4479          * This css_id() can return correct value when somone has refcnt
4480          * on this or this is under rcu_read_lock(). Once css->id is allocated,
4481          * it's unchanged until freed.
4482          */
4483         cssid = rcu_dereference_check(css->id,
4484                         rcu_read_lock_held() || atomic_read(&css->refcnt));
4485
4486         if (cssid)
4487                 return cssid->id;
4488         return 0;
4489 }
4490 EXPORT_SYMBOL_GPL(css_id);
4491
4492 unsigned short css_depth(struct cgroup_subsys_state *css)
4493 {
4494         struct css_id *cssid;
4495
4496         cssid = rcu_dereference_check(css->id,
4497                         rcu_read_lock_held() || atomic_read(&css->refcnt));
4498
4499         if (cssid)
4500                 return cssid->depth;
4501         return 0;
4502 }
4503 EXPORT_SYMBOL_GPL(css_depth);
4504
4505 /**
4506  *  css_is_ancestor - test "root" css is an ancestor of "child"
4507  * @child: the css to be tested.
4508  * @root: the css supporsed to be an ancestor of the child.
4509  *
4510  * Returns true if "root" is an ancestor of "child" in its hierarchy. Because
4511  * this function reads css->id, this use rcu_dereference() and rcu_read_lock().
4512  * But, considering usual usage, the csses should be valid objects after test.
4513  * Assuming that the caller will do some action to the child if this returns
4514  * returns true, the caller must take "child";s reference count.
4515  * If "child" is valid object and this returns true, "root" is valid, too.
4516  */
4517
4518 bool css_is_ancestor(struct cgroup_subsys_state *child,
4519                     const struct cgroup_subsys_state *root)
4520 {
4521         struct css_id *child_id;
4522         struct css_id *root_id;
4523         bool ret = true;
4524
4525         rcu_read_lock();
4526         child_id  = rcu_dereference(child->id);
4527         root_id = rcu_dereference(root->id);
4528         if (!child_id
4529             || !root_id
4530             || (child_id->depth < root_id->depth)
4531             || (child_id->stack[root_id->depth] != root_id->id))
4532                 ret = false;
4533         rcu_read_unlock();
4534         return ret;
4535 }
4536
4537 static void __free_css_id_cb(struct rcu_head *head)
4538 {
4539         struct css_id *id;
4540
4541         id = container_of(head, struct css_id, rcu_head);
4542         kfree(id);
4543 }
4544
4545 void free_css_id(struct cgroup_subsys *ss, struct cgroup_subsys_state *css)
4546 {
4547         struct css_id *id = css->id;
4548         /* When this is called before css_id initialization, id can be NULL */
4549         if (!id)
4550                 return;
4551
4552         BUG_ON(!ss->use_id);
4553
4554         rcu_assign_pointer(id->css, NULL);
4555         rcu_assign_pointer(css->id, NULL);
4556         spin_lock(&ss->id_lock);
4557         idr_remove(&ss->idr, id->id);
4558         spin_unlock(&ss->id_lock);
4559         call_rcu(&id->rcu_head, __free_css_id_cb);
4560 }
4561 EXPORT_SYMBOL_GPL(free_css_id);
4562
4563 /*
4564  * This is called by init or create(). Then, calls to this function are
4565  * always serialized (By cgroup_mutex() at create()).
4566  */
4567
4568 static struct css_id *get_new_cssid(struct cgroup_subsys *ss, int depth)
4569 {
4570         struct css_id *newid;
4571         int myid, error, size;
4572
4573         BUG_ON(!ss->use_id);
4574
4575         size = sizeof(*newid) + sizeof(unsigned short) * (depth + 1);
4576         newid = kzalloc(size, GFP_KERNEL);
4577         if (!newid)
4578                 return ERR_PTR(-ENOMEM);
4579         /* get id */
4580         if (unlikely(!idr_pre_get(&ss->idr, GFP_KERNEL))) {
4581                 error = -ENOMEM;
4582                 goto err_out;
4583         }
4584         spin_lock(&ss->id_lock);
4585         /* Don't use 0. allocates an ID of 1-65535 */
4586         error = idr_get_new_above(&ss->idr, newid, 1, &myid);
4587         spin_unlock(&ss->id_lock);
4588
4589         /* Returns error when there are no free spaces for new ID.*/
4590         if (error) {
4591                 error = -ENOSPC;
4592                 goto err_out;
4593         }
4594         if (myid > CSS_ID_MAX)
4595                 goto remove_idr;
4596
4597         newid->id = myid;
4598         newid->depth = depth;
4599         return newid;
4600 remove_idr:
4601         error = -ENOSPC;
4602         spin_lock(&ss->id_lock);
4603         idr_remove(&ss->idr, myid);
4604         spin_unlock(&ss->id_lock);
4605 err_out:
4606         kfree(newid);
4607         return ERR_PTR(error);
4608
4609 }
4610
4611 static int __init_or_module cgroup_init_idr(struct cgroup_subsys *ss,
4612                                             struct cgroup_subsys_state *rootcss)
4613 {
4614         struct css_id *newid;
4615
4616         spin_lock_init(&ss->id_lock);
4617         idr_init(&ss->idr);
4618
4619         newid = get_new_cssid(ss, 0);
4620         if (IS_ERR(newid))
4621                 return PTR_ERR(newid);
4622
4623         newid->stack[0] = newid->id;
4624         newid->css = rootcss;
4625         rootcss->id = newid;
4626         return 0;
4627 }
4628
4629 static int alloc_css_id(struct cgroup_subsys *ss, struct cgroup *parent,
4630                         struct cgroup *child)
4631 {
4632         int subsys_id, i, depth = 0;
4633         struct cgroup_subsys_state *parent_css, *child_css;
4634         struct css_id *child_id, *parent_id;
4635
4636         subsys_id = ss->subsys_id;
4637         parent_css = parent->subsys[subsys_id];
4638         child_css = child->subsys[subsys_id];
4639         parent_id = parent_css->id;
4640         depth = parent_id->depth + 1;
4641
4642         child_id = get_new_cssid(ss, depth);
4643         if (IS_ERR(child_id))
4644                 return PTR_ERR(child_id);
4645
4646         for (i = 0; i < depth; i++)
4647                 child_id->stack[i] = parent_id->stack[i];
4648         child_id->stack[depth] = child_id->id;
4649         /*
4650          * child_id->css pointer will be set after this cgroup is available
4651          * see cgroup_populate_dir()
4652          */
4653         rcu_assign_pointer(child_css->id, child_id);
4654
4655         return 0;
4656 }
4657
4658 /**
4659  * css_lookup - lookup css by id
4660  * @ss: cgroup subsys to be looked into.
4661  * @id: the id
4662  *
4663  * Returns pointer to cgroup_subsys_state if there is valid one with id.
4664  * NULL if not. Should be called under rcu_read_lock()
4665  */
4666 struct cgroup_subsys_state *css_lookup(struct cgroup_subsys *ss, int id)
4667 {
4668         struct css_id *cssid = NULL;
4669
4670         BUG_ON(!ss->use_id);
4671         cssid = idr_find(&ss->idr, id);
4672
4673         if (unlikely(!cssid))
4674                 return NULL;
4675
4676         return rcu_dereference(cssid->css);
4677 }
4678 EXPORT_SYMBOL_GPL(css_lookup);
4679
4680 /**
4681  * css_get_next - lookup next cgroup under specified hierarchy.
4682  * @ss: pointer to subsystem
4683  * @id: current position of iteration.
4684  * @root: pointer to css. search tree under this.
4685  * @foundid: position of found object.
4686  *
4687  * Search next css under the specified hierarchy of rootid. Calling under
4688  * rcu_read_lock() is necessary. Returns NULL if it reaches the end.
4689  */
4690 struct cgroup_subsys_state *
4691 css_get_next(struct cgroup_subsys *ss, int id,
4692              struct cgroup_subsys_state *root, int *foundid)
4693 {
4694         struct cgroup_subsys_state *ret = NULL;
4695         struct css_id *tmp;
4696         int tmpid;
4697         int rootid = css_id(root);
4698         int depth = css_depth(root);
4699
4700         if (!rootid)
4701                 return NULL;
4702
4703         BUG_ON(!ss->use_id);
4704         /* fill start point for scan */
4705         tmpid = id;
4706         while (1) {
4707                 /*
4708                  * scan next entry from bitmap(tree), tmpid is updated after
4709                  * idr_get_next().
4710                  */
4711                 spin_lock(&ss->id_lock);
4712                 tmp = idr_get_next(&ss->idr, &tmpid);
4713                 spin_unlock(&ss->id_lock);
4714
4715                 if (!tmp)
4716                         break;
4717                 if (tmp->depth >= depth && tmp->stack[depth] == rootid) {
4718                         ret = rcu_dereference(tmp->css);
4719                         if (ret) {
4720                                 *foundid = tmpid;
4721                                 break;
4722                         }
4723                 }
4724                 /* continue to scan from next id */
4725                 tmpid = tmpid + 1;
4726         }
4727         return ret;
4728 }
4729
4730 #ifdef CONFIG_CGROUP_DEBUG
4731 static struct cgroup_subsys_state *debug_create(struct cgroup_subsys *ss,
4732                                                    struct cgroup *cont)
4733 {
4734         struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
4735
4736         if (!css)
4737                 return ERR_PTR(-ENOMEM);
4738
4739         return css;
4740 }
4741
4742 static void debug_destroy(struct cgroup_subsys *ss, struct cgroup *cont)
4743 {
4744         kfree(cont->subsys[debug_subsys_id]);
4745 }
4746
4747 static u64 cgroup_refcount_read(struct cgroup *cont, struct cftype *cft)
4748 {
4749         return atomic_read(&cont->count);
4750 }
4751
4752 static u64 debug_taskcount_read(struct cgroup *cont, struct cftype *cft)
4753 {
4754         return cgroup_task_count(cont);
4755 }
4756
4757 static u64 current_css_set_read(struct cgroup *cont, struct cftype *cft)
4758 {
4759         return (u64)(unsigned long)current->cgroups;
4760 }
4761
4762 static u64 current_css_set_refcount_read(struct cgroup *cont,
4763                                            struct cftype *cft)
4764 {
4765         u64 count;
4766
4767         rcu_read_lock();
4768         count = atomic_read(&current->cgroups->refcount);
4769         rcu_read_unlock();
4770         return count;
4771 }
4772
4773 static int current_css_set_cg_links_read(struct cgroup *cont,
4774                                          struct cftype *cft,
4775                                          struct seq_file *seq)
4776 {
4777         struct cg_cgroup_link *link;
4778         struct css_set *cg;
4779
4780         read_lock(&css_set_lock);
4781         rcu_read_lock();
4782         cg = rcu_dereference(current->cgroups);
4783         list_for_each_entry(link, &cg->cg_links, cg_link_list) {
4784                 struct cgroup *c = link->cgrp;
4785                 const char *name;
4786
4787                 if (c->dentry)
4788                         name = c->dentry->d_name.name;
4789                 else
4790                         name = "?";
4791                 seq_printf(seq, "Root %d group %s\n",
4792                            c->root->hierarchy_id, name);
4793         }
4794         rcu_read_unlock();
4795         read_unlock(&css_set_lock);
4796         return 0;
4797 }
4798
4799 #define MAX_TASKS_SHOWN_PER_CSS 25
4800 static int cgroup_css_links_read(struct cgroup *cont,
4801                                  struct cftype *cft,
4802                                  struct seq_file *seq)
4803 {
4804         struct cg_cgroup_link *link;
4805
4806         read_lock(&css_set_lock);
4807         list_for_each_entry(link, &cont->css_sets, cgrp_link_list) {
4808                 struct css_set *cg = link->cg;
4809                 struct task_struct *task;
4810                 int count = 0;
4811                 seq_printf(seq, "css_set %p\n", cg);
4812                 list_for_each_entry(task, &cg->tasks, cg_list) {
4813                         if (count++ > MAX_TASKS_SHOWN_PER_CSS) {
4814                                 seq_puts(seq, "  ...\n");
4815                                 break;
4816                         } else {
4817                                 seq_printf(seq, "  task %d\n",
4818                                            task_pid_vnr(task));
4819                         }
4820                 }
4821         }
4822         read_unlock(&css_set_lock);
4823         return 0;
4824 }
4825
4826 static u64 releasable_read(struct cgroup *cgrp, struct cftype *cft)
4827 {
4828         return test_bit(CGRP_RELEASABLE, &cgrp->flags);
4829 }
4830
4831 static struct cftype debug_files[] =  {
4832         {
4833                 .name = "cgroup_refcount",
4834                 .read_u64 = cgroup_refcount_read,
4835         },
4836         {
4837                 .name = "taskcount",
4838                 .read_u64 = debug_taskcount_read,
4839         },
4840
4841         {
4842                 .name = "current_css_set",
4843                 .read_u64 = current_css_set_read,
4844         },
4845
4846         {
4847                 .name = "current_css_set_refcount",
4848                 .read_u64 = current_css_set_refcount_read,
4849         },
4850
4851         {
4852                 .name = "current_css_set_cg_links",
4853                 .read_seq_string = current_css_set_cg_links_read,
4854         },
4855
4856         {
4857                 .name = "cgroup_css_links",
4858                 .read_seq_string = cgroup_css_links_read,
4859         },
4860
4861         {
4862                 .name = "releasable",
4863                 .read_u64 = releasable_read,
4864         },
4865 };
4866
4867 static int debug_populate(struct cgroup_subsys *ss, struct cgroup *cont)
4868 {
4869         return cgroup_add_files(cont, ss, debug_files,
4870                                 ARRAY_SIZE(debug_files));
4871 }
4872
4873 struct cgroup_subsys debug_subsys = {
4874         .name = "debug",
4875         .create = debug_create,
4876         .destroy = debug_destroy,
4877         .populate = debug_populate,
4878         .subsys_id = debug_subsys_id,
4879 };
4880 #endif /* CONFIG_CGROUP_DEBUG */