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