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