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