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