cgroup: use for_each_subsys() instead of for_each_root_subsys() in cgroup_populate...
[deliverable/linux.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>
817929ec 43#include <linux/backing-dev.h>
ddbcc7e8
PM
44#include <linux/seq_file.h>
45#include <linux/slab.h>
46#include <linux/magic.h>
47#include <linux/spinlock.h>
48#include <linux/string.h>
bbcb81d0 49#include <linux/sort.h>
81a6a5cd 50#include <linux/kmod.h>
e6a1105b 51#include <linux/module.h>
846c7bb0
BS
52#include <linux/delayacct.h>
53#include <linux/cgroupstats.h>
0ac801fe 54#include <linux/hashtable.h>
3f8206d4 55#include <linux/namei.h>
096b7fe0 56#include <linux/pid_namespace.h>
2c6ab6d2 57#include <linux/idr.h>
d1d9fd33 58#include <linux/vmalloc.h> /* TODO: replace with more sophisticated array */
0dea1168
KS
59#include <linux/eventfd.h>
60#include <linux/poll.h>
081aa458 61#include <linux/flex_array.h> /* used in cgroup_attach_task */
c4c27fbd 62#include <linux/kthread.h>
846c7bb0 63
60063497 64#include <linux/atomic.h>
ddbcc7e8 65
e25e2cbb
TH
66/*
67 * cgroup_mutex is the master lock. Any modification to cgroup or its
68 * hierarchy must be performed while holding it.
69 *
70 * cgroup_root_mutex nests inside cgroup_mutex and should be held to modify
71 * cgroupfs_root of any cgroup hierarchy - subsys list, flags,
72 * release_agent_path and so on. Modifying requires both cgroup_mutex and
73 * cgroup_root_mutex. Readers can acquire either of the two. This is to
74 * break the following locking order cycle.
75 *
76 * A. cgroup_mutex -> cred_guard_mutex -> s_type->i_mutex_key -> namespace_sem
77 * B. namespace_sem -> cgroup_mutex
78 *
79 * B happens only through cgroup_show_options() and using cgroup_root_mutex
80 * breaks it.
81 */
2219449a
TH
82#ifdef CONFIG_PROVE_RCU
83DEFINE_MUTEX(cgroup_mutex);
84EXPORT_SYMBOL_GPL(cgroup_mutex); /* only for task_subsys_state_check() */
85#else
81a6a5cd 86static DEFINE_MUTEX(cgroup_mutex);
2219449a
TH
87#endif
88
e25e2cbb 89static DEFINE_MUTEX(cgroup_root_mutex);
81a6a5cd 90
aae8aab4
BB
91/*
92 * Generate an array of cgroup subsystem pointers. At boot time, this is
be45c900 93 * populated with the built in subsystems, and modular subsystems are
aae8aab4
BB
94 * registered after that. The mutable section of this array is protected by
95 * cgroup_mutex.
96 */
80f4c877 97#define SUBSYS(_x) [_x ## _subsys_id] = &_x ## _subsys,
5fc0b025 98#define IS_SUBSYS_ENABLED(option) IS_BUILTIN(option)
9871bf95 99static struct cgroup_subsys *cgroup_subsys[CGROUP_SUBSYS_COUNT] = {
ddbcc7e8
PM
100#include <linux/cgroup_subsys.h>
101};
102
ddbcc7e8 103/*
9871bf95
TH
104 * The dummy hierarchy, reserved for the subsystems that are otherwise
105 * unattached - it never has more than a single cgroup, and all tasks are
106 * part of that cgroup.
ddbcc7e8 107 */
9871bf95
TH
108static struct cgroupfs_root cgroup_dummy_root;
109
110/* dummy_top is a shorthand for the dummy hierarchy's top cgroup */
111static struct cgroup * const cgroup_dummy_top = &cgroup_dummy_root.top_cgroup;
ddbcc7e8 112
05ef1d7c
TH
113/*
114 * cgroupfs file entry, pointed to from leaf dentry->d_fsdata.
115 */
116struct cfent {
117 struct list_head node;
118 struct dentry *dentry;
119 struct cftype *type;
712317ad
LZ
120
121 /* file xattrs */
122 struct simple_xattrs xattrs;
05ef1d7c
TH
123};
124
38460b48
KH
125/*
126 * CSS ID -- ID per subsys's Cgroup Subsys State(CSS). used only when
127 * cgroup_subsys->use_id != 0.
128 */
129#define CSS_ID_MAX (65535)
130struct css_id {
131 /*
132 * The css to which this ID points. This pointer is set to valid value
133 * after cgroup is populated. If cgroup is removed, this will be NULL.
134 * This pointer is expected to be RCU-safe because destroy()
e9316080
TH
135 * is called after synchronize_rcu(). But for safe use, css_tryget()
136 * should be used for avoiding race.
38460b48 137 */
2c392b8c 138 struct cgroup_subsys_state __rcu *css;
38460b48
KH
139 /*
140 * ID of this css.
141 */
142 unsigned short id;
143 /*
144 * Depth in hierarchy which this ID belongs to.
145 */
146 unsigned short depth;
147 /*
148 * ID is freed by RCU. (and lookup routine is RCU safe.)
149 */
150 struct rcu_head rcu_head;
151 /*
152 * Hierarchy of CSS ID belongs to.
153 */
154 unsigned short stack[0]; /* Array of Length (depth+1) */
155};
156
0dea1168 157/*
25985edc 158 * cgroup_event represents events which userspace want to receive.
0dea1168
KS
159 */
160struct cgroup_event {
161 /*
162 * Cgroup which the event belongs to.
163 */
164 struct cgroup *cgrp;
165 /*
166 * Control file which the event associated.
167 */
168 struct cftype *cft;
169 /*
170 * eventfd to signal userspace about the event.
171 */
172 struct eventfd_ctx *eventfd;
173 /*
174 * Each of these stored in a list by the cgroup.
175 */
176 struct list_head list;
177 /*
178 * All fields below needed to unregister event when
179 * userspace closes eventfd.
180 */
181 poll_table pt;
182 wait_queue_head_t *wqh;
183 wait_queue_t wait;
184 struct work_struct remove;
185};
38460b48 186
ddbcc7e8
PM
187/* The list of hierarchy roots */
188
9871bf95
TH
189static LIST_HEAD(cgroup_roots);
190static int cgroup_root_count;
ddbcc7e8 191
54e7b4eb
TH
192/*
193 * Hierarchy ID allocation and mapping. It follows the same exclusion
194 * rules as other root ops - both cgroup_mutex and cgroup_root_mutex for
195 * writes, either for reads.
196 */
1a574231 197static DEFINE_IDR(cgroup_hierarchy_idr);
2c6ab6d2 198
65dff759
LZ
199static struct cgroup_name root_cgroup_name = { .name = "/" };
200
794611a1
LZ
201/*
202 * Assign a monotonically increasing serial number to cgroups. It
203 * guarantees cgroups with bigger numbers are newer than those with smaller
204 * numbers. Also, as cgroups are always appended to the parent's
205 * ->children list, it guarantees that sibling cgroups are always sorted in
00356bd5
TH
206 * the ascending serial number order on the list. Protected by
207 * cgroup_mutex.
794611a1 208 */
00356bd5 209static u64 cgroup_serial_nr_next = 1;
794611a1 210
ddbcc7e8 211/* This flag indicates whether tasks in the fork and exit paths should
a043e3b2
LZ
212 * check for fork/exit handlers to call. This avoids us having to do
213 * extra work in the fork/exit path if none of the subsystems need to
214 * be called.
ddbcc7e8 215 */
8947f9d5 216static int need_forkexit_callback __read_mostly;
ddbcc7e8 217
628f7cd4
TH
218static struct cftype cgroup_base_files[];
219
ea15f8cc 220static void cgroup_offline_fn(struct work_struct *work);
42809dd4 221static int cgroup_destroy_locked(struct cgroup *cgrp);
879a3d9d
G
222static int cgroup_addrm_files(struct cgroup *cgrp, struct cgroup_subsys *subsys,
223 struct cftype cfts[], bool is_add);
42809dd4 224
ddbcc7e8 225/* convenient tests for these bits */
54766d4a 226static inline bool cgroup_is_dead(const struct cgroup *cgrp)
ddbcc7e8 227{
54766d4a 228 return test_bit(CGRP_DEAD, &cgrp->flags);
ddbcc7e8
PM
229}
230
78574cf9
LZ
231/**
232 * cgroup_is_descendant - test ancestry
233 * @cgrp: the cgroup to be tested
234 * @ancestor: possible ancestor of @cgrp
235 *
236 * Test whether @cgrp is a descendant of @ancestor. It also returns %true
237 * if @cgrp == @ancestor. This function is safe to call as long as @cgrp
238 * and @ancestor are accessible.
239 */
240bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor)
241{
242 while (cgrp) {
243 if (cgrp == ancestor)
244 return true;
245 cgrp = cgrp->parent;
246 }
247 return false;
248}
249EXPORT_SYMBOL_GPL(cgroup_is_descendant);
ddbcc7e8 250
e9685a03 251static int cgroup_is_releasable(const struct cgroup *cgrp)
81a6a5cd
PM
252{
253 const int bits =
bd89aabc
PM
254 (1 << CGRP_RELEASABLE) |
255 (1 << CGRP_NOTIFY_ON_RELEASE);
256 return (cgrp->flags & bits) == bits;
81a6a5cd
PM
257}
258
e9685a03 259static int notify_on_release(const struct cgroup *cgrp)
81a6a5cd 260{
bd89aabc 261 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
81a6a5cd
PM
262}
263
30159ec7
TH
264/**
265 * for_each_subsys - iterate all loaded cgroup subsystems
266 * @ss: the iteration cursor
267 * @i: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end
268 *
269 * Should be called under cgroup_mutex.
270 */
271#define for_each_subsys(ss, i) \
272 for ((i) = 0; (i) < CGROUP_SUBSYS_COUNT; (i)++) \
273 if (({ lockdep_assert_held(&cgroup_mutex); \
274 !((ss) = cgroup_subsys[i]); })) { } \
275 else
276
277/**
278 * for_each_builtin_subsys - iterate all built-in cgroup subsystems
279 * @ss: the iteration cursor
280 * @i: the index of @ss, CGROUP_BUILTIN_SUBSYS_COUNT after reaching the end
281 *
282 * Bulit-in subsystems are always present and iteration itself doesn't
283 * require any synchronization.
284 */
285#define for_each_builtin_subsys(ss, i) \
286 for ((i) = 0; (i) < CGROUP_BUILTIN_SUBSYS_COUNT && \
287 (((ss) = cgroup_subsys[i]) || true); (i)++)
288
5549c497
TH
289/* iterate each subsystem attached to a hierarchy */
290#define for_each_root_subsys(root, ss) \
291 list_for_each_entry((ss), &(root)->subsys_list, sibling)
ddbcc7e8 292
5549c497
TH
293/* iterate across the active hierarchies */
294#define for_each_active_root(root) \
295 list_for_each_entry((root), &cgroup_roots, root_list)
ddbcc7e8 296
f6ea9372
TH
297static inline struct cgroup *__d_cgrp(struct dentry *dentry)
298{
299 return dentry->d_fsdata;
300}
301
05ef1d7c 302static inline struct cfent *__d_cfe(struct dentry *dentry)
f6ea9372
TH
303{
304 return dentry->d_fsdata;
305}
306
05ef1d7c
TH
307static inline struct cftype *__d_cft(struct dentry *dentry)
308{
309 return __d_cfe(dentry)->type;
310}
311
7ae1bad9
TH
312/**
313 * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive.
314 * @cgrp: the cgroup to be checked for liveness
315 *
47cfcd09
TH
316 * On success, returns true; the mutex should be later unlocked. On
317 * failure returns false with no lock held.
7ae1bad9 318 */
b9777cf8 319static bool cgroup_lock_live_group(struct cgroup *cgrp)
7ae1bad9
TH
320{
321 mutex_lock(&cgroup_mutex);
54766d4a 322 if (cgroup_is_dead(cgrp)) {
7ae1bad9
TH
323 mutex_unlock(&cgroup_mutex);
324 return false;
325 }
326 return true;
327}
7ae1bad9 328
81a6a5cd
PM
329/* the list of cgroups eligible for automatic release. Protected by
330 * release_list_lock */
331static LIST_HEAD(release_list);
cdcc136f 332static DEFINE_RAW_SPINLOCK(release_list_lock);
81a6a5cd
PM
333static void cgroup_release_agent(struct work_struct *work);
334static DECLARE_WORK(release_agent_work, cgroup_release_agent);
bd89aabc 335static void check_for_release(struct cgroup *cgrp);
81a6a5cd 336
69d0206c
TH
337/*
338 * A cgroup can be associated with multiple css_sets as different tasks may
339 * belong to different cgroups on different hierarchies. In the other
340 * direction, a css_set is naturally associated with multiple cgroups.
341 * This M:N relationship is represented by the following link structure
342 * which exists for each association and allows traversing the associations
343 * from both sides.
344 */
345struct cgrp_cset_link {
346 /* the cgroup and css_set this link associates */
347 struct cgroup *cgrp;
348 struct css_set *cset;
349
350 /* list of cgrp_cset_links anchored at cgrp->cset_links */
351 struct list_head cset_link;
352
353 /* list of cgrp_cset_links anchored at css_set->cgrp_links */
354 struct list_head cgrp_link;
817929ec
PM
355};
356
357/* The default css_set - used by init and its children prior to any
358 * hierarchies being mounted. It contains a pointer to the root state
359 * for each subsystem. Also used to anchor the list of css_sets. Not
360 * reference-counted, to improve performance when child cgroups
361 * haven't been created.
362 */
363
364static struct css_set init_css_set;
69d0206c 365static struct cgrp_cset_link init_cgrp_cset_link;
817929ec 366
e6a1105b
BB
367static int cgroup_init_idr(struct cgroup_subsys *ss,
368 struct cgroup_subsys_state *css);
38460b48 369
817929ec
PM
370/* css_set_lock protects the list of css_set objects, and the
371 * chain of tasks off each css_set. Nests outside task->alloc_lock
372 * due to cgroup_iter_start() */
373static DEFINE_RWLOCK(css_set_lock);
374static int css_set_count;
375
7717f7ba
PM
376/*
377 * hash table for cgroup groups. This improves the performance to find
378 * an existing css_set. This hash doesn't (currently) take into
379 * account cgroups in empty hierarchies.
380 */
472b1053 381#define CSS_SET_HASH_BITS 7
0ac801fe 382static DEFINE_HASHTABLE(css_set_table, CSS_SET_HASH_BITS);
472b1053 383
0ac801fe 384static unsigned long css_set_hash(struct cgroup_subsys_state *css[])
472b1053 385{
0ac801fe 386 unsigned long key = 0UL;
30159ec7
TH
387 struct cgroup_subsys *ss;
388 int i;
472b1053 389
30159ec7 390 for_each_subsys(ss, i)
0ac801fe
LZ
391 key += (unsigned long)css[i];
392 key = (key >> 16) ^ key;
472b1053 393
0ac801fe 394 return key;
472b1053
LZ
395}
396
817929ec
PM
397/* We don't maintain the lists running through each css_set to its
398 * task until after the first call to cgroup_iter_start(). This
399 * reduces the fork()/exit() overhead for people who have cgroups
400 * compiled into their kernel but not actually in use */
8947f9d5 401static int use_task_css_set_links __read_mostly;
817929ec 402
5abb8855 403static void __put_css_set(struct css_set *cset, int taskexit)
b4f48b63 404{
69d0206c 405 struct cgrp_cset_link *link, *tmp_link;
5abb8855 406
146aa1bd
LJ
407 /*
408 * Ensure that the refcount doesn't hit zero while any readers
409 * can see it. Similar to atomic_dec_and_lock(), but for an
410 * rwlock
411 */
5abb8855 412 if (atomic_add_unless(&cset->refcount, -1, 1))
146aa1bd
LJ
413 return;
414 write_lock(&css_set_lock);
5abb8855 415 if (!atomic_dec_and_test(&cset->refcount)) {
146aa1bd
LJ
416 write_unlock(&css_set_lock);
417 return;
418 }
81a6a5cd 419
2c6ab6d2 420 /* This css_set is dead. unlink it and release cgroup refcounts */
5abb8855 421 hash_del(&cset->hlist);
2c6ab6d2
PM
422 css_set_count--;
423
69d0206c 424 list_for_each_entry_safe(link, tmp_link, &cset->cgrp_links, cgrp_link) {
2c6ab6d2 425 struct cgroup *cgrp = link->cgrp;
5abb8855 426
69d0206c
TH
427 list_del(&link->cset_link);
428 list_del(&link->cgrp_link);
71b5707e 429
ddd69148 430 /* @cgrp can't go away while we're holding css_set_lock */
6f3d828f 431 if (list_empty(&cgrp->cset_links) && notify_on_release(cgrp)) {
81a6a5cd 432 if (taskexit)
bd89aabc
PM
433 set_bit(CGRP_RELEASABLE, &cgrp->flags);
434 check_for_release(cgrp);
81a6a5cd 435 }
2c6ab6d2
PM
436
437 kfree(link);
81a6a5cd 438 }
2c6ab6d2
PM
439
440 write_unlock(&css_set_lock);
5abb8855 441 kfree_rcu(cset, rcu_head);
b4f48b63
PM
442}
443
817929ec
PM
444/*
445 * refcounted get/put for css_set objects
446 */
5abb8855 447static inline void get_css_set(struct css_set *cset)
817929ec 448{
5abb8855 449 atomic_inc(&cset->refcount);
817929ec
PM
450}
451
5abb8855 452static inline void put_css_set(struct css_set *cset)
817929ec 453{
5abb8855 454 __put_css_set(cset, 0);
817929ec
PM
455}
456
5abb8855 457static inline void put_css_set_taskexit(struct css_set *cset)
81a6a5cd 458{
5abb8855 459 __put_css_set(cset, 1);
81a6a5cd
PM
460}
461
b326f9d0 462/**
7717f7ba 463 * compare_css_sets - helper function for find_existing_css_set().
5abb8855
TH
464 * @cset: candidate css_set being tested
465 * @old_cset: existing css_set for a task
7717f7ba
PM
466 * @new_cgrp: cgroup that's being entered by the task
467 * @template: desired set of css pointers in css_set (pre-calculated)
468 *
469 * Returns true if "cg" matches "old_cg" except for the hierarchy
470 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
471 */
5abb8855
TH
472static bool compare_css_sets(struct css_set *cset,
473 struct css_set *old_cset,
7717f7ba
PM
474 struct cgroup *new_cgrp,
475 struct cgroup_subsys_state *template[])
476{
477 struct list_head *l1, *l2;
478
5abb8855 479 if (memcmp(template, cset->subsys, sizeof(cset->subsys))) {
7717f7ba
PM
480 /* Not all subsystems matched */
481 return false;
482 }
483
484 /*
485 * Compare cgroup pointers in order to distinguish between
486 * different cgroups in heirarchies with no subsystems. We
487 * could get by with just this check alone (and skip the
488 * memcmp above) but on most setups the memcmp check will
489 * avoid the need for this more expensive check on almost all
490 * candidates.
491 */
492
69d0206c
TH
493 l1 = &cset->cgrp_links;
494 l2 = &old_cset->cgrp_links;
7717f7ba 495 while (1) {
69d0206c 496 struct cgrp_cset_link *link1, *link2;
5abb8855 497 struct cgroup *cgrp1, *cgrp2;
7717f7ba
PM
498
499 l1 = l1->next;
500 l2 = l2->next;
501 /* See if we reached the end - both lists are equal length. */
69d0206c
TH
502 if (l1 == &cset->cgrp_links) {
503 BUG_ON(l2 != &old_cset->cgrp_links);
7717f7ba
PM
504 break;
505 } else {
69d0206c 506 BUG_ON(l2 == &old_cset->cgrp_links);
7717f7ba
PM
507 }
508 /* Locate the cgroups associated with these links. */
69d0206c
TH
509 link1 = list_entry(l1, struct cgrp_cset_link, cgrp_link);
510 link2 = list_entry(l2, struct cgrp_cset_link, cgrp_link);
511 cgrp1 = link1->cgrp;
512 cgrp2 = link2->cgrp;
7717f7ba 513 /* Hierarchies should be linked in the same order. */
5abb8855 514 BUG_ON(cgrp1->root != cgrp2->root);
7717f7ba
PM
515
516 /*
517 * If this hierarchy is the hierarchy of the cgroup
518 * that's changing, then we need to check that this
519 * css_set points to the new cgroup; if it's any other
520 * hierarchy, then this css_set should point to the
521 * same cgroup as the old css_set.
522 */
5abb8855
TH
523 if (cgrp1->root == new_cgrp->root) {
524 if (cgrp1 != new_cgrp)
7717f7ba
PM
525 return false;
526 } else {
5abb8855 527 if (cgrp1 != cgrp2)
7717f7ba
PM
528 return false;
529 }
530 }
531 return true;
532}
533
b326f9d0
TH
534/**
535 * find_existing_css_set - init css array and find the matching css_set
536 * @old_cset: the css_set that we're using before the cgroup transition
537 * @cgrp: the cgroup that we're moving into
538 * @template: out param for the new set of csses, should be clear on entry
817929ec 539 */
5abb8855
TH
540static struct css_set *find_existing_css_set(struct css_set *old_cset,
541 struct cgroup *cgrp,
542 struct cgroup_subsys_state *template[])
b4f48b63 543{
bd89aabc 544 struct cgroupfs_root *root = cgrp->root;
30159ec7 545 struct cgroup_subsys *ss;
5abb8855 546 struct css_set *cset;
0ac801fe 547 unsigned long key;
b326f9d0 548 int i;
817929ec 549
aae8aab4
BB
550 /*
551 * Build the set of subsystem state objects that we want to see in the
552 * new css_set. while subsystems can change globally, the entries here
553 * won't change, so no need for locking.
554 */
30159ec7 555 for_each_subsys(ss, i) {
a1a71b45 556 if (root->subsys_mask & (1UL << i)) {
817929ec
PM
557 /* Subsystem is in this hierarchy. So we want
558 * the subsystem state from the new
559 * cgroup */
bd89aabc 560 template[i] = cgrp->subsys[i];
817929ec
PM
561 } else {
562 /* Subsystem is not in this hierarchy, so we
563 * don't want to change the subsystem state */
5abb8855 564 template[i] = old_cset->subsys[i];
817929ec
PM
565 }
566 }
567
0ac801fe 568 key = css_set_hash(template);
5abb8855
TH
569 hash_for_each_possible(css_set_table, cset, hlist, key) {
570 if (!compare_css_sets(cset, old_cset, cgrp, template))
7717f7ba
PM
571 continue;
572
573 /* This css_set matches what we need */
5abb8855 574 return cset;
472b1053 575 }
817929ec
PM
576
577 /* No existing cgroup group matched */
578 return NULL;
579}
580
69d0206c 581static void free_cgrp_cset_links(struct list_head *links_to_free)
36553434 582{
69d0206c 583 struct cgrp_cset_link *link, *tmp_link;
36553434 584
69d0206c
TH
585 list_for_each_entry_safe(link, tmp_link, links_to_free, cset_link) {
586 list_del(&link->cset_link);
36553434
LZ
587 kfree(link);
588 }
589}
590
69d0206c
TH
591/**
592 * allocate_cgrp_cset_links - allocate cgrp_cset_links
593 * @count: the number of links to allocate
594 * @tmp_links: list_head the allocated links are put on
595 *
596 * Allocate @count cgrp_cset_link structures and chain them on @tmp_links
597 * through ->cset_link. Returns 0 on success or -errno.
817929ec 598 */
69d0206c 599static int allocate_cgrp_cset_links(int count, struct list_head *tmp_links)
817929ec 600{
69d0206c 601 struct cgrp_cset_link *link;
817929ec 602 int i;
69d0206c
TH
603
604 INIT_LIST_HEAD(tmp_links);
605
817929ec 606 for (i = 0; i < count; i++) {
f4f4be2b 607 link = kzalloc(sizeof(*link), GFP_KERNEL);
817929ec 608 if (!link) {
69d0206c 609 free_cgrp_cset_links(tmp_links);
817929ec
PM
610 return -ENOMEM;
611 }
69d0206c 612 list_add(&link->cset_link, tmp_links);
817929ec
PM
613 }
614 return 0;
615}
616
c12f65d4
LZ
617/**
618 * link_css_set - a helper function to link a css_set to a cgroup
69d0206c 619 * @tmp_links: cgrp_cset_link objects allocated by allocate_cgrp_cset_links()
5abb8855 620 * @cset: the css_set to be linked
c12f65d4
LZ
621 * @cgrp: the destination cgroup
622 */
69d0206c
TH
623static void link_css_set(struct list_head *tmp_links, struct css_set *cset,
624 struct cgroup *cgrp)
c12f65d4 625{
69d0206c 626 struct cgrp_cset_link *link;
c12f65d4 627
69d0206c
TH
628 BUG_ON(list_empty(tmp_links));
629 link = list_first_entry(tmp_links, struct cgrp_cset_link, cset_link);
630 link->cset = cset;
7717f7ba 631 link->cgrp = cgrp;
69d0206c 632 list_move(&link->cset_link, &cgrp->cset_links);
7717f7ba
PM
633 /*
634 * Always add links to the tail of the list so that the list
635 * is sorted by order of hierarchy creation
636 */
69d0206c 637 list_add_tail(&link->cgrp_link, &cset->cgrp_links);
c12f65d4
LZ
638}
639
b326f9d0
TH
640/**
641 * find_css_set - return a new css_set with one cgroup updated
642 * @old_cset: the baseline css_set
643 * @cgrp: the cgroup to be updated
644 *
645 * Return a new css_set that's equivalent to @old_cset, but with @cgrp
646 * substituted into the appropriate hierarchy.
817929ec 647 */
5abb8855
TH
648static struct css_set *find_css_set(struct css_set *old_cset,
649 struct cgroup *cgrp)
817929ec 650{
b326f9d0 651 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT] = { };
5abb8855 652 struct css_set *cset;
69d0206c
TH
653 struct list_head tmp_links;
654 struct cgrp_cset_link *link;
0ac801fe 655 unsigned long key;
472b1053 656
b326f9d0
TH
657 lockdep_assert_held(&cgroup_mutex);
658
817929ec
PM
659 /* First see if we already have a cgroup group that matches
660 * the desired set */
7e9abd89 661 read_lock(&css_set_lock);
5abb8855
TH
662 cset = find_existing_css_set(old_cset, cgrp, template);
663 if (cset)
664 get_css_set(cset);
7e9abd89 665 read_unlock(&css_set_lock);
817929ec 666
5abb8855
TH
667 if (cset)
668 return cset;
817929ec 669
f4f4be2b 670 cset = kzalloc(sizeof(*cset), GFP_KERNEL);
5abb8855 671 if (!cset)
817929ec
PM
672 return NULL;
673
69d0206c 674 /* Allocate all the cgrp_cset_link objects that we'll need */
9871bf95 675 if (allocate_cgrp_cset_links(cgroup_root_count, &tmp_links) < 0) {
5abb8855 676 kfree(cset);
817929ec
PM
677 return NULL;
678 }
679
5abb8855 680 atomic_set(&cset->refcount, 1);
69d0206c 681 INIT_LIST_HEAD(&cset->cgrp_links);
5abb8855
TH
682 INIT_LIST_HEAD(&cset->tasks);
683 INIT_HLIST_NODE(&cset->hlist);
817929ec
PM
684
685 /* Copy the set of subsystem state objects generated in
686 * find_existing_css_set() */
5abb8855 687 memcpy(cset->subsys, template, sizeof(cset->subsys));
817929ec
PM
688
689 write_lock(&css_set_lock);
690 /* Add reference counts and links from the new css_set. */
69d0206c 691 list_for_each_entry(link, &old_cset->cgrp_links, cgrp_link) {
7717f7ba 692 struct cgroup *c = link->cgrp;
69d0206c 693
7717f7ba
PM
694 if (c->root == cgrp->root)
695 c = cgrp;
69d0206c 696 link_css_set(&tmp_links, cset, c);
7717f7ba 697 }
817929ec 698
69d0206c 699 BUG_ON(!list_empty(&tmp_links));
817929ec 700
817929ec 701 css_set_count++;
472b1053
LZ
702
703 /* Add this cgroup group to the hash table */
5abb8855
TH
704 key = css_set_hash(cset->subsys);
705 hash_add(css_set_table, &cset->hlist, key);
472b1053 706
817929ec
PM
707 write_unlock(&css_set_lock);
708
5abb8855 709 return cset;
b4f48b63
PM
710}
711
7717f7ba
PM
712/*
713 * Return the cgroup for "task" from the given hierarchy. Must be
714 * called with cgroup_mutex held.
715 */
716static struct cgroup *task_cgroup_from_root(struct task_struct *task,
717 struct cgroupfs_root *root)
718{
5abb8855 719 struct css_set *cset;
7717f7ba
PM
720 struct cgroup *res = NULL;
721
722 BUG_ON(!mutex_is_locked(&cgroup_mutex));
723 read_lock(&css_set_lock);
724 /*
725 * No need to lock the task - since we hold cgroup_mutex the
726 * task can't change groups, so the only thing that can happen
727 * is that it exits and its css is set back to init_css_set.
728 */
a8ad805c 729 cset = task_css_set(task);
5abb8855 730 if (cset == &init_css_set) {
7717f7ba
PM
731 res = &root->top_cgroup;
732 } else {
69d0206c
TH
733 struct cgrp_cset_link *link;
734
735 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
7717f7ba 736 struct cgroup *c = link->cgrp;
69d0206c 737
7717f7ba
PM
738 if (c->root == root) {
739 res = c;
740 break;
741 }
742 }
743 }
744 read_unlock(&css_set_lock);
745 BUG_ON(!res);
746 return res;
747}
748
ddbcc7e8
PM
749/*
750 * There is one global cgroup mutex. We also require taking
751 * task_lock() when dereferencing a task's cgroup subsys pointers.
752 * See "The task_lock() exception", at the end of this comment.
753 *
754 * A task must hold cgroup_mutex to modify cgroups.
755 *
756 * Any task can increment and decrement the count field without lock.
757 * So in general, code holding cgroup_mutex can't rely on the count
758 * field not changing. However, if the count goes to zero, then only
956db3ca 759 * cgroup_attach_task() can increment it again. Because a count of zero
ddbcc7e8
PM
760 * means that no tasks are currently attached, therefore there is no
761 * way a task attached to that cgroup can fork (the other way to
762 * increment the count). So code holding cgroup_mutex can safely
763 * assume that if the count is zero, it will stay zero. Similarly, if
764 * a task holds cgroup_mutex on a cgroup with zero count, it
765 * knows that the cgroup won't be removed, as cgroup_rmdir()
766 * needs that mutex.
767 *
ddbcc7e8
PM
768 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
769 * (usually) take cgroup_mutex. These are the two most performance
770 * critical pieces of code here. The exception occurs on cgroup_exit(),
771 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
772 * is taken, and if the cgroup count is zero, a usermode call made
a043e3b2
LZ
773 * to the release agent with the name of the cgroup (path relative to
774 * the root of cgroup file system) as the argument.
ddbcc7e8
PM
775 *
776 * A cgroup can only be deleted if both its 'count' of using tasks
777 * is zero, and its list of 'children' cgroups is empty. Since all
778 * tasks in the system use _some_ cgroup, and since there is always at
779 * least one task in the system (init, pid == 1), therefore, top_cgroup
780 * always has either children cgroups and/or using tasks. So we don't
781 * need a special hack to ensure that top_cgroup cannot be deleted.
782 *
783 * The task_lock() exception
784 *
785 * The need for this exception arises from the action of
d0b2fdd2 786 * cgroup_attach_task(), which overwrites one task's cgroup pointer with
a043e3b2 787 * another. It does so using cgroup_mutex, however there are
ddbcc7e8
PM
788 * several performance critical places that need to reference
789 * task->cgroup without the expense of grabbing a system global
790 * mutex. Therefore except as noted below, when dereferencing or, as
d0b2fdd2 791 * in cgroup_attach_task(), modifying a task's cgroup pointer we use
ddbcc7e8
PM
792 * task_lock(), which acts on a spinlock (task->alloc_lock) already in
793 * the task_struct routinely used for such matters.
794 *
795 * P.S. One more locking exception. RCU is used to guard the
956db3ca 796 * update of a tasks cgroup pointer by cgroup_attach_task()
ddbcc7e8
PM
797 */
798
ddbcc7e8
PM
799/*
800 * A couple of forward declarations required, due to cyclic reference loop:
801 * cgroup_mkdir -> cgroup_create -> cgroup_populate_dir ->
802 * cgroup_add_file -> cgroup_create_file -> cgroup_dir_inode_operations
803 * -> cgroup_mkdir.
804 */
805
18bb1db3 806static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode);
00cd8dd3 807static struct dentry *cgroup_lookup(struct inode *, struct dentry *, unsigned int);
ddbcc7e8 808static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry);
628f7cd4 809static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask);
6e1d5dcc 810static const struct inode_operations cgroup_dir_inode_operations;
828c0950 811static const struct file_operations proc_cgroupstats_operations;
a424316c
PM
812
813static struct backing_dev_info cgroup_backing_dev_info = {
d993831f 814 .name = "cgroup",
e4ad08fe 815 .capabilities = BDI_CAP_NO_ACCT_AND_WRITEBACK,
a424316c 816};
ddbcc7e8 817
38460b48
KH
818static int alloc_css_id(struct cgroup_subsys *ss,
819 struct cgroup *parent, struct cgroup *child);
820
a5e7ed32 821static struct inode *cgroup_new_inode(umode_t mode, struct super_block *sb)
ddbcc7e8
PM
822{
823 struct inode *inode = new_inode(sb);
ddbcc7e8
PM
824
825 if (inode) {
85fe4025 826 inode->i_ino = get_next_ino();
ddbcc7e8 827 inode->i_mode = mode;
76aac0e9
DH
828 inode->i_uid = current_fsuid();
829 inode->i_gid = current_fsgid();
ddbcc7e8
PM
830 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
831 inode->i_mapping->backing_dev_info = &cgroup_backing_dev_info;
832 }
833 return inode;
834}
835
65dff759
LZ
836static struct cgroup_name *cgroup_alloc_name(struct dentry *dentry)
837{
838 struct cgroup_name *name;
839
840 name = kmalloc(sizeof(*name) + dentry->d_name.len + 1, GFP_KERNEL);
841 if (!name)
842 return NULL;
843 strcpy(name->name, dentry->d_name.name);
844 return name;
845}
846
be445626
LZ
847static void cgroup_free_fn(struct work_struct *work)
848{
ea15f8cc 849 struct cgroup *cgrp = container_of(work, struct cgroup, destroy_work);
be445626
LZ
850 struct cgroup_subsys *ss;
851
852 mutex_lock(&cgroup_mutex);
853 /*
854 * Release the subsystem state objects.
855 */
5549c497 856 for_each_root_subsys(cgrp->root, ss)
be445626
LZ
857 ss->css_free(cgrp);
858
859 cgrp->root->number_of_cgroups--;
860 mutex_unlock(&cgroup_mutex);
861
415cf07a
LZ
862 /*
863 * We get a ref to the parent's dentry, and put the ref when
864 * this cgroup is being freed, so it's guaranteed that the
865 * parent won't be destroyed before its children.
866 */
867 dput(cgrp->parent->dentry);
868
cc20e01c
LZ
869 ida_simple_remove(&cgrp->root->cgroup_ida, cgrp->id);
870
be445626
LZ
871 /*
872 * Drop the active superblock reference that we took when we
cc20e01c
LZ
873 * created the cgroup. This will free cgrp->root, if we are
874 * holding the last reference to @sb.
be445626
LZ
875 */
876 deactivate_super(cgrp->root->sb);
877
878 /*
879 * if we're getting rid of the cgroup, refcount should ensure
880 * that there are no pidlists left.
881 */
882 BUG_ON(!list_empty(&cgrp->pidlists));
883
884 simple_xattrs_free(&cgrp->xattrs);
885
65dff759 886 kfree(rcu_dereference_raw(cgrp->name));
be445626
LZ
887 kfree(cgrp);
888}
889
890static void cgroup_free_rcu(struct rcu_head *head)
891{
892 struct cgroup *cgrp = container_of(head, struct cgroup, rcu_head);
893
ea15f8cc
TH
894 INIT_WORK(&cgrp->destroy_work, cgroup_free_fn);
895 schedule_work(&cgrp->destroy_work);
be445626
LZ
896}
897
ddbcc7e8
PM
898static void cgroup_diput(struct dentry *dentry, struct inode *inode)
899{
900 /* is dentry a directory ? if so, kfree() associated cgroup */
901 if (S_ISDIR(inode->i_mode)) {
bd89aabc 902 struct cgroup *cgrp = dentry->d_fsdata;
be445626 903
54766d4a 904 BUG_ON(!(cgroup_is_dead(cgrp)));
be445626 905 call_rcu(&cgrp->rcu_head, cgroup_free_rcu);
05ef1d7c
TH
906 } else {
907 struct cfent *cfe = __d_cfe(dentry);
908 struct cgroup *cgrp = dentry->d_parent->d_fsdata;
909
910 WARN_ONCE(!list_empty(&cfe->node) &&
911 cgrp != &cgrp->root->top_cgroup,
912 "cfe still linked for %s\n", cfe->type->name);
712317ad 913 simple_xattrs_free(&cfe->xattrs);
05ef1d7c 914 kfree(cfe);
ddbcc7e8
PM
915 }
916 iput(inode);
917}
918
c72a04e3
AV
919static int cgroup_delete(const struct dentry *d)
920{
921 return 1;
922}
923
ddbcc7e8
PM
924static void remove_dir(struct dentry *d)
925{
926 struct dentry *parent = dget(d->d_parent);
927
928 d_delete(d);
929 simple_rmdir(parent->d_inode, d);
930 dput(parent);
931}
932
2739d3cc 933static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
05ef1d7c
TH
934{
935 struct cfent *cfe;
936
937 lockdep_assert_held(&cgrp->dentry->d_inode->i_mutex);
938 lockdep_assert_held(&cgroup_mutex);
939
2739d3cc
LZ
940 /*
941 * If we're doing cleanup due to failure of cgroup_create(),
942 * the corresponding @cfe may not exist.
943 */
05ef1d7c
TH
944 list_for_each_entry(cfe, &cgrp->files, node) {
945 struct dentry *d = cfe->dentry;
946
947 if (cft && cfe->type != cft)
948 continue;
949
950 dget(d);
951 d_delete(d);
ce27e317 952 simple_unlink(cgrp->dentry->d_inode, d);
05ef1d7c
TH
953 list_del_init(&cfe->node);
954 dput(d);
955
2739d3cc 956 break;
ddbcc7e8 957 }
05ef1d7c
TH
958}
959
13af07df 960/**
628f7cd4 961 * cgroup_clear_dir - remove subsys files in a cgroup directory
8f89140a 962 * @cgrp: target cgroup
13af07df
AR
963 * @subsys_mask: mask of the subsystem ids whose files should be removed
964 */
628f7cd4 965static void cgroup_clear_dir(struct cgroup *cgrp, unsigned long subsys_mask)
05ef1d7c 966{
13af07df 967 struct cgroup_subsys *ss;
b420ba7d 968 int i;
05ef1d7c 969
b420ba7d 970 for_each_subsys(ss, i) {
13af07df 971 struct cftype_set *set;
b420ba7d
TH
972
973 if (!test_bit(i, &subsys_mask))
13af07df
AR
974 continue;
975 list_for_each_entry(set, &ss->cftsets, node)
879a3d9d 976 cgroup_addrm_files(cgrp, NULL, set->cfts, false);
13af07df 977 }
ddbcc7e8
PM
978}
979
980/*
981 * NOTE : the dentry must have been dget()'ed
982 */
983static void cgroup_d_remove_dir(struct dentry *dentry)
984{
2fd6b7f5 985 struct dentry *parent;
ddbcc7e8 986
2fd6b7f5
NP
987 parent = dentry->d_parent;
988 spin_lock(&parent->d_lock);
3ec762ad 989 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
ddbcc7e8 990 list_del_init(&dentry->d_u.d_child);
2fd6b7f5
NP
991 spin_unlock(&dentry->d_lock);
992 spin_unlock(&parent->d_lock);
ddbcc7e8
PM
993 remove_dir(dentry);
994}
995
aae8aab4 996/*
cf5d5941
BB
997 * Call with cgroup_mutex held. Drops reference counts on modules, including
998 * any duplicate ones that parse_cgroupfs_options took. If this function
999 * returns an error, no reference counts are touched.
aae8aab4 1000 */
ddbcc7e8 1001static int rebind_subsystems(struct cgroupfs_root *root,
a8a648c4 1002 unsigned long added_mask, unsigned removed_mask)
ddbcc7e8 1003{
bd89aabc 1004 struct cgroup *cgrp = &root->top_cgroup;
30159ec7 1005 struct cgroup_subsys *ss;
ddbcc7e8
PM
1006 int i;
1007
aae8aab4 1008 BUG_ON(!mutex_is_locked(&cgroup_mutex));
e25e2cbb 1009 BUG_ON(!mutex_is_locked(&cgroup_root_mutex));
aae8aab4 1010
ddbcc7e8 1011 /* Check that any added subsystems are currently free */
30159ec7 1012 for_each_subsys(ss, i) {
8d53d55d 1013 unsigned long bit = 1UL << i;
30159ec7 1014
a1a71b45 1015 if (!(bit & added_mask))
ddbcc7e8 1016 continue;
30159ec7 1017
9871bf95 1018 if (ss->root != &cgroup_dummy_root) {
ddbcc7e8
PM
1019 /* Subsystem isn't free */
1020 return -EBUSY;
1021 }
1022 }
1023
1024 /* Currently we don't handle adding/removing subsystems when
1025 * any child cgroups exist. This is theoretically supportable
1026 * but involves complex error handling, so it's being left until
1027 * later */
307257cf 1028 if (root->number_of_cgroups > 1)
ddbcc7e8
PM
1029 return -EBUSY;
1030
1031 /* Process each subsystem */
30159ec7 1032 for_each_subsys(ss, i) {
ddbcc7e8 1033 unsigned long bit = 1UL << i;
30159ec7 1034
a1a71b45 1035 if (bit & added_mask) {
ddbcc7e8 1036 /* We're binding this subsystem to this hierarchy */
bd89aabc 1037 BUG_ON(cgrp->subsys[i]);
9871bf95
TH
1038 BUG_ON(!cgroup_dummy_top->subsys[i]);
1039 BUG_ON(cgroup_dummy_top->subsys[i]->cgroup != cgroup_dummy_top);
a8a648c4 1040
9871bf95 1041 cgrp->subsys[i] = cgroup_dummy_top->subsys[i];
bd89aabc 1042 cgrp->subsys[i]->cgroup = cgrp;
33a68ac1 1043 list_move(&ss->sibling, &root->subsys_list);
b2aa30f7 1044 ss->root = root;
ddbcc7e8 1045 if (ss->bind)
761b3ef5 1046 ss->bind(cgrp);
a8a648c4 1047
cf5d5941 1048 /* refcount was already taken, and we're keeping it */
a8a648c4 1049 root->subsys_mask |= bit;
a1a71b45 1050 } else if (bit & removed_mask) {
ddbcc7e8 1051 /* We're removing this subsystem */
9871bf95 1052 BUG_ON(cgrp->subsys[i] != cgroup_dummy_top->subsys[i]);
bd89aabc 1053 BUG_ON(cgrp->subsys[i]->cgroup != cgrp);
a8a648c4 1054
ddbcc7e8 1055 if (ss->bind)
9871bf95
TH
1056 ss->bind(cgroup_dummy_top);
1057 cgroup_dummy_top->subsys[i]->cgroup = cgroup_dummy_top;
bd89aabc 1058 cgrp->subsys[i] = NULL;
9871bf95
TH
1059 cgroup_subsys[i]->root = &cgroup_dummy_root;
1060 list_move(&ss->sibling, &cgroup_dummy_root.subsys_list);
a8a648c4 1061
cf5d5941
BB
1062 /* subsystem is now free - drop reference on module */
1063 module_put(ss->module);
a8a648c4
TH
1064 root->subsys_mask &= ~bit;
1065 } else if (bit & root->subsys_mask) {
ddbcc7e8 1066 /* Subsystem state should already exist */
bd89aabc 1067 BUG_ON(!cgrp->subsys[i]);
cf5d5941
BB
1068 /*
1069 * a refcount was taken, but we already had one, so
1070 * drop the extra reference.
1071 */
1072 module_put(ss->module);
1073#ifdef CONFIG_MODULE_UNLOAD
1074 BUG_ON(ss->module && !module_refcount(ss->module));
1075#endif
ddbcc7e8
PM
1076 } else {
1077 /* Subsystem state shouldn't exist */
bd89aabc 1078 BUG_ON(cgrp->subsys[i]);
ddbcc7e8
PM
1079 }
1080 }
ddbcc7e8 1081
1672d040
TH
1082 /*
1083 * Mark @root has finished binding subsystems. @root->subsys_mask
1084 * now matches the bound subsystems.
1085 */
1086 root->flags |= CGRP_ROOT_SUBSYS_BOUND;
1087
ddbcc7e8
PM
1088 return 0;
1089}
1090
34c80b1d 1091static int cgroup_show_options(struct seq_file *seq, struct dentry *dentry)
ddbcc7e8 1092{
34c80b1d 1093 struct cgroupfs_root *root = dentry->d_sb->s_fs_info;
ddbcc7e8
PM
1094 struct cgroup_subsys *ss;
1095
e25e2cbb 1096 mutex_lock(&cgroup_root_mutex);
5549c497 1097 for_each_root_subsys(root, ss)
ddbcc7e8 1098 seq_printf(seq, ",%s", ss->name);
873fe09e
TH
1099 if (root->flags & CGRP_ROOT_SANE_BEHAVIOR)
1100 seq_puts(seq, ",sane_behavior");
93438629 1101 if (root->flags & CGRP_ROOT_NOPREFIX)
ddbcc7e8 1102 seq_puts(seq, ",noprefix");
93438629 1103 if (root->flags & CGRP_ROOT_XATTR)
03b1cde6 1104 seq_puts(seq, ",xattr");
81a6a5cd
PM
1105 if (strlen(root->release_agent_path))
1106 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
2260e7fc 1107 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->top_cgroup.flags))
97978e6d 1108 seq_puts(seq, ",clone_children");
c6d57f33
PM
1109 if (strlen(root->name))
1110 seq_printf(seq, ",name=%s", root->name);
e25e2cbb 1111 mutex_unlock(&cgroup_root_mutex);
ddbcc7e8
PM
1112 return 0;
1113}
1114
1115struct cgroup_sb_opts {
a1a71b45 1116 unsigned long subsys_mask;
ddbcc7e8 1117 unsigned long flags;
81a6a5cd 1118 char *release_agent;
2260e7fc 1119 bool cpuset_clone_children;
c6d57f33 1120 char *name;
2c6ab6d2
PM
1121 /* User explicitly requested empty subsystem */
1122 bool none;
c6d57f33
PM
1123
1124 struct cgroupfs_root *new_root;
2c6ab6d2 1125
ddbcc7e8
PM
1126};
1127
aae8aab4 1128/*
9871bf95
TH
1129 * Convert a hierarchy specifier into a bitmask of subsystems and
1130 * flags. Call with cgroup_mutex held to protect the cgroup_subsys[]
1131 * array. This function takes refcounts on subsystems to be used, unless it
1132 * returns error, in which case no refcounts are taken.
aae8aab4 1133 */
cf5d5941 1134static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
ddbcc7e8 1135{
32a8cf23
DL
1136 char *token, *o = data;
1137 bool all_ss = false, one_ss = false;
f9ab5b5b 1138 unsigned long mask = (unsigned long)-1;
cf5d5941 1139 bool module_pin_failed = false;
30159ec7
TH
1140 struct cgroup_subsys *ss;
1141 int i;
f9ab5b5b 1142
aae8aab4
BB
1143 BUG_ON(!mutex_is_locked(&cgroup_mutex));
1144
f9ab5b5b
LZ
1145#ifdef CONFIG_CPUSETS
1146 mask = ~(1UL << cpuset_subsys_id);
1147#endif
ddbcc7e8 1148
c6d57f33 1149 memset(opts, 0, sizeof(*opts));
ddbcc7e8
PM
1150
1151 while ((token = strsep(&o, ",")) != NULL) {
1152 if (!*token)
1153 return -EINVAL;
32a8cf23 1154 if (!strcmp(token, "none")) {
2c6ab6d2
PM
1155 /* Explicitly have no subsystems */
1156 opts->none = true;
32a8cf23
DL
1157 continue;
1158 }
1159 if (!strcmp(token, "all")) {
1160 /* Mutually exclusive option 'all' + subsystem name */
1161 if (one_ss)
1162 return -EINVAL;
1163 all_ss = true;
1164 continue;
1165 }
873fe09e
TH
1166 if (!strcmp(token, "__DEVEL__sane_behavior")) {
1167 opts->flags |= CGRP_ROOT_SANE_BEHAVIOR;
1168 continue;
1169 }
32a8cf23 1170 if (!strcmp(token, "noprefix")) {
93438629 1171 opts->flags |= CGRP_ROOT_NOPREFIX;
32a8cf23
DL
1172 continue;
1173 }
1174 if (!strcmp(token, "clone_children")) {
2260e7fc 1175 opts->cpuset_clone_children = true;
32a8cf23
DL
1176 continue;
1177 }
03b1cde6 1178 if (!strcmp(token, "xattr")) {
93438629 1179 opts->flags |= CGRP_ROOT_XATTR;
03b1cde6
AR
1180 continue;
1181 }
32a8cf23 1182 if (!strncmp(token, "release_agent=", 14)) {
81a6a5cd
PM
1183 /* Specifying two release agents is forbidden */
1184 if (opts->release_agent)
1185 return -EINVAL;
c6d57f33 1186 opts->release_agent =
e400c285 1187 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
81a6a5cd
PM
1188 if (!opts->release_agent)
1189 return -ENOMEM;
32a8cf23
DL
1190 continue;
1191 }
1192 if (!strncmp(token, "name=", 5)) {
c6d57f33
PM
1193 const char *name = token + 5;
1194 /* Can't specify an empty name */
1195 if (!strlen(name))
1196 return -EINVAL;
1197 /* Must match [\w.-]+ */
1198 for (i = 0; i < strlen(name); i++) {
1199 char c = name[i];
1200 if (isalnum(c))
1201 continue;
1202 if ((c == '.') || (c == '-') || (c == '_'))
1203 continue;
1204 return -EINVAL;
1205 }
1206 /* Specifying two names is forbidden */
1207 if (opts->name)
1208 return -EINVAL;
1209 opts->name = kstrndup(name,
e400c285 1210 MAX_CGROUP_ROOT_NAMELEN - 1,
c6d57f33
PM
1211 GFP_KERNEL);
1212 if (!opts->name)
1213 return -ENOMEM;
32a8cf23
DL
1214
1215 continue;
1216 }
1217
30159ec7 1218 for_each_subsys(ss, i) {
32a8cf23
DL
1219 if (strcmp(token, ss->name))
1220 continue;
1221 if (ss->disabled)
1222 continue;
1223
1224 /* Mutually exclusive option 'all' + subsystem name */
1225 if (all_ss)
1226 return -EINVAL;
a1a71b45 1227 set_bit(i, &opts->subsys_mask);
32a8cf23
DL
1228 one_ss = true;
1229
1230 break;
1231 }
1232 if (i == CGROUP_SUBSYS_COUNT)
1233 return -ENOENT;
1234 }
1235
1236 /*
1237 * If the 'all' option was specified select all the subsystems,
0d19ea86
LZ
1238 * otherwise if 'none', 'name=' and a subsystem name options
1239 * were not specified, let's default to 'all'
32a8cf23 1240 */
30159ec7
TH
1241 if (all_ss || (!one_ss && !opts->none && !opts->name))
1242 for_each_subsys(ss, i)
1243 if (!ss->disabled)
1244 set_bit(i, &opts->subsys_mask);
ddbcc7e8 1245
2c6ab6d2
PM
1246 /* Consistency checks */
1247
873fe09e
TH
1248 if (opts->flags & CGRP_ROOT_SANE_BEHAVIOR) {
1249 pr_warning("cgroup: sane_behavior: this is still under development and its behaviors will change, proceed at your own risk\n");
1250
1251 if (opts->flags & CGRP_ROOT_NOPREFIX) {
1252 pr_err("cgroup: sane_behavior: noprefix is not allowed\n");
1253 return -EINVAL;
1254 }
1255
1256 if (opts->cpuset_clone_children) {
1257 pr_err("cgroup: sane_behavior: clone_children is not allowed\n");
1258 return -EINVAL;
1259 }
1260 }
1261
f9ab5b5b
LZ
1262 /*
1263 * Option noprefix was introduced just for backward compatibility
1264 * with the old cpuset, so we allow noprefix only if mounting just
1265 * the cpuset subsystem.
1266 */
93438629 1267 if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask))
f9ab5b5b
LZ
1268 return -EINVAL;
1269
2c6ab6d2
PM
1270
1271 /* Can't specify "none" and some subsystems */
a1a71b45 1272 if (opts->subsys_mask && opts->none)
2c6ab6d2
PM
1273 return -EINVAL;
1274
1275 /*
1276 * We either have to specify by name or by subsystems. (So all
1277 * empty hierarchies must have a name).
1278 */
a1a71b45 1279 if (!opts->subsys_mask && !opts->name)
ddbcc7e8
PM
1280 return -EINVAL;
1281
cf5d5941
BB
1282 /*
1283 * Grab references on all the modules we'll need, so the subsystems
1284 * don't dance around before rebind_subsystems attaches them. This may
1285 * take duplicate reference counts on a subsystem that's already used,
1286 * but rebind_subsystems handles this case.
1287 */
30159ec7
TH
1288 for_each_subsys(ss, i) {
1289 if (!(opts->subsys_mask & (1UL << i)))
cf5d5941 1290 continue;
9871bf95 1291 if (!try_module_get(cgroup_subsys[i]->module)) {
cf5d5941
BB
1292 module_pin_failed = true;
1293 break;
1294 }
1295 }
1296 if (module_pin_failed) {
1297 /*
1298 * oops, one of the modules was going away. this means that we
1299 * raced with a module_delete call, and to the user this is
1300 * essentially a "subsystem doesn't exist" case.
1301 */
be45c900 1302 for (i--; i >= 0; i--) {
cf5d5941
BB
1303 /* drop refcounts only on the ones we took */
1304 unsigned long bit = 1UL << i;
1305
a1a71b45 1306 if (!(bit & opts->subsys_mask))
cf5d5941 1307 continue;
9871bf95 1308 module_put(cgroup_subsys[i]->module);
cf5d5941
BB
1309 }
1310 return -ENOENT;
1311 }
1312
ddbcc7e8
PM
1313 return 0;
1314}
1315
a1a71b45 1316static void drop_parsed_module_refcounts(unsigned long subsys_mask)
cf5d5941 1317{
30159ec7 1318 struct cgroup_subsys *ss;
cf5d5941 1319 int i;
cf5d5941 1320
eb178d06
TH
1321 mutex_lock(&cgroup_mutex);
1322 for_each_subsys(ss, i)
1323 if (subsys_mask & (1UL << i))
1324 module_put(cgroup_subsys[i]->module);
1325 mutex_unlock(&cgroup_mutex);
cf5d5941
BB
1326}
1327
ddbcc7e8
PM
1328static int cgroup_remount(struct super_block *sb, int *flags, char *data)
1329{
1330 int ret = 0;
1331 struct cgroupfs_root *root = sb->s_fs_info;
bd89aabc 1332 struct cgroup *cgrp = &root->top_cgroup;
ddbcc7e8 1333 struct cgroup_sb_opts opts;
a1a71b45 1334 unsigned long added_mask, removed_mask;
ddbcc7e8 1335
873fe09e
TH
1336 if (root->flags & CGRP_ROOT_SANE_BEHAVIOR) {
1337 pr_err("cgroup: sane_behavior: remount is not allowed\n");
1338 return -EINVAL;
1339 }
1340
bd89aabc 1341 mutex_lock(&cgrp->dentry->d_inode->i_mutex);
ddbcc7e8 1342 mutex_lock(&cgroup_mutex);
e25e2cbb 1343 mutex_lock(&cgroup_root_mutex);
ddbcc7e8
PM
1344
1345 /* See what subsystems are wanted */
1346 ret = parse_cgroupfs_options(data, &opts);
1347 if (ret)
1348 goto out_unlock;
1349
a8a648c4 1350 if (opts.subsys_mask != root->subsys_mask || opts.release_agent)
8b5a5a9d
TH
1351 pr_warning("cgroup: option changes via remount are deprecated (pid=%d comm=%s)\n",
1352 task_tgid_nr(current), current->comm);
1353
a1a71b45
AR
1354 added_mask = opts.subsys_mask & ~root->subsys_mask;
1355 removed_mask = root->subsys_mask & ~opts.subsys_mask;
13af07df 1356
cf5d5941 1357 /* Don't allow flags or name to change at remount */
0ce6cba3 1358 if (((opts.flags ^ root->flags) & CGRP_ROOT_OPTION_MASK) ||
cf5d5941 1359 (opts.name && strcmp(opts.name, root->name))) {
0ce6cba3
TH
1360 pr_err("cgroup: option or name mismatch, new: 0x%lx \"%s\", old: 0x%lx \"%s\"\n",
1361 opts.flags & CGRP_ROOT_OPTION_MASK, opts.name ?: "",
1362 root->flags & CGRP_ROOT_OPTION_MASK, root->name);
c6d57f33
PM
1363 ret = -EINVAL;
1364 goto out_unlock;
1365 }
1366
7083d037
G
1367 /*
1368 * Clear out the files of subsystems that should be removed, do
1369 * this before rebind_subsystems, since rebind_subsystems may
1370 * change this hierarchy's subsys_list.
1371 */
628f7cd4 1372 cgroup_clear_dir(cgrp, removed_mask);
7083d037 1373
a8a648c4 1374 ret = rebind_subsystems(root, added_mask, removed_mask);
cf5d5941 1375 if (ret) {
7083d037 1376 /* rebind_subsystems failed, re-populate the removed files */
628f7cd4 1377 cgroup_populate_dir(cgrp, removed_mask);
0670e08b 1378 goto out_unlock;
cf5d5941 1379 }
ddbcc7e8 1380
13af07df 1381 /* re-populate subsystem files */
628f7cd4 1382 cgroup_populate_dir(cgrp, added_mask);
ddbcc7e8 1383
81a6a5cd
PM
1384 if (opts.release_agent)
1385 strcpy(root->release_agent_path, opts.release_agent);
ddbcc7e8 1386 out_unlock:
66bdc9cf 1387 kfree(opts.release_agent);
c6d57f33 1388 kfree(opts.name);
e25e2cbb 1389 mutex_unlock(&cgroup_root_mutex);
ddbcc7e8 1390 mutex_unlock(&cgroup_mutex);
bd89aabc 1391 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
e2bd416f
TH
1392 if (ret)
1393 drop_parsed_module_refcounts(opts.subsys_mask);
ddbcc7e8
PM
1394 return ret;
1395}
1396
b87221de 1397static const struct super_operations cgroup_ops = {
ddbcc7e8
PM
1398 .statfs = simple_statfs,
1399 .drop_inode = generic_delete_inode,
1400 .show_options = cgroup_show_options,
1401 .remount_fs = cgroup_remount,
1402};
1403
cc31edce
PM
1404static void init_cgroup_housekeeping(struct cgroup *cgrp)
1405{
1406 INIT_LIST_HEAD(&cgrp->sibling);
1407 INIT_LIST_HEAD(&cgrp->children);
05ef1d7c 1408 INIT_LIST_HEAD(&cgrp->files);
69d0206c 1409 INIT_LIST_HEAD(&cgrp->cset_links);
cc31edce 1410 INIT_LIST_HEAD(&cgrp->release_list);
72a8cb30
BB
1411 INIT_LIST_HEAD(&cgrp->pidlists);
1412 mutex_init(&cgrp->pidlist_mutex);
0dea1168
KS
1413 INIT_LIST_HEAD(&cgrp->event_list);
1414 spin_lock_init(&cgrp->event_list_lock);
03b1cde6 1415 simple_xattrs_init(&cgrp->xattrs);
cc31edce 1416}
c6d57f33 1417
ddbcc7e8
PM
1418static void init_cgroup_root(struct cgroupfs_root *root)
1419{
bd89aabc 1420 struct cgroup *cgrp = &root->top_cgroup;
b0ca5a84 1421
ddbcc7e8
PM
1422 INIT_LIST_HEAD(&root->subsys_list);
1423 INIT_LIST_HEAD(&root->root_list);
1424 root->number_of_cgroups = 1;
bd89aabc 1425 cgrp->root = root;
a4ea1cc9 1426 RCU_INIT_POINTER(cgrp->name, &root_cgroup_name);
cc31edce 1427 init_cgroup_housekeeping(cgrp);
ddbcc7e8
PM
1428}
1429
fc76df70 1430static int cgroup_init_root_id(struct cgroupfs_root *root, int start, int end)
2c6ab6d2 1431{
1a574231 1432 int id;
2c6ab6d2 1433
54e7b4eb
TH
1434 lockdep_assert_held(&cgroup_mutex);
1435 lockdep_assert_held(&cgroup_root_mutex);
1436
fc76df70
TH
1437 id = idr_alloc_cyclic(&cgroup_hierarchy_idr, root, start, end,
1438 GFP_KERNEL);
1a574231
TH
1439 if (id < 0)
1440 return id;
1441
1442 root->hierarchy_id = id;
fa3ca07e
TH
1443 return 0;
1444}
1445
1446static void cgroup_exit_root_id(struct cgroupfs_root *root)
1447{
54e7b4eb
TH
1448 lockdep_assert_held(&cgroup_mutex);
1449 lockdep_assert_held(&cgroup_root_mutex);
1450
fa3ca07e 1451 if (root->hierarchy_id) {
1a574231 1452 idr_remove(&cgroup_hierarchy_idr, root->hierarchy_id);
fa3ca07e
TH
1453 root->hierarchy_id = 0;
1454 }
2c6ab6d2
PM
1455}
1456
ddbcc7e8
PM
1457static int cgroup_test_super(struct super_block *sb, void *data)
1458{
c6d57f33 1459 struct cgroup_sb_opts *opts = data;
ddbcc7e8
PM
1460 struct cgroupfs_root *root = sb->s_fs_info;
1461
c6d57f33
PM
1462 /* If we asked for a name then it must match */
1463 if (opts->name && strcmp(opts->name, root->name))
1464 return 0;
ddbcc7e8 1465
2c6ab6d2
PM
1466 /*
1467 * If we asked for subsystems (or explicitly for no
1468 * subsystems) then they must match
1469 */
a1a71b45
AR
1470 if ((opts->subsys_mask || opts->none)
1471 && (opts->subsys_mask != root->subsys_mask))
ddbcc7e8
PM
1472 return 0;
1473
1474 return 1;
1475}
1476
c6d57f33
PM
1477static struct cgroupfs_root *cgroup_root_from_opts(struct cgroup_sb_opts *opts)
1478{
1479 struct cgroupfs_root *root;
1480
a1a71b45 1481 if (!opts->subsys_mask && !opts->none)
c6d57f33
PM
1482 return NULL;
1483
1484 root = kzalloc(sizeof(*root), GFP_KERNEL);
1485 if (!root)
1486 return ERR_PTR(-ENOMEM);
1487
1488 init_cgroup_root(root);
2c6ab6d2 1489
1672d040
TH
1490 /*
1491 * We need to set @root->subsys_mask now so that @root can be
1492 * matched by cgroup_test_super() before it finishes
1493 * initialization; otherwise, competing mounts with the same
1494 * options may try to bind the same subsystems instead of waiting
1495 * for the first one leading to unexpected mount errors.
1496 * SUBSYS_BOUND will be set once actual binding is complete.
1497 */
a1a71b45 1498 root->subsys_mask = opts->subsys_mask;
c6d57f33 1499 root->flags = opts->flags;
0a950f65 1500 ida_init(&root->cgroup_ida);
c6d57f33
PM
1501 if (opts->release_agent)
1502 strcpy(root->release_agent_path, opts->release_agent);
1503 if (opts->name)
1504 strcpy(root->name, opts->name);
2260e7fc
TH
1505 if (opts->cpuset_clone_children)
1506 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->top_cgroup.flags);
c6d57f33
PM
1507 return root;
1508}
1509
fa3ca07e 1510static void cgroup_free_root(struct cgroupfs_root *root)
2c6ab6d2 1511{
fa3ca07e
TH
1512 if (root) {
1513 /* hierarhcy ID shoulid already have been released */
1514 WARN_ON_ONCE(root->hierarchy_id);
2c6ab6d2 1515
fa3ca07e
TH
1516 ida_destroy(&root->cgroup_ida);
1517 kfree(root);
1518 }
2c6ab6d2
PM
1519}
1520
ddbcc7e8
PM
1521static int cgroup_set_super(struct super_block *sb, void *data)
1522{
1523 int ret;
c6d57f33
PM
1524 struct cgroup_sb_opts *opts = data;
1525
1526 /* If we don't have a new root, we can't set up a new sb */
1527 if (!opts->new_root)
1528 return -EINVAL;
1529
a1a71b45 1530 BUG_ON(!opts->subsys_mask && !opts->none);
ddbcc7e8
PM
1531
1532 ret = set_anon_super(sb, NULL);
1533 if (ret)
1534 return ret;
1535
c6d57f33
PM
1536 sb->s_fs_info = opts->new_root;
1537 opts->new_root->sb = sb;
ddbcc7e8
PM
1538
1539 sb->s_blocksize = PAGE_CACHE_SIZE;
1540 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
1541 sb->s_magic = CGROUP_SUPER_MAGIC;
1542 sb->s_op = &cgroup_ops;
1543
1544 return 0;
1545}
1546
1547static int cgroup_get_rootdir(struct super_block *sb)
1548{
0df6a63f
AV
1549 static const struct dentry_operations cgroup_dops = {
1550 .d_iput = cgroup_diput,
c72a04e3 1551 .d_delete = cgroup_delete,
0df6a63f
AV
1552 };
1553
ddbcc7e8
PM
1554 struct inode *inode =
1555 cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb);
ddbcc7e8
PM
1556
1557 if (!inode)
1558 return -ENOMEM;
1559
ddbcc7e8
PM
1560 inode->i_fop = &simple_dir_operations;
1561 inode->i_op = &cgroup_dir_inode_operations;
1562 /* directories start off with i_nlink == 2 (for "." entry) */
1563 inc_nlink(inode);
48fde701
AV
1564 sb->s_root = d_make_root(inode);
1565 if (!sb->s_root)
ddbcc7e8 1566 return -ENOMEM;
0df6a63f
AV
1567 /* for everything else we want ->d_op set */
1568 sb->s_d_op = &cgroup_dops;
ddbcc7e8
PM
1569 return 0;
1570}
1571
f7e83571 1572static struct dentry *cgroup_mount(struct file_system_type *fs_type,
ddbcc7e8 1573 int flags, const char *unused_dev_name,
f7e83571 1574 void *data)
ddbcc7e8
PM
1575{
1576 struct cgroup_sb_opts opts;
c6d57f33 1577 struct cgroupfs_root *root;
ddbcc7e8
PM
1578 int ret = 0;
1579 struct super_block *sb;
c6d57f33 1580 struct cgroupfs_root *new_root;
e25e2cbb 1581 struct inode *inode;
ddbcc7e8
PM
1582
1583 /* First find the desired set of subsystems */
aae8aab4 1584 mutex_lock(&cgroup_mutex);
ddbcc7e8 1585 ret = parse_cgroupfs_options(data, &opts);
aae8aab4 1586 mutex_unlock(&cgroup_mutex);
c6d57f33
PM
1587 if (ret)
1588 goto out_err;
ddbcc7e8 1589
c6d57f33
PM
1590 /*
1591 * Allocate a new cgroup root. We may not need it if we're
1592 * reusing an existing hierarchy.
1593 */
1594 new_root = cgroup_root_from_opts(&opts);
1595 if (IS_ERR(new_root)) {
1596 ret = PTR_ERR(new_root);
cf5d5941 1597 goto drop_modules;
81a6a5cd 1598 }
c6d57f33 1599 opts.new_root = new_root;
ddbcc7e8 1600
c6d57f33 1601 /* Locate an existing or new sb for this hierarchy */
9249e17f 1602 sb = sget(fs_type, cgroup_test_super, cgroup_set_super, 0, &opts);
ddbcc7e8 1603 if (IS_ERR(sb)) {
c6d57f33 1604 ret = PTR_ERR(sb);
fa3ca07e 1605 cgroup_free_root(opts.new_root);
cf5d5941 1606 goto drop_modules;
ddbcc7e8
PM
1607 }
1608
c6d57f33
PM
1609 root = sb->s_fs_info;
1610 BUG_ON(!root);
1611 if (root == opts.new_root) {
1612 /* We used the new root structure, so this is a new hierarchy */
69d0206c 1613 struct list_head tmp_links;
c12f65d4 1614 struct cgroup *root_cgrp = &root->top_cgroup;
c6d57f33 1615 struct cgroupfs_root *existing_root;
2ce9738b 1616 const struct cred *cred;
28fd5dfc 1617 int i;
5abb8855 1618 struct css_set *cset;
ddbcc7e8
PM
1619
1620 BUG_ON(sb->s_root != NULL);
1621
1622 ret = cgroup_get_rootdir(sb);
1623 if (ret)
1624 goto drop_new_super;
817929ec 1625 inode = sb->s_root->d_inode;
ddbcc7e8 1626
817929ec 1627 mutex_lock(&inode->i_mutex);
ddbcc7e8 1628 mutex_lock(&cgroup_mutex);
e25e2cbb 1629 mutex_lock(&cgroup_root_mutex);
ddbcc7e8 1630
e25e2cbb
TH
1631 /* Check for name clashes with existing mounts */
1632 ret = -EBUSY;
1633 if (strlen(root->name))
1634 for_each_active_root(existing_root)
1635 if (!strcmp(existing_root->name, root->name))
1636 goto unlock_drop;
c6d57f33 1637
817929ec
PM
1638 /*
1639 * We're accessing css_set_count without locking
1640 * css_set_lock here, but that's OK - it can only be
1641 * increased by someone holding cgroup_lock, and
1642 * that's us. The worst that can happen is that we
1643 * have some link structures left over
1644 */
69d0206c 1645 ret = allocate_cgrp_cset_links(css_set_count, &tmp_links);
e25e2cbb
TH
1646 if (ret)
1647 goto unlock_drop;
817929ec 1648
fc76df70
TH
1649 /* ID 0 is reserved for dummy root, 1 for unified hierarchy */
1650 ret = cgroup_init_root_id(root, 2, 0);
fa3ca07e
TH
1651 if (ret)
1652 goto unlock_drop;
1653
a8a648c4 1654 ret = rebind_subsystems(root, root->subsys_mask, 0);
ddbcc7e8 1655 if (ret == -EBUSY) {
69d0206c 1656 free_cgrp_cset_links(&tmp_links);
e25e2cbb 1657 goto unlock_drop;
ddbcc7e8 1658 }
cf5d5941
BB
1659 /*
1660 * There must be no failure case after here, since rebinding
1661 * takes care of subsystems' refcounts, which are explicitly
1662 * dropped in the failure exit path.
1663 */
ddbcc7e8
PM
1664
1665 /* EBUSY should be the only error here */
1666 BUG_ON(ret);
1667
9871bf95
TH
1668 list_add(&root->root_list, &cgroup_roots);
1669 cgroup_root_count++;
ddbcc7e8 1670
c12f65d4 1671 sb->s_root->d_fsdata = root_cgrp;
ddbcc7e8
PM
1672 root->top_cgroup.dentry = sb->s_root;
1673
817929ec
PM
1674 /* Link the top cgroup in this hierarchy into all
1675 * the css_set objects */
1676 write_lock(&css_set_lock);
5abb8855 1677 hash_for_each(css_set_table, i, cset, hlist)
69d0206c 1678 link_css_set(&tmp_links, cset, root_cgrp);
817929ec
PM
1679 write_unlock(&css_set_lock);
1680
69d0206c 1681 free_cgrp_cset_links(&tmp_links);
817929ec 1682
c12f65d4 1683 BUG_ON(!list_empty(&root_cgrp->children));
ddbcc7e8
PM
1684 BUG_ON(root->number_of_cgroups != 1);
1685
2ce9738b 1686 cred = override_creds(&init_cred);
628f7cd4
TH
1687 cgroup_addrm_files(root_cgrp, NULL, cgroup_base_files, true);
1688 cgroup_populate_dir(root_cgrp, root->subsys_mask);
2ce9738b 1689 revert_creds(cred);
e25e2cbb 1690 mutex_unlock(&cgroup_root_mutex);
ddbcc7e8 1691 mutex_unlock(&cgroup_mutex);
34f77a90 1692 mutex_unlock(&inode->i_mutex);
c6d57f33
PM
1693 } else {
1694 /*
1695 * We re-used an existing hierarchy - the new root (if
1696 * any) is not needed
1697 */
fa3ca07e 1698 cgroup_free_root(opts.new_root);
873fe09e 1699
c7ba8287 1700 if ((root->flags ^ opts.flags) & CGRP_ROOT_OPTION_MASK) {
2a0ff3fb
JL
1701 if ((root->flags | opts.flags) & CGRP_ROOT_SANE_BEHAVIOR) {
1702 pr_err("cgroup: sane_behavior: new mount options should match the existing superblock\n");
1703 ret = -EINVAL;
1704 goto drop_new_super;
1705 } else {
1706 pr_warning("cgroup: new mount options do not match the existing superblock, will be ignored\n");
1707 }
873fe09e
TH
1708 }
1709
cf5d5941 1710 /* no subsys rebinding, so refcounts don't change */
a1a71b45 1711 drop_parsed_module_refcounts(opts.subsys_mask);
ddbcc7e8
PM
1712 }
1713
c6d57f33
PM
1714 kfree(opts.release_agent);
1715 kfree(opts.name);
f7e83571 1716 return dget(sb->s_root);
ddbcc7e8 1717
e25e2cbb 1718 unlock_drop:
fa3ca07e 1719 cgroup_exit_root_id(root);
e25e2cbb
TH
1720 mutex_unlock(&cgroup_root_mutex);
1721 mutex_unlock(&cgroup_mutex);
1722 mutex_unlock(&inode->i_mutex);
ddbcc7e8 1723 drop_new_super:
6f5bbff9 1724 deactivate_locked_super(sb);
cf5d5941 1725 drop_modules:
a1a71b45 1726 drop_parsed_module_refcounts(opts.subsys_mask);
c6d57f33
PM
1727 out_err:
1728 kfree(opts.release_agent);
1729 kfree(opts.name);
f7e83571 1730 return ERR_PTR(ret);
ddbcc7e8
PM
1731}
1732
1733static void cgroup_kill_sb(struct super_block *sb) {
1734 struct cgroupfs_root *root = sb->s_fs_info;
bd89aabc 1735 struct cgroup *cgrp = &root->top_cgroup;
69d0206c 1736 struct cgrp_cset_link *link, *tmp_link;
ddbcc7e8
PM
1737 int ret;
1738
1739 BUG_ON(!root);
1740
1741 BUG_ON(root->number_of_cgroups != 1);
bd89aabc 1742 BUG_ON(!list_empty(&cgrp->children));
ddbcc7e8
PM
1743
1744 mutex_lock(&cgroup_mutex);
e25e2cbb 1745 mutex_lock(&cgroup_root_mutex);
ddbcc7e8
PM
1746
1747 /* Rebind all subsystems back to the default hierarchy */
1672d040
TH
1748 if (root->flags & CGRP_ROOT_SUBSYS_BOUND) {
1749 ret = rebind_subsystems(root, 0, root->subsys_mask);
1750 /* Shouldn't be able to fail ... */
1751 BUG_ON(ret);
1752 }
ddbcc7e8 1753
817929ec 1754 /*
69d0206c 1755 * Release all the links from cset_links to this hierarchy's
817929ec
PM
1756 * root cgroup
1757 */
1758 write_lock(&css_set_lock);
71cbb949 1759
69d0206c
TH
1760 list_for_each_entry_safe(link, tmp_link, &cgrp->cset_links, cset_link) {
1761 list_del(&link->cset_link);
1762 list_del(&link->cgrp_link);
817929ec
PM
1763 kfree(link);
1764 }
1765 write_unlock(&css_set_lock);
1766
839ec545
PM
1767 if (!list_empty(&root->root_list)) {
1768 list_del(&root->root_list);
9871bf95 1769 cgroup_root_count--;
839ec545 1770 }
e5f6a860 1771
fa3ca07e
TH
1772 cgroup_exit_root_id(root);
1773
e25e2cbb 1774 mutex_unlock(&cgroup_root_mutex);
ddbcc7e8
PM
1775 mutex_unlock(&cgroup_mutex);
1776
03b1cde6
AR
1777 simple_xattrs_free(&cgrp->xattrs);
1778
ddbcc7e8 1779 kill_litter_super(sb);
fa3ca07e 1780 cgroup_free_root(root);
ddbcc7e8
PM
1781}
1782
1783static struct file_system_type cgroup_fs_type = {
1784 .name = "cgroup",
f7e83571 1785 .mount = cgroup_mount,
ddbcc7e8
PM
1786 .kill_sb = cgroup_kill_sb,
1787};
1788
676db4af
GK
1789static struct kobject *cgroup_kobj;
1790
a043e3b2
LZ
1791/**
1792 * cgroup_path - generate the path of a cgroup
1793 * @cgrp: the cgroup in question
1794 * @buf: the buffer to write the path into
1795 * @buflen: the length of the buffer
1796 *
65dff759
LZ
1797 * Writes path of cgroup into buf. Returns 0 on success, -errno on error.
1798 *
1799 * We can't generate cgroup path using dentry->d_name, as accessing
1800 * dentry->name must be protected by irq-unsafe dentry->d_lock or parent
1801 * inode's i_mutex, while on the other hand cgroup_path() can be called
1802 * with some irq-safe spinlocks held.
ddbcc7e8 1803 */
bd89aabc 1804int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
ddbcc7e8 1805{
65dff759 1806 int ret = -ENAMETOOLONG;
ddbcc7e8 1807 char *start;
febfcef6 1808
da1f296f
TH
1809 if (!cgrp->parent) {
1810 if (strlcpy(buf, "/", buflen) >= buflen)
1811 return -ENAMETOOLONG;
ddbcc7e8
PM
1812 return 0;
1813 }
1814
316eb661 1815 start = buf + buflen - 1;
316eb661 1816 *start = '\0';
9a9686b6 1817
65dff759 1818 rcu_read_lock();
da1f296f 1819 do {
65dff759
LZ
1820 const char *name = cgroup_name(cgrp);
1821 int len;
1822
1823 len = strlen(name);
ddbcc7e8 1824 if ((start -= len) < buf)
65dff759
LZ
1825 goto out;
1826 memcpy(start, name, len);
9a9686b6 1827
ddbcc7e8 1828 if (--start < buf)
65dff759 1829 goto out;
ddbcc7e8 1830 *start = '/';
65dff759
LZ
1831
1832 cgrp = cgrp->parent;
da1f296f 1833 } while (cgrp->parent);
65dff759 1834 ret = 0;
ddbcc7e8 1835 memmove(buf, start, buf + buflen - start);
65dff759
LZ
1836out:
1837 rcu_read_unlock();
1838 return ret;
ddbcc7e8 1839}
67523c48 1840EXPORT_SYMBOL_GPL(cgroup_path);
ddbcc7e8 1841
857a2beb
TH
1842/**
1843 * task_cgroup_path_from_hierarchy - cgroup path of a task on a hierarchy
1844 * @task: target task
1845 * @hierarchy_id: the hierarchy to look up @task's cgroup from
1846 * @buf: the buffer to write the path into
1847 * @buflen: the length of the buffer
1848 *
1849 * Determine @task's cgroup on the hierarchy specified by @hierarchy_id and
1850 * copy its path into @buf. This function grabs cgroup_mutex and shouldn't
1851 * be used inside locks used by cgroup controller callbacks.
1852 */
1853int task_cgroup_path_from_hierarchy(struct task_struct *task, int hierarchy_id,
1854 char *buf, size_t buflen)
1855{
1856 struct cgroupfs_root *root;
1857 struct cgroup *cgrp = NULL;
1858 int ret = -ENOENT;
1859
1860 mutex_lock(&cgroup_mutex);
1861
1862 root = idr_find(&cgroup_hierarchy_idr, hierarchy_id);
1863 if (root) {
1864 cgrp = task_cgroup_from_root(task, root);
1865 ret = cgroup_path(cgrp, buf, buflen);
1866 }
1867
1868 mutex_unlock(&cgroup_mutex);
1869
1870 return ret;
1871}
1872EXPORT_SYMBOL_GPL(task_cgroup_path_from_hierarchy);
1873
2f7ee569
TH
1874/*
1875 * Control Group taskset
1876 */
134d3373
TH
1877struct task_and_cgroup {
1878 struct task_struct *task;
1879 struct cgroup *cgrp;
61d1d219 1880 struct css_set *cg;
134d3373
TH
1881};
1882
2f7ee569
TH
1883struct cgroup_taskset {
1884 struct task_and_cgroup single;
1885 struct flex_array *tc_array;
1886 int tc_array_len;
1887 int idx;
1888 struct cgroup *cur_cgrp;
1889};
1890
1891/**
1892 * cgroup_taskset_first - reset taskset and return the first task
1893 * @tset: taskset of interest
1894 *
1895 * @tset iteration is initialized and the first task is returned.
1896 */
1897struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
1898{
1899 if (tset->tc_array) {
1900 tset->idx = 0;
1901 return cgroup_taskset_next(tset);
1902 } else {
1903 tset->cur_cgrp = tset->single.cgrp;
1904 return tset->single.task;
1905 }
1906}
1907EXPORT_SYMBOL_GPL(cgroup_taskset_first);
1908
1909/**
1910 * cgroup_taskset_next - iterate to the next task in taskset
1911 * @tset: taskset of interest
1912 *
1913 * Return the next task in @tset. Iteration must have been initialized
1914 * with cgroup_taskset_first().
1915 */
1916struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
1917{
1918 struct task_and_cgroup *tc;
1919
1920 if (!tset->tc_array || tset->idx >= tset->tc_array_len)
1921 return NULL;
1922
1923 tc = flex_array_get(tset->tc_array, tset->idx++);
1924 tset->cur_cgrp = tc->cgrp;
1925 return tc->task;
1926}
1927EXPORT_SYMBOL_GPL(cgroup_taskset_next);
1928
1929/**
1930 * cgroup_taskset_cur_cgroup - return the matching cgroup for the current task
1931 * @tset: taskset of interest
1932 *
1933 * Return the cgroup for the current (last returned) task of @tset. This
1934 * function must be preceded by either cgroup_taskset_first() or
1935 * cgroup_taskset_next().
1936 */
1937struct cgroup *cgroup_taskset_cur_cgroup(struct cgroup_taskset *tset)
1938{
1939 return tset->cur_cgrp;
1940}
1941EXPORT_SYMBOL_GPL(cgroup_taskset_cur_cgroup);
1942
1943/**
1944 * cgroup_taskset_size - return the number of tasks in taskset
1945 * @tset: taskset of interest
1946 */
1947int cgroup_taskset_size(struct cgroup_taskset *tset)
1948{
1949 return tset->tc_array ? tset->tc_array_len : 1;
1950}
1951EXPORT_SYMBOL_GPL(cgroup_taskset_size);
1952
1953
74a1166d
BB
1954/*
1955 * cgroup_task_migrate - move a task from one cgroup to another.
1956 *
d0b2fdd2 1957 * Must be called with cgroup_mutex and threadgroup locked.
74a1166d 1958 */
5abb8855
TH
1959static void cgroup_task_migrate(struct cgroup *old_cgrp,
1960 struct task_struct *tsk,
1961 struct css_set *new_cset)
74a1166d 1962{
5abb8855 1963 struct css_set *old_cset;
74a1166d
BB
1964
1965 /*
026085ef
MSB
1966 * We are synchronized through threadgroup_lock() against PF_EXITING
1967 * setting such that we can't race against cgroup_exit() changing the
1968 * css_set to init_css_set and dropping the old one.
74a1166d 1969 */
c84cdf75 1970 WARN_ON_ONCE(tsk->flags & PF_EXITING);
a8ad805c 1971 old_cset = task_css_set(tsk);
74a1166d 1972
74a1166d 1973 task_lock(tsk);
5abb8855 1974 rcu_assign_pointer(tsk->cgroups, new_cset);
74a1166d
BB
1975 task_unlock(tsk);
1976
1977 /* Update the css_set linked lists if we're using them */
1978 write_lock(&css_set_lock);
1979 if (!list_empty(&tsk->cg_list))
5abb8855 1980 list_move(&tsk->cg_list, &new_cset->tasks);
74a1166d
BB
1981 write_unlock(&css_set_lock);
1982
1983 /*
5abb8855
TH
1984 * We just gained a reference on old_cset by taking it from the
1985 * task. As trading it for new_cset is protected by cgroup_mutex,
1986 * we're safe to drop it here; it will be freed under RCU.
74a1166d 1987 */
5abb8855
TH
1988 set_bit(CGRP_RELEASABLE, &old_cgrp->flags);
1989 put_css_set(old_cset);
74a1166d
BB
1990}
1991
a043e3b2 1992/**
081aa458 1993 * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup
74a1166d 1994 * @cgrp: the cgroup to attach to
081aa458
LZ
1995 * @tsk: the task or the leader of the threadgroup to be attached
1996 * @threadgroup: attach the whole threadgroup?
74a1166d 1997 *
257058ae 1998 * Call holding cgroup_mutex and the group_rwsem of the leader. Will take
081aa458 1999 * task_lock of @tsk or each thread in the threadgroup individually in turn.
74a1166d 2000 */
47cfcd09
TH
2001static int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk,
2002 bool threadgroup)
74a1166d
BB
2003{
2004 int retval, i, group_size;
2005 struct cgroup_subsys *ss, *failed_ss = NULL;
74a1166d
BB
2006 struct cgroupfs_root *root = cgrp->root;
2007 /* threadgroup list cursor and array */
081aa458 2008 struct task_struct *leader = tsk;
134d3373 2009 struct task_and_cgroup *tc;
d846687d 2010 struct flex_array *group;
2f7ee569 2011 struct cgroup_taskset tset = { };
74a1166d
BB
2012
2013 /*
2014 * step 0: in order to do expensive, possibly blocking operations for
2015 * every thread, we cannot iterate the thread group list, since it needs
2016 * rcu or tasklist locked. instead, build an array of all threads in the
257058ae
TH
2017 * group - group_rwsem prevents new threads from appearing, and if
2018 * threads exit, this will just be an over-estimate.
74a1166d 2019 */
081aa458
LZ
2020 if (threadgroup)
2021 group_size = get_nr_threads(tsk);
2022 else
2023 group_size = 1;
d846687d 2024 /* flex_array supports very large thread-groups better than kmalloc. */
134d3373 2025 group = flex_array_alloc(sizeof(*tc), group_size, GFP_KERNEL);
74a1166d
BB
2026 if (!group)
2027 return -ENOMEM;
d846687d 2028 /* pre-allocate to guarantee space while iterating in rcu read-side. */
3ac1707a 2029 retval = flex_array_prealloc(group, 0, group_size, GFP_KERNEL);
d846687d
BB
2030 if (retval)
2031 goto out_free_group_list;
74a1166d 2032
74a1166d 2033 i = 0;
fb5d2b4c
MSB
2034 /*
2035 * Prevent freeing of tasks while we take a snapshot. Tasks that are
2036 * already PF_EXITING could be freed from underneath us unless we
2037 * take an rcu_read_lock.
2038 */
2039 rcu_read_lock();
74a1166d 2040 do {
134d3373
TH
2041 struct task_and_cgroup ent;
2042
cd3d0952
TH
2043 /* @tsk either already exited or can't exit until the end */
2044 if (tsk->flags & PF_EXITING)
2045 continue;
2046
74a1166d
BB
2047 /* as per above, nr_threads may decrease, but not increase. */
2048 BUG_ON(i >= group_size);
134d3373
TH
2049 ent.task = tsk;
2050 ent.cgrp = task_cgroup_from_root(tsk, root);
892a2b90
MSB
2051 /* nothing to do if this task is already in the cgroup */
2052 if (ent.cgrp == cgrp)
2053 continue;
61d1d219
MSB
2054 /*
2055 * saying GFP_ATOMIC has no effect here because we did prealloc
2056 * earlier, but it's good form to communicate our expectations.
2057 */
134d3373 2058 retval = flex_array_put(group, i, &ent, GFP_ATOMIC);
d846687d 2059 BUG_ON(retval != 0);
74a1166d 2060 i++;
081aa458
LZ
2061
2062 if (!threadgroup)
2063 break;
74a1166d 2064 } while_each_thread(leader, tsk);
fb5d2b4c 2065 rcu_read_unlock();
74a1166d
BB
2066 /* remember the number of threads in the array for later. */
2067 group_size = i;
2f7ee569
TH
2068 tset.tc_array = group;
2069 tset.tc_array_len = group_size;
74a1166d 2070
134d3373
TH
2071 /* methods shouldn't be called if no task is actually migrating */
2072 retval = 0;
892a2b90 2073 if (!group_size)
b07ef774 2074 goto out_free_group_list;
134d3373 2075
74a1166d
BB
2076 /*
2077 * step 1: check that we can legitimately attach to the cgroup.
2078 */
5549c497 2079 for_each_root_subsys(root, ss) {
74a1166d 2080 if (ss->can_attach) {
761b3ef5 2081 retval = ss->can_attach(cgrp, &tset);
74a1166d
BB
2082 if (retval) {
2083 failed_ss = ss;
2084 goto out_cancel_attach;
2085 }
2086 }
74a1166d
BB
2087 }
2088
2089 /*
2090 * step 2: make sure css_sets exist for all threads to be migrated.
2091 * we use find_css_set, which allocates a new one if necessary.
2092 */
74a1166d 2093 for (i = 0; i < group_size; i++) {
a8ad805c
TH
2094 struct css_set *old_cset;
2095
134d3373 2096 tc = flex_array_get(group, i);
a8ad805c
TH
2097 old_cset = task_css_set(tc->task);
2098 tc->cg = find_css_set(old_cset, cgrp);
61d1d219
MSB
2099 if (!tc->cg) {
2100 retval = -ENOMEM;
2101 goto out_put_css_set_refs;
74a1166d
BB
2102 }
2103 }
2104
2105 /*
494c167c
TH
2106 * step 3: now that we're guaranteed success wrt the css_sets,
2107 * proceed to move all tasks to the new cgroup. There are no
2108 * failure cases after here, so this is the commit point.
74a1166d 2109 */
74a1166d 2110 for (i = 0; i < group_size; i++) {
134d3373 2111 tc = flex_array_get(group, i);
1e2ccd1c 2112 cgroup_task_migrate(tc->cgrp, tc->task, tc->cg);
74a1166d
BB
2113 }
2114 /* nothing is sensitive to fork() after this point. */
2115
2116 /*
494c167c 2117 * step 4: do subsystem attach callbacks.
74a1166d 2118 */
5549c497 2119 for_each_root_subsys(root, ss) {
74a1166d 2120 if (ss->attach)
761b3ef5 2121 ss->attach(cgrp, &tset);
74a1166d
BB
2122 }
2123
2124 /*
2125 * step 5: success! and cleanup
2126 */
74a1166d 2127 retval = 0;
61d1d219
MSB
2128out_put_css_set_refs:
2129 if (retval) {
2130 for (i = 0; i < group_size; i++) {
2131 tc = flex_array_get(group, i);
2132 if (!tc->cg)
2133 break;
2134 put_css_set(tc->cg);
2135 }
74a1166d
BB
2136 }
2137out_cancel_attach:
74a1166d 2138 if (retval) {
5549c497 2139 for_each_root_subsys(root, ss) {
494c167c 2140 if (ss == failed_ss)
74a1166d 2141 break;
74a1166d 2142 if (ss->cancel_attach)
761b3ef5 2143 ss->cancel_attach(cgrp, &tset);
74a1166d
BB
2144 }
2145 }
74a1166d 2146out_free_group_list:
d846687d 2147 flex_array_free(group);
74a1166d
BB
2148 return retval;
2149}
2150
2151/*
2152 * Find the task_struct of the task to attach by vpid and pass it along to the
cd3d0952
TH
2153 * function to attach either it or all tasks in its threadgroup. Will lock
2154 * cgroup_mutex and threadgroup; may take task_lock of task.
bbcb81d0 2155 */
74a1166d 2156static int attach_task_by_pid(struct cgroup *cgrp, u64 pid, bool threadgroup)
bbcb81d0 2157{
bbcb81d0 2158 struct task_struct *tsk;
c69e8d9c 2159 const struct cred *cred = current_cred(), *tcred;
bbcb81d0
PM
2160 int ret;
2161
74a1166d
BB
2162 if (!cgroup_lock_live_group(cgrp))
2163 return -ENODEV;
2164
b78949eb
MSB
2165retry_find_task:
2166 rcu_read_lock();
bbcb81d0 2167 if (pid) {
73507f33 2168 tsk = find_task_by_vpid(pid);
74a1166d
BB
2169 if (!tsk) {
2170 rcu_read_unlock();
b78949eb
MSB
2171 ret= -ESRCH;
2172 goto out_unlock_cgroup;
bbcb81d0 2173 }
74a1166d
BB
2174 /*
2175 * even if we're attaching all tasks in the thread group, we
2176 * only need to check permissions on one of them.
2177 */
c69e8d9c 2178 tcred = __task_cred(tsk);
14a590c3
EB
2179 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
2180 !uid_eq(cred->euid, tcred->uid) &&
2181 !uid_eq(cred->euid, tcred->suid)) {
c69e8d9c 2182 rcu_read_unlock();
b78949eb
MSB
2183 ret = -EACCES;
2184 goto out_unlock_cgroup;
bbcb81d0 2185 }
b78949eb
MSB
2186 } else
2187 tsk = current;
cd3d0952
TH
2188
2189 if (threadgroup)
b78949eb 2190 tsk = tsk->group_leader;
c4c27fbd
MG
2191
2192 /*
14a40ffc 2193 * Workqueue threads may acquire PF_NO_SETAFFINITY and become
c4c27fbd
MG
2194 * trapped in a cpuset, or RT worker may be born in a cgroup
2195 * with no rt_runtime allocated. Just say no.
2196 */
14a40ffc 2197 if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) {
c4c27fbd
MG
2198 ret = -EINVAL;
2199 rcu_read_unlock();
2200 goto out_unlock_cgroup;
2201 }
2202
b78949eb
MSB
2203 get_task_struct(tsk);
2204 rcu_read_unlock();
2205
2206 threadgroup_lock(tsk);
2207 if (threadgroup) {
2208 if (!thread_group_leader(tsk)) {
2209 /*
2210 * a race with de_thread from another thread's exec()
2211 * may strip us of our leadership, if this happens,
2212 * there is no choice but to throw this task away and
2213 * try again; this is
2214 * "double-double-toil-and-trouble-check locking".
2215 */
2216 threadgroup_unlock(tsk);
2217 put_task_struct(tsk);
2218 goto retry_find_task;
2219 }
081aa458
LZ
2220 }
2221
2222 ret = cgroup_attach_task(cgrp, tsk, threadgroup);
2223
cd3d0952
TH
2224 threadgroup_unlock(tsk);
2225
bbcb81d0 2226 put_task_struct(tsk);
b78949eb 2227out_unlock_cgroup:
47cfcd09 2228 mutex_unlock(&cgroup_mutex);
bbcb81d0
PM
2229 return ret;
2230}
2231
7ae1bad9
TH
2232/**
2233 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
2234 * @from: attach to all cgroups of a given task
2235 * @tsk: the task to be attached
2236 */
2237int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
2238{
2239 struct cgroupfs_root *root;
2240 int retval = 0;
2241
47cfcd09 2242 mutex_lock(&cgroup_mutex);
7ae1bad9
TH
2243 for_each_active_root(root) {
2244 struct cgroup *from_cg = task_cgroup_from_root(from, root);
2245
2246 retval = cgroup_attach_task(from_cg, tsk, false);
2247 if (retval)
2248 break;
2249 }
47cfcd09 2250 mutex_unlock(&cgroup_mutex);
7ae1bad9
TH
2251
2252 return retval;
2253}
2254EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
2255
af351026 2256static int cgroup_tasks_write(struct cgroup *cgrp, struct cftype *cft, u64 pid)
74a1166d
BB
2257{
2258 return attach_task_by_pid(cgrp, pid, false);
2259}
2260
2261static int cgroup_procs_write(struct cgroup *cgrp, struct cftype *cft, u64 tgid)
af351026 2262{
b78949eb 2263 return attach_task_by_pid(cgrp, tgid, true);
af351026
PM
2264}
2265
e788e066
PM
2266static int cgroup_release_agent_write(struct cgroup *cgrp, struct cftype *cft,
2267 const char *buffer)
2268{
2269 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
f4a2589f
EK
2270 if (strlen(buffer) >= PATH_MAX)
2271 return -EINVAL;
e788e066
PM
2272 if (!cgroup_lock_live_group(cgrp))
2273 return -ENODEV;
e25e2cbb 2274 mutex_lock(&cgroup_root_mutex);
e788e066 2275 strcpy(cgrp->root->release_agent_path, buffer);
e25e2cbb 2276 mutex_unlock(&cgroup_root_mutex);
47cfcd09 2277 mutex_unlock(&cgroup_mutex);
e788e066
PM
2278 return 0;
2279}
2280
2281static int cgroup_release_agent_show(struct cgroup *cgrp, struct cftype *cft,
2282 struct seq_file *seq)
2283{
2284 if (!cgroup_lock_live_group(cgrp))
2285 return -ENODEV;
2286 seq_puts(seq, cgrp->root->release_agent_path);
2287 seq_putc(seq, '\n');
47cfcd09 2288 mutex_unlock(&cgroup_mutex);
e788e066
PM
2289 return 0;
2290}
2291
873fe09e
TH
2292static int cgroup_sane_behavior_show(struct cgroup *cgrp, struct cftype *cft,
2293 struct seq_file *seq)
2294{
2295 seq_printf(seq, "%d\n", cgroup_sane_behavior(cgrp));
e788e066
PM
2296 return 0;
2297}
2298
84eea842
PM
2299/* A buffer size big enough for numbers or short strings */
2300#define CGROUP_LOCAL_BUFFER_SIZE 64
2301
e73d2c61 2302static ssize_t cgroup_write_X64(struct cgroup *cgrp, struct cftype *cft,
f4c753b7
PM
2303 struct file *file,
2304 const char __user *userbuf,
2305 size_t nbytes, loff_t *unused_ppos)
355e0c48 2306{
84eea842 2307 char buffer[CGROUP_LOCAL_BUFFER_SIZE];
355e0c48 2308 int retval = 0;
355e0c48
PM
2309 char *end;
2310
2311 if (!nbytes)
2312 return -EINVAL;
2313 if (nbytes >= sizeof(buffer))
2314 return -E2BIG;
2315 if (copy_from_user(buffer, userbuf, nbytes))
2316 return -EFAULT;
2317
2318 buffer[nbytes] = 0; /* nul-terminate */
e73d2c61 2319 if (cft->write_u64) {
478988d3 2320 u64 val = simple_strtoull(strstrip(buffer), &end, 0);
e73d2c61
PM
2321 if (*end)
2322 return -EINVAL;
2323 retval = cft->write_u64(cgrp, cft, val);
2324 } else {
478988d3 2325 s64 val = simple_strtoll(strstrip(buffer), &end, 0);
e73d2c61
PM
2326 if (*end)
2327 return -EINVAL;
2328 retval = cft->write_s64(cgrp, cft, val);
2329 }
355e0c48
PM
2330 if (!retval)
2331 retval = nbytes;
2332 return retval;
2333}
2334
db3b1497
PM
2335static ssize_t cgroup_write_string(struct cgroup *cgrp, struct cftype *cft,
2336 struct file *file,
2337 const char __user *userbuf,
2338 size_t nbytes, loff_t *unused_ppos)
2339{
84eea842 2340 char local_buffer[CGROUP_LOCAL_BUFFER_SIZE];
db3b1497
PM
2341 int retval = 0;
2342 size_t max_bytes = cft->max_write_len;
2343 char *buffer = local_buffer;
2344
2345 if (!max_bytes)
2346 max_bytes = sizeof(local_buffer) - 1;
2347 if (nbytes >= max_bytes)
2348 return -E2BIG;
2349 /* Allocate a dynamic buffer if we need one */
2350 if (nbytes >= sizeof(local_buffer)) {
2351 buffer = kmalloc(nbytes + 1, GFP_KERNEL);
2352 if (buffer == NULL)
2353 return -ENOMEM;
2354 }
5a3eb9f6
LZ
2355 if (nbytes && copy_from_user(buffer, userbuf, nbytes)) {
2356 retval = -EFAULT;
2357 goto out;
2358 }
db3b1497
PM
2359
2360 buffer[nbytes] = 0; /* nul-terminate */
478988d3 2361 retval = cft->write_string(cgrp, cft, strstrip(buffer));
db3b1497
PM
2362 if (!retval)
2363 retval = nbytes;
5a3eb9f6 2364out:
db3b1497
PM
2365 if (buffer != local_buffer)
2366 kfree(buffer);
2367 return retval;
2368}
2369
ddbcc7e8
PM
2370static ssize_t cgroup_file_write(struct file *file, const char __user *buf,
2371 size_t nbytes, loff_t *ppos)
2372{
2373 struct cftype *cft = __d_cft(file->f_dentry);
bd89aabc 2374 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
ddbcc7e8 2375
54766d4a 2376 if (cgroup_is_dead(cgrp))
ddbcc7e8 2377 return -ENODEV;
355e0c48 2378 if (cft->write)
bd89aabc 2379 return cft->write(cgrp, cft, file, buf, nbytes, ppos);
e73d2c61
PM
2380 if (cft->write_u64 || cft->write_s64)
2381 return cgroup_write_X64(cgrp, cft, file, buf, nbytes, ppos);
db3b1497
PM
2382 if (cft->write_string)
2383 return cgroup_write_string(cgrp, cft, file, buf, nbytes, ppos);
d447ea2f
PE
2384 if (cft->trigger) {
2385 int ret = cft->trigger(cgrp, (unsigned int)cft->private);
2386 return ret ? ret : nbytes;
2387 }
355e0c48 2388 return -EINVAL;
ddbcc7e8
PM
2389}
2390
f4c753b7
PM
2391static ssize_t cgroup_read_u64(struct cgroup *cgrp, struct cftype *cft,
2392 struct file *file,
2393 char __user *buf, size_t nbytes,
2394 loff_t *ppos)
ddbcc7e8 2395{
84eea842 2396 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
f4c753b7 2397 u64 val = cft->read_u64(cgrp, cft);
ddbcc7e8
PM
2398 int len = sprintf(tmp, "%llu\n", (unsigned long long) val);
2399
2400 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2401}
2402
e73d2c61
PM
2403static ssize_t cgroup_read_s64(struct cgroup *cgrp, struct cftype *cft,
2404 struct file *file,
2405 char __user *buf, size_t nbytes,
2406 loff_t *ppos)
2407{
84eea842 2408 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
e73d2c61
PM
2409 s64 val = cft->read_s64(cgrp, cft);
2410 int len = sprintf(tmp, "%lld\n", (long long) val);
2411
2412 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2413}
2414
ddbcc7e8
PM
2415static ssize_t cgroup_file_read(struct file *file, char __user *buf,
2416 size_t nbytes, loff_t *ppos)
2417{
2418 struct cftype *cft = __d_cft(file->f_dentry);
bd89aabc 2419 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
ddbcc7e8 2420
54766d4a 2421 if (cgroup_is_dead(cgrp))
ddbcc7e8
PM
2422 return -ENODEV;
2423
2424 if (cft->read)
bd89aabc 2425 return cft->read(cgrp, cft, file, buf, nbytes, ppos);
f4c753b7
PM
2426 if (cft->read_u64)
2427 return cgroup_read_u64(cgrp, cft, file, buf, nbytes, ppos);
e73d2c61
PM
2428 if (cft->read_s64)
2429 return cgroup_read_s64(cgrp, cft, file, buf, nbytes, ppos);
ddbcc7e8
PM
2430 return -EINVAL;
2431}
2432
91796569
PM
2433/*
2434 * seqfile ops/methods for returning structured data. Currently just
2435 * supports string->u64 maps, but can be extended in future.
2436 */
2437
2438struct cgroup_seqfile_state {
2439 struct cftype *cft;
2440 struct cgroup *cgroup;
2441};
2442
2443static int cgroup_map_add(struct cgroup_map_cb *cb, const char *key, u64 value)
2444{
2445 struct seq_file *sf = cb->state;
2446 return seq_printf(sf, "%s %llu\n", key, (unsigned long long)value);
2447}
2448
2449static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2450{
2451 struct cgroup_seqfile_state *state = m->private;
2452 struct cftype *cft = state->cft;
29486df3
SH
2453 if (cft->read_map) {
2454 struct cgroup_map_cb cb = {
2455 .fill = cgroup_map_add,
2456 .state = m,
2457 };
2458 return cft->read_map(state->cgroup, cft, &cb);
2459 }
2460 return cft->read_seq_string(state->cgroup, cft, m);
91796569
PM
2461}
2462
96930a63 2463static int cgroup_seqfile_release(struct inode *inode, struct file *file)
91796569
PM
2464{
2465 struct seq_file *seq = file->private_data;
2466 kfree(seq->private);
2467 return single_release(inode, file);
2468}
2469
828c0950 2470static const struct file_operations cgroup_seqfile_operations = {
91796569 2471 .read = seq_read,
e788e066 2472 .write = cgroup_file_write,
91796569
PM
2473 .llseek = seq_lseek,
2474 .release = cgroup_seqfile_release,
2475};
2476
ddbcc7e8
PM
2477static int cgroup_file_open(struct inode *inode, struct file *file)
2478{
2479 int err;
2480 struct cftype *cft;
2481
2482 err = generic_file_open(inode, file);
2483 if (err)
2484 return err;
ddbcc7e8 2485 cft = __d_cft(file->f_dentry);
75139b82 2486
29486df3 2487 if (cft->read_map || cft->read_seq_string) {
f4f4be2b
TH
2488 struct cgroup_seqfile_state *state;
2489
2490 state = kzalloc(sizeof(*state), GFP_USER);
91796569
PM
2491 if (!state)
2492 return -ENOMEM;
f4f4be2b 2493
91796569
PM
2494 state->cft = cft;
2495 state->cgroup = __d_cgrp(file->f_dentry->d_parent);
2496 file->f_op = &cgroup_seqfile_operations;
2497 err = single_open(file, cgroup_seqfile_show, state);
2498 if (err < 0)
2499 kfree(state);
2500 } else if (cft->open)
ddbcc7e8
PM
2501 err = cft->open(inode, file);
2502 else
2503 err = 0;
2504
2505 return err;
2506}
2507
2508static int cgroup_file_release(struct inode *inode, struct file *file)
2509{
2510 struct cftype *cft = __d_cft(file->f_dentry);
2511 if (cft->release)
2512 return cft->release(inode, file);
2513 return 0;
2514}
2515
2516/*
2517 * cgroup_rename - Only allow simple rename of directories in place.
2518 */
2519static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry,
2520 struct inode *new_dir, struct dentry *new_dentry)
2521{
65dff759
LZ
2522 int ret;
2523 struct cgroup_name *name, *old_name;
2524 struct cgroup *cgrp;
2525
2526 /*
2527 * It's convinient to use parent dir's i_mutex to protected
2528 * cgrp->name.
2529 */
2530 lockdep_assert_held(&old_dir->i_mutex);
2531
ddbcc7e8
PM
2532 if (!S_ISDIR(old_dentry->d_inode->i_mode))
2533 return -ENOTDIR;
2534 if (new_dentry->d_inode)
2535 return -EEXIST;
2536 if (old_dir != new_dir)
2537 return -EIO;
65dff759
LZ
2538
2539 cgrp = __d_cgrp(old_dentry);
2540
6db8e85c
TH
2541 /*
2542 * This isn't a proper migration and its usefulness is very
2543 * limited. Disallow if sane_behavior.
2544 */
2545 if (cgroup_sane_behavior(cgrp))
2546 return -EPERM;
2547
65dff759
LZ
2548 name = cgroup_alloc_name(new_dentry);
2549 if (!name)
2550 return -ENOMEM;
2551
2552 ret = simple_rename(old_dir, old_dentry, new_dir, new_dentry);
2553 if (ret) {
2554 kfree(name);
2555 return ret;
2556 }
2557
a4ea1cc9 2558 old_name = rcu_dereference_protected(cgrp->name, true);
65dff759
LZ
2559 rcu_assign_pointer(cgrp->name, name);
2560
2561 kfree_rcu(old_name, rcu_head);
2562 return 0;
ddbcc7e8
PM
2563}
2564
03b1cde6
AR
2565static struct simple_xattrs *__d_xattrs(struct dentry *dentry)
2566{
2567 if (S_ISDIR(dentry->d_inode->i_mode))
2568 return &__d_cgrp(dentry)->xattrs;
2569 else
712317ad 2570 return &__d_cfe(dentry)->xattrs;
03b1cde6
AR
2571}
2572
2573static inline int xattr_enabled(struct dentry *dentry)
2574{
2575 struct cgroupfs_root *root = dentry->d_sb->s_fs_info;
93438629 2576 return root->flags & CGRP_ROOT_XATTR;
03b1cde6
AR
2577}
2578
2579static bool is_valid_xattr(const char *name)
2580{
2581 if (!strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN) ||
2582 !strncmp(name, XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN))
2583 return true;
2584 return false;
2585}
2586
2587static int cgroup_setxattr(struct dentry *dentry, const char *name,
2588 const void *val, size_t size, int flags)
2589{
2590 if (!xattr_enabled(dentry))
2591 return -EOPNOTSUPP;
2592 if (!is_valid_xattr(name))
2593 return -EINVAL;
2594 return simple_xattr_set(__d_xattrs(dentry), name, val, size, flags);
2595}
2596
2597static int cgroup_removexattr(struct dentry *dentry, const char *name)
2598{
2599 if (!xattr_enabled(dentry))
2600 return -EOPNOTSUPP;
2601 if (!is_valid_xattr(name))
2602 return -EINVAL;
2603 return simple_xattr_remove(__d_xattrs(dentry), name);
2604}
2605
2606static ssize_t cgroup_getxattr(struct dentry *dentry, const char *name,
2607 void *buf, size_t size)
2608{
2609 if (!xattr_enabled(dentry))
2610 return -EOPNOTSUPP;
2611 if (!is_valid_xattr(name))
2612 return -EINVAL;
2613 return simple_xattr_get(__d_xattrs(dentry), name, buf, size);
2614}
2615
2616static ssize_t cgroup_listxattr(struct dentry *dentry, char *buf, size_t size)
2617{
2618 if (!xattr_enabled(dentry))
2619 return -EOPNOTSUPP;
2620 return simple_xattr_list(__d_xattrs(dentry), buf, size);
2621}
2622
828c0950 2623static const struct file_operations cgroup_file_operations = {
ddbcc7e8
PM
2624 .read = cgroup_file_read,
2625 .write = cgroup_file_write,
2626 .llseek = generic_file_llseek,
2627 .open = cgroup_file_open,
2628 .release = cgroup_file_release,
2629};
2630
03b1cde6
AR
2631static const struct inode_operations cgroup_file_inode_operations = {
2632 .setxattr = cgroup_setxattr,
2633 .getxattr = cgroup_getxattr,
2634 .listxattr = cgroup_listxattr,
2635 .removexattr = cgroup_removexattr,
2636};
2637
6e1d5dcc 2638static const struct inode_operations cgroup_dir_inode_operations = {
c72a04e3 2639 .lookup = cgroup_lookup,
ddbcc7e8
PM
2640 .mkdir = cgroup_mkdir,
2641 .rmdir = cgroup_rmdir,
2642 .rename = cgroup_rename,
03b1cde6
AR
2643 .setxattr = cgroup_setxattr,
2644 .getxattr = cgroup_getxattr,
2645 .listxattr = cgroup_listxattr,
2646 .removexattr = cgroup_removexattr,
ddbcc7e8
PM
2647};
2648
00cd8dd3 2649static struct dentry *cgroup_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
c72a04e3
AV
2650{
2651 if (dentry->d_name.len > NAME_MAX)
2652 return ERR_PTR(-ENAMETOOLONG);
2653 d_add(dentry, NULL);
2654 return NULL;
2655}
2656
0dea1168
KS
2657/*
2658 * Check if a file is a control file
2659 */
2660static inline struct cftype *__file_cft(struct file *file)
2661{
496ad9aa 2662 if (file_inode(file)->i_fop != &cgroup_file_operations)
0dea1168
KS
2663 return ERR_PTR(-EINVAL);
2664 return __d_cft(file->f_dentry);
2665}
2666
a5e7ed32 2667static int cgroup_create_file(struct dentry *dentry, umode_t mode,
5adcee1d
NP
2668 struct super_block *sb)
2669{
ddbcc7e8
PM
2670 struct inode *inode;
2671
2672 if (!dentry)
2673 return -ENOENT;
2674 if (dentry->d_inode)
2675 return -EEXIST;
2676
2677 inode = cgroup_new_inode(mode, sb);
2678 if (!inode)
2679 return -ENOMEM;
2680
2681 if (S_ISDIR(mode)) {
2682 inode->i_op = &cgroup_dir_inode_operations;
2683 inode->i_fop = &simple_dir_operations;
2684
2685 /* start off with i_nlink == 2 (for "." entry) */
2686 inc_nlink(inode);
28fd6f30 2687 inc_nlink(dentry->d_parent->d_inode);
ddbcc7e8 2688
b8a2df6a
TH
2689 /*
2690 * Control reaches here with cgroup_mutex held.
2691 * @inode->i_mutex should nest outside cgroup_mutex but we
2692 * want to populate it immediately without releasing
2693 * cgroup_mutex. As @inode isn't visible to anyone else
2694 * yet, trylock will always succeed without affecting
2695 * lockdep checks.
2696 */
2697 WARN_ON_ONCE(!mutex_trylock(&inode->i_mutex));
ddbcc7e8
PM
2698 } else if (S_ISREG(mode)) {
2699 inode->i_size = 0;
2700 inode->i_fop = &cgroup_file_operations;
03b1cde6 2701 inode->i_op = &cgroup_file_inode_operations;
ddbcc7e8 2702 }
ddbcc7e8
PM
2703 d_instantiate(dentry, inode);
2704 dget(dentry); /* Extra count - pin the dentry in core */
2705 return 0;
2706}
2707
099fca32
LZ
2708/**
2709 * cgroup_file_mode - deduce file mode of a control file
2710 * @cft: the control file in question
2711 *
2712 * returns cft->mode if ->mode is not 0
2713 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
2714 * returns S_IRUGO if it has only a read handler
2715 * returns S_IWUSR if it has only a write hander
2716 */
a5e7ed32 2717static umode_t cgroup_file_mode(const struct cftype *cft)
099fca32 2718{
a5e7ed32 2719 umode_t mode = 0;
099fca32
LZ
2720
2721 if (cft->mode)
2722 return cft->mode;
2723
2724 if (cft->read || cft->read_u64 || cft->read_s64 ||
2725 cft->read_map || cft->read_seq_string)
2726 mode |= S_IRUGO;
2727
2728 if (cft->write || cft->write_u64 || cft->write_s64 ||
2729 cft->write_string || cft->trigger)
2730 mode |= S_IWUSR;
2731
2732 return mode;
2733}
2734
db0416b6 2735static int cgroup_add_file(struct cgroup *cgrp, struct cgroup_subsys *subsys,
03b1cde6 2736 struct cftype *cft)
ddbcc7e8 2737{
bd89aabc 2738 struct dentry *dir = cgrp->dentry;
05ef1d7c 2739 struct cgroup *parent = __d_cgrp(dir);
ddbcc7e8 2740 struct dentry *dentry;
05ef1d7c 2741 struct cfent *cfe;
ddbcc7e8 2742 int error;
a5e7ed32 2743 umode_t mode;
ddbcc7e8 2744 char name[MAX_CGROUP_TYPE_NAMELEN + MAX_CFTYPE_NAME + 2] = { 0 };
8e3f6541 2745
93438629 2746 if (subsys && !(cgrp->root->flags & CGRP_ROOT_NOPREFIX)) {
ddbcc7e8
PM
2747 strcpy(name, subsys->name);
2748 strcat(name, ".");
2749 }
2750 strcat(name, cft->name);
05ef1d7c 2751
ddbcc7e8 2752 BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex));
05ef1d7c
TH
2753
2754 cfe = kzalloc(sizeof(*cfe), GFP_KERNEL);
2755 if (!cfe)
2756 return -ENOMEM;
2757
ddbcc7e8 2758 dentry = lookup_one_len(name, dir, strlen(name));
05ef1d7c 2759 if (IS_ERR(dentry)) {
ddbcc7e8 2760 error = PTR_ERR(dentry);
05ef1d7c
TH
2761 goto out;
2762 }
2763
d6cbf35d
LZ
2764 cfe->type = (void *)cft;
2765 cfe->dentry = dentry;
2766 dentry->d_fsdata = cfe;
2767 simple_xattrs_init(&cfe->xattrs);
2768
05ef1d7c
TH
2769 mode = cgroup_file_mode(cft);
2770 error = cgroup_create_file(dentry, mode | S_IFREG, cgrp->root->sb);
2771 if (!error) {
05ef1d7c
TH
2772 list_add_tail(&cfe->node, &parent->files);
2773 cfe = NULL;
2774 }
2775 dput(dentry);
2776out:
2777 kfree(cfe);
ddbcc7e8
PM
2778 return error;
2779}
2780
b1f28d31
TH
2781/**
2782 * cgroup_addrm_files - add or remove files to a cgroup directory
2783 * @cgrp: the target cgroup
2784 * @subsys: the subsystem of files to be added
2785 * @cfts: array of cftypes to be added
2786 * @is_add: whether to add or remove
2787 *
2788 * Depending on @is_add, add or remove files defined by @cfts on @cgrp.
2789 * All @cfts should belong to @subsys. For removals, this function never
2790 * fails. If addition fails, this function doesn't remove files already
2791 * added. The caller is responsible for cleaning up.
2792 */
79578621 2793static int cgroup_addrm_files(struct cgroup *cgrp, struct cgroup_subsys *subsys,
03b1cde6 2794 struct cftype cfts[], bool is_add)
ddbcc7e8 2795{
03b1cde6 2796 struct cftype *cft;
b1f28d31
TH
2797 int ret;
2798
2799 lockdep_assert_held(&cgrp->dentry->d_inode->i_mutex);
2800 lockdep_assert_held(&cgroup_mutex);
db0416b6
TH
2801
2802 for (cft = cfts; cft->name[0] != '\0'; cft++) {
f33fddc2 2803 /* does cft->flags tell us to skip this file on @cgrp? */
873fe09e
TH
2804 if ((cft->flags & CFTYPE_INSANE) && cgroup_sane_behavior(cgrp))
2805 continue;
f33fddc2
G
2806 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgrp->parent)
2807 continue;
2808 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgrp->parent)
2809 continue;
2810
2739d3cc 2811 if (is_add) {
b1f28d31
TH
2812 ret = cgroup_add_file(cgrp, subsys, cft);
2813 if (ret) {
2739d3cc 2814 pr_warn("cgroup_addrm_files: failed to add %s, err=%d\n",
b1f28d31
TH
2815 cft->name, ret);
2816 return ret;
2817 }
2739d3cc
LZ
2818 } else {
2819 cgroup_rm_file(cgrp, cft);
db0416b6 2820 }
ddbcc7e8 2821 }
b1f28d31 2822 return 0;
ddbcc7e8
PM
2823}
2824
8e3f6541 2825static void cgroup_cfts_prepare(void)
e8c82d20 2826 __acquires(&cgroup_mutex)
8e3f6541
TH
2827{
2828 /*
2829 * Thanks to the entanglement with vfs inode locking, we can't walk
2830 * the existing cgroups under cgroup_mutex and create files.
e8c82d20
LZ
2831 * Instead, we use cgroup_for_each_descendant_pre() and drop RCU
2832 * read lock before calling cgroup_addrm_files().
8e3f6541 2833 */
8e3f6541
TH
2834 mutex_lock(&cgroup_mutex);
2835}
2836
9ccece80
TH
2837static int cgroup_cfts_commit(struct cgroup_subsys *ss,
2838 struct cftype *cfts, bool is_add)
e8c82d20 2839 __releases(&cgroup_mutex)
8e3f6541
TH
2840{
2841 LIST_HEAD(pending);
e8c82d20 2842 struct cgroup *cgrp, *root = &ss->root->top_cgroup;
084457f2 2843 struct super_block *sb = ss->root->sb;
e8c82d20
LZ
2844 struct dentry *prev = NULL;
2845 struct inode *inode;
00356bd5 2846 u64 update_before;
9ccece80 2847 int ret = 0;
8e3f6541
TH
2848
2849 /* %NULL @cfts indicates abort and don't bother if @ss isn't attached */
9871bf95 2850 if (!cfts || ss->root == &cgroup_dummy_root ||
e8c82d20
LZ
2851 !atomic_inc_not_zero(&sb->s_active)) {
2852 mutex_unlock(&cgroup_mutex);
9ccece80 2853 return 0;
8e3f6541
TH
2854 }
2855
8e3f6541 2856 /*
e8c82d20
LZ
2857 * All cgroups which are created after we drop cgroup_mutex will
2858 * have the updated set of files, so we only need to update the
00356bd5 2859 * cgroups created before the current @cgroup_serial_nr_next.
8e3f6541 2860 */
00356bd5 2861 update_before = cgroup_serial_nr_next;
e8c82d20
LZ
2862
2863 mutex_unlock(&cgroup_mutex);
2864
2865 /* @root always needs to be updated */
2866 inode = root->dentry->d_inode;
2867 mutex_lock(&inode->i_mutex);
2868 mutex_lock(&cgroup_mutex);
9ccece80 2869 ret = cgroup_addrm_files(root, ss, cfts, is_add);
e8c82d20
LZ
2870 mutex_unlock(&cgroup_mutex);
2871 mutex_unlock(&inode->i_mutex);
2872
9ccece80
TH
2873 if (ret)
2874 goto out_deact;
2875
e8c82d20
LZ
2876 /* add/rm files for all cgroups created before */
2877 rcu_read_lock();
2878 cgroup_for_each_descendant_pre(cgrp, root) {
2879 if (cgroup_is_dead(cgrp))
2880 continue;
2881
2882 inode = cgrp->dentry->d_inode;
2883 dget(cgrp->dentry);
2884 rcu_read_unlock();
2885
2886 dput(prev);
2887 prev = cgrp->dentry;
8e3f6541
TH
2888
2889 mutex_lock(&inode->i_mutex);
2890 mutex_lock(&cgroup_mutex);
00356bd5 2891 if (cgrp->serial_nr < update_before && !cgroup_is_dead(cgrp))
9ccece80 2892 ret = cgroup_addrm_files(cgrp, ss, cfts, is_add);
8e3f6541
TH
2893 mutex_unlock(&cgroup_mutex);
2894 mutex_unlock(&inode->i_mutex);
2895
e8c82d20 2896 rcu_read_lock();
9ccece80
TH
2897 if (ret)
2898 break;
8e3f6541 2899 }
e8c82d20
LZ
2900 rcu_read_unlock();
2901 dput(prev);
9ccece80 2902out_deact:
e8c82d20 2903 deactivate_super(sb);
9ccece80 2904 return ret;
8e3f6541
TH
2905}
2906
2907/**
2908 * cgroup_add_cftypes - add an array of cftypes to a subsystem
2909 * @ss: target cgroup subsystem
2910 * @cfts: zero-length name terminated array of cftypes
2911 *
2912 * Register @cfts to @ss. Files described by @cfts are created for all
2913 * existing cgroups to which @ss is attached and all future cgroups will
2914 * have them too. This function can be called anytime whether @ss is
2915 * attached or not.
2916 *
2917 * Returns 0 on successful registration, -errno on failure. Note that this
2918 * function currently returns 0 as long as @cfts registration is successful
2919 * even if some file creation attempts on existing cgroups fail.
2920 */
03b1cde6 2921int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
8e3f6541
TH
2922{
2923 struct cftype_set *set;
9ccece80 2924 int ret;
8e3f6541
TH
2925
2926 set = kzalloc(sizeof(*set), GFP_KERNEL);
2927 if (!set)
2928 return -ENOMEM;
2929
2930 cgroup_cfts_prepare();
2931 set->cfts = cfts;
2932 list_add_tail(&set->node, &ss->cftsets);
9ccece80
TH
2933 ret = cgroup_cfts_commit(ss, cfts, true);
2934 if (ret)
2935 cgroup_rm_cftypes(ss, cfts);
2936 return ret;
8e3f6541
TH
2937}
2938EXPORT_SYMBOL_GPL(cgroup_add_cftypes);
2939
79578621
TH
2940/**
2941 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
2942 * @ss: target cgroup subsystem
2943 * @cfts: zero-length name terminated array of cftypes
2944 *
2945 * Unregister @cfts from @ss. Files described by @cfts are removed from
2946 * all existing cgroups to which @ss is attached and all future cgroups
2947 * won't have them either. This function can be called anytime whether @ss
2948 * is attached or not.
2949 *
2950 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
2951 * registered with @ss.
2952 */
03b1cde6 2953int cgroup_rm_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
79578621
TH
2954{
2955 struct cftype_set *set;
2956
2957 cgroup_cfts_prepare();
2958
2959 list_for_each_entry(set, &ss->cftsets, node) {
2960 if (set->cfts == cfts) {
f57947d2
LZ
2961 list_del(&set->node);
2962 kfree(set);
79578621
TH
2963 cgroup_cfts_commit(ss, cfts, false);
2964 return 0;
2965 }
2966 }
2967
2968 cgroup_cfts_commit(ss, NULL, false);
2969 return -ENOENT;
2970}
2971
a043e3b2
LZ
2972/**
2973 * cgroup_task_count - count the number of tasks in a cgroup.
2974 * @cgrp: the cgroup in question
2975 *
2976 * Return the number of tasks in the cgroup.
2977 */
bd89aabc 2978int cgroup_task_count(const struct cgroup *cgrp)
bbcb81d0
PM
2979{
2980 int count = 0;
69d0206c 2981 struct cgrp_cset_link *link;
817929ec
PM
2982
2983 read_lock(&css_set_lock);
69d0206c
TH
2984 list_for_each_entry(link, &cgrp->cset_links, cset_link)
2985 count += atomic_read(&link->cset->refcount);
817929ec 2986 read_unlock(&css_set_lock);
bbcb81d0
PM
2987 return count;
2988}
2989
817929ec
PM
2990/*
2991 * Advance a list_head iterator. The iterator should be positioned at
2992 * the start of a css_set
2993 */
69d0206c 2994static void cgroup_advance_iter(struct cgroup *cgrp, struct cgroup_iter *it)
817929ec 2995{
69d0206c
TH
2996 struct list_head *l = it->cset_link;
2997 struct cgrp_cset_link *link;
5abb8855 2998 struct css_set *cset;
817929ec
PM
2999
3000 /* Advance to the next non-empty css_set */
3001 do {
3002 l = l->next;
69d0206c
TH
3003 if (l == &cgrp->cset_links) {
3004 it->cset_link = NULL;
817929ec
PM
3005 return;
3006 }
69d0206c
TH
3007 link = list_entry(l, struct cgrp_cset_link, cset_link);
3008 cset = link->cset;
5abb8855 3009 } while (list_empty(&cset->tasks));
69d0206c 3010 it->cset_link = l;
5abb8855 3011 it->task = cset->tasks.next;
817929ec
PM
3012}
3013
31a7df01
CW
3014/*
3015 * To reduce the fork() overhead for systems that are not actually
3016 * using their cgroups capability, we don't maintain the lists running
3017 * through each css_set to its tasks until we see the list actually
3018 * used - in other words after the first call to cgroup_iter_start().
31a7df01 3019 */
3df91fe3 3020static void cgroup_enable_task_cg_lists(void)
31a7df01
CW
3021{
3022 struct task_struct *p, *g;
3023 write_lock(&css_set_lock);
3024 use_task_css_set_links = 1;
3ce3230a
FW
3025 /*
3026 * We need tasklist_lock because RCU is not safe against
3027 * while_each_thread(). Besides, a forking task that has passed
3028 * cgroup_post_fork() without seeing use_task_css_set_links = 1
3029 * is not guaranteed to have its child immediately visible in the
3030 * tasklist if we walk through it with RCU.
3031 */
3032 read_lock(&tasklist_lock);
31a7df01
CW
3033 do_each_thread(g, p) {
3034 task_lock(p);
0e04388f
LZ
3035 /*
3036 * We should check if the process is exiting, otherwise
3037 * it will race with cgroup_exit() in that the list
3038 * entry won't be deleted though the process has exited.
3039 */
3040 if (!(p->flags & PF_EXITING) && list_empty(&p->cg_list))
a8ad805c 3041 list_add(&p->cg_list, &task_css_set(p)->tasks);
31a7df01
CW
3042 task_unlock(p);
3043 } while_each_thread(g, p);
3ce3230a 3044 read_unlock(&tasklist_lock);
31a7df01
CW
3045 write_unlock(&css_set_lock);
3046}
3047
53fa5261
TH
3048/**
3049 * cgroup_next_sibling - find the next sibling of a given cgroup
3050 * @pos: the current cgroup
3051 *
3052 * This function returns the next sibling of @pos and should be called
3053 * under RCU read lock. The only requirement is that @pos is accessible.
3054 * The next sibling is guaranteed to be returned regardless of @pos's
3055 * state.
3056 */
3057struct cgroup *cgroup_next_sibling(struct cgroup *pos)
3058{
3059 struct cgroup *next;
3060
3061 WARN_ON_ONCE(!rcu_read_lock_held());
3062
3063 /*
3064 * @pos could already have been removed. Once a cgroup is removed,
3065 * its ->sibling.next is no longer updated when its next sibling
ea15f8cc
TH
3066 * changes. As CGRP_DEAD assertion is serialized and happens
3067 * before the cgroup is taken off the ->sibling list, if we see it
3068 * unasserted, it's guaranteed that the next sibling hasn't
3069 * finished its grace period even if it's already removed, and thus
3070 * safe to dereference from this RCU critical section. If
3071 * ->sibling.next is inaccessible, cgroup_is_dead() is guaranteed
3072 * to be visible as %true here.
53fa5261 3073 */
54766d4a 3074 if (likely(!cgroup_is_dead(pos))) {
53fa5261
TH
3075 next = list_entry_rcu(pos->sibling.next, struct cgroup, sibling);
3076 if (&next->sibling != &pos->parent->children)
3077 return next;
3078 return NULL;
3079 }
3080
3081 /*
3082 * Can't dereference the next pointer. Each cgroup is given a
3083 * monotonically increasing unique serial number and always
3084 * appended to the sibling list, so the next one can be found by
3085 * walking the parent's children until we see a cgroup with higher
3086 * serial number than @pos's.
3087 *
3088 * While this path can be slow, it's taken only when either the
3089 * current cgroup is removed or iteration and removal race.
3090 */
3091 list_for_each_entry_rcu(next, &pos->parent->children, sibling)
3092 if (next->serial_nr > pos->serial_nr)
3093 return next;
3094 return NULL;
3095}
3096EXPORT_SYMBOL_GPL(cgroup_next_sibling);
3097
574bd9f7
TH
3098/**
3099 * cgroup_next_descendant_pre - find the next descendant for pre-order walk
3100 * @pos: the current position (%NULL to initiate traversal)
3101 * @cgroup: cgroup whose descendants to walk
3102 *
3103 * To be used by cgroup_for_each_descendant_pre(). Find the next
3104 * descendant to visit for pre-order traversal of @cgroup's descendants.
75501a6d
TH
3105 *
3106 * While this function requires RCU read locking, it doesn't require the
3107 * whole traversal to be contained in a single RCU critical section. This
3108 * function will return the correct next descendant as long as both @pos
3109 * and @cgroup are accessible and @pos is a descendant of @cgroup.
574bd9f7
TH
3110 */
3111struct cgroup *cgroup_next_descendant_pre(struct cgroup *pos,
3112 struct cgroup *cgroup)
3113{
3114 struct cgroup *next;
3115
3116 WARN_ON_ONCE(!rcu_read_lock_held());
3117
3118 /* if first iteration, pretend we just visited @cgroup */
7805d000 3119 if (!pos)
574bd9f7 3120 pos = cgroup;
574bd9f7
TH
3121
3122 /* visit the first child if exists */
3123 next = list_first_or_null_rcu(&pos->children, struct cgroup, sibling);
3124 if (next)
3125 return next;
3126
3127 /* no child, visit my or the closest ancestor's next sibling */
7805d000 3128 while (pos != cgroup) {
75501a6d
TH
3129 next = cgroup_next_sibling(pos);
3130 if (next)
574bd9f7 3131 return next;
574bd9f7 3132 pos = pos->parent;
7805d000 3133 }
574bd9f7
TH
3134
3135 return NULL;
3136}
3137EXPORT_SYMBOL_GPL(cgroup_next_descendant_pre);
3138
12a9d2fe
TH
3139/**
3140 * cgroup_rightmost_descendant - return the rightmost descendant of a cgroup
3141 * @pos: cgroup of interest
3142 *
3143 * Return the rightmost descendant of @pos. If there's no descendant,
3144 * @pos is returned. This can be used during pre-order traversal to skip
3145 * subtree of @pos.
75501a6d
TH
3146 *
3147 * While this function requires RCU read locking, it doesn't require the
3148 * whole traversal to be contained in a single RCU critical section. This
3149 * function will return the correct rightmost descendant as long as @pos is
3150 * accessible.
12a9d2fe
TH
3151 */
3152struct cgroup *cgroup_rightmost_descendant(struct cgroup *pos)
3153{
3154 struct cgroup *last, *tmp;
3155
3156 WARN_ON_ONCE(!rcu_read_lock_held());
3157
3158 do {
3159 last = pos;
3160 /* ->prev isn't RCU safe, walk ->next till the end */
3161 pos = NULL;
3162 list_for_each_entry_rcu(tmp, &last->children, sibling)
3163 pos = tmp;
3164 } while (pos);
3165
3166 return last;
3167}
3168EXPORT_SYMBOL_GPL(cgroup_rightmost_descendant);
3169
574bd9f7
TH
3170static struct cgroup *cgroup_leftmost_descendant(struct cgroup *pos)
3171{
3172 struct cgroup *last;
3173
3174 do {
3175 last = pos;
3176 pos = list_first_or_null_rcu(&pos->children, struct cgroup,
3177 sibling);
3178 } while (pos);
3179
3180 return last;
3181}
3182
3183/**
3184 * cgroup_next_descendant_post - find the next descendant for post-order walk
3185 * @pos: the current position (%NULL to initiate traversal)
3186 * @cgroup: cgroup whose descendants to walk
3187 *
3188 * To be used by cgroup_for_each_descendant_post(). Find the next
3189 * descendant to visit for post-order traversal of @cgroup's descendants.
75501a6d
TH
3190 *
3191 * While this function requires RCU read locking, it doesn't require the
3192 * whole traversal to be contained in a single RCU critical section. This
3193 * function will return the correct next descendant as long as both @pos
3194 * and @cgroup are accessible and @pos is a descendant of @cgroup.
574bd9f7
TH
3195 */
3196struct cgroup *cgroup_next_descendant_post(struct cgroup *pos,
3197 struct cgroup *cgroup)
3198{
3199 struct cgroup *next;
3200
3201 WARN_ON_ONCE(!rcu_read_lock_held());
3202
3203 /* if first iteration, visit the leftmost descendant */
3204 if (!pos) {
3205 next = cgroup_leftmost_descendant(cgroup);
3206 return next != cgroup ? next : NULL;
3207 }
3208
3209 /* if there's an unvisited sibling, visit its leftmost descendant */
75501a6d
TH
3210 next = cgroup_next_sibling(pos);
3211 if (next)
574bd9f7
TH
3212 return cgroup_leftmost_descendant(next);
3213
3214 /* no sibling left, visit parent */
3215 next = pos->parent;
3216 return next != cgroup ? next : NULL;
3217}
3218EXPORT_SYMBOL_GPL(cgroup_next_descendant_post);
3219
bd89aabc 3220void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it)
c6ca5750 3221 __acquires(css_set_lock)
817929ec
PM
3222{
3223 /*
3224 * The first time anyone tries to iterate across a cgroup,
3225 * we need to enable the list linking each css_set to its
3226 * tasks, and fix up all existing tasks.
3227 */
31a7df01
CW
3228 if (!use_task_css_set_links)
3229 cgroup_enable_task_cg_lists();
3230
817929ec 3231 read_lock(&css_set_lock);
69d0206c 3232 it->cset_link = &cgrp->cset_links;
bd89aabc 3233 cgroup_advance_iter(cgrp, it);
817929ec
PM
3234}
3235
bd89aabc 3236struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
817929ec
PM
3237 struct cgroup_iter *it)
3238{
3239 struct task_struct *res;
3240 struct list_head *l = it->task;
69d0206c 3241 struct cgrp_cset_link *link;
817929ec
PM
3242
3243 /* If the iterator cg is NULL, we have no tasks */
69d0206c 3244 if (!it->cset_link)
817929ec
PM
3245 return NULL;
3246 res = list_entry(l, struct task_struct, cg_list);
3247 /* Advance iterator to find next entry */
3248 l = l->next;
69d0206c
TH
3249 link = list_entry(it->cset_link, struct cgrp_cset_link, cset_link);
3250 if (l == &link->cset->tasks) {
817929ec
PM
3251 /* We reached the end of this task list - move on to
3252 * the next cg_cgroup_link */
bd89aabc 3253 cgroup_advance_iter(cgrp, it);
817929ec
PM
3254 } else {
3255 it->task = l;
3256 }
3257 return res;
3258}
3259
bd89aabc 3260void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it)
c6ca5750 3261 __releases(css_set_lock)
817929ec
PM
3262{
3263 read_unlock(&css_set_lock);
3264}
3265
31a7df01
CW
3266static inline int started_after_time(struct task_struct *t1,
3267 struct timespec *time,
3268 struct task_struct *t2)
3269{
3270 int start_diff = timespec_compare(&t1->start_time, time);
3271 if (start_diff > 0) {
3272 return 1;
3273 } else if (start_diff < 0) {
3274 return 0;
3275 } else {
3276 /*
3277 * Arbitrarily, if two processes started at the same
3278 * time, we'll say that the lower pointer value
3279 * started first. Note that t2 may have exited by now
3280 * so this may not be a valid pointer any longer, but
3281 * that's fine - it still serves to distinguish
3282 * between two tasks started (effectively) simultaneously.
3283 */
3284 return t1 > t2;
3285 }
3286}
3287
3288/*
3289 * This function is a callback from heap_insert() and is used to order
3290 * the heap.
3291 * In this case we order the heap in descending task start time.
3292 */
3293static inline int started_after(void *p1, void *p2)
3294{
3295 struct task_struct *t1 = p1;
3296 struct task_struct *t2 = p2;
3297 return started_after_time(t1, &t2->start_time, t2);
3298}
3299
3300/**
3301 * cgroup_scan_tasks - iterate though all the tasks in a cgroup
3302 * @scan: struct cgroup_scanner containing arguments for the scan
3303 *
3304 * Arguments include pointers to callback functions test_task() and
3305 * process_task().
3306 * Iterate through all the tasks in a cgroup, calling test_task() for each,
3307 * and if it returns true, call process_task() for it also.
3308 * The test_task pointer may be NULL, meaning always true (select all tasks).
3309 * Effectively duplicates cgroup_iter_{start,next,end}()
3310 * but does not lock css_set_lock for the call to process_task().
3311 * The struct cgroup_scanner may be embedded in any structure of the caller's
3312 * creation.
3313 * It is guaranteed that process_task() will act on every task that
3314 * is a member of the cgroup for the duration of this call. This
3315 * function may or may not call process_task() for tasks that exit
3316 * or move to a different cgroup during the call, or are forked or
3317 * move into the cgroup during the call.
3318 *
3319 * Note that test_task() may be called with locks held, and may in some
3320 * situations be called multiple times for the same task, so it should
3321 * be cheap.
3322 * If the heap pointer in the struct cgroup_scanner is non-NULL, a heap has been
3323 * pre-allocated and will be used for heap operations (and its "gt" member will
3324 * be overwritten), else a temporary heap will be used (allocation of which
3325 * may cause this function to fail).
3326 */
3327int cgroup_scan_tasks(struct cgroup_scanner *scan)
3328{
3329 int retval, i;
3330 struct cgroup_iter it;
3331 struct task_struct *p, *dropped;
3332 /* Never dereference latest_task, since it's not refcounted */
3333 struct task_struct *latest_task = NULL;
3334 struct ptr_heap tmp_heap;
3335 struct ptr_heap *heap;
3336 struct timespec latest_time = { 0, 0 };
3337
3338 if (scan->heap) {
3339 /* The caller supplied our heap and pre-allocated its memory */
3340 heap = scan->heap;
3341 heap->gt = &started_after;
3342 } else {
3343 /* We need to allocate our own heap memory */
3344 heap = &tmp_heap;
3345 retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after);
3346 if (retval)
3347 /* cannot allocate the heap */
3348 return retval;
3349 }
3350
3351 again:
3352 /*
3353 * Scan tasks in the cgroup, using the scanner's "test_task" callback
3354 * to determine which are of interest, and using the scanner's
3355 * "process_task" callback to process any of them that need an update.
3356 * Since we don't want to hold any locks during the task updates,
3357 * gather tasks to be processed in a heap structure.
3358 * The heap is sorted by descending task start time.
3359 * If the statically-sized heap fills up, we overflow tasks that
3360 * started later, and in future iterations only consider tasks that
3361 * started after the latest task in the previous pass. This
3362 * guarantees forward progress and that we don't miss any tasks.
3363 */
3364 heap->size = 0;
3365 cgroup_iter_start(scan->cg, &it);
3366 while ((p = cgroup_iter_next(scan->cg, &it))) {
3367 /*
3368 * Only affect tasks that qualify per the caller's callback,
3369 * if he provided one
3370 */
3371 if (scan->test_task && !scan->test_task(p, scan))
3372 continue;
3373 /*
3374 * Only process tasks that started after the last task
3375 * we processed
3376 */
3377 if (!started_after_time(p, &latest_time, latest_task))
3378 continue;
3379 dropped = heap_insert(heap, p);
3380 if (dropped == NULL) {
3381 /*
3382 * The new task was inserted; the heap wasn't
3383 * previously full
3384 */
3385 get_task_struct(p);
3386 } else if (dropped != p) {
3387 /*
3388 * The new task was inserted, and pushed out a
3389 * different task
3390 */
3391 get_task_struct(p);
3392 put_task_struct(dropped);
3393 }
3394 /*
3395 * Else the new task was newer than anything already in
3396 * the heap and wasn't inserted
3397 */
3398 }
3399 cgroup_iter_end(scan->cg, &it);
3400
3401 if (heap->size) {
3402 for (i = 0; i < heap->size; i++) {
4fe91d51 3403 struct task_struct *q = heap->ptrs[i];
31a7df01 3404 if (i == 0) {
4fe91d51
PJ
3405 latest_time = q->start_time;
3406 latest_task = q;
31a7df01
CW
3407 }
3408 /* Process the task per the caller's callback */
4fe91d51
PJ
3409 scan->process_task(q, scan);
3410 put_task_struct(q);
31a7df01
CW
3411 }
3412 /*
3413 * If we had to process any tasks at all, scan again
3414 * in case some of them were in the middle of forking
3415 * children that didn't get processed.
3416 * Not the most efficient way to do it, but it avoids
3417 * having to take callback_mutex in the fork path
3418 */
3419 goto again;
3420 }
3421 if (heap == &tmp_heap)
3422 heap_free(&tmp_heap);
3423 return 0;
3424}
3425
8cc99345
TH
3426static void cgroup_transfer_one_task(struct task_struct *task,
3427 struct cgroup_scanner *scan)
3428{
3429 struct cgroup *new_cgroup = scan->data;
3430
47cfcd09 3431 mutex_lock(&cgroup_mutex);
8cc99345 3432 cgroup_attach_task(new_cgroup, task, false);
47cfcd09 3433 mutex_unlock(&cgroup_mutex);
8cc99345
TH
3434}
3435
3436/**
3437 * cgroup_trasnsfer_tasks - move tasks from one cgroup to another
3438 * @to: cgroup to which the tasks will be moved
3439 * @from: cgroup in which the tasks currently reside
3440 */
3441int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from)
3442{
3443 struct cgroup_scanner scan;
3444
3445 scan.cg = from;
3446 scan.test_task = NULL; /* select all tasks in cgroup */
3447 scan.process_task = cgroup_transfer_one_task;
3448 scan.heap = NULL;
3449 scan.data = to;
3450
3451 return cgroup_scan_tasks(&scan);
3452}
3453
bbcb81d0 3454/*
102a775e 3455 * Stuff for reading the 'tasks'/'procs' files.
bbcb81d0
PM
3456 *
3457 * Reading this file can return large amounts of data if a cgroup has
3458 * *lots* of attached tasks. So it may need several calls to read(),
3459 * but we cannot guarantee that the information we produce is correct
3460 * unless we produce it entirely atomically.
3461 *
bbcb81d0 3462 */
bbcb81d0 3463
24528255
LZ
3464/* which pidlist file are we talking about? */
3465enum cgroup_filetype {
3466 CGROUP_FILE_PROCS,
3467 CGROUP_FILE_TASKS,
3468};
3469
3470/*
3471 * A pidlist is a list of pids that virtually represents the contents of one
3472 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
3473 * a pair (one each for procs, tasks) for each pid namespace that's relevant
3474 * to the cgroup.
3475 */
3476struct cgroup_pidlist {
3477 /*
3478 * used to find which pidlist is wanted. doesn't change as long as
3479 * this particular list stays in the list.
3480 */
3481 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
3482 /* array of xids */
3483 pid_t *list;
3484 /* how many elements the above list has */
3485 int length;
3486 /* how many files are using the current array */
3487 int use_count;
3488 /* each of these stored in a list by its cgroup */
3489 struct list_head links;
3490 /* pointer to the cgroup we belong to, for list removal purposes */
3491 struct cgroup *owner;
3492 /* protects the other fields */
3493 struct rw_semaphore mutex;
3494};
3495
d1d9fd33
BB
3496/*
3497 * The following two functions "fix" the issue where there are more pids
3498 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
3499 * TODO: replace with a kernel-wide solution to this problem
3500 */
3501#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
3502static void *pidlist_allocate(int count)
3503{
3504 if (PIDLIST_TOO_LARGE(count))
3505 return vmalloc(count * sizeof(pid_t));
3506 else
3507 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
3508}
3509static void pidlist_free(void *p)
3510{
3511 if (is_vmalloc_addr(p))
3512 vfree(p);
3513 else
3514 kfree(p);
3515}
d1d9fd33 3516
bbcb81d0 3517/*
102a775e 3518 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
6ee211ad 3519 * Returns the number of unique elements.
bbcb81d0 3520 */
6ee211ad 3521static int pidlist_uniq(pid_t *list, int length)
bbcb81d0 3522{
102a775e 3523 int src, dest = 1;
102a775e
BB
3524
3525 /*
3526 * we presume the 0th element is unique, so i starts at 1. trivial
3527 * edge cases first; no work needs to be done for either
3528 */
3529 if (length == 0 || length == 1)
3530 return length;
3531 /* src and dest walk down the list; dest counts unique elements */
3532 for (src = 1; src < length; src++) {
3533 /* find next unique element */
3534 while (list[src] == list[src-1]) {
3535 src++;
3536 if (src == length)
3537 goto after;
3538 }
3539 /* dest always points to where the next unique element goes */
3540 list[dest] = list[src];
3541 dest++;
3542 }
3543after:
102a775e
BB
3544 return dest;
3545}
3546
3547static int cmppid(const void *a, const void *b)
3548{
3549 return *(pid_t *)a - *(pid_t *)b;
3550}
3551
72a8cb30
BB
3552/*
3553 * find the appropriate pidlist for our purpose (given procs vs tasks)
3554 * returns with the lock on that pidlist already held, and takes care
3555 * of the use count, or returns NULL with no locks held if we're out of
3556 * memory.
3557 */
3558static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
3559 enum cgroup_filetype type)
3560{
3561 struct cgroup_pidlist *l;
3562 /* don't need task_nsproxy() if we're looking at ourself */
17cf22c3 3563 struct pid_namespace *ns = task_active_pid_ns(current);
b70cc5fd 3564
72a8cb30
BB
3565 /*
3566 * We can't drop the pidlist_mutex before taking the l->mutex in case
3567 * the last ref-holder is trying to remove l from the list at the same
3568 * time. Holding the pidlist_mutex precludes somebody taking whichever
3569 * list we find out from under us - compare release_pid_array().
3570 */
3571 mutex_lock(&cgrp->pidlist_mutex);
3572 list_for_each_entry(l, &cgrp->pidlists, links) {
3573 if (l->key.type == type && l->key.ns == ns) {
72a8cb30
BB
3574 /* make sure l doesn't vanish out from under us */
3575 down_write(&l->mutex);
3576 mutex_unlock(&cgrp->pidlist_mutex);
72a8cb30
BB
3577 return l;
3578 }
3579 }
3580 /* entry not found; create a new one */
f4f4be2b 3581 l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
72a8cb30
BB
3582 if (!l) {
3583 mutex_unlock(&cgrp->pidlist_mutex);
72a8cb30
BB
3584 return l;
3585 }
3586 init_rwsem(&l->mutex);
3587 down_write(&l->mutex);
3588 l->key.type = type;
b70cc5fd 3589 l->key.ns = get_pid_ns(ns);
72a8cb30
BB
3590 l->owner = cgrp;
3591 list_add(&l->links, &cgrp->pidlists);
3592 mutex_unlock(&cgrp->pidlist_mutex);
3593 return l;
3594}
3595
102a775e
BB
3596/*
3597 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
3598 */
72a8cb30
BB
3599static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
3600 struct cgroup_pidlist **lp)
102a775e
BB
3601{
3602 pid_t *array;
3603 int length;
3604 int pid, n = 0; /* used for populating the array */
817929ec
PM
3605 struct cgroup_iter it;
3606 struct task_struct *tsk;
102a775e
BB
3607 struct cgroup_pidlist *l;
3608
3609 /*
3610 * If cgroup gets more users after we read count, we won't have
3611 * enough space - tough. This race is indistinguishable to the
3612 * caller from the case that the additional cgroup users didn't
3613 * show up until sometime later on.
3614 */
3615 length = cgroup_task_count(cgrp);
d1d9fd33 3616 array = pidlist_allocate(length);
102a775e
BB
3617 if (!array)
3618 return -ENOMEM;
3619 /* now, populate the array */
bd89aabc
PM
3620 cgroup_iter_start(cgrp, &it);
3621 while ((tsk = cgroup_iter_next(cgrp, &it))) {
102a775e 3622 if (unlikely(n == length))
817929ec 3623 break;
102a775e 3624 /* get tgid or pid for procs or tasks file respectively */
72a8cb30
BB
3625 if (type == CGROUP_FILE_PROCS)
3626 pid = task_tgid_vnr(tsk);
3627 else
3628 pid = task_pid_vnr(tsk);
102a775e
BB
3629 if (pid > 0) /* make sure to only use valid results */
3630 array[n++] = pid;
817929ec 3631 }
bd89aabc 3632 cgroup_iter_end(cgrp, &it);
102a775e
BB
3633 length = n;
3634 /* now sort & (if procs) strip out duplicates */
3635 sort(array, length, sizeof(pid_t), cmppid, NULL);
72a8cb30 3636 if (type == CGROUP_FILE_PROCS)
6ee211ad 3637 length = pidlist_uniq(array, length);
72a8cb30
BB
3638 l = cgroup_pidlist_find(cgrp, type);
3639 if (!l) {
d1d9fd33 3640 pidlist_free(array);
72a8cb30 3641 return -ENOMEM;
102a775e 3642 }
72a8cb30 3643 /* store array, freeing old if necessary - lock already held */
d1d9fd33 3644 pidlist_free(l->list);
102a775e
BB
3645 l->list = array;
3646 l->length = length;
3647 l->use_count++;
3648 up_write(&l->mutex);
72a8cb30 3649 *lp = l;
102a775e 3650 return 0;
bbcb81d0
PM
3651}
3652
846c7bb0 3653/**
a043e3b2 3654 * cgroupstats_build - build and fill cgroupstats
846c7bb0
BS
3655 * @stats: cgroupstats to fill information into
3656 * @dentry: A dentry entry belonging to the cgroup for which stats have
3657 * been requested.
a043e3b2
LZ
3658 *
3659 * Build and fill cgroupstats so that taskstats can export it to user
3660 * space.
846c7bb0
BS
3661 */
3662int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
3663{
3664 int ret = -EINVAL;
bd89aabc 3665 struct cgroup *cgrp;
846c7bb0
BS
3666 struct cgroup_iter it;
3667 struct task_struct *tsk;
33d283be 3668
846c7bb0 3669 /*
33d283be
LZ
3670 * Validate dentry by checking the superblock operations,
3671 * and make sure it's a directory.
846c7bb0 3672 */
33d283be
LZ
3673 if (dentry->d_sb->s_op != &cgroup_ops ||
3674 !S_ISDIR(dentry->d_inode->i_mode))
846c7bb0
BS
3675 goto err;
3676
3677 ret = 0;
bd89aabc 3678 cgrp = dentry->d_fsdata;
846c7bb0 3679
bd89aabc
PM
3680 cgroup_iter_start(cgrp, &it);
3681 while ((tsk = cgroup_iter_next(cgrp, &it))) {
846c7bb0
BS
3682 switch (tsk->state) {
3683 case TASK_RUNNING:
3684 stats->nr_running++;
3685 break;
3686 case TASK_INTERRUPTIBLE:
3687 stats->nr_sleeping++;
3688 break;
3689 case TASK_UNINTERRUPTIBLE:
3690 stats->nr_uninterruptible++;
3691 break;
3692 case TASK_STOPPED:
3693 stats->nr_stopped++;
3694 break;
3695 default:
3696 if (delayacct_is_task_waiting_on_io(tsk))
3697 stats->nr_io_wait++;
3698 break;
3699 }
3700 }
bd89aabc 3701 cgroup_iter_end(cgrp, &it);
846c7bb0 3702
846c7bb0
BS
3703err:
3704 return ret;
3705}
3706
8f3ff208 3707
bbcb81d0 3708/*
102a775e 3709 * seq_file methods for the tasks/procs files. The seq_file position is the
cc31edce 3710 * next pid to display; the seq_file iterator is a pointer to the pid
102a775e 3711 * in the cgroup->l->list array.
bbcb81d0 3712 */
cc31edce 3713
102a775e 3714static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
bbcb81d0 3715{
cc31edce
PM
3716 /*
3717 * Initially we receive a position value that corresponds to
3718 * one more than the last pid shown (or 0 on the first call or
3719 * after a seek to the start). Use a binary-search to find the
3720 * next pid to display, if any
3721 */
102a775e 3722 struct cgroup_pidlist *l = s->private;
cc31edce
PM
3723 int index = 0, pid = *pos;
3724 int *iter;
3725
102a775e 3726 down_read(&l->mutex);
cc31edce 3727 if (pid) {
102a775e 3728 int end = l->length;
20777766 3729
cc31edce
PM
3730 while (index < end) {
3731 int mid = (index + end) / 2;
102a775e 3732 if (l->list[mid] == pid) {
cc31edce
PM
3733 index = mid;
3734 break;
102a775e 3735 } else if (l->list[mid] <= pid)
cc31edce
PM
3736 index = mid + 1;
3737 else
3738 end = mid;
3739 }
3740 }
3741 /* If we're off the end of the array, we're done */
102a775e 3742 if (index >= l->length)
cc31edce
PM
3743 return NULL;
3744 /* Update the abstract position to be the actual pid that we found */
102a775e 3745 iter = l->list + index;
cc31edce
PM
3746 *pos = *iter;
3747 return iter;
3748}
3749
102a775e 3750static void cgroup_pidlist_stop(struct seq_file *s, void *v)
cc31edce 3751{
102a775e
BB
3752 struct cgroup_pidlist *l = s->private;
3753 up_read(&l->mutex);
cc31edce
PM
3754}
3755
102a775e 3756static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
cc31edce 3757{
102a775e
BB
3758 struct cgroup_pidlist *l = s->private;
3759 pid_t *p = v;
3760 pid_t *end = l->list + l->length;
cc31edce
PM
3761 /*
3762 * Advance to the next pid in the array. If this goes off the
3763 * end, we're done
3764 */
3765 p++;
3766 if (p >= end) {
3767 return NULL;
3768 } else {
3769 *pos = *p;
3770 return p;
3771 }
3772}
3773
102a775e 3774static int cgroup_pidlist_show(struct seq_file *s, void *v)
cc31edce
PM
3775{
3776 return seq_printf(s, "%d\n", *(int *)v);
3777}
bbcb81d0 3778
102a775e
BB
3779/*
3780 * seq_operations functions for iterating on pidlists through seq_file -
3781 * independent of whether it's tasks or procs
3782 */
3783static const struct seq_operations cgroup_pidlist_seq_operations = {
3784 .start = cgroup_pidlist_start,
3785 .stop = cgroup_pidlist_stop,
3786 .next = cgroup_pidlist_next,
3787 .show = cgroup_pidlist_show,
cc31edce
PM
3788};
3789
102a775e 3790static void cgroup_release_pid_array(struct cgroup_pidlist *l)
cc31edce 3791{
72a8cb30
BB
3792 /*
3793 * the case where we're the last user of this particular pidlist will
3794 * have us remove it from the cgroup's list, which entails taking the
3795 * mutex. since in pidlist_find the pidlist->lock depends on cgroup->
3796 * pidlist_mutex, we have to take pidlist_mutex first.
3797 */
3798 mutex_lock(&l->owner->pidlist_mutex);
102a775e
BB
3799 down_write(&l->mutex);
3800 BUG_ON(!l->use_count);
3801 if (!--l->use_count) {
72a8cb30
BB
3802 /* we're the last user if refcount is 0; remove and free */
3803 list_del(&l->links);
3804 mutex_unlock(&l->owner->pidlist_mutex);
d1d9fd33 3805 pidlist_free(l->list);
72a8cb30
BB
3806 put_pid_ns(l->key.ns);
3807 up_write(&l->mutex);
3808 kfree(l);
3809 return;
cc31edce 3810 }
72a8cb30 3811 mutex_unlock(&l->owner->pidlist_mutex);
102a775e 3812 up_write(&l->mutex);
bbcb81d0
PM
3813}
3814
102a775e 3815static int cgroup_pidlist_release(struct inode *inode, struct file *file)
cc31edce 3816{
102a775e 3817 struct cgroup_pidlist *l;
cc31edce
PM
3818 if (!(file->f_mode & FMODE_READ))
3819 return 0;
102a775e
BB
3820 /*
3821 * the seq_file will only be initialized if the file was opened for
3822 * reading; hence we check if it's not null only in that case.
3823 */
3824 l = ((struct seq_file *)file->private_data)->private;
3825 cgroup_release_pid_array(l);
cc31edce
PM
3826 return seq_release(inode, file);
3827}
3828
102a775e 3829static const struct file_operations cgroup_pidlist_operations = {
cc31edce
PM
3830 .read = seq_read,
3831 .llseek = seq_lseek,
3832 .write = cgroup_file_write,
102a775e 3833 .release = cgroup_pidlist_release,
cc31edce
PM
3834};
3835
bbcb81d0 3836/*
102a775e
BB
3837 * The following functions handle opens on a file that displays a pidlist
3838 * (tasks or procs). Prepare an array of the process/thread IDs of whoever's
3839 * in the cgroup.
bbcb81d0 3840 */
102a775e 3841/* helper function for the two below it */
72a8cb30 3842static int cgroup_pidlist_open(struct file *file, enum cgroup_filetype type)
bbcb81d0 3843{
bd89aabc 3844 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
72a8cb30 3845 struct cgroup_pidlist *l;
cc31edce 3846 int retval;
bbcb81d0 3847
cc31edce 3848 /* Nothing to do for write-only files */
bbcb81d0
PM
3849 if (!(file->f_mode & FMODE_READ))
3850 return 0;
3851
102a775e 3852 /* have the array populated */
72a8cb30 3853 retval = pidlist_array_load(cgrp, type, &l);
102a775e
BB
3854 if (retval)
3855 return retval;
3856 /* configure file information */
3857 file->f_op = &cgroup_pidlist_operations;
cc31edce 3858
102a775e 3859 retval = seq_open(file, &cgroup_pidlist_seq_operations);
cc31edce 3860 if (retval) {
102a775e 3861 cgroup_release_pid_array(l);
cc31edce 3862 return retval;
bbcb81d0 3863 }
102a775e 3864 ((struct seq_file *)file->private_data)->private = l;
bbcb81d0
PM
3865 return 0;
3866}
102a775e
BB
3867static int cgroup_tasks_open(struct inode *unused, struct file *file)
3868{
72a8cb30 3869 return cgroup_pidlist_open(file, CGROUP_FILE_TASKS);
102a775e
BB
3870}
3871static int cgroup_procs_open(struct inode *unused, struct file *file)
3872{
72a8cb30 3873 return cgroup_pidlist_open(file, CGROUP_FILE_PROCS);
102a775e 3874}
bbcb81d0 3875
bd89aabc 3876static u64 cgroup_read_notify_on_release(struct cgroup *cgrp,
81a6a5cd
PM
3877 struct cftype *cft)
3878{
bd89aabc 3879 return notify_on_release(cgrp);
81a6a5cd
PM
3880}
3881
6379c106
PM
3882static int cgroup_write_notify_on_release(struct cgroup *cgrp,
3883 struct cftype *cft,
3884 u64 val)
3885{
3886 clear_bit(CGRP_RELEASABLE, &cgrp->flags);
3887 if (val)
3888 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3889 else
3890 clear_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3891 return 0;
3892}
3893
1c8158ee
LZ
3894/*
3895 * When dput() is called asynchronously, if umount has been done and
3896 * then deactivate_super() in cgroup_free_fn() kills the superblock,
3897 * there's a small window that vfs will see the root dentry with non-zero
3898 * refcnt and trigger BUG().
3899 *
3900 * That's why we hold a reference before dput() and drop it right after.
3901 */
3902static void cgroup_dput(struct cgroup *cgrp)
3903{
3904 struct super_block *sb = cgrp->root->sb;
3905
3906 atomic_inc(&sb->s_active);
3907 dput(cgrp->dentry);
3908 deactivate_super(sb);
3909}
3910
0dea1168
KS
3911/*
3912 * Unregister event and free resources.
3913 *
3914 * Gets called from workqueue.
3915 */
3916static void cgroup_event_remove(struct work_struct *work)
3917{
3918 struct cgroup_event *event = container_of(work, struct cgroup_event,
3919 remove);
3920 struct cgroup *cgrp = event->cgrp;
3921
810cbee4
LZ
3922 remove_wait_queue(event->wqh, &event->wait);
3923
0dea1168
KS
3924 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3925
810cbee4
LZ
3926 /* Notify userspace the event is going away. */
3927 eventfd_signal(event->eventfd, 1);
3928
0dea1168 3929 eventfd_ctx_put(event->eventfd);
0dea1168 3930 kfree(event);
1c8158ee 3931 cgroup_dput(cgrp);
0dea1168
KS
3932}
3933
3934/*
3935 * Gets called on POLLHUP on eventfd when user closes it.
3936 *
3937 * Called with wqh->lock held and interrupts disabled.
3938 */
3939static int cgroup_event_wake(wait_queue_t *wait, unsigned mode,
3940 int sync, void *key)
3941{
3942 struct cgroup_event *event = container_of(wait,
3943 struct cgroup_event, wait);
3944 struct cgroup *cgrp = event->cgrp;
3945 unsigned long flags = (unsigned long)key;
3946
3947 if (flags & POLLHUP) {
0dea1168 3948 /*
810cbee4
LZ
3949 * If the event has been detached at cgroup removal, we
3950 * can simply return knowing the other side will cleanup
3951 * for us.
3952 *
3953 * We can't race against event freeing since the other
3954 * side will require wqh->lock via remove_wait_queue(),
3955 * which we hold.
0dea1168 3956 */
810cbee4
LZ
3957 spin_lock(&cgrp->event_list_lock);
3958 if (!list_empty(&event->list)) {
3959 list_del_init(&event->list);
3960 /*
3961 * We are in atomic context, but cgroup_event_remove()
3962 * may sleep, so we have to call it in workqueue.
3963 */
3964 schedule_work(&event->remove);
3965 }
3966 spin_unlock(&cgrp->event_list_lock);
0dea1168
KS
3967 }
3968
3969 return 0;
3970}
3971
3972static void cgroup_event_ptable_queue_proc(struct file *file,
3973 wait_queue_head_t *wqh, poll_table *pt)
3974{
3975 struct cgroup_event *event = container_of(pt,
3976 struct cgroup_event, pt);
3977
3978 event->wqh = wqh;
3979 add_wait_queue(wqh, &event->wait);
3980}
3981
3982/*
3983 * Parse input and register new cgroup event handler.
3984 *
3985 * Input must be in format '<event_fd> <control_fd> <args>'.
3986 * Interpretation of args is defined by control file implementation.
3987 */
3988static int cgroup_write_event_control(struct cgroup *cgrp, struct cftype *cft,
3989 const char *buffer)
3990{
3991 struct cgroup_event *event = NULL;
f169007b 3992 struct cgroup *cgrp_cfile;
0dea1168
KS
3993 unsigned int efd, cfd;
3994 struct file *efile = NULL;
3995 struct file *cfile = NULL;
3996 char *endp;
3997 int ret;
3998
3999 efd = simple_strtoul(buffer, &endp, 10);
4000 if (*endp != ' ')
4001 return -EINVAL;
4002 buffer = endp + 1;
4003
4004 cfd = simple_strtoul(buffer, &endp, 10);
4005 if ((*endp != ' ') && (*endp != '\0'))
4006 return -EINVAL;
4007 buffer = endp + 1;
4008
4009 event = kzalloc(sizeof(*event), GFP_KERNEL);
4010 if (!event)
4011 return -ENOMEM;
4012 event->cgrp = cgrp;
4013 INIT_LIST_HEAD(&event->list);
4014 init_poll_funcptr(&event->pt, cgroup_event_ptable_queue_proc);
4015 init_waitqueue_func_entry(&event->wait, cgroup_event_wake);
4016 INIT_WORK(&event->remove, cgroup_event_remove);
4017
4018 efile = eventfd_fget(efd);
4019 if (IS_ERR(efile)) {
4020 ret = PTR_ERR(efile);
4021 goto fail;
4022 }
4023
4024 event->eventfd = eventfd_ctx_fileget(efile);
4025 if (IS_ERR(event->eventfd)) {
4026 ret = PTR_ERR(event->eventfd);
4027 goto fail;
4028 }
4029
4030 cfile = fget(cfd);
4031 if (!cfile) {
4032 ret = -EBADF;
4033 goto fail;
4034 }
4035
4036 /* the process need read permission on control file */
3bfa784a 4037 /* AV: shouldn't we check that it's been opened for read instead? */
496ad9aa 4038 ret = inode_permission(file_inode(cfile), MAY_READ);
0dea1168
KS
4039 if (ret < 0)
4040 goto fail;
4041
4042 event->cft = __file_cft(cfile);
4043 if (IS_ERR(event->cft)) {
4044 ret = PTR_ERR(event->cft);
4045 goto fail;
4046 }
4047
f169007b
LZ
4048 /*
4049 * The file to be monitored must be in the same cgroup as
4050 * cgroup.event_control is.
4051 */
4052 cgrp_cfile = __d_cgrp(cfile->f_dentry->d_parent);
4053 if (cgrp_cfile != cgrp) {
4054 ret = -EINVAL;
4055 goto fail;
4056 }
4057
0dea1168
KS
4058 if (!event->cft->register_event || !event->cft->unregister_event) {
4059 ret = -EINVAL;
4060 goto fail;
4061 }
4062
4063 ret = event->cft->register_event(cgrp, event->cft,
4064 event->eventfd, buffer);
4065 if (ret)
4066 goto fail;
4067
7ef70e48 4068 efile->f_op->poll(efile, &event->pt);
0dea1168 4069
a0a4db54
KS
4070 /*
4071 * Events should be removed after rmdir of cgroup directory, but before
4072 * destroying subsystem state objects. Let's take reference to cgroup
4073 * directory dentry to do that.
4074 */
4075 dget(cgrp->dentry);
4076
0dea1168
KS
4077 spin_lock(&cgrp->event_list_lock);
4078 list_add(&event->list, &cgrp->event_list);
4079 spin_unlock(&cgrp->event_list_lock);
4080
4081 fput(cfile);
4082 fput(efile);
4083
4084 return 0;
4085
4086fail:
4087 if (cfile)
4088 fput(cfile);
4089
4090 if (event && event->eventfd && !IS_ERR(event->eventfd))
4091 eventfd_ctx_put(event->eventfd);
4092
4093 if (!IS_ERR_OR_NULL(efile))
4094 fput(efile);
4095
4096 kfree(event);
4097
4098 return ret;
4099}
4100
97978e6d
DL
4101static u64 cgroup_clone_children_read(struct cgroup *cgrp,
4102 struct cftype *cft)
4103{
2260e7fc 4104 return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
97978e6d
DL
4105}
4106
4107static int cgroup_clone_children_write(struct cgroup *cgrp,
4108 struct cftype *cft,
4109 u64 val)
4110{
4111 if (val)
2260e7fc 4112 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
97978e6d 4113 else
2260e7fc 4114 clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
97978e6d
DL
4115 return 0;
4116}
4117
d5c56ced 4118static struct cftype cgroup_base_files[] = {
81a6a5cd 4119 {
d5c56ced 4120 .name = "cgroup.procs",
102a775e 4121 .open = cgroup_procs_open,
74a1166d 4122 .write_u64 = cgroup_procs_write,
102a775e 4123 .release = cgroup_pidlist_release,
74a1166d 4124 .mode = S_IRUGO | S_IWUSR,
102a775e 4125 },
81a6a5cd 4126 {
d5c56ced 4127 .name = "cgroup.event_control",
0dea1168
KS
4128 .write_string = cgroup_write_event_control,
4129 .mode = S_IWUGO,
4130 },
97978e6d
DL
4131 {
4132 .name = "cgroup.clone_children",
873fe09e 4133 .flags = CFTYPE_INSANE,
97978e6d
DL
4134 .read_u64 = cgroup_clone_children_read,
4135 .write_u64 = cgroup_clone_children_write,
4136 },
873fe09e
TH
4137 {
4138 .name = "cgroup.sane_behavior",
4139 .flags = CFTYPE_ONLY_ON_ROOT,
4140 .read_seq_string = cgroup_sane_behavior_show,
4141 },
d5c56ced
TH
4142
4143 /*
4144 * Historical crazy stuff. These don't have "cgroup." prefix and
4145 * don't exist if sane_behavior. If you're depending on these, be
4146 * prepared to be burned.
4147 */
4148 {
4149 .name = "tasks",
4150 .flags = CFTYPE_INSANE, /* use "procs" instead */
4151 .open = cgroup_tasks_open,
4152 .write_u64 = cgroup_tasks_write,
4153 .release = cgroup_pidlist_release,
4154 .mode = S_IRUGO | S_IWUSR,
4155 },
4156 {
4157 .name = "notify_on_release",
4158 .flags = CFTYPE_INSANE,
4159 .read_u64 = cgroup_read_notify_on_release,
4160 .write_u64 = cgroup_write_notify_on_release,
4161 },
6e6ff25b
TH
4162 {
4163 .name = "release_agent",
cc5943a7 4164 .flags = CFTYPE_INSANE | CFTYPE_ONLY_ON_ROOT,
6e6ff25b
TH
4165 .read_seq_string = cgroup_release_agent_show,
4166 .write_string = cgroup_release_agent_write,
4167 .max_write_len = PATH_MAX,
4168 },
db0416b6 4169 { } /* terminate */
bbcb81d0
PM
4170};
4171
13af07df 4172/**
628f7cd4 4173 * cgroup_populate_dir - create subsys files in a cgroup directory
13af07df 4174 * @cgrp: target cgroup
13af07df 4175 * @subsys_mask: mask of the subsystem ids whose files should be added
bee55099
TH
4176 *
4177 * On failure, no file is added.
13af07df 4178 */
628f7cd4 4179static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask)
ddbcc7e8 4180{
ddbcc7e8 4181 struct cgroup_subsys *ss;
b420ba7d 4182 int i, ret = 0;
ddbcc7e8 4183
8e3f6541 4184 /* process cftsets of each subsystem */
b420ba7d 4185 for_each_subsys(ss, i) {
8e3f6541 4186 struct cftype_set *set;
b420ba7d
TH
4187
4188 if (!test_bit(i, &subsys_mask))
13af07df 4189 continue;
8e3f6541 4190
bee55099
TH
4191 list_for_each_entry(set, &ss->cftsets, node) {
4192 ret = cgroup_addrm_files(cgrp, ss, set->cfts, true);
4193 if (ret < 0)
4194 goto err;
4195 }
ddbcc7e8 4196 }
8e3f6541 4197
38460b48 4198 /* This cgroup is ready now */
5549c497 4199 for_each_root_subsys(cgrp->root, ss) {
38460b48 4200 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
a4ea1cc9
TH
4201 struct css_id *id = rcu_dereference_protected(css->id, true);
4202
38460b48
KH
4203 /*
4204 * Update id->css pointer and make this css visible from
4205 * CSS ID functions. This pointer will be dereferened
4206 * from RCU-read-side without locks.
4207 */
a4ea1cc9
TH
4208 if (id)
4209 rcu_assign_pointer(id->css, css);
38460b48 4210 }
ddbcc7e8
PM
4211
4212 return 0;
bee55099
TH
4213err:
4214 cgroup_clear_dir(cgrp, subsys_mask);
4215 return ret;
ddbcc7e8
PM
4216}
4217
48ddbe19
TH
4218static void css_dput_fn(struct work_struct *work)
4219{
4220 struct cgroup_subsys_state *css =
4221 container_of(work, struct cgroup_subsys_state, dput_work);
4222
1c8158ee 4223 cgroup_dput(css->cgroup);
48ddbe19
TH
4224}
4225
d3daf28d
TH
4226static void css_release(struct percpu_ref *ref)
4227{
4228 struct cgroup_subsys_state *css =
4229 container_of(ref, struct cgroup_subsys_state, refcnt);
4230
4231 schedule_work(&css->dput_work);
4232}
4233
ddbcc7e8
PM
4234static void init_cgroup_css(struct cgroup_subsys_state *css,
4235 struct cgroup_subsys *ss,
bd89aabc 4236 struct cgroup *cgrp)
ddbcc7e8 4237{
bd89aabc 4238 css->cgroup = cgrp;
ddbcc7e8 4239 css->flags = 0;
38460b48 4240 css->id = NULL;
9871bf95 4241 if (cgrp == cgroup_dummy_top)
38b53aba 4242 css->flags |= CSS_ROOT;
bd89aabc
PM
4243 BUG_ON(cgrp->subsys[ss->subsys_id]);
4244 cgrp->subsys[ss->subsys_id] = css;
48ddbe19
TH
4245
4246 /*
ed957793
TH
4247 * css holds an extra ref to @cgrp->dentry which is put on the last
4248 * css_put(). dput() requires process context, which css_put() may
4249 * be called without. @css->dput_work will be used to invoke
4250 * dput() asynchronously from css_put().
48ddbe19
TH
4251 */
4252 INIT_WORK(&css->dput_work, css_dput_fn);
ddbcc7e8
PM
4253}
4254
b1929db4
TH
4255/* invoke ->post_create() on a new CSS and mark it online if successful */
4256static int online_css(struct cgroup_subsys *ss, struct cgroup *cgrp)
a31f2d3f 4257{
b1929db4
TH
4258 int ret = 0;
4259
a31f2d3f
TH
4260 lockdep_assert_held(&cgroup_mutex);
4261
92fb9748
TH
4262 if (ss->css_online)
4263 ret = ss->css_online(cgrp);
b1929db4
TH
4264 if (!ret)
4265 cgrp->subsys[ss->subsys_id]->flags |= CSS_ONLINE;
4266 return ret;
a31f2d3f
TH
4267}
4268
4269/* if the CSS is online, invoke ->pre_destory() on it and mark it offline */
4270static void offline_css(struct cgroup_subsys *ss, struct cgroup *cgrp)
4271 __releases(&cgroup_mutex) __acquires(&cgroup_mutex)
4272{
4273 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
4274
4275 lockdep_assert_held(&cgroup_mutex);
4276
4277 if (!(css->flags & CSS_ONLINE))
4278 return;
4279
d7eeac19 4280 if (ss->css_offline)
92fb9748 4281 ss->css_offline(cgrp);
a31f2d3f
TH
4282
4283 cgrp->subsys[ss->subsys_id]->flags &= ~CSS_ONLINE;
4284}
4285
ddbcc7e8 4286/*
a043e3b2
LZ
4287 * cgroup_create - create a cgroup
4288 * @parent: cgroup that will be parent of the new cgroup
4289 * @dentry: dentry of the new cgroup
4290 * @mode: mode to set on new inode
ddbcc7e8 4291 *
a043e3b2 4292 * Must be called with the mutex on the parent inode held
ddbcc7e8 4293 */
ddbcc7e8 4294static long cgroup_create(struct cgroup *parent, struct dentry *dentry,
a5e7ed32 4295 umode_t mode)
ddbcc7e8 4296{
bd89aabc 4297 struct cgroup *cgrp;
65dff759 4298 struct cgroup_name *name;
ddbcc7e8
PM
4299 struct cgroupfs_root *root = parent->root;
4300 int err = 0;
4301 struct cgroup_subsys *ss;
4302 struct super_block *sb = root->sb;
4303
0a950f65 4304 /* allocate the cgroup and its ID, 0 is reserved for the root */
bd89aabc
PM
4305 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
4306 if (!cgrp)
ddbcc7e8
PM
4307 return -ENOMEM;
4308
65dff759
LZ
4309 name = cgroup_alloc_name(dentry);
4310 if (!name)
4311 goto err_free_cgrp;
4312 rcu_assign_pointer(cgrp->name, name);
4313
0a950f65
TH
4314 cgrp->id = ida_simple_get(&root->cgroup_ida, 1, 0, GFP_KERNEL);
4315 if (cgrp->id < 0)
65dff759 4316 goto err_free_name;
0a950f65 4317
976c06bc
TH
4318 /*
4319 * Only live parents can have children. Note that the liveliness
4320 * check isn't strictly necessary because cgroup_mkdir() and
4321 * cgroup_rmdir() are fully synchronized by i_mutex; however, do it
4322 * anyway so that locking is contained inside cgroup proper and we
4323 * don't get nasty surprises if we ever grow another caller.
4324 */
4325 if (!cgroup_lock_live_group(parent)) {
4326 err = -ENODEV;
0a950f65 4327 goto err_free_id;
976c06bc
TH
4328 }
4329
ddbcc7e8
PM
4330 /* Grab a reference on the superblock so the hierarchy doesn't
4331 * get deleted on unmount if there are child cgroups. This
4332 * can be done outside cgroup_mutex, since the sb can't
4333 * disappear while someone has an open control file on the
4334 * fs */
4335 atomic_inc(&sb->s_active);
4336
cc31edce 4337 init_cgroup_housekeeping(cgrp);
ddbcc7e8 4338
fe1c06ca
LZ
4339 dentry->d_fsdata = cgrp;
4340 cgrp->dentry = dentry;
4341
bd89aabc
PM
4342 cgrp->parent = parent;
4343 cgrp->root = parent->root;
ddbcc7e8 4344
b6abdb0e
LZ
4345 if (notify_on_release(parent))
4346 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
4347
2260e7fc
TH
4348 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags))
4349 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
97978e6d 4350
5549c497 4351 for_each_root_subsys(root, ss) {
8c7f6edb 4352 struct cgroup_subsys_state *css;
4528fd05 4353
92fb9748 4354 css = ss->css_alloc(cgrp);
ddbcc7e8
PM
4355 if (IS_ERR(css)) {
4356 err = PTR_ERR(css);
4b8b47eb 4357 goto err_free_all;
ddbcc7e8 4358 }
d3daf28d
TH
4359
4360 err = percpu_ref_init(&css->refcnt, css_release);
4361 if (err)
4362 goto err_free_all;
4363
bd89aabc 4364 init_cgroup_css(css, ss, cgrp);
d3daf28d 4365
4528fd05
LZ
4366 if (ss->use_id) {
4367 err = alloc_css_id(ss, parent, cgrp);
4368 if (err)
4b8b47eb 4369 goto err_free_all;
4528fd05 4370 }
ddbcc7e8
PM
4371 }
4372
4e139afc
TH
4373 /*
4374 * Create directory. cgroup_create_file() returns with the new
4375 * directory locked on success so that it can be populated without
4376 * dropping cgroup_mutex.
4377 */
28fd6f30 4378 err = cgroup_create_file(dentry, S_IFDIR | mode, sb);
ddbcc7e8 4379 if (err < 0)
4b8b47eb 4380 goto err_free_all;
4e139afc 4381 lockdep_assert_held(&dentry->d_inode->i_mutex);
ddbcc7e8 4382
00356bd5 4383 cgrp->serial_nr = cgroup_serial_nr_next++;
53fa5261 4384
4e139afc 4385 /* allocation complete, commit to creation */
4e139afc
TH
4386 list_add_tail_rcu(&cgrp->sibling, &cgrp->parent->children);
4387 root->number_of_cgroups++;
28fd6f30 4388
b1929db4 4389 /* each css holds a ref to the cgroup's dentry */
5549c497 4390 for_each_root_subsys(root, ss)
ed957793 4391 dget(dentry);
48ddbe19 4392
415cf07a
LZ
4393 /* hold a ref to the parent's dentry */
4394 dget(parent->dentry);
4395
b1929db4 4396 /* creation succeeded, notify subsystems */
5549c497 4397 for_each_root_subsys(root, ss) {
b1929db4
TH
4398 err = online_css(ss, cgrp);
4399 if (err)
4400 goto err_destroy;
1f869e87
GC
4401
4402 if (ss->broken_hierarchy && !ss->warned_broken_hierarchy &&
4403 parent->parent) {
4404 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",
4405 current->comm, current->pid, ss->name);
4406 if (!strcmp(ss->name, "memory"))
4407 pr_warning("cgroup: \"memory\" requires setting use_hierarchy to 1 on the root.\n");
4408 ss->warned_broken_hierarchy = true;
4409 }
a8638030
TH
4410 }
4411
628f7cd4
TH
4412 err = cgroup_addrm_files(cgrp, NULL, cgroup_base_files, true);
4413 if (err)
4414 goto err_destroy;
4415
4416 err = cgroup_populate_dir(cgrp, root->subsys_mask);
4b8b47eb
TH
4417 if (err)
4418 goto err_destroy;
ddbcc7e8
PM
4419
4420 mutex_unlock(&cgroup_mutex);
bd89aabc 4421 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
ddbcc7e8
PM
4422
4423 return 0;
4424
4b8b47eb 4425err_free_all:
5549c497 4426 for_each_root_subsys(root, ss) {
d3daf28d
TH
4427 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
4428
4429 if (css) {
4430 percpu_ref_cancel_init(&css->refcnt);
92fb9748 4431 ss->css_free(cgrp);
d3daf28d 4432 }
ddbcc7e8 4433 }
ddbcc7e8 4434 mutex_unlock(&cgroup_mutex);
ddbcc7e8
PM
4435 /* Release the reference count that we took on the superblock */
4436 deactivate_super(sb);
0a950f65
TH
4437err_free_id:
4438 ida_simple_remove(&root->cgroup_ida, cgrp->id);
65dff759
LZ
4439err_free_name:
4440 kfree(rcu_dereference_raw(cgrp->name));
4b8b47eb 4441err_free_cgrp:
bd89aabc 4442 kfree(cgrp);
ddbcc7e8 4443 return err;
4b8b47eb
TH
4444
4445err_destroy:
4446 cgroup_destroy_locked(cgrp);
4447 mutex_unlock(&cgroup_mutex);
4448 mutex_unlock(&dentry->d_inode->i_mutex);
4449 return err;
ddbcc7e8
PM
4450}
4451
18bb1db3 4452static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
ddbcc7e8
PM
4453{
4454 struct cgroup *c_parent = dentry->d_parent->d_fsdata;
4455
4456 /* the vfs holds inode->i_mutex already */
4457 return cgroup_create(c_parent, dentry, mode | S_IFDIR);
4458}
4459
d3daf28d
TH
4460static void cgroup_css_killed(struct cgroup *cgrp)
4461{
4462 if (!atomic_dec_and_test(&cgrp->css_kill_cnt))
4463 return;
4464
4465 /* percpu ref's of all css's are killed, kick off the next step */
4466 INIT_WORK(&cgrp->destroy_work, cgroup_offline_fn);
4467 schedule_work(&cgrp->destroy_work);
4468}
4469
4470static void css_ref_killed_fn(struct percpu_ref *ref)
4471{
4472 struct cgroup_subsys_state *css =
4473 container_of(ref, struct cgroup_subsys_state, refcnt);
4474
4475 cgroup_css_killed(css->cgroup);
4476}
4477
4478/**
4479 * cgroup_destroy_locked - the first stage of cgroup destruction
4480 * @cgrp: cgroup to be destroyed
4481 *
4482 * css's make use of percpu refcnts whose killing latency shouldn't be
4483 * exposed to userland and are RCU protected. Also, cgroup core needs to
4484 * guarantee that css_tryget() won't succeed by the time ->css_offline() is
4485 * invoked. To satisfy all the requirements, destruction is implemented in
4486 * the following two steps.
4487 *
4488 * s1. Verify @cgrp can be destroyed and mark it dying. Remove all
4489 * userland visible parts and start killing the percpu refcnts of
4490 * css's. Set up so that the next stage will be kicked off once all
4491 * the percpu refcnts are confirmed to be killed.
4492 *
4493 * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the
4494 * rest of destruction. Once all cgroup references are gone, the
4495 * cgroup is RCU-freed.
4496 *
4497 * This function implements s1. After this step, @cgrp is gone as far as
4498 * the userland is concerned and a new cgroup with the same name may be
4499 * created. As cgroup doesn't care about the names internally, this
4500 * doesn't cause any problem.
4501 */
42809dd4
TH
4502static int cgroup_destroy_locked(struct cgroup *cgrp)
4503 __releases(&cgroup_mutex) __acquires(&cgroup_mutex)
ddbcc7e8 4504{
42809dd4 4505 struct dentry *d = cgrp->dentry;
4ab78683 4506 struct cgroup_event *event, *tmp;
ed957793 4507 struct cgroup_subsys *ss;
ddd69148 4508 bool empty;
ddbcc7e8 4509
42809dd4
TH
4510 lockdep_assert_held(&d->d_inode->i_mutex);
4511 lockdep_assert_held(&cgroup_mutex);
4512
ddd69148 4513 /*
6f3d828f
TH
4514 * css_set_lock synchronizes access to ->cset_links and prevents
4515 * @cgrp from being removed while __put_css_set() is in progress.
ddd69148
TH
4516 */
4517 read_lock(&css_set_lock);
6f3d828f 4518 empty = list_empty(&cgrp->cset_links) && list_empty(&cgrp->children);
ddd69148
TH
4519 read_unlock(&css_set_lock);
4520 if (!empty)
ddbcc7e8 4521 return -EBUSY;
a043e3b2 4522
88703267 4523 /*
d3daf28d
TH
4524 * Block new css_tryget() by killing css refcnts. cgroup core
4525 * guarantees that, by the time ->css_offline() is invoked, no new
4526 * css reference will be given out via css_tryget(). We can't
4527 * simply call percpu_ref_kill() and proceed to offlining css's
4528 * because percpu_ref_kill() doesn't guarantee that the ref is seen
4529 * as killed on all CPUs on return.
4530 *
4531 * Use percpu_ref_kill_and_confirm() to get notifications as each
4532 * css is confirmed to be seen as killed on all CPUs. The
4533 * notification callback keeps track of the number of css's to be
4534 * killed and schedules cgroup_offline_fn() to perform the rest of
4535 * destruction once the percpu refs of all css's are confirmed to
4536 * be killed.
88703267 4537 */
d3daf28d 4538 atomic_set(&cgrp->css_kill_cnt, 1);
5549c497 4539 for_each_root_subsys(cgrp->root, ss) {
ed957793 4540 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
88703267 4541
d3daf28d
TH
4542 /*
4543 * Killing would put the base ref, but we need to keep it
4544 * alive until after ->css_offline.
4545 */
4546 percpu_ref_get(&css->refcnt);
4547
4548 atomic_inc(&cgrp->css_kill_cnt);
4549 percpu_ref_kill_and_confirm(&css->refcnt, css_ref_killed_fn);
88703267 4550 }
d3daf28d 4551 cgroup_css_killed(cgrp);
455050d2
TH
4552
4553 /*
4554 * Mark @cgrp dead. This prevents further task migration and child
4555 * creation by disabling cgroup_lock_live_group(). Note that
4556 * CGRP_DEAD assertion is depended upon by cgroup_next_sibling() to
4557 * resume iteration after dropping RCU read lock. See
4558 * cgroup_next_sibling() for details.
4559 */
54766d4a 4560 set_bit(CGRP_DEAD, &cgrp->flags);
ddbcc7e8 4561
455050d2
TH
4562 /* CGRP_DEAD is set, remove from ->release_list for the last time */
4563 raw_spin_lock(&release_list_lock);
4564 if (!list_empty(&cgrp->release_list))
4565 list_del_init(&cgrp->release_list);
4566 raw_spin_unlock(&release_list_lock);
4567
4568 /*
8f89140a
TH
4569 * Clear and remove @cgrp directory. The removal puts the base ref
4570 * but we aren't quite done with @cgrp yet, so hold onto it.
455050d2 4571 */
628f7cd4
TH
4572 cgroup_clear_dir(cgrp, cgrp->root->subsys_mask);
4573 cgroup_addrm_files(cgrp, NULL, cgroup_base_files, false);
455050d2
TH
4574 dget(d);
4575 cgroup_d_remove_dir(d);
4576
4577 /*
4578 * Unregister events and notify userspace.
4579 * Notify userspace about cgroup removing only after rmdir of cgroup
4580 * directory to avoid race between userspace and kernelspace.
4581 */
4582 spin_lock(&cgrp->event_list_lock);
4583 list_for_each_entry_safe(event, tmp, &cgrp->event_list, list) {
4584 list_del_init(&event->list);
4585 schedule_work(&event->remove);
4586 }
4587 spin_unlock(&cgrp->event_list_lock);
4588
ea15f8cc
TH
4589 return 0;
4590};
4591
d3daf28d
TH
4592/**
4593 * cgroup_offline_fn - the second step of cgroup destruction
4594 * @work: cgroup->destroy_free_work
4595 *
4596 * This function is invoked from a work item for a cgroup which is being
4597 * destroyed after the percpu refcnts of all css's are guaranteed to be
4598 * seen as killed on all CPUs, and performs the rest of destruction. This
4599 * is the second step of destruction described in the comment above
4600 * cgroup_destroy_locked().
4601 */
ea15f8cc
TH
4602static void cgroup_offline_fn(struct work_struct *work)
4603{
4604 struct cgroup *cgrp = container_of(work, struct cgroup, destroy_work);
4605 struct cgroup *parent = cgrp->parent;
4606 struct dentry *d = cgrp->dentry;
4607 struct cgroup_subsys *ss;
4608
4609 mutex_lock(&cgroup_mutex);
4610
d3daf28d
TH
4611 /*
4612 * css_tryget() is guaranteed to fail now. Tell subsystems to
4613 * initate destruction.
4614 */
5549c497 4615 for_each_root_subsys(cgrp->root, ss)
a31f2d3f 4616 offline_css(ss, cgrp);
ed957793
TH
4617
4618 /*
d3daf28d
TH
4619 * Put the css refs from cgroup_destroy_locked(). Each css holds
4620 * an extra reference to the cgroup's dentry and cgroup removal
4621 * proceeds regardless of css refs. On the last put of each css,
4622 * whenever that may be, the extra dentry ref is put so that dentry
4623 * destruction happens only after all css's are released.
ed957793 4624 */
5549c497 4625 for_each_root_subsys(cgrp->root, ss)
e9316080 4626 css_put(cgrp->subsys[ss->subsys_id]);
ddbcc7e8 4627
999cd8a4 4628 /* delete this cgroup from parent->children */
eb6fd504 4629 list_del_rcu(&cgrp->sibling);
b0ca5a84 4630
ddbcc7e8 4631 dput(d);
ddbcc7e8 4632
bd89aabc 4633 set_bit(CGRP_RELEASABLE, &parent->flags);
81a6a5cd
PM
4634 check_for_release(parent);
4635
ea15f8cc 4636 mutex_unlock(&cgroup_mutex);
ddbcc7e8
PM
4637}
4638
42809dd4
TH
4639static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry)
4640{
4641 int ret;
4642
4643 mutex_lock(&cgroup_mutex);
4644 ret = cgroup_destroy_locked(dentry->d_fsdata);
4645 mutex_unlock(&cgroup_mutex);
4646
4647 return ret;
4648}
4649
8e3f6541
TH
4650static void __init_or_module cgroup_init_cftsets(struct cgroup_subsys *ss)
4651{
4652 INIT_LIST_HEAD(&ss->cftsets);
4653
4654 /*
4655 * base_cftset is embedded in subsys itself, no need to worry about
4656 * deregistration.
4657 */
4658 if (ss->base_cftypes) {
4659 ss->base_cftset.cfts = ss->base_cftypes;
4660 list_add_tail(&ss->base_cftset.node, &ss->cftsets);
4661 }
4662}
4663
06a11920 4664static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
ddbcc7e8 4665{
ddbcc7e8 4666 struct cgroup_subsys_state *css;
cfe36bde
DC
4667
4668 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
ddbcc7e8 4669
648bb56d
TH
4670 mutex_lock(&cgroup_mutex);
4671
8e3f6541
TH
4672 /* init base cftset */
4673 cgroup_init_cftsets(ss);
4674
ddbcc7e8 4675 /* Create the top cgroup state for this subsystem */
9871bf95
TH
4676 list_add(&ss->sibling, &cgroup_dummy_root.subsys_list);
4677 ss->root = &cgroup_dummy_root;
4678 css = ss->css_alloc(cgroup_dummy_top);
ddbcc7e8
PM
4679 /* We don't handle early failures gracefully */
4680 BUG_ON(IS_ERR(css));
9871bf95 4681 init_cgroup_css(css, ss, cgroup_dummy_top);
ddbcc7e8 4682
e8d55fde 4683 /* Update the init_css_set to contain a subsys
817929ec 4684 * pointer to this state - since the subsystem is
e8d55fde
LZ
4685 * newly registered, all tasks and hence the
4686 * init_css_set is in the subsystem's top cgroup. */
b48c6a80 4687 init_css_set.subsys[ss->subsys_id] = css;
ddbcc7e8
PM
4688
4689 need_forkexit_callback |= ss->fork || ss->exit;
4690
e8d55fde
LZ
4691 /* At system boot, before all subsystems have been
4692 * registered, no tasks have been forked, so we don't
4693 * need to invoke fork callbacks here. */
4694 BUG_ON(!list_empty(&init_task.tasks));
4695
9871bf95 4696 BUG_ON(online_css(ss, cgroup_dummy_top));
a8638030 4697
648bb56d
TH
4698 mutex_unlock(&cgroup_mutex);
4699
e6a1105b
BB
4700 /* this function shouldn't be used with modular subsystems, since they
4701 * need to register a subsys_id, among other things */
4702 BUG_ON(ss->module);
4703}
4704
4705/**
4706 * cgroup_load_subsys: load and register a modular subsystem at runtime
4707 * @ss: the subsystem to load
4708 *
4709 * This function should be called in a modular subsystem's initcall. If the
88393161 4710 * subsystem is built as a module, it will be assigned a new subsys_id and set
e6a1105b
BB
4711 * up for use. If the subsystem is built-in anyway, work is delegated to the
4712 * simpler cgroup_init_subsys.
4713 */
4714int __init_or_module cgroup_load_subsys(struct cgroup_subsys *ss)
4715{
e6a1105b 4716 struct cgroup_subsys_state *css;
d19e19de 4717 int i, ret;
b67bfe0d 4718 struct hlist_node *tmp;
5abb8855 4719 struct css_set *cset;
0ac801fe 4720 unsigned long key;
e6a1105b
BB
4721
4722 /* check name and function validity */
4723 if (ss->name == NULL || strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN ||
92fb9748 4724 ss->css_alloc == NULL || ss->css_free == NULL)
e6a1105b
BB
4725 return -EINVAL;
4726
4727 /*
4728 * we don't support callbacks in modular subsystems. this check is
4729 * before the ss->module check for consistency; a subsystem that could
4730 * be a module should still have no callbacks even if the user isn't
4731 * compiling it as one.
4732 */
4733 if (ss->fork || ss->exit)
4734 return -EINVAL;
4735
4736 /*
4737 * an optionally modular subsystem is built-in: we want to do nothing,
4738 * since cgroup_init_subsys will have already taken care of it.
4739 */
4740 if (ss->module == NULL) {
be45c900 4741 /* a sanity check */
9871bf95 4742 BUG_ON(cgroup_subsys[ss->subsys_id] != ss);
e6a1105b
BB
4743 return 0;
4744 }
4745
8e3f6541
TH
4746 /* init base cftset */
4747 cgroup_init_cftsets(ss);
4748
e6a1105b 4749 mutex_lock(&cgroup_mutex);
9871bf95 4750 cgroup_subsys[ss->subsys_id] = ss;
e6a1105b
BB
4751
4752 /*
92fb9748 4753 * no ss->css_alloc seems to need anything important in the ss
9871bf95 4754 * struct, so this can happen first (i.e. before the dummy root
92fb9748 4755 * attachment).
e6a1105b 4756 */
9871bf95 4757 css = ss->css_alloc(cgroup_dummy_top);
e6a1105b 4758 if (IS_ERR(css)) {
9871bf95
TH
4759 /* failure case - need to deassign the cgroup_subsys[] slot. */
4760 cgroup_subsys[ss->subsys_id] = NULL;
e6a1105b
BB
4761 mutex_unlock(&cgroup_mutex);
4762 return PTR_ERR(css);
4763 }
4764
9871bf95
TH
4765 list_add(&ss->sibling, &cgroup_dummy_root.subsys_list);
4766 ss->root = &cgroup_dummy_root;
e6a1105b
BB
4767
4768 /* our new subsystem will be attached to the dummy hierarchy. */
9871bf95 4769 init_cgroup_css(css, ss, cgroup_dummy_top);
e6a1105b
BB
4770 /* init_idr must be after init_cgroup_css because it sets css->id. */
4771 if (ss->use_id) {
d19e19de
TH
4772 ret = cgroup_init_idr(ss, css);
4773 if (ret)
4774 goto err_unload;
e6a1105b
BB
4775 }
4776
4777 /*
4778 * Now we need to entangle the css into the existing css_sets. unlike
4779 * in cgroup_init_subsys, there are now multiple css_sets, so each one
4780 * will need a new pointer to it; done by iterating the css_set_table.
4781 * furthermore, modifying the existing css_sets will corrupt the hash
4782 * table state, so each changed css_set will need its hash recomputed.
4783 * this is all done under the css_set_lock.
4784 */
4785 write_lock(&css_set_lock);
5abb8855 4786 hash_for_each_safe(css_set_table, i, tmp, cset, hlist) {
0ac801fe 4787 /* skip entries that we already rehashed */
5abb8855 4788 if (cset->subsys[ss->subsys_id])
0ac801fe
LZ
4789 continue;
4790 /* remove existing entry */
5abb8855 4791 hash_del(&cset->hlist);
0ac801fe 4792 /* set new value */
5abb8855 4793 cset->subsys[ss->subsys_id] = css;
0ac801fe 4794 /* recompute hash and restore entry */
5abb8855
TH
4795 key = css_set_hash(cset->subsys);
4796 hash_add(css_set_table, &cset->hlist, key);
e6a1105b
BB
4797 }
4798 write_unlock(&css_set_lock);
4799
9871bf95 4800 ret = online_css(ss, cgroup_dummy_top);
b1929db4
TH
4801 if (ret)
4802 goto err_unload;
a8638030 4803
e6a1105b
BB
4804 /* success! */
4805 mutex_unlock(&cgroup_mutex);
4806 return 0;
d19e19de
TH
4807
4808err_unload:
4809 mutex_unlock(&cgroup_mutex);
4810 /* @ss can't be mounted here as try_module_get() would fail */
4811 cgroup_unload_subsys(ss);
4812 return ret;
ddbcc7e8 4813}
e6a1105b 4814EXPORT_SYMBOL_GPL(cgroup_load_subsys);
ddbcc7e8 4815
cf5d5941
BB
4816/**
4817 * cgroup_unload_subsys: unload a modular subsystem
4818 * @ss: the subsystem to unload
4819 *
4820 * This function should be called in a modular subsystem's exitcall. When this
4821 * function is invoked, the refcount on the subsystem's module will be 0, so
4822 * the subsystem will not be attached to any hierarchy.
4823 */
4824void cgroup_unload_subsys(struct cgroup_subsys *ss)
4825{
69d0206c 4826 struct cgrp_cset_link *link;
cf5d5941
BB
4827
4828 BUG_ON(ss->module == NULL);
4829
4830 /*
4831 * we shouldn't be called if the subsystem is in use, and the use of
4832 * try_module_get in parse_cgroupfs_options should ensure that it
4833 * doesn't start being used while we're killing it off.
4834 */
9871bf95 4835 BUG_ON(ss->root != &cgroup_dummy_root);
cf5d5941
BB
4836
4837 mutex_lock(&cgroup_mutex);
02ae7486 4838
9871bf95 4839 offline_css(ss, cgroup_dummy_top);
02ae7486 4840
c897ff68 4841 if (ss->use_id)
02ae7486 4842 idr_destroy(&ss->idr);
02ae7486 4843
cf5d5941 4844 /* deassign the subsys_id */
9871bf95 4845 cgroup_subsys[ss->subsys_id] = NULL;
cf5d5941 4846
9871bf95 4847 /* remove subsystem from the dummy root's list of subsystems */
8d258797 4848 list_del_init(&ss->sibling);
cf5d5941
BB
4849
4850 /*
9871bf95
TH
4851 * disentangle the css from all css_sets attached to the dummy
4852 * top. as in loading, we need to pay our respects to the hashtable
4853 * gods.
cf5d5941
BB
4854 */
4855 write_lock(&css_set_lock);
9871bf95 4856 list_for_each_entry(link, &cgroup_dummy_top->cset_links, cset_link) {
69d0206c 4857 struct css_set *cset = link->cset;
0ac801fe 4858 unsigned long key;
cf5d5941 4859
5abb8855
TH
4860 hash_del(&cset->hlist);
4861 cset->subsys[ss->subsys_id] = NULL;
4862 key = css_set_hash(cset->subsys);
4863 hash_add(css_set_table, &cset->hlist, key);
cf5d5941
BB
4864 }
4865 write_unlock(&css_set_lock);
4866
4867 /*
9871bf95
TH
4868 * remove subsystem's css from the cgroup_dummy_top and free it -
4869 * need to free before marking as null because ss->css_free needs
4870 * the cgrp->subsys pointer to find their state. note that this
4871 * also takes care of freeing the css_id.
cf5d5941 4872 */
9871bf95
TH
4873 ss->css_free(cgroup_dummy_top);
4874 cgroup_dummy_top->subsys[ss->subsys_id] = NULL;
cf5d5941
BB
4875
4876 mutex_unlock(&cgroup_mutex);
4877}
4878EXPORT_SYMBOL_GPL(cgroup_unload_subsys);
4879
ddbcc7e8 4880/**
a043e3b2
LZ
4881 * cgroup_init_early - cgroup initialization at system boot
4882 *
4883 * Initialize cgroups at system boot, and initialize any
4884 * subsystems that request early init.
ddbcc7e8
PM
4885 */
4886int __init cgroup_init_early(void)
4887{
30159ec7 4888 struct cgroup_subsys *ss;
ddbcc7e8 4889 int i;
30159ec7 4890
146aa1bd 4891 atomic_set(&init_css_set.refcount, 1);
69d0206c 4892 INIT_LIST_HEAD(&init_css_set.cgrp_links);
817929ec 4893 INIT_LIST_HEAD(&init_css_set.tasks);
472b1053 4894 INIT_HLIST_NODE(&init_css_set.hlist);
817929ec 4895 css_set_count = 1;
9871bf95
TH
4896 init_cgroup_root(&cgroup_dummy_root);
4897 cgroup_root_count = 1;
a4ea1cc9 4898 RCU_INIT_POINTER(init_task.cgroups, &init_css_set);
817929ec 4899
69d0206c 4900 init_cgrp_cset_link.cset = &init_css_set;
9871bf95
TH
4901 init_cgrp_cset_link.cgrp = cgroup_dummy_top;
4902 list_add(&init_cgrp_cset_link.cset_link, &cgroup_dummy_top->cset_links);
69d0206c 4903 list_add(&init_cgrp_cset_link.cgrp_link, &init_css_set.cgrp_links);
ddbcc7e8 4904
30159ec7
TH
4905 /* at bootup time, we don't worry about modular subsystems */
4906 for_each_builtin_subsys(ss, i) {
ddbcc7e8
PM
4907 BUG_ON(!ss->name);
4908 BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN);
92fb9748
TH
4909 BUG_ON(!ss->css_alloc);
4910 BUG_ON(!ss->css_free);
ddbcc7e8 4911 if (ss->subsys_id != i) {
cfe36bde 4912 printk(KERN_ERR "cgroup: Subsys %s id == %d\n",
ddbcc7e8
PM
4913 ss->name, ss->subsys_id);
4914 BUG();
4915 }
4916
4917 if (ss->early_init)
4918 cgroup_init_subsys(ss);
4919 }
4920 return 0;
4921}
4922
4923/**
a043e3b2
LZ
4924 * cgroup_init - cgroup initialization
4925 *
4926 * Register cgroup filesystem and /proc file, and initialize
4927 * any subsystems that didn't request early init.
ddbcc7e8
PM
4928 */
4929int __init cgroup_init(void)
4930{
30159ec7 4931 struct cgroup_subsys *ss;
0ac801fe 4932 unsigned long key;
30159ec7 4933 int i, err;
a424316c
PM
4934
4935 err = bdi_init(&cgroup_backing_dev_info);
4936 if (err)
4937 return err;
ddbcc7e8 4938
30159ec7 4939 for_each_builtin_subsys(ss, i) {
ddbcc7e8
PM
4940 if (!ss->early_init)
4941 cgroup_init_subsys(ss);
38460b48 4942 if (ss->use_id)
e6a1105b 4943 cgroup_init_idr(ss, init_css_set.subsys[ss->subsys_id]);
ddbcc7e8
PM
4944 }
4945
fa3ca07e 4946 /* allocate id for the dummy hierarchy */
54e7b4eb
TH
4947 mutex_lock(&cgroup_mutex);
4948 mutex_lock(&cgroup_root_mutex);
4949
82fe9b0d
TH
4950 /* Add init_css_set to the hash table */
4951 key = css_set_hash(init_css_set.subsys);
4952 hash_add(css_set_table, &init_css_set.hlist, key);
4953
fc76df70 4954 BUG_ON(cgroup_init_root_id(&cgroup_dummy_root, 0, 1));
676db4af 4955
54e7b4eb
TH
4956 mutex_unlock(&cgroup_root_mutex);
4957 mutex_unlock(&cgroup_mutex);
4958
676db4af
GK
4959 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
4960 if (!cgroup_kobj) {
4961 err = -ENOMEM;
4962 goto out;
4963 }
4964
ddbcc7e8 4965 err = register_filesystem(&cgroup_fs_type);
676db4af
GK
4966 if (err < 0) {
4967 kobject_put(cgroup_kobj);
ddbcc7e8 4968 goto out;
676db4af 4969 }
ddbcc7e8 4970
46ae220b 4971 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
a424316c 4972
ddbcc7e8 4973out:
a424316c
PM
4974 if (err)
4975 bdi_destroy(&cgroup_backing_dev_info);
4976
ddbcc7e8
PM
4977 return err;
4978}
b4f48b63 4979
a424316c
PM
4980/*
4981 * proc_cgroup_show()
4982 * - Print task's cgroup paths into seq_file, one line for each hierarchy
4983 * - Used for /proc/<pid>/cgroup.
4984 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
4985 * doesn't really matter if tsk->cgroup changes after we read it,
956db3ca 4986 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
a424316c
PM
4987 * anyway. No need to check that tsk->cgroup != NULL, thanks to
4988 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
4989 * cgroup to top_cgroup.
4990 */
4991
4992/* TODO: Use a proper seq_file iterator */
8d8b97ba 4993int proc_cgroup_show(struct seq_file *m, void *v)
a424316c
PM
4994{
4995 struct pid *pid;
4996 struct task_struct *tsk;
4997 char *buf;
4998 int retval;
4999 struct cgroupfs_root *root;
5000
5001 retval = -ENOMEM;
5002 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
5003 if (!buf)
5004 goto out;
5005
5006 retval = -ESRCH;
5007 pid = m->private;
5008 tsk = get_pid_task(pid, PIDTYPE_PID);
5009 if (!tsk)
5010 goto out_free;
5011
5012 retval = 0;
5013
5014 mutex_lock(&cgroup_mutex);
5015
e5f6a860 5016 for_each_active_root(root) {
a424316c 5017 struct cgroup_subsys *ss;
bd89aabc 5018 struct cgroup *cgrp;
a424316c
PM
5019 int count = 0;
5020
2c6ab6d2 5021 seq_printf(m, "%d:", root->hierarchy_id);
5549c497 5022 for_each_root_subsys(root, ss)
a424316c 5023 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
c6d57f33
PM
5024 if (strlen(root->name))
5025 seq_printf(m, "%sname=%s", count ? "," : "",
5026 root->name);
a424316c 5027 seq_putc(m, ':');
7717f7ba 5028 cgrp = task_cgroup_from_root(tsk, root);
bd89aabc 5029 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
a424316c
PM
5030 if (retval < 0)
5031 goto out_unlock;
5032 seq_puts(m, buf);
5033 seq_putc(m, '\n');
5034 }
5035
5036out_unlock:
5037 mutex_unlock(&cgroup_mutex);
5038 put_task_struct(tsk);
5039out_free:
5040 kfree(buf);
5041out:
5042 return retval;
5043}
5044
a424316c
PM
5045/* Display information about each subsystem and each hierarchy */
5046static int proc_cgroupstats_show(struct seq_file *m, void *v)
5047{
30159ec7 5048 struct cgroup_subsys *ss;
a424316c 5049 int i;
a424316c 5050
8bab8dde 5051 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
aae8aab4
BB
5052 /*
5053 * ideally we don't want subsystems moving around while we do this.
5054 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
5055 * subsys/hierarchy state.
5056 */
a424316c 5057 mutex_lock(&cgroup_mutex);
30159ec7
TH
5058
5059 for_each_subsys(ss, i)
2c6ab6d2
PM
5060 seq_printf(m, "%s\t%d\t%d\t%d\n",
5061 ss->name, ss->root->hierarchy_id,
8bab8dde 5062 ss->root->number_of_cgroups, !ss->disabled);
30159ec7 5063
a424316c
PM
5064 mutex_unlock(&cgroup_mutex);
5065 return 0;
5066}
5067
5068static int cgroupstats_open(struct inode *inode, struct file *file)
5069{
9dce07f1 5070 return single_open(file, proc_cgroupstats_show, NULL);
a424316c
PM
5071}
5072
828c0950 5073static const struct file_operations proc_cgroupstats_operations = {
a424316c
PM
5074 .open = cgroupstats_open,
5075 .read = seq_read,
5076 .llseek = seq_lseek,
5077 .release = single_release,
5078};
5079
b4f48b63
PM
5080/**
5081 * cgroup_fork - attach newly forked task to its parents cgroup.
a043e3b2 5082 * @child: pointer to task_struct of forking parent process.
b4f48b63
PM
5083 *
5084 * Description: A task inherits its parent's cgroup at fork().
5085 *
5086 * A pointer to the shared css_set was automatically copied in
5087 * fork.c by dup_task_struct(). However, we ignore that copy, since
9bb71308
TH
5088 * it was not made under the protection of RCU or cgroup_mutex, so
5089 * might no longer be a valid cgroup pointer. cgroup_attach_task() might
5090 * have already changed current->cgroups, allowing the previously
5091 * referenced cgroup group to be removed and freed.
b4f48b63
PM
5092 *
5093 * At the point that cgroup_fork() is called, 'current' is the parent
5094 * task, and the passed argument 'child' points to the child task.
5095 */
5096void cgroup_fork(struct task_struct *child)
5097{
9bb71308 5098 task_lock(current);
a8ad805c 5099 get_css_set(task_css_set(current));
817929ec 5100 child->cgroups = current->cgroups;
9bb71308 5101 task_unlock(current);
817929ec 5102 INIT_LIST_HEAD(&child->cg_list);
b4f48b63
PM
5103}
5104
817929ec 5105/**
a043e3b2
LZ
5106 * cgroup_post_fork - called on a new task after adding it to the task list
5107 * @child: the task in question
5108 *
5edee61e
TH
5109 * Adds the task to the list running through its css_set if necessary and
5110 * call the subsystem fork() callbacks. Has to be after the task is
5111 * visible on the task list in case we race with the first call to
5112 * cgroup_iter_start() - to guarantee that the new task ends up on its
5113 * list.
a043e3b2 5114 */
817929ec
PM
5115void cgroup_post_fork(struct task_struct *child)
5116{
30159ec7 5117 struct cgroup_subsys *ss;
5edee61e
TH
5118 int i;
5119
3ce3230a
FW
5120 /*
5121 * use_task_css_set_links is set to 1 before we walk the tasklist
5122 * under the tasklist_lock and we read it here after we added the child
5123 * to the tasklist under the tasklist_lock as well. If the child wasn't
5124 * yet in the tasklist when we walked through it from
5125 * cgroup_enable_task_cg_lists(), then use_task_css_set_links value
5126 * should be visible now due to the paired locking and barriers implied
5127 * by LOCK/UNLOCK: it is written before the tasklist_lock unlock
5128 * in cgroup_enable_task_cg_lists() and read here after the tasklist_lock
5129 * lock on fork.
5130 */
817929ec
PM
5131 if (use_task_css_set_links) {
5132 write_lock(&css_set_lock);
d8783832
TH
5133 task_lock(child);
5134 if (list_empty(&child->cg_list))
a8ad805c 5135 list_add(&child->cg_list, &task_css_set(child)->tasks);
d8783832 5136 task_unlock(child);
817929ec
PM
5137 write_unlock(&css_set_lock);
5138 }
5edee61e
TH
5139
5140 /*
5141 * Call ss->fork(). This must happen after @child is linked on
5142 * css_set; otherwise, @child might change state between ->fork()
5143 * and addition to css_set.
5144 */
5145 if (need_forkexit_callback) {
7d8e0bf5
LZ
5146 /*
5147 * fork/exit callbacks are supported only for builtin
5148 * subsystems, and the builtin section of the subsys
5149 * array is immutable, so we don't need to lock the
5150 * subsys array here. On the other hand, modular section
5151 * of the array can be freed at module unload, so we
5152 * can't touch that.
5153 */
30159ec7 5154 for_each_builtin_subsys(ss, i)
5edee61e
TH
5155 if (ss->fork)
5156 ss->fork(child);
5edee61e 5157 }
817929ec 5158}
5edee61e 5159
b4f48b63
PM
5160/**
5161 * cgroup_exit - detach cgroup from exiting task
5162 * @tsk: pointer to task_struct of exiting process
a043e3b2 5163 * @run_callback: run exit callbacks?
b4f48b63
PM
5164 *
5165 * Description: Detach cgroup from @tsk and release it.
5166 *
5167 * Note that cgroups marked notify_on_release force every task in
5168 * them to take the global cgroup_mutex mutex when exiting.
5169 * This could impact scaling on very large systems. Be reluctant to
5170 * use notify_on_release cgroups where very high task exit scaling
5171 * is required on large systems.
5172 *
5173 * the_top_cgroup_hack:
5174 *
5175 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
5176 *
5177 * We call cgroup_exit() while the task is still competent to
5178 * handle notify_on_release(), then leave the task attached to the
5179 * root cgroup in each hierarchy for the remainder of its exit.
5180 *
5181 * To do this properly, we would increment the reference count on
5182 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
5183 * code we would add a second cgroup function call, to drop that
5184 * reference. This would just create an unnecessary hot spot on
5185 * the top_cgroup reference count, to no avail.
5186 *
5187 * Normally, holding a reference to a cgroup without bumping its
5188 * count is unsafe. The cgroup could go away, or someone could
5189 * attach us to a different cgroup, decrementing the count on
5190 * the first cgroup that we never incremented. But in this case,
5191 * top_cgroup isn't going away, and either task has PF_EXITING set,
956db3ca
CW
5192 * which wards off any cgroup_attach_task() attempts, or task is a failed
5193 * fork, never visible to cgroup_attach_task.
b4f48b63
PM
5194 */
5195void cgroup_exit(struct task_struct *tsk, int run_callbacks)
5196{
30159ec7 5197 struct cgroup_subsys *ss;
5abb8855 5198 struct css_set *cset;
d41d5a01 5199 int i;
817929ec
PM
5200
5201 /*
5202 * Unlink from the css_set task list if necessary.
5203 * Optimistically check cg_list before taking
5204 * css_set_lock
5205 */
5206 if (!list_empty(&tsk->cg_list)) {
5207 write_lock(&css_set_lock);
5208 if (!list_empty(&tsk->cg_list))
8d258797 5209 list_del_init(&tsk->cg_list);
817929ec
PM
5210 write_unlock(&css_set_lock);
5211 }
5212
b4f48b63
PM
5213 /* Reassign the task to the init_css_set. */
5214 task_lock(tsk);
a8ad805c
TH
5215 cset = task_css_set(tsk);
5216 RCU_INIT_POINTER(tsk->cgroups, &init_css_set);
d41d5a01
PZ
5217
5218 if (run_callbacks && need_forkexit_callback) {
7d8e0bf5
LZ
5219 /*
5220 * fork/exit callbacks are supported only for builtin
5221 * subsystems, see cgroup_post_fork() for details.
5222 */
30159ec7 5223 for_each_builtin_subsys(ss, i) {
d41d5a01 5224 if (ss->exit) {
a8ad805c 5225 struct cgroup *old_cgrp = cset->subsys[i]->cgroup;
d41d5a01 5226 struct cgroup *cgrp = task_cgroup(tsk, i);
30159ec7 5227
761b3ef5 5228 ss->exit(cgrp, old_cgrp, tsk);
d41d5a01
PZ
5229 }
5230 }
5231 }
b4f48b63 5232 task_unlock(tsk);
d41d5a01 5233
5abb8855 5234 put_css_set_taskexit(cset);
b4f48b63 5235}
697f4161 5236
bd89aabc 5237static void check_for_release(struct cgroup *cgrp)
81a6a5cd 5238{
f50daa70 5239 if (cgroup_is_releasable(cgrp) &&
6f3d828f 5240 list_empty(&cgrp->cset_links) && list_empty(&cgrp->children)) {
f50daa70
LZ
5241 /*
5242 * Control Group is currently removeable. If it's not
81a6a5cd 5243 * already queued for a userspace notification, queue
f50daa70
LZ
5244 * it now
5245 */
81a6a5cd 5246 int need_schedule_work = 0;
f50daa70 5247
cdcc136f 5248 raw_spin_lock(&release_list_lock);
54766d4a 5249 if (!cgroup_is_dead(cgrp) &&
bd89aabc
PM
5250 list_empty(&cgrp->release_list)) {
5251 list_add(&cgrp->release_list, &release_list);
81a6a5cd
PM
5252 need_schedule_work = 1;
5253 }
cdcc136f 5254 raw_spin_unlock(&release_list_lock);
81a6a5cd
PM
5255 if (need_schedule_work)
5256 schedule_work(&release_agent_work);
5257 }
5258}
5259
81a6a5cd
PM
5260/*
5261 * Notify userspace when a cgroup is released, by running the
5262 * configured release agent with the name of the cgroup (path
5263 * relative to the root of cgroup file system) as the argument.
5264 *
5265 * Most likely, this user command will try to rmdir this cgroup.
5266 *
5267 * This races with the possibility that some other task will be
5268 * attached to this cgroup before it is removed, or that some other
5269 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
5270 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
5271 * unused, and this cgroup will be reprieved from its death sentence,
5272 * to continue to serve a useful existence. Next time it's released,
5273 * we will get notified again, if it still has 'notify_on_release' set.
5274 *
5275 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
5276 * means only wait until the task is successfully execve()'d. The
5277 * separate release agent task is forked by call_usermodehelper(),
5278 * then control in this thread returns here, without waiting for the
5279 * release agent task. We don't bother to wait because the caller of
5280 * this routine has no use for the exit status of the release agent
5281 * task, so no sense holding our caller up for that.
81a6a5cd 5282 */
81a6a5cd
PM
5283static void cgroup_release_agent(struct work_struct *work)
5284{
5285 BUG_ON(work != &release_agent_work);
5286 mutex_lock(&cgroup_mutex);
cdcc136f 5287 raw_spin_lock(&release_list_lock);
81a6a5cd
PM
5288 while (!list_empty(&release_list)) {
5289 char *argv[3], *envp[3];
5290 int i;
e788e066 5291 char *pathbuf = NULL, *agentbuf = NULL;
bd89aabc 5292 struct cgroup *cgrp = list_entry(release_list.next,
81a6a5cd
PM
5293 struct cgroup,
5294 release_list);
bd89aabc 5295 list_del_init(&cgrp->release_list);
cdcc136f 5296 raw_spin_unlock(&release_list_lock);
81a6a5cd 5297 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
e788e066
PM
5298 if (!pathbuf)
5299 goto continue_free;
5300 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0)
5301 goto continue_free;
5302 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
5303 if (!agentbuf)
5304 goto continue_free;
81a6a5cd
PM
5305
5306 i = 0;
e788e066
PM
5307 argv[i++] = agentbuf;
5308 argv[i++] = pathbuf;
81a6a5cd
PM
5309 argv[i] = NULL;
5310
5311 i = 0;
5312 /* minimal command environment */
5313 envp[i++] = "HOME=/";
5314 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
5315 envp[i] = NULL;
5316
5317 /* Drop the lock while we invoke the usermode helper,
5318 * since the exec could involve hitting disk and hence
5319 * be a slow process */
5320 mutex_unlock(&cgroup_mutex);
5321 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
81a6a5cd 5322 mutex_lock(&cgroup_mutex);
e788e066
PM
5323 continue_free:
5324 kfree(pathbuf);
5325 kfree(agentbuf);
cdcc136f 5326 raw_spin_lock(&release_list_lock);
81a6a5cd 5327 }
cdcc136f 5328 raw_spin_unlock(&release_list_lock);
81a6a5cd
PM
5329 mutex_unlock(&cgroup_mutex);
5330}
8bab8dde
PM
5331
5332static int __init cgroup_disable(char *str)
5333{
30159ec7 5334 struct cgroup_subsys *ss;
8bab8dde 5335 char *token;
30159ec7 5336 int i;
8bab8dde
PM
5337
5338 while ((token = strsep(&str, ",")) != NULL) {
5339 if (!*token)
5340 continue;
be45c900 5341
30159ec7
TH
5342 /*
5343 * cgroup_disable, being at boot time, can't know about
5344 * module subsystems, so we don't worry about them.
5345 */
5346 for_each_builtin_subsys(ss, i) {
8bab8dde
PM
5347 if (!strcmp(token, ss->name)) {
5348 ss->disabled = 1;
5349 printk(KERN_INFO "Disabling %s control group"
5350 " subsystem\n", ss->name);
5351 break;
5352 }
5353 }
5354 }
5355 return 1;
5356}
5357__setup("cgroup_disable=", cgroup_disable);
38460b48
KH
5358
5359/*
5360 * Functons for CSS ID.
5361 */
5362
54766d4a 5363/* to get ID other than 0, this should be called when !cgroup_is_dead() */
38460b48
KH
5364unsigned short css_id(struct cgroup_subsys_state *css)
5365{
7f0f1546
KH
5366 struct css_id *cssid;
5367
5368 /*
5369 * This css_id() can return correct value when somone has refcnt
5370 * on this or this is under rcu_read_lock(). Once css->id is allocated,
5371 * it's unchanged until freed.
5372 */
d3daf28d 5373 cssid = rcu_dereference_raw(css->id);
38460b48
KH
5374
5375 if (cssid)
5376 return cssid->id;
5377 return 0;
5378}
67523c48 5379EXPORT_SYMBOL_GPL(css_id);
38460b48 5380
747388d7
KH
5381/**
5382 * css_is_ancestor - test "root" css is an ancestor of "child"
5383 * @child: the css to be tested.
5384 * @root: the css supporsed to be an ancestor of the child.
5385 *
5386 * Returns true if "root" is an ancestor of "child" in its hierarchy. Because
91c63734 5387 * this function reads css->id, the caller must hold rcu_read_lock().
747388d7
KH
5388 * But, considering usual usage, the csses should be valid objects after test.
5389 * Assuming that the caller will do some action to the child if this returns
5390 * returns true, the caller must take "child";s reference count.
5391 * If "child" is valid object and this returns true, "root" is valid, too.
5392 */
5393
38460b48 5394bool css_is_ancestor(struct cgroup_subsys_state *child,
0b7f569e 5395 const struct cgroup_subsys_state *root)
38460b48 5396{
747388d7
KH
5397 struct css_id *child_id;
5398 struct css_id *root_id;
38460b48 5399
747388d7 5400 child_id = rcu_dereference(child->id);
91c63734
JW
5401 if (!child_id)
5402 return false;
747388d7 5403 root_id = rcu_dereference(root->id);
91c63734
JW
5404 if (!root_id)
5405 return false;
5406 if (child_id->depth < root_id->depth)
5407 return false;
5408 if (child_id->stack[root_id->depth] != root_id->id)
5409 return false;
5410 return true;
38460b48
KH
5411}
5412
38460b48
KH
5413void free_css_id(struct cgroup_subsys *ss, struct cgroup_subsys_state *css)
5414{
a4ea1cc9
TH
5415 struct css_id *id = rcu_dereference_protected(css->id, true);
5416
38460b48
KH
5417 /* When this is called before css_id initialization, id can be NULL */
5418 if (!id)
5419 return;
5420
5421 BUG_ON(!ss->use_id);
5422
5423 rcu_assign_pointer(id->css, NULL);
5424 rcu_assign_pointer(css->id, NULL);
42aee6c4 5425 spin_lock(&ss->id_lock);
38460b48 5426 idr_remove(&ss->idr, id->id);
42aee6c4 5427 spin_unlock(&ss->id_lock);
025cea99 5428 kfree_rcu(id, rcu_head);
38460b48 5429}
67523c48 5430EXPORT_SYMBOL_GPL(free_css_id);
38460b48
KH
5431
5432/*
5433 * This is called by init or create(). Then, calls to this function are
5434 * always serialized (By cgroup_mutex() at create()).
5435 */
5436
5437static struct css_id *get_new_cssid(struct cgroup_subsys *ss, int depth)
5438{
5439 struct css_id *newid;
d228d9ec 5440 int ret, size;
38460b48
KH
5441
5442 BUG_ON(!ss->use_id);
5443
5444 size = sizeof(*newid) + sizeof(unsigned short) * (depth + 1);
5445 newid = kzalloc(size, GFP_KERNEL);
5446 if (!newid)
5447 return ERR_PTR(-ENOMEM);
d228d9ec
TH
5448
5449 idr_preload(GFP_KERNEL);
42aee6c4 5450 spin_lock(&ss->id_lock);
38460b48 5451 /* Don't use 0. allocates an ID of 1-65535 */
d228d9ec 5452 ret = idr_alloc(&ss->idr, newid, 1, CSS_ID_MAX + 1, GFP_NOWAIT);
42aee6c4 5453 spin_unlock(&ss->id_lock);
d228d9ec 5454 idr_preload_end();
38460b48
KH
5455
5456 /* Returns error when there are no free spaces for new ID.*/
d228d9ec 5457 if (ret < 0)
38460b48 5458 goto err_out;
38460b48 5459
d228d9ec 5460 newid->id = ret;
38460b48
KH
5461 newid->depth = depth;
5462 return newid;
38460b48
KH
5463err_out:
5464 kfree(newid);
d228d9ec 5465 return ERR_PTR(ret);
38460b48
KH
5466
5467}
5468
e6a1105b
BB
5469static int __init_or_module cgroup_init_idr(struct cgroup_subsys *ss,
5470 struct cgroup_subsys_state *rootcss)
38460b48
KH
5471{
5472 struct css_id *newid;
38460b48 5473
42aee6c4 5474 spin_lock_init(&ss->id_lock);
38460b48
KH
5475 idr_init(&ss->idr);
5476
38460b48
KH
5477 newid = get_new_cssid(ss, 0);
5478 if (IS_ERR(newid))
5479 return PTR_ERR(newid);
5480
5481 newid->stack[0] = newid->id;
a4ea1cc9
TH
5482 RCU_INIT_POINTER(newid->css, rootcss);
5483 RCU_INIT_POINTER(rootcss->id, newid);
38460b48
KH
5484 return 0;
5485}
5486
5487static int alloc_css_id(struct cgroup_subsys *ss, struct cgroup *parent,
5488 struct cgroup *child)
5489{
5490 int subsys_id, i, depth = 0;
5491 struct cgroup_subsys_state *parent_css, *child_css;
fae9c791 5492 struct css_id *child_id, *parent_id;
38460b48
KH
5493
5494 subsys_id = ss->subsys_id;
5495 parent_css = parent->subsys[subsys_id];
5496 child_css = child->subsys[subsys_id];
a4ea1cc9 5497 parent_id = rcu_dereference_protected(parent_css->id, true);
94b3dd0f 5498 depth = parent_id->depth + 1;
38460b48
KH
5499
5500 child_id = get_new_cssid(ss, depth);
5501 if (IS_ERR(child_id))
5502 return PTR_ERR(child_id);
5503
5504 for (i = 0; i < depth; i++)
5505 child_id->stack[i] = parent_id->stack[i];
5506 child_id->stack[depth] = child_id->id;
5507 /*
5508 * child_id->css pointer will be set after this cgroup is available
5509 * see cgroup_populate_dir()
5510 */
5511 rcu_assign_pointer(child_css->id, child_id);
5512
5513 return 0;
5514}
5515
5516/**
5517 * css_lookup - lookup css by id
5518 * @ss: cgroup subsys to be looked into.
5519 * @id: the id
5520 *
5521 * Returns pointer to cgroup_subsys_state if there is valid one with id.
5522 * NULL if not. Should be called under rcu_read_lock()
5523 */
5524struct cgroup_subsys_state *css_lookup(struct cgroup_subsys *ss, int id)
5525{
5526 struct css_id *cssid = NULL;
5527
5528 BUG_ON(!ss->use_id);
5529 cssid = idr_find(&ss->idr, id);
5530
5531 if (unlikely(!cssid))
5532 return NULL;
5533
5534 return rcu_dereference(cssid->css);
5535}
67523c48 5536EXPORT_SYMBOL_GPL(css_lookup);
38460b48 5537
e5d1367f
SE
5538/*
5539 * get corresponding css from file open on cgroupfs directory
5540 */
5541struct cgroup_subsys_state *cgroup_css_from_dir(struct file *f, int id)
5542{
5543 struct cgroup *cgrp;
5544 struct inode *inode;
5545 struct cgroup_subsys_state *css;
5546
496ad9aa 5547 inode = file_inode(f);
e5d1367f
SE
5548 /* check in cgroup filesystem dir */
5549 if (inode->i_op != &cgroup_dir_inode_operations)
5550 return ERR_PTR(-EBADF);
5551
5552 if (id < 0 || id >= CGROUP_SUBSYS_COUNT)
5553 return ERR_PTR(-EINVAL);
5554
5555 /* get cgroup */
5556 cgrp = __d_cgrp(f->f_dentry);
5557 css = cgrp->subsys[id];
5558 return css ? css : ERR_PTR(-ENOENT);
5559}
5560
fe693435 5561#ifdef CONFIG_CGROUP_DEBUG
03c78cbe 5562static struct cgroup_subsys_state *debug_css_alloc(struct cgroup *cgrp)
fe693435
PM
5563{
5564 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
5565
5566 if (!css)
5567 return ERR_PTR(-ENOMEM);
5568
5569 return css;
5570}
5571
03c78cbe 5572static void debug_css_free(struct cgroup *cgrp)
fe693435 5573{
03c78cbe 5574 kfree(cgrp->subsys[debug_subsys_id]);
fe693435
PM
5575}
5576
03c78cbe 5577static u64 debug_taskcount_read(struct cgroup *cgrp, struct cftype *cft)
fe693435 5578{
03c78cbe 5579 return cgroup_task_count(cgrp);
fe693435
PM
5580}
5581
03c78cbe 5582static u64 current_css_set_read(struct cgroup *cgrp, struct cftype *cft)
fe693435
PM
5583{
5584 return (u64)(unsigned long)current->cgroups;
5585}
5586
03c78cbe
LZ
5587static u64 current_css_set_refcount_read(struct cgroup *cgrp,
5588 struct cftype *cft)
fe693435
PM
5589{
5590 u64 count;
5591
5592 rcu_read_lock();
a8ad805c 5593 count = atomic_read(&task_css_set(current)->refcount);
fe693435
PM
5594 rcu_read_unlock();
5595 return count;
5596}
5597
03c78cbe 5598static int current_css_set_cg_links_read(struct cgroup *cgrp,
7717f7ba
PM
5599 struct cftype *cft,
5600 struct seq_file *seq)
5601{
69d0206c 5602 struct cgrp_cset_link *link;
5abb8855 5603 struct css_set *cset;
7717f7ba
PM
5604
5605 read_lock(&css_set_lock);
5606 rcu_read_lock();
5abb8855 5607 cset = rcu_dereference(current->cgroups);
69d0206c 5608 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
7717f7ba
PM
5609 struct cgroup *c = link->cgrp;
5610 const char *name;
5611
5612 if (c->dentry)
5613 name = c->dentry->d_name.name;
5614 else
5615 name = "?";
2c6ab6d2
PM
5616 seq_printf(seq, "Root %d group %s\n",
5617 c->root->hierarchy_id, name);
7717f7ba
PM
5618 }
5619 rcu_read_unlock();
5620 read_unlock(&css_set_lock);
5621 return 0;
5622}
5623
5624#define MAX_TASKS_SHOWN_PER_CSS 25
03c78cbe 5625static int cgroup_css_links_read(struct cgroup *cgrp,
7717f7ba
PM
5626 struct cftype *cft,
5627 struct seq_file *seq)
5628{
69d0206c 5629 struct cgrp_cset_link *link;
7717f7ba
PM
5630
5631 read_lock(&css_set_lock);
03c78cbe 5632 list_for_each_entry(link, &cgrp->cset_links, cset_link) {
69d0206c 5633 struct css_set *cset = link->cset;
7717f7ba
PM
5634 struct task_struct *task;
5635 int count = 0;
5abb8855
TH
5636 seq_printf(seq, "css_set %p\n", cset);
5637 list_for_each_entry(task, &cset->tasks, cg_list) {
7717f7ba
PM
5638 if (count++ > MAX_TASKS_SHOWN_PER_CSS) {
5639 seq_puts(seq, " ...\n");
5640 break;
5641 } else {
5642 seq_printf(seq, " task %d\n",
5643 task_pid_vnr(task));
5644 }
5645 }
5646 }
5647 read_unlock(&css_set_lock);
5648 return 0;
5649}
5650
fe693435
PM
5651static u64 releasable_read(struct cgroup *cgrp, struct cftype *cft)
5652{
5653 return test_bit(CGRP_RELEASABLE, &cgrp->flags);
5654}
5655
5656static struct cftype debug_files[] = {
fe693435
PM
5657 {
5658 .name = "taskcount",
5659 .read_u64 = debug_taskcount_read,
5660 },
5661
5662 {
5663 .name = "current_css_set",
5664 .read_u64 = current_css_set_read,
5665 },
5666
5667 {
5668 .name = "current_css_set_refcount",
5669 .read_u64 = current_css_set_refcount_read,
5670 },
5671
7717f7ba
PM
5672 {
5673 .name = "current_css_set_cg_links",
5674 .read_seq_string = current_css_set_cg_links_read,
5675 },
5676
5677 {
5678 .name = "cgroup_css_links",
5679 .read_seq_string = cgroup_css_links_read,
5680 },
5681
fe693435
PM
5682 {
5683 .name = "releasable",
5684 .read_u64 = releasable_read,
5685 },
fe693435 5686
4baf6e33
TH
5687 { } /* terminate */
5688};
fe693435
PM
5689
5690struct cgroup_subsys debug_subsys = {
5691 .name = "debug",
92fb9748
TH
5692 .css_alloc = debug_css_alloc,
5693 .css_free = debug_css_free,
fe693435 5694 .subsys_id = debug_subsys_id,
4baf6e33 5695 .base_cftypes = debug_files,
fe693435
PM
5696};
5697#endif /* CONFIG_CGROUP_DEBUG */
This page took 0.872813 seconds and 5 git commands to generate.