cgroup: Use separate src/dst nodes when preloading css_sets for migration
[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                         list_add_rcu(&css->rstat_css_node,
1814                                      &dcgrp->rstat_css_list);
1815                 }
1816
1817                 /* default hierarchy doesn't enable controllers by default */
1818                 dst_root->subsys_mask |= 1 << ssid;
1819                 if (dst_root == &cgrp_dfl_root) {
1820                         static_branch_enable(cgroup_subsys_on_dfl_key[ssid]);
1821                 } else {
1822                         dcgrp->subtree_control |= 1 << ssid;
1823                         static_branch_disable(cgroup_subsys_on_dfl_key[ssid]);
1824                 }
1825
1826                 ret = cgroup_apply_control(dcgrp);
1827                 if (ret)
1828                         pr_warn("partial failure to rebind %s controller (err=%d)\n",
1829                                 ss->name, ret);
1830
1831                 if (ss->bind)
1832                         ss->bind(css);
1833         } while_each_subsys_mask();
1834
1835         kernfs_activate(dcgrp->kn);
1836         return 0;
1837 }
1838
1839 int cgroup_show_path(struct seq_file *sf, struct kernfs_node *kf_node,
1840                      struct kernfs_root *kf_root)
1841 {
1842         int len = 0;
1843         char *buf = NULL;
1844         struct cgroup_root *kf_cgroot = cgroup_root_from_kf(kf_root);
1845         struct cgroup *ns_cgroup;
1846
1847         buf = kmalloc(PATH_MAX, GFP_KERNEL);
1848         if (!buf)
1849                 return -ENOMEM;
1850
1851         spin_lock_irq(&css_set_lock);
1852         ns_cgroup = current_cgns_cgroup_from_root(kf_cgroot);
1853         len = kernfs_path_from_node(kf_node, ns_cgroup->kn, buf, PATH_MAX);
1854         spin_unlock_irq(&css_set_lock);
1855
1856         if (len >= PATH_MAX)
1857                 len = -ERANGE;
1858         else if (len > 0) {
1859                 seq_escape(sf, buf, " \t\n\\");
1860                 len = 0;
1861         }
1862         kfree(buf);
1863         return len;
1864 }
1865
1866 enum cgroup2_param {
1867         Opt_nsdelegate,
1868         Opt_memory_localevents,
1869         Opt_memory_recursiveprot,
1870         nr__cgroup2_params
1871 };
1872
1873 static const struct fs_parameter_spec cgroup2_fs_parameters[] = {
1874         fsparam_flag("nsdelegate",              Opt_nsdelegate),
1875         fsparam_flag("memory_localevents",      Opt_memory_localevents),
1876         fsparam_flag("memory_recursiveprot",    Opt_memory_recursiveprot),
1877         {}
1878 };
1879
1880 static int cgroup2_parse_param(struct fs_context *fc, struct fs_parameter *param)
1881 {
1882         struct cgroup_fs_context *ctx = cgroup_fc2context(fc);
1883         struct fs_parse_result result;
1884         int opt;
1885
1886         opt = fs_parse(fc, cgroup2_fs_parameters, param, &result);
1887         if (opt < 0)
1888                 return opt;
1889
1890         switch (opt) {
1891         case Opt_nsdelegate:
1892                 ctx->flags |= CGRP_ROOT_NS_DELEGATE;
1893                 return 0;
1894         case Opt_memory_localevents:
1895                 ctx->flags |= CGRP_ROOT_MEMORY_LOCAL_EVENTS;
1896                 return 0;
1897         case Opt_memory_recursiveprot:
1898                 ctx->flags |= CGRP_ROOT_MEMORY_RECURSIVE_PROT;
1899                 return 0;
1900         }
1901         return -EINVAL;
1902 }
1903
1904 static void apply_cgroup_root_flags(unsigned int root_flags)
1905 {
1906         if (current->nsproxy->cgroup_ns == &init_cgroup_ns) {
1907                 if (root_flags & CGRP_ROOT_NS_DELEGATE)
1908                         cgrp_dfl_root.flags |= CGRP_ROOT_NS_DELEGATE;
1909                 else
1910                         cgrp_dfl_root.flags &= ~CGRP_ROOT_NS_DELEGATE;
1911
1912                 if (root_flags & CGRP_ROOT_MEMORY_LOCAL_EVENTS)
1913                         cgrp_dfl_root.flags |= CGRP_ROOT_MEMORY_LOCAL_EVENTS;
1914                 else
1915                         cgrp_dfl_root.flags &= ~CGRP_ROOT_MEMORY_LOCAL_EVENTS;
1916
1917                 if (root_flags & CGRP_ROOT_MEMORY_RECURSIVE_PROT)
1918                         cgrp_dfl_root.flags |= CGRP_ROOT_MEMORY_RECURSIVE_PROT;
1919                 else
1920                         cgrp_dfl_root.flags &= ~CGRP_ROOT_MEMORY_RECURSIVE_PROT;
1921         }
1922 }
1923
1924 static int cgroup_show_options(struct seq_file *seq, struct kernfs_root *kf_root)
1925 {
1926         if (cgrp_dfl_root.flags & CGRP_ROOT_NS_DELEGATE)
1927                 seq_puts(seq, ",nsdelegate");
1928         if (cgrp_dfl_root.flags & CGRP_ROOT_MEMORY_LOCAL_EVENTS)
1929                 seq_puts(seq, ",memory_localevents");
1930         if (cgrp_dfl_root.flags & CGRP_ROOT_MEMORY_RECURSIVE_PROT)
1931                 seq_puts(seq, ",memory_recursiveprot");
1932         return 0;
1933 }
1934
1935 static int cgroup_reconfigure(struct fs_context *fc)
1936 {
1937         struct cgroup_fs_context *ctx = cgroup_fc2context(fc);
1938
1939         apply_cgroup_root_flags(ctx->flags);
1940         return 0;
1941 }
1942
1943 static void init_cgroup_housekeeping(struct cgroup *cgrp)
1944 {
1945         struct cgroup_subsys *ss;
1946         int ssid;
1947
1948         INIT_LIST_HEAD(&cgrp->self.sibling);
1949         INIT_LIST_HEAD(&cgrp->self.children);
1950         INIT_LIST_HEAD(&cgrp->cset_links);
1951         INIT_LIST_HEAD(&cgrp->pidlists);
1952         mutex_init(&cgrp->pidlist_mutex);
1953         cgrp->self.cgroup = cgrp;
1954         cgrp->self.flags |= CSS_ONLINE;
1955         cgrp->dom_cgrp = cgrp;
1956         cgrp->max_descendants = INT_MAX;
1957         cgrp->max_depth = INT_MAX;
1958         INIT_LIST_HEAD(&cgrp->rstat_css_list);
1959         prev_cputime_init(&cgrp->prev_cputime);
1960
1961         for_each_subsys(ss, ssid)
1962                 INIT_LIST_HEAD(&cgrp->e_csets[ssid]);
1963
1964         init_waitqueue_head(&cgrp->offline_waitq);
1965         INIT_WORK(&cgrp->release_agent_work, cgroup1_release_agent);
1966 }
1967
1968 void init_cgroup_root(struct cgroup_fs_context *ctx)
1969 {
1970         struct cgroup_root *root = ctx->root;
1971         struct cgroup *cgrp = &root->cgrp;
1972
1973         INIT_LIST_HEAD(&root->root_list);
1974         atomic_set(&root->nr_cgrps, 1);
1975         cgrp->root = root;
1976         init_cgroup_housekeeping(cgrp);
1977
1978         root->flags = ctx->flags;
1979         if (ctx->release_agent)
1980                 strscpy(root->release_agent_path, ctx->release_agent, PATH_MAX);
1981         if (ctx->name)
1982                 strscpy(root->name, ctx->name, MAX_CGROUP_ROOT_NAMELEN);
1983         if (ctx->cpuset_clone_children)
1984                 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags);
1985 }
1986
1987 int cgroup_setup_root(struct cgroup_root *root, u16 ss_mask)
1988 {
1989         LIST_HEAD(tmp_links);
1990         struct cgroup *root_cgrp = &root->cgrp;
1991         struct kernfs_syscall_ops *kf_sops;
1992         struct css_set *cset;
1993         int i, ret;
1994
1995         lockdep_assert_held(&cgroup_mutex);
1996
1997         ret = percpu_ref_init(&root_cgrp->self.refcnt, css_release,
1998                               0, GFP_KERNEL);
1999         if (ret)
2000                 goto out;
2001
2002         /*
2003          * We're accessing css_set_count without locking css_set_lock here,
2004          * but that's OK - it can only be increased by someone holding
2005          * cgroup_lock, and that's us.  Later rebinding may disable
2006          * controllers on the default hierarchy and thus create new csets,
2007          * which can't be more than the existing ones.  Allocate 2x.
2008          */
2009         ret = allocate_cgrp_cset_links(2 * css_set_count, &tmp_links);
2010         if (ret)
2011                 goto cancel_ref;
2012
2013         ret = cgroup_init_root_id(root);
2014         if (ret)
2015                 goto cancel_ref;
2016
2017         kf_sops = root == &cgrp_dfl_root ?
2018                 &cgroup_kf_syscall_ops : &cgroup1_kf_syscall_ops;
2019
2020         root->kf_root = kernfs_create_root(kf_sops,
2021                                            KERNFS_ROOT_CREATE_DEACTIVATED |
2022                                            KERNFS_ROOT_SUPPORT_EXPORTOP |
2023                                            KERNFS_ROOT_SUPPORT_USER_XATTR,
2024                                            root_cgrp);
2025         if (IS_ERR(root->kf_root)) {
2026                 ret = PTR_ERR(root->kf_root);
2027                 goto exit_root_id;
2028         }
2029         root_cgrp->kn = root->kf_root->kn;
2030         WARN_ON_ONCE(cgroup_ino(root_cgrp) != 1);
2031         root_cgrp->ancestor_ids[0] = cgroup_id(root_cgrp);
2032
2033         ret = css_populate_dir(&root_cgrp->self);
2034         if (ret)
2035                 goto destroy_root;
2036
2037         ret = cgroup_rstat_init(root_cgrp);
2038         if (ret)
2039                 goto destroy_root;
2040
2041         ret = rebind_subsystems(root, ss_mask);
2042         if (ret)
2043                 goto exit_stats;
2044
2045         ret = cgroup_bpf_inherit(root_cgrp);
2046         WARN_ON_ONCE(ret);
2047
2048         trace_cgroup_setup_root(root);
2049
2050         /*
2051          * There must be no failure case after here, since rebinding takes
2052          * care of subsystems' refcounts, which are explicitly dropped in
2053          * the failure exit path.
2054          */
2055         list_add(&root->root_list, &cgroup_roots);
2056         cgroup_root_count++;
2057
2058         /*
2059          * Link the root cgroup in this hierarchy into all the css_set
2060          * objects.
2061          */
2062         spin_lock_irq(&css_set_lock);
2063         hash_for_each(css_set_table, i, cset, hlist) {
2064                 link_css_set(&tmp_links, cset, root_cgrp);
2065                 if (css_set_populated(cset))
2066                         cgroup_update_populated(root_cgrp, true);
2067         }
2068         spin_unlock_irq(&css_set_lock);
2069
2070         BUG_ON(!list_empty(&root_cgrp->self.children));
2071         BUG_ON(atomic_read(&root->nr_cgrps) != 1);
2072
2073         ret = 0;
2074         goto out;
2075
2076 exit_stats:
2077         cgroup_rstat_exit(root_cgrp);
2078 destroy_root:
2079         kernfs_destroy_root(root->kf_root);
2080         root->kf_root = NULL;
2081 exit_root_id:
2082         cgroup_exit_root_id(root);
2083 cancel_ref:
2084         percpu_ref_exit(&root_cgrp->self.refcnt);
2085 out:
2086         free_cgrp_cset_links(&tmp_links);
2087         return ret;
2088 }
2089
2090 int cgroup_do_get_tree(struct fs_context *fc)
2091 {
2092         struct cgroup_fs_context *ctx = cgroup_fc2context(fc);
2093         int ret;
2094
2095         ctx->kfc.root = ctx->root->kf_root;
2096         if (fc->fs_type == &cgroup2_fs_type)
2097                 ctx->kfc.magic = CGROUP2_SUPER_MAGIC;
2098         else
2099                 ctx->kfc.magic = CGROUP_SUPER_MAGIC;
2100         ret = kernfs_get_tree(fc);
2101
2102         /*
2103          * In non-init cgroup namespace, instead of root cgroup's dentry,
2104          * we return the dentry corresponding to the cgroupns->root_cgrp.
2105          */
2106         if (!ret && ctx->ns != &init_cgroup_ns) {
2107                 struct dentry *nsdentry;
2108                 struct super_block *sb = fc->root->d_sb;
2109                 struct cgroup *cgrp;
2110
2111                 mutex_lock(&cgroup_mutex);
2112                 spin_lock_irq(&css_set_lock);
2113
2114                 cgrp = cset_cgroup_from_root(ctx->ns->root_cset, ctx->root);
2115
2116                 spin_unlock_irq(&css_set_lock);
2117                 mutex_unlock(&cgroup_mutex);
2118
2119                 nsdentry = kernfs_node_dentry(cgrp->kn, sb);
2120                 dput(fc->root);
2121                 if (IS_ERR(nsdentry)) {
2122                         deactivate_locked_super(sb);
2123                         ret = PTR_ERR(nsdentry);
2124                         nsdentry = NULL;
2125                 }
2126                 fc->root = nsdentry;
2127         }
2128
2129         if (!ctx->kfc.new_sb_created)
2130                 cgroup_put(&ctx->root->cgrp);
2131
2132         return ret;
2133 }
2134
2135 /*
2136  * Destroy a cgroup filesystem context.
2137  */
2138 static void cgroup_fs_context_free(struct fs_context *fc)
2139 {
2140         struct cgroup_fs_context *ctx = cgroup_fc2context(fc);
2141
2142         kfree(ctx->name);
2143         kfree(ctx->release_agent);
2144         put_cgroup_ns(ctx->ns);
2145         kernfs_free_fs_context(fc);
2146         kfree(ctx);
2147 }
2148
2149 static int cgroup_get_tree(struct fs_context *fc)
2150 {
2151         struct cgroup_fs_context *ctx = cgroup_fc2context(fc);
2152         int ret;
2153
2154         cgrp_dfl_visible = true;
2155         cgroup_get_live(&cgrp_dfl_root.cgrp);
2156         ctx->root = &cgrp_dfl_root;
2157
2158         ret = cgroup_do_get_tree(fc);
2159         if (!ret)
2160                 apply_cgroup_root_flags(ctx->flags);
2161         return ret;
2162 }
2163
2164 static const struct fs_context_operations cgroup_fs_context_ops = {
2165         .free           = cgroup_fs_context_free,
2166         .parse_param    = cgroup2_parse_param,
2167         .get_tree       = cgroup_get_tree,
2168         .reconfigure    = cgroup_reconfigure,
2169 };
2170
2171 static const struct fs_context_operations cgroup1_fs_context_ops = {
2172         .free           = cgroup_fs_context_free,
2173         .parse_param    = cgroup1_parse_param,
2174         .get_tree       = cgroup1_get_tree,
2175         .reconfigure    = cgroup1_reconfigure,
2176 };
2177
2178 /*
2179  * Initialise the cgroup filesystem creation/reconfiguration context.  Notably,
2180  * we select the namespace we're going to use.
2181  */
2182 static int cgroup_init_fs_context(struct fs_context *fc)
2183 {
2184         struct cgroup_fs_context *ctx;
2185
2186         ctx = kzalloc(sizeof(struct cgroup_fs_context), GFP_KERNEL);
2187         if (!ctx)
2188                 return -ENOMEM;
2189
2190         ctx->ns = current->nsproxy->cgroup_ns;
2191         get_cgroup_ns(ctx->ns);
2192         fc->fs_private = &ctx->kfc;
2193         if (fc->fs_type == &cgroup2_fs_type)
2194                 fc->ops = &cgroup_fs_context_ops;
2195         else
2196                 fc->ops = &cgroup1_fs_context_ops;
2197         put_user_ns(fc->user_ns);
2198         fc->user_ns = get_user_ns(ctx->ns->user_ns);
2199         fc->global = true;
2200         return 0;
2201 }
2202
2203 static void cgroup_kill_sb(struct super_block *sb)
2204 {
2205         struct kernfs_root *kf_root = kernfs_root_from_sb(sb);
2206         struct cgroup_root *root = cgroup_root_from_kf(kf_root);
2207
2208         /*
2209          * If @root doesn't have any children, start killing it.
2210          * This prevents new mounts by disabling percpu_ref_tryget_live().
2211          *
2212          * And don't kill the default root.
2213          */
2214         if (list_empty(&root->cgrp.self.children) && root != &cgrp_dfl_root &&
2215             !percpu_ref_is_dying(&root->cgrp.self.refcnt)) {
2216                 cgroup_bpf_offline(&root->cgrp);
2217                 percpu_ref_kill(&root->cgrp.self.refcnt);
2218         }
2219         cgroup_put(&root->cgrp);
2220         kernfs_kill_sb(sb);
2221 }
2222
2223 struct file_system_type cgroup_fs_type = {
2224         .name                   = "cgroup",
2225         .init_fs_context        = cgroup_init_fs_context,
2226         .parameters             = cgroup1_fs_parameters,
2227         .kill_sb                = cgroup_kill_sb,
2228         .fs_flags               = FS_USERNS_MOUNT,
2229 };
2230
2231 static struct file_system_type cgroup2_fs_type = {
2232         .name                   = "cgroup2",
2233         .init_fs_context        = cgroup_init_fs_context,
2234         .parameters             = cgroup2_fs_parameters,
2235         .kill_sb                = cgroup_kill_sb,
2236         .fs_flags               = FS_USERNS_MOUNT,
2237 };
2238
2239 #ifdef CONFIG_CPUSETS
2240 static const struct fs_context_operations cpuset_fs_context_ops = {
2241         .get_tree       = cgroup1_get_tree,
2242         .free           = cgroup_fs_context_free,
2243 };
2244
2245 /*
2246  * This is ugly, but preserves the userspace API for existing cpuset
2247  * users. If someone tries to mount the "cpuset" filesystem, we
2248  * silently switch it to mount "cgroup" instead
2249  */
2250 static int cpuset_init_fs_context(struct fs_context *fc)
2251 {
2252         char *agent = kstrdup("/sbin/cpuset_release_agent", GFP_USER);
2253         struct cgroup_fs_context *ctx;
2254         int err;
2255
2256         err = cgroup_init_fs_context(fc);
2257         if (err) {
2258                 kfree(agent);
2259                 return err;
2260         }
2261
2262         fc->ops = &cpuset_fs_context_ops;
2263
2264         ctx = cgroup_fc2context(fc);
2265         ctx->subsys_mask = 1 << cpuset_cgrp_id;
2266         ctx->flags |= CGRP_ROOT_NOPREFIX;
2267         ctx->release_agent = agent;
2268
2269         get_filesystem(&cgroup_fs_type);
2270         put_filesystem(fc->fs_type);
2271         fc->fs_type = &cgroup_fs_type;
2272
2273         return 0;
2274 }
2275
2276 static struct file_system_type cpuset_fs_type = {
2277         .name                   = "cpuset",
2278         .init_fs_context        = cpuset_init_fs_context,
2279         .fs_flags               = FS_USERNS_MOUNT,
2280 };
2281 #endif
2282
2283 int cgroup_path_ns_locked(struct cgroup *cgrp, char *buf, size_t buflen,
2284                           struct cgroup_namespace *ns)
2285 {
2286         struct cgroup *root = cset_cgroup_from_root(ns->root_cset, cgrp->root);
2287
2288         return kernfs_path_from_node(cgrp->kn, root->kn, buf, buflen);
2289 }
2290
2291 int cgroup_path_ns(struct cgroup *cgrp, char *buf, size_t buflen,
2292                    struct cgroup_namespace *ns)
2293 {
2294         int ret;
2295
2296         mutex_lock(&cgroup_mutex);
2297         spin_lock_irq(&css_set_lock);
2298
2299         ret = cgroup_path_ns_locked(cgrp, buf, buflen, ns);
2300
2301         spin_unlock_irq(&css_set_lock);
2302         mutex_unlock(&cgroup_mutex);
2303
2304         return ret;
2305 }
2306 EXPORT_SYMBOL_GPL(cgroup_path_ns);
2307
2308 /**
2309  * task_cgroup_path - cgroup path of a task in the first cgroup hierarchy
2310  * @task: target task
2311  * @buf: the buffer to write the path into
2312  * @buflen: the length of the buffer
2313  *
2314  * Determine @task's cgroup on the first (the one with the lowest non-zero
2315  * hierarchy_id) cgroup hierarchy and copy its path into @buf.  This
2316  * function grabs cgroup_mutex and shouldn't be used inside locks used by
2317  * cgroup controller callbacks.
2318  *
2319  * Return value is the same as kernfs_path().
2320  */
2321 int task_cgroup_path(struct task_struct *task, char *buf, size_t buflen)
2322 {
2323         struct cgroup_root *root;
2324         struct cgroup *cgrp;
2325         int hierarchy_id = 1;
2326         int ret;
2327
2328         mutex_lock(&cgroup_mutex);
2329         spin_lock_irq(&css_set_lock);
2330
2331         root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id);
2332
2333         if (root) {
2334                 cgrp = task_cgroup_from_root(task, root);
2335                 ret = cgroup_path_ns_locked(cgrp, buf, buflen, &init_cgroup_ns);
2336         } else {
2337                 /* if no hierarchy exists, everyone is in "/" */
2338                 ret = strlcpy(buf, "/", buflen);
2339         }
2340
2341         spin_unlock_irq(&css_set_lock);
2342         mutex_unlock(&cgroup_mutex);
2343         return ret;
2344 }
2345 EXPORT_SYMBOL_GPL(task_cgroup_path);
2346
2347 /**
2348  * cgroup_migrate_add_task - add a migration target task to a migration context
2349  * @task: target task
2350  * @mgctx: target migration context
2351  *
2352  * Add @task, which is a migration target, to @mgctx->tset.  This function
2353  * becomes noop if @task doesn't need to be migrated.  @task's css_set
2354  * should have been added as a migration source and @task->cg_list will be
2355  * moved from the css_set's tasks list to mg_tasks one.
2356  */
2357 static void cgroup_migrate_add_task(struct task_struct *task,
2358                                     struct cgroup_mgctx *mgctx)
2359 {
2360         struct css_set *cset;
2361
2362         lockdep_assert_held(&css_set_lock);
2363
2364         /* @task either already exited or can't exit until the end */
2365         if (task->flags & PF_EXITING)
2366                 return;
2367
2368         /* cgroup_threadgroup_rwsem protects racing against forks */
2369         WARN_ON_ONCE(list_empty(&task->cg_list));
2370
2371         cset = task_css_set(task);
2372         if (!cset->mg_src_cgrp)
2373                 return;
2374
2375         mgctx->tset.nr_tasks++;
2376
2377         list_move_tail(&task->cg_list, &cset->mg_tasks);
2378         if (list_empty(&cset->mg_node))
2379                 list_add_tail(&cset->mg_node,
2380                               &mgctx->tset.src_csets);
2381         if (list_empty(&cset->mg_dst_cset->mg_node))
2382                 list_add_tail(&cset->mg_dst_cset->mg_node,
2383                               &mgctx->tset.dst_csets);
2384 }
2385
2386 /**
2387  * cgroup_taskset_first - reset taskset and return the first task
2388  * @tset: taskset of interest
2389  * @dst_cssp: output variable for the destination css
2390  *
2391  * @tset iteration is initialized and the first task is returned.
2392  */
2393 struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset,
2394                                          struct cgroup_subsys_state **dst_cssp)
2395 {
2396         tset->cur_cset = list_first_entry(tset->csets, struct css_set, mg_node);
2397         tset->cur_task = NULL;
2398
2399         return cgroup_taskset_next(tset, dst_cssp);
2400 }
2401
2402 /**
2403  * cgroup_taskset_next - iterate to the next task in taskset
2404  * @tset: taskset of interest
2405  * @dst_cssp: output variable for the destination css
2406  *
2407  * Return the next task in @tset.  Iteration must have been initialized
2408  * with cgroup_taskset_first().
2409  */
2410 struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset,
2411                                         struct cgroup_subsys_state **dst_cssp)
2412 {
2413         struct css_set *cset = tset->cur_cset;
2414         struct task_struct *task = tset->cur_task;
2415
2416         while (CGROUP_HAS_SUBSYS_CONFIG && &cset->mg_node != tset->csets) {
2417                 if (!task)
2418                         task = list_first_entry(&cset->mg_tasks,
2419                                                 struct task_struct, cg_list);
2420                 else
2421                         task = list_next_entry(task, cg_list);
2422
2423                 if (&task->cg_list != &cset->mg_tasks) {
2424                         tset->cur_cset = cset;
2425                         tset->cur_task = task;
2426
2427                         /*
2428                          * This function may be called both before and
2429                          * after cgroup_taskset_migrate().  The two cases
2430                          * can be distinguished by looking at whether @cset
2431                          * has its ->mg_dst_cset set.
2432                          */
2433                         if (cset->mg_dst_cset)
2434                                 *dst_cssp = cset->mg_dst_cset->subsys[tset->ssid];
2435                         else
2436                                 *dst_cssp = cset->subsys[tset->ssid];
2437
2438                         return task;
2439                 }
2440
2441                 cset = list_next_entry(cset, mg_node);
2442                 task = NULL;
2443         }
2444
2445         return NULL;
2446 }
2447
2448 /**
2449  * cgroup_migrate_execute - migrate a taskset
2450  * @mgctx: migration context
2451  *
2452  * Migrate tasks in @mgctx as setup by migration preparation functions.
2453  * This function fails iff one of the ->can_attach callbacks fails and
2454  * guarantees that either all or none of the tasks in @mgctx are migrated.
2455  * @mgctx is consumed regardless of success.
2456  */
2457 static int cgroup_migrate_execute(struct cgroup_mgctx *mgctx)
2458 {
2459         struct cgroup_taskset *tset = &mgctx->tset;
2460         struct cgroup_subsys *ss;
2461         struct task_struct *task, *tmp_task;
2462         struct css_set *cset, *tmp_cset;
2463         int ssid, failed_ssid, ret;
2464
2465         /* check that we can legitimately attach to the cgroup */
2466         if (tset->nr_tasks) {
2467                 do_each_subsys_mask(ss, ssid, mgctx->ss_mask) {
2468                         if (ss->can_attach) {
2469                                 tset->ssid = ssid;
2470                                 ret = ss->can_attach(tset);
2471                                 if (ret) {
2472                                         failed_ssid = ssid;
2473                                         goto out_cancel_attach;
2474                                 }
2475                         }
2476                 } while_each_subsys_mask();
2477         }
2478
2479         /*
2480          * Now that we're guaranteed success, proceed to move all tasks to
2481          * the new cgroup.  There are no failure cases after here, so this
2482          * is the commit point.
2483          */
2484         spin_lock_irq(&css_set_lock);
2485         list_for_each_entry(cset, &tset->src_csets, mg_node) {
2486                 list_for_each_entry_safe(task, tmp_task, &cset->mg_tasks, cg_list) {
2487                         struct css_set *from_cset = task_css_set(task);
2488                         struct css_set *to_cset = cset->mg_dst_cset;
2489
2490                         get_css_set(to_cset);
2491                         to_cset->nr_tasks++;
2492                         css_set_move_task(task, from_cset, to_cset, true);
2493                         from_cset->nr_tasks--;
2494                         /*
2495                          * If the source or destination cgroup is frozen,
2496                          * the task might require to change its state.
2497                          */
2498                         cgroup_freezer_migrate_task(task, from_cset->dfl_cgrp,
2499                                                     to_cset->dfl_cgrp);
2500                         put_css_set_locked(from_cset);
2501
2502                 }
2503         }
2504         spin_unlock_irq(&css_set_lock);
2505
2506         /*
2507          * Migration is committed, all target tasks are now on dst_csets.
2508          * Nothing is sensitive to fork() after this point.  Notify
2509          * controllers that migration is complete.
2510          */
2511         tset->csets = &tset->dst_csets;
2512
2513         if (tset->nr_tasks) {
2514                 do_each_subsys_mask(ss, ssid, mgctx->ss_mask) {
2515                         if (ss->attach) {
2516                                 tset->ssid = ssid;
2517                                 ss->attach(tset);
2518                         }
2519                 } while_each_subsys_mask();
2520         }
2521
2522         ret = 0;
2523         goto out_release_tset;
2524
2525 out_cancel_attach:
2526         if (tset->nr_tasks) {
2527                 do_each_subsys_mask(ss, ssid, mgctx->ss_mask) {
2528                         if (ssid == failed_ssid)
2529                                 break;
2530                         if (ss->cancel_attach) {
2531                                 tset->ssid = ssid;
2532                                 ss->cancel_attach(tset);
2533                         }
2534                 } while_each_subsys_mask();
2535         }
2536 out_release_tset:
2537         spin_lock_irq(&css_set_lock);
2538         list_splice_init(&tset->dst_csets, &tset->src_csets);
2539         list_for_each_entry_safe(cset, tmp_cset, &tset->src_csets, mg_node) {
2540                 list_splice_tail_init(&cset->mg_tasks, &cset->tasks);
2541                 list_del_init(&cset->mg_node);
2542         }
2543         spin_unlock_irq(&css_set_lock);
2544
2545         /*
2546          * Re-initialize the cgroup_taskset structure in case it is reused
2547          * again in another cgroup_migrate_add_task()/cgroup_migrate_execute()
2548          * iteration.
2549          */
2550         tset->nr_tasks = 0;
2551         tset->csets    = &tset->src_csets;
2552         return ret;
2553 }
2554
2555 /**
2556  * cgroup_migrate_vet_dst - verify whether a cgroup can be migration destination
2557  * @dst_cgrp: destination cgroup to test
2558  *
2559  * On the default hierarchy, except for the mixable, (possible) thread root
2560  * and threaded cgroups, subtree_control must be zero for migration
2561  * destination cgroups with tasks so that child cgroups don't compete
2562  * against tasks.
2563  */
2564 int cgroup_migrate_vet_dst(struct cgroup *dst_cgrp)
2565 {
2566         /* v1 doesn't have any restriction */
2567         if (!cgroup_on_dfl(dst_cgrp))
2568                 return 0;
2569
2570         /* verify @dst_cgrp can host resources */
2571         if (!cgroup_is_valid_domain(dst_cgrp->dom_cgrp))
2572                 return -EOPNOTSUPP;
2573
2574         /* mixables don't care */
2575         if (cgroup_is_mixable(dst_cgrp))
2576                 return 0;
2577
2578         /*
2579          * If @dst_cgrp is already or can become a thread root or is
2580          * threaded, it doesn't matter.
2581          */
2582         if (cgroup_can_be_thread_root(dst_cgrp) || cgroup_is_threaded(dst_cgrp))
2583                 return 0;
2584
2585         /* apply no-internal-process constraint */
2586         if (dst_cgrp->subtree_control)
2587                 return -EBUSY;
2588
2589         return 0;
2590 }
2591
2592 /**
2593  * cgroup_migrate_finish - cleanup after attach
2594  * @mgctx: migration context
2595  *
2596  * Undo cgroup_migrate_add_src() and cgroup_migrate_prepare_dst().  See
2597  * those functions for details.
2598  */
2599 void cgroup_migrate_finish(struct cgroup_mgctx *mgctx)
2600 {
2601         struct css_set *cset, *tmp_cset;
2602
2603         lockdep_assert_held(&cgroup_mutex);
2604
2605         spin_lock_irq(&css_set_lock);
2606
2607         list_for_each_entry_safe(cset, tmp_cset, &mgctx->preloaded_src_csets,
2608                                  mg_src_preload_node) {
2609                 cset->mg_src_cgrp = NULL;
2610                 cset->mg_dst_cgrp = NULL;
2611                 cset->mg_dst_cset = NULL;
2612                 list_del_init(&cset->mg_src_preload_node);
2613                 put_css_set_locked(cset);
2614         }
2615
2616         list_for_each_entry_safe(cset, tmp_cset, &mgctx->preloaded_dst_csets,
2617                                  mg_dst_preload_node) {
2618                 cset->mg_src_cgrp = NULL;
2619                 cset->mg_dst_cgrp = NULL;
2620                 cset->mg_dst_cset = NULL;
2621                 list_del_init(&cset->mg_dst_preload_node);
2622                 put_css_set_locked(cset);
2623         }
2624
2625         spin_unlock_irq(&css_set_lock);
2626 }
2627
2628 /**
2629  * cgroup_migrate_add_src - add a migration source css_set
2630  * @src_cset: the source css_set to add
2631  * @dst_cgrp: the destination cgroup
2632  * @mgctx: migration context
2633  *
2634  * Tasks belonging to @src_cset are about to be migrated to @dst_cgrp.  Pin
2635  * @src_cset and add it to @mgctx->src_csets, which should later be cleaned
2636  * up by cgroup_migrate_finish().
2637  *
2638  * This function may be called without holding cgroup_threadgroup_rwsem
2639  * even if the target is a process.  Threads may be created and destroyed
2640  * but as long as cgroup_mutex is not dropped, no new css_set can be put
2641  * into play and the preloaded css_sets are guaranteed to cover all
2642  * migrations.
2643  */
2644 void cgroup_migrate_add_src(struct css_set *src_cset,
2645                             struct cgroup *dst_cgrp,
2646                             struct cgroup_mgctx *mgctx)
2647 {
2648         struct cgroup *src_cgrp;
2649
2650         lockdep_assert_held(&cgroup_mutex);
2651         lockdep_assert_held(&css_set_lock);
2652
2653         /*
2654          * If ->dead, @src_set is associated with one or more dead cgroups
2655          * and doesn't contain any migratable tasks.  Ignore it early so
2656          * that the rest of migration path doesn't get confused by it.
2657          */
2658         if (src_cset->dead)
2659                 return;
2660
2661         src_cgrp = cset_cgroup_from_root(src_cset, dst_cgrp->root);
2662
2663         if (!list_empty(&src_cset->mg_src_preload_node))
2664                 return;
2665
2666         WARN_ON(src_cset->mg_src_cgrp);
2667         WARN_ON(src_cset->mg_dst_cgrp);
2668         WARN_ON(!list_empty(&src_cset->mg_tasks));
2669         WARN_ON(!list_empty(&src_cset->mg_node));
2670
2671         src_cset->mg_src_cgrp = src_cgrp;
2672         src_cset->mg_dst_cgrp = dst_cgrp;
2673         get_css_set(src_cset);
2674         list_add_tail(&src_cset->mg_src_preload_node, &mgctx->preloaded_src_csets);
2675 }
2676
2677 /**
2678  * cgroup_migrate_prepare_dst - prepare destination css_sets for migration
2679  * @mgctx: migration context
2680  *
2681  * Tasks are about to be moved and all the source css_sets have been
2682  * preloaded to @mgctx->preloaded_src_csets.  This function looks up and
2683  * pins all destination css_sets, links each to its source, and append them
2684  * to @mgctx->preloaded_dst_csets.
2685  *
2686  * This function must be called after cgroup_migrate_add_src() has been
2687  * called on each migration source css_set.  After migration is performed
2688  * using cgroup_migrate(), cgroup_migrate_finish() must be called on
2689  * @mgctx.
2690  */
2691 int cgroup_migrate_prepare_dst(struct cgroup_mgctx *mgctx)
2692 {
2693         struct css_set *src_cset, *tmp_cset;
2694
2695         lockdep_assert_held(&cgroup_mutex);
2696
2697         /* look up the dst cset for each src cset and link it to src */
2698         list_for_each_entry_safe(src_cset, tmp_cset, &mgctx->preloaded_src_csets,
2699                                  mg_src_preload_node) {
2700                 struct css_set *dst_cset;
2701                 struct cgroup_subsys *ss;
2702                 int ssid;
2703
2704                 dst_cset = find_css_set(src_cset, src_cset->mg_dst_cgrp);
2705                 if (!dst_cset)
2706                         return -ENOMEM;
2707
2708                 WARN_ON_ONCE(src_cset->mg_dst_cset || dst_cset->mg_dst_cset);
2709
2710                 /*
2711                  * If src cset equals dst, it's noop.  Drop the src.
2712                  * cgroup_migrate() will skip the cset too.  Note that we
2713                  * can't handle src == dst as some nodes are used by both.
2714                  */
2715                 if (src_cset == dst_cset) {
2716                         src_cset->mg_src_cgrp = NULL;
2717                         src_cset->mg_dst_cgrp = NULL;
2718                         list_del_init(&src_cset->mg_src_preload_node);
2719                         put_css_set(src_cset);
2720                         put_css_set(dst_cset);
2721                         continue;
2722                 }
2723
2724                 src_cset->mg_dst_cset = dst_cset;
2725
2726                 if (list_empty(&dst_cset->mg_dst_preload_node))
2727                         list_add_tail(&dst_cset->mg_dst_preload_node,
2728                                       &mgctx->preloaded_dst_csets);
2729                 else
2730                         put_css_set(dst_cset);
2731
2732                 for_each_subsys(ss, ssid)
2733                         if (src_cset->subsys[ssid] != dst_cset->subsys[ssid])
2734                                 mgctx->ss_mask |= 1 << ssid;
2735         }
2736
2737         return 0;
2738 }
2739
2740 /**
2741  * cgroup_migrate - migrate a process or task to a cgroup
2742  * @leader: the leader of the process or the task to migrate
2743  * @threadgroup: whether @leader points to the whole process or a single task
2744  * @mgctx: migration context
2745  *
2746  * Migrate a process or task denoted by @leader.  If migrating a process,
2747  * the caller must be holding cgroup_threadgroup_rwsem.  The caller is also
2748  * responsible for invoking cgroup_migrate_add_src() and
2749  * cgroup_migrate_prepare_dst() on the targets before invoking this
2750  * function and following up with cgroup_migrate_finish().
2751  *
2752  * As long as a controller's ->can_attach() doesn't fail, this function is
2753  * guaranteed to succeed.  This means that, excluding ->can_attach()
2754  * failure, when migrating multiple targets, the success or failure can be
2755  * decided for all targets by invoking group_migrate_prepare_dst() before
2756  * actually starting migrating.
2757  */
2758 int cgroup_migrate(struct task_struct *leader, bool threadgroup,
2759                    struct cgroup_mgctx *mgctx)
2760 {
2761         struct task_struct *task;
2762
2763         /*
2764          * Prevent freeing of tasks while we take a snapshot. Tasks that are
2765          * already PF_EXITING could be freed from underneath us unless we
2766          * take an rcu_read_lock.
2767          */
2768         spin_lock_irq(&css_set_lock);
2769         rcu_read_lock();
2770         task = leader;
2771         do {
2772                 cgroup_migrate_add_task(task, mgctx);
2773                 if (!threadgroup)
2774                         break;
2775         } while_each_thread(leader, task);
2776         rcu_read_unlock();
2777         spin_unlock_irq(&css_set_lock);
2778
2779         return cgroup_migrate_execute(mgctx);
2780 }
2781
2782 /**
2783  * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup
2784  * @dst_cgrp: the cgroup to attach to
2785  * @leader: the task or the leader of the threadgroup to be attached
2786  * @threadgroup: attach the whole threadgroup?
2787  *
2788  * Call holding cgroup_mutex and cgroup_threadgroup_rwsem.
2789  */
2790 int cgroup_attach_task(struct cgroup *dst_cgrp, struct task_struct *leader,
2791                        bool threadgroup)
2792 {
2793         DEFINE_CGROUP_MGCTX(mgctx);
2794         struct task_struct *task;
2795         int ret = 0;
2796
2797         /* look up all src csets */
2798         spin_lock_irq(&css_set_lock);
2799         rcu_read_lock();
2800         task = leader;
2801         do {
2802                 cgroup_migrate_add_src(task_css_set(task), dst_cgrp, &mgctx);
2803                 if (!threadgroup)
2804                         break;
2805         } while_each_thread(leader, task);
2806         rcu_read_unlock();
2807         spin_unlock_irq(&css_set_lock);
2808
2809         /* prepare dst csets and commit */
2810         ret = cgroup_migrate_prepare_dst(&mgctx);
2811         if (!ret)
2812                 ret = cgroup_migrate(leader, threadgroup, &mgctx);
2813
2814         cgroup_migrate_finish(&mgctx);
2815
2816         if (!ret)
2817                 TRACE_CGROUP_PATH(attach_task, dst_cgrp, leader, threadgroup);
2818
2819         return ret;
2820 }
2821
2822 struct task_struct *cgroup_procs_write_start(char *buf, bool threadgroup,
2823                                              bool *locked)
2824         __acquires(&cgroup_threadgroup_rwsem)
2825 {
2826         struct task_struct *tsk;
2827         pid_t pid;
2828
2829         if (kstrtoint(strstrip(buf), 0, &pid) || pid < 0)
2830                 return ERR_PTR(-EINVAL);
2831
2832         /*
2833          * If we migrate a single thread, we don't care about threadgroup
2834          * stability. If the thread is `current`, it won't exit(2) under our
2835          * hands or change PID through exec(2). We exclude
2836          * cgroup_update_dfl_csses and other cgroup_{proc,thread}s_write
2837          * callers by cgroup_mutex.
2838          * Therefore, we can skip the global lock.
2839          */
2840         lockdep_assert_held(&cgroup_mutex);
2841         if (pid || threadgroup) {
2842                 percpu_down_write(&cgroup_threadgroup_rwsem);
2843                 *locked = true;
2844         } else {
2845                 *locked = false;
2846         }
2847
2848         rcu_read_lock();
2849         if (pid) {
2850                 tsk = find_task_by_vpid(pid);
2851                 if (!tsk) {
2852                         tsk = ERR_PTR(-ESRCH);
2853                         goto out_unlock_threadgroup;
2854                 }
2855         } else {
2856                 tsk = current;
2857         }
2858
2859         if (threadgroup)
2860                 tsk = tsk->group_leader;
2861
2862         /*
2863          * kthreads may acquire PF_NO_SETAFFINITY during initialization.
2864          * If userland migrates such a kthread to a non-root cgroup, it can
2865          * become trapped in a cpuset, or RT kthread may be born in a
2866          * cgroup with no rt_runtime allocated.  Just say no.
2867          */
2868         if (tsk->no_cgroup_migration || (tsk->flags & PF_NO_SETAFFINITY)) {
2869                 tsk = ERR_PTR(-EINVAL);
2870                 goto out_unlock_threadgroup;
2871         }
2872
2873         get_task_struct(tsk);
2874         goto out_unlock_rcu;
2875
2876 out_unlock_threadgroup:
2877         if (*locked) {
2878                 percpu_up_write(&cgroup_threadgroup_rwsem);
2879                 *locked = false;
2880         }
2881 out_unlock_rcu:
2882         rcu_read_unlock();
2883         return tsk;
2884 }
2885
2886 void cgroup_procs_write_finish(struct task_struct *task, bool locked)
2887         __releases(&cgroup_threadgroup_rwsem)
2888 {
2889         struct cgroup_subsys *ss;
2890         int ssid;
2891
2892         /* release reference from cgroup_procs_write_start() */
2893         put_task_struct(task);
2894
2895         if (locked)
2896                 percpu_up_write(&cgroup_threadgroup_rwsem);
2897         for_each_subsys(ss, ssid)
2898                 if (ss->post_attach)
2899                         ss->post_attach();
2900 }
2901
2902 static void cgroup_print_ss_mask(struct seq_file *seq, u16 ss_mask)
2903 {
2904         struct cgroup_subsys *ss;
2905         bool printed = false;
2906         int ssid;
2907
2908         do_each_subsys_mask(ss, ssid, ss_mask) {
2909                 if (printed)
2910                         seq_putc(seq, ' ');
2911                 seq_puts(seq, ss->name);
2912                 printed = true;
2913         } while_each_subsys_mask();
2914         if (printed)
2915                 seq_putc(seq, '\n');
2916 }
2917
2918 /* show controllers which are enabled from the parent */
2919 static int cgroup_controllers_show(struct seq_file *seq, void *v)
2920 {
2921         struct cgroup *cgrp = seq_css(seq)->cgroup;
2922
2923         cgroup_print_ss_mask(seq, cgroup_control(cgrp));
2924         return 0;
2925 }
2926
2927 /* show controllers which are enabled for a given cgroup's children */
2928 static int cgroup_subtree_control_show(struct seq_file *seq, void *v)
2929 {
2930         struct cgroup *cgrp = seq_css(seq)->cgroup;
2931
2932         cgroup_print_ss_mask(seq, cgrp->subtree_control);
2933         return 0;
2934 }
2935
2936 /**
2937  * cgroup_update_dfl_csses - update css assoc of a subtree in default hierarchy
2938  * @cgrp: root of the subtree to update csses for
2939  *
2940  * @cgrp's control masks have changed and its subtree's css associations
2941  * need to be updated accordingly.  This function looks up all css_sets
2942  * which are attached to the subtree, creates the matching updated css_sets
2943  * and migrates the tasks to the new ones.
2944  */
2945 static int cgroup_update_dfl_csses(struct cgroup *cgrp)
2946 {
2947         DEFINE_CGROUP_MGCTX(mgctx);
2948         struct cgroup_subsys_state *d_css;
2949         struct cgroup *dsct;
2950         struct css_set *src_cset;
2951         int ret;
2952
2953         lockdep_assert_held(&cgroup_mutex);
2954
2955         percpu_down_write(&cgroup_threadgroup_rwsem);
2956
2957         /* look up all csses currently attached to @cgrp's subtree */
2958         spin_lock_irq(&css_set_lock);
2959         cgroup_for_each_live_descendant_pre(dsct, d_css, cgrp) {
2960                 struct cgrp_cset_link *link;
2961
2962                 list_for_each_entry(link, &dsct->cset_links, cset_link)
2963                         cgroup_migrate_add_src(link->cset, dsct, &mgctx);
2964         }
2965         spin_unlock_irq(&css_set_lock);
2966
2967         /* NULL dst indicates self on default hierarchy */
2968         ret = cgroup_migrate_prepare_dst(&mgctx);
2969         if (ret)
2970                 goto out_finish;
2971
2972         spin_lock_irq(&css_set_lock);
2973         list_for_each_entry(src_cset, &mgctx.preloaded_src_csets,
2974                             mg_src_preload_node) {
2975                 struct task_struct *task, *ntask;
2976
2977                 /* all tasks in src_csets need to be migrated */
2978                 list_for_each_entry_safe(task, ntask, &src_cset->tasks, cg_list)
2979                         cgroup_migrate_add_task(task, &mgctx);
2980         }
2981         spin_unlock_irq(&css_set_lock);
2982
2983         ret = cgroup_migrate_execute(&mgctx);
2984 out_finish:
2985         cgroup_migrate_finish(&mgctx);
2986         percpu_up_write(&cgroup_threadgroup_rwsem);
2987         return ret;
2988 }
2989
2990 /**
2991  * cgroup_lock_and_drain_offline - lock cgroup_mutex and drain offlined csses
2992  * @cgrp: root of the target subtree
2993  *
2994  * Because css offlining is asynchronous, userland may try to re-enable a
2995  * controller while the previous css is still around.  This function grabs
2996  * cgroup_mutex and drains the previous css instances of @cgrp's subtree.
2997  */
2998 void cgroup_lock_and_drain_offline(struct cgroup *cgrp)
2999         __acquires(&cgroup_mutex)
3000 {
3001         struct cgroup *dsct;
3002         struct cgroup_subsys_state *d_css;
3003         struct cgroup_subsys *ss;
3004         int ssid;
3005
3006 restart:
3007         mutex_lock(&cgroup_mutex);
3008
3009         cgroup_for_each_live_descendant_post(dsct, d_css, cgrp) {
3010                 for_each_subsys(ss, ssid) {
3011                         struct cgroup_subsys_state *css = cgroup_css(dsct, ss);
3012                         DEFINE_WAIT(wait);
3013
3014                         if (!css || !percpu_ref_is_dying(&css->refcnt))
3015                                 continue;
3016
3017                         cgroup_get_live(dsct);
3018                         prepare_to_wait(&dsct->offline_waitq, &wait,
3019                                         TASK_UNINTERRUPTIBLE);
3020
3021                         mutex_unlock(&cgroup_mutex);
3022                         schedule();
3023                         finish_wait(&dsct->offline_waitq, &wait);
3024
3025                         cgroup_put(dsct);
3026                         goto restart;
3027                 }
3028         }
3029 }
3030
3031 /**
3032  * cgroup_save_control - save control masks and dom_cgrp of a subtree
3033  * @cgrp: root of the target subtree
3034  *
3035  * Save ->subtree_control, ->subtree_ss_mask and ->dom_cgrp to the
3036  * respective old_ prefixed fields for @cgrp's subtree including @cgrp
3037  * itself.
3038  */
3039 static void cgroup_save_control(struct cgroup *cgrp)
3040 {
3041         struct cgroup *dsct;
3042         struct cgroup_subsys_state *d_css;
3043
3044         cgroup_for_each_live_descendant_pre(dsct, d_css, cgrp) {
3045                 dsct->old_subtree_control = dsct->subtree_control;
3046                 dsct->old_subtree_ss_mask = dsct->subtree_ss_mask;
3047                 dsct->old_dom_cgrp = dsct->dom_cgrp;
3048         }
3049 }
3050
3051 /**
3052  * cgroup_propagate_control - refresh control masks of a subtree
3053  * @cgrp: root of the target subtree
3054  *
3055  * For @cgrp and its subtree, ensure ->subtree_ss_mask matches
3056  * ->subtree_control and propagate controller availability through the
3057  * subtree so that descendants don't have unavailable controllers enabled.
3058  */
3059 static void cgroup_propagate_control(struct cgroup *cgrp)
3060 {
3061         struct cgroup *dsct;
3062         struct cgroup_subsys_state *d_css;
3063
3064         cgroup_for_each_live_descendant_pre(dsct, d_css, cgrp) {
3065                 dsct->subtree_control &= cgroup_control(dsct);
3066                 dsct->subtree_ss_mask =
3067                         cgroup_calc_subtree_ss_mask(dsct->subtree_control,
3068                                                     cgroup_ss_mask(dsct));
3069         }
3070 }
3071
3072 /**
3073  * cgroup_restore_control - restore control masks and dom_cgrp of a subtree
3074  * @cgrp: root of the target subtree
3075  *
3076  * Restore ->subtree_control, ->subtree_ss_mask and ->dom_cgrp from the
3077  * respective old_ prefixed fields for @cgrp's subtree including @cgrp
3078  * itself.
3079  */
3080 static void cgroup_restore_control(struct cgroup *cgrp)
3081 {
3082         struct cgroup *dsct;
3083         struct cgroup_subsys_state *d_css;
3084
3085         cgroup_for_each_live_descendant_post(dsct, d_css, cgrp) {
3086                 dsct->subtree_control = dsct->old_subtree_control;
3087                 dsct->subtree_ss_mask = dsct->old_subtree_ss_mask;
3088                 dsct->dom_cgrp = dsct->old_dom_cgrp;
3089         }
3090 }
3091
3092 static bool css_visible(struct cgroup_subsys_state *css)
3093 {
3094         struct cgroup_subsys *ss = css->ss;
3095         struct cgroup *cgrp = css->cgroup;
3096
3097         if (cgroup_control(cgrp) & (1 << ss->id))
3098                 return true;
3099         if (!(cgroup_ss_mask(cgrp) & (1 << ss->id)))
3100                 return false;
3101         return cgroup_on_dfl(cgrp) && ss->implicit_on_dfl;
3102 }
3103
3104 /**
3105  * cgroup_apply_control_enable - enable or show csses according to control
3106  * @cgrp: root of the target subtree
3107  *
3108  * Walk @cgrp's subtree and create new csses or make the existing ones
3109  * visible.  A css is created invisible if it's being implicitly enabled
3110  * through dependency.  An invisible css is made visible when the userland
3111  * explicitly enables it.
3112  *
3113  * Returns 0 on success, -errno on failure.  On failure, csses which have
3114  * been processed already aren't cleaned up.  The caller is responsible for
3115  * cleaning up with cgroup_apply_control_disable().
3116  */
3117 static int cgroup_apply_control_enable(struct cgroup *cgrp)
3118 {
3119         struct cgroup *dsct;
3120         struct cgroup_subsys_state *d_css;
3121         struct cgroup_subsys *ss;
3122         int ssid, ret;
3123
3124         cgroup_for_each_live_descendant_pre(dsct, d_css, cgrp) {
3125                 for_each_subsys(ss, ssid) {
3126                         struct cgroup_subsys_state *css = cgroup_css(dsct, ss);
3127
3128                         if (!(cgroup_ss_mask(dsct) & (1 << ss->id)))
3129                                 continue;
3130
3131                         if (!css) {
3132                                 css = css_create(dsct, ss);
3133                                 if (IS_ERR(css))
3134                                         return PTR_ERR(css);
3135                         }
3136
3137                         WARN_ON_ONCE(percpu_ref_is_dying(&css->refcnt));
3138
3139                         if (css_visible(css)) {
3140                                 ret = css_populate_dir(css);
3141                                 if (ret)
3142                                         return ret;
3143                         }
3144                 }
3145         }
3146
3147         return 0;
3148 }
3149
3150 /**
3151  * cgroup_apply_control_disable - kill or hide csses according to control
3152  * @cgrp: root of the target subtree
3153  *
3154  * Walk @cgrp's subtree and kill and hide csses so that they match
3155  * cgroup_ss_mask() and cgroup_visible_mask().
3156  *
3157  * A css is hidden when the userland requests it to be disabled while other
3158  * subsystems are still depending on it.  The css must not actively control
3159  * resources and be in the vanilla state if it's made visible again later.
3160  * Controllers which may be depended upon should provide ->css_reset() for
3161  * this purpose.
3162  */
3163 static void cgroup_apply_control_disable(struct cgroup *cgrp)
3164 {
3165         struct cgroup *dsct;
3166         struct cgroup_subsys_state *d_css;
3167         struct cgroup_subsys *ss;
3168         int ssid;
3169
3170         cgroup_for_each_live_descendant_post(dsct, d_css, cgrp) {
3171                 for_each_subsys(ss, ssid) {
3172                         struct cgroup_subsys_state *css = cgroup_css(dsct, ss);
3173
3174                         if (!css)
3175                                 continue;
3176
3177                         WARN_ON_ONCE(percpu_ref_is_dying(&css->refcnt));
3178
3179                         if (css->parent &&
3180                             !(cgroup_ss_mask(dsct) & (1 << ss->id))) {
3181                                 kill_css(css);
3182                         } else if (!css_visible(css)) {
3183                                 css_clear_dir(css);
3184                                 if (ss->css_reset)
3185                                         ss->css_reset(css);
3186                         }
3187                 }
3188         }
3189 }
3190
3191 /**
3192  * cgroup_apply_control - apply control mask updates to the subtree
3193  * @cgrp: root of the target subtree
3194  *
3195  * subsystems can be enabled and disabled in a subtree using the following
3196  * steps.
3197  *
3198  * 1. Call cgroup_save_control() to stash the current state.
3199  * 2. Update ->subtree_control masks in the subtree as desired.
3200  * 3. Call cgroup_apply_control() to apply the changes.
3201  * 4. Optionally perform other related operations.
3202  * 5. Call cgroup_finalize_control() to finish up.
3203  *
3204  * This function implements step 3 and propagates the mask changes
3205  * throughout @cgrp's subtree, updates csses accordingly and perform
3206  * process migrations.
3207  */
3208 static int cgroup_apply_control(struct cgroup *cgrp)
3209 {
3210         int ret;
3211
3212         cgroup_propagate_control(cgrp);
3213
3214         ret = cgroup_apply_control_enable(cgrp);
3215         if (ret)
3216                 return ret;
3217
3218         /*
3219          * At this point, cgroup_e_css_by_mask() results reflect the new csses
3220          * making the following cgroup_update_dfl_csses() properly update
3221          * css associations of all tasks in the subtree.
3222          */
3223         ret = cgroup_update_dfl_csses(cgrp);
3224         if (ret)
3225                 return ret;
3226
3227         return 0;
3228 }
3229
3230 /**
3231  * cgroup_finalize_control - finalize control mask update
3232  * @cgrp: root of the target subtree
3233  * @ret: the result of the update
3234  *
3235  * Finalize control mask update.  See cgroup_apply_control() for more info.
3236  */
3237 static void cgroup_finalize_control(struct cgroup *cgrp, int ret)
3238 {
3239         if (ret) {
3240                 cgroup_restore_control(cgrp);
3241                 cgroup_propagate_control(cgrp);
3242         }
3243
3244         cgroup_apply_control_disable(cgrp);
3245 }
3246
3247 static int cgroup_vet_subtree_control_enable(struct cgroup *cgrp, u16 enable)
3248 {
3249         u16 domain_enable = enable & ~cgrp_dfl_threaded_ss_mask;
3250
3251         /* if nothing is getting enabled, nothing to worry about */
3252         if (!enable)
3253                 return 0;
3254
3255         /* can @cgrp host any resources? */
3256         if (!cgroup_is_valid_domain(cgrp->dom_cgrp))
3257                 return -EOPNOTSUPP;
3258
3259         /* mixables don't care */
3260         if (cgroup_is_mixable(cgrp))
3261                 return 0;
3262
3263         if (domain_enable) {
3264                 /* can't enable domain controllers inside a thread subtree */
3265                 if (cgroup_is_thread_root(cgrp) || cgroup_is_threaded(cgrp))
3266                         return -EOPNOTSUPP;
3267         } else {
3268                 /*
3269                  * Threaded controllers can handle internal competitions
3270                  * and are always allowed inside a (prospective) thread
3271                  * subtree.
3272                  */
3273                 if (cgroup_can_be_thread_root(cgrp) || cgroup_is_threaded(cgrp))
3274                         return 0;
3275         }
3276
3277         /*
3278          * Controllers can't be enabled for a cgroup with tasks to avoid
3279          * child cgroups competing against tasks.
3280          */
3281         if (cgroup_has_tasks(cgrp))
3282                 return -EBUSY;
3283
3284         return 0;
3285 }
3286
3287 /* change the enabled child controllers for a cgroup in the default hierarchy */
3288 static ssize_t cgroup_subtree_control_write(struct kernfs_open_file *of,
3289                                             char *buf, size_t nbytes,
3290                                             loff_t off)
3291 {
3292         u16 enable = 0, disable = 0;
3293         struct cgroup *cgrp, *child;
3294         struct cgroup_subsys *ss;
3295         char *tok;
3296         int ssid, ret;
3297
3298         /*
3299          * Parse input - space separated list of subsystem names prefixed
3300          * with either + or -.
3301          */
3302         buf = strstrip(buf);
3303         while ((tok = strsep(&buf, " "))) {
3304                 if (tok[0] == '\0')
3305                         continue;
3306                 do_each_subsys_mask(ss, ssid, ~cgrp_dfl_inhibit_ss_mask) {
3307                         if (!cgroup_ssid_enabled(ssid) ||
3308                             strcmp(tok + 1, ss->name))
3309                                 continue;
3310
3311                         if (*tok == '+') {
3312                                 enable |= 1 << ssid;
3313                                 disable &= ~(1 << ssid);
3314                         } else if (*tok == '-') {
3315                                 disable |= 1 << ssid;
3316                                 enable &= ~(1 << ssid);
3317                         } else {
3318                                 return -EINVAL;
3319                         }
3320                         break;
3321                 } while_each_subsys_mask();
3322                 if (ssid == CGROUP_SUBSYS_COUNT)
3323                         return -EINVAL;
3324         }
3325
3326         cgrp = cgroup_kn_lock_live(of->kn, true);
3327         if (!cgrp)
3328                 return -ENODEV;
3329
3330         for_each_subsys(ss, ssid) {
3331                 if (enable & (1 << ssid)) {
3332                         if (cgrp->subtree_control & (1 << ssid)) {
3333                                 enable &= ~(1 << ssid);
3334                                 continue;
3335                         }
3336
3337                         if (!(cgroup_control(cgrp) & (1 << ssid))) {
3338                                 ret = -ENOENT;
3339                                 goto out_unlock;
3340                         }
3341                 } else if (disable & (1 << ssid)) {
3342                         if (!(cgrp->subtree_control & (1 << ssid))) {
3343                                 disable &= ~(1 << ssid);
3344                                 continue;
3345                         }
3346
3347                         /* a child has it enabled? */
3348                         cgroup_for_each_live_child(child, cgrp) {
3349                                 if (child->subtree_control & (1 << ssid)) {
3350                                         ret = -EBUSY;
3351                                         goto out_unlock;
3352                                 }
3353                         }
3354                 }
3355         }
3356
3357         if (!enable && !disable) {
3358                 ret = 0;
3359                 goto out_unlock;
3360         }
3361
3362         ret = cgroup_vet_subtree_control_enable(cgrp, enable);
3363         if (ret)
3364                 goto out_unlock;
3365
3366         /* save and update control masks and prepare csses */
3367         cgroup_save_control(cgrp);
3368
3369         cgrp->subtree_control |= enable;
3370         cgrp->subtree_control &= ~disable;
3371
3372         ret = cgroup_apply_control(cgrp);
3373         cgroup_finalize_control(cgrp, ret);
3374         if (ret)
3375                 goto out_unlock;
3376
3377         kernfs_activate(cgrp->kn);
3378 out_unlock:
3379         cgroup_kn_unlock(of->kn);
3380         return ret ?: nbytes;
3381 }
3382
3383 /**
3384  * cgroup_enable_threaded - make @cgrp threaded
3385  * @cgrp: the target cgroup
3386  *
3387  * Called when "threaded" is written to the cgroup.type interface file and
3388  * tries to make @cgrp threaded and join the parent's resource domain.
3389  * This function is never called on the root cgroup as cgroup.type doesn't
3390  * exist on it.
3391  */
3392 static int cgroup_enable_threaded(struct cgroup *cgrp)
3393 {
3394         struct cgroup *parent = cgroup_parent(cgrp);
3395         struct cgroup *dom_cgrp = parent->dom_cgrp;
3396         struct cgroup *dsct;
3397         struct cgroup_subsys_state *d_css;
3398         int ret;
3399
3400         lockdep_assert_held(&cgroup_mutex);
3401
3402         /* noop if already threaded */
3403         if (cgroup_is_threaded(cgrp))
3404                 return 0;
3405
3406         /*
3407          * If @cgroup is populated or has domain controllers enabled, it
3408          * can't be switched.  While the below cgroup_can_be_thread_root()
3409          * test can catch the same conditions, that's only when @parent is
3410          * not mixable, so let's check it explicitly.
3411          */
3412         if (cgroup_is_populated(cgrp) ||
3413             cgrp->subtree_control & ~cgrp_dfl_threaded_ss_mask)
3414                 return -EOPNOTSUPP;
3415
3416         /* we're joining the parent's domain, ensure its validity */
3417         if (!cgroup_is_valid_domain(dom_cgrp) ||
3418             !cgroup_can_be_thread_root(dom_cgrp))
3419                 return -EOPNOTSUPP;
3420
3421         /*
3422          * The following shouldn't cause actual migrations and should
3423          * always succeed.
3424          */
3425         cgroup_save_control(cgrp);
3426
3427         cgroup_for_each_live_descendant_pre(dsct, d_css, cgrp)
3428                 if (dsct == cgrp || cgroup_is_threaded(dsct))
3429                         dsct->dom_cgrp = dom_cgrp;
3430
3431         ret = cgroup_apply_control(cgrp);
3432         if (!ret)
3433                 parent->nr_threaded_children++;
3434
3435         cgroup_finalize_control(cgrp, ret);
3436         return ret;
3437 }
3438
3439 static int cgroup_type_show(struct seq_file *seq, void *v)
3440 {
3441         struct cgroup *cgrp = seq_css(seq)->cgroup;
3442
3443         if (cgroup_is_threaded(cgrp))
3444                 seq_puts(seq, "threaded\n");
3445         else if (!cgroup_is_valid_domain(cgrp))
3446                 seq_puts(seq, "domain invalid\n");
3447         else if (cgroup_is_thread_root(cgrp))
3448                 seq_puts(seq, "domain threaded\n");
3449         else
3450                 seq_puts(seq, "domain\n");
3451
3452         return 0;
3453 }
3454
3455 static ssize_t cgroup_type_write(struct kernfs_open_file *of, char *buf,
3456                                  size_t nbytes, loff_t off)
3457 {
3458         struct cgroup *cgrp;
3459         int ret;
3460
3461         /* only switching to threaded mode is supported */
3462         if (strcmp(strstrip(buf), "threaded"))
3463                 return -EINVAL;
3464
3465         /* drain dying csses before we re-apply (threaded) subtree control */
3466         cgrp = cgroup_kn_lock_live(of->kn, true);
3467         if (!cgrp)
3468                 return -ENOENT;
3469
3470         /* threaded can only be enabled */
3471         ret = cgroup_enable_threaded(cgrp);
3472
3473         cgroup_kn_unlock(of->kn);
3474         return ret ?: nbytes;
3475 }
3476
3477 static int cgroup_max_descendants_show(struct seq_file *seq, void *v)
3478 {
3479         struct cgroup *cgrp = seq_css(seq)->cgroup;
3480         int descendants = READ_ONCE(cgrp->max_descendants);
3481
3482         if (descendants == INT_MAX)
3483                 seq_puts(seq, "max\n");
3484         else
3485                 seq_printf(seq, "%d\n", descendants);
3486
3487         return 0;
3488 }
3489
3490 static ssize_t cgroup_max_descendants_write(struct kernfs_open_file *of,
3491                                            char *buf, size_t nbytes, loff_t off)
3492 {
3493         struct cgroup *cgrp;
3494         int descendants;
3495         ssize_t ret;
3496
3497         buf = strstrip(buf);
3498         if (!strcmp(buf, "max")) {
3499                 descendants = INT_MAX;
3500         } else {
3501                 ret = kstrtoint(buf, 0, &descendants);
3502                 if (ret)
3503                         return ret;
3504         }
3505
3506         if (descendants < 0)
3507                 return -ERANGE;
3508
3509         cgrp = cgroup_kn_lock_live(of->kn, false);
3510         if (!cgrp)
3511                 return -ENOENT;
3512
3513         cgrp->max_descendants = descendants;
3514
3515         cgroup_kn_unlock(of->kn);
3516
3517         return nbytes;
3518 }
3519
3520 static int cgroup_max_depth_show(struct seq_file *seq, void *v)
3521 {
3522         struct cgroup *cgrp = seq_css(seq)->cgroup;
3523         int depth = READ_ONCE(cgrp->max_depth);
3524
3525         if (depth == INT_MAX)
3526                 seq_puts(seq, "max\n");
3527         else
3528                 seq_printf(seq, "%d\n", depth);
3529
3530         return 0;
3531 }
3532
3533 static ssize_t cgroup_max_depth_write(struct kernfs_open_file *of,
3534                                       char *buf, size_t nbytes, loff_t off)
3535 {
3536         struct cgroup *cgrp;
3537         ssize_t ret;
3538         int depth;
3539
3540         buf = strstrip(buf);
3541         if (!strcmp(buf, "max")) {
3542                 depth = INT_MAX;
3543         } else {
3544                 ret = kstrtoint(buf, 0, &depth);
3545                 if (ret)
3546                         return ret;
3547         }
3548
3549         if (depth < 0)
3550                 return -ERANGE;
3551
3552         cgrp = cgroup_kn_lock_live(of->kn, false);
3553         if (!cgrp)
3554                 return -ENOENT;
3555
3556         cgrp->max_depth = depth;
3557
3558         cgroup_kn_unlock(of->kn);
3559
3560         return nbytes;
3561 }
3562
3563 static int cgroup_events_show(struct seq_file *seq, void *v)
3564 {
3565         struct cgroup *cgrp = seq_css(seq)->cgroup;
3566
3567         seq_printf(seq, "populated %d\n", cgroup_is_populated(cgrp));
3568         seq_printf(seq, "frozen %d\n", test_bit(CGRP_FROZEN, &cgrp->flags));
3569
3570         return 0;
3571 }
3572
3573 static int cgroup_stat_show(struct seq_file *seq, void *v)
3574 {
3575         struct cgroup *cgroup = seq_css(seq)->cgroup;
3576
3577         seq_printf(seq, "nr_descendants %d\n",
3578                    cgroup->nr_descendants);
3579         seq_printf(seq, "nr_dying_descendants %d\n",
3580                    cgroup->nr_dying_descendants);
3581
3582         return 0;
3583 }
3584
3585 static int __maybe_unused cgroup_extra_stat_show(struct seq_file *seq,
3586                                                  struct cgroup *cgrp, int ssid)
3587 {
3588         struct cgroup_subsys *ss = cgroup_subsys[ssid];
3589         struct cgroup_subsys_state *css;
3590         int ret;
3591
3592         if (!ss->css_extra_stat_show)
3593                 return 0;
3594
3595         css = cgroup_tryget_css(cgrp, ss);
3596         if (!css)
3597                 return 0;
3598
3599         ret = ss->css_extra_stat_show(seq, css);
3600         css_put(css);
3601         return ret;
3602 }
3603
3604 static int cpu_stat_show(struct seq_file *seq, void *v)
3605 {
3606         struct cgroup __maybe_unused *cgrp = seq_css(seq)->cgroup;
3607         int ret = 0;
3608
3609         cgroup_base_stat_cputime_show(seq);
3610 #ifdef CONFIG_CGROUP_SCHED
3611         ret = cgroup_extra_stat_show(seq, cgrp, cpu_cgrp_id);
3612 #endif
3613         return ret;
3614 }
3615
3616 #ifdef CONFIG_PSI
3617 static int cgroup_io_pressure_show(struct seq_file *seq, void *v)
3618 {
3619         struct cgroup *cgrp = seq_css(seq)->cgroup;
3620         struct psi_group *psi = cgroup_ino(cgrp) == 1 ? &psi_system : &cgrp->psi;
3621
3622         return psi_show(seq, psi, PSI_IO);
3623 }
3624 static int cgroup_memory_pressure_show(struct seq_file *seq, void *v)
3625 {
3626         struct cgroup *cgrp = seq_css(seq)->cgroup;
3627         struct psi_group *psi = cgroup_ino(cgrp) == 1 ? &psi_system : &cgrp->psi;
3628
3629         return psi_show(seq, psi, PSI_MEM);
3630 }
3631 static int cgroup_cpu_pressure_show(struct seq_file *seq, void *v)
3632 {
3633         struct cgroup *cgrp = seq_css(seq)->cgroup;
3634         struct psi_group *psi = cgroup_ino(cgrp) == 1 ? &psi_system : &cgrp->psi;
3635
3636         return psi_show(seq, psi, PSI_CPU);
3637 }
3638
3639 static ssize_t cgroup_pressure_write(struct kernfs_open_file *of, char *buf,
3640                                           size_t nbytes, enum psi_res res)
3641 {
3642         struct cgroup_file_ctx *ctx = of->priv;
3643         struct psi_trigger *new;
3644         struct cgroup *cgrp;
3645         struct psi_group *psi;
3646
3647         cgrp = cgroup_kn_lock_live(of->kn, false);
3648         if (!cgrp)
3649                 return -ENODEV;
3650
3651         cgroup_get(cgrp);
3652         cgroup_kn_unlock(of->kn);
3653
3654         /* Allow only one trigger per file descriptor */
3655         if (ctx->psi.trigger) {
3656                 cgroup_put(cgrp);
3657                 return -EBUSY;
3658         }
3659
3660         psi = cgroup_ino(cgrp) == 1 ? &psi_system : &cgrp->psi;
3661         new = psi_trigger_create(psi, buf, nbytes, res);
3662         if (IS_ERR(new)) {
3663                 cgroup_put(cgrp);
3664                 return PTR_ERR(new);
3665         }
3666
3667         smp_store_release(&ctx->psi.trigger, new);
3668         cgroup_put(cgrp);
3669
3670         return nbytes;
3671 }
3672
3673 static ssize_t cgroup_io_pressure_write(struct kernfs_open_file *of,
3674                                           char *buf, size_t nbytes,
3675                                           loff_t off)
3676 {
3677         return cgroup_pressure_write(of, buf, nbytes, PSI_IO);
3678 }
3679
3680 static ssize_t cgroup_memory_pressure_write(struct kernfs_open_file *of,
3681                                           char *buf, size_t nbytes,
3682                                           loff_t off)
3683 {
3684         return cgroup_pressure_write(of, buf, nbytes, PSI_MEM);
3685 }
3686
3687 static ssize_t cgroup_cpu_pressure_write(struct kernfs_open_file *of,
3688                                           char *buf, size_t nbytes,
3689                                           loff_t off)
3690 {
3691         return cgroup_pressure_write(of, buf, nbytes, PSI_CPU);
3692 }
3693
3694 static __poll_t cgroup_pressure_poll(struct kernfs_open_file *of,
3695                                           poll_table *pt)
3696 {
3697         struct cgroup_file_ctx *ctx = of->priv;
3698
3699         return psi_trigger_poll(&ctx->psi.trigger, of->file, pt);
3700 }
3701
3702 static void cgroup_pressure_release(struct kernfs_open_file *of)
3703 {
3704         struct cgroup_file_ctx *ctx = of->priv;
3705
3706         psi_trigger_destroy(ctx->psi.trigger);
3707 }
3708
3709 bool cgroup_psi_enabled(void)
3710 {
3711         return (cgroup_feature_disable_mask & (1 << OPT_FEATURE_PRESSURE)) == 0;
3712 }
3713
3714 #else /* CONFIG_PSI */
3715 bool cgroup_psi_enabled(void)
3716 {
3717         return false;
3718 }
3719
3720 #endif /* CONFIG_PSI */
3721
3722 static int cgroup_freeze_show(struct seq_file *seq, void *v)
3723 {
3724         struct cgroup *cgrp = seq_css(seq)->cgroup;
3725
3726         seq_printf(seq, "%d\n", cgrp->freezer.freeze);
3727
3728         return 0;
3729 }
3730
3731 static ssize_t cgroup_freeze_write(struct kernfs_open_file *of,
3732                                    char *buf, size_t nbytes, loff_t off)
3733 {
3734         struct cgroup *cgrp;
3735         ssize_t ret;
3736         int freeze;
3737
3738         ret = kstrtoint(strstrip(buf), 0, &freeze);
3739         if (ret)
3740                 return ret;
3741
3742         if (freeze < 0 || freeze > 1)
3743                 return -ERANGE;
3744
3745         cgrp = cgroup_kn_lock_live(of->kn, false);
3746         if (!cgrp)
3747                 return -ENOENT;
3748
3749         cgroup_freeze(cgrp, freeze);
3750
3751         cgroup_kn_unlock(of->kn);
3752
3753         return nbytes;
3754 }
3755
3756 static void __cgroup_kill(struct cgroup *cgrp)
3757 {
3758         struct css_task_iter it;
3759         struct task_struct *task;
3760
3761         lockdep_assert_held(&cgroup_mutex);
3762
3763         spin_lock_irq(&css_set_lock);
3764         set_bit(CGRP_KILL, &cgrp->flags);
3765         spin_unlock_irq(&css_set_lock);
3766
3767         css_task_iter_start(&cgrp->self, CSS_TASK_ITER_PROCS | CSS_TASK_ITER_THREADED, &it);
3768         while ((task = css_task_iter_next(&it))) {
3769                 /* Ignore kernel threads here. */
3770                 if (task->flags & PF_KTHREAD)
3771                         continue;
3772
3773                 /* Skip tasks that are already dying. */
3774                 if (__fatal_signal_pending(task))
3775                         continue;
3776
3777                 send_sig(SIGKILL, task, 0);
3778         }
3779         css_task_iter_end(&it);
3780
3781         spin_lock_irq(&css_set_lock);
3782         clear_bit(CGRP_KILL, &cgrp->flags);
3783         spin_unlock_irq(&css_set_lock);
3784 }
3785
3786 static void cgroup_kill(struct cgroup *cgrp)
3787 {
3788         struct cgroup_subsys_state *css;
3789         struct cgroup *dsct;
3790
3791         lockdep_assert_held(&cgroup_mutex);
3792
3793         cgroup_for_each_live_descendant_pre(dsct, css, cgrp)
3794                 __cgroup_kill(dsct);
3795 }
3796
3797 static ssize_t cgroup_kill_write(struct kernfs_open_file *of, char *buf,
3798                                  size_t nbytes, loff_t off)
3799 {
3800         ssize_t ret = 0;
3801         int kill;
3802         struct cgroup *cgrp;
3803
3804         ret = kstrtoint(strstrip(buf), 0, &kill);
3805         if (ret)
3806                 return ret;
3807
3808         if (kill != 1)
3809                 return -ERANGE;
3810
3811         cgrp = cgroup_kn_lock_live(of->kn, false);
3812         if (!cgrp)
3813                 return -ENOENT;
3814
3815         /*
3816          * Killing is a process directed operation, i.e. the whole thread-group
3817          * is taken down so act like we do for cgroup.procs and only make this
3818          * writable in non-threaded cgroups.
3819          */
3820         if (cgroup_is_threaded(cgrp))
3821                 ret = -EOPNOTSUPP;
3822         else
3823                 cgroup_kill(cgrp);
3824
3825         cgroup_kn_unlock(of->kn);
3826
3827         return ret ?: nbytes;
3828 }
3829
3830 static int cgroup_file_open(struct kernfs_open_file *of)
3831 {
3832         struct cftype *cft = of_cft(of);
3833         struct cgroup_file_ctx *ctx;
3834         int ret;
3835
3836         ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
3837         if (!ctx)
3838                 return -ENOMEM;
3839
3840         ctx->ns = current->nsproxy->cgroup_ns;
3841         get_cgroup_ns(ctx->ns);
3842         of->priv = ctx;
3843
3844         if (!cft->open)
3845                 return 0;
3846
3847         ret = cft->open(of);
3848         if (ret) {
3849                 put_cgroup_ns(ctx->ns);
3850                 kfree(ctx);
3851         }
3852         return ret;
3853 }
3854
3855 static void cgroup_file_release(struct kernfs_open_file *of)
3856 {
3857         struct cftype *cft = of_cft(of);
3858         struct cgroup_file_ctx *ctx = of->priv;
3859
3860         if (cft->release)
3861                 cft->release(of);
3862         put_cgroup_ns(ctx->ns);
3863         kfree(ctx);
3864 }
3865
3866 static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf,
3867                                  size_t nbytes, loff_t off)
3868 {
3869         struct cgroup_file_ctx *ctx = of->priv;
3870         struct cgroup *cgrp = of->kn->parent->priv;
3871         struct cftype *cft = of_cft(of);
3872         struct cgroup_subsys_state *css;
3873         int ret;
3874
3875         if (!nbytes)
3876                 return 0;
3877
3878         /*
3879          * If namespaces are delegation boundaries, disallow writes to
3880          * files in an non-init namespace root from inside the namespace
3881          * except for the files explicitly marked delegatable -
3882          * cgroup.procs and cgroup.subtree_control.
3883          */
3884         if ((cgrp->root->flags & CGRP_ROOT_NS_DELEGATE) &&
3885             !(cft->flags & CFTYPE_NS_DELEGATABLE) &&
3886             ctx->ns != &init_cgroup_ns && ctx->ns->root_cset->dfl_cgrp == cgrp)
3887                 return -EPERM;
3888
3889         if (cft->write)
3890                 return cft->write(of, buf, nbytes, off);
3891
3892         /*
3893          * kernfs guarantees that a file isn't deleted with operations in
3894          * flight, which means that the matching css is and stays alive and
3895          * doesn't need to be pinned.  The RCU locking is not necessary
3896          * either.  It's just for the convenience of using cgroup_css().
3897          */
3898         rcu_read_lock();
3899         css = cgroup_css(cgrp, cft->ss);
3900         rcu_read_unlock();
3901
3902         if (cft->write_u64) {
3903                 unsigned long long v;
3904                 ret = kstrtoull(buf, 0, &v);
3905                 if (!ret)
3906                         ret = cft->write_u64(css, cft, v);
3907         } else if (cft->write_s64) {
3908                 long long v;
3909                 ret = kstrtoll(buf, 0, &v);
3910                 if (!ret)
3911                         ret = cft->write_s64(css, cft, v);
3912         } else {
3913                 ret = -EINVAL;
3914         }
3915
3916         return ret ?: nbytes;
3917 }
3918
3919 static __poll_t cgroup_file_poll(struct kernfs_open_file *of, poll_table *pt)
3920 {
3921         struct cftype *cft = of_cft(of);
3922
3923         if (cft->poll)
3924                 return cft->poll(of, pt);
3925
3926         return kernfs_generic_poll(of, pt);
3927 }
3928
3929 static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos)
3930 {
3931         return seq_cft(seq)->seq_start(seq, ppos);
3932 }
3933
3934 static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos)
3935 {
3936         return seq_cft(seq)->seq_next(seq, v, ppos);
3937 }
3938
3939 static void cgroup_seqfile_stop(struct seq_file *seq, void *v)
3940 {
3941         if (seq_cft(seq)->seq_stop)
3942                 seq_cft(seq)->seq_stop(seq, v);
3943 }
3944
3945 static int cgroup_seqfile_show(struct seq_file *m, void *arg)
3946 {
3947         struct cftype *cft = seq_cft(m);
3948         struct cgroup_subsys_state *css = seq_css(m);
3949
3950         if (cft->seq_show)
3951                 return cft->seq_show(m, arg);
3952
3953         if (cft->read_u64)
3954                 seq_printf(m, "%llu\n", cft->read_u64(css, cft));
3955         else if (cft->read_s64)
3956                 seq_printf(m, "%lld\n", cft->read_s64(css, cft));
3957         else
3958                 return -EINVAL;
3959         return 0;
3960 }
3961
3962 static struct kernfs_ops cgroup_kf_single_ops = {
3963         .atomic_write_len       = PAGE_SIZE,
3964         .open                   = cgroup_file_open,
3965         .release                = cgroup_file_release,
3966         .write                  = cgroup_file_write,
3967         .poll                   = cgroup_file_poll,
3968         .seq_show               = cgroup_seqfile_show,
3969 };
3970
3971 static struct kernfs_ops cgroup_kf_ops = {
3972         .atomic_write_len       = PAGE_SIZE,
3973         .open                   = cgroup_file_open,
3974         .release                = cgroup_file_release,
3975         .write                  = cgroup_file_write,
3976         .poll                   = cgroup_file_poll,
3977         .seq_start              = cgroup_seqfile_start,
3978         .seq_next               = cgroup_seqfile_next,
3979         .seq_stop               = cgroup_seqfile_stop,
3980         .seq_show               = cgroup_seqfile_show,
3981 };
3982
3983 /* set uid and gid of cgroup dirs and files to that of the creator */
3984 static int cgroup_kn_set_ugid(struct kernfs_node *kn)
3985 {
3986         struct iattr iattr = { .ia_valid = ATTR_UID | ATTR_GID,
3987                                .ia_uid = current_fsuid(),
3988                                .ia_gid = current_fsgid(), };
3989
3990         if (uid_eq(iattr.ia_uid, GLOBAL_ROOT_UID) &&
3991             gid_eq(iattr.ia_gid, GLOBAL_ROOT_GID))
3992                 return 0;
3993
3994         return kernfs_setattr(kn, &iattr);
3995 }
3996
3997 static void cgroup_file_notify_timer(struct timer_list *timer)
3998 {
3999         cgroup_file_notify(container_of(timer, struct cgroup_file,
4000                                         notify_timer));
4001 }
4002
4003 static int cgroup_add_file(struct cgroup_subsys_state *css, struct cgroup *cgrp,
4004                            struct cftype *cft)
4005 {
4006         char name[CGROUP_FILE_NAME_MAX];
4007         struct kernfs_node *kn;
4008         struct lock_class_key *key = NULL;
4009         int ret;
4010
4011 #ifdef CONFIG_DEBUG_LOCK_ALLOC
4012         key = &cft->lockdep_key;
4013 #endif
4014         kn = __kernfs_create_file(cgrp->kn, cgroup_file_name(cgrp, cft, name),
4015                                   cgroup_file_mode(cft),
4016                                   GLOBAL_ROOT_UID, GLOBAL_ROOT_GID,
4017                                   0, cft->kf_ops, cft,
4018                                   NULL, key);
4019         if (IS_ERR(kn))
4020                 return PTR_ERR(kn);
4021
4022         ret = cgroup_kn_set_ugid(kn);
4023         if (ret) {
4024                 kernfs_remove(kn);
4025                 return ret;
4026         }
4027
4028         if (cft->file_offset) {
4029                 struct cgroup_file *cfile = (void *)css + cft->file_offset;
4030
4031                 timer_setup(&cfile->notify_timer, cgroup_file_notify_timer, 0);
4032
4033                 spin_lock_irq(&cgroup_file_kn_lock);
4034                 cfile->kn = kn;
4035                 spin_unlock_irq(&cgroup_file_kn_lock);
4036         }
4037
4038         return 0;
4039 }
4040
4041 /**
4042  * cgroup_addrm_files - add or remove files to a cgroup directory
4043  * @css: the target css
4044  * @cgrp: the target cgroup (usually css->cgroup)
4045  * @cfts: array of cftypes to be added
4046  * @is_add: whether to add or remove
4047  *
4048  * Depending on @is_add, add or remove files defined by @cfts on @cgrp.
4049  * For removals, this function never fails.
4050  */
4051 static int cgroup_addrm_files(struct cgroup_subsys_state *css,
4052                               struct cgroup *cgrp, struct cftype cfts[],
4053                               bool is_add)
4054 {
4055         struct cftype *cft, *cft_end = NULL;
4056         int ret = 0;
4057
4058         lockdep_assert_held(&cgroup_mutex);
4059
4060 restart:
4061         for (cft = cfts; cft != cft_end && cft->name[0] != '\0'; cft++) {
4062                 /* does cft->flags tell us to skip this file on @cgrp? */
4063                 if ((cft->flags & CFTYPE_PRESSURE) && !cgroup_psi_enabled())
4064                         continue;
4065                 if ((cft->flags & __CFTYPE_ONLY_ON_DFL) && !cgroup_on_dfl(cgrp))
4066                         continue;
4067                 if ((cft->flags & __CFTYPE_NOT_ON_DFL) && cgroup_on_dfl(cgrp))
4068                         continue;
4069                 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgroup_parent(cgrp))
4070                         continue;
4071                 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgroup_parent(cgrp))
4072                         continue;
4073                 if ((cft->flags & CFTYPE_DEBUG) && !cgroup_debug)
4074                         continue;
4075                 if (is_add) {
4076                         ret = cgroup_add_file(css, cgrp, cft);
4077                         if (ret) {
4078                                 pr_warn("%s: failed to add %s, err=%d\n",
4079                                         __func__, cft->name, ret);
4080                                 cft_end = cft;
4081                                 is_add = false;
4082                                 goto restart;
4083                         }
4084                 } else {
4085                         cgroup_rm_file(cgrp, cft);
4086                 }
4087         }
4088         return ret;
4089 }
4090
4091 static int cgroup_apply_cftypes(struct cftype *cfts, bool is_add)
4092 {
4093         struct cgroup_subsys *ss = cfts[0].ss;
4094         struct cgroup *root = &ss->root->cgrp;
4095         struct cgroup_subsys_state *css;
4096         int ret = 0;
4097
4098         lockdep_assert_held(&cgroup_mutex);
4099
4100         /* add/rm files for all cgroups created before */
4101         css_for_each_descendant_pre(css, cgroup_css(root, ss)) {
4102                 struct cgroup *cgrp = css->cgroup;
4103
4104                 if (!(css->flags & CSS_VISIBLE))
4105                         continue;
4106
4107                 ret = cgroup_addrm_files(css, cgrp, cfts, is_add);
4108                 if (ret)
4109                         break;
4110         }
4111
4112         if (is_add && !ret)
4113                 kernfs_activate(root->kn);
4114         return ret;
4115 }
4116
4117 static void cgroup_exit_cftypes(struct cftype *cfts)
4118 {
4119         struct cftype *cft;
4120
4121         for (cft = cfts; cft->name[0] != '\0'; cft++) {
4122                 /* free copy for custom atomic_write_len, see init_cftypes() */
4123                 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE)
4124                         kfree(cft->kf_ops);
4125                 cft->kf_ops = NULL;
4126                 cft->ss = NULL;
4127
4128                 /* revert flags set by cgroup core while adding @cfts */
4129                 cft->flags &= ~(__CFTYPE_ONLY_ON_DFL | __CFTYPE_NOT_ON_DFL);
4130         }
4131 }
4132
4133 static int cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
4134 {
4135         struct cftype *cft;
4136
4137         for (cft = cfts; cft->name[0] != '\0'; cft++) {
4138                 struct kernfs_ops *kf_ops;
4139
4140                 WARN_ON(cft->ss || cft->kf_ops);
4141
4142                 if ((cft->flags & CFTYPE_PRESSURE) && !cgroup_psi_enabled())
4143                         continue;
4144
4145                 if (cft->seq_start)
4146                         kf_ops = &cgroup_kf_ops;
4147                 else
4148                         kf_ops = &cgroup_kf_single_ops;
4149
4150                 /*
4151                  * Ugh... if @cft wants a custom max_write_len, we need to
4152                  * make a copy of kf_ops to set its atomic_write_len.
4153                  */
4154                 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) {
4155                         kf_ops = kmemdup(kf_ops, sizeof(*kf_ops), GFP_KERNEL);
4156                         if (!kf_ops) {
4157                                 cgroup_exit_cftypes(cfts);
4158                                 return -ENOMEM;
4159                         }
4160                         kf_ops->atomic_write_len = cft->max_write_len;
4161                 }
4162
4163                 cft->kf_ops = kf_ops;
4164                 cft->ss = ss;
4165         }
4166
4167         return 0;
4168 }
4169
4170 static int cgroup_rm_cftypes_locked(struct cftype *cfts)
4171 {
4172         lockdep_assert_held(&cgroup_mutex);
4173
4174         if (!cfts || !cfts[0].ss)
4175                 return -ENOENT;
4176
4177         list_del(&cfts->node);
4178         cgroup_apply_cftypes(cfts, false);
4179         cgroup_exit_cftypes(cfts);
4180         return 0;
4181 }
4182
4183 /**
4184  * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
4185  * @cfts: zero-length name terminated array of cftypes
4186  *
4187  * Unregister @cfts.  Files described by @cfts are removed from all
4188  * existing cgroups and all future cgroups won't have them either.  This
4189  * function can be called anytime whether @cfts' subsys is attached or not.
4190  *
4191  * Returns 0 on successful unregistration, -ENOENT if @cfts is not
4192  * registered.
4193  */
4194 int cgroup_rm_cftypes(struct cftype *cfts)
4195 {
4196         int ret;
4197
4198         mutex_lock(&cgroup_mutex);
4199         ret = cgroup_rm_cftypes_locked(cfts);
4200         mutex_unlock(&cgroup_mutex);
4201         return ret;
4202 }
4203
4204 /**
4205  * cgroup_add_cftypes - add an array of cftypes to a subsystem
4206  * @ss: target cgroup subsystem
4207  * @cfts: zero-length name terminated array of cftypes
4208  *
4209  * Register @cfts to @ss.  Files described by @cfts are created for all
4210  * existing cgroups to which @ss is attached and all future cgroups will
4211  * have them too.  This function can be called anytime whether @ss is
4212  * attached or not.
4213  *
4214  * Returns 0 on successful registration, -errno on failure.  Note that this
4215  * function currently returns 0 as long as @cfts registration is successful
4216  * even if some file creation attempts on existing cgroups fail.
4217  */
4218 static int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
4219 {
4220         int ret;
4221
4222         if (!cgroup_ssid_enabled(ss->id))
4223                 return 0;
4224
4225         if (!cfts || cfts[0].name[0] == '\0')
4226                 return 0;
4227
4228         ret = cgroup_init_cftypes(ss, cfts);
4229         if (ret)
4230                 return ret;
4231
4232         mutex_lock(&cgroup_mutex);
4233
4234         list_add_tail(&cfts->node, &ss->cfts);
4235         ret = cgroup_apply_cftypes(cfts, true);
4236         if (ret)
4237                 cgroup_rm_cftypes_locked(cfts);
4238
4239         mutex_unlock(&cgroup_mutex);
4240         return ret;
4241 }
4242
4243 /**
4244  * cgroup_add_dfl_cftypes - add an array of cftypes for default hierarchy
4245  * @ss: target cgroup subsystem
4246  * @cfts: zero-length name terminated array of cftypes
4247  *
4248  * Similar to cgroup_add_cftypes() but the added files are only used for
4249  * the default hierarchy.
4250  */
4251 int cgroup_add_dfl_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
4252 {
4253         struct cftype *cft;
4254
4255         for (cft = cfts; cft && cft->name[0] != '\0'; cft++)
4256                 cft->flags |= __CFTYPE_ONLY_ON_DFL;
4257         return cgroup_add_cftypes(ss, cfts);
4258 }
4259
4260 /**
4261  * cgroup_add_legacy_cftypes - add an array of cftypes for legacy hierarchies
4262  * @ss: target cgroup subsystem
4263  * @cfts: zero-length name terminated array of cftypes
4264  *
4265  * Similar to cgroup_add_cftypes() but the added files are only used for
4266  * the legacy hierarchies.
4267  */
4268 int cgroup_add_legacy_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
4269 {
4270         struct cftype *cft;
4271
4272         for (cft = cfts; cft && cft->name[0] != '\0'; cft++)
4273                 cft->flags |= __CFTYPE_NOT_ON_DFL;
4274         return cgroup_add_cftypes(ss, cfts);
4275 }
4276
4277 /**
4278  * cgroup_file_notify - generate a file modified event for a cgroup_file
4279  * @cfile: target cgroup_file
4280  *
4281  * @cfile must have been obtained by setting cftype->file_offset.
4282  */
4283 void cgroup_file_notify(struct cgroup_file *cfile)
4284 {
4285         unsigned long flags;
4286
4287         spin_lock_irqsave(&cgroup_file_kn_lock, flags);
4288         if (cfile->kn) {
4289                 unsigned long last = cfile->notified_at;
4290                 unsigned long next = last + CGROUP_FILE_NOTIFY_MIN_INTV;
4291
4292                 if (time_in_range(jiffies, last, next)) {
4293                         timer_reduce(&cfile->notify_timer, next);
4294                 } else {
4295                         kernfs_notify(cfile->kn);
4296                         cfile->notified_at = jiffies;
4297                 }
4298         }
4299         spin_unlock_irqrestore(&cgroup_file_kn_lock, flags);
4300 }
4301
4302 /**
4303  * css_next_child - find the next child of a given css
4304  * @pos: the current position (%NULL to initiate traversal)
4305  * @parent: css whose children to walk
4306  *
4307  * This function returns the next child of @parent and should be called
4308  * under either cgroup_mutex or RCU read lock.  The only requirement is
4309  * that @parent and @pos are accessible.  The next sibling is guaranteed to
4310  * be returned regardless of their states.
4311  *
4312  * If a subsystem synchronizes ->css_online() and the start of iteration, a
4313  * css which finished ->css_online() is guaranteed to be visible in the
4314  * future iterations and will stay visible until the last reference is put.
4315  * A css which hasn't finished ->css_online() or already finished
4316  * ->css_offline() may show up during traversal.  It's each subsystem's
4317  * responsibility to synchronize against on/offlining.
4318  */
4319 struct cgroup_subsys_state *css_next_child(struct cgroup_subsys_state *pos,
4320                                            struct cgroup_subsys_state *parent)
4321 {
4322         struct cgroup_subsys_state *next;
4323
4324         cgroup_assert_mutex_or_rcu_locked();
4325
4326         /*
4327          * @pos could already have been unlinked from the sibling list.
4328          * Once a cgroup is removed, its ->sibling.next is no longer
4329          * updated when its next sibling changes.  CSS_RELEASED is set when
4330          * @pos is taken off list, at which time its next pointer is valid,
4331          * and, as releases are serialized, the one pointed to by the next
4332          * pointer is guaranteed to not have started release yet.  This
4333          * implies that if we observe !CSS_RELEASED on @pos in this RCU
4334          * critical section, the one pointed to by its next pointer is
4335          * guaranteed to not have finished its RCU grace period even if we
4336          * have dropped rcu_read_lock() in-between iterations.
4337          *
4338          * If @pos has CSS_RELEASED set, its next pointer can't be
4339          * dereferenced; however, as each css is given a monotonically
4340          * increasing unique serial number and always appended to the
4341          * sibling list, the next one can be found by walking the parent's
4342          * children until the first css with higher serial number than
4343          * @pos's.  While this path can be slower, it happens iff iteration
4344          * races against release and the race window is very small.
4345          */
4346         if (!pos) {
4347                 next = list_entry_rcu(parent->children.next, struct cgroup_subsys_state, sibling);
4348         } else if (likely(!(pos->flags & CSS_RELEASED))) {
4349                 next = list_entry_rcu(pos->sibling.next, struct cgroup_subsys_state, sibling);
4350         } else {
4351                 list_for_each_entry_rcu(next, &parent->children, sibling,
4352                                         lockdep_is_held(&cgroup_mutex))
4353                         if (next->serial_nr > pos->serial_nr)
4354                                 break;
4355         }
4356
4357         /*
4358          * @next, if not pointing to the head, can be dereferenced and is
4359          * the next sibling.
4360          */
4361         if (&next->sibling != &parent->children)
4362                 return next;
4363         return NULL;
4364 }
4365
4366 /**
4367  * css_next_descendant_pre - find the next descendant for pre-order walk
4368  * @pos: the current position (%NULL to initiate traversal)
4369  * @root: css whose descendants to walk
4370  *
4371  * To be used by css_for_each_descendant_pre().  Find the next descendant
4372  * to visit for pre-order traversal of @root's descendants.  @root is
4373  * included in the iteration and the first node to be visited.
4374  *
4375  * While this function requires cgroup_mutex or RCU read locking, it
4376  * doesn't require the whole traversal to be contained in a single critical
4377  * section.  This function will return the correct next descendant as long
4378  * as both @pos and @root are accessible and @pos is a descendant of @root.
4379  *
4380  * If a subsystem synchronizes ->css_online() and the start of iteration, a
4381  * css which finished ->css_online() is guaranteed to be visible in the
4382  * future iterations and will stay visible until the last reference is put.
4383  * A css which hasn't finished ->css_online() or already finished
4384  * ->css_offline() may show up during traversal.  It's each subsystem's
4385  * responsibility to synchronize against on/offlining.
4386  */
4387 struct cgroup_subsys_state *
4388 css_next_descendant_pre(struct cgroup_subsys_state *pos,
4389                         struct cgroup_subsys_state *root)
4390 {
4391         struct cgroup_subsys_state *next;
4392
4393         cgroup_assert_mutex_or_rcu_locked();
4394
4395         /* if first iteration, visit @root */
4396         if (!pos)
4397                 return root;
4398
4399         /* visit the first child if exists */
4400         next = css_next_child(NULL, pos);
4401         if (next)
4402                 return next;
4403
4404         /* no child, visit my or the closest ancestor's next sibling */
4405         while (pos != root) {
4406                 next = css_next_child(pos, pos->parent);
4407                 if (next)
4408                         return next;
4409                 pos = pos->parent;
4410         }
4411
4412         return NULL;
4413 }
4414 EXPORT_SYMBOL_GPL(css_next_descendant_pre);
4415
4416 /**
4417  * css_rightmost_descendant - return the rightmost descendant of a css
4418  * @pos: css of interest
4419  *
4420  * Return the rightmost descendant of @pos.  If there's no descendant, @pos
4421  * is returned.  This can be used during pre-order traversal to skip
4422  * subtree of @pos.
4423  *
4424  * While this function requires cgroup_mutex or RCU read locking, it
4425  * doesn't require the whole traversal to be contained in a single critical
4426  * section.  This function will return the correct rightmost descendant as
4427  * long as @pos is accessible.
4428  */
4429 struct cgroup_subsys_state *
4430 css_rightmost_descendant(struct cgroup_subsys_state *pos)
4431 {
4432         struct cgroup_subsys_state *last, *tmp;
4433
4434         cgroup_assert_mutex_or_rcu_locked();
4435
4436         do {
4437                 last = pos;
4438                 /* ->prev isn't RCU safe, walk ->next till the end */
4439                 pos = NULL;
4440                 css_for_each_child(tmp, last)
4441                         pos = tmp;
4442         } while (pos);
4443
4444         return last;
4445 }
4446
4447 static struct cgroup_subsys_state *
4448 css_leftmost_descendant(struct cgroup_subsys_state *pos)
4449 {
4450         struct cgroup_subsys_state *last;
4451
4452         do {
4453                 last = pos;
4454                 pos = css_next_child(NULL, pos);
4455         } while (pos);
4456
4457         return last;
4458 }
4459
4460 /**
4461  * css_next_descendant_post - find the next descendant for post-order walk
4462  * @pos: the current position (%NULL to initiate traversal)
4463  * @root: css whose descendants to walk
4464  *
4465  * To be used by css_for_each_descendant_post().  Find the next descendant
4466  * to visit for post-order traversal of @root's descendants.  @root is
4467  * included in the iteration and the last node to be visited.
4468  *
4469  * While this function requires cgroup_mutex or RCU read locking, it
4470  * doesn't require the whole traversal to be contained in a single critical
4471  * section.  This function will return the correct next descendant as long
4472  * as both @pos and @cgroup are accessible and @pos is a descendant of
4473  * @cgroup.
4474  *
4475  * If a subsystem synchronizes ->css_online() and the start of iteration, a
4476  * css which finished ->css_online() is guaranteed to be visible in the
4477  * future iterations and will stay visible until the last reference is put.
4478  * A css which hasn't finished ->css_online() or already finished
4479  * ->css_offline() may show up during traversal.  It's each subsystem's
4480  * responsibility to synchronize against on/offlining.
4481  */
4482 struct cgroup_subsys_state *
4483 css_next_descendant_post(struct cgroup_subsys_state *pos,
4484                          struct cgroup_subsys_state *root)
4485 {
4486         struct cgroup_subsys_state *next;
4487
4488         cgroup_assert_mutex_or_rcu_locked();
4489
4490         /* if first iteration, visit leftmost descendant which may be @root */
4491         if (!pos)
4492                 return css_leftmost_descendant(root);
4493
4494         /* if we visited @root, we're done */
4495         if (pos == root)
4496                 return NULL;
4497
4498         /* if there's an unvisited sibling, visit its leftmost descendant */
4499         next = css_next_child(pos, pos->parent);
4500         if (next)
4501                 return css_leftmost_descendant(next);
4502
4503         /* no sibling left, visit parent */
4504         return pos->parent;
4505 }
4506
4507 /**
4508  * css_has_online_children - does a css have online children
4509  * @css: the target css
4510  *
4511  * Returns %true if @css has any online children; otherwise, %false.  This
4512  * function can be called from any context but the caller is responsible
4513  * for synchronizing against on/offlining as necessary.
4514  */
4515 bool css_has_online_children(struct cgroup_subsys_state *css)
4516 {
4517         struct cgroup_subsys_state *child;
4518         bool ret = false;
4519
4520         rcu_read_lock();
4521         css_for_each_child(child, css) {
4522                 if (child->flags & CSS_ONLINE) {
4523                         ret = true;
4524                         break;
4525                 }
4526         }
4527         rcu_read_unlock();
4528         return ret;
4529 }
4530
4531 static struct css_set *css_task_iter_next_css_set(struct css_task_iter *it)
4532 {
4533         struct list_head *l;
4534         struct cgrp_cset_link *link;
4535         struct css_set *cset;
4536
4537         lockdep_assert_held(&css_set_lock);
4538
4539         /* find the next threaded cset */
4540         if (it->tcset_pos) {
4541                 l = it->tcset_pos->next;
4542
4543                 if (l != it->tcset_head) {
4544                         it->tcset_pos = l;
4545                         return container_of(l, struct css_set,
4546                                             threaded_csets_node);
4547                 }
4548
4549                 it->tcset_pos = NULL;
4550         }
4551
4552         /* find the next cset */
4553         l = it->cset_pos;
4554         l = l->next;
4555         if (l == it->cset_head) {
4556                 it->cset_pos = NULL;
4557                 return NULL;
4558         }
4559
4560         if (it->ss) {
4561                 cset = container_of(l, struct css_set, e_cset_node[it->ss->id]);
4562         } else {
4563                 link = list_entry(l, struct cgrp_cset_link, cset_link);
4564                 cset = link->cset;
4565         }
4566
4567         it->cset_pos = l;
4568
4569         /* initialize threaded css_set walking */
4570         if (it->flags & CSS_TASK_ITER_THREADED) {
4571                 if (it->cur_dcset)
4572                         put_css_set_locked(it->cur_dcset);
4573                 it->cur_dcset = cset;
4574                 get_css_set(cset);
4575
4576                 it->tcset_head = &cset->threaded_csets;
4577                 it->tcset_pos = &cset->threaded_csets;
4578         }
4579
4580         return cset;
4581 }
4582
4583 /**
4584  * css_task_iter_advance_css_set - advance a task iterator to the next css_set
4585  * @it: the iterator to advance
4586  *
4587  * Advance @it to the next css_set to walk.
4588  */
4589 static void css_task_iter_advance_css_set(struct css_task_iter *it)
4590 {
4591         struct css_set *cset;
4592
4593         lockdep_assert_held(&css_set_lock);
4594
4595         /* Advance to the next non-empty css_set and find first non-empty tasks list*/
4596         while ((cset = css_task_iter_next_css_set(it))) {
4597                 if (!list_empty(&cset->tasks)) {
4598                         it->cur_tasks_head = &cset->tasks;
4599                         break;
4600                 } else if (!list_empty(&cset->mg_tasks)) {
4601                         it->cur_tasks_head = &cset->mg_tasks;
4602                         break;
4603                 } else if (!list_empty(&cset->dying_tasks)) {
4604                         it->cur_tasks_head = &cset->dying_tasks;
4605                         break;
4606                 }
4607         }
4608         if (!cset) {
4609                 it->task_pos = NULL;
4610                 return;
4611         }
4612         it->task_pos = it->cur_tasks_head->next;
4613
4614         /*
4615          * We don't keep css_sets locked across iteration steps and thus
4616          * need to take steps to ensure that iteration can be resumed after
4617          * the lock is re-acquired.  Iteration is performed at two levels -
4618          * css_sets and tasks in them.
4619          *
4620          * Once created, a css_set never leaves its cgroup lists, so a
4621          * pinned css_set is guaranteed to stay put and we can resume
4622          * iteration afterwards.
4623          *
4624          * Tasks may leave @cset across iteration steps.  This is resolved
4625          * by registering each iterator with the css_set currently being
4626          * walked and making css_set_move_task() advance iterators whose
4627          * next task is leaving.
4628          */
4629         if (it->cur_cset) {
4630                 list_del(&it->iters_node);
4631                 put_css_set_locked(it->cur_cset);
4632         }
4633         get_css_set(cset);
4634         it->cur_cset = cset;
4635         list_add(&it->iters_node, &cset->task_iters);
4636 }
4637
4638 static void css_task_iter_skip(struct css_task_iter *it,
4639                                struct task_struct *task)
4640 {
4641         lockdep_assert_held(&css_set_lock);
4642
4643         if (it->task_pos == &task->cg_list) {
4644                 it->task_pos = it->task_pos->next;
4645                 it->flags |= CSS_TASK_ITER_SKIPPED;
4646         }
4647 }
4648
4649 static void css_task_iter_advance(struct css_task_iter *it)
4650 {
4651         struct task_struct *task;
4652
4653         lockdep_assert_held(&css_set_lock);
4654 repeat:
4655         if (it->task_pos) {
4656                 /*
4657                  * Advance iterator to find next entry. We go through cset
4658                  * tasks, mg_tasks and dying_tasks, when consumed we move onto
4659                  * the next cset.
4660                  */
4661                 if (it->flags & CSS_TASK_ITER_SKIPPED)
4662                         it->flags &= ~CSS_TASK_ITER_SKIPPED;
4663                 else
4664                         it->task_pos = it->task_pos->next;
4665
4666                 if (it->task_pos == &it->cur_cset->tasks) {
4667                         it->cur_tasks_head = &it->cur_cset->mg_tasks;
4668                         it->task_pos = it->cur_tasks_head->next;
4669                 }
4670                 if (it->task_pos == &it->cur_cset->mg_tasks) {
4671                         it->cur_tasks_head = &it->cur_cset->dying_tasks;
4672                         it->task_pos = it->cur_tasks_head->next;
4673                 }
4674                 if (it->task_pos == &it->cur_cset->dying_tasks)
4675                         css_task_iter_advance_css_set(it);
4676         } else {
4677                 /* called from start, proceed to the first cset */
4678                 css_task_iter_advance_css_set(it);
4679         }
4680
4681         if (!it->task_pos)
4682                 return;
4683
4684         task = list_entry(it->task_pos, struct task_struct, cg_list);
4685
4686         if (it->flags & CSS_TASK_ITER_PROCS) {
4687                 /* if PROCS, skip over tasks which aren't group leaders */
4688                 if (!thread_group_leader(task))
4689                         goto repeat;
4690
4691                 /* and dying leaders w/o live member threads */
4692                 if (it->cur_tasks_head == &it->cur_cset->dying_tasks &&
4693                     !atomic_read(&task->signal->live))
4694                         goto repeat;
4695         } else {
4696                 /* skip all dying ones */
4697                 if (it->cur_tasks_head == &it->cur_cset->dying_tasks)
4698                         goto repeat;
4699         }
4700 }
4701
4702 /**
4703  * css_task_iter_start - initiate task iteration
4704  * @css: the css to walk tasks of
4705  * @flags: CSS_TASK_ITER_* flags
4706  * @it: the task iterator to use
4707  *
4708  * Initiate iteration through the tasks of @css.  The caller can call
4709  * css_task_iter_next() to walk through the tasks until the function
4710  * returns NULL.  On completion of iteration, css_task_iter_end() must be
4711  * called.
4712  */
4713 void css_task_iter_start(struct cgroup_subsys_state *css, unsigned int flags,
4714                          struct css_task_iter *it)
4715 {
4716         memset(it, 0, sizeof(*it));
4717
4718         spin_lock_irq(&css_set_lock);
4719
4720         it->ss = css->ss;
4721         it->flags = flags;
4722
4723         if (CGROUP_HAS_SUBSYS_CONFIG && it->ss)
4724                 it->cset_pos = &css->cgroup->e_csets[css->ss->id];
4725         else
4726                 it->cset_pos = &css->cgroup->cset_links;
4727
4728         it->cset_head = it->cset_pos;
4729
4730         css_task_iter_advance(it);
4731
4732         spin_unlock_irq(&css_set_lock);
4733 }
4734
4735 /**
4736  * css_task_iter_next - return the next task for the iterator
4737  * @it: the task iterator being iterated
4738  *
4739  * The "next" function for task iteration.  @it should have been
4740  * initialized via css_task_iter_start().  Returns NULL when the iteration
4741  * reaches the end.
4742  */
4743 struct task_struct *css_task_iter_next(struct css_task_iter *it)
4744 {
4745         if (it->cur_task) {
4746                 put_task_struct(it->cur_task);
4747                 it->cur_task = NULL;
4748         }
4749
4750         spin_lock_irq(&css_set_lock);
4751
4752         /* @it may be half-advanced by skips, finish advancing */
4753         if (it->flags & CSS_TASK_ITER_SKIPPED)
4754                 css_task_iter_advance(it);
4755
4756         if (it->task_pos) {
4757                 it->cur_task = list_entry(it->task_pos, struct task_struct,
4758                                           cg_list);
4759                 get_task_struct(it->cur_task);
4760                 css_task_iter_advance(it);
4761         }
4762
4763         spin_unlock_irq(&css_set_lock);
4764
4765         return it->cur_task;
4766 }
4767
4768 /**
4769  * css_task_iter_end - finish task iteration
4770  * @it: the task iterator to finish
4771  *
4772  * Finish task iteration started by css_task_iter_start().
4773  */
4774 void css_task_iter_end(struct css_task_iter *it)
4775 {
4776         if (it->cur_cset) {
4777                 spin_lock_irq(&css_set_lock);
4778                 list_del(&it->iters_node);
4779                 put_css_set_locked(it->cur_cset);
4780                 spin_unlock_irq(&css_set_lock);
4781         }
4782
4783         if (it->cur_dcset)
4784                 put_css_set(it->cur_dcset);
4785
4786         if (it->cur_task)
4787                 put_task_struct(it->cur_task);
4788 }
4789
4790 static void cgroup_procs_release(struct kernfs_open_file *of)
4791 {
4792         struct cgroup_file_ctx *ctx = of->priv;
4793
4794         if (ctx->procs.started)
4795                 css_task_iter_end(&ctx->procs.iter);
4796 }
4797
4798 static void *cgroup_procs_next(struct seq_file *s, void *v, loff_t *pos)
4799 {
4800         struct kernfs_open_file *of = s->private;
4801         struct cgroup_file_ctx *ctx = of->priv;
4802
4803         if (pos)
4804                 (*pos)++;
4805
4806         return css_task_iter_next(&ctx->procs.iter);
4807 }
4808
4809 static void *__cgroup_procs_start(struct seq_file *s, loff_t *pos,
4810                                   unsigned int iter_flags)
4811 {
4812         struct kernfs_open_file *of = s->private;
4813         struct cgroup *cgrp = seq_css(s)->cgroup;
4814         struct cgroup_file_ctx *ctx = of->priv;
4815         struct css_task_iter *it = &ctx->procs.iter;
4816
4817         /*
4818          * When a seq_file is seeked, it's always traversed sequentially
4819          * from position 0, so we can simply keep iterating on !0 *pos.
4820          */
4821         if (!ctx->procs.started) {
4822                 if (WARN_ON_ONCE((*pos)))
4823                         return ERR_PTR(-EINVAL);
4824                 css_task_iter_start(&cgrp->self, iter_flags, it);
4825                 ctx->procs.started = true;
4826         } else if (!(*pos)) {
4827                 css_task_iter_end(it);
4828                 css_task_iter_start(&cgrp->self, iter_flags, it);
4829         } else
4830                 return it->cur_task;
4831
4832         return cgroup_procs_next(s, NULL, NULL);
4833 }
4834
4835 static void *cgroup_procs_start(struct seq_file *s, loff_t *pos)
4836 {
4837         struct cgroup *cgrp = seq_css(s)->cgroup;
4838
4839         /*
4840          * All processes of a threaded subtree belong to the domain cgroup
4841          * of the subtree.  Only threads can be distributed across the
4842          * subtree.  Reject reads on cgroup.procs in the subtree proper.
4843          * They're always empty anyway.
4844          */
4845         if (cgroup_is_threaded(cgrp))
4846                 return ERR_PTR(-EOPNOTSUPP);
4847
4848         return __cgroup_procs_start(s, pos, CSS_TASK_ITER_PROCS |
4849                                             CSS_TASK_ITER_THREADED);
4850 }
4851
4852 static int cgroup_procs_show(struct seq_file *s, void *v)
4853 {
4854         seq_printf(s, "%d\n", task_pid_vnr(v));
4855         return 0;
4856 }
4857
4858 static int cgroup_may_write(const struct cgroup *cgrp, struct super_block *sb)
4859 {
4860         int ret;
4861         struct inode *inode;
4862
4863         lockdep_assert_held(&cgroup_mutex);
4864
4865         inode = kernfs_get_inode(sb, cgrp->procs_file.kn);
4866         if (!inode)
4867                 return -ENOMEM;
4868
4869         ret = inode_permission(&init_user_ns, inode, MAY_WRITE);
4870         iput(inode);
4871         return ret;
4872 }
4873
4874 static int cgroup_procs_write_permission(struct cgroup *src_cgrp,
4875                                          struct cgroup *dst_cgrp,
4876                                          struct super_block *sb,
4877                                          struct cgroup_namespace *ns)
4878 {
4879         struct cgroup *com_cgrp = src_cgrp;
4880         int ret;
4881
4882         lockdep_assert_held(&cgroup_mutex);
4883
4884         /* find the common ancestor */
4885         while (!cgroup_is_descendant(dst_cgrp, com_cgrp))
4886                 com_cgrp = cgroup_parent(com_cgrp);
4887
4888         /* %current should be authorized to migrate to the common ancestor */
4889         ret = cgroup_may_write(com_cgrp, sb);
4890         if (ret)
4891                 return ret;
4892
4893         /*
4894          * If namespaces are delegation boundaries, %current must be able
4895          * to see both source and destination cgroups from its namespace.
4896          */
4897         if ((cgrp_dfl_root.flags & CGRP_ROOT_NS_DELEGATE) &&
4898             (!cgroup_is_descendant(src_cgrp, ns->root_cset->dfl_cgrp) ||
4899              !cgroup_is_descendant(dst_cgrp, ns->root_cset->dfl_cgrp)))
4900                 return -ENOENT;
4901
4902         return 0;
4903 }
4904
4905 static int cgroup_attach_permissions(struct cgroup *src_cgrp,
4906                                      struct cgroup *dst_cgrp,
4907                                      struct super_block *sb, bool threadgroup,
4908                                      struct cgroup_namespace *ns)
4909 {
4910         int ret = 0;
4911
4912         ret = cgroup_procs_write_permission(src_cgrp, dst_cgrp, sb, ns);
4913         if (ret)
4914                 return ret;
4915
4916         ret = cgroup_migrate_vet_dst(dst_cgrp);
4917         if (ret)
4918                 return ret;
4919
4920         if (!threadgroup && (src_cgrp->dom_cgrp != dst_cgrp->dom_cgrp))
4921                 ret = -EOPNOTSUPP;
4922
4923         return ret;
4924 }
4925
4926 static ssize_t __cgroup_procs_write(struct kernfs_open_file *of, char *buf,
4927                                     bool threadgroup)
4928 {
4929         struct cgroup_file_ctx *ctx = of->priv;
4930         struct cgroup *src_cgrp, *dst_cgrp;
4931         struct task_struct *task;
4932         const struct cred *saved_cred;
4933         ssize_t ret;
4934         bool locked;
4935
4936         dst_cgrp = cgroup_kn_lock_live(of->kn, false);
4937         if (!dst_cgrp)
4938                 return -ENODEV;
4939
4940         task = cgroup_procs_write_start(buf, threadgroup, &locked);
4941         ret = PTR_ERR_OR_ZERO(task);
4942         if (ret)
4943                 goto out_unlock;
4944
4945         /* find the source cgroup */
4946         spin_lock_irq(&css_set_lock);
4947         src_cgrp = task_cgroup_from_root(task, &cgrp_dfl_root);
4948         spin_unlock_irq(&css_set_lock);
4949
4950         /*
4951          * Process and thread migrations follow same delegation rule. Check
4952          * permissions using the credentials from file open to protect against
4953          * inherited fd attacks.
4954          */
4955         saved_cred = override_creds(of->file->f_cred);
4956         ret = cgroup_attach_permissions(src_cgrp, dst_cgrp,
4957                                         of->file->f_path.dentry->d_sb,
4958                                         threadgroup, ctx->ns);
4959         revert_creds(saved_cred);
4960         if (ret)
4961                 goto out_finish;
4962
4963         ret = cgroup_attach_task(dst_cgrp, task, threadgroup);
4964
4965 out_finish:
4966         cgroup_procs_write_finish(task, locked);
4967 out_unlock:
4968         cgroup_kn_unlock(of->kn);
4969
4970         return ret;
4971 }
4972
4973 static ssize_t cgroup_procs_write(struct kernfs_open_file *of,
4974                                   char *buf, size_t nbytes, loff_t off)
4975 {
4976         return __cgroup_procs_write(of, buf, true) ?: nbytes;
4977 }
4978
4979 static void *cgroup_threads_start(struct seq_file *s, loff_t *pos)
4980 {
4981         return __cgroup_procs_start(s, pos, 0);
4982 }
4983
4984 static ssize_t cgroup_threads_write(struct kernfs_open_file *of,
4985                                     char *buf, size_t nbytes, loff_t off)
4986 {
4987         return __cgroup_procs_write(of, buf, false) ?: nbytes;
4988 }
4989
4990 /* cgroup core interface files for the default hierarchy */
4991 static struct cftype cgroup_base_files[] = {
4992         {
4993                 .name = "cgroup.type",
4994                 .flags = CFTYPE_NOT_ON_ROOT,
4995                 .seq_show = cgroup_type_show,
4996                 .write = cgroup_type_write,
4997         },
4998         {
4999                 .name = "cgroup.procs",
5000                 .flags = CFTYPE_NS_DELEGATABLE,
5001                 .file_offset = offsetof(struct cgroup, procs_file),
5002                 .release = cgroup_procs_release,
5003                 .seq_start = cgroup_procs_start,
5004                 .seq_next = cgroup_procs_next,
5005                 .seq_show = cgroup_procs_show,
5006                 .write = cgroup_procs_write,
5007         },
5008         {
5009                 .name = "cgroup.threads",
5010                 .flags = CFTYPE_NS_DELEGATABLE,
5011                 .release = cgroup_procs_release,
5012                 .seq_start = cgroup_threads_start,
5013                 .seq_next = cgroup_procs_next,
5014                 .seq_show = cgroup_procs_show,
5015                 .write = cgroup_threads_write,
5016         },
5017         {
5018                 .name = "cgroup.controllers",
5019                 .seq_show = cgroup_controllers_show,
5020         },
5021         {
5022                 .name = "cgroup.subtree_control",
5023                 .flags = CFTYPE_NS_DELEGATABLE,
5024                 .seq_show = cgroup_subtree_control_show,
5025                 .write = cgroup_subtree_control_write,
5026         },
5027         {
5028                 .name = "cgroup.events",
5029                 .flags = CFTYPE_NOT_ON_ROOT,
5030                 .file_offset = offsetof(struct cgroup, events_file),
5031                 .seq_show = cgroup_events_show,
5032         },
5033         {
5034                 .name = "cgroup.max.descendants",
5035                 .seq_show = cgroup_max_descendants_show,
5036                 .write = cgroup_max_descendants_write,
5037         },
5038         {
5039                 .name = "cgroup.max.depth",
5040                 .seq_show = cgroup_max_depth_show,
5041                 .write = cgroup_max_depth_write,
5042         },
5043         {
5044                 .name = "cgroup.stat",
5045                 .seq_show = cgroup_stat_show,
5046         },
5047         {
5048                 .name = "cgroup.freeze",
5049                 .flags = CFTYPE_NOT_ON_ROOT,
5050                 .seq_show = cgroup_freeze_show,
5051                 .write = cgroup_freeze_write,
5052         },
5053         {
5054                 .name = "cgroup.kill",
5055                 .flags = CFTYPE_NOT_ON_ROOT,
5056                 .write = cgroup_kill_write,
5057         },
5058         {
5059                 .name = "cpu.stat",
5060                 .seq_show = cpu_stat_show,
5061         },
5062 #ifdef CONFIG_PSI
5063         {
5064                 .name = "io.pressure",
5065                 .flags = CFTYPE_PRESSURE,
5066                 .seq_show = cgroup_io_pressure_show,
5067                 .write = cgroup_io_pressure_write,
5068                 .poll = cgroup_pressure_poll,
5069                 .release = cgroup_pressure_release,
5070         },
5071         {
5072                 .name = "memory.pressure",
5073                 .flags = CFTYPE_PRESSURE,
5074                 .seq_show = cgroup_memory_pressure_show,
5075                 .write = cgroup_memory_pressure_write,
5076                 .poll = cgroup_pressure_poll,
5077                 .release = cgroup_pressure_release,
5078         },
5079         {
5080                 .name = "cpu.pressure",
5081                 .flags = CFTYPE_PRESSURE,
5082                 .seq_show = cgroup_cpu_pressure_show,
5083                 .write = cgroup_cpu_pressure_write,
5084                 .poll = cgroup_pressure_poll,
5085                 .release = cgroup_pressure_release,
5086         },
5087 #endif /* CONFIG_PSI */
5088         { }     /* terminate */
5089 };
5090
5091 /*
5092  * css destruction is four-stage process.
5093  *
5094  * 1. Destruction starts.  Killing of the percpu_ref is initiated.
5095  *    Implemented in kill_css().
5096  *
5097  * 2. When the percpu_ref is confirmed to be visible as killed on all CPUs
5098  *    and thus css_tryget_online() is guaranteed to fail, the css can be
5099  *    offlined by invoking offline_css().  After offlining, the base ref is
5100  *    put.  Implemented in css_killed_work_fn().
5101  *
5102  * 3. When the percpu_ref reaches zero, the only possible remaining
5103  *    accessors are inside RCU read sections.  css_release() schedules the
5104  *    RCU callback.
5105  *
5106  * 4. After the grace period, the css can be freed.  Implemented in
5107  *    css_free_work_fn().
5108  *
5109  * It is actually hairier because both step 2 and 4 require process context
5110  * and thus involve punting to css->destroy_work adding two additional
5111  * steps to the already complex sequence.
5112  */
5113 static void css_free_rwork_fn(struct work_struct *work)
5114 {
5115         struct cgroup_subsys_state *css = container_of(to_rcu_work(work),
5116                                 struct cgroup_subsys_state, destroy_rwork);
5117         struct cgroup_subsys *ss = css->ss;
5118         struct cgroup *cgrp = css->cgroup;
5119
5120         percpu_ref_exit(&css->refcnt);
5121
5122         if (ss) {
5123                 /* css free path */
5124                 struct cgroup_subsys_state *parent = css->parent;
5125                 int id = css->id;
5126
5127                 ss->css_free(css);
5128                 cgroup_idr_remove(&ss->css_idr, id);
5129                 cgroup_put(cgrp);
5130
5131                 if (parent)
5132                         css_put(parent);
5133         } else {
5134                 /* cgroup free path */
5135                 atomic_dec(&cgrp->root->nr_cgrps);
5136                 cgroup1_pidlist_destroy_all(cgrp);
5137                 cancel_work_sync(&cgrp->release_agent_work);
5138
5139                 if (cgroup_parent(cgrp)) {
5140                         /*
5141                          * We get a ref to the parent, and put the ref when
5142                          * this cgroup is being freed, so it's guaranteed
5143                          * that the parent won't be destroyed before its
5144                          * children.
5145                          */
5146                         cgroup_put(cgroup_parent(cgrp));
5147                         kernfs_put(cgrp->kn);
5148                         psi_cgroup_free(cgrp);
5149                         cgroup_rstat_exit(cgrp);
5150                         kfree(cgrp);
5151                 } else {
5152                         /*
5153                          * This is root cgroup's refcnt reaching zero,
5154                          * which indicates that the root should be
5155                          * released.
5156                          */
5157                         cgroup_destroy_root(cgrp->root);
5158                 }
5159         }
5160 }
5161
5162 static void css_release_work_fn(struct work_struct *work)
5163 {
5164         struct cgroup_subsys_state *css =
5165                 container_of(work, struct cgroup_subsys_state, destroy_work);
5166         struct cgroup_subsys *ss = css->ss;
5167         struct cgroup *cgrp = css->cgroup;
5168
5169         mutex_lock(&cgroup_mutex);
5170
5171         css->flags |= CSS_RELEASED;
5172         list_del_rcu(&css->sibling);
5173
5174         if (ss) {
5175                 /* css release path */
5176                 if (!list_empty(&css->rstat_css_node)) {
5177                         cgroup_rstat_flush(cgrp);
5178                         list_del_rcu(&css->rstat_css_node);
5179                 }
5180
5181                 cgroup_idr_replace(&ss->css_idr, NULL, css->id);
5182                 if (ss->css_released)
5183                         ss->css_released(css);
5184         } else {
5185                 struct cgroup *tcgrp;
5186
5187                 /* cgroup release path */
5188                 TRACE_CGROUP_PATH(release, cgrp);
5189
5190                 cgroup_rstat_flush(cgrp);
5191
5192                 spin_lock_irq(&css_set_lock);
5193                 for (tcgrp = cgroup_parent(cgrp); tcgrp;
5194                      tcgrp = cgroup_parent(tcgrp))
5195                         tcgrp->nr_dying_descendants--;
5196                 spin_unlock_irq(&css_set_lock);
5197
5198                 /*
5199                  * There are two control paths which try to determine
5200                  * cgroup from dentry without going through kernfs -
5201                  * cgroupstats_build() and css_tryget_online_from_dir().
5202                  * Those are supported by RCU protecting clearing of
5203                  * cgrp->kn->priv backpointer.
5204                  */
5205                 if (cgrp->kn)
5206                         RCU_INIT_POINTER(*(void __rcu __force **)&cgrp->kn->priv,
5207                                          NULL);
5208         }
5209
5210         mutex_unlock(&cgroup_mutex);
5211
5212         INIT_RCU_WORK(&css->destroy_rwork, css_free_rwork_fn);
5213         queue_rcu_work(cgroup_destroy_wq, &css->destroy_rwork);
5214 }
5215
5216 static void css_release(struct percpu_ref *ref)
5217 {
5218         struct cgroup_subsys_state *css =
5219                 container_of(ref, struct cgroup_subsys_state, refcnt);
5220
5221         INIT_WORK(&css->destroy_work, css_release_work_fn);
5222         queue_work(cgroup_destroy_wq, &css->destroy_work);
5223 }
5224
5225 static void init_and_link_css(struct cgroup_subsys_state *css,
5226                               struct cgroup_subsys *ss, struct cgroup *cgrp)
5227 {
5228         lockdep_assert_held(&cgroup_mutex);
5229
5230         cgroup_get_live(cgrp);
5231
5232         memset(css, 0, sizeof(*css));
5233         css->cgroup = cgrp;
5234         css->ss = ss;
5235         css->id = -1;
5236         INIT_LIST_HEAD(&css->sibling);
5237         INIT_LIST_HEAD(&css->children);
5238         INIT_LIST_HEAD(&css->rstat_css_node);
5239         css->serial_nr = css_serial_nr_next++;
5240         atomic_set(&css->online_cnt, 0);
5241
5242         if (cgroup_parent(cgrp)) {
5243                 css->parent = cgroup_css(cgroup_parent(cgrp), ss);
5244                 css_get(css->parent);
5245         }
5246
5247         if (ss->css_rstat_flush)
5248                 list_add_rcu(&css->rstat_css_node, &cgrp->rstat_css_list);
5249
5250         BUG_ON(cgroup_css(cgrp, ss));
5251 }
5252
5253 /* invoke ->css_online() on a new CSS and mark it online if successful */
5254 static int online_css(struct cgroup_subsys_state *css)
5255 {
5256         struct cgroup_subsys *ss = css->ss;
5257         int ret = 0;
5258
5259         lockdep_assert_held(&cgroup_mutex);
5260
5261         if (ss->css_online)
5262                 ret = ss->css_online(css);
5263         if (!ret) {
5264                 css->flags |= CSS_ONLINE;
5265                 rcu_assign_pointer(css->cgroup->subsys[ss->id], css);
5266
5267                 atomic_inc(&css->online_cnt);
5268                 if (css->parent)
5269                         atomic_inc(&css->parent->online_cnt);
5270         }
5271         return ret;
5272 }
5273
5274 /* if the CSS is online, invoke ->css_offline() on it and mark it offline */
5275 static void offline_css(struct cgroup_subsys_state *css)
5276 {
5277         struct cgroup_subsys *ss = css->ss;
5278
5279         lockdep_assert_held(&cgroup_mutex);
5280
5281         if (!(css->flags & CSS_ONLINE))
5282                 return;
5283
5284         if (ss->css_offline)
5285                 ss->css_offline(css);
5286
5287         css->flags &= ~CSS_ONLINE;
5288         RCU_INIT_POINTER(css->cgroup->subsys[ss->id], NULL);
5289
5290         wake_up_all(&css->cgroup->offline_waitq);
5291 }
5292
5293 /**
5294  * css_create - create a cgroup_subsys_state
5295  * @cgrp: the cgroup new css will be associated with
5296  * @ss: the subsys of new css
5297  *
5298  * Create a new css associated with @cgrp - @ss pair.  On success, the new
5299  * css is online and installed in @cgrp.  This function doesn't create the
5300  * interface files.  Returns 0 on success, -errno on failure.
5301  */
5302 static struct cgroup_subsys_state *css_create(struct cgroup *cgrp,
5303                                               struct cgroup_subsys *ss)
5304 {
5305         struct cgroup *parent = cgroup_parent(cgrp);
5306         struct cgroup_subsys_state *parent_css = cgroup_css(parent, ss);
5307         struct cgroup_subsys_state *css;
5308         int err;
5309
5310         lockdep_assert_held(&cgroup_mutex);
5311
5312         css = ss->css_alloc(parent_css);
5313         if (!css)
5314                 css = ERR_PTR(-ENOMEM);
5315         if (IS_ERR(css))
5316                 return css;
5317
5318         init_and_link_css(css, ss, cgrp);
5319
5320         err = percpu_ref_init(&css->refcnt, css_release, 0, GFP_KERNEL);
5321         if (err)
5322                 goto err_free_css;
5323
5324         err = cgroup_idr_alloc(&ss->css_idr, NULL, 2, 0, GFP_KERNEL);
5325         if (err < 0)
5326                 goto err_free_css;
5327         css->id = err;
5328
5329         /* @css is ready to be brought online now, make it visible */
5330         list_add_tail_rcu(&css->sibling, &parent_css->children);
5331         cgroup_idr_replace(&ss->css_idr, css, css->id);
5332
5333         err = online_css(css);
5334         if (err)
5335                 goto err_list_del;
5336
5337         return css;
5338
5339 err_list_del:
5340         list_del_rcu(&css->sibling);
5341 err_free_css:
5342         list_del_rcu(&css->rstat_css_node);
5343         INIT_RCU_WORK(&css->destroy_rwork, css_free_rwork_fn);
5344         queue_rcu_work(cgroup_destroy_wq, &css->destroy_rwork);
5345         return ERR_PTR(err);
5346 }
5347
5348 /*
5349  * The returned cgroup is fully initialized including its control mask, but
5350  * it isn't associated with its kernfs_node and doesn't have the control
5351  * mask applied.
5352  */
5353 static struct cgroup *cgroup_create(struct cgroup *parent, const char *name,
5354                                     umode_t mode)
5355 {
5356         struct cgroup_root *root = parent->root;
5357         struct cgroup *cgrp, *tcgrp;
5358         struct kernfs_node *kn;
5359         int level = parent->level + 1;
5360         int ret;
5361
5362         /* allocate the cgroup and its ID, 0 is reserved for the root */
5363         cgrp = kzalloc(struct_size(cgrp, ancestor_ids, (level + 1)),
5364                        GFP_KERNEL);
5365         if (!cgrp)
5366                 return ERR_PTR(-ENOMEM);
5367
5368         ret = percpu_ref_init(&cgrp->self.refcnt, css_release, 0, GFP_KERNEL);
5369         if (ret)
5370                 goto out_free_cgrp;
5371
5372         ret = cgroup_rstat_init(cgrp);
5373         if (ret)
5374                 goto out_cancel_ref;
5375
5376         /* create the directory */
5377         kn = kernfs_create_dir(parent->kn, name, mode, cgrp);
5378         if (IS_ERR(kn)) {
5379                 ret = PTR_ERR(kn);
5380                 goto out_stat_exit;
5381         }
5382         cgrp->kn = kn;
5383
5384         init_cgroup_housekeeping(cgrp);
5385
5386         cgrp->self.parent = &parent->self;
5387         cgrp->root = root;
5388         cgrp->level = level;
5389
5390         ret = psi_cgroup_alloc(cgrp);
5391         if (ret)
5392                 goto out_kernfs_remove;
5393
5394         ret = cgroup_bpf_inherit(cgrp);
5395         if (ret)
5396                 goto out_psi_free;
5397
5398         /*
5399          * New cgroup inherits effective freeze counter, and
5400          * if the parent has to be frozen, the child has too.
5401          */
5402         cgrp->freezer.e_freeze = parent->freezer.e_freeze;
5403         if (cgrp->freezer.e_freeze) {
5404                 /*
5405                  * Set the CGRP_FREEZE flag, so when a process will be
5406                  * attached to the child cgroup, it will become frozen.
5407                  * At this point the new cgroup is unpopulated, so we can
5408                  * consider it frozen immediately.
5409                  */
5410                 set_bit(CGRP_FREEZE, &cgrp->flags);
5411                 set_bit(CGRP_FROZEN, &cgrp->flags);
5412         }
5413
5414         spin_lock_irq(&css_set_lock);
5415         for (tcgrp = cgrp; tcgrp; tcgrp = cgroup_parent(tcgrp)) {
5416                 cgrp->ancestor_ids[tcgrp->level] = cgroup_id(tcgrp);
5417
5418                 if (tcgrp != cgrp) {
5419                         tcgrp->nr_descendants++;
5420
5421                         /*
5422                          * If the new cgroup is frozen, all ancestor cgroups
5423                          * get a new frozen descendant, but their state can't
5424                          * change because of this.
5425                          */
5426                         if (cgrp->freezer.e_freeze)
5427                                 tcgrp->freezer.nr_frozen_descendants++;
5428                 }
5429         }
5430         spin_unlock_irq(&css_set_lock);
5431
5432         if (notify_on_release(parent))
5433                 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
5434
5435         if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags))
5436                 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
5437
5438         cgrp->self.serial_nr = css_serial_nr_next++;
5439
5440         /* allocation complete, commit to creation */
5441         list_add_tail_rcu(&cgrp->self.sibling, &cgroup_parent(cgrp)->self.children);
5442         atomic_inc(&root->nr_cgrps);
5443         cgroup_get_live(parent);
5444
5445         /*
5446          * On the default hierarchy, a child doesn't automatically inherit
5447          * subtree_control from the parent.  Each is configured manually.
5448          */
5449         if (!cgroup_on_dfl(cgrp))
5450                 cgrp->subtree_control = cgroup_control(cgrp);
5451
5452         cgroup_propagate_control(cgrp);
5453
5454         return cgrp;
5455
5456 out_psi_free:
5457         psi_cgroup_free(cgrp);
5458 out_kernfs_remove:
5459         kernfs_remove(cgrp->kn);
5460 out_stat_exit:
5461         cgroup_rstat_exit(cgrp);
5462 out_cancel_ref:
5463         percpu_ref_exit(&cgrp->self.refcnt);
5464 out_free_cgrp:
5465         kfree(cgrp);
5466         return ERR_PTR(ret);
5467 }
5468
5469 static bool cgroup_check_hierarchy_limits(struct cgroup *parent)
5470 {
5471         struct cgroup *cgroup;
5472         int ret = false;
5473         int level = 1;
5474
5475         lockdep_assert_held(&cgroup_mutex);
5476
5477         for (cgroup = parent; cgroup; cgroup = cgroup_parent(cgroup)) {
5478                 if (cgroup->nr_descendants >= cgroup->max_descendants)
5479                         goto fail;
5480
5481                 if (level > cgroup->max_depth)
5482                         goto fail;
5483
5484                 level++;
5485         }
5486
5487         ret = true;
5488 fail:
5489         return ret;
5490 }
5491
5492 int cgroup_mkdir(struct kernfs_node *parent_kn, const char *name, umode_t mode)
5493 {
5494         struct cgroup *parent, *cgrp;
5495         int ret;
5496
5497         /* do not accept '\n' to prevent making /proc/<pid>/cgroup unparsable */
5498         if (strchr(name, '\n'))
5499                 return -EINVAL;
5500
5501         parent = cgroup_kn_lock_live(parent_kn, false);
5502         if (!parent)
5503                 return -ENODEV;
5504
5505         if (!cgroup_check_hierarchy_limits(parent)) {
5506                 ret = -EAGAIN;
5507                 goto out_unlock;
5508         }
5509
5510         cgrp = cgroup_create(parent, name, mode);
5511         if (IS_ERR(cgrp)) {
5512                 ret = PTR_ERR(cgrp);
5513                 goto out_unlock;
5514         }
5515
5516         /*
5517          * This extra ref will be put in cgroup_free_fn() and guarantees
5518          * that @cgrp->kn is always accessible.
5519          */
5520         kernfs_get(cgrp->kn);
5521
5522         ret = cgroup_kn_set_ugid(cgrp->kn);
5523         if (ret)
5524                 goto out_destroy;
5525
5526         ret = css_populate_dir(&cgrp->self);
5527         if (ret)
5528                 goto out_destroy;
5529
5530         ret = cgroup_apply_control_enable(cgrp);
5531         if (ret)
5532                 goto out_destroy;
5533
5534         TRACE_CGROUP_PATH(mkdir, cgrp);
5535
5536         /* let's create and online css's */
5537         kernfs_activate(cgrp->kn);
5538
5539         ret = 0;
5540         goto out_unlock;
5541
5542 out_destroy:
5543         cgroup_destroy_locked(cgrp);
5544 out_unlock:
5545         cgroup_kn_unlock(parent_kn);
5546         return ret;
5547 }
5548
5549 /*
5550  * This is called when the refcnt of a css is confirmed to be killed.
5551  * css_tryget_online() is now guaranteed to fail.  Tell the subsystem to
5552  * initiate destruction and put the css ref from kill_css().
5553  */
5554 static void css_killed_work_fn(struct work_struct *work)
5555 {
5556         struct cgroup_subsys_state *css =
5557                 container_of(work, struct cgroup_subsys_state, destroy_work);
5558
5559         mutex_lock(&cgroup_mutex);
5560
5561         do {
5562                 offline_css(css);
5563                 css_put(css);
5564                 /* @css can't go away while we're holding cgroup_mutex */
5565                 css = css->parent;
5566         } while (css && atomic_dec_and_test(&css->online_cnt));
5567
5568         mutex_unlock(&cgroup_mutex);
5569 }
5570
5571 /* css kill confirmation processing requires process context, bounce */
5572 static void css_killed_ref_fn(struct percpu_ref *ref)
5573 {
5574         struct cgroup_subsys_state *css =
5575                 container_of(ref, struct cgroup_subsys_state, refcnt);
5576
5577         if (atomic_dec_and_test(&css->online_cnt)) {
5578                 INIT_WORK(&css->destroy_work, css_killed_work_fn);
5579                 queue_work(cgroup_destroy_wq, &css->destroy_work);
5580         }
5581 }
5582
5583 /**
5584  * kill_css - destroy a css
5585  * @css: css to destroy
5586  *
5587  * This function initiates destruction of @css by removing cgroup interface
5588  * files and putting its base reference.  ->css_offline() will be invoked
5589  * asynchronously once css_tryget_online() is guaranteed to fail and when
5590  * the reference count reaches zero, @css will be released.
5591  */
5592 static void kill_css(struct cgroup_subsys_state *css)
5593 {
5594         lockdep_assert_held(&cgroup_mutex);
5595
5596         if (css->flags & CSS_DYING)
5597                 return;
5598
5599         css->flags |= CSS_DYING;
5600
5601         /*
5602          * This must happen before css is disassociated with its cgroup.
5603          * See seq_css() for details.
5604          */
5605         css_clear_dir(css);
5606
5607         /*
5608          * Killing would put the base ref, but we need to keep it alive
5609          * until after ->css_offline().
5610          */
5611         css_get(css);
5612
5613         /*
5614          * cgroup core guarantees that, by the time ->css_offline() is
5615          * invoked, no new css reference will be given out via
5616          * css_tryget_online().  We can't simply call percpu_ref_kill() and
5617          * proceed to offlining css's because percpu_ref_kill() doesn't
5618          * guarantee that the ref is seen as killed on all CPUs on return.
5619          *
5620          * Use percpu_ref_kill_and_confirm() to get notifications as each
5621          * css is confirmed to be seen as killed on all CPUs.
5622          */
5623         percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn);
5624 }
5625
5626 /**
5627  * cgroup_destroy_locked - the first stage of cgroup destruction
5628  * @cgrp: cgroup to be destroyed
5629  *
5630  * css's make use of percpu refcnts whose killing latency shouldn't be
5631  * exposed to userland and are RCU protected.  Also, cgroup core needs to
5632  * guarantee that css_tryget_online() won't succeed by the time
5633  * ->css_offline() is invoked.  To satisfy all the requirements,
5634  * destruction is implemented in the following two steps.
5635  *
5636  * s1. Verify @cgrp can be destroyed and mark it dying.  Remove all
5637  *     userland visible parts and start killing the percpu refcnts of
5638  *     css's.  Set up so that the next stage will be kicked off once all
5639  *     the percpu refcnts are confirmed to be killed.
5640  *
5641  * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the
5642  *     rest of destruction.  Once all cgroup references are gone, the
5643  *     cgroup is RCU-freed.
5644  *
5645  * This function implements s1.  After this step, @cgrp is gone as far as
5646  * the userland is concerned and a new cgroup with the same name may be
5647  * created.  As cgroup doesn't care about the names internally, this
5648  * doesn't cause any problem.
5649  */
5650 static int cgroup_destroy_locked(struct cgroup *cgrp)
5651         __releases(&cgroup_mutex) __acquires(&cgroup_mutex)
5652 {
5653         struct cgroup *tcgrp, *parent = cgroup_parent(cgrp);
5654         struct cgroup_subsys_state *css;
5655         struct cgrp_cset_link *link;
5656         int ssid;
5657
5658         lockdep_assert_held(&cgroup_mutex);
5659
5660         /*
5661          * Only migration can raise populated from zero and we're already
5662          * holding cgroup_mutex.
5663          */
5664         if (cgroup_is_populated(cgrp))
5665                 return -EBUSY;
5666
5667         /*
5668          * Make sure there's no live children.  We can't test emptiness of
5669          * ->self.children as dead children linger on it while being
5670          * drained; otherwise, "rmdir parent/child parent" may fail.
5671          */
5672         if (css_has_online_children(&cgrp->self))
5673                 return -EBUSY;
5674
5675         /*
5676          * Mark @cgrp and the associated csets dead.  The former prevents
5677          * further task migration and child creation by disabling
5678          * cgroup_lock_live_group().  The latter makes the csets ignored by
5679          * the migration path.
5680          */
5681         cgrp->self.flags &= ~CSS_ONLINE;
5682
5683         spin_lock_irq(&css_set_lock);
5684         list_for_each_entry(link, &cgrp->cset_links, cset_link)
5685                 link->cset->dead = true;
5686         spin_unlock_irq(&css_set_lock);
5687
5688         /* initiate massacre of all css's */
5689         for_each_css(css, ssid, cgrp)
5690                 kill_css(css);
5691
5692         /* clear and remove @cgrp dir, @cgrp has an extra ref on its kn */
5693         css_clear_dir(&cgrp->self);
5694         kernfs_remove(cgrp->kn);
5695
5696         if (parent && cgroup_is_threaded(cgrp))
5697                 parent->nr_threaded_children--;
5698
5699         spin_lock_irq(&css_set_lock);
5700         for (tcgrp = cgroup_parent(cgrp); tcgrp; tcgrp = cgroup_parent(tcgrp)) {
5701                 tcgrp->nr_descendants--;
5702                 tcgrp->nr_dying_descendants++;
5703                 /*
5704                  * If the dying cgroup is frozen, decrease frozen descendants
5705                  * counters of ancestor cgroups.
5706                  */
5707                 if (test_bit(CGRP_FROZEN, &cgrp->flags))
5708                         tcgrp->freezer.nr_frozen_descendants--;
5709         }
5710         spin_unlock_irq(&css_set_lock);
5711
5712         cgroup1_check_for_release(parent);
5713
5714         cgroup_bpf_offline(cgrp);
5715
5716         /* put the base reference */
5717         percpu_ref_kill(&cgrp->self.refcnt);
5718
5719         return 0;
5720 };
5721
5722 int cgroup_rmdir(struct kernfs_node *kn)
5723 {
5724         struct cgroup *cgrp;
5725         int ret = 0;
5726
5727         cgrp = cgroup_kn_lock_live(kn, false);
5728         if (!cgrp)
5729                 return 0;
5730
5731         ret = cgroup_destroy_locked(cgrp);
5732         if (!ret)
5733                 TRACE_CGROUP_PATH(rmdir, cgrp);
5734
5735         cgroup_kn_unlock(kn);
5736         return ret;
5737 }
5738
5739 static struct kernfs_syscall_ops cgroup_kf_syscall_ops = {
5740         .show_options           = cgroup_show_options,
5741         .mkdir                  = cgroup_mkdir,
5742         .rmdir                  = cgroup_rmdir,
5743         .show_path              = cgroup_show_path,
5744 };
5745
5746 static void __init cgroup_init_subsys(struct cgroup_subsys *ss, bool early)
5747 {
5748         struct cgroup_subsys_state *css;
5749
5750         pr_debug("Initializing cgroup subsys %s\n", ss->name);
5751
5752         mutex_lock(&cgroup_mutex);
5753
5754         idr_init(&ss->css_idr);
5755         INIT_LIST_HEAD(&ss->cfts);
5756
5757         /* Create the root cgroup state for this subsystem */
5758         ss->root = &cgrp_dfl_root;
5759         css = ss->css_alloc(cgroup_css(&cgrp_dfl_root.cgrp, ss));
5760         /* We don't handle early failures gracefully */
5761         BUG_ON(IS_ERR(css));
5762         init_and_link_css(css, ss, &cgrp_dfl_root.cgrp);
5763
5764         /*
5765          * Root csses are never destroyed and we can't initialize
5766          * percpu_ref during early init.  Disable refcnting.
5767          */
5768         css->flags |= CSS_NO_REF;
5769
5770         if (early) {
5771                 /* allocation can't be done safely during early init */
5772                 css->id = 1;
5773         } else {
5774                 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2, GFP_KERNEL);
5775                 BUG_ON(css->id < 0);
5776         }
5777
5778         /* Update the init_css_set to contain a subsys
5779          * pointer to this state - since the subsystem is
5780          * newly registered, all tasks and hence the
5781          * init_css_set is in the subsystem's root cgroup. */
5782         init_css_set.subsys[ss->id] = css;
5783
5784         have_fork_callback |= (bool)ss->fork << ss->id;
5785         have_exit_callback |= (bool)ss->exit << ss->id;
5786         have_release_callback |= (bool)ss->release << ss->id;
5787         have_canfork_callback |= (bool)ss->can_fork << ss->id;
5788
5789         /* At system boot, before all subsystems have been
5790          * registered, no tasks have been forked, so we don't
5791          * need to invoke fork callbacks here. */
5792         BUG_ON(!list_empty(&init_task.tasks));
5793
5794         BUG_ON(online_css(css));
5795
5796         mutex_unlock(&cgroup_mutex);
5797 }
5798
5799 /**
5800  * cgroup_init_early - cgroup initialization at system boot
5801  *
5802  * Initialize cgroups at system boot, and initialize any
5803  * subsystems that request early init.
5804  */
5805 int __init cgroup_init_early(void)
5806 {
5807         static struct cgroup_fs_context __initdata ctx;
5808         struct cgroup_subsys *ss;
5809         int i;
5810
5811         ctx.root = &cgrp_dfl_root;
5812         init_cgroup_root(&ctx);
5813         cgrp_dfl_root.cgrp.self.flags |= CSS_NO_REF;
5814
5815         RCU_INIT_POINTER(init_task.cgroups, &init_css_set);
5816
5817         for_each_subsys(ss, i) {
5818                 WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id,
5819                      "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p id:name=%d:%s\n",
5820                      i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free,
5821                      ss->id, ss->name);
5822                 WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN,
5823                      "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]);
5824
5825                 ss->id = i;
5826                 ss->name = cgroup_subsys_name[i];
5827                 if (!ss->legacy_name)
5828                         ss->legacy_name = cgroup_subsys_name[i];
5829
5830                 if (ss->early_init)
5831                         cgroup_init_subsys(ss, true);
5832         }
5833         return 0;
5834 }
5835
5836 /**
5837  * cgroup_init - cgroup initialization
5838  *
5839  * Register cgroup filesystem and /proc file, and initialize
5840  * any subsystems that didn't request early init.
5841  */
5842 int __init cgroup_init(void)
5843 {
5844         struct cgroup_subsys *ss;
5845         int ssid;
5846
5847         BUILD_BUG_ON(CGROUP_SUBSYS_COUNT > 16);
5848         BUG_ON(cgroup_init_cftypes(NULL, cgroup_base_files));
5849         BUG_ON(cgroup_init_cftypes(NULL, cgroup1_base_files));
5850
5851         cgroup_rstat_boot();
5852
5853         /*
5854          * The latency of the synchronize_rcu() is too high for cgroups,
5855          * avoid it at the cost of forcing all readers into the slow path.
5856          */
5857         rcu_sync_enter_start(&cgroup_threadgroup_rwsem.rss);
5858
5859         get_user_ns(init_cgroup_ns.user_ns);
5860
5861         mutex_lock(&cgroup_mutex);
5862
5863         /*
5864          * Add init_css_set to the hash table so that dfl_root can link to
5865          * it during init.
5866          */
5867         hash_add(css_set_table, &init_css_set.hlist,
5868                  css_set_hash(init_css_set.subsys));
5869
5870         BUG_ON(cgroup_setup_root(&cgrp_dfl_root, 0));
5871
5872         mutex_unlock(&cgroup_mutex);
5873
5874         for_each_subsys(ss, ssid) {
5875                 if (ss->early_init) {
5876                         struct cgroup_subsys_state *css =
5877                                 init_css_set.subsys[ss->id];
5878
5879                         css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2,
5880                                                    GFP_KERNEL);
5881                         BUG_ON(css->id < 0);
5882                 } else {
5883                         cgroup_init_subsys(ss, false);
5884                 }
5885
5886                 list_add_tail(&init_css_set.e_cset_node[ssid],
5887                               &cgrp_dfl_root.cgrp.e_csets[ssid]);
5888
5889                 /*
5890                  * Setting dfl_root subsys_mask needs to consider the
5891                  * disabled flag and cftype registration needs kmalloc,
5892                  * both of which aren't available during early_init.
5893                  */
5894                 if (!cgroup_ssid_enabled(ssid))
5895                         continue;
5896
5897                 if (cgroup1_ssid_disabled(ssid))
5898                         printk(KERN_INFO "Disabling %s control group subsystem in v1 mounts\n",
5899                                ss->name);
5900
5901                 cgrp_dfl_root.subsys_mask |= 1 << ss->id;
5902
5903                 /* implicit controllers must be threaded too */
5904                 WARN_ON(ss->implicit_on_dfl && !ss->threaded);
5905
5906                 if (ss->implicit_on_dfl)
5907                         cgrp_dfl_implicit_ss_mask |= 1 << ss->id;
5908                 else if (!ss->dfl_cftypes)
5909                         cgrp_dfl_inhibit_ss_mask |= 1 << ss->id;
5910
5911                 if (ss->threaded)
5912                         cgrp_dfl_threaded_ss_mask |= 1 << ss->id;
5913
5914                 if (ss->dfl_cftypes == ss->legacy_cftypes) {
5915                         WARN_ON(cgroup_add_cftypes(ss, ss->dfl_cftypes));
5916                 } else {
5917                         WARN_ON(cgroup_add_dfl_cftypes(ss, ss->dfl_cftypes));
5918                         WARN_ON(cgroup_add_legacy_cftypes(ss, ss->legacy_cftypes));
5919                 }
5920
5921                 if (ss->bind)
5922                         ss->bind(init_css_set.subsys[ssid]);
5923
5924                 mutex_lock(&cgroup_mutex);
5925                 css_populate_dir(init_css_set.subsys[ssid]);
5926                 mutex_unlock(&cgroup_mutex);
5927         }
5928
5929         /* init_css_set.subsys[] has been updated, re-hash */
5930         hash_del(&init_css_set.hlist);
5931         hash_add(css_set_table, &init_css_set.hlist,
5932                  css_set_hash(init_css_set.subsys));
5933
5934         WARN_ON(sysfs_create_mount_point(fs_kobj, "cgroup"));
5935         WARN_ON(register_filesystem(&cgroup_fs_type));
5936         WARN_ON(register_filesystem(&cgroup2_fs_type));
5937         WARN_ON(!proc_create_single("cgroups", 0, NULL, proc_cgroupstats_show));
5938 #ifdef CONFIG_CPUSETS
5939         WARN_ON(register_filesystem(&cpuset_fs_type));
5940 #endif
5941
5942         return 0;
5943 }
5944
5945 static int __init cgroup_wq_init(void)
5946 {
5947         /*
5948          * There isn't much point in executing destruction path in
5949          * parallel.  Good chunk is serialized with cgroup_mutex anyway.
5950          * Use 1 for @max_active.
5951          *
5952          * We would prefer to do this in cgroup_init() above, but that
5953          * is called before init_workqueues(): so leave this until after.
5954          */
5955         cgroup_destroy_wq = alloc_workqueue("cgroup_destroy", 0, 1);
5956         BUG_ON(!cgroup_destroy_wq);
5957         return 0;
5958 }
5959 core_initcall(cgroup_wq_init);
5960
5961 void cgroup_path_from_kernfs_id(u64 id, char *buf, size_t buflen)
5962 {
5963         struct kernfs_node *kn;
5964
5965         kn = kernfs_find_and_get_node_by_id(cgrp_dfl_root.kf_root, id);
5966         if (!kn)
5967                 return;
5968         kernfs_path(kn, buf, buflen);
5969         kernfs_put(kn);
5970 }
5971
5972 /*
5973  * cgroup_get_from_id : get the cgroup associated with cgroup id
5974  * @id: cgroup id
5975  * On success return the cgrp, on failure return NULL
5976  */
5977 struct cgroup *cgroup_get_from_id(u64 id)
5978 {
5979         struct kernfs_node *kn;
5980         struct cgroup *cgrp = NULL;
5981
5982         mutex_lock(&cgroup_mutex);
5983         kn = kernfs_find_and_get_node_by_id(cgrp_dfl_root.kf_root, id);
5984         if (!kn)
5985                 goto out_unlock;
5986
5987         cgrp = kn->priv;
5988         if (cgroup_is_dead(cgrp) || !cgroup_tryget(cgrp))
5989                 cgrp = NULL;
5990         kernfs_put(kn);
5991 out_unlock:
5992         mutex_unlock(&cgroup_mutex);
5993         return cgrp;
5994 }
5995 EXPORT_SYMBOL_GPL(cgroup_get_from_id);
5996
5997 /*
5998  * proc_cgroup_show()
5999  *  - Print task's cgroup paths into seq_file, one line for each hierarchy
6000  *  - Used for /proc/<pid>/cgroup.
6001  */
6002 int proc_cgroup_show(struct seq_file *m, struct pid_namespace *ns,
6003                      struct pid *pid, struct task_struct *tsk)
6004 {
6005         char *buf;
6006         int retval;
6007         struct cgroup_root *root;
6008
6009         retval = -ENOMEM;
6010         buf = kmalloc(PATH_MAX, GFP_KERNEL);
6011         if (!buf)
6012                 goto out;
6013
6014         mutex_lock(&cgroup_mutex);
6015         spin_lock_irq(&css_set_lock);
6016
6017         for_each_root(root) {
6018                 struct cgroup_subsys *ss;
6019                 struct cgroup *cgrp;
6020                 int ssid, count = 0;
6021
6022                 if (root == &cgrp_dfl_root && !cgrp_dfl_visible)
6023                         continue;
6024
6025                 seq_printf(m, "%d:", root->hierarchy_id);
6026                 if (root != &cgrp_dfl_root)
6027                         for_each_subsys(ss, ssid)
6028                                 if (root->subsys_mask & (1 << ssid))
6029                                         seq_printf(m, "%s%s", count++ ? "," : "",
6030                                                    ss->legacy_name);
6031                 if (strlen(root->name))
6032                         seq_printf(m, "%sname=%s", count ? "," : "",
6033                                    root->name);
6034                 seq_putc(m, ':');
6035
6036                 cgrp = task_cgroup_from_root(tsk, root);
6037
6038                 /*
6039                  * On traditional hierarchies, all zombie tasks show up as
6040                  * belonging to the root cgroup.  On the default hierarchy,
6041                  * while a zombie doesn't show up in "cgroup.procs" and
6042                  * thus can't be migrated, its /proc/PID/cgroup keeps
6043                  * reporting the cgroup it belonged to before exiting.  If
6044                  * the cgroup is removed before the zombie is reaped,
6045                  * " (deleted)" is appended to the cgroup path.
6046                  */
6047                 if (cgroup_on_dfl(cgrp) || !(tsk->flags & PF_EXITING)) {
6048                         retval = cgroup_path_ns_locked(cgrp, buf, PATH_MAX,
6049                                                 current->nsproxy->cgroup_ns);
6050                         if (retval >= PATH_MAX)
6051                                 retval = -ENAMETOOLONG;
6052                         if (retval < 0)
6053                                 goto out_unlock;
6054
6055                         seq_puts(m, buf);
6056                 } else {
6057                         seq_puts(m, "/");
6058                 }
6059
6060                 if (cgroup_on_dfl(cgrp) && cgroup_is_dead(cgrp))
6061                         seq_puts(m, " (deleted)\n");
6062                 else
6063                         seq_putc(m, '\n');
6064         }
6065
6066         retval = 0;
6067 out_unlock:
6068         spin_unlock_irq(&css_set_lock);
6069         mutex_unlock(&cgroup_mutex);
6070         kfree(buf);
6071 out:
6072         return retval;
6073 }
6074
6075 /**
6076  * cgroup_fork - initialize cgroup related fields during copy_process()
6077  * @child: pointer to task_struct of forking parent process.
6078  *
6079  * A task is associated with the init_css_set until cgroup_post_fork()
6080  * attaches it to the target css_set.
6081  */
6082 void cgroup_fork(struct task_struct *child)
6083 {
6084         RCU_INIT_POINTER(child->cgroups, &init_css_set);
6085         INIT_LIST_HEAD(&child->cg_list);
6086 }
6087
6088 static struct cgroup *cgroup_get_from_file(struct file *f)
6089 {
6090         struct cgroup_subsys_state *css;
6091         struct cgroup *cgrp;
6092
6093         css = css_tryget_online_from_dir(f->f_path.dentry, NULL);
6094         if (IS_ERR(css))
6095                 return ERR_CAST(css);
6096
6097         cgrp = css->cgroup;
6098         if (!cgroup_on_dfl(cgrp)) {
6099                 cgroup_put(cgrp);
6100                 return ERR_PTR(-EBADF);
6101         }
6102
6103         return cgrp;
6104 }
6105
6106 /**
6107  * cgroup_css_set_fork - find or create a css_set for a child process
6108  * @kargs: the arguments passed to create the child process
6109  *
6110  * This functions finds or creates a new css_set which the child
6111  * process will be attached to in cgroup_post_fork(). By default,
6112  * the child process will be given the same css_set as its parent.
6113  *
6114  * If CLONE_INTO_CGROUP is specified this function will try to find an
6115  * existing css_set which includes the requested cgroup and if not create
6116  * a new css_set that the child will be attached to later. If this function
6117  * succeeds it will hold cgroup_threadgroup_rwsem on return. If
6118  * CLONE_INTO_CGROUP is requested this function will grab cgroup mutex
6119  * before grabbing cgroup_threadgroup_rwsem and will hold a reference
6120  * to the target cgroup.
6121  */
6122 static int cgroup_css_set_fork(struct kernel_clone_args *kargs)
6123         __acquires(&cgroup_mutex) __acquires(&cgroup_threadgroup_rwsem)
6124 {
6125         int ret;
6126         struct cgroup *dst_cgrp = NULL;
6127         struct css_set *cset;
6128         struct super_block *sb;
6129         struct file *f;
6130
6131         if (kargs->flags & CLONE_INTO_CGROUP)
6132                 mutex_lock(&cgroup_mutex);
6133
6134         cgroup_threadgroup_change_begin(current);
6135
6136         spin_lock_irq(&css_set_lock);
6137         cset = task_css_set(current);
6138         get_css_set(cset);
6139         spin_unlock_irq(&css_set_lock);
6140
6141         if (!(kargs->flags & CLONE_INTO_CGROUP)) {
6142                 kargs->cset = cset;
6143                 return 0;
6144         }
6145
6146         f = fget_raw(kargs->cgroup);
6147         if (!f) {
6148                 ret = -EBADF;
6149                 goto err;
6150         }
6151         sb = f->f_path.dentry->d_sb;
6152
6153         dst_cgrp = cgroup_get_from_file(f);
6154         if (IS_ERR(dst_cgrp)) {
6155                 ret = PTR_ERR(dst_cgrp);
6156                 dst_cgrp = NULL;
6157                 goto err;
6158         }
6159
6160         if (cgroup_is_dead(dst_cgrp)) {
6161                 ret = -ENODEV;
6162                 goto err;
6163         }
6164
6165         /*
6166          * Verify that we the target cgroup is writable for us. This is
6167          * usually done by the vfs layer but since we're not going through
6168          * the vfs layer here we need to do it "manually".
6169          */
6170         ret = cgroup_may_write(dst_cgrp, sb);
6171         if (ret)
6172                 goto err;
6173
6174         ret = cgroup_attach_permissions(cset->dfl_cgrp, dst_cgrp, sb,
6175                                         !(kargs->flags & CLONE_THREAD),
6176                                         current->nsproxy->cgroup_ns);
6177         if (ret)
6178                 goto err;
6179
6180         kargs->cset = find_css_set(cset, dst_cgrp);
6181         if (!kargs->cset) {
6182                 ret = -ENOMEM;
6183                 goto err;
6184         }
6185
6186         put_css_set(cset);
6187         fput(f);
6188         kargs->cgrp = dst_cgrp;
6189         return ret;
6190
6191 err:
6192         cgroup_threadgroup_change_end(current);
6193         mutex_unlock(&cgroup_mutex);
6194         if (f)
6195                 fput(f);
6196         if (dst_cgrp)
6197                 cgroup_put(dst_cgrp);
6198         put_css_set(cset);
6199         if (kargs->cset)
6200                 put_css_set(kargs->cset);
6201         return ret;
6202 }
6203
6204 /**
6205  * cgroup_css_set_put_fork - drop references we took during fork
6206  * @kargs: the arguments passed to create the child process
6207  *
6208  * Drop references to the prepared css_set and target cgroup if
6209  * CLONE_INTO_CGROUP was requested.
6210  */
6211 static void cgroup_css_set_put_fork(struct kernel_clone_args *kargs)
6212         __releases(&cgroup_threadgroup_rwsem) __releases(&cgroup_mutex)
6213 {
6214         cgroup_threadgroup_change_end(current);
6215
6216         if (kargs->flags & CLONE_INTO_CGROUP) {
6217                 struct cgroup *cgrp = kargs->cgrp;
6218                 struct css_set *cset = kargs->cset;
6219
6220                 mutex_unlock(&cgroup_mutex);
6221
6222                 if (cset) {
6223                         put_css_set(cset);
6224                         kargs->cset = NULL;
6225                 }
6226
6227                 if (cgrp) {
6228                         cgroup_put(cgrp);
6229                         kargs->cgrp = NULL;
6230                 }
6231         }
6232 }
6233
6234 /**
6235  * cgroup_can_fork - called on a new task before the process is exposed
6236  * @child: the child process
6237  *
6238  * This prepares a new css_set for the child process which the child will
6239  * be attached to in cgroup_post_fork().
6240  * This calls the subsystem can_fork() callbacks. If the cgroup_can_fork()
6241  * callback returns an error, the fork aborts with that error code. This
6242  * allows for a cgroup subsystem to conditionally allow or deny new forks.
6243  */
6244 int cgroup_can_fork(struct task_struct *child, struct kernel_clone_args *kargs)
6245 {
6246         struct cgroup_subsys *ss;
6247         int i, j, ret;
6248
6249         ret = cgroup_css_set_fork(kargs);
6250         if (ret)
6251                 return ret;
6252
6253         do_each_subsys_mask(ss, i, have_canfork_callback) {
6254                 ret = ss->can_fork(child, kargs->cset);
6255                 if (ret)
6256                         goto out_revert;
6257         } while_each_subsys_mask();
6258
6259         return 0;
6260
6261 out_revert:
6262         for_each_subsys(ss, j) {
6263                 if (j >= i)
6264                         break;
6265                 if (ss->cancel_fork)
6266                         ss->cancel_fork(child, kargs->cset);
6267         }
6268
6269         cgroup_css_set_put_fork(kargs);
6270
6271         return ret;
6272 }
6273
6274 /**
6275  * cgroup_cancel_fork - called if a fork failed after cgroup_can_fork()
6276  * @child: the child process
6277  * @kargs: the arguments passed to create the child process
6278  *
6279  * This calls the cancel_fork() callbacks if a fork failed *after*
6280  * cgroup_can_fork() succeeded and cleans up references we took to
6281  * prepare a new css_set for the child process in cgroup_can_fork().
6282  */
6283 void cgroup_cancel_fork(struct task_struct *child,
6284                         struct kernel_clone_args *kargs)
6285 {
6286         struct cgroup_subsys *ss;
6287         int i;
6288
6289         for_each_subsys(ss, i)
6290                 if (ss->cancel_fork)
6291                         ss->cancel_fork(child, kargs->cset);
6292
6293         cgroup_css_set_put_fork(kargs);
6294 }
6295
6296 /**
6297  * cgroup_post_fork - finalize cgroup setup for the child process
6298  * @child: the child process
6299  *
6300  * Attach the child process to its css_set calling the subsystem fork()
6301  * callbacks.
6302  */
6303 void cgroup_post_fork(struct task_struct *child,
6304                       struct kernel_clone_args *kargs)
6305         __releases(&cgroup_threadgroup_rwsem) __releases(&cgroup_mutex)
6306 {
6307         unsigned long cgrp_flags = 0;
6308         bool kill = false;
6309         struct cgroup_subsys *ss;
6310         struct css_set *cset;
6311         int i;
6312
6313         cset = kargs->cset;
6314         kargs->cset = NULL;
6315
6316         spin_lock_irq(&css_set_lock);
6317
6318         /* init tasks are special, only link regular threads */
6319         if (likely(child->pid)) {
6320                 if (kargs->cgrp)
6321                         cgrp_flags = kargs->cgrp->flags;
6322                 else
6323                         cgrp_flags = cset->dfl_cgrp->flags;
6324
6325                 WARN_ON_ONCE(!list_empty(&child->cg_list));
6326                 cset->nr_tasks++;
6327                 css_set_move_task(child, NULL, cset, false);
6328         } else {
6329                 put_css_set(cset);
6330                 cset = NULL;
6331         }
6332
6333         if (!(child->flags & PF_KTHREAD)) {
6334                 if (unlikely(test_bit(CGRP_FREEZE, &cgrp_flags))) {
6335                         /*
6336                          * If the cgroup has to be frozen, the new task has
6337                          * too. Let's set the JOBCTL_TRAP_FREEZE jobctl bit to
6338                          * get the task into the frozen state.
6339                          */
6340                         spin_lock(&child->sighand->siglock);
6341                         WARN_ON_ONCE(child->frozen);
6342                         child->jobctl |= JOBCTL_TRAP_FREEZE;
6343                         spin_unlock(&child->sighand->siglock);
6344
6345                         /*
6346                          * Calling cgroup_update_frozen() isn't required here,
6347                          * because it will be called anyway a bit later from
6348                          * do_freezer_trap(). So we avoid cgroup's transient
6349                          * switch from the frozen state and back.
6350                          */
6351                 }
6352
6353                 /*
6354                  * If the cgroup is to be killed notice it now and take the
6355                  * child down right after we finished preparing it for
6356                  * userspace.
6357                  */
6358                 kill = test_bit(CGRP_KILL, &cgrp_flags);
6359         }
6360
6361         spin_unlock_irq(&css_set_lock);
6362
6363         /*
6364          * Call ss->fork().  This must happen after @child is linked on
6365          * css_set; otherwise, @child might change state between ->fork()
6366          * and addition to css_set.
6367          */
6368         do_each_subsys_mask(ss, i, have_fork_callback) {
6369                 ss->fork(child);
6370         } while_each_subsys_mask();
6371
6372         /* Make the new cset the root_cset of the new cgroup namespace. */
6373         if (kargs->flags & CLONE_NEWCGROUP) {
6374                 struct css_set *rcset = child->nsproxy->cgroup_ns->root_cset;
6375
6376                 get_css_set(cset);
6377                 child->nsproxy->cgroup_ns->root_cset = cset;
6378                 put_css_set(rcset);
6379         }
6380
6381         /* Cgroup has to be killed so take down child immediately. */
6382         if (unlikely(kill))
6383                 do_send_sig_info(SIGKILL, SEND_SIG_NOINFO, child, PIDTYPE_TGID);
6384
6385         cgroup_css_set_put_fork(kargs);
6386 }
6387
6388 /**
6389  * cgroup_exit - detach cgroup from exiting task
6390  * @tsk: pointer to task_struct of exiting process
6391  *
6392  * Description: Detach cgroup from @tsk.
6393  *
6394  */
6395 void cgroup_exit(struct task_struct *tsk)
6396 {
6397         struct cgroup_subsys *ss;
6398         struct css_set *cset;
6399         int i;
6400
6401         spin_lock_irq(&css_set_lock);
6402
6403         WARN_ON_ONCE(list_empty(&tsk->cg_list));
6404         cset = task_css_set(tsk);
6405         css_set_move_task(tsk, cset, NULL, false);
6406         list_add_tail(&tsk->cg_list, &cset->dying_tasks);
6407         cset->nr_tasks--;
6408
6409         WARN_ON_ONCE(cgroup_task_frozen(tsk));
6410         if (unlikely(!(tsk->flags & PF_KTHREAD) &&
6411                      test_bit(CGRP_FREEZE, &task_dfl_cgroup(tsk)->flags)))
6412                 cgroup_update_frozen(task_dfl_cgroup(tsk));
6413
6414         spin_unlock_irq(&css_set_lock);
6415
6416         /* see cgroup_post_fork() for details */
6417         do_each_subsys_mask(ss, i, have_exit_callback) {
6418                 ss->exit(tsk);
6419         } while_each_subsys_mask();
6420 }
6421
6422 void cgroup_release(struct task_struct *task)
6423 {
6424         struct cgroup_subsys *ss;
6425         int ssid;
6426
6427         do_each_subsys_mask(ss, ssid, have_release_callback) {
6428                 ss->release(task);
6429         } while_each_subsys_mask();
6430
6431         spin_lock_irq(&css_set_lock);
6432         css_set_skip_task_iters(task_css_set(task), task);
6433         list_del_init(&task->cg_list);
6434         spin_unlock_irq(&css_set_lock);
6435 }
6436
6437 void cgroup_free(struct task_struct *task)
6438 {
6439         struct css_set *cset = task_css_set(task);
6440         put_css_set(cset);
6441 }
6442
6443 static int __init cgroup_disable(char *str)
6444 {
6445         struct cgroup_subsys *ss;
6446         char *token;
6447         int i;
6448
6449         while ((token = strsep(&str, ",")) != NULL) {
6450                 if (!*token)
6451                         continue;
6452
6453                 for_each_subsys(ss, i) {
6454                         if (strcmp(token, ss->name) &&
6455                             strcmp(token, ss->legacy_name))
6456                                 continue;
6457
6458                         static_branch_disable(cgroup_subsys_enabled_key[i]);
6459                         pr_info("Disabling %s control group subsystem\n",
6460                                 ss->name);
6461                 }
6462
6463                 for (i = 0; i < OPT_FEATURE_COUNT; i++) {
6464                         if (strcmp(token, cgroup_opt_feature_names[i]))
6465                                 continue;
6466                         cgroup_feature_disable_mask |= 1 << i;
6467                         pr_info("Disabling %s control group feature\n",
6468                                 cgroup_opt_feature_names[i]);
6469                         break;
6470                 }
6471         }
6472         return 1;
6473 }
6474 __setup("cgroup_disable=", cgroup_disable);
6475
6476 void __init __weak enable_debug_cgroup(void) { }
6477
6478 static int __init enable_cgroup_debug(char *str)
6479 {
6480         cgroup_debug = true;
6481         enable_debug_cgroup();
6482         return 1;
6483 }
6484 __setup("cgroup_debug", enable_cgroup_debug);
6485
6486 /**
6487  * css_tryget_online_from_dir - get corresponding css from a cgroup dentry
6488  * @dentry: directory dentry of interest
6489  * @ss: subsystem of interest
6490  *
6491  * If @dentry is a directory for a cgroup which has @ss enabled on it, try
6492  * to get the corresponding css and return it.  If such css doesn't exist
6493  * or can't be pinned, an ERR_PTR value is returned.
6494  */
6495 struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry,
6496                                                        struct cgroup_subsys *ss)
6497 {
6498         struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
6499         struct file_system_type *s_type = dentry->d_sb->s_type;
6500         struct cgroup_subsys_state *css = NULL;
6501         struct cgroup *cgrp;
6502
6503         /* is @dentry a cgroup dir? */
6504         if ((s_type != &cgroup_fs_type && s_type != &cgroup2_fs_type) ||
6505             !kn || kernfs_type(kn) != KERNFS_DIR)
6506                 return ERR_PTR(-EBADF);
6507
6508         rcu_read_lock();
6509
6510         /*
6511          * This path doesn't originate from kernfs and @kn could already
6512          * have been or be removed at any point.  @kn->priv is RCU
6513          * protected for this access.  See css_release_work_fn() for details.
6514          */
6515         cgrp = rcu_dereference(*(void __rcu __force **)&kn->priv);
6516         if (cgrp)
6517                 css = cgroup_css(cgrp, ss);
6518
6519         if (!css || !css_tryget_online(css))
6520                 css = ERR_PTR(-ENOENT);
6521
6522         rcu_read_unlock();
6523         return css;
6524 }
6525
6526 /**
6527  * css_from_id - lookup css by id
6528  * @id: the cgroup id
6529  * @ss: cgroup subsys to be looked into
6530  *
6531  * Returns the css if there's valid one with @id, otherwise returns NULL.
6532  * Should be called under rcu_read_lock().
6533  */
6534 struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss)
6535 {
6536         WARN_ON_ONCE(!rcu_read_lock_held());
6537         return idr_find(&ss->css_idr, id);
6538 }
6539
6540 /**
6541  * cgroup_get_from_path - lookup and get a cgroup from its default hierarchy path
6542  * @path: path on the default hierarchy
6543  *
6544  * Find the cgroup at @path on the default hierarchy, increment its
6545  * reference count and return it.  Returns pointer to the found cgroup on
6546  * success, ERR_PTR(-ENOENT) if @path doesn't exist and ERR_PTR(-ENOTDIR)
6547  * if @path points to a non-directory.
6548  */
6549 struct cgroup *cgroup_get_from_path(const char *path)
6550 {
6551         struct kernfs_node *kn;
6552         struct cgroup *cgrp;
6553
6554         mutex_lock(&cgroup_mutex);
6555
6556         kn = kernfs_walk_and_get(cgrp_dfl_root.cgrp.kn, path);
6557         if (kn) {
6558                 if (kernfs_type(kn) == KERNFS_DIR) {
6559                         cgrp = kn->priv;
6560                         cgroup_get_live(cgrp);
6561                 } else {
6562                         cgrp = ERR_PTR(-ENOTDIR);
6563                 }
6564                 kernfs_put(kn);
6565         } else {
6566                 cgrp = ERR_PTR(-ENOENT);
6567         }
6568
6569         mutex_unlock(&cgroup_mutex);
6570         return cgrp;
6571 }
6572 EXPORT_SYMBOL_GPL(cgroup_get_from_path);
6573
6574 /**
6575  * cgroup_get_from_fd - get a cgroup pointer from a fd
6576  * @fd: fd obtained by open(cgroup2_dir)
6577  *
6578  * Find the cgroup from a fd which should be obtained
6579  * by opening a cgroup directory.  Returns a pointer to the
6580  * cgroup on success. ERR_PTR is returned if the cgroup
6581  * cannot be found.
6582  */
6583 struct cgroup *cgroup_get_from_fd(int fd)
6584 {
6585         struct cgroup *cgrp;
6586         struct file *f;
6587
6588         f = fget_raw(fd);
6589         if (!f)
6590                 return ERR_PTR(-EBADF);
6591
6592         cgrp = cgroup_get_from_file(f);
6593         fput(f);
6594         return cgrp;
6595 }
6596 EXPORT_SYMBOL_GPL(cgroup_get_from_fd);
6597
6598 static u64 power_of_ten(int power)
6599 {
6600         u64 v = 1;
6601         while (power--)
6602                 v *= 10;
6603         return v;
6604 }
6605
6606 /**
6607  * cgroup_parse_float - parse a floating number
6608  * @input: input string
6609  * @dec_shift: number of decimal digits to shift
6610  * @v: output
6611  *
6612  * Parse a decimal floating point number in @input and store the result in
6613  * @v with decimal point right shifted @dec_shift times.  For example, if
6614  * @input is "12.3456" and @dec_shift is 3, *@v will be set to 12345.
6615  * Returns 0 on success, -errno otherwise.
6616  *
6617  * There's nothing cgroup specific about this function except that it's
6618  * currently the only user.
6619  */
6620 int cgroup_parse_float(const char *input, unsigned dec_shift, s64 *v)
6621 {
6622         s64 whole, frac = 0;
6623         int fstart = 0, fend = 0, flen;
6624
6625         if (!sscanf(input, "%lld.%n%lld%n", &whole, &fstart, &frac, &fend))
6626                 return -EINVAL;
6627         if (frac < 0)
6628                 return -EINVAL;
6629
6630         flen = fend > fstart ? fend - fstart : 0;
6631         if (flen < dec_shift)
6632                 frac *= power_of_ten(dec_shift - flen);
6633         else
6634                 frac = DIV_ROUND_CLOSEST_ULL(frac, power_of_ten(flen - dec_shift));
6635
6636         *v = whole * power_of_ten(dec_shift) + frac;
6637         return 0;
6638 }
6639
6640 /*
6641  * sock->sk_cgrp_data handling.  For more info, see sock_cgroup_data
6642  * definition in cgroup-defs.h.
6643  */
6644 #ifdef CONFIG_SOCK_CGROUP_DATA
6645
6646 void cgroup_sk_alloc(struct sock_cgroup_data *skcd)
6647 {
6648         struct cgroup *cgroup;
6649
6650         rcu_read_lock();
6651         /* Don't associate the sock with unrelated interrupted task's cgroup. */
6652         if (in_interrupt()) {
6653                 cgroup = &cgrp_dfl_root.cgrp;
6654                 cgroup_get(cgroup);
6655                 goto out;
6656         }
6657
6658         while (true) {
6659                 struct css_set *cset;
6660
6661                 cset = task_css_set(current);
6662                 if (likely(cgroup_tryget(cset->dfl_cgrp))) {
6663                         cgroup = cset->dfl_cgrp;
6664                         break;
6665                 }
6666                 cpu_relax();
6667         }
6668 out:
6669         skcd->cgroup = cgroup;
6670         cgroup_bpf_get(cgroup);
6671         rcu_read_unlock();
6672 }
6673
6674 void cgroup_sk_clone(struct sock_cgroup_data *skcd)
6675 {
6676         struct cgroup *cgrp = sock_cgroup_ptr(skcd);
6677
6678         /*
6679          * We might be cloning a socket which is left in an empty
6680          * cgroup and the cgroup might have already been rmdir'd.
6681          * Don't use cgroup_get_live().
6682          */
6683         cgroup_get(cgrp);
6684         cgroup_bpf_get(cgrp);
6685 }
6686
6687 void cgroup_sk_free(struct sock_cgroup_data *skcd)
6688 {
6689         struct cgroup *cgrp = sock_cgroup_ptr(skcd);
6690
6691         cgroup_bpf_put(cgrp);
6692         cgroup_put(cgrp);
6693 }
6694
6695 #endif  /* CONFIG_SOCK_CGROUP_DATA */
6696
6697 #ifdef CONFIG_CGROUP_BPF
6698 int cgroup_bpf_attach(struct cgroup *cgrp,
6699                       struct bpf_prog *prog, struct bpf_prog *replace_prog,
6700                       struct bpf_cgroup_link *link,
6701                       enum bpf_attach_type type,
6702                       u32 flags)
6703 {
6704         int ret;
6705
6706         mutex_lock(&cgroup_mutex);
6707         ret = __cgroup_bpf_attach(cgrp, prog, replace_prog, link, type, flags);
6708         mutex_unlock(&cgroup_mutex);
6709         return ret;
6710 }
6711
6712 int cgroup_bpf_detach(struct cgroup *cgrp, struct bpf_prog *prog,
6713                       enum bpf_attach_type type)
6714 {
6715         int ret;
6716
6717         mutex_lock(&cgroup_mutex);
6718         ret = __cgroup_bpf_detach(cgrp, prog, NULL, type);
6719         mutex_unlock(&cgroup_mutex);
6720         return ret;
6721 }
6722
6723 int cgroup_bpf_query(struct cgroup *cgrp, const union bpf_attr *attr,
6724                      union bpf_attr __user *uattr)
6725 {
6726         int ret;
6727
6728         mutex_lock(&cgroup_mutex);
6729         ret = __cgroup_bpf_query(cgrp, attr, uattr);
6730         mutex_unlock(&cgroup_mutex);
6731         return ret;
6732 }
6733 #endif /* CONFIG_CGROUP_BPF */
6734
6735 #ifdef CONFIG_SYSFS
6736 static ssize_t show_delegatable_files(struct cftype *files, char *buf,
6737                                       ssize_t size, const char *prefix)
6738 {
6739         struct cftype *cft;
6740         ssize_t ret = 0;
6741
6742         for (cft = files; cft && cft->name[0] != '\0'; cft++) {
6743                 if (!(cft->flags & CFTYPE_NS_DELEGATABLE))
6744                         continue;
6745
6746                 if ((cft->flags & CFTYPE_PRESSURE) && !cgroup_psi_enabled())
6747                         continue;
6748
6749                 if (prefix)
6750                         ret += snprintf(buf + ret, size - ret, "%s.", prefix);
6751
6752                 ret += snprintf(buf + ret, size - ret, "%s\n", cft->name);
6753
6754                 if (WARN_ON(ret >= size))
6755                         break;
6756         }
6757
6758         return ret;
6759 }
6760
6761 static ssize_t delegate_show(struct kobject *kobj, struct kobj_attribute *attr,
6762                               char *buf)
6763 {
6764         struct cgroup_subsys *ss;
6765         int ssid;
6766         ssize_t ret = 0;
6767
6768         ret = show_delegatable_files(cgroup_base_files, buf, PAGE_SIZE - ret,
6769                                      NULL);
6770
6771         for_each_subsys(ss, ssid)
6772                 ret += show_delegatable_files(ss->dfl_cftypes, buf + ret,
6773                                               PAGE_SIZE - ret,
6774                                               cgroup_subsys_name[ssid]);
6775
6776         return ret;
6777 }
6778 static struct kobj_attribute cgroup_delegate_attr = __ATTR_RO(delegate);
6779
6780 static ssize_t features_show(struct kobject *kobj, struct kobj_attribute *attr,
6781                              char *buf)
6782 {
6783         return snprintf(buf, PAGE_SIZE,
6784                         "nsdelegate\n"
6785                         "memory_localevents\n"
6786                         "memory_recursiveprot\n");
6787 }
6788 static struct kobj_attribute cgroup_features_attr = __ATTR_RO(features);
6789
6790 static struct attribute *cgroup_sysfs_attrs[] = {
6791         &cgroup_delegate_attr.attr,
6792         &cgroup_features_attr.attr,
6793         NULL,
6794 };
6795
6796 static const struct attribute_group cgroup_sysfs_attr_group = {
6797         .attrs = cgroup_sysfs_attrs,
6798         .name = "cgroup",
6799 };
6800
6801 static int __init cgroup_sysfs_init(void)
6802 {
6803         return sysfs_create_group(kernel_kobj, &cgroup_sysfs_attr_group);
6804 }
6805 subsys_initcall(cgroup_sysfs_init);
6806
6807 #endif /* CONFIG_SYSFS */