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