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