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