cgroup: deal with dummp_top in cgroup_name() and cgroup_path()
[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
29#include <linux/cgroup.h>
2ce9738b 30#include <linux/cred.h>
c6d57f33 31#include <linux/ctype.h>
ddbcc7e8 32#include <linux/errno.h>
2ce9738b 33#include <linux/init_task.h>
ddbcc7e8
PM
34#include <linux/kernel.h>
35#include <linux/list.h>
36#include <linux/mm.h>
37#include <linux/mutex.h>
38#include <linux/mount.h>
39#include <linux/pagemap.h>
a424316c 40#include <linux/proc_fs.h>
ddbcc7e8
PM
41#include <linux/rcupdate.h>
42#include <linux/sched.h>
ddbcc7e8 43#include <linux/slab.h>
ddbcc7e8 44#include <linux/spinlock.h>
96d365e0 45#include <linux/rwsem.h>
ddbcc7e8 46#include <linux/string.h>
bbcb81d0 47#include <linux/sort.h>
81a6a5cd 48#include <linux/kmod.h>
846c7bb0
BS
49#include <linux/delayacct.h>
50#include <linux/cgroupstats.h>
0ac801fe 51#include <linux/hashtable.h>
096b7fe0 52#include <linux/pid_namespace.h>
2c6ab6d2 53#include <linux/idr.h>
d1d9fd33 54#include <linux/vmalloc.h> /* TODO: replace with more sophisticated array */
081aa458 55#include <linux/flex_array.h> /* used in cgroup_attach_task */
c4c27fbd 56#include <linux/kthread.h>
776f02fa 57#include <linux/delay.h>
846c7bb0 58
60063497 59#include <linux/atomic.h>
ddbcc7e8 60
b1a21367
TH
61/*
62 * pidlists linger the following amount before being destroyed. The goal
63 * is avoiding frequent destruction in the middle of consecutive read calls
64 * Expiring in the middle is a performance problem not a correctness one.
65 * 1 sec should be enough.
66 */
67#define CGROUP_PIDLIST_DESTROY_DELAY HZ
68
8d7e6fb0
TH
69#define CGROUP_FILE_NAME_MAX (MAX_CGROUP_TYPE_NAMELEN + \
70 MAX_CFTYPE_NAME + 2)
71
ace2bee8
TH
72/*
73 * cgroup_tree_mutex nests above cgroup_mutex and protects cftypes, file
74 * creation/removal and hierarchy changing operations including cgroup
75 * creation, removal, css association and controller rebinding. This outer
76 * lock is needed mainly to resolve the circular dependency between kernfs
77 * active ref and cgroup_mutex. cgroup_tree_mutex nests above both.
78 */
79static DEFINE_MUTEX(cgroup_tree_mutex);
80
e25e2cbb
TH
81/*
82 * cgroup_mutex is the master lock. Any modification to cgroup or its
83 * hierarchy must be performed while holding it.
e25e2cbb 84 */
2219449a
TH
85#ifdef CONFIG_PROVE_RCU
86DEFINE_MUTEX(cgroup_mutex);
8af01f56 87EXPORT_SYMBOL_GPL(cgroup_mutex); /* only for lockdep */
2219449a 88#else
81a6a5cd 89static DEFINE_MUTEX(cgroup_mutex);
2219449a
TH
90#endif
91
69e943b7
TH
92/*
93 * Protects cgroup_subsys->release_agent_path. Modifying it also requires
94 * cgroup_mutex. Reading requires either cgroup_mutex or this spinlock.
95 */
96static DEFINE_SPINLOCK(release_agent_path_lock);
97
ace2bee8 98#define cgroup_assert_mutexes_or_rcu_locked() \
87fb54f1 99 rcu_lockdep_assert(rcu_read_lock_held() || \
ace2bee8 100 lockdep_is_held(&cgroup_tree_mutex) || \
87fb54f1 101 lockdep_is_held(&cgroup_mutex), \
ace2bee8 102 "cgroup_[tree_]mutex or RCU read lock required");
87fb54f1 103
e5fca243
TH
104/*
105 * cgroup destruction makes heavy use of work items and there can be a lot
106 * of concurrent destructions. Use a separate workqueue so that cgroup
107 * destruction work items don't end up filling up max_active of system_wq
108 * which may lead to deadlock.
109 */
110static struct workqueue_struct *cgroup_destroy_wq;
111
b1a21367
TH
112/*
113 * pidlist destructions need to be flushed on cgroup destruction. Use a
114 * separate workqueue as flush domain.
115 */
116static struct workqueue_struct *cgroup_pidlist_destroy_wq;
117
3ed80a62 118/* generate an array of cgroup subsystem pointers */
073219e9 119#define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys,
3ed80a62 120static struct cgroup_subsys *cgroup_subsys[] = {
ddbcc7e8
PM
121#include <linux/cgroup_subsys.h>
122};
073219e9
TH
123#undef SUBSYS
124
125/* array of cgroup subsystem names */
126#define SUBSYS(_x) [_x ## _cgrp_id] = #_x,
127static const char *cgroup_subsys_name[] = {
128#include <linux/cgroup_subsys.h>
129};
130#undef SUBSYS
ddbcc7e8 131
ddbcc7e8 132/*
9871bf95
TH
133 * The dummy hierarchy, reserved for the subsystems that are otherwise
134 * unattached - it never has more than a single cgroup, and all tasks are
135 * part of that cgroup.
ddbcc7e8 136 */
9871bf95
TH
137static struct cgroupfs_root cgroup_dummy_root;
138
139/* dummy_top is a shorthand for the dummy hierarchy's top cgroup */
140static struct cgroup * const cgroup_dummy_top = &cgroup_dummy_root.top_cgroup;
ddbcc7e8
PM
141
142/* The list of hierarchy roots */
143
9871bf95
TH
144static LIST_HEAD(cgroup_roots);
145static int cgroup_root_count;
ddbcc7e8 146
3417ae1f 147/* hierarchy ID allocation and mapping, protected by cgroup_mutex */
1a574231 148static DEFINE_IDR(cgroup_hierarchy_idr);
2c6ab6d2 149
794611a1
LZ
150/*
151 * Assign a monotonically increasing serial number to cgroups. It
152 * guarantees cgroups with bigger numbers are newer than those with smaller
153 * numbers. Also, as cgroups are always appended to the parent's
154 * ->children list, it guarantees that sibling cgroups are always sorted in
00356bd5
TH
155 * the ascending serial number order on the list. Protected by
156 * cgroup_mutex.
794611a1 157 */
00356bd5 158static u64 cgroup_serial_nr_next = 1;
794611a1 159
ddbcc7e8 160/* This flag indicates whether tasks in the fork and exit paths should
a043e3b2
LZ
161 * check for fork/exit handlers to call. This avoids us having to do
162 * extra work in the fork/exit path if none of the subsystems need to
163 * be called.
ddbcc7e8 164 */
8947f9d5 165static int need_forkexit_callback __read_mostly;
ddbcc7e8 166
628f7cd4
TH
167static struct cftype cgroup_base_files[];
168
59f5296b 169static void cgroup_put(struct cgroup *cgrp);
f2e85d57
TH
170static int rebind_subsystems(struct cgroupfs_root *root,
171 unsigned long added_mask, unsigned removed_mask);
f20104de 172static void cgroup_destroy_css_killed(struct cgroup *cgrp);
42809dd4 173static int cgroup_destroy_locked(struct cgroup *cgrp);
2bb566cb
TH
174static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
175 bool is_add);
b1a21367 176static void cgroup_pidlist_destroy_all(struct cgroup *cgrp);
42809dd4 177
95109b62
TH
178/**
179 * cgroup_css - obtain a cgroup's css for the specified subsystem
180 * @cgrp: the cgroup of interest
ca8bdcaf 181 * @ss: the subsystem of interest (%NULL returns the dummy_css)
95109b62 182 *
ca8bdcaf
TH
183 * Return @cgrp's css (cgroup_subsys_state) associated with @ss. This
184 * function must be called either under cgroup_mutex or rcu_read_lock() and
185 * the caller is responsible for pinning the returned css if it wants to
186 * keep accessing it outside the said locks. This function may return
187 * %NULL if @cgrp doesn't have @subsys_id enabled.
95109b62
TH
188 */
189static struct cgroup_subsys_state *cgroup_css(struct cgroup *cgrp,
ca8bdcaf 190 struct cgroup_subsys *ss)
95109b62 191{
ca8bdcaf 192 if (ss)
aec25020 193 return rcu_dereference_check(cgrp->subsys[ss->id],
ace2bee8
TH
194 lockdep_is_held(&cgroup_tree_mutex) ||
195 lockdep_is_held(&cgroup_mutex));
ca8bdcaf
TH
196 else
197 return &cgrp->dummy_css;
95109b62 198}
42809dd4 199
ddbcc7e8 200/* convenient tests for these bits */
54766d4a 201static inline bool cgroup_is_dead(const struct cgroup *cgrp)
ddbcc7e8 202{
54766d4a 203 return test_bit(CGRP_DEAD, &cgrp->flags);
ddbcc7e8
PM
204}
205
59f5296b
TH
206struct cgroup_subsys_state *seq_css(struct seq_file *seq)
207{
2bd59d48
TH
208 struct kernfs_open_file *of = seq->private;
209 struct cgroup *cgrp = of->kn->parent->priv;
210 struct cftype *cft = seq_cft(seq);
211
212 /*
213 * This is open and unprotected implementation of cgroup_css().
214 * seq_css() is only called from a kernfs file operation which has
215 * an active reference on the file. Because all the subsystem
216 * files are drained before a css is disassociated with a cgroup,
217 * the matching css from the cgroup's subsys table is guaranteed to
218 * be and stay valid until the enclosing operation is complete.
219 */
220 if (cft->ss)
221 return rcu_dereference_raw(cgrp->subsys[cft->ss->id]);
222 else
223 return &cgrp->dummy_css;
59f5296b
TH
224}
225EXPORT_SYMBOL_GPL(seq_css);
226
78574cf9
LZ
227/**
228 * cgroup_is_descendant - test ancestry
229 * @cgrp: the cgroup to be tested
230 * @ancestor: possible ancestor of @cgrp
231 *
232 * Test whether @cgrp is a descendant of @ancestor. It also returns %true
233 * if @cgrp == @ancestor. This function is safe to call as long as @cgrp
234 * and @ancestor are accessible.
235 */
236bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor)
237{
238 while (cgrp) {
239 if (cgrp == ancestor)
240 return true;
241 cgrp = cgrp->parent;
242 }
243 return false;
244}
ddbcc7e8 245
e9685a03 246static int cgroup_is_releasable(const struct cgroup *cgrp)
81a6a5cd
PM
247{
248 const int bits =
bd89aabc
PM
249 (1 << CGRP_RELEASABLE) |
250 (1 << CGRP_NOTIFY_ON_RELEASE);
251 return (cgrp->flags & bits) == bits;
81a6a5cd
PM
252}
253
e9685a03 254static int notify_on_release(const struct cgroup *cgrp)
81a6a5cd 255{
bd89aabc 256 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
81a6a5cd
PM
257}
258
1c6727af
TH
259/**
260 * for_each_css - iterate all css's of a cgroup
261 * @css: the iteration cursor
262 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
263 * @cgrp: the target cgroup to iterate css's of
264 *
265 * Should be called under cgroup_mutex.
266 */
267#define for_each_css(css, ssid, cgrp) \
268 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
269 if (!((css) = rcu_dereference_check( \
270 (cgrp)->subsys[(ssid)], \
ace2bee8 271 lockdep_is_held(&cgroup_tree_mutex) || \
1c6727af
TH
272 lockdep_is_held(&cgroup_mutex)))) { } \
273 else
274
30159ec7 275/**
3ed80a62 276 * for_each_subsys - iterate all enabled cgroup subsystems
30159ec7 277 * @ss: the iteration cursor
780cd8b3 278 * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end
30159ec7 279 */
780cd8b3 280#define for_each_subsys(ss, ssid) \
3ed80a62
TH
281 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT && \
282 (((ss) = cgroup_subsys[ssid]) || true); (ssid)++)
30159ec7 283
5549c497
TH
284/* iterate across the active hierarchies */
285#define for_each_active_root(root) \
286 list_for_each_entry((root), &cgroup_roots, root_list)
ddbcc7e8 287
7ae1bad9
TH
288/**
289 * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive.
290 * @cgrp: the cgroup to be checked for liveness
291 *
47cfcd09
TH
292 * On success, returns true; the mutex should be later unlocked. On
293 * failure returns false with no lock held.
7ae1bad9 294 */
b9777cf8 295static bool cgroup_lock_live_group(struct cgroup *cgrp)
7ae1bad9
TH
296{
297 mutex_lock(&cgroup_mutex);
54766d4a 298 if (cgroup_is_dead(cgrp)) {
7ae1bad9
TH
299 mutex_unlock(&cgroup_mutex);
300 return false;
301 }
302 return true;
303}
7ae1bad9 304
81a6a5cd
PM
305/* the list of cgroups eligible for automatic release. Protected by
306 * release_list_lock */
307static LIST_HEAD(release_list);
cdcc136f 308static DEFINE_RAW_SPINLOCK(release_list_lock);
81a6a5cd
PM
309static void cgroup_release_agent(struct work_struct *work);
310static DECLARE_WORK(release_agent_work, cgroup_release_agent);
bd89aabc 311static void check_for_release(struct cgroup *cgrp);
81a6a5cd 312
69d0206c
TH
313/*
314 * A cgroup can be associated with multiple css_sets as different tasks may
315 * belong to different cgroups on different hierarchies. In the other
316 * direction, a css_set is naturally associated with multiple cgroups.
317 * This M:N relationship is represented by the following link structure
318 * which exists for each association and allows traversing the associations
319 * from both sides.
320 */
321struct cgrp_cset_link {
322 /* the cgroup and css_set this link associates */
323 struct cgroup *cgrp;
324 struct css_set *cset;
325
326 /* list of cgrp_cset_links anchored at cgrp->cset_links */
327 struct list_head cset_link;
328
329 /* list of cgrp_cset_links anchored at css_set->cgrp_links */
330 struct list_head cgrp_link;
817929ec
PM
331};
332
333/* The default css_set - used by init and its children prior to any
334 * hierarchies being mounted. It contains a pointer to the root state
335 * for each subsystem. Also used to anchor the list of css_sets. Not
336 * reference-counted, to improve performance when child cgroups
337 * haven't been created.
338 */
339
340static struct css_set init_css_set;
69d0206c 341static struct cgrp_cset_link init_cgrp_cset_link;
817929ec 342
0942eeee 343/*
96d365e0
TH
344 * css_set_rwsem protects the list of css_set objects, and the chain of
345 * tasks off each css_set.
0942eeee 346 */
96d365e0 347static DECLARE_RWSEM(css_set_rwsem);
817929ec
PM
348static int css_set_count;
349
7717f7ba
PM
350/*
351 * hash table for cgroup groups. This improves the performance to find
352 * an existing css_set. This hash doesn't (currently) take into
353 * account cgroups in empty hierarchies.
354 */
472b1053 355#define CSS_SET_HASH_BITS 7
0ac801fe 356static DEFINE_HASHTABLE(css_set_table, CSS_SET_HASH_BITS);
472b1053 357
0ac801fe 358static unsigned long css_set_hash(struct cgroup_subsys_state *css[])
472b1053 359{
0ac801fe 360 unsigned long key = 0UL;
30159ec7
TH
361 struct cgroup_subsys *ss;
362 int i;
472b1053 363
30159ec7 364 for_each_subsys(ss, i)
0ac801fe
LZ
365 key += (unsigned long)css[i];
366 key = (key >> 16) ^ key;
472b1053 367
0ac801fe 368 return key;
472b1053
LZ
369}
370
89c5509b 371static void put_css_set_locked(struct css_set *cset, bool taskexit)
b4f48b63 372{
69d0206c 373 struct cgrp_cset_link *link, *tmp_link;
5abb8855 374
89c5509b
TH
375 lockdep_assert_held(&css_set_rwsem);
376
377 if (!atomic_dec_and_test(&cset->refcount))
146aa1bd 378 return;
81a6a5cd 379
2c6ab6d2 380 /* This css_set is dead. unlink it and release cgroup refcounts */
5abb8855 381 hash_del(&cset->hlist);
2c6ab6d2
PM
382 css_set_count--;
383
69d0206c 384 list_for_each_entry_safe(link, tmp_link, &cset->cgrp_links, cgrp_link) {
2c6ab6d2 385 struct cgroup *cgrp = link->cgrp;
5abb8855 386
69d0206c
TH
387 list_del(&link->cset_link);
388 list_del(&link->cgrp_link);
71b5707e 389
96d365e0 390 /* @cgrp can't go away while we're holding css_set_rwsem */
6f3d828f 391 if (list_empty(&cgrp->cset_links) && notify_on_release(cgrp)) {
81a6a5cd 392 if (taskexit)
bd89aabc
PM
393 set_bit(CGRP_RELEASABLE, &cgrp->flags);
394 check_for_release(cgrp);
81a6a5cd 395 }
2c6ab6d2
PM
396
397 kfree(link);
81a6a5cd 398 }
2c6ab6d2 399
5abb8855 400 kfree_rcu(cset, rcu_head);
b4f48b63
PM
401}
402
89c5509b
TH
403static void put_css_set(struct css_set *cset, bool taskexit)
404{
405 /*
406 * Ensure that the refcount doesn't hit zero while any readers
407 * can see it. Similar to atomic_dec_and_lock(), but for an
408 * rwlock
409 */
410 if (atomic_add_unless(&cset->refcount, -1, 1))
411 return;
412
413 down_write(&css_set_rwsem);
414 put_css_set_locked(cset, taskexit);
415 up_write(&css_set_rwsem);
416}
417
817929ec
PM
418/*
419 * refcounted get/put for css_set objects
420 */
5abb8855 421static inline void get_css_set(struct css_set *cset)
817929ec 422{
5abb8855 423 atomic_inc(&cset->refcount);
817929ec
PM
424}
425
b326f9d0 426/**
7717f7ba 427 * compare_css_sets - helper function for find_existing_css_set().
5abb8855
TH
428 * @cset: candidate css_set being tested
429 * @old_cset: existing css_set for a task
7717f7ba
PM
430 * @new_cgrp: cgroup that's being entered by the task
431 * @template: desired set of css pointers in css_set (pre-calculated)
432 *
6f4b7e63 433 * Returns true if "cset" matches "old_cset" except for the hierarchy
7717f7ba
PM
434 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
435 */
5abb8855
TH
436static bool compare_css_sets(struct css_set *cset,
437 struct css_set *old_cset,
7717f7ba
PM
438 struct cgroup *new_cgrp,
439 struct cgroup_subsys_state *template[])
440{
441 struct list_head *l1, *l2;
442
5abb8855 443 if (memcmp(template, cset->subsys, sizeof(cset->subsys))) {
7717f7ba
PM
444 /* Not all subsystems matched */
445 return false;
446 }
447
448 /*
449 * Compare cgroup pointers in order to distinguish between
450 * different cgroups in heirarchies with no subsystems. We
451 * could get by with just this check alone (and skip the
452 * memcmp above) but on most setups the memcmp check will
453 * avoid the need for this more expensive check on almost all
454 * candidates.
455 */
456
69d0206c
TH
457 l1 = &cset->cgrp_links;
458 l2 = &old_cset->cgrp_links;
7717f7ba 459 while (1) {
69d0206c 460 struct cgrp_cset_link *link1, *link2;
5abb8855 461 struct cgroup *cgrp1, *cgrp2;
7717f7ba
PM
462
463 l1 = l1->next;
464 l2 = l2->next;
465 /* See if we reached the end - both lists are equal length. */
69d0206c
TH
466 if (l1 == &cset->cgrp_links) {
467 BUG_ON(l2 != &old_cset->cgrp_links);
7717f7ba
PM
468 break;
469 } else {
69d0206c 470 BUG_ON(l2 == &old_cset->cgrp_links);
7717f7ba
PM
471 }
472 /* Locate the cgroups associated with these links. */
69d0206c
TH
473 link1 = list_entry(l1, struct cgrp_cset_link, cgrp_link);
474 link2 = list_entry(l2, struct cgrp_cset_link, cgrp_link);
475 cgrp1 = link1->cgrp;
476 cgrp2 = link2->cgrp;
7717f7ba 477 /* Hierarchies should be linked in the same order. */
5abb8855 478 BUG_ON(cgrp1->root != cgrp2->root);
7717f7ba
PM
479
480 /*
481 * If this hierarchy is the hierarchy of the cgroup
482 * that's changing, then we need to check that this
483 * css_set points to the new cgroup; if it's any other
484 * hierarchy, then this css_set should point to the
485 * same cgroup as the old css_set.
486 */
5abb8855
TH
487 if (cgrp1->root == new_cgrp->root) {
488 if (cgrp1 != new_cgrp)
7717f7ba
PM
489 return false;
490 } else {
5abb8855 491 if (cgrp1 != cgrp2)
7717f7ba
PM
492 return false;
493 }
494 }
495 return true;
496}
497
b326f9d0
TH
498/**
499 * find_existing_css_set - init css array and find the matching css_set
500 * @old_cset: the css_set that we're using before the cgroup transition
501 * @cgrp: the cgroup that we're moving into
502 * @template: out param for the new set of csses, should be clear on entry
817929ec 503 */
5abb8855
TH
504static struct css_set *find_existing_css_set(struct css_set *old_cset,
505 struct cgroup *cgrp,
506 struct cgroup_subsys_state *template[])
b4f48b63 507{
bd89aabc 508 struct cgroupfs_root *root = cgrp->root;
30159ec7 509 struct cgroup_subsys *ss;
5abb8855 510 struct css_set *cset;
0ac801fe 511 unsigned long key;
b326f9d0 512 int i;
817929ec 513
aae8aab4
BB
514 /*
515 * Build the set of subsystem state objects that we want to see in the
516 * new css_set. while subsystems can change globally, the entries here
517 * won't change, so no need for locking.
518 */
30159ec7 519 for_each_subsys(ss, i) {
a1a71b45 520 if (root->subsys_mask & (1UL << i)) {
817929ec
PM
521 /* Subsystem is in this hierarchy. So we want
522 * the subsystem state from the new
523 * cgroup */
ca8bdcaf 524 template[i] = cgroup_css(cgrp, ss);
817929ec
PM
525 } else {
526 /* Subsystem is not in this hierarchy, so we
527 * don't want to change the subsystem state */
5abb8855 528 template[i] = old_cset->subsys[i];
817929ec
PM
529 }
530 }
531
0ac801fe 532 key = css_set_hash(template);
5abb8855
TH
533 hash_for_each_possible(css_set_table, cset, hlist, key) {
534 if (!compare_css_sets(cset, old_cset, cgrp, template))
7717f7ba
PM
535 continue;
536
537 /* This css_set matches what we need */
5abb8855 538 return cset;
472b1053 539 }
817929ec
PM
540
541 /* No existing cgroup group matched */
542 return NULL;
543}
544
69d0206c 545static void free_cgrp_cset_links(struct list_head *links_to_free)
36553434 546{
69d0206c 547 struct cgrp_cset_link *link, *tmp_link;
36553434 548
69d0206c
TH
549 list_for_each_entry_safe(link, tmp_link, links_to_free, cset_link) {
550 list_del(&link->cset_link);
36553434
LZ
551 kfree(link);
552 }
553}
554
69d0206c
TH
555/**
556 * allocate_cgrp_cset_links - allocate cgrp_cset_links
557 * @count: the number of links to allocate
558 * @tmp_links: list_head the allocated links are put on
559 *
560 * Allocate @count cgrp_cset_link structures and chain them on @tmp_links
561 * through ->cset_link. Returns 0 on success or -errno.
817929ec 562 */
69d0206c 563static int allocate_cgrp_cset_links(int count, struct list_head *tmp_links)
817929ec 564{
69d0206c 565 struct cgrp_cset_link *link;
817929ec 566 int i;
69d0206c
TH
567
568 INIT_LIST_HEAD(tmp_links);
569
817929ec 570 for (i = 0; i < count; i++) {
f4f4be2b 571 link = kzalloc(sizeof(*link), GFP_KERNEL);
817929ec 572 if (!link) {
69d0206c 573 free_cgrp_cset_links(tmp_links);
817929ec
PM
574 return -ENOMEM;
575 }
69d0206c 576 list_add(&link->cset_link, tmp_links);
817929ec
PM
577 }
578 return 0;
579}
580
c12f65d4
LZ
581/**
582 * link_css_set - a helper function to link a css_set to a cgroup
69d0206c 583 * @tmp_links: cgrp_cset_link objects allocated by allocate_cgrp_cset_links()
5abb8855 584 * @cset: the css_set to be linked
c12f65d4
LZ
585 * @cgrp: the destination cgroup
586 */
69d0206c
TH
587static void link_css_set(struct list_head *tmp_links, struct css_set *cset,
588 struct cgroup *cgrp)
c12f65d4 589{
69d0206c 590 struct cgrp_cset_link *link;
c12f65d4 591
69d0206c
TH
592 BUG_ON(list_empty(tmp_links));
593 link = list_first_entry(tmp_links, struct cgrp_cset_link, cset_link);
594 link->cset = cset;
7717f7ba 595 link->cgrp = cgrp;
69d0206c 596 list_move(&link->cset_link, &cgrp->cset_links);
7717f7ba
PM
597 /*
598 * Always add links to the tail of the list so that the list
599 * is sorted by order of hierarchy creation
600 */
69d0206c 601 list_add_tail(&link->cgrp_link, &cset->cgrp_links);
c12f65d4
LZ
602}
603
b326f9d0
TH
604/**
605 * find_css_set - return a new css_set with one cgroup updated
606 * @old_cset: the baseline css_set
607 * @cgrp: the cgroup to be updated
608 *
609 * Return a new css_set that's equivalent to @old_cset, but with @cgrp
610 * substituted into the appropriate hierarchy.
817929ec 611 */
5abb8855
TH
612static struct css_set *find_css_set(struct css_set *old_cset,
613 struct cgroup *cgrp)
817929ec 614{
b326f9d0 615 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT] = { };
5abb8855 616 struct css_set *cset;
69d0206c
TH
617 struct list_head tmp_links;
618 struct cgrp_cset_link *link;
0ac801fe 619 unsigned long key;
472b1053 620
b326f9d0
TH
621 lockdep_assert_held(&cgroup_mutex);
622
817929ec
PM
623 /* First see if we already have a cgroup group that matches
624 * the desired set */
96d365e0 625 down_read(&css_set_rwsem);
5abb8855
TH
626 cset = find_existing_css_set(old_cset, cgrp, template);
627 if (cset)
628 get_css_set(cset);
96d365e0 629 up_read(&css_set_rwsem);
817929ec 630
5abb8855
TH
631 if (cset)
632 return cset;
817929ec 633
f4f4be2b 634 cset = kzalloc(sizeof(*cset), GFP_KERNEL);
5abb8855 635 if (!cset)
817929ec
PM
636 return NULL;
637
69d0206c 638 /* Allocate all the cgrp_cset_link objects that we'll need */
9871bf95 639 if (allocate_cgrp_cset_links(cgroup_root_count, &tmp_links) < 0) {
5abb8855 640 kfree(cset);
817929ec
PM
641 return NULL;
642 }
643
5abb8855 644 atomic_set(&cset->refcount, 1);
69d0206c 645 INIT_LIST_HEAD(&cset->cgrp_links);
5abb8855
TH
646 INIT_LIST_HEAD(&cset->tasks);
647 INIT_HLIST_NODE(&cset->hlist);
817929ec
PM
648
649 /* Copy the set of subsystem state objects generated in
650 * find_existing_css_set() */
5abb8855 651 memcpy(cset->subsys, template, sizeof(cset->subsys));
817929ec 652
96d365e0 653 down_write(&css_set_rwsem);
817929ec 654 /* Add reference counts and links from the new css_set. */
69d0206c 655 list_for_each_entry(link, &old_cset->cgrp_links, cgrp_link) {
7717f7ba 656 struct cgroup *c = link->cgrp;
69d0206c 657
7717f7ba
PM
658 if (c->root == cgrp->root)
659 c = cgrp;
69d0206c 660 link_css_set(&tmp_links, cset, c);
7717f7ba 661 }
817929ec 662
69d0206c 663 BUG_ON(!list_empty(&tmp_links));
817929ec 664
817929ec 665 css_set_count++;
472b1053
LZ
666
667 /* Add this cgroup group to the hash table */
5abb8855
TH
668 key = css_set_hash(cset->subsys);
669 hash_add(css_set_table, &cset->hlist, key);
472b1053 670
96d365e0 671 up_write(&css_set_rwsem);
817929ec 672
5abb8855 673 return cset;
b4f48b63
PM
674}
675
2bd59d48
TH
676static struct cgroupfs_root *cgroup_root_from_kf(struct kernfs_root *kf_root)
677{
678 struct cgroup *top_cgrp = kf_root->kn->priv;
679
680 return top_cgrp->root;
681}
682
f2e85d57
TH
683static int cgroup_init_root_id(struct cgroupfs_root *root, int start, int end)
684{
685 int id;
686
687 lockdep_assert_held(&cgroup_mutex);
688
689 id = idr_alloc_cyclic(&cgroup_hierarchy_idr, root, start, end,
690 GFP_KERNEL);
691 if (id < 0)
692 return id;
693
694 root->hierarchy_id = id;
695 return 0;
696}
697
698static void cgroup_exit_root_id(struct cgroupfs_root *root)
699{
700 lockdep_assert_held(&cgroup_mutex);
701
702 if (root->hierarchy_id) {
703 idr_remove(&cgroup_hierarchy_idr, root->hierarchy_id);
704 root->hierarchy_id = 0;
705 }
706}
707
708static void cgroup_free_root(struct cgroupfs_root *root)
709{
710 if (root) {
711 /* hierarhcy ID shoulid already have been released */
712 WARN_ON_ONCE(root->hierarchy_id);
713
714 idr_destroy(&root->cgroup_idr);
715 kfree(root);
716 }
717}
718
776f02fa 719static void cgroup_destroy_root(struct cgroupfs_root *root)
59f5296b 720{
f2e85d57
TH
721 struct cgroup *cgrp = &root->top_cgroup;
722 struct cgrp_cset_link *link, *tmp_link;
f2e85d57 723
2bd59d48 724 mutex_lock(&cgroup_tree_mutex);
2bd59d48 725 mutex_lock(&cgroup_mutex);
f2e85d57 726
776f02fa 727 BUG_ON(atomic_read(&root->nr_cgrps));
f2e85d57
TH
728 BUG_ON(!list_empty(&cgrp->children));
729
f2e85d57 730 /* Rebind all subsystems back to the default hierarchy */
35585573 731 WARN_ON(rebind_subsystems(root, 0, root->subsys_mask));
f2e85d57
TH
732
733 /*
734 * Release all the links from cset_links to this hierarchy's
735 * root cgroup
736 */
96d365e0 737 down_write(&css_set_rwsem);
f2e85d57
TH
738
739 list_for_each_entry_safe(link, tmp_link, &cgrp->cset_links, cset_link) {
740 list_del(&link->cset_link);
741 list_del(&link->cgrp_link);
742 kfree(link);
743 }
96d365e0 744 up_write(&css_set_rwsem);
f2e85d57
TH
745
746 if (!list_empty(&root->root_list)) {
747 list_del(&root->root_list);
748 cgroup_root_count--;
749 }
750
751 cgroup_exit_root_id(root);
752
753 mutex_unlock(&cgroup_mutex);
754 mutex_unlock(&cgroup_tree_mutex);
f2e85d57 755
2bd59d48 756 kernfs_destroy_root(root->kf_root);
f2e85d57
TH
757 cgroup_free_root(root);
758}
759
7717f7ba
PM
760/*
761 * Return the cgroup for "task" from the given hierarchy. Must be
96d365e0 762 * called with cgroup_mutex and css_set_rwsem held.
7717f7ba
PM
763 */
764static struct cgroup *task_cgroup_from_root(struct task_struct *task,
765 struct cgroupfs_root *root)
766{
5abb8855 767 struct css_set *cset;
7717f7ba
PM
768 struct cgroup *res = NULL;
769
96d365e0
TH
770 lockdep_assert_held(&cgroup_mutex);
771 lockdep_assert_held(&css_set_rwsem);
772
7717f7ba
PM
773 /*
774 * No need to lock the task - since we hold cgroup_mutex the
775 * task can't change groups, so the only thing that can happen
776 * is that it exits and its css is set back to init_css_set.
777 */
a8ad805c 778 cset = task_css_set(task);
5abb8855 779 if (cset == &init_css_set) {
7717f7ba
PM
780 res = &root->top_cgroup;
781 } else {
69d0206c
TH
782 struct cgrp_cset_link *link;
783
784 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
7717f7ba 785 struct cgroup *c = link->cgrp;
69d0206c 786
7717f7ba
PM
787 if (c->root == root) {
788 res = c;
789 break;
790 }
791 }
792 }
96d365e0 793
7717f7ba
PM
794 BUG_ON(!res);
795 return res;
796}
797
ddbcc7e8
PM
798/*
799 * There is one global cgroup mutex. We also require taking
800 * task_lock() when dereferencing a task's cgroup subsys pointers.
801 * See "The task_lock() exception", at the end of this comment.
802 *
803 * A task must hold cgroup_mutex to modify cgroups.
804 *
805 * Any task can increment and decrement the count field without lock.
806 * So in general, code holding cgroup_mutex can't rely on the count
807 * field not changing. However, if the count goes to zero, then only
956db3ca 808 * cgroup_attach_task() can increment it again. Because a count of zero
ddbcc7e8
PM
809 * means that no tasks are currently attached, therefore there is no
810 * way a task attached to that cgroup can fork (the other way to
811 * increment the count). So code holding cgroup_mutex can safely
812 * assume that if the count is zero, it will stay zero. Similarly, if
813 * a task holds cgroup_mutex on a cgroup with zero count, it
814 * knows that the cgroup won't be removed, as cgroup_rmdir()
815 * needs that mutex.
816 *
ddbcc7e8
PM
817 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
818 * (usually) take cgroup_mutex. These are the two most performance
819 * critical pieces of code here. The exception occurs on cgroup_exit(),
820 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
821 * is taken, and if the cgroup count is zero, a usermode call made
a043e3b2
LZ
822 * to the release agent with the name of the cgroup (path relative to
823 * the root of cgroup file system) as the argument.
ddbcc7e8
PM
824 *
825 * A cgroup can only be deleted if both its 'count' of using tasks
826 * is zero, and its list of 'children' cgroups is empty. Since all
827 * tasks in the system use _some_ cgroup, and since there is always at
828 * least one task in the system (init, pid == 1), therefore, top_cgroup
829 * always has either children cgroups and/or using tasks. So we don't
830 * need a special hack to ensure that top_cgroup cannot be deleted.
831 *
832 * The task_lock() exception
833 *
834 * The need for this exception arises from the action of
d0b2fdd2 835 * cgroup_attach_task(), which overwrites one task's cgroup pointer with
a043e3b2 836 * another. It does so using cgroup_mutex, however there are
ddbcc7e8
PM
837 * several performance critical places that need to reference
838 * task->cgroup without the expense of grabbing a system global
839 * mutex. Therefore except as noted below, when dereferencing or, as
d0b2fdd2 840 * in cgroup_attach_task(), modifying a task's cgroup pointer we use
ddbcc7e8
PM
841 * task_lock(), which acts on a spinlock (task->alloc_lock) already in
842 * the task_struct routinely used for such matters.
843 *
844 * P.S. One more locking exception. RCU is used to guard the
956db3ca 845 * update of a tasks cgroup pointer by cgroup_attach_task()
ddbcc7e8
PM
846 */
847
628f7cd4 848static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask);
2bd59d48 849static struct kernfs_syscall_ops cgroup_kf_syscall_ops;
828c0950 850static const struct file_operations proc_cgroupstats_operations;
a424316c 851
8d7e6fb0
TH
852static char *cgroup_file_name(struct cgroup *cgrp, const struct cftype *cft,
853 char *buf)
854{
855 if (cft->ss && !(cft->flags & CFTYPE_NO_PREFIX) &&
856 !(cgrp->root->flags & CGRP_ROOT_NOPREFIX))
857 snprintf(buf, CGROUP_FILE_NAME_MAX, "%s.%s",
858 cft->ss->name, cft->name);
859 else
860 strncpy(buf, cft->name, CGROUP_FILE_NAME_MAX);
861 return buf;
862}
863
f2e85d57
TH
864/**
865 * cgroup_file_mode - deduce file mode of a control file
866 * @cft: the control file in question
867 *
868 * returns cft->mode if ->mode is not 0
869 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
870 * returns S_IRUGO if it has only a read handler
871 * returns S_IWUSR if it has only a write hander
872 */
873static umode_t cgroup_file_mode(const struct cftype *cft)
874{
875 umode_t mode = 0;
876
877 if (cft->mode)
878 return cft->mode;
879
880 if (cft->read_u64 || cft->read_s64 || cft->seq_show)
881 mode |= S_IRUGO;
882
883 if (cft->write_u64 || cft->write_s64 || cft->write_string ||
884 cft->trigger)
885 mode |= S_IWUSR;
886
887 return mode;
888}
889
be445626
LZ
890static void cgroup_free_fn(struct work_struct *work)
891{
ea15f8cc 892 struct cgroup *cgrp = container_of(work, struct cgroup, destroy_work);
be445626 893
3c9c825b 894 atomic_dec(&cgrp->root->nr_cgrps);
b1a21367 895 cgroup_pidlist_destroy_all(cgrp);
be445626 896
776f02fa
TH
897 if (cgrp->parent) {
898 /*
899 * We get a ref to the parent, and put the ref when this
900 * cgroup is being freed, so it's guaranteed that the
901 * parent won't be destroyed before its children.
902 */
903 cgroup_put(cgrp->parent);
904 kernfs_put(cgrp->kn);
905 kfree(cgrp);
906 } else {
907 /*
908 * This is top cgroup's refcnt reaching zero, which
909 * indicates that the root should be released.
910 */
911 cgroup_destroy_root(cgrp->root);
912 }
be445626
LZ
913}
914
915static void cgroup_free_rcu(struct rcu_head *head)
916{
917 struct cgroup *cgrp = container_of(head, struct cgroup, rcu_head);
918
ea15f8cc 919 INIT_WORK(&cgrp->destroy_work, cgroup_free_fn);
e5fca243 920 queue_work(cgroup_destroy_wq, &cgrp->destroy_work);
be445626
LZ
921}
922
59f5296b
TH
923static void cgroup_get(struct cgroup *cgrp)
924{
2bd59d48
TH
925 WARN_ON_ONCE(cgroup_is_dead(cgrp));
926 WARN_ON_ONCE(atomic_read(&cgrp->refcnt) <= 0);
927 atomic_inc(&cgrp->refcnt);
ddbcc7e8
PM
928}
929
59f5296b
TH
930static void cgroup_put(struct cgroup *cgrp)
931{
2bd59d48
TH
932 if (!atomic_dec_and_test(&cgrp->refcnt))
933 return;
776f02fa 934 if (WARN_ON_ONCE(cgrp->parent && !cgroup_is_dead(cgrp)))
2bd59d48 935 return;
59f5296b 936
2bd59d48
TH
937 /*
938 * XXX: cgrp->id is only used to look up css's. As cgroup and
939 * css's lifetimes will be decoupled, it should be made
940 * per-subsystem and moved to css->id so that lookups are
941 * successful until the target css is released.
942 */
943 mutex_lock(&cgroup_mutex);
944 idr_remove(&cgrp->root->cgroup_idr, cgrp->id);
945 mutex_unlock(&cgroup_mutex);
946 cgrp->id = -1;
ddbcc7e8 947
2bd59d48 948 call_rcu(&cgrp->rcu_head, cgroup_free_rcu);
ddbcc7e8
PM
949}
950
2739d3cc 951static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
05ef1d7c 952{
2bd59d48 953 char name[CGROUP_FILE_NAME_MAX];
05ef1d7c 954
ace2bee8 955 lockdep_assert_held(&cgroup_tree_mutex);
2bd59d48 956 kernfs_remove_by_name(cgrp->kn, cgroup_file_name(cgrp, cft, name));
05ef1d7c
TH
957}
958
13af07df 959/**
628f7cd4 960 * cgroup_clear_dir - remove subsys files in a cgroup directory
8f89140a 961 * @cgrp: target cgroup
13af07df
AR
962 * @subsys_mask: mask of the subsystem ids whose files should be removed
963 */
628f7cd4 964static void cgroup_clear_dir(struct cgroup *cgrp, unsigned long subsys_mask)
05ef1d7c 965{
13af07df 966 struct cgroup_subsys *ss;
b420ba7d 967 int i;
05ef1d7c 968
b420ba7d 969 for_each_subsys(ss, i) {
0adb0704 970 struct cftype *cfts;
b420ba7d
TH
971
972 if (!test_bit(i, &subsys_mask))
13af07df 973 continue;
0adb0704
TH
974 list_for_each_entry(cfts, &ss->cfts, node)
975 cgroup_addrm_files(cgrp, cfts, false);
13af07df 976 }
ddbcc7e8
PM
977}
978
ddbcc7e8 979static int rebind_subsystems(struct cgroupfs_root *root,
a8a648c4 980 unsigned long added_mask, unsigned removed_mask)
ddbcc7e8 981{
bd89aabc 982 struct cgroup *cgrp = &root->top_cgroup;
30159ec7 983 struct cgroup_subsys *ss;
3126121f 984 int i, ret;
ddbcc7e8 985
ace2bee8
TH
986 lockdep_assert_held(&cgroup_tree_mutex);
987 lockdep_assert_held(&cgroup_mutex);
aae8aab4 988
ddbcc7e8 989 /* Check that any added subsystems are currently free */
3ed80a62
TH
990 for_each_subsys(ss, i)
991 if ((added_mask & (1 << i)) && ss->root != &cgroup_dummy_root)
992 return -EBUSY;
ddbcc7e8 993
3126121f
TH
994 ret = cgroup_populate_dir(cgrp, added_mask);
995 if (ret)
3ed80a62 996 return ret;
3126121f
TH
997
998 /*
999 * Nothing can fail from this point on. Remove files for the
1000 * removed subsystems and rebind each subsystem.
1001 */
4ac06017 1002 mutex_unlock(&cgroup_mutex);
3126121f 1003 cgroup_clear_dir(cgrp, removed_mask);
4ac06017 1004 mutex_lock(&cgroup_mutex);
ddbcc7e8 1005
30159ec7 1006 for_each_subsys(ss, i) {
ddbcc7e8 1007 unsigned long bit = 1UL << i;
30159ec7 1008
a1a71b45 1009 if (bit & added_mask) {
ddbcc7e8 1010 /* We're binding this subsystem to this hierarchy */
ca8bdcaf
TH
1011 BUG_ON(cgroup_css(cgrp, ss));
1012 BUG_ON(!cgroup_css(cgroup_dummy_top, ss));
1013 BUG_ON(cgroup_css(cgroup_dummy_top, ss)->cgroup != cgroup_dummy_top);
a8a648c4 1014
73e80ed8 1015 rcu_assign_pointer(cgrp->subsys[i],
ca8bdcaf
TH
1016 cgroup_css(cgroup_dummy_top, ss));
1017 cgroup_css(cgrp, ss)->cgroup = cgrp;
a8a648c4 1018
b2aa30f7 1019 ss->root = root;
ddbcc7e8 1020 if (ss->bind)
ca8bdcaf 1021 ss->bind(cgroup_css(cgrp, ss));
a8a648c4 1022
cf5d5941 1023 /* refcount was already taken, and we're keeping it */
a8a648c4 1024 root->subsys_mask |= bit;
a1a71b45 1025 } else if (bit & removed_mask) {
ddbcc7e8 1026 /* We're removing this subsystem */
ca8bdcaf
TH
1027 BUG_ON(cgroup_css(cgrp, ss) != cgroup_css(cgroup_dummy_top, ss));
1028 BUG_ON(cgroup_css(cgrp, ss)->cgroup != cgrp);
a8a648c4 1029
ddbcc7e8 1030 if (ss->bind)
ca8bdcaf 1031 ss->bind(cgroup_css(cgroup_dummy_top, ss));
73e80ed8 1032
ca8bdcaf 1033 cgroup_css(cgroup_dummy_top, ss)->cgroup = cgroup_dummy_top;
73e80ed8
TH
1034 RCU_INIT_POINTER(cgrp->subsys[i], NULL);
1035
9871bf95 1036 cgroup_subsys[i]->root = &cgroup_dummy_root;
a8a648c4 1037 root->subsys_mask &= ~bit;
ddbcc7e8
PM
1038 }
1039 }
ddbcc7e8 1040
2bd59d48 1041 kernfs_activate(cgrp->kn);
ddbcc7e8
PM
1042 return 0;
1043}
1044
2bd59d48
TH
1045static int cgroup_show_options(struct seq_file *seq,
1046 struct kernfs_root *kf_root)
ddbcc7e8 1047{
2bd59d48 1048 struct cgroupfs_root *root = cgroup_root_from_kf(kf_root);
ddbcc7e8 1049 struct cgroup_subsys *ss;
b85d2040 1050 int ssid;
ddbcc7e8 1051
b85d2040
TH
1052 for_each_subsys(ss, ssid)
1053 if (root->subsys_mask & (1 << ssid))
1054 seq_printf(seq, ",%s", ss->name);
873fe09e
TH
1055 if (root->flags & CGRP_ROOT_SANE_BEHAVIOR)
1056 seq_puts(seq, ",sane_behavior");
93438629 1057 if (root->flags & CGRP_ROOT_NOPREFIX)
ddbcc7e8 1058 seq_puts(seq, ",noprefix");
93438629 1059 if (root->flags & CGRP_ROOT_XATTR)
03b1cde6 1060 seq_puts(seq, ",xattr");
69e943b7
TH
1061
1062 spin_lock(&release_agent_path_lock);
81a6a5cd
PM
1063 if (strlen(root->release_agent_path))
1064 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
69e943b7
TH
1065 spin_unlock(&release_agent_path_lock);
1066
2260e7fc 1067 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->top_cgroup.flags))
97978e6d 1068 seq_puts(seq, ",clone_children");
c6d57f33
PM
1069 if (strlen(root->name))
1070 seq_printf(seq, ",name=%s", root->name);
ddbcc7e8
PM
1071 return 0;
1072}
1073
1074struct cgroup_sb_opts {
a1a71b45 1075 unsigned long subsys_mask;
ddbcc7e8 1076 unsigned long flags;
81a6a5cd 1077 char *release_agent;
2260e7fc 1078 bool cpuset_clone_children;
c6d57f33 1079 char *name;
2c6ab6d2
PM
1080 /* User explicitly requested empty subsystem */
1081 bool none;
ddbcc7e8
PM
1082};
1083
aae8aab4 1084/*
9871bf95
TH
1085 * Convert a hierarchy specifier into a bitmask of subsystems and
1086 * flags. Call with cgroup_mutex held to protect the cgroup_subsys[]
1087 * array. This function takes refcounts on subsystems to be used, unless it
1088 * returns error, in which case no refcounts are taken.
aae8aab4 1089 */
cf5d5941 1090static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
ddbcc7e8 1091{
32a8cf23
DL
1092 char *token, *o = data;
1093 bool all_ss = false, one_ss = false;
f9ab5b5b 1094 unsigned long mask = (unsigned long)-1;
30159ec7
TH
1095 struct cgroup_subsys *ss;
1096 int i;
f9ab5b5b 1097
aae8aab4
BB
1098 BUG_ON(!mutex_is_locked(&cgroup_mutex));
1099
f9ab5b5b 1100#ifdef CONFIG_CPUSETS
073219e9 1101 mask = ~(1UL << cpuset_cgrp_id);
f9ab5b5b 1102#endif
ddbcc7e8 1103
c6d57f33 1104 memset(opts, 0, sizeof(*opts));
ddbcc7e8
PM
1105
1106 while ((token = strsep(&o, ",")) != NULL) {
1107 if (!*token)
1108 return -EINVAL;
32a8cf23 1109 if (!strcmp(token, "none")) {
2c6ab6d2
PM
1110 /* Explicitly have no subsystems */
1111 opts->none = true;
32a8cf23
DL
1112 continue;
1113 }
1114 if (!strcmp(token, "all")) {
1115 /* Mutually exclusive option 'all' + subsystem name */
1116 if (one_ss)
1117 return -EINVAL;
1118 all_ss = true;
1119 continue;
1120 }
873fe09e
TH
1121 if (!strcmp(token, "__DEVEL__sane_behavior")) {
1122 opts->flags |= CGRP_ROOT_SANE_BEHAVIOR;
1123 continue;
1124 }
32a8cf23 1125 if (!strcmp(token, "noprefix")) {
93438629 1126 opts->flags |= CGRP_ROOT_NOPREFIX;
32a8cf23
DL
1127 continue;
1128 }
1129 if (!strcmp(token, "clone_children")) {
2260e7fc 1130 opts->cpuset_clone_children = true;
32a8cf23
DL
1131 continue;
1132 }
03b1cde6 1133 if (!strcmp(token, "xattr")) {
93438629 1134 opts->flags |= CGRP_ROOT_XATTR;
03b1cde6
AR
1135 continue;
1136 }
32a8cf23 1137 if (!strncmp(token, "release_agent=", 14)) {
81a6a5cd
PM
1138 /* Specifying two release agents is forbidden */
1139 if (opts->release_agent)
1140 return -EINVAL;
c6d57f33 1141 opts->release_agent =
e400c285 1142 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
81a6a5cd
PM
1143 if (!opts->release_agent)
1144 return -ENOMEM;
32a8cf23
DL
1145 continue;
1146 }
1147 if (!strncmp(token, "name=", 5)) {
c6d57f33
PM
1148 const char *name = token + 5;
1149 /* Can't specify an empty name */
1150 if (!strlen(name))
1151 return -EINVAL;
1152 /* Must match [\w.-]+ */
1153 for (i = 0; i < strlen(name); i++) {
1154 char c = name[i];
1155 if (isalnum(c))
1156 continue;
1157 if ((c == '.') || (c == '-') || (c == '_'))
1158 continue;
1159 return -EINVAL;
1160 }
1161 /* Specifying two names is forbidden */
1162 if (opts->name)
1163 return -EINVAL;
1164 opts->name = kstrndup(name,
e400c285 1165 MAX_CGROUP_ROOT_NAMELEN - 1,
c6d57f33
PM
1166 GFP_KERNEL);
1167 if (!opts->name)
1168 return -ENOMEM;
32a8cf23
DL
1169
1170 continue;
1171 }
1172
30159ec7 1173 for_each_subsys(ss, i) {
32a8cf23
DL
1174 if (strcmp(token, ss->name))
1175 continue;
1176 if (ss->disabled)
1177 continue;
1178
1179 /* Mutually exclusive option 'all' + subsystem name */
1180 if (all_ss)
1181 return -EINVAL;
a1a71b45 1182 set_bit(i, &opts->subsys_mask);
32a8cf23
DL
1183 one_ss = true;
1184
1185 break;
1186 }
1187 if (i == CGROUP_SUBSYS_COUNT)
1188 return -ENOENT;
1189 }
1190
1191 /*
1192 * If the 'all' option was specified select all the subsystems,
0d19ea86
LZ
1193 * otherwise if 'none', 'name=' and a subsystem name options
1194 * were not specified, let's default to 'all'
32a8cf23 1195 */
30159ec7
TH
1196 if (all_ss || (!one_ss && !opts->none && !opts->name))
1197 for_each_subsys(ss, i)
1198 if (!ss->disabled)
1199 set_bit(i, &opts->subsys_mask);
ddbcc7e8 1200
2c6ab6d2
PM
1201 /* Consistency checks */
1202
873fe09e
TH
1203 if (opts->flags & CGRP_ROOT_SANE_BEHAVIOR) {
1204 pr_warning("cgroup: sane_behavior: this is still under development and its behaviors will change, proceed at your own risk\n");
1205
d3ba07c3
TH
1206 if ((opts->flags & (CGRP_ROOT_NOPREFIX | CGRP_ROOT_XATTR)) ||
1207 opts->cpuset_clone_children || opts->release_agent ||
1208 opts->name) {
1209 pr_err("cgroup: sane_behavior: noprefix, xattr, clone_children, release_agent and name are not allowed\n");
873fe09e
TH
1210 return -EINVAL;
1211 }
873fe09e
TH
1212 }
1213
f9ab5b5b
LZ
1214 /*
1215 * Option noprefix was introduced just for backward compatibility
1216 * with the old cpuset, so we allow noprefix only if mounting just
1217 * the cpuset subsystem.
1218 */
93438629 1219 if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask))
f9ab5b5b
LZ
1220 return -EINVAL;
1221
2c6ab6d2
PM
1222
1223 /* Can't specify "none" and some subsystems */
a1a71b45 1224 if (opts->subsys_mask && opts->none)
2c6ab6d2
PM
1225 return -EINVAL;
1226
1227 /*
1228 * We either have to specify by name or by subsystems. (So all
1229 * empty hierarchies must have a name).
1230 */
a1a71b45 1231 if (!opts->subsys_mask && !opts->name)
ddbcc7e8
PM
1232 return -EINVAL;
1233
1234 return 0;
1235}
1236
2bd59d48 1237static int cgroup_remount(struct kernfs_root *kf_root, int *flags, char *data)
ddbcc7e8
PM
1238{
1239 int ret = 0;
2bd59d48 1240 struct cgroupfs_root *root = cgroup_root_from_kf(kf_root);
ddbcc7e8 1241 struct cgroup_sb_opts opts;
a1a71b45 1242 unsigned long added_mask, removed_mask;
ddbcc7e8 1243
873fe09e
TH
1244 if (root->flags & CGRP_ROOT_SANE_BEHAVIOR) {
1245 pr_err("cgroup: sane_behavior: remount is not allowed\n");
1246 return -EINVAL;
1247 }
1248
ace2bee8 1249 mutex_lock(&cgroup_tree_mutex);
ddbcc7e8
PM
1250 mutex_lock(&cgroup_mutex);
1251
1252 /* See what subsystems are wanted */
1253 ret = parse_cgroupfs_options(data, &opts);
1254 if (ret)
1255 goto out_unlock;
1256
a8a648c4 1257 if (opts.subsys_mask != root->subsys_mask || opts.release_agent)
8b5a5a9d
TH
1258 pr_warning("cgroup: option changes via remount are deprecated (pid=%d comm=%s)\n",
1259 task_tgid_nr(current), current->comm);
1260
a1a71b45
AR
1261 added_mask = opts.subsys_mask & ~root->subsys_mask;
1262 removed_mask = root->subsys_mask & ~opts.subsys_mask;
13af07df 1263
cf5d5941 1264 /* Don't allow flags or name to change at remount */
0ce6cba3 1265 if (((opts.flags ^ root->flags) & CGRP_ROOT_OPTION_MASK) ||
cf5d5941 1266 (opts.name && strcmp(opts.name, root->name))) {
0ce6cba3
TH
1267 pr_err("cgroup: option or name mismatch, new: 0x%lx \"%s\", old: 0x%lx \"%s\"\n",
1268 opts.flags & CGRP_ROOT_OPTION_MASK, opts.name ?: "",
1269 root->flags & CGRP_ROOT_OPTION_MASK, root->name);
c6d57f33
PM
1270 ret = -EINVAL;
1271 goto out_unlock;
1272 }
1273
f172e67c 1274 /* remounting is not allowed for populated hierarchies */
3c9c825b 1275 if (!list_empty(&root->top_cgroup.children)) {
f172e67c 1276 ret = -EBUSY;
0670e08b 1277 goto out_unlock;
cf5d5941 1278 }
ddbcc7e8 1279
a8a648c4 1280 ret = rebind_subsystems(root, added_mask, removed_mask);
3126121f 1281 if (ret)
0670e08b 1282 goto out_unlock;
ddbcc7e8 1283
69e943b7
TH
1284 if (opts.release_agent) {
1285 spin_lock(&release_agent_path_lock);
81a6a5cd 1286 strcpy(root->release_agent_path, opts.release_agent);
69e943b7
TH
1287 spin_unlock(&release_agent_path_lock);
1288 }
ddbcc7e8 1289 out_unlock:
66bdc9cf 1290 kfree(opts.release_agent);
c6d57f33 1291 kfree(opts.name);
ddbcc7e8 1292 mutex_unlock(&cgroup_mutex);
ace2bee8 1293 mutex_unlock(&cgroup_tree_mutex);
ddbcc7e8
PM
1294 return ret;
1295}
1296
afeb0f9f
TH
1297/*
1298 * To reduce the fork() overhead for systems that are not actually using
1299 * their cgroups capability, we don't maintain the lists running through
1300 * each css_set to its tasks until we see the list actually used - in other
1301 * words after the first mount.
1302 */
1303static bool use_task_css_set_links __read_mostly;
1304
1305static void cgroup_enable_task_cg_lists(void)
1306{
1307 struct task_struct *p, *g;
1308
96d365e0 1309 down_write(&css_set_rwsem);
afeb0f9f
TH
1310
1311 if (use_task_css_set_links)
1312 goto out_unlock;
1313
1314 use_task_css_set_links = true;
1315
1316 /*
1317 * We need tasklist_lock because RCU is not safe against
1318 * while_each_thread(). Besides, a forking task that has passed
1319 * cgroup_post_fork() without seeing use_task_css_set_links = 1
1320 * is not guaranteed to have its child immediately visible in the
1321 * tasklist if we walk through it with RCU.
1322 */
1323 read_lock(&tasklist_lock);
1324 do_each_thread(g, p) {
1325 task_lock(p);
1326
1327 WARN_ON_ONCE(!list_empty(&p->cg_list) ||
1328 task_css_set(p) != &init_css_set);
1329
1330 /*
1331 * We should check if the process is exiting, otherwise
1332 * it will race with cgroup_exit() in that the list
1333 * entry won't be deleted though the process has exited.
1334 */
1335 if (!(p->flags & PF_EXITING))
1336 list_add(&p->cg_list, &task_css_set(p)->tasks);
1337
1338 task_unlock(p);
1339 } while_each_thread(g, p);
1340 read_unlock(&tasklist_lock);
1341out_unlock:
96d365e0 1342 up_write(&css_set_rwsem);
afeb0f9f
TH
1343}
1344
cc31edce
PM
1345static void init_cgroup_housekeeping(struct cgroup *cgrp)
1346{
2bd59d48 1347 atomic_set(&cgrp->refcnt, 1);
cc31edce
PM
1348 INIT_LIST_HEAD(&cgrp->sibling);
1349 INIT_LIST_HEAD(&cgrp->children);
69d0206c 1350 INIT_LIST_HEAD(&cgrp->cset_links);
cc31edce 1351 INIT_LIST_HEAD(&cgrp->release_list);
72a8cb30
BB
1352 INIT_LIST_HEAD(&cgrp->pidlists);
1353 mutex_init(&cgrp->pidlist_mutex);
67f4c36f 1354 cgrp->dummy_css.cgroup = cgrp;
cc31edce 1355}
c6d57f33 1356
ddbcc7e8
PM
1357static void init_cgroup_root(struct cgroupfs_root *root)
1358{
bd89aabc 1359 struct cgroup *cgrp = &root->top_cgroup;
b0ca5a84 1360
ddbcc7e8 1361 INIT_LIST_HEAD(&root->root_list);
3c9c825b 1362 atomic_set(&root->nr_cgrps, 1);
bd89aabc 1363 cgrp->root = root;
cc31edce 1364 init_cgroup_housekeeping(cgrp);
4e96ee8e 1365 idr_init(&root->cgroup_idr);
ddbcc7e8
PM
1366}
1367
c6d57f33
PM
1368static struct cgroupfs_root *cgroup_root_from_opts(struct cgroup_sb_opts *opts)
1369{
1370 struct cgroupfs_root *root;
1371
a1a71b45 1372 if (!opts->subsys_mask && !opts->none)
2bd59d48 1373 return ERR_PTR(-EINVAL);
c6d57f33
PM
1374
1375 root = kzalloc(sizeof(*root), GFP_KERNEL);
1376 if (!root)
1377 return ERR_PTR(-ENOMEM);
1378
1379 init_cgroup_root(root);
2c6ab6d2 1380
c6d57f33
PM
1381 root->flags = opts->flags;
1382 if (opts->release_agent)
1383 strcpy(root->release_agent_path, opts->release_agent);
1384 if (opts->name)
1385 strcpy(root->name, opts->name);
2260e7fc
TH
1386 if (opts->cpuset_clone_children)
1387 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->top_cgroup.flags);
c6d57f33
PM
1388 return root;
1389}
1390
35585573 1391static int cgroup_setup_root(struct cgroupfs_root *root, unsigned long ss_mask)
d427dfeb
TH
1392{
1393 LIST_HEAD(tmp_links);
d427dfeb 1394 struct cgroup *root_cgrp = &root->top_cgroup;
d427dfeb 1395 struct css_set *cset;
d427dfeb
TH
1396 int i, ret;
1397
1398 lockdep_assert_held(&cgroup_tree_mutex);
1399 lockdep_assert_held(&cgroup_mutex);
d427dfeb
TH
1400
1401 ret = idr_alloc(&root->cgroup_idr, root_cgrp, 0, 1, GFP_KERNEL);
1402 if (ret < 0)
2bd59d48 1403 goto out;
d427dfeb
TH
1404 root_cgrp->id = ret;
1405
d427dfeb 1406 /*
96d365e0 1407 * We're accessing css_set_count without locking css_set_rwsem here,
d427dfeb
TH
1408 * but that's OK - it can only be increased by someone holding
1409 * cgroup_lock, and that's us. The worst that can happen is that we
1410 * have some link structures left over
1411 */
1412 ret = allocate_cgrp_cset_links(css_set_count, &tmp_links);
1413 if (ret)
2bd59d48 1414 goto out;
d427dfeb
TH
1415
1416 /* ID 0 is reserved for dummy root, 1 for unified hierarchy */
1417 ret = cgroup_init_root_id(root, 2, 0);
1418 if (ret)
2bd59d48 1419 goto out;
d427dfeb 1420
2bd59d48
TH
1421 root->kf_root = kernfs_create_root(&cgroup_kf_syscall_ops,
1422 KERNFS_ROOT_CREATE_DEACTIVATED,
1423 root_cgrp);
1424 if (IS_ERR(root->kf_root)) {
1425 ret = PTR_ERR(root->kf_root);
1426 goto exit_root_id;
1427 }
1428 root_cgrp->kn = root->kf_root->kn;
d427dfeb
TH
1429
1430 ret = cgroup_addrm_files(root_cgrp, cgroup_base_files, true);
1431 if (ret)
2bd59d48 1432 goto destroy_root;
d427dfeb 1433
35585573 1434 ret = rebind_subsystems(root, ss_mask, 0);
d427dfeb 1435 if (ret)
2bd59d48 1436 goto destroy_root;
d427dfeb
TH
1437
1438 /*
1439 * There must be no failure case after here, since rebinding takes
1440 * care of subsystems' refcounts, which are explicitly dropped in
1441 * the failure exit path.
1442 */
1443 list_add(&root->root_list, &cgroup_roots);
1444 cgroup_root_count++;
1445
1446 /*
1447 * Link the top cgroup in this hierarchy into all the css_set
1448 * objects.
1449 */
96d365e0 1450 down_write(&css_set_rwsem);
d427dfeb
TH
1451 hash_for_each(css_set_table, i, cset, hlist)
1452 link_css_set(&tmp_links, cset, root_cgrp);
96d365e0 1453 up_write(&css_set_rwsem);
d427dfeb
TH
1454
1455 BUG_ON(!list_empty(&root_cgrp->children));
3c9c825b 1456 BUG_ON(atomic_read(&root->nr_cgrps) != 1);
d427dfeb 1457
2bd59d48 1458 kernfs_activate(root_cgrp->kn);
d427dfeb 1459 ret = 0;
2bd59d48 1460 goto out;
d427dfeb 1461
2bd59d48
TH
1462destroy_root:
1463 kernfs_destroy_root(root->kf_root);
1464 root->kf_root = NULL;
1465exit_root_id:
d427dfeb 1466 cgroup_exit_root_id(root);
2bd59d48 1467out:
d427dfeb
TH
1468 free_cgrp_cset_links(&tmp_links);
1469 return ret;
1470}
1471
f7e83571 1472static struct dentry *cgroup_mount(struct file_system_type *fs_type,
ddbcc7e8 1473 int flags, const char *unused_dev_name,
f7e83571 1474 void *data)
ddbcc7e8 1475{
2bd59d48 1476 struct cgroupfs_root *root;
ddbcc7e8 1477 struct cgroup_sb_opts opts;
2bd59d48 1478 struct dentry *dentry;
8e30e2b8 1479 int ret;
56fde9e0
TH
1480
1481 /*
1482 * The first time anyone tries to mount a cgroup, enable the list
1483 * linking each css_set to its tasks and fix up all existing tasks.
1484 */
1485 if (!use_task_css_set_links)
1486 cgroup_enable_task_cg_lists();
776f02fa 1487retry:
8e30e2b8 1488 mutex_lock(&cgroup_tree_mutex);
aae8aab4 1489 mutex_lock(&cgroup_mutex);
8e30e2b8
TH
1490
1491 /* First find the desired set of subsystems */
ddbcc7e8 1492 ret = parse_cgroupfs_options(data, &opts);
c6d57f33 1493 if (ret)
8e30e2b8 1494 goto out_unlock;
ddbcc7e8 1495
2bd59d48
TH
1496 /* look for a matching existing root */
1497 for_each_active_root(root) {
1498 bool name_match = false;
ddbcc7e8 1499
2bd59d48
TH
1500 /*
1501 * If we asked for a name then it must match. Also, if
1502 * name matches but sybsys_mask doesn't, we should fail.
1503 * Remember whether name matched.
1504 */
1505 if (opts.name) {
1506 if (strcmp(opts.name, root->name))
1507 continue;
1508 name_match = true;
1509 }
ddbcc7e8 1510
c6d57f33 1511 /*
2bd59d48
TH
1512 * If we asked for subsystems (or explicitly for no
1513 * subsystems) then they must match.
c6d57f33 1514 */
2bd59d48
TH
1515 if ((opts.subsys_mask || opts.none) &&
1516 (opts.subsys_mask != root->subsys_mask)) {
1517 if (!name_match)
1518 continue;
1519 ret = -EBUSY;
1520 goto out_unlock;
1521 }
873fe09e 1522
c7ba8287 1523 if ((root->flags ^ opts.flags) & CGRP_ROOT_OPTION_MASK) {
2a0ff3fb
JL
1524 if ((root->flags | opts.flags) & CGRP_ROOT_SANE_BEHAVIOR) {
1525 pr_err("cgroup: sane_behavior: new mount options should match the existing superblock\n");
1526 ret = -EINVAL;
8e30e2b8 1527 goto out_unlock;
2a0ff3fb
JL
1528 } else {
1529 pr_warning("cgroup: new mount options do not match the existing superblock, will be ignored\n");
1530 }
873fe09e 1531 }
2bd59d48 1532
776f02fa
TH
1533 /*
1534 * A root's lifetime is governed by its top cgroup. Zero
1535 * ref indicate that the root is being destroyed. Wait for
1536 * destruction to complete so that the subsystems are free.
1537 * We can use wait_queue for the wait but this path is
1538 * super cold. Let's just sleep for a bit and retry.
1539 */
1540 if (!atomic_inc_not_zero(&root->top_cgroup.refcnt)) {
1541 mutex_unlock(&cgroup_mutex);
1542 mutex_unlock(&cgroup_tree_mutex);
6534fd6c
LZ
1543 kfree(opts.release_agent);
1544 kfree(opts.name);
776f02fa
TH
1545 msleep(10);
1546 goto retry;
1547 }
1548
1549 ret = 0;
2bd59d48 1550 goto out_unlock;
ddbcc7e8
PM
1551 }
1552
2bd59d48
TH
1553 /* no such thing, create a new one */
1554 root = cgroup_root_from_opts(&opts);
1555 if (IS_ERR(root)) {
1556 ret = PTR_ERR(root);
1557 goto out_unlock;
1558 }
1559
35585573 1560 ret = cgroup_setup_root(root, opts.subsys_mask);
2bd59d48
TH
1561 if (ret)
1562 cgroup_free_root(root);
1563
8e30e2b8 1564out_unlock:
e25e2cbb 1565 mutex_unlock(&cgroup_mutex);
ace2bee8 1566 mutex_unlock(&cgroup_tree_mutex);
8e30e2b8 1567
c6d57f33
PM
1568 kfree(opts.release_agent);
1569 kfree(opts.name);
8e30e2b8 1570
2bd59d48 1571 if (ret)
8e30e2b8 1572 return ERR_PTR(ret);
2bd59d48
TH
1573
1574 dentry = kernfs_mount(fs_type, flags, root->kf_root);
1575 if (IS_ERR(dentry))
776f02fa 1576 cgroup_put(&root->top_cgroup);
2bd59d48
TH
1577 return dentry;
1578}
1579
1580static void cgroup_kill_sb(struct super_block *sb)
1581{
1582 struct kernfs_root *kf_root = kernfs_root_from_sb(sb);
1583 struct cgroupfs_root *root = cgroup_root_from_kf(kf_root);
1584
776f02fa 1585 cgroup_put(&root->top_cgroup);
2bd59d48 1586 kernfs_kill_sb(sb);
ddbcc7e8
PM
1587}
1588
ddbcc7e8
PM
1589static struct file_system_type cgroup_fs_type = {
1590 .name = "cgroup",
f7e83571 1591 .mount = cgroup_mount,
ddbcc7e8
PM
1592 .kill_sb = cgroup_kill_sb,
1593};
1594
676db4af
GK
1595static struct kobject *cgroup_kobj;
1596
857a2beb 1597/**
913ffdb5 1598 * task_cgroup_path - cgroup path of a task in the first cgroup hierarchy
857a2beb 1599 * @task: target task
857a2beb
TH
1600 * @buf: the buffer to write the path into
1601 * @buflen: the length of the buffer
1602 *
913ffdb5
TH
1603 * Determine @task's cgroup on the first (the one with the lowest non-zero
1604 * hierarchy_id) cgroup hierarchy and copy its path into @buf. This
1605 * function grabs cgroup_mutex and shouldn't be used inside locks used by
1606 * cgroup controller callbacks.
1607 *
e61734c5 1608 * Return value is the same as kernfs_path().
857a2beb 1609 */
e61734c5 1610char *task_cgroup_path(struct task_struct *task, char *buf, size_t buflen)
857a2beb
TH
1611{
1612 struct cgroupfs_root *root;
913ffdb5 1613 struct cgroup *cgrp;
e61734c5
TH
1614 int hierarchy_id = 1;
1615 char *path = NULL;
857a2beb
TH
1616
1617 mutex_lock(&cgroup_mutex);
96d365e0 1618 down_read(&css_set_rwsem);
857a2beb 1619
913ffdb5
TH
1620 root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id);
1621
857a2beb
TH
1622 if (root) {
1623 cgrp = task_cgroup_from_root(task, root);
e61734c5 1624 path = cgroup_path(cgrp, buf, buflen);
913ffdb5
TH
1625 } else {
1626 /* if no hierarchy exists, everyone is in "/" */
e61734c5
TH
1627 if (strlcpy(buf, "/", buflen) < buflen)
1628 path = buf;
857a2beb
TH
1629 }
1630
96d365e0 1631 up_read(&css_set_rwsem);
857a2beb 1632 mutex_unlock(&cgroup_mutex);
e61734c5 1633 return path;
857a2beb 1634}
913ffdb5 1635EXPORT_SYMBOL_GPL(task_cgroup_path);
857a2beb 1636
2f7ee569
TH
1637/*
1638 * Control Group taskset
1639 */
134d3373
TH
1640struct task_and_cgroup {
1641 struct task_struct *task;
1642 struct cgroup *cgrp;
6f4b7e63 1643 struct css_set *cset;
134d3373
TH
1644};
1645
2f7ee569
TH
1646struct cgroup_taskset {
1647 struct task_and_cgroup single;
1648 struct flex_array *tc_array;
1649 int tc_array_len;
1650 int idx;
2f7ee569
TH
1651};
1652
1653/**
1654 * cgroup_taskset_first - reset taskset and return the first task
1655 * @tset: taskset of interest
1656 *
1657 * @tset iteration is initialized and the first task is returned.
1658 */
1659struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
1660{
1661 if (tset->tc_array) {
1662 tset->idx = 0;
1663 return cgroup_taskset_next(tset);
1664 } else {
2f7ee569
TH
1665 return tset->single.task;
1666 }
1667}
2f7ee569
TH
1668
1669/**
1670 * cgroup_taskset_next - iterate to the next task in taskset
1671 * @tset: taskset of interest
1672 *
1673 * Return the next task in @tset. Iteration must have been initialized
1674 * with cgroup_taskset_first().
1675 */
1676struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
1677{
1678 struct task_and_cgroup *tc;
1679
1680 if (!tset->tc_array || tset->idx >= tset->tc_array_len)
1681 return NULL;
1682
1683 tc = flex_array_get(tset->tc_array, tset->idx++);
2f7ee569
TH
1684 return tc->task;
1685}
2f7ee569 1686
cb0f1fe9 1687/**
74a1166d 1688 * cgroup_task_migrate - move a task from one cgroup to another.
cb0f1fe9
TH
1689 * @old_cgrp; the cgroup @tsk is being migrated from
1690 * @tsk: the task being migrated
1691 * @new_cset: the new css_set @tsk is being attached to
74a1166d 1692 *
cb0f1fe9 1693 * Must be called with cgroup_mutex, threadgroup and css_set_rwsem locked.
74a1166d 1694 */
5abb8855
TH
1695static void cgroup_task_migrate(struct cgroup *old_cgrp,
1696 struct task_struct *tsk,
1697 struct css_set *new_cset)
74a1166d 1698{
5abb8855 1699 struct css_set *old_cset;
74a1166d 1700
cb0f1fe9
TH
1701 lockdep_assert_held(&cgroup_mutex);
1702 lockdep_assert_held(&css_set_rwsem);
1703
74a1166d 1704 /*
026085ef
MSB
1705 * We are synchronized through threadgroup_lock() against PF_EXITING
1706 * setting such that we can't race against cgroup_exit() changing the
1707 * css_set to init_css_set and dropping the old one.
74a1166d 1708 */
c84cdf75 1709 WARN_ON_ONCE(tsk->flags & PF_EXITING);
a8ad805c 1710 old_cset = task_css_set(tsk);
74a1166d 1711
74a1166d 1712 task_lock(tsk);
5abb8855 1713 rcu_assign_pointer(tsk->cgroups, new_cset);
74a1166d
BB
1714 task_unlock(tsk);
1715
56fde9e0 1716 list_move(&tsk->cg_list, &new_cset->tasks);
74a1166d
BB
1717
1718 /*
5abb8855
TH
1719 * We just gained a reference on old_cset by taking it from the
1720 * task. As trading it for new_cset is protected by cgroup_mutex,
1721 * we're safe to drop it here; it will be freed under RCU.
74a1166d 1722 */
5abb8855 1723 set_bit(CGRP_RELEASABLE, &old_cgrp->flags);
cb0f1fe9 1724 put_css_set_locked(old_cset, false);
74a1166d
BB
1725}
1726
a043e3b2 1727/**
081aa458 1728 * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup
74a1166d 1729 * @cgrp: the cgroup to attach to
9db8de37 1730 * @leader: the task or the leader of the threadgroup to be attached
081aa458 1731 * @threadgroup: attach the whole threadgroup?
74a1166d 1732 *
257058ae 1733 * Call holding cgroup_mutex and the group_rwsem of the leader. Will take
081aa458 1734 * task_lock of @tsk or each thread in the threadgroup individually in turn.
74a1166d 1735 */
9db8de37 1736static int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *leader,
47cfcd09 1737 bool threadgroup)
74a1166d 1738{
9db8de37 1739 int ret, i, group_size;
74a1166d 1740 struct cgroupfs_root *root = cgrp->root;
1c6727af 1741 struct cgroup_subsys_state *css, *failed_css = NULL;
74a1166d 1742 /* threadgroup list cursor and array */
9db8de37 1743 struct task_struct *task;
134d3373 1744 struct task_and_cgroup *tc;
d846687d 1745 struct flex_array *group;
2f7ee569 1746 struct cgroup_taskset tset = { };
74a1166d
BB
1747
1748 /*
1749 * step 0: in order to do expensive, possibly blocking operations for
1750 * every thread, we cannot iterate the thread group list, since it needs
1751 * rcu or tasklist locked. instead, build an array of all threads in the
257058ae
TH
1752 * group - group_rwsem prevents new threads from appearing, and if
1753 * threads exit, this will just be an over-estimate.
74a1166d 1754 */
081aa458 1755 if (threadgroup)
9db8de37 1756 group_size = get_nr_threads(leader);
081aa458
LZ
1757 else
1758 group_size = 1;
d846687d 1759 /* flex_array supports very large thread-groups better than kmalloc. */
134d3373 1760 group = flex_array_alloc(sizeof(*tc), group_size, GFP_KERNEL);
74a1166d
BB
1761 if (!group)
1762 return -ENOMEM;
d846687d 1763 /* pre-allocate to guarantee space while iterating in rcu read-side. */
9db8de37
TH
1764 ret = flex_array_prealloc(group, 0, group_size, GFP_KERNEL);
1765 if (ret)
d846687d 1766 goto out_free_group_list;
74a1166d 1767
74a1166d 1768 i = 0;
fb5d2b4c
MSB
1769 /*
1770 * Prevent freeing of tasks while we take a snapshot. Tasks that are
1771 * already PF_EXITING could be freed from underneath us unless we
1772 * take an rcu_read_lock.
1773 */
96d365e0 1774 down_read(&css_set_rwsem);
fb5d2b4c 1775 rcu_read_lock();
9db8de37 1776 task = leader;
74a1166d 1777 do {
134d3373
TH
1778 struct task_and_cgroup ent;
1779
9db8de37
TH
1780 /* @task either already exited or can't exit until the end */
1781 if (task->flags & PF_EXITING)
ea84753c 1782 goto next;
cd3d0952 1783
74a1166d
BB
1784 /* as per above, nr_threads may decrease, but not increase. */
1785 BUG_ON(i >= group_size);
9db8de37
TH
1786 ent.task = task;
1787 ent.cgrp = task_cgroup_from_root(task, root);
892a2b90
MSB
1788 /* nothing to do if this task is already in the cgroup */
1789 if (ent.cgrp == cgrp)
ea84753c 1790 goto next;
61d1d219
MSB
1791 /*
1792 * saying GFP_ATOMIC has no effect here because we did prealloc
1793 * earlier, but it's good form to communicate our expectations.
1794 */
9db8de37
TH
1795 ret = flex_array_put(group, i, &ent, GFP_ATOMIC);
1796 BUG_ON(ret != 0);
74a1166d 1797 i++;
ea84753c 1798 next:
081aa458
LZ
1799 if (!threadgroup)
1800 break;
9db8de37 1801 } while_each_thread(leader, task);
fb5d2b4c 1802 rcu_read_unlock();
96d365e0 1803 up_read(&css_set_rwsem);
74a1166d
BB
1804 /* remember the number of threads in the array for later. */
1805 group_size = i;
2f7ee569
TH
1806 tset.tc_array = group;
1807 tset.tc_array_len = group_size;
74a1166d 1808
134d3373 1809 /* methods shouldn't be called if no task is actually migrating */
9db8de37 1810 ret = 0;
892a2b90 1811 if (!group_size)
b07ef774 1812 goto out_free_group_list;
134d3373 1813
74a1166d
BB
1814 /*
1815 * step 1: check that we can legitimately attach to the cgroup.
1816 */
1c6727af
TH
1817 for_each_css(css, i, cgrp) {
1818 if (css->ss->can_attach) {
9db8de37
TH
1819 ret = css->ss->can_attach(css, &tset);
1820 if (ret) {
1c6727af 1821 failed_css = css;
74a1166d
BB
1822 goto out_cancel_attach;
1823 }
1824 }
74a1166d
BB
1825 }
1826
1827 /*
1828 * step 2: make sure css_sets exist for all threads to be migrated.
1829 * we use find_css_set, which allocates a new one if necessary.
1830 */
74a1166d 1831 for (i = 0; i < group_size; i++) {
a8ad805c
TH
1832 struct css_set *old_cset;
1833
134d3373 1834 tc = flex_array_get(group, i);
a8ad805c 1835 old_cset = task_css_set(tc->task);
6f4b7e63
LZ
1836 tc->cset = find_css_set(old_cset, cgrp);
1837 if (!tc->cset) {
9db8de37 1838 ret = -ENOMEM;
61d1d219 1839 goto out_put_css_set_refs;
74a1166d
BB
1840 }
1841 }
1842
1843 /*
494c167c
TH
1844 * step 3: now that we're guaranteed success wrt the css_sets,
1845 * proceed to move all tasks to the new cgroup. There are no
1846 * failure cases after here, so this is the commit point.
74a1166d 1847 */
cb0f1fe9 1848 down_write(&css_set_rwsem);
74a1166d 1849 for (i = 0; i < group_size; i++) {
134d3373 1850 tc = flex_array_get(group, i);
6f4b7e63 1851 cgroup_task_migrate(tc->cgrp, tc->task, tc->cset);
74a1166d 1852 }
cb0f1fe9 1853 up_write(&css_set_rwsem);
74a1166d
BB
1854 /* nothing is sensitive to fork() after this point. */
1855
1856 /*
494c167c 1857 * step 4: do subsystem attach callbacks.
74a1166d 1858 */
1c6727af
TH
1859 for_each_css(css, i, cgrp)
1860 if (css->ss->attach)
1861 css->ss->attach(css, &tset);
74a1166d
BB
1862
1863 /*
1864 * step 5: success! and cleanup
1865 */
9db8de37 1866 ret = 0;
61d1d219 1867out_put_css_set_refs:
9db8de37 1868 if (ret) {
61d1d219
MSB
1869 for (i = 0; i < group_size; i++) {
1870 tc = flex_array_get(group, i);
6f4b7e63 1871 if (!tc->cset)
61d1d219 1872 break;
89c5509b 1873 put_css_set(tc->cset, false);
61d1d219 1874 }
74a1166d
BB
1875 }
1876out_cancel_attach:
9db8de37 1877 if (ret) {
1c6727af
TH
1878 for_each_css(css, i, cgrp) {
1879 if (css == failed_css)
74a1166d 1880 break;
1c6727af
TH
1881 if (css->ss->cancel_attach)
1882 css->ss->cancel_attach(css, &tset);
74a1166d
BB
1883 }
1884 }
74a1166d 1885out_free_group_list:
d846687d 1886 flex_array_free(group);
9db8de37 1887 return ret;
74a1166d
BB
1888}
1889
1890/*
1891 * Find the task_struct of the task to attach by vpid and pass it along to the
cd3d0952
TH
1892 * function to attach either it or all tasks in its threadgroup. Will lock
1893 * cgroup_mutex and threadgroup; may take task_lock of task.
bbcb81d0 1894 */
74a1166d 1895static int attach_task_by_pid(struct cgroup *cgrp, u64 pid, bool threadgroup)
bbcb81d0 1896{
bbcb81d0 1897 struct task_struct *tsk;
c69e8d9c 1898 const struct cred *cred = current_cred(), *tcred;
bbcb81d0
PM
1899 int ret;
1900
74a1166d
BB
1901 if (!cgroup_lock_live_group(cgrp))
1902 return -ENODEV;
1903
b78949eb
MSB
1904retry_find_task:
1905 rcu_read_lock();
bbcb81d0 1906 if (pid) {
73507f33 1907 tsk = find_task_by_vpid(pid);
74a1166d
BB
1908 if (!tsk) {
1909 rcu_read_unlock();
dd4b0a46 1910 ret = -ESRCH;
b78949eb 1911 goto out_unlock_cgroup;
bbcb81d0 1912 }
74a1166d
BB
1913 /*
1914 * even if we're attaching all tasks in the thread group, we
1915 * only need to check permissions on one of them.
1916 */
c69e8d9c 1917 tcred = __task_cred(tsk);
14a590c3
EB
1918 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
1919 !uid_eq(cred->euid, tcred->uid) &&
1920 !uid_eq(cred->euid, tcred->suid)) {
c69e8d9c 1921 rcu_read_unlock();
b78949eb
MSB
1922 ret = -EACCES;
1923 goto out_unlock_cgroup;
bbcb81d0 1924 }
b78949eb
MSB
1925 } else
1926 tsk = current;
cd3d0952
TH
1927
1928 if (threadgroup)
b78949eb 1929 tsk = tsk->group_leader;
c4c27fbd
MG
1930
1931 /*
14a40ffc 1932 * Workqueue threads may acquire PF_NO_SETAFFINITY and become
c4c27fbd
MG
1933 * trapped in a cpuset, or RT worker may be born in a cgroup
1934 * with no rt_runtime allocated. Just say no.
1935 */
14a40ffc 1936 if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) {
c4c27fbd
MG
1937 ret = -EINVAL;
1938 rcu_read_unlock();
1939 goto out_unlock_cgroup;
1940 }
1941
b78949eb
MSB
1942 get_task_struct(tsk);
1943 rcu_read_unlock();
1944
1945 threadgroup_lock(tsk);
1946 if (threadgroup) {
1947 if (!thread_group_leader(tsk)) {
1948 /*
1949 * a race with de_thread from another thread's exec()
1950 * may strip us of our leadership, if this happens,
1951 * there is no choice but to throw this task away and
1952 * try again; this is
1953 * "double-double-toil-and-trouble-check locking".
1954 */
1955 threadgroup_unlock(tsk);
1956 put_task_struct(tsk);
1957 goto retry_find_task;
1958 }
081aa458
LZ
1959 }
1960
1961 ret = cgroup_attach_task(cgrp, tsk, threadgroup);
1962
cd3d0952
TH
1963 threadgroup_unlock(tsk);
1964
bbcb81d0 1965 put_task_struct(tsk);
b78949eb 1966out_unlock_cgroup:
47cfcd09 1967 mutex_unlock(&cgroup_mutex);
bbcb81d0
PM
1968 return ret;
1969}
1970
7ae1bad9
TH
1971/**
1972 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
1973 * @from: attach to all cgroups of a given task
1974 * @tsk: the task to be attached
1975 */
1976int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
1977{
1978 struct cgroupfs_root *root;
1979 int retval = 0;
1980
47cfcd09 1981 mutex_lock(&cgroup_mutex);
7ae1bad9 1982 for_each_active_root(root) {
96d365e0
TH
1983 struct cgroup *from_cgrp;
1984
1985 down_read(&css_set_rwsem);
1986 from_cgrp = task_cgroup_from_root(from, root);
1987 up_read(&css_set_rwsem);
7ae1bad9 1988
6f4b7e63 1989 retval = cgroup_attach_task(from_cgrp, tsk, false);
7ae1bad9
TH
1990 if (retval)
1991 break;
1992 }
47cfcd09 1993 mutex_unlock(&cgroup_mutex);
7ae1bad9
TH
1994
1995 return retval;
1996}
1997EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
1998
182446d0
TH
1999static int cgroup_tasks_write(struct cgroup_subsys_state *css,
2000 struct cftype *cft, u64 pid)
74a1166d 2001{
182446d0 2002 return attach_task_by_pid(css->cgroup, pid, false);
74a1166d
BB
2003}
2004
182446d0
TH
2005static int cgroup_procs_write(struct cgroup_subsys_state *css,
2006 struct cftype *cft, u64 tgid)
af351026 2007{
182446d0 2008 return attach_task_by_pid(css->cgroup, tgid, true);
af351026
PM
2009}
2010
182446d0
TH
2011static int cgroup_release_agent_write(struct cgroup_subsys_state *css,
2012 struct cftype *cft, const char *buffer)
e788e066 2013{
5f469907
TH
2014 struct cgroupfs_root *root = css->cgroup->root;
2015
2016 BUILD_BUG_ON(sizeof(root->release_agent_path) < PATH_MAX);
182446d0 2017 if (!cgroup_lock_live_group(css->cgroup))
e788e066 2018 return -ENODEV;
69e943b7 2019 spin_lock(&release_agent_path_lock);
5f469907
TH
2020 strlcpy(root->release_agent_path, buffer,
2021 sizeof(root->release_agent_path));
69e943b7 2022 spin_unlock(&release_agent_path_lock);
47cfcd09 2023 mutex_unlock(&cgroup_mutex);
e788e066
PM
2024 return 0;
2025}
2026
2da8ca82 2027static int cgroup_release_agent_show(struct seq_file *seq, void *v)
e788e066 2028{
2da8ca82 2029 struct cgroup *cgrp = seq_css(seq)->cgroup;
182446d0 2030
e788e066
PM
2031 if (!cgroup_lock_live_group(cgrp))
2032 return -ENODEV;
2033 seq_puts(seq, cgrp->root->release_agent_path);
2034 seq_putc(seq, '\n');
47cfcd09 2035 mutex_unlock(&cgroup_mutex);
e788e066
PM
2036 return 0;
2037}
2038
2da8ca82 2039static int cgroup_sane_behavior_show(struct seq_file *seq, void *v)
873fe09e 2040{
2da8ca82
TH
2041 struct cgroup *cgrp = seq_css(seq)->cgroup;
2042
2043 seq_printf(seq, "%d\n", cgroup_sane_behavior(cgrp));
e788e066
PM
2044 return 0;
2045}
2046
2bd59d48
TH
2047static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf,
2048 size_t nbytes, loff_t off)
355e0c48 2049{
2bd59d48
TH
2050 struct cgroup *cgrp = of->kn->parent->priv;
2051 struct cftype *cft = of->kn->priv;
2052 struct cgroup_subsys_state *css;
a742c59d 2053 int ret;
355e0c48 2054
2bd59d48
TH
2055 /*
2056 * kernfs guarantees that a file isn't deleted with operations in
2057 * flight, which means that the matching css is and stays alive and
2058 * doesn't need to be pinned. The RCU locking is not necessary
2059 * either. It's just for the convenience of using cgroup_css().
2060 */
2061 rcu_read_lock();
2062 css = cgroup_css(cgrp, cft->ss);
2063 rcu_read_unlock();
a742c59d
TH
2064
2065 if (cft->write_string) {
2066 ret = cft->write_string(css, cft, strstrip(buf));
2067 } else if (cft->write_u64) {
2068 unsigned long long v;
2069 ret = kstrtoull(buf, 0, &v);
2070 if (!ret)
2071 ret = cft->write_u64(css, cft, v);
2072 } else if (cft->write_s64) {
2073 long long v;
2074 ret = kstrtoll(buf, 0, &v);
2075 if (!ret)
2076 ret = cft->write_s64(css, cft, v);
2077 } else if (cft->trigger) {
2078 ret = cft->trigger(css, (unsigned int)cft->private);
e73d2c61 2079 } else {
a742c59d 2080 ret = -EINVAL;
e73d2c61 2081 }
2bd59d48 2082
a742c59d 2083 return ret ?: nbytes;
355e0c48
PM
2084}
2085
6612f05b 2086static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos)
db3b1497 2087{
2bd59d48 2088 return seq_cft(seq)->seq_start(seq, ppos);
db3b1497
PM
2089}
2090
6612f05b 2091static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos)
ddbcc7e8 2092{
2bd59d48 2093 return seq_cft(seq)->seq_next(seq, v, ppos);
ddbcc7e8
PM
2094}
2095
6612f05b 2096static void cgroup_seqfile_stop(struct seq_file *seq, void *v)
ddbcc7e8 2097{
2bd59d48 2098 seq_cft(seq)->seq_stop(seq, v);
ddbcc7e8
PM
2099}
2100
91796569 2101static int cgroup_seqfile_show(struct seq_file *m, void *arg)
e73d2c61 2102{
7da11279
TH
2103 struct cftype *cft = seq_cft(m);
2104 struct cgroup_subsys_state *css = seq_css(m);
e73d2c61 2105
2da8ca82
TH
2106 if (cft->seq_show)
2107 return cft->seq_show(m, arg);
e73d2c61 2108
f4c753b7 2109 if (cft->read_u64)
896f5199
TH
2110 seq_printf(m, "%llu\n", cft->read_u64(css, cft));
2111 else if (cft->read_s64)
2112 seq_printf(m, "%lld\n", cft->read_s64(css, cft));
2113 else
2114 return -EINVAL;
2115 return 0;
91796569
PM
2116}
2117
2bd59d48
TH
2118static struct kernfs_ops cgroup_kf_single_ops = {
2119 .atomic_write_len = PAGE_SIZE,
2120 .write = cgroup_file_write,
2121 .seq_show = cgroup_seqfile_show,
91796569
PM
2122};
2123
2bd59d48
TH
2124static struct kernfs_ops cgroup_kf_ops = {
2125 .atomic_write_len = PAGE_SIZE,
2126 .write = cgroup_file_write,
2127 .seq_start = cgroup_seqfile_start,
2128 .seq_next = cgroup_seqfile_next,
2129 .seq_stop = cgroup_seqfile_stop,
2130 .seq_show = cgroup_seqfile_show,
2131};
ddbcc7e8
PM
2132
2133/*
2134 * cgroup_rename - Only allow simple rename of directories in place.
2135 */
2bd59d48
TH
2136static int cgroup_rename(struct kernfs_node *kn, struct kernfs_node *new_parent,
2137 const char *new_name_str)
ddbcc7e8 2138{
2bd59d48 2139 struct cgroup *cgrp = kn->priv;
2bd59d48 2140 int ret;
65dff759 2141
2bd59d48 2142 if (kernfs_type(kn) != KERNFS_DIR)
ddbcc7e8 2143 return -ENOTDIR;
2bd59d48 2144 if (kn->parent != new_parent)
ddbcc7e8 2145 return -EIO;
65dff759 2146
6db8e85c
TH
2147 /*
2148 * This isn't a proper migration and its usefulness is very
2149 * limited. Disallow if sane_behavior.
2150 */
2151 if (cgroup_sane_behavior(cgrp))
2152 return -EPERM;
2153
2bd59d48
TH
2154 mutex_lock(&cgroup_tree_mutex);
2155 mutex_lock(&cgroup_mutex);
2156
2157 ret = kernfs_rename(kn, new_parent, new_name_str);
65dff759 2158
2bd59d48
TH
2159 mutex_unlock(&cgroup_mutex);
2160 mutex_unlock(&cgroup_tree_mutex);
2bd59d48 2161 return ret;
ddbcc7e8
PM
2162}
2163
2bb566cb 2164static int cgroup_add_file(struct cgroup *cgrp, struct cftype *cft)
ddbcc7e8 2165{
8d7e6fb0 2166 char name[CGROUP_FILE_NAME_MAX];
2bd59d48
TH
2167 struct kernfs_node *kn;
2168 struct lock_class_key *key = NULL;
05ef1d7c 2169
2bd59d48
TH
2170#ifdef CONFIG_DEBUG_LOCK_ALLOC
2171 key = &cft->lockdep_key;
2172#endif
2173 kn = __kernfs_create_file(cgrp->kn, cgroup_file_name(cgrp, cft, name),
2174 cgroup_file_mode(cft), 0, cft->kf_ops, cft,
2175 NULL, false, key);
430af8ad 2176 return PTR_ERR_OR_ZERO(kn);
ddbcc7e8
PM
2177}
2178
b1f28d31
TH
2179/**
2180 * cgroup_addrm_files - add or remove files to a cgroup directory
2181 * @cgrp: the target cgroup
b1f28d31
TH
2182 * @cfts: array of cftypes to be added
2183 * @is_add: whether to add or remove
2184 *
2185 * Depending on @is_add, add or remove files defined by @cfts on @cgrp.
2bb566cb
TH
2186 * For removals, this function never fails. If addition fails, this
2187 * function doesn't remove files already added. The caller is responsible
2188 * for cleaning up.
b1f28d31 2189 */
2bb566cb
TH
2190static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
2191 bool is_add)
ddbcc7e8 2192{
03b1cde6 2193 struct cftype *cft;
b1f28d31
TH
2194 int ret;
2195
ace2bee8 2196 lockdep_assert_held(&cgroup_tree_mutex);
db0416b6
TH
2197
2198 for (cft = cfts; cft->name[0] != '\0'; cft++) {
f33fddc2 2199 /* does cft->flags tell us to skip this file on @cgrp? */
873fe09e
TH
2200 if ((cft->flags & CFTYPE_INSANE) && cgroup_sane_behavior(cgrp))
2201 continue;
f33fddc2
G
2202 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgrp->parent)
2203 continue;
2204 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgrp->parent)
2205 continue;
2206
2739d3cc 2207 if (is_add) {
2bb566cb 2208 ret = cgroup_add_file(cgrp, cft);
b1f28d31 2209 if (ret) {
2739d3cc 2210 pr_warn("cgroup_addrm_files: failed to add %s, err=%d\n",
b1f28d31
TH
2211 cft->name, ret);
2212 return ret;
2213 }
2739d3cc
LZ
2214 } else {
2215 cgroup_rm_file(cgrp, cft);
db0416b6 2216 }
ddbcc7e8 2217 }
b1f28d31 2218 return 0;
ddbcc7e8
PM
2219}
2220
21a2d343 2221static int cgroup_apply_cftypes(struct cftype *cfts, bool is_add)
8e3f6541
TH
2222{
2223 LIST_HEAD(pending);
2bb566cb 2224 struct cgroup_subsys *ss = cfts[0].ss;
492eb21b 2225 struct cgroup *root = &ss->root->top_cgroup;
492eb21b 2226 struct cgroup_subsys_state *css;
9ccece80 2227 int ret = 0;
8e3f6541 2228
21a2d343 2229 lockdep_assert_held(&cgroup_tree_mutex);
4ac06017 2230
21a2d343
TH
2231 /* don't bother if @ss isn't attached */
2232 if (ss->root == &cgroup_dummy_root)
9ccece80 2233 return 0;
e8c82d20 2234
e8c82d20 2235 /* add/rm files for all cgroups created before */
ca8bdcaf 2236 css_for_each_descendant_pre(css, cgroup_css(root, ss)) {
492eb21b
TH
2237 struct cgroup *cgrp = css->cgroup;
2238
e8c82d20
LZ
2239 if (cgroup_is_dead(cgrp))
2240 continue;
2241
21a2d343 2242 ret = cgroup_addrm_files(cgrp, cfts, is_add);
9ccece80
TH
2243 if (ret)
2244 break;
8e3f6541 2245 }
21a2d343
TH
2246
2247 if (is_add && !ret)
2248 kernfs_activate(root->kn);
9ccece80 2249 return ret;
8e3f6541
TH
2250}
2251
2da440a2
TH
2252static void cgroup_exit_cftypes(struct cftype *cfts)
2253{
2254 struct cftype *cft;
2255
2bd59d48
TH
2256 for (cft = cfts; cft->name[0] != '\0'; cft++) {
2257 /* free copy for custom atomic_write_len, see init_cftypes() */
2258 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE)
2259 kfree(cft->kf_ops);
2260 cft->kf_ops = NULL;
2da440a2 2261 cft->ss = NULL;
2bd59d48 2262 }
2da440a2
TH
2263}
2264
2bd59d48 2265static int cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
2da440a2
TH
2266{
2267 struct cftype *cft;
2268
2bd59d48
TH
2269 for (cft = cfts; cft->name[0] != '\0'; cft++) {
2270 struct kernfs_ops *kf_ops;
2271
0adb0704
TH
2272 WARN_ON(cft->ss || cft->kf_ops);
2273
2bd59d48
TH
2274 if (cft->seq_start)
2275 kf_ops = &cgroup_kf_ops;
2276 else
2277 kf_ops = &cgroup_kf_single_ops;
2278
2279 /*
2280 * Ugh... if @cft wants a custom max_write_len, we need to
2281 * make a copy of kf_ops to set its atomic_write_len.
2282 */
2283 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) {
2284 kf_ops = kmemdup(kf_ops, sizeof(*kf_ops), GFP_KERNEL);
2285 if (!kf_ops) {
2286 cgroup_exit_cftypes(cfts);
2287 return -ENOMEM;
2288 }
2289 kf_ops->atomic_write_len = cft->max_write_len;
2290 }
2291
2292 cft->kf_ops = kf_ops;
2da440a2 2293 cft->ss = ss;
2bd59d48
TH
2294 }
2295
2296 return 0;
2da440a2
TH
2297}
2298
21a2d343
TH
2299static int cgroup_rm_cftypes_locked(struct cftype *cfts)
2300{
2301 lockdep_assert_held(&cgroup_tree_mutex);
2302
2303 if (!cfts || !cfts[0].ss)
2304 return -ENOENT;
2305
2306 list_del(&cfts->node);
2307 cgroup_apply_cftypes(cfts, false);
2308 cgroup_exit_cftypes(cfts);
2309 return 0;
2310}
2311
80b13586
TH
2312/**
2313 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
2314 * @cfts: zero-length name terminated array of cftypes
2315 *
2316 * Unregister @cfts. Files described by @cfts are removed from all
2317 * existing cgroups and all future cgroups won't have them either. This
2318 * function can be called anytime whether @cfts' subsys is attached or not.
2319 *
2320 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
2321 * registered.
2322 */
2323int cgroup_rm_cftypes(struct cftype *cfts)
2324{
21a2d343 2325 int ret;
80b13586 2326
21a2d343
TH
2327 mutex_lock(&cgroup_tree_mutex);
2328 ret = cgroup_rm_cftypes_locked(cfts);
2329 mutex_unlock(&cgroup_tree_mutex);
2330 return ret;
80b13586
TH
2331}
2332
8e3f6541
TH
2333/**
2334 * cgroup_add_cftypes - add an array of cftypes to a subsystem
2335 * @ss: target cgroup subsystem
2336 * @cfts: zero-length name terminated array of cftypes
2337 *
2338 * Register @cfts to @ss. Files described by @cfts are created for all
2339 * existing cgroups to which @ss is attached and all future cgroups will
2340 * have them too. This function can be called anytime whether @ss is
2341 * attached or not.
2342 *
2343 * Returns 0 on successful registration, -errno on failure. Note that this
2344 * function currently returns 0 as long as @cfts registration is successful
2345 * even if some file creation attempts on existing cgroups fail.
2346 */
03b1cde6 2347int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
8e3f6541 2348{
9ccece80 2349 int ret;
8e3f6541 2350
2bd59d48
TH
2351 ret = cgroup_init_cftypes(ss, cfts);
2352 if (ret)
2353 return ret;
2bb566cb 2354
21a2d343
TH
2355 mutex_lock(&cgroup_tree_mutex);
2356
0adb0704 2357 list_add_tail(&cfts->node, &ss->cfts);
21a2d343 2358 ret = cgroup_apply_cftypes(cfts, true);
9ccece80 2359 if (ret)
21a2d343
TH
2360 cgroup_rm_cftypes_locked(cfts);
2361
2362 mutex_unlock(&cgroup_tree_mutex);
9ccece80 2363 return ret;
8e3f6541 2364}
8e3f6541 2365
a043e3b2
LZ
2366/**
2367 * cgroup_task_count - count the number of tasks in a cgroup.
2368 * @cgrp: the cgroup in question
2369 *
2370 * Return the number of tasks in the cgroup.
2371 */
07bc356e 2372static int cgroup_task_count(const struct cgroup *cgrp)
bbcb81d0
PM
2373{
2374 int count = 0;
69d0206c 2375 struct cgrp_cset_link *link;
817929ec 2376
96d365e0 2377 down_read(&css_set_rwsem);
69d0206c
TH
2378 list_for_each_entry(link, &cgrp->cset_links, cset_link)
2379 count += atomic_read(&link->cset->refcount);
96d365e0 2380 up_read(&css_set_rwsem);
bbcb81d0
PM
2381 return count;
2382}
2383
53fa5261 2384/**
492eb21b
TH
2385 * css_next_child - find the next child of a given css
2386 * @pos_css: the current position (%NULL to initiate traversal)
2387 * @parent_css: css whose children to walk
53fa5261 2388 *
492eb21b 2389 * This function returns the next child of @parent_css and should be called
87fb54f1
TH
2390 * under either cgroup_mutex or RCU read lock. The only requirement is
2391 * that @parent_css and @pos_css are accessible. The next sibling is
2392 * guaranteed to be returned regardless of their states.
53fa5261 2393 */
492eb21b
TH
2394struct cgroup_subsys_state *
2395css_next_child(struct cgroup_subsys_state *pos_css,
2396 struct cgroup_subsys_state *parent_css)
53fa5261 2397{
492eb21b
TH
2398 struct cgroup *pos = pos_css ? pos_css->cgroup : NULL;
2399 struct cgroup *cgrp = parent_css->cgroup;
53fa5261
TH
2400 struct cgroup *next;
2401
ace2bee8 2402 cgroup_assert_mutexes_or_rcu_locked();
53fa5261
TH
2403
2404 /*
2405 * @pos could already have been removed. Once a cgroup is removed,
2406 * its ->sibling.next is no longer updated when its next sibling
ea15f8cc
TH
2407 * changes. As CGRP_DEAD assertion is serialized and happens
2408 * before the cgroup is taken off the ->sibling list, if we see it
2409 * unasserted, it's guaranteed that the next sibling hasn't
2410 * finished its grace period even if it's already removed, and thus
2411 * safe to dereference from this RCU critical section. If
2412 * ->sibling.next is inaccessible, cgroup_is_dead() is guaranteed
2413 * to be visible as %true here.
3b287a50
TH
2414 *
2415 * If @pos is dead, its next pointer can't be dereferenced;
2416 * however, as each cgroup is given a monotonically increasing
2417 * unique serial number and always appended to the sibling list,
2418 * the next one can be found by walking the parent's children until
2419 * we see a cgroup with higher serial number than @pos's. While
2420 * this path can be slower, it's taken only when either the current
2421 * cgroup is removed or iteration and removal race.
53fa5261 2422 */
3b287a50
TH
2423 if (!pos) {
2424 next = list_entry_rcu(cgrp->children.next, struct cgroup, sibling);
2425 } else if (likely(!cgroup_is_dead(pos))) {
53fa5261 2426 next = list_entry_rcu(pos->sibling.next, struct cgroup, sibling);
3b287a50
TH
2427 } else {
2428 list_for_each_entry_rcu(next, &cgrp->children, sibling)
2429 if (next->serial_nr > pos->serial_nr)
2430 break;
53fa5261
TH
2431 }
2432
492eb21b
TH
2433 if (&next->sibling == &cgrp->children)
2434 return NULL;
2435
ca8bdcaf 2436 return cgroup_css(next, parent_css->ss);
53fa5261 2437}
53fa5261 2438
574bd9f7 2439/**
492eb21b 2440 * css_next_descendant_pre - find the next descendant for pre-order walk
574bd9f7 2441 * @pos: the current position (%NULL to initiate traversal)
492eb21b 2442 * @root: css whose descendants to walk
574bd9f7 2443 *
492eb21b 2444 * To be used by css_for_each_descendant_pre(). Find the next descendant
bd8815a6
TH
2445 * to visit for pre-order traversal of @root's descendants. @root is
2446 * included in the iteration and the first node to be visited.
75501a6d 2447 *
87fb54f1
TH
2448 * While this function requires cgroup_mutex or RCU read locking, it
2449 * doesn't require the whole traversal to be contained in a single critical
2450 * section. This function will return the correct next descendant as long
2451 * as both @pos and @root are accessible and @pos is a descendant of @root.
574bd9f7 2452 */
492eb21b
TH
2453struct cgroup_subsys_state *
2454css_next_descendant_pre(struct cgroup_subsys_state *pos,
2455 struct cgroup_subsys_state *root)
574bd9f7 2456{
492eb21b 2457 struct cgroup_subsys_state *next;
574bd9f7 2458
ace2bee8 2459 cgroup_assert_mutexes_or_rcu_locked();
574bd9f7 2460
bd8815a6 2461 /* if first iteration, visit @root */
7805d000 2462 if (!pos)
bd8815a6 2463 return root;
574bd9f7
TH
2464
2465 /* visit the first child if exists */
492eb21b 2466 next = css_next_child(NULL, pos);
574bd9f7
TH
2467 if (next)
2468 return next;
2469
2470 /* no child, visit my or the closest ancestor's next sibling */
492eb21b
TH
2471 while (pos != root) {
2472 next = css_next_child(pos, css_parent(pos));
75501a6d 2473 if (next)
574bd9f7 2474 return next;
492eb21b 2475 pos = css_parent(pos);
7805d000 2476 }
574bd9f7
TH
2477
2478 return NULL;
2479}
574bd9f7 2480
12a9d2fe 2481/**
492eb21b
TH
2482 * css_rightmost_descendant - return the rightmost descendant of a css
2483 * @pos: css of interest
12a9d2fe 2484 *
492eb21b
TH
2485 * Return the rightmost descendant of @pos. If there's no descendant, @pos
2486 * is returned. This can be used during pre-order traversal to skip
12a9d2fe 2487 * subtree of @pos.
75501a6d 2488 *
87fb54f1
TH
2489 * While this function requires cgroup_mutex or RCU read locking, it
2490 * doesn't require the whole traversal to be contained in a single critical
2491 * section. This function will return the correct rightmost descendant as
2492 * long as @pos is accessible.
12a9d2fe 2493 */
492eb21b
TH
2494struct cgroup_subsys_state *
2495css_rightmost_descendant(struct cgroup_subsys_state *pos)
12a9d2fe 2496{
492eb21b 2497 struct cgroup_subsys_state *last, *tmp;
12a9d2fe 2498
ace2bee8 2499 cgroup_assert_mutexes_or_rcu_locked();
12a9d2fe
TH
2500
2501 do {
2502 last = pos;
2503 /* ->prev isn't RCU safe, walk ->next till the end */
2504 pos = NULL;
492eb21b 2505 css_for_each_child(tmp, last)
12a9d2fe
TH
2506 pos = tmp;
2507 } while (pos);
2508
2509 return last;
2510}
12a9d2fe 2511
492eb21b
TH
2512static struct cgroup_subsys_state *
2513css_leftmost_descendant(struct cgroup_subsys_state *pos)
574bd9f7 2514{
492eb21b 2515 struct cgroup_subsys_state *last;
574bd9f7
TH
2516
2517 do {
2518 last = pos;
492eb21b 2519 pos = css_next_child(NULL, pos);
574bd9f7
TH
2520 } while (pos);
2521
2522 return last;
2523}
2524
2525/**
492eb21b 2526 * css_next_descendant_post - find the next descendant for post-order walk
574bd9f7 2527 * @pos: the current position (%NULL to initiate traversal)
492eb21b 2528 * @root: css whose descendants to walk
574bd9f7 2529 *
492eb21b 2530 * To be used by css_for_each_descendant_post(). Find the next descendant
bd8815a6
TH
2531 * to visit for post-order traversal of @root's descendants. @root is
2532 * included in the iteration and the last node to be visited.
75501a6d 2533 *
87fb54f1
TH
2534 * While this function requires cgroup_mutex or RCU read locking, it
2535 * doesn't require the whole traversal to be contained in a single critical
2536 * section. This function will return the correct next descendant as long
2537 * as both @pos and @cgroup are accessible and @pos is a descendant of
2538 * @cgroup.
574bd9f7 2539 */
492eb21b
TH
2540struct cgroup_subsys_state *
2541css_next_descendant_post(struct cgroup_subsys_state *pos,
2542 struct cgroup_subsys_state *root)
574bd9f7 2543{
492eb21b 2544 struct cgroup_subsys_state *next;
574bd9f7 2545
ace2bee8 2546 cgroup_assert_mutexes_or_rcu_locked();
574bd9f7 2547
58b79a91
TH
2548 /* if first iteration, visit leftmost descendant which may be @root */
2549 if (!pos)
2550 return css_leftmost_descendant(root);
574bd9f7 2551
bd8815a6
TH
2552 /* if we visited @root, we're done */
2553 if (pos == root)
2554 return NULL;
2555
574bd9f7 2556 /* if there's an unvisited sibling, visit its leftmost descendant */
492eb21b 2557 next = css_next_child(pos, css_parent(pos));
75501a6d 2558 if (next)
492eb21b 2559 return css_leftmost_descendant(next);
574bd9f7
TH
2560
2561 /* no sibling left, visit parent */
bd8815a6 2562 return css_parent(pos);
574bd9f7 2563}
574bd9f7 2564
0942eeee 2565/**
72ec7029 2566 * css_advance_task_iter - advance a task itererator to the next css_set
0942eeee
TH
2567 * @it: the iterator to advance
2568 *
2569 * Advance @it to the next css_set to walk.
d515876e 2570 */
72ec7029 2571static void css_advance_task_iter(struct css_task_iter *it)
d515876e
TH
2572{
2573 struct list_head *l = it->cset_link;
2574 struct cgrp_cset_link *link;
2575 struct css_set *cset;
2576
2577 /* Advance to the next non-empty css_set */
2578 do {
2579 l = l->next;
72ec7029 2580 if (l == &it->origin_css->cgroup->cset_links) {
d515876e
TH
2581 it->cset_link = NULL;
2582 return;
2583 }
2584 link = list_entry(l, struct cgrp_cset_link, cset_link);
2585 cset = link->cset;
2586 } while (list_empty(&cset->tasks));
2587 it->cset_link = l;
2588 it->task = cset->tasks.next;
2589}
2590
0942eeee 2591/**
72ec7029
TH
2592 * css_task_iter_start - initiate task iteration
2593 * @css: the css to walk tasks of
0942eeee
TH
2594 * @it: the task iterator to use
2595 *
72ec7029
TH
2596 * Initiate iteration through the tasks of @css. The caller can call
2597 * css_task_iter_next() to walk through the tasks until the function
2598 * returns NULL. On completion of iteration, css_task_iter_end() must be
2599 * called.
0942eeee
TH
2600 *
2601 * Note that this function acquires a lock which is released when the
2602 * iteration finishes. The caller can't sleep while iteration is in
2603 * progress.
2604 */
72ec7029
TH
2605void css_task_iter_start(struct cgroup_subsys_state *css,
2606 struct css_task_iter *it)
96d365e0 2607 __acquires(css_set_rwsem)
817929ec 2608{
56fde9e0
TH
2609 /* no one should try to iterate before mounting cgroups */
2610 WARN_ON_ONCE(!use_task_css_set_links);
31a7df01 2611
96d365e0 2612 down_read(&css_set_rwsem);
c59cd3d8 2613
72ec7029
TH
2614 it->origin_css = css;
2615 it->cset_link = &css->cgroup->cset_links;
c59cd3d8 2616
72ec7029 2617 css_advance_task_iter(it);
817929ec
PM
2618}
2619
0942eeee 2620/**
72ec7029 2621 * css_task_iter_next - return the next task for the iterator
0942eeee
TH
2622 * @it: the task iterator being iterated
2623 *
2624 * The "next" function for task iteration. @it should have been
72ec7029
TH
2625 * initialized via css_task_iter_start(). Returns NULL when the iteration
2626 * reaches the end.
0942eeee 2627 */
72ec7029 2628struct task_struct *css_task_iter_next(struct css_task_iter *it)
817929ec
PM
2629{
2630 struct task_struct *res;
2631 struct list_head *l = it->task;
69d0206c 2632 struct cgrp_cset_link *link;
817929ec
PM
2633
2634 /* If the iterator cg is NULL, we have no tasks */
69d0206c 2635 if (!it->cset_link)
817929ec
PM
2636 return NULL;
2637 res = list_entry(l, struct task_struct, cg_list);
2638 /* Advance iterator to find next entry */
2639 l = l->next;
69d0206c
TH
2640 link = list_entry(it->cset_link, struct cgrp_cset_link, cset_link);
2641 if (l == &link->cset->tasks) {
0942eeee
TH
2642 /*
2643 * We reached the end of this task list - move on to the
2644 * next cgrp_cset_link.
2645 */
72ec7029 2646 css_advance_task_iter(it);
817929ec
PM
2647 } else {
2648 it->task = l;
2649 }
2650 return res;
2651}
2652
0942eeee 2653/**
72ec7029 2654 * css_task_iter_end - finish task iteration
0942eeee
TH
2655 * @it: the task iterator to finish
2656 *
72ec7029 2657 * Finish task iteration started by css_task_iter_start().
0942eeee 2658 */
72ec7029 2659void css_task_iter_end(struct css_task_iter *it)
96d365e0 2660 __releases(css_set_rwsem)
817929ec 2661{
96d365e0 2662 up_read(&css_set_rwsem);
817929ec
PM
2663}
2664
8cc99345
TH
2665/**
2666 * cgroup_trasnsfer_tasks - move tasks from one cgroup to another
2667 * @to: cgroup to which the tasks will be moved
2668 * @from: cgroup in which the tasks currently reside
2669 */
2670int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from)
2671{
e406d1cf
TH
2672 struct css_task_iter it;
2673 struct task_struct *task;
2674 int ret = 0;
2675
2676 do {
2677 css_task_iter_start(&from->dummy_css, &it);
2678 task = css_task_iter_next(&it);
2679 if (task)
2680 get_task_struct(task);
2681 css_task_iter_end(&it);
2682
2683 if (task) {
2684 mutex_lock(&cgroup_mutex);
2685 ret = cgroup_attach_task(to, task, false);
2686 mutex_unlock(&cgroup_mutex);
2687 put_task_struct(task);
2688 }
2689 } while (task && !ret);
2690
2691 return ret;
8cc99345
TH
2692}
2693
bbcb81d0 2694/*
102a775e 2695 * Stuff for reading the 'tasks'/'procs' files.
bbcb81d0
PM
2696 *
2697 * Reading this file can return large amounts of data if a cgroup has
2698 * *lots* of attached tasks. So it may need several calls to read(),
2699 * but we cannot guarantee that the information we produce is correct
2700 * unless we produce it entirely atomically.
2701 *
bbcb81d0 2702 */
bbcb81d0 2703
24528255
LZ
2704/* which pidlist file are we talking about? */
2705enum cgroup_filetype {
2706 CGROUP_FILE_PROCS,
2707 CGROUP_FILE_TASKS,
2708};
2709
2710/*
2711 * A pidlist is a list of pids that virtually represents the contents of one
2712 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
2713 * a pair (one each for procs, tasks) for each pid namespace that's relevant
2714 * to the cgroup.
2715 */
2716struct cgroup_pidlist {
2717 /*
2718 * used to find which pidlist is wanted. doesn't change as long as
2719 * this particular list stays in the list.
2720 */
2721 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
2722 /* array of xids */
2723 pid_t *list;
2724 /* how many elements the above list has */
2725 int length;
24528255
LZ
2726 /* each of these stored in a list by its cgroup */
2727 struct list_head links;
2728 /* pointer to the cgroup we belong to, for list removal purposes */
2729 struct cgroup *owner;
b1a21367
TH
2730 /* for delayed destruction */
2731 struct delayed_work destroy_dwork;
24528255
LZ
2732};
2733
d1d9fd33
BB
2734/*
2735 * The following two functions "fix" the issue where there are more pids
2736 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
2737 * TODO: replace with a kernel-wide solution to this problem
2738 */
2739#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
2740static void *pidlist_allocate(int count)
2741{
2742 if (PIDLIST_TOO_LARGE(count))
2743 return vmalloc(count * sizeof(pid_t));
2744 else
2745 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
2746}
b1a21367 2747
d1d9fd33
BB
2748static void pidlist_free(void *p)
2749{
2750 if (is_vmalloc_addr(p))
2751 vfree(p);
2752 else
2753 kfree(p);
2754}
d1d9fd33 2755
b1a21367
TH
2756/*
2757 * Used to destroy all pidlists lingering waiting for destroy timer. None
2758 * should be left afterwards.
2759 */
2760static void cgroup_pidlist_destroy_all(struct cgroup *cgrp)
2761{
2762 struct cgroup_pidlist *l, *tmp_l;
2763
2764 mutex_lock(&cgrp->pidlist_mutex);
2765 list_for_each_entry_safe(l, tmp_l, &cgrp->pidlists, links)
2766 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, 0);
2767 mutex_unlock(&cgrp->pidlist_mutex);
2768
2769 flush_workqueue(cgroup_pidlist_destroy_wq);
2770 BUG_ON(!list_empty(&cgrp->pidlists));
2771}
2772
2773static void cgroup_pidlist_destroy_work_fn(struct work_struct *work)
2774{
2775 struct delayed_work *dwork = to_delayed_work(work);
2776 struct cgroup_pidlist *l = container_of(dwork, struct cgroup_pidlist,
2777 destroy_dwork);
2778 struct cgroup_pidlist *tofree = NULL;
2779
2780 mutex_lock(&l->owner->pidlist_mutex);
b1a21367
TH
2781
2782 /*
04502365
TH
2783 * Destroy iff we didn't get queued again. The state won't change
2784 * as destroy_dwork can only be queued while locked.
b1a21367 2785 */
04502365 2786 if (!delayed_work_pending(dwork)) {
b1a21367
TH
2787 list_del(&l->links);
2788 pidlist_free(l->list);
2789 put_pid_ns(l->key.ns);
2790 tofree = l;
2791 }
2792
b1a21367
TH
2793 mutex_unlock(&l->owner->pidlist_mutex);
2794 kfree(tofree);
2795}
2796
bbcb81d0 2797/*
102a775e 2798 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
6ee211ad 2799 * Returns the number of unique elements.
bbcb81d0 2800 */
6ee211ad 2801static int pidlist_uniq(pid_t *list, int length)
bbcb81d0 2802{
102a775e 2803 int src, dest = 1;
102a775e
BB
2804
2805 /*
2806 * we presume the 0th element is unique, so i starts at 1. trivial
2807 * edge cases first; no work needs to be done for either
2808 */
2809 if (length == 0 || length == 1)
2810 return length;
2811 /* src and dest walk down the list; dest counts unique elements */
2812 for (src = 1; src < length; src++) {
2813 /* find next unique element */
2814 while (list[src] == list[src-1]) {
2815 src++;
2816 if (src == length)
2817 goto after;
2818 }
2819 /* dest always points to where the next unique element goes */
2820 list[dest] = list[src];
2821 dest++;
2822 }
2823after:
102a775e
BB
2824 return dest;
2825}
2826
afb2bc14
TH
2827/*
2828 * The two pid files - task and cgroup.procs - guaranteed that the result
2829 * is sorted, which forced this whole pidlist fiasco. As pid order is
2830 * different per namespace, each namespace needs differently sorted list,
2831 * making it impossible to use, for example, single rbtree of member tasks
2832 * sorted by task pointer. As pidlists can be fairly large, allocating one
2833 * per open file is dangerous, so cgroup had to implement shared pool of
2834 * pidlists keyed by cgroup and namespace.
2835 *
2836 * All this extra complexity was caused by the original implementation
2837 * committing to an entirely unnecessary property. In the long term, we
2838 * want to do away with it. Explicitly scramble sort order if
2839 * sane_behavior so that no such expectation exists in the new interface.
2840 *
2841 * Scrambling is done by swapping every two consecutive bits, which is
2842 * non-identity one-to-one mapping which disturbs sort order sufficiently.
2843 */
2844static pid_t pid_fry(pid_t pid)
2845{
2846 unsigned a = pid & 0x55555555;
2847 unsigned b = pid & 0xAAAAAAAA;
2848
2849 return (a << 1) | (b >> 1);
2850}
2851
2852static pid_t cgroup_pid_fry(struct cgroup *cgrp, pid_t pid)
2853{
2854 if (cgroup_sane_behavior(cgrp))
2855 return pid_fry(pid);
2856 else
2857 return pid;
2858}
2859
102a775e
BB
2860static int cmppid(const void *a, const void *b)
2861{
2862 return *(pid_t *)a - *(pid_t *)b;
2863}
2864
afb2bc14
TH
2865static int fried_cmppid(const void *a, const void *b)
2866{
2867 return pid_fry(*(pid_t *)a) - pid_fry(*(pid_t *)b);
2868}
2869
e6b81710
TH
2870static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
2871 enum cgroup_filetype type)
2872{
2873 struct cgroup_pidlist *l;
2874 /* don't need task_nsproxy() if we're looking at ourself */
2875 struct pid_namespace *ns = task_active_pid_ns(current);
2876
2877 lockdep_assert_held(&cgrp->pidlist_mutex);
2878
2879 list_for_each_entry(l, &cgrp->pidlists, links)
2880 if (l->key.type == type && l->key.ns == ns)
2881 return l;
2882 return NULL;
2883}
2884
72a8cb30
BB
2885/*
2886 * find the appropriate pidlist for our purpose (given procs vs tasks)
2887 * returns with the lock on that pidlist already held, and takes care
2888 * of the use count, or returns NULL with no locks held if we're out of
2889 * memory.
2890 */
e6b81710
TH
2891static struct cgroup_pidlist *cgroup_pidlist_find_create(struct cgroup *cgrp,
2892 enum cgroup_filetype type)
72a8cb30
BB
2893{
2894 struct cgroup_pidlist *l;
b70cc5fd 2895
e6b81710
TH
2896 lockdep_assert_held(&cgrp->pidlist_mutex);
2897
2898 l = cgroup_pidlist_find(cgrp, type);
2899 if (l)
2900 return l;
2901
72a8cb30 2902 /* entry not found; create a new one */
f4f4be2b 2903 l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
e6b81710 2904 if (!l)
72a8cb30 2905 return l;
e6b81710 2906
b1a21367 2907 INIT_DELAYED_WORK(&l->destroy_dwork, cgroup_pidlist_destroy_work_fn);
72a8cb30 2908 l->key.type = type;
e6b81710
TH
2909 /* don't need task_nsproxy() if we're looking at ourself */
2910 l->key.ns = get_pid_ns(task_active_pid_ns(current));
72a8cb30
BB
2911 l->owner = cgrp;
2912 list_add(&l->links, &cgrp->pidlists);
72a8cb30
BB
2913 return l;
2914}
2915
102a775e
BB
2916/*
2917 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
2918 */
72a8cb30
BB
2919static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
2920 struct cgroup_pidlist **lp)
102a775e
BB
2921{
2922 pid_t *array;
2923 int length;
2924 int pid, n = 0; /* used for populating the array */
72ec7029 2925 struct css_task_iter it;
817929ec 2926 struct task_struct *tsk;
102a775e
BB
2927 struct cgroup_pidlist *l;
2928
4bac00d1
TH
2929 lockdep_assert_held(&cgrp->pidlist_mutex);
2930
102a775e
BB
2931 /*
2932 * If cgroup gets more users after we read count, we won't have
2933 * enough space - tough. This race is indistinguishable to the
2934 * caller from the case that the additional cgroup users didn't
2935 * show up until sometime later on.
2936 */
2937 length = cgroup_task_count(cgrp);
d1d9fd33 2938 array = pidlist_allocate(length);
102a775e
BB
2939 if (!array)
2940 return -ENOMEM;
2941 /* now, populate the array */
72ec7029
TH
2942 css_task_iter_start(&cgrp->dummy_css, &it);
2943 while ((tsk = css_task_iter_next(&it))) {
102a775e 2944 if (unlikely(n == length))
817929ec 2945 break;
102a775e 2946 /* get tgid or pid for procs or tasks file respectively */
72a8cb30
BB
2947 if (type == CGROUP_FILE_PROCS)
2948 pid = task_tgid_vnr(tsk);
2949 else
2950 pid = task_pid_vnr(tsk);
102a775e
BB
2951 if (pid > 0) /* make sure to only use valid results */
2952 array[n++] = pid;
817929ec 2953 }
72ec7029 2954 css_task_iter_end(&it);
102a775e
BB
2955 length = n;
2956 /* now sort & (if procs) strip out duplicates */
afb2bc14
TH
2957 if (cgroup_sane_behavior(cgrp))
2958 sort(array, length, sizeof(pid_t), fried_cmppid, NULL);
2959 else
2960 sort(array, length, sizeof(pid_t), cmppid, NULL);
72a8cb30 2961 if (type == CGROUP_FILE_PROCS)
6ee211ad 2962 length = pidlist_uniq(array, length);
e6b81710 2963
e6b81710 2964 l = cgroup_pidlist_find_create(cgrp, type);
72a8cb30 2965 if (!l) {
e6b81710 2966 mutex_unlock(&cgrp->pidlist_mutex);
d1d9fd33 2967 pidlist_free(array);
72a8cb30 2968 return -ENOMEM;
102a775e 2969 }
e6b81710
TH
2970
2971 /* store array, freeing old if necessary */
d1d9fd33 2972 pidlist_free(l->list);
102a775e
BB
2973 l->list = array;
2974 l->length = length;
72a8cb30 2975 *lp = l;
102a775e 2976 return 0;
bbcb81d0
PM
2977}
2978
846c7bb0 2979/**
a043e3b2 2980 * cgroupstats_build - build and fill cgroupstats
846c7bb0
BS
2981 * @stats: cgroupstats to fill information into
2982 * @dentry: A dentry entry belonging to the cgroup for which stats have
2983 * been requested.
a043e3b2
LZ
2984 *
2985 * Build and fill cgroupstats so that taskstats can export it to user
2986 * space.
846c7bb0
BS
2987 */
2988int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
2989{
2bd59d48 2990 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
bd89aabc 2991 struct cgroup *cgrp;
72ec7029 2992 struct css_task_iter it;
846c7bb0 2993 struct task_struct *tsk;
33d283be 2994
2bd59d48
TH
2995 /* it should be kernfs_node belonging to cgroupfs and is a directory */
2996 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
2997 kernfs_type(kn) != KERNFS_DIR)
2998 return -EINVAL;
2999
bad34660
LZ
3000 mutex_lock(&cgroup_mutex);
3001
846c7bb0 3002 /*
2bd59d48
TH
3003 * We aren't being called from kernfs and there's no guarantee on
3004 * @kn->priv's validity. For this and css_tryget_from_dir(),
3005 * @kn->priv is RCU safe. Let's do the RCU dancing.
846c7bb0 3006 */
2bd59d48
TH
3007 rcu_read_lock();
3008 cgrp = rcu_dereference(kn->priv);
bad34660 3009 if (!cgrp || cgroup_is_dead(cgrp)) {
2bd59d48 3010 rcu_read_unlock();
bad34660 3011 mutex_unlock(&cgroup_mutex);
2bd59d48
TH
3012 return -ENOENT;
3013 }
bad34660 3014 rcu_read_unlock();
846c7bb0 3015
72ec7029
TH
3016 css_task_iter_start(&cgrp->dummy_css, &it);
3017 while ((tsk = css_task_iter_next(&it))) {
846c7bb0
BS
3018 switch (tsk->state) {
3019 case TASK_RUNNING:
3020 stats->nr_running++;
3021 break;
3022 case TASK_INTERRUPTIBLE:
3023 stats->nr_sleeping++;
3024 break;
3025 case TASK_UNINTERRUPTIBLE:
3026 stats->nr_uninterruptible++;
3027 break;
3028 case TASK_STOPPED:
3029 stats->nr_stopped++;
3030 break;
3031 default:
3032 if (delayacct_is_task_waiting_on_io(tsk))
3033 stats->nr_io_wait++;
3034 break;
3035 }
3036 }
72ec7029 3037 css_task_iter_end(&it);
846c7bb0 3038
bad34660 3039 mutex_unlock(&cgroup_mutex);
2bd59d48 3040 return 0;
846c7bb0
BS
3041}
3042
8f3ff208 3043
bbcb81d0 3044/*
102a775e 3045 * seq_file methods for the tasks/procs files. The seq_file position is the
cc31edce 3046 * next pid to display; the seq_file iterator is a pointer to the pid
102a775e 3047 * in the cgroup->l->list array.
bbcb81d0 3048 */
cc31edce 3049
102a775e 3050static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
bbcb81d0 3051{
cc31edce
PM
3052 /*
3053 * Initially we receive a position value that corresponds to
3054 * one more than the last pid shown (or 0 on the first call or
3055 * after a seek to the start). Use a binary-search to find the
3056 * next pid to display, if any
3057 */
2bd59d48 3058 struct kernfs_open_file *of = s->private;
7da11279 3059 struct cgroup *cgrp = seq_css(s)->cgroup;
4bac00d1 3060 struct cgroup_pidlist *l;
7da11279 3061 enum cgroup_filetype type = seq_cft(s)->private;
cc31edce 3062 int index = 0, pid = *pos;
4bac00d1
TH
3063 int *iter, ret;
3064
3065 mutex_lock(&cgrp->pidlist_mutex);
3066
3067 /*
5d22444f 3068 * !NULL @of->priv indicates that this isn't the first start()
4bac00d1 3069 * after open. If the matching pidlist is around, we can use that.
5d22444f 3070 * Look for it. Note that @of->priv can't be used directly. It
4bac00d1
TH
3071 * could already have been destroyed.
3072 */
5d22444f
TH
3073 if (of->priv)
3074 of->priv = cgroup_pidlist_find(cgrp, type);
4bac00d1
TH
3075
3076 /*
3077 * Either this is the first start() after open or the matching
3078 * pidlist has been destroyed inbetween. Create a new one.
3079 */
5d22444f
TH
3080 if (!of->priv) {
3081 ret = pidlist_array_load(cgrp, type,
3082 (struct cgroup_pidlist **)&of->priv);
4bac00d1
TH
3083 if (ret)
3084 return ERR_PTR(ret);
3085 }
5d22444f 3086 l = of->priv;
cc31edce 3087
cc31edce 3088 if (pid) {
102a775e 3089 int end = l->length;
20777766 3090
cc31edce
PM
3091 while (index < end) {
3092 int mid = (index + end) / 2;
afb2bc14 3093 if (cgroup_pid_fry(cgrp, l->list[mid]) == pid) {
cc31edce
PM
3094 index = mid;
3095 break;
afb2bc14 3096 } else if (cgroup_pid_fry(cgrp, l->list[mid]) <= pid)
cc31edce
PM
3097 index = mid + 1;
3098 else
3099 end = mid;
3100 }
3101 }
3102 /* If we're off the end of the array, we're done */
102a775e 3103 if (index >= l->length)
cc31edce
PM
3104 return NULL;
3105 /* Update the abstract position to be the actual pid that we found */
102a775e 3106 iter = l->list + index;
afb2bc14 3107 *pos = cgroup_pid_fry(cgrp, *iter);
cc31edce
PM
3108 return iter;
3109}
3110
102a775e 3111static void cgroup_pidlist_stop(struct seq_file *s, void *v)
cc31edce 3112{
2bd59d48 3113 struct kernfs_open_file *of = s->private;
5d22444f 3114 struct cgroup_pidlist *l = of->priv;
62236858 3115
5d22444f
TH
3116 if (l)
3117 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork,
04502365 3118 CGROUP_PIDLIST_DESTROY_DELAY);
7da11279 3119 mutex_unlock(&seq_css(s)->cgroup->pidlist_mutex);
cc31edce
PM
3120}
3121
102a775e 3122static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
cc31edce 3123{
2bd59d48 3124 struct kernfs_open_file *of = s->private;
5d22444f 3125 struct cgroup_pidlist *l = of->priv;
102a775e
BB
3126 pid_t *p = v;
3127 pid_t *end = l->list + l->length;
cc31edce
PM
3128 /*
3129 * Advance to the next pid in the array. If this goes off the
3130 * end, we're done
3131 */
3132 p++;
3133 if (p >= end) {
3134 return NULL;
3135 } else {
7da11279 3136 *pos = cgroup_pid_fry(seq_css(s)->cgroup, *p);
cc31edce
PM
3137 return p;
3138 }
3139}
3140
102a775e 3141static int cgroup_pidlist_show(struct seq_file *s, void *v)
cc31edce
PM
3142{
3143 return seq_printf(s, "%d\n", *(int *)v);
3144}
bbcb81d0 3145
102a775e
BB
3146/*
3147 * seq_operations functions for iterating on pidlists through seq_file -
3148 * independent of whether it's tasks or procs
3149 */
3150static const struct seq_operations cgroup_pidlist_seq_operations = {
3151 .start = cgroup_pidlist_start,
3152 .stop = cgroup_pidlist_stop,
3153 .next = cgroup_pidlist_next,
3154 .show = cgroup_pidlist_show,
cc31edce
PM
3155};
3156
182446d0
TH
3157static u64 cgroup_read_notify_on_release(struct cgroup_subsys_state *css,
3158 struct cftype *cft)
81a6a5cd 3159{
182446d0 3160 return notify_on_release(css->cgroup);
81a6a5cd
PM
3161}
3162
182446d0
TH
3163static int cgroup_write_notify_on_release(struct cgroup_subsys_state *css,
3164 struct cftype *cft, u64 val)
6379c106 3165{
182446d0 3166 clear_bit(CGRP_RELEASABLE, &css->cgroup->flags);
6379c106 3167 if (val)
182446d0 3168 set_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
6379c106 3169 else
182446d0 3170 clear_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
6379c106
PM
3171 return 0;
3172}
3173
182446d0
TH
3174static u64 cgroup_clone_children_read(struct cgroup_subsys_state *css,
3175 struct cftype *cft)
97978e6d 3176{
182446d0 3177 return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
97978e6d
DL
3178}
3179
182446d0
TH
3180static int cgroup_clone_children_write(struct cgroup_subsys_state *css,
3181 struct cftype *cft, u64 val)
97978e6d
DL
3182{
3183 if (val)
182446d0 3184 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
97978e6d 3185 else
182446d0 3186 clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
97978e6d
DL
3187 return 0;
3188}
3189
d5c56ced 3190static struct cftype cgroup_base_files[] = {
81a6a5cd 3191 {
d5c56ced 3192 .name = "cgroup.procs",
6612f05b
TH
3193 .seq_start = cgroup_pidlist_start,
3194 .seq_next = cgroup_pidlist_next,
3195 .seq_stop = cgroup_pidlist_stop,
3196 .seq_show = cgroup_pidlist_show,
5d22444f 3197 .private = CGROUP_FILE_PROCS,
74a1166d 3198 .write_u64 = cgroup_procs_write,
74a1166d 3199 .mode = S_IRUGO | S_IWUSR,
102a775e 3200 },
97978e6d
DL
3201 {
3202 .name = "cgroup.clone_children",
873fe09e 3203 .flags = CFTYPE_INSANE,
97978e6d
DL
3204 .read_u64 = cgroup_clone_children_read,
3205 .write_u64 = cgroup_clone_children_write,
3206 },
873fe09e
TH
3207 {
3208 .name = "cgroup.sane_behavior",
3209 .flags = CFTYPE_ONLY_ON_ROOT,
2da8ca82 3210 .seq_show = cgroup_sane_behavior_show,
873fe09e 3211 },
d5c56ced
TH
3212
3213 /*
3214 * Historical crazy stuff. These don't have "cgroup." prefix and
3215 * don't exist if sane_behavior. If you're depending on these, be
3216 * prepared to be burned.
3217 */
3218 {
3219 .name = "tasks",
3220 .flags = CFTYPE_INSANE, /* use "procs" instead */
6612f05b
TH
3221 .seq_start = cgroup_pidlist_start,
3222 .seq_next = cgroup_pidlist_next,
3223 .seq_stop = cgroup_pidlist_stop,
3224 .seq_show = cgroup_pidlist_show,
5d22444f 3225 .private = CGROUP_FILE_TASKS,
d5c56ced 3226 .write_u64 = cgroup_tasks_write,
d5c56ced
TH
3227 .mode = S_IRUGO | S_IWUSR,
3228 },
3229 {
3230 .name = "notify_on_release",
3231 .flags = CFTYPE_INSANE,
3232 .read_u64 = cgroup_read_notify_on_release,
3233 .write_u64 = cgroup_write_notify_on_release,
3234 },
6e6ff25b
TH
3235 {
3236 .name = "release_agent",
cc5943a7 3237 .flags = CFTYPE_INSANE | CFTYPE_ONLY_ON_ROOT,
2da8ca82 3238 .seq_show = cgroup_release_agent_show,
6e6ff25b 3239 .write_string = cgroup_release_agent_write,
5f469907 3240 .max_write_len = PATH_MAX - 1,
6e6ff25b 3241 },
db0416b6 3242 { } /* terminate */
bbcb81d0
PM
3243};
3244
13af07df 3245/**
628f7cd4 3246 * cgroup_populate_dir - create subsys files in a cgroup directory
13af07df 3247 * @cgrp: target cgroup
13af07df 3248 * @subsys_mask: mask of the subsystem ids whose files should be added
bee55099
TH
3249 *
3250 * On failure, no file is added.
13af07df 3251 */
628f7cd4 3252static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask)
ddbcc7e8 3253{
ddbcc7e8 3254 struct cgroup_subsys *ss;
b420ba7d 3255 int i, ret = 0;
bbcb81d0 3256
8e3f6541 3257 /* process cftsets of each subsystem */
b420ba7d 3258 for_each_subsys(ss, i) {
0adb0704 3259 struct cftype *cfts;
b420ba7d
TH
3260
3261 if (!test_bit(i, &subsys_mask))
13af07df 3262 continue;
8e3f6541 3263
0adb0704
TH
3264 list_for_each_entry(cfts, &ss->cfts, node) {
3265 ret = cgroup_addrm_files(cgrp, cfts, true);
bee55099
TH
3266 if (ret < 0)
3267 goto err;
3268 }
ddbcc7e8 3269 }
ddbcc7e8 3270 return 0;
bee55099
TH
3271err:
3272 cgroup_clear_dir(cgrp, subsys_mask);
3273 return ret;
ddbcc7e8
PM
3274}
3275
0c21ead1
TH
3276/*
3277 * css destruction is four-stage process.
3278 *
3279 * 1. Destruction starts. Killing of the percpu_ref is initiated.
3280 * Implemented in kill_css().
3281 *
3282 * 2. When the percpu_ref is confirmed to be visible as killed on all CPUs
3283 * and thus css_tryget() is guaranteed to fail, the css can be offlined
3284 * by invoking offline_css(). After offlining, the base ref is put.
3285 * Implemented in css_killed_work_fn().
3286 *
3287 * 3. When the percpu_ref reaches zero, the only possible remaining
3288 * accessors are inside RCU read sections. css_release() schedules the
3289 * RCU callback.
3290 *
3291 * 4. After the grace period, the css can be freed. Implemented in
3292 * css_free_work_fn().
3293 *
3294 * It is actually hairier because both step 2 and 4 require process context
3295 * and thus involve punting to css->destroy_work adding two additional
3296 * steps to the already complex sequence.
3297 */
35ef10da 3298static void css_free_work_fn(struct work_struct *work)
48ddbe19
TH
3299{
3300 struct cgroup_subsys_state *css =
35ef10da 3301 container_of(work, struct cgroup_subsys_state, destroy_work);
0c21ead1 3302 struct cgroup *cgrp = css->cgroup;
48ddbe19 3303
0ae78e0b
TH
3304 if (css->parent)
3305 css_put(css->parent);
3306
0c21ead1 3307 css->ss->css_free(css);
2bd59d48 3308 cgroup_put(cgrp);
48ddbe19
TH
3309}
3310
0c21ead1 3311static void css_free_rcu_fn(struct rcu_head *rcu_head)
d3daf28d
TH
3312{
3313 struct cgroup_subsys_state *css =
0c21ead1 3314 container_of(rcu_head, struct cgroup_subsys_state, rcu_head);
d3daf28d 3315
35ef10da 3316 INIT_WORK(&css->destroy_work, css_free_work_fn);
e5fca243 3317 queue_work(cgroup_destroy_wq, &css->destroy_work);
48ddbe19
TH
3318}
3319
d3daf28d
TH
3320static void css_release(struct percpu_ref *ref)
3321{
3322 struct cgroup_subsys_state *css =
3323 container_of(ref, struct cgroup_subsys_state, refcnt);
3324
aec25020 3325 rcu_assign_pointer(css->cgroup->subsys[css->ss->id], NULL);
0c21ead1 3326 call_rcu(&css->rcu_head, css_free_rcu_fn);
d3daf28d
TH
3327}
3328
623f926b
TH
3329static void init_css(struct cgroup_subsys_state *css, struct cgroup_subsys *ss,
3330 struct cgroup *cgrp)
ddbcc7e8 3331{
bd89aabc 3332 css->cgroup = cgrp;
72c97e54 3333 css->ss = ss;
ddbcc7e8 3334 css->flags = 0;
0ae78e0b
TH
3335
3336 if (cgrp->parent)
ca8bdcaf 3337 css->parent = cgroup_css(cgrp->parent, ss);
0ae78e0b 3338 else
38b53aba 3339 css->flags |= CSS_ROOT;
48ddbe19 3340
ca8bdcaf 3341 BUG_ON(cgroup_css(cgrp, ss));
ddbcc7e8
PM
3342}
3343
2a4ac633 3344/* invoke ->css_online() on a new CSS and mark it online if successful */
623f926b 3345static int online_css(struct cgroup_subsys_state *css)
a31f2d3f 3346{
623f926b 3347 struct cgroup_subsys *ss = css->ss;
b1929db4
TH
3348 int ret = 0;
3349
ace2bee8 3350 lockdep_assert_held(&cgroup_tree_mutex);
a31f2d3f
TH
3351 lockdep_assert_held(&cgroup_mutex);
3352
92fb9748 3353 if (ss->css_online)
eb95419b 3354 ret = ss->css_online(css);
ae7f164a 3355 if (!ret) {
eb95419b 3356 css->flags |= CSS_ONLINE;
f20104de 3357 css->cgroup->nr_css++;
aec25020 3358 rcu_assign_pointer(css->cgroup->subsys[ss->id], css);
ae7f164a 3359 }
b1929db4 3360 return ret;
a31f2d3f
TH
3361}
3362
2a4ac633 3363/* if the CSS is online, invoke ->css_offline() on it and mark it offline */
623f926b 3364static void offline_css(struct cgroup_subsys_state *css)
a31f2d3f 3365{
623f926b 3366 struct cgroup_subsys *ss = css->ss;
a31f2d3f 3367
ace2bee8 3368 lockdep_assert_held(&cgroup_tree_mutex);
a31f2d3f
TH
3369 lockdep_assert_held(&cgroup_mutex);
3370
3371 if (!(css->flags & CSS_ONLINE))
3372 return;
3373
d7eeac19 3374 if (ss->css_offline)
eb95419b 3375 ss->css_offline(css);
a31f2d3f 3376
eb95419b 3377 css->flags &= ~CSS_ONLINE;
09a503ea 3378 css->cgroup->nr_css--;
aec25020 3379 RCU_INIT_POINTER(css->cgroup->subsys[ss->id], css);
a31f2d3f
TH
3380}
3381
c81c925a
TH
3382/**
3383 * create_css - create a cgroup_subsys_state
3384 * @cgrp: the cgroup new css will be associated with
3385 * @ss: the subsys of new css
3386 *
3387 * Create a new css associated with @cgrp - @ss pair. On success, the new
3388 * css is online and installed in @cgrp with all interface files created.
3389 * Returns 0 on success, -errno on failure.
3390 */
3391static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss)
3392{
3393 struct cgroup *parent = cgrp->parent;
3394 struct cgroup_subsys_state *css;
3395 int err;
3396
c81c925a
TH
3397 lockdep_assert_held(&cgroup_mutex);
3398
3399 css = ss->css_alloc(cgroup_css(parent, ss));
3400 if (IS_ERR(css))
3401 return PTR_ERR(css);
3402
3403 err = percpu_ref_init(&css->refcnt, css_release);
3404 if (err)
3405 goto err_free;
3406
3407 init_css(css, ss, cgrp);
3408
aec25020 3409 err = cgroup_populate_dir(cgrp, 1 << ss->id);
c81c925a
TH
3410 if (err)
3411 goto err_free;
3412
3413 err = online_css(css);
3414 if (err)
3415 goto err_free;
3416
59f5296b 3417 cgroup_get(cgrp);
c81c925a
TH
3418 css_get(css->parent);
3419
3420 if (ss->broken_hierarchy && !ss->warned_broken_hierarchy &&
3421 parent->parent) {
3422 pr_warning("cgroup: %s (%d) created nested cgroup for controller \"%s\" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.\n",
3423 current->comm, current->pid, ss->name);
3424 if (!strcmp(ss->name, "memory"))
3425 pr_warning("cgroup: \"memory\" requires setting use_hierarchy to 1 on the root.\n");
3426 ss->warned_broken_hierarchy = true;
3427 }
3428
3429 return 0;
3430
3431err_free:
3432 percpu_ref_cancel_init(&css->refcnt);
3433 ss->css_free(css);
3434 return err;
3435}
3436
2bd59d48 3437/**
a043e3b2
LZ
3438 * cgroup_create - create a cgroup
3439 * @parent: cgroup that will be parent of the new cgroup
e61734c5 3440 * @name: name of the new cgroup
2bd59d48 3441 * @mode: mode to set on new cgroup
ddbcc7e8 3442 */
e61734c5 3443static long cgroup_create(struct cgroup *parent, const char *name,
2bd59d48 3444 umode_t mode)
ddbcc7e8 3445{
bd89aabc 3446 struct cgroup *cgrp;
ddbcc7e8 3447 struct cgroupfs_root *root = parent->root;
b58c8998 3448 int ssid, err;
ddbcc7e8 3449 struct cgroup_subsys *ss;
2bd59d48 3450 struct kernfs_node *kn;
ddbcc7e8 3451
0a950f65 3452 /* allocate the cgroup and its ID, 0 is reserved for the root */
bd89aabc
PM
3453 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
3454 if (!cgrp)
ddbcc7e8
PM
3455 return -ENOMEM;
3456
ace2bee8
TH
3457 mutex_lock(&cgroup_tree_mutex);
3458
976c06bc
TH
3459 /*
3460 * Only live parents can have children. Note that the liveliness
3461 * check isn't strictly necessary because cgroup_mkdir() and
3462 * cgroup_rmdir() are fully synchronized by i_mutex; however, do it
3463 * anyway so that locking is contained inside cgroup proper and we
3464 * don't get nasty surprises if we ever grow another caller.
3465 */
3466 if (!cgroup_lock_live_group(parent)) {
3467 err = -ENODEV;
ace2bee8 3468 goto err_unlock_tree;
0ab02ca8
LZ
3469 }
3470
3471 /*
3472 * Temporarily set the pointer to NULL, so idr_find() won't return
3473 * a half-baked cgroup.
3474 */
3475 cgrp->id = idr_alloc(&root->cgroup_idr, NULL, 1, 0, GFP_KERNEL);
3476 if (cgrp->id < 0) {
3477 err = -ENOMEM;
3478 goto err_unlock;
976c06bc
TH
3479 }
3480
cc31edce 3481 init_cgroup_housekeeping(cgrp);
ddbcc7e8 3482
bd89aabc 3483 cgrp->parent = parent;
0ae78e0b 3484 cgrp->dummy_css.parent = &parent->dummy_css;
bd89aabc 3485 cgrp->root = parent->root;
ddbcc7e8 3486
b6abdb0e
LZ
3487 if (notify_on_release(parent))
3488 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3489
2260e7fc
TH
3490 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags))
3491 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
97978e6d 3492
2bd59d48 3493 /* create the directory */
e61734c5 3494 kn = kernfs_create_dir(parent->kn, name, mode, cgrp);
2bd59d48
TH
3495 if (IS_ERR(kn)) {
3496 err = PTR_ERR(kn);
0ab02ca8 3497 goto err_free_id;
2bd59d48
TH
3498 }
3499 cgrp->kn = kn;
ddbcc7e8 3500
6f30558f
TH
3501 /*
3502 * This extra ref will be put in cgroup_free_fn() and guarantees
3503 * that @cgrp->kn is always accessible.
3504 */
3505 kernfs_get(kn);
3506
00356bd5 3507 cgrp->serial_nr = cgroup_serial_nr_next++;
53fa5261 3508
4e139afc 3509 /* allocation complete, commit to creation */
4e139afc 3510 list_add_tail_rcu(&cgrp->sibling, &cgrp->parent->children);
3c9c825b 3511 atomic_inc(&root->nr_cgrps);
59f5296b 3512 cgroup_get(parent);
415cf07a 3513
0d80255e
TH
3514 /*
3515 * @cgrp is now fully operational. If something fails after this
3516 * point, it'll be released via the normal destruction path.
3517 */
4e96ee8e
LZ
3518 idr_replace(&root->cgroup_idr, cgrp, cgrp->id);
3519
2bb566cb 3520 err = cgroup_addrm_files(cgrp, cgroup_base_files, true);
628f7cd4
TH
3521 if (err)
3522 goto err_destroy;
3523
9d403e99 3524 /* let's create and online css's */
b85d2040
TH
3525 for_each_subsys(ss, ssid) {
3526 if (root->subsys_mask & (1 << ssid)) {
3527 err = create_css(cgrp, ss);
3528 if (err)
3529 goto err_destroy;
3530 }
a8638030 3531 }
ddbcc7e8 3532
2bd59d48
TH
3533 kernfs_activate(kn);
3534
ddbcc7e8 3535 mutex_unlock(&cgroup_mutex);
ace2bee8 3536 mutex_unlock(&cgroup_tree_mutex);
ddbcc7e8
PM
3537
3538 return 0;
3539
0a950f65 3540err_free_id:
4e96ee8e 3541 idr_remove(&root->cgroup_idr, cgrp->id);
0ab02ca8
LZ
3542err_unlock:
3543 mutex_unlock(&cgroup_mutex);
ace2bee8
TH
3544err_unlock_tree:
3545 mutex_unlock(&cgroup_tree_mutex);
bd89aabc 3546 kfree(cgrp);
ddbcc7e8 3547 return err;
4b8b47eb
TH
3548
3549err_destroy:
3550 cgroup_destroy_locked(cgrp);
3551 mutex_unlock(&cgroup_mutex);
ace2bee8 3552 mutex_unlock(&cgroup_tree_mutex);
4b8b47eb 3553 return err;
ddbcc7e8
PM
3554}
3555
2bd59d48
TH
3556static int cgroup_mkdir(struct kernfs_node *parent_kn, const char *name,
3557 umode_t mode)
ddbcc7e8 3558{
2bd59d48 3559 struct cgroup *parent = parent_kn->priv;
ddbcc7e8 3560
2bd59d48 3561 return cgroup_create(parent, name, mode);
ddbcc7e8
PM
3562}
3563
223dbc38
TH
3564/*
3565 * This is called when the refcnt of a css is confirmed to be killed.
3566 * css_tryget() is now guaranteed to fail.
3567 */
3568static void css_killed_work_fn(struct work_struct *work)
d3daf28d 3569{
223dbc38
TH
3570 struct cgroup_subsys_state *css =
3571 container_of(work, struct cgroup_subsys_state, destroy_work);
3572 struct cgroup *cgrp = css->cgroup;
d3daf28d 3573
ace2bee8 3574 mutex_lock(&cgroup_tree_mutex);
f20104de
TH
3575 mutex_lock(&cgroup_mutex);
3576
09a503ea
TH
3577 /*
3578 * css_tryget() is guaranteed to fail now. Tell subsystems to
3579 * initate destruction.
3580 */
3581 offline_css(css);
3582
f20104de
TH
3583 /*
3584 * If @cgrp is marked dead, it's waiting for refs of all css's to
3585 * be disabled before proceeding to the second phase of cgroup
3586 * destruction. If we are the last one, kick it off.
3587 */
09a503ea 3588 if (!cgrp->nr_css && cgroup_is_dead(cgrp))
f20104de
TH
3589 cgroup_destroy_css_killed(cgrp);
3590
3591 mutex_unlock(&cgroup_mutex);
ace2bee8 3592 mutex_unlock(&cgroup_tree_mutex);
09a503ea
TH
3593
3594 /*
3595 * Put the css refs from kill_css(). Each css holds an extra
3596 * reference to the cgroup's dentry and cgroup removal proceeds
3597 * regardless of css refs. On the last put of each css, whenever
3598 * that may be, the extra dentry ref is put so that dentry
3599 * destruction happens only after all css's are released.
3600 */
3601 css_put(css);
d3daf28d
TH
3602}
3603
223dbc38
TH
3604/* css kill confirmation processing requires process context, bounce */
3605static void css_killed_ref_fn(struct percpu_ref *ref)
d3daf28d
TH
3606{
3607 struct cgroup_subsys_state *css =
3608 container_of(ref, struct cgroup_subsys_state, refcnt);
3609
223dbc38 3610 INIT_WORK(&css->destroy_work, css_killed_work_fn);
e5fca243 3611 queue_work(cgroup_destroy_wq, &css->destroy_work);
d3daf28d
TH
3612}
3613
edae0c33
TH
3614/**
3615 * kill_css - destroy a css
3616 * @css: css to destroy
3617 *
3c14f8b4
TH
3618 * This function initiates destruction of @css by removing cgroup interface
3619 * files and putting its base reference. ->css_offline() will be invoked
3620 * asynchronously once css_tryget() is guaranteed to fail and when the
3621 * reference count reaches zero, @css will be released.
edae0c33
TH
3622 */
3623static void kill_css(struct cgroup_subsys_state *css)
3624{
2bd59d48
TH
3625 /*
3626 * This must happen before css is disassociated with its cgroup.
3627 * See seq_css() for details.
3628 */
aec25020 3629 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
3c14f8b4 3630
edae0c33
TH
3631 /*
3632 * Killing would put the base ref, but we need to keep it alive
3633 * until after ->css_offline().
3634 */
3635 css_get(css);
3636
3637 /*
3638 * cgroup core guarantees that, by the time ->css_offline() is
3639 * invoked, no new css reference will be given out via
3640 * css_tryget(). We can't simply call percpu_ref_kill() and
3641 * proceed to offlining css's because percpu_ref_kill() doesn't
3642 * guarantee that the ref is seen as killed on all CPUs on return.
3643 *
3644 * Use percpu_ref_kill_and_confirm() to get notifications as each
3645 * css is confirmed to be seen as killed on all CPUs.
3646 */
3647 percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn);
d3daf28d
TH
3648}
3649
3650/**
3651 * cgroup_destroy_locked - the first stage of cgroup destruction
3652 * @cgrp: cgroup to be destroyed
3653 *
3654 * css's make use of percpu refcnts whose killing latency shouldn't be
3655 * exposed to userland and are RCU protected. Also, cgroup core needs to
3656 * guarantee that css_tryget() won't succeed by the time ->css_offline() is
3657 * invoked. To satisfy all the requirements, destruction is implemented in
3658 * the following two steps.
3659 *
3660 * s1. Verify @cgrp can be destroyed and mark it dying. Remove all
3661 * userland visible parts and start killing the percpu refcnts of
3662 * css's. Set up so that the next stage will be kicked off once all
3663 * the percpu refcnts are confirmed to be killed.
3664 *
3665 * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the
3666 * rest of destruction. Once all cgroup references are gone, the
3667 * cgroup is RCU-freed.
3668 *
3669 * This function implements s1. After this step, @cgrp is gone as far as
3670 * the userland is concerned and a new cgroup with the same name may be
3671 * created. As cgroup doesn't care about the names internally, this
3672 * doesn't cause any problem.
3673 */
42809dd4
TH
3674static int cgroup_destroy_locked(struct cgroup *cgrp)
3675 __releases(&cgroup_mutex) __acquires(&cgroup_mutex)
ddbcc7e8 3676{
bb78a92f 3677 struct cgroup *child;
2bd59d48 3678 struct cgroup_subsys_state *css;
ddd69148 3679 bool empty;
1c6727af 3680 int ssid;
ddbcc7e8 3681
ace2bee8 3682 lockdep_assert_held(&cgroup_tree_mutex);
42809dd4
TH
3683 lockdep_assert_held(&cgroup_mutex);
3684
ddd69148 3685 /*
96d365e0 3686 * css_set_rwsem synchronizes access to ->cset_links and prevents
89c5509b 3687 * @cgrp from being removed while put_css_set() is in progress.
ddd69148 3688 */
96d365e0 3689 down_read(&css_set_rwsem);
bb78a92f 3690 empty = list_empty(&cgrp->cset_links);
96d365e0 3691 up_read(&css_set_rwsem);
ddd69148 3692 if (!empty)
ddbcc7e8 3693 return -EBUSY;
a043e3b2 3694
bb78a92f
HD
3695 /*
3696 * Make sure there's no live children. We can't test ->children
3697 * emptiness as dead children linger on it while being destroyed;
3698 * otherwise, "rmdir parent/child parent" may fail with -EBUSY.
3699 */
3700 empty = true;
3701 rcu_read_lock();
3702 list_for_each_entry_rcu(child, &cgrp->children, sibling) {
3703 empty = cgroup_is_dead(child);
3704 if (!empty)
3705 break;
3706 }
3707 rcu_read_unlock();
3708 if (!empty)
3709 return -EBUSY;
3710
88703267 3711 /*
edae0c33
TH
3712 * Initiate massacre of all css's. cgroup_destroy_css_killed()
3713 * will be invoked to perform the rest of destruction once the
4ac06017
TH
3714 * percpu refs of all css's are confirmed to be killed. This
3715 * involves removing the subsystem's files, drop cgroup_mutex.
88703267 3716 */
4ac06017 3717 mutex_unlock(&cgroup_mutex);
1c6727af
TH
3718 for_each_css(css, ssid, cgrp)
3719 kill_css(css);
4ac06017 3720 mutex_lock(&cgroup_mutex);
455050d2
TH
3721
3722 /*
3723 * Mark @cgrp dead. This prevents further task migration and child
3724 * creation by disabling cgroup_lock_live_group(). Note that
492eb21b 3725 * CGRP_DEAD assertion is depended upon by css_next_child() to
455050d2 3726 * resume iteration after dropping RCU read lock. See
492eb21b 3727 * css_next_child() for details.
455050d2 3728 */
54766d4a 3729 set_bit(CGRP_DEAD, &cgrp->flags);
ddbcc7e8 3730
455050d2
TH
3731 /* CGRP_DEAD is set, remove from ->release_list for the last time */
3732 raw_spin_lock(&release_list_lock);
3733 if (!list_empty(&cgrp->release_list))
3734 list_del_init(&cgrp->release_list);
3735 raw_spin_unlock(&release_list_lock);
3736
3737 /*
f20104de
TH
3738 * If @cgrp has css's attached, the second stage of cgroup
3739 * destruction is kicked off from css_killed_work_fn() after the
3740 * refs of all attached css's are killed. If @cgrp doesn't have
3741 * any css, we kick it off here.
3742 */
3743 if (!cgrp->nr_css)
3744 cgroup_destroy_css_killed(cgrp);
3745
2bd59d48
TH
3746 /* remove @cgrp directory along with the base files */
3747 mutex_unlock(&cgroup_mutex);
3748
455050d2 3749 /*
2bd59d48
TH
3750 * There are two control paths which try to determine cgroup from
3751 * dentry without going through kernfs - cgroupstats_build() and
3752 * css_tryget_from_dir(). Those are supported by RCU protecting
3753 * clearing of cgrp->kn->priv backpointer, which should happen
3754 * after all files under it have been removed.
455050d2 3755 */
6f30558f 3756 kernfs_remove(cgrp->kn); /* @cgrp has an extra ref on its kn */
2bd59d48 3757 RCU_INIT_POINTER(*(void __rcu __force **)&cgrp->kn->priv, NULL);
2bd59d48 3758
4ac06017 3759 mutex_lock(&cgroup_mutex);
455050d2 3760
ea15f8cc
TH
3761 return 0;
3762};
3763
d3daf28d 3764/**
f20104de 3765 * cgroup_destroy_css_killed - the second step of cgroup destruction
d3daf28d
TH
3766 * @work: cgroup->destroy_free_work
3767 *
3768 * This function is invoked from a work item for a cgroup which is being
09a503ea
TH
3769 * destroyed after all css's are offlined and performs the rest of
3770 * destruction. This is the second step of destruction described in the
3771 * comment above cgroup_destroy_locked().
d3daf28d 3772 */
f20104de 3773static void cgroup_destroy_css_killed(struct cgroup *cgrp)
ea15f8cc 3774{
ea15f8cc 3775 struct cgroup *parent = cgrp->parent;
ea15f8cc 3776
ace2bee8 3777 lockdep_assert_held(&cgroup_tree_mutex);
f20104de 3778 lockdep_assert_held(&cgroup_mutex);
ea15f8cc 3779
999cd8a4 3780 /* delete this cgroup from parent->children */
eb6fd504 3781 list_del_rcu(&cgrp->sibling);
ed957793 3782
59f5296b 3783 cgroup_put(cgrp);
ddbcc7e8 3784
bd89aabc 3785 set_bit(CGRP_RELEASABLE, &parent->flags);
81a6a5cd 3786 check_for_release(parent);
ddbcc7e8
PM
3787}
3788
2bd59d48 3789static int cgroup_rmdir(struct kernfs_node *kn)
42809dd4 3790{
2bd59d48
TH
3791 struct cgroup *cgrp = kn->priv;
3792 int ret = 0;
3793
3794 /*
3795 * This is self-destruction but @kn can't be removed while this
3796 * callback is in progress. Let's break active protection. Once
3797 * the protection is broken, @cgrp can be destroyed at any point.
3798 * Pin it so that it stays accessible.
3799 */
3800 cgroup_get(cgrp);
3801 kernfs_break_active_protection(kn);
42809dd4 3802
ace2bee8 3803 mutex_lock(&cgroup_tree_mutex);
42809dd4 3804 mutex_lock(&cgroup_mutex);
2bd59d48
TH
3805
3806 /*
3807 * @cgrp might already have been destroyed while we're trying to
3808 * grab the mutexes.
3809 */
3810 if (!cgroup_is_dead(cgrp))
3811 ret = cgroup_destroy_locked(cgrp);
3812
42809dd4 3813 mutex_unlock(&cgroup_mutex);
ace2bee8 3814 mutex_unlock(&cgroup_tree_mutex);
42809dd4 3815
2bd59d48
TH
3816 kernfs_unbreak_active_protection(kn);
3817 cgroup_put(cgrp);
42809dd4
TH
3818 return ret;
3819}
3820
2bd59d48
TH
3821static struct kernfs_syscall_ops cgroup_kf_syscall_ops = {
3822 .remount_fs = cgroup_remount,
3823 .show_options = cgroup_show_options,
3824 .mkdir = cgroup_mkdir,
3825 .rmdir = cgroup_rmdir,
3826 .rename = cgroup_rename,
3827};
3828
06a11920 3829static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
ddbcc7e8 3830{
ddbcc7e8 3831 struct cgroup_subsys_state *css;
cfe36bde
DC
3832
3833 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
ddbcc7e8 3834
ace2bee8 3835 mutex_lock(&cgroup_tree_mutex);
648bb56d
TH
3836 mutex_lock(&cgroup_mutex);
3837
0adb0704 3838 INIT_LIST_HEAD(&ss->cfts);
8e3f6541 3839
ddbcc7e8 3840 /* Create the top cgroup state for this subsystem */
9871bf95 3841 ss->root = &cgroup_dummy_root;
ca8bdcaf 3842 css = ss->css_alloc(cgroup_css(cgroup_dummy_top, ss));
ddbcc7e8
PM
3843 /* We don't handle early failures gracefully */
3844 BUG_ON(IS_ERR(css));
623f926b 3845 init_css(css, ss, cgroup_dummy_top);
ddbcc7e8 3846
e8d55fde 3847 /* Update the init_css_set to contain a subsys
817929ec 3848 * pointer to this state - since the subsystem is
e8d55fde
LZ
3849 * newly registered, all tasks and hence the
3850 * init_css_set is in the subsystem's top cgroup. */
aec25020 3851 init_css_set.subsys[ss->id] = css;
ddbcc7e8
PM
3852
3853 need_forkexit_callback |= ss->fork || ss->exit;
3854
e8d55fde
LZ
3855 /* At system boot, before all subsystems have been
3856 * registered, no tasks have been forked, so we don't
3857 * need to invoke fork callbacks here. */
3858 BUG_ON(!list_empty(&init_task.tasks));
3859
ae7f164a 3860 BUG_ON(online_css(css));
a8638030 3861
648bb56d 3862 mutex_unlock(&cgroup_mutex);
ace2bee8 3863 mutex_unlock(&cgroup_tree_mutex);
e6a1105b
BB
3864}
3865
ddbcc7e8 3866/**
a043e3b2
LZ
3867 * cgroup_init_early - cgroup initialization at system boot
3868 *
3869 * Initialize cgroups at system boot, and initialize any
3870 * subsystems that request early init.
ddbcc7e8
PM
3871 */
3872int __init cgroup_init_early(void)
3873{
30159ec7 3874 struct cgroup_subsys *ss;
ddbcc7e8 3875 int i;
30159ec7 3876
146aa1bd 3877 atomic_set(&init_css_set.refcount, 1);
69d0206c 3878 INIT_LIST_HEAD(&init_css_set.cgrp_links);
817929ec 3879 INIT_LIST_HEAD(&init_css_set.tasks);
472b1053 3880 INIT_HLIST_NODE(&init_css_set.hlist);
817929ec 3881 css_set_count = 1;
9871bf95
TH
3882 init_cgroup_root(&cgroup_dummy_root);
3883 cgroup_root_count = 1;
a4ea1cc9 3884 RCU_INIT_POINTER(init_task.cgroups, &init_css_set);
817929ec 3885
69d0206c 3886 init_cgrp_cset_link.cset = &init_css_set;
9871bf95
TH
3887 init_cgrp_cset_link.cgrp = cgroup_dummy_top;
3888 list_add(&init_cgrp_cset_link.cset_link, &cgroup_dummy_top->cset_links);
69d0206c 3889 list_add(&init_cgrp_cset_link.cgrp_link, &init_css_set.cgrp_links);
ddbcc7e8 3890
3ed80a62 3891 for_each_subsys(ss, i) {
aec25020 3892 WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id,
073219e9
TH
3893 "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p name:id=%d:%s\n",
3894 i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free,
aec25020 3895 ss->id, ss->name);
073219e9
TH
3896 WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN,
3897 "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]);
3898
aec25020 3899 ss->id = i;
073219e9 3900 ss->name = cgroup_subsys_name[i];
ddbcc7e8
PM
3901
3902 if (ss->early_init)
3903 cgroup_init_subsys(ss);
3904 }
3905 return 0;
3906}
3907
3908/**
a043e3b2
LZ
3909 * cgroup_init - cgroup initialization
3910 *
3911 * Register cgroup filesystem and /proc file, and initialize
3912 * any subsystems that didn't request early init.
ddbcc7e8
PM
3913 */
3914int __init cgroup_init(void)
3915{
30159ec7 3916 struct cgroup_subsys *ss;
0ac801fe 3917 unsigned long key;
30159ec7 3918 int i, err;
a424316c 3919
2bd59d48 3920 BUG_ON(cgroup_init_cftypes(NULL, cgroup_base_files));
2da440a2 3921
3ed80a62 3922 for_each_subsys(ss, i) {
ddbcc7e8
PM
3923 if (!ss->early_init)
3924 cgroup_init_subsys(ss);
de00ffa5
TH
3925
3926 /*
3927 * cftype registration needs kmalloc and can't be done
3928 * during early_init. Register base cftypes separately.
3929 */
3930 if (ss->base_cftypes)
3931 WARN_ON(cgroup_add_cftypes(ss, ss->base_cftypes));
ddbcc7e8
PM
3932 }
3933
fa3ca07e 3934 /* allocate id for the dummy hierarchy */
54e7b4eb 3935 mutex_lock(&cgroup_mutex);
54e7b4eb 3936
82fe9b0d
TH
3937 /* Add init_css_set to the hash table */
3938 key = css_set_hash(init_css_set.subsys);
3939 hash_add(css_set_table, &init_css_set.hlist, key);
3940
fc76df70 3941 BUG_ON(cgroup_init_root_id(&cgroup_dummy_root, 0, 1));
676db4af 3942
4e96ee8e
LZ
3943 err = idr_alloc(&cgroup_dummy_root.cgroup_idr, cgroup_dummy_top,
3944 0, 1, GFP_KERNEL);
3945 BUG_ON(err < 0);
3946
54e7b4eb
TH
3947 mutex_unlock(&cgroup_mutex);
3948
676db4af 3949 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
2bd59d48
TH
3950 if (!cgroup_kobj)
3951 return -ENOMEM;
676db4af 3952
ddbcc7e8 3953 err = register_filesystem(&cgroup_fs_type);
676db4af
GK
3954 if (err < 0) {
3955 kobject_put(cgroup_kobj);
2bd59d48 3956 return err;
676db4af 3957 }
ddbcc7e8 3958
46ae220b 3959 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
2bd59d48 3960 return 0;
ddbcc7e8 3961}
b4f48b63 3962
e5fca243
TH
3963static int __init cgroup_wq_init(void)
3964{
3965 /*
3966 * There isn't much point in executing destruction path in
3967 * parallel. Good chunk is serialized with cgroup_mutex anyway.
ab3f5faa
HD
3968 *
3969 * XXX: Must be ordered to make sure parent is offlined after
3970 * children. The ordering requirement is for memcg where a
3971 * parent's offline may wait for a child's leading to deadlock. In
3972 * the long term, this should be fixed from memcg side.
e5fca243
TH
3973 *
3974 * We would prefer to do this in cgroup_init() above, but that
3975 * is called before init_workqueues(): so leave this until after.
3976 */
ab3f5faa 3977 cgroup_destroy_wq = alloc_ordered_workqueue("cgroup_destroy", 0);
e5fca243 3978 BUG_ON(!cgroup_destroy_wq);
b1a21367
TH
3979
3980 /*
3981 * Used to destroy pidlists and separate to serve as flush domain.
3982 * Cap @max_active to 1 too.
3983 */
3984 cgroup_pidlist_destroy_wq = alloc_workqueue("cgroup_pidlist_destroy",
3985 0, 1);
3986 BUG_ON(!cgroup_pidlist_destroy_wq);
3987
e5fca243
TH
3988 return 0;
3989}
3990core_initcall(cgroup_wq_init);
3991
a424316c
PM
3992/*
3993 * proc_cgroup_show()
3994 * - Print task's cgroup paths into seq_file, one line for each hierarchy
3995 * - Used for /proc/<pid>/cgroup.
3996 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
3997 * doesn't really matter if tsk->cgroup changes after we read it,
956db3ca 3998 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
a424316c
PM
3999 * anyway. No need to check that tsk->cgroup != NULL, thanks to
4000 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
4001 * cgroup to top_cgroup.
4002 */
4003
4004/* TODO: Use a proper seq_file iterator */
8d8b97ba 4005int proc_cgroup_show(struct seq_file *m, void *v)
a424316c
PM
4006{
4007 struct pid *pid;
4008 struct task_struct *tsk;
e61734c5 4009 char *buf, *path;
a424316c
PM
4010 int retval;
4011 struct cgroupfs_root *root;
4012
4013 retval = -ENOMEM;
e61734c5 4014 buf = kmalloc(PATH_MAX, GFP_KERNEL);
a424316c
PM
4015 if (!buf)
4016 goto out;
4017
4018 retval = -ESRCH;
4019 pid = m->private;
4020 tsk = get_pid_task(pid, PIDTYPE_PID);
4021 if (!tsk)
4022 goto out_free;
4023
4024 retval = 0;
4025
4026 mutex_lock(&cgroup_mutex);
96d365e0 4027 down_read(&css_set_rwsem);
a424316c 4028
e5f6a860 4029 for_each_active_root(root) {
a424316c 4030 struct cgroup_subsys *ss;
bd89aabc 4031 struct cgroup *cgrp;
b85d2040 4032 int ssid, count = 0;
a424316c 4033
2c6ab6d2 4034 seq_printf(m, "%d:", root->hierarchy_id);
b85d2040
TH
4035 for_each_subsys(ss, ssid)
4036 if (root->subsys_mask & (1 << ssid))
4037 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
c6d57f33
PM
4038 if (strlen(root->name))
4039 seq_printf(m, "%sname=%s", count ? "," : "",
4040 root->name);
a424316c 4041 seq_putc(m, ':');
7717f7ba 4042 cgrp = task_cgroup_from_root(tsk, root);
e61734c5
TH
4043 path = cgroup_path(cgrp, buf, PATH_MAX);
4044 if (!path) {
4045 retval = -ENAMETOOLONG;
a424316c 4046 goto out_unlock;
e61734c5
TH
4047 }
4048 seq_puts(m, path);
a424316c
PM
4049 seq_putc(m, '\n');
4050 }
4051
4052out_unlock:
96d365e0 4053 up_read(&css_set_rwsem);
a424316c
PM
4054 mutex_unlock(&cgroup_mutex);
4055 put_task_struct(tsk);
4056out_free:
4057 kfree(buf);
4058out:
4059 return retval;
4060}
4061
a424316c
PM
4062/* Display information about each subsystem and each hierarchy */
4063static int proc_cgroupstats_show(struct seq_file *m, void *v)
4064{
30159ec7 4065 struct cgroup_subsys *ss;
a424316c 4066 int i;
a424316c 4067
8bab8dde 4068 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
aae8aab4
BB
4069 /*
4070 * ideally we don't want subsystems moving around while we do this.
4071 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
4072 * subsys/hierarchy state.
4073 */
a424316c 4074 mutex_lock(&cgroup_mutex);
30159ec7
TH
4075
4076 for_each_subsys(ss, i)
2c6ab6d2
PM
4077 seq_printf(m, "%s\t%d\t%d\t%d\n",
4078 ss->name, ss->root->hierarchy_id,
3c9c825b 4079 atomic_read(&ss->root->nr_cgrps), !ss->disabled);
30159ec7 4080
a424316c
PM
4081 mutex_unlock(&cgroup_mutex);
4082 return 0;
4083}
4084
4085static int cgroupstats_open(struct inode *inode, struct file *file)
4086{
9dce07f1 4087 return single_open(file, proc_cgroupstats_show, NULL);
a424316c
PM
4088}
4089
828c0950 4090static const struct file_operations proc_cgroupstats_operations = {
a424316c
PM
4091 .open = cgroupstats_open,
4092 .read = seq_read,
4093 .llseek = seq_lseek,
4094 .release = single_release,
4095};
4096
b4f48b63
PM
4097/**
4098 * cgroup_fork - attach newly forked task to its parents cgroup.
a043e3b2 4099 * @child: pointer to task_struct of forking parent process.
b4f48b63
PM
4100 *
4101 * Description: A task inherits its parent's cgroup at fork().
4102 *
4103 * A pointer to the shared css_set was automatically copied in
4104 * fork.c by dup_task_struct(). However, we ignore that copy, since
9bb71308
TH
4105 * it was not made under the protection of RCU or cgroup_mutex, so
4106 * might no longer be a valid cgroup pointer. cgroup_attach_task() might
4107 * have already changed current->cgroups, allowing the previously
4108 * referenced cgroup group to be removed and freed.
b4f48b63
PM
4109 *
4110 * At the point that cgroup_fork() is called, 'current' is the parent
4111 * task, and the passed argument 'child' points to the child task.
4112 */
4113void cgroup_fork(struct task_struct *child)
4114{
9bb71308 4115 task_lock(current);
a8ad805c 4116 get_css_set(task_css_set(current));
817929ec 4117 child->cgroups = current->cgroups;
9bb71308 4118 task_unlock(current);
817929ec 4119 INIT_LIST_HEAD(&child->cg_list);
b4f48b63
PM
4120}
4121
817929ec 4122/**
a043e3b2
LZ
4123 * cgroup_post_fork - called on a new task after adding it to the task list
4124 * @child: the task in question
4125 *
5edee61e
TH
4126 * Adds the task to the list running through its css_set if necessary and
4127 * call the subsystem fork() callbacks. Has to be after the task is
4128 * visible on the task list in case we race with the first call to
0942eeee 4129 * cgroup_task_iter_start() - to guarantee that the new task ends up on its
5edee61e 4130 * list.
a043e3b2 4131 */
817929ec
PM
4132void cgroup_post_fork(struct task_struct *child)
4133{
30159ec7 4134 struct cgroup_subsys *ss;
5edee61e
TH
4135 int i;
4136
3ce3230a
FW
4137 /*
4138 * use_task_css_set_links is set to 1 before we walk the tasklist
4139 * under the tasklist_lock and we read it here after we added the child
4140 * to the tasklist under the tasklist_lock as well. If the child wasn't
4141 * yet in the tasklist when we walked through it from
4142 * cgroup_enable_task_cg_lists(), then use_task_css_set_links value
4143 * should be visible now due to the paired locking and barriers implied
4144 * by LOCK/UNLOCK: it is written before the tasklist_lock unlock
4145 * in cgroup_enable_task_cg_lists() and read here after the tasklist_lock
4146 * lock on fork.
4147 */
817929ec 4148 if (use_task_css_set_links) {
96d365e0 4149 down_write(&css_set_rwsem);
d8783832
TH
4150 task_lock(child);
4151 if (list_empty(&child->cg_list))
a8ad805c 4152 list_add(&child->cg_list, &task_css_set(child)->tasks);
d8783832 4153 task_unlock(child);
96d365e0 4154 up_write(&css_set_rwsem);
817929ec 4155 }
5edee61e
TH
4156
4157 /*
4158 * Call ss->fork(). This must happen after @child is linked on
4159 * css_set; otherwise, @child might change state between ->fork()
4160 * and addition to css_set.
4161 */
4162 if (need_forkexit_callback) {
3ed80a62 4163 for_each_subsys(ss, i)
5edee61e
TH
4164 if (ss->fork)
4165 ss->fork(child);
5edee61e 4166 }
817929ec 4167}
5edee61e 4168
b4f48b63
PM
4169/**
4170 * cgroup_exit - detach cgroup from exiting task
4171 * @tsk: pointer to task_struct of exiting process
a043e3b2 4172 * @run_callback: run exit callbacks?
b4f48b63
PM
4173 *
4174 * Description: Detach cgroup from @tsk and release it.
4175 *
4176 * Note that cgroups marked notify_on_release force every task in
4177 * them to take the global cgroup_mutex mutex when exiting.
4178 * This could impact scaling on very large systems. Be reluctant to
4179 * use notify_on_release cgroups where very high task exit scaling
4180 * is required on large systems.
4181 *
4182 * the_top_cgroup_hack:
4183 *
4184 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
4185 *
4186 * We call cgroup_exit() while the task is still competent to
4187 * handle notify_on_release(), then leave the task attached to the
4188 * root cgroup in each hierarchy for the remainder of its exit.
4189 *
4190 * To do this properly, we would increment the reference count on
4191 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
4192 * code we would add a second cgroup function call, to drop that
4193 * reference. This would just create an unnecessary hot spot on
4194 * the top_cgroup reference count, to no avail.
4195 *
4196 * Normally, holding a reference to a cgroup without bumping its
4197 * count is unsafe. The cgroup could go away, or someone could
4198 * attach us to a different cgroup, decrementing the count on
4199 * the first cgroup that we never incremented. But in this case,
4200 * top_cgroup isn't going away, and either task has PF_EXITING set,
956db3ca
CW
4201 * which wards off any cgroup_attach_task() attempts, or task is a failed
4202 * fork, never visible to cgroup_attach_task.
b4f48b63
PM
4203 */
4204void cgroup_exit(struct task_struct *tsk, int run_callbacks)
4205{
30159ec7 4206 struct cgroup_subsys *ss;
5abb8855 4207 struct css_set *cset;
d41d5a01 4208 int i;
817929ec
PM
4209
4210 /*
96d365e0
TH
4211 * Unlink from the css_set task list if necessary. Optimistically
4212 * check cg_list before taking css_set_rwsem.
817929ec
PM
4213 */
4214 if (!list_empty(&tsk->cg_list)) {
96d365e0 4215 down_write(&css_set_rwsem);
817929ec 4216 if (!list_empty(&tsk->cg_list))
8d258797 4217 list_del_init(&tsk->cg_list);
96d365e0 4218 up_write(&css_set_rwsem);
817929ec
PM
4219 }
4220
b4f48b63
PM
4221 /* Reassign the task to the init_css_set. */
4222 task_lock(tsk);
a8ad805c
TH
4223 cset = task_css_set(tsk);
4224 RCU_INIT_POINTER(tsk->cgroups, &init_css_set);
d41d5a01
PZ
4225
4226 if (run_callbacks && need_forkexit_callback) {
3ed80a62
TH
4227 /* see cgroup_post_fork() for details */
4228 for_each_subsys(ss, i) {
d41d5a01 4229 if (ss->exit) {
eb95419b
TH
4230 struct cgroup_subsys_state *old_css = cset->subsys[i];
4231 struct cgroup_subsys_state *css = task_css(tsk, i);
30159ec7 4232
eb95419b 4233 ss->exit(css, old_css, tsk);
d41d5a01
PZ
4234 }
4235 }
4236 }
b4f48b63 4237 task_unlock(tsk);
d41d5a01 4238
89c5509b 4239 put_css_set(cset, true);
b4f48b63 4240}
697f4161 4241
bd89aabc 4242static void check_for_release(struct cgroup *cgrp)
81a6a5cd 4243{
f50daa70 4244 if (cgroup_is_releasable(cgrp) &&
6f3d828f 4245 list_empty(&cgrp->cset_links) && list_empty(&cgrp->children)) {
f50daa70
LZ
4246 /*
4247 * Control Group is currently removeable. If it's not
81a6a5cd 4248 * already queued for a userspace notification, queue
f50daa70
LZ
4249 * it now
4250 */
81a6a5cd 4251 int need_schedule_work = 0;
f50daa70 4252
cdcc136f 4253 raw_spin_lock(&release_list_lock);
54766d4a 4254 if (!cgroup_is_dead(cgrp) &&
bd89aabc
PM
4255 list_empty(&cgrp->release_list)) {
4256 list_add(&cgrp->release_list, &release_list);
81a6a5cd
PM
4257 need_schedule_work = 1;
4258 }
cdcc136f 4259 raw_spin_unlock(&release_list_lock);
81a6a5cd
PM
4260 if (need_schedule_work)
4261 schedule_work(&release_agent_work);
4262 }
4263}
4264
81a6a5cd
PM
4265/*
4266 * Notify userspace when a cgroup is released, by running the
4267 * configured release agent with the name of the cgroup (path
4268 * relative to the root of cgroup file system) as the argument.
4269 *
4270 * Most likely, this user command will try to rmdir this cgroup.
4271 *
4272 * This races with the possibility that some other task will be
4273 * attached to this cgroup before it is removed, or that some other
4274 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
4275 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
4276 * unused, and this cgroup will be reprieved from its death sentence,
4277 * to continue to serve a useful existence. Next time it's released,
4278 * we will get notified again, if it still has 'notify_on_release' set.
4279 *
4280 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
4281 * means only wait until the task is successfully execve()'d. The
4282 * separate release agent task is forked by call_usermodehelper(),
4283 * then control in this thread returns here, without waiting for the
4284 * release agent task. We don't bother to wait because the caller of
4285 * this routine has no use for the exit status of the release agent
4286 * task, so no sense holding our caller up for that.
81a6a5cd 4287 */
81a6a5cd
PM
4288static void cgroup_release_agent(struct work_struct *work)
4289{
4290 BUG_ON(work != &release_agent_work);
4291 mutex_lock(&cgroup_mutex);
cdcc136f 4292 raw_spin_lock(&release_list_lock);
81a6a5cd
PM
4293 while (!list_empty(&release_list)) {
4294 char *argv[3], *envp[3];
4295 int i;
e61734c5 4296 char *pathbuf = NULL, *agentbuf = NULL, *path;
bd89aabc 4297 struct cgroup *cgrp = list_entry(release_list.next,
81a6a5cd
PM
4298 struct cgroup,
4299 release_list);
bd89aabc 4300 list_del_init(&cgrp->release_list);
cdcc136f 4301 raw_spin_unlock(&release_list_lock);
e61734c5 4302 pathbuf = kmalloc(PATH_MAX, GFP_KERNEL);
e788e066
PM
4303 if (!pathbuf)
4304 goto continue_free;
e61734c5
TH
4305 path = cgroup_path(cgrp, pathbuf, PATH_MAX);
4306 if (!path)
e788e066
PM
4307 goto continue_free;
4308 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
4309 if (!agentbuf)
4310 goto continue_free;
81a6a5cd
PM
4311
4312 i = 0;
e788e066 4313 argv[i++] = agentbuf;
e61734c5 4314 argv[i++] = path;
81a6a5cd
PM
4315 argv[i] = NULL;
4316
4317 i = 0;
4318 /* minimal command environment */
4319 envp[i++] = "HOME=/";
4320 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
4321 envp[i] = NULL;
4322
4323 /* Drop the lock while we invoke the usermode helper,
4324 * since the exec could involve hitting disk and hence
4325 * be a slow process */
4326 mutex_unlock(&cgroup_mutex);
4327 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
81a6a5cd 4328 mutex_lock(&cgroup_mutex);
e788e066
PM
4329 continue_free:
4330 kfree(pathbuf);
4331 kfree(agentbuf);
cdcc136f 4332 raw_spin_lock(&release_list_lock);
81a6a5cd 4333 }
cdcc136f 4334 raw_spin_unlock(&release_list_lock);
81a6a5cd
PM
4335 mutex_unlock(&cgroup_mutex);
4336}
8bab8dde
PM
4337
4338static int __init cgroup_disable(char *str)
4339{
30159ec7 4340 struct cgroup_subsys *ss;
8bab8dde 4341 char *token;
30159ec7 4342 int i;
8bab8dde
PM
4343
4344 while ((token = strsep(&str, ",")) != NULL) {
4345 if (!*token)
4346 continue;
be45c900 4347
3ed80a62 4348 for_each_subsys(ss, i) {
8bab8dde
PM
4349 if (!strcmp(token, ss->name)) {
4350 ss->disabled = 1;
4351 printk(KERN_INFO "Disabling %s control group"
4352 " subsystem\n", ss->name);
4353 break;
4354 }
4355 }
4356 }
4357 return 1;
4358}
4359__setup("cgroup_disable=", cgroup_disable);
38460b48 4360
b77d7b60 4361/**
5a17f543 4362 * css_tryget_from_dir - get corresponding css from the dentry of a cgroup dir
35cf0836
TH
4363 * @dentry: directory dentry of interest
4364 * @ss: subsystem of interest
b77d7b60 4365 *
5a17f543
TH
4366 * If @dentry is a directory for a cgroup which has @ss enabled on it, try
4367 * to get the corresponding css and return it. If such css doesn't exist
4368 * or can't be pinned, an ERR_PTR value is returned.
e5d1367f 4369 */
5a17f543
TH
4370struct cgroup_subsys_state *css_tryget_from_dir(struct dentry *dentry,
4371 struct cgroup_subsys *ss)
e5d1367f 4372{
2bd59d48
TH
4373 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
4374 struct cgroup_subsys_state *css = NULL;
e5d1367f 4375 struct cgroup *cgrp;
b77d7b60 4376
35cf0836 4377 /* is @dentry a cgroup dir? */
2bd59d48
TH
4378 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
4379 kernfs_type(kn) != KERNFS_DIR)
e5d1367f
SE
4380 return ERR_PTR(-EBADF);
4381
5a17f543
TH
4382 rcu_read_lock();
4383
2bd59d48
TH
4384 /*
4385 * This path doesn't originate from kernfs and @kn could already
4386 * have been or be removed at any point. @kn->priv is RCU
4387 * protected for this access. See destroy_locked() for details.
4388 */
4389 cgrp = rcu_dereference(kn->priv);
4390 if (cgrp)
4391 css = cgroup_css(cgrp, ss);
5a17f543
TH
4392
4393 if (!css || !css_tryget(css))
4394 css = ERR_PTR(-ENOENT);
4395
4396 rcu_read_unlock();
4397 return css;
e5d1367f 4398}
e5d1367f 4399
1cb650b9
LZ
4400/**
4401 * css_from_id - lookup css by id
4402 * @id: the cgroup id
4403 * @ss: cgroup subsys to be looked into
4404 *
4405 * Returns the css if there's valid one with @id, otherwise returns NULL.
4406 * Should be called under rcu_read_lock().
4407 */
4408struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss)
4409{
4410 struct cgroup *cgrp;
4411
ace2bee8 4412 cgroup_assert_mutexes_or_rcu_locked();
1cb650b9
LZ
4413
4414 cgrp = idr_find(&ss->root->cgroup_idr, id);
4415 if (cgrp)
d1625964 4416 return cgroup_css(cgrp, ss);
1cb650b9 4417 return NULL;
e5d1367f
SE
4418}
4419
fe693435 4420#ifdef CONFIG_CGROUP_DEBUG
eb95419b
TH
4421static struct cgroup_subsys_state *
4422debug_css_alloc(struct cgroup_subsys_state *parent_css)
fe693435
PM
4423{
4424 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
4425
4426 if (!css)
4427 return ERR_PTR(-ENOMEM);
4428
4429 return css;
4430}
4431
eb95419b 4432static void debug_css_free(struct cgroup_subsys_state *css)
fe693435 4433{
eb95419b 4434 kfree(css);
fe693435
PM
4435}
4436
182446d0
TH
4437static u64 debug_taskcount_read(struct cgroup_subsys_state *css,
4438 struct cftype *cft)
fe693435 4439{
182446d0 4440 return cgroup_task_count(css->cgroup);
fe693435
PM
4441}
4442
182446d0
TH
4443static u64 current_css_set_read(struct cgroup_subsys_state *css,
4444 struct cftype *cft)
fe693435
PM
4445{
4446 return (u64)(unsigned long)current->cgroups;
4447}
4448
182446d0 4449static u64 current_css_set_refcount_read(struct cgroup_subsys_state *css,
03c78cbe 4450 struct cftype *cft)
fe693435
PM
4451{
4452 u64 count;
4453
4454 rcu_read_lock();
a8ad805c 4455 count = atomic_read(&task_css_set(current)->refcount);
fe693435
PM
4456 rcu_read_unlock();
4457 return count;
4458}
4459
2da8ca82 4460static int current_css_set_cg_links_read(struct seq_file *seq, void *v)
7717f7ba 4461{
69d0206c 4462 struct cgrp_cset_link *link;
5abb8855 4463 struct css_set *cset;
e61734c5
TH
4464 char *name_buf;
4465
4466 name_buf = kmalloc(NAME_MAX + 1, GFP_KERNEL);
4467 if (!name_buf)
4468 return -ENOMEM;
7717f7ba 4469
96d365e0 4470 down_read(&css_set_rwsem);
7717f7ba 4471 rcu_read_lock();
5abb8855 4472 cset = rcu_dereference(current->cgroups);
69d0206c 4473 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
7717f7ba 4474 struct cgroup *c = link->cgrp;
59f5296b
TH
4475 const char *name = "?";
4476
e61734c5
TH
4477 if (c != cgroup_dummy_top) {
4478 cgroup_name(c, name_buf, NAME_MAX + 1);
4479 name = name_buf;
4480 }
7717f7ba 4481
2c6ab6d2
PM
4482 seq_printf(seq, "Root %d group %s\n",
4483 c->root->hierarchy_id, name);
7717f7ba
PM
4484 }
4485 rcu_read_unlock();
96d365e0 4486 up_read(&css_set_rwsem);
e61734c5 4487 kfree(name_buf);
7717f7ba
PM
4488 return 0;
4489}
4490
4491#define MAX_TASKS_SHOWN_PER_CSS 25
2da8ca82 4492static int cgroup_css_links_read(struct seq_file *seq, void *v)
7717f7ba 4493{
2da8ca82 4494 struct cgroup_subsys_state *css = seq_css(seq);
69d0206c 4495 struct cgrp_cset_link *link;
7717f7ba 4496
96d365e0 4497 down_read(&css_set_rwsem);
182446d0 4498 list_for_each_entry(link, &css->cgroup->cset_links, cset_link) {
69d0206c 4499 struct css_set *cset = link->cset;
7717f7ba
PM
4500 struct task_struct *task;
4501 int count = 0;
5abb8855
TH
4502 seq_printf(seq, "css_set %p\n", cset);
4503 list_for_each_entry(task, &cset->tasks, cg_list) {
7717f7ba
PM
4504 if (count++ > MAX_TASKS_SHOWN_PER_CSS) {
4505 seq_puts(seq, " ...\n");
4506 break;
4507 } else {
4508 seq_printf(seq, " task %d\n",
4509 task_pid_vnr(task));
4510 }
4511 }
4512 }
96d365e0 4513 up_read(&css_set_rwsem);
7717f7ba
PM
4514 return 0;
4515}
4516
182446d0 4517static u64 releasable_read(struct cgroup_subsys_state *css, struct cftype *cft)
fe693435 4518{
182446d0 4519 return test_bit(CGRP_RELEASABLE, &css->cgroup->flags);
fe693435
PM
4520}
4521
4522static struct cftype debug_files[] = {
fe693435
PM
4523 {
4524 .name = "taskcount",
4525 .read_u64 = debug_taskcount_read,
4526 },
4527
4528 {
4529 .name = "current_css_set",
4530 .read_u64 = current_css_set_read,
4531 },
4532
4533 {
4534 .name = "current_css_set_refcount",
4535 .read_u64 = current_css_set_refcount_read,
4536 },
4537
7717f7ba
PM
4538 {
4539 .name = "current_css_set_cg_links",
2da8ca82 4540 .seq_show = current_css_set_cg_links_read,
7717f7ba
PM
4541 },
4542
4543 {
4544 .name = "cgroup_css_links",
2da8ca82 4545 .seq_show = cgroup_css_links_read,
7717f7ba
PM
4546 },
4547
fe693435
PM
4548 {
4549 .name = "releasable",
4550 .read_u64 = releasable_read,
4551 },
fe693435 4552
4baf6e33
TH
4553 { } /* terminate */
4554};
fe693435 4555
073219e9 4556struct cgroup_subsys debug_cgrp_subsys = {
92fb9748
TH
4557 .css_alloc = debug_css_alloc,
4558 .css_free = debug_css_free,
4baf6e33 4559 .base_cftypes = debug_files,
fe693435
PM
4560};
4561#endif /* CONFIG_CGROUP_DEBUG */