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