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