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