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