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