Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux...
[deliverable/linux.git] / kernel / cgroup.c
CommitLineData
ddbcc7e8 1/*
ddbcc7e8
PM
2 * Generic process-grouping system.
3 *
4 * Based originally on the cpuset system, extracted by Paul Menage
5 * Copyright (C) 2006 Google, Inc
6 *
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")) {
785 opts->subsys_bits = (1 << CGROUP_SUBSYS_COUNT) - 1;
786 } else if (!strcmp(token, "noprefix")) {
787 set_bit(ROOT_NOPREFIX, &opts->flags);
81a6a5cd
PM
788 } else if (!strncmp(token, "release_agent=", 14)) {
789 /* Specifying two release agents is forbidden */
790 if (opts->release_agent)
791 return -EINVAL;
792 opts->release_agent = kzalloc(PATH_MAX, GFP_KERNEL);
793 if (!opts->release_agent)
794 return -ENOMEM;
795 strncpy(opts->release_agent, token + 14, PATH_MAX - 1);
796 opts->release_agent[PATH_MAX - 1] = 0;
ddbcc7e8
PM
797 } else {
798 struct cgroup_subsys *ss;
799 int i;
800 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
801 ss = subsys[i];
802 if (!strcmp(token, ss->name)) {
803 set_bit(i, &opts->subsys_bits);
804 break;
805 }
806 }
807 if (i == CGROUP_SUBSYS_COUNT)
808 return -ENOENT;
809 }
810 }
811
812 /* We can't have an empty hierarchy */
813 if (!opts->subsys_bits)
814 return -EINVAL;
815
816 return 0;
817}
818
819static int cgroup_remount(struct super_block *sb, int *flags, char *data)
820{
821 int ret = 0;
822 struct cgroupfs_root *root = sb->s_fs_info;
bd89aabc 823 struct cgroup *cgrp = &root->top_cgroup;
ddbcc7e8
PM
824 struct cgroup_sb_opts opts;
825
bd89aabc 826 mutex_lock(&cgrp->dentry->d_inode->i_mutex);
ddbcc7e8
PM
827 mutex_lock(&cgroup_mutex);
828
829 /* See what subsystems are wanted */
830 ret = parse_cgroupfs_options(data, &opts);
831 if (ret)
832 goto out_unlock;
833
834 /* Don't allow flags to change at remount */
835 if (opts.flags != root->flags) {
836 ret = -EINVAL;
837 goto out_unlock;
838 }
839
840 ret = rebind_subsystems(root, opts.subsys_bits);
841
842 /* (re)populate subsystem files */
843 if (!ret)
bd89aabc 844 cgroup_populate_dir(cgrp);
ddbcc7e8 845
81a6a5cd
PM
846 if (opts.release_agent)
847 strcpy(root->release_agent_path, opts.release_agent);
ddbcc7e8 848 out_unlock:
81a6a5cd
PM
849 if (opts.release_agent)
850 kfree(opts.release_agent);
ddbcc7e8 851 mutex_unlock(&cgroup_mutex);
bd89aabc 852 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
ddbcc7e8
PM
853 return ret;
854}
855
856static struct super_operations cgroup_ops = {
857 .statfs = simple_statfs,
858 .drop_inode = generic_delete_inode,
859 .show_options = cgroup_show_options,
860 .remount_fs = cgroup_remount,
861};
862
863static void init_cgroup_root(struct cgroupfs_root *root)
864{
bd89aabc 865 struct cgroup *cgrp = &root->top_cgroup;
ddbcc7e8
PM
866 INIT_LIST_HEAD(&root->subsys_list);
867 INIT_LIST_HEAD(&root->root_list);
868 root->number_of_cgroups = 1;
bd89aabc
PM
869 cgrp->root = root;
870 cgrp->top_cgroup = cgrp;
871 INIT_LIST_HEAD(&cgrp->sibling);
872 INIT_LIST_HEAD(&cgrp->children);
873 INIT_LIST_HEAD(&cgrp->css_sets);
874 INIT_LIST_HEAD(&cgrp->release_list);
ddbcc7e8
PM
875}
876
877static int cgroup_test_super(struct super_block *sb, void *data)
878{
879 struct cgroupfs_root *new = data;
880 struct cgroupfs_root *root = sb->s_fs_info;
881
882 /* First check subsystems */
883 if (new->subsys_bits != root->subsys_bits)
884 return 0;
885
886 /* Next check flags */
887 if (new->flags != root->flags)
888 return 0;
889
890 return 1;
891}
892
893static int cgroup_set_super(struct super_block *sb, void *data)
894{
895 int ret;
896 struct cgroupfs_root *root = data;
897
898 ret = set_anon_super(sb, NULL);
899 if (ret)
900 return ret;
901
902 sb->s_fs_info = root;
903 root->sb = sb;
904
905 sb->s_blocksize = PAGE_CACHE_SIZE;
906 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
907 sb->s_magic = CGROUP_SUPER_MAGIC;
908 sb->s_op = &cgroup_ops;
909
910 return 0;
911}
912
913static int cgroup_get_rootdir(struct super_block *sb)
914{
915 struct inode *inode =
916 cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb);
917 struct dentry *dentry;
918
919 if (!inode)
920 return -ENOMEM;
921
ddbcc7e8
PM
922 inode->i_fop = &simple_dir_operations;
923 inode->i_op = &cgroup_dir_inode_operations;
924 /* directories start off with i_nlink == 2 (for "." entry) */
925 inc_nlink(inode);
926 dentry = d_alloc_root(inode);
927 if (!dentry) {
928 iput(inode);
929 return -ENOMEM;
930 }
931 sb->s_root = dentry;
932 return 0;
933}
934
935static int cgroup_get_sb(struct file_system_type *fs_type,
936 int flags, const char *unused_dev_name,
937 void *data, struct vfsmount *mnt)
938{
939 struct cgroup_sb_opts opts;
940 int ret = 0;
941 struct super_block *sb;
942 struct cgroupfs_root *root;
817929ec
PM
943 struct list_head tmp_cg_links, *l;
944 INIT_LIST_HEAD(&tmp_cg_links);
ddbcc7e8
PM
945
946 /* First find the desired set of subsystems */
947 ret = parse_cgroupfs_options(data, &opts);
81a6a5cd
PM
948 if (ret) {
949 if (opts.release_agent)
950 kfree(opts.release_agent);
ddbcc7e8 951 return ret;
81a6a5cd 952 }
ddbcc7e8
PM
953
954 root = kzalloc(sizeof(*root), GFP_KERNEL);
f7770738
LZ
955 if (!root) {
956 if (opts.release_agent)
957 kfree(opts.release_agent);
ddbcc7e8 958 return -ENOMEM;
f7770738 959 }
ddbcc7e8
PM
960
961 init_cgroup_root(root);
962 root->subsys_bits = opts.subsys_bits;
963 root->flags = opts.flags;
81a6a5cd
PM
964 if (opts.release_agent) {
965 strcpy(root->release_agent_path, opts.release_agent);
966 kfree(opts.release_agent);
967 }
ddbcc7e8
PM
968
969 sb = sget(fs_type, cgroup_test_super, cgroup_set_super, root);
970
971 if (IS_ERR(sb)) {
972 kfree(root);
973 return PTR_ERR(sb);
974 }
975
976 if (sb->s_fs_info != root) {
977 /* Reusing an existing superblock */
978 BUG_ON(sb->s_root == NULL);
979 kfree(root);
980 root = NULL;
981 } else {
982 /* New superblock */
bd89aabc 983 struct cgroup *cgrp = &root->top_cgroup;
817929ec 984 struct inode *inode;
ddbcc7e8
PM
985
986 BUG_ON(sb->s_root != NULL);
987
988 ret = cgroup_get_rootdir(sb);
989 if (ret)
990 goto drop_new_super;
817929ec 991 inode = sb->s_root->d_inode;
ddbcc7e8 992
817929ec 993 mutex_lock(&inode->i_mutex);
ddbcc7e8
PM
994 mutex_lock(&cgroup_mutex);
995
817929ec
PM
996 /*
997 * We're accessing css_set_count without locking
998 * css_set_lock here, but that's OK - it can only be
999 * increased by someone holding cgroup_lock, and
1000 * that's us. The worst that can happen is that we
1001 * have some link structures left over
1002 */
1003 ret = allocate_cg_links(css_set_count, &tmp_cg_links);
1004 if (ret) {
1005 mutex_unlock(&cgroup_mutex);
1006 mutex_unlock(&inode->i_mutex);
1007 goto drop_new_super;
1008 }
1009
ddbcc7e8
PM
1010 ret = rebind_subsystems(root, root->subsys_bits);
1011 if (ret == -EBUSY) {
1012 mutex_unlock(&cgroup_mutex);
817929ec 1013 mutex_unlock(&inode->i_mutex);
ddbcc7e8
PM
1014 goto drop_new_super;
1015 }
1016
1017 /* EBUSY should be the only error here */
1018 BUG_ON(ret);
1019
1020 list_add(&root->root_list, &roots);
817929ec 1021 root_count++;
ddbcc7e8
PM
1022
1023 sb->s_root->d_fsdata = &root->top_cgroup;
1024 root->top_cgroup.dentry = sb->s_root;
1025
817929ec
PM
1026 /* Link the top cgroup in this hierarchy into all
1027 * the css_set objects */
1028 write_lock(&css_set_lock);
1029 l = &init_css_set.list;
1030 do {
1031 struct css_set *cg;
1032 struct cg_cgroup_link *link;
1033 cg = list_entry(l, struct css_set, list);
1034 BUG_ON(list_empty(&tmp_cg_links));
1035 link = list_entry(tmp_cg_links.next,
1036 struct cg_cgroup_link,
bd89aabc
PM
1037 cgrp_link_list);
1038 list_del(&link->cgrp_link_list);
817929ec 1039 link->cg = cg;
bd89aabc 1040 list_add(&link->cgrp_link_list,
817929ec
PM
1041 &root->top_cgroup.css_sets);
1042 list_add(&link->cg_link_list, &cg->cg_links);
1043 l = l->next;
1044 } while (l != &init_css_set.list);
1045 write_unlock(&css_set_lock);
1046
1047 free_cg_links(&tmp_cg_links);
1048
bd89aabc
PM
1049 BUG_ON(!list_empty(&cgrp->sibling));
1050 BUG_ON(!list_empty(&cgrp->children));
ddbcc7e8
PM
1051 BUG_ON(root->number_of_cgroups != 1);
1052
bd89aabc 1053 cgroup_populate_dir(cgrp);
817929ec 1054 mutex_unlock(&inode->i_mutex);
ddbcc7e8
PM
1055 mutex_unlock(&cgroup_mutex);
1056 }
1057
1058 return simple_set_mnt(mnt, sb);
1059
1060 drop_new_super:
1061 up_write(&sb->s_umount);
1062 deactivate_super(sb);
817929ec 1063 free_cg_links(&tmp_cg_links);
ddbcc7e8
PM
1064 return ret;
1065}
1066
1067static void cgroup_kill_sb(struct super_block *sb) {
1068 struct cgroupfs_root *root = sb->s_fs_info;
bd89aabc 1069 struct cgroup *cgrp = &root->top_cgroup;
ddbcc7e8
PM
1070 int ret;
1071
1072 BUG_ON(!root);
1073
1074 BUG_ON(root->number_of_cgroups != 1);
bd89aabc
PM
1075 BUG_ON(!list_empty(&cgrp->children));
1076 BUG_ON(!list_empty(&cgrp->sibling));
ddbcc7e8
PM
1077
1078 mutex_lock(&cgroup_mutex);
1079
1080 /* Rebind all subsystems back to the default hierarchy */
1081 ret = rebind_subsystems(root, 0);
1082 /* Shouldn't be able to fail ... */
1083 BUG_ON(ret);
1084
817929ec
PM
1085 /*
1086 * Release all the links from css_sets to this hierarchy's
1087 * root cgroup
1088 */
1089 write_lock(&css_set_lock);
bd89aabc 1090 while (!list_empty(&cgrp->css_sets)) {
817929ec 1091 struct cg_cgroup_link *link;
bd89aabc
PM
1092 link = list_entry(cgrp->css_sets.next,
1093 struct cg_cgroup_link, cgrp_link_list);
817929ec 1094 list_del(&link->cg_link_list);
bd89aabc 1095 list_del(&link->cgrp_link_list);
817929ec
PM
1096 kfree(link);
1097 }
1098 write_unlock(&css_set_lock);
1099
1100 if (!list_empty(&root->root_list)) {
ddbcc7e8 1101 list_del(&root->root_list);
817929ec
PM
1102 root_count--;
1103 }
ddbcc7e8
PM
1104 mutex_unlock(&cgroup_mutex);
1105
1106 kfree(root);
1107 kill_litter_super(sb);
1108}
1109
1110static struct file_system_type cgroup_fs_type = {
1111 .name = "cgroup",
1112 .get_sb = cgroup_get_sb,
1113 .kill_sb = cgroup_kill_sb,
1114};
1115
bd89aabc 1116static inline struct cgroup *__d_cgrp(struct dentry *dentry)
ddbcc7e8
PM
1117{
1118 return dentry->d_fsdata;
1119}
1120
1121static inline struct cftype *__d_cft(struct dentry *dentry)
1122{
1123 return dentry->d_fsdata;
1124}
1125
a043e3b2
LZ
1126/**
1127 * cgroup_path - generate the path of a cgroup
1128 * @cgrp: the cgroup in question
1129 * @buf: the buffer to write the path into
1130 * @buflen: the length of the buffer
1131 *
1132 * Called with cgroup_mutex held. Writes path of cgroup into buf.
ddbcc7e8
PM
1133 * Returns 0 on success, -errno on error.
1134 */
bd89aabc 1135int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
ddbcc7e8
PM
1136{
1137 char *start;
1138
bd89aabc 1139 if (cgrp == dummytop) {
ddbcc7e8
PM
1140 /*
1141 * Inactive subsystems have no dentry for their root
1142 * cgroup
1143 */
1144 strcpy(buf, "/");
1145 return 0;
1146 }
1147
1148 start = buf + buflen;
1149
1150 *--start = '\0';
1151 for (;;) {
bd89aabc 1152 int len = cgrp->dentry->d_name.len;
ddbcc7e8
PM
1153 if ((start -= len) < buf)
1154 return -ENAMETOOLONG;
bd89aabc
PM
1155 memcpy(start, cgrp->dentry->d_name.name, len);
1156 cgrp = cgrp->parent;
1157 if (!cgrp)
ddbcc7e8 1158 break;
bd89aabc 1159 if (!cgrp->parent)
ddbcc7e8
PM
1160 continue;
1161 if (--start < buf)
1162 return -ENAMETOOLONG;
1163 *start = '/';
1164 }
1165 memmove(buf, start, buf + buflen - start);
1166 return 0;
1167}
1168
bbcb81d0
PM
1169/*
1170 * Return the first subsystem attached to a cgroup's hierarchy, and
1171 * its subsystem id.
1172 */
1173
bd89aabc 1174static void get_first_subsys(const struct cgroup *cgrp,
bbcb81d0
PM
1175 struct cgroup_subsys_state **css, int *subsys_id)
1176{
bd89aabc 1177 const struct cgroupfs_root *root = cgrp->root;
bbcb81d0
PM
1178 const struct cgroup_subsys *test_ss;
1179 BUG_ON(list_empty(&root->subsys_list));
1180 test_ss = list_entry(root->subsys_list.next,
1181 struct cgroup_subsys, sibling);
1182 if (css) {
bd89aabc 1183 *css = cgrp->subsys[test_ss->subsys_id];
bbcb81d0
PM
1184 BUG_ON(!*css);
1185 }
1186 if (subsys_id)
1187 *subsys_id = test_ss->subsys_id;
1188}
1189
a043e3b2
LZ
1190/**
1191 * cgroup_attach_task - attach task 'tsk' to cgroup 'cgrp'
1192 * @cgrp: the cgroup the task is attaching to
1193 * @tsk: the task to be attached
bbcb81d0 1194 *
a043e3b2
LZ
1195 * Call holding cgroup_mutex. May take task_lock of
1196 * the task 'tsk' during call.
bbcb81d0 1197 */
956db3ca 1198int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
bbcb81d0
PM
1199{
1200 int retval = 0;
1201 struct cgroup_subsys *ss;
bd89aabc 1202 struct cgroup *oldcgrp;
817929ec
PM
1203 struct css_set *cg = tsk->cgroups;
1204 struct css_set *newcg;
bd89aabc 1205 struct cgroupfs_root *root = cgrp->root;
bbcb81d0
PM
1206 int subsys_id;
1207
bd89aabc 1208 get_first_subsys(cgrp, NULL, &subsys_id);
bbcb81d0
PM
1209
1210 /* Nothing to do if the task is already in that cgroup */
bd89aabc
PM
1211 oldcgrp = task_cgroup(tsk, subsys_id);
1212 if (cgrp == oldcgrp)
bbcb81d0
PM
1213 return 0;
1214
1215 for_each_subsys(root, ss) {
1216 if (ss->can_attach) {
bd89aabc 1217 retval = ss->can_attach(ss, cgrp, tsk);
e18f6318 1218 if (retval)
bbcb81d0 1219 return retval;
bbcb81d0
PM
1220 }
1221 }
1222
817929ec
PM
1223 /*
1224 * Locate or allocate a new css_set for this task,
1225 * based on its final set of cgroups
1226 */
bd89aabc 1227 newcg = find_css_set(cg, cgrp);
e18f6318 1228 if (!newcg)
817929ec 1229 return -ENOMEM;
817929ec 1230
bbcb81d0
PM
1231 task_lock(tsk);
1232 if (tsk->flags & PF_EXITING) {
1233 task_unlock(tsk);
817929ec 1234 put_css_set(newcg);
bbcb81d0
PM
1235 return -ESRCH;
1236 }
817929ec 1237 rcu_assign_pointer(tsk->cgroups, newcg);
bbcb81d0
PM
1238 task_unlock(tsk);
1239
817929ec
PM
1240 /* Update the css_set linked lists if we're using them */
1241 write_lock(&css_set_lock);
1242 if (!list_empty(&tsk->cg_list)) {
1243 list_del(&tsk->cg_list);
1244 list_add(&tsk->cg_list, &newcg->tasks);
1245 }
1246 write_unlock(&css_set_lock);
1247
bbcb81d0 1248 for_each_subsys(root, ss) {
e18f6318 1249 if (ss->attach)
bd89aabc 1250 ss->attach(ss, cgrp, oldcgrp, tsk);
bbcb81d0 1251 }
bd89aabc 1252 set_bit(CGRP_RELEASABLE, &oldcgrp->flags);
bbcb81d0 1253 synchronize_rcu();
817929ec 1254 put_css_set(cg);
bbcb81d0
PM
1255 return 0;
1256}
1257
1258/*
bd89aabc 1259 * Attach task with pid 'pid' to cgroup 'cgrp'. Call with
bbcb81d0
PM
1260 * cgroup_mutex, may take task_lock of task
1261 */
bd89aabc 1262static int attach_task_by_pid(struct cgroup *cgrp, char *pidbuf)
bbcb81d0
PM
1263{
1264 pid_t pid;
1265 struct task_struct *tsk;
1266 int ret;
1267
1268 if (sscanf(pidbuf, "%d", &pid) != 1)
1269 return -EIO;
1270
1271 if (pid) {
1272 rcu_read_lock();
73507f33 1273 tsk = find_task_by_vpid(pid);
bbcb81d0
PM
1274 if (!tsk || tsk->flags & PF_EXITING) {
1275 rcu_read_unlock();
1276 return -ESRCH;
1277 }
1278 get_task_struct(tsk);
1279 rcu_read_unlock();
1280
1281 if ((current->euid) && (current->euid != tsk->uid)
1282 && (current->euid != tsk->suid)) {
1283 put_task_struct(tsk);
1284 return -EACCES;
1285 }
1286 } else {
1287 tsk = current;
1288 get_task_struct(tsk);
1289 }
1290
956db3ca 1291 ret = cgroup_attach_task(cgrp, tsk);
bbcb81d0
PM
1292 put_task_struct(tsk);
1293 return ret;
1294}
1295
ddbcc7e8 1296/* The various types of files and directories in a cgroup file system */
ddbcc7e8
PM
1297enum cgroup_filetype {
1298 FILE_ROOT,
1299 FILE_DIR,
1300 FILE_TASKLIST,
81a6a5cd
PM
1301 FILE_NOTIFY_ON_RELEASE,
1302 FILE_RELEASABLE,
1303 FILE_RELEASE_AGENT,
ddbcc7e8
PM
1304};
1305
bd89aabc 1306static ssize_t cgroup_write_uint(struct cgroup *cgrp, struct cftype *cft,
355e0c48
PM
1307 struct file *file,
1308 const char __user *userbuf,
1309 size_t nbytes, loff_t *unused_ppos)
1310{
1311 char buffer[64];
1312 int retval = 0;
1313 u64 val;
1314 char *end;
1315
1316 if (!nbytes)
1317 return -EINVAL;
1318 if (nbytes >= sizeof(buffer))
1319 return -E2BIG;
1320 if (copy_from_user(buffer, userbuf, nbytes))
1321 return -EFAULT;
1322
1323 buffer[nbytes] = 0; /* nul-terminate */
1324
1325 /* strip newline if necessary */
1326 if (nbytes && (buffer[nbytes-1] == '\n'))
1327 buffer[nbytes-1] = 0;
1328 val = simple_strtoull(buffer, &end, 0);
1329 if (*end)
1330 return -EINVAL;
1331
1332 /* Pass to subsystem */
bd89aabc 1333 retval = cft->write_uint(cgrp, cft, val);
355e0c48
PM
1334 if (!retval)
1335 retval = nbytes;
1336 return retval;
1337}
1338
bd89aabc 1339static ssize_t cgroup_common_file_write(struct cgroup *cgrp,
bbcb81d0
PM
1340 struct cftype *cft,
1341 struct file *file,
1342 const char __user *userbuf,
1343 size_t nbytes, loff_t *unused_ppos)
1344{
1345 enum cgroup_filetype type = cft->private;
1346 char *buffer;
1347 int retval = 0;
1348
1349 if (nbytes >= PATH_MAX)
1350 return -E2BIG;
1351
1352 /* +1 for nul-terminator */
1353 buffer = kmalloc(nbytes + 1, GFP_KERNEL);
1354 if (buffer == NULL)
1355 return -ENOMEM;
1356
1357 if (copy_from_user(buffer, userbuf, nbytes)) {
1358 retval = -EFAULT;
1359 goto out1;
1360 }
1361 buffer[nbytes] = 0; /* nul-terminate */
622d42ca 1362 strstrip(buffer); /* strip -just- trailing whitespace */
bbcb81d0
PM
1363
1364 mutex_lock(&cgroup_mutex);
1365
8dc4f3e1
PM
1366 /*
1367 * This was already checked for in cgroup_file_write(), but
1368 * check again now we're holding cgroup_mutex.
1369 */
bd89aabc 1370 if (cgroup_is_removed(cgrp)) {
bbcb81d0
PM
1371 retval = -ENODEV;
1372 goto out2;
1373 }
1374
1375 switch (type) {
1376 case FILE_TASKLIST:
bd89aabc 1377 retval = attach_task_by_pid(cgrp, buffer);
bbcb81d0 1378 break;
81a6a5cd 1379 case FILE_NOTIFY_ON_RELEASE:
bd89aabc 1380 clear_bit(CGRP_RELEASABLE, &cgrp->flags);
81a6a5cd 1381 if (simple_strtoul(buffer, NULL, 10) != 0)
bd89aabc 1382 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
81a6a5cd 1383 else
bd89aabc 1384 clear_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
81a6a5cd
PM
1385 break;
1386 case FILE_RELEASE_AGENT:
622d42ca
PJ
1387 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
1388 strcpy(cgrp->root->release_agent_path, buffer);
81a6a5cd 1389 break;
bbcb81d0
PM
1390 default:
1391 retval = -EINVAL;
1392 goto out2;
1393 }
1394
1395 if (retval == 0)
1396 retval = nbytes;
1397out2:
1398 mutex_unlock(&cgroup_mutex);
1399out1:
1400 kfree(buffer);
1401 return retval;
1402}
1403
ddbcc7e8
PM
1404static ssize_t cgroup_file_write(struct file *file, const char __user *buf,
1405 size_t nbytes, loff_t *ppos)
1406{
1407 struct cftype *cft = __d_cft(file->f_dentry);
bd89aabc 1408 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
ddbcc7e8 1409
8dc4f3e1 1410 if (!cft || cgroup_is_removed(cgrp))
ddbcc7e8 1411 return -ENODEV;
355e0c48 1412 if (cft->write)
bd89aabc 1413 return cft->write(cgrp, cft, file, buf, nbytes, ppos);
355e0c48 1414 if (cft->write_uint)
bd89aabc 1415 return cgroup_write_uint(cgrp, cft, file, buf, nbytes, ppos);
355e0c48 1416 return -EINVAL;
ddbcc7e8
PM
1417}
1418
bd89aabc 1419static ssize_t cgroup_read_uint(struct cgroup *cgrp, struct cftype *cft,
ddbcc7e8
PM
1420 struct file *file,
1421 char __user *buf, size_t nbytes,
1422 loff_t *ppos)
1423{
1424 char tmp[64];
bd89aabc 1425 u64 val = cft->read_uint(cgrp, cft);
ddbcc7e8
PM
1426 int len = sprintf(tmp, "%llu\n", (unsigned long long) val);
1427
1428 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
1429}
1430
bd89aabc 1431static ssize_t cgroup_common_file_read(struct cgroup *cgrp,
81a6a5cd
PM
1432 struct cftype *cft,
1433 struct file *file,
1434 char __user *buf,
1435 size_t nbytes, loff_t *ppos)
1436{
1437 enum cgroup_filetype type = cft->private;
1438 char *page;
1439 ssize_t retval = 0;
1440 char *s;
1441
1442 if (!(page = (char *)__get_free_page(GFP_KERNEL)))
1443 return -ENOMEM;
1444
1445 s = page;
1446
1447 switch (type) {
1448 case FILE_RELEASE_AGENT:
1449 {
1450 struct cgroupfs_root *root;
1451 size_t n;
1452 mutex_lock(&cgroup_mutex);
bd89aabc 1453 root = cgrp->root;
81a6a5cd
PM
1454 n = strnlen(root->release_agent_path,
1455 sizeof(root->release_agent_path));
1456 n = min(n, (size_t) PAGE_SIZE);
1457 strncpy(s, root->release_agent_path, n);
1458 mutex_unlock(&cgroup_mutex);
1459 s += n;
1460 break;
1461 }
1462 default:
1463 retval = -EINVAL;
1464 goto out;
1465 }
1466 *s++ = '\n';
1467
1468 retval = simple_read_from_buffer(buf, nbytes, ppos, page, s - page);
1469out:
1470 free_page((unsigned long)page);
1471 return retval;
1472}
1473
ddbcc7e8
PM
1474static ssize_t cgroup_file_read(struct file *file, char __user *buf,
1475 size_t nbytes, loff_t *ppos)
1476{
1477 struct cftype *cft = __d_cft(file->f_dentry);
bd89aabc 1478 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
ddbcc7e8 1479
8dc4f3e1 1480 if (!cft || cgroup_is_removed(cgrp))
ddbcc7e8
PM
1481 return -ENODEV;
1482
1483 if (cft->read)
bd89aabc 1484 return cft->read(cgrp, cft, file, buf, nbytes, ppos);
ddbcc7e8 1485 if (cft->read_uint)
bd89aabc 1486 return cgroup_read_uint(cgrp, cft, file, buf, nbytes, ppos);
ddbcc7e8
PM
1487 return -EINVAL;
1488}
1489
1490static int cgroup_file_open(struct inode *inode, struct file *file)
1491{
1492 int err;
1493 struct cftype *cft;
1494
1495 err = generic_file_open(inode, file);
1496 if (err)
1497 return err;
1498
1499 cft = __d_cft(file->f_dentry);
1500 if (!cft)
1501 return -ENODEV;
1502 if (cft->open)
1503 err = cft->open(inode, file);
1504 else
1505 err = 0;
1506
1507 return err;
1508}
1509
1510static int cgroup_file_release(struct inode *inode, struct file *file)
1511{
1512 struct cftype *cft = __d_cft(file->f_dentry);
1513 if (cft->release)
1514 return cft->release(inode, file);
1515 return 0;
1516}
1517
1518/*
1519 * cgroup_rename - Only allow simple rename of directories in place.
1520 */
1521static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry,
1522 struct inode *new_dir, struct dentry *new_dentry)
1523{
1524 if (!S_ISDIR(old_dentry->d_inode->i_mode))
1525 return -ENOTDIR;
1526 if (new_dentry->d_inode)
1527 return -EEXIST;
1528 if (old_dir != new_dir)
1529 return -EIO;
1530 return simple_rename(old_dir, old_dentry, new_dir, new_dentry);
1531}
1532
1533static struct file_operations cgroup_file_operations = {
1534 .read = cgroup_file_read,
1535 .write = cgroup_file_write,
1536 .llseek = generic_file_llseek,
1537 .open = cgroup_file_open,
1538 .release = cgroup_file_release,
1539};
1540
1541static struct inode_operations cgroup_dir_inode_operations = {
1542 .lookup = simple_lookup,
1543 .mkdir = cgroup_mkdir,
1544 .rmdir = cgroup_rmdir,
1545 .rename = cgroup_rename,
1546};
1547
1548static int cgroup_create_file(struct dentry *dentry, int mode,
1549 struct super_block *sb)
1550{
1551 static struct dentry_operations cgroup_dops = {
1552 .d_iput = cgroup_diput,
1553 };
1554
1555 struct inode *inode;
1556
1557 if (!dentry)
1558 return -ENOENT;
1559 if (dentry->d_inode)
1560 return -EEXIST;
1561
1562 inode = cgroup_new_inode(mode, sb);
1563 if (!inode)
1564 return -ENOMEM;
1565
1566 if (S_ISDIR(mode)) {
1567 inode->i_op = &cgroup_dir_inode_operations;
1568 inode->i_fop = &simple_dir_operations;
1569
1570 /* start off with i_nlink == 2 (for "." entry) */
1571 inc_nlink(inode);
1572
1573 /* start with the directory inode held, so that we can
1574 * populate it without racing with another mkdir */
817929ec 1575 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
ddbcc7e8
PM
1576 } else if (S_ISREG(mode)) {
1577 inode->i_size = 0;
1578 inode->i_fop = &cgroup_file_operations;
1579 }
1580 dentry->d_op = &cgroup_dops;
1581 d_instantiate(dentry, inode);
1582 dget(dentry); /* Extra count - pin the dentry in core */
1583 return 0;
1584}
1585
1586/*
a043e3b2
LZ
1587 * cgroup_create_dir - create a directory for an object.
1588 * @cgrp: the cgroup we create the directory for. It must have a valid
1589 * ->parent field. And we are going to fill its ->dentry field.
1590 * @dentry: dentry of the new cgroup
1591 * @mode: mode to set on new directory.
ddbcc7e8 1592 */
bd89aabc 1593static int cgroup_create_dir(struct cgroup *cgrp, struct dentry *dentry,
ddbcc7e8
PM
1594 int mode)
1595{
1596 struct dentry *parent;
1597 int error = 0;
1598
bd89aabc
PM
1599 parent = cgrp->parent->dentry;
1600 error = cgroup_create_file(dentry, S_IFDIR | mode, cgrp->root->sb);
ddbcc7e8 1601 if (!error) {
bd89aabc 1602 dentry->d_fsdata = cgrp;
ddbcc7e8 1603 inc_nlink(parent->d_inode);
bd89aabc 1604 cgrp->dentry = dentry;
ddbcc7e8
PM
1605 dget(dentry);
1606 }
1607 dput(dentry);
1608
1609 return error;
1610}
1611
bd89aabc 1612int cgroup_add_file(struct cgroup *cgrp,
ddbcc7e8
PM
1613 struct cgroup_subsys *subsys,
1614 const struct cftype *cft)
1615{
bd89aabc 1616 struct dentry *dir = cgrp->dentry;
ddbcc7e8
PM
1617 struct dentry *dentry;
1618 int error;
1619
1620 char name[MAX_CGROUP_TYPE_NAMELEN + MAX_CFTYPE_NAME + 2] = { 0 };
bd89aabc 1621 if (subsys && !test_bit(ROOT_NOPREFIX, &cgrp->root->flags)) {
ddbcc7e8
PM
1622 strcpy(name, subsys->name);
1623 strcat(name, ".");
1624 }
1625 strcat(name, cft->name);
1626 BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex));
1627 dentry = lookup_one_len(name, dir, strlen(name));
1628 if (!IS_ERR(dentry)) {
1629 error = cgroup_create_file(dentry, 0644 | S_IFREG,
bd89aabc 1630 cgrp->root->sb);
ddbcc7e8
PM
1631 if (!error)
1632 dentry->d_fsdata = (void *)cft;
1633 dput(dentry);
1634 } else
1635 error = PTR_ERR(dentry);
1636 return error;
1637}
1638
bd89aabc 1639int cgroup_add_files(struct cgroup *cgrp,
ddbcc7e8
PM
1640 struct cgroup_subsys *subsys,
1641 const struct cftype cft[],
1642 int count)
1643{
1644 int i, err;
1645 for (i = 0; i < count; i++) {
bd89aabc 1646 err = cgroup_add_file(cgrp, subsys, &cft[i]);
ddbcc7e8
PM
1647 if (err)
1648 return err;
1649 }
1650 return 0;
1651}
1652
a043e3b2
LZ
1653/**
1654 * cgroup_task_count - count the number of tasks in a cgroup.
1655 * @cgrp: the cgroup in question
1656 *
1657 * Return the number of tasks in the cgroup.
1658 */
bd89aabc 1659int cgroup_task_count(const struct cgroup *cgrp)
bbcb81d0
PM
1660{
1661 int count = 0;
817929ec
PM
1662 struct list_head *l;
1663
1664 read_lock(&css_set_lock);
bd89aabc
PM
1665 l = cgrp->css_sets.next;
1666 while (l != &cgrp->css_sets) {
817929ec 1667 struct cg_cgroup_link *link =
bd89aabc 1668 list_entry(l, struct cg_cgroup_link, cgrp_link_list);
817929ec
PM
1669 count += atomic_read(&link->cg->ref.refcount);
1670 l = l->next;
1671 }
1672 read_unlock(&css_set_lock);
bbcb81d0
PM
1673 return count;
1674}
1675
817929ec
PM
1676/*
1677 * Advance a list_head iterator. The iterator should be positioned at
1678 * the start of a css_set
1679 */
bd89aabc 1680static void cgroup_advance_iter(struct cgroup *cgrp,
817929ec
PM
1681 struct cgroup_iter *it)
1682{
1683 struct list_head *l = it->cg_link;
1684 struct cg_cgroup_link *link;
1685 struct css_set *cg;
1686
1687 /* Advance to the next non-empty css_set */
1688 do {
1689 l = l->next;
bd89aabc 1690 if (l == &cgrp->css_sets) {
817929ec
PM
1691 it->cg_link = NULL;
1692 return;
1693 }
bd89aabc 1694 link = list_entry(l, struct cg_cgroup_link, cgrp_link_list);
817929ec
PM
1695 cg = link->cg;
1696 } while (list_empty(&cg->tasks));
1697 it->cg_link = l;
1698 it->task = cg->tasks.next;
1699}
1700
31a7df01
CW
1701/*
1702 * To reduce the fork() overhead for systems that are not actually
1703 * using their cgroups capability, we don't maintain the lists running
1704 * through each css_set to its tasks until we see the list actually
1705 * used - in other words after the first call to cgroup_iter_start().
1706 *
1707 * The tasklist_lock is not held here, as do_each_thread() and
1708 * while_each_thread() are protected by RCU.
1709 */
1710void cgroup_enable_task_cg_lists(void)
1711{
1712 struct task_struct *p, *g;
1713 write_lock(&css_set_lock);
1714 use_task_css_set_links = 1;
1715 do_each_thread(g, p) {
1716 task_lock(p);
1717 if (list_empty(&p->cg_list))
1718 list_add(&p->cg_list, &p->cgroups->tasks);
1719 task_unlock(p);
1720 } while_each_thread(g, p);
1721 write_unlock(&css_set_lock);
1722}
1723
bd89aabc 1724void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it)
817929ec
PM
1725{
1726 /*
1727 * The first time anyone tries to iterate across a cgroup,
1728 * we need to enable the list linking each css_set to its
1729 * tasks, and fix up all existing tasks.
1730 */
31a7df01
CW
1731 if (!use_task_css_set_links)
1732 cgroup_enable_task_cg_lists();
1733
817929ec 1734 read_lock(&css_set_lock);
bd89aabc
PM
1735 it->cg_link = &cgrp->css_sets;
1736 cgroup_advance_iter(cgrp, it);
817929ec
PM
1737}
1738
bd89aabc 1739struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
817929ec
PM
1740 struct cgroup_iter *it)
1741{
1742 struct task_struct *res;
1743 struct list_head *l = it->task;
1744
1745 /* If the iterator cg is NULL, we have no tasks */
1746 if (!it->cg_link)
1747 return NULL;
1748 res = list_entry(l, struct task_struct, cg_list);
1749 /* Advance iterator to find next entry */
1750 l = l->next;
1751 if (l == &res->cgroups->tasks) {
1752 /* We reached the end of this task list - move on to
1753 * the next cg_cgroup_link */
bd89aabc 1754 cgroup_advance_iter(cgrp, it);
817929ec
PM
1755 } else {
1756 it->task = l;
1757 }
1758 return res;
1759}
1760
bd89aabc 1761void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it)
817929ec
PM
1762{
1763 read_unlock(&css_set_lock);
1764}
1765
31a7df01
CW
1766static inline int started_after_time(struct task_struct *t1,
1767 struct timespec *time,
1768 struct task_struct *t2)
1769{
1770 int start_diff = timespec_compare(&t1->start_time, time);
1771 if (start_diff > 0) {
1772 return 1;
1773 } else if (start_diff < 0) {
1774 return 0;
1775 } else {
1776 /*
1777 * Arbitrarily, if two processes started at the same
1778 * time, we'll say that the lower pointer value
1779 * started first. Note that t2 may have exited by now
1780 * so this may not be a valid pointer any longer, but
1781 * that's fine - it still serves to distinguish
1782 * between two tasks started (effectively) simultaneously.
1783 */
1784 return t1 > t2;
1785 }
1786}
1787
1788/*
1789 * This function is a callback from heap_insert() and is used to order
1790 * the heap.
1791 * In this case we order the heap in descending task start time.
1792 */
1793static inline int started_after(void *p1, void *p2)
1794{
1795 struct task_struct *t1 = p1;
1796 struct task_struct *t2 = p2;
1797 return started_after_time(t1, &t2->start_time, t2);
1798}
1799
1800/**
1801 * cgroup_scan_tasks - iterate though all the tasks in a cgroup
1802 * @scan: struct cgroup_scanner containing arguments for the scan
1803 *
1804 * Arguments include pointers to callback functions test_task() and
1805 * process_task().
1806 * Iterate through all the tasks in a cgroup, calling test_task() for each,
1807 * and if it returns true, call process_task() for it also.
1808 * The test_task pointer may be NULL, meaning always true (select all tasks).
1809 * Effectively duplicates cgroup_iter_{start,next,end}()
1810 * but does not lock css_set_lock for the call to process_task().
1811 * The struct cgroup_scanner may be embedded in any structure of the caller's
1812 * creation.
1813 * It is guaranteed that process_task() will act on every task that
1814 * is a member of the cgroup for the duration of this call. This
1815 * function may or may not call process_task() for tasks that exit
1816 * or move to a different cgroup during the call, or are forked or
1817 * move into the cgroup during the call.
1818 *
1819 * Note that test_task() may be called with locks held, and may in some
1820 * situations be called multiple times for the same task, so it should
1821 * be cheap.
1822 * If the heap pointer in the struct cgroup_scanner is non-NULL, a heap has been
1823 * pre-allocated and will be used for heap operations (and its "gt" member will
1824 * be overwritten), else a temporary heap will be used (allocation of which
1825 * may cause this function to fail).
1826 */
1827int cgroup_scan_tasks(struct cgroup_scanner *scan)
1828{
1829 int retval, i;
1830 struct cgroup_iter it;
1831 struct task_struct *p, *dropped;
1832 /* Never dereference latest_task, since it's not refcounted */
1833 struct task_struct *latest_task = NULL;
1834 struct ptr_heap tmp_heap;
1835 struct ptr_heap *heap;
1836 struct timespec latest_time = { 0, 0 };
1837
1838 if (scan->heap) {
1839 /* The caller supplied our heap and pre-allocated its memory */
1840 heap = scan->heap;
1841 heap->gt = &started_after;
1842 } else {
1843 /* We need to allocate our own heap memory */
1844 heap = &tmp_heap;
1845 retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after);
1846 if (retval)
1847 /* cannot allocate the heap */
1848 return retval;
1849 }
1850
1851 again:
1852 /*
1853 * Scan tasks in the cgroup, using the scanner's "test_task" callback
1854 * to determine which are of interest, and using the scanner's
1855 * "process_task" callback to process any of them that need an update.
1856 * Since we don't want to hold any locks during the task updates,
1857 * gather tasks to be processed in a heap structure.
1858 * The heap is sorted by descending task start time.
1859 * If the statically-sized heap fills up, we overflow tasks that
1860 * started later, and in future iterations only consider tasks that
1861 * started after the latest task in the previous pass. This
1862 * guarantees forward progress and that we don't miss any tasks.
1863 */
1864 heap->size = 0;
1865 cgroup_iter_start(scan->cg, &it);
1866 while ((p = cgroup_iter_next(scan->cg, &it))) {
1867 /*
1868 * Only affect tasks that qualify per the caller's callback,
1869 * if he provided one
1870 */
1871 if (scan->test_task && !scan->test_task(p, scan))
1872 continue;
1873 /*
1874 * Only process tasks that started after the last task
1875 * we processed
1876 */
1877 if (!started_after_time(p, &latest_time, latest_task))
1878 continue;
1879 dropped = heap_insert(heap, p);
1880 if (dropped == NULL) {
1881 /*
1882 * The new task was inserted; the heap wasn't
1883 * previously full
1884 */
1885 get_task_struct(p);
1886 } else if (dropped != p) {
1887 /*
1888 * The new task was inserted, and pushed out a
1889 * different task
1890 */
1891 get_task_struct(p);
1892 put_task_struct(dropped);
1893 }
1894 /*
1895 * Else the new task was newer than anything already in
1896 * the heap and wasn't inserted
1897 */
1898 }
1899 cgroup_iter_end(scan->cg, &it);
1900
1901 if (heap->size) {
1902 for (i = 0; i < heap->size; i++) {
1903 struct task_struct *p = heap->ptrs[i];
1904 if (i == 0) {
1905 latest_time = p->start_time;
1906 latest_task = p;
1907 }
1908 /* Process the task per the caller's callback */
1909 scan->process_task(p, scan);
1910 put_task_struct(p);
1911 }
1912 /*
1913 * If we had to process any tasks at all, scan again
1914 * in case some of them were in the middle of forking
1915 * children that didn't get processed.
1916 * Not the most efficient way to do it, but it avoids
1917 * having to take callback_mutex in the fork path
1918 */
1919 goto again;
1920 }
1921 if (heap == &tmp_heap)
1922 heap_free(&tmp_heap);
1923 return 0;
1924}
1925
bbcb81d0
PM
1926/*
1927 * Stuff for reading the 'tasks' file.
1928 *
1929 * Reading this file can return large amounts of data if a cgroup has
1930 * *lots* of attached tasks. So it may need several calls to read(),
1931 * but we cannot guarantee that the information we produce is correct
1932 * unless we produce it entirely atomically.
1933 *
1934 * Upon tasks file open(), a struct ctr_struct is allocated, that
1935 * will have a pointer to an array (also allocated here). The struct
1936 * ctr_struct * is stored in file->private_data. Its resources will
1937 * be freed by release() when the file is closed. The array is used
1938 * to sprintf the PIDs and then used by read().
1939 */
1940struct ctr_struct {
1941 char *buf;
1942 int bufsz;
1943};
1944
1945/*
1946 * Load into 'pidarray' up to 'npids' of the tasks using cgroup
bd89aabc 1947 * 'cgrp'. Return actual number of pids loaded. No need to
bbcb81d0
PM
1948 * task_lock(p) when reading out p->cgroup, since we're in an RCU
1949 * read section, so the css_set can't go away, and is
1950 * immutable after creation.
1951 */
bd89aabc 1952static int pid_array_load(pid_t *pidarray, int npids, struct cgroup *cgrp)
bbcb81d0
PM
1953{
1954 int n = 0;
817929ec
PM
1955 struct cgroup_iter it;
1956 struct task_struct *tsk;
bd89aabc
PM
1957 cgroup_iter_start(cgrp, &it);
1958 while ((tsk = cgroup_iter_next(cgrp, &it))) {
817929ec
PM
1959 if (unlikely(n == npids))
1960 break;
73507f33 1961 pidarray[n++] = task_pid_vnr(tsk);
817929ec 1962 }
bd89aabc 1963 cgroup_iter_end(cgrp, &it);
bbcb81d0
PM
1964 return n;
1965}
1966
846c7bb0 1967/**
a043e3b2 1968 * cgroupstats_build - build and fill cgroupstats
846c7bb0
BS
1969 * @stats: cgroupstats to fill information into
1970 * @dentry: A dentry entry belonging to the cgroup for which stats have
1971 * been requested.
a043e3b2
LZ
1972 *
1973 * Build and fill cgroupstats so that taskstats can export it to user
1974 * space.
846c7bb0
BS
1975 */
1976int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
1977{
1978 int ret = -EINVAL;
bd89aabc 1979 struct cgroup *cgrp;
846c7bb0
BS
1980 struct cgroup_iter it;
1981 struct task_struct *tsk;
1982 /*
1983 * Validate dentry by checking the superblock operations
1984 */
1985 if (dentry->d_sb->s_op != &cgroup_ops)
1986 goto err;
1987
1988 ret = 0;
bd89aabc 1989 cgrp = dentry->d_fsdata;
846c7bb0
BS
1990 rcu_read_lock();
1991
bd89aabc
PM
1992 cgroup_iter_start(cgrp, &it);
1993 while ((tsk = cgroup_iter_next(cgrp, &it))) {
846c7bb0
BS
1994 switch (tsk->state) {
1995 case TASK_RUNNING:
1996 stats->nr_running++;
1997 break;
1998 case TASK_INTERRUPTIBLE:
1999 stats->nr_sleeping++;
2000 break;
2001 case TASK_UNINTERRUPTIBLE:
2002 stats->nr_uninterruptible++;
2003 break;
2004 case TASK_STOPPED:
2005 stats->nr_stopped++;
2006 break;
2007 default:
2008 if (delayacct_is_task_waiting_on_io(tsk))
2009 stats->nr_io_wait++;
2010 break;
2011 }
2012 }
bd89aabc 2013 cgroup_iter_end(cgrp, &it);
846c7bb0
BS
2014
2015 rcu_read_unlock();
2016err:
2017 return ret;
2018}
2019
bbcb81d0
PM
2020static int cmppid(const void *a, const void *b)
2021{
2022 return *(pid_t *)a - *(pid_t *)b;
2023}
2024
2025/*
2026 * Convert array 'a' of 'npids' pid_t's to a string of newline separated
2027 * decimal pids in 'buf'. Don't write more than 'sz' chars, but return
2028 * count 'cnt' of how many chars would be written if buf were large enough.
2029 */
2030static int pid_array_to_buf(char *buf, int sz, pid_t *a, int npids)
2031{
2032 int cnt = 0;
2033 int i;
2034
2035 for (i = 0; i < npids; i++)
2036 cnt += snprintf(buf + cnt, max(sz - cnt, 0), "%d\n", a[i]);
2037 return cnt;
2038}
2039
2040/*
2041 * Handle an open on 'tasks' file. Prepare a buffer listing the
2042 * process id's of tasks currently attached to the cgroup being opened.
2043 *
2044 * Does not require any specific cgroup mutexes, and does not take any.
2045 */
2046static int cgroup_tasks_open(struct inode *unused, struct file *file)
2047{
bd89aabc 2048 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
bbcb81d0
PM
2049 struct ctr_struct *ctr;
2050 pid_t *pidarray;
2051 int npids;
2052 char c;
2053
2054 if (!(file->f_mode & FMODE_READ))
2055 return 0;
2056
2057 ctr = kmalloc(sizeof(*ctr), GFP_KERNEL);
2058 if (!ctr)
2059 goto err0;
2060
2061 /*
2062 * If cgroup gets more users after we read count, we won't have
2063 * enough space - tough. This race is indistinguishable to the
2064 * caller from the case that the additional cgroup users didn't
2065 * show up until sometime later on.
2066 */
bd89aabc 2067 npids = cgroup_task_count(cgrp);
bbcb81d0
PM
2068 if (npids) {
2069 pidarray = kmalloc(npids * sizeof(pid_t), GFP_KERNEL);
2070 if (!pidarray)
2071 goto err1;
2072
bd89aabc 2073 npids = pid_array_load(pidarray, npids, cgrp);
bbcb81d0
PM
2074 sort(pidarray, npids, sizeof(pid_t), cmppid, NULL);
2075
2076 /* Call pid_array_to_buf() twice, first just to get bufsz */
2077 ctr->bufsz = pid_array_to_buf(&c, sizeof(c), pidarray, npids) + 1;
2078 ctr->buf = kmalloc(ctr->bufsz, GFP_KERNEL);
2079 if (!ctr->buf)
2080 goto err2;
2081 ctr->bufsz = pid_array_to_buf(ctr->buf, ctr->bufsz, pidarray, npids);
2082
2083 kfree(pidarray);
2084 } else {
9dce07f1 2085 ctr->buf = NULL;
bbcb81d0
PM
2086 ctr->bufsz = 0;
2087 }
2088 file->private_data = ctr;
2089 return 0;
2090
2091err2:
2092 kfree(pidarray);
2093err1:
2094 kfree(ctr);
2095err0:
2096 return -ENOMEM;
2097}
2098
bd89aabc 2099static ssize_t cgroup_tasks_read(struct cgroup *cgrp,
bbcb81d0
PM
2100 struct cftype *cft,
2101 struct file *file, char __user *buf,
2102 size_t nbytes, loff_t *ppos)
2103{
2104 struct ctr_struct *ctr = file->private_data;
2105
2106 return simple_read_from_buffer(buf, nbytes, ppos, ctr->buf, ctr->bufsz);
2107}
2108
2109static int cgroup_tasks_release(struct inode *unused_inode,
2110 struct file *file)
2111{
2112 struct ctr_struct *ctr;
2113
2114 if (file->f_mode & FMODE_READ) {
2115 ctr = file->private_data;
2116 kfree(ctr->buf);
2117 kfree(ctr);
2118 }
2119 return 0;
2120}
2121
bd89aabc 2122static u64 cgroup_read_notify_on_release(struct cgroup *cgrp,
81a6a5cd
PM
2123 struct cftype *cft)
2124{
bd89aabc 2125 return notify_on_release(cgrp);
81a6a5cd
PM
2126}
2127
bd89aabc 2128static u64 cgroup_read_releasable(struct cgroup *cgrp, struct cftype *cft)
81a6a5cd 2129{
bd89aabc 2130 return test_bit(CGRP_RELEASABLE, &cgrp->flags);
81a6a5cd
PM
2131}
2132
bbcb81d0
PM
2133/*
2134 * for the common functions, 'private' gives the type of file
2135 */
81a6a5cd
PM
2136static struct cftype files[] = {
2137 {
2138 .name = "tasks",
2139 .open = cgroup_tasks_open,
2140 .read = cgroup_tasks_read,
2141 .write = cgroup_common_file_write,
2142 .release = cgroup_tasks_release,
2143 .private = FILE_TASKLIST,
2144 },
2145
2146 {
2147 .name = "notify_on_release",
2148 .read_uint = cgroup_read_notify_on_release,
2149 .write = cgroup_common_file_write,
2150 .private = FILE_NOTIFY_ON_RELEASE,
2151 },
2152
2153 {
2154 .name = "releasable",
2155 .read_uint = cgroup_read_releasable,
2156 .private = FILE_RELEASABLE,
2157 }
2158};
2159
2160static struct cftype cft_release_agent = {
2161 .name = "release_agent",
2162 .read = cgroup_common_file_read,
bbcb81d0 2163 .write = cgroup_common_file_write,
81a6a5cd 2164 .private = FILE_RELEASE_AGENT,
bbcb81d0
PM
2165};
2166
bd89aabc 2167static int cgroup_populate_dir(struct cgroup *cgrp)
ddbcc7e8
PM
2168{
2169 int err;
2170 struct cgroup_subsys *ss;
2171
2172 /* First clear out any existing files */
bd89aabc 2173 cgroup_clear_directory(cgrp->dentry);
ddbcc7e8 2174
bd89aabc 2175 err = cgroup_add_files(cgrp, NULL, files, ARRAY_SIZE(files));
bbcb81d0
PM
2176 if (err < 0)
2177 return err;
2178
bd89aabc
PM
2179 if (cgrp == cgrp->top_cgroup) {
2180 if ((err = cgroup_add_file(cgrp, NULL, &cft_release_agent)) < 0)
81a6a5cd
PM
2181 return err;
2182 }
2183
bd89aabc
PM
2184 for_each_subsys(cgrp->root, ss) {
2185 if (ss->populate && (err = ss->populate(ss, cgrp)) < 0)
ddbcc7e8
PM
2186 return err;
2187 }
2188
2189 return 0;
2190}
2191
2192static void init_cgroup_css(struct cgroup_subsys_state *css,
2193 struct cgroup_subsys *ss,
bd89aabc 2194 struct cgroup *cgrp)
ddbcc7e8 2195{
bd89aabc 2196 css->cgroup = cgrp;
ddbcc7e8
PM
2197 atomic_set(&css->refcnt, 0);
2198 css->flags = 0;
bd89aabc 2199 if (cgrp == dummytop)
ddbcc7e8 2200 set_bit(CSS_ROOT, &css->flags);
bd89aabc
PM
2201 BUG_ON(cgrp->subsys[ss->subsys_id]);
2202 cgrp->subsys[ss->subsys_id] = css;
ddbcc7e8
PM
2203}
2204
2205/*
a043e3b2
LZ
2206 * cgroup_create - create a cgroup
2207 * @parent: cgroup that will be parent of the new cgroup
2208 * @dentry: dentry of the new cgroup
2209 * @mode: mode to set on new inode
ddbcc7e8 2210 *
a043e3b2 2211 * Must be called with the mutex on the parent inode held
ddbcc7e8 2212 */
ddbcc7e8
PM
2213static long cgroup_create(struct cgroup *parent, struct dentry *dentry,
2214 int mode)
2215{
bd89aabc 2216 struct cgroup *cgrp;
ddbcc7e8
PM
2217 struct cgroupfs_root *root = parent->root;
2218 int err = 0;
2219 struct cgroup_subsys *ss;
2220 struct super_block *sb = root->sb;
2221
bd89aabc
PM
2222 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
2223 if (!cgrp)
ddbcc7e8
PM
2224 return -ENOMEM;
2225
2226 /* Grab a reference on the superblock so the hierarchy doesn't
2227 * get deleted on unmount if there are child cgroups. This
2228 * can be done outside cgroup_mutex, since the sb can't
2229 * disappear while someone has an open control file on the
2230 * fs */
2231 atomic_inc(&sb->s_active);
2232
2233 mutex_lock(&cgroup_mutex);
2234
bd89aabc
PM
2235 INIT_LIST_HEAD(&cgrp->sibling);
2236 INIT_LIST_HEAD(&cgrp->children);
2237 INIT_LIST_HEAD(&cgrp->css_sets);
2238 INIT_LIST_HEAD(&cgrp->release_list);
ddbcc7e8 2239
bd89aabc
PM
2240 cgrp->parent = parent;
2241 cgrp->root = parent->root;
2242 cgrp->top_cgroup = parent->top_cgroup;
ddbcc7e8 2243
b6abdb0e
LZ
2244 if (notify_on_release(parent))
2245 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
2246
ddbcc7e8 2247 for_each_subsys(root, ss) {
bd89aabc 2248 struct cgroup_subsys_state *css = ss->create(ss, cgrp);
ddbcc7e8
PM
2249 if (IS_ERR(css)) {
2250 err = PTR_ERR(css);
2251 goto err_destroy;
2252 }
bd89aabc 2253 init_cgroup_css(css, ss, cgrp);
ddbcc7e8
PM
2254 }
2255
bd89aabc 2256 list_add(&cgrp->sibling, &cgrp->parent->children);
ddbcc7e8
PM
2257 root->number_of_cgroups++;
2258
bd89aabc 2259 err = cgroup_create_dir(cgrp, dentry, mode);
ddbcc7e8
PM
2260 if (err < 0)
2261 goto err_remove;
2262
2263 /* The cgroup directory was pre-locked for us */
bd89aabc 2264 BUG_ON(!mutex_is_locked(&cgrp->dentry->d_inode->i_mutex));
ddbcc7e8 2265
bd89aabc 2266 err = cgroup_populate_dir(cgrp);
ddbcc7e8
PM
2267 /* If err < 0, we have a half-filled directory - oh well ;) */
2268
2269 mutex_unlock(&cgroup_mutex);
bd89aabc 2270 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
ddbcc7e8
PM
2271
2272 return 0;
2273
2274 err_remove:
2275
bd89aabc 2276 list_del(&cgrp->sibling);
ddbcc7e8
PM
2277 root->number_of_cgroups--;
2278
2279 err_destroy:
2280
2281 for_each_subsys(root, ss) {
bd89aabc
PM
2282 if (cgrp->subsys[ss->subsys_id])
2283 ss->destroy(ss, cgrp);
ddbcc7e8
PM
2284 }
2285
2286 mutex_unlock(&cgroup_mutex);
2287
2288 /* Release the reference count that we took on the superblock */
2289 deactivate_super(sb);
2290
bd89aabc 2291 kfree(cgrp);
ddbcc7e8
PM
2292 return err;
2293}
2294
2295static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2296{
2297 struct cgroup *c_parent = dentry->d_parent->d_fsdata;
2298
2299 /* the vfs holds inode->i_mutex already */
2300 return cgroup_create(c_parent, dentry, mode | S_IFDIR);
2301}
2302
bd89aabc 2303static inline int cgroup_has_css_refs(struct cgroup *cgrp)
81a6a5cd
PM
2304{
2305 /* Check the reference count on each subsystem. Since we
2306 * already established that there are no tasks in the
2307 * cgroup, if the css refcount is also 0, then there should
2308 * be no outstanding references, so the subsystem is safe to
2309 * destroy. We scan across all subsystems rather than using
2310 * the per-hierarchy linked list of mounted subsystems since
2311 * we can be called via check_for_release() with no
2312 * synchronization other than RCU, and the subsystem linked
2313 * list isn't RCU-safe */
2314 int i;
2315 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2316 struct cgroup_subsys *ss = subsys[i];
2317 struct cgroup_subsys_state *css;
2318 /* Skip subsystems not in this hierarchy */
bd89aabc 2319 if (ss->root != cgrp->root)
81a6a5cd 2320 continue;
bd89aabc 2321 css = cgrp->subsys[ss->subsys_id];
81a6a5cd
PM
2322 /* When called from check_for_release() it's possible
2323 * that by this point the cgroup has been removed
2324 * and the css deleted. But a false-positive doesn't
2325 * matter, since it can only happen if the cgroup
2326 * has been deleted and hence no longer needs the
2327 * release agent to be called anyway. */
e18f6318 2328 if (css && atomic_read(&css->refcnt))
81a6a5cd 2329 return 1;
81a6a5cd
PM
2330 }
2331 return 0;
2332}
2333
ddbcc7e8
PM
2334static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry)
2335{
bd89aabc 2336 struct cgroup *cgrp = dentry->d_fsdata;
ddbcc7e8
PM
2337 struct dentry *d;
2338 struct cgroup *parent;
ddbcc7e8
PM
2339 struct super_block *sb;
2340 struct cgroupfs_root *root;
ddbcc7e8
PM
2341
2342 /* the vfs holds both inode->i_mutex already */
2343
2344 mutex_lock(&cgroup_mutex);
bd89aabc 2345 if (atomic_read(&cgrp->count) != 0) {
ddbcc7e8
PM
2346 mutex_unlock(&cgroup_mutex);
2347 return -EBUSY;
2348 }
bd89aabc 2349 if (!list_empty(&cgrp->children)) {
ddbcc7e8
PM
2350 mutex_unlock(&cgroup_mutex);
2351 return -EBUSY;
2352 }
2353
bd89aabc
PM
2354 parent = cgrp->parent;
2355 root = cgrp->root;
ddbcc7e8 2356 sb = root->sb;
a043e3b2 2357
4fca88c8 2358 /*
a043e3b2
LZ
2359 * Call pre_destroy handlers of subsys. Notify subsystems
2360 * that rmdir() request comes.
4fca88c8
KH
2361 */
2362 cgroup_call_pre_destroy(cgrp);
ddbcc7e8 2363
bd89aabc 2364 if (cgroup_has_css_refs(cgrp)) {
ddbcc7e8
PM
2365 mutex_unlock(&cgroup_mutex);
2366 return -EBUSY;
2367 }
2368
81a6a5cd 2369 spin_lock(&release_list_lock);
bd89aabc
PM
2370 set_bit(CGRP_REMOVED, &cgrp->flags);
2371 if (!list_empty(&cgrp->release_list))
2372 list_del(&cgrp->release_list);
81a6a5cd 2373 spin_unlock(&release_list_lock);
ddbcc7e8 2374 /* delete my sibling from parent->children */
bd89aabc
PM
2375 list_del(&cgrp->sibling);
2376 spin_lock(&cgrp->dentry->d_lock);
2377 d = dget(cgrp->dentry);
2378 cgrp->dentry = NULL;
ddbcc7e8
PM
2379 spin_unlock(&d->d_lock);
2380
2381 cgroup_d_remove_dir(d);
2382 dput(d);
ddbcc7e8 2383
bd89aabc 2384 set_bit(CGRP_RELEASABLE, &parent->flags);
81a6a5cd
PM
2385 check_for_release(parent);
2386
ddbcc7e8 2387 mutex_unlock(&cgroup_mutex);
ddbcc7e8
PM
2388 return 0;
2389}
2390
2391static void cgroup_init_subsys(struct cgroup_subsys *ss)
2392{
ddbcc7e8 2393 struct cgroup_subsys_state *css;
817929ec 2394 struct list_head *l;
cfe36bde
DC
2395
2396 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
ddbcc7e8
PM
2397
2398 /* Create the top cgroup state for this subsystem */
2399 ss->root = &rootnode;
2400 css = ss->create(ss, dummytop);
2401 /* We don't handle early failures gracefully */
2402 BUG_ON(IS_ERR(css));
2403 init_cgroup_css(css, ss, dummytop);
2404
817929ec
PM
2405 /* Update all cgroup groups to contain a subsys
2406 * pointer to this state - since the subsystem is
2407 * newly registered, all tasks and hence all cgroup
2408 * groups are in the subsystem's top cgroup. */
2409 write_lock(&css_set_lock);
2410 l = &init_css_set.list;
2411 do {
2412 struct css_set *cg =
2413 list_entry(l, struct css_set, list);
2414 cg->subsys[ss->subsys_id] = dummytop->subsys[ss->subsys_id];
2415 l = l->next;
2416 } while (l != &init_css_set.list);
2417 write_unlock(&css_set_lock);
ddbcc7e8
PM
2418
2419 /* If this subsystem requested that it be notified with fork
2420 * events, we should send it one now for every process in the
2421 * system */
81a6a5cd
PM
2422 if (ss->fork) {
2423 struct task_struct *g, *p;
2424
2425 read_lock(&tasklist_lock);
2426 do_each_thread(g, p) {
2427 ss->fork(ss, p);
2428 } while_each_thread(g, p);
2429 read_unlock(&tasklist_lock);
2430 }
ddbcc7e8
PM
2431
2432 need_forkexit_callback |= ss->fork || ss->exit;
2433
2434 ss->active = 1;
2435}
2436
2437/**
a043e3b2
LZ
2438 * cgroup_init_early - cgroup initialization at system boot
2439 *
2440 * Initialize cgroups at system boot, and initialize any
2441 * subsystems that request early init.
ddbcc7e8
PM
2442 */
2443int __init cgroup_init_early(void)
2444{
2445 int i;
817929ec
PM
2446 kref_init(&init_css_set.ref);
2447 kref_get(&init_css_set.ref);
2448 INIT_LIST_HEAD(&init_css_set.list);
2449 INIT_LIST_HEAD(&init_css_set.cg_links);
2450 INIT_LIST_HEAD(&init_css_set.tasks);
2451 css_set_count = 1;
ddbcc7e8
PM
2452 init_cgroup_root(&rootnode);
2453 list_add(&rootnode.root_list, &roots);
817929ec
PM
2454 root_count = 1;
2455 init_task.cgroups = &init_css_set;
2456
2457 init_css_set_link.cg = &init_css_set;
bd89aabc 2458 list_add(&init_css_set_link.cgrp_link_list,
817929ec
PM
2459 &rootnode.top_cgroup.css_sets);
2460 list_add(&init_css_set_link.cg_link_list,
2461 &init_css_set.cg_links);
ddbcc7e8
PM
2462
2463 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2464 struct cgroup_subsys *ss = subsys[i];
2465
2466 BUG_ON(!ss->name);
2467 BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN);
2468 BUG_ON(!ss->create);
2469 BUG_ON(!ss->destroy);
2470 if (ss->subsys_id != i) {
cfe36bde 2471 printk(KERN_ERR "cgroup: Subsys %s id == %d\n",
ddbcc7e8
PM
2472 ss->name, ss->subsys_id);
2473 BUG();
2474 }
2475
2476 if (ss->early_init)
2477 cgroup_init_subsys(ss);
2478 }
2479 return 0;
2480}
2481
2482/**
a043e3b2
LZ
2483 * cgroup_init - cgroup initialization
2484 *
2485 * Register cgroup filesystem and /proc file, and initialize
2486 * any subsystems that didn't request early init.
ddbcc7e8
PM
2487 */
2488int __init cgroup_init(void)
2489{
2490 int err;
2491 int i;
a424316c
PM
2492 struct proc_dir_entry *entry;
2493
2494 err = bdi_init(&cgroup_backing_dev_info);
2495 if (err)
2496 return err;
ddbcc7e8
PM
2497
2498 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2499 struct cgroup_subsys *ss = subsys[i];
2500 if (!ss->early_init)
2501 cgroup_init_subsys(ss);
2502 }
2503
2504 err = register_filesystem(&cgroup_fs_type);
2505 if (err < 0)
2506 goto out;
2507
a424316c
PM
2508 entry = create_proc_entry("cgroups", 0, NULL);
2509 if (entry)
2510 entry->proc_fops = &proc_cgroupstats_operations;
2511
ddbcc7e8 2512out:
a424316c
PM
2513 if (err)
2514 bdi_destroy(&cgroup_backing_dev_info);
2515
ddbcc7e8
PM
2516 return err;
2517}
b4f48b63 2518
a424316c
PM
2519/*
2520 * proc_cgroup_show()
2521 * - Print task's cgroup paths into seq_file, one line for each hierarchy
2522 * - Used for /proc/<pid>/cgroup.
2523 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
2524 * doesn't really matter if tsk->cgroup changes after we read it,
956db3ca 2525 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
a424316c
PM
2526 * anyway. No need to check that tsk->cgroup != NULL, thanks to
2527 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
2528 * cgroup to top_cgroup.
2529 */
2530
2531/* TODO: Use a proper seq_file iterator */
2532static int proc_cgroup_show(struct seq_file *m, void *v)
2533{
2534 struct pid *pid;
2535 struct task_struct *tsk;
2536 char *buf;
2537 int retval;
2538 struct cgroupfs_root *root;
2539
2540 retval = -ENOMEM;
2541 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
2542 if (!buf)
2543 goto out;
2544
2545 retval = -ESRCH;
2546 pid = m->private;
2547 tsk = get_pid_task(pid, PIDTYPE_PID);
2548 if (!tsk)
2549 goto out_free;
2550
2551 retval = 0;
2552
2553 mutex_lock(&cgroup_mutex);
2554
2555 for_each_root(root) {
2556 struct cgroup_subsys *ss;
bd89aabc 2557 struct cgroup *cgrp;
a424316c
PM
2558 int subsys_id;
2559 int count = 0;
2560
2561 /* Skip this hierarchy if it has no active subsystems */
2562 if (!root->actual_subsys_bits)
2563 continue;
2564 for_each_subsys(root, ss)
2565 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
2566 seq_putc(m, ':');
2567 get_first_subsys(&root->top_cgroup, NULL, &subsys_id);
bd89aabc
PM
2568 cgrp = task_cgroup(tsk, subsys_id);
2569 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
a424316c
PM
2570 if (retval < 0)
2571 goto out_unlock;
2572 seq_puts(m, buf);
2573 seq_putc(m, '\n');
2574 }
2575
2576out_unlock:
2577 mutex_unlock(&cgroup_mutex);
2578 put_task_struct(tsk);
2579out_free:
2580 kfree(buf);
2581out:
2582 return retval;
2583}
2584
2585static int cgroup_open(struct inode *inode, struct file *file)
2586{
2587 struct pid *pid = PROC_I(inode)->pid;
2588 return single_open(file, proc_cgroup_show, pid);
2589}
2590
2591struct file_operations proc_cgroup_operations = {
2592 .open = cgroup_open,
2593 .read = seq_read,
2594 .llseek = seq_lseek,
2595 .release = single_release,
2596};
2597
2598/* Display information about each subsystem and each hierarchy */
2599static int proc_cgroupstats_show(struct seq_file *m, void *v)
2600{
2601 int i;
a424316c 2602
817929ec 2603 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\n");
a424316c 2604 mutex_lock(&cgroup_mutex);
a424316c
PM
2605 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2606 struct cgroup_subsys *ss = subsys[i];
817929ec
PM
2607 seq_printf(m, "%s\t%lu\t%d\n",
2608 ss->name, ss->root->subsys_bits,
2609 ss->root->number_of_cgroups);
a424316c
PM
2610 }
2611 mutex_unlock(&cgroup_mutex);
2612 return 0;
2613}
2614
2615static int cgroupstats_open(struct inode *inode, struct file *file)
2616{
9dce07f1 2617 return single_open(file, proc_cgroupstats_show, NULL);
a424316c
PM
2618}
2619
2620static struct file_operations proc_cgroupstats_operations = {
2621 .open = cgroupstats_open,
2622 .read = seq_read,
2623 .llseek = seq_lseek,
2624 .release = single_release,
2625};
2626
b4f48b63
PM
2627/**
2628 * cgroup_fork - attach newly forked task to its parents cgroup.
a043e3b2 2629 * @child: pointer to task_struct of forking parent process.
b4f48b63
PM
2630 *
2631 * Description: A task inherits its parent's cgroup at fork().
2632 *
2633 * A pointer to the shared css_set was automatically copied in
2634 * fork.c by dup_task_struct(). However, we ignore that copy, since
2635 * it was not made under the protection of RCU or cgroup_mutex, so
956db3ca 2636 * might no longer be a valid cgroup pointer. cgroup_attach_task() might
817929ec
PM
2637 * have already changed current->cgroups, allowing the previously
2638 * referenced cgroup group to be removed and freed.
b4f48b63
PM
2639 *
2640 * At the point that cgroup_fork() is called, 'current' is the parent
2641 * task, and the passed argument 'child' points to the child task.
2642 */
2643void cgroup_fork(struct task_struct *child)
2644{
817929ec
PM
2645 task_lock(current);
2646 child->cgroups = current->cgroups;
2647 get_css_set(child->cgroups);
2648 task_unlock(current);
2649 INIT_LIST_HEAD(&child->cg_list);
b4f48b63
PM
2650}
2651
2652/**
a043e3b2
LZ
2653 * cgroup_fork_callbacks - run fork callbacks
2654 * @child: the new task
2655 *
2656 * Called on a new task very soon before adding it to the
2657 * tasklist. No need to take any locks since no-one can
2658 * be operating on this task.
b4f48b63
PM
2659 */
2660void cgroup_fork_callbacks(struct task_struct *child)
2661{
2662 if (need_forkexit_callback) {
2663 int i;
2664 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2665 struct cgroup_subsys *ss = subsys[i];
2666 if (ss->fork)
2667 ss->fork(ss, child);
2668 }
2669 }
2670}
2671
817929ec 2672/**
a043e3b2
LZ
2673 * cgroup_post_fork - called on a new task after adding it to the task list
2674 * @child: the task in question
2675 *
2676 * Adds the task to the list running through its css_set if necessary.
2677 * Has to be after the task is visible on the task list in case we race
2678 * with the first call to cgroup_iter_start() - to guarantee that the
2679 * new task ends up on its list.
2680 */
817929ec
PM
2681void cgroup_post_fork(struct task_struct *child)
2682{
2683 if (use_task_css_set_links) {
2684 write_lock(&css_set_lock);
2685 if (list_empty(&child->cg_list))
2686 list_add(&child->cg_list, &child->cgroups->tasks);
2687 write_unlock(&css_set_lock);
2688 }
2689}
b4f48b63
PM
2690/**
2691 * cgroup_exit - detach cgroup from exiting task
2692 * @tsk: pointer to task_struct of exiting process
a043e3b2 2693 * @run_callback: run exit callbacks?
b4f48b63
PM
2694 *
2695 * Description: Detach cgroup from @tsk and release it.
2696 *
2697 * Note that cgroups marked notify_on_release force every task in
2698 * them to take the global cgroup_mutex mutex when exiting.
2699 * This could impact scaling on very large systems. Be reluctant to
2700 * use notify_on_release cgroups where very high task exit scaling
2701 * is required on large systems.
2702 *
2703 * the_top_cgroup_hack:
2704 *
2705 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
2706 *
2707 * We call cgroup_exit() while the task is still competent to
2708 * handle notify_on_release(), then leave the task attached to the
2709 * root cgroup in each hierarchy for the remainder of its exit.
2710 *
2711 * To do this properly, we would increment the reference count on
2712 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
2713 * code we would add a second cgroup function call, to drop that
2714 * reference. This would just create an unnecessary hot spot on
2715 * the top_cgroup reference count, to no avail.
2716 *
2717 * Normally, holding a reference to a cgroup without bumping its
2718 * count is unsafe. The cgroup could go away, or someone could
2719 * attach us to a different cgroup, decrementing the count on
2720 * the first cgroup that we never incremented. But in this case,
2721 * top_cgroup isn't going away, and either task has PF_EXITING set,
956db3ca
CW
2722 * which wards off any cgroup_attach_task() attempts, or task is a failed
2723 * fork, never visible to cgroup_attach_task.
b4f48b63
PM
2724 */
2725void cgroup_exit(struct task_struct *tsk, int run_callbacks)
2726{
2727 int i;
817929ec 2728 struct css_set *cg;
b4f48b63
PM
2729
2730 if (run_callbacks && need_forkexit_callback) {
2731 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2732 struct cgroup_subsys *ss = subsys[i];
2733 if (ss->exit)
2734 ss->exit(ss, tsk);
2735 }
2736 }
817929ec
PM
2737
2738 /*
2739 * Unlink from the css_set task list if necessary.
2740 * Optimistically check cg_list before taking
2741 * css_set_lock
2742 */
2743 if (!list_empty(&tsk->cg_list)) {
2744 write_lock(&css_set_lock);
2745 if (!list_empty(&tsk->cg_list))
2746 list_del(&tsk->cg_list);
2747 write_unlock(&css_set_lock);
2748 }
2749
b4f48b63
PM
2750 /* Reassign the task to the init_css_set. */
2751 task_lock(tsk);
817929ec
PM
2752 cg = tsk->cgroups;
2753 tsk->cgroups = &init_css_set;
b4f48b63 2754 task_unlock(tsk);
817929ec 2755 if (cg)
81a6a5cd 2756 put_css_set_taskexit(cg);
b4f48b63 2757}
697f4161
PM
2758
2759/**
a043e3b2
LZ
2760 * cgroup_clone - clone the cgroup the given subsystem is attached to
2761 * @tsk: the task to be moved
2762 * @subsys: the given subsystem
2763 *
2764 * Duplicate the current cgroup in the hierarchy that the given
2765 * subsystem is attached to, and move this task into the new
2766 * child.
697f4161
PM
2767 */
2768int cgroup_clone(struct task_struct *tsk, struct cgroup_subsys *subsys)
2769{
2770 struct dentry *dentry;
2771 int ret = 0;
2772 char nodename[MAX_CGROUP_TYPE_NAMELEN];
2773 struct cgroup *parent, *child;
2774 struct inode *inode;
2775 struct css_set *cg;
2776 struct cgroupfs_root *root;
2777 struct cgroup_subsys *ss;
2778
2779 /* We shouldn't be called by an unregistered subsystem */
2780 BUG_ON(!subsys->active);
2781
2782 /* First figure out what hierarchy and cgroup we're dealing
2783 * with, and pin them so we can drop cgroup_mutex */
2784 mutex_lock(&cgroup_mutex);
2785 again:
2786 root = subsys->root;
2787 if (root == &rootnode) {
2788 printk(KERN_INFO
2789 "Not cloning cgroup for unused subsystem %s\n",
2790 subsys->name);
2791 mutex_unlock(&cgroup_mutex);
2792 return 0;
2793 }
817929ec 2794 cg = tsk->cgroups;
697f4161
PM
2795 parent = task_cgroup(tsk, subsys->subsys_id);
2796
2797 snprintf(nodename, MAX_CGROUP_TYPE_NAMELEN, "node_%d", tsk->pid);
2798
2799 /* Pin the hierarchy */
2800 atomic_inc(&parent->root->sb->s_active);
2801
817929ec
PM
2802 /* Keep the cgroup alive */
2803 get_css_set(cg);
697f4161
PM
2804 mutex_unlock(&cgroup_mutex);
2805
2806 /* Now do the VFS work to create a cgroup */
2807 inode = parent->dentry->d_inode;
2808
2809 /* Hold the parent directory mutex across this operation to
2810 * stop anyone else deleting the new cgroup */
2811 mutex_lock(&inode->i_mutex);
2812 dentry = lookup_one_len(nodename, parent->dentry, strlen(nodename));
2813 if (IS_ERR(dentry)) {
2814 printk(KERN_INFO
cfe36bde 2815 "cgroup: Couldn't allocate dentry for %s: %ld\n", nodename,
697f4161
PM
2816 PTR_ERR(dentry));
2817 ret = PTR_ERR(dentry);
2818 goto out_release;
2819 }
2820
2821 /* Create the cgroup directory, which also creates the cgroup */
2822 ret = vfs_mkdir(inode, dentry, S_IFDIR | 0755);
bd89aabc 2823 child = __d_cgrp(dentry);
697f4161
PM
2824 dput(dentry);
2825 if (ret) {
2826 printk(KERN_INFO
2827 "Failed to create cgroup %s: %d\n", nodename,
2828 ret);
2829 goto out_release;
2830 }
2831
2832 if (!child) {
2833 printk(KERN_INFO
2834 "Couldn't find new cgroup %s\n", nodename);
2835 ret = -ENOMEM;
2836 goto out_release;
2837 }
2838
2839 /* The cgroup now exists. Retake cgroup_mutex and check
2840 * that we're still in the same state that we thought we
2841 * were. */
2842 mutex_lock(&cgroup_mutex);
2843 if ((root != subsys->root) ||
2844 (parent != task_cgroup(tsk, subsys->subsys_id))) {
2845 /* Aargh, we raced ... */
2846 mutex_unlock(&inode->i_mutex);
817929ec 2847 put_css_set(cg);
697f4161
PM
2848
2849 deactivate_super(parent->root->sb);
2850 /* The cgroup is still accessible in the VFS, but
2851 * we're not going to try to rmdir() it at this
2852 * point. */
2853 printk(KERN_INFO
2854 "Race in cgroup_clone() - leaking cgroup %s\n",
2855 nodename);
2856 goto again;
2857 }
2858
2859 /* do any required auto-setup */
2860 for_each_subsys(root, ss) {
2861 if (ss->post_clone)
2862 ss->post_clone(ss, child);
2863 }
2864
2865 /* All seems fine. Finish by moving the task into the new cgroup */
956db3ca 2866 ret = cgroup_attach_task(child, tsk);
697f4161
PM
2867 mutex_unlock(&cgroup_mutex);
2868
2869 out_release:
2870 mutex_unlock(&inode->i_mutex);
81a6a5cd
PM
2871
2872 mutex_lock(&cgroup_mutex);
817929ec 2873 put_css_set(cg);
81a6a5cd 2874 mutex_unlock(&cgroup_mutex);
697f4161
PM
2875 deactivate_super(parent->root->sb);
2876 return ret;
2877}
2878
a043e3b2
LZ
2879/**
2880 * cgroup_is_descendant - see if @cgrp is a descendant of current task's cgrp
2881 * @cgrp: the cgroup in question
2882 *
2883 * See if @cgrp is a descendant of the current task's cgroup in
2884 * the appropriate hierarchy.
697f4161
PM
2885 *
2886 * If we are sending in dummytop, then presumably we are creating
2887 * the top cgroup in the subsystem.
2888 *
2889 * Called only by the ns (nsproxy) cgroup.
2890 */
bd89aabc 2891int cgroup_is_descendant(const struct cgroup *cgrp)
697f4161
PM
2892{
2893 int ret;
2894 struct cgroup *target;
2895 int subsys_id;
2896
bd89aabc 2897 if (cgrp == dummytop)
697f4161
PM
2898 return 1;
2899
bd89aabc 2900 get_first_subsys(cgrp, NULL, &subsys_id);
697f4161 2901 target = task_cgroup(current, subsys_id);
bd89aabc
PM
2902 while (cgrp != target && cgrp!= cgrp->top_cgroup)
2903 cgrp = cgrp->parent;
2904 ret = (cgrp == target);
697f4161
PM
2905 return ret;
2906}
81a6a5cd 2907
bd89aabc 2908static void check_for_release(struct cgroup *cgrp)
81a6a5cd
PM
2909{
2910 /* All of these checks rely on RCU to keep the cgroup
2911 * structure alive */
bd89aabc
PM
2912 if (cgroup_is_releasable(cgrp) && !atomic_read(&cgrp->count)
2913 && list_empty(&cgrp->children) && !cgroup_has_css_refs(cgrp)) {
81a6a5cd
PM
2914 /* Control Group is currently removeable. If it's not
2915 * already queued for a userspace notification, queue
2916 * it now */
2917 int need_schedule_work = 0;
2918 spin_lock(&release_list_lock);
bd89aabc
PM
2919 if (!cgroup_is_removed(cgrp) &&
2920 list_empty(&cgrp->release_list)) {
2921 list_add(&cgrp->release_list, &release_list);
81a6a5cd
PM
2922 need_schedule_work = 1;
2923 }
2924 spin_unlock(&release_list_lock);
2925 if (need_schedule_work)
2926 schedule_work(&release_agent_work);
2927 }
2928}
2929
2930void __css_put(struct cgroup_subsys_state *css)
2931{
bd89aabc 2932 struct cgroup *cgrp = css->cgroup;
81a6a5cd 2933 rcu_read_lock();
bd89aabc
PM
2934 if (atomic_dec_and_test(&css->refcnt) && notify_on_release(cgrp)) {
2935 set_bit(CGRP_RELEASABLE, &cgrp->flags);
2936 check_for_release(cgrp);
81a6a5cd
PM
2937 }
2938 rcu_read_unlock();
2939}
2940
2941/*
2942 * Notify userspace when a cgroup is released, by running the
2943 * configured release agent with the name of the cgroup (path
2944 * relative to the root of cgroup file system) as the argument.
2945 *
2946 * Most likely, this user command will try to rmdir this cgroup.
2947 *
2948 * This races with the possibility that some other task will be
2949 * attached to this cgroup before it is removed, or that some other
2950 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
2951 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
2952 * unused, and this cgroup will be reprieved from its death sentence,
2953 * to continue to serve a useful existence. Next time it's released,
2954 * we will get notified again, if it still has 'notify_on_release' set.
2955 *
2956 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
2957 * means only wait until the task is successfully execve()'d. The
2958 * separate release agent task is forked by call_usermodehelper(),
2959 * then control in this thread returns here, without waiting for the
2960 * release agent task. We don't bother to wait because the caller of
2961 * this routine has no use for the exit status of the release agent
2962 * task, so no sense holding our caller up for that.
81a6a5cd 2963 */
81a6a5cd
PM
2964static void cgroup_release_agent(struct work_struct *work)
2965{
2966 BUG_ON(work != &release_agent_work);
2967 mutex_lock(&cgroup_mutex);
2968 spin_lock(&release_list_lock);
2969 while (!list_empty(&release_list)) {
2970 char *argv[3], *envp[3];
2971 int i;
2972 char *pathbuf;
bd89aabc 2973 struct cgroup *cgrp = list_entry(release_list.next,
81a6a5cd
PM
2974 struct cgroup,
2975 release_list);
bd89aabc 2976 list_del_init(&cgrp->release_list);
81a6a5cd
PM
2977 spin_unlock(&release_list_lock);
2978 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
2979 if (!pathbuf) {
2980 spin_lock(&release_list_lock);
2981 continue;
2982 }
2983
bd89aabc 2984 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0) {
81a6a5cd
PM
2985 kfree(pathbuf);
2986 spin_lock(&release_list_lock);
2987 continue;
2988 }
2989
2990 i = 0;
bd89aabc 2991 argv[i++] = cgrp->root->release_agent_path;
81a6a5cd
PM
2992 argv[i++] = (char *)pathbuf;
2993 argv[i] = NULL;
2994
2995 i = 0;
2996 /* minimal command environment */
2997 envp[i++] = "HOME=/";
2998 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
2999 envp[i] = NULL;
3000
3001 /* Drop the lock while we invoke the usermode helper,
3002 * since the exec could involve hitting disk and hence
3003 * be a slow process */
3004 mutex_unlock(&cgroup_mutex);
3005 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
3006 kfree(pathbuf);
3007 mutex_lock(&cgroup_mutex);
3008 spin_lock(&release_list_lock);
3009 }
3010 spin_unlock(&release_list_lock);
3011 mutex_unlock(&cgroup_mutex);
3012}
This page took 0.197658 seconds and 5 git commands to generate.