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