]> bbs.cooldavid.org Git - net-next-2.6.git/blame - kernel/cgroup.c
drm: make drm_minors_cleanup() static
[net-next-2.6.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 *
7 * Copyright notices from the original cpuset code:
8 * --------------------------------------------------
9 * Copyright (C) 2003 BULL SA.
10 * Copyright (C) 2004-2006 Silicon Graphics, Inc.
11 *
12 * Portions derived from Patrick Mochel's sysfs code.
13 * sysfs is Copyright (c) 2001-3 Patrick Mochel
14 *
15 * 2003-10-10 Written by Simon Derr.
16 * 2003-10-22 Updates by Stephen Hemminger.
17 * 2004 May-July Rework by Paul Jackson.
18 * ---------------------------------------------------
19 *
20 * This file is subject to the terms and conditions of the GNU General Public
21 * License. See the file COPYING in the main directory of the Linux
22 * distribution for more details.
23 */
24
25#include <linux/cgroup.h>
26#include <linux/errno.h>
27#include <linux/fs.h>
28#include <linux/kernel.h>
29#include <linux/list.h>
30#include <linux/mm.h>
31#include <linux/mutex.h>
32#include <linux/mount.h>
33#include <linux/pagemap.h>
a424316c 34#include <linux/proc_fs.h>
ddbcc7e8
PM
35#include <linux/rcupdate.h>
36#include <linux/sched.h>
817929ec 37#include <linux/backing-dev.h>
ddbcc7e8
PM
38#include <linux/seq_file.h>
39#include <linux/slab.h>
40#include <linux/magic.h>
41#include <linux/spinlock.h>
42#include <linux/string.h>
bbcb81d0 43#include <linux/sort.h>
81a6a5cd 44#include <linux/kmod.h>
846c7bb0
BS
45#include <linux/delayacct.h>
46#include <linux/cgroupstats.h>
472b1053 47#include <linux/hash.h>
846c7bb0 48
ddbcc7e8
PM
49#include <asm/atomic.h>
50
81a6a5cd
PM
51static DEFINE_MUTEX(cgroup_mutex);
52
ddbcc7e8
PM
53/* Generate an array of cgroup subsystem pointers */
54#define SUBSYS(_x) &_x ## _subsys,
55
56static struct cgroup_subsys *subsys[] = {
57#include <linux/cgroup_subsys.h>
58};
59
60/*
61 * A cgroupfs_root represents the root of a cgroup hierarchy,
62 * and may be associated with a superblock to form an active
63 * hierarchy
64 */
65struct cgroupfs_root {
66 struct super_block *sb;
67
68 /*
69 * The bitmask of subsystems intended to be attached to this
70 * hierarchy
71 */
72 unsigned long subsys_bits;
73
74 /* The bitmask of subsystems currently attached to this hierarchy */
75 unsigned long actual_subsys_bits;
76
77 /* A list running through the attached subsystems */
78 struct list_head subsys_list;
79
80 /* The root cgroup for this hierarchy */
81 struct cgroup top_cgroup;
82
83 /* Tracks how many cgroups are currently defined in hierarchy.*/
84 int number_of_cgroups;
85
86 /* A list running through the mounted hierarchies */
87 struct list_head root_list;
88
89 /* Hierarchy-specific flags */
90 unsigned long flags;
81a6a5cd 91
e788e066 92 /* The path to use for release notifications. */
81a6a5cd 93 char release_agent_path[PATH_MAX];
ddbcc7e8
PM
94};
95
96
97/*
98 * The "rootnode" hierarchy is the "dummy hierarchy", reserved for the
99 * subsystems that are otherwise unattached - it never has more than a
100 * single cgroup, and all tasks are part of that cgroup.
101 */
102static struct cgroupfs_root rootnode;
103
104/* The list of hierarchy roots */
105
106static LIST_HEAD(roots);
817929ec 107static int root_count;
ddbcc7e8
PM
108
109/* dummytop is a shorthand for the dummy hierarchy's top cgroup */
110#define dummytop (&rootnode.top_cgroup)
111
112/* This flag indicates whether tasks in the fork and exit paths should
a043e3b2
LZ
113 * check for fork/exit handlers to call. This avoids us having to do
114 * extra work in the fork/exit path if none of the subsystems need to
115 * be called.
ddbcc7e8 116 */
8947f9d5 117static int need_forkexit_callback __read_mostly;
cf475ad2 118static int need_mm_owner_callback __read_mostly;
ddbcc7e8 119
ddbcc7e8 120/* convenient tests for these bits */
bd89aabc 121inline int cgroup_is_removed(const struct cgroup *cgrp)
ddbcc7e8 122{
bd89aabc 123 return test_bit(CGRP_REMOVED, &cgrp->flags);
ddbcc7e8
PM
124}
125
126/* bits in struct cgroupfs_root flags field */
127enum {
128 ROOT_NOPREFIX, /* mounted subsystems have no named prefix */
129};
130
e9685a03 131static int cgroup_is_releasable(const struct cgroup *cgrp)
81a6a5cd
PM
132{
133 const int bits =
bd89aabc
PM
134 (1 << CGRP_RELEASABLE) |
135 (1 << CGRP_NOTIFY_ON_RELEASE);
136 return (cgrp->flags & bits) == bits;
81a6a5cd
PM
137}
138
e9685a03 139static int notify_on_release(const struct cgroup *cgrp)
81a6a5cd 140{
bd89aabc 141 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
81a6a5cd
PM
142}
143
ddbcc7e8
PM
144/*
145 * for_each_subsys() allows you to iterate on each subsystem attached to
146 * an active hierarchy
147 */
148#define for_each_subsys(_root, _ss) \
149list_for_each_entry(_ss, &_root->subsys_list, sibling)
150
151/* for_each_root() allows you to iterate across the active hierarchies */
152#define for_each_root(_root) \
153list_for_each_entry(_root, &roots, root_list)
154
81a6a5cd
PM
155/* the list of cgroups eligible for automatic release. Protected by
156 * release_list_lock */
157static LIST_HEAD(release_list);
158static DEFINE_SPINLOCK(release_list_lock);
159static void cgroup_release_agent(struct work_struct *work);
160static DECLARE_WORK(release_agent_work, cgroup_release_agent);
bd89aabc 161static void check_for_release(struct cgroup *cgrp);
81a6a5cd 162
817929ec
PM
163/* Link structure for associating css_set objects with cgroups */
164struct cg_cgroup_link {
165 /*
166 * List running through cg_cgroup_links associated with a
167 * cgroup, anchored on cgroup->css_sets
168 */
bd89aabc 169 struct list_head cgrp_link_list;
817929ec
PM
170 /*
171 * List running through cg_cgroup_links pointing at a
172 * single css_set object, anchored on css_set->cg_links
173 */
174 struct list_head cg_link_list;
175 struct css_set *cg;
176};
177
178/* The default css_set - used by init and its children prior to any
179 * hierarchies being mounted. It contains a pointer to the root state
180 * for each subsystem. Also used to anchor the list of css_sets. Not
181 * reference-counted, to improve performance when child cgroups
182 * haven't been created.
183 */
184
185static struct css_set init_css_set;
186static struct cg_cgroup_link init_css_set_link;
187
188/* css_set_lock protects the list of css_set objects, and the
189 * chain of tasks off each css_set. Nests outside task->alloc_lock
190 * due to cgroup_iter_start() */
191static DEFINE_RWLOCK(css_set_lock);
192static int css_set_count;
193
472b1053
LZ
194/* hash table for cgroup groups. This improves the performance to
195 * find an existing css_set */
196#define CSS_SET_HASH_BITS 7
197#define CSS_SET_TABLE_SIZE (1 << CSS_SET_HASH_BITS)
198static struct hlist_head css_set_table[CSS_SET_TABLE_SIZE];
199
200static struct hlist_head *css_set_hash(struct cgroup_subsys_state *css[])
201{
202 int i;
203 int index;
204 unsigned long tmp = 0UL;
205
206 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++)
207 tmp += (unsigned long)css[i];
208 tmp = (tmp >> 16) ^ tmp;
209
210 index = hash_long(tmp, CSS_SET_HASH_BITS);
211
212 return &css_set_table[index];
213}
214
817929ec
PM
215/* We don't maintain the lists running through each css_set to its
216 * task until after the first call to cgroup_iter_start(). This
217 * reduces the fork()/exit() overhead for people who have cgroups
218 * compiled into their kernel but not actually in use */
8947f9d5 219static int use_task_css_set_links __read_mostly;
817929ec
PM
220
221/* When we create or destroy a css_set, the operation simply
222 * takes/releases a reference count on all the cgroups referenced
223 * by subsystems in this css_set. This can end up multiple-counting
224 * some cgroups, but that's OK - the ref-count is just a
225 * busy/not-busy indicator; ensuring that we only count each cgroup
226 * once would require taking a global lock to ensure that no
b4f48b63
PM
227 * subsystems moved between hierarchies while we were doing so.
228 *
229 * Possible TODO: decide at boot time based on the number of
230 * registered subsystems and the number of CPUs or NUMA nodes whether
231 * it's better for performance to ref-count every subsystem, or to
232 * take a global lock and only add one ref count to each hierarchy.
233 */
817929ec
PM
234
235/*
236 * unlink a css_set from the list and free it
237 */
81a6a5cd 238static void unlink_css_set(struct css_set *cg)
b4f48b63 239{
71cbb949
KM
240 struct cg_cgroup_link *link;
241 struct cg_cgroup_link *saved_link;
242
817929ec 243 write_lock(&css_set_lock);
472b1053 244 hlist_del(&cg->hlist);
817929ec 245 css_set_count--;
71cbb949
KM
246
247 list_for_each_entry_safe(link, saved_link, &cg->cg_links,
248 cg_link_list) {
817929ec 249 list_del(&link->cg_link_list);
bd89aabc 250 list_del(&link->cgrp_link_list);
817929ec
PM
251 kfree(link);
252 }
71cbb949 253
817929ec 254 write_unlock(&css_set_lock);
81a6a5cd
PM
255}
256
257static void __release_css_set(struct kref *k, int taskexit)
258{
259 int i;
260 struct css_set *cg = container_of(k, struct css_set, ref);
261
262 unlink_css_set(cg);
263
264 rcu_read_lock();
265 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
bd89aabc
PM
266 struct cgroup *cgrp = cg->subsys[i]->cgroup;
267 if (atomic_dec_and_test(&cgrp->count) &&
268 notify_on_release(cgrp)) {
81a6a5cd 269 if (taskexit)
bd89aabc
PM
270 set_bit(CGRP_RELEASABLE, &cgrp->flags);
271 check_for_release(cgrp);
81a6a5cd
PM
272 }
273 }
274 rcu_read_unlock();
817929ec 275 kfree(cg);
b4f48b63
PM
276}
277
81a6a5cd
PM
278static void release_css_set(struct kref *k)
279{
280 __release_css_set(k, 0);
281}
282
283static void release_css_set_taskexit(struct kref *k)
284{
285 __release_css_set(k, 1);
286}
287
817929ec
PM
288/*
289 * refcounted get/put for css_set objects
290 */
291static inline void get_css_set(struct css_set *cg)
292{
293 kref_get(&cg->ref);
294}
295
296static inline void put_css_set(struct css_set *cg)
297{
298 kref_put(&cg->ref, release_css_set);
299}
300
81a6a5cd
PM
301static inline void put_css_set_taskexit(struct css_set *cg)
302{
303 kref_put(&cg->ref, release_css_set_taskexit);
304}
305
817929ec
PM
306/*
307 * find_existing_css_set() is a helper for
308 * find_css_set(), and checks to see whether an existing
472b1053 309 * css_set is suitable.
817929ec
PM
310 *
311 * oldcg: the cgroup group that we're using before the cgroup
312 * transition
313 *
bd89aabc 314 * cgrp: the cgroup that we're moving into
817929ec
PM
315 *
316 * template: location in which to build the desired set of subsystem
317 * state objects for the new cgroup group
318 */
817929ec
PM
319static struct css_set *find_existing_css_set(
320 struct css_set *oldcg,
bd89aabc 321 struct cgroup *cgrp,
817929ec 322 struct cgroup_subsys_state *template[])
b4f48b63
PM
323{
324 int i;
bd89aabc 325 struct cgroupfs_root *root = cgrp->root;
472b1053
LZ
326 struct hlist_head *hhead;
327 struct hlist_node *node;
328 struct css_set *cg;
817929ec
PM
329
330 /* Built the set of subsystem state objects that we want to
331 * see in the new css_set */
332 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
8d53d55d 333 if (root->subsys_bits & (1UL << i)) {
817929ec
PM
334 /* Subsystem is in this hierarchy. So we want
335 * the subsystem state from the new
336 * cgroup */
bd89aabc 337 template[i] = cgrp->subsys[i];
817929ec
PM
338 } else {
339 /* Subsystem is not in this hierarchy, so we
340 * don't want to change the subsystem state */
341 template[i] = oldcg->subsys[i];
342 }
343 }
344
472b1053
LZ
345 hhead = css_set_hash(template);
346 hlist_for_each_entry(cg, node, hhead, hlist) {
817929ec
PM
347 if (!memcmp(template, cg->subsys, sizeof(cg->subsys))) {
348 /* All subsystems matched */
349 return cg;
350 }
472b1053 351 }
817929ec
PM
352
353 /* No existing cgroup group matched */
354 return NULL;
355}
356
357/*
358 * allocate_cg_links() allocates "count" cg_cgroup_link structures
bd89aabc 359 * and chains them on tmp through their cgrp_link_list fields. Returns 0 on
817929ec
PM
360 * success or a negative error
361 */
817929ec
PM
362static int allocate_cg_links(int count, struct list_head *tmp)
363{
364 struct cg_cgroup_link *link;
71cbb949 365 struct cg_cgroup_link *saved_link;
817929ec
PM
366 int i;
367 INIT_LIST_HEAD(tmp);
368 for (i = 0; i < count; i++) {
369 link = kmalloc(sizeof(*link), GFP_KERNEL);
370 if (!link) {
71cbb949
KM
371 list_for_each_entry_safe(link, saved_link, tmp,
372 cgrp_link_list) {
bd89aabc 373 list_del(&link->cgrp_link_list);
817929ec
PM
374 kfree(link);
375 }
376 return -ENOMEM;
377 }
bd89aabc 378 list_add(&link->cgrp_link_list, tmp);
817929ec
PM
379 }
380 return 0;
381}
382
383static void free_cg_links(struct list_head *tmp)
384{
71cbb949
KM
385 struct cg_cgroup_link *link;
386 struct cg_cgroup_link *saved_link;
387
388 list_for_each_entry_safe(link, saved_link, tmp, cgrp_link_list) {
bd89aabc 389 list_del(&link->cgrp_link_list);
817929ec
PM
390 kfree(link);
391 }
392}
393
394/*
395 * find_css_set() takes an existing cgroup group and a
396 * cgroup object, and returns a css_set object that's
397 * equivalent to the old group, but with the given cgroup
398 * substituted into the appropriate hierarchy. Must be called with
399 * cgroup_mutex held
400 */
817929ec 401static struct css_set *find_css_set(
bd89aabc 402 struct css_set *oldcg, struct cgroup *cgrp)
817929ec
PM
403{
404 struct css_set *res;
405 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT];
406 int i;
407
408 struct list_head tmp_cg_links;
409 struct cg_cgroup_link *link;
410
472b1053
LZ
411 struct hlist_head *hhead;
412
817929ec
PM
413 /* First see if we already have a cgroup group that matches
414 * the desired set */
7e9abd89 415 read_lock(&css_set_lock);
bd89aabc 416 res = find_existing_css_set(oldcg, cgrp, template);
817929ec
PM
417 if (res)
418 get_css_set(res);
7e9abd89 419 read_unlock(&css_set_lock);
817929ec
PM
420
421 if (res)
422 return res;
423
424 res = kmalloc(sizeof(*res), GFP_KERNEL);
425 if (!res)
426 return NULL;
427
428 /* Allocate all the cg_cgroup_link objects that we'll need */
429 if (allocate_cg_links(root_count, &tmp_cg_links) < 0) {
430 kfree(res);
431 return NULL;
432 }
433
434 kref_init(&res->ref);
435 INIT_LIST_HEAD(&res->cg_links);
436 INIT_LIST_HEAD(&res->tasks);
472b1053 437 INIT_HLIST_NODE(&res->hlist);
817929ec
PM
438
439 /* Copy the set of subsystem state objects generated in
440 * find_existing_css_set() */
441 memcpy(res->subsys, template, sizeof(res->subsys));
442
443 write_lock(&css_set_lock);
444 /* Add reference counts and links from the new css_set. */
445 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
bd89aabc 446 struct cgroup *cgrp = res->subsys[i]->cgroup;
817929ec 447 struct cgroup_subsys *ss = subsys[i];
bd89aabc 448 atomic_inc(&cgrp->count);
817929ec
PM
449 /*
450 * We want to add a link once per cgroup, so we
451 * only do it for the first subsystem in each
452 * hierarchy
453 */
454 if (ss->root->subsys_list.next == &ss->sibling) {
455 BUG_ON(list_empty(&tmp_cg_links));
456 link = list_entry(tmp_cg_links.next,
457 struct cg_cgroup_link,
bd89aabc
PM
458 cgrp_link_list);
459 list_del(&link->cgrp_link_list);
460 list_add(&link->cgrp_link_list, &cgrp->css_sets);
817929ec
PM
461 link->cg = res;
462 list_add(&link->cg_link_list, &res->cg_links);
463 }
464 }
465 if (list_empty(&rootnode.subsys_list)) {
466 link = list_entry(tmp_cg_links.next,
467 struct cg_cgroup_link,
bd89aabc
PM
468 cgrp_link_list);
469 list_del(&link->cgrp_link_list);
470 list_add(&link->cgrp_link_list, &dummytop->css_sets);
817929ec
PM
471 link->cg = res;
472 list_add(&link->cg_link_list, &res->cg_links);
473 }
474
475 BUG_ON(!list_empty(&tmp_cg_links));
476
817929ec 477 css_set_count++;
472b1053
LZ
478
479 /* Add this cgroup group to the hash table */
480 hhead = css_set_hash(res->subsys);
481 hlist_add_head(&res->hlist, hhead);
482
817929ec
PM
483 write_unlock(&css_set_lock);
484
485 return res;
b4f48b63
PM
486}
487
ddbcc7e8
PM
488/*
489 * There is one global cgroup mutex. We also require taking
490 * task_lock() when dereferencing a task's cgroup subsys pointers.
491 * See "The task_lock() exception", at the end of this comment.
492 *
493 * A task must hold cgroup_mutex to modify cgroups.
494 *
495 * Any task can increment and decrement the count field without lock.
496 * So in general, code holding cgroup_mutex can't rely on the count
497 * field not changing. However, if the count goes to zero, then only
956db3ca 498 * cgroup_attach_task() can increment it again. Because a count of zero
ddbcc7e8
PM
499 * means that no tasks are currently attached, therefore there is no
500 * way a task attached to that cgroup can fork (the other way to
501 * increment the count). So code holding cgroup_mutex can safely
502 * assume that if the count is zero, it will stay zero. Similarly, if
503 * a task holds cgroup_mutex on a cgroup with zero count, it
504 * knows that the cgroup won't be removed, as cgroup_rmdir()
505 * needs that mutex.
506 *
ddbcc7e8
PM
507 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
508 * (usually) take cgroup_mutex. These are the two most performance
509 * critical pieces of code here. The exception occurs on cgroup_exit(),
510 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
511 * is taken, and if the cgroup count is zero, a usermode call made
a043e3b2
LZ
512 * to the release agent with the name of the cgroup (path relative to
513 * the root of cgroup file system) as the argument.
ddbcc7e8
PM
514 *
515 * A cgroup can only be deleted if both its 'count' of using tasks
516 * is zero, and its list of 'children' cgroups is empty. Since all
517 * tasks in the system use _some_ cgroup, and since there is always at
518 * least one task in the system (init, pid == 1), therefore, top_cgroup
519 * always has either children cgroups and/or using tasks. So we don't
520 * need a special hack to ensure that top_cgroup cannot be deleted.
521 *
522 * The task_lock() exception
523 *
524 * The need for this exception arises from the action of
956db3ca 525 * cgroup_attach_task(), which overwrites one tasks cgroup pointer with
a043e3b2 526 * another. It does so using cgroup_mutex, however there are
ddbcc7e8
PM
527 * several performance critical places that need to reference
528 * task->cgroup without the expense of grabbing a system global
529 * mutex. Therefore except as noted below, when dereferencing or, as
956db3ca 530 * in cgroup_attach_task(), modifying a task'ss cgroup pointer we use
ddbcc7e8
PM
531 * task_lock(), which acts on a spinlock (task->alloc_lock) already in
532 * the task_struct routinely used for such matters.
533 *
534 * P.S. One more locking exception. RCU is used to guard the
956db3ca 535 * update of a tasks cgroup pointer by cgroup_attach_task()
ddbcc7e8
PM
536 */
537
ddbcc7e8
PM
538/**
539 * cgroup_lock - lock out any changes to cgroup structures
540 *
541 */
ddbcc7e8
PM
542void cgroup_lock(void)
543{
544 mutex_lock(&cgroup_mutex);
545}
546
547/**
548 * cgroup_unlock - release lock on cgroup changes
549 *
550 * Undo the lock taken in a previous cgroup_lock() call.
551 */
ddbcc7e8
PM
552void cgroup_unlock(void)
553{
554 mutex_unlock(&cgroup_mutex);
555}
556
557/*
558 * A couple of forward declarations required, due to cyclic reference loop:
559 * cgroup_mkdir -> cgroup_create -> cgroup_populate_dir ->
560 * cgroup_add_file -> cgroup_create_file -> cgroup_dir_inode_operations
561 * -> cgroup_mkdir.
562 */
563
564static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode);
565static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry);
bd89aabc 566static int cgroup_populate_dir(struct cgroup *cgrp);
ddbcc7e8 567static struct inode_operations cgroup_dir_inode_operations;
a424316c
PM
568static struct file_operations proc_cgroupstats_operations;
569
570static struct backing_dev_info cgroup_backing_dev_info = {
e4ad08fe 571 .capabilities = BDI_CAP_NO_ACCT_AND_WRITEBACK,
a424316c 572};
ddbcc7e8
PM
573
574static struct inode *cgroup_new_inode(mode_t mode, struct super_block *sb)
575{
576 struct inode *inode = new_inode(sb);
ddbcc7e8
PM
577
578 if (inode) {
579 inode->i_mode = mode;
580 inode->i_uid = current->fsuid;
581 inode->i_gid = current->fsgid;
582 inode->i_blocks = 0;
583 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
584 inode->i_mapping->backing_dev_info = &cgroup_backing_dev_info;
585 }
586 return inode;
587}
588
4fca88c8
KH
589/*
590 * Call subsys's pre_destroy handler.
591 * This is called before css refcnt check.
592 */
4fca88c8
KH
593static void cgroup_call_pre_destroy(struct cgroup *cgrp)
594{
595 struct cgroup_subsys *ss;
596 for_each_subsys(cgrp->root, ss)
597 if (ss->pre_destroy && cgrp->subsys[ss->subsys_id])
598 ss->pre_destroy(ss, cgrp);
599 return;
600}
601
ddbcc7e8
PM
602static void cgroup_diput(struct dentry *dentry, struct inode *inode)
603{
604 /* is dentry a directory ? if so, kfree() associated cgroup */
605 if (S_ISDIR(inode->i_mode)) {
bd89aabc 606 struct cgroup *cgrp = dentry->d_fsdata;
8dc4f3e1 607 struct cgroup_subsys *ss;
bd89aabc 608 BUG_ON(!(cgroup_is_removed(cgrp)));
81a6a5cd
PM
609 /* It's possible for external users to be holding css
610 * reference counts on a cgroup; css_put() needs to
611 * be able to access the cgroup after decrementing
612 * the reference count in order to know if it needs to
613 * queue the cgroup to be handled by the release
614 * agent */
615 synchronize_rcu();
8dc4f3e1
PM
616
617 mutex_lock(&cgroup_mutex);
618 /*
619 * Release the subsystem state objects.
620 */
621 for_each_subsys(cgrp->root, ss) {
622 if (cgrp->subsys[ss->subsys_id])
623 ss->destroy(ss, cgrp);
624 }
625
626 cgrp->root->number_of_cgroups--;
627 mutex_unlock(&cgroup_mutex);
628
629 /* Drop the active superblock reference that we took when we
630 * created the cgroup */
631 deactivate_super(cgrp->root->sb);
632
bd89aabc 633 kfree(cgrp);
ddbcc7e8
PM
634 }
635 iput(inode);
636}
637
638static void remove_dir(struct dentry *d)
639{
640 struct dentry *parent = dget(d->d_parent);
641
642 d_delete(d);
643 simple_rmdir(parent->d_inode, d);
644 dput(parent);
645}
646
647static void cgroup_clear_directory(struct dentry *dentry)
648{
649 struct list_head *node;
650
651 BUG_ON(!mutex_is_locked(&dentry->d_inode->i_mutex));
652 spin_lock(&dcache_lock);
653 node = dentry->d_subdirs.next;
654 while (node != &dentry->d_subdirs) {
655 struct dentry *d = list_entry(node, struct dentry, d_u.d_child);
656 list_del_init(node);
657 if (d->d_inode) {
658 /* This should never be called on a cgroup
659 * directory with child cgroups */
660 BUG_ON(d->d_inode->i_mode & S_IFDIR);
661 d = dget_locked(d);
662 spin_unlock(&dcache_lock);
663 d_delete(d);
664 simple_unlink(dentry->d_inode, d);
665 dput(d);
666 spin_lock(&dcache_lock);
667 }
668 node = dentry->d_subdirs.next;
669 }
670 spin_unlock(&dcache_lock);
671}
672
673/*
674 * NOTE : the dentry must have been dget()'ed
675 */
676static void cgroup_d_remove_dir(struct dentry *dentry)
677{
678 cgroup_clear_directory(dentry);
679
680 spin_lock(&dcache_lock);
681 list_del_init(&dentry->d_u.d_child);
682 spin_unlock(&dcache_lock);
683 remove_dir(dentry);
684}
685
686static int rebind_subsystems(struct cgroupfs_root *root,
687 unsigned long final_bits)
688{
689 unsigned long added_bits, removed_bits;
bd89aabc 690 struct cgroup *cgrp = &root->top_cgroup;
ddbcc7e8
PM
691 int i;
692
693 removed_bits = root->actual_subsys_bits & ~final_bits;
694 added_bits = final_bits & ~root->actual_subsys_bits;
695 /* Check that any added subsystems are currently free */
696 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
8d53d55d 697 unsigned long bit = 1UL << i;
ddbcc7e8
PM
698 struct cgroup_subsys *ss = subsys[i];
699 if (!(bit & added_bits))
700 continue;
701 if (ss->root != &rootnode) {
702 /* Subsystem isn't free */
703 return -EBUSY;
704 }
705 }
706
707 /* Currently we don't handle adding/removing subsystems when
708 * any child cgroups exist. This is theoretically supportable
709 * but involves complex error handling, so it's being left until
710 * later */
bd89aabc 711 if (!list_empty(&cgrp->children))
ddbcc7e8
PM
712 return -EBUSY;
713
714 /* Process each subsystem */
715 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
716 struct cgroup_subsys *ss = subsys[i];
717 unsigned long bit = 1UL << i;
718 if (bit & added_bits) {
719 /* We're binding this subsystem to this hierarchy */
bd89aabc 720 BUG_ON(cgrp->subsys[i]);
ddbcc7e8
PM
721 BUG_ON(!dummytop->subsys[i]);
722 BUG_ON(dummytop->subsys[i]->cgroup != dummytop);
bd89aabc
PM
723 cgrp->subsys[i] = dummytop->subsys[i];
724 cgrp->subsys[i]->cgroup = cgrp;
ddbcc7e8
PM
725 list_add(&ss->sibling, &root->subsys_list);
726 rcu_assign_pointer(ss->root, root);
727 if (ss->bind)
bd89aabc 728 ss->bind(ss, cgrp);
ddbcc7e8
PM
729
730 } else if (bit & removed_bits) {
731 /* We're removing this subsystem */
bd89aabc
PM
732 BUG_ON(cgrp->subsys[i] != dummytop->subsys[i]);
733 BUG_ON(cgrp->subsys[i]->cgroup != cgrp);
ddbcc7e8
PM
734 if (ss->bind)
735 ss->bind(ss, dummytop);
736 dummytop->subsys[i]->cgroup = dummytop;
bd89aabc 737 cgrp->subsys[i] = NULL;
ddbcc7e8
PM
738 rcu_assign_pointer(subsys[i]->root, &rootnode);
739 list_del(&ss->sibling);
740 } else if (bit & final_bits) {
741 /* Subsystem state should already exist */
bd89aabc 742 BUG_ON(!cgrp->subsys[i]);
ddbcc7e8
PM
743 } else {
744 /* Subsystem state shouldn't exist */
bd89aabc 745 BUG_ON(cgrp->subsys[i]);
ddbcc7e8
PM
746 }
747 }
748 root->subsys_bits = root->actual_subsys_bits = final_bits;
749 synchronize_rcu();
750
751 return 0;
752}
753
754static int cgroup_show_options(struct seq_file *seq, struct vfsmount *vfs)
755{
756 struct cgroupfs_root *root = vfs->mnt_sb->s_fs_info;
757 struct cgroup_subsys *ss;
758
759 mutex_lock(&cgroup_mutex);
760 for_each_subsys(root, ss)
761 seq_printf(seq, ",%s", ss->name);
762 if (test_bit(ROOT_NOPREFIX, &root->flags))
763 seq_puts(seq, ",noprefix");
81a6a5cd
PM
764 if (strlen(root->release_agent_path))
765 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
ddbcc7e8
PM
766 mutex_unlock(&cgroup_mutex);
767 return 0;
768}
769
770struct cgroup_sb_opts {
771 unsigned long subsys_bits;
772 unsigned long flags;
81a6a5cd 773 char *release_agent;
ddbcc7e8
PM
774};
775
776/* Convert a hierarchy specifier into a bitmask of subsystems and
777 * flags. */
778static int parse_cgroupfs_options(char *data,
779 struct cgroup_sb_opts *opts)
780{
781 char *token, *o = data ?: "all";
782
783 opts->subsys_bits = 0;
784 opts->flags = 0;
81a6a5cd 785 opts->release_agent = NULL;
ddbcc7e8
PM
786
787 while ((token = strsep(&o, ",")) != NULL) {
788 if (!*token)
789 return -EINVAL;
790 if (!strcmp(token, "all")) {
8bab8dde
PM
791 /* Add all non-disabled subsystems */
792 int i;
793 opts->subsys_bits = 0;
794 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
795 struct cgroup_subsys *ss = subsys[i];
796 if (!ss->disabled)
797 opts->subsys_bits |= 1ul << i;
798 }
ddbcc7e8
PM
799 } else if (!strcmp(token, "noprefix")) {
800 set_bit(ROOT_NOPREFIX, &opts->flags);
81a6a5cd
PM
801 } else if (!strncmp(token, "release_agent=", 14)) {
802 /* Specifying two release agents is forbidden */
803 if (opts->release_agent)
804 return -EINVAL;
805 opts->release_agent = kzalloc(PATH_MAX, GFP_KERNEL);
806 if (!opts->release_agent)
807 return -ENOMEM;
808 strncpy(opts->release_agent, token + 14, PATH_MAX - 1);
809 opts->release_agent[PATH_MAX - 1] = 0;
ddbcc7e8
PM
810 } else {
811 struct cgroup_subsys *ss;
812 int i;
813 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
814 ss = subsys[i];
815 if (!strcmp(token, ss->name)) {
8bab8dde
PM
816 if (!ss->disabled)
817 set_bit(i, &opts->subsys_bits);
ddbcc7e8
PM
818 break;
819 }
820 }
821 if (i == CGROUP_SUBSYS_COUNT)
822 return -ENOENT;
823 }
824 }
825
826 /* We can't have an empty hierarchy */
827 if (!opts->subsys_bits)
828 return -EINVAL;
829
830 return 0;
831}
832
833static int cgroup_remount(struct super_block *sb, int *flags, char *data)
834{
835 int ret = 0;
836 struct cgroupfs_root *root = sb->s_fs_info;
bd89aabc 837 struct cgroup *cgrp = &root->top_cgroup;
ddbcc7e8
PM
838 struct cgroup_sb_opts opts;
839
bd89aabc 840 mutex_lock(&cgrp->dentry->d_inode->i_mutex);
ddbcc7e8
PM
841 mutex_lock(&cgroup_mutex);
842
843 /* See what subsystems are wanted */
844 ret = parse_cgroupfs_options(data, &opts);
845 if (ret)
846 goto out_unlock;
847
848 /* Don't allow flags to change at remount */
849 if (opts.flags != root->flags) {
850 ret = -EINVAL;
851 goto out_unlock;
852 }
853
854 ret = rebind_subsystems(root, opts.subsys_bits);
855
856 /* (re)populate subsystem files */
857 if (!ret)
bd89aabc 858 cgroup_populate_dir(cgrp);
ddbcc7e8 859
81a6a5cd
PM
860 if (opts.release_agent)
861 strcpy(root->release_agent_path, opts.release_agent);
ddbcc7e8 862 out_unlock:
81a6a5cd
PM
863 if (opts.release_agent)
864 kfree(opts.release_agent);
ddbcc7e8 865 mutex_unlock(&cgroup_mutex);
bd89aabc 866 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
ddbcc7e8
PM
867 return ret;
868}
869
870static struct super_operations cgroup_ops = {
871 .statfs = simple_statfs,
872 .drop_inode = generic_delete_inode,
873 .show_options = cgroup_show_options,
874 .remount_fs = cgroup_remount,
875};
876
877static void init_cgroup_root(struct cgroupfs_root *root)
878{
bd89aabc 879 struct cgroup *cgrp = &root->top_cgroup;
ddbcc7e8
PM
880 INIT_LIST_HEAD(&root->subsys_list);
881 INIT_LIST_HEAD(&root->root_list);
882 root->number_of_cgroups = 1;
bd89aabc
PM
883 cgrp->root = root;
884 cgrp->top_cgroup = cgrp;
885 INIT_LIST_HEAD(&cgrp->sibling);
886 INIT_LIST_HEAD(&cgrp->children);
887 INIT_LIST_HEAD(&cgrp->css_sets);
888 INIT_LIST_HEAD(&cgrp->release_list);
ddbcc7e8
PM
889}
890
891static int cgroup_test_super(struct super_block *sb, void *data)
892{
893 struct cgroupfs_root *new = data;
894 struct cgroupfs_root *root = sb->s_fs_info;
895
896 /* First check subsystems */
897 if (new->subsys_bits != root->subsys_bits)
898 return 0;
899
900 /* Next check flags */
901 if (new->flags != root->flags)
902 return 0;
903
904 return 1;
905}
906
907static int cgroup_set_super(struct super_block *sb, void *data)
908{
909 int ret;
910 struct cgroupfs_root *root = data;
911
912 ret = set_anon_super(sb, NULL);
913 if (ret)
914 return ret;
915
916 sb->s_fs_info = root;
917 root->sb = sb;
918
919 sb->s_blocksize = PAGE_CACHE_SIZE;
920 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
921 sb->s_magic = CGROUP_SUPER_MAGIC;
922 sb->s_op = &cgroup_ops;
923
924 return 0;
925}
926
927static int cgroup_get_rootdir(struct super_block *sb)
928{
929 struct inode *inode =
930 cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb);
931 struct dentry *dentry;
932
933 if (!inode)
934 return -ENOMEM;
935
ddbcc7e8
PM
936 inode->i_fop = &simple_dir_operations;
937 inode->i_op = &cgroup_dir_inode_operations;
938 /* directories start off with i_nlink == 2 (for "." entry) */
939 inc_nlink(inode);
940 dentry = d_alloc_root(inode);
941 if (!dentry) {
942 iput(inode);
943 return -ENOMEM;
944 }
945 sb->s_root = dentry;
946 return 0;
947}
948
949static int cgroup_get_sb(struct file_system_type *fs_type,
950 int flags, const char *unused_dev_name,
951 void *data, struct vfsmount *mnt)
952{
953 struct cgroup_sb_opts opts;
954 int ret = 0;
955 struct super_block *sb;
956 struct cgroupfs_root *root;
28fd5dfc 957 struct list_head tmp_cg_links;
817929ec 958 INIT_LIST_HEAD(&tmp_cg_links);
ddbcc7e8
PM
959
960 /* First find the desired set of subsystems */
961 ret = parse_cgroupfs_options(data, &opts);
81a6a5cd
PM
962 if (ret) {
963 if (opts.release_agent)
964 kfree(opts.release_agent);
ddbcc7e8 965 return ret;
81a6a5cd 966 }
ddbcc7e8
PM
967
968 root = kzalloc(sizeof(*root), GFP_KERNEL);
f7770738
LZ
969 if (!root) {
970 if (opts.release_agent)
971 kfree(opts.release_agent);
ddbcc7e8 972 return -ENOMEM;
f7770738 973 }
ddbcc7e8
PM
974
975 init_cgroup_root(root);
976 root->subsys_bits = opts.subsys_bits;
977 root->flags = opts.flags;
81a6a5cd
PM
978 if (opts.release_agent) {
979 strcpy(root->release_agent_path, opts.release_agent);
980 kfree(opts.release_agent);
981 }
ddbcc7e8
PM
982
983 sb = sget(fs_type, cgroup_test_super, cgroup_set_super, root);
984
985 if (IS_ERR(sb)) {
986 kfree(root);
987 return PTR_ERR(sb);
988 }
989
990 if (sb->s_fs_info != root) {
991 /* Reusing an existing superblock */
992 BUG_ON(sb->s_root == NULL);
993 kfree(root);
994 root = NULL;
995 } else {
996 /* New superblock */
bd89aabc 997 struct cgroup *cgrp = &root->top_cgroup;
817929ec 998 struct inode *inode;
28fd5dfc 999 int i;
ddbcc7e8
PM
1000
1001 BUG_ON(sb->s_root != NULL);
1002
1003 ret = cgroup_get_rootdir(sb);
1004 if (ret)
1005 goto drop_new_super;
817929ec 1006 inode = sb->s_root->d_inode;
ddbcc7e8 1007
817929ec 1008 mutex_lock(&inode->i_mutex);
ddbcc7e8
PM
1009 mutex_lock(&cgroup_mutex);
1010
817929ec
PM
1011 /*
1012 * We're accessing css_set_count without locking
1013 * css_set_lock here, but that's OK - it can only be
1014 * increased by someone holding cgroup_lock, and
1015 * that's us. The worst that can happen is that we
1016 * have some link structures left over
1017 */
1018 ret = allocate_cg_links(css_set_count, &tmp_cg_links);
1019 if (ret) {
1020 mutex_unlock(&cgroup_mutex);
1021 mutex_unlock(&inode->i_mutex);
1022 goto drop_new_super;
1023 }
1024
ddbcc7e8
PM
1025 ret = rebind_subsystems(root, root->subsys_bits);
1026 if (ret == -EBUSY) {
1027 mutex_unlock(&cgroup_mutex);
817929ec 1028 mutex_unlock(&inode->i_mutex);
ddbcc7e8
PM
1029 goto drop_new_super;
1030 }
1031
1032 /* EBUSY should be the only error here */
1033 BUG_ON(ret);
1034
1035 list_add(&root->root_list, &roots);
817929ec 1036 root_count++;
ddbcc7e8
PM
1037
1038 sb->s_root->d_fsdata = &root->top_cgroup;
1039 root->top_cgroup.dentry = sb->s_root;
1040
817929ec
PM
1041 /* Link the top cgroup in this hierarchy into all
1042 * the css_set objects */
1043 write_lock(&css_set_lock);
28fd5dfc
LZ
1044 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
1045 struct hlist_head *hhead = &css_set_table[i];
1046 struct hlist_node *node;
817929ec 1047 struct css_set *cg;
28fd5dfc
LZ
1048
1049 hlist_for_each_entry(cg, node, hhead, hlist) {
1050 struct cg_cgroup_link *link;
1051
1052 BUG_ON(list_empty(&tmp_cg_links));
1053 link = list_entry(tmp_cg_links.next,
1054 struct cg_cgroup_link,
1055 cgrp_link_list);
1056 list_del(&link->cgrp_link_list);
1057 link->cg = cg;
1058 list_add(&link->cgrp_link_list,
1059 &root->top_cgroup.css_sets);
1060 list_add(&link->cg_link_list, &cg->cg_links);
1061 }
1062 }
817929ec
PM
1063 write_unlock(&css_set_lock);
1064
1065 free_cg_links(&tmp_cg_links);
1066
bd89aabc
PM
1067 BUG_ON(!list_empty(&cgrp->sibling));
1068 BUG_ON(!list_empty(&cgrp->children));
ddbcc7e8
PM
1069 BUG_ON(root->number_of_cgroups != 1);
1070
bd89aabc 1071 cgroup_populate_dir(cgrp);
817929ec 1072 mutex_unlock(&inode->i_mutex);
ddbcc7e8
PM
1073 mutex_unlock(&cgroup_mutex);
1074 }
1075
1076 return simple_set_mnt(mnt, sb);
1077
1078 drop_new_super:
1079 up_write(&sb->s_umount);
1080 deactivate_super(sb);
817929ec 1081 free_cg_links(&tmp_cg_links);
ddbcc7e8
PM
1082 return ret;
1083}
1084
1085static void cgroup_kill_sb(struct super_block *sb) {
1086 struct cgroupfs_root *root = sb->s_fs_info;
bd89aabc 1087 struct cgroup *cgrp = &root->top_cgroup;
ddbcc7e8 1088 int ret;
71cbb949
KM
1089 struct cg_cgroup_link *link;
1090 struct cg_cgroup_link *saved_link;
ddbcc7e8
PM
1091
1092 BUG_ON(!root);
1093
1094 BUG_ON(root->number_of_cgroups != 1);
bd89aabc
PM
1095 BUG_ON(!list_empty(&cgrp->children));
1096 BUG_ON(!list_empty(&cgrp->sibling));
ddbcc7e8
PM
1097
1098 mutex_lock(&cgroup_mutex);
1099
1100 /* Rebind all subsystems back to the default hierarchy */
1101 ret = rebind_subsystems(root, 0);
1102 /* Shouldn't be able to fail ... */
1103 BUG_ON(ret);
1104
817929ec
PM
1105 /*
1106 * Release all the links from css_sets to this hierarchy's
1107 * root cgroup
1108 */
1109 write_lock(&css_set_lock);
71cbb949
KM
1110
1111 list_for_each_entry_safe(link, saved_link, &cgrp->css_sets,
1112 cgrp_link_list) {
817929ec 1113 list_del(&link->cg_link_list);
bd89aabc 1114 list_del(&link->cgrp_link_list);
817929ec
PM
1115 kfree(link);
1116 }
1117 write_unlock(&css_set_lock);
1118
1119 if (!list_empty(&root->root_list)) {
ddbcc7e8 1120 list_del(&root->root_list);
817929ec
PM
1121 root_count--;
1122 }
ddbcc7e8
PM
1123 mutex_unlock(&cgroup_mutex);
1124
1125 kfree(root);
1126 kill_litter_super(sb);
1127}
1128
1129static struct file_system_type cgroup_fs_type = {
1130 .name = "cgroup",
1131 .get_sb = cgroup_get_sb,
1132 .kill_sb = cgroup_kill_sb,
1133};
1134
bd89aabc 1135static inline struct cgroup *__d_cgrp(struct dentry *dentry)
ddbcc7e8
PM
1136{
1137 return dentry->d_fsdata;
1138}
1139
1140static inline struct cftype *__d_cft(struct dentry *dentry)
1141{
1142 return dentry->d_fsdata;
1143}
1144
a043e3b2
LZ
1145/**
1146 * cgroup_path - generate the path of a cgroup
1147 * @cgrp: the cgroup in question
1148 * @buf: the buffer to write the path into
1149 * @buflen: the length of the buffer
1150 *
1151 * Called with cgroup_mutex held. Writes path of cgroup into buf.
ddbcc7e8
PM
1152 * Returns 0 on success, -errno on error.
1153 */
bd89aabc 1154int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
ddbcc7e8
PM
1155{
1156 char *start;
1157
bd89aabc 1158 if (cgrp == dummytop) {
ddbcc7e8
PM
1159 /*
1160 * Inactive subsystems have no dentry for their root
1161 * cgroup
1162 */
1163 strcpy(buf, "/");
1164 return 0;
1165 }
1166
1167 start = buf + buflen;
1168
1169 *--start = '\0';
1170 for (;;) {
bd89aabc 1171 int len = cgrp->dentry->d_name.len;
ddbcc7e8
PM
1172 if ((start -= len) < buf)
1173 return -ENAMETOOLONG;
bd89aabc
PM
1174 memcpy(start, cgrp->dentry->d_name.name, len);
1175 cgrp = cgrp->parent;
1176 if (!cgrp)
ddbcc7e8 1177 break;
bd89aabc 1178 if (!cgrp->parent)
ddbcc7e8
PM
1179 continue;
1180 if (--start < buf)
1181 return -ENAMETOOLONG;
1182 *start = '/';
1183 }
1184 memmove(buf, start, buf + buflen - start);
1185 return 0;
1186}
1187
bbcb81d0
PM
1188/*
1189 * Return the first subsystem attached to a cgroup's hierarchy, and
1190 * its subsystem id.
1191 */
1192
bd89aabc 1193static void get_first_subsys(const struct cgroup *cgrp,
bbcb81d0
PM
1194 struct cgroup_subsys_state **css, int *subsys_id)
1195{
bd89aabc 1196 const struct cgroupfs_root *root = cgrp->root;
bbcb81d0
PM
1197 const struct cgroup_subsys *test_ss;
1198 BUG_ON(list_empty(&root->subsys_list));
1199 test_ss = list_entry(root->subsys_list.next,
1200 struct cgroup_subsys, sibling);
1201 if (css) {
bd89aabc 1202 *css = cgrp->subsys[test_ss->subsys_id];
bbcb81d0
PM
1203 BUG_ON(!*css);
1204 }
1205 if (subsys_id)
1206 *subsys_id = test_ss->subsys_id;
1207}
1208
a043e3b2
LZ
1209/**
1210 * cgroup_attach_task - attach task 'tsk' to cgroup 'cgrp'
1211 * @cgrp: the cgroup the task is attaching to
1212 * @tsk: the task to be attached
bbcb81d0 1213 *
a043e3b2
LZ
1214 * Call holding cgroup_mutex. May take task_lock of
1215 * the task 'tsk' during call.
bbcb81d0 1216 */
956db3ca 1217int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
bbcb81d0
PM
1218{
1219 int retval = 0;
1220 struct cgroup_subsys *ss;
bd89aabc 1221 struct cgroup *oldcgrp;
817929ec
PM
1222 struct css_set *cg = tsk->cgroups;
1223 struct css_set *newcg;
bd89aabc 1224 struct cgroupfs_root *root = cgrp->root;
bbcb81d0
PM
1225 int subsys_id;
1226
bd89aabc 1227 get_first_subsys(cgrp, NULL, &subsys_id);
bbcb81d0
PM
1228
1229 /* Nothing to do if the task is already in that cgroup */
bd89aabc
PM
1230 oldcgrp = task_cgroup(tsk, subsys_id);
1231 if (cgrp == oldcgrp)
bbcb81d0
PM
1232 return 0;
1233
1234 for_each_subsys(root, ss) {
1235 if (ss->can_attach) {
bd89aabc 1236 retval = ss->can_attach(ss, cgrp, tsk);
e18f6318 1237 if (retval)
bbcb81d0 1238 return retval;
bbcb81d0
PM
1239 }
1240 }
1241
817929ec
PM
1242 /*
1243 * Locate or allocate a new css_set for this task,
1244 * based on its final set of cgroups
1245 */
bd89aabc 1246 newcg = find_css_set(cg, cgrp);
e18f6318 1247 if (!newcg)
817929ec 1248 return -ENOMEM;
817929ec 1249
bbcb81d0
PM
1250 task_lock(tsk);
1251 if (tsk->flags & PF_EXITING) {
1252 task_unlock(tsk);
817929ec 1253 put_css_set(newcg);
bbcb81d0
PM
1254 return -ESRCH;
1255 }
817929ec 1256 rcu_assign_pointer(tsk->cgroups, newcg);
bbcb81d0
PM
1257 task_unlock(tsk);
1258
817929ec
PM
1259 /* Update the css_set linked lists if we're using them */
1260 write_lock(&css_set_lock);
1261 if (!list_empty(&tsk->cg_list)) {
1262 list_del(&tsk->cg_list);
1263 list_add(&tsk->cg_list, &newcg->tasks);
1264 }
1265 write_unlock(&css_set_lock);
1266
bbcb81d0 1267 for_each_subsys(root, ss) {
e18f6318 1268 if (ss->attach)
bd89aabc 1269 ss->attach(ss, cgrp, oldcgrp, tsk);
bbcb81d0 1270 }
bd89aabc 1271 set_bit(CGRP_RELEASABLE, &oldcgrp->flags);
bbcb81d0 1272 synchronize_rcu();
817929ec 1273 put_css_set(cg);
bbcb81d0
PM
1274 return 0;
1275}
1276
1277/*
af351026
PM
1278 * Attach task with pid 'pid' to cgroup 'cgrp'. Call with cgroup_mutex
1279 * held. May take task_lock of task
bbcb81d0 1280 */
af351026 1281static int attach_task_by_pid(struct cgroup *cgrp, u64 pid)
bbcb81d0 1282{
bbcb81d0
PM
1283 struct task_struct *tsk;
1284 int ret;
1285
bbcb81d0
PM
1286 if (pid) {
1287 rcu_read_lock();
73507f33 1288 tsk = find_task_by_vpid(pid);
bbcb81d0
PM
1289 if (!tsk || tsk->flags & PF_EXITING) {
1290 rcu_read_unlock();
1291 return -ESRCH;
1292 }
1293 get_task_struct(tsk);
1294 rcu_read_unlock();
1295
1296 if ((current->euid) && (current->euid != tsk->uid)
1297 && (current->euid != tsk->suid)) {
1298 put_task_struct(tsk);
1299 return -EACCES;
1300 }
1301 } else {
1302 tsk = current;
1303 get_task_struct(tsk);
1304 }
1305
956db3ca 1306 ret = cgroup_attach_task(cgrp, tsk);
bbcb81d0
PM
1307 put_task_struct(tsk);
1308 return ret;
1309}
1310
af351026
PM
1311static int cgroup_tasks_write(struct cgroup *cgrp, struct cftype *cft, u64 pid)
1312{
1313 int ret;
1314 if (!cgroup_lock_live_group(cgrp))
1315 return -ENODEV;
1316 ret = attach_task_by_pid(cgrp, pid);
1317 cgroup_unlock();
1318 return ret;
1319}
1320
ddbcc7e8 1321/* The various types of files and directories in a cgroup file system */
ddbcc7e8
PM
1322enum cgroup_filetype {
1323 FILE_ROOT,
1324 FILE_DIR,
1325 FILE_TASKLIST,
81a6a5cd 1326 FILE_NOTIFY_ON_RELEASE,
81a6a5cd 1327 FILE_RELEASE_AGENT,
ddbcc7e8
PM
1328};
1329
e788e066
PM
1330/**
1331 * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive.
1332 * @cgrp: the cgroup to be checked for liveness
1333 *
84eea842
PM
1334 * On success, returns true; the lock should be later released with
1335 * cgroup_unlock(). On failure returns false with no lock held.
e788e066 1336 */
84eea842 1337bool cgroup_lock_live_group(struct cgroup *cgrp)
e788e066
PM
1338{
1339 mutex_lock(&cgroup_mutex);
1340 if (cgroup_is_removed(cgrp)) {
1341 mutex_unlock(&cgroup_mutex);
1342 return false;
1343 }
1344 return true;
1345}
1346
1347static int cgroup_release_agent_write(struct cgroup *cgrp, struct cftype *cft,
1348 const char *buffer)
1349{
1350 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
1351 if (!cgroup_lock_live_group(cgrp))
1352 return -ENODEV;
1353 strcpy(cgrp->root->release_agent_path, buffer);
84eea842 1354 cgroup_unlock();
e788e066
PM
1355 return 0;
1356}
1357
1358static int cgroup_release_agent_show(struct cgroup *cgrp, struct cftype *cft,
1359 struct seq_file *seq)
1360{
1361 if (!cgroup_lock_live_group(cgrp))
1362 return -ENODEV;
1363 seq_puts(seq, cgrp->root->release_agent_path);
1364 seq_putc(seq, '\n');
84eea842 1365 cgroup_unlock();
e788e066
PM
1366 return 0;
1367}
1368
84eea842
PM
1369/* A buffer size big enough for numbers or short strings */
1370#define CGROUP_LOCAL_BUFFER_SIZE 64
1371
e73d2c61 1372static ssize_t cgroup_write_X64(struct cgroup *cgrp, struct cftype *cft,
f4c753b7
PM
1373 struct file *file,
1374 const char __user *userbuf,
1375 size_t nbytes, loff_t *unused_ppos)
355e0c48 1376{
84eea842 1377 char buffer[CGROUP_LOCAL_BUFFER_SIZE];
355e0c48 1378 int retval = 0;
355e0c48
PM
1379 char *end;
1380
1381 if (!nbytes)
1382 return -EINVAL;
1383 if (nbytes >= sizeof(buffer))
1384 return -E2BIG;
1385 if (copy_from_user(buffer, userbuf, nbytes))
1386 return -EFAULT;
1387
1388 buffer[nbytes] = 0; /* nul-terminate */
b7269dfc 1389 strstrip(buffer);
e73d2c61
PM
1390 if (cft->write_u64) {
1391 u64 val = simple_strtoull(buffer, &end, 0);
1392 if (*end)
1393 return -EINVAL;
1394 retval = cft->write_u64(cgrp, cft, val);
1395 } else {
1396 s64 val = simple_strtoll(buffer, &end, 0);
1397 if (*end)
1398 return -EINVAL;
1399 retval = cft->write_s64(cgrp, cft, val);
1400 }
355e0c48
PM
1401 if (!retval)
1402 retval = nbytes;
1403 return retval;
1404}
1405
db3b1497
PM
1406static ssize_t cgroup_write_string(struct cgroup *cgrp, struct cftype *cft,
1407 struct file *file,
1408 const char __user *userbuf,
1409 size_t nbytes, loff_t *unused_ppos)
1410{
84eea842 1411 char local_buffer[CGROUP_LOCAL_BUFFER_SIZE];
db3b1497
PM
1412 int retval = 0;
1413 size_t max_bytes = cft->max_write_len;
1414 char *buffer = local_buffer;
1415
1416 if (!max_bytes)
1417 max_bytes = sizeof(local_buffer) - 1;
1418 if (nbytes >= max_bytes)
1419 return -E2BIG;
1420 /* Allocate a dynamic buffer if we need one */
1421 if (nbytes >= sizeof(local_buffer)) {
1422 buffer = kmalloc(nbytes + 1, GFP_KERNEL);
1423 if (buffer == NULL)
1424 return -ENOMEM;
1425 }
1426 if (nbytes && copy_from_user(buffer, userbuf, nbytes))
1427 return -EFAULT;
1428
1429 buffer[nbytes] = 0; /* nul-terminate */
1430 strstrip(buffer);
1431 retval = cft->write_string(cgrp, cft, buffer);
1432 if (!retval)
1433 retval = nbytes;
1434 if (buffer != local_buffer)
1435 kfree(buffer);
1436 return retval;
1437}
1438
ddbcc7e8
PM
1439static ssize_t cgroup_file_write(struct file *file, const char __user *buf,
1440 size_t nbytes, loff_t *ppos)
1441{
1442 struct cftype *cft = __d_cft(file->f_dentry);
bd89aabc 1443 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
ddbcc7e8 1444
8dc4f3e1 1445 if (!cft || cgroup_is_removed(cgrp))
ddbcc7e8 1446 return -ENODEV;
355e0c48 1447 if (cft->write)
bd89aabc 1448 return cft->write(cgrp, cft, file, buf, nbytes, ppos);
e73d2c61
PM
1449 if (cft->write_u64 || cft->write_s64)
1450 return cgroup_write_X64(cgrp, cft, file, buf, nbytes, ppos);
db3b1497
PM
1451 if (cft->write_string)
1452 return cgroup_write_string(cgrp, cft, file, buf, nbytes, ppos);
d447ea2f
PE
1453 if (cft->trigger) {
1454 int ret = cft->trigger(cgrp, (unsigned int)cft->private);
1455 return ret ? ret : nbytes;
1456 }
355e0c48 1457 return -EINVAL;
ddbcc7e8
PM
1458}
1459
f4c753b7
PM
1460static ssize_t cgroup_read_u64(struct cgroup *cgrp, struct cftype *cft,
1461 struct file *file,
1462 char __user *buf, size_t nbytes,
1463 loff_t *ppos)
ddbcc7e8 1464{
84eea842 1465 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
f4c753b7 1466 u64 val = cft->read_u64(cgrp, cft);
ddbcc7e8
PM
1467 int len = sprintf(tmp, "%llu\n", (unsigned long long) val);
1468
1469 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
1470}
1471
e73d2c61
PM
1472static ssize_t cgroup_read_s64(struct cgroup *cgrp, struct cftype *cft,
1473 struct file *file,
1474 char __user *buf, size_t nbytes,
1475 loff_t *ppos)
1476{
84eea842 1477 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
e73d2c61
PM
1478 s64 val = cft->read_s64(cgrp, cft);
1479 int len = sprintf(tmp, "%lld\n", (long long) val);
1480
1481 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
1482}
1483
ddbcc7e8
PM
1484static ssize_t cgroup_file_read(struct file *file, char __user *buf,
1485 size_t nbytes, loff_t *ppos)
1486{
1487 struct cftype *cft = __d_cft(file->f_dentry);
bd89aabc 1488 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
ddbcc7e8 1489
8dc4f3e1 1490 if (!cft || cgroup_is_removed(cgrp))
ddbcc7e8
PM
1491 return -ENODEV;
1492
1493 if (cft->read)
bd89aabc 1494 return cft->read(cgrp, cft, file, buf, nbytes, ppos);
f4c753b7
PM
1495 if (cft->read_u64)
1496 return cgroup_read_u64(cgrp, cft, file, buf, nbytes, ppos);
e73d2c61
PM
1497 if (cft->read_s64)
1498 return cgroup_read_s64(cgrp, cft, file, buf, nbytes, ppos);
ddbcc7e8
PM
1499 return -EINVAL;
1500}
1501
91796569
PM
1502/*
1503 * seqfile ops/methods for returning structured data. Currently just
1504 * supports string->u64 maps, but can be extended in future.
1505 */
1506
1507struct cgroup_seqfile_state {
1508 struct cftype *cft;
1509 struct cgroup *cgroup;
1510};
1511
1512static int cgroup_map_add(struct cgroup_map_cb *cb, const char *key, u64 value)
1513{
1514 struct seq_file *sf = cb->state;
1515 return seq_printf(sf, "%s %llu\n", key, (unsigned long long)value);
1516}
1517
1518static int cgroup_seqfile_show(struct seq_file *m, void *arg)
1519{
1520 struct cgroup_seqfile_state *state = m->private;
1521 struct cftype *cft = state->cft;
29486df3
SH
1522 if (cft->read_map) {
1523 struct cgroup_map_cb cb = {
1524 .fill = cgroup_map_add,
1525 .state = m,
1526 };
1527 return cft->read_map(state->cgroup, cft, &cb);
1528 }
1529 return cft->read_seq_string(state->cgroup, cft, m);
91796569
PM
1530}
1531
1532int cgroup_seqfile_release(struct inode *inode, struct file *file)
1533{
1534 struct seq_file *seq = file->private_data;
1535 kfree(seq->private);
1536 return single_release(inode, file);
1537}
1538
1539static struct file_operations cgroup_seqfile_operations = {
1540 .read = seq_read,
e788e066 1541 .write = cgroup_file_write,
91796569
PM
1542 .llseek = seq_lseek,
1543 .release = cgroup_seqfile_release,
1544};
1545
ddbcc7e8
PM
1546static int cgroup_file_open(struct inode *inode, struct file *file)
1547{
1548 int err;
1549 struct cftype *cft;
1550
1551 err = generic_file_open(inode, file);
1552 if (err)
1553 return err;
1554
1555 cft = __d_cft(file->f_dentry);
1556 if (!cft)
1557 return -ENODEV;
29486df3 1558 if (cft->read_map || cft->read_seq_string) {
91796569
PM
1559 struct cgroup_seqfile_state *state =
1560 kzalloc(sizeof(*state), GFP_USER);
1561 if (!state)
1562 return -ENOMEM;
1563 state->cft = cft;
1564 state->cgroup = __d_cgrp(file->f_dentry->d_parent);
1565 file->f_op = &cgroup_seqfile_operations;
1566 err = single_open(file, cgroup_seqfile_show, state);
1567 if (err < 0)
1568 kfree(state);
1569 } else if (cft->open)
ddbcc7e8
PM
1570 err = cft->open(inode, file);
1571 else
1572 err = 0;
1573
1574 return err;
1575}
1576
1577static int cgroup_file_release(struct inode *inode, struct file *file)
1578{
1579 struct cftype *cft = __d_cft(file->f_dentry);
1580 if (cft->release)
1581 return cft->release(inode, file);
1582 return 0;
1583}
1584
1585/*
1586 * cgroup_rename - Only allow simple rename of directories in place.
1587 */
1588static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry,
1589 struct inode *new_dir, struct dentry *new_dentry)
1590{
1591 if (!S_ISDIR(old_dentry->d_inode->i_mode))
1592 return -ENOTDIR;
1593 if (new_dentry->d_inode)
1594 return -EEXIST;
1595 if (old_dir != new_dir)
1596 return -EIO;
1597 return simple_rename(old_dir, old_dentry, new_dir, new_dentry);
1598}
1599
1600static struct file_operations cgroup_file_operations = {
1601 .read = cgroup_file_read,
1602 .write = cgroup_file_write,
1603 .llseek = generic_file_llseek,
1604 .open = cgroup_file_open,
1605 .release = cgroup_file_release,
1606};
1607
1608static struct inode_operations cgroup_dir_inode_operations = {
1609 .lookup = simple_lookup,
1610 .mkdir = cgroup_mkdir,
1611 .rmdir = cgroup_rmdir,
1612 .rename = cgroup_rename,
1613};
1614
1615static int cgroup_create_file(struct dentry *dentry, int mode,
1616 struct super_block *sb)
1617{
1618 static struct dentry_operations cgroup_dops = {
1619 .d_iput = cgroup_diput,
1620 };
1621
1622 struct inode *inode;
1623
1624 if (!dentry)
1625 return -ENOENT;
1626 if (dentry->d_inode)
1627 return -EEXIST;
1628
1629 inode = cgroup_new_inode(mode, sb);
1630 if (!inode)
1631 return -ENOMEM;
1632
1633 if (S_ISDIR(mode)) {
1634 inode->i_op = &cgroup_dir_inode_operations;
1635 inode->i_fop = &simple_dir_operations;
1636
1637 /* start off with i_nlink == 2 (for "." entry) */
1638 inc_nlink(inode);
1639
1640 /* start with the directory inode held, so that we can
1641 * populate it without racing with another mkdir */
817929ec 1642 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
ddbcc7e8
PM
1643 } else if (S_ISREG(mode)) {
1644 inode->i_size = 0;
1645 inode->i_fop = &cgroup_file_operations;
1646 }
1647 dentry->d_op = &cgroup_dops;
1648 d_instantiate(dentry, inode);
1649 dget(dentry); /* Extra count - pin the dentry in core */
1650 return 0;
1651}
1652
1653/*
a043e3b2
LZ
1654 * cgroup_create_dir - create a directory for an object.
1655 * @cgrp: the cgroup we create the directory for. It must have a valid
1656 * ->parent field. And we are going to fill its ->dentry field.
1657 * @dentry: dentry of the new cgroup
1658 * @mode: mode to set on new directory.
ddbcc7e8 1659 */
bd89aabc 1660static int cgroup_create_dir(struct cgroup *cgrp, struct dentry *dentry,
ddbcc7e8
PM
1661 int mode)
1662{
1663 struct dentry *parent;
1664 int error = 0;
1665
bd89aabc
PM
1666 parent = cgrp->parent->dentry;
1667 error = cgroup_create_file(dentry, S_IFDIR | mode, cgrp->root->sb);
ddbcc7e8 1668 if (!error) {
bd89aabc 1669 dentry->d_fsdata = cgrp;
ddbcc7e8 1670 inc_nlink(parent->d_inode);
bd89aabc 1671 cgrp->dentry = dentry;
ddbcc7e8
PM
1672 dget(dentry);
1673 }
1674 dput(dentry);
1675
1676 return error;
1677}
1678
bd89aabc 1679int cgroup_add_file(struct cgroup *cgrp,
ddbcc7e8
PM
1680 struct cgroup_subsys *subsys,
1681 const struct cftype *cft)
1682{
bd89aabc 1683 struct dentry *dir = cgrp->dentry;
ddbcc7e8
PM
1684 struct dentry *dentry;
1685 int error;
1686
1687 char name[MAX_CGROUP_TYPE_NAMELEN + MAX_CFTYPE_NAME + 2] = { 0 };
bd89aabc 1688 if (subsys && !test_bit(ROOT_NOPREFIX, &cgrp->root->flags)) {
ddbcc7e8
PM
1689 strcpy(name, subsys->name);
1690 strcat(name, ".");
1691 }
1692 strcat(name, cft->name);
1693 BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex));
1694 dentry = lookup_one_len(name, dir, strlen(name));
1695 if (!IS_ERR(dentry)) {
1696 error = cgroup_create_file(dentry, 0644 | S_IFREG,
bd89aabc 1697 cgrp->root->sb);
ddbcc7e8
PM
1698 if (!error)
1699 dentry->d_fsdata = (void *)cft;
1700 dput(dentry);
1701 } else
1702 error = PTR_ERR(dentry);
1703 return error;
1704}
1705
bd89aabc 1706int cgroup_add_files(struct cgroup *cgrp,
ddbcc7e8
PM
1707 struct cgroup_subsys *subsys,
1708 const struct cftype cft[],
1709 int count)
1710{
1711 int i, err;
1712 for (i = 0; i < count; i++) {
bd89aabc 1713 err = cgroup_add_file(cgrp, subsys, &cft[i]);
ddbcc7e8
PM
1714 if (err)
1715 return err;
1716 }
1717 return 0;
1718}
1719
a043e3b2
LZ
1720/**
1721 * cgroup_task_count - count the number of tasks in a cgroup.
1722 * @cgrp: the cgroup in question
1723 *
1724 * Return the number of tasks in the cgroup.
1725 */
bd89aabc 1726int cgroup_task_count(const struct cgroup *cgrp)
bbcb81d0
PM
1727{
1728 int count = 0;
71cbb949 1729 struct cg_cgroup_link *link;
817929ec
PM
1730
1731 read_lock(&css_set_lock);
71cbb949 1732 list_for_each_entry(link, &cgrp->css_sets, cgrp_link_list) {
817929ec 1733 count += atomic_read(&link->cg->ref.refcount);
817929ec
PM
1734 }
1735 read_unlock(&css_set_lock);
bbcb81d0
PM
1736 return count;
1737}
1738
817929ec
PM
1739/*
1740 * Advance a list_head iterator. The iterator should be positioned at
1741 * the start of a css_set
1742 */
bd89aabc 1743static void cgroup_advance_iter(struct cgroup *cgrp,
817929ec
PM
1744 struct cgroup_iter *it)
1745{
1746 struct list_head *l = it->cg_link;
1747 struct cg_cgroup_link *link;
1748 struct css_set *cg;
1749
1750 /* Advance to the next non-empty css_set */
1751 do {
1752 l = l->next;
bd89aabc 1753 if (l == &cgrp->css_sets) {
817929ec
PM
1754 it->cg_link = NULL;
1755 return;
1756 }
bd89aabc 1757 link = list_entry(l, struct cg_cgroup_link, cgrp_link_list);
817929ec
PM
1758 cg = link->cg;
1759 } while (list_empty(&cg->tasks));
1760 it->cg_link = l;
1761 it->task = cg->tasks.next;
1762}
1763
31a7df01
CW
1764/*
1765 * To reduce the fork() overhead for systems that are not actually
1766 * using their cgroups capability, we don't maintain the lists running
1767 * through each css_set to its tasks until we see the list actually
1768 * used - in other words after the first call to cgroup_iter_start().
1769 *
1770 * The tasklist_lock is not held here, as do_each_thread() and
1771 * while_each_thread() are protected by RCU.
1772 */
3df91fe3 1773static void cgroup_enable_task_cg_lists(void)
31a7df01
CW
1774{
1775 struct task_struct *p, *g;
1776 write_lock(&css_set_lock);
1777 use_task_css_set_links = 1;
1778 do_each_thread(g, p) {
1779 task_lock(p);
0e04388f
LZ
1780 /*
1781 * We should check if the process is exiting, otherwise
1782 * it will race with cgroup_exit() in that the list
1783 * entry won't be deleted though the process has exited.
1784 */
1785 if (!(p->flags & PF_EXITING) && list_empty(&p->cg_list))
31a7df01
CW
1786 list_add(&p->cg_list, &p->cgroups->tasks);
1787 task_unlock(p);
1788 } while_each_thread(g, p);
1789 write_unlock(&css_set_lock);
1790}
1791
bd89aabc 1792void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it)
817929ec
PM
1793{
1794 /*
1795 * The first time anyone tries to iterate across a cgroup,
1796 * we need to enable the list linking each css_set to its
1797 * tasks, and fix up all existing tasks.
1798 */
31a7df01
CW
1799 if (!use_task_css_set_links)
1800 cgroup_enable_task_cg_lists();
1801
817929ec 1802 read_lock(&css_set_lock);
bd89aabc
PM
1803 it->cg_link = &cgrp->css_sets;
1804 cgroup_advance_iter(cgrp, it);
817929ec
PM
1805}
1806
bd89aabc 1807struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
817929ec
PM
1808 struct cgroup_iter *it)
1809{
1810 struct task_struct *res;
1811 struct list_head *l = it->task;
1812
1813 /* If the iterator cg is NULL, we have no tasks */
1814 if (!it->cg_link)
1815 return NULL;
1816 res = list_entry(l, struct task_struct, cg_list);
1817 /* Advance iterator to find next entry */
1818 l = l->next;
1819 if (l == &res->cgroups->tasks) {
1820 /* We reached the end of this task list - move on to
1821 * the next cg_cgroup_link */
bd89aabc 1822 cgroup_advance_iter(cgrp, it);
817929ec
PM
1823 } else {
1824 it->task = l;
1825 }
1826 return res;
1827}
1828
bd89aabc 1829void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it)
817929ec
PM
1830{
1831 read_unlock(&css_set_lock);
1832}
1833
31a7df01
CW
1834static inline int started_after_time(struct task_struct *t1,
1835 struct timespec *time,
1836 struct task_struct *t2)
1837{
1838 int start_diff = timespec_compare(&t1->start_time, time);
1839 if (start_diff > 0) {
1840 return 1;
1841 } else if (start_diff < 0) {
1842 return 0;
1843 } else {
1844 /*
1845 * Arbitrarily, if two processes started at the same
1846 * time, we'll say that the lower pointer value
1847 * started first. Note that t2 may have exited by now
1848 * so this may not be a valid pointer any longer, but
1849 * that's fine - it still serves to distinguish
1850 * between two tasks started (effectively) simultaneously.
1851 */
1852 return t1 > t2;
1853 }
1854}
1855
1856/*
1857 * This function is a callback from heap_insert() and is used to order
1858 * the heap.
1859 * In this case we order the heap in descending task start time.
1860 */
1861static inline int started_after(void *p1, void *p2)
1862{
1863 struct task_struct *t1 = p1;
1864 struct task_struct *t2 = p2;
1865 return started_after_time(t1, &t2->start_time, t2);
1866}
1867
1868/**
1869 * cgroup_scan_tasks - iterate though all the tasks in a cgroup
1870 * @scan: struct cgroup_scanner containing arguments for the scan
1871 *
1872 * Arguments include pointers to callback functions test_task() and
1873 * process_task().
1874 * Iterate through all the tasks in a cgroup, calling test_task() for each,
1875 * and if it returns true, call process_task() for it also.
1876 * The test_task pointer may be NULL, meaning always true (select all tasks).
1877 * Effectively duplicates cgroup_iter_{start,next,end}()
1878 * but does not lock css_set_lock for the call to process_task().
1879 * The struct cgroup_scanner may be embedded in any structure of the caller's
1880 * creation.
1881 * It is guaranteed that process_task() will act on every task that
1882 * is a member of the cgroup for the duration of this call. This
1883 * function may or may not call process_task() for tasks that exit
1884 * or move to a different cgroup during the call, or are forked or
1885 * move into the cgroup during the call.
1886 *
1887 * Note that test_task() may be called with locks held, and may in some
1888 * situations be called multiple times for the same task, so it should
1889 * be cheap.
1890 * If the heap pointer in the struct cgroup_scanner is non-NULL, a heap has been
1891 * pre-allocated and will be used for heap operations (and its "gt" member will
1892 * be overwritten), else a temporary heap will be used (allocation of which
1893 * may cause this function to fail).
1894 */
1895int cgroup_scan_tasks(struct cgroup_scanner *scan)
1896{
1897 int retval, i;
1898 struct cgroup_iter it;
1899 struct task_struct *p, *dropped;
1900 /* Never dereference latest_task, since it's not refcounted */
1901 struct task_struct *latest_task = NULL;
1902 struct ptr_heap tmp_heap;
1903 struct ptr_heap *heap;
1904 struct timespec latest_time = { 0, 0 };
1905
1906 if (scan->heap) {
1907 /* The caller supplied our heap and pre-allocated its memory */
1908 heap = scan->heap;
1909 heap->gt = &started_after;
1910 } else {
1911 /* We need to allocate our own heap memory */
1912 heap = &tmp_heap;
1913 retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after);
1914 if (retval)
1915 /* cannot allocate the heap */
1916 return retval;
1917 }
1918
1919 again:
1920 /*
1921 * Scan tasks in the cgroup, using the scanner's "test_task" callback
1922 * to determine which are of interest, and using the scanner's
1923 * "process_task" callback to process any of them that need an update.
1924 * Since we don't want to hold any locks during the task updates,
1925 * gather tasks to be processed in a heap structure.
1926 * The heap is sorted by descending task start time.
1927 * If the statically-sized heap fills up, we overflow tasks that
1928 * started later, and in future iterations only consider tasks that
1929 * started after the latest task in the previous pass. This
1930 * guarantees forward progress and that we don't miss any tasks.
1931 */
1932 heap->size = 0;
1933 cgroup_iter_start(scan->cg, &it);
1934 while ((p = cgroup_iter_next(scan->cg, &it))) {
1935 /*
1936 * Only affect tasks that qualify per the caller's callback,
1937 * if he provided one
1938 */
1939 if (scan->test_task && !scan->test_task(p, scan))
1940 continue;
1941 /*
1942 * Only process tasks that started after the last task
1943 * we processed
1944 */
1945 if (!started_after_time(p, &latest_time, latest_task))
1946 continue;
1947 dropped = heap_insert(heap, p);
1948 if (dropped == NULL) {
1949 /*
1950 * The new task was inserted; the heap wasn't
1951 * previously full
1952 */
1953 get_task_struct(p);
1954 } else if (dropped != p) {
1955 /*
1956 * The new task was inserted, and pushed out a
1957 * different task
1958 */
1959 get_task_struct(p);
1960 put_task_struct(dropped);
1961 }
1962 /*
1963 * Else the new task was newer than anything already in
1964 * the heap and wasn't inserted
1965 */
1966 }
1967 cgroup_iter_end(scan->cg, &it);
1968
1969 if (heap->size) {
1970 for (i = 0; i < heap->size; i++) {
4fe91d51 1971 struct task_struct *q = heap->ptrs[i];
31a7df01 1972 if (i == 0) {
4fe91d51
PJ
1973 latest_time = q->start_time;
1974 latest_task = q;
31a7df01
CW
1975 }
1976 /* Process the task per the caller's callback */
4fe91d51
PJ
1977 scan->process_task(q, scan);
1978 put_task_struct(q);
31a7df01
CW
1979 }
1980 /*
1981 * If we had to process any tasks at all, scan again
1982 * in case some of them were in the middle of forking
1983 * children that didn't get processed.
1984 * Not the most efficient way to do it, but it avoids
1985 * having to take callback_mutex in the fork path
1986 */
1987 goto again;
1988 }
1989 if (heap == &tmp_heap)
1990 heap_free(&tmp_heap);
1991 return 0;
1992}
1993
bbcb81d0
PM
1994/*
1995 * Stuff for reading the 'tasks' file.
1996 *
1997 * Reading this file can return large amounts of data if a cgroup has
1998 * *lots* of attached tasks. So it may need several calls to read(),
1999 * but we cannot guarantee that the information we produce is correct
2000 * unless we produce it entirely atomically.
2001 *
2002 * Upon tasks file open(), a struct ctr_struct is allocated, that
2003 * will have a pointer to an array (also allocated here). The struct
2004 * ctr_struct * is stored in file->private_data. Its resources will
2005 * be freed by release() when the file is closed. The array is used
2006 * to sprintf the PIDs and then used by read().
2007 */
2008struct ctr_struct {
2009 char *buf;
2010 int bufsz;
2011};
2012
2013/*
2014 * Load into 'pidarray' up to 'npids' of the tasks using cgroup
bd89aabc 2015 * 'cgrp'. Return actual number of pids loaded. No need to
bbcb81d0
PM
2016 * task_lock(p) when reading out p->cgroup, since we're in an RCU
2017 * read section, so the css_set can't go away, and is
2018 * immutable after creation.
2019 */
bd89aabc 2020static int pid_array_load(pid_t *pidarray, int npids, struct cgroup *cgrp)
bbcb81d0
PM
2021{
2022 int n = 0;
817929ec
PM
2023 struct cgroup_iter it;
2024 struct task_struct *tsk;
bd89aabc
PM
2025 cgroup_iter_start(cgrp, &it);
2026 while ((tsk = cgroup_iter_next(cgrp, &it))) {
817929ec
PM
2027 if (unlikely(n == npids))
2028 break;
73507f33 2029 pidarray[n++] = task_pid_vnr(tsk);
817929ec 2030 }
bd89aabc 2031 cgroup_iter_end(cgrp, &it);
bbcb81d0
PM
2032 return n;
2033}
2034
846c7bb0 2035/**
a043e3b2 2036 * cgroupstats_build - build and fill cgroupstats
846c7bb0
BS
2037 * @stats: cgroupstats to fill information into
2038 * @dentry: A dentry entry belonging to the cgroup for which stats have
2039 * been requested.
a043e3b2
LZ
2040 *
2041 * Build and fill cgroupstats so that taskstats can export it to user
2042 * space.
846c7bb0
BS
2043 */
2044int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
2045{
2046 int ret = -EINVAL;
bd89aabc 2047 struct cgroup *cgrp;
846c7bb0
BS
2048 struct cgroup_iter it;
2049 struct task_struct *tsk;
2050 /*
2051 * Validate dentry by checking the superblock operations
2052 */
2053 if (dentry->d_sb->s_op != &cgroup_ops)
2054 goto err;
2055
2056 ret = 0;
bd89aabc 2057 cgrp = dentry->d_fsdata;
846c7bb0
BS
2058 rcu_read_lock();
2059
bd89aabc
PM
2060 cgroup_iter_start(cgrp, &it);
2061 while ((tsk = cgroup_iter_next(cgrp, &it))) {
846c7bb0
BS
2062 switch (tsk->state) {
2063 case TASK_RUNNING:
2064 stats->nr_running++;
2065 break;
2066 case TASK_INTERRUPTIBLE:
2067 stats->nr_sleeping++;
2068 break;
2069 case TASK_UNINTERRUPTIBLE:
2070 stats->nr_uninterruptible++;
2071 break;
2072 case TASK_STOPPED:
2073 stats->nr_stopped++;
2074 break;
2075 default:
2076 if (delayacct_is_task_waiting_on_io(tsk))
2077 stats->nr_io_wait++;
2078 break;
2079 }
2080 }
bd89aabc 2081 cgroup_iter_end(cgrp, &it);
846c7bb0
BS
2082
2083 rcu_read_unlock();
2084err:
2085 return ret;
2086}
2087
bbcb81d0
PM
2088static int cmppid(const void *a, const void *b)
2089{
2090 return *(pid_t *)a - *(pid_t *)b;
2091}
2092
2093/*
2094 * Convert array 'a' of 'npids' pid_t's to a string of newline separated
2095 * decimal pids in 'buf'. Don't write more than 'sz' chars, but return
2096 * count 'cnt' of how many chars would be written if buf were large enough.
2097 */
2098static int pid_array_to_buf(char *buf, int sz, pid_t *a, int npids)
2099{
2100 int cnt = 0;
2101 int i;
2102
2103 for (i = 0; i < npids; i++)
2104 cnt += snprintf(buf + cnt, max(sz - cnt, 0), "%d\n", a[i]);
2105 return cnt;
2106}
2107
2108/*
2109 * Handle an open on 'tasks' file. Prepare a buffer listing the
2110 * process id's of tasks currently attached to the cgroup being opened.
2111 *
2112 * Does not require any specific cgroup mutexes, and does not take any.
2113 */
2114static int cgroup_tasks_open(struct inode *unused, struct file *file)
2115{
bd89aabc 2116 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
bbcb81d0
PM
2117 struct ctr_struct *ctr;
2118 pid_t *pidarray;
2119 int npids;
2120 char c;
2121
2122 if (!(file->f_mode & FMODE_READ))
2123 return 0;
2124
2125 ctr = kmalloc(sizeof(*ctr), GFP_KERNEL);
2126 if (!ctr)
2127 goto err0;
2128
2129 /*
2130 * If cgroup gets more users after we read count, we won't have
2131 * enough space - tough. This race is indistinguishable to the
2132 * caller from the case that the additional cgroup users didn't
2133 * show up until sometime later on.
2134 */
bd89aabc 2135 npids = cgroup_task_count(cgrp);
bbcb81d0
PM
2136 if (npids) {
2137 pidarray = kmalloc(npids * sizeof(pid_t), GFP_KERNEL);
2138 if (!pidarray)
2139 goto err1;
2140
bd89aabc 2141 npids = pid_array_load(pidarray, npids, cgrp);
bbcb81d0
PM
2142 sort(pidarray, npids, sizeof(pid_t), cmppid, NULL);
2143
2144 /* Call pid_array_to_buf() twice, first just to get bufsz */
2145 ctr->bufsz = pid_array_to_buf(&c, sizeof(c), pidarray, npids) + 1;
2146 ctr->buf = kmalloc(ctr->bufsz, GFP_KERNEL);
2147 if (!ctr->buf)
2148 goto err2;
2149 ctr->bufsz = pid_array_to_buf(ctr->buf, ctr->bufsz, pidarray, npids);
2150
2151 kfree(pidarray);
2152 } else {
9dce07f1 2153 ctr->buf = NULL;
bbcb81d0
PM
2154 ctr->bufsz = 0;
2155 }
2156 file->private_data = ctr;
2157 return 0;
2158
2159err2:
2160 kfree(pidarray);
2161err1:
2162 kfree(ctr);
2163err0:
2164 return -ENOMEM;
2165}
2166
bd89aabc 2167static ssize_t cgroup_tasks_read(struct cgroup *cgrp,
bbcb81d0
PM
2168 struct cftype *cft,
2169 struct file *file, char __user *buf,
2170 size_t nbytes, loff_t *ppos)
2171{
2172 struct ctr_struct *ctr = file->private_data;
2173
2174 return simple_read_from_buffer(buf, nbytes, ppos, ctr->buf, ctr->bufsz);
2175}
2176
2177static int cgroup_tasks_release(struct inode *unused_inode,
2178 struct file *file)
2179{
2180 struct ctr_struct *ctr;
2181
2182 if (file->f_mode & FMODE_READ) {
2183 ctr = file->private_data;
2184 kfree(ctr->buf);
2185 kfree(ctr);
2186 }
2187 return 0;
2188}
2189
bd89aabc 2190static u64 cgroup_read_notify_on_release(struct cgroup *cgrp,
81a6a5cd
PM
2191 struct cftype *cft)
2192{
bd89aabc 2193 return notify_on_release(cgrp);
81a6a5cd
PM
2194}
2195
6379c106
PM
2196static int cgroup_write_notify_on_release(struct cgroup *cgrp,
2197 struct cftype *cft,
2198 u64 val)
2199{
2200 clear_bit(CGRP_RELEASABLE, &cgrp->flags);
2201 if (val)
2202 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
2203 else
2204 clear_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
2205 return 0;
2206}
2207
bbcb81d0
PM
2208/*
2209 * for the common functions, 'private' gives the type of file
2210 */
81a6a5cd
PM
2211static struct cftype files[] = {
2212 {
2213 .name = "tasks",
2214 .open = cgroup_tasks_open,
2215 .read = cgroup_tasks_read,
af351026 2216 .write_u64 = cgroup_tasks_write,
81a6a5cd
PM
2217 .release = cgroup_tasks_release,
2218 .private = FILE_TASKLIST,
2219 },
2220
2221 {
2222 .name = "notify_on_release",
f4c753b7 2223 .read_u64 = cgroup_read_notify_on_release,
6379c106 2224 .write_u64 = cgroup_write_notify_on_release,
81a6a5cd
PM
2225 .private = FILE_NOTIFY_ON_RELEASE,
2226 },
81a6a5cd
PM
2227};
2228
2229static struct cftype cft_release_agent = {
2230 .name = "release_agent",
e788e066
PM
2231 .read_seq_string = cgroup_release_agent_show,
2232 .write_string = cgroup_release_agent_write,
2233 .max_write_len = PATH_MAX,
81a6a5cd 2234 .private = FILE_RELEASE_AGENT,
bbcb81d0
PM
2235};
2236
bd89aabc 2237static int cgroup_populate_dir(struct cgroup *cgrp)
ddbcc7e8
PM
2238{
2239 int err;
2240 struct cgroup_subsys *ss;
2241
2242 /* First clear out any existing files */
bd89aabc 2243 cgroup_clear_directory(cgrp->dentry);
ddbcc7e8 2244
bd89aabc 2245 err = cgroup_add_files(cgrp, NULL, files, ARRAY_SIZE(files));
bbcb81d0
PM
2246 if (err < 0)
2247 return err;
2248
bd89aabc
PM
2249 if (cgrp == cgrp->top_cgroup) {
2250 if ((err = cgroup_add_file(cgrp, NULL, &cft_release_agent)) < 0)
81a6a5cd
PM
2251 return err;
2252 }
2253
bd89aabc
PM
2254 for_each_subsys(cgrp->root, ss) {
2255 if (ss->populate && (err = ss->populate(ss, cgrp)) < 0)
ddbcc7e8
PM
2256 return err;
2257 }
2258
2259 return 0;
2260}
2261
2262static void init_cgroup_css(struct cgroup_subsys_state *css,
2263 struct cgroup_subsys *ss,
bd89aabc 2264 struct cgroup *cgrp)
ddbcc7e8 2265{
bd89aabc 2266 css->cgroup = cgrp;
ddbcc7e8
PM
2267 atomic_set(&css->refcnt, 0);
2268 css->flags = 0;
bd89aabc 2269 if (cgrp == dummytop)
ddbcc7e8 2270 set_bit(CSS_ROOT, &css->flags);
bd89aabc
PM
2271 BUG_ON(cgrp->subsys[ss->subsys_id]);
2272 cgrp->subsys[ss->subsys_id] = css;
ddbcc7e8
PM
2273}
2274
2275/*
a043e3b2
LZ
2276 * cgroup_create - create a cgroup
2277 * @parent: cgroup that will be parent of the new cgroup
2278 * @dentry: dentry of the new cgroup
2279 * @mode: mode to set on new inode
ddbcc7e8 2280 *
a043e3b2 2281 * Must be called with the mutex on the parent inode held
ddbcc7e8 2282 */
ddbcc7e8
PM
2283static long cgroup_create(struct cgroup *parent, struct dentry *dentry,
2284 int mode)
2285{
bd89aabc 2286 struct cgroup *cgrp;
ddbcc7e8
PM
2287 struct cgroupfs_root *root = parent->root;
2288 int err = 0;
2289 struct cgroup_subsys *ss;
2290 struct super_block *sb = root->sb;
2291
bd89aabc
PM
2292 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
2293 if (!cgrp)
ddbcc7e8
PM
2294 return -ENOMEM;
2295
2296 /* Grab a reference on the superblock so the hierarchy doesn't
2297 * get deleted on unmount if there are child cgroups. This
2298 * can be done outside cgroup_mutex, since the sb can't
2299 * disappear while someone has an open control file on the
2300 * fs */
2301 atomic_inc(&sb->s_active);
2302
2303 mutex_lock(&cgroup_mutex);
2304
bd89aabc
PM
2305 INIT_LIST_HEAD(&cgrp->sibling);
2306 INIT_LIST_HEAD(&cgrp->children);
2307 INIT_LIST_HEAD(&cgrp->css_sets);
2308 INIT_LIST_HEAD(&cgrp->release_list);
ddbcc7e8 2309
bd89aabc
PM
2310 cgrp->parent = parent;
2311 cgrp->root = parent->root;
2312 cgrp->top_cgroup = parent->top_cgroup;
ddbcc7e8 2313
b6abdb0e
LZ
2314 if (notify_on_release(parent))
2315 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
2316
ddbcc7e8 2317 for_each_subsys(root, ss) {
bd89aabc 2318 struct cgroup_subsys_state *css = ss->create(ss, cgrp);
ddbcc7e8
PM
2319 if (IS_ERR(css)) {
2320 err = PTR_ERR(css);
2321 goto err_destroy;
2322 }
bd89aabc 2323 init_cgroup_css(css, ss, cgrp);
ddbcc7e8
PM
2324 }
2325
bd89aabc 2326 list_add(&cgrp->sibling, &cgrp->parent->children);
ddbcc7e8
PM
2327 root->number_of_cgroups++;
2328
bd89aabc 2329 err = cgroup_create_dir(cgrp, dentry, mode);
ddbcc7e8
PM
2330 if (err < 0)
2331 goto err_remove;
2332
2333 /* The cgroup directory was pre-locked for us */
bd89aabc 2334 BUG_ON(!mutex_is_locked(&cgrp->dentry->d_inode->i_mutex));
ddbcc7e8 2335
bd89aabc 2336 err = cgroup_populate_dir(cgrp);
ddbcc7e8
PM
2337 /* If err < 0, we have a half-filled directory - oh well ;) */
2338
2339 mutex_unlock(&cgroup_mutex);
bd89aabc 2340 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
ddbcc7e8
PM
2341
2342 return 0;
2343
2344 err_remove:
2345
bd89aabc 2346 list_del(&cgrp->sibling);
ddbcc7e8
PM
2347 root->number_of_cgroups--;
2348
2349 err_destroy:
2350
2351 for_each_subsys(root, ss) {
bd89aabc
PM
2352 if (cgrp->subsys[ss->subsys_id])
2353 ss->destroy(ss, cgrp);
ddbcc7e8
PM
2354 }
2355
2356 mutex_unlock(&cgroup_mutex);
2357
2358 /* Release the reference count that we took on the superblock */
2359 deactivate_super(sb);
2360
bd89aabc 2361 kfree(cgrp);
ddbcc7e8
PM
2362 return err;
2363}
2364
2365static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2366{
2367 struct cgroup *c_parent = dentry->d_parent->d_fsdata;
2368
2369 /* the vfs holds inode->i_mutex already */
2370 return cgroup_create(c_parent, dentry, mode | S_IFDIR);
2371}
2372
bd89aabc 2373static inline int cgroup_has_css_refs(struct cgroup *cgrp)
81a6a5cd
PM
2374{
2375 /* Check the reference count on each subsystem. Since we
2376 * already established that there are no tasks in the
2377 * cgroup, if the css refcount is also 0, then there should
2378 * be no outstanding references, so the subsystem is safe to
2379 * destroy. We scan across all subsystems rather than using
2380 * the per-hierarchy linked list of mounted subsystems since
2381 * we can be called via check_for_release() with no
2382 * synchronization other than RCU, and the subsystem linked
2383 * list isn't RCU-safe */
2384 int i;
2385 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2386 struct cgroup_subsys *ss = subsys[i];
2387 struct cgroup_subsys_state *css;
2388 /* Skip subsystems not in this hierarchy */
bd89aabc 2389 if (ss->root != cgrp->root)
81a6a5cd 2390 continue;
bd89aabc 2391 css = cgrp->subsys[ss->subsys_id];
81a6a5cd
PM
2392 /* When called from check_for_release() it's possible
2393 * that by this point the cgroup has been removed
2394 * and the css deleted. But a false-positive doesn't
2395 * matter, since it can only happen if the cgroup
2396 * has been deleted and hence no longer needs the
2397 * release agent to be called anyway. */
e18f6318 2398 if (css && atomic_read(&css->refcnt))
81a6a5cd 2399 return 1;
81a6a5cd
PM
2400 }
2401 return 0;
2402}
2403
ddbcc7e8
PM
2404static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry)
2405{
bd89aabc 2406 struct cgroup *cgrp = dentry->d_fsdata;
ddbcc7e8
PM
2407 struct dentry *d;
2408 struct cgroup *parent;
ddbcc7e8
PM
2409 struct super_block *sb;
2410 struct cgroupfs_root *root;
ddbcc7e8
PM
2411
2412 /* the vfs holds both inode->i_mutex already */
2413
2414 mutex_lock(&cgroup_mutex);
bd89aabc 2415 if (atomic_read(&cgrp->count) != 0) {
ddbcc7e8
PM
2416 mutex_unlock(&cgroup_mutex);
2417 return -EBUSY;
2418 }
bd89aabc 2419 if (!list_empty(&cgrp->children)) {
ddbcc7e8
PM
2420 mutex_unlock(&cgroup_mutex);
2421 return -EBUSY;
2422 }
2423
bd89aabc
PM
2424 parent = cgrp->parent;
2425 root = cgrp->root;
ddbcc7e8 2426 sb = root->sb;
a043e3b2 2427
4fca88c8 2428 /*
a043e3b2
LZ
2429 * Call pre_destroy handlers of subsys. Notify subsystems
2430 * that rmdir() request comes.
4fca88c8
KH
2431 */
2432 cgroup_call_pre_destroy(cgrp);
ddbcc7e8 2433
bd89aabc 2434 if (cgroup_has_css_refs(cgrp)) {
ddbcc7e8
PM
2435 mutex_unlock(&cgroup_mutex);
2436 return -EBUSY;
2437 }
2438
81a6a5cd 2439 spin_lock(&release_list_lock);
bd89aabc
PM
2440 set_bit(CGRP_REMOVED, &cgrp->flags);
2441 if (!list_empty(&cgrp->release_list))
2442 list_del(&cgrp->release_list);
81a6a5cd 2443 spin_unlock(&release_list_lock);
ddbcc7e8 2444 /* delete my sibling from parent->children */
bd89aabc
PM
2445 list_del(&cgrp->sibling);
2446 spin_lock(&cgrp->dentry->d_lock);
2447 d = dget(cgrp->dentry);
2448 cgrp->dentry = NULL;
ddbcc7e8
PM
2449 spin_unlock(&d->d_lock);
2450
2451 cgroup_d_remove_dir(d);
2452 dput(d);
ddbcc7e8 2453
bd89aabc 2454 set_bit(CGRP_RELEASABLE, &parent->flags);
81a6a5cd
PM
2455 check_for_release(parent);
2456
ddbcc7e8 2457 mutex_unlock(&cgroup_mutex);
ddbcc7e8
PM
2458 return 0;
2459}
2460
06a11920 2461static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
ddbcc7e8 2462{
ddbcc7e8 2463 struct cgroup_subsys_state *css;
cfe36bde
DC
2464
2465 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
ddbcc7e8
PM
2466
2467 /* Create the top cgroup state for this subsystem */
2468 ss->root = &rootnode;
2469 css = ss->create(ss, dummytop);
2470 /* We don't handle early failures gracefully */
2471 BUG_ON(IS_ERR(css));
2472 init_cgroup_css(css, ss, dummytop);
2473
e8d55fde 2474 /* Update the init_css_set to contain a subsys
817929ec 2475 * pointer to this state - since the subsystem is
e8d55fde
LZ
2476 * newly registered, all tasks and hence the
2477 * init_css_set is in the subsystem's top cgroup. */
2478 init_css_set.subsys[ss->subsys_id] = dummytop->subsys[ss->subsys_id];
ddbcc7e8
PM
2479
2480 need_forkexit_callback |= ss->fork || ss->exit;
cf475ad2 2481 need_mm_owner_callback |= !!ss->mm_owner_changed;
ddbcc7e8 2482
e8d55fde
LZ
2483 /* At system boot, before all subsystems have been
2484 * registered, no tasks have been forked, so we don't
2485 * need to invoke fork callbacks here. */
2486 BUG_ON(!list_empty(&init_task.tasks));
2487
ddbcc7e8
PM
2488 ss->active = 1;
2489}
2490
2491/**
a043e3b2
LZ
2492 * cgroup_init_early - cgroup initialization at system boot
2493 *
2494 * Initialize cgroups at system boot, and initialize any
2495 * subsystems that request early init.
ddbcc7e8
PM
2496 */
2497int __init cgroup_init_early(void)
2498{
2499 int i;
817929ec
PM
2500 kref_init(&init_css_set.ref);
2501 kref_get(&init_css_set.ref);
817929ec
PM
2502 INIT_LIST_HEAD(&init_css_set.cg_links);
2503 INIT_LIST_HEAD(&init_css_set.tasks);
472b1053 2504 INIT_HLIST_NODE(&init_css_set.hlist);
817929ec 2505 css_set_count = 1;
ddbcc7e8
PM
2506 init_cgroup_root(&rootnode);
2507 list_add(&rootnode.root_list, &roots);
817929ec
PM
2508 root_count = 1;
2509 init_task.cgroups = &init_css_set;
2510
2511 init_css_set_link.cg = &init_css_set;
bd89aabc 2512 list_add(&init_css_set_link.cgrp_link_list,
817929ec
PM
2513 &rootnode.top_cgroup.css_sets);
2514 list_add(&init_css_set_link.cg_link_list,
2515 &init_css_set.cg_links);
ddbcc7e8 2516
472b1053
LZ
2517 for (i = 0; i < CSS_SET_TABLE_SIZE; i++)
2518 INIT_HLIST_HEAD(&css_set_table[i]);
2519
ddbcc7e8
PM
2520 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2521 struct cgroup_subsys *ss = subsys[i];
2522
2523 BUG_ON(!ss->name);
2524 BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN);
2525 BUG_ON(!ss->create);
2526 BUG_ON(!ss->destroy);
2527 if (ss->subsys_id != i) {
cfe36bde 2528 printk(KERN_ERR "cgroup: Subsys %s id == %d\n",
ddbcc7e8
PM
2529 ss->name, ss->subsys_id);
2530 BUG();
2531 }
2532
2533 if (ss->early_init)
2534 cgroup_init_subsys(ss);
2535 }
2536 return 0;
2537}
2538
2539/**
a043e3b2
LZ
2540 * cgroup_init - cgroup initialization
2541 *
2542 * Register cgroup filesystem and /proc file, and initialize
2543 * any subsystems that didn't request early init.
ddbcc7e8
PM
2544 */
2545int __init cgroup_init(void)
2546{
2547 int err;
2548 int i;
472b1053 2549 struct hlist_head *hhead;
a424316c
PM
2550
2551 err = bdi_init(&cgroup_backing_dev_info);
2552 if (err)
2553 return err;
ddbcc7e8
PM
2554
2555 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2556 struct cgroup_subsys *ss = subsys[i];
2557 if (!ss->early_init)
2558 cgroup_init_subsys(ss);
2559 }
2560
472b1053
LZ
2561 /* Add init_css_set to the hash table */
2562 hhead = css_set_hash(init_css_set.subsys);
2563 hlist_add_head(&init_css_set.hlist, hhead);
2564
ddbcc7e8
PM
2565 err = register_filesystem(&cgroup_fs_type);
2566 if (err < 0)
2567 goto out;
2568
46ae220b 2569 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
a424316c 2570
ddbcc7e8 2571out:
a424316c
PM
2572 if (err)
2573 bdi_destroy(&cgroup_backing_dev_info);
2574
ddbcc7e8
PM
2575 return err;
2576}
b4f48b63 2577
a424316c
PM
2578/*
2579 * proc_cgroup_show()
2580 * - Print task's cgroup paths into seq_file, one line for each hierarchy
2581 * - Used for /proc/<pid>/cgroup.
2582 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
2583 * doesn't really matter if tsk->cgroup changes after we read it,
956db3ca 2584 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
a424316c
PM
2585 * anyway. No need to check that tsk->cgroup != NULL, thanks to
2586 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
2587 * cgroup to top_cgroup.
2588 */
2589
2590/* TODO: Use a proper seq_file iterator */
2591static int proc_cgroup_show(struct seq_file *m, void *v)
2592{
2593 struct pid *pid;
2594 struct task_struct *tsk;
2595 char *buf;
2596 int retval;
2597 struct cgroupfs_root *root;
2598
2599 retval = -ENOMEM;
2600 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
2601 if (!buf)
2602 goto out;
2603
2604 retval = -ESRCH;
2605 pid = m->private;
2606 tsk = get_pid_task(pid, PIDTYPE_PID);
2607 if (!tsk)
2608 goto out_free;
2609
2610 retval = 0;
2611
2612 mutex_lock(&cgroup_mutex);
2613
2614 for_each_root(root) {
2615 struct cgroup_subsys *ss;
bd89aabc 2616 struct cgroup *cgrp;
a424316c
PM
2617 int subsys_id;
2618 int count = 0;
2619
2620 /* Skip this hierarchy if it has no active subsystems */
2621 if (!root->actual_subsys_bits)
2622 continue;
b6c3006d 2623 seq_printf(m, "%lu:", root->subsys_bits);
a424316c
PM
2624 for_each_subsys(root, ss)
2625 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
2626 seq_putc(m, ':');
2627 get_first_subsys(&root->top_cgroup, NULL, &subsys_id);
bd89aabc
PM
2628 cgrp = task_cgroup(tsk, subsys_id);
2629 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
a424316c
PM
2630 if (retval < 0)
2631 goto out_unlock;
2632 seq_puts(m, buf);
2633 seq_putc(m, '\n');
2634 }
2635
2636out_unlock:
2637 mutex_unlock(&cgroup_mutex);
2638 put_task_struct(tsk);
2639out_free:
2640 kfree(buf);
2641out:
2642 return retval;
2643}
2644
2645static int cgroup_open(struct inode *inode, struct file *file)
2646{
2647 struct pid *pid = PROC_I(inode)->pid;
2648 return single_open(file, proc_cgroup_show, pid);
2649}
2650
2651struct file_operations proc_cgroup_operations = {
2652 .open = cgroup_open,
2653 .read = seq_read,
2654 .llseek = seq_lseek,
2655 .release = single_release,
2656};
2657
2658/* Display information about each subsystem and each hierarchy */
2659static int proc_cgroupstats_show(struct seq_file *m, void *v)
2660{
2661 int i;
a424316c 2662
8bab8dde 2663 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
a424316c 2664 mutex_lock(&cgroup_mutex);
a424316c
PM
2665 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2666 struct cgroup_subsys *ss = subsys[i];
8bab8dde 2667 seq_printf(m, "%s\t%lu\t%d\t%d\n",
817929ec 2668 ss->name, ss->root->subsys_bits,
8bab8dde 2669 ss->root->number_of_cgroups, !ss->disabled);
a424316c
PM
2670 }
2671 mutex_unlock(&cgroup_mutex);
2672 return 0;
2673}
2674
2675static int cgroupstats_open(struct inode *inode, struct file *file)
2676{
9dce07f1 2677 return single_open(file, proc_cgroupstats_show, NULL);
a424316c
PM
2678}
2679
2680static struct file_operations proc_cgroupstats_operations = {
2681 .open = cgroupstats_open,
2682 .read = seq_read,
2683 .llseek = seq_lseek,
2684 .release = single_release,
2685};
2686
b4f48b63
PM
2687/**
2688 * cgroup_fork - attach newly forked task to its parents cgroup.
a043e3b2 2689 * @child: pointer to task_struct of forking parent process.
b4f48b63
PM
2690 *
2691 * Description: A task inherits its parent's cgroup at fork().
2692 *
2693 * A pointer to the shared css_set was automatically copied in
2694 * fork.c by dup_task_struct(). However, we ignore that copy, since
2695 * it was not made under the protection of RCU or cgroup_mutex, so
956db3ca 2696 * might no longer be a valid cgroup pointer. cgroup_attach_task() might
817929ec
PM
2697 * have already changed current->cgroups, allowing the previously
2698 * referenced cgroup group to be removed and freed.
b4f48b63
PM
2699 *
2700 * At the point that cgroup_fork() is called, 'current' is the parent
2701 * task, and the passed argument 'child' points to the child task.
2702 */
2703void cgroup_fork(struct task_struct *child)
2704{
817929ec
PM
2705 task_lock(current);
2706 child->cgroups = current->cgroups;
2707 get_css_set(child->cgroups);
2708 task_unlock(current);
2709 INIT_LIST_HEAD(&child->cg_list);
b4f48b63
PM
2710}
2711
2712/**
a043e3b2
LZ
2713 * cgroup_fork_callbacks - run fork callbacks
2714 * @child: the new task
2715 *
2716 * Called on a new task very soon before adding it to the
2717 * tasklist. No need to take any locks since no-one can
2718 * be operating on this task.
b4f48b63
PM
2719 */
2720void cgroup_fork_callbacks(struct task_struct *child)
2721{
2722 if (need_forkexit_callback) {
2723 int i;
2724 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2725 struct cgroup_subsys *ss = subsys[i];
2726 if (ss->fork)
2727 ss->fork(ss, child);
2728 }
2729 }
2730}
2731
cf475ad2
BS
2732#ifdef CONFIG_MM_OWNER
2733/**
2734 * cgroup_mm_owner_callbacks - run callbacks when the mm->owner changes
2735 * @p: the new owner
2736 *
2737 * Called on every change to mm->owner. mm_init_owner() does not
2738 * invoke this routine, since it assigns the mm->owner the first time
2739 * and does not change it.
2740 */
2741void cgroup_mm_owner_callbacks(struct task_struct *old, struct task_struct *new)
2742{
2743 struct cgroup *oldcgrp, *newcgrp;
2744
2745 if (need_mm_owner_callback) {
2746 int i;
2747 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2748 struct cgroup_subsys *ss = subsys[i];
2749 oldcgrp = task_cgroup(old, ss->subsys_id);
2750 newcgrp = task_cgroup(new, ss->subsys_id);
2751 if (oldcgrp == newcgrp)
2752 continue;
2753 if (ss->mm_owner_changed)
2754 ss->mm_owner_changed(ss, oldcgrp, newcgrp);
2755 }
2756 }
2757}
2758#endif /* CONFIG_MM_OWNER */
2759
817929ec 2760/**
a043e3b2
LZ
2761 * cgroup_post_fork - called on a new task after adding it to the task list
2762 * @child: the task in question
2763 *
2764 * Adds the task to the list running through its css_set if necessary.
2765 * Has to be after the task is visible on the task list in case we race
2766 * with the first call to cgroup_iter_start() - to guarantee that the
2767 * new task ends up on its list.
2768 */
817929ec
PM
2769void cgroup_post_fork(struct task_struct *child)
2770{
2771 if (use_task_css_set_links) {
2772 write_lock(&css_set_lock);
2773 if (list_empty(&child->cg_list))
2774 list_add(&child->cg_list, &child->cgroups->tasks);
2775 write_unlock(&css_set_lock);
2776 }
2777}
b4f48b63
PM
2778/**
2779 * cgroup_exit - detach cgroup from exiting task
2780 * @tsk: pointer to task_struct of exiting process
a043e3b2 2781 * @run_callback: run exit callbacks?
b4f48b63
PM
2782 *
2783 * Description: Detach cgroup from @tsk and release it.
2784 *
2785 * Note that cgroups marked notify_on_release force every task in
2786 * them to take the global cgroup_mutex mutex when exiting.
2787 * This could impact scaling on very large systems. Be reluctant to
2788 * use notify_on_release cgroups where very high task exit scaling
2789 * is required on large systems.
2790 *
2791 * the_top_cgroup_hack:
2792 *
2793 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
2794 *
2795 * We call cgroup_exit() while the task is still competent to
2796 * handle notify_on_release(), then leave the task attached to the
2797 * root cgroup in each hierarchy for the remainder of its exit.
2798 *
2799 * To do this properly, we would increment the reference count on
2800 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
2801 * code we would add a second cgroup function call, to drop that
2802 * reference. This would just create an unnecessary hot spot on
2803 * the top_cgroup reference count, to no avail.
2804 *
2805 * Normally, holding a reference to a cgroup without bumping its
2806 * count is unsafe. The cgroup could go away, or someone could
2807 * attach us to a different cgroup, decrementing the count on
2808 * the first cgroup that we never incremented. But in this case,
2809 * top_cgroup isn't going away, and either task has PF_EXITING set,
956db3ca
CW
2810 * which wards off any cgroup_attach_task() attempts, or task is a failed
2811 * fork, never visible to cgroup_attach_task.
b4f48b63
PM
2812 */
2813void cgroup_exit(struct task_struct *tsk, int run_callbacks)
2814{
2815 int i;
817929ec 2816 struct css_set *cg;
b4f48b63
PM
2817
2818 if (run_callbacks && need_forkexit_callback) {
2819 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2820 struct cgroup_subsys *ss = subsys[i];
2821 if (ss->exit)
2822 ss->exit(ss, tsk);
2823 }
2824 }
817929ec
PM
2825
2826 /*
2827 * Unlink from the css_set task list if necessary.
2828 * Optimistically check cg_list before taking
2829 * css_set_lock
2830 */
2831 if (!list_empty(&tsk->cg_list)) {
2832 write_lock(&css_set_lock);
2833 if (!list_empty(&tsk->cg_list))
2834 list_del(&tsk->cg_list);
2835 write_unlock(&css_set_lock);
2836 }
2837
b4f48b63
PM
2838 /* Reassign the task to the init_css_set. */
2839 task_lock(tsk);
817929ec
PM
2840 cg = tsk->cgroups;
2841 tsk->cgroups = &init_css_set;
b4f48b63 2842 task_unlock(tsk);
817929ec 2843 if (cg)
81a6a5cd 2844 put_css_set_taskexit(cg);
b4f48b63 2845}
697f4161
PM
2846
2847/**
a043e3b2
LZ
2848 * cgroup_clone - clone the cgroup the given subsystem is attached to
2849 * @tsk: the task to be moved
2850 * @subsys: the given subsystem
e885dcde 2851 * @nodename: the name for the new cgroup
a043e3b2
LZ
2852 *
2853 * Duplicate the current cgroup in the hierarchy that the given
2854 * subsystem is attached to, and move this task into the new
2855 * child.
697f4161 2856 */
e885dcde
SH
2857int cgroup_clone(struct task_struct *tsk, struct cgroup_subsys *subsys,
2858 char *nodename)
697f4161
PM
2859{
2860 struct dentry *dentry;
2861 int ret = 0;
697f4161
PM
2862 struct cgroup *parent, *child;
2863 struct inode *inode;
2864 struct css_set *cg;
2865 struct cgroupfs_root *root;
2866 struct cgroup_subsys *ss;
2867
2868 /* We shouldn't be called by an unregistered subsystem */
2869 BUG_ON(!subsys->active);
2870
2871 /* First figure out what hierarchy and cgroup we're dealing
2872 * with, and pin them so we can drop cgroup_mutex */
2873 mutex_lock(&cgroup_mutex);
2874 again:
2875 root = subsys->root;
2876 if (root == &rootnode) {
2877 printk(KERN_INFO
2878 "Not cloning cgroup for unused subsystem %s\n",
2879 subsys->name);
2880 mutex_unlock(&cgroup_mutex);
2881 return 0;
2882 }
817929ec 2883 cg = tsk->cgroups;
697f4161
PM
2884 parent = task_cgroup(tsk, subsys->subsys_id);
2885
697f4161
PM
2886 /* Pin the hierarchy */
2887 atomic_inc(&parent->root->sb->s_active);
2888
817929ec
PM
2889 /* Keep the cgroup alive */
2890 get_css_set(cg);
697f4161
PM
2891 mutex_unlock(&cgroup_mutex);
2892
2893 /* Now do the VFS work to create a cgroup */
2894 inode = parent->dentry->d_inode;
2895
2896 /* Hold the parent directory mutex across this operation to
2897 * stop anyone else deleting the new cgroup */
2898 mutex_lock(&inode->i_mutex);
2899 dentry = lookup_one_len(nodename, parent->dentry, strlen(nodename));
2900 if (IS_ERR(dentry)) {
2901 printk(KERN_INFO
cfe36bde 2902 "cgroup: Couldn't allocate dentry for %s: %ld\n", nodename,
697f4161
PM
2903 PTR_ERR(dentry));
2904 ret = PTR_ERR(dentry);
2905 goto out_release;
2906 }
2907
2908 /* Create the cgroup directory, which also creates the cgroup */
2909 ret = vfs_mkdir(inode, dentry, S_IFDIR | 0755);
bd89aabc 2910 child = __d_cgrp(dentry);
697f4161
PM
2911 dput(dentry);
2912 if (ret) {
2913 printk(KERN_INFO
2914 "Failed to create cgroup %s: %d\n", nodename,
2915 ret);
2916 goto out_release;
2917 }
2918
2919 if (!child) {
2920 printk(KERN_INFO
2921 "Couldn't find new cgroup %s\n", nodename);
2922 ret = -ENOMEM;
2923 goto out_release;
2924 }
2925
2926 /* The cgroup now exists. Retake cgroup_mutex and check
2927 * that we're still in the same state that we thought we
2928 * were. */
2929 mutex_lock(&cgroup_mutex);
2930 if ((root != subsys->root) ||
2931 (parent != task_cgroup(tsk, subsys->subsys_id))) {
2932 /* Aargh, we raced ... */
2933 mutex_unlock(&inode->i_mutex);
817929ec 2934 put_css_set(cg);
697f4161
PM
2935
2936 deactivate_super(parent->root->sb);
2937 /* The cgroup is still accessible in the VFS, but
2938 * we're not going to try to rmdir() it at this
2939 * point. */
2940 printk(KERN_INFO
2941 "Race in cgroup_clone() - leaking cgroup %s\n",
2942 nodename);
2943 goto again;
2944 }
2945
2946 /* do any required auto-setup */
2947 for_each_subsys(root, ss) {
2948 if (ss->post_clone)
2949 ss->post_clone(ss, child);
2950 }
2951
2952 /* All seems fine. Finish by moving the task into the new cgroup */
956db3ca 2953 ret = cgroup_attach_task(child, tsk);
697f4161
PM
2954 mutex_unlock(&cgroup_mutex);
2955
2956 out_release:
2957 mutex_unlock(&inode->i_mutex);
81a6a5cd
PM
2958
2959 mutex_lock(&cgroup_mutex);
817929ec 2960 put_css_set(cg);
81a6a5cd 2961 mutex_unlock(&cgroup_mutex);
697f4161
PM
2962 deactivate_super(parent->root->sb);
2963 return ret;
2964}
2965
a043e3b2
LZ
2966/**
2967 * cgroup_is_descendant - see if @cgrp is a descendant of current task's cgrp
2968 * @cgrp: the cgroup in question
2969 *
2970 * See if @cgrp is a descendant of the current task's cgroup in
2971 * the appropriate hierarchy.
697f4161
PM
2972 *
2973 * If we are sending in dummytop, then presumably we are creating
2974 * the top cgroup in the subsystem.
2975 *
2976 * Called only by the ns (nsproxy) cgroup.
2977 */
bd89aabc 2978int cgroup_is_descendant(const struct cgroup *cgrp)
697f4161
PM
2979{
2980 int ret;
2981 struct cgroup *target;
2982 int subsys_id;
2983
bd89aabc 2984 if (cgrp == dummytop)
697f4161
PM
2985 return 1;
2986
bd89aabc 2987 get_first_subsys(cgrp, NULL, &subsys_id);
697f4161 2988 target = task_cgroup(current, subsys_id);
bd89aabc
PM
2989 while (cgrp != target && cgrp!= cgrp->top_cgroup)
2990 cgrp = cgrp->parent;
2991 ret = (cgrp == target);
697f4161
PM
2992 return ret;
2993}
81a6a5cd 2994
bd89aabc 2995static void check_for_release(struct cgroup *cgrp)
81a6a5cd
PM
2996{
2997 /* All of these checks rely on RCU to keep the cgroup
2998 * structure alive */
bd89aabc
PM
2999 if (cgroup_is_releasable(cgrp) && !atomic_read(&cgrp->count)
3000 && list_empty(&cgrp->children) && !cgroup_has_css_refs(cgrp)) {
81a6a5cd
PM
3001 /* Control Group is currently removeable. If it's not
3002 * already queued for a userspace notification, queue
3003 * it now */
3004 int need_schedule_work = 0;
3005 spin_lock(&release_list_lock);
bd89aabc
PM
3006 if (!cgroup_is_removed(cgrp) &&
3007 list_empty(&cgrp->release_list)) {
3008 list_add(&cgrp->release_list, &release_list);
81a6a5cd
PM
3009 need_schedule_work = 1;
3010 }
3011 spin_unlock(&release_list_lock);
3012 if (need_schedule_work)
3013 schedule_work(&release_agent_work);
3014 }
3015}
3016
3017void __css_put(struct cgroup_subsys_state *css)
3018{
bd89aabc 3019 struct cgroup *cgrp = css->cgroup;
81a6a5cd 3020 rcu_read_lock();
bd89aabc
PM
3021 if (atomic_dec_and_test(&css->refcnt) && notify_on_release(cgrp)) {
3022 set_bit(CGRP_RELEASABLE, &cgrp->flags);
3023 check_for_release(cgrp);
81a6a5cd
PM
3024 }
3025 rcu_read_unlock();
3026}
3027
3028/*
3029 * Notify userspace when a cgroup is released, by running the
3030 * configured release agent with the name of the cgroup (path
3031 * relative to the root of cgroup file system) as the argument.
3032 *
3033 * Most likely, this user command will try to rmdir this cgroup.
3034 *
3035 * This races with the possibility that some other task will be
3036 * attached to this cgroup before it is removed, or that some other
3037 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
3038 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
3039 * unused, and this cgroup will be reprieved from its death sentence,
3040 * to continue to serve a useful existence. Next time it's released,
3041 * we will get notified again, if it still has 'notify_on_release' set.
3042 *
3043 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
3044 * means only wait until the task is successfully execve()'d. The
3045 * separate release agent task is forked by call_usermodehelper(),
3046 * then control in this thread returns here, without waiting for the
3047 * release agent task. We don't bother to wait because the caller of
3048 * this routine has no use for the exit status of the release agent
3049 * task, so no sense holding our caller up for that.
81a6a5cd 3050 */
81a6a5cd
PM
3051static void cgroup_release_agent(struct work_struct *work)
3052{
3053 BUG_ON(work != &release_agent_work);
3054 mutex_lock(&cgroup_mutex);
3055 spin_lock(&release_list_lock);
3056 while (!list_empty(&release_list)) {
3057 char *argv[3], *envp[3];
3058 int i;
e788e066 3059 char *pathbuf = NULL, *agentbuf = NULL;
bd89aabc 3060 struct cgroup *cgrp = list_entry(release_list.next,
81a6a5cd
PM
3061 struct cgroup,
3062 release_list);
bd89aabc 3063 list_del_init(&cgrp->release_list);
81a6a5cd
PM
3064 spin_unlock(&release_list_lock);
3065 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
e788e066
PM
3066 if (!pathbuf)
3067 goto continue_free;
3068 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0)
3069 goto continue_free;
3070 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
3071 if (!agentbuf)
3072 goto continue_free;
81a6a5cd
PM
3073
3074 i = 0;
e788e066
PM
3075 argv[i++] = agentbuf;
3076 argv[i++] = pathbuf;
81a6a5cd
PM
3077 argv[i] = NULL;
3078
3079 i = 0;
3080 /* minimal command environment */
3081 envp[i++] = "HOME=/";
3082 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
3083 envp[i] = NULL;
3084
3085 /* Drop the lock while we invoke the usermode helper,
3086 * since the exec could involve hitting disk and hence
3087 * be a slow process */
3088 mutex_unlock(&cgroup_mutex);
3089 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
81a6a5cd 3090 mutex_lock(&cgroup_mutex);
e788e066
PM
3091 continue_free:
3092 kfree(pathbuf);
3093 kfree(agentbuf);
81a6a5cd
PM
3094 spin_lock(&release_list_lock);
3095 }
3096 spin_unlock(&release_list_lock);
3097 mutex_unlock(&cgroup_mutex);
3098}
8bab8dde
PM
3099
3100static int __init cgroup_disable(char *str)
3101{
3102 int i;
3103 char *token;
3104
3105 while ((token = strsep(&str, ",")) != NULL) {
3106 if (!*token)
3107 continue;
3108
3109 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3110 struct cgroup_subsys *ss = subsys[i];
3111
3112 if (!strcmp(token, ss->name)) {
3113 ss->disabled = 1;
3114 printk(KERN_INFO "Disabling %s control group"
3115 " subsystem\n", ss->name);
3116 break;
3117 }
3118 }
3119 }
3120 return 1;
3121}
3122__setup("cgroup_disable=", cgroup_disable);