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