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