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