blob: 5083a09a9b6d3370a3d47558718ec2ab63e81611 [file] [log] [blame]
Paul Menageddbcc7e2007-10-18 23:39:30 -07001/*
Paul Menageddbcc7e2007-10-18 23:39:30 -07002 * Generic process-grouping system.
3 *
4 * Based originally on the cpuset system, extracted by Paul Menage
5 * Copyright (C) 2006 Google, Inc
6 *
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08007 * Notifications support
8 * Copyright (C) 2009 Nokia Corporation
9 * Author: Kirill A. Shutemov
10 *
Paul Menageddbcc7e2007-10-18 23:39:30 -070011 * Copyright notices from the original cpuset code:
12 * --------------------------------------------------
13 * Copyright (C) 2003 BULL SA.
14 * Copyright (C) 2004-2006 Silicon Graphics, Inc.
15 *
16 * Portions derived from Patrick Mochel's sysfs code.
17 * sysfs is Copyright (c) 2001-3 Patrick Mochel
18 *
19 * 2003-10-10 Written by Simon Derr.
20 * 2003-10-22 Updates by Stephen Hemminger.
21 * 2004 May-July Rework by Paul Jackson.
22 * ---------------------------------------------------
23 *
24 * This file is subject to the terms and conditions of the GNU General Public
25 * License. See the file COPYING in the main directory of the Linux
26 * distribution for more details.
27 */
28
29#include <linux/cgroup.h>
Paul Menagec6d57f32009-09-23 15:56:19 -070030#include <linux/ctype.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070031#include <linux/errno.h>
32#include <linux/fs.h>
33#include <linux/kernel.h>
34#include <linux/list.h>
35#include <linux/mm.h>
36#include <linux/mutex.h>
37#include <linux/mount.h>
38#include <linux/pagemap.h>
Paul Menagea4243162007-10-18 23:39:35 -070039#include <linux/proc_fs.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070040#include <linux/rcupdate.h>
41#include <linux/sched.h>
Paul Menage817929e2007-10-18 23:39:36 -070042#include <linux/backing-dev.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070043#include <linux/seq_file.h>
44#include <linux/slab.h>
45#include <linux/magic.h>
46#include <linux/spinlock.h>
47#include <linux/string.h>
Paul Menagebbcb81d2007-10-18 23:39:32 -070048#include <linux/sort.h>
Paul Menage81a6a5c2007-10-18 23:39:38 -070049#include <linux/kmod.h>
Ben Blume6a11052010-03-10 15:22:09 -080050#include <linux/module.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070051#include <linux/delayacct.h>
52#include <linux/cgroupstats.h>
Li Zefan472b1052008-04-29 01:00:11 -070053#include <linux/hash.h>
Al Viro3f8206d2008-07-26 03:46:43 -040054#include <linux/namei.h>
Li Zefan096b7fe2009-07-29 15:04:04 -070055#include <linux/pid_namespace.h>
Paul Menage2c6ab6d2009-09-23 15:56:23 -070056#include <linux/idr.h>
Ben Blumd1d9fd32009-09-23 15:56:28 -070057#include <linux/vmalloc.h> /* TODO: replace with more sophisticated array */
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -080058#include <linux/eventfd.h>
59#include <linux/poll.h>
Ben Blumd8466872011-05-26 16:25:21 -070060#include <linux/flex_array.h> /* used in cgroup_attach_proc */
Balbir Singh846c7bb2007-10-18 23:39:44 -070061
Paul Menageddbcc7e2007-10-18 23:39:30 -070062#include <asm/atomic.h>
63
Paul Menage81a6a5c2007-10-18 23:39:38 -070064static DEFINE_MUTEX(cgroup_mutex);
65
Ben Blumaae8aab2010-03-10 15:22:07 -080066/*
67 * Generate an array of cgroup subsystem pointers. At boot time, this is
68 * populated up to CGROUP_BUILTIN_SUBSYS_COUNT, and modular subsystems are
69 * registered after that. The mutable section of this array is protected by
70 * cgroup_mutex.
71 */
Paul Menageddbcc7e2007-10-18 23:39:30 -070072#define SUBSYS(_x) &_x ## _subsys,
Ben Blumaae8aab2010-03-10 15:22:07 -080073static struct cgroup_subsys *subsys[CGROUP_SUBSYS_COUNT] = {
Paul Menageddbcc7e2007-10-18 23:39:30 -070074#include <linux/cgroup_subsys.h>
75};
76
Paul Menagec6d57f32009-09-23 15:56:19 -070077#define MAX_CGROUP_ROOT_NAMELEN 64
78
Paul Menageddbcc7e2007-10-18 23:39:30 -070079/*
80 * A cgroupfs_root represents the root of a cgroup hierarchy,
81 * and may be associated with a superblock to form an active
82 * hierarchy
83 */
84struct cgroupfs_root {
85 struct super_block *sb;
86
87 /*
88 * The bitmask of subsystems intended to be attached to this
89 * hierarchy
90 */
91 unsigned long subsys_bits;
92
Paul Menage2c6ab6d2009-09-23 15:56:23 -070093 /* Unique id for this hierarchy. */
94 int hierarchy_id;
95
Paul Menageddbcc7e2007-10-18 23:39:30 -070096 /* The bitmask of subsystems currently attached to this hierarchy */
97 unsigned long actual_subsys_bits;
98
99 /* A list running through the attached subsystems */
100 struct list_head subsys_list;
101
102 /* The root cgroup for this hierarchy */
103 struct cgroup top_cgroup;
104
105 /* Tracks how many cgroups are currently defined in hierarchy.*/
106 int number_of_cgroups;
107
Li Zefane5f6a862009-01-07 18:07:41 -0800108 /* A list running through the active hierarchies */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700109 struct list_head root_list;
110
111 /* Hierarchy-specific flags */
112 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700113
Paul Menagee788e062008-07-25 01:46:59 -0700114 /* The path to use for release notifications. */
Paul Menage81a6a5c2007-10-18 23:39:38 -0700115 char release_agent_path[PATH_MAX];
Paul Menagec6d57f32009-09-23 15:56:19 -0700116
117 /* The name for this hierarchy - may be empty */
118 char name[MAX_CGROUP_ROOT_NAMELEN];
Paul Menageddbcc7e2007-10-18 23:39:30 -0700119};
120
Paul Menageddbcc7e2007-10-18 23:39:30 -0700121/*
122 * The "rootnode" hierarchy is the "dummy hierarchy", reserved for the
123 * subsystems that are otherwise unattached - it never has more than a
124 * single cgroup, and all tasks are part of that cgroup.
125 */
126static struct cgroupfs_root rootnode;
127
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700128/*
129 * CSS ID -- ID per subsys's Cgroup Subsys State(CSS). used only when
130 * cgroup_subsys->use_id != 0.
131 */
132#define CSS_ID_MAX (65535)
133struct css_id {
134 /*
135 * The css to which this ID points. This pointer is set to valid value
136 * after cgroup is populated. If cgroup is removed, this will be NULL.
137 * This pointer is expected to be RCU-safe because destroy()
138 * is called after synchronize_rcu(). But for safe use, css_is_removed()
139 * css_tryget() should be used for avoiding race.
140 */
Arnd Bergmann2c392b82010-02-24 19:41:39 +0100141 struct cgroup_subsys_state __rcu *css;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700142 /*
143 * ID of this css.
144 */
145 unsigned short id;
146 /*
147 * Depth in hierarchy which this ID belongs to.
148 */
149 unsigned short depth;
150 /*
151 * ID is freed by RCU. (and lookup routine is RCU safe.)
152 */
153 struct rcu_head rcu_head;
154 /*
155 * Hierarchy of CSS ID belongs to.
156 */
157 unsigned short stack[0]; /* Array of Length (depth+1) */
158};
159
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800160/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300161 * cgroup_event represents events which userspace want to receive.
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800162 */
163struct cgroup_event {
164 /*
165 * Cgroup which the event belongs to.
166 */
167 struct cgroup *cgrp;
168 /*
169 * Control file which the event associated.
170 */
171 struct cftype *cft;
172 /*
173 * eventfd to signal userspace about the event.
174 */
175 struct eventfd_ctx *eventfd;
176 /*
177 * Each of these stored in a list by the cgroup.
178 */
179 struct list_head list;
180 /*
181 * All fields below needed to unregister event when
182 * userspace closes eventfd.
183 */
184 poll_table pt;
185 wait_queue_head_t *wqh;
186 wait_queue_t wait;
187 struct work_struct remove;
188};
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700189
Paul Menageddbcc7e2007-10-18 23:39:30 -0700190/* The list of hierarchy roots */
191
192static LIST_HEAD(roots);
Paul Menage817929e2007-10-18 23:39:36 -0700193static int root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700194
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700195static DEFINE_IDA(hierarchy_ida);
196static int next_hierarchy_id;
197static DEFINE_SPINLOCK(hierarchy_id_lock);
198
Paul Menageddbcc7e2007-10-18 23:39:30 -0700199/* dummytop is a shorthand for the dummy hierarchy's top cgroup */
200#define dummytop (&rootnode.top_cgroup)
201
202/* This flag indicates whether tasks in the fork and exit paths should
Li Zefana043e3b2008-02-23 15:24:09 -0800203 * check for fork/exit handlers to call. This avoids us having to do
204 * extra work in the fork/exit path if none of the subsystems need to
205 * be called.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700206 */
Li Zefan8947f9d2008-07-25 01:46:56 -0700207static int need_forkexit_callback __read_mostly;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700208
Paul E. McKenneyd11c5632010-02-22 17:04:50 -0800209#ifdef CONFIG_PROVE_LOCKING
210int cgroup_lock_is_held(void)
211{
212 return lockdep_is_held(&cgroup_mutex);
213}
214#else /* #ifdef CONFIG_PROVE_LOCKING */
215int cgroup_lock_is_held(void)
216{
217 return mutex_is_locked(&cgroup_mutex);
218}
219#endif /* #else #ifdef CONFIG_PROVE_LOCKING */
220
221EXPORT_SYMBOL_GPL(cgroup_lock_is_held);
222
Paul Menageddbcc7e2007-10-18 23:39:30 -0700223/* convenient tests for these bits */
Paul Menagebd89aab2007-10-18 23:40:44 -0700224inline int cgroup_is_removed(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700225{
Paul Menagebd89aab2007-10-18 23:40:44 -0700226 return test_bit(CGRP_REMOVED, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700227}
228
229/* bits in struct cgroupfs_root flags field */
230enum {
231 ROOT_NOPREFIX, /* mounted subsystems have no named prefix */
232};
233
Adrian Bunke9685a02008-02-07 00:13:46 -0800234static int cgroup_is_releasable(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700235{
236 const int bits =
Paul Menagebd89aab2007-10-18 23:40:44 -0700237 (1 << CGRP_RELEASABLE) |
238 (1 << CGRP_NOTIFY_ON_RELEASE);
239 return (cgrp->flags & bits) == bits;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700240}
241
Adrian Bunke9685a02008-02-07 00:13:46 -0800242static int notify_on_release(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700243{
Paul Menagebd89aab2007-10-18 23:40:44 -0700244 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700245}
246
Daniel Lezcano97978e62010-10-27 15:33:35 -0700247static int clone_children(const struct cgroup *cgrp)
248{
249 return test_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
250}
251
Paul Menageddbcc7e2007-10-18 23:39:30 -0700252/*
253 * for_each_subsys() allows you to iterate on each subsystem attached to
254 * an active hierarchy
255 */
256#define for_each_subsys(_root, _ss) \
257list_for_each_entry(_ss, &_root->subsys_list, sibling)
258
Li Zefane5f6a862009-01-07 18:07:41 -0800259/* for_each_active_root() allows you to iterate across the active hierarchies */
260#define for_each_active_root(_root) \
Paul Menageddbcc7e2007-10-18 23:39:30 -0700261list_for_each_entry(_root, &roots, root_list)
262
Paul Menage81a6a5c2007-10-18 23:39:38 -0700263/* the list of cgroups eligible for automatic release. Protected by
264 * release_list_lock */
265static LIST_HEAD(release_list);
266static DEFINE_SPINLOCK(release_list_lock);
267static void cgroup_release_agent(struct work_struct *work);
268static DECLARE_WORK(release_agent_work, cgroup_release_agent);
Paul Menagebd89aab2007-10-18 23:40:44 -0700269static void check_for_release(struct cgroup *cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700270
Colin Crossdbc38c62010-11-23 21:37:04 -0800271/*
272 * A queue for waiters to do rmdir() cgroup. A tasks will sleep when
273 * cgroup->count == 0 && list_empty(&cgroup->children) && subsys has some
274 * reference to css->refcnt. In general, this refcnt is expected to goes down
275 * to zero, soon.
276 *
277 * CGRP_WAIT_ON_RMDIR flag is set under cgroup's inode->i_mutex;
278 */
279DECLARE_WAIT_QUEUE_HEAD(cgroup_rmdir_waitq);
280
281static void cgroup_wakeup_rmdir_waiter(struct cgroup *cgrp)
282{
283 if (unlikely(test_and_clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags)))
284 wake_up_all(&cgroup_rmdir_waitq);
285}
286
287void cgroup_exclude_rmdir(struct cgroup_subsys_state *css)
288{
289 css_get(css);
290}
291
292void cgroup_release_and_wakeup_rmdir(struct cgroup_subsys_state *css)
293{
294 cgroup_wakeup_rmdir_waiter(css->cgroup);
295 css_put(css);
296}
297
Paul Menage817929e2007-10-18 23:39:36 -0700298/* Link structure for associating css_set objects with cgroups */
299struct cg_cgroup_link {
300 /*
301 * List running through cg_cgroup_links associated with a
302 * cgroup, anchored on cgroup->css_sets
303 */
Paul Menagebd89aab2007-10-18 23:40:44 -0700304 struct list_head cgrp_link_list;
Paul Menage7717f7b2009-09-23 15:56:22 -0700305 struct cgroup *cgrp;
Paul Menage817929e2007-10-18 23:39:36 -0700306 /*
307 * List running through cg_cgroup_links pointing at a
308 * single css_set object, anchored on css_set->cg_links
309 */
310 struct list_head cg_link_list;
311 struct css_set *cg;
312};
313
314/* The default css_set - used by init and its children prior to any
315 * hierarchies being mounted. It contains a pointer to the root state
316 * for each subsystem. Also used to anchor the list of css_sets. Not
317 * reference-counted, to improve performance when child cgroups
318 * haven't been created.
319 */
320
321static struct css_set init_css_set;
322static struct cg_cgroup_link init_css_set_link;
323
Ben Blume6a11052010-03-10 15:22:09 -0800324static int cgroup_init_idr(struct cgroup_subsys *ss,
325 struct cgroup_subsys_state *css);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700326
Paul Menage817929e2007-10-18 23:39:36 -0700327/* css_set_lock protects the list of css_set objects, and the
328 * chain of tasks off each css_set. Nests outside task->alloc_lock
329 * due to cgroup_iter_start() */
330static DEFINE_RWLOCK(css_set_lock);
331static int css_set_count;
332
Paul Menage7717f7b2009-09-23 15:56:22 -0700333/*
334 * hash table for cgroup groups. This improves the performance to find
335 * an existing css_set. This hash doesn't (currently) take into
336 * account cgroups in empty hierarchies.
337 */
Li Zefan472b1052008-04-29 01:00:11 -0700338#define CSS_SET_HASH_BITS 7
339#define CSS_SET_TABLE_SIZE (1 << CSS_SET_HASH_BITS)
340static struct hlist_head css_set_table[CSS_SET_TABLE_SIZE];
341
342static struct hlist_head *css_set_hash(struct cgroup_subsys_state *css[])
343{
344 int i;
345 int index;
346 unsigned long tmp = 0UL;
347
348 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++)
349 tmp += (unsigned long)css[i];
350 tmp = (tmp >> 16) ^ tmp;
351
352 index = hash_long(tmp, CSS_SET_HASH_BITS);
353
354 return &css_set_table[index];
355}
356
Colin Crossdbc38c62010-11-23 21:37:04 -0800357static void free_css_set_work(struct work_struct *work)
358{
359 struct css_set *cg = container_of(work, struct css_set, work);
360 struct cg_cgroup_link *link;
361 struct cg_cgroup_link *saved_link;
362
363 write_lock(&css_set_lock);
364 list_for_each_entry_safe(link, saved_link, &cg->cg_links,
365 cg_link_list) {
366 struct cgroup *cgrp = link->cgrp;
367 list_del(&link->cg_link_list);
368 list_del(&link->cgrp_link_list);
369 if (atomic_dec_and_test(&cgrp->count)) {
370 check_for_release(cgrp);
371 cgroup_wakeup_rmdir_waiter(cgrp);
372 }
373 kfree(link);
374 }
375 write_unlock(&css_set_lock);
376
377 kfree(cg);
378}
379
380static void free_css_set_rcu(struct rcu_head *obj)
381{
382 struct css_set *cg = container_of(obj, struct css_set, rcu_head);
383
384 INIT_WORK(&cg->work, free_css_set_work);
385 schedule_work(&cg->work);
386}
387
Paul Menage817929e2007-10-18 23:39:36 -0700388/* We don't maintain the lists running through each css_set to its
389 * task until after the first call to cgroup_iter_start(). This
390 * reduces the fork()/exit() overhead for people who have cgroups
391 * compiled into their kernel but not actually in use */
Li Zefan8947f9d2008-07-25 01:46:56 -0700392static int use_task_css_set_links __read_mostly;
Paul Menage817929e2007-10-18 23:39:36 -0700393
Colin Cross6d51e762010-11-23 21:37:03 -0800394/*
395 * refcounted get/put for css_set objects
396 */
397static inline void get_css_set(struct css_set *cg)
398{
399 atomic_inc(&cg->refcount);
400}
401
402static void put_css_set(struct css_set *cg)
Paul Menageb4f48b62007-10-18 23:39:33 -0700403{
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700404 /*
405 * Ensure that the refcount doesn't hit zero while any readers
406 * can see it. Similar to atomic_dec_and_lock(), but for an
407 * rwlock
408 */
409 if (atomic_add_unless(&cg->refcount, -1, 1))
410 return;
411 write_lock(&css_set_lock);
412 if (!atomic_dec_and_test(&cg->refcount)) {
413 write_unlock(&css_set_lock);
414 return;
415 }
Paul Menage81a6a5c2007-10-18 23:39:38 -0700416
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700417 hlist_del(&cg->hlist);
418 css_set_count--;
419
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700420 write_unlock(&css_set_lock);
Colin Crossdbc38c62010-11-23 21:37:04 -0800421 call_rcu(&cg->rcu_head, free_css_set_rcu);
Paul Menage817929e2007-10-18 23:39:36 -0700422}
423
424/*
Paul Menage7717f7b2009-09-23 15:56:22 -0700425 * compare_css_sets - helper function for find_existing_css_set().
426 * @cg: candidate css_set being tested
427 * @old_cg: existing css_set for a task
428 * @new_cgrp: cgroup that's being entered by the task
429 * @template: desired set of css pointers in css_set (pre-calculated)
430 *
431 * Returns true if "cg" matches "old_cg" except for the hierarchy
432 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
433 */
434static bool compare_css_sets(struct css_set *cg,
435 struct css_set *old_cg,
436 struct cgroup *new_cgrp,
437 struct cgroup_subsys_state *template[])
438{
439 struct list_head *l1, *l2;
440
441 if (memcmp(template, cg->subsys, sizeof(cg->subsys))) {
442 /* Not all subsystems matched */
443 return false;
444 }
445
446 /*
447 * Compare cgroup pointers in order to distinguish between
448 * different cgroups in heirarchies with no subsystems. We
449 * could get by with just this check alone (and skip the
450 * memcmp above) but on most setups the memcmp check will
451 * avoid the need for this more expensive check on almost all
452 * candidates.
453 */
454
455 l1 = &cg->cg_links;
456 l2 = &old_cg->cg_links;
457 while (1) {
458 struct cg_cgroup_link *cgl1, *cgl2;
459 struct cgroup *cg1, *cg2;
460
461 l1 = l1->next;
462 l2 = l2->next;
463 /* See if we reached the end - both lists are equal length. */
464 if (l1 == &cg->cg_links) {
465 BUG_ON(l2 != &old_cg->cg_links);
466 break;
467 } else {
468 BUG_ON(l2 == &old_cg->cg_links);
469 }
470 /* Locate the cgroups associated with these links. */
471 cgl1 = list_entry(l1, struct cg_cgroup_link, cg_link_list);
472 cgl2 = list_entry(l2, struct cg_cgroup_link, cg_link_list);
473 cg1 = cgl1->cgrp;
474 cg2 = cgl2->cgrp;
475 /* Hierarchies should be linked in the same order. */
476 BUG_ON(cg1->root != cg2->root);
477
478 /*
479 * If this hierarchy is the hierarchy of the cgroup
480 * that's changing, then we need to check that this
481 * css_set points to the new cgroup; if it's any other
482 * hierarchy, then this css_set should point to the
483 * same cgroup as the old css_set.
484 */
485 if (cg1->root == new_cgrp->root) {
486 if (cg1 != new_cgrp)
487 return false;
488 } else {
489 if (cg1 != cg2)
490 return false;
491 }
492 }
493 return true;
494}
495
496/*
Paul Menage817929e2007-10-18 23:39:36 -0700497 * find_existing_css_set() is a helper for
498 * find_css_set(), and checks to see whether an existing
Li Zefan472b1052008-04-29 01:00:11 -0700499 * css_set is suitable.
Paul Menage817929e2007-10-18 23:39:36 -0700500 *
501 * oldcg: the cgroup group that we're using before the cgroup
502 * transition
503 *
Paul Menagebd89aab2007-10-18 23:40:44 -0700504 * cgrp: the cgroup that we're moving into
Paul Menage817929e2007-10-18 23:39:36 -0700505 *
506 * template: location in which to build the desired set of subsystem
507 * state objects for the new cgroup group
508 */
Paul Menage817929e2007-10-18 23:39:36 -0700509static struct css_set *find_existing_css_set(
510 struct css_set *oldcg,
Paul Menagebd89aab2007-10-18 23:40:44 -0700511 struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -0700512 struct cgroup_subsys_state *template[])
513{
514 int i;
Paul Menagebd89aab2007-10-18 23:40:44 -0700515 struct cgroupfs_root *root = cgrp->root;
Li Zefan472b1052008-04-29 01:00:11 -0700516 struct hlist_head *hhead;
517 struct hlist_node *node;
518 struct css_set *cg;
Paul Menage817929e2007-10-18 23:39:36 -0700519
Ben Blumaae8aab2010-03-10 15:22:07 -0800520 /*
521 * Build the set of subsystem state objects that we want to see in the
522 * new css_set. while subsystems can change globally, the entries here
523 * won't change, so no need for locking.
524 */
Paul Menage817929e2007-10-18 23:39:36 -0700525 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Li Zefan8d53d552008-02-23 15:24:11 -0800526 if (root->subsys_bits & (1UL << i)) {
Paul Menage817929e2007-10-18 23:39:36 -0700527 /* Subsystem is in this hierarchy. So we want
528 * the subsystem state from the new
529 * cgroup */
Paul Menagebd89aab2007-10-18 23:40:44 -0700530 template[i] = cgrp->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700531 } else {
532 /* Subsystem is not in this hierarchy, so we
533 * don't want to change the subsystem state */
534 template[i] = oldcg->subsys[i];
535 }
536 }
537
Li Zefan472b1052008-04-29 01:00:11 -0700538 hhead = css_set_hash(template);
539 hlist_for_each_entry(cg, node, hhead, hlist) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700540 if (!compare_css_sets(cg, oldcg, cgrp, template))
541 continue;
542
543 /* This css_set matches what we need */
544 return cg;
Li Zefan472b1052008-04-29 01:00:11 -0700545 }
Paul Menage817929e2007-10-18 23:39:36 -0700546
547 /* No existing cgroup group matched */
548 return NULL;
549}
550
Paul Menage817929e2007-10-18 23:39:36 -0700551static void free_cg_links(struct list_head *tmp)
552{
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700553 struct cg_cgroup_link *link;
554 struct cg_cgroup_link *saved_link;
555
556 list_for_each_entry_safe(link, saved_link, tmp, cgrp_link_list) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700557 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -0700558 kfree(link);
559 }
560}
561
562/*
Li Zefan36553432008-07-29 22:33:19 -0700563 * allocate_cg_links() allocates "count" cg_cgroup_link structures
564 * and chains them on tmp through their cgrp_link_list fields. Returns 0 on
565 * success or a negative error
566 */
567static int allocate_cg_links(int count, struct list_head *tmp)
568{
569 struct cg_cgroup_link *link;
570 int i;
571 INIT_LIST_HEAD(tmp);
572 for (i = 0; i < count; i++) {
573 link = kmalloc(sizeof(*link), GFP_KERNEL);
574 if (!link) {
575 free_cg_links(tmp);
576 return -ENOMEM;
577 }
578 list_add(&link->cgrp_link_list, tmp);
579 }
580 return 0;
581}
582
Li Zefanc12f65d2009-01-07 18:07:42 -0800583/**
584 * link_css_set - a helper function to link a css_set to a cgroup
585 * @tmp_cg_links: cg_cgroup_link objects allocated by allocate_cg_links()
586 * @cg: the css_set to be linked
587 * @cgrp: the destination cgroup
588 */
589static void link_css_set(struct list_head *tmp_cg_links,
590 struct css_set *cg, struct cgroup *cgrp)
591{
592 struct cg_cgroup_link *link;
593
594 BUG_ON(list_empty(tmp_cg_links));
595 link = list_first_entry(tmp_cg_links, struct cg_cgroup_link,
596 cgrp_link_list);
597 link->cg = cg;
Paul Menage7717f7b2009-09-23 15:56:22 -0700598 link->cgrp = cgrp;
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700599 atomic_inc(&cgrp->count);
Li Zefanc12f65d2009-01-07 18:07:42 -0800600 list_move(&link->cgrp_link_list, &cgrp->css_sets);
Paul Menage7717f7b2009-09-23 15:56:22 -0700601 /*
602 * Always add links to the tail of the list so that the list
603 * is sorted by order of hierarchy creation
604 */
605 list_add_tail(&link->cg_link_list, &cg->cg_links);
Li Zefanc12f65d2009-01-07 18:07:42 -0800606}
607
Li Zefan36553432008-07-29 22:33:19 -0700608/*
Paul Menage817929e2007-10-18 23:39:36 -0700609 * find_css_set() takes an existing cgroup group and a
610 * cgroup object, and returns a css_set object that's
611 * equivalent to the old group, but with the given cgroup
612 * substituted into the appropriate hierarchy. Must be called with
613 * cgroup_mutex held
614 */
Paul Menage817929e2007-10-18 23:39:36 -0700615static struct css_set *find_css_set(
Paul Menagebd89aab2007-10-18 23:40:44 -0700616 struct css_set *oldcg, struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700617{
618 struct css_set *res;
619 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT];
Paul Menage817929e2007-10-18 23:39:36 -0700620
621 struct list_head tmp_cg_links;
Paul Menage817929e2007-10-18 23:39:36 -0700622
Li Zefan472b1052008-04-29 01:00:11 -0700623 struct hlist_head *hhead;
Paul Menage7717f7b2009-09-23 15:56:22 -0700624 struct cg_cgroup_link *link;
Li Zefan472b1052008-04-29 01:00:11 -0700625
Paul Menage817929e2007-10-18 23:39:36 -0700626 /* First see if we already have a cgroup group that matches
627 * the desired set */
Li Zefan7e9abd82008-07-25 01:46:54 -0700628 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -0700629 res = find_existing_css_set(oldcg, cgrp, template);
Paul Menage817929e2007-10-18 23:39:36 -0700630 if (res)
631 get_css_set(res);
Li Zefan7e9abd82008-07-25 01:46:54 -0700632 read_unlock(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -0700633
634 if (res)
635 return res;
636
637 res = kmalloc(sizeof(*res), GFP_KERNEL);
638 if (!res)
639 return NULL;
640
641 /* Allocate all the cg_cgroup_link objects that we'll need */
642 if (allocate_cg_links(root_count, &tmp_cg_links) < 0) {
643 kfree(res);
644 return NULL;
645 }
646
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700647 atomic_set(&res->refcount, 1);
Paul Menage817929e2007-10-18 23:39:36 -0700648 INIT_LIST_HEAD(&res->cg_links);
649 INIT_LIST_HEAD(&res->tasks);
Li Zefan472b1052008-04-29 01:00:11 -0700650 INIT_HLIST_NODE(&res->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700651
652 /* Copy the set of subsystem state objects generated in
653 * find_existing_css_set() */
654 memcpy(res->subsys, template, sizeof(res->subsys));
655
656 write_lock(&css_set_lock);
657 /* Add reference counts and links from the new css_set. */
Paul Menage7717f7b2009-09-23 15:56:22 -0700658 list_for_each_entry(link, &oldcg->cg_links, cg_link_list) {
659 struct cgroup *c = link->cgrp;
660 if (c->root == cgrp->root)
661 c = cgrp;
662 link_css_set(&tmp_cg_links, res, c);
663 }
Paul Menage817929e2007-10-18 23:39:36 -0700664
665 BUG_ON(!list_empty(&tmp_cg_links));
666
Paul Menage817929e2007-10-18 23:39:36 -0700667 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -0700668
669 /* Add this cgroup group to the hash table */
670 hhead = css_set_hash(res->subsys);
671 hlist_add_head(&res->hlist, hhead);
672
Paul Menage817929e2007-10-18 23:39:36 -0700673 write_unlock(&css_set_lock);
674
675 return res;
Paul Menageb4f48b62007-10-18 23:39:33 -0700676}
677
Paul Menageddbcc7e2007-10-18 23:39:30 -0700678/*
Paul Menage7717f7b2009-09-23 15:56:22 -0700679 * Return the cgroup for "task" from the given hierarchy. Must be
680 * called with cgroup_mutex held.
681 */
682static struct cgroup *task_cgroup_from_root(struct task_struct *task,
683 struct cgroupfs_root *root)
684{
685 struct css_set *css;
686 struct cgroup *res = NULL;
687
688 BUG_ON(!mutex_is_locked(&cgroup_mutex));
689 read_lock(&css_set_lock);
690 /*
691 * No need to lock the task - since we hold cgroup_mutex the
692 * task can't change groups, so the only thing that can happen
693 * is that it exits and its css is set back to init_css_set.
694 */
695 css = task->cgroups;
696 if (css == &init_css_set) {
697 res = &root->top_cgroup;
698 } else {
699 struct cg_cgroup_link *link;
700 list_for_each_entry(link, &css->cg_links, cg_link_list) {
701 struct cgroup *c = link->cgrp;
702 if (c->root == root) {
703 res = c;
704 break;
705 }
706 }
707 }
708 read_unlock(&css_set_lock);
709 BUG_ON(!res);
710 return res;
711}
712
713/*
Paul Menageddbcc7e2007-10-18 23:39:30 -0700714 * There is one global cgroup mutex. We also require taking
715 * task_lock() when dereferencing a task's cgroup subsys pointers.
716 * See "The task_lock() exception", at the end of this comment.
717 *
718 * A task must hold cgroup_mutex to modify cgroups.
719 *
720 * Any task can increment and decrement the count field without lock.
721 * So in general, code holding cgroup_mutex can't rely on the count
722 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -0800723 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -0700724 * means that no tasks are currently attached, therefore there is no
725 * way a task attached to that cgroup can fork (the other way to
726 * increment the count). So code holding cgroup_mutex can safely
727 * assume that if the count is zero, it will stay zero. Similarly, if
728 * a task holds cgroup_mutex on a cgroup with zero count, it
729 * knows that the cgroup won't be removed, as cgroup_rmdir()
730 * needs that mutex.
731 *
Paul Menageddbcc7e2007-10-18 23:39:30 -0700732 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
733 * (usually) take cgroup_mutex. These are the two most performance
734 * critical pieces of code here. The exception occurs on cgroup_exit(),
735 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
736 * is taken, and if the cgroup count is zero, a usermode call made
Li Zefana043e3b2008-02-23 15:24:09 -0800737 * to the release agent with the name of the cgroup (path relative to
738 * the root of cgroup file system) as the argument.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700739 *
740 * A cgroup can only be deleted if both its 'count' of using tasks
741 * is zero, and its list of 'children' cgroups is empty. Since all
742 * tasks in the system use _some_ cgroup, and since there is always at
743 * least one task in the system (init, pid == 1), therefore, top_cgroup
744 * always has either children cgroups and/or using tasks. So we don't
745 * need a special hack to ensure that top_cgroup cannot be deleted.
746 *
747 * The task_lock() exception
748 *
749 * The need for this exception arises from the action of
Cliff Wickman956db3c2008-02-07 00:14:43 -0800750 * cgroup_attach_task(), which overwrites one tasks cgroup pointer with
Li Zefana043e3b2008-02-23 15:24:09 -0800751 * another. It does so using cgroup_mutex, however there are
Paul Menageddbcc7e2007-10-18 23:39:30 -0700752 * several performance critical places that need to reference
Colin Crossdbc38c62010-11-23 21:37:04 -0800753 * task->cgroups without the expense of grabbing a system global
Paul Menageddbcc7e2007-10-18 23:39:30 -0700754 * mutex. Therefore except as noted below, when dereferencing or, as
Colin Crossdbc38c62010-11-23 21:37:04 -0800755 * in cgroup_attach_task(), modifying a task's cgroups pointer we use
Paul Menageddbcc7e2007-10-18 23:39:30 -0700756 * task_lock(), which acts on a spinlock (task->alloc_lock) already in
757 * the task_struct routinely used for such matters.
758 *
759 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -0800760 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700761 */
762
Paul Menageddbcc7e2007-10-18 23:39:30 -0700763/**
764 * cgroup_lock - lock out any changes to cgroup structures
765 *
766 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700767void cgroup_lock(void)
768{
769 mutex_lock(&cgroup_mutex);
770}
Ben Blum67523c42010-03-10 15:22:11 -0800771EXPORT_SYMBOL_GPL(cgroup_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700772
773/**
774 * cgroup_unlock - release lock on cgroup changes
775 *
776 * Undo the lock taken in a previous cgroup_lock() call.
777 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700778void cgroup_unlock(void)
779{
780 mutex_unlock(&cgroup_mutex);
781}
Ben Blum67523c42010-03-10 15:22:11 -0800782EXPORT_SYMBOL_GPL(cgroup_unlock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700783
784/*
785 * A couple of forward declarations required, due to cyclic reference loop:
786 * cgroup_mkdir -> cgroup_create -> cgroup_populate_dir ->
787 * cgroup_add_file -> cgroup_create_file -> cgroup_dir_inode_operations
788 * -> cgroup_mkdir.
789 */
790
791static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode);
Al Viroc72a04e2011-01-14 05:31:45 +0000792static struct dentry *cgroup_lookup(struct inode *, struct dentry *, struct nameidata *);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700793static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -0700794static int cgroup_populate_dir(struct cgroup *cgrp);
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -0700795static const struct inode_operations cgroup_dir_inode_operations;
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700796static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -0700797
798static struct backing_dev_info cgroup_backing_dev_info = {
Jens Axboed9938312009-06-12 14:45:52 +0200799 .name = "cgroup",
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700800 .capabilities = BDI_CAP_NO_ACCT_AND_WRITEBACK,
Paul Menagea4243162007-10-18 23:39:35 -0700801};
Paul Menageddbcc7e2007-10-18 23:39:30 -0700802
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700803static int alloc_css_id(struct cgroup_subsys *ss,
804 struct cgroup *parent, struct cgroup *child);
805
Paul Menageddbcc7e2007-10-18 23:39:30 -0700806static struct inode *cgroup_new_inode(mode_t mode, struct super_block *sb)
807{
808 struct inode *inode = new_inode(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700809
810 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400811 inode->i_ino = get_next_ino();
Paul Menageddbcc7e2007-10-18 23:39:30 -0700812 inode->i_mode = mode;
David Howells76aac0e2008-11-14 10:39:12 +1100813 inode->i_uid = current_fsuid();
814 inode->i_gid = current_fsgid();
Paul Menageddbcc7e2007-10-18 23:39:30 -0700815 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
816 inode->i_mapping->backing_dev_info = &cgroup_backing_dev_info;
817 }
818 return inode;
819}
820
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800821/*
822 * Call subsys's pre_destroy handler.
823 * This is called before css refcnt check.
824 */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700825static int cgroup_call_pre_destroy(struct cgroup *cgrp)
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800826{
827 struct cgroup_subsys *ss;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700828 int ret = 0;
829
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800830 for_each_subsys(cgrp->root, ss)
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700831 if (ss->pre_destroy) {
832 ret = ss->pre_destroy(ss, cgrp);
833 if (ret)
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -0800834 break;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700835 }
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800836
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700837 return ret;
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800838}
839
Paul Menageddbcc7e2007-10-18 23:39:30 -0700840static void cgroup_diput(struct dentry *dentry, struct inode *inode)
841{
842 /* is dentry a directory ? if so, kfree() associated cgroup */
843 if (S_ISDIR(inode->i_mode)) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700844 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800845 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -0700846 BUG_ON(!(cgroup_is_removed(cgrp)));
Paul Menage81a6a5c2007-10-18 23:39:38 -0700847 /* It's possible for external users to be holding css
848 * reference counts on a cgroup; css_put() needs to
849 * be able to access the cgroup after decrementing
850 * the reference count in order to know if it needs to
851 * queue the cgroup to be handled by the release
852 * agent */
853 synchronize_rcu();
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800854
855 mutex_lock(&cgroup_mutex);
856 /*
857 * Release the subsystem state objects.
858 */
Li Zefan75139b82009-01-07 18:07:33 -0800859 for_each_subsys(cgrp->root, ss)
860 ss->destroy(ss, cgrp);
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800861
862 cgrp->root->number_of_cgroups--;
863 mutex_unlock(&cgroup_mutex);
864
Paul Menagea47295e2009-01-07 18:07:44 -0800865 /*
866 * Drop the active superblock reference that we took when we
867 * created the cgroup
868 */
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800869 deactivate_super(cgrp->root->sb);
870
Ben Blum72a8cb32009-09-23 15:56:27 -0700871 /*
872 * if we're getting rid of the cgroup, refcount should ensure
873 * that there are no pidlists left.
874 */
875 BUG_ON(!list_empty(&cgrp->pidlists));
876
Lai Jiangshanf2da1c42011-03-15 17:55:16 +0800877 kfree_rcu(cgrp, rcu_head);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700878 }
879 iput(inode);
880}
881
Al Viroc72a04e2011-01-14 05:31:45 +0000882static int cgroup_delete(const struct dentry *d)
883{
884 return 1;
885}
886
Paul Menageddbcc7e2007-10-18 23:39:30 -0700887static void remove_dir(struct dentry *d)
888{
889 struct dentry *parent = dget(d->d_parent);
890
891 d_delete(d);
892 simple_rmdir(parent->d_inode, d);
893 dput(parent);
894}
895
896static void cgroup_clear_directory(struct dentry *dentry)
897{
898 struct list_head *node;
899
900 BUG_ON(!mutex_is_locked(&dentry->d_inode->i_mutex));
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100901 spin_lock(&dentry->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700902 node = dentry->d_subdirs.next;
903 while (node != &dentry->d_subdirs) {
904 struct dentry *d = list_entry(node, struct dentry, d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100905
906 spin_lock_nested(&d->d_lock, DENTRY_D_LOCK_NESTED);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700907 list_del_init(node);
908 if (d->d_inode) {
909 /* This should never be called on a cgroup
910 * directory with child cgroups */
911 BUG_ON(d->d_inode->i_mode & S_IFDIR);
Nick Piggindc0474b2011-01-07 17:49:43 +1100912 dget_dlock(d);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100913 spin_unlock(&d->d_lock);
914 spin_unlock(&dentry->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700915 d_delete(d);
916 simple_unlink(dentry->d_inode, d);
917 dput(d);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100918 spin_lock(&dentry->d_lock);
919 } else
920 spin_unlock(&d->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700921 node = dentry->d_subdirs.next;
922 }
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100923 spin_unlock(&dentry->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700924}
925
926/*
927 * NOTE : the dentry must have been dget()'ed
928 */
929static void cgroup_d_remove_dir(struct dentry *dentry)
930{
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100931 struct dentry *parent;
932
Paul Menageddbcc7e2007-10-18 23:39:30 -0700933 cgroup_clear_directory(dentry);
934
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100935 parent = dentry->d_parent;
936 spin_lock(&parent->d_lock);
Li Zefan3ec762a2011-01-14 11:34:34 +0800937 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700938 list_del_init(&dentry->d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100939 spin_unlock(&dentry->d_lock);
940 spin_unlock(&parent->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700941 remove_dir(dentry);
942}
943
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700944/*
Ben Blumcf5d5942010-03-10 15:22:09 -0800945 * Call with cgroup_mutex held. Drops reference counts on modules, including
946 * any duplicate ones that parse_cgroupfs_options took. If this function
947 * returns an error, no reference counts are touched.
Ben Blumaae8aab2010-03-10 15:22:07 -0800948 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700949static int rebind_subsystems(struct cgroupfs_root *root,
950 unsigned long final_bits)
951{
952 unsigned long added_bits, removed_bits;
Paul Menagebd89aab2007-10-18 23:40:44 -0700953 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700954 int i;
955
Ben Blumaae8aab2010-03-10 15:22:07 -0800956 BUG_ON(!mutex_is_locked(&cgroup_mutex));
957
Paul Menageddbcc7e2007-10-18 23:39:30 -0700958 removed_bits = root->actual_subsys_bits & ~final_bits;
959 added_bits = final_bits & ~root->actual_subsys_bits;
960 /* Check that any added subsystems are currently free */
961 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Li Zefan8d53d552008-02-23 15:24:11 -0800962 unsigned long bit = 1UL << i;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700963 struct cgroup_subsys *ss = subsys[i];
964 if (!(bit & added_bits))
965 continue;
Ben Blumaae8aab2010-03-10 15:22:07 -0800966 /*
967 * Nobody should tell us to do a subsys that doesn't exist:
968 * parse_cgroupfs_options should catch that case and refcounts
969 * ensure that subsystems won't disappear once selected.
970 */
971 BUG_ON(ss == NULL);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700972 if (ss->root != &rootnode) {
973 /* Subsystem isn't free */
974 return -EBUSY;
975 }
976 }
977
978 /* Currently we don't handle adding/removing subsystems when
979 * any child cgroups exist. This is theoretically supportable
980 * but involves complex error handling, so it's being left until
981 * later */
Paul Menage307257c2008-12-15 13:54:22 -0800982 if (root->number_of_cgroups > 1)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700983 return -EBUSY;
984
985 /* Process each subsystem */
986 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
987 struct cgroup_subsys *ss = subsys[i];
988 unsigned long bit = 1UL << i;
989 if (bit & added_bits) {
990 /* We're binding this subsystem to this hierarchy */
Ben Blumaae8aab2010-03-10 15:22:07 -0800991 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -0700992 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700993 BUG_ON(!dummytop->subsys[i]);
994 BUG_ON(dummytop->subsys[i]->cgroup != dummytop);
Paul Menage999cd8a2009-01-07 18:08:36 -0800995 mutex_lock(&ss->hierarchy_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -0700996 cgrp->subsys[i] = dummytop->subsys[i];
997 cgrp->subsys[i]->cgroup = cgrp;
Li Zefan33a68ac2009-01-07 18:07:42 -0800998 list_move(&ss->sibling, &root->subsys_list);
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -0800999 ss->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001000 if (ss->bind)
Paul Menagebd89aab2007-10-18 23:40:44 -07001001 ss->bind(ss, cgrp);
Paul Menage999cd8a2009-01-07 18:08:36 -08001002 mutex_unlock(&ss->hierarchy_mutex);
Ben Blumcf5d5942010-03-10 15:22:09 -08001003 /* refcount was already taken, and we're keeping it */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001004 } else if (bit & removed_bits) {
1005 /* We're removing this subsystem */
Ben Blumaae8aab2010-03-10 15:22:07 -08001006 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001007 BUG_ON(cgrp->subsys[i] != dummytop->subsys[i]);
1008 BUG_ON(cgrp->subsys[i]->cgroup != cgrp);
Paul Menage999cd8a2009-01-07 18:08:36 -08001009 mutex_lock(&ss->hierarchy_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001010 if (ss->bind)
1011 ss->bind(ss, dummytop);
1012 dummytop->subsys[i]->cgroup = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -07001013 cgrp->subsys[i] = NULL;
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001014 subsys[i]->root = &rootnode;
Li Zefan33a68ac2009-01-07 18:07:42 -08001015 list_move(&ss->sibling, &rootnode.subsys_list);
Paul Menage999cd8a2009-01-07 18:08:36 -08001016 mutex_unlock(&ss->hierarchy_mutex);
Ben Blumcf5d5942010-03-10 15:22:09 -08001017 /* subsystem is now free - drop reference on module */
1018 module_put(ss->module);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001019 } else if (bit & final_bits) {
1020 /* Subsystem state should already exist */
Ben Blumaae8aab2010-03-10 15:22:07 -08001021 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001022 BUG_ON(!cgrp->subsys[i]);
Ben Blumcf5d5942010-03-10 15:22:09 -08001023 /*
1024 * a refcount was taken, but we already had one, so
1025 * drop the extra reference.
1026 */
1027 module_put(ss->module);
1028#ifdef CONFIG_MODULE_UNLOAD
1029 BUG_ON(ss->module && !module_refcount(ss->module));
1030#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001031 } else {
1032 /* Subsystem state shouldn't exist */
Paul Menagebd89aab2007-10-18 23:40:44 -07001033 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001034 }
1035 }
1036 root->subsys_bits = root->actual_subsys_bits = final_bits;
1037 synchronize_rcu();
1038
1039 return 0;
1040}
1041
1042static int cgroup_show_options(struct seq_file *seq, struct vfsmount *vfs)
1043{
1044 struct cgroupfs_root *root = vfs->mnt_sb->s_fs_info;
1045 struct cgroup_subsys *ss;
1046
1047 mutex_lock(&cgroup_mutex);
1048 for_each_subsys(root, ss)
1049 seq_printf(seq, ",%s", ss->name);
1050 if (test_bit(ROOT_NOPREFIX, &root->flags))
1051 seq_puts(seq, ",noprefix");
Paul Menage81a6a5c2007-10-18 23:39:38 -07001052 if (strlen(root->release_agent_path))
1053 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Daniel Lezcano97978e62010-10-27 15:33:35 -07001054 if (clone_children(&root->top_cgroup))
1055 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001056 if (strlen(root->name))
1057 seq_printf(seq, ",name=%s", root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001058 mutex_unlock(&cgroup_mutex);
1059 return 0;
1060}
1061
1062struct cgroup_sb_opts {
1063 unsigned long subsys_bits;
1064 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001065 char *release_agent;
Daniel Lezcano97978e62010-10-27 15:33:35 -07001066 bool clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001067 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001068 /* User explicitly requested empty subsystem */
1069 bool none;
Paul Menagec6d57f32009-09-23 15:56:19 -07001070
1071 struct cgroupfs_root *new_root;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001072
Paul Menageddbcc7e2007-10-18 23:39:30 -07001073};
1074
Ben Blumaae8aab2010-03-10 15:22:07 -08001075/*
1076 * Convert a hierarchy specifier into a bitmask of subsystems and flags. Call
Ben Blumcf5d5942010-03-10 15:22:09 -08001077 * with cgroup_mutex held to protect the subsys[] array. This function takes
1078 * refcounts on subsystems to be used, unless it returns error, in which case
1079 * no refcounts are taken.
Ben Blumaae8aab2010-03-10 15:22:07 -08001080 */
Ben Blumcf5d5942010-03-10 15:22:09 -08001081static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001082{
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001083 char *token, *o = data;
1084 bool all_ss = false, one_ss = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001085 unsigned long mask = (unsigned long)-1;
Ben Blumcf5d5942010-03-10 15:22:09 -08001086 int i;
1087 bool module_pin_failed = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001088
Ben Blumaae8aab2010-03-10 15:22:07 -08001089 BUG_ON(!mutex_is_locked(&cgroup_mutex));
1090
Li Zefanf9ab5b52009-06-17 16:26:33 -07001091#ifdef CONFIG_CPUSETS
1092 mask = ~(1UL << cpuset_subsys_id);
1093#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001094
Paul Menagec6d57f32009-09-23 15:56:19 -07001095 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001096
1097 while ((token = strsep(&o, ",")) != NULL) {
1098 if (!*token)
1099 return -EINVAL;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001100 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001101 /* Explicitly have no subsystems */
1102 opts->none = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001103 continue;
1104 }
1105 if (!strcmp(token, "all")) {
1106 /* Mutually exclusive option 'all' + subsystem name */
1107 if (one_ss)
1108 return -EINVAL;
1109 all_ss = true;
1110 continue;
1111 }
1112 if (!strcmp(token, "noprefix")) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001113 set_bit(ROOT_NOPREFIX, &opts->flags);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001114 continue;
1115 }
1116 if (!strcmp(token, "clone_children")) {
Daniel Lezcano97978e62010-10-27 15:33:35 -07001117 opts->clone_children = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001118 continue;
1119 }
1120 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001121 /* Specifying two release agents is forbidden */
1122 if (opts->release_agent)
1123 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001124 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001125 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001126 if (!opts->release_agent)
1127 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001128 continue;
1129 }
1130 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001131 const char *name = token + 5;
1132 /* Can't specify an empty name */
1133 if (!strlen(name))
1134 return -EINVAL;
1135 /* Must match [\w.-]+ */
1136 for (i = 0; i < strlen(name); i++) {
1137 char c = name[i];
1138 if (isalnum(c))
1139 continue;
1140 if ((c == '.') || (c == '-') || (c == '_'))
1141 continue;
1142 return -EINVAL;
1143 }
1144 /* Specifying two names is forbidden */
1145 if (opts->name)
1146 return -EINVAL;
1147 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001148 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001149 GFP_KERNEL);
1150 if (!opts->name)
1151 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001152
1153 continue;
1154 }
1155
1156 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1157 struct cgroup_subsys *ss = subsys[i];
1158 if (ss == NULL)
1159 continue;
1160 if (strcmp(token, ss->name))
1161 continue;
1162 if (ss->disabled)
1163 continue;
1164
1165 /* Mutually exclusive option 'all' + subsystem name */
1166 if (all_ss)
1167 return -EINVAL;
1168 set_bit(i, &opts->subsys_bits);
1169 one_ss = true;
1170
1171 break;
1172 }
1173 if (i == CGROUP_SUBSYS_COUNT)
1174 return -ENOENT;
1175 }
1176
1177 /*
1178 * If the 'all' option was specified select all the subsystems,
Li Zefan2481cbc2011-12-27 14:25:55 +08001179 * otherwise if 'none', 'name=' and a subsystem name options
1180 * were not specified, let's default to 'all'
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001181 */
Li Zefan2481cbc2011-12-27 14:25:55 +08001182 if (all_ss || (!one_ss && !opts->none && !opts->name)) {
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001183 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1184 struct cgroup_subsys *ss = subsys[i];
1185 if (ss == NULL)
1186 continue;
1187 if (ss->disabled)
1188 continue;
1189 set_bit(i, &opts->subsys_bits);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001190 }
1191 }
1192
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001193 /* Consistency checks */
1194
Li Zefanf9ab5b52009-06-17 16:26:33 -07001195 /*
1196 * Option noprefix was introduced just for backward compatibility
1197 * with the old cpuset, so we allow noprefix only if mounting just
1198 * the cpuset subsystem.
1199 */
1200 if (test_bit(ROOT_NOPREFIX, &opts->flags) &&
1201 (opts->subsys_bits & mask))
1202 return -EINVAL;
1203
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001204
1205 /* Can't specify "none" and some subsystems */
1206 if (opts->subsys_bits && opts->none)
1207 return -EINVAL;
1208
1209 /*
1210 * We either have to specify by name or by subsystems. (So all
1211 * empty hierarchies must have a name).
1212 */
Paul Menagec6d57f32009-09-23 15:56:19 -07001213 if (!opts->subsys_bits && !opts->name)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001214 return -EINVAL;
1215
Ben Blumcf5d5942010-03-10 15:22:09 -08001216 /*
1217 * Grab references on all the modules we'll need, so the subsystems
1218 * don't dance around before rebind_subsystems attaches them. This may
1219 * take duplicate reference counts on a subsystem that's already used,
1220 * but rebind_subsystems handles this case.
1221 */
1222 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
1223 unsigned long bit = 1UL << i;
1224
1225 if (!(bit & opts->subsys_bits))
1226 continue;
1227 if (!try_module_get(subsys[i]->module)) {
1228 module_pin_failed = true;
1229 break;
1230 }
1231 }
1232 if (module_pin_failed) {
1233 /*
1234 * oops, one of the modules was going away. this means that we
1235 * raced with a module_delete call, and to the user this is
1236 * essentially a "subsystem doesn't exist" case.
1237 */
1238 for (i--; i >= CGROUP_BUILTIN_SUBSYS_COUNT; i--) {
1239 /* drop refcounts only on the ones we took */
1240 unsigned long bit = 1UL << i;
1241
1242 if (!(bit & opts->subsys_bits))
1243 continue;
1244 module_put(subsys[i]->module);
1245 }
1246 return -ENOENT;
1247 }
1248
Paul Menageddbcc7e2007-10-18 23:39:30 -07001249 return 0;
1250}
1251
Ben Blumcf5d5942010-03-10 15:22:09 -08001252static void drop_parsed_module_refcounts(unsigned long subsys_bits)
1253{
1254 int i;
1255 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
1256 unsigned long bit = 1UL << i;
1257
1258 if (!(bit & subsys_bits))
1259 continue;
1260 module_put(subsys[i]->module);
1261 }
1262}
1263
Paul Menageddbcc7e2007-10-18 23:39:30 -07001264static int cgroup_remount(struct super_block *sb, int *flags, char *data)
1265{
1266 int ret = 0;
1267 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001268 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001269 struct cgroup_sb_opts opts;
1270
Paul Menagebd89aab2007-10-18 23:40:44 -07001271 mutex_lock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001272 mutex_lock(&cgroup_mutex);
1273
1274 /* See what subsystems are wanted */
1275 ret = parse_cgroupfs_options(data, &opts);
1276 if (ret)
1277 goto out_unlock;
1278
Ben Blumcf5d5942010-03-10 15:22:09 -08001279 /* Don't allow flags or name to change at remount */
1280 if (opts.flags != root->flags ||
1281 (opts.name && strcmp(opts.name, root->name))) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001282 ret = -EINVAL;
Ben Blumcf5d5942010-03-10 15:22:09 -08001283 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menagec6d57f32009-09-23 15:56:19 -07001284 goto out_unlock;
1285 }
1286
Paul Menageddbcc7e2007-10-18 23:39:30 -07001287 ret = rebind_subsystems(root, opts.subsys_bits);
Ben Blumcf5d5942010-03-10 15:22:09 -08001288 if (ret) {
1289 drop_parsed_module_refcounts(opts.subsys_bits);
Li Zefan0670e082009-04-02 16:57:30 -07001290 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001291 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001292
1293 /* (re)populate subsystem files */
Li Zefan0670e082009-04-02 16:57:30 -07001294 cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001295
Paul Menage81a6a5c2007-10-18 23:39:38 -07001296 if (opts.release_agent)
1297 strcpy(root->release_agent_path, opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001298 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001299 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001300 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001301 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07001302 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001303 return ret;
1304}
1305
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001306static const struct super_operations cgroup_ops = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001307 .statfs = simple_statfs,
1308 .drop_inode = generic_delete_inode,
1309 .show_options = cgroup_show_options,
1310 .remount_fs = cgroup_remount,
1311};
1312
Paul Menagecc31edc2008-10-18 20:28:04 -07001313static void init_cgroup_housekeeping(struct cgroup *cgrp)
1314{
1315 INIT_LIST_HEAD(&cgrp->sibling);
1316 INIT_LIST_HEAD(&cgrp->children);
1317 INIT_LIST_HEAD(&cgrp->css_sets);
1318 INIT_LIST_HEAD(&cgrp->release_list);
Ben Blum72a8cb32009-09-23 15:56:27 -07001319 INIT_LIST_HEAD(&cgrp->pidlists);
1320 mutex_init(&cgrp->pidlist_mutex);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08001321 INIT_LIST_HEAD(&cgrp->event_list);
1322 spin_lock_init(&cgrp->event_list_lock);
Paul Menagecc31edc2008-10-18 20:28:04 -07001323}
Paul Menagec6d57f32009-09-23 15:56:19 -07001324
Paul Menageddbcc7e2007-10-18 23:39:30 -07001325static void init_cgroup_root(struct cgroupfs_root *root)
1326{
Paul Menagebd89aab2007-10-18 23:40:44 -07001327 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001328 INIT_LIST_HEAD(&root->subsys_list);
1329 INIT_LIST_HEAD(&root->root_list);
1330 root->number_of_cgroups = 1;
Paul Menagebd89aab2007-10-18 23:40:44 -07001331 cgrp->root = root;
1332 cgrp->top_cgroup = cgrp;
Paul Menagecc31edc2008-10-18 20:28:04 -07001333 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001334}
1335
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001336static bool init_root_id(struct cgroupfs_root *root)
1337{
1338 int ret = 0;
1339
1340 do {
1341 if (!ida_pre_get(&hierarchy_ida, GFP_KERNEL))
1342 return false;
1343 spin_lock(&hierarchy_id_lock);
1344 /* Try to allocate the next unused ID */
1345 ret = ida_get_new_above(&hierarchy_ida, next_hierarchy_id,
1346 &root->hierarchy_id);
1347 if (ret == -ENOSPC)
1348 /* Try again starting from 0 */
1349 ret = ida_get_new(&hierarchy_ida, &root->hierarchy_id);
1350 if (!ret) {
1351 next_hierarchy_id = root->hierarchy_id + 1;
1352 } else if (ret != -EAGAIN) {
1353 /* Can only get here if the 31-bit IDR is full ... */
1354 BUG_ON(ret);
1355 }
1356 spin_unlock(&hierarchy_id_lock);
1357 } while (ret);
1358 return true;
1359}
1360
Paul Menageddbcc7e2007-10-18 23:39:30 -07001361static int cgroup_test_super(struct super_block *sb, void *data)
1362{
Paul Menagec6d57f32009-09-23 15:56:19 -07001363 struct cgroup_sb_opts *opts = data;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001364 struct cgroupfs_root *root = sb->s_fs_info;
1365
Paul Menagec6d57f32009-09-23 15:56:19 -07001366 /* If we asked for a name then it must match */
1367 if (opts->name && strcmp(opts->name, root->name))
1368 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001369
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001370 /*
1371 * If we asked for subsystems (or explicitly for no
1372 * subsystems) then they must match
1373 */
1374 if ((opts->subsys_bits || opts->none)
1375 && (opts->subsys_bits != root->subsys_bits))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001376 return 0;
1377
1378 return 1;
1379}
1380
Paul Menagec6d57f32009-09-23 15:56:19 -07001381static struct cgroupfs_root *cgroup_root_from_opts(struct cgroup_sb_opts *opts)
1382{
1383 struct cgroupfs_root *root;
1384
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001385 if (!opts->subsys_bits && !opts->none)
Paul Menagec6d57f32009-09-23 15:56:19 -07001386 return NULL;
1387
1388 root = kzalloc(sizeof(*root), GFP_KERNEL);
1389 if (!root)
1390 return ERR_PTR(-ENOMEM);
1391
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001392 if (!init_root_id(root)) {
1393 kfree(root);
1394 return ERR_PTR(-ENOMEM);
1395 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001396 init_cgroup_root(root);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001397
Paul Menagec6d57f32009-09-23 15:56:19 -07001398 root->subsys_bits = opts->subsys_bits;
1399 root->flags = opts->flags;
1400 if (opts->release_agent)
1401 strcpy(root->release_agent_path, opts->release_agent);
1402 if (opts->name)
1403 strcpy(root->name, opts->name);
Daniel Lezcano97978e62010-10-27 15:33:35 -07001404 if (opts->clone_children)
1405 set_bit(CGRP_CLONE_CHILDREN, &root->top_cgroup.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001406 return root;
1407}
1408
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001409static void cgroup_drop_root(struct cgroupfs_root *root)
1410{
1411 if (!root)
1412 return;
1413
1414 BUG_ON(!root->hierarchy_id);
1415 spin_lock(&hierarchy_id_lock);
1416 ida_remove(&hierarchy_ida, root->hierarchy_id);
1417 spin_unlock(&hierarchy_id_lock);
1418 kfree(root);
1419}
1420
Paul Menageddbcc7e2007-10-18 23:39:30 -07001421static int cgroup_set_super(struct super_block *sb, void *data)
1422{
1423 int ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001424 struct cgroup_sb_opts *opts = data;
1425
1426 /* If we don't have a new root, we can't set up a new sb */
1427 if (!opts->new_root)
1428 return -EINVAL;
1429
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001430 BUG_ON(!opts->subsys_bits && !opts->none);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001431
1432 ret = set_anon_super(sb, NULL);
1433 if (ret)
1434 return ret;
1435
Paul Menagec6d57f32009-09-23 15:56:19 -07001436 sb->s_fs_info = opts->new_root;
1437 opts->new_root->sb = sb;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001438
1439 sb->s_blocksize = PAGE_CACHE_SIZE;
1440 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
1441 sb->s_magic = CGROUP_SUPER_MAGIC;
1442 sb->s_op = &cgroup_ops;
1443
1444 return 0;
1445}
1446
1447static int cgroup_get_rootdir(struct super_block *sb)
1448{
Al Viro0df6a632010-12-21 13:29:29 -05001449 static const struct dentry_operations cgroup_dops = {
1450 .d_iput = cgroup_diput,
Al Viroc72a04e2011-01-14 05:31:45 +00001451 .d_delete = cgroup_delete,
Al Viro0df6a632010-12-21 13:29:29 -05001452 };
1453
Paul Menageddbcc7e2007-10-18 23:39:30 -07001454 struct inode *inode =
1455 cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb);
1456 struct dentry *dentry;
1457
1458 if (!inode)
1459 return -ENOMEM;
1460
Paul Menageddbcc7e2007-10-18 23:39:30 -07001461 inode->i_fop = &simple_dir_operations;
1462 inode->i_op = &cgroup_dir_inode_operations;
1463 /* directories start off with i_nlink == 2 (for "." entry) */
1464 inc_nlink(inode);
1465 dentry = d_alloc_root(inode);
1466 if (!dentry) {
1467 iput(inode);
1468 return -ENOMEM;
1469 }
1470 sb->s_root = dentry;
Al Viro0df6a632010-12-21 13:29:29 -05001471 /* for everything else we want ->d_op set */
1472 sb->s_d_op = &cgroup_dops;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001473 return 0;
1474}
1475
Al Virof7e83572010-07-26 13:23:11 +04001476static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001477 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001478 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001479{
1480 struct cgroup_sb_opts opts;
Paul Menagec6d57f32009-09-23 15:56:19 -07001481 struct cgroupfs_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001482 int ret = 0;
1483 struct super_block *sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001484 struct cgroupfs_root *new_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001485
1486 /* First find the desired set of subsystems */
Ben Blumaae8aab2010-03-10 15:22:07 -08001487 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001488 ret = parse_cgroupfs_options(data, &opts);
Ben Blumaae8aab2010-03-10 15:22:07 -08001489 mutex_unlock(&cgroup_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001490 if (ret)
1491 goto out_err;
1492
1493 /*
1494 * Allocate a new cgroup root. We may not need it if we're
1495 * reusing an existing hierarchy.
1496 */
1497 new_root = cgroup_root_from_opts(&opts);
1498 if (IS_ERR(new_root)) {
1499 ret = PTR_ERR(new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001500 goto drop_modules;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001501 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001502 opts.new_root = new_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001503
Paul Menagec6d57f32009-09-23 15:56:19 -07001504 /* Locate an existing or new sb for this hierarchy */
1505 sb = sget(fs_type, cgroup_test_super, cgroup_set_super, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001506 if (IS_ERR(sb)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001507 ret = PTR_ERR(sb);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001508 cgroup_drop_root(opts.new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001509 goto drop_modules;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001510 }
1511
Paul Menagec6d57f32009-09-23 15:56:19 -07001512 root = sb->s_fs_info;
1513 BUG_ON(!root);
1514 if (root == opts.new_root) {
1515 /* We used the new root structure, so this is a new hierarchy */
1516 struct list_head tmp_cg_links;
Li Zefanc12f65d2009-01-07 18:07:42 -08001517 struct cgroup *root_cgrp = &root->top_cgroup;
Paul Menage817929e2007-10-18 23:39:36 -07001518 struct inode *inode;
Paul Menagec6d57f32009-09-23 15:56:19 -07001519 struct cgroupfs_root *existing_root;
Li Zefan28fd5df2008-04-29 01:00:13 -07001520 int i;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001521
1522 BUG_ON(sb->s_root != NULL);
1523
1524 ret = cgroup_get_rootdir(sb);
1525 if (ret)
1526 goto drop_new_super;
Paul Menage817929e2007-10-18 23:39:36 -07001527 inode = sb->s_root->d_inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001528
Paul Menage817929e2007-10-18 23:39:36 -07001529 mutex_lock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001530 mutex_lock(&cgroup_mutex);
1531
Paul Menagec6d57f32009-09-23 15:56:19 -07001532 if (strlen(root->name)) {
1533 /* Check for name clashes with existing mounts */
1534 for_each_active_root(existing_root) {
1535 if (!strcmp(existing_root->name, root->name)) {
1536 ret = -EBUSY;
1537 mutex_unlock(&cgroup_mutex);
1538 mutex_unlock(&inode->i_mutex);
1539 goto drop_new_super;
1540 }
1541 }
1542 }
1543
Paul Menage817929e2007-10-18 23:39:36 -07001544 /*
1545 * We're accessing css_set_count without locking
1546 * css_set_lock here, but that's OK - it can only be
1547 * increased by someone holding cgroup_lock, and
1548 * that's us. The worst that can happen is that we
1549 * have some link structures left over
1550 */
1551 ret = allocate_cg_links(css_set_count, &tmp_cg_links);
1552 if (ret) {
1553 mutex_unlock(&cgroup_mutex);
1554 mutex_unlock(&inode->i_mutex);
1555 goto drop_new_super;
1556 }
1557
Paul Menageddbcc7e2007-10-18 23:39:30 -07001558 ret = rebind_subsystems(root, root->subsys_bits);
1559 if (ret == -EBUSY) {
1560 mutex_unlock(&cgroup_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07001561 mutex_unlock(&inode->i_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001562 free_cg_links(&tmp_cg_links);
1563 goto drop_new_super;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001564 }
Ben Blumcf5d5942010-03-10 15:22:09 -08001565 /*
1566 * There must be no failure case after here, since rebinding
1567 * takes care of subsystems' refcounts, which are explicitly
1568 * dropped in the failure exit path.
1569 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001570
1571 /* EBUSY should be the only error here */
1572 BUG_ON(ret);
1573
1574 list_add(&root->root_list, &roots);
Paul Menage817929e2007-10-18 23:39:36 -07001575 root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001576
Li Zefanc12f65d2009-01-07 18:07:42 -08001577 sb->s_root->d_fsdata = root_cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001578 root->top_cgroup.dentry = sb->s_root;
1579
Paul Menage817929e2007-10-18 23:39:36 -07001580 /* Link the top cgroup in this hierarchy into all
1581 * the css_set objects */
1582 write_lock(&css_set_lock);
Li Zefan28fd5df2008-04-29 01:00:13 -07001583 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
1584 struct hlist_head *hhead = &css_set_table[i];
1585 struct hlist_node *node;
Paul Menage817929e2007-10-18 23:39:36 -07001586 struct css_set *cg;
Li Zefan28fd5df2008-04-29 01:00:13 -07001587
Li Zefanc12f65d2009-01-07 18:07:42 -08001588 hlist_for_each_entry(cg, node, hhead, hlist)
1589 link_css_set(&tmp_cg_links, cg, root_cgrp);
Li Zefan28fd5df2008-04-29 01:00:13 -07001590 }
Paul Menage817929e2007-10-18 23:39:36 -07001591 write_unlock(&css_set_lock);
1592
1593 free_cg_links(&tmp_cg_links);
1594
Li Zefanc12f65d2009-01-07 18:07:42 -08001595 BUG_ON(!list_empty(&root_cgrp->sibling));
1596 BUG_ON(!list_empty(&root_cgrp->children));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001597 BUG_ON(root->number_of_cgroups != 1);
1598
Li Zefanc12f65d2009-01-07 18:07:42 -08001599 cgroup_populate_dir(root_cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001600 mutex_unlock(&cgroup_mutex);
Xiaotian Feng34f77a92009-09-23 15:56:18 -07001601 mutex_unlock(&inode->i_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001602 } else {
1603 /*
1604 * We re-used an existing hierarchy - the new root (if
1605 * any) is not needed
1606 */
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001607 cgroup_drop_root(opts.new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001608 /* no subsys rebinding, so refcounts don't change */
1609 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001610 }
1611
Paul Menagec6d57f32009-09-23 15:56:19 -07001612 kfree(opts.release_agent);
1613 kfree(opts.name);
Al Virof7e83572010-07-26 13:23:11 +04001614 return dget(sb->s_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001615
1616 drop_new_super:
Al Viro6f5bbff2009-05-06 01:34:22 -04001617 deactivate_locked_super(sb);
Ben Blumcf5d5942010-03-10 15:22:09 -08001618 drop_modules:
1619 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menagec6d57f32009-09-23 15:56:19 -07001620 out_err:
1621 kfree(opts.release_agent);
1622 kfree(opts.name);
Al Virof7e83572010-07-26 13:23:11 +04001623 return ERR_PTR(ret);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001624}
1625
1626static void cgroup_kill_sb(struct super_block *sb) {
1627 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001628 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001629 int ret;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001630 struct cg_cgroup_link *link;
1631 struct cg_cgroup_link *saved_link;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001632
1633 BUG_ON(!root);
1634
1635 BUG_ON(root->number_of_cgroups != 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001636 BUG_ON(!list_empty(&cgrp->children));
1637 BUG_ON(!list_empty(&cgrp->sibling));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001638
1639 mutex_lock(&cgroup_mutex);
1640
1641 /* Rebind all subsystems back to the default hierarchy */
1642 ret = rebind_subsystems(root, 0);
1643 /* Shouldn't be able to fail ... */
1644 BUG_ON(ret);
1645
Paul Menage817929e2007-10-18 23:39:36 -07001646 /*
1647 * Release all the links from css_sets to this hierarchy's
1648 * root cgroup
1649 */
1650 write_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001651
1652 list_for_each_entry_safe(link, saved_link, &cgrp->css_sets,
1653 cgrp_link_list) {
Paul Menage817929e2007-10-18 23:39:36 -07001654 list_del(&link->cg_link_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07001655 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001656 kfree(link);
1657 }
1658 write_unlock(&css_set_lock);
1659
Paul Menage839ec542009-01-29 14:25:22 -08001660 if (!list_empty(&root->root_list)) {
1661 list_del(&root->root_list);
1662 root_count--;
1663 }
Li Zefane5f6a862009-01-07 18:07:41 -08001664
Paul Menageddbcc7e2007-10-18 23:39:30 -07001665 mutex_unlock(&cgroup_mutex);
1666
Paul Menageddbcc7e2007-10-18 23:39:30 -07001667 kill_litter_super(sb);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001668 cgroup_drop_root(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001669}
1670
1671static struct file_system_type cgroup_fs_type = {
1672 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001673 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001674 .kill_sb = cgroup_kill_sb,
1675};
1676
Greg KH676db4a2010-08-05 13:53:35 -07001677static struct kobject *cgroup_kobj;
1678
Paul Menagebd89aab2007-10-18 23:40:44 -07001679static inline struct cgroup *__d_cgrp(struct dentry *dentry)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001680{
1681 return dentry->d_fsdata;
1682}
1683
1684static inline struct cftype *__d_cft(struct dentry *dentry)
1685{
1686 return dentry->d_fsdata;
1687}
1688
Li Zefana043e3b2008-02-23 15:24:09 -08001689/**
1690 * cgroup_path - generate the path of a cgroup
1691 * @cgrp: the cgroup in question
1692 * @buf: the buffer to write the path into
1693 * @buflen: the length of the buffer
1694 *
Paul Menagea47295e2009-01-07 18:07:44 -08001695 * Called with cgroup_mutex held or else with an RCU-protected cgroup
1696 * reference. Writes path of cgroup into buf. Returns 0 on success,
1697 * -errno on error.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001698 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001699int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001700{
1701 char *start;
Li Zefan9a9686b2010-04-22 17:29:24 +08001702 struct dentry *dentry = rcu_dereference_check(cgrp->dentry,
1703 rcu_read_lock_held() ||
1704 cgroup_lock_is_held());
Paul Menageddbcc7e2007-10-18 23:39:30 -07001705
Paul Menagea47295e2009-01-07 18:07:44 -08001706 if (!dentry || cgrp == dummytop) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001707 /*
1708 * Inactive subsystems have no dentry for their root
1709 * cgroup
1710 */
1711 strcpy(buf, "/");
1712 return 0;
1713 }
1714
1715 start = buf + buflen;
1716
1717 *--start = '\0';
1718 for (;;) {
Paul Menagea47295e2009-01-07 18:07:44 -08001719 int len = dentry->d_name.len;
Li Zefan9a9686b2010-04-22 17:29:24 +08001720
Paul Menageddbcc7e2007-10-18 23:39:30 -07001721 if ((start -= len) < buf)
1722 return -ENAMETOOLONG;
Li Zefan9a9686b2010-04-22 17:29:24 +08001723 memcpy(start, dentry->d_name.name, len);
Paul Menagebd89aab2007-10-18 23:40:44 -07001724 cgrp = cgrp->parent;
1725 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001726 break;
Li Zefan9a9686b2010-04-22 17:29:24 +08001727
1728 dentry = rcu_dereference_check(cgrp->dentry,
1729 rcu_read_lock_held() ||
1730 cgroup_lock_is_held());
Paul Menagebd89aab2007-10-18 23:40:44 -07001731 if (!cgrp->parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001732 continue;
1733 if (--start < buf)
1734 return -ENAMETOOLONG;
1735 *start = '/';
1736 }
1737 memmove(buf, start, buf + buflen - start);
1738 return 0;
1739}
Ben Blum67523c42010-03-10 15:22:11 -08001740EXPORT_SYMBOL_GPL(cgroup_path);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001741
Ben Blum74a11662011-05-26 16:25:20 -07001742/*
1743 * cgroup_task_migrate - move a task from one cgroup to another.
1744 *
1745 * 'guarantee' is set if the caller promises that a new css_set for the task
1746 * will already exist. If not set, this function might sleep, and can fail with
1747 * -ENOMEM. Otherwise, it can only fail with -ESRCH.
1748 */
1749static int cgroup_task_migrate(struct cgroup *cgrp, struct cgroup *oldcgrp,
1750 struct task_struct *tsk, bool guarantee)
1751{
1752 struct css_set *oldcg;
1753 struct css_set *newcg;
1754
1755 /*
1756 * get old css_set. we need to take task_lock and refcount it, because
1757 * an exiting task can change its css_set to init_css_set and drop its
1758 * old one without taking cgroup_mutex.
1759 */
1760 task_lock(tsk);
1761 oldcg = tsk->cgroups;
1762 get_css_set(oldcg);
1763 task_unlock(tsk);
1764
1765 /* locate or allocate a new css_set for this task. */
1766 if (guarantee) {
1767 /* we know the css_set we want already exists. */
1768 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT];
1769 read_lock(&css_set_lock);
1770 newcg = find_existing_css_set(oldcg, cgrp, template);
1771 BUG_ON(!newcg);
1772 get_css_set(newcg);
1773 read_unlock(&css_set_lock);
1774 } else {
1775 might_sleep();
1776 /* find_css_set will give us newcg already referenced. */
1777 newcg = find_css_set(oldcg, cgrp);
1778 if (!newcg) {
1779 put_css_set(oldcg);
1780 return -ENOMEM;
1781 }
1782 }
1783 put_css_set(oldcg);
1784
1785 /* if PF_EXITING is set, the tsk->cgroups pointer is no longer safe. */
1786 task_lock(tsk);
1787 if (tsk->flags & PF_EXITING) {
1788 task_unlock(tsk);
1789 put_css_set(newcg);
1790 return -ESRCH;
1791 }
1792 rcu_assign_pointer(tsk->cgroups, newcg);
1793 task_unlock(tsk);
1794
1795 /* Update the css_set linked lists if we're using them */
1796 write_lock(&css_set_lock);
1797 if (!list_empty(&tsk->cg_list))
1798 list_move(&tsk->cg_list, &newcg->tasks);
1799 write_unlock(&css_set_lock);
1800
1801 /*
1802 * We just gained a reference on oldcg by taking it from the task. As
1803 * trading it for newcg is protected by cgroup_mutex, we're safe to drop
1804 * it here; it will be freed under RCU.
1805 */
1806 put_css_set(oldcg);
1807
1808 set_bit(CGRP_RELEASABLE, &oldcgrp->flags);
1809 return 0;
1810}
1811
Li Zefana043e3b2008-02-23 15:24:09 -08001812/**
1813 * cgroup_attach_task - attach task 'tsk' to cgroup 'cgrp'
1814 * @cgrp: the cgroup the task is attaching to
1815 * @tsk: the task to be attached
Paul Menagebbcb81d2007-10-18 23:39:32 -07001816 *
Li Zefana043e3b2008-02-23 15:24:09 -08001817 * Call holding cgroup_mutex. May take task_lock of
1818 * the task 'tsk' during call.
Paul Menagebbcb81d2007-10-18 23:39:32 -07001819 */
Cliff Wickman956db3c2008-02-07 00:14:43 -08001820int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001821{
Ben Blum74a11662011-05-26 16:25:20 -07001822 int retval;
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001823 struct cgroup_subsys *ss, *failed_ss = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07001824 struct cgroup *oldcgrp;
Paul Menagebd89aab2007-10-18 23:40:44 -07001825 struct cgroupfs_root *root = cgrp->root;
Colin Crossdbc38c62010-11-23 21:37:04 -08001826 struct css_set *cg;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001827
1828 /* Nothing to do if the task is already in that cgroup */
Paul Menage7717f7b2009-09-23 15:56:22 -07001829 oldcgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07001830 if (cgrp == oldcgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001831 return 0;
1832
1833 for_each_subsys(root, ss) {
1834 if (ss->can_attach) {
Ben Blumf780bdb2011-05-26 16:25:19 -07001835 retval = ss->can_attach(ss, cgrp, tsk);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001836 if (retval) {
1837 /*
1838 * Remember on which subsystem the can_attach()
1839 * failed, so that we only call cancel_attach()
1840 * against the subsystems whose can_attach()
1841 * succeeded. (See below)
1842 */
1843 failed_ss = ss;
1844 goto out;
1845 }
Paul Menagebbcb81d2007-10-18 23:39:32 -07001846 }
Ben Blumf780bdb2011-05-26 16:25:19 -07001847 if (ss->can_attach_task) {
1848 retval = ss->can_attach_task(cgrp, tsk);
1849 if (retval) {
1850 failed_ss = ss;
1851 goto out;
1852 }
1853 }
Paul Menagebbcb81d2007-10-18 23:39:32 -07001854 }
1855
Colin Crossdbc38c62010-11-23 21:37:04 -08001856 task_lock(tsk);
1857 cg = tsk->cgroups;
1858 get_css_set(cg);
1859 task_unlock(tsk);
1860
Ben Blum74a11662011-05-26 16:25:20 -07001861 retval = cgroup_task_migrate(cgrp, oldcgrp, tsk, false);
1862 if (retval)
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001863 goto out;
Paul Menage817929e2007-10-18 23:39:36 -07001864
Paul Menagebbcb81d2007-10-18 23:39:32 -07001865 for_each_subsys(root, ss) {
Ben Blumf780bdb2011-05-26 16:25:19 -07001866 if (ss->pre_attach)
1867 ss->pre_attach(cgrp);
1868 if (ss->attach_task)
1869 ss->attach_task(cgrp, tsk);
Paul Jacksone18f6312008-02-07 00:13:44 -08001870 if (ss->attach)
Ben Blumf780bdb2011-05-26 16:25:19 -07001871 ss->attach(ss, cgrp, oldcgrp, tsk);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001872 }
Colin Cross6d51e762010-11-23 21:37:03 -08001873 set_bit(CGRP_RELEASABLE, &cgrp->flags);
Colin Crossdbc38c62010-11-23 21:37:04 -08001874 /* put_css_set will not destroy cg until after an RCU grace period */
1875 put_css_set(cg);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07001876
1877 /*
1878 * wake up rmdir() waiter. the rmdir should fail since the cgroup
1879 * is no longer empty.
1880 */
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07001881 cgroup_wakeup_rmdir_waiter(cgrp);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001882out:
1883 if (retval) {
1884 for_each_subsys(root, ss) {
1885 if (ss == failed_ss)
1886 /*
1887 * This subsystem was the one that failed the
1888 * can_attach() check earlier, so we don't need
1889 * to call cancel_attach() against it or any
1890 * remaining subsystems.
1891 */
1892 break;
1893 if (ss->cancel_attach)
Ben Blumf780bdb2011-05-26 16:25:19 -07001894 ss->cancel_attach(ss, cgrp, tsk);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001895 }
1896 }
1897 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001898}
1899
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001900/**
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001901 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
1902 * @from: attach to all cgroups of a given task
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001903 * @tsk: the task to be attached
1904 */
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001905int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001906{
1907 struct cgroupfs_root *root;
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001908 int retval = 0;
1909
1910 cgroup_lock();
1911 for_each_active_root(root) {
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001912 struct cgroup *from_cg = task_cgroup_from_root(from, root);
1913
1914 retval = cgroup_attach_task(from_cg, tsk);
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001915 if (retval)
1916 break;
1917 }
1918 cgroup_unlock();
1919
1920 return retval;
1921}
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001922EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001923
Paul Menagebbcb81d2007-10-18 23:39:32 -07001924/*
Ben Blum74a11662011-05-26 16:25:20 -07001925 * cgroup_attach_proc works in two stages, the first of which prefetches all
1926 * new css_sets needed (to make sure we have enough memory before committing
1927 * to the move) and stores them in a list of entries of the following type.
1928 * TODO: possible optimization: use css_set->rcu_head for chaining instead
Paul Menagebbcb81d2007-10-18 23:39:32 -07001929 */
Ben Blum74a11662011-05-26 16:25:20 -07001930struct cg_list_entry {
1931 struct css_set *cg;
1932 struct list_head links;
1933};
1934
1935static bool css_set_check_fetched(struct cgroup *cgrp,
1936 struct task_struct *tsk, struct css_set *cg,
1937 struct list_head *newcg_list)
1938{
1939 struct css_set *newcg;
1940 struct cg_list_entry *cg_entry;
1941 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT];
1942
1943 read_lock(&css_set_lock);
1944 newcg = find_existing_css_set(cg, cgrp, template);
1945 if (newcg)
1946 get_css_set(newcg);
1947 read_unlock(&css_set_lock);
1948
1949 /* doesn't exist at all? */
1950 if (!newcg)
1951 return false;
1952 /* see if it's already in the list */
1953 list_for_each_entry(cg_entry, newcg_list, links) {
1954 if (cg_entry->cg == newcg) {
1955 put_css_set(newcg);
1956 return true;
1957 }
1958 }
1959
1960 /* not found */
1961 put_css_set(newcg);
1962 return false;
1963}
1964
1965/*
1966 * Find the new css_set and store it in the list in preparation for moving the
1967 * given task to the given cgroup. Returns 0 or -ENOMEM.
1968 */
1969static int css_set_prefetch(struct cgroup *cgrp, struct css_set *cg,
1970 struct list_head *newcg_list)
1971{
1972 struct css_set *newcg;
1973 struct cg_list_entry *cg_entry;
1974
1975 /* ensure a new css_set will exist for this thread */
1976 newcg = find_css_set(cg, cgrp);
1977 if (!newcg)
1978 return -ENOMEM;
1979 /* add it to the list */
1980 cg_entry = kmalloc(sizeof(struct cg_list_entry), GFP_KERNEL);
1981 if (!cg_entry) {
1982 put_css_set(newcg);
1983 return -ENOMEM;
1984 }
1985 cg_entry->cg = newcg;
1986 list_add(&cg_entry->links, newcg_list);
1987 return 0;
1988}
1989
1990/**
1991 * cgroup_attach_proc - attach all threads in a threadgroup to a cgroup
1992 * @cgrp: the cgroup to attach to
1993 * @leader: the threadgroup leader task_struct of the group to be attached
1994 *
1995 * Call holding cgroup_mutex and the threadgroup_fork_lock of the leader. Will
1996 * take task_lock of each thread in leader's threadgroup individually in turn.
1997 */
1998int cgroup_attach_proc(struct cgroup *cgrp, struct task_struct *leader)
1999{
2000 int retval, i, group_size;
2001 struct cgroup_subsys *ss, *failed_ss = NULL;
2002 bool cancel_failed_ss = false;
2003 /* guaranteed to be initialized later, but the compiler needs this */
2004 struct cgroup *oldcgrp = NULL;
2005 struct css_set *oldcg;
2006 struct cgroupfs_root *root = cgrp->root;
2007 /* threadgroup list cursor and array */
2008 struct task_struct *tsk;
Ben Blumd8466872011-05-26 16:25:21 -07002009 struct flex_array *group;
Ben Blum74a11662011-05-26 16:25:20 -07002010 /*
2011 * we need to make sure we have css_sets for all the tasks we're
2012 * going to move -before- we actually start moving them, so that in
2013 * case we get an ENOMEM we can bail out before making any changes.
2014 */
2015 struct list_head newcg_list;
2016 struct cg_list_entry *cg_entry, *temp_nobe;
2017
2018 /*
2019 * step 0: in order to do expensive, possibly blocking operations for
2020 * every thread, we cannot iterate the thread group list, since it needs
2021 * rcu or tasklist locked. instead, build an array of all threads in the
2022 * group - threadgroup_fork_lock prevents new threads from appearing,
2023 * and if threads exit, this will just be an over-estimate.
2024 */
2025 group_size = get_nr_threads(leader);
Ben Blumd8466872011-05-26 16:25:21 -07002026 /* flex_array supports very large thread-groups better than kmalloc. */
2027 group = flex_array_alloc(sizeof(struct task_struct *), group_size,
2028 GFP_KERNEL);
Ben Blum74a11662011-05-26 16:25:20 -07002029 if (!group)
2030 return -ENOMEM;
Ben Blumd8466872011-05-26 16:25:21 -07002031 /* pre-allocate to guarantee space while iterating in rcu read-side. */
2032 retval = flex_array_prealloc(group, 0, group_size - 1, GFP_KERNEL);
2033 if (retval)
2034 goto out_free_group_list;
Ben Blum74a11662011-05-26 16:25:20 -07002035
2036 /* prevent changes to the threadgroup list while we take a snapshot. */
2037 rcu_read_lock();
2038 if (!thread_group_leader(leader)) {
2039 /*
2040 * a race with de_thread from another thread's exec() may strip
2041 * us of our leadership, making while_each_thread unsafe to use
2042 * on this task. if this happens, there is no choice but to
2043 * throw this task away and try again (from cgroup_procs_write);
2044 * this is "double-double-toil-and-trouble-check locking".
2045 */
2046 rcu_read_unlock();
2047 retval = -EAGAIN;
2048 goto out_free_group_list;
2049 }
2050 /* take a reference on each task in the group to go in the array. */
2051 tsk = leader;
2052 i = 0;
2053 do {
2054 /* as per above, nr_threads may decrease, but not increase. */
2055 BUG_ON(i >= group_size);
2056 get_task_struct(tsk);
Ben Blumd8466872011-05-26 16:25:21 -07002057 /*
2058 * saying GFP_ATOMIC has no effect here because we did prealloc
2059 * earlier, but it's good form to communicate our expectations.
2060 */
2061 retval = flex_array_put_ptr(group, i, tsk, GFP_ATOMIC);
2062 BUG_ON(retval != 0);
Ben Blum74a11662011-05-26 16:25:20 -07002063 i++;
2064 } while_each_thread(leader, tsk);
2065 /* remember the number of threads in the array for later. */
2066 group_size = i;
2067 rcu_read_unlock();
2068
2069 /*
2070 * step 1: check that we can legitimately attach to the cgroup.
2071 */
2072 for_each_subsys(root, ss) {
2073 if (ss->can_attach) {
2074 retval = ss->can_attach(ss, cgrp, leader);
2075 if (retval) {
2076 failed_ss = ss;
2077 goto out_cancel_attach;
2078 }
2079 }
2080 /* a callback to be run on every thread in the threadgroup. */
2081 if (ss->can_attach_task) {
2082 /* run on each task in the threadgroup. */
2083 for (i = 0; i < group_size; i++) {
Ben Blumd8466872011-05-26 16:25:21 -07002084 tsk = flex_array_get_ptr(group, i);
2085 retval = ss->can_attach_task(cgrp, tsk);
Ben Blum74a11662011-05-26 16:25:20 -07002086 if (retval) {
2087 failed_ss = ss;
2088 cancel_failed_ss = true;
2089 goto out_cancel_attach;
2090 }
2091 }
2092 }
2093 }
2094
2095 /*
2096 * step 2: make sure css_sets exist for all threads to be migrated.
2097 * we use find_css_set, which allocates a new one if necessary.
2098 */
2099 INIT_LIST_HEAD(&newcg_list);
2100 for (i = 0; i < group_size; i++) {
Ben Blumd8466872011-05-26 16:25:21 -07002101 tsk = flex_array_get_ptr(group, i);
Ben Blum74a11662011-05-26 16:25:20 -07002102 /* nothing to do if this task is already in the cgroup */
2103 oldcgrp = task_cgroup_from_root(tsk, root);
2104 if (cgrp == oldcgrp)
2105 continue;
2106 /* get old css_set pointer */
2107 task_lock(tsk);
Ben Blum74a11662011-05-26 16:25:20 -07002108 oldcg = tsk->cgroups;
2109 get_css_set(oldcg);
2110 task_unlock(tsk);
2111 /* see if the new one for us is already in the list? */
2112 if (css_set_check_fetched(cgrp, tsk, oldcg, &newcg_list)) {
2113 /* was already there, nothing to do. */
2114 put_css_set(oldcg);
2115 } else {
2116 /* we don't already have it. get new one. */
2117 retval = css_set_prefetch(cgrp, oldcg, &newcg_list);
2118 put_css_set(oldcg);
2119 if (retval)
2120 goto out_list_teardown;
2121 }
2122 }
2123
2124 /*
2125 * step 3: now that we're guaranteed success wrt the css_sets, proceed
2126 * to move all tasks to the new cgroup, calling ss->attach_task for each
2127 * one along the way. there are no failure cases after here, so this is
2128 * the commit point.
2129 */
2130 for_each_subsys(root, ss) {
2131 if (ss->pre_attach)
2132 ss->pre_attach(cgrp);
2133 }
2134 for (i = 0; i < group_size; i++) {
Ben Blumd8466872011-05-26 16:25:21 -07002135 tsk = flex_array_get_ptr(group, i);
Ben Blum74a11662011-05-26 16:25:20 -07002136 /* leave current thread as it is if it's already there */
2137 oldcgrp = task_cgroup_from_root(tsk, root);
2138 if (cgrp == oldcgrp)
2139 continue;
2140 /* attach each task to each subsystem */
2141 for_each_subsys(root, ss) {
2142 if (ss->attach_task)
2143 ss->attach_task(cgrp, tsk);
2144 }
2145 /* if the thread is PF_EXITING, it can just get skipped. */
2146 retval = cgroup_task_migrate(cgrp, oldcgrp, tsk, true);
2147 BUG_ON(retval != 0 && retval != -ESRCH);
2148 }
2149 /* nothing is sensitive to fork() after this point. */
2150
2151 /*
2152 * step 4: do expensive, non-thread-specific subsystem callbacks.
2153 * TODO: if ever a subsystem needs to know the oldcgrp for each task
2154 * being moved, this call will need to be reworked to communicate that.
2155 */
2156 for_each_subsys(root, ss) {
2157 if (ss->attach)
2158 ss->attach(ss, cgrp, oldcgrp, leader);
2159 }
2160
2161 /*
2162 * step 5: success! and cleanup
2163 */
2164 synchronize_rcu();
2165 cgroup_wakeup_rmdir_waiter(cgrp);
2166 retval = 0;
2167out_list_teardown:
2168 /* clean up the list of prefetched css_sets. */
2169 list_for_each_entry_safe(cg_entry, temp_nobe, &newcg_list, links) {
2170 list_del(&cg_entry->links);
2171 put_css_set(cg_entry->cg);
2172 kfree(cg_entry);
2173 }
2174out_cancel_attach:
2175 /* same deal as in cgroup_attach_task */
2176 if (retval) {
2177 for_each_subsys(root, ss) {
2178 if (ss == failed_ss) {
2179 if (cancel_failed_ss && ss->cancel_attach)
2180 ss->cancel_attach(ss, cgrp, leader);
2181 break;
2182 }
2183 if (ss->cancel_attach)
2184 ss->cancel_attach(ss, cgrp, leader);
2185 }
2186 }
2187 /* clean up the array of referenced threads in the group. */
Ben Blumd8466872011-05-26 16:25:21 -07002188 for (i = 0; i < group_size; i++) {
2189 tsk = flex_array_get_ptr(group, i);
2190 put_task_struct(tsk);
2191 }
Ben Blum74a11662011-05-26 16:25:20 -07002192out_free_group_list:
Ben Blumd8466872011-05-26 16:25:21 -07002193 flex_array_free(group);
Ben Blum74a11662011-05-26 16:25:20 -07002194 return retval;
2195}
2196
Colin Crossbb5b6032011-07-12 19:53:24 -07002197static int cgroup_allow_attach(struct cgroup *cgrp, struct task_struct *tsk)
2198{
2199 struct cgroup_subsys *ss;
2200 int ret;
2201
2202 for_each_subsys(cgrp->root, ss) {
2203 if (ss->allow_attach) {
2204 ret = ss->allow_attach(cgrp, tsk);
2205 if (ret)
2206 return ret;
2207 } else {
2208 return -EACCES;
2209 }
2210 }
2211
2212 return 0;
2213}
2214
Ben Blum74a11662011-05-26 16:25:20 -07002215/*
2216 * Find the task_struct of the task to attach by vpid and pass it along to the
2217 * function to attach either it or all tasks in its threadgroup. Will take
2218 * cgroup_mutex; may take task_lock of task.
2219 */
2220static int attach_task_by_pid(struct cgroup *cgrp, u64 pid, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002221{
Paul Menagebbcb81d2007-10-18 23:39:32 -07002222 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11002223 const struct cred *cred = current_cred(), *tcred;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002224 int ret;
2225
Ben Blum74a11662011-05-26 16:25:20 -07002226 if (!cgroup_lock_live_group(cgrp))
2227 return -ENODEV;
2228
Paul Menagebbcb81d2007-10-18 23:39:32 -07002229 if (pid) {
2230 rcu_read_lock();
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002231 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07002232 if (!tsk) {
Paul Menagebbcb81d2007-10-18 23:39:32 -07002233 rcu_read_unlock();
Ben Blum74a11662011-05-26 16:25:20 -07002234 cgroup_unlock();
2235 return -ESRCH;
2236 }
2237 if (threadgroup) {
2238 /*
2239 * RCU protects this access, since tsk was found in the
2240 * tid map. a race with de_thread may cause group_leader
2241 * to stop being the leader, but cgroup_attach_proc will
2242 * detect it later.
2243 */
2244 tsk = tsk->group_leader;
2245 } else if (tsk->flags & PF_EXITING) {
2246 /* optimization for the single-task-only case */
2247 rcu_read_unlock();
2248 cgroup_unlock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002249 return -ESRCH;
2250 }
Paul Menagebbcb81d2007-10-18 23:39:32 -07002251
Ben Blum74a11662011-05-26 16:25:20 -07002252 /*
2253 * even if we're attaching all tasks in the thread group, we
2254 * only need to check permissions on one of them.
2255 */
David Howellsc69e8d92008-11-14 10:39:19 +11002256 tcred = __task_cred(tsk);
2257 if (cred->euid &&
2258 cred->euid != tcred->uid &&
2259 cred->euid != tcred->suid) {
Colin Crossbb5b6032011-07-12 19:53:24 -07002260 /*
2261 * if the default permission check fails, give each
2262 * cgroup a chance to extend the permission check
2263 */
2264 ret = cgroup_allow_attach(cgrp, tsk);
2265 if (ret) {
2266 rcu_read_unlock();
2267 cgroup_unlock();
2268 return ret;
2269 }
Paul Menagebbcb81d2007-10-18 23:39:32 -07002270 }
David Howellsc69e8d92008-11-14 10:39:19 +11002271 get_task_struct(tsk);
2272 rcu_read_unlock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002273 } else {
Ben Blum74a11662011-05-26 16:25:20 -07002274 if (threadgroup)
2275 tsk = current->group_leader;
2276 else
2277 tsk = current;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002278 get_task_struct(tsk);
2279 }
2280
Ben Blum74a11662011-05-26 16:25:20 -07002281 if (threadgroup) {
2282 threadgroup_fork_write_lock(tsk);
2283 ret = cgroup_attach_proc(cgrp, tsk);
2284 threadgroup_fork_write_unlock(tsk);
2285 } else {
2286 ret = cgroup_attach_task(cgrp, tsk);
2287 }
Paul Menagebbcb81d2007-10-18 23:39:32 -07002288 put_task_struct(tsk);
Ben Blum74a11662011-05-26 16:25:20 -07002289 cgroup_unlock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002290 return ret;
2291}
2292
Paul Menageaf351022008-07-25 01:47:01 -07002293static int cgroup_tasks_write(struct cgroup *cgrp, struct cftype *cft, u64 pid)
2294{
Ben Blum74a11662011-05-26 16:25:20 -07002295 return attach_task_by_pid(cgrp, pid, false);
2296}
2297
2298static int cgroup_procs_write(struct cgroup *cgrp, struct cftype *cft, u64 tgid)
2299{
Paul Menageaf351022008-07-25 01:47:01 -07002300 int ret;
Ben Blum74a11662011-05-26 16:25:20 -07002301 do {
2302 /*
2303 * attach_proc fails with -EAGAIN if threadgroup leadership
2304 * changes in the middle of the operation, in which case we need
2305 * to find the task_struct for the new leader and start over.
2306 */
2307 ret = attach_task_by_pid(cgrp, tgid, true);
2308 } while (ret == -EAGAIN);
Paul Menageaf351022008-07-25 01:47:01 -07002309 return ret;
2310}
2311
Paul Menagee788e062008-07-25 01:46:59 -07002312/**
2313 * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive.
2314 * @cgrp: the cgroup to be checked for liveness
2315 *
Paul Menage84eea842008-07-25 01:47:00 -07002316 * On success, returns true; the lock should be later released with
2317 * cgroup_unlock(). On failure returns false with no lock held.
Paul Menagee788e062008-07-25 01:46:59 -07002318 */
Paul Menage84eea842008-07-25 01:47:00 -07002319bool cgroup_lock_live_group(struct cgroup *cgrp)
Paul Menagee788e062008-07-25 01:46:59 -07002320{
2321 mutex_lock(&cgroup_mutex);
2322 if (cgroup_is_removed(cgrp)) {
2323 mutex_unlock(&cgroup_mutex);
2324 return false;
2325 }
2326 return true;
2327}
Ben Blum67523c42010-03-10 15:22:11 -08002328EXPORT_SYMBOL_GPL(cgroup_lock_live_group);
Paul Menagee788e062008-07-25 01:46:59 -07002329
2330static int cgroup_release_agent_write(struct cgroup *cgrp, struct cftype *cft,
2331 const char *buffer)
2332{
2333 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
Evgeny Kuznetsovf4a25892010-10-27 15:33:37 -07002334 if (strlen(buffer) >= PATH_MAX)
2335 return -EINVAL;
Paul Menagee788e062008-07-25 01:46:59 -07002336 if (!cgroup_lock_live_group(cgrp))
2337 return -ENODEV;
2338 strcpy(cgrp->root->release_agent_path, buffer);
Paul Menage84eea842008-07-25 01:47:00 -07002339 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07002340 return 0;
2341}
2342
2343static int cgroup_release_agent_show(struct cgroup *cgrp, struct cftype *cft,
2344 struct seq_file *seq)
2345{
2346 if (!cgroup_lock_live_group(cgrp))
2347 return -ENODEV;
2348 seq_puts(seq, cgrp->root->release_agent_path);
2349 seq_putc(seq, '\n');
Paul Menage84eea842008-07-25 01:47:00 -07002350 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07002351 return 0;
2352}
2353
Paul Menage84eea842008-07-25 01:47:00 -07002354/* A buffer size big enough for numbers or short strings */
2355#define CGROUP_LOCAL_BUFFER_SIZE 64
2356
Paul Menagee73d2c62008-04-29 01:00:06 -07002357static ssize_t cgroup_write_X64(struct cgroup *cgrp, struct cftype *cft,
Paul Menagef4c753b2008-04-29 00:59:56 -07002358 struct file *file,
2359 const char __user *userbuf,
2360 size_t nbytes, loff_t *unused_ppos)
Paul Menage355e0c42007-10-18 23:39:33 -07002361{
Paul Menage84eea842008-07-25 01:47:00 -07002362 char buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menage355e0c42007-10-18 23:39:33 -07002363 int retval = 0;
Paul Menage355e0c42007-10-18 23:39:33 -07002364 char *end;
2365
2366 if (!nbytes)
2367 return -EINVAL;
2368 if (nbytes >= sizeof(buffer))
2369 return -E2BIG;
2370 if (copy_from_user(buffer, userbuf, nbytes))
2371 return -EFAULT;
2372
2373 buffer[nbytes] = 0; /* nul-terminate */
Paul Menagee73d2c62008-04-29 01:00:06 -07002374 if (cft->write_u64) {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002375 u64 val = simple_strtoull(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07002376 if (*end)
2377 return -EINVAL;
2378 retval = cft->write_u64(cgrp, cft, val);
2379 } else {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002380 s64 val = simple_strtoll(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07002381 if (*end)
2382 return -EINVAL;
2383 retval = cft->write_s64(cgrp, cft, val);
2384 }
Paul Menage355e0c42007-10-18 23:39:33 -07002385 if (!retval)
2386 retval = nbytes;
2387 return retval;
2388}
2389
Paul Menagedb3b1492008-07-25 01:46:58 -07002390static ssize_t cgroup_write_string(struct cgroup *cgrp, struct cftype *cft,
2391 struct file *file,
2392 const char __user *userbuf,
2393 size_t nbytes, loff_t *unused_ppos)
2394{
Paul Menage84eea842008-07-25 01:47:00 -07002395 char local_buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagedb3b1492008-07-25 01:46:58 -07002396 int retval = 0;
2397 size_t max_bytes = cft->max_write_len;
2398 char *buffer = local_buffer;
2399
2400 if (!max_bytes)
2401 max_bytes = sizeof(local_buffer) - 1;
2402 if (nbytes >= max_bytes)
2403 return -E2BIG;
2404 /* Allocate a dynamic buffer if we need one */
2405 if (nbytes >= sizeof(local_buffer)) {
2406 buffer = kmalloc(nbytes + 1, GFP_KERNEL);
2407 if (buffer == NULL)
2408 return -ENOMEM;
2409 }
Li Zefan5a3eb9f2008-07-29 22:33:18 -07002410 if (nbytes && copy_from_user(buffer, userbuf, nbytes)) {
2411 retval = -EFAULT;
2412 goto out;
2413 }
Paul Menagedb3b1492008-07-25 01:46:58 -07002414
2415 buffer[nbytes] = 0; /* nul-terminate */
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002416 retval = cft->write_string(cgrp, cft, strstrip(buffer));
Paul Menagedb3b1492008-07-25 01:46:58 -07002417 if (!retval)
2418 retval = nbytes;
Li Zefan5a3eb9f2008-07-29 22:33:18 -07002419out:
Paul Menagedb3b1492008-07-25 01:46:58 -07002420 if (buffer != local_buffer)
2421 kfree(buffer);
2422 return retval;
2423}
2424
Paul Menageddbcc7e2007-10-18 23:39:30 -07002425static ssize_t cgroup_file_write(struct file *file, const char __user *buf,
2426 size_t nbytes, loff_t *ppos)
2427{
2428 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07002429 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002430
Li Zefan75139b82009-01-07 18:07:33 -08002431 if (cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07002432 return -ENODEV;
Paul Menage355e0c42007-10-18 23:39:33 -07002433 if (cft->write)
Paul Menagebd89aab2007-10-18 23:40:44 -07002434 return cft->write(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002435 if (cft->write_u64 || cft->write_s64)
2436 return cgroup_write_X64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagedb3b1492008-07-25 01:46:58 -07002437 if (cft->write_string)
2438 return cgroup_write_string(cgrp, cft, file, buf, nbytes, ppos);
Pavel Emelyanovd447ea22008-04-29 01:00:08 -07002439 if (cft->trigger) {
2440 int ret = cft->trigger(cgrp, (unsigned int)cft->private);
2441 return ret ? ret : nbytes;
2442 }
Paul Menage355e0c42007-10-18 23:39:33 -07002443 return -EINVAL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002444}
2445
Paul Menagef4c753b2008-04-29 00:59:56 -07002446static ssize_t cgroup_read_u64(struct cgroup *cgrp, struct cftype *cft,
2447 struct file *file,
2448 char __user *buf, size_t nbytes,
2449 loff_t *ppos)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002450{
Paul Menage84eea842008-07-25 01:47:00 -07002451 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagef4c753b2008-04-29 00:59:56 -07002452 u64 val = cft->read_u64(cgrp, cft);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002453 int len = sprintf(tmp, "%llu\n", (unsigned long long) val);
2454
2455 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2456}
2457
Paul Menagee73d2c62008-04-29 01:00:06 -07002458static ssize_t cgroup_read_s64(struct cgroup *cgrp, struct cftype *cft,
2459 struct file *file,
2460 char __user *buf, size_t nbytes,
2461 loff_t *ppos)
2462{
Paul Menage84eea842008-07-25 01:47:00 -07002463 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagee73d2c62008-04-29 01:00:06 -07002464 s64 val = cft->read_s64(cgrp, cft);
2465 int len = sprintf(tmp, "%lld\n", (long long) val);
2466
2467 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2468}
2469
Paul Menageddbcc7e2007-10-18 23:39:30 -07002470static ssize_t cgroup_file_read(struct file *file, char __user *buf,
2471 size_t nbytes, loff_t *ppos)
2472{
2473 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07002474 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002475
Li Zefan75139b82009-01-07 18:07:33 -08002476 if (cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07002477 return -ENODEV;
2478
2479 if (cft->read)
Paul Menagebd89aab2007-10-18 23:40:44 -07002480 return cft->read(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagef4c753b2008-04-29 00:59:56 -07002481 if (cft->read_u64)
2482 return cgroup_read_u64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002483 if (cft->read_s64)
2484 return cgroup_read_s64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002485 return -EINVAL;
2486}
2487
Paul Menage91796562008-04-29 01:00:01 -07002488/*
2489 * seqfile ops/methods for returning structured data. Currently just
2490 * supports string->u64 maps, but can be extended in future.
2491 */
2492
2493struct cgroup_seqfile_state {
2494 struct cftype *cft;
2495 struct cgroup *cgroup;
2496};
2497
2498static int cgroup_map_add(struct cgroup_map_cb *cb, const char *key, u64 value)
2499{
2500 struct seq_file *sf = cb->state;
2501 return seq_printf(sf, "%s %llu\n", key, (unsigned long long)value);
2502}
2503
2504static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2505{
2506 struct cgroup_seqfile_state *state = m->private;
2507 struct cftype *cft = state->cft;
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002508 if (cft->read_map) {
2509 struct cgroup_map_cb cb = {
2510 .fill = cgroup_map_add,
2511 .state = m,
2512 };
2513 return cft->read_map(state->cgroup, cft, &cb);
2514 }
2515 return cft->read_seq_string(state->cgroup, cft, m);
Paul Menage91796562008-04-29 01:00:01 -07002516}
2517
Adrian Bunk96930a62008-07-25 19:46:21 -07002518static int cgroup_seqfile_release(struct inode *inode, struct file *file)
Paul Menage91796562008-04-29 01:00:01 -07002519{
2520 struct seq_file *seq = file->private_data;
2521 kfree(seq->private);
2522 return single_release(inode, file);
2523}
2524
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002525static const struct file_operations cgroup_seqfile_operations = {
Paul Menage91796562008-04-29 01:00:01 -07002526 .read = seq_read,
Paul Menagee788e062008-07-25 01:46:59 -07002527 .write = cgroup_file_write,
Paul Menage91796562008-04-29 01:00:01 -07002528 .llseek = seq_lseek,
2529 .release = cgroup_seqfile_release,
2530};
2531
Paul Menageddbcc7e2007-10-18 23:39:30 -07002532static int cgroup_file_open(struct inode *inode, struct file *file)
2533{
2534 int err;
2535 struct cftype *cft;
2536
2537 err = generic_file_open(inode, file);
2538 if (err)
2539 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002540 cft = __d_cft(file->f_dentry);
Li Zefan75139b82009-01-07 18:07:33 -08002541
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002542 if (cft->read_map || cft->read_seq_string) {
Paul Menage91796562008-04-29 01:00:01 -07002543 struct cgroup_seqfile_state *state =
2544 kzalloc(sizeof(*state), GFP_USER);
2545 if (!state)
2546 return -ENOMEM;
2547 state->cft = cft;
2548 state->cgroup = __d_cgrp(file->f_dentry->d_parent);
2549 file->f_op = &cgroup_seqfile_operations;
2550 err = single_open(file, cgroup_seqfile_show, state);
2551 if (err < 0)
2552 kfree(state);
2553 } else if (cft->open)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002554 err = cft->open(inode, file);
2555 else
2556 err = 0;
2557
2558 return err;
2559}
2560
2561static int cgroup_file_release(struct inode *inode, struct file *file)
2562{
2563 struct cftype *cft = __d_cft(file->f_dentry);
2564 if (cft->release)
2565 return cft->release(inode, file);
2566 return 0;
2567}
2568
2569/*
2570 * cgroup_rename - Only allow simple rename of directories in place.
2571 */
2572static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry,
2573 struct inode *new_dir, struct dentry *new_dentry)
2574{
2575 if (!S_ISDIR(old_dentry->d_inode->i_mode))
2576 return -ENOTDIR;
2577 if (new_dentry->d_inode)
2578 return -EEXIST;
2579 if (old_dir != new_dir)
2580 return -EIO;
2581 return simple_rename(old_dir, old_dentry, new_dir, new_dentry);
2582}
2583
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002584static const struct file_operations cgroup_file_operations = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002585 .read = cgroup_file_read,
2586 .write = cgroup_file_write,
2587 .llseek = generic_file_llseek,
2588 .open = cgroup_file_open,
2589 .release = cgroup_file_release,
2590};
2591
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07002592static const struct inode_operations cgroup_dir_inode_operations = {
Al Viroc72a04e2011-01-14 05:31:45 +00002593 .lookup = cgroup_lookup,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002594 .mkdir = cgroup_mkdir,
2595 .rmdir = cgroup_rmdir,
2596 .rename = cgroup_rename,
2597};
2598
Al Viroc72a04e2011-01-14 05:31:45 +00002599static struct dentry *cgroup_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
2600{
2601 if (dentry->d_name.len > NAME_MAX)
2602 return ERR_PTR(-ENAMETOOLONG);
2603 d_add(dentry, NULL);
2604 return NULL;
2605}
2606
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08002607/*
2608 * Check if a file is a control file
2609 */
2610static inline struct cftype *__file_cft(struct file *file)
2611{
2612 if (file->f_dentry->d_inode->i_fop != &cgroup_file_operations)
2613 return ERR_PTR(-EINVAL);
2614 return __d_cft(file->f_dentry);
2615}
2616
Nick Piggin5adcee12011-01-07 17:49:20 +11002617static int cgroup_create_file(struct dentry *dentry, mode_t mode,
2618 struct super_block *sb)
2619{
Paul Menageddbcc7e2007-10-18 23:39:30 -07002620 struct inode *inode;
2621
2622 if (!dentry)
2623 return -ENOENT;
2624 if (dentry->d_inode)
2625 return -EEXIST;
2626
2627 inode = cgroup_new_inode(mode, sb);
2628 if (!inode)
2629 return -ENOMEM;
2630
2631 if (S_ISDIR(mode)) {
2632 inode->i_op = &cgroup_dir_inode_operations;
2633 inode->i_fop = &simple_dir_operations;
2634
2635 /* start off with i_nlink == 2 (for "." entry) */
2636 inc_nlink(inode);
2637
2638 /* start with the directory inode held, so that we can
2639 * populate it without racing with another mkdir */
Paul Menage817929e2007-10-18 23:39:36 -07002640 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002641 } else if (S_ISREG(mode)) {
2642 inode->i_size = 0;
2643 inode->i_fop = &cgroup_file_operations;
2644 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002645 d_instantiate(dentry, inode);
2646 dget(dentry); /* Extra count - pin the dentry in core */
2647 return 0;
2648}
2649
2650/*
Li Zefana043e3b2008-02-23 15:24:09 -08002651 * cgroup_create_dir - create a directory for an object.
2652 * @cgrp: the cgroup we create the directory for. It must have a valid
2653 * ->parent field. And we are going to fill its ->dentry field.
2654 * @dentry: dentry of the new cgroup
2655 * @mode: mode to set on new directory.
Paul Menageddbcc7e2007-10-18 23:39:30 -07002656 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002657static int cgroup_create_dir(struct cgroup *cgrp, struct dentry *dentry,
Li Zefan099fca32009-04-02 16:57:29 -07002658 mode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002659{
2660 struct dentry *parent;
2661 int error = 0;
2662
Paul Menagebd89aab2007-10-18 23:40:44 -07002663 parent = cgrp->parent->dentry;
2664 error = cgroup_create_file(dentry, S_IFDIR | mode, cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002665 if (!error) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002666 dentry->d_fsdata = cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002667 inc_nlink(parent->d_inode);
Paul Menagea47295e2009-01-07 18:07:44 -08002668 rcu_assign_pointer(cgrp->dentry, dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002669 dget(dentry);
2670 }
2671 dput(dentry);
2672
2673 return error;
2674}
2675
Li Zefan099fca32009-04-02 16:57:29 -07002676/**
2677 * cgroup_file_mode - deduce file mode of a control file
2678 * @cft: the control file in question
2679 *
2680 * returns cft->mode if ->mode is not 0
2681 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
2682 * returns S_IRUGO if it has only a read handler
2683 * returns S_IWUSR if it has only a write hander
2684 */
2685static mode_t cgroup_file_mode(const struct cftype *cft)
2686{
2687 mode_t mode = 0;
2688
2689 if (cft->mode)
2690 return cft->mode;
2691
2692 if (cft->read || cft->read_u64 || cft->read_s64 ||
2693 cft->read_map || cft->read_seq_string)
2694 mode |= S_IRUGO;
2695
2696 if (cft->write || cft->write_u64 || cft->write_s64 ||
2697 cft->write_string || cft->trigger)
2698 mode |= S_IWUSR;
2699
2700 return mode;
2701}
2702
Paul Menagebd89aab2007-10-18 23:40:44 -07002703int cgroup_add_file(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002704 struct cgroup_subsys *subsys,
2705 const struct cftype *cft)
2706{
Paul Menagebd89aab2007-10-18 23:40:44 -07002707 struct dentry *dir = cgrp->dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002708 struct dentry *dentry;
2709 int error;
Li Zefan099fca32009-04-02 16:57:29 -07002710 mode_t mode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002711
2712 char name[MAX_CGROUP_TYPE_NAMELEN + MAX_CFTYPE_NAME + 2] = { 0 };
Paul Menagebd89aab2007-10-18 23:40:44 -07002713 if (subsys && !test_bit(ROOT_NOPREFIX, &cgrp->root->flags)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002714 strcpy(name, subsys->name);
2715 strcat(name, ".");
2716 }
2717 strcat(name, cft->name);
2718 BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex));
2719 dentry = lookup_one_len(name, dir, strlen(name));
2720 if (!IS_ERR(dentry)) {
Li Zefan099fca32009-04-02 16:57:29 -07002721 mode = cgroup_file_mode(cft);
2722 error = cgroup_create_file(dentry, mode | S_IFREG,
Paul Menagebd89aab2007-10-18 23:40:44 -07002723 cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002724 if (!error)
2725 dentry->d_fsdata = (void *)cft;
2726 dput(dentry);
2727 } else
2728 error = PTR_ERR(dentry);
2729 return error;
2730}
Ben Blume6a11052010-03-10 15:22:09 -08002731EXPORT_SYMBOL_GPL(cgroup_add_file);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002732
Paul Menagebd89aab2007-10-18 23:40:44 -07002733int cgroup_add_files(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002734 struct cgroup_subsys *subsys,
2735 const struct cftype cft[],
2736 int count)
2737{
2738 int i, err;
2739 for (i = 0; i < count; i++) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002740 err = cgroup_add_file(cgrp, subsys, &cft[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002741 if (err)
2742 return err;
2743 }
2744 return 0;
2745}
Ben Blume6a11052010-03-10 15:22:09 -08002746EXPORT_SYMBOL_GPL(cgroup_add_files);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002747
Li Zefana043e3b2008-02-23 15:24:09 -08002748/**
2749 * cgroup_task_count - count the number of tasks in a cgroup.
2750 * @cgrp: the cgroup in question
2751 *
2752 * Return the number of tasks in the cgroup.
2753 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002754int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002755{
2756 int count = 0;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07002757 struct cg_cgroup_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002758
Paul Menage817929e2007-10-18 23:39:36 -07002759 read_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07002760 list_for_each_entry(link, &cgrp->css_sets, cgrp_link_list) {
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07002761 count += atomic_read(&link->cg->refcount);
Paul Menage817929e2007-10-18 23:39:36 -07002762 }
2763 read_unlock(&css_set_lock);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002764 return count;
2765}
2766
2767/*
Paul Menage817929e2007-10-18 23:39:36 -07002768 * Advance a list_head iterator. The iterator should be positioned at
2769 * the start of a css_set
2770 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002771static void cgroup_advance_iter(struct cgroup *cgrp,
Paul Menage7717f7b2009-09-23 15:56:22 -07002772 struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002773{
2774 struct list_head *l = it->cg_link;
2775 struct cg_cgroup_link *link;
2776 struct css_set *cg;
2777
2778 /* Advance to the next non-empty css_set */
2779 do {
2780 l = l->next;
Paul Menagebd89aab2007-10-18 23:40:44 -07002781 if (l == &cgrp->css_sets) {
Paul Menage817929e2007-10-18 23:39:36 -07002782 it->cg_link = NULL;
2783 return;
2784 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002785 link = list_entry(l, struct cg_cgroup_link, cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07002786 cg = link->cg;
2787 } while (list_empty(&cg->tasks));
2788 it->cg_link = l;
2789 it->task = cg->tasks.next;
2790}
2791
Cliff Wickman31a7df02008-02-07 00:14:42 -08002792/*
2793 * To reduce the fork() overhead for systems that are not actually
2794 * using their cgroups capability, we don't maintain the lists running
2795 * through each css_set to its tasks until we see the list actually
2796 * used - in other words after the first call to cgroup_iter_start().
2797 *
2798 * The tasklist_lock is not held here, as do_each_thread() and
2799 * while_each_thread() are protected by RCU.
2800 */
Adrian Bunk3df91fe2008-04-29 00:59:54 -07002801static void cgroup_enable_task_cg_lists(void)
Cliff Wickman31a7df02008-02-07 00:14:42 -08002802{
2803 struct task_struct *p, *g;
2804 write_lock(&css_set_lock);
2805 use_task_css_set_links = 1;
2806 do_each_thread(g, p) {
2807 task_lock(p);
Li Zefan0e043882008-04-17 11:37:15 +08002808 /*
2809 * We should check if the process is exiting, otherwise
2810 * it will race with cgroup_exit() in that the list
2811 * entry won't be deleted though the process has exited.
2812 */
2813 if (!(p->flags & PF_EXITING) && list_empty(&p->cg_list))
Cliff Wickman31a7df02008-02-07 00:14:42 -08002814 list_add(&p->cg_list, &p->cgroups->tasks);
2815 task_unlock(p);
2816 } while_each_thread(g, p);
2817 write_unlock(&css_set_lock);
2818}
2819
Paul Menagebd89aab2007-10-18 23:40:44 -07002820void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002821{
2822 /*
2823 * The first time anyone tries to iterate across a cgroup,
2824 * we need to enable the list linking each css_set to its
2825 * tasks, and fix up all existing tasks.
2826 */
Cliff Wickman31a7df02008-02-07 00:14:42 -08002827 if (!use_task_css_set_links)
2828 cgroup_enable_task_cg_lists();
2829
Paul Menage817929e2007-10-18 23:39:36 -07002830 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07002831 it->cg_link = &cgrp->css_sets;
2832 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07002833}
2834
Paul Menagebd89aab2007-10-18 23:40:44 -07002835struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -07002836 struct cgroup_iter *it)
2837{
2838 struct task_struct *res;
2839 struct list_head *l = it->task;
Lai Jiangshan2019f632009-01-07 18:07:36 -08002840 struct cg_cgroup_link *link;
Paul Menage817929e2007-10-18 23:39:36 -07002841
2842 /* If the iterator cg is NULL, we have no tasks */
2843 if (!it->cg_link)
2844 return NULL;
2845 res = list_entry(l, struct task_struct, cg_list);
2846 /* Advance iterator to find next entry */
2847 l = l->next;
Lai Jiangshan2019f632009-01-07 18:07:36 -08002848 link = list_entry(it->cg_link, struct cg_cgroup_link, cgrp_link_list);
2849 if (l == &link->cg->tasks) {
Paul Menage817929e2007-10-18 23:39:36 -07002850 /* We reached the end of this task list - move on to
2851 * the next cg_cgroup_link */
Paul Menagebd89aab2007-10-18 23:40:44 -07002852 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07002853 } else {
2854 it->task = l;
2855 }
2856 return res;
2857}
2858
Paul Menagebd89aab2007-10-18 23:40:44 -07002859void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002860{
2861 read_unlock(&css_set_lock);
2862}
2863
Cliff Wickman31a7df02008-02-07 00:14:42 -08002864static inline int started_after_time(struct task_struct *t1,
2865 struct timespec *time,
2866 struct task_struct *t2)
2867{
2868 int start_diff = timespec_compare(&t1->start_time, time);
2869 if (start_diff > 0) {
2870 return 1;
2871 } else if (start_diff < 0) {
2872 return 0;
2873 } else {
2874 /*
2875 * Arbitrarily, if two processes started at the same
2876 * time, we'll say that the lower pointer value
2877 * started first. Note that t2 may have exited by now
2878 * so this may not be a valid pointer any longer, but
2879 * that's fine - it still serves to distinguish
2880 * between two tasks started (effectively) simultaneously.
2881 */
2882 return t1 > t2;
2883 }
2884}
2885
2886/*
2887 * This function is a callback from heap_insert() and is used to order
2888 * the heap.
2889 * In this case we order the heap in descending task start time.
2890 */
2891static inline int started_after(void *p1, void *p2)
2892{
2893 struct task_struct *t1 = p1;
2894 struct task_struct *t2 = p2;
2895 return started_after_time(t1, &t2->start_time, t2);
2896}
2897
2898/**
2899 * cgroup_scan_tasks - iterate though all the tasks in a cgroup
2900 * @scan: struct cgroup_scanner containing arguments for the scan
2901 *
2902 * Arguments include pointers to callback functions test_task() and
2903 * process_task().
2904 * Iterate through all the tasks in a cgroup, calling test_task() for each,
2905 * and if it returns true, call process_task() for it also.
2906 * The test_task pointer may be NULL, meaning always true (select all tasks).
2907 * Effectively duplicates cgroup_iter_{start,next,end}()
2908 * but does not lock css_set_lock for the call to process_task().
2909 * The struct cgroup_scanner may be embedded in any structure of the caller's
2910 * creation.
2911 * It is guaranteed that process_task() will act on every task that
2912 * is a member of the cgroup for the duration of this call. This
2913 * function may or may not call process_task() for tasks that exit
2914 * or move to a different cgroup during the call, or are forked or
2915 * move into the cgroup during the call.
2916 *
2917 * Note that test_task() may be called with locks held, and may in some
2918 * situations be called multiple times for the same task, so it should
2919 * be cheap.
2920 * If the heap pointer in the struct cgroup_scanner is non-NULL, a heap has been
2921 * pre-allocated and will be used for heap operations (and its "gt" member will
2922 * be overwritten), else a temporary heap will be used (allocation of which
2923 * may cause this function to fail).
2924 */
2925int cgroup_scan_tasks(struct cgroup_scanner *scan)
2926{
2927 int retval, i;
2928 struct cgroup_iter it;
2929 struct task_struct *p, *dropped;
2930 /* Never dereference latest_task, since it's not refcounted */
2931 struct task_struct *latest_task = NULL;
2932 struct ptr_heap tmp_heap;
2933 struct ptr_heap *heap;
2934 struct timespec latest_time = { 0, 0 };
2935
2936 if (scan->heap) {
2937 /* The caller supplied our heap and pre-allocated its memory */
2938 heap = scan->heap;
2939 heap->gt = &started_after;
2940 } else {
2941 /* We need to allocate our own heap memory */
2942 heap = &tmp_heap;
2943 retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after);
2944 if (retval)
2945 /* cannot allocate the heap */
2946 return retval;
2947 }
2948
2949 again:
2950 /*
2951 * Scan tasks in the cgroup, using the scanner's "test_task" callback
2952 * to determine which are of interest, and using the scanner's
2953 * "process_task" callback to process any of them that need an update.
2954 * Since we don't want to hold any locks during the task updates,
2955 * gather tasks to be processed in a heap structure.
2956 * The heap is sorted by descending task start time.
2957 * If the statically-sized heap fills up, we overflow tasks that
2958 * started later, and in future iterations only consider tasks that
2959 * started after the latest task in the previous pass. This
2960 * guarantees forward progress and that we don't miss any tasks.
2961 */
2962 heap->size = 0;
2963 cgroup_iter_start(scan->cg, &it);
2964 while ((p = cgroup_iter_next(scan->cg, &it))) {
2965 /*
2966 * Only affect tasks that qualify per the caller's callback,
2967 * if he provided one
2968 */
2969 if (scan->test_task && !scan->test_task(p, scan))
2970 continue;
2971 /*
2972 * Only process tasks that started after the last task
2973 * we processed
2974 */
2975 if (!started_after_time(p, &latest_time, latest_task))
2976 continue;
2977 dropped = heap_insert(heap, p);
2978 if (dropped == NULL) {
2979 /*
2980 * The new task was inserted; the heap wasn't
2981 * previously full
2982 */
2983 get_task_struct(p);
2984 } else if (dropped != p) {
2985 /*
2986 * The new task was inserted, and pushed out a
2987 * different task
2988 */
2989 get_task_struct(p);
2990 put_task_struct(dropped);
2991 }
2992 /*
2993 * Else the new task was newer than anything already in
2994 * the heap and wasn't inserted
2995 */
2996 }
2997 cgroup_iter_end(scan->cg, &it);
2998
2999 if (heap->size) {
3000 for (i = 0; i < heap->size; i++) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07003001 struct task_struct *q = heap->ptrs[i];
Cliff Wickman31a7df02008-02-07 00:14:42 -08003002 if (i == 0) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07003003 latest_time = q->start_time;
3004 latest_task = q;
Cliff Wickman31a7df02008-02-07 00:14:42 -08003005 }
3006 /* Process the task per the caller's callback */
Paul Jackson4fe91d52008-04-29 00:59:55 -07003007 scan->process_task(q, scan);
3008 put_task_struct(q);
Cliff Wickman31a7df02008-02-07 00:14:42 -08003009 }
3010 /*
3011 * If we had to process any tasks at all, scan again
3012 * in case some of them were in the middle of forking
3013 * children that didn't get processed.
3014 * Not the most efficient way to do it, but it avoids
3015 * having to take callback_mutex in the fork path
3016 */
3017 goto again;
3018 }
3019 if (heap == &tmp_heap)
3020 heap_free(&tmp_heap);
3021 return 0;
3022}
3023
Paul Menage817929e2007-10-18 23:39:36 -07003024/*
Ben Blum102a7752009-09-23 15:56:26 -07003025 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003026 *
3027 * Reading this file can return large amounts of data if a cgroup has
3028 * *lots* of attached tasks. So it may need several calls to read(),
3029 * but we cannot guarantee that the information we produce is correct
3030 * unless we produce it entirely atomically.
3031 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07003032 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003033
3034/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07003035 * The following two functions "fix" the issue where there are more pids
3036 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
3037 * TODO: replace with a kernel-wide solution to this problem
3038 */
3039#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
3040static void *pidlist_allocate(int count)
3041{
3042 if (PIDLIST_TOO_LARGE(count))
3043 return vmalloc(count * sizeof(pid_t));
3044 else
3045 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
3046}
3047static void pidlist_free(void *p)
3048{
3049 if (is_vmalloc_addr(p))
3050 vfree(p);
3051 else
3052 kfree(p);
3053}
3054static void *pidlist_resize(void *p, int newcount)
3055{
3056 void *newlist;
3057 /* note: if new alloc fails, old p will still be valid either way */
3058 if (is_vmalloc_addr(p)) {
3059 newlist = vmalloc(newcount * sizeof(pid_t));
3060 if (!newlist)
3061 return NULL;
3062 memcpy(newlist, p, newcount * sizeof(pid_t));
3063 vfree(p);
3064 } else {
3065 newlist = krealloc(p, newcount * sizeof(pid_t), GFP_KERNEL);
3066 }
3067 return newlist;
3068}
3069
3070/*
Ben Blum102a7752009-09-23 15:56:26 -07003071 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
3072 * If the new stripped list is sufficiently smaller and there's enough memory
3073 * to allocate a new buffer, will let go of the unneeded memory. Returns the
3074 * number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003075 */
Ben Blum102a7752009-09-23 15:56:26 -07003076/* is the size difference enough that we should re-allocate the array? */
3077#define PIDLIST_REALLOC_DIFFERENCE(old, new) ((old) - PAGE_SIZE >= (new))
3078static int pidlist_uniq(pid_t **p, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003079{
Ben Blum102a7752009-09-23 15:56:26 -07003080 int src, dest = 1;
3081 pid_t *list = *p;
3082 pid_t *newlist;
3083
3084 /*
3085 * we presume the 0th element is unique, so i starts at 1. trivial
3086 * edge cases first; no work needs to be done for either
3087 */
3088 if (length == 0 || length == 1)
3089 return length;
3090 /* src and dest walk down the list; dest counts unique elements */
3091 for (src = 1; src < length; src++) {
3092 /* find next unique element */
3093 while (list[src] == list[src-1]) {
3094 src++;
3095 if (src == length)
3096 goto after;
3097 }
3098 /* dest always points to where the next unique element goes */
3099 list[dest] = list[src];
3100 dest++;
3101 }
3102after:
3103 /*
3104 * if the length difference is large enough, we want to allocate a
3105 * smaller buffer to save memory. if this fails due to out of memory,
3106 * we'll just stay with what we've got.
3107 */
3108 if (PIDLIST_REALLOC_DIFFERENCE(length, dest)) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07003109 newlist = pidlist_resize(list, dest);
Ben Blum102a7752009-09-23 15:56:26 -07003110 if (newlist)
3111 *p = newlist;
3112 }
3113 return dest;
3114}
3115
3116static int cmppid(const void *a, const void *b)
3117{
3118 return *(pid_t *)a - *(pid_t *)b;
3119}
3120
3121/*
Ben Blum72a8cb32009-09-23 15:56:27 -07003122 * find the appropriate pidlist for our purpose (given procs vs tasks)
3123 * returns with the lock on that pidlist already held, and takes care
3124 * of the use count, or returns NULL with no locks held if we're out of
3125 * memory.
3126 */
3127static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
3128 enum cgroup_filetype type)
3129{
3130 struct cgroup_pidlist *l;
3131 /* don't need task_nsproxy() if we're looking at ourself */
Li Zefanb70cc5f2010-03-10 15:22:12 -08003132 struct pid_namespace *ns = current->nsproxy->pid_ns;
3133
Ben Blum72a8cb32009-09-23 15:56:27 -07003134 /*
3135 * We can't drop the pidlist_mutex before taking the l->mutex in case
3136 * the last ref-holder is trying to remove l from the list at the same
3137 * time. Holding the pidlist_mutex precludes somebody taking whichever
3138 * list we find out from under us - compare release_pid_array().
3139 */
3140 mutex_lock(&cgrp->pidlist_mutex);
3141 list_for_each_entry(l, &cgrp->pidlists, links) {
3142 if (l->key.type == type && l->key.ns == ns) {
Ben Blum72a8cb32009-09-23 15:56:27 -07003143 /* make sure l doesn't vanish out from under us */
3144 down_write(&l->mutex);
3145 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003146 return l;
3147 }
3148 }
3149 /* entry not found; create a new one */
3150 l = kmalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
3151 if (!l) {
3152 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003153 return l;
3154 }
3155 init_rwsem(&l->mutex);
3156 down_write(&l->mutex);
3157 l->key.type = type;
Li Zefanb70cc5f2010-03-10 15:22:12 -08003158 l->key.ns = get_pid_ns(ns);
Ben Blum72a8cb32009-09-23 15:56:27 -07003159 l->use_count = 0; /* don't increment here */
3160 l->list = NULL;
3161 l->owner = cgrp;
3162 list_add(&l->links, &cgrp->pidlists);
3163 mutex_unlock(&cgrp->pidlist_mutex);
3164 return l;
3165}
3166
3167/*
Ben Blum102a7752009-09-23 15:56:26 -07003168 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
3169 */
Ben Blum72a8cb32009-09-23 15:56:27 -07003170static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
3171 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07003172{
3173 pid_t *array;
3174 int length;
3175 int pid, n = 0; /* used for populating the array */
Paul Menage817929e2007-10-18 23:39:36 -07003176 struct cgroup_iter it;
3177 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07003178 struct cgroup_pidlist *l;
3179
3180 /*
3181 * If cgroup gets more users after we read count, we won't have
3182 * enough space - tough. This race is indistinguishable to the
3183 * caller from the case that the additional cgroup users didn't
3184 * show up until sometime later on.
3185 */
3186 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003187 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07003188 if (!array)
3189 return -ENOMEM;
3190 /* now, populate the array */
Paul Menagebd89aab2007-10-18 23:40:44 -07003191 cgroup_iter_start(cgrp, &it);
3192 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Ben Blum102a7752009-09-23 15:56:26 -07003193 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07003194 break;
Ben Blum102a7752009-09-23 15:56:26 -07003195 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07003196 if (type == CGROUP_FILE_PROCS)
3197 pid = task_tgid_vnr(tsk);
3198 else
3199 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07003200 if (pid > 0) /* make sure to only use valid results */
3201 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07003202 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003203 cgroup_iter_end(cgrp, &it);
Ben Blum102a7752009-09-23 15:56:26 -07003204 length = n;
3205 /* now sort & (if procs) strip out duplicates */
3206 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07003207 if (type == CGROUP_FILE_PROCS)
Ben Blum102a7752009-09-23 15:56:26 -07003208 length = pidlist_uniq(&array, length);
Ben Blum72a8cb32009-09-23 15:56:27 -07003209 l = cgroup_pidlist_find(cgrp, type);
3210 if (!l) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07003211 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07003212 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07003213 }
Ben Blum72a8cb32009-09-23 15:56:27 -07003214 /* store array, freeing old if necessary - lock already held */
Ben Blumd1d9fd32009-09-23 15:56:28 -07003215 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07003216 l->list = array;
3217 l->length = length;
3218 l->use_count++;
3219 up_write(&l->mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003220 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07003221 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003222}
3223
Balbir Singh846c7bb2007-10-18 23:39:44 -07003224/**
Li Zefana043e3b2008-02-23 15:24:09 -08003225 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07003226 * @stats: cgroupstats to fill information into
3227 * @dentry: A dentry entry belonging to the cgroup for which stats have
3228 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08003229 *
3230 * Build and fill cgroupstats so that taskstats can export it to user
3231 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003232 */
3233int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
3234{
3235 int ret = -EINVAL;
Paul Menagebd89aab2007-10-18 23:40:44 -07003236 struct cgroup *cgrp;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003237 struct cgroup_iter it;
3238 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08003239
Balbir Singh846c7bb2007-10-18 23:39:44 -07003240 /*
Li Zefan33d283b2008-11-19 15:36:48 -08003241 * Validate dentry by checking the superblock operations,
3242 * and make sure it's a directory.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003243 */
Li Zefan33d283b2008-11-19 15:36:48 -08003244 if (dentry->d_sb->s_op != &cgroup_ops ||
3245 !S_ISDIR(dentry->d_inode->i_mode))
Balbir Singh846c7bb2007-10-18 23:39:44 -07003246 goto err;
3247
3248 ret = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07003249 cgrp = dentry->d_fsdata;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003250
Paul Menagebd89aab2007-10-18 23:40:44 -07003251 cgroup_iter_start(cgrp, &it);
3252 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07003253 switch (tsk->state) {
3254 case TASK_RUNNING:
3255 stats->nr_running++;
3256 break;
3257 case TASK_INTERRUPTIBLE:
3258 stats->nr_sleeping++;
3259 break;
3260 case TASK_UNINTERRUPTIBLE:
3261 stats->nr_uninterruptible++;
3262 break;
3263 case TASK_STOPPED:
3264 stats->nr_stopped++;
3265 break;
3266 default:
3267 if (delayacct_is_task_waiting_on_io(tsk))
3268 stats->nr_io_wait++;
3269 break;
3270 }
3271 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003272 cgroup_iter_end(cgrp, &it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07003273
Balbir Singh846c7bb2007-10-18 23:39:44 -07003274err:
3275 return ret;
3276}
3277
Paul Menage8f3ff202009-09-23 15:56:25 -07003278
Paul Menagecc31edc2008-10-18 20:28:04 -07003279/*
Ben Blum102a7752009-09-23 15:56:26 -07003280 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07003281 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07003282 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07003283 */
3284
Ben Blum102a7752009-09-23 15:56:26 -07003285static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003286{
3287 /*
3288 * Initially we receive a position value that corresponds to
3289 * one more than the last pid shown (or 0 on the first call or
3290 * after a seek to the start). Use a binary-search to find the
3291 * next pid to display, if any
3292 */
Ben Blum102a7752009-09-23 15:56:26 -07003293 struct cgroup_pidlist *l = s->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07003294 int index = 0, pid = *pos;
3295 int *iter;
3296
Ben Blum102a7752009-09-23 15:56:26 -07003297 down_read(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003298 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07003299 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11003300
Paul Menagecc31edc2008-10-18 20:28:04 -07003301 while (index < end) {
3302 int mid = (index + end) / 2;
Ben Blum102a7752009-09-23 15:56:26 -07003303 if (l->list[mid] == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07003304 index = mid;
3305 break;
Ben Blum102a7752009-09-23 15:56:26 -07003306 } else if (l->list[mid] <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07003307 index = mid + 1;
3308 else
3309 end = mid;
3310 }
3311 }
3312 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07003313 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07003314 return NULL;
3315 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07003316 iter = l->list + index;
Paul Menagecc31edc2008-10-18 20:28:04 -07003317 *pos = *iter;
3318 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003319}
3320
Ben Blum102a7752009-09-23 15:56:26 -07003321static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003322{
Ben Blum102a7752009-09-23 15:56:26 -07003323 struct cgroup_pidlist *l = s->private;
3324 up_read(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003325}
3326
Ben Blum102a7752009-09-23 15:56:26 -07003327static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003328{
Ben Blum102a7752009-09-23 15:56:26 -07003329 struct cgroup_pidlist *l = s->private;
3330 pid_t *p = v;
3331 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07003332 /*
3333 * Advance to the next pid in the array. If this goes off the
3334 * end, we're done
3335 */
3336 p++;
3337 if (p >= end) {
3338 return NULL;
3339 } else {
3340 *pos = *p;
3341 return p;
3342 }
3343}
3344
Ben Blum102a7752009-09-23 15:56:26 -07003345static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003346{
3347 return seq_printf(s, "%d\n", *(int *)v);
3348}
3349
Ben Blum102a7752009-09-23 15:56:26 -07003350/*
3351 * seq_operations functions for iterating on pidlists through seq_file -
3352 * independent of whether it's tasks or procs
3353 */
3354static const struct seq_operations cgroup_pidlist_seq_operations = {
3355 .start = cgroup_pidlist_start,
3356 .stop = cgroup_pidlist_stop,
3357 .next = cgroup_pidlist_next,
3358 .show = cgroup_pidlist_show,
Paul Menagecc31edc2008-10-18 20:28:04 -07003359};
3360
Ben Blum102a7752009-09-23 15:56:26 -07003361static void cgroup_release_pid_array(struct cgroup_pidlist *l)
Paul Menagecc31edc2008-10-18 20:28:04 -07003362{
Ben Blum72a8cb32009-09-23 15:56:27 -07003363 /*
3364 * the case where we're the last user of this particular pidlist will
3365 * have us remove it from the cgroup's list, which entails taking the
3366 * mutex. since in pidlist_find the pidlist->lock depends on cgroup->
3367 * pidlist_mutex, we have to take pidlist_mutex first.
3368 */
3369 mutex_lock(&l->owner->pidlist_mutex);
Ben Blum102a7752009-09-23 15:56:26 -07003370 down_write(&l->mutex);
3371 BUG_ON(!l->use_count);
3372 if (!--l->use_count) {
Ben Blum72a8cb32009-09-23 15:56:27 -07003373 /* we're the last user if refcount is 0; remove and free */
3374 list_del(&l->links);
3375 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003376 pidlist_free(l->list);
Ben Blum72a8cb32009-09-23 15:56:27 -07003377 put_pid_ns(l->key.ns);
3378 up_write(&l->mutex);
3379 kfree(l);
3380 return;
Paul Menagecc31edc2008-10-18 20:28:04 -07003381 }
Ben Blum72a8cb32009-09-23 15:56:27 -07003382 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blum102a7752009-09-23 15:56:26 -07003383 up_write(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003384}
3385
Ben Blum102a7752009-09-23 15:56:26 -07003386static int cgroup_pidlist_release(struct inode *inode, struct file *file)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003387{
Ben Blum102a7752009-09-23 15:56:26 -07003388 struct cgroup_pidlist *l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003389 if (!(file->f_mode & FMODE_READ))
3390 return 0;
Ben Blum102a7752009-09-23 15:56:26 -07003391 /*
3392 * the seq_file will only be initialized if the file was opened for
3393 * reading; hence we check if it's not null only in that case.
3394 */
3395 l = ((struct seq_file *)file->private_data)->private;
3396 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07003397 return seq_release(inode, file);
3398}
3399
Ben Blum102a7752009-09-23 15:56:26 -07003400static const struct file_operations cgroup_pidlist_operations = {
Paul Menagecc31edc2008-10-18 20:28:04 -07003401 .read = seq_read,
3402 .llseek = seq_lseek,
3403 .write = cgroup_file_write,
Ben Blum102a7752009-09-23 15:56:26 -07003404 .release = cgroup_pidlist_release,
Paul Menagecc31edc2008-10-18 20:28:04 -07003405};
3406
3407/*
Ben Blum102a7752009-09-23 15:56:26 -07003408 * The following functions handle opens on a file that displays a pidlist
3409 * (tasks or procs). Prepare an array of the process/thread IDs of whoever's
3410 * in the cgroup.
Paul Menagecc31edc2008-10-18 20:28:04 -07003411 */
Ben Blum102a7752009-09-23 15:56:26 -07003412/* helper function for the two below it */
Ben Blum72a8cb32009-09-23 15:56:27 -07003413static int cgroup_pidlist_open(struct file *file, enum cgroup_filetype type)
Paul Menagecc31edc2008-10-18 20:28:04 -07003414{
3415 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Ben Blum72a8cb32009-09-23 15:56:27 -07003416 struct cgroup_pidlist *l;
Paul Menagecc31edc2008-10-18 20:28:04 -07003417 int retval;
3418
3419 /* Nothing to do for write-only files */
3420 if (!(file->f_mode & FMODE_READ))
3421 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003422
Ben Blum102a7752009-09-23 15:56:26 -07003423 /* have the array populated */
Ben Blum72a8cb32009-09-23 15:56:27 -07003424 retval = pidlist_array_load(cgrp, type, &l);
Ben Blum102a7752009-09-23 15:56:26 -07003425 if (retval)
3426 return retval;
3427 /* configure file information */
3428 file->f_op = &cgroup_pidlist_operations;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003429
Ben Blum102a7752009-09-23 15:56:26 -07003430 retval = seq_open(file, &cgroup_pidlist_seq_operations);
Paul Menagecc31edc2008-10-18 20:28:04 -07003431 if (retval) {
Ben Blum102a7752009-09-23 15:56:26 -07003432 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07003433 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003434 }
Ben Blum102a7752009-09-23 15:56:26 -07003435 ((struct seq_file *)file->private_data)->private = l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003436 return 0;
3437}
Ben Blum102a7752009-09-23 15:56:26 -07003438static int cgroup_tasks_open(struct inode *unused, struct file *file)
3439{
Ben Blum72a8cb32009-09-23 15:56:27 -07003440 return cgroup_pidlist_open(file, CGROUP_FILE_TASKS);
Ben Blum102a7752009-09-23 15:56:26 -07003441}
3442static int cgroup_procs_open(struct inode *unused, struct file *file)
3443{
Ben Blum72a8cb32009-09-23 15:56:27 -07003444 return cgroup_pidlist_open(file, CGROUP_FILE_PROCS);
Ben Blum102a7752009-09-23 15:56:26 -07003445}
Paul Menagebbcb81d2007-10-18 23:39:32 -07003446
Paul Menagebd89aab2007-10-18 23:40:44 -07003447static u64 cgroup_read_notify_on_release(struct cgroup *cgrp,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003448 struct cftype *cft)
3449{
Paul Menagebd89aab2007-10-18 23:40:44 -07003450 return notify_on_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003451}
3452
Paul Menage6379c102008-07-25 01:47:01 -07003453static int cgroup_write_notify_on_release(struct cgroup *cgrp,
3454 struct cftype *cft,
3455 u64 val)
3456{
3457 clear_bit(CGRP_RELEASABLE, &cgrp->flags);
3458 if (val)
3459 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3460 else
3461 clear_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3462 return 0;
3463}
3464
Paul Menagebbcb81d2007-10-18 23:39:32 -07003465/*
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003466 * Unregister event and free resources.
3467 *
3468 * Gets called from workqueue.
3469 */
3470static void cgroup_event_remove(struct work_struct *work)
3471{
3472 struct cgroup_event *event = container_of(work, struct cgroup_event,
3473 remove);
3474 struct cgroup *cgrp = event->cgrp;
3475
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003476 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3477
3478 eventfd_ctx_put(event->eventfd);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003479 kfree(event);
Kirill A. Shutemova0a4db52010-03-10 15:22:34 -08003480 dput(cgrp->dentry);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003481}
3482
3483/*
3484 * Gets called on POLLHUP on eventfd when user closes it.
3485 *
3486 * Called with wqh->lock held and interrupts disabled.
3487 */
3488static int cgroup_event_wake(wait_queue_t *wait, unsigned mode,
3489 int sync, void *key)
3490{
3491 struct cgroup_event *event = container_of(wait,
3492 struct cgroup_event, wait);
3493 struct cgroup *cgrp = event->cgrp;
3494 unsigned long flags = (unsigned long)key;
3495
3496 if (flags & POLLHUP) {
Changli Gaoa93d2f12010-05-07 14:33:26 +08003497 __remove_wait_queue(event->wqh, &event->wait);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003498 spin_lock(&cgrp->event_list_lock);
3499 list_del(&event->list);
3500 spin_unlock(&cgrp->event_list_lock);
3501 /*
3502 * We are in atomic context, but cgroup_event_remove() may
3503 * sleep, so we have to call it in workqueue.
3504 */
3505 schedule_work(&event->remove);
3506 }
3507
3508 return 0;
3509}
3510
3511static void cgroup_event_ptable_queue_proc(struct file *file,
3512 wait_queue_head_t *wqh, poll_table *pt)
3513{
3514 struct cgroup_event *event = container_of(pt,
3515 struct cgroup_event, pt);
3516
3517 event->wqh = wqh;
3518 add_wait_queue(wqh, &event->wait);
3519}
3520
3521/*
3522 * Parse input and register new cgroup event handler.
3523 *
3524 * Input must be in format '<event_fd> <control_fd> <args>'.
3525 * Interpretation of args is defined by control file implementation.
3526 */
3527static int cgroup_write_event_control(struct cgroup *cgrp, struct cftype *cft,
3528 const char *buffer)
3529{
3530 struct cgroup_event *event = NULL;
3531 unsigned int efd, cfd;
3532 struct file *efile = NULL;
3533 struct file *cfile = NULL;
3534 char *endp;
3535 int ret;
3536
3537 efd = simple_strtoul(buffer, &endp, 10);
3538 if (*endp != ' ')
3539 return -EINVAL;
3540 buffer = endp + 1;
3541
3542 cfd = simple_strtoul(buffer, &endp, 10);
3543 if ((*endp != ' ') && (*endp != '\0'))
3544 return -EINVAL;
3545 buffer = endp + 1;
3546
3547 event = kzalloc(sizeof(*event), GFP_KERNEL);
3548 if (!event)
3549 return -ENOMEM;
3550 event->cgrp = cgrp;
3551 INIT_LIST_HEAD(&event->list);
3552 init_poll_funcptr(&event->pt, cgroup_event_ptable_queue_proc);
3553 init_waitqueue_func_entry(&event->wait, cgroup_event_wake);
3554 INIT_WORK(&event->remove, cgroup_event_remove);
3555
3556 efile = eventfd_fget(efd);
3557 if (IS_ERR(efile)) {
3558 ret = PTR_ERR(efile);
3559 goto fail;
3560 }
3561
3562 event->eventfd = eventfd_ctx_fileget(efile);
3563 if (IS_ERR(event->eventfd)) {
3564 ret = PTR_ERR(event->eventfd);
3565 goto fail;
3566 }
3567
3568 cfile = fget(cfd);
3569 if (!cfile) {
3570 ret = -EBADF;
3571 goto fail;
3572 }
3573
3574 /* the process need read permission on control file */
3575 ret = file_permission(cfile, MAY_READ);
3576 if (ret < 0)
3577 goto fail;
3578
3579 event->cft = __file_cft(cfile);
3580 if (IS_ERR(event->cft)) {
3581 ret = PTR_ERR(event->cft);
3582 goto fail;
3583 }
3584
3585 if (!event->cft->register_event || !event->cft->unregister_event) {
3586 ret = -EINVAL;
3587 goto fail;
3588 }
3589
3590 ret = event->cft->register_event(cgrp, event->cft,
3591 event->eventfd, buffer);
3592 if (ret)
3593 goto fail;
3594
3595 if (efile->f_op->poll(efile, &event->pt) & POLLHUP) {
3596 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3597 ret = 0;
3598 goto fail;
3599 }
3600
Kirill A. Shutemova0a4db52010-03-10 15:22:34 -08003601 /*
3602 * Events should be removed after rmdir of cgroup directory, but before
3603 * destroying subsystem state objects. Let's take reference to cgroup
3604 * directory dentry to do that.
3605 */
3606 dget(cgrp->dentry);
3607
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003608 spin_lock(&cgrp->event_list_lock);
3609 list_add(&event->list, &cgrp->event_list);
3610 spin_unlock(&cgrp->event_list_lock);
3611
3612 fput(cfile);
3613 fput(efile);
3614
3615 return 0;
3616
3617fail:
3618 if (cfile)
3619 fput(cfile);
3620
3621 if (event && event->eventfd && !IS_ERR(event->eventfd))
3622 eventfd_ctx_put(event->eventfd);
3623
3624 if (!IS_ERR_OR_NULL(efile))
3625 fput(efile);
3626
3627 kfree(event);
3628
3629 return ret;
3630}
3631
Daniel Lezcano97978e62010-10-27 15:33:35 -07003632static u64 cgroup_clone_children_read(struct cgroup *cgrp,
3633 struct cftype *cft)
3634{
3635 return clone_children(cgrp);
3636}
3637
3638static int cgroup_clone_children_write(struct cgroup *cgrp,
3639 struct cftype *cft,
3640 u64 val)
3641{
3642 if (val)
3643 set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3644 else
3645 clear_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3646 return 0;
3647}
3648
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003649/*
Paul Menagebbcb81d2007-10-18 23:39:32 -07003650 * for the common functions, 'private' gives the type of file
3651 */
Ben Blum102a7752009-09-23 15:56:26 -07003652/* for hysterical raisins, we can't put this on the older files */
3653#define CGROUP_FILE_GENERIC_PREFIX "cgroup."
Paul Menage81a6a5c2007-10-18 23:39:38 -07003654static struct cftype files[] = {
3655 {
3656 .name = "tasks",
3657 .open = cgroup_tasks_open,
Paul Menageaf351022008-07-25 01:47:01 -07003658 .write_u64 = cgroup_tasks_write,
Ben Blum102a7752009-09-23 15:56:26 -07003659 .release = cgroup_pidlist_release,
Li Zefan099fca32009-04-02 16:57:29 -07003660 .mode = S_IRUGO | S_IWUSR,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003661 },
Ben Blum102a7752009-09-23 15:56:26 -07003662 {
3663 .name = CGROUP_FILE_GENERIC_PREFIX "procs",
3664 .open = cgroup_procs_open,
Ben Blum74a11662011-05-26 16:25:20 -07003665 .write_u64 = cgroup_procs_write,
Ben Blum102a7752009-09-23 15:56:26 -07003666 .release = cgroup_pidlist_release,
Ben Blum74a11662011-05-26 16:25:20 -07003667 .mode = S_IRUGO | S_IWUSR,
Ben Blum102a7752009-09-23 15:56:26 -07003668 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003669 {
3670 .name = "notify_on_release",
Paul Menagef4c753b2008-04-29 00:59:56 -07003671 .read_u64 = cgroup_read_notify_on_release,
Paul Menage6379c102008-07-25 01:47:01 -07003672 .write_u64 = cgroup_write_notify_on_release,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003673 },
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003674 {
3675 .name = CGROUP_FILE_GENERIC_PREFIX "event_control",
3676 .write_string = cgroup_write_event_control,
3677 .mode = S_IWUGO,
3678 },
Daniel Lezcano97978e62010-10-27 15:33:35 -07003679 {
3680 .name = "cgroup.clone_children",
3681 .read_u64 = cgroup_clone_children_read,
3682 .write_u64 = cgroup_clone_children_write,
3683 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003684};
3685
3686static struct cftype cft_release_agent = {
3687 .name = "release_agent",
Paul Menagee788e062008-07-25 01:46:59 -07003688 .read_seq_string = cgroup_release_agent_show,
3689 .write_string = cgroup_release_agent_write,
3690 .max_write_len = PATH_MAX,
Paul Menagebbcb81d2007-10-18 23:39:32 -07003691};
3692
Paul Menagebd89aab2007-10-18 23:40:44 -07003693static int cgroup_populate_dir(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003694{
3695 int err;
3696 struct cgroup_subsys *ss;
3697
3698 /* First clear out any existing files */
Paul Menagebd89aab2007-10-18 23:40:44 -07003699 cgroup_clear_directory(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003700
Paul Menagebd89aab2007-10-18 23:40:44 -07003701 err = cgroup_add_files(cgrp, NULL, files, ARRAY_SIZE(files));
Paul Menagebbcb81d2007-10-18 23:39:32 -07003702 if (err < 0)
3703 return err;
3704
Paul Menagebd89aab2007-10-18 23:40:44 -07003705 if (cgrp == cgrp->top_cgroup) {
3706 if ((err = cgroup_add_file(cgrp, NULL, &cft_release_agent)) < 0)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003707 return err;
3708 }
3709
Paul Menagebd89aab2007-10-18 23:40:44 -07003710 for_each_subsys(cgrp->root, ss) {
3711 if (ss->populate && (err = ss->populate(ss, cgrp)) < 0)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003712 return err;
3713 }
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003714 /* This cgroup is ready now */
3715 for_each_subsys(cgrp->root, ss) {
3716 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3717 /*
3718 * Update id->css pointer and make this css visible from
3719 * CSS ID functions. This pointer will be dereferened
3720 * from RCU-read-side without locks.
3721 */
3722 if (css->id)
3723 rcu_assign_pointer(css->id->css, css);
3724 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003725
3726 return 0;
3727}
3728
3729static void init_cgroup_css(struct cgroup_subsys_state *css,
3730 struct cgroup_subsys *ss,
Paul Menagebd89aab2007-10-18 23:40:44 -07003731 struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003732{
Paul Menagebd89aab2007-10-18 23:40:44 -07003733 css->cgroup = cgrp;
Paul Menagee7c5ec92009-01-07 18:08:38 -08003734 atomic_set(&css->refcnt, 1);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003735 css->flags = 0;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003736 css->id = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07003737 if (cgrp == dummytop)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003738 set_bit(CSS_ROOT, &css->flags);
Paul Menagebd89aab2007-10-18 23:40:44 -07003739 BUG_ON(cgrp->subsys[ss->subsys_id]);
3740 cgrp->subsys[ss->subsys_id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003741}
3742
Paul Menage999cd8a2009-01-07 18:08:36 -08003743static void cgroup_lock_hierarchy(struct cgroupfs_root *root)
3744{
3745 /* We need to take each hierarchy_mutex in a consistent order */
3746 int i;
3747
Ben Blumaae8aab2010-03-10 15:22:07 -08003748 /*
3749 * No worry about a race with rebind_subsystems that might mess up the
3750 * locking order, since both parties are under cgroup_mutex.
3751 */
Paul Menage999cd8a2009-01-07 18:08:36 -08003752 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3753 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08003754 if (ss == NULL)
3755 continue;
Paul Menage999cd8a2009-01-07 18:08:36 -08003756 if (ss->root == root)
Li Zefancfebe562009-02-11 13:04:36 -08003757 mutex_lock(&ss->hierarchy_mutex);
Paul Menage999cd8a2009-01-07 18:08:36 -08003758 }
3759}
3760
3761static void cgroup_unlock_hierarchy(struct cgroupfs_root *root)
3762{
3763 int i;
3764
3765 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3766 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08003767 if (ss == NULL)
3768 continue;
Paul Menage999cd8a2009-01-07 18:08:36 -08003769 if (ss->root == root)
3770 mutex_unlock(&ss->hierarchy_mutex);
3771 }
3772}
3773
Paul Menageddbcc7e2007-10-18 23:39:30 -07003774/*
Li Zefana043e3b2008-02-23 15:24:09 -08003775 * cgroup_create - create a cgroup
3776 * @parent: cgroup that will be parent of the new cgroup
3777 * @dentry: dentry of the new cgroup
3778 * @mode: mode to set on new inode
Paul Menageddbcc7e2007-10-18 23:39:30 -07003779 *
Li Zefana043e3b2008-02-23 15:24:09 -08003780 * Must be called with the mutex on the parent inode held
Paul Menageddbcc7e2007-10-18 23:39:30 -07003781 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07003782static long cgroup_create(struct cgroup *parent, struct dentry *dentry,
Li Zefan099fca32009-04-02 16:57:29 -07003783 mode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003784{
Paul Menagebd89aab2007-10-18 23:40:44 -07003785 struct cgroup *cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003786 struct cgroupfs_root *root = parent->root;
3787 int err = 0;
3788 struct cgroup_subsys *ss;
3789 struct super_block *sb = root->sb;
3790
Paul Menagebd89aab2007-10-18 23:40:44 -07003791 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
3792 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003793 return -ENOMEM;
3794
3795 /* Grab a reference on the superblock so the hierarchy doesn't
3796 * get deleted on unmount if there are child cgroups. This
3797 * can be done outside cgroup_mutex, since the sb can't
3798 * disappear while someone has an open control file on the
3799 * fs */
3800 atomic_inc(&sb->s_active);
3801
3802 mutex_lock(&cgroup_mutex);
3803
Paul Menagecc31edc2008-10-18 20:28:04 -07003804 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003805
Paul Menagebd89aab2007-10-18 23:40:44 -07003806 cgrp->parent = parent;
3807 cgrp->root = parent->root;
3808 cgrp->top_cgroup = parent->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003809
Li Zefanb6abdb02008-03-04 14:28:19 -08003810 if (notify_on_release(parent))
3811 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3812
Daniel Lezcano97978e62010-10-27 15:33:35 -07003813 if (clone_children(parent))
3814 set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3815
Paul Menageddbcc7e2007-10-18 23:39:30 -07003816 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07003817 struct cgroup_subsys_state *css = ss->create(ss, cgrp);
Li Zefan4528fd02010-02-02 13:44:10 -08003818
Paul Menageddbcc7e2007-10-18 23:39:30 -07003819 if (IS_ERR(css)) {
3820 err = PTR_ERR(css);
3821 goto err_destroy;
3822 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003823 init_cgroup_css(css, ss, cgrp);
Li Zefan4528fd02010-02-02 13:44:10 -08003824 if (ss->use_id) {
3825 err = alloc_css_id(ss, parent, cgrp);
3826 if (err)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003827 goto err_destroy;
Li Zefan4528fd02010-02-02 13:44:10 -08003828 }
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003829 /* At error, ->destroy() callback has to free assigned ID. */
Daniel Lezcano97978e62010-10-27 15:33:35 -07003830 if (clone_children(parent) && ss->post_clone)
3831 ss->post_clone(ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003832 }
3833
Paul Menage999cd8a2009-01-07 18:08:36 -08003834 cgroup_lock_hierarchy(root);
Paul Menagebd89aab2007-10-18 23:40:44 -07003835 list_add(&cgrp->sibling, &cgrp->parent->children);
Paul Menage999cd8a2009-01-07 18:08:36 -08003836 cgroup_unlock_hierarchy(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003837 root->number_of_cgroups++;
3838
Paul Menagebd89aab2007-10-18 23:40:44 -07003839 err = cgroup_create_dir(cgrp, dentry, mode);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003840 if (err < 0)
3841 goto err_remove;
3842
Colin Cross6d51e762010-11-23 21:37:03 -08003843 set_bit(CGRP_RELEASABLE, &parent->flags);
3844
Paul Menageddbcc7e2007-10-18 23:39:30 -07003845 /* The cgroup directory was pre-locked for us */
Paul Menagebd89aab2007-10-18 23:40:44 -07003846 BUG_ON(!mutex_is_locked(&cgrp->dentry->d_inode->i_mutex));
Paul Menageddbcc7e2007-10-18 23:39:30 -07003847
Paul Menagebd89aab2007-10-18 23:40:44 -07003848 err = cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003849 /* If err < 0, we have a half-filled directory - oh well ;) */
3850
3851 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07003852 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003853
3854 return 0;
3855
3856 err_remove:
3857
KAMEZAWA Hiroyukibaef99a2009-01-29 14:25:10 -08003858 cgroup_lock_hierarchy(root);
Paul Menagebd89aab2007-10-18 23:40:44 -07003859 list_del(&cgrp->sibling);
KAMEZAWA Hiroyukibaef99a2009-01-29 14:25:10 -08003860 cgroup_unlock_hierarchy(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003861 root->number_of_cgroups--;
3862
3863 err_destroy:
3864
3865 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07003866 if (cgrp->subsys[ss->subsys_id])
3867 ss->destroy(ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003868 }
3869
3870 mutex_unlock(&cgroup_mutex);
3871
3872 /* Release the reference count that we took on the superblock */
3873 deactivate_super(sb);
3874
Paul Menagebd89aab2007-10-18 23:40:44 -07003875 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003876 return err;
3877}
3878
3879static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode)
3880{
3881 struct cgroup *c_parent = dentry->d_parent->d_fsdata;
3882
3883 /* the vfs holds inode->i_mutex already */
3884 return cgroup_create(c_parent, dentry, mode | S_IFDIR);
3885}
3886
Li Zefan55b6fd02008-07-29 22:33:20 -07003887static int cgroup_has_css_refs(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003888{
3889 /* Check the reference count on each subsystem. Since we
3890 * already established that there are no tasks in the
Paul Menagee7c5ec92009-01-07 18:08:38 -08003891 * cgroup, if the css refcount is also 1, then there should
Paul Menage81a6a5c2007-10-18 23:39:38 -07003892 * be no outstanding references, so the subsystem is safe to
3893 * destroy. We scan across all subsystems rather than using
3894 * the per-hierarchy linked list of mounted subsystems since
3895 * we can be called via check_for_release() with no
3896 * synchronization other than RCU, and the subsystem linked
3897 * list isn't RCU-safe */
3898 int i;
Ben Blumaae8aab2010-03-10 15:22:07 -08003899 /*
3900 * We won't need to lock the subsys array, because the subsystems
3901 * we're concerned about aren't going anywhere since our cgroup root
3902 * has a reference on them.
3903 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07003904 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3905 struct cgroup_subsys *ss = subsys[i];
3906 struct cgroup_subsys_state *css;
Ben Blumaae8aab2010-03-10 15:22:07 -08003907 /* Skip subsystems not present or not in this hierarchy */
3908 if (ss == NULL || ss->root != cgrp->root)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003909 continue;
Paul Menagebd89aab2007-10-18 23:40:44 -07003910 css = cgrp->subsys[ss->subsys_id];
Paul Menage81a6a5c2007-10-18 23:39:38 -07003911 /* When called from check_for_release() it's possible
3912 * that by this point the cgroup has been removed
3913 * and the css deleted. But a false-positive doesn't
3914 * matter, since it can only happen if the cgroup
3915 * has been deleted and hence no longer needs the
3916 * release agent to be called anyway. */
Paul Menagee7c5ec92009-01-07 18:08:38 -08003917 if (css && (atomic_read(&css->refcnt) > 1))
Paul Menage81a6a5c2007-10-18 23:39:38 -07003918 return 1;
Paul Menage81a6a5c2007-10-18 23:39:38 -07003919 }
3920 return 0;
3921}
3922
Paul Menagee7c5ec92009-01-07 18:08:38 -08003923/*
3924 * Atomically mark all (or else none) of the cgroup's CSS objects as
3925 * CSS_REMOVED. Return true on success, or false if the cgroup has
3926 * busy subsystems. Call with cgroup_mutex held
3927 */
3928
3929static int cgroup_clear_css_refs(struct cgroup *cgrp)
3930{
3931 struct cgroup_subsys *ss;
3932 unsigned long flags;
3933 bool failed = false;
3934 local_irq_save(flags);
3935 for_each_subsys(cgrp->root, ss) {
3936 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3937 int refcnt;
Paul Menage804b3c22009-01-29 14:25:21 -08003938 while (1) {
Paul Menagee7c5ec92009-01-07 18:08:38 -08003939 /* We can only remove a CSS with a refcnt==1 */
3940 refcnt = atomic_read(&css->refcnt);
3941 if (refcnt > 1) {
3942 failed = true;
3943 goto done;
3944 }
3945 BUG_ON(!refcnt);
3946 /*
3947 * Drop the refcnt to 0 while we check other
3948 * subsystems. This will cause any racing
3949 * css_tryget() to spin until we set the
3950 * CSS_REMOVED bits or abort
3951 */
Paul Menage804b3c22009-01-29 14:25:21 -08003952 if (atomic_cmpxchg(&css->refcnt, refcnt, 0) == refcnt)
3953 break;
3954 cpu_relax();
3955 }
Paul Menagee7c5ec92009-01-07 18:08:38 -08003956 }
3957 done:
3958 for_each_subsys(cgrp->root, ss) {
3959 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3960 if (failed) {
3961 /*
3962 * Restore old refcnt if we previously managed
3963 * to clear it from 1 to 0
3964 */
3965 if (!atomic_read(&css->refcnt))
3966 atomic_set(&css->refcnt, 1);
3967 } else {
3968 /* Commit the fact that the CSS is removed */
3969 set_bit(CSS_REMOVED, &css->flags);
3970 }
3971 }
3972 local_irq_restore(flags);
3973 return !failed;
3974}
3975
Colin Crossdbc38c62010-11-23 21:37:04 -08003976/* checks if all of the css_sets attached to a cgroup have a refcount of 0.
3977 * Must be called with css_set_lock held */
3978static int cgroup_css_sets_empty(struct cgroup *cgrp)
3979{
3980 struct cg_cgroup_link *link;
3981
3982 list_for_each_entry(link, &cgrp->css_sets, cgrp_link_list) {
3983 struct css_set *cg = link->cg;
3984 if (atomic_read(&cg->refcount) > 0)
3985 return 0;
3986 }
3987
3988 return 1;
3989}
3990
Paul Menageddbcc7e2007-10-18 23:39:30 -07003991static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry)
3992{
Paul Menagebd89aab2007-10-18 23:40:44 -07003993 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003994 struct dentry *d;
3995 struct cgroup *parent;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003996 DEFINE_WAIT(wait);
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08003997 struct cgroup_event *event, *tmp;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003998 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003999
4000 /* the vfs holds both inode->i_mutex already */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004001again:
Paul Menageddbcc7e2007-10-18 23:39:30 -07004002 mutex_lock(&cgroup_mutex);
Colin Crossdbc38c62010-11-23 21:37:04 -08004003 if (!cgroup_css_sets_empty(cgrp)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004004 mutex_unlock(&cgroup_mutex);
4005 return -EBUSY;
4006 }
Paul Menagebd89aab2007-10-18 23:40:44 -07004007 if (!list_empty(&cgrp->children)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004008 mutex_unlock(&cgroup_mutex);
4009 return -EBUSY;
4010 }
KAMEZAWA Hiroyuki3fa59df2008-11-19 15:36:34 -08004011 mutex_unlock(&cgroup_mutex);
Li Zefana043e3b2008-02-23 15:24:09 -08004012
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08004013 /*
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004014 * In general, subsystem has no css->refcnt after pre_destroy(). But
4015 * in racy cases, subsystem may have to get css->refcnt after
4016 * pre_destroy() and it makes rmdir return with -EBUSY. This sometimes
4017 * make rmdir return -EBUSY too often. To avoid that, we use waitqueue
4018 * for cgroup's rmdir. CGRP_WAIT_ON_RMDIR is for synchronizing rmdir
4019 * and subsystem's reference count handling. Please see css_get/put
4020 * and css_tryget() and cgroup_wakeup_rmdir_waiter() implementation.
4021 */
4022 set_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
4023
4024 /*
Li Zefana043e3b2008-02-23 15:24:09 -08004025 * Call pre_destroy handlers of subsys. Notify subsystems
4026 * that rmdir() request comes.
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08004027 */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004028 ret = cgroup_call_pre_destroy(cgrp);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004029 if (ret) {
4030 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004031 return ret;
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004032 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004033
KAMEZAWA Hiroyuki3fa59df2008-11-19 15:36:34 -08004034 mutex_lock(&cgroup_mutex);
4035 parent = cgrp->parent;
Colin Crossdbc38c62010-11-23 21:37:04 -08004036 if (!cgroup_css_sets_empty(cgrp) || !list_empty(&cgrp->children)) {
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004037 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004038 mutex_unlock(&cgroup_mutex);
4039 return -EBUSY;
4040 }
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004041 prepare_to_wait(&cgroup_rmdir_waitq, &wait, TASK_INTERRUPTIBLE);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004042 if (!cgroup_clear_css_refs(cgrp)) {
4043 mutex_unlock(&cgroup_mutex);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004044 /*
4045 * Because someone may call cgroup_wakeup_rmdir_waiter() before
4046 * prepare_to_wait(), we need to check this flag.
4047 */
4048 if (test_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags))
4049 schedule();
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004050 finish_wait(&cgroup_rmdir_waitq, &wait);
4051 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
4052 if (signal_pending(current))
4053 return -EINTR;
4054 goto again;
4055 }
4056 /* NO css_tryget() can success after here. */
4057 finish_wait(&cgroup_rmdir_waitq, &wait);
4058 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004059
Paul Menage81a6a5c2007-10-18 23:39:38 -07004060 spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07004061 set_bit(CGRP_REMOVED, &cgrp->flags);
4062 if (!list_empty(&cgrp->release_list))
Phil Carmody8d258792011-03-22 16:30:13 -07004063 list_del_init(&cgrp->release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004064 spin_unlock(&release_list_lock);
Paul Menage999cd8a2009-01-07 18:08:36 -08004065
4066 cgroup_lock_hierarchy(cgrp->root);
4067 /* delete this cgroup from parent->children */
Phil Carmody8d258792011-03-22 16:30:13 -07004068 list_del_init(&cgrp->sibling);
Paul Menage999cd8a2009-01-07 18:08:36 -08004069 cgroup_unlock_hierarchy(cgrp->root);
4070
Paul Menagebd89aab2007-10-18 23:40:44 -07004071 d = dget(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004072
4073 cgroup_d_remove_dir(d);
4074 dput(d);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004075
Paul Menage81a6a5c2007-10-18 23:39:38 -07004076 check_for_release(parent);
4077
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08004078 /*
4079 * Unregister events and notify userspace.
4080 * Notify userspace about cgroup removing only after rmdir of cgroup
4081 * directory to avoid race between userspace and kernelspace
4082 */
4083 spin_lock(&cgrp->event_list_lock);
4084 list_for_each_entry_safe(event, tmp, &cgrp->event_list, list) {
4085 list_del(&event->list);
4086 remove_wait_queue(event->wqh, &event->wait);
4087 eventfd_signal(event->eventfd, 1);
4088 schedule_work(&event->remove);
4089 }
4090 spin_unlock(&cgrp->event_list_lock);
4091
Paul Menageddbcc7e2007-10-18 23:39:30 -07004092 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004093 return 0;
4094}
4095
Li Zefan06a11922008-04-29 01:00:07 -07004096static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004097{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004098 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08004099
4100 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004101
4102 /* Create the top cgroup state for this subsystem */
Li Zefan33a68ac2009-01-07 18:07:42 -08004103 list_add(&ss->sibling, &rootnode.subsys_list);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004104 ss->root = &rootnode;
4105 css = ss->create(ss, dummytop);
4106 /* We don't handle early failures gracefully */
4107 BUG_ON(IS_ERR(css));
4108 init_cgroup_css(css, ss, dummytop);
4109
Li Zefane8d55fd2008-04-29 01:00:13 -07004110 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07004111 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07004112 * newly registered, all tasks and hence the
4113 * init_css_set is in the subsystem's top cgroup. */
4114 init_css_set.subsys[ss->subsys_id] = dummytop->subsys[ss->subsys_id];
Paul Menageddbcc7e2007-10-18 23:39:30 -07004115
4116 need_forkexit_callback |= ss->fork || ss->exit;
4117
Li Zefane8d55fd2008-04-29 01:00:13 -07004118 /* At system boot, before all subsystems have been
4119 * registered, no tasks have been forked, so we don't
4120 * need to invoke fork callbacks here. */
4121 BUG_ON(!list_empty(&init_task.tasks));
4122
Paul Menage999cd8a2009-01-07 18:08:36 -08004123 mutex_init(&ss->hierarchy_mutex);
Li Zefancfebe562009-02-11 13:04:36 -08004124 lockdep_set_class(&ss->hierarchy_mutex, &ss->subsys_key);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004125 ss->active = 1;
Ben Blume6a11052010-03-10 15:22:09 -08004126
4127 /* this function shouldn't be used with modular subsystems, since they
4128 * need to register a subsys_id, among other things */
4129 BUG_ON(ss->module);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004130}
4131
4132/**
Ben Blume6a11052010-03-10 15:22:09 -08004133 * cgroup_load_subsys: load and register a modular subsystem at runtime
4134 * @ss: the subsystem to load
4135 *
4136 * This function should be called in a modular subsystem's initcall. If the
Thomas Weber88393162010-03-16 11:47:56 +01004137 * subsystem is built as a module, it will be assigned a new subsys_id and set
Ben Blume6a11052010-03-10 15:22:09 -08004138 * up for use. If the subsystem is built-in anyway, work is delegated to the
4139 * simpler cgroup_init_subsys.
4140 */
4141int __init_or_module cgroup_load_subsys(struct cgroup_subsys *ss)
4142{
4143 int i;
4144 struct cgroup_subsys_state *css;
4145
4146 /* check name and function validity */
4147 if (ss->name == NULL || strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN ||
4148 ss->create == NULL || ss->destroy == NULL)
4149 return -EINVAL;
4150
4151 /*
4152 * we don't support callbacks in modular subsystems. this check is
4153 * before the ss->module check for consistency; a subsystem that could
4154 * be a module should still have no callbacks even if the user isn't
4155 * compiling it as one.
4156 */
4157 if (ss->fork || ss->exit)
4158 return -EINVAL;
4159
4160 /*
4161 * an optionally modular subsystem is built-in: we want to do nothing,
4162 * since cgroup_init_subsys will have already taken care of it.
4163 */
4164 if (ss->module == NULL) {
4165 /* a few sanity checks */
4166 BUG_ON(ss->subsys_id >= CGROUP_BUILTIN_SUBSYS_COUNT);
4167 BUG_ON(subsys[ss->subsys_id] != ss);
4168 return 0;
4169 }
4170
4171 /*
4172 * need to register a subsys id before anything else - for example,
4173 * init_cgroup_css needs it.
4174 */
4175 mutex_lock(&cgroup_mutex);
4176 /* find the first empty slot in the array */
4177 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
4178 if (subsys[i] == NULL)
4179 break;
4180 }
4181 if (i == CGROUP_SUBSYS_COUNT) {
4182 /* maximum number of subsystems already registered! */
4183 mutex_unlock(&cgroup_mutex);
4184 return -EBUSY;
4185 }
4186 /* assign ourselves the subsys_id */
4187 ss->subsys_id = i;
4188 subsys[i] = ss;
4189
4190 /*
4191 * no ss->create seems to need anything important in the ss struct, so
4192 * this can happen first (i.e. before the rootnode attachment).
4193 */
4194 css = ss->create(ss, dummytop);
4195 if (IS_ERR(css)) {
4196 /* failure case - need to deassign the subsys[] slot. */
4197 subsys[i] = NULL;
4198 mutex_unlock(&cgroup_mutex);
4199 return PTR_ERR(css);
4200 }
4201
4202 list_add(&ss->sibling, &rootnode.subsys_list);
4203 ss->root = &rootnode;
4204
4205 /* our new subsystem will be attached to the dummy hierarchy. */
4206 init_cgroup_css(css, ss, dummytop);
4207 /* init_idr must be after init_cgroup_css because it sets css->id. */
4208 if (ss->use_id) {
4209 int ret = cgroup_init_idr(ss, css);
4210 if (ret) {
4211 dummytop->subsys[ss->subsys_id] = NULL;
4212 ss->destroy(ss, dummytop);
4213 subsys[i] = NULL;
4214 mutex_unlock(&cgroup_mutex);
4215 return ret;
4216 }
4217 }
4218
4219 /*
4220 * Now we need to entangle the css into the existing css_sets. unlike
4221 * in cgroup_init_subsys, there are now multiple css_sets, so each one
4222 * will need a new pointer to it; done by iterating the css_set_table.
4223 * furthermore, modifying the existing css_sets will corrupt the hash
4224 * table state, so each changed css_set will need its hash recomputed.
4225 * this is all done under the css_set_lock.
4226 */
4227 write_lock(&css_set_lock);
4228 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
4229 struct css_set *cg;
4230 struct hlist_node *node, *tmp;
4231 struct hlist_head *bucket = &css_set_table[i], *new_bucket;
4232
4233 hlist_for_each_entry_safe(cg, node, tmp, bucket, hlist) {
4234 /* skip entries that we already rehashed */
4235 if (cg->subsys[ss->subsys_id])
4236 continue;
4237 /* remove existing entry */
4238 hlist_del(&cg->hlist);
4239 /* set new value */
4240 cg->subsys[ss->subsys_id] = css;
4241 /* recompute hash and restore entry */
4242 new_bucket = css_set_hash(cg->subsys);
4243 hlist_add_head(&cg->hlist, new_bucket);
4244 }
4245 }
4246 write_unlock(&css_set_lock);
4247
4248 mutex_init(&ss->hierarchy_mutex);
4249 lockdep_set_class(&ss->hierarchy_mutex, &ss->subsys_key);
4250 ss->active = 1;
4251
Ben Blume6a11052010-03-10 15:22:09 -08004252 /* success! */
4253 mutex_unlock(&cgroup_mutex);
4254 return 0;
4255}
4256EXPORT_SYMBOL_GPL(cgroup_load_subsys);
4257
4258/**
Ben Blumcf5d5942010-03-10 15:22:09 -08004259 * cgroup_unload_subsys: unload a modular subsystem
4260 * @ss: the subsystem to unload
4261 *
4262 * This function should be called in a modular subsystem's exitcall. When this
4263 * function is invoked, the refcount on the subsystem's module will be 0, so
4264 * the subsystem will not be attached to any hierarchy.
4265 */
4266void cgroup_unload_subsys(struct cgroup_subsys *ss)
4267{
4268 struct cg_cgroup_link *link;
4269 struct hlist_head *hhead;
4270
4271 BUG_ON(ss->module == NULL);
4272
4273 /*
4274 * we shouldn't be called if the subsystem is in use, and the use of
4275 * try_module_get in parse_cgroupfs_options should ensure that it
4276 * doesn't start being used while we're killing it off.
4277 */
4278 BUG_ON(ss->root != &rootnode);
4279
4280 mutex_lock(&cgroup_mutex);
4281 /* deassign the subsys_id */
4282 BUG_ON(ss->subsys_id < CGROUP_BUILTIN_SUBSYS_COUNT);
4283 subsys[ss->subsys_id] = NULL;
4284
4285 /* remove subsystem from rootnode's list of subsystems */
Phil Carmody8d258792011-03-22 16:30:13 -07004286 list_del_init(&ss->sibling);
Ben Blumcf5d5942010-03-10 15:22:09 -08004287
4288 /*
4289 * disentangle the css from all css_sets attached to the dummytop. as
4290 * in loading, we need to pay our respects to the hashtable gods.
4291 */
4292 write_lock(&css_set_lock);
4293 list_for_each_entry(link, &dummytop->css_sets, cgrp_link_list) {
4294 struct css_set *cg = link->cg;
4295
4296 hlist_del(&cg->hlist);
4297 BUG_ON(!cg->subsys[ss->subsys_id]);
4298 cg->subsys[ss->subsys_id] = NULL;
4299 hhead = css_set_hash(cg->subsys);
4300 hlist_add_head(&cg->hlist, hhead);
4301 }
4302 write_unlock(&css_set_lock);
4303
4304 /*
4305 * remove subsystem's css from the dummytop and free it - need to free
4306 * before marking as null because ss->destroy needs the cgrp->subsys
4307 * pointer to find their state. note that this also takes care of
4308 * freeing the css_id.
4309 */
4310 ss->destroy(ss, dummytop);
4311 dummytop->subsys[ss->subsys_id] = NULL;
4312
4313 mutex_unlock(&cgroup_mutex);
4314}
4315EXPORT_SYMBOL_GPL(cgroup_unload_subsys);
4316
4317/**
Li Zefana043e3b2008-02-23 15:24:09 -08004318 * cgroup_init_early - cgroup initialization at system boot
4319 *
4320 * Initialize cgroups at system boot, and initialize any
4321 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004322 */
4323int __init cgroup_init_early(void)
4324{
4325 int i;
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07004326 atomic_set(&init_css_set.refcount, 1);
Paul Menage817929e2007-10-18 23:39:36 -07004327 INIT_LIST_HEAD(&init_css_set.cg_links);
4328 INIT_LIST_HEAD(&init_css_set.tasks);
Li Zefan472b1052008-04-29 01:00:11 -07004329 INIT_HLIST_NODE(&init_css_set.hlist);
Paul Menage817929e2007-10-18 23:39:36 -07004330 css_set_count = 1;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004331 init_cgroup_root(&rootnode);
Paul Menage817929e2007-10-18 23:39:36 -07004332 root_count = 1;
4333 init_task.cgroups = &init_css_set;
4334
4335 init_css_set_link.cg = &init_css_set;
Paul Menage7717f7b2009-09-23 15:56:22 -07004336 init_css_set_link.cgrp = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -07004337 list_add(&init_css_set_link.cgrp_link_list,
Paul Menage817929e2007-10-18 23:39:36 -07004338 &rootnode.top_cgroup.css_sets);
4339 list_add(&init_css_set_link.cg_link_list,
4340 &init_css_set.cg_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004341
Li Zefan472b1052008-04-29 01:00:11 -07004342 for (i = 0; i < CSS_SET_TABLE_SIZE; i++)
4343 INIT_HLIST_HEAD(&css_set_table[i]);
4344
Ben Blumaae8aab2010-03-10 15:22:07 -08004345 /* at bootup time, we don't worry about modular subsystems */
4346 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004347 struct cgroup_subsys *ss = subsys[i];
4348
4349 BUG_ON(!ss->name);
4350 BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN);
4351 BUG_ON(!ss->create);
4352 BUG_ON(!ss->destroy);
4353 if (ss->subsys_id != i) {
Diego Callejacfe36bd2007-11-14 16:58:54 -08004354 printk(KERN_ERR "cgroup: Subsys %s id == %d\n",
Paul Menageddbcc7e2007-10-18 23:39:30 -07004355 ss->name, ss->subsys_id);
4356 BUG();
4357 }
4358
4359 if (ss->early_init)
4360 cgroup_init_subsys(ss);
4361 }
4362 return 0;
4363}
4364
4365/**
Li Zefana043e3b2008-02-23 15:24:09 -08004366 * cgroup_init - cgroup initialization
4367 *
4368 * Register cgroup filesystem and /proc file, and initialize
4369 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004370 */
4371int __init cgroup_init(void)
4372{
4373 int err;
4374 int i;
Li Zefan472b1052008-04-29 01:00:11 -07004375 struct hlist_head *hhead;
Paul Menagea4243162007-10-18 23:39:35 -07004376
4377 err = bdi_init(&cgroup_backing_dev_info);
4378 if (err)
4379 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004380
Ben Blumaae8aab2010-03-10 15:22:07 -08004381 /* at bootup time, we don't worry about modular subsystems */
4382 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004383 struct cgroup_subsys *ss = subsys[i];
4384 if (!ss->early_init)
4385 cgroup_init_subsys(ss);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004386 if (ss->use_id)
Ben Blume6a11052010-03-10 15:22:09 -08004387 cgroup_init_idr(ss, init_css_set.subsys[ss->subsys_id]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004388 }
4389
Li Zefan472b1052008-04-29 01:00:11 -07004390 /* Add init_css_set to the hash table */
4391 hhead = css_set_hash(init_css_set.subsys);
4392 hlist_add_head(&init_css_set.hlist, hhead);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004393 BUG_ON(!init_root_id(&rootnode));
Greg KH676db4a2010-08-05 13:53:35 -07004394
4395 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
4396 if (!cgroup_kobj) {
4397 err = -ENOMEM;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004398 goto out;
Greg KH676db4a2010-08-05 13:53:35 -07004399 }
4400
4401 err = register_filesystem(&cgroup_fs_type);
4402 if (err < 0) {
4403 kobject_put(cgroup_kobj);
4404 goto out;
4405 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004406
Li Zefan46ae2202008-04-29 01:00:08 -07004407 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Paul Menagea4243162007-10-18 23:39:35 -07004408
Paul Menageddbcc7e2007-10-18 23:39:30 -07004409out:
Paul Menagea4243162007-10-18 23:39:35 -07004410 if (err)
4411 bdi_destroy(&cgroup_backing_dev_info);
4412
Paul Menageddbcc7e2007-10-18 23:39:30 -07004413 return err;
4414}
Paul Menageb4f48b62007-10-18 23:39:33 -07004415
Paul Menagea4243162007-10-18 23:39:35 -07004416/*
4417 * proc_cgroup_show()
4418 * - Print task's cgroup paths into seq_file, one line for each hierarchy
4419 * - Used for /proc/<pid>/cgroup.
4420 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
4421 * doesn't really matter if tsk->cgroup changes after we read it,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004422 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
Paul Menagea4243162007-10-18 23:39:35 -07004423 * anyway. No need to check that tsk->cgroup != NULL, thanks to
4424 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
4425 * cgroup to top_cgroup.
4426 */
4427
4428/* TODO: Use a proper seq_file iterator */
4429static int proc_cgroup_show(struct seq_file *m, void *v)
4430{
4431 struct pid *pid;
4432 struct task_struct *tsk;
4433 char *buf;
4434 int retval;
4435 struct cgroupfs_root *root;
4436
4437 retval = -ENOMEM;
4438 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
4439 if (!buf)
4440 goto out;
4441
4442 retval = -ESRCH;
4443 pid = m->private;
4444 tsk = get_pid_task(pid, PIDTYPE_PID);
4445 if (!tsk)
4446 goto out_free;
4447
4448 retval = 0;
4449
4450 mutex_lock(&cgroup_mutex);
4451
Li Zefane5f6a862009-01-07 18:07:41 -08004452 for_each_active_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07004453 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07004454 struct cgroup *cgrp;
Paul Menagea4243162007-10-18 23:39:35 -07004455 int count = 0;
4456
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004457 seq_printf(m, "%d:", root->hierarchy_id);
Paul Menagea4243162007-10-18 23:39:35 -07004458 for_each_subsys(root, ss)
4459 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07004460 if (strlen(root->name))
4461 seq_printf(m, "%sname=%s", count ? "," : "",
4462 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07004463 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07004464 cgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07004465 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
Paul Menagea4243162007-10-18 23:39:35 -07004466 if (retval < 0)
4467 goto out_unlock;
4468 seq_puts(m, buf);
4469 seq_putc(m, '\n');
4470 }
4471
4472out_unlock:
4473 mutex_unlock(&cgroup_mutex);
4474 put_task_struct(tsk);
4475out_free:
4476 kfree(buf);
4477out:
4478 return retval;
4479}
4480
4481static int cgroup_open(struct inode *inode, struct file *file)
4482{
4483 struct pid *pid = PROC_I(inode)->pid;
4484 return single_open(file, proc_cgroup_show, pid);
4485}
4486
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004487const struct file_operations proc_cgroup_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004488 .open = cgroup_open,
4489 .read = seq_read,
4490 .llseek = seq_lseek,
4491 .release = single_release,
4492};
4493
4494/* Display information about each subsystem and each hierarchy */
4495static int proc_cgroupstats_show(struct seq_file *m, void *v)
4496{
4497 int i;
Paul Menagea4243162007-10-18 23:39:35 -07004498
Paul Menage8bab8dd2008-04-04 14:29:57 -07004499 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08004500 /*
4501 * ideally we don't want subsystems moving around while we do this.
4502 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
4503 * subsys/hierarchy state.
4504 */
Paul Menagea4243162007-10-18 23:39:35 -07004505 mutex_lock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07004506 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
4507 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08004508 if (ss == NULL)
4509 continue;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004510 seq_printf(m, "%s\t%d\t%d\t%d\n",
4511 ss->name, ss->root->hierarchy_id,
Paul Menage8bab8dd2008-04-04 14:29:57 -07004512 ss->root->number_of_cgroups, !ss->disabled);
Paul Menagea4243162007-10-18 23:39:35 -07004513 }
4514 mutex_unlock(&cgroup_mutex);
4515 return 0;
4516}
4517
4518static int cgroupstats_open(struct inode *inode, struct file *file)
4519{
Al Viro9dce07f12008-03-29 03:07:28 +00004520 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07004521}
4522
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004523static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004524 .open = cgroupstats_open,
4525 .read = seq_read,
4526 .llseek = seq_lseek,
4527 .release = single_release,
4528};
4529
Paul Menageb4f48b62007-10-18 23:39:33 -07004530/**
4531 * cgroup_fork - attach newly forked task to its parents cgroup.
Li Zefana043e3b2008-02-23 15:24:09 -08004532 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07004533 *
4534 * Description: A task inherits its parent's cgroup at fork().
4535 *
4536 * A pointer to the shared css_set was automatically copied in
4537 * fork.c by dup_task_struct(). However, we ignore that copy, since
4538 * it was not made under the protection of RCU or cgroup_mutex, so
Cliff Wickman956db3c2008-02-07 00:14:43 -08004539 * might no longer be a valid cgroup pointer. cgroup_attach_task() might
Paul Menage817929e2007-10-18 23:39:36 -07004540 * have already changed current->cgroups, allowing the previously
4541 * referenced cgroup group to be removed and freed.
Paul Menageb4f48b62007-10-18 23:39:33 -07004542 *
4543 * At the point that cgroup_fork() is called, 'current' is the parent
4544 * task, and the passed argument 'child' points to the child task.
4545 */
4546void cgroup_fork(struct task_struct *child)
4547{
Paul Menage817929e2007-10-18 23:39:36 -07004548 task_lock(current);
4549 child->cgroups = current->cgroups;
4550 get_css_set(child->cgroups);
4551 task_unlock(current);
4552 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07004553}
4554
4555/**
Li Zefana043e3b2008-02-23 15:24:09 -08004556 * cgroup_fork_callbacks - run fork callbacks
4557 * @child: the new task
4558 *
4559 * Called on a new task very soon before adding it to the
4560 * tasklist. No need to take any locks since no-one can
4561 * be operating on this task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004562 */
4563void cgroup_fork_callbacks(struct task_struct *child)
4564{
4565 if (need_forkexit_callback) {
4566 int i;
Ben Blumaae8aab2010-03-10 15:22:07 -08004567 /*
4568 * forkexit callbacks are only supported for builtin
4569 * subsystems, and the builtin section of the subsys array is
4570 * immutable, so we don't need to lock the subsys array here.
4571 */
4572 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageb4f48b62007-10-18 23:39:33 -07004573 struct cgroup_subsys *ss = subsys[i];
4574 if (ss->fork)
4575 ss->fork(ss, child);
4576 }
4577 }
4578}
4579
4580/**
Li Zefana043e3b2008-02-23 15:24:09 -08004581 * cgroup_post_fork - called on a new task after adding it to the task list
4582 * @child: the task in question
4583 *
4584 * Adds the task to the list running through its css_set if necessary.
4585 * Has to be after the task is visible on the task list in case we race
4586 * with the first call to cgroup_iter_start() - to guarantee that the
4587 * new task ends up on its list.
4588 */
Paul Menage817929e2007-10-18 23:39:36 -07004589void cgroup_post_fork(struct task_struct *child)
4590{
4591 if (use_task_css_set_links) {
4592 write_lock(&css_set_lock);
Lai Jiangshanb12b5332009-01-07 18:07:36 -08004593 task_lock(child);
Paul Menage817929e2007-10-18 23:39:36 -07004594 if (list_empty(&child->cg_list))
4595 list_add(&child->cg_list, &child->cgroups->tasks);
Lai Jiangshanb12b5332009-01-07 18:07:36 -08004596 task_unlock(child);
Paul Menage817929e2007-10-18 23:39:36 -07004597 write_unlock(&css_set_lock);
4598 }
4599}
4600/**
Paul Menageb4f48b62007-10-18 23:39:33 -07004601 * cgroup_exit - detach cgroup from exiting task
4602 * @tsk: pointer to task_struct of exiting process
Li Zefana043e3b2008-02-23 15:24:09 -08004603 * @run_callback: run exit callbacks?
Paul Menageb4f48b62007-10-18 23:39:33 -07004604 *
4605 * Description: Detach cgroup from @tsk and release it.
4606 *
4607 * Note that cgroups marked notify_on_release force every task in
4608 * them to take the global cgroup_mutex mutex when exiting.
4609 * This could impact scaling on very large systems. Be reluctant to
4610 * use notify_on_release cgroups where very high task exit scaling
4611 * is required on large systems.
4612 *
4613 * the_top_cgroup_hack:
4614 *
4615 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
4616 *
4617 * We call cgroup_exit() while the task is still competent to
4618 * handle notify_on_release(), then leave the task attached to the
4619 * root cgroup in each hierarchy for the remainder of its exit.
4620 *
4621 * To do this properly, we would increment the reference count on
4622 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
4623 * code we would add a second cgroup function call, to drop that
4624 * reference. This would just create an unnecessary hot spot on
4625 * the top_cgroup reference count, to no avail.
4626 *
4627 * Normally, holding a reference to a cgroup without bumping its
4628 * count is unsafe. The cgroup could go away, or someone could
4629 * attach us to a different cgroup, decrementing the count on
4630 * the first cgroup that we never incremented. But in this case,
4631 * top_cgroup isn't going away, and either task has PF_EXITING set,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004632 * which wards off any cgroup_attach_task() attempts, or task is a failed
4633 * fork, never visible to cgroup_attach_task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004634 */
4635void cgroup_exit(struct task_struct *tsk, int run_callbacks)
4636{
Paul Menage817929e2007-10-18 23:39:36 -07004637 struct css_set *cg;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004638 int i;
Paul Menage817929e2007-10-18 23:39:36 -07004639
4640 /*
4641 * Unlink from the css_set task list if necessary.
4642 * Optimistically check cg_list before taking
4643 * css_set_lock
4644 */
4645 if (!list_empty(&tsk->cg_list)) {
4646 write_lock(&css_set_lock);
4647 if (!list_empty(&tsk->cg_list))
Phil Carmody8d258792011-03-22 16:30:13 -07004648 list_del_init(&tsk->cg_list);
Paul Menage817929e2007-10-18 23:39:36 -07004649 write_unlock(&css_set_lock);
4650 }
4651
Paul Menageb4f48b62007-10-18 23:39:33 -07004652 /* Reassign the task to the init_css_set. */
4653 task_lock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07004654 cg = tsk->cgroups;
4655 tsk->cgroups = &init_css_set;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004656
4657 if (run_callbacks && need_forkexit_callback) {
4658 /*
4659 * modular subsystems can't use callbacks, so no need to lock
4660 * the subsys array
4661 */
4662 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
4663 struct cgroup_subsys *ss = subsys[i];
4664 if (ss->exit) {
4665 struct cgroup *old_cgrp =
4666 rcu_dereference_raw(cg->subsys[i])->cgroup;
4667 struct cgroup *cgrp = task_cgroup(tsk, i);
4668 ss->exit(ss, cgrp, old_cgrp, tsk);
4669 }
4670 }
4671 }
Paul Menageb4f48b62007-10-18 23:39:33 -07004672 task_unlock(tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004673
Paul Menage817929e2007-10-18 23:39:36 -07004674 if (cg)
Colin Cross6d51e762010-11-23 21:37:03 -08004675 put_css_set(cg);
Paul Menageb4f48b62007-10-18 23:39:33 -07004676}
Paul Menage697f4162007-10-18 23:39:34 -07004677
4678/**
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004679 * cgroup_is_descendant - see if @cgrp is a descendant of @task's cgrp
Li Zefana043e3b2008-02-23 15:24:09 -08004680 * @cgrp: the cgroup in question
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004681 * @task: the task in question
Li Zefana043e3b2008-02-23 15:24:09 -08004682 *
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004683 * See if @cgrp is a descendant of @task's cgroup in the appropriate
4684 * hierarchy.
Paul Menage697f4162007-10-18 23:39:34 -07004685 *
4686 * If we are sending in dummytop, then presumably we are creating
4687 * the top cgroup in the subsystem.
4688 *
4689 * Called only by the ns (nsproxy) cgroup.
4690 */
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004691int cgroup_is_descendant(const struct cgroup *cgrp, struct task_struct *task)
Paul Menage697f4162007-10-18 23:39:34 -07004692{
4693 int ret;
4694 struct cgroup *target;
Paul Menage697f4162007-10-18 23:39:34 -07004695
Paul Menagebd89aab2007-10-18 23:40:44 -07004696 if (cgrp == dummytop)
Paul Menage697f4162007-10-18 23:39:34 -07004697 return 1;
4698
Paul Menage7717f7b2009-09-23 15:56:22 -07004699 target = task_cgroup_from_root(task, cgrp->root);
Paul Menagebd89aab2007-10-18 23:40:44 -07004700 while (cgrp != target && cgrp!= cgrp->top_cgroup)
4701 cgrp = cgrp->parent;
4702 ret = (cgrp == target);
Paul Menage697f4162007-10-18 23:39:34 -07004703 return ret;
4704}
Paul Menage81a6a5c2007-10-18 23:39:38 -07004705
Paul Menagebd89aab2007-10-18 23:40:44 -07004706static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004707{
4708 /* All of these checks rely on RCU to keep the cgroup
4709 * structure alive */
Paul Menagebd89aab2007-10-18 23:40:44 -07004710 if (cgroup_is_releasable(cgrp) && !atomic_read(&cgrp->count)
4711 && list_empty(&cgrp->children) && !cgroup_has_css_refs(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004712 /* Control Group is currently removeable. If it's not
4713 * already queued for a userspace notification, queue
4714 * it now */
4715 int need_schedule_work = 0;
4716 spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07004717 if (!cgroup_is_removed(cgrp) &&
4718 list_empty(&cgrp->release_list)) {
4719 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004720 need_schedule_work = 1;
4721 }
4722 spin_unlock(&release_list_lock);
4723 if (need_schedule_work)
4724 schedule_work(&release_agent_work);
4725 }
4726}
4727
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -08004728/* Caller must verify that the css is not for root cgroup */
Colin Cross6d51e762010-11-23 21:37:03 -08004729void __css_get(struct cgroup_subsys_state *css, int count)
4730{
4731 atomic_add(count, &css->refcnt);
4732 set_bit(CGRP_RELEASABLE, &css->cgroup->flags);
4733}
4734EXPORT_SYMBOL_GPL(__css_get);
4735
4736/* Caller must verify that the css is not for root cgroup */
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -08004737void __css_put(struct cgroup_subsys_state *css, int count)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004738{
Paul Menagebd89aab2007-10-18 23:40:44 -07004739 struct cgroup *cgrp = css->cgroup;
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004740 int val;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004741 rcu_read_lock();
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -08004742 val = atomic_sub_return(count, &css->refcnt);
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004743 if (val == 1) {
Colin Cross6d51e762010-11-23 21:37:03 -08004744 check_for_release(cgrp);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004745 cgroup_wakeup_rmdir_waiter(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004746 }
4747 rcu_read_unlock();
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004748 WARN_ON_ONCE(val < 1);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004749}
Ben Blum67523c42010-03-10 15:22:11 -08004750EXPORT_SYMBOL_GPL(__css_put);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004751
4752/*
4753 * Notify userspace when a cgroup is released, by running the
4754 * configured release agent with the name of the cgroup (path
4755 * relative to the root of cgroup file system) as the argument.
4756 *
4757 * Most likely, this user command will try to rmdir this cgroup.
4758 *
4759 * This races with the possibility that some other task will be
4760 * attached to this cgroup before it is removed, or that some other
4761 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
4762 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
4763 * unused, and this cgroup will be reprieved from its death sentence,
4764 * to continue to serve a useful existence. Next time it's released,
4765 * we will get notified again, if it still has 'notify_on_release' set.
4766 *
4767 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
4768 * means only wait until the task is successfully execve()'d. The
4769 * separate release agent task is forked by call_usermodehelper(),
4770 * then control in this thread returns here, without waiting for the
4771 * release agent task. We don't bother to wait because the caller of
4772 * this routine has no use for the exit status of the release agent
4773 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07004774 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004775static void cgroup_release_agent(struct work_struct *work)
4776{
4777 BUG_ON(work != &release_agent_work);
4778 mutex_lock(&cgroup_mutex);
4779 spin_lock(&release_list_lock);
4780 while (!list_empty(&release_list)) {
4781 char *argv[3], *envp[3];
4782 int i;
Paul Menagee788e062008-07-25 01:46:59 -07004783 char *pathbuf = NULL, *agentbuf = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07004784 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07004785 struct cgroup,
4786 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07004787 list_del_init(&cgrp->release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004788 spin_unlock(&release_list_lock);
4789 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paul Menagee788e062008-07-25 01:46:59 -07004790 if (!pathbuf)
4791 goto continue_free;
4792 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0)
4793 goto continue_free;
4794 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
4795 if (!agentbuf)
4796 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004797
4798 i = 0;
Paul Menagee788e062008-07-25 01:46:59 -07004799 argv[i++] = agentbuf;
4800 argv[i++] = pathbuf;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004801 argv[i] = NULL;
4802
4803 i = 0;
4804 /* minimal command environment */
4805 envp[i++] = "HOME=/";
4806 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
4807 envp[i] = NULL;
4808
4809 /* Drop the lock while we invoke the usermode helper,
4810 * since the exec could involve hitting disk and hence
4811 * be a slow process */
4812 mutex_unlock(&cgroup_mutex);
4813 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004814 mutex_lock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07004815 continue_free:
4816 kfree(pathbuf);
4817 kfree(agentbuf);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004818 spin_lock(&release_list_lock);
4819 }
4820 spin_unlock(&release_list_lock);
4821 mutex_unlock(&cgroup_mutex);
4822}
Paul Menage8bab8dd2008-04-04 14:29:57 -07004823
4824static int __init cgroup_disable(char *str)
4825{
4826 int i;
4827 char *token;
4828
4829 while ((token = strsep(&str, ",")) != NULL) {
4830 if (!*token)
4831 continue;
Ben Blumaae8aab2010-03-10 15:22:07 -08004832 /*
4833 * cgroup_disable, being at boot time, can't know about module
4834 * subsystems, so we don't worry about them.
4835 */
4836 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07004837 struct cgroup_subsys *ss = subsys[i];
4838
4839 if (!strcmp(token, ss->name)) {
4840 ss->disabled = 1;
4841 printk(KERN_INFO "Disabling %s control group"
4842 " subsystem\n", ss->name);
4843 break;
4844 }
4845 }
4846 }
4847 return 1;
4848}
4849__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004850
4851/*
4852 * Functons for CSS ID.
4853 */
4854
4855/*
4856 *To get ID other than 0, this should be called when !cgroup_is_removed().
4857 */
4858unsigned short css_id(struct cgroup_subsys_state *css)
4859{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07004860 struct css_id *cssid;
4861
4862 /*
4863 * This css_id() can return correct value when somone has refcnt
4864 * on this or this is under rcu_read_lock(). Once css->id is allocated,
4865 * it's unchanged until freed.
4866 */
4867 cssid = rcu_dereference_check(css->id,
4868 rcu_read_lock_held() || atomic_read(&css->refcnt));
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004869
4870 if (cssid)
4871 return cssid->id;
4872 return 0;
4873}
Ben Blum67523c42010-03-10 15:22:11 -08004874EXPORT_SYMBOL_GPL(css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004875
4876unsigned short css_depth(struct cgroup_subsys_state *css)
4877{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07004878 struct css_id *cssid;
4879
4880 cssid = rcu_dereference_check(css->id,
4881 rcu_read_lock_held() || atomic_read(&css->refcnt));
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004882
4883 if (cssid)
4884 return cssid->depth;
4885 return 0;
4886}
Ben Blum67523c42010-03-10 15:22:11 -08004887EXPORT_SYMBOL_GPL(css_depth);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004888
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004889/**
4890 * css_is_ancestor - test "root" css is an ancestor of "child"
4891 * @child: the css to be tested.
4892 * @root: the css supporsed to be an ancestor of the child.
4893 *
4894 * Returns true if "root" is an ancestor of "child" in its hierarchy. Because
4895 * this function reads css->id, this use rcu_dereference() and rcu_read_lock().
4896 * But, considering usual usage, the csses should be valid objects after test.
4897 * Assuming that the caller will do some action to the child if this returns
4898 * returns true, the caller must take "child";s reference count.
4899 * If "child" is valid object and this returns true, "root" is valid, too.
4900 */
4901
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004902bool css_is_ancestor(struct cgroup_subsys_state *child,
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07004903 const struct cgroup_subsys_state *root)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004904{
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004905 struct css_id *child_id;
4906 struct css_id *root_id;
4907 bool ret = true;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004908
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004909 rcu_read_lock();
4910 child_id = rcu_dereference(child->id);
4911 root_id = rcu_dereference(root->id);
4912 if (!child_id
4913 || !root_id
4914 || (child_id->depth < root_id->depth)
4915 || (child_id->stack[root_id->depth] != root_id->id))
4916 ret = false;
4917 rcu_read_unlock();
4918 return ret;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004919}
4920
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004921void free_css_id(struct cgroup_subsys *ss, struct cgroup_subsys_state *css)
4922{
4923 struct css_id *id = css->id;
4924 /* When this is called before css_id initialization, id can be NULL */
4925 if (!id)
4926 return;
4927
4928 BUG_ON(!ss->use_id);
4929
4930 rcu_assign_pointer(id->css, NULL);
4931 rcu_assign_pointer(css->id, NULL);
4932 spin_lock(&ss->id_lock);
4933 idr_remove(&ss->idr, id->id);
4934 spin_unlock(&ss->id_lock);
Lai Jiangshan025cea92011-03-15 17:56:10 +08004935 kfree_rcu(id, rcu_head);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004936}
Ben Blum67523c42010-03-10 15:22:11 -08004937EXPORT_SYMBOL_GPL(free_css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004938
4939/*
4940 * This is called by init or create(). Then, calls to this function are
4941 * always serialized (By cgroup_mutex() at create()).
4942 */
4943
4944static struct css_id *get_new_cssid(struct cgroup_subsys *ss, int depth)
4945{
4946 struct css_id *newid;
4947 int myid, error, size;
4948
4949 BUG_ON(!ss->use_id);
4950
4951 size = sizeof(*newid) + sizeof(unsigned short) * (depth + 1);
4952 newid = kzalloc(size, GFP_KERNEL);
4953 if (!newid)
4954 return ERR_PTR(-ENOMEM);
4955 /* get id */
4956 if (unlikely(!idr_pre_get(&ss->idr, GFP_KERNEL))) {
4957 error = -ENOMEM;
4958 goto err_out;
4959 }
4960 spin_lock(&ss->id_lock);
4961 /* Don't use 0. allocates an ID of 1-65535 */
4962 error = idr_get_new_above(&ss->idr, newid, 1, &myid);
4963 spin_unlock(&ss->id_lock);
4964
4965 /* Returns error when there are no free spaces for new ID.*/
4966 if (error) {
4967 error = -ENOSPC;
4968 goto err_out;
4969 }
4970 if (myid > CSS_ID_MAX)
4971 goto remove_idr;
4972
4973 newid->id = myid;
4974 newid->depth = depth;
4975 return newid;
4976remove_idr:
4977 error = -ENOSPC;
4978 spin_lock(&ss->id_lock);
4979 idr_remove(&ss->idr, myid);
4980 spin_unlock(&ss->id_lock);
4981err_out:
4982 kfree(newid);
4983 return ERR_PTR(error);
4984
4985}
4986
Ben Blume6a11052010-03-10 15:22:09 -08004987static int __init_or_module cgroup_init_idr(struct cgroup_subsys *ss,
4988 struct cgroup_subsys_state *rootcss)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004989{
4990 struct css_id *newid;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004991
4992 spin_lock_init(&ss->id_lock);
4993 idr_init(&ss->idr);
4994
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004995 newid = get_new_cssid(ss, 0);
4996 if (IS_ERR(newid))
4997 return PTR_ERR(newid);
4998
4999 newid->stack[0] = newid->id;
5000 newid->css = rootcss;
5001 rootcss->id = newid;
5002 return 0;
5003}
5004
5005static int alloc_css_id(struct cgroup_subsys *ss, struct cgroup *parent,
5006 struct cgroup *child)
5007{
5008 int subsys_id, i, depth = 0;
5009 struct cgroup_subsys_state *parent_css, *child_css;
Li Zefanfae9c792010-04-22 17:30:00 +08005010 struct css_id *child_id, *parent_id;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005011
5012 subsys_id = ss->subsys_id;
5013 parent_css = parent->subsys[subsys_id];
5014 child_css = child->subsys[subsys_id];
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005015 parent_id = parent_css->id;
Greg Thelen94b3dd02010-06-04 14:15:03 -07005016 depth = parent_id->depth + 1;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005017
5018 child_id = get_new_cssid(ss, depth);
5019 if (IS_ERR(child_id))
5020 return PTR_ERR(child_id);
5021
5022 for (i = 0; i < depth; i++)
5023 child_id->stack[i] = parent_id->stack[i];
5024 child_id->stack[depth] = child_id->id;
5025 /*
5026 * child_id->css pointer will be set after this cgroup is available
5027 * see cgroup_populate_dir()
5028 */
5029 rcu_assign_pointer(child_css->id, child_id);
5030
5031 return 0;
5032}
5033
5034/**
5035 * css_lookup - lookup css by id
5036 * @ss: cgroup subsys to be looked into.
5037 * @id: the id
5038 *
5039 * Returns pointer to cgroup_subsys_state if there is valid one with id.
5040 * NULL if not. Should be called under rcu_read_lock()
5041 */
5042struct cgroup_subsys_state *css_lookup(struct cgroup_subsys *ss, int id)
5043{
5044 struct css_id *cssid = NULL;
5045
5046 BUG_ON(!ss->use_id);
5047 cssid = idr_find(&ss->idr, id);
5048
5049 if (unlikely(!cssid))
5050 return NULL;
5051
5052 return rcu_dereference(cssid->css);
5053}
Ben Blum67523c42010-03-10 15:22:11 -08005054EXPORT_SYMBOL_GPL(css_lookup);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005055
5056/**
5057 * css_get_next - lookup next cgroup under specified hierarchy.
5058 * @ss: pointer to subsystem
5059 * @id: current position of iteration.
5060 * @root: pointer to css. search tree under this.
5061 * @foundid: position of found object.
5062 *
5063 * Search next css under the specified hierarchy of rootid. Calling under
5064 * rcu_read_lock() is necessary. Returns NULL if it reaches the end.
5065 */
5066struct cgroup_subsys_state *
5067css_get_next(struct cgroup_subsys *ss, int id,
5068 struct cgroup_subsys_state *root, int *foundid)
5069{
5070 struct cgroup_subsys_state *ret = NULL;
5071 struct css_id *tmp;
5072 int tmpid;
5073 int rootid = css_id(root);
5074 int depth = css_depth(root);
5075
5076 if (!rootid)
5077 return NULL;
5078
5079 BUG_ON(!ss->use_id);
5080 /* fill start point for scan */
5081 tmpid = id;
5082 while (1) {
5083 /*
5084 * scan next entry from bitmap(tree), tmpid is updated after
5085 * idr_get_next().
5086 */
5087 spin_lock(&ss->id_lock);
5088 tmp = idr_get_next(&ss->idr, &tmpid);
5089 spin_unlock(&ss->id_lock);
5090
5091 if (!tmp)
5092 break;
5093 if (tmp->depth >= depth && tmp->stack[depth] == rootid) {
5094 ret = rcu_dereference(tmp->css);
5095 if (ret) {
5096 *foundid = tmpid;
5097 break;
5098 }
5099 }
5100 /* continue to scan from next id */
5101 tmpid = tmpid + 1;
5102 }
5103 return ret;
5104}
5105
Stephane Eraniane5d13672011-02-14 11:20:01 +02005106/*
5107 * get corresponding css from file open on cgroupfs directory
5108 */
5109struct cgroup_subsys_state *cgroup_css_from_dir(struct file *f, int id)
5110{
5111 struct cgroup *cgrp;
5112 struct inode *inode;
5113 struct cgroup_subsys_state *css;
5114
5115 inode = f->f_dentry->d_inode;
5116 /* check in cgroup filesystem dir */
5117 if (inode->i_op != &cgroup_dir_inode_operations)
5118 return ERR_PTR(-EBADF);
5119
5120 if (id < 0 || id >= CGROUP_SUBSYS_COUNT)
5121 return ERR_PTR(-EINVAL);
5122
5123 /* get cgroup */
5124 cgrp = __d_cgrp(f->f_dentry);
5125 css = cgrp->subsys[id];
5126 return css ? css : ERR_PTR(-ENOENT);
5127}
5128
Paul Menagefe693432009-09-23 15:56:20 -07005129#ifdef CONFIG_CGROUP_DEBUG
5130static struct cgroup_subsys_state *debug_create(struct cgroup_subsys *ss,
5131 struct cgroup *cont)
5132{
5133 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
5134
5135 if (!css)
5136 return ERR_PTR(-ENOMEM);
5137
5138 return css;
5139}
5140
5141static void debug_destroy(struct cgroup_subsys *ss, struct cgroup *cont)
5142{
5143 kfree(cont->subsys[debug_subsys_id]);
5144}
5145
5146static u64 cgroup_refcount_read(struct cgroup *cont, struct cftype *cft)
5147{
5148 return atomic_read(&cont->count);
5149}
5150
5151static u64 debug_taskcount_read(struct cgroup *cont, struct cftype *cft)
5152{
5153 return cgroup_task_count(cont);
5154}
5155
5156static u64 current_css_set_read(struct cgroup *cont, struct cftype *cft)
5157{
5158 return (u64)(unsigned long)current->cgroups;
5159}
5160
5161static u64 current_css_set_refcount_read(struct cgroup *cont,
5162 struct cftype *cft)
5163{
5164 u64 count;
5165
5166 rcu_read_lock();
5167 count = atomic_read(&current->cgroups->refcount);
5168 rcu_read_unlock();
5169 return count;
5170}
5171
Paul Menage7717f7b2009-09-23 15:56:22 -07005172static int current_css_set_cg_links_read(struct cgroup *cont,
5173 struct cftype *cft,
5174 struct seq_file *seq)
5175{
5176 struct cg_cgroup_link *link;
5177 struct css_set *cg;
5178
5179 read_lock(&css_set_lock);
5180 rcu_read_lock();
5181 cg = rcu_dereference(current->cgroups);
5182 list_for_each_entry(link, &cg->cg_links, cg_link_list) {
5183 struct cgroup *c = link->cgrp;
5184 const char *name;
5185
5186 if (c->dentry)
5187 name = c->dentry->d_name.name;
5188 else
5189 name = "?";
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005190 seq_printf(seq, "Root %d group %s\n",
5191 c->root->hierarchy_id, name);
Paul Menage7717f7b2009-09-23 15:56:22 -07005192 }
5193 rcu_read_unlock();
5194 read_unlock(&css_set_lock);
5195 return 0;
5196}
5197
5198#define MAX_TASKS_SHOWN_PER_CSS 25
5199static int cgroup_css_links_read(struct cgroup *cont,
5200 struct cftype *cft,
5201 struct seq_file *seq)
5202{
5203 struct cg_cgroup_link *link;
5204
5205 read_lock(&css_set_lock);
5206 list_for_each_entry(link, &cont->css_sets, cgrp_link_list) {
5207 struct css_set *cg = link->cg;
5208 struct task_struct *task;
5209 int count = 0;
5210 seq_printf(seq, "css_set %p\n", cg);
5211 list_for_each_entry(task, &cg->tasks, cg_list) {
5212 if (count++ > MAX_TASKS_SHOWN_PER_CSS) {
5213 seq_puts(seq, " ...\n");
5214 break;
5215 } else {
5216 seq_printf(seq, " task %d\n",
5217 task_pid_vnr(task));
5218 }
5219 }
5220 }
5221 read_unlock(&css_set_lock);
5222 return 0;
5223}
5224
Paul Menagefe693432009-09-23 15:56:20 -07005225static u64 releasable_read(struct cgroup *cgrp, struct cftype *cft)
5226{
5227 return test_bit(CGRP_RELEASABLE, &cgrp->flags);
5228}
5229
5230static struct cftype debug_files[] = {
5231 {
5232 .name = "cgroup_refcount",
5233 .read_u64 = cgroup_refcount_read,
5234 },
5235 {
5236 .name = "taskcount",
5237 .read_u64 = debug_taskcount_read,
5238 },
5239
5240 {
5241 .name = "current_css_set",
5242 .read_u64 = current_css_set_read,
5243 },
5244
5245 {
5246 .name = "current_css_set_refcount",
5247 .read_u64 = current_css_set_refcount_read,
5248 },
5249
5250 {
Paul Menage7717f7b2009-09-23 15:56:22 -07005251 .name = "current_css_set_cg_links",
5252 .read_seq_string = current_css_set_cg_links_read,
5253 },
5254
5255 {
5256 .name = "cgroup_css_links",
5257 .read_seq_string = cgroup_css_links_read,
5258 },
5259
5260 {
Paul Menagefe693432009-09-23 15:56:20 -07005261 .name = "releasable",
5262 .read_u64 = releasable_read,
5263 },
5264};
5265
5266static int debug_populate(struct cgroup_subsys *ss, struct cgroup *cont)
5267{
5268 return cgroup_add_files(cont, ss, debug_files,
5269 ARRAY_SIZE(debug_files));
5270}
5271
5272struct cgroup_subsys debug_subsys = {
5273 .name = "debug",
5274 .create = debug_create,
5275 .destroy = debug_destroy,
5276 .populate = debug_populate,
5277 .subsys_id = debug_subsys_id,
5278};
5279#endif /* CONFIG_CGROUP_DEBUG */