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