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