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