blob: 7b4705b51d4a13839476113ff3e6e7b0ce6b8ddd [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>
Balbir Singh846c7bb2007-10-18 23:39:44 -070060
Paul Menageddbcc7e2007-10-18 23:39:30 -070061#include <asm/atomic.h>
62
Paul Menage81a6a5c2007-10-18 23:39:38 -070063static DEFINE_MUTEX(cgroup_mutex);
64
Ben Blumaae8aab2010-03-10 15:22:07 -080065/*
66 * Generate an array of cgroup subsystem pointers. At boot time, this is
67 * populated up to CGROUP_BUILTIN_SUBSYS_COUNT, and modular subsystems are
68 * registered after that. The mutable section of this array is protected by
69 * cgroup_mutex.
70 */
Paul Menageddbcc7e2007-10-18 23:39:30 -070071#define SUBSYS(_x) &_x ## _subsys,
Ben Blumaae8aab2010-03-10 15:22:07 -080072static struct cgroup_subsys *subsys[CGROUP_SUBSYS_COUNT] = {
Paul Menageddbcc7e2007-10-18 23:39:30 -070073#include <linux/cgroup_subsys.h>
74};
75
Paul Menagec6d57f32009-09-23 15:56:19 -070076#define MAX_CGROUP_ROOT_NAMELEN 64
77
Paul Menageddbcc7e2007-10-18 23:39:30 -070078/*
79 * A cgroupfs_root represents the root of a cgroup hierarchy,
80 * and may be associated with a superblock to form an active
81 * hierarchy
82 */
83struct cgroupfs_root {
84 struct super_block *sb;
85
86 /*
87 * The bitmask of subsystems intended to be attached to this
88 * hierarchy
89 */
90 unsigned long subsys_bits;
91
Paul Menage2c6ab6d2009-09-23 15:56:23 -070092 /* Unique id for this hierarchy. */
93 int hierarchy_id;
94
Paul Menageddbcc7e2007-10-18 23:39:30 -070095 /* The bitmask of subsystems currently attached to this hierarchy */
96 unsigned long actual_subsys_bits;
97
98 /* A list running through the attached subsystems */
99 struct list_head subsys_list;
100
101 /* The root cgroup for this hierarchy */
102 struct cgroup top_cgroup;
103
104 /* Tracks how many cgroups are currently defined in hierarchy.*/
105 int number_of_cgroups;
106
Li Zefane5f6a862009-01-07 18:07:41 -0800107 /* A list running through the active hierarchies */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700108 struct list_head root_list;
109
110 /* Hierarchy-specific flags */
111 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700112
Paul Menagee788e062008-07-25 01:46:59 -0700113 /* The path to use for release notifications. */
Paul Menage81a6a5c2007-10-18 23:39:38 -0700114 char release_agent_path[PATH_MAX];
Paul Menagec6d57f32009-09-23 15:56:19 -0700115
116 /* The name for this hierarchy - may be empty */
117 char name[MAX_CGROUP_ROOT_NAMELEN];
Paul Menageddbcc7e2007-10-18 23:39:30 -0700118};
119
Paul Menageddbcc7e2007-10-18 23:39:30 -0700120/*
121 * The "rootnode" hierarchy is the "dummy hierarchy", reserved for the
122 * subsystems that are otherwise unattached - it never has more than a
123 * single cgroup, and all tasks are part of that cgroup.
124 */
125static struct cgroupfs_root rootnode;
126
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700127/*
128 * CSS ID -- ID per subsys's Cgroup Subsys State(CSS). used only when
129 * cgroup_subsys->use_id != 0.
130 */
131#define CSS_ID_MAX (65535)
132struct css_id {
133 /*
134 * The css to which this ID points. This pointer is set to valid value
135 * after cgroup is populated. If cgroup is removed, this will be NULL.
136 * This pointer is expected to be RCU-safe because destroy()
137 * is called after synchronize_rcu(). But for safe use, css_is_removed()
138 * css_tryget() should be used for avoiding race.
139 */
Arnd Bergmann2c392b82010-02-24 19:41:39 +0100140 struct cgroup_subsys_state __rcu *css;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700141 /*
142 * ID of this css.
143 */
144 unsigned short id;
145 /*
146 * Depth in hierarchy which this ID belongs to.
147 */
148 unsigned short depth;
149 /*
150 * ID is freed by RCU. (and lookup routine is RCU safe.)
151 */
152 struct rcu_head rcu_head;
153 /*
154 * Hierarchy of CSS ID belongs to.
155 */
156 unsigned short stack[0]; /* Array of Length (depth+1) */
157};
158
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800159/*
160 * cgroup_event represents events which userspace want to recieve.
161 */
162struct cgroup_event {
163 /*
164 * Cgroup which the event belongs to.
165 */
166 struct cgroup *cgrp;
167 /*
168 * Control file which the event associated.
169 */
170 struct cftype *cft;
171 /*
172 * eventfd to signal userspace about the event.
173 */
174 struct eventfd_ctx *eventfd;
175 /*
176 * Each of these stored in a list by the cgroup.
177 */
178 struct list_head list;
179 /*
180 * All fields below needed to unregister event when
181 * userspace closes eventfd.
182 */
183 poll_table pt;
184 wait_queue_head_t *wqh;
185 wait_queue_t wait;
186 struct work_struct remove;
187};
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700188
Paul Menageddbcc7e2007-10-18 23:39:30 -0700189/* The list of hierarchy roots */
190
191static LIST_HEAD(roots);
Paul Menage817929e2007-10-18 23:39:36 -0700192static int root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700193
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700194static DEFINE_IDA(hierarchy_ida);
195static int next_hierarchy_id;
196static DEFINE_SPINLOCK(hierarchy_id_lock);
197
Paul Menageddbcc7e2007-10-18 23:39:30 -0700198/* dummytop is a shorthand for the dummy hierarchy's top cgroup */
199#define dummytop (&rootnode.top_cgroup)
200
201/* This flag indicates whether tasks in the fork and exit paths should
Li Zefana043e3b2008-02-23 15:24:09 -0800202 * check for fork/exit handlers to call. This avoids us having to do
203 * extra work in the fork/exit path if none of the subsystems need to
204 * be called.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700205 */
Li Zefan8947f9d2008-07-25 01:46:56 -0700206static int need_forkexit_callback __read_mostly;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700207
Paul E. McKenneyd11c5632010-02-22 17:04:50 -0800208#ifdef CONFIG_PROVE_LOCKING
209int cgroup_lock_is_held(void)
210{
211 return lockdep_is_held(&cgroup_mutex);
212}
213#else /* #ifdef CONFIG_PROVE_LOCKING */
214int cgroup_lock_is_held(void)
215{
216 return mutex_is_locked(&cgroup_mutex);
217}
218#endif /* #else #ifdef CONFIG_PROVE_LOCKING */
219
220EXPORT_SYMBOL_GPL(cgroup_lock_is_held);
221
Paul Menageddbcc7e2007-10-18 23:39:30 -0700222/* convenient tests for these bits */
Paul Menagebd89aab2007-10-18 23:40:44 -0700223inline int cgroup_is_removed(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700224{
Paul Menagebd89aab2007-10-18 23:40:44 -0700225 return test_bit(CGRP_REMOVED, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700226}
227
228/* bits in struct cgroupfs_root flags field */
229enum {
230 ROOT_NOPREFIX, /* mounted subsystems have no named prefix */
231};
232
Adrian Bunke9685a02008-02-07 00:13:46 -0800233static int cgroup_is_releasable(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700234{
235 const int bits =
Paul Menagebd89aab2007-10-18 23:40:44 -0700236 (1 << CGRP_RELEASABLE) |
237 (1 << CGRP_NOTIFY_ON_RELEASE);
238 return (cgrp->flags & bits) == bits;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700239}
240
Adrian Bunke9685a02008-02-07 00:13:46 -0800241static int notify_on_release(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700242{
Paul Menagebd89aab2007-10-18 23:40:44 -0700243 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700244}
245
Daniel Lezcano97978e62010-10-27 15:33:35 -0700246static int clone_children(const struct cgroup *cgrp)
247{
248 return test_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
249}
250
Paul Menageddbcc7e2007-10-18 23:39:30 -0700251/*
252 * for_each_subsys() allows you to iterate on each subsystem attached to
253 * an active hierarchy
254 */
255#define for_each_subsys(_root, _ss) \
256list_for_each_entry(_ss, &_root->subsys_list, sibling)
257
Li Zefane5f6a862009-01-07 18:07:41 -0800258/* for_each_active_root() allows you to iterate across the active hierarchies */
259#define for_each_active_root(_root) \
Paul Menageddbcc7e2007-10-18 23:39:30 -0700260list_for_each_entry(_root, &roots, root_list)
261
Paul Menage81a6a5c2007-10-18 23:39:38 -0700262/* the list of cgroups eligible for automatic release. Protected by
263 * release_list_lock */
264static LIST_HEAD(release_list);
265static DEFINE_SPINLOCK(release_list_lock);
266static void cgroup_release_agent(struct work_struct *work);
267static DECLARE_WORK(release_agent_work, cgroup_release_agent);
Paul Menagebd89aab2007-10-18 23:40:44 -0700268static void check_for_release(struct cgroup *cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700269
Paul Menage817929e2007-10-18 23:39:36 -0700270/* Link structure for associating css_set objects with cgroups */
271struct cg_cgroup_link {
272 /*
273 * List running through cg_cgroup_links associated with a
274 * cgroup, anchored on cgroup->css_sets
275 */
Paul Menagebd89aab2007-10-18 23:40:44 -0700276 struct list_head cgrp_link_list;
Paul Menage7717f7b2009-09-23 15:56:22 -0700277 struct cgroup *cgrp;
Paul Menage817929e2007-10-18 23:39:36 -0700278 /*
279 * List running through cg_cgroup_links pointing at a
280 * single css_set object, anchored on css_set->cg_links
281 */
282 struct list_head cg_link_list;
283 struct css_set *cg;
284};
285
286/* The default css_set - used by init and its children prior to any
287 * hierarchies being mounted. It contains a pointer to the root state
288 * for each subsystem. Also used to anchor the list of css_sets. Not
289 * reference-counted, to improve performance when child cgroups
290 * haven't been created.
291 */
292
293static struct css_set init_css_set;
294static struct cg_cgroup_link init_css_set_link;
295
Ben Blume6a11052010-03-10 15:22:09 -0800296static int cgroup_init_idr(struct cgroup_subsys *ss,
297 struct cgroup_subsys_state *css);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700298
Paul Menage817929e2007-10-18 23:39:36 -0700299/* css_set_lock protects the list of css_set objects, and the
300 * chain of tasks off each css_set. Nests outside task->alloc_lock
301 * due to cgroup_iter_start() */
302static DEFINE_RWLOCK(css_set_lock);
303static int css_set_count;
304
Paul Menage7717f7b2009-09-23 15:56:22 -0700305/*
306 * hash table for cgroup groups. This improves the performance to find
307 * an existing css_set. This hash doesn't (currently) take into
308 * account cgroups in empty hierarchies.
309 */
Li Zefan472b1052008-04-29 01:00:11 -0700310#define CSS_SET_HASH_BITS 7
311#define CSS_SET_TABLE_SIZE (1 << CSS_SET_HASH_BITS)
312static struct hlist_head css_set_table[CSS_SET_TABLE_SIZE];
313
314static struct hlist_head *css_set_hash(struct cgroup_subsys_state *css[])
315{
316 int i;
317 int index;
318 unsigned long tmp = 0UL;
319
320 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++)
321 tmp += (unsigned long)css[i];
322 tmp = (tmp >> 16) ^ tmp;
323
324 index = hash_long(tmp, CSS_SET_HASH_BITS);
325
326 return &css_set_table[index];
327}
328
Ben Blumc3783692009-09-23 15:56:29 -0700329static void free_css_set_rcu(struct rcu_head *obj)
330{
331 struct css_set *cg = container_of(obj, struct css_set, rcu_head);
332 kfree(cg);
333}
334
Paul Menage817929e2007-10-18 23:39:36 -0700335/* We don't maintain the lists running through each css_set to its
336 * task until after the first call to cgroup_iter_start(). This
337 * reduces the fork()/exit() overhead for people who have cgroups
338 * compiled into their kernel but not actually in use */
Li Zefan8947f9d2008-07-25 01:46:56 -0700339static int use_task_css_set_links __read_mostly;
Paul Menage817929e2007-10-18 23:39:36 -0700340
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700341static void __put_css_set(struct css_set *cg, int taskexit)
Paul Menageb4f48b62007-10-18 23:39:33 -0700342{
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700343 struct cg_cgroup_link *link;
344 struct cg_cgroup_link *saved_link;
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700345 /*
346 * Ensure that the refcount doesn't hit zero while any readers
347 * can see it. Similar to atomic_dec_and_lock(), but for an
348 * rwlock
349 */
350 if (atomic_add_unless(&cg->refcount, -1, 1))
351 return;
352 write_lock(&css_set_lock);
353 if (!atomic_dec_and_test(&cg->refcount)) {
354 write_unlock(&css_set_lock);
355 return;
356 }
Paul Menage81a6a5c2007-10-18 23:39:38 -0700357
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700358 /* This css_set is dead. unlink it and release cgroup refcounts */
359 hlist_del(&cg->hlist);
360 css_set_count--;
361
362 list_for_each_entry_safe(link, saved_link, &cg->cg_links,
363 cg_link_list) {
364 struct cgroup *cgrp = link->cgrp;
365 list_del(&link->cg_link_list);
366 list_del(&link->cgrp_link_list);
Paul Menagebd89aab2007-10-18 23:40:44 -0700367 if (atomic_dec_and_test(&cgrp->count) &&
368 notify_on_release(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -0700369 if (taskexit)
Paul Menagebd89aab2007-10-18 23:40:44 -0700370 set_bit(CGRP_RELEASABLE, &cgrp->flags);
371 check_for_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700372 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700373
374 kfree(link);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700375 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700376
377 write_unlock(&css_set_lock);
Ben Blumc3783692009-09-23 15:56:29 -0700378 call_rcu(&cg->rcu_head, free_css_set_rcu);
Paul Menage817929e2007-10-18 23:39:36 -0700379}
380
381/*
382 * refcounted get/put for css_set objects
383 */
384static inline void get_css_set(struct css_set *cg)
385{
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700386 atomic_inc(&cg->refcount);
Paul Menage817929e2007-10-18 23:39:36 -0700387}
388
389static inline void put_css_set(struct css_set *cg)
390{
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700391 __put_css_set(cg, 0);
Paul Menage817929e2007-10-18 23:39:36 -0700392}
393
Paul Menage81a6a5c2007-10-18 23:39:38 -0700394static inline void put_css_set_taskexit(struct css_set *cg)
395{
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700396 __put_css_set(cg, 1);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700397}
398
Paul Menage817929e2007-10-18 23:39:36 -0700399/*
Paul Menage7717f7b2009-09-23 15:56:22 -0700400 * compare_css_sets - helper function for find_existing_css_set().
401 * @cg: candidate css_set being tested
402 * @old_cg: existing css_set for a task
403 * @new_cgrp: cgroup that's being entered by the task
404 * @template: desired set of css pointers in css_set (pre-calculated)
405 *
406 * Returns true if "cg" matches "old_cg" except for the hierarchy
407 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
408 */
409static bool compare_css_sets(struct css_set *cg,
410 struct css_set *old_cg,
411 struct cgroup *new_cgrp,
412 struct cgroup_subsys_state *template[])
413{
414 struct list_head *l1, *l2;
415
416 if (memcmp(template, cg->subsys, sizeof(cg->subsys))) {
417 /* Not all subsystems matched */
418 return false;
419 }
420
421 /*
422 * Compare cgroup pointers in order to distinguish between
423 * different cgroups in heirarchies with no subsystems. We
424 * could get by with just this check alone (and skip the
425 * memcmp above) but on most setups the memcmp check will
426 * avoid the need for this more expensive check on almost all
427 * candidates.
428 */
429
430 l1 = &cg->cg_links;
431 l2 = &old_cg->cg_links;
432 while (1) {
433 struct cg_cgroup_link *cgl1, *cgl2;
434 struct cgroup *cg1, *cg2;
435
436 l1 = l1->next;
437 l2 = l2->next;
438 /* See if we reached the end - both lists are equal length. */
439 if (l1 == &cg->cg_links) {
440 BUG_ON(l2 != &old_cg->cg_links);
441 break;
442 } else {
443 BUG_ON(l2 == &old_cg->cg_links);
444 }
445 /* Locate the cgroups associated with these links. */
446 cgl1 = list_entry(l1, struct cg_cgroup_link, cg_link_list);
447 cgl2 = list_entry(l2, struct cg_cgroup_link, cg_link_list);
448 cg1 = cgl1->cgrp;
449 cg2 = cgl2->cgrp;
450 /* Hierarchies should be linked in the same order. */
451 BUG_ON(cg1->root != cg2->root);
452
453 /*
454 * If this hierarchy is the hierarchy of the cgroup
455 * that's changing, then we need to check that this
456 * css_set points to the new cgroup; if it's any other
457 * hierarchy, then this css_set should point to the
458 * same cgroup as the old css_set.
459 */
460 if (cg1->root == new_cgrp->root) {
461 if (cg1 != new_cgrp)
462 return false;
463 } else {
464 if (cg1 != cg2)
465 return false;
466 }
467 }
468 return true;
469}
470
471/*
Paul Menage817929e2007-10-18 23:39:36 -0700472 * find_existing_css_set() is a helper for
473 * find_css_set(), and checks to see whether an existing
Li Zefan472b1052008-04-29 01:00:11 -0700474 * css_set is suitable.
Paul Menage817929e2007-10-18 23:39:36 -0700475 *
476 * oldcg: the cgroup group that we're using before the cgroup
477 * transition
478 *
Paul Menagebd89aab2007-10-18 23:40:44 -0700479 * cgrp: the cgroup that we're moving into
Paul Menage817929e2007-10-18 23:39:36 -0700480 *
481 * template: location in which to build the desired set of subsystem
482 * state objects for the new cgroup group
483 */
Paul Menage817929e2007-10-18 23:39:36 -0700484static struct css_set *find_existing_css_set(
485 struct css_set *oldcg,
Paul Menagebd89aab2007-10-18 23:40:44 -0700486 struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -0700487 struct cgroup_subsys_state *template[])
488{
489 int i;
Paul Menagebd89aab2007-10-18 23:40:44 -0700490 struct cgroupfs_root *root = cgrp->root;
Li Zefan472b1052008-04-29 01:00:11 -0700491 struct hlist_head *hhead;
492 struct hlist_node *node;
493 struct css_set *cg;
Paul Menage817929e2007-10-18 23:39:36 -0700494
Ben Blumaae8aab2010-03-10 15:22:07 -0800495 /*
496 * Build the set of subsystem state objects that we want to see in the
497 * new css_set. while subsystems can change globally, the entries here
498 * won't change, so no need for locking.
499 */
Paul Menage817929e2007-10-18 23:39:36 -0700500 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Li Zefan8d53d552008-02-23 15:24:11 -0800501 if (root->subsys_bits & (1UL << i)) {
Paul Menage817929e2007-10-18 23:39:36 -0700502 /* Subsystem is in this hierarchy. So we want
503 * the subsystem state from the new
504 * cgroup */
Paul Menagebd89aab2007-10-18 23:40:44 -0700505 template[i] = cgrp->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700506 } else {
507 /* Subsystem is not in this hierarchy, so we
508 * don't want to change the subsystem state */
509 template[i] = oldcg->subsys[i];
510 }
511 }
512
Li Zefan472b1052008-04-29 01:00:11 -0700513 hhead = css_set_hash(template);
514 hlist_for_each_entry(cg, node, hhead, hlist) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700515 if (!compare_css_sets(cg, oldcg, cgrp, template))
516 continue;
517
518 /* This css_set matches what we need */
519 return cg;
Li Zefan472b1052008-04-29 01:00:11 -0700520 }
Paul Menage817929e2007-10-18 23:39:36 -0700521
522 /* No existing cgroup group matched */
523 return NULL;
524}
525
Paul Menage817929e2007-10-18 23:39:36 -0700526static void free_cg_links(struct list_head *tmp)
527{
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700528 struct cg_cgroup_link *link;
529 struct cg_cgroup_link *saved_link;
530
531 list_for_each_entry_safe(link, saved_link, tmp, cgrp_link_list) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700532 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -0700533 kfree(link);
534 }
535}
536
537/*
Li Zefan36553432008-07-29 22:33:19 -0700538 * allocate_cg_links() allocates "count" cg_cgroup_link structures
539 * and chains them on tmp through their cgrp_link_list fields. Returns 0 on
540 * success or a negative error
541 */
542static int allocate_cg_links(int count, struct list_head *tmp)
543{
544 struct cg_cgroup_link *link;
545 int i;
546 INIT_LIST_HEAD(tmp);
547 for (i = 0; i < count; i++) {
548 link = kmalloc(sizeof(*link), GFP_KERNEL);
549 if (!link) {
550 free_cg_links(tmp);
551 return -ENOMEM;
552 }
553 list_add(&link->cgrp_link_list, tmp);
554 }
555 return 0;
556}
557
Li Zefanc12f65d2009-01-07 18:07:42 -0800558/**
559 * link_css_set - a helper function to link a css_set to a cgroup
560 * @tmp_cg_links: cg_cgroup_link objects allocated by allocate_cg_links()
561 * @cg: the css_set to be linked
562 * @cgrp: the destination cgroup
563 */
564static void link_css_set(struct list_head *tmp_cg_links,
565 struct css_set *cg, struct cgroup *cgrp)
566{
567 struct cg_cgroup_link *link;
568
569 BUG_ON(list_empty(tmp_cg_links));
570 link = list_first_entry(tmp_cg_links, struct cg_cgroup_link,
571 cgrp_link_list);
572 link->cg = cg;
Paul Menage7717f7b2009-09-23 15:56:22 -0700573 link->cgrp = cgrp;
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700574 atomic_inc(&cgrp->count);
Li Zefanc12f65d2009-01-07 18:07:42 -0800575 list_move(&link->cgrp_link_list, &cgrp->css_sets);
Paul Menage7717f7b2009-09-23 15:56:22 -0700576 /*
577 * Always add links to the tail of the list so that the list
578 * is sorted by order of hierarchy creation
579 */
580 list_add_tail(&link->cg_link_list, &cg->cg_links);
Li Zefanc12f65d2009-01-07 18:07:42 -0800581}
582
Li Zefan36553432008-07-29 22:33:19 -0700583/*
Paul Menage817929e2007-10-18 23:39:36 -0700584 * find_css_set() takes an existing cgroup group and a
585 * cgroup object, and returns a css_set object that's
586 * equivalent to the old group, but with the given cgroup
587 * substituted into the appropriate hierarchy. Must be called with
588 * cgroup_mutex held
589 */
Paul Menage817929e2007-10-18 23:39:36 -0700590static struct css_set *find_css_set(
Paul Menagebd89aab2007-10-18 23:40:44 -0700591 struct css_set *oldcg, struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700592{
593 struct css_set *res;
594 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT];
Paul Menage817929e2007-10-18 23:39:36 -0700595
596 struct list_head tmp_cg_links;
Paul Menage817929e2007-10-18 23:39:36 -0700597
Li Zefan472b1052008-04-29 01:00:11 -0700598 struct hlist_head *hhead;
Paul Menage7717f7b2009-09-23 15:56:22 -0700599 struct cg_cgroup_link *link;
Li Zefan472b1052008-04-29 01:00:11 -0700600
Paul Menage817929e2007-10-18 23:39:36 -0700601 /* First see if we already have a cgroup group that matches
602 * the desired set */
Li Zefan7e9abd82008-07-25 01:46:54 -0700603 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -0700604 res = find_existing_css_set(oldcg, cgrp, template);
Paul Menage817929e2007-10-18 23:39:36 -0700605 if (res)
606 get_css_set(res);
Li Zefan7e9abd82008-07-25 01:46:54 -0700607 read_unlock(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -0700608
609 if (res)
610 return res;
611
612 res = kmalloc(sizeof(*res), GFP_KERNEL);
613 if (!res)
614 return NULL;
615
616 /* Allocate all the cg_cgroup_link objects that we'll need */
617 if (allocate_cg_links(root_count, &tmp_cg_links) < 0) {
618 kfree(res);
619 return NULL;
620 }
621
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700622 atomic_set(&res->refcount, 1);
Paul Menage817929e2007-10-18 23:39:36 -0700623 INIT_LIST_HEAD(&res->cg_links);
624 INIT_LIST_HEAD(&res->tasks);
Li Zefan472b1052008-04-29 01:00:11 -0700625 INIT_HLIST_NODE(&res->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700626
627 /* Copy the set of subsystem state objects generated in
628 * find_existing_css_set() */
629 memcpy(res->subsys, template, sizeof(res->subsys));
630
631 write_lock(&css_set_lock);
632 /* Add reference counts and links from the new css_set. */
Paul Menage7717f7b2009-09-23 15:56:22 -0700633 list_for_each_entry(link, &oldcg->cg_links, cg_link_list) {
634 struct cgroup *c = link->cgrp;
635 if (c->root == cgrp->root)
636 c = cgrp;
637 link_css_set(&tmp_cg_links, res, c);
638 }
Paul Menage817929e2007-10-18 23:39:36 -0700639
640 BUG_ON(!list_empty(&tmp_cg_links));
641
Paul Menage817929e2007-10-18 23:39:36 -0700642 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -0700643
644 /* Add this cgroup group to the hash table */
645 hhead = css_set_hash(res->subsys);
646 hlist_add_head(&res->hlist, hhead);
647
Paul Menage817929e2007-10-18 23:39:36 -0700648 write_unlock(&css_set_lock);
649
650 return res;
Paul Menageb4f48b62007-10-18 23:39:33 -0700651}
652
Paul Menageddbcc7e2007-10-18 23:39:30 -0700653/*
Paul Menage7717f7b2009-09-23 15:56:22 -0700654 * Return the cgroup for "task" from the given hierarchy. Must be
655 * called with cgroup_mutex held.
656 */
657static struct cgroup *task_cgroup_from_root(struct task_struct *task,
658 struct cgroupfs_root *root)
659{
660 struct css_set *css;
661 struct cgroup *res = NULL;
662
663 BUG_ON(!mutex_is_locked(&cgroup_mutex));
664 read_lock(&css_set_lock);
665 /*
666 * No need to lock the task - since we hold cgroup_mutex the
667 * task can't change groups, so the only thing that can happen
668 * is that it exits and its css is set back to init_css_set.
669 */
670 css = task->cgroups;
671 if (css == &init_css_set) {
672 res = &root->top_cgroup;
673 } else {
674 struct cg_cgroup_link *link;
675 list_for_each_entry(link, &css->cg_links, cg_link_list) {
676 struct cgroup *c = link->cgrp;
677 if (c->root == root) {
678 res = c;
679 break;
680 }
681 }
682 }
683 read_unlock(&css_set_lock);
684 BUG_ON(!res);
685 return res;
686}
687
688/*
Paul Menageddbcc7e2007-10-18 23:39:30 -0700689 * There is one global cgroup mutex. We also require taking
690 * task_lock() when dereferencing a task's cgroup subsys pointers.
691 * See "The task_lock() exception", at the end of this comment.
692 *
693 * A task must hold cgroup_mutex to modify cgroups.
694 *
695 * Any task can increment and decrement the count field without lock.
696 * So in general, code holding cgroup_mutex can't rely on the count
697 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -0800698 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -0700699 * means that no tasks are currently attached, therefore there is no
700 * way a task attached to that cgroup can fork (the other way to
701 * increment the count). So code holding cgroup_mutex can safely
702 * assume that if the count is zero, it will stay zero. Similarly, if
703 * a task holds cgroup_mutex on a cgroup with zero count, it
704 * knows that the cgroup won't be removed, as cgroup_rmdir()
705 * needs that mutex.
706 *
Paul Menageddbcc7e2007-10-18 23:39:30 -0700707 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
708 * (usually) take cgroup_mutex. These are the two most performance
709 * critical pieces of code here. The exception occurs on cgroup_exit(),
710 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
711 * is taken, and if the cgroup count is zero, a usermode call made
Li Zefana043e3b2008-02-23 15:24:09 -0800712 * to the release agent with the name of the cgroup (path relative to
713 * the root of cgroup file system) as the argument.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700714 *
715 * A cgroup can only be deleted if both its 'count' of using tasks
716 * is zero, and its list of 'children' cgroups is empty. Since all
717 * tasks in the system use _some_ cgroup, and since there is always at
718 * least one task in the system (init, pid == 1), therefore, top_cgroup
719 * always has either children cgroups and/or using tasks. So we don't
720 * need a special hack to ensure that top_cgroup cannot be deleted.
721 *
722 * The task_lock() exception
723 *
724 * The need for this exception arises from the action of
Cliff Wickman956db3c2008-02-07 00:14:43 -0800725 * cgroup_attach_task(), which overwrites one tasks cgroup pointer with
Li Zefana043e3b2008-02-23 15:24:09 -0800726 * another. It does so using cgroup_mutex, however there are
Paul Menageddbcc7e2007-10-18 23:39:30 -0700727 * several performance critical places that need to reference
728 * task->cgroup without the expense of grabbing a system global
729 * mutex. Therefore except as noted below, when dereferencing or, as
Cliff Wickman956db3c2008-02-07 00:14:43 -0800730 * in cgroup_attach_task(), modifying a task'ss cgroup pointer we use
Paul Menageddbcc7e2007-10-18 23:39:30 -0700731 * task_lock(), which acts on a spinlock (task->alloc_lock) already in
732 * the task_struct routinely used for such matters.
733 *
734 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -0800735 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700736 */
737
Paul Menageddbcc7e2007-10-18 23:39:30 -0700738/**
739 * cgroup_lock - lock out any changes to cgroup structures
740 *
741 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700742void cgroup_lock(void)
743{
744 mutex_lock(&cgroup_mutex);
745}
Ben Blum67523c42010-03-10 15:22:11 -0800746EXPORT_SYMBOL_GPL(cgroup_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700747
748/**
749 * cgroup_unlock - release lock on cgroup changes
750 *
751 * Undo the lock taken in a previous cgroup_lock() call.
752 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700753void cgroup_unlock(void)
754{
755 mutex_unlock(&cgroup_mutex);
756}
Ben Blum67523c42010-03-10 15:22:11 -0800757EXPORT_SYMBOL_GPL(cgroup_unlock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700758
759/*
760 * A couple of forward declarations required, due to cyclic reference loop:
761 * cgroup_mkdir -> cgroup_create -> cgroup_populate_dir ->
762 * cgroup_add_file -> cgroup_create_file -> cgroup_dir_inode_operations
763 * -> cgroup_mkdir.
764 */
765
Nick Piggin5adcee12011-01-07 17:49:20 +1100766static struct dentry *cgroup_lookup(struct inode *dir,
767 struct dentry *dentry, struct nameidata *nd);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700768static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode);
769static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -0700770static int cgroup_populate_dir(struct cgroup *cgrp);
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -0700771static const struct inode_operations cgroup_dir_inode_operations;
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700772static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -0700773
774static struct backing_dev_info cgroup_backing_dev_info = {
Jens Axboed9938312009-06-12 14:45:52 +0200775 .name = "cgroup",
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700776 .capabilities = BDI_CAP_NO_ACCT_AND_WRITEBACK,
Paul Menagea4243162007-10-18 23:39:35 -0700777};
Paul Menageddbcc7e2007-10-18 23:39:30 -0700778
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700779static int alloc_css_id(struct cgroup_subsys *ss,
780 struct cgroup *parent, struct cgroup *child);
781
Paul Menageddbcc7e2007-10-18 23:39:30 -0700782static struct inode *cgroup_new_inode(mode_t mode, struct super_block *sb)
783{
784 struct inode *inode = new_inode(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700785
786 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400787 inode->i_ino = get_next_ino();
Paul Menageddbcc7e2007-10-18 23:39:30 -0700788 inode->i_mode = mode;
David Howells76aac0e2008-11-14 10:39:12 +1100789 inode->i_uid = current_fsuid();
790 inode->i_gid = current_fsgid();
Paul Menageddbcc7e2007-10-18 23:39:30 -0700791 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
792 inode->i_mapping->backing_dev_info = &cgroup_backing_dev_info;
793 }
794 return inode;
795}
796
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800797/*
798 * Call subsys's pre_destroy handler.
799 * This is called before css refcnt check.
800 */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700801static int cgroup_call_pre_destroy(struct cgroup *cgrp)
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800802{
803 struct cgroup_subsys *ss;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700804 int ret = 0;
805
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800806 for_each_subsys(cgrp->root, ss)
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700807 if (ss->pre_destroy) {
808 ret = ss->pre_destroy(ss, cgrp);
809 if (ret)
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -0800810 break;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700811 }
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800812
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700813 return ret;
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800814}
815
Paul Menagea47295e2009-01-07 18:07:44 -0800816static void free_cgroup_rcu(struct rcu_head *obj)
817{
818 struct cgroup *cgrp = container_of(obj, struct cgroup, rcu_head);
819
820 kfree(cgrp);
821}
822
Paul Menageddbcc7e2007-10-18 23:39:30 -0700823static void cgroup_diput(struct dentry *dentry, struct inode *inode)
824{
825 /* is dentry a directory ? if so, kfree() associated cgroup */
826 if (S_ISDIR(inode->i_mode)) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700827 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800828 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -0700829 BUG_ON(!(cgroup_is_removed(cgrp)));
Paul Menage81a6a5c2007-10-18 23:39:38 -0700830 /* It's possible for external users to be holding css
831 * reference counts on a cgroup; css_put() needs to
832 * be able to access the cgroup after decrementing
833 * the reference count in order to know if it needs to
834 * queue the cgroup to be handled by the release
835 * agent */
836 synchronize_rcu();
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800837
838 mutex_lock(&cgroup_mutex);
839 /*
840 * Release the subsystem state objects.
841 */
Li Zefan75139b82009-01-07 18:07:33 -0800842 for_each_subsys(cgrp->root, ss)
843 ss->destroy(ss, cgrp);
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800844
845 cgrp->root->number_of_cgroups--;
846 mutex_unlock(&cgroup_mutex);
847
Paul Menagea47295e2009-01-07 18:07:44 -0800848 /*
849 * Drop the active superblock reference that we took when we
850 * created the cgroup
851 */
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800852 deactivate_super(cgrp->root->sb);
853
Ben Blum72a8cb32009-09-23 15:56:27 -0700854 /*
855 * if we're getting rid of the cgroup, refcount should ensure
856 * that there are no pidlists left.
857 */
858 BUG_ON(!list_empty(&cgrp->pidlists));
859
Paul Menagea47295e2009-01-07 18:07:44 -0800860 call_rcu(&cgrp->rcu_head, free_cgroup_rcu);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700861 }
862 iput(inode);
863}
864
865static void remove_dir(struct dentry *d)
866{
867 struct dentry *parent = dget(d->d_parent);
868
869 d_delete(d);
870 simple_rmdir(parent->d_inode, d);
871 dput(parent);
872}
873
874static void cgroup_clear_directory(struct dentry *dentry)
875{
876 struct list_head *node;
877
878 BUG_ON(!mutex_is_locked(&dentry->d_inode->i_mutex));
879 spin_lock(&dcache_lock);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100880 spin_lock(&dentry->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700881 node = dentry->d_subdirs.next;
882 while (node != &dentry->d_subdirs) {
883 struct dentry *d = list_entry(node, struct dentry, d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100884
885 spin_lock_nested(&d->d_lock, DENTRY_D_LOCK_NESTED);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700886 list_del_init(node);
887 if (d->d_inode) {
888 /* This should never be called on a cgroup
889 * directory with child cgroups */
890 BUG_ON(d->d_inode->i_mode & S_IFDIR);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100891 dget_locked_dlock(d);
892 spin_unlock(&d->d_lock);
893 spin_unlock(&dentry->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700894 spin_unlock(&dcache_lock);
895 d_delete(d);
896 simple_unlink(dentry->d_inode, d);
897 dput(d);
898 spin_lock(&dcache_lock);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100899 spin_lock(&dentry->d_lock);
900 } else
901 spin_unlock(&d->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700902 node = dentry->d_subdirs.next;
903 }
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100904 spin_unlock(&dentry->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700905 spin_unlock(&dcache_lock);
906}
907
908/*
909 * NOTE : the dentry must have been dget()'ed
910 */
911static void cgroup_d_remove_dir(struct dentry *dentry)
912{
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100913 struct dentry *parent;
914
Paul Menageddbcc7e2007-10-18 23:39:30 -0700915 cgroup_clear_directory(dentry);
916
917 spin_lock(&dcache_lock);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100918 parent = dentry->d_parent;
919 spin_lock(&parent->d_lock);
920 spin_lock(&dentry->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700921 list_del_init(&dentry->d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100922 spin_unlock(&dentry->d_lock);
923 spin_unlock(&parent->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700924 spin_unlock(&dcache_lock);
925 remove_dir(dentry);
926}
927
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700928/*
929 * A queue for waiters to do rmdir() cgroup. A tasks will sleep when
930 * cgroup->count == 0 && list_empty(&cgroup->children) && subsys has some
931 * reference to css->refcnt. In general, this refcnt is expected to goes down
932 * to zero, soon.
933 *
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700934 * CGRP_WAIT_ON_RMDIR flag is set under cgroup's inode->i_mutex;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700935 */
936DECLARE_WAIT_QUEUE_HEAD(cgroup_rmdir_waitq);
937
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700938static void cgroup_wakeup_rmdir_waiter(struct cgroup *cgrp)
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700939{
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700940 if (unlikely(test_and_clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags)))
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700941 wake_up_all(&cgroup_rmdir_waitq);
942}
943
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700944void cgroup_exclude_rmdir(struct cgroup_subsys_state *css)
945{
946 css_get(css);
947}
948
949void cgroup_release_and_wakeup_rmdir(struct cgroup_subsys_state *css)
950{
951 cgroup_wakeup_rmdir_waiter(css->cgroup);
952 css_put(css);
953}
954
Ben Blumaae8aab2010-03-10 15:22:07 -0800955/*
Ben Blumcf5d5942010-03-10 15:22:09 -0800956 * Call with cgroup_mutex held. Drops reference counts on modules, including
957 * any duplicate ones that parse_cgroupfs_options took. If this function
958 * returns an error, no reference counts are touched.
Ben Blumaae8aab2010-03-10 15:22:07 -0800959 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700960static int rebind_subsystems(struct cgroupfs_root *root,
961 unsigned long final_bits)
962{
963 unsigned long added_bits, removed_bits;
Paul Menagebd89aab2007-10-18 23:40:44 -0700964 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700965 int i;
966
Ben Blumaae8aab2010-03-10 15:22:07 -0800967 BUG_ON(!mutex_is_locked(&cgroup_mutex));
968
Paul Menageddbcc7e2007-10-18 23:39:30 -0700969 removed_bits = root->actual_subsys_bits & ~final_bits;
970 added_bits = final_bits & ~root->actual_subsys_bits;
971 /* Check that any added subsystems are currently free */
972 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Li Zefan8d53d552008-02-23 15:24:11 -0800973 unsigned long bit = 1UL << i;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700974 struct cgroup_subsys *ss = subsys[i];
975 if (!(bit & added_bits))
976 continue;
Ben Blumaae8aab2010-03-10 15:22:07 -0800977 /*
978 * Nobody should tell us to do a subsys that doesn't exist:
979 * parse_cgroupfs_options should catch that case and refcounts
980 * ensure that subsystems won't disappear once selected.
981 */
982 BUG_ON(ss == NULL);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700983 if (ss->root != &rootnode) {
984 /* Subsystem isn't free */
985 return -EBUSY;
986 }
987 }
988
989 /* Currently we don't handle adding/removing subsystems when
990 * any child cgroups exist. This is theoretically supportable
991 * but involves complex error handling, so it's being left until
992 * later */
Paul Menage307257c2008-12-15 13:54:22 -0800993 if (root->number_of_cgroups > 1)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700994 return -EBUSY;
995
996 /* Process each subsystem */
997 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
998 struct cgroup_subsys *ss = subsys[i];
999 unsigned long bit = 1UL << i;
1000 if (bit & added_bits) {
1001 /* We're binding this subsystem to this hierarchy */
Ben Blumaae8aab2010-03-10 15:22:07 -08001002 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001003 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001004 BUG_ON(!dummytop->subsys[i]);
1005 BUG_ON(dummytop->subsys[i]->cgroup != dummytop);
Paul Menage999cd8a2009-01-07 18:08:36 -08001006 mutex_lock(&ss->hierarchy_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07001007 cgrp->subsys[i] = dummytop->subsys[i];
1008 cgrp->subsys[i]->cgroup = cgrp;
Li Zefan33a68ac2009-01-07 18:07:42 -08001009 list_move(&ss->sibling, &root->subsys_list);
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001010 ss->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001011 if (ss->bind)
Paul Menagebd89aab2007-10-18 23:40:44 -07001012 ss->bind(ss, cgrp);
Paul Menage999cd8a2009-01-07 18:08:36 -08001013 mutex_unlock(&ss->hierarchy_mutex);
Ben Blumcf5d5942010-03-10 15:22:09 -08001014 /* refcount was already taken, and we're keeping it */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001015 } else if (bit & removed_bits) {
1016 /* We're removing this subsystem */
Ben Blumaae8aab2010-03-10 15:22:07 -08001017 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001018 BUG_ON(cgrp->subsys[i] != dummytop->subsys[i]);
1019 BUG_ON(cgrp->subsys[i]->cgroup != cgrp);
Paul Menage999cd8a2009-01-07 18:08:36 -08001020 mutex_lock(&ss->hierarchy_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001021 if (ss->bind)
1022 ss->bind(ss, dummytop);
1023 dummytop->subsys[i]->cgroup = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -07001024 cgrp->subsys[i] = NULL;
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001025 subsys[i]->root = &rootnode;
Li Zefan33a68ac2009-01-07 18:07:42 -08001026 list_move(&ss->sibling, &rootnode.subsys_list);
Paul Menage999cd8a2009-01-07 18:08:36 -08001027 mutex_unlock(&ss->hierarchy_mutex);
Ben Blumcf5d5942010-03-10 15:22:09 -08001028 /* subsystem is now free - drop reference on module */
1029 module_put(ss->module);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001030 } else if (bit & final_bits) {
1031 /* Subsystem state should already exist */
Ben Blumaae8aab2010-03-10 15:22:07 -08001032 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001033 BUG_ON(!cgrp->subsys[i]);
Ben Blumcf5d5942010-03-10 15:22:09 -08001034 /*
1035 * a refcount was taken, but we already had one, so
1036 * drop the extra reference.
1037 */
1038 module_put(ss->module);
1039#ifdef CONFIG_MODULE_UNLOAD
1040 BUG_ON(ss->module && !module_refcount(ss->module));
1041#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001042 } else {
1043 /* Subsystem state shouldn't exist */
Paul Menagebd89aab2007-10-18 23:40:44 -07001044 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001045 }
1046 }
1047 root->subsys_bits = root->actual_subsys_bits = final_bits;
1048 synchronize_rcu();
1049
1050 return 0;
1051}
1052
1053static int cgroup_show_options(struct seq_file *seq, struct vfsmount *vfs)
1054{
1055 struct cgroupfs_root *root = vfs->mnt_sb->s_fs_info;
1056 struct cgroup_subsys *ss;
1057
1058 mutex_lock(&cgroup_mutex);
1059 for_each_subsys(root, ss)
1060 seq_printf(seq, ",%s", ss->name);
1061 if (test_bit(ROOT_NOPREFIX, &root->flags))
1062 seq_puts(seq, ",noprefix");
Paul Menage81a6a5c2007-10-18 23:39:38 -07001063 if (strlen(root->release_agent_path))
1064 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Daniel Lezcano97978e62010-10-27 15:33:35 -07001065 if (clone_children(&root->top_cgroup))
1066 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001067 if (strlen(root->name))
1068 seq_printf(seq, ",name=%s", root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001069 mutex_unlock(&cgroup_mutex);
1070 return 0;
1071}
1072
1073struct cgroup_sb_opts {
1074 unsigned long subsys_bits;
1075 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001076 char *release_agent;
Daniel Lezcano97978e62010-10-27 15:33:35 -07001077 bool clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001078 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001079 /* User explicitly requested empty subsystem */
1080 bool none;
Paul Menagec6d57f32009-09-23 15:56:19 -07001081
1082 struct cgroupfs_root *new_root;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001083
Paul Menageddbcc7e2007-10-18 23:39:30 -07001084};
1085
Ben Blumaae8aab2010-03-10 15:22:07 -08001086/*
1087 * Convert a hierarchy specifier into a bitmask of subsystems and flags. Call
Ben Blumcf5d5942010-03-10 15:22:09 -08001088 * with cgroup_mutex held to protect the subsys[] array. This function takes
1089 * refcounts on subsystems to be used, unless it returns error, in which case
1090 * no refcounts are taken.
Ben Blumaae8aab2010-03-10 15:22:07 -08001091 */
Ben Blumcf5d5942010-03-10 15:22:09 -08001092static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001093{
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001094 char *token, *o = data;
1095 bool all_ss = false, one_ss = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001096 unsigned long mask = (unsigned long)-1;
Ben Blumcf5d5942010-03-10 15:22:09 -08001097 int i;
1098 bool module_pin_failed = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001099
Ben Blumaae8aab2010-03-10 15:22:07 -08001100 BUG_ON(!mutex_is_locked(&cgroup_mutex));
1101
Li Zefanf9ab5b52009-06-17 16:26:33 -07001102#ifdef CONFIG_CPUSETS
1103 mask = ~(1UL << cpuset_subsys_id);
1104#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001105
Paul Menagec6d57f32009-09-23 15:56:19 -07001106 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001107
1108 while ((token = strsep(&o, ",")) != NULL) {
1109 if (!*token)
1110 return -EINVAL;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001111 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001112 /* Explicitly have no subsystems */
1113 opts->none = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001114 continue;
1115 }
1116 if (!strcmp(token, "all")) {
1117 /* Mutually exclusive option 'all' + subsystem name */
1118 if (one_ss)
1119 return -EINVAL;
1120 all_ss = true;
1121 continue;
1122 }
1123 if (!strcmp(token, "noprefix")) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001124 set_bit(ROOT_NOPREFIX, &opts->flags);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001125 continue;
1126 }
1127 if (!strcmp(token, "clone_children")) {
Daniel Lezcano97978e62010-10-27 15:33:35 -07001128 opts->clone_children = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001129 continue;
1130 }
1131 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001132 /* Specifying two release agents is forbidden */
1133 if (opts->release_agent)
1134 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001135 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001136 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001137 if (!opts->release_agent)
1138 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001139 continue;
1140 }
1141 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001142 const char *name = token + 5;
1143 /* Can't specify an empty name */
1144 if (!strlen(name))
1145 return -EINVAL;
1146 /* Must match [\w.-]+ */
1147 for (i = 0; i < strlen(name); i++) {
1148 char c = name[i];
1149 if (isalnum(c))
1150 continue;
1151 if ((c == '.') || (c == '-') || (c == '_'))
1152 continue;
1153 return -EINVAL;
1154 }
1155 /* Specifying two names is forbidden */
1156 if (opts->name)
1157 return -EINVAL;
1158 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001159 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001160 GFP_KERNEL);
1161 if (!opts->name)
1162 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001163
1164 continue;
1165 }
1166
1167 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1168 struct cgroup_subsys *ss = subsys[i];
1169 if (ss == NULL)
1170 continue;
1171 if (strcmp(token, ss->name))
1172 continue;
1173 if (ss->disabled)
1174 continue;
1175
1176 /* Mutually exclusive option 'all' + subsystem name */
1177 if (all_ss)
1178 return -EINVAL;
1179 set_bit(i, &opts->subsys_bits);
1180 one_ss = true;
1181
1182 break;
1183 }
1184 if (i == CGROUP_SUBSYS_COUNT)
1185 return -ENOENT;
1186 }
1187
1188 /*
1189 * If the 'all' option was specified select all the subsystems,
1190 * otherwise 'all, 'none' and a subsystem name options were not
1191 * specified, let's default to 'all'
1192 */
1193 if (all_ss || (!all_ss && !one_ss && !opts->none)) {
1194 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1195 struct cgroup_subsys *ss = subsys[i];
1196 if (ss == NULL)
1197 continue;
1198 if (ss->disabled)
1199 continue;
1200 set_bit(i, &opts->subsys_bits);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001201 }
1202 }
1203
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001204 /* Consistency checks */
1205
Li Zefanf9ab5b52009-06-17 16:26:33 -07001206 /*
1207 * Option noprefix was introduced just for backward compatibility
1208 * with the old cpuset, so we allow noprefix only if mounting just
1209 * the cpuset subsystem.
1210 */
1211 if (test_bit(ROOT_NOPREFIX, &opts->flags) &&
1212 (opts->subsys_bits & mask))
1213 return -EINVAL;
1214
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001215
1216 /* Can't specify "none" and some subsystems */
1217 if (opts->subsys_bits && opts->none)
1218 return -EINVAL;
1219
1220 /*
1221 * We either have to specify by name or by subsystems. (So all
1222 * empty hierarchies must have a name).
1223 */
Paul Menagec6d57f32009-09-23 15:56:19 -07001224 if (!opts->subsys_bits && !opts->name)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001225 return -EINVAL;
1226
Ben Blumcf5d5942010-03-10 15:22:09 -08001227 /*
1228 * Grab references on all the modules we'll need, so the subsystems
1229 * don't dance around before rebind_subsystems attaches them. This may
1230 * take duplicate reference counts on a subsystem that's already used,
1231 * but rebind_subsystems handles this case.
1232 */
1233 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
1234 unsigned long bit = 1UL << i;
1235
1236 if (!(bit & opts->subsys_bits))
1237 continue;
1238 if (!try_module_get(subsys[i]->module)) {
1239 module_pin_failed = true;
1240 break;
1241 }
1242 }
1243 if (module_pin_failed) {
1244 /*
1245 * oops, one of the modules was going away. this means that we
1246 * raced with a module_delete call, and to the user this is
1247 * essentially a "subsystem doesn't exist" case.
1248 */
1249 for (i--; i >= CGROUP_BUILTIN_SUBSYS_COUNT; i--) {
1250 /* drop refcounts only on the ones we took */
1251 unsigned long bit = 1UL << i;
1252
1253 if (!(bit & opts->subsys_bits))
1254 continue;
1255 module_put(subsys[i]->module);
1256 }
1257 return -ENOENT;
1258 }
1259
Paul Menageddbcc7e2007-10-18 23:39:30 -07001260 return 0;
1261}
1262
Ben Blumcf5d5942010-03-10 15:22:09 -08001263static void drop_parsed_module_refcounts(unsigned long subsys_bits)
1264{
1265 int i;
1266 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
1267 unsigned long bit = 1UL << i;
1268
1269 if (!(bit & subsys_bits))
1270 continue;
1271 module_put(subsys[i]->module);
1272 }
1273}
1274
Paul Menageddbcc7e2007-10-18 23:39:30 -07001275static int cgroup_remount(struct super_block *sb, int *flags, char *data)
1276{
1277 int ret = 0;
1278 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001279 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001280 struct cgroup_sb_opts opts;
1281
Paul Menagebd89aab2007-10-18 23:40:44 -07001282 mutex_lock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001283 mutex_lock(&cgroup_mutex);
1284
1285 /* See what subsystems are wanted */
1286 ret = parse_cgroupfs_options(data, &opts);
1287 if (ret)
1288 goto out_unlock;
1289
Ben Blumcf5d5942010-03-10 15:22:09 -08001290 /* Don't allow flags or name to change at remount */
1291 if (opts.flags != root->flags ||
1292 (opts.name && strcmp(opts.name, root->name))) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001293 ret = -EINVAL;
Ben Blumcf5d5942010-03-10 15:22:09 -08001294 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menagec6d57f32009-09-23 15:56:19 -07001295 goto out_unlock;
1296 }
1297
Paul Menageddbcc7e2007-10-18 23:39:30 -07001298 ret = rebind_subsystems(root, opts.subsys_bits);
Ben Blumcf5d5942010-03-10 15:22:09 -08001299 if (ret) {
1300 drop_parsed_module_refcounts(opts.subsys_bits);
Li Zefan0670e082009-04-02 16:57:30 -07001301 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001302 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001303
1304 /* (re)populate subsystem files */
Li Zefan0670e082009-04-02 16:57:30 -07001305 cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001306
Paul Menage81a6a5c2007-10-18 23:39:38 -07001307 if (opts.release_agent)
1308 strcpy(root->release_agent_path, opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001309 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001310 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001311 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001312 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07001313 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001314 return ret;
1315}
1316
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001317static const struct super_operations cgroup_ops = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001318 .statfs = simple_statfs,
1319 .drop_inode = generic_delete_inode,
1320 .show_options = cgroup_show_options,
1321 .remount_fs = cgroup_remount,
1322};
1323
Paul Menagecc31edc2008-10-18 20:28:04 -07001324static void init_cgroup_housekeeping(struct cgroup *cgrp)
1325{
1326 INIT_LIST_HEAD(&cgrp->sibling);
1327 INIT_LIST_HEAD(&cgrp->children);
1328 INIT_LIST_HEAD(&cgrp->css_sets);
1329 INIT_LIST_HEAD(&cgrp->release_list);
Ben Blum72a8cb32009-09-23 15:56:27 -07001330 INIT_LIST_HEAD(&cgrp->pidlists);
1331 mutex_init(&cgrp->pidlist_mutex);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08001332 INIT_LIST_HEAD(&cgrp->event_list);
1333 spin_lock_init(&cgrp->event_list_lock);
Paul Menagecc31edc2008-10-18 20:28:04 -07001334}
Paul Menagec6d57f32009-09-23 15:56:19 -07001335
Paul Menageddbcc7e2007-10-18 23:39:30 -07001336static void init_cgroup_root(struct cgroupfs_root *root)
1337{
Paul Menagebd89aab2007-10-18 23:40:44 -07001338 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001339 INIT_LIST_HEAD(&root->subsys_list);
1340 INIT_LIST_HEAD(&root->root_list);
1341 root->number_of_cgroups = 1;
Paul Menagebd89aab2007-10-18 23:40:44 -07001342 cgrp->root = root;
1343 cgrp->top_cgroup = cgrp;
Paul Menagecc31edc2008-10-18 20:28:04 -07001344 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001345}
1346
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001347static bool init_root_id(struct cgroupfs_root *root)
1348{
1349 int ret = 0;
1350
1351 do {
1352 if (!ida_pre_get(&hierarchy_ida, GFP_KERNEL))
1353 return false;
1354 spin_lock(&hierarchy_id_lock);
1355 /* Try to allocate the next unused ID */
1356 ret = ida_get_new_above(&hierarchy_ida, next_hierarchy_id,
1357 &root->hierarchy_id);
1358 if (ret == -ENOSPC)
1359 /* Try again starting from 0 */
1360 ret = ida_get_new(&hierarchy_ida, &root->hierarchy_id);
1361 if (!ret) {
1362 next_hierarchy_id = root->hierarchy_id + 1;
1363 } else if (ret != -EAGAIN) {
1364 /* Can only get here if the 31-bit IDR is full ... */
1365 BUG_ON(ret);
1366 }
1367 spin_unlock(&hierarchy_id_lock);
1368 } while (ret);
1369 return true;
1370}
1371
Paul Menageddbcc7e2007-10-18 23:39:30 -07001372static int cgroup_test_super(struct super_block *sb, void *data)
1373{
Paul Menagec6d57f32009-09-23 15:56:19 -07001374 struct cgroup_sb_opts *opts = data;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001375 struct cgroupfs_root *root = sb->s_fs_info;
1376
Paul Menagec6d57f32009-09-23 15:56:19 -07001377 /* If we asked for a name then it must match */
1378 if (opts->name && strcmp(opts->name, root->name))
1379 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001380
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001381 /*
1382 * If we asked for subsystems (or explicitly for no
1383 * subsystems) then they must match
1384 */
1385 if ((opts->subsys_bits || opts->none)
1386 && (opts->subsys_bits != root->subsys_bits))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001387 return 0;
1388
1389 return 1;
1390}
1391
Paul Menagec6d57f32009-09-23 15:56:19 -07001392static struct cgroupfs_root *cgroup_root_from_opts(struct cgroup_sb_opts *opts)
1393{
1394 struct cgroupfs_root *root;
1395
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001396 if (!opts->subsys_bits && !opts->none)
Paul Menagec6d57f32009-09-23 15:56:19 -07001397 return NULL;
1398
1399 root = kzalloc(sizeof(*root), GFP_KERNEL);
1400 if (!root)
1401 return ERR_PTR(-ENOMEM);
1402
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001403 if (!init_root_id(root)) {
1404 kfree(root);
1405 return ERR_PTR(-ENOMEM);
1406 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001407 init_cgroup_root(root);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001408
Paul Menagec6d57f32009-09-23 15:56:19 -07001409 root->subsys_bits = opts->subsys_bits;
1410 root->flags = opts->flags;
1411 if (opts->release_agent)
1412 strcpy(root->release_agent_path, opts->release_agent);
1413 if (opts->name)
1414 strcpy(root->name, opts->name);
Daniel Lezcano97978e62010-10-27 15:33:35 -07001415 if (opts->clone_children)
1416 set_bit(CGRP_CLONE_CHILDREN, &root->top_cgroup.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001417 return root;
1418}
1419
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001420static void cgroup_drop_root(struct cgroupfs_root *root)
1421{
1422 if (!root)
1423 return;
1424
1425 BUG_ON(!root->hierarchy_id);
1426 spin_lock(&hierarchy_id_lock);
1427 ida_remove(&hierarchy_ida, root->hierarchy_id);
1428 spin_unlock(&hierarchy_id_lock);
1429 kfree(root);
1430}
1431
Paul Menageddbcc7e2007-10-18 23:39:30 -07001432static int cgroup_set_super(struct super_block *sb, void *data)
1433{
1434 int ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001435 struct cgroup_sb_opts *opts = data;
1436
1437 /* If we don't have a new root, we can't set up a new sb */
1438 if (!opts->new_root)
1439 return -EINVAL;
1440
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001441 BUG_ON(!opts->subsys_bits && !opts->none);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001442
1443 ret = set_anon_super(sb, NULL);
1444 if (ret)
1445 return ret;
1446
Paul Menagec6d57f32009-09-23 15:56:19 -07001447 sb->s_fs_info = opts->new_root;
1448 opts->new_root->sb = sb;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001449
1450 sb->s_blocksize = PAGE_CACHE_SIZE;
1451 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
1452 sb->s_magic = CGROUP_SUPER_MAGIC;
1453 sb->s_op = &cgroup_ops;
1454
1455 return 0;
1456}
1457
1458static int cgroup_get_rootdir(struct super_block *sb)
1459{
1460 struct inode *inode =
1461 cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb);
1462 struct dentry *dentry;
1463
1464 if (!inode)
1465 return -ENOMEM;
1466
Paul Menageddbcc7e2007-10-18 23:39:30 -07001467 inode->i_fop = &simple_dir_operations;
1468 inode->i_op = &cgroup_dir_inode_operations;
1469 /* directories start off with i_nlink == 2 (for "." entry) */
1470 inc_nlink(inode);
1471 dentry = d_alloc_root(inode);
1472 if (!dentry) {
1473 iput(inode);
1474 return -ENOMEM;
1475 }
1476 sb->s_root = dentry;
1477 return 0;
1478}
1479
Al Virof7e83572010-07-26 13:23:11 +04001480static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001481 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001482 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001483{
1484 struct cgroup_sb_opts opts;
Paul Menagec6d57f32009-09-23 15:56:19 -07001485 struct cgroupfs_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001486 int ret = 0;
1487 struct super_block *sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001488 struct cgroupfs_root *new_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001489
1490 /* First find the desired set of subsystems */
Ben Blumaae8aab2010-03-10 15:22:07 -08001491 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001492 ret = parse_cgroupfs_options(data, &opts);
Ben Blumaae8aab2010-03-10 15:22:07 -08001493 mutex_unlock(&cgroup_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001494 if (ret)
1495 goto out_err;
1496
1497 /*
1498 * Allocate a new cgroup root. We may not need it if we're
1499 * reusing an existing hierarchy.
1500 */
1501 new_root = cgroup_root_from_opts(&opts);
1502 if (IS_ERR(new_root)) {
1503 ret = PTR_ERR(new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001504 goto drop_modules;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001505 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001506 opts.new_root = new_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001507
Paul Menagec6d57f32009-09-23 15:56:19 -07001508 /* Locate an existing or new sb for this hierarchy */
1509 sb = sget(fs_type, cgroup_test_super, cgroup_set_super, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001510 if (IS_ERR(sb)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001511 ret = PTR_ERR(sb);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001512 cgroup_drop_root(opts.new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001513 goto drop_modules;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001514 }
1515
Paul Menagec6d57f32009-09-23 15:56:19 -07001516 root = sb->s_fs_info;
1517 BUG_ON(!root);
1518 if (root == opts.new_root) {
1519 /* We used the new root structure, so this is a new hierarchy */
1520 struct list_head tmp_cg_links;
Li Zefanc12f65d2009-01-07 18:07:42 -08001521 struct cgroup *root_cgrp = &root->top_cgroup;
Paul Menage817929e2007-10-18 23:39:36 -07001522 struct inode *inode;
Paul Menagec6d57f32009-09-23 15:56:19 -07001523 struct cgroupfs_root *existing_root;
Li Zefan28fd5df2008-04-29 01:00:13 -07001524 int i;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001525
1526 BUG_ON(sb->s_root != NULL);
1527
1528 ret = cgroup_get_rootdir(sb);
1529 if (ret)
1530 goto drop_new_super;
Paul Menage817929e2007-10-18 23:39:36 -07001531 inode = sb->s_root->d_inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001532
Paul Menage817929e2007-10-18 23:39:36 -07001533 mutex_lock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001534 mutex_lock(&cgroup_mutex);
1535
Paul Menagec6d57f32009-09-23 15:56:19 -07001536 if (strlen(root->name)) {
1537 /* Check for name clashes with existing mounts */
1538 for_each_active_root(existing_root) {
1539 if (!strcmp(existing_root->name, root->name)) {
1540 ret = -EBUSY;
1541 mutex_unlock(&cgroup_mutex);
1542 mutex_unlock(&inode->i_mutex);
1543 goto drop_new_super;
1544 }
1545 }
1546 }
1547
Paul Menage817929e2007-10-18 23:39:36 -07001548 /*
1549 * We're accessing css_set_count without locking
1550 * css_set_lock here, but that's OK - it can only be
1551 * increased by someone holding cgroup_lock, and
1552 * that's us. The worst that can happen is that we
1553 * have some link structures left over
1554 */
1555 ret = allocate_cg_links(css_set_count, &tmp_cg_links);
1556 if (ret) {
1557 mutex_unlock(&cgroup_mutex);
1558 mutex_unlock(&inode->i_mutex);
1559 goto drop_new_super;
1560 }
1561
Paul Menageddbcc7e2007-10-18 23:39:30 -07001562 ret = rebind_subsystems(root, root->subsys_bits);
1563 if (ret == -EBUSY) {
1564 mutex_unlock(&cgroup_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07001565 mutex_unlock(&inode->i_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001566 free_cg_links(&tmp_cg_links);
1567 goto drop_new_super;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001568 }
Ben Blumcf5d5942010-03-10 15:22:09 -08001569 /*
1570 * There must be no failure case after here, since rebinding
1571 * takes care of subsystems' refcounts, which are explicitly
1572 * dropped in the failure exit path.
1573 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001574
1575 /* EBUSY should be the only error here */
1576 BUG_ON(ret);
1577
1578 list_add(&root->root_list, &roots);
Paul Menage817929e2007-10-18 23:39:36 -07001579 root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001580
Li Zefanc12f65d2009-01-07 18:07:42 -08001581 sb->s_root->d_fsdata = root_cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001582 root->top_cgroup.dentry = sb->s_root;
1583
Paul Menage817929e2007-10-18 23:39:36 -07001584 /* Link the top cgroup in this hierarchy into all
1585 * the css_set objects */
1586 write_lock(&css_set_lock);
Li Zefan28fd5df2008-04-29 01:00:13 -07001587 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
1588 struct hlist_head *hhead = &css_set_table[i];
1589 struct hlist_node *node;
Paul Menage817929e2007-10-18 23:39:36 -07001590 struct css_set *cg;
Li Zefan28fd5df2008-04-29 01:00:13 -07001591
Li Zefanc12f65d2009-01-07 18:07:42 -08001592 hlist_for_each_entry(cg, node, hhead, hlist)
1593 link_css_set(&tmp_cg_links, cg, root_cgrp);
Li Zefan28fd5df2008-04-29 01:00:13 -07001594 }
Paul Menage817929e2007-10-18 23:39:36 -07001595 write_unlock(&css_set_lock);
1596
1597 free_cg_links(&tmp_cg_links);
1598
Li Zefanc12f65d2009-01-07 18:07:42 -08001599 BUG_ON(!list_empty(&root_cgrp->sibling));
1600 BUG_ON(!list_empty(&root_cgrp->children));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001601 BUG_ON(root->number_of_cgroups != 1);
1602
Li Zefanc12f65d2009-01-07 18:07:42 -08001603 cgroup_populate_dir(root_cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001604 mutex_unlock(&cgroup_mutex);
Xiaotian Feng34f77a92009-09-23 15:56:18 -07001605 mutex_unlock(&inode->i_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001606 } else {
1607 /*
1608 * We re-used an existing hierarchy - the new root (if
1609 * any) is not needed
1610 */
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001611 cgroup_drop_root(opts.new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001612 /* no subsys rebinding, so refcounts don't change */
1613 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001614 }
1615
Paul Menagec6d57f32009-09-23 15:56:19 -07001616 kfree(opts.release_agent);
1617 kfree(opts.name);
Al Virof7e83572010-07-26 13:23:11 +04001618 return dget(sb->s_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001619
1620 drop_new_super:
Al Viro6f5bbff2009-05-06 01:34:22 -04001621 deactivate_locked_super(sb);
Ben Blumcf5d5942010-03-10 15:22:09 -08001622 drop_modules:
1623 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menagec6d57f32009-09-23 15:56:19 -07001624 out_err:
1625 kfree(opts.release_agent);
1626 kfree(opts.name);
Al Virof7e83572010-07-26 13:23:11 +04001627 return ERR_PTR(ret);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001628}
1629
1630static void cgroup_kill_sb(struct super_block *sb) {
1631 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001632 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001633 int ret;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001634 struct cg_cgroup_link *link;
1635 struct cg_cgroup_link *saved_link;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001636
1637 BUG_ON(!root);
1638
1639 BUG_ON(root->number_of_cgroups != 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001640 BUG_ON(!list_empty(&cgrp->children));
1641 BUG_ON(!list_empty(&cgrp->sibling));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001642
1643 mutex_lock(&cgroup_mutex);
1644
1645 /* Rebind all subsystems back to the default hierarchy */
1646 ret = rebind_subsystems(root, 0);
1647 /* Shouldn't be able to fail ... */
1648 BUG_ON(ret);
1649
Paul Menage817929e2007-10-18 23:39:36 -07001650 /*
1651 * Release all the links from css_sets to this hierarchy's
1652 * root cgroup
1653 */
1654 write_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001655
1656 list_for_each_entry_safe(link, saved_link, &cgrp->css_sets,
1657 cgrp_link_list) {
Paul Menage817929e2007-10-18 23:39:36 -07001658 list_del(&link->cg_link_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07001659 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001660 kfree(link);
1661 }
1662 write_unlock(&css_set_lock);
1663
Paul Menage839ec542009-01-29 14:25:22 -08001664 if (!list_empty(&root->root_list)) {
1665 list_del(&root->root_list);
1666 root_count--;
1667 }
Li Zefane5f6a862009-01-07 18:07:41 -08001668
Paul Menageddbcc7e2007-10-18 23:39:30 -07001669 mutex_unlock(&cgroup_mutex);
1670
Paul Menageddbcc7e2007-10-18 23:39:30 -07001671 kill_litter_super(sb);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001672 cgroup_drop_root(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001673}
1674
1675static struct file_system_type cgroup_fs_type = {
1676 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001677 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001678 .kill_sb = cgroup_kill_sb,
1679};
1680
Greg KH676db4a2010-08-05 13:53:35 -07001681static struct kobject *cgroup_kobj;
1682
Paul Menagebd89aab2007-10-18 23:40:44 -07001683static inline struct cgroup *__d_cgrp(struct dentry *dentry)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001684{
1685 return dentry->d_fsdata;
1686}
1687
1688static inline struct cftype *__d_cft(struct dentry *dentry)
1689{
1690 return dentry->d_fsdata;
1691}
1692
Li Zefana043e3b2008-02-23 15:24:09 -08001693/**
1694 * cgroup_path - generate the path of a cgroup
1695 * @cgrp: the cgroup in question
1696 * @buf: the buffer to write the path into
1697 * @buflen: the length of the buffer
1698 *
Paul Menagea47295e2009-01-07 18:07:44 -08001699 * Called with cgroup_mutex held or else with an RCU-protected cgroup
1700 * reference. Writes path of cgroup into buf. Returns 0 on success,
1701 * -errno on error.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001702 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001703int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001704{
1705 char *start;
Li Zefan9a9686b2010-04-22 17:29:24 +08001706 struct dentry *dentry = rcu_dereference_check(cgrp->dentry,
1707 rcu_read_lock_held() ||
1708 cgroup_lock_is_held());
Paul Menageddbcc7e2007-10-18 23:39:30 -07001709
Paul Menagea47295e2009-01-07 18:07:44 -08001710 if (!dentry || cgrp == dummytop) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001711 /*
1712 * Inactive subsystems have no dentry for their root
1713 * cgroup
1714 */
1715 strcpy(buf, "/");
1716 return 0;
1717 }
1718
1719 start = buf + buflen;
1720
1721 *--start = '\0';
1722 for (;;) {
Paul Menagea47295e2009-01-07 18:07:44 -08001723 int len = dentry->d_name.len;
Li Zefan9a9686b2010-04-22 17:29:24 +08001724
Paul Menageddbcc7e2007-10-18 23:39:30 -07001725 if ((start -= len) < buf)
1726 return -ENAMETOOLONG;
Li Zefan9a9686b2010-04-22 17:29:24 +08001727 memcpy(start, dentry->d_name.name, len);
Paul Menagebd89aab2007-10-18 23:40:44 -07001728 cgrp = cgrp->parent;
1729 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001730 break;
Li Zefan9a9686b2010-04-22 17:29:24 +08001731
1732 dentry = rcu_dereference_check(cgrp->dentry,
1733 rcu_read_lock_held() ||
1734 cgroup_lock_is_held());
Paul Menagebd89aab2007-10-18 23:40:44 -07001735 if (!cgrp->parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001736 continue;
1737 if (--start < buf)
1738 return -ENAMETOOLONG;
1739 *start = '/';
1740 }
1741 memmove(buf, start, buf + buflen - start);
1742 return 0;
1743}
Ben Blum67523c42010-03-10 15:22:11 -08001744EXPORT_SYMBOL_GPL(cgroup_path);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001745
Li Zefana043e3b2008-02-23 15:24:09 -08001746/**
1747 * cgroup_attach_task - attach task 'tsk' to cgroup 'cgrp'
1748 * @cgrp: the cgroup the task is attaching to
1749 * @tsk: the task to be attached
Paul Menagebbcb81d2007-10-18 23:39:32 -07001750 *
Li Zefana043e3b2008-02-23 15:24:09 -08001751 * Call holding cgroup_mutex. May take task_lock of
1752 * the task 'tsk' during call.
Paul Menagebbcb81d2007-10-18 23:39:32 -07001753 */
Cliff Wickman956db3c2008-02-07 00:14:43 -08001754int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001755{
1756 int retval = 0;
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001757 struct cgroup_subsys *ss, *failed_ss = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07001758 struct cgroup *oldcgrp;
Lai Jiangshan77efecd2009-01-07 18:07:39 -08001759 struct css_set *cg;
Paul Menage817929e2007-10-18 23:39:36 -07001760 struct css_set *newcg;
Paul Menagebd89aab2007-10-18 23:40:44 -07001761 struct cgroupfs_root *root = cgrp->root;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001762
1763 /* Nothing to do if the task is already in that cgroup */
Paul Menage7717f7b2009-09-23 15:56:22 -07001764 oldcgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07001765 if (cgrp == oldcgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001766 return 0;
1767
1768 for_each_subsys(root, ss) {
1769 if (ss->can_attach) {
Ben Blumbe367d02009-09-23 15:56:31 -07001770 retval = ss->can_attach(ss, cgrp, tsk, false);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001771 if (retval) {
1772 /*
1773 * Remember on which subsystem the can_attach()
1774 * failed, so that we only call cancel_attach()
1775 * against the subsystems whose can_attach()
1776 * succeeded. (See below)
1777 */
1778 failed_ss = ss;
1779 goto out;
1780 }
Paul Menagebbcb81d2007-10-18 23:39:32 -07001781 }
1782 }
1783
Lai Jiangshan77efecd2009-01-07 18:07:39 -08001784 task_lock(tsk);
1785 cg = tsk->cgroups;
1786 get_css_set(cg);
1787 task_unlock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07001788 /*
1789 * Locate or allocate a new css_set for this task,
1790 * based on its final set of cgroups
1791 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001792 newcg = find_css_set(cg, cgrp);
Lai Jiangshan77efecd2009-01-07 18:07:39 -08001793 put_css_set(cg);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001794 if (!newcg) {
1795 retval = -ENOMEM;
1796 goto out;
1797 }
Paul Menage817929e2007-10-18 23:39:36 -07001798
Paul Menagebbcb81d2007-10-18 23:39:32 -07001799 task_lock(tsk);
1800 if (tsk->flags & PF_EXITING) {
1801 task_unlock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07001802 put_css_set(newcg);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001803 retval = -ESRCH;
1804 goto out;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001805 }
Paul Menage817929e2007-10-18 23:39:36 -07001806 rcu_assign_pointer(tsk->cgroups, newcg);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001807 task_unlock(tsk);
1808
Paul Menage817929e2007-10-18 23:39:36 -07001809 /* Update the css_set linked lists if we're using them */
1810 write_lock(&css_set_lock);
1811 if (!list_empty(&tsk->cg_list)) {
1812 list_del(&tsk->cg_list);
1813 list_add(&tsk->cg_list, &newcg->tasks);
1814 }
1815 write_unlock(&css_set_lock);
1816
Paul Menagebbcb81d2007-10-18 23:39:32 -07001817 for_each_subsys(root, ss) {
Paul Jacksone18f6312008-02-07 00:13:44 -08001818 if (ss->attach)
Ben Blumbe367d02009-09-23 15:56:31 -07001819 ss->attach(ss, cgrp, oldcgrp, tsk, false);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001820 }
Paul Menagebd89aab2007-10-18 23:40:44 -07001821 set_bit(CGRP_RELEASABLE, &oldcgrp->flags);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001822 synchronize_rcu();
Paul Menage817929e2007-10-18 23:39:36 -07001823 put_css_set(cg);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07001824
1825 /*
1826 * wake up rmdir() waiter. the rmdir should fail since the cgroup
1827 * is no longer empty.
1828 */
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07001829 cgroup_wakeup_rmdir_waiter(cgrp);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001830out:
1831 if (retval) {
1832 for_each_subsys(root, ss) {
1833 if (ss == failed_ss)
1834 /*
1835 * This subsystem was the one that failed the
1836 * can_attach() check earlier, so we don't need
1837 * to call cancel_attach() against it or any
1838 * remaining subsystems.
1839 */
1840 break;
1841 if (ss->cancel_attach)
1842 ss->cancel_attach(ss, cgrp, tsk, false);
1843 }
1844 }
1845 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001846}
1847
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001848/**
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001849 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
1850 * @from: attach to all cgroups of a given task
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001851 * @tsk: the task to be attached
1852 */
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001853int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001854{
1855 struct cgroupfs_root *root;
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001856 int retval = 0;
1857
1858 cgroup_lock();
1859 for_each_active_root(root) {
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001860 struct cgroup *from_cg = task_cgroup_from_root(from, root);
1861
1862 retval = cgroup_attach_task(from_cg, tsk);
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001863 if (retval)
1864 break;
1865 }
1866 cgroup_unlock();
1867
1868 return retval;
1869}
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001870EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001871
Paul Menagebbcb81d2007-10-18 23:39:32 -07001872/*
Paul Menageaf351022008-07-25 01:47:01 -07001873 * Attach task with pid 'pid' to cgroup 'cgrp'. Call with cgroup_mutex
1874 * held. May take task_lock of task
Paul Menagebbcb81d2007-10-18 23:39:32 -07001875 */
Paul Menageaf351022008-07-25 01:47:01 -07001876static int attach_task_by_pid(struct cgroup *cgrp, u64 pid)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001877{
Paul Menagebbcb81d2007-10-18 23:39:32 -07001878 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11001879 const struct cred *cred = current_cred(), *tcred;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001880 int ret;
1881
Paul Menagebbcb81d2007-10-18 23:39:32 -07001882 if (pid) {
1883 rcu_read_lock();
Pavel Emelyanov73507f32008-02-07 00:14:47 -08001884 tsk = find_task_by_vpid(pid);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001885 if (!tsk || tsk->flags & PF_EXITING) {
1886 rcu_read_unlock();
1887 return -ESRCH;
1888 }
Paul Menagebbcb81d2007-10-18 23:39:32 -07001889
David Howellsc69e8d92008-11-14 10:39:19 +11001890 tcred = __task_cred(tsk);
1891 if (cred->euid &&
1892 cred->euid != tcred->uid &&
1893 cred->euid != tcred->suid) {
1894 rcu_read_unlock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07001895 return -EACCES;
1896 }
David Howellsc69e8d92008-11-14 10:39:19 +11001897 get_task_struct(tsk);
1898 rcu_read_unlock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07001899 } else {
1900 tsk = current;
1901 get_task_struct(tsk);
1902 }
1903
Cliff Wickman956db3c2008-02-07 00:14:43 -08001904 ret = cgroup_attach_task(cgrp, tsk);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001905 put_task_struct(tsk);
1906 return ret;
1907}
1908
Paul Menageaf351022008-07-25 01:47:01 -07001909static int cgroup_tasks_write(struct cgroup *cgrp, struct cftype *cft, u64 pid)
1910{
1911 int ret;
1912 if (!cgroup_lock_live_group(cgrp))
1913 return -ENODEV;
1914 ret = attach_task_by_pid(cgrp, pid);
1915 cgroup_unlock();
1916 return ret;
1917}
1918
Paul Menagee788e062008-07-25 01:46:59 -07001919/**
1920 * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive.
1921 * @cgrp: the cgroup to be checked for liveness
1922 *
Paul Menage84eea842008-07-25 01:47:00 -07001923 * On success, returns true; the lock should be later released with
1924 * cgroup_unlock(). On failure returns false with no lock held.
Paul Menagee788e062008-07-25 01:46:59 -07001925 */
Paul Menage84eea842008-07-25 01:47:00 -07001926bool cgroup_lock_live_group(struct cgroup *cgrp)
Paul Menagee788e062008-07-25 01:46:59 -07001927{
1928 mutex_lock(&cgroup_mutex);
1929 if (cgroup_is_removed(cgrp)) {
1930 mutex_unlock(&cgroup_mutex);
1931 return false;
1932 }
1933 return true;
1934}
Ben Blum67523c42010-03-10 15:22:11 -08001935EXPORT_SYMBOL_GPL(cgroup_lock_live_group);
Paul Menagee788e062008-07-25 01:46:59 -07001936
1937static int cgroup_release_agent_write(struct cgroup *cgrp, struct cftype *cft,
1938 const char *buffer)
1939{
1940 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
Evgeny Kuznetsovf4a25892010-10-27 15:33:37 -07001941 if (strlen(buffer) >= PATH_MAX)
1942 return -EINVAL;
Paul Menagee788e062008-07-25 01:46:59 -07001943 if (!cgroup_lock_live_group(cgrp))
1944 return -ENODEV;
1945 strcpy(cgrp->root->release_agent_path, buffer);
Paul Menage84eea842008-07-25 01:47:00 -07001946 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07001947 return 0;
1948}
1949
1950static int cgroup_release_agent_show(struct cgroup *cgrp, struct cftype *cft,
1951 struct seq_file *seq)
1952{
1953 if (!cgroup_lock_live_group(cgrp))
1954 return -ENODEV;
1955 seq_puts(seq, cgrp->root->release_agent_path);
1956 seq_putc(seq, '\n');
Paul Menage84eea842008-07-25 01:47:00 -07001957 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07001958 return 0;
1959}
1960
Paul Menage84eea842008-07-25 01:47:00 -07001961/* A buffer size big enough for numbers or short strings */
1962#define CGROUP_LOCAL_BUFFER_SIZE 64
1963
Paul Menagee73d2c62008-04-29 01:00:06 -07001964static ssize_t cgroup_write_X64(struct cgroup *cgrp, struct cftype *cft,
Paul Menagef4c753b2008-04-29 00:59:56 -07001965 struct file *file,
1966 const char __user *userbuf,
1967 size_t nbytes, loff_t *unused_ppos)
Paul Menage355e0c42007-10-18 23:39:33 -07001968{
Paul Menage84eea842008-07-25 01:47:00 -07001969 char buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menage355e0c42007-10-18 23:39:33 -07001970 int retval = 0;
Paul Menage355e0c42007-10-18 23:39:33 -07001971 char *end;
1972
1973 if (!nbytes)
1974 return -EINVAL;
1975 if (nbytes >= sizeof(buffer))
1976 return -E2BIG;
1977 if (copy_from_user(buffer, userbuf, nbytes))
1978 return -EFAULT;
1979
1980 buffer[nbytes] = 0; /* nul-terminate */
Paul Menagee73d2c62008-04-29 01:00:06 -07001981 if (cft->write_u64) {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07001982 u64 val = simple_strtoull(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07001983 if (*end)
1984 return -EINVAL;
1985 retval = cft->write_u64(cgrp, cft, val);
1986 } else {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07001987 s64 val = simple_strtoll(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07001988 if (*end)
1989 return -EINVAL;
1990 retval = cft->write_s64(cgrp, cft, val);
1991 }
Paul Menage355e0c42007-10-18 23:39:33 -07001992 if (!retval)
1993 retval = nbytes;
1994 return retval;
1995}
1996
Paul Menagedb3b1492008-07-25 01:46:58 -07001997static ssize_t cgroup_write_string(struct cgroup *cgrp, struct cftype *cft,
1998 struct file *file,
1999 const char __user *userbuf,
2000 size_t nbytes, loff_t *unused_ppos)
2001{
Paul Menage84eea842008-07-25 01:47:00 -07002002 char local_buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagedb3b1492008-07-25 01:46:58 -07002003 int retval = 0;
2004 size_t max_bytes = cft->max_write_len;
2005 char *buffer = local_buffer;
2006
2007 if (!max_bytes)
2008 max_bytes = sizeof(local_buffer) - 1;
2009 if (nbytes >= max_bytes)
2010 return -E2BIG;
2011 /* Allocate a dynamic buffer if we need one */
2012 if (nbytes >= sizeof(local_buffer)) {
2013 buffer = kmalloc(nbytes + 1, GFP_KERNEL);
2014 if (buffer == NULL)
2015 return -ENOMEM;
2016 }
Li Zefan5a3eb9f2008-07-29 22:33:18 -07002017 if (nbytes && copy_from_user(buffer, userbuf, nbytes)) {
2018 retval = -EFAULT;
2019 goto out;
2020 }
Paul Menagedb3b1492008-07-25 01:46:58 -07002021
2022 buffer[nbytes] = 0; /* nul-terminate */
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002023 retval = cft->write_string(cgrp, cft, strstrip(buffer));
Paul Menagedb3b1492008-07-25 01:46:58 -07002024 if (!retval)
2025 retval = nbytes;
Li Zefan5a3eb9f2008-07-29 22:33:18 -07002026out:
Paul Menagedb3b1492008-07-25 01:46:58 -07002027 if (buffer != local_buffer)
2028 kfree(buffer);
2029 return retval;
2030}
2031
Paul Menageddbcc7e2007-10-18 23:39:30 -07002032static ssize_t cgroup_file_write(struct file *file, const char __user *buf,
2033 size_t nbytes, loff_t *ppos)
2034{
2035 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07002036 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002037
Li Zefan75139b82009-01-07 18:07:33 -08002038 if (cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07002039 return -ENODEV;
Paul Menage355e0c42007-10-18 23:39:33 -07002040 if (cft->write)
Paul Menagebd89aab2007-10-18 23:40:44 -07002041 return cft->write(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002042 if (cft->write_u64 || cft->write_s64)
2043 return cgroup_write_X64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagedb3b1492008-07-25 01:46:58 -07002044 if (cft->write_string)
2045 return cgroup_write_string(cgrp, cft, file, buf, nbytes, ppos);
Pavel Emelyanovd447ea22008-04-29 01:00:08 -07002046 if (cft->trigger) {
2047 int ret = cft->trigger(cgrp, (unsigned int)cft->private);
2048 return ret ? ret : nbytes;
2049 }
Paul Menage355e0c42007-10-18 23:39:33 -07002050 return -EINVAL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002051}
2052
Paul Menagef4c753b2008-04-29 00:59:56 -07002053static ssize_t cgroup_read_u64(struct cgroup *cgrp, struct cftype *cft,
2054 struct file *file,
2055 char __user *buf, size_t nbytes,
2056 loff_t *ppos)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002057{
Paul Menage84eea842008-07-25 01:47:00 -07002058 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagef4c753b2008-04-29 00:59:56 -07002059 u64 val = cft->read_u64(cgrp, cft);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002060 int len = sprintf(tmp, "%llu\n", (unsigned long long) val);
2061
2062 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2063}
2064
Paul Menagee73d2c62008-04-29 01:00:06 -07002065static ssize_t cgroup_read_s64(struct cgroup *cgrp, struct cftype *cft,
2066 struct file *file,
2067 char __user *buf, size_t nbytes,
2068 loff_t *ppos)
2069{
Paul Menage84eea842008-07-25 01:47:00 -07002070 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagee73d2c62008-04-29 01:00:06 -07002071 s64 val = cft->read_s64(cgrp, cft);
2072 int len = sprintf(tmp, "%lld\n", (long long) val);
2073
2074 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2075}
2076
Paul Menageddbcc7e2007-10-18 23:39:30 -07002077static ssize_t cgroup_file_read(struct file *file, char __user *buf,
2078 size_t nbytes, loff_t *ppos)
2079{
2080 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07002081 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002082
Li Zefan75139b82009-01-07 18:07:33 -08002083 if (cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07002084 return -ENODEV;
2085
2086 if (cft->read)
Paul Menagebd89aab2007-10-18 23:40:44 -07002087 return cft->read(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagef4c753b2008-04-29 00:59:56 -07002088 if (cft->read_u64)
2089 return cgroup_read_u64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002090 if (cft->read_s64)
2091 return cgroup_read_s64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002092 return -EINVAL;
2093}
2094
Paul Menage91796562008-04-29 01:00:01 -07002095/*
2096 * seqfile ops/methods for returning structured data. Currently just
2097 * supports string->u64 maps, but can be extended in future.
2098 */
2099
2100struct cgroup_seqfile_state {
2101 struct cftype *cft;
2102 struct cgroup *cgroup;
2103};
2104
2105static int cgroup_map_add(struct cgroup_map_cb *cb, const char *key, u64 value)
2106{
2107 struct seq_file *sf = cb->state;
2108 return seq_printf(sf, "%s %llu\n", key, (unsigned long long)value);
2109}
2110
2111static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2112{
2113 struct cgroup_seqfile_state *state = m->private;
2114 struct cftype *cft = state->cft;
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002115 if (cft->read_map) {
2116 struct cgroup_map_cb cb = {
2117 .fill = cgroup_map_add,
2118 .state = m,
2119 };
2120 return cft->read_map(state->cgroup, cft, &cb);
2121 }
2122 return cft->read_seq_string(state->cgroup, cft, m);
Paul Menage91796562008-04-29 01:00:01 -07002123}
2124
Adrian Bunk96930a62008-07-25 19:46:21 -07002125static int cgroup_seqfile_release(struct inode *inode, struct file *file)
Paul Menage91796562008-04-29 01:00:01 -07002126{
2127 struct seq_file *seq = file->private_data;
2128 kfree(seq->private);
2129 return single_release(inode, file);
2130}
2131
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002132static const struct file_operations cgroup_seqfile_operations = {
Paul Menage91796562008-04-29 01:00:01 -07002133 .read = seq_read,
Paul Menagee788e062008-07-25 01:46:59 -07002134 .write = cgroup_file_write,
Paul Menage91796562008-04-29 01:00:01 -07002135 .llseek = seq_lseek,
2136 .release = cgroup_seqfile_release,
2137};
2138
Paul Menageddbcc7e2007-10-18 23:39:30 -07002139static int cgroup_file_open(struct inode *inode, struct file *file)
2140{
2141 int err;
2142 struct cftype *cft;
2143
2144 err = generic_file_open(inode, file);
2145 if (err)
2146 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002147 cft = __d_cft(file->f_dentry);
Li Zefan75139b82009-01-07 18:07:33 -08002148
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002149 if (cft->read_map || cft->read_seq_string) {
Paul Menage91796562008-04-29 01:00:01 -07002150 struct cgroup_seqfile_state *state =
2151 kzalloc(sizeof(*state), GFP_USER);
2152 if (!state)
2153 return -ENOMEM;
2154 state->cft = cft;
2155 state->cgroup = __d_cgrp(file->f_dentry->d_parent);
2156 file->f_op = &cgroup_seqfile_operations;
2157 err = single_open(file, cgroup_seqfile_show, state);
2158 if (err < 0)
2159 kfree(state);
2160 } else if (cft->open)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002161 err = cft->open(inode, file);
2162 else
2163 err = 0;
2164
2165 return err;
2166}
2167
2168static int cgroup_file_release(struct inode *inode, struct file *file)
2169{
2170 struct cftype *cft = __d_cft(file->f_dentry);
2171 if (cft->release)
2172 return cft->release(inode, file);
2173 return 0;
2174}
2175
2176/*
2177 * cgroup_rename - Only allow simple rename of directories in place.
2178 */
2179static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry,
2180 struct inode *new_dir, struct dentry *new_dentry)
2181{
2182 if (!S_ISDIR(old_dentry->d_inode->i_mode))
2183 return -ENOTDIR;
2184 if (new_dentry->d_inode)
2185 return -EEXIST;
2186 if (old_dir != new_dir)
2187 return -EIO;
2188 return simple_rename(old_dir, old_dentry, new_dir, new_dentry);
2189}
2190
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002191static const struct file_operations cgroup_file_operations = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002192 .read = cgroup_file_read,
2193 .write = cgroup_file_write,
2194 .llseek = generic_file_llseek,
2195 .open = cgroup_file_open,
2196 .release = cgroup_file_release,
2197};
2198
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07002199static const struct inode_operations cgroup_dir_inode_operations = {
Nick Piggin5adcee12011-01-07 17:49:20 +11002200 .lookup = cgroup_lookup,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002201 .mkdir = cgroup_mkdir,
2202 .rmdir = cgroup_rmdir,
2203 .rename = cgroup_rename,
2204};
2205
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08002206/*
2207 * Check if a file is a control file
2208 */
2209static inline struct cftype *__file_cft(struct file *file)
2210{
2211 if (file->f_dentry->d_inode->i_fop != &cgroup_file_operations)
2212 return ERR_PTR(-EINVAL);
2213 return __d_cft(file->f_dentry);
2214}
2215
Nick Pigginfe15ce42011-01-07 17:49:23 +11002216static int cgroup_delete_dentry(const struct dentry *dentry)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002217{
Nick Piggin5adcee12011-01-07 17:49:20 +11002218 return 1;
2219}
2220
2221static struct dentry *cgroup_lookup(struct inode *dir,
2222 struct dentry *dentry, struct nameidata *nd)
2223{
2224 static const struct dentry_operations cgroup_dentry_operations = {
2225 .d_delete = cgroup_delete_dentry,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002226 .d_iput = cgroup_diput,
2227 };
2228
Nick Piggin5adcee12011-01-07 17:49:20 +11002229 if (dentry->d_name.len > NAME_MAX)
2230 return ERR_PTR(-ENAMETOOLONG);
2231 dentry->d_op = &cgroup_dentry_operations;
2232 d_add(dentry, NULL);
2233 return NULL;
2234}
2235
2236static int cgroup_create_file(struct dentry *dentry, mode_t mode,
2237 struct super_block *sb)
2238{
Paul Menageddbcc7e2007-10-18 23:39:30 -07002239 struct inode *inode;
2240
2241 if (!dentry)
2242 return -ENOENT;
2243 if (dentry->d_inode)
2244 return -EEXIST;
2245
2246 inode = cgroup_new_inode(mode, sb);
2247 if (!inode)
2248 return -ENOMEM;
2249
2250 if (S_ISDIR(mode)) {
2251 inode->i_op = &cgroup_dir_inode_operations;
2252 inode->i_fop = &simple_dir_operations;
2253
2254 /* start off with i_nlink == 2 (for "." entry) */
2255 inc_nlink(inode);
2256
2257 /* start with the directory inode held, so that we can
2258 * populate it without racing with another mkdir */
Paul Menage817929e2007-10-18 23:39:36 -07002259 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002260 } else if (S_ISREG(mode)) {
2261 inode->i_size = 0;
2262 inode->i_fop = &cgroup_file_operations;
2263 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002264 d_instantiate(dentry, inode);
2265 dget(dentry); /* Extra count - pin the dentry in core */
2266 return 0;
2267}
2268
2269/*
Li Zefana043e3b2008-02-23 15:24:09 -08002270 * cgroup_create_dir - create a directory for an object.
2271 * @cgrp: the cgroup we create the directory for. It must have a valid
2272 * ->parent field. And we are going to fill its ->dentry field.
2273 * @dentry: dentry of the new cgroup
2274 * @mode: mode to set on new directory.
Paul Menageddbcc7e2007-10-18 23:39:30 -07002275 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002276static int cgroup_create_dir(struct cgroup *cgrp, struct dentry *dentry,
Li Zefan099fca32009-04-02 16:57:29 -07002277 mode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002278{
2279 struct dentry *parent;
2280 int error = 0;
2281
Paul Menagebd89aab2007-10-18 23:40:44 -07002282 parent = cgrp->parent->dentry;
2283 error = cgroup_create_file(dentry, S_IFDIR | mode, cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002284 if (!error) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002285 dentry->d_fsdata = cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002286 inc_nlink(parent->d_inode);
Paul Menagea47295e2009-01-07 18:07:44 -08002287 rcu_assign_pointer(cgrp->dentry, dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002288 dget(dentry);
2289 }
2290 dput(dentry);
2291
2292 return error;
2293}
2294
Li Zefan099fca32009-04-02 16:57:29 -07002295/**
2296 * cgroup_file_mode - deduce file mode of a control file
2297 * @cft: the control file in question
2298 *
2299 * returns cft->mode if ->mode is not 0
2300 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
2301 * returns S_IRUGO if it has only a read handler
2302 * returns S_IWUSR if it has only a write hander
2303 */
2304static mode_t cgroup_file_mode(const struct cftype *cft)
2305{
2306 mode_t mode = 0;
2307
2308 if (cft->mode)
2309 return cft->mode;
2310
2311 if (cft->read || cft->read_u64 || cft->read_s64 ||
2312 cft->read_map || cft->read_seq_string)
2313 mode |= S_IRUGO;
2314
2315 if (cft->write || cft->write_u64 || cft->write_s64 ||
2316 cft->write_string || cft->trigger)
2317 mode |= S_IWUSR;
2318
2319 return mode;
2320}
2321
Paul Menagebd89aab2007-10-18 23:40:44 -07002322int cgroup_add_file(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002323 struct cgroup_subsys *subsys,
2324 const struct cftype *cft)
2325{
Paul Menagebd89aab2007-10-18 23:40:44 -07002326 struct dentry *dir = cgrp->dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002327 struct dentry *dentry;
2328 int error;
Li Zefan099fca32009-04-02 16:57:29 -07002329 mode_t mode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002330
2331 char name[MAX_CGROUP_TYPE_NAMELEN + MAX_CFTYPE_NAME + 2] = { 0 };
Paul Menagebd89aab2007-10-18 23:40:44 -07002332 if (subsys && !test_bit(ROOT_NOPREFIX, &cgrp->root->flags)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002333 strcpy(name, subsys->name);
2334 strcat(name, ".");
2335 }
2336 strcat(name, cft->name);
2337 BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex));
2338 dentry = lookup_one_len(name, dir, strlen(name));
2339 if (!IS_ERR(dentry)) {
Li Zefan099fca32009-04-02 16:57:29 -07002340 mode = cgroup_file_mode(cft);
2341 error = cgroup_create_file(dentry, mode | S_IFREG,
Paul Menagebd89aab2007-10-18 23:40:44 -07002342 cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002343 if (!error)
2344 dentry->d_fsdata = (void *)cft;
2345 dput(dentry);
2346 } else
2347 error = PTR_ERR(dentry);
2348 return error;
2349}
Ben Blume6a11052010-03-10 15:22:09 -08002350EXPORT_SYMBOL_GPL(cgroup_add_file);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002351
Paul Menagebd89aab2007-10-18 23:40:44 -07002352int cgroup_add_files(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002353 struct cgroup_subsys *subsys,
2354 const struct cftype cft[],
2355 int count)
2356{
2357 int i, err;
2358 for (i = 0; i < count; i++) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002359 err = cgroup_add_file(cgrp, subsys, &cft[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002360 if (err)
2361 return err;
2362 }
2363 return 0;
2364}
Ben Blume6a11052010-03-10 15:22:09 -08002365EXPORT_SYMBOL_GPL(cgroup_add_files);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002366
Li Zefana043e3b2008-02-23 15:24:09 -08002367/**
2368 * cgroup_task_count - count the number of tasks in a cgroup.
2369 * @cgrp: the cgroup in question
2370 *
2371 * Return the number of tasks in the cgroup.
2372 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002373int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002374{
2375 int count = 0;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07002376 struct cg_cgroup_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002377
Paul Menage817929e2007-10-18 23:39:36 -07002378 read_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07002379 list_for_each_entry(link, &cgrp->css_sets, cgrp_link_list) {
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07002380 count += atomic_read(&link->cg->refcount);
Paul Menage817929e2007-10-18 23:39:36 -07002381 }
2382 read_unlock(&css_set_lock);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002383 return count;
2384}
2385
2386/*
Paul Menage817929e2007-10-18 23:39:36 -07002387 * Advance a list_head iterator. The iterator should be positioned at
2388 * the start of a css_set
2389 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002390static void cgroup_advance_iter(struct cgroup *cgrp,
Paul Menage7717f7b2009-09-23 15:56:22 -07002391 struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002392{
2393 struct list_head *l = it->cg_link;
2394 struct cg_cgroup_link *link;
2395 struct css_set *cg;
2396
2397 /* Advance to the next non-empty css_set */
2398 do {
2399 l = l->next;
Paul Menagebd89aab2007-10-18 23:40:44 -07002400 if (l == &cgrp->css_sets) {
Paul Menage817929e2007-10-18 23:39:36 -07002401 it->cg_link = NULL;
2402 return;
2403 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002404 link = list_entry(l, struct cg_cgroup_link, cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07002405 cg = link->cg;
2406 } while (list_empty(&cg->tasks));
2407 it->cg_link = l;
2408 it->task = cg->tasks.next;
2409}
2410
Cliff Wickman31a7df02008-02-07 00:14:42 -08002411/*
2412 * To reduce the fork() overhead for systems that are not actually
2413 * using their cgroups capability, we don't maintain the lists running
2414 * through each css_set to its tasks until we see the list actually
2415 * used - in other words after the first call to cgroup_iter_start().
2416 *
2417 * The tasklist_lock is not held here, as do_each_thread() and
2418 * while_each_thread() are protected by RCU.
2419 */
Adrian Bunk3df91fe2008-04-29 00:59:54 -07002420static void cgroup_enable_task_cg_lists(void)
Cliff Wickman31a7df02008-02-07 00:14:42 -08002421{
2422 struct task_struct *p, *g;
2423 write_lock(&css_set_lock);
2424 use_task_css_set_links = 1;
2425 do_each_thread(g, p) {
2426 task_lock(p);
Li Zefan0e043882008-04-17 11:37:15 +08002427 /*
2428 * We should check if the process is exiting, otherwise
2429 * it will race with cgroup_exit() in that the list
2430 * entry won't be deleted though the process has exited.
2431 */
2432 if (!(p->flags & PF_EXITING) && list_empty(&p->cg_list))
Cliff Wickman31a7df02008-02-07 00:14:42 -08002433 list_add(&p->cg_list, &p->cgroups->tasks);
2434 task_unlock(p);
2435 } while_each_thread(g, p);
2436 write_unlock(&css_set_lock);
2437}
2438
Paul Menagebd89aab2007-10-18 23:40:44 -07002439void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002440{
2441 /*
2442 * The first time anyone tries to iterate across a cgroup,
2443 * we need to enable the list linking each css_set to its
2444 * tasks, and fix up all existing tasks.
2445 */
Cliff Wickman31a7df02008-02-07 00:14:42 -08002446 if (!use_task_css_set_links)
2447 cgroup_enable_task_cg_lists();
2448
Paul Menage817929e2007-10-18 23:39:36 -07002449 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07002450 it->cg_link = &cgrp->css_sets;
2451 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07002452}
2453
Paul Menagebd89aab2007-10-18 23:40:44 -07002454struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -07002455 struct cgroup_iter *it)
2456{
2457 struct task_struct *res;
2458 struct list_head *l = it->task;
Lai Jiangshan2019f632009-01-07 18:07:36 -08002459 struct cg_cgroup_link *link;
Paul Menage817929e2007-10-18 23:39:36 -07002460
2461 /* If the iterator cg is NULL, we have no tasks */
2462 if (!it->cg_link)
2463 return NULL;
2464 res = list_entry(l, struct task_struct, cg_list);
2465 /* Advance iterator to find next entry */
2466 l = l->next;
Lai Jiangshan2019f632009-01-07 18:07:36 -08002467 link = list_entry(it->cg_link, struct cg_cgroup_link, cgrp_link_list);
2468 if (l == &link->cg->tasks) {
Paul Menage817929e2007-10-18 23:39:36 -07002469 /* We reached the end of this task list - move on to
2470 * the next cg_cgroup_link */
Paul Menagebd89aab2007-10-18 23:40:44 -07002471 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07002472 } else {
2473 it->task = l;
2474 }
2475 return res;
2476}
2477
Paul Menagebd89aab2007-10-18 23:40:44 -07002478void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002479{
2480 read_unlock(&css_set_lock);
2481}
2482
Cliff Wickman31a7df02008-02-07 00:14:42 -08002483static inline int started_after_time(struct task_struct *t1,
2484 struct timespec *time,
2485 struct task_struct *t2)
2486{
2487 int start_diff = timespec_compare(&t1->start_time, time);
2488 if (start_diff > 0) {
2489 return 1;
2490 } else if (start_diff < 0) {
2491 return 0;
2492 } else {
2493 /*
2494 * Arbitrarily, if two processes started at the same
2495 * time, we'll say that the lower pointer value
2496 * started first. Note that t2 may have exited by now
2497 * so this may not be a valid pointer any longer, but
2498 * that's fine - it still serves to distinguish
2499 * between two tasks started (effectively) simultaneously.
2500 */
2501 return t1 > t2;
2502 }
2503}
2504
2505/*
2506 * This function is a callback from heap_insert() and is used to order
2507 * the heap.
2508 * In this case we order the heap in descending task start time.
2509 */
2510static inline int started_after(void *p1, void *p2)
2511{
2512 struct task_struct *t1 = p1;
2513 struct task_struct *t2 = p2;
2514 return started_after_time(t1, &t2->start_time, t2);
2515}
2516
2517/**
2518 * cgroup_scan_tasks - iterate though all the tasks in a cgroup
2519 * @scan: struct cgroup_scanner containing arguments for the scan
2520 *
2521 * Arguments include pointers to callback functions test_task() and
2522 * process_task().
2523 * Iterate through all the tasks in a cgroup, calling test_task() for each,
2524 * and if it returns true, call process_task() for it also.
2525 * The test_task pointer may be NULL, meaning always true (select all tasks).
2526 * Effectively duplicates cgroup_iter_{start,next,end}()
2527 * but does not lock css_set_lock for the call to process_task().
2528 * The struct cgroup_scanner may be embedded in any structure of the caller's
2529 * creation.
2530 * It is guaranteed that process_task() will act on every task that
2531 * is a member of the cgroup for the duration of this call. This
2532 * function may or may not call process_task() for tasks that exit
2533 * or move to a different cgroup during the call, or are forked or
2534 * move into the cgroup during the call.
2535 *
2536 * Note that test_task() may be called with locks held, and may in some
2537 * situations be called multiple times for the same task, so it should
2538 * be cheap.
2539 * If the heap pointer in the struct cgroup_scanner is non-NULL, a heap has been
2540 * pre-allocated and will be used for heap operations (and its "gt" member will
2541 * be overwritten), else a temporary heap will be used (allocation of which
2542 * may cause this function to fail).
2543 */
2544int cgroup_scan_tasks(struct cgroup_scanner *scan)
2545{
2546 int retval, i;
2547 struct cgroup_iter it;
2548 struct task_struct *p, *dropped;
2549 /* Never dereference latest_task, since it's not refcounted */
2550 struct task_struct *latest_task = NULL;
2551 struct ptr_heap tmp_heap;
2552 struct ptr_heap *heap;
2553 struct timespec latest_time = { 0, 0 };
2554
2555 if (scan->heap) {
2556 /* The caller supplied our heap and pre-allocated its memory */
2557 heap = scan->heap;
2558 heap->gt = &started_after;
2559 } else {
2560 /* We need to allocate our own heap memory */
2561 heap = &tmp_heap;
2562 retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after);
2563 if (retval)
2564 /* cannot allocate the heap */
2565 return retval;
2566 }
2567
2568 again:
2569 /*
2570 * Scan tasks in the cgroup, using the scanner's "test_task" callback
2571 * to determine which are of interest, and using the scanner's
2572 * "process_task" callback to process any of them that need an update.
2573 * Since we don't want to hold any locks during the task updates,
2574 * gather tasks to be processed in a heap structure.
2575 * The heap is sorted by descending task start time.
2576 * If the statically-sized heap fills up, we overflow tasks that
2577 * started later, and in future iterations only consider tasks that
2578 * started after the latest task in the previous pass. This
2579 * guarantees forward progress and that we don't miss any tasks.
2580 */
2581 heap->size = 0;
2582 cgroup_iter_start(scan->cg, &it);
2583 while ((p = cgroup_iter_next(scan->cg, &it))) {
2584 /*
2585 * Only affect tasks that qualify per the caller's callback,
2586 * if he provided one
2587 */
2588 if (scan->test_task && !scan->test_task(p, scan))
2589 continue;
2590 /*
2591 * Only process tasks that started after the last task
2592 * we processed
2593 */
2594 if (!started_after_time(p, &latest_time, latest_task))
2595 continue;
2596 dropped = heap_insert(heap, p);
2597 if (dropped == NULL) {
2598 /*
2599 * The new task was inserted; the heap wasn't
2600 * previously full
2601 */
2602 get_task_struct(p);
2603 } else if (dropped != p) {
2604 /*
2605 * The new task was inserted, and pushed out a
2606 * different task
2607 */
2608 get_task_struct(p);
2609 put_task_struct(dropped);
2610 }
2611 /*
2612 * Else the new task was newer than anything already in
2613 * the heap and wasn't inserted
2614 */
2615 }
2616 cgroup_iter_end(scan->cg, &it);
2617
2618 if (heap->size) {
2619 for (i = 0; i < heap->size; i++) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07002620 struct task_struct *q = heap->ptrs[i];
Cliff Wickman31a7df02008-02-07 00:14:42 -08002621 if (i == 0) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07002622 latest_time = q->start_time;
2623 latest_task = q;
Cliff Wickman31a7df02008-02-07 00:14:42 -08002624 }
2625 /* Process the task per the caller's callback */
Paul Jackson4fe91d52008-04-29 00:59:55 -07002626 scan->process_task(q, scan);
2627 put_task_struct(q);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002628 }
2629 /*
2630 * If we had to process any tasks at all, scan again
2631 * in case some of them were in the middle of forking
2632 * children that didn't get processed.
2633 * Not the most efficient way to do it, but it avoids
2634 * having to take callback_mutex in the fork path
2635 */
2636 goto again;
2637 }
2638 if (heap == &tmp_heap)
2639 heap_free(&tmp_heap);
2640 return 0;
2641}
2642
Paul Menage817929e2007-10-18 23:39:36 -07002643/*
Ben Blum102a7752009-09-23 15:56:26 -07002644 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07002645 *
2646 * Reading this file can return large amounts of data if a cgroup has
2647 * *lots* of attached tasks. So it may need several calls to read(),
2648 * but we cannot guarantee that the information we produce is correct
2649 * unless we produce it entirely atomically.
2650 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07002651 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07002652
2653/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07002654 * The following two functions "fix" the issue where there are more pids
2655 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
2656 * TODO: replace with a kernel-wide solution to this problem
2657 */
2658#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
2659static void *pidlist_allocate(int count)
2660{
2661 if (PIDLIST_TOO_LARGE(count))
2662 return vmalloc(count * sizeof(pid_t));
2663 else
2664 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
2665}
2666static void pidlist_free(void *p)
2667{
2668 if (is_vmalloc_addr(p))
2669 vfree(p);
2670 else
2671 kfree(p);
2672}
2673static void *pidlist_resize(void *p, int newcount)
2674{
2675 void *newlist;
2676 /* note: if new alloc fails, old p will still be valid either way */
2677 if (is_vmalloc_addr(p)) {
2678 newlist = vmalloc(newcount * sizeof(pid_t));
2679 if (!newlist)
2680 return NULL;
2681 memcpy(newlist, p, newcount * sizeof(pid_t));
2682 vfree(p);
2683 } else {
2684 newlist = krealloc(p, newcount * sizeof(pid_t), GFP_KERNEL);
2685 }
2686 return newlist;
2687}
2688
2689/*
Ben Blum102a7752009-09-23 15:56:26 -07002690 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
2691 * If the new stripped list is sufficiently smaller and there's enough memory
2692 * to allocate a new buffer, will let go of the unneeded memory. Returns the
2693 * number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07002694 */
Ben Blum102a7752009-09-23 15:56:26 -07002695/* is the size difference enough that we should re-allocate the array? */
2696#define PIDLIST_REALLOC_DIFFERENCE(old, new) ((old) - PAGE_SIZE >= (new))
2697static int pidlist_uniq(pid_t **p, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002698{
Ben Blum102a7752009-09-23 15:56:26 -07002699 int src, dest = 1;
2700 pid_t *list = *p;
2701 pid_t *newlist;
2702
2703 /*
2704 * we presume the 0th element is unique, so i starts at 1. trivial
2705 * edge cases first; no work needs to be done for either
2706 */
2707 if (length == 0 || length == 1)
2708 return length;
2709 /* src and dest walk down the list; dest counts unique elements */
2710 for (src = 1; src < length; src++) {
2711 /* find next unique element */
2712 while (list[src] == list[src-1]) {
2713 src++;
2714 if (src == length)
2715 goto after;
2716 }
2717 /* dest always points to where the next unique element goes */
2718 list[dest] = list[src];
2719 dest++;
2720 }
2721after:
2722 /*
2723 * if the length difference is large enough, we want to allocate a
2724 * smaller buffer to save memory. if this fails due to out of memory,
2725 * we'll just stay with what we've got.
2726 */
2727 if (PIDLIST_REALLOC_DIFFERENCE(length, dest)) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07002728 newlist = pidlist_resize(list, dest);
Ben Blum102a7752009-09-23 15:56:26 -07002729 if (newlist)
2730 *p = newlist;
2731 }
2732 return dest;
2733}
2734
2735static int cmppid(const void *a, const void *b)
2736{
2737 return *(pid_t *)a - *(pid_t *)b;
2738}
2739
2740/*
Ben Blum72a8cb32009-09-23 15:56:27 -07002741 * find the appropriate pidlist for our purpose (given procs vs tasks)
2742 * returns with the lock on that pidlist already held, and takes care
2743 * of the use count, or returns NULL with no locks held if we're out of
2744 * memory.
2745 */
2746static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
2747 enum cgroup_filetype type)
2748{
2749 struct cgroup_pidlist *l;
2750 /* don't need task_nsproxy() if we're looking at ourself */
Li Zefanb70cc5f2010-03-10 15:22:12 -08002751 struct pid_namespace *ns = current->nsproxy->pid_ns;
2752
Ben Blum72a8cb32009-09-23 15:56:27 -07002753 /*
2754 * We can't drop the pidlist_mutex before taking the l->mutex in case
2755 * the last ref-holder is trying to remove l from the list at the same
2756 * time. Holding the pidlist_mutex precludes somebody taking whichever
2757 * list we find out from under us - compare release_pid_array().
2758 */
2759 mutex_lock(&cgrp->pidlist_mutex);
2760 list_for_each_entry(l, &cgrp->pidlists, links) {
2761 if (l->key.type == type && l->key.ns == ns) {
Ben Blum72a8cb32009-09-23 15:56:27 -07002762 /* make sure l doesn't vanish out from under us */
2763 down_write(&l->mutex);
2764 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07002765 return l;
2766 }
2767 }
2768 /* entry not found; create a new one */
2769 l = kmalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
2770 if (!l) {
2771 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07002772 return l;
2773 }
2774 init_rwsem(&l->mutex);
2775 down_write(&l->mutex);
2776 l->key.type = type;
Li Zefanb70cc5f2010-03-10 15:22:12 -08002777 l->key.ns = get_pid_ns(ns);
Ben Blum72a8cb32009-09-23 15:56:27 -07002778 l->use_count = 0; /* don't increment here */
2779 l->list = NULL;
2780 l->owner = cgrp;
2781 list_add(&l->links, &cgrp->pidlists);
2782 mutex_unlock(&cgrp->pidlist_mutex);
2783 return l;
2784}
2785
2786/*
Ben Blum102a7752009-09-23 15:56:26 -07002787 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
2788 */
Ben Blum72a8cb32009-09-23 15:56:27 -07002789static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
2790 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07002791{
2792 pid_t *array;
2793 int length;
2794 int pid, n = 0; /* used for populating the array */
Paul Menage817929e2007-10-18 23:39:36 -07002795 struct cgroup_iter it;
2796 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07002797 struct cgroup_pidlist *l;
2798
2799 /*
2800 * If cgroup gets more users after we read count, we won't have
2801 * enough space - tough. This race is indistinguishable to the
2802 * caller from the case that the additional cgroup users didn't
2803 * show up until sometime later on.
2804 */
2805 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07002806 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07002807 if (!array)
2808 return -ENOMEM;
2809 /* now, populate the array */
Paul Menagebd89aab2007-10-18 23:40:44 -07002810 cgroup_iter_start(cgrp, &it);
2811 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Ben Blum102a7752009-09-23 15:56:26 -07002812 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07002813 break;
Ben Blum102a7752009-09-23 15:56:26 -07002814 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07002815 if (type == CGROUP_FILE_PROCS)
2816 pid = task_tgid_vnr(tsk);
2817 else
2818 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07002819 if (pid > 0) /* make sure to only use valid results */
2820 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07002821 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002822 cgroup_iter_end(cgrp, &it);
Ben Blum102a7752009-09-23 15:56:26 -07002823 length = n;
2824 /* now sort & (if procs) strip out duplicates */
2825 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07002826 if (type == CGROUP_FILE_PROCS)
Ben Blum102a7752009-09-23 15:56:26 -07002827 length = pidlist_uniq(&array, length);
Ben Blum72a8cb32009-09-23 15:56:27 -07002828 l = cgroup_pidlist_find(cgrp, type);
2829 if (!l) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07002830 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07002831 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07002832 }
Ben Blum72a8cb32009-09-23 15:56:27 -07002833 /* store array, freeing old if necessary - lock already held */
Ben Blumd1d9fd32009-09-23 15:56:28 -07002834 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07002835 l->list = array;
2836 l->length = length;
2837 l->use_count++;
2838 up_write(&l->mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07002839 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07002840 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002841}
2842
Balbir Singh846c7bb2007-10-18 23:39:44 -07002843/**
Li Zefana043e3b2008-02-23 15:24:09 -08002844 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07002845 * @stats: cgroupstats to fill information into
2846 * @dentry: A dentry entry belonging to the cgroup for which stats have
2847 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08002848 *
2849 * Build and fill cgroupstats so that taskstats can export it to user
2850 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07002851 */
2852int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
2853{
2854 int ret = -EINVAL;
Paul Menagebd89aab2007-10-18 23:40:44 -07002855 struct cgroup *cgrp;
Balbir Singh846c7bb2007-10-18 23:39:44 -07002856 struct cgroup_iter it;
2857 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08002858
Balbir Singh846c7bb2007-10-18 23:39:44 -07002859 /*
Li Zefan33d283b2008-11-19 15:36:48 -08002860 * Validate dentry by checking the superblock operations,
2861 * and make sure it's a directory.
Balbir Singh846c7bb2007-10-18 23:39:44 -07002862 */
Li Zefan33d283b2008-11-19 15:36:48 -08002863 if (dentry->d_sb->s_op != &cgroup_ops ||
2864 !S_ISDIR(dentry->d_inode->i_mode))
Balbir Singh846c7bb2007-10-18 23:39:44 -07002865 goto err;
2866
2867 ret = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07002868 cgrp = dentry->d_fsdata;
Balbir Singh846c7bb2007-10-18 23:39:44 -07002869
Paul Menagebd89aab2007-10-18 23:40:44 -07002870 cgroup_iter_start(cgrp, &it);
2871 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07002872 switch (tsk->state) {
2873 case TASK_RUNNING:
2874 stats->nr_running++;
2875 break;
2876 case TASK_INTERRUPTIBLE:
2877 stats->nr_sleeping++;
2878 break;
2879 case TASK_UNINTERRUPTIBLE:
2880 stats->nr_uninterruptible++;
2881 break;
2882 case TASK_STOPPED:
2883 stats->nr_stopped++;
2884 break;
2885 default:
2886 if (delayacct_is_task_waiting_on_io(tsk))
2887 stats->nr_io_wait++;
2888 break;
2889 }
2890 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002891 cgroup_iter_end(cgrp, &it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07002892
Balbir Singh846c7bb2007-10-18 23:39:44 -07002893err:
2894 return ret;
2895}
2896
Paul Menage8f3ff202009-09-23 15:56:25 -07002897
Paul Menagecc31edc2008-10-18 20:28:04 -07002898/*
Ben Blum102a7752009-09-23 15:56:26 -07002899 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07002900 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07002901 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07002902 */
2903
Ben Blum102a7752009-09-23 15:56:26 -07002904static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07002905{
2906 /*
2907 * Initially we receive a position value that corresponds to
2908 * one more than the last pid shown (or 0 on the first call or
2909 * after a seek to the start). Use a binary-search to find the
2910 * next pid to display, if any
2911 */
Ben Blum102a7752009-09-23 15:56:26 -07002912 struct cgroup_pidlist *l = s->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07002913 int index = 0, pid = *pos;
2914 int *iter;
2915
Ben Blum102a7752009-09-23 15:56:26 -07002916 down_read(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07002917 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07002918 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11002919
Paul Menagecc31edc2008-10-18 20:28:04 -07002920 while (index < end) {
2921 int mid = (index + end) / 2;
Ben Blum102a7752009-09-23 15:56:26 -07002922 if (l->list[mid] == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07002923 index = mid;
2924 break;
Ben Blum102a7752009-09-23 15:56:26 -07002925 } else if (l->list[mid] <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07002926 index = mid + 1;
2927 else
2928 end = mid;
2929 }
2930 }
2931 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07002932 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07002933 return NULL;
2934 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07002935 iter = l->list + index;
Paul Menagecc31edc2008-10-18 20:28:04 -07002936 *pos = *iter;
2937 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002938}
2939
Ben Blum102a7752009-09-23 15:56:26 -07002940static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07002941{
Ben Blum102a7752009-09-23 15:56:26 -07002942 struct cgroup_pidlist *l = s->private;
2943 up_read(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07002944}
2945
Ben Blum102a7752009-09-23 15:56:26 -07002946static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07002947{
Ben Blum102a7752009-09-23 15:56:26 -07002948 struct cgroup_pidlist *l = s->private;
2949 pid_t *p = v;
2950 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07002951 /*
2952 * Advance to the next pid in the array. If this goes off the
2953 * end, we're done
2954 */
2955 p++;
2956 if (p >= end) {
2957 return NULL;
2958 } else {
2959 *pos = *p;
2960 return p;
2961 }
2962}
2963
Ben Blum102a7752009-09-23 15:56:26 -07002964static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07002965{
2966 return seq_printf(s, "%d\n", *(int *)v);
2967}
2968
Ben Blum102a7752009-09-23 15:56:26 -07002969/*
2970 * seq_operations functions for iterating on pidlists through seq_file -
2971 * independent of whether it's tasks or procs
2972 */
2973static const struct seq_operations cgroup_pidlist_seq_operations = {
2974 .start = cgroup_pidlist_start,
2975 .stop = cgroup_pidlist_stop,
2976 .next = cgroup_pidlist_next,
2977 .show = cgroup_pidlist_show,
Paul Menagecc31edc2008-10-18 20:28:04 -07002978};
2979
Ben Blum102a7752009-09-23 15:56:26 -07002980static void cgroup_release_pid_array(struct cgroup_pidlist *l)
Paul Menagecc31edc2008-10-18 20:28:04 -07002981{
Ben Blum72a8cb32009-09-23 15:56:27 -07002982 /*
2983 * the case where we're the last user of this particular pidlist will
2984 * have us remove it from the cgroup's list, which entails taking the
2985 * mutex. since in pidlist_find the pidlist->lock depends on cgroup->
2986 * pidlist_mutex, we have to take pidlist_mutex first.
2987 */
2988 mutex_lock(&l->owner->pidlist_mutex);
Ben Blum102a7752009-09-23 15:56:26 -07002989 down_write(&l->mutex);
2990 BUG_ON(!l->use_count);
2991 if (!--l->use_count) {
Ben Blum72a8cb32009-09-23 15:56:27 -07002992 /* we're the last user if refcount is 0; remove and free */
2993 list_del(&l->links);
2994 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blumd1d9fd32009-09-23 15:56:28 -07002995 pidlist_free(l->list);
Ben Blum72a8cb32009-09-23 15:56:27 -07002996 put_pid_ns(l->key.ns);
2997 up_write(&l->mutex);
2998 kfree(l);
2999 return;
Paul Menagecc31edc2008-10-18 20:28:04 -07003000 }
Ben Blum72a8cb32009-09-23 15:56:27 -07003001 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blum102a7752009-09-23 15:56:26 -07003002 up_write(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003003}
3004
Ben Blum102a7752009-09-23 15:56:26 -07003005static int cgroup_pidlist_release(struct inode *inode, struct file *file)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003006{
Ben Blum102a7752009-09-23 15:56:26 -07003007 struct cgroup_pidlist *l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003008 if (!(file->f_mode & FMODE_READ))
3009 return 0;
Ben Blum102a7752009-09-23 15:56:26 -07003010 /*
3011 * the seq_file will only be initialized if the file was opened for
3012 * reading; hence we check if it's not null only in that case.
3013 */
3014 l = ((struct seq_file *)file->private_data)->private;
3015 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07003016 return seq_release(inode, file);
3017}
3018
Ben Blum102a7752009-09-23 15:56:26 -07003019static const struct file_operations cgroup_pidlist_operations = {
Paul Menagecc31edc2008-10-18 20:28:04 -07003020 .read = seq_read,
3021 .llseek = seq_lseek,
3022 .write = cgroup_file_write,
Ben Blum102a7752009-09-23 15:56:26 -07003023 .release = cgroup_pidlist_release,
Paul Menagecc31edc2008-10-18 20:28:04 -07003024};
3025
3026/*
Ben Blum102a7752009-09-23 15:56:26 -07003027 * The following functions handle opens on a file that displays a pidlist
3028 * (tasks or procs). Prepare an array of the process/thread IDs of whoever's
3029 * in the cgroup.
Paul Menagecc31edc2008-10-18 20:28:04 -07003030 */
Ben Blum102a7752009-09-23 15:56:26 -07003031/* helper function for the two below it */
Ben Blum72a8cb32009-09-23 15:56:27 -07003032static int cgroup_pidlist_open(struct file *file, enum cgroup_filetype type)
Paul Menagecc31edc2008-10-18 20:28:04 -07003033{
3034 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Ben Blum72a8cb32009-09-23 15:56:27 -07003035 struct cgroup_pidlist *l;
Paul Menagecc31edc2008-10-18 20:28:04 -07003036 int retval;
3037
3038 /* Nothing to do for write-only files */
3039 if (!(file->f_mode & FMODE_READ))
3040 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003041
Ben Blum102a7752009-09-23 15:56:26 -07003042 /* have the array populated */
Ben Blum72a8cb32009-09-23 15:56:27 -07003043 retval = pidlist_array_load(cgrp, type, &l);
Ben Blum102a7752009-09-23 15:56:26 -07003044 if (retval)
3045 return retval;
3046 /* configure file information */
3047 file->f_op = &cgroup_pidlist_operations;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003048
Ben Blum102a7752009-09-23 15:56:26 -07003049 retval = seq_open(file, &cgroup_pidlist_seq_operations);
Paul Menagecc31edc2008-10-18 20:28:04 -07003050 if (retval) {
Ben Blum102a7752009-09-23 15:56:26 -07003051 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07003052 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003053 }
Ben Blum102a7752009-09-23 15:56:26 -07003054 ((struct seq_file *)file->private_data)->private = l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003055 return 0;
3056}
Ben Blum102a7752009-09-23 15:56:26 -07003057static int cgroup_tasks_open(struct inode *unused, struct file *file)
3058{
Ben Blum72a8cb32009-09-23 15:56:27 -07003059 return cgroup_pidlist_open(file, CGROUP_FILE_TASKS);
Ben Blum102a7752009-09-23 15:56:26 -07003060}
3061static int cgroup_procs_open(struct inode *unused, struct file *file)
3062{
Ben Blum72a8cb32009-09-23 15:56:27 -07003063 return cgroup_pidlist_open(file, CGROUP_FILE_PROCS);
Ben Blum102a7752009-09-23 15:56:26 -07003064}
Paul Menagebbcb81d2007-10-18 23:39:32 -07003065
Paul Menagebd89aab2007-10-18 23:40:44 -07003066static u64 cgroup_read_notify_on_release(struct cgroup *cgrp,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003067 struct cftype *cft)
3068{
Paul Menagebd89aab2007-10-18 23:40:44 -07003069 return notify_on_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003070}
3071
Paul Menage6379c102008-07-25 01:47:01 -07003072static int cgroup_write_notify_on_release(struct cgroup *cgrp,
3073 struct cftype *cft,
3074 u64 val)
3075{
3076 clear_bit(CGRP_RELEASABLE, &cgrp->flags);
3077 if (val)
3078 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3079 else
3080 clear_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3081 return 0;
3082}
3083
Paul Menagebbcb81d2007-10-18 23:39:32 -07003084/*
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003085 * Unregister event and free resources.
3086 *
3087 * Gets called from workqueue.
3088 */
3089static void cgroup_event_remove(struct work_struct *work)
3090{
3091 struct cgroup_event *event = container_of(work, struct cgroup_event,
3092 remove);
3093 struct cgroup *cgrp = event->cgrp;
3094
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003095 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3096
3097 eventfd_ctx_put(event->eventfd);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003098 kfree(event);
Kirill A. Shutemova0a4db52010-03-10 15:22:34 -08003099 dput(cgrp->dentry);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003100}
3101
3102/*
3103 * Gets called on POLLHUP on eventfd when user closes it.
3104 *
3105 * Called with wqh->lock held and interrupts disabled.
3106 */
3107static int cgroup_event_wake(wait_queue_t *wait, unsigned mode,
3108 int sync, void *key)
3109{
3110 struct cgroup_event *event = container_of(wait,
3111 struct cgroup_event, wait);
3112 struct cgroup *cgrp = event->cgrp;
3113 unsigned long flags = (unsigned long)key;
3114
3115 if (flags & POLLHUP) {
Changli Gaoa93d2f12010-05-07 14:33:26 +08003116 __remove_wait_queue(event->wqh, &event->wait);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003117 spin_lock(&cgrp->event_list_lock);
3118 list_del(&event->list);
3119 spin_unlock(&cgrp->event_list_lock);
3120 /*
3121 * We are in atomic context, but cgroup_event_remove() may
3122 * sleep, so we have to call it in workqueue.
3123 */
3124 schedule_work(&event->remove);
3125 }
3126
3127 return 0;
3128}
3129
3130static void cgroup_event_ptable_queue_proc(struct file *file,
3131 wait_queue_head_t *wqh, poll_table *pt)
3132{
3133 struct cgroup_event *event = container_of(pt,
3134 struct cgroup_event, pt);
3135
3136 event->wqh = wqh;
3137 add_wait_queue(wqh, &event->wait);
3138}
3139
3140/*
3141 * Parse input and register new cgroup event handler.
3142 *
3143 * Input must be in format '<event_fd> <control_fd> <args>'.
3144 * Interpretation of args is defined by control file implementation.
3145 */
3146static int cgroup_write_event_control(struct cgroup *cgrp, struct cftype *cft,
3147 const char *buffer)
3148{
3149 struct cgroup_event *event = NULL;
3150 unsigned int efd, cfd;
3151 struct file *efile = NULL;
3152 struct file *cfile = NULL;
3153 char *endp;
3154 int ret;
3155
3156 efd = simple_strtoul(buffer, &endp, 10);
3157 if (*endp != ' ')
3158 return -EINVAL;
3159 buffer = endp + 1;
3160
3161 cfd = simple_strtoul(buffer, &endp, 10);
3162 if ((*endp != ' ') && (*endp != '\0'))
3163 return -EINVAL;
3164 buffer = endp + 1;
3165
3166 event = kzalloc(sizeof(*event), GFP_KERNEL);
3167 if (!event)
3168 return -ENOMEM;
3169 event->cgrp = cgrp;
3170 INIT_LIST_HEAD(&event->list);
3171 init_poll_funcptr(&event->pt, cgroup_event_ptable_queue_proc);
3172 init_waitqueue_func_entry(&event->wait, cgroup_event_wake);
3173 INIT_WORK(&event->remove, cgroup_event_remove);
3174
3175 efile = eventfd_fget(efd);
3176 if (IS_ERR(efile)) {
3177 ret = PTR_ERR(efile);
3178 goto fail;
3179 }
3180
3181 event->eventfd = eventfd_ctx_fileget(efile);
3182 if (IS_ERR(event->eventfd)) {
3183 ret = PTR_ERR(event->eventfd);
3184 goto fail;
3185 }
3186
3187 cfile = fget(cfd);
3188 if (!cfile) {
3189 ret = -EBADF;
3190 goto fail;
3191 }
3192
3193 /* the process need read permission on control file */
3194 ret = file_permission(cfile, MAY_READ);
3195 if (ret < 0)
3196 goto fail;
3197
3198 event->cft = __file_cft(cfile);
3199 if (IS_ERR(event->cft)) {
3200 ret = PTR_ERR(event->cft);
3201 goto fail;
3202 }
3203
3204 if (!event->cft->register_event || !event->cft->unregister_event) {
3205 ret = -EINVAL;
3206 goto fail;
3207 }
3208
3209 ret = event->cft->register_event(cgrp, event->cft,
3210 event->eventfd, buffer);
3211 if (ret)
3212 goto fail;
3213
3214 if (efile->f_op->poll(efile, &event->pt) & POLLHUP) {
3215 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3216 ret = 0;
3217 goto fail;
3218 }
3219
Kirill A. Shutemova0a4db52010-03-10 15:22:34 -08003220 /*
3221 * Events should be removed after rmdir of cgroup directory, but before
3222 * destroying subsystem state objects. Let's take reference to cgroup
3223 * directory dentry to do that.
3224 */
3225 dget(cgrp->dentry);
3226
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003227 spin_lock(&cgrp->event_list_lock);
3228 list_add(&event->list, &cgrp->event_list);
3229 spin_unlock(&cgrp->event_list_lock);
3230
3231 fput(cfile);
3232 fput(efile);
3233
3234 return 0;
3235
3236fail:
3237 if (cfile)
3238 fput(cfile);
3239
3240 if (event && event->eventfd && !IS_ERR(event->eventfd))
3241 eventfd_ctx_put(event->eventfd);
3242
3243 if (!IS_ERR_OR_NULL(efile))
3244 fput(efile);
3245
3246 kfree(event);
3247
3248 return ret;
3249}
3250
Daniel Lezcano97978e62010-10-27 15:33:35 -07003251static u64 cgroup_clone_children_read(struct cgroup *cgrp,
3252 struct cftype *cft)
3253{
3254 return clone_children(cgrp);
3255}
3256
3257static int cgroup_clone_children_write(struct cgroup *cgrp,
3258 struct cftype *cft,
3259 u64 val)
3260{
3261 if (val)
3262 set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3263 else
3264 clear_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3265 return 0;
3266}
3267
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003268/*
Paul Menagebbcb81d2007-10-18 23:39:32 -07003269 * for the common functions, 'private' gives the type of file
3270 */
Ben Blum102a7752009-09-23 15:56:26 -07003271/* for hysterical raisins, we can't put this on the older files */
3272#define CGROUP_FILE_GENERIC_PREFIX "cgroup."
Paul Menage81a6a5c2007-10-18 23:39:38 -07003273static struct cftype files[] = {
3274 {
3275 .name = "tasks",
3276 .open = cgroup_tasks_open,
Paul Menageaf351022008-07-25 01:47:01 -07003277 .write_u64 = cgroup_tasks_write,
Ben Blum102a7752009-09-23 15:56:26 -07003278 .release = cgroup_pidlist_release,
Li Zefan099fca32009-04-02 16:57:29 -07003279 .mode = S_IRUGO | S_IWUSR,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003280 },
Ben Blum102a7752009-09-23 15:56:26 -07003281 {
3282 .name = CGROUP_FILE_GENERIC_PREFIX "procs",
3283 .open = cgroup_procs_open,
3284 /* .write_u64 = cgroup_procs_write, TODO */
3285 .release = cgroup_pidlist_release,
3286 .mode = S_IRUGO,
3287 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003288 {
3289 .name = "notify_on_release",
Paul Menagef4c753b2008-04-29 00:59:56 -07003290 .read_u64 = cgroup_read_notify_on_release,
Paul Menage6379c102008-07-25 01:47:01 -07003291 .write_u64 = cgroup_write_notify_on_release,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003292 },
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003293 {
3294 .name = CGROUP_FILE_GENERIC_PREFIX "event_control",
3295 .write_string = cgroup_write_event_control,
3296 .mode = S_IWUGO,
3297 },
Daniel Lezcano97978e62010-10-27 15:33:35 -07003298 {
3299 .name = "cgroup.clone_children",
3300 .read_u64 = cgroup_clone_children_read,
3301 .write_u64 = cgroup_clone_children_write,
3302 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003303};
3304
3305static struct cftype cft_release_agent = {
3306 .name = "release_agent",
Paul Menagee788e062008-07-25 01:46:59 -07003307 .read_seq_string = cgroup_release_agent_show,
3308 .write_string = cgroup_release_agent_write,
3309 .max_write_len = PATH_MAX,
Paul Menagebbcb81d2007-10-18 23:39:32 -07003310};
3311
Paul Menagebd89aab2007-10-18 23:40:44 -07003312static int cgroup_populate_dir(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003313{
3314 int err;
3315 struct cgroup_subsys *ss;
3316
3317 /* First clear out any existing files */
Paul Menagebd89aab2007-10-18 23:40:44 -07003318 cgroup_clear_directory(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003319
Paul Menagebd89aab2007-10-18 23:40:44 -07003320 err = cgroup_add_files(cgrp, NULL, files, ARRAY_SIZE(files));
Paul Menagebbcb81d2007-10-18 23:39:32 -07003321 if (err < 0)
3322 return err;
3323
Paul Menagebd89aab2007-10-18 23:40:44 -07003324 if (cgrp == cgrp->top_cgroup) {
3325 if ((err = cgroup_add_file(cgrp, NULL, &cft_release_agent)) < 0)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003326 return err;
3327 }
3328
Paul Menagebd89aab2007-10-18 23:40:44 -07003329 for_each_subsys(cgrp->root, ss) {
3330 if (ss->populate && (err = ss->populate(ss, cgrp)) < 0)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003331 return err;
3332 }
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003333 /* This cgroup is ready now */
3334 for_each_subsys(cgrp->root, ss) {
3335 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3336 /*
3337 * Update id->css pointer and make this css visible from
3338 * CSS ID functions. This pointer will be dereferened
3339 * from RCU-read-side without locks.
3340 */
3341 if (css->id)
3342 rcu_assign_pointer(css->id->css, css);
3343 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003344
3345 return 0;
3346}
3347
3348static void init_cgroup_css(struct cgroup_subsys_state *css,
3349 struct cgroup_subsys *ss,
Paul Menagebd89aab2007-10-18 23:40:44 -07003350 struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003351{
Paul Menagebd89aab2007-10-18 23:40:44 -07003352 css->cgroup = cgrp;
Paul Menagee7c5ec92009-01-07 18:08:38 -08003353 atomic_set(&css->refcnt, 1);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003354 css->flags = 0;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003355 css->id = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07003356 if (cgrp == dummytop)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003357 set_bit(CSS_ROOT, &css->flags);
Paul Menagebd89aab2007-10-18 23:40:44 -07003358 BUG_ON(cgrp->subsys[ss->subsys_id]);
3359 cgrp->subsys[ss->subsys_id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003360}
3361
Paul Menage999cd8a2009-01-07 18:08:36 -08003362static void cgroup_lock_hierarchy(struct cgroupfs_root *root)
3363{
3364 /* We need to take each hierarchy_mutex in a consistent order */
3365 int i;
3366
Ben Blumaae8aab2010-03-10 15:22:07 -08003367 /*
3368 * No worry about a race with rebind_subsystems that might mess up the
3369 * locking order, since both parties are under cgroup_mutex.
3370 */
Paul Menage999cd8a2009-01-07 18:08:36 -08003371 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3372 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08003373 if (ss == NULL)
3374 continue;
Paul Menage999cd8a2009-01-07 18:08:36 -08003375 if (ss->root == root)
Li Zefancfebe562009-02-11 13:04:36 -08003376 mutex_lock(&ss->hierarchy_mutex);
Paul Menage999cd8a2009-01-07 18:08:36 -08003377 }
3378}
3379
3380static void cgroup_unlock_hierarchy(struct cgroupfs_root *root)
3381{
3382 int i;
3383
3384 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3385 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08003386 if (ss == NULL)
3387 continue;
Paul Menage999cd8a2009-01-07 18:08:36 -08003388 if (ss->root == root)
3389 mutex_unlock(&ss->hierarchy_mutex);
3390 }
3391}
3392
Paul Menageddbcc7e2007-10-18 23:39:30 -07003393/*
Li Zefana043e3b2008-02-23 15:24:09 -08003394 * cgroup_create - create a cgroup
3395 * @parent: cgroup that will be parent of the new cgroup
3396 * @dentry: dentry of the new cgroup
3397 * @mode: mode to set on new inode
Paul Menageddbcc7e2007-10-18 23:39:30 -07003398 *
Li Zefana043e3b2008-02-23 15:24:09 -08003399 * Must be called with the mutex on the parent inode held
Paul Menageddbcc7e2007-10-18 23:39:30 -07003400 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07003401static long cgroup_create(struct cgroup *parent, struct dentry *dentry,
Li Zefan099fca32009-04-02 16:57:29 -07003402 mode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003403{
Paul Menagebd89aab2007-10-18 23:40:44 -07003404 struct cgroup *cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003405 struct cgroupfs_root *root = parent->root;
3406 int err = 0;
3407 struct cgroup_subsys *ss;
3408 struct super_block *sb = root->sb;
3409
Paul Menagebd89aab2007-10-18 23:40:44 -07003410 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
3411 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003412 return -ENOMEM;
3413
3414 /* Grab a reference on the superblock so the hierarchy doesn't
3415 * get deleted on unmount if there are child cgroups. This
3416 * can be done outside cgroup_mutex, since the sb can't
3417 * disappear while someone has an open control file on the
3418 * fs */
3419 atomic_inc(&sb->s_active);
3420
3421 mutex_lock(&cgroup_mutex);
3422
Paul Menagecc31edc2008-10-18 20:28:04 -07003423 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003424
Paul Menagebd89aab2007-10-18 23:40:44 -07003425 cgrp->parent = parent;
3426 cgrp->root = parent->root;
3427 cgrp->top_cgroup = parent->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003428
Li Zefanb6abdb02008-03-04 14:28:19 -08003429 if (notify_on_release(parent))
3430 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3431
Daniel Lezcano97978e62010-10-27 15:33:35 -07003432 if (clone_children(parent))
3433 set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3434
Paul Menageddbcc7e2007-10-18 23:39:30 -07003435 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07003436 struct cgroup_subsys_state *css = ss->create(ss, cgrp);
Li Zefan4528fd02010-02-02 13:44:10 -08003437
Paul Menageddbcc7e2007-10-18 23:39:30 -07003438 if (IS_ERR(css)) {
3439 err = PTR_ERR(css);
3440 goto err_destroy;
3441 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003442 init_cgroup_css(css, ss, cgrp);
Li Zefan4528fd02010-02-02 13:44:10 -08003443 if (ss->use_id) {
3444 err = alloc_css_id(ss, parent, cgrp);
3445 if (err)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003446 goto err_destroy;
Li Zefan4528fd02010-02-02 13:44:10 -08003447 }
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003448 /* At error, ->destroy() callback has to free assigned ID. */
Daniel Lezcano97978e62010-10-27 15:33:35 -07003449 if (clone_children(parent) && ss->post_clone)
3450 ss->post_clone(ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003451 }
3452
Paul Menage999cd8a2009-01-07 18:08:36 -08003453 cgroup_lock_hierarchy(root);
Paul Menagebd89aab2007-10-18 23:40:44 -07003454 list_add(&cgrp->sibling, &cgrp->parent->children);
Paul Menage999cd8a2009-01-07 18:08:36 -08003455 cgroup_unlock_hierarchy(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003456 root->number_of_cgroups++;
3457
Paul Menagebd89aab2007-10-18 23:40:44 -07003458 err = cgroup_create_dir(cgrp, dentry, mode);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003459 if (err < 0)
3460 goto err_remove;
3461
3462 /* The cgroup directory was pre-locked for us */
Paul Menagebd89aab2007-10-18 23:40:44 -07003463 BUG_ON(!mutex_is_locked(&cgrp->dentry->d_inode->i_mutex));
Paul Menageddbcc7e2007-10-18 23:39:30 -07003464
Paul Menagebd89aab2007-10-18 23:40:44 -07003465 err = cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003466 /* If err < 0, we have a half-filled directory - oh well ;) */
3467
3468 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07003469 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003470
3471 return 0;
3472
3473 err_remove:
3474
KAMEZAWA Hiroyukibaef99a2009-01-29 14:25:10 -08003475 cgroup_lock_hierarchy(root);
Paul Menagebd89aab2007-10-18 23:40:44 -07003476 list_del(&cgrp->sibling);
KAMEZAWA Hiroyukibaef99a2009-01-29 14:25:10 -08003477 cgroup_unlock_hierarchy(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003478 root->number_of_cgroups--;
3479
3480 err_destroy:
3481
3482 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07003483 if (cgrp->subsys[ss->subsys_id])
3484 ss->destroy(ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003485 }
3486
3487 mutex_unlock(&cgroup_mutex);
3488
3489 /* Release the reference count that we took on the superblock */
3490 deactivate_super(sb);
3491
Paul Menagebd89aab2007-10-18 23:40:44 -07003492 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003493 return err;
3494}
3495
3496static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode)
3497{
3498 struct cgroup *c_parent = dentry->d_parent->d_fsdata;
3499
3500 /* the vfs holds inode->i_mutex already */
3501 return cgroup_create(c_parent, dentry, mode | S_IFDIR);
3502}
3503
Li Zefan55b6fd02008-07-29 22:33:20 -07003504static int cgroup_has_css_refs(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003505{
3506 /* Check the reference count on each subsystem. Since we
3507 * already established that there are no tasks in the
Paul Menagee7c5ec92009-01-07 18:08:38 -08003508 * cgroup, if the css refcount is also 1, then there should
Paul Menage81a6a5c2007-10-18 23:39:38 -07003509 * be no outstanding references, so the subsystem is safe to
3510 * destroy. We scan across all subsystems rather than using
3511 * the per-hierarchy linked list of mounted subsystems since
3512 * we can be called via check_for_release() with no
3513 * synchronization other than RCU, and the subsystem linked
3514 * list isn't RCU-safe */
3515 int i;
Ben Blumaae8aab2010-03-10 15:22:07 -08003516 /*
3517 * We won't need to lock the subsys array, because the subsystems
3518 * we're concerned about aren't going anywhere since our cgroup root
3519 * has a reference on them.
3520 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07003521 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3522 struct cgroup_subsys *ss = subsys[i];
3523 struct cgroup_subsys_state *css;
Ben Blumaae8aab2010-03-10 15:22:07 -08003524 /* Skip subsystems not present or not in this hierarchy */
3525 if (ss == NULL || ss->root != cgrp->root)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003526 continue;
Paul Menagebd89aab2007-10-18 23:40:44 -07003527 css = cgrp->subsys[ss->subsys_id];
Paul Menage81a6a5c2007-10-18 23:39:38 -07003528 /* When called from check_for_release() it's possible
3529 * that by this point the cgroup has been removed
3530 * and the css deleted. But a false-positive doesn't
3531 * matter, since it can only happen if the cgroup
3532 * has been deleted and hence no longer needs the
3533 * release agent to be called anyway. */
Paul Menagee7c5ec92009-01-07 18:08:38 -08003534 if (css && (atomic_read(&css->refcnt) > 1))
Paul Menage81a6a5c2007-10-18 23:39:38 -07003535 return 1;
Paul Menage81a6a5c2007-10-18 23:39:38 -07003536 }
3537 return 0;
3538}
3539
Paul Menagee7c5ec92009-01-07 18:08:38 -08003540/*
3541 * Atomically mark all (or else none) of the cgroup's CSS objects as
3542 * CSS_REMOVED. Return true on success, or false if the cgroup has
3543 * busy subsystems. Call with cgroup_mutex held
3544 */
3545
3546static int cgroup_clear_css_refs(struct cgroup *cgrp)
3547{
3548 struct cgroup_subsys *ss;
3549 unsigned long flags;
3550 bool failed = false;
3551 local_irq_save(flags);
3552 for_each_subsys(cgrp->root, ss) {
3553 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3554 int refcnt;
Paul Menage804b3c22009-01-29 14:25:21 -08003555 while (1) {
Paul Menagee7c5ec92009-01-07 18:08:38 -08003556 /* We can only remove a CSS with a refcnt==1 */
3557 refcnt = atomic_read(&css->refcnt);
3558 if (refcnt > 1) {
3559 failed = true;
3560 goto done;
3561 }
3562 BUG_ON(!refcnt);
3563 /*
3564 * Drop the refcnt to 0 while we check other
3565 * subsystems. This will cause any racing
3566 * css_tryget() to spin until we set the
3567 * CSS_REMOVED bits or abort
3568 */
Paul Menage804b3c22009-01-29 14:25:21 -08003569 if (atomic_cmpxchg(&css->refcnt, refcnt, 0) == refcnt)
3570 break;
3571 cpu_relax();
3572 }
Paul Menagee7c5ec92009-01-07 18:08:38 -08003573 }
3574 done:
3575 for_each_subsys(cgrp->root, ss) {
3576 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3577 if (failed) {
3578 /*
3579 * Restore old refcnt if we previously managed
3580 * to clear it from 1 to 0
3581 */
3582 if (!atomic_read(&css->refcnt))
3583 atomic_set(&css->refcnt, 1);
3584 } else {
3585 /* Commit the fact that the CSS is removed */
3586 set_bit(CSS_REMOVED, &css->flags);
3587 }
3588 }
3589 local_irq_restore(flags);
3590 return !failed;
3591}
3592
Paul Menageddbcc7e2007-10-18 23:39:30 -07003593static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry)
3594{
Paul Menagebd89aab2007-10-18 23:40:44 -07003595 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003596 struct dentry *d;
3597 struct cgroup *parent;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003598 DEFINE_WAIT(wait);
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08003599 struct cgroup_event *event, *tmp;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003600 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003601
3602 /* the vfs holds both inode->i_mutex already */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003603again:
Paul Menageddbcc7e2007-10-18 23:39:30 -07003604 mutex_lock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07003605 if (atomic_read(&cgrp->count) != 0) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07003606 mutex_unlock(&cgroup_mutex);
3607 return -EBUSY;
3608 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003609 if (!list_empty(&cgrp->children)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07003610 mutex_unlock(&cgroup_mutex);
3611 return -EBUSY;
3612 }
KAMEZAWA Hiroyuki3fa59df2008-11-19 15:36:34 -08003613 mutex_unlock(&cgroup_mutex);
Li Zefana043e3b2008-02-23 15:24:09 -08003614
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08003615 /*
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003616 * In general, subsystem has no css->refcnt after pre_destroy(). But
3617 * in racy cases, subsystem may have to get css->refcnt after
3618 * pre_destroy() and it makes rmdir return with -EBUSY. This sometimes
3619 * make rmdir return -EBUSY too often. To avoid that, we use waitqueue
3620 * for cgroup's rmdir. CGRP_WAIT_ON_RMDIR is for synchronizing rmdir
3621 * and subsystem's reference count handling. Please see css_get/put
3622 * and css_tryget() and cgroup_wakeup_rmdir_waiter() implementation.
3623 */
3624 set_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
3625
3626 /*
Li Zefana043e3b2008-02-23 15:24:09 -08003627 * Call pre_destroy handlers of subsys. Notify subsystems
3628 * that rmdir() request comes.
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08003629 */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003630 ret = cgroup_call_pre_destroy(cgrp);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003631 if (ret) {
3632 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003633 return ret;
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003634 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003635
KAMEZAWA Hiroyuki3fa59df2008-11-19 15:36:34 -08003636 mutex_lock(&cgroup_mutex);
3637 parent = cgrp->parent;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003638 if (atomic_read(&cgrp->count) || !list_empty(&cgrp->children)) {
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003639 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003640 mutex_unlock(&cgroup_mutex);
3641 return -EBUSY;
3642 }
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003643 prepare_to_wait(&cgroup_rmdir_waitq, &wait, TASK_INTERRUPTIBLE);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003644 if (!cgroup_clear_css_refs(cgrp)) {
3645 mutex_unlock(&cgroup_mutex);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003646 /*
3647 * Because someone may call cgroup_wakeup_rmdir_waiter() before
3648 * prepare_to_wait(), we need to check this flag.
3649 */
3650 if (test_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags))
3651 schedule();
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003652 finish_wait(&cgroup_rmdir_waitq, &wait);
3653 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
3654 if (signal_pending(current))
3655 return -EINTR;
3656 goto again;
3657 }
3658 /* NO css_tryget() can success after here. */
3659 finish_wait(&cgroup_rmdir_waitq, &wait);
3660 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003661
Paul Menage81a6a5c2007-10-18 23:39:38 -07003662 spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07003663 set_bit(CGRP_REMOVED, &cgrp->flags);
3664 if (!list_empty(&cgrp->release_list))
3665 list_del(&cgrp->release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003666 spin_unlock(&release_list_lock);
Paul Menage999cd8a2009-01-07 18:08:36 -08003667
3668 cgroup_lock_hierarchy(cgrp->root);
3669 /* delete this cgroup from parent->children */
Paul Menagebd89aab2007-10-18 23:40:44 -07003670 list_del(&cgrp->sibling);
Paul Menage999cd8a2009-01-07 18:08:36 -08003671 cgroup_unlock_hierarchy(cgrp->root);
3672
Paul Menagebd89aab2007-10-18 23:40:44 -07003673 d = dget(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003674
3675 cgroup_d_remove_dir(d);
3676 dput(d);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003677
Paul Menagebd89aab2007-10-18 23:40:44 -07003678 set_bit(CGRP_RELEASABLE, &parent->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003679 check_for_release(parent);
3680
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08003681 /*
3682 * Unregister events and notify userspace.
3683 * Notify userspace about cgroup removing only after rmdir of cgroup
3684 * directory to avoid race between userspace and kernelspace
3685 */
3686 spin_lock(&cgrp->event_list_lock);
3687 list_for_each_entry_safe(event, tmp, &cgrp->event_list, list) {
3688 list_del(&event->list);
3689 remove_wait_queue(event->wqh, &event->wait);
3690 eventfd_signal(event->eventfd, 1);
3691 schedule_work(&event->remove);
3692 }
3693 spin_unlock(&cgrp->event_list_lock);
3694
Paul Menageddbcc7e2007-10-18 23:39:30 -07003695 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003696 return 0;
3697}
3698
Li Zefan06a11922008-04-29 01:00:07 -07003699static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003700{
Paul Menageddbcc7e2007-10-18 23:39:30 -07003701 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08003702
3703 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003704
3705 /* Create the top cgroup state for this subsystem */
Li Zefan33a68ac2009-01-07 18:07:42 -08003706 list_add(&ss->sibling, &rootnode.subsys_list);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003707 ss->root = &rootnode;
3708 css = ss->create(ss, dummytop);
3709 /* We don't handle early failures gracefully */
3710 BUG_ON(IS_ERR(css));
3711 init_cgroup_css(css, ss, dummytop);
3712
Li Zefane8d55fd2008-04-29 01:00:13 -07003713 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07003714 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07003715 * newly registered, all tasks and hence the
3716 * init_css_set is in the subsystem's top cgroup. */
3717 init_css_set.subsys[ss->subsys_id] = dummytop->subsys[ss->subsys_id];
Paul Menageddbcc7e2007-10-18 23:39:30 -07003718
3719 need_forkexit_callback |= ss->fork || ss->exit;
3720
Li Zefane8d55fd2008-04-29 01:00:13 -07003721 /* At system boot, before all subsystems have been
3722 * registered, no tasks have been forked, so we don't
3723 * need to invoke fork callbacks here. */
3724 BUG_ON(!list_empty(&init_task.tasks));
3725
Paul Menage999cd8a2009-01-07 18:08:36 -08003726 mutex_init(&ss->hierarchy_mutex);
Li Zefancfebe562009-02-11 13:04:36 -08003727 lockdep_set_class(&ss->hierarchy_mutex, &ss->subsys_key);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003728 ss->active = 1;
Ben Blume6a11052010-03-10 15:22:09 -08003729
3730 /* this function shouldn't be used with modular subsystems, since they
3731 * need to register a subsys_id, among other things */
3732 BUG_ON(ss->module);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003733}
3734
3735/**
Ben Blume6a11052010-03-10 15:22:09 -08003736 * cgroup_load_subsys: load and register a modular subsystem at runtime
3737 * @ss: the subsystem to load
3738 *
3739 * This function should be called in a modular subsystem's initcall. If the
Thomas Weber88393162010-03-16 11:47:56 +01003740 * subsystem is built as a module, it will be assigned a new subsys_id and set
Ben Blume6a11052010-03-10 15:22:09 -08003741 * up for use. If the subsystem is built-in anyway, work is delegated to the
3742 * simpler cgroup_init_subsys.
3743 */
3744int __init_or_module cgroup_load_subsys(struct cgroup_subsys *ss)
3745{
3746 int i;
3747 struct cgroup_subsys_state *css;
3748
3749 /* check name and function validity */
3750 if (ss->name == NULL || strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN ||
3751 ss->create == NULL || ss->destroy == NULL)
3752 return -EINVAL;
3753
3754 /*
3755 * we don't support callbacks in modular subsystems. this check is
3756 * before the ss->module check for consistency; a subsystem that could
3757 * be a module should still have no callbacks even if the user isn't
3758 * compiling it as one.
3759 */
3760 if (ss->fork || ss->exit)
3761 return -EINVAL;
3762
3763 /*
3764 * an optionally modular subsystem is built-in: we want to do nothing,
3765 * since cgroup_init_subsys will have already taken care of it.
3766 */
3767 if (ss->module == NULL) {
3768 /* a few sanity checks */
3769 BUG_ON(ss->subsys_id >= CGROUP_BUILTIN_SUBSYS_COUNT);
3770 BUG_ON(subsys[ss->subsys_id] != ss);
3771 return 0;
3772 }
3773
3774 /*
3775 * need to register a subsys id before anything else - for example,
3776 * init_cgroup_css needs it.
3777 */
3778 mutex_lock(&cgroup_mutex);
3779 /* find the first empty slot in the array */
3780 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
3781 if (subsys[i] == NULL)
3782 break;
3783 }
3784 if (i == CGROUP_SUBSYS_COUNT) {
3785 /* maximum number of subsystems already registered! */
3786 mutex_unlock(&cgroup_mutex);
3787 return -EBUSY;
3788 }
3789 /* assign ourselves the subsys_id */
3790 ss->subsys_id = i;
3791 subsys[i] = ss;
3792
3793 /*
3794 * no ss->create seems to need anything important in the ss struct, so
3795 * this can happen first (i.e. before the rootnode attachment).
3796 */
3797 css = ss->create(ss, dummytop);
3798 if (IS_ERR(css)) {
3799 /* failure case - need to deassign the subsys[] slot. */
3800 subsys[i] = NULL;
3801 mutex_unlock(&cgroup_mutex);
3802 return PTR_ERR(css);
3803 }
3804
3805 list_add(&ss->sibling, &rootnode.subsys_list);
3806 ss->root = &rootnode;
3807
3808 /* our new subsystem will be attached to the dummy hierarchy. */
3809 init_cgroup_css(css, ss, dummytop);
3810 /* init_idr must be after init_cgroup_css because it sets css->id. */
3811 if (ss->use_id) {
3812 int ret = cgroup_init_idr(ss, css);
3813 if (ret) {
3814 dummytop->subsys[ss->subsys_id] = NULL;
3815 ss->destroy(ss, dummytop);
3816 subsys[i] = NULL;
3817 mutex_unlock(&cgroup_mutex);
3818 return ret;
3819 }
3820 }
3821
3822 /*
3823 * Now we need to entangle the css into the existing css_sets. unlike
3824 * in cgroup_init_subsys, there are now multiple css_sets, so each one
3825 * will need a new pointer to it; done by iterating the css_set_table.
3826 * furthermore, modifying the existing css_sets will corrupt the hash
3827 * table state, so each changed css_set will need its hash recomputed.
3828 * this is all done under the css_set_lock.
3829 */
3830 write_lock(&css_set_lock);
3831 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
3832 struct css_set *cg;
3833 struct hlist_node *node, *tmp;
3834 struct hlist_head *bucket = &css_set_table[i], *new_bucket;
3835
3836 hlist_for_each_entry_safe(cg, node, tmp, bucket, hlist) {
3837 /* skip entries that we already rehashed */
3838 if (cg->subsys[ss->subsys_id])
3839 continue;
3840 /* remove existing entry */
3841 hlist_del(&cg->hlist);
3842 /* set new value */
3843 cg->subsys[ss->subsys_id] = css;
3844 /* recompute hash and restore entry */
3845 new_bucket = css_set_hash(cg->subsys);
3846 hlist_add_head(&cg->hlist, new_bucket);
3847 }
3848 }
3849 write_unlock(&css_set_lock);
3850
3851 mutex_init(&ss->hierarchy_mutex);
3852 lockdep_set_class(&ss->hierarchy_mutex, &ss->subsys_key);
3853 ss->active = 1;
3854
Ben Blume6a11052010-03-10 15:22:09 -08003855 /* success! */
3856 mutex_unlock(&cgroup_mutex);
3857 return 0;
3858}
3859EXPORT_SYMBOL_GPL(cgroup_load_subsys);
3860
3861/**
Ben Blumcf5d5942010-03-10 15:22:09 -08003862 * cgroup_unload_subsys: unload a modular subsystem
3863 * @ss: the subsystem to unload
3864 *
3865 * This function should be called in a modular subsystem's exitcall. When this
3866 * function is invoked, the refcount on the subsystem's module will be 0, so
3867 * the subsystem will not be attached to any hierarchy.
3868 */
3869void cgroup_unload_subsys(struct cgroup_subsys *ss)
3870{
3871 struct cg_cgroup_link *link;
3872 struct hlist_head *hhead;
3873
3874 BUG_ON(ss->module == NULL);
3875
3876 /*
3877 * we shouldn't be called if the subsystem is in use, and the use of
3878 * try_module_get in parse_cgroupfs_options should ensure that it
3879 * doesn't start being used while we're killing it off.
3880 */
3881 BUG_ON(ss->root != &rootnode);
3882
3883 mutex_lock(&cgroup_mutex);
3884 /* deassign the subsys_id */
3885 BUG_ON(ss->subsys_id < CGROUP_BUILTIN_SUBSYS_COUNT);
3886 subsys[ss->subsys_id] = NULL;
3887
3888 /* remove subsystem from rootnode's list of subsystems */
3889 list_del(&ss->sibling);
3890
3891 /*
3892 * disentangle the css from all css_sets attached to the dummytop. as
3893 * in loading, we need to pay our respects to the hashtable gods.
3894 */
3895 write_lock(&css_set_lock);
3896 list_for_each_entry(link, &dummytop->css_sets, cgrp_link_list) {
3897 struct css_set *cg = link->cg;
3898
3899 hlist_del(&cg->hlist);
3900 BUG_ON(!cg->subsys[ss->subsys_id]);
3901 cg->subsys[ss->subsys_id] = NULL;
3902 hhead = css_set_hash(cg->subsys);
3903 hlist_add_head(&cg->hlist, hhead);
3904 }
3905 write_unlock(&css_set_lock);
3906
3907 /*
3908 * remove subsystem's css from the dummytop and free it - need to free
3909 * before marking as null because ss->destroy needs the cgrp->subsys
3910 * pointer to find their state. note that this also takes care of
3911 * freeing the css_id.
3912 */
3913 ss->destroy(ss, dummytop);
3914 dummytop->subsys[ss->subsys_id] = NULL;
3915
3916 mutex_unlock(&cgroup_mutex);
3917}
3918EXPORT_SYMBOL_GPL(cgroup_unload_subsys);
3919
3920/**
Li Zefana043e3b2008-02-23 15:24:09 -08003921 * cgroup_init_early - cgroup initialization at system boot
3922 *
3923 * Initialize cgroups at system boot, and initialize any
3924 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07003925 */
3926int __init cgroup_init_early(void)
3927{
3928 int i;
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07003929 atomic_set(&init_css_set.refcount, 1);
Paul Menage817929e2007-10-18 23:39:36 -07003930 INIT_LIST_HEAD(&init_css_set.cg_links);
3931 INIT_LIST_HEAD(&init_css_set.tasks);
Li Zefan472b1052008-04-29 01:00:11 -07003932 INIT_HLIST_NODE(&init_css_set.hlist);
Paul Menage817929e2007-10-18 23:39:36 -07003933 css_set_count = 1;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003934 init_cgroup_root(&rootnode);
Paul Menage817929e2007-10-18 23:39:36 -07003935 root_count = 1;
3936 init_task.cgroups = &init_css_set;
3937
3938 init_css_set_link.cg = &init_css_set;
Paul Menage7717f7b2009-09-23 15:56:22 -07003939 init_css_set_link.cgrp = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -07003940 list_add(&init_css_set_link.cgrp_link_list,
Paul Menage817929e2007-10-18 23:39:36 -07003941 &rootnode.top_cgroup.css_sets);
3942 list_add(&init_css_set_link.cg_link_list,
3943 &init_css_set.cg_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003944
Li Zefan472b1052008-04-29 01:00:11 -07003945 for (i = 0; i < CSS_SET_TABLE_SIZE; i++)
3946 INIT_HLIST_HEAD(&css_set_table[i]);
3947
Ben Blumaae8aab2010-03-10 15:22:07 -08003948 /* at bootup time, we don't worry about modular subsystems */
3949 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07003950 struct cgroup_subsys *ss = subsys[i];
3951
3952 BUG_ON(!ss->name);
3953 BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN);
3954 BUG_ON(!ss->create);
3955 BUG_ON(!ss->destroy);
3956 if (ss->subsys_id != i) {
Diego Callejacfe36bd2007-11-14 16:58:54 -08003957 printk(KERN_ERR "cgroup: Subsys %s id == %d\n",
Paul Menageddbcc7e2007-10-18 23:39:30 -07003958 ss->name, ss->subsys_id);
3959 BUG();
3960 }
3961
3962 if (ss->early_init)
3963 cgroup_init_subsys(ss);
3964 }
3965 return 0;
3966}
3967
3968/**
Li Zefana043e3b2008-02-23 15:24:09 -08003969 * cgroup_init - cgroup initialization
3970 *
3971 * Register cgroup filesystem and /proc file, and initialize
3972 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07003973 */
3974int __init cgroup_init(void)
3975{
3976 int err;
3977 int i;
Li Zefan472b1052008-04-29 01:00:11 -07003978 struct hlist_head *hhead;
Paul Menagea4243162007-10-18 23:39:35 -07003979
3980 err = bdi_init(&cgroup_backing_dev_info);
3981 if (err)
3982 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003983
Ben Blumaae8aab2010-03-10 15:22:07 -08003984 /* at bootup time, we don't worry about modular subsystems */
3985 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07003986 struct cgroup_subsys *ss = subsys[i];
3987 if (!ss->early_init)
3988 cgroup_init_subsys(ss);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003989 if (ss->use_id)
Ben Blume6a11052010-03-10 15:22:09 -08003990 cgroup_init_idr(ss, init_css_set.subsys[ss->subsys_id]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003991 }
3992
Li Zefan472b1052008-04-29 01:00:11 -07003993 /* Add init_css_set to the hash table */
3994 hhead = css_set_hash(init_css_set.subsys);
3995 hlist_add_head(&init_css_set.hlist, hhead);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07003996 BUG_ON(!init_root_id(&rootnode));
Greg KH676db4a2010-08-05 13:53:35 -07003997
3998 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
3999 if (!cgroup_kobj) {
4000 err = -ENOMEM;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004001 goto out;
Greg KH676db4a2010-08-05 13:53:35 -07004002 }
4003
4004 err = register_filesystem(&cgroup_fs_type);
4005 if (err < 0) {
4006 kobject_put(cgroup_kobj);
4007 goto out;
4008 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004009
Li Zefan46ae2202008-04-29 01:00:08 -07004010 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Paul Menagea4243162007-10-18 23:39:35 -07004011
Paul Menageddbcc7e2007-10-18 23:39:30 -07004012out:
Paul Menagea4243162007-10-18 23:39:35 -07004013 if (err)
4014 bdi_destroy(&cgroup_backing_dev_info);
4015
Paul Menageddbcc7e2007-10-18 23:39:30 -07004016 return err;
4017}
Paul Menageb4f48b62007-10-18 23:39:33 -07004018
Paul Menagea4243162007-10-18 23:39:35 -07004019/*
4020 * proc_cgroup_show()
4021 * - Print task's cgroup paths into seq_file, one line for each hierarchy
4022 * - Used for /proc/<pid>/cgroup.
4023 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
4024 * doesn't really matter if tsk->cgroup changes after we read it,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004025 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
Paul Menagea4243162007-10-18 23:39:35 -07004026 * anyway. No need to check that tsk->cgroup != NULL, thanks to
4027 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
4028 * cgroup to top_cgroup.
4029 */
4030
4031/* TODO: Use a proper seq_file iterator */
4032static int proc_cgroup_show(struct seq_file *m, void *v)
4033{
4034 struct pid *pid;
4035 struct task_struct *tsk;
4036 char *buf;
4037 int retval;
4038 struct cgroupfs_root *root;
4039
4040 retval = -ENOMEM;
4041 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
4042 if (!buf)
4043 goto out;
4044
4045 retval = -ESRCH;
4046 pid = m->private;
4047 tsk = get_pid_task(pid, PIDTYPE_PID);
4048 if (!tsk)
4049 goto out_free;
4050
4051 retval = 0;
4052
4053 mutex_lock(&cgroup_mutex);
4054
Li Zefane5f6a862009-01-07 18:07:41 -08004055 for_each_active_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07004056 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07004057 struct cgroup *cgrp;
Paul Menagea4243162007-10-18 23:39:35 -07004058 int count = 0;
4059
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004060 seq_printf(m, "%d:", root->hierarchy_id);
Paul Menagea4243162007-10-18 23:39:35 -07004061 for_each_subsys(root, ss)
4062 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07004063 if (strlen(root->name))
4064 seq_printf(m, "%sname=%s", count ? "," : "",
4065 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07004066 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07004067 cgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07004068 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
Paul Menagea4243162007-10-18 23:39:35 -07004069 if (retval < 0)
4070 goto out_unlock;
4071 seq_puts(m, buf);
4072 seq_putc(m, '\n');
4073 }
4074
4075out_unlock:
4076 mutex_unlock(&cgroup_mutex);
4077 put_task_struct(tsk);
4078out_free:
4079 kfree(buf);
4080out:
4081 return retval;
4082}
4083
4084static int cgroup_open(struct inode *inode, struct file *file)
4085{
4086 struct pid *pid = PROC_I(inode)->pid;
4087 return single_open(file, proc_cgroup_show, pid);
4088}
4089
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004090const struct file_operations proc_cgroup_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004091 .open = cgroup_open,
4092 .read = seq_read,
4093 .llseek = seq_lseek,
4094 .release = single_release,
4095};
4096
4097/* Display information about each subsystem and each hierarchy */
4098static int proc_cgroupstats_show(struct seq_file *m, void *v)
4099{
4100 int i;
Paul Menagea4243162007-10-18 23:39:35 -07004101
Paul Menage8bab8dd2008-04-04 14:29:57 -07004102 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08004103 /*
4104 * ideally we don't want subsystems moving around while we do this.
4105 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
4106 * subsys/hierarchy state.
4107 */
Paul Menagea4243162007-10-18 23:39:35 -07004108 mutex_lock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07004109 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
4110 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08004111 if (ss == NULL)
4112 continue;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004113 seq_printf(m, "%s\t%d\t%d\t%d\n",
4114 ss->name, ss->root->hierarchy_id,
Paul Menage8bab8dd2008-04-04 14:29:57 -07004115 ss->root->number_of_cgroups, !ss->disabled);
Paul Menagea4243162007-10-18 23:39:35 -07004116 }
4117 mutex_unlock(&cgroup_mutex);
4118 return 0;
4119}
4120
4121static int cgroupstats_open(struct inode *inode, struct file *file)
4122{
Al Viro9dce07f12008-03-29 03:07:28 +00004123 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07004124}
4125
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004126static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004127 .open = cgroupstats_open,
4128 .read = seq_read,
4129 .llseek = seq_lseek,
4130 .release = single_release,
4131};
4132
Paul Menageb4f48b62007-10-18 23:39:33 -07004133/**
4134 * cgroup_fork - attach newly forked task to its parents cgroup.
Li Zefana043e3b2008-02-23 15:24:09 -08004135 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07004136 *
4137 * Description: A task inherits its parent's cgroup at fork().
4138 *
4139 * A pointer to the shared css_set was automatically copied in
4140 * fork.c by dup_task_struct(). However, we ignore that copy, since
4141 * it was not made under the protection of RCU or cgroup_mutex, so
Cliff Wickman956db3c2008-02-07 00:14:43 -08004142 * might no longer be a valid cgroup pointer. cgroup_attach_task() might
Paul Menage817929e2007-10-18 23:39:36 -07004143 * have already changed current->cgroups, allowing the previously
4144 * referenced cgroup group to be removed and freed.
Paul Menageb4f48b62007-10-18 23:39:33 -07004145 *
4146 * At the point that cgroup_fork() is called, 'current' is the parent
4147 * task, and the passed argument 'child' points to the child task.
4148 */
4149void cgroup_fork(struct task_struct *child)
4150{
Paul Menage817929e2007-10-18 23:39:36 -07004151 task_lock(current);
4152 child->cgroups = current->cgroups;
4153 get_css_set(child->cgroups);
4154 task_unlock(current);
4155 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07004156}
4157
4158/**
Li Zefana043e3b2008-02-23 15:24:09 -08004159 * cgroup_fork_callbacks - run fork callbacks
4160 * @child: the new task
4161 *
4162 * Called on a new task very soon before adding it to the
4163 * tasklist. No need to take any locks since no-one can
4164 * be operating on this task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004165 */
4166void cgroup_fork_callbacks(struct task_struct *child)
4167{
4168 if (need_forkexit_callback) {
4169 int i;
Ben Blumaae8aab2010-03-10 15:22:07 -08004170 /*
4171 * forkexit callbacks are only supported for builtin
4172 * subsystems, and the builtin section of the subsys array is
4173 * immutable, so we don't need to lock the subsys array here.
4174 */
4175 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageb4f48b62007-10-18 23:39:33 -07004176 struct cgroup_subsys *ss = subsys[i];
4177 if (ss->fork)
4178 ss->fork(ss, child);
4179 }
4180 }
4181}
4182
4183/**
Li Zefana043e3b2008-02-23 15:24:09 -08004184 * cgroup_post_fork - called on a new task after adding it to the task list
4185 * @child: the task in question
4186 *
4187 * Adds the task to the list running through its css_set if necessary.
4188 * Has to be after the task is visible on the task list in case we race
4189 * with the first call to cgroup_iter_start() - to guarantee that the
4190 * new task ends up on its list.
4191 */
Paul Menage817929e2007-10-18 23:39:36 -07004192void cgroup_post_fork(struct task_struct *child)
4193{
4194 if (use_task_css_set_links) {
4195 write_lock(&css_set_lock);
Lai Jiangshanb12b5332009-01-07 18:07:36 -08004196 task_lock(child);
Paul Menage817929e2007-10-18 23:39:36 -07004197 if (list_empty(&child->cg_list))
4198 list_add(&child->cg_list, &child->cgroups->tasks);
Lai Jiangshanb12b5332009-01-07 18:07:36 -08004199 task_unlock(child);
Paul Menage817929e2007-10-18 23:39:36 -07004200 write_unlock(&css_set_lock);
4201 }
4202}
4203/**
Paul Menageb4f48b62007-10-18 23:39:33 -07004204 * cgroup_exit - detach cgroup from exiting task
4205 * @tsk: pointer to task_struct of exiting process
Li Zefana043e3b2008-02-23 15:24:09 -08004206 * @run_callback: run exit callbacks?
Paul Menageb4f48b62007-10-18 23:39:33 -07004207 *
4208 * Description: Detach cgroup from @tsk and release it.
4209 *
4210 * Note that cgroups marked notify_on_release force every task in
4211 * them to take the global cgroup_mutex mutex when exiting.
4212 * This could impact scaling on very large systems. Be reluctant to
4213 * use notify_on_release cgroups where very high task exit scaling
4214 * is required on large systems.
4215 *
4216 * the_top_cgroup_hack:
4217 *
4218 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
4219 *
4220 * We call cgroup_exit() while the task is still competent to
4221 * handle notify_on_release(), then leave the task attached to the
4222 * root cgroup in each hierarchy for the remainder of its exit.
4223 *
4224 * To do this properly, we would increment the reference count on
4225 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
4226 * code we would add a second cgroup function call, to drop that
4227 * reference. This would just create an unnecessary hot spot on
4228 * the top_cgroup reference count, to no avail.
4229 *
4230 * Normally, holding a reference to a cgroup without bumping its
4231 * count is unsafe. The cgroup could go away, or someone could
4232 * attach us to a different cgroup, decrementing the count on
4233 * the first cgroup that we never incremented. But in this case,
4234 * top_cgroup isn't going away, and either task has PF_EXITING set,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004235 * which wards off any cgroup_attach_task() attempts, or task is a failed
4236 * fork, never visible to cgroup_attach_task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004237 */
4238void cgroup_exit(struct task_struct *tsk, int run_callbacks)
4239{
4240 int i;
Paul Menage817929e2007-10-18 23:39:36 -07004241 struct css_set *cg;
Paul Menageb4f48b62007-10-18 23:39:33 -07004242
4243 if (run_callbacks && need_forkexit_callback) {
Ben Blumaae8aab2010-03-10 15:22:07 -08004244 /*
4245 * modular subsystems can't use callbacks, so no need to lock
4246 * the subsys array
4247 */
4248 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageb4f48b62007-10-18 23:39:33 -07004249 struct cgroup_subsys *ss = subsys[i];
4250 if (ss->exit)
4251 ss->exit(ss, tsk);
4252 }
4253 }
Paul Menage817929e2007-10-18 23:39:36 -07004254
4255 /*
4256 * Unlink from the css_set task list if necessary.
4257 * Optimistically check cg_list before taking
4258 * css_set_lock
4259 */
4260 if (!list_empty(&tsk->cg_list)) {
4261 write_lock(&css_set_lock);
4262 if (!list_empty(&tsk->cg_list))
4263 list_del(&tsk->cg_list);
4264 write_unlock(&css_set_lock);
4265 }
4266
Paul Menageb4f48b62007-10-18 23:39:33 -07004267 /* Reassign the task to the init_css_set. */
4268 task_lock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07004269 cg = tsk->cgroups;
4270 tsk->cgroups = &init_css_set;
Paul Menageb4f48b62007-10-18 23:39:33 -07004271 task_unlock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07004272 if (cg)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004273 put_css_set_taskexit(cg);
Paul Menageb4f48b62007-10-18 23:39:33 -07004274}
Paul Menage697f4162007-10-18 23:39:34 -07004275
4276/**
Li Zefana043e3b2008-02-23 15:24:09 -08004277 * cgroup_clone - clone the cgroup the given subsystem is attached to
4278 * @tsk: the task to be moved
4279 * @subsys: the given subsystem
Serge E. Hallyne885dcd2008-07-25 01:47:06 -07004280 * @nodename: the name for the new cgroup
Li Zefana043e3b2008-02-23 15:24:09 -08004281 *
4282 * Duplicate the current cgroup in the hierarchy that the given
4283 * subsystem is attached to, and move this task into the new
4284 * child.
Paul Menage697f4162007-10-18 23:39:34 -07004285 */
Serge E. Hallyne885dcd2008-07-25 01:47:06 -07004286int cgroup_clone(struct task_struct *tsk, struct cgroup_subsys *subsys,
4287 char *nodename)
Paul Menage697f4162007-10-18 23:39:34 -07004288{
4289 struct dentry *dentry;
4290 int ret = 0;
Paul Menage697f4162007-10-18 23:39:34 -07004291 struct cgroup *parent, *child;
4292 struct inode *inode;
4293 struct css_set *cg;
4294 struct cgroupfs_root *root;
4295 struct cgroup_subsys *ss;
4296
4297 /* We shouldn't be called by an unregistered subsystem */
4298 BUG_ON(!subsys->active);
4299
4300 /* First figure out what hierarchy and cgroup we're dealing
4301 * with, and pin them so we can drop cgroup_mutex */
4302 mutex_lock(&cgroup_mutex);
4303 again:
4304 root = subsys->root;
4305 if (root == &rootnode) {
Paul Menage697f4162007-10-18 23:39:34 -07004306 mutex_unlock(&cgroup_mutex);
4307 return 0;
4308 }
Paul Menage697f4162007-10-18 23:39:34 -07004309
Paul Menage697f4162007-10-18 23:39:34 -07004310 /* Pin the hierarchy */
Li Zefan1404f062009-01-29 14:25:21 -08004311 if (!atomic_inc_not_zero(&root->sb->s_active)) {
Li Zefan7b574b72009-01-04 12:00:45 -08004312 /* We race with the final deactivate_super() */
4313 mutex_unlock(&cgroup_mutex);
4314 return 0;
4315 }
Paul Menage697f4162007-10-18 23:39:34 -07004316
Paul Menage817929e2007-10-18 23:39:36 -07004317 /* Keep the cgroup alive */
Li Zefan1404f062009-01-29 14:25:21 -08004318 task_lock(tsk);
4319 parent = task_cgroup(tsk, subsys->subsys_id);
4320 cg = tsk->cgroups;
Paul Menage817929e2007-10-18 23:39:36 -07004321 get_css_set(cg);
Lai Jiangshan104cbd52009-01-07 18:07:38 -08004322 task_unlock(tsk);
Li Zefan1404f062009-01-29 14:25:21 -08004323
Paul Menage697f4162007-10-18 23:39:34 -07004324 mutex_unlock(&cgroup_mutex);
4325
4326 /* Now do the VFS work to create a cgroup */
4327 inode = parent->dentry->d_inode;
4328
4329 /* Hold the parent directory mutex across this operation to
4330 * stop anyone else deleting the new cgroup */
4331 mutex_lock(&inode->i_mutex);
4332 dentry = lookup_one_len(nodename, parent->dentry, strlen(nodename));
4333 if (IS_ERR(dentry)) {
4334 printk(KERN_INFO
Diego Callejacfe36bd2007-11-14 16:58:54 -08004335 "cgroup: Couldn't allocate dentry for %s: %ld\n", nodename,
Paul Menage697f4162007-10-18 23:39:34 -07004336 PTR_ERR(dentry));
4337 ret = PTR_ERR(dentry);
4338 goto out_release;
4339 }
4340
4341 /* Create the cgroup directory, which also creates the cgroup */
Li Zefan75139b82009-01-07 18:07:33 -08004342 ret = vfs_mkdir(inode, dentry, 0755);
Paul Menagebd89aab2007-10-18 23:40:44 -07004343 child = __d_cgrp(dentry);
Paul Menage697f4162007-10-18 23:39:34 -07004344 dput(dentry);
4345 if (ret) {
4346 printk(KERN_INFO
4347 "Failed to create cgroup %s: %d\n", nodename,
4348 ret);
4349 goto out_release;
4350 }
4351
Paul Menage697f4162007-10-18 23:39:34 -07004352 /* The cgroup now exists. Retake cgroup_mutex and check
4353 * that we're still in the same state that we thought we
4354 * were. */
4355 mutex_lock(&cgroup_mutex);
4356 if ((root != subsys->root) ||
4357 (parent != task_cgroup(tsk, subsys->subsys_id))) {
4358 /* Aargh, we raced ... */
4359 mutex_unlock(&inode->i_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07004360 put_css_set(cg);
Paul Menage697f4162007-10-18 23:39:34 -07004361
Li Zefan1404f062009-01-29 14:25:21 -08004362 deactivate_super(root->sb);
Paul Menage697f4162007-10-18 23:39:34 -07004363 /* The cgroup is still accessible in the VFS, but
4364 * we're not going to try to rmdir() it at this
4365 * point. */
4366 printk(KERN_INFO
4367 "Race in cgroup_clone() - leaking cgroup %s\n",
4368 nodename);
4369 goto again;
4370 }
4371
4372 /* do any required auto-setup */
4373 for_each_subsys(root, ss) {
4374 if (ss->post_clone)
4375 ss->post_clone(ss, child);
4376 }
4377
4378 /* All seems fine. Finish by moving the task into the new cgroup */
Cliff Wickman956db3c2008-02-07 00:14:43 -08004379 ret = cgroup_attach_task(child, tsk);
Paul Menage697f4162007-10-18 23:39:34 -07004380 mutex_unlock(&cgroup_mutex);
4381
4382 out_release:
4383 mutex_unlock(&inode->i_mutex);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004384
4385 mutex_lock(&cgroup_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07004386 put_css_set(cg);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004387 mutex_unlock(&cgroup_mutex);
Li Zefan1404f062009-01-29 14:25:21 -08004388 deactivate_super(root->sb);
Paul Menage697f4162007-10-18 23:39:34 -07004389 return ret;
4390}
4391
Li Zefana043e3b2008-02-23 15:24:09 -08004392/**
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004393 * cgroup_is_descendant - see if @cgrp is a descendant of @task's cgrp
Li Zefana043e3b2008-02-23 15:24:09 -08004394 * @cgrp: the cgroup in question
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004395 * @task: the task in question
Li Zefana043e3b2008-02-23 15:24:09 -08004396 *
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004397 * See if @cgrp is a descendant of @task's cgroup in the appropriate
4398 * hierarchy.
Paul Menage697f4162007-10-18 23:39:34 -07004399 *
4400 * If we are sending in dummytop, then presumably we are creating
4401 * the top cgroup in the subsystem.
4402 *
4403 * Called only by the ns (nsproxy) cgroup.
4404 */
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004405int cgroup_is_descendant(const struct cgroup *cgrp, struct task_struct *task)
Paul Menage697f4162007-10-18 23:39:34 -07004406{
4407 int ret;
4408 struct cgroup *target;
Paul Menage697f4162007-10-18 23:39:34 -07004409
Paul Menagebd89aab2007-10-18 23:40:44 -07004410 if (cgrp == dummytop)
Paul Menage697f4162007-10-18 23:39:34 -07004411 return 1;
4412
Paul Menage7717f7b2009-09-23 15:56:22 -07004413 target = task_cgroup_from_root(task, cgrp->root);
Paul Menagebd89aab2007-10-18 23:40:44 -07004414 while (cgrp != target && cgrp!= cgrp->top_cgroup)
4415 cgrp = cgrp->parent;
4416 ret = (cgrp == target);
Paul Menage697f4162007-10-18 23:39:34 -07004417 return ret;
4418}
Paul Menage81a6a5c2007-10-18 23:39:38 -07004419
Paul Menagebd89aab2007-10-18 23:40:44 -07004420static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004421{
4422 /* All of these checks rely on RCU to keep the cgroup
4423 * structure alive */
Paul Menagebd89aab2007-10-18 23:40:44 -07004424 if (cgroup_is_releasable(cgrp) && !atomic_read(&cgrp->count)
4425 && list_empty(&cgrp->children) && !cgroup_has_css_refs(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004426 /* Control Group is currently removeable. If it's not
4427 * already queued for a userspace notification, queue
4428 * it now */
4429 int need_schedule_work = 0;
4430 spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07004431 if (!cgroup_is_removed(cgrp) &&
4432 list_empty(&cgrp->release_list)) {
4433 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004434 need_schedule_work = 1;
4435 }
4436 spin_unlock(&release_list_lock);
4437 if (need_schedule_work)
4438 schedule_work(&release_agent_work);
4439 }
4440}
4441
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -08004442/* Caller must verify that the css is not for root cgroup */
4443void __css_put(struct cgroup_subsys_state *css, int count)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004444{
Paul Menagebd89aab2007-10-18 23:40:44 -07004445 struct cgroup *cgrp = css->cgroup;
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004446 int val;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004447 rcu_read_lock();
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -08004448 val = atomic_sub_return(count, &css->refcnt);
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004449 if (val == 1) {
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004450 if (notify_on_release(cgrp)) {
4451 set_bit(CGRP_RELEASABLE, &cgrp->flags);
4452 check_for_release(cgrp);
4453 }
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004454 cgroup_wakeup_rmdir_waiter(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004455 }
4456 rcu_read_unlock();
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004457 WARN_ON_ONCE(val < 1);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004458}
Ben Blum67523c42010-03-10 15:22:11 -08004459EXPORT_SYMBOL_GPL(__css_put);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004460
4461/*
4462 * Notify userspace when a cgroup is released, by running the
4463 * configured release agent with the name of the cgroup (path
4464 * relative to the root of cgroup file system) as the argument.
4465 *
4466 * Most likely, this user command will try to rmdir this cgroup.
4467 *
4468 * This races with the possibility that some other task will be
4469 * attached to this cgroup before it is removed, or that some other
4470 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
4471 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
4472 * unused, and this cgroup will be reprieved from its death sentence,
4473 * to continue to serve a useful existence. Next time it's released,
4474 * we will get notified again, if it still has 'notify_on_release' set.
4475 *
4476 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
4477 * means only wait until the task is successfully execve()'d. The
4478 * separate release agent task is forked by call_usermodehelper(),
4479 * then control in this thread returns here, without waiting for the
4480 * release agent task. We don't bother to wait because the caller of
4481 * this routine has no use for the exit status of the release agent
4482 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07004483 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004484static void cgroup_release_agent(struct work_struct *work)
4485{
4486 BUG_ON(work != &release_agent_work);
4487 mutex_lock(&cgroup_mutex);
4488 spin_lock(&release_list_lock);
4489 while (!list_empty(&release_list)) {
4490 char *argv[3], *envp[3];
4491 int i;
Paul Menagee788e062008-07-25 01:46:59 -07004492 char *pathbuf = NULL, *agentbuf = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07004493 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07004494 struct cgroup,
4495 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07004496 list_del_init(&cgrp->release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004497 spin_unlock(&release_list_lock);
4498 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paul Menagee788e062008-07-25 01:46:59 -07004499 if (!pathbuf)
4500 goto continue_free;
4501 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0)
4502 goto continue_free;
4503 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
4504 if (!agentbuf)
4505 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004506
4507 i = 0;
Paul Menagee788e062008-07-25 01:46:59 -07004508 argv[i++] = agentbuf;
4509 argv[i++] = pathbuf;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004510 argv[i] = NULL;
4511
4512 i = 0;
4513 /* minimal command environment */
4514 envp[i++] = "HOME=/";
4515 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
4516 envp[i] = NULL;
4517
4518 /* Drop the lock while we invoke the usermode helper,
4519 * since the exec could involve hitting disk and hence
4520 * be a slow process */
4521 mutex_unlock(&cgroup_mutex);
4522 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004523 mutex_lock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07004524 continue_free:
4525 kfree(pathbuf);
4526 kfree(agentbuf);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004527 spin_lock(&release_list_lock);
4528 }
4529 spin_unlock(&release_list_lock);
4530 mutex_unlock(&cgroup_mutex);
4531}
Paul Menage8bab8dd2008-04-04 14:29:57 -07004532
4533static int __init cgroup_disable(char *str)
4534{
4535 int i;
4536 char *token;
4537
4538 while ((token = strsep(&str, ",")) != NULL) {
4539 if (!*token)
4540 continue;
Ben Blumaae8aab2010-03-10 15:22:07 -08004541 /*
4542 * cgroup_disable, being at boot time, can't know about module
4543 * subsystems, so we don't worry about them.
4544 */
4545 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07004546 struct cgroup_subsys *ss = subsys[i];
4547
4548 if (!strcmp(token, ss->name)) {
4549 ss->disabled = 1;
4550 printk(KERN_INFO "Disabling %s control group"
4551 " subsystem\n", ss->name);
4552 break;
4553 }
4554 }
4555 }
4556 return 1;
4557}
4558__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004559
4560/*
4561 * Functons for CSS ID.
4562 */
4563
4564/*
4565 *To get ID other than 0, this should be called when !cgroup_is_removed().
4566 */
4567unsigned short css_id(struct cgroup_subsys_state *css)
4568{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07004569 struct css_id *cssid;
4570
4571 /*
4572 * This css_id() can return correct value when somone has refcnt
4573 * on this or this is under rcu_read_lock(). Once css->id is allocated,
4574 * it's unchanged until freed.
4575 */
4576 cssid = rcu_dereference_check(css->id,
4577 rcu_read_lock_held() || atomic_read(&css->refcnt));
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004578
4579 if (cssid)
4580 return cssid->id;
4581 return 0;
4582}
Ben Blum67523c42010-03-10 15:22:11 -08004583EXPORT_SYMBOL_GPL(css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004584
4585unsigned short css_depth(struct cgroup_subsys_state *css)
4586{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07004587 struct css_id *cssid;
4588
4589 cssid = rcu_dereference_check(css->id,
4590 rcu_read_lock_held() || atomic_read(&css->refcnt));
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004591
4592 if (cssid)
4593 return cssid->depth;
4594 return 0;
4595}
Ben Blum67523c42010-03-10 15:22:11 -08004596EXPORT_SYMBOL_GPL(css_depth);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004597
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004598/**
4599 * css_is_ancestor - test "root" css is an ancestor of "child"
4600 * @child: the css to be tested.
4601 * @root: the css supporsed to be an ancestor of the child.
4602 *
4603 * Returns true if "root" is an ancestor of "child" in its hierarchy. Because
4604 * this function reads css->id, this use rcu_dereference() and rcu_read_lock().
4605 * But, considering usual usage, the csses should be valid objects after test.
4606 * Assuming that the caller will do some action to the child if this returns
4607 * returns true, the caller must take "child";s reference count.
4608 * If "child" is valid object and this returns true, "root" is valid, too.
4609 */
4610
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004611bool css_is_ancestor(struct cgroup_subsys_state *child,
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07004612 const struct cgroup_subsys_state *root)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004613{
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004614 struct css_id *child_id;
4615 struct css_id *root_id;
4616 bool ret = true;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004617
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004618 rcu_read_lock();
4619 child_id = rcu_dereference(child->id);
4620 root_id = rcu_dereference(root->id);
4621 if (!child_id
4622 || !root_id
4623 || (child_id->depth < root_id->depth)
4624 || (child_id->stack[root_id->depth] != root_id->id))
4625 ret = false;
4626 rcu_read_unlock();
4627 return ret;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004628}
4629
4630static void __free_css_id_cb(struct rcu_head *head)
4631{
4632 struct css_id *id;
4633
4634 id = container_of(head, struct css_id, rcu_head);
4635 kfree(id);
4636}
4637
4638void free_css_id(struct cgroup_subsys *ss, struct cgroup_subsys_state *css)
4639{
4640 struct css_id *id = css->id;
4641 /* When this is called before css_id initialization, id can be NULL */
4642 if (!id)
4643 return;
4644
4645 BUG_ON(!ss->use_id);
4646
4647 rcu_assign_pointer(id->css, NULL);
4648 rcu_assign_pointer(css->id, NULL);
4649 spin_lock(&ss->id_lock);
4650 idr_remove(&ss->idr, id->id);
4651 spin_unlock(&ss->id_lock);
4652 call_rcu(&id->rcu_head, __free_css_id_cb);
4653}
Ben Blum67523c42010-03-10 15:22:11 -08004654EXPORT_SYMBOL_GPL(free_css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004655
4656/*
4657 * This is called by init or create(). Then, calls to this function are
4658 * always serialized (By cgroup_mutex() at create()).
4659 */
4660
4661static struct css_id *get_new_cssid(struct cgroup_subsys *ss, int depth)
4662{
4663 struct css_id *newid;
4664 int myid, error, size;
4665
4666 BUG_ON(!ss->use_id);
4667
4668 size = sizeof(*newid) + sizeof(unsigned short) * (depth + 1);
4669 newid = kzalloc(size, GFP_KERNEL);
4670 if (!newid)
4671 return ERR_PTR(-ENOMEM);
4672 /* get id */
4673 if (unlikely(!idr_pre_get(&ss->idr, GFP_KERNEL))) {
4674 error = -ENOMEM;
4675 goto err_out;
4676 }
4677 spin_lock(&ss->id_lock);
4678 /* Don't use 0. allocates an ID of 1-65535 */
4679 error = idr_get_new_above(&ss->idr, newid, 1, &myid);
4680 spin_unlock(&ss->id_lock);
4681
4682 /* Returns error when there are no free spaces for new ID.*/
4683 if (error) {
4684 error = -ENOSPC;
4685 goto err_out;
4686 }
4687 if (myid > CSS_ID_MAX)
4688 goto remove_idr;
4689
4690 newid->id = myid;
4691 newid->depth = depth;
4692 return newid;
4693remove_idr:
4694 error = -ENOSPC;
4695 spin_lock(&ss->id_lock);
4696 idr_remove(&ss->idr, myid);
4697 spin_unlock(&ss->id_lock);
4698err_out:
4699 kfree(newid);
4700 return ERR_PTR(error);
4701
4702}
4703
Ben Blume6a11052010-03-10 15:22:09 -08004704static int __init_or_module cgroup_init_idr(struct cgroup_subsys *ss,
4705 struct cgroup_subsys_state *rootcss)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004706{
4707 struct css_id *newid;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004708
4709 spin_lock_init(&ss->id_lock);
4710 idr_init(&ss->idr);
4711
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004712 newid = get_new_cssid(ss, 0);
4713 if (IS_ERR(newid))
4714 return PTR_ERR(newid);
4715
4716 newid->stack[0] = newid->id;
4717 newid->css = rootcss;
4718 rootcss->id = newid;
4719 return 0;
4720}
4721
4722static int alloc_css_id(struct cgroup_subsys *ss, struct cgroup *parent,
4723 struct cgroup *child)
4724{
4725 int subsys_id, i, depth = 0;
4726 struct cgroup_subsys_state *parent_css, *child_css;
Li Zefanfae9c792010-04-22 17:30:00 +08004727 struct css_id *child_id, *parent_id;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004728
4729 subsys_id = ss->subsys_id;
4730 parent_css = parent->subsys[subsys_id];
4731 child_css = child->subsys[subsys_id];
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004732 parent_id = parent_css->id;
Greg Thelen94b3dd02010-06-04 14:15:03 -07004733 depth = parent_id->depth + 1;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004734
4735 child_id = get_new_cssid(ss, depth);
4736 if (IS_ERR(child_id))
4737 return PTR_ERR(child_id);
4738
4739 for (i = 0; i < depth; i++)
4740 child_id->stack[i] = parent_id->stack[i];
4741 child_id->stack[depth] = child_id->id;
4742 /*
4743 * child_id->css pointer will be set after this cgroup is available
4744 * see cgroup_populate_dir()
4745 */
4746 rcu_assign_pointer(child_css->id, child_id);
4747
4748 return 0;
4749}
4750
4751/**
4752 * css_lookup - lookup css by id
4753 * @ss: cgroup subsys to be looked into.
4754 * @id: the id
4755 *
4756 * Returns pointer to cgroup_subsys_state if there is valid one with id.
4757 * NULL if not. Should be called under rcu_read_lock()
4758 */
4759struct cgroup_subsys_state *css_lookup(struct cgroup_subsys *ss, int id)
4760{
4761 struct css_id *cssid = NULL;
4762
4763 BUG_ON(!ss->use_id);
4764 cssid = idr_find(&ss->idr, id);
4765
4766 if (unlikely(!cssid))
4767 return NULL;
4768
4769 return rcu_dereference(cssid->css);
4770}
Ben Blum67523c42010-03-10 15:22:11 -08004771EXPORT_SYMBOL_GPL(css_lookup);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004772
4773/**
4774 * css_get_next - lookup next cgroup under specified hierarchy.
4775 * @ss: pointer to subsystem
4776 * @id: current position of iteration.
4777 * @root: pointer to css. search tree under this.
4778 * @foundid: position of found object.
4779 *
4780 * Search next css under the specified hierarchy of rootid. Calling under
4781 * rcu_read_lock() is necessary. Returns NULL if it reaches the end.
4782 */
4783struct cgroup_subsys_state *
4784css_get_next(struct cgroup_subsys *ss, int id,
4785 struct cgroup_subsys_state *root, int *foundid)
4786{
4787 struct cgroup_subsys_state *ret = NULL;
4788 struct css_id *tmp;
4789 int tmpid;
4790 int rootid = css_id(root);
4791 int depth = css_depth(root);
4792
4793 if (!rootid)
4794 return NULL;
4795
4796 BUG_ON(!ss->use_id);
4797 /* fill start point for scan */
4798 tmpid = id;
4799 while (1) {
4800 /*
4801 * scan next entry from bitmap(tree), tmpid is updated after
4802 * idr_get_next().
4803 */
4804 spin_lock(&ss->id_lock);
4805 tmp = idr_get_next(&ss->idr, &tmpid);
4806 spin_unlock(&ss->id_lock);
4807
4808 if (!tmp)
4809 break;
4810 if (tmp->depth >= depth && tmp->stack[depth] == rootid) {
4811 ret = rcu_dereference(tmp->css);
4812 if (ret) {
4813 *foundid = tmpid;
4814 break;
4815 }
4816 }
4817 /* continue to scan from next id */
4818 tmpid = tmpid + 1;
4819 }
4820 return ret;
4821}
4822
Paul Menagefe693432009-09-23 15:56:20 -07004823#ifdef CONFIG_CGROUP_DEBUG
4824static struct cgroup_subsys_state *debug_create(struct cgroup_subsys *ss,
4825 struct cgroup *cont)
4826{
4827 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
4828
4829 if (!css)
4830 return ERR_PTR(-ENOMEM);
4831
4832 return css;
4833}
4834
4835static void debug_destroy(struct cgroup_subsys *ss, struct cgroup *cont)
4836{
4837 kfree(cont->subsys[debug_subsys_id]);
4838}
4839
4840static u64 cgroup_refcount_read(struct cgroup *cont, struct cftype *cft)
4841{
4842 return atomic_read(&cont->count);
4843}
4844
4845static u64 debug_taskcount_read(struct cgroup *cont, struct cftype *cft)
4846{
4847 return cgroup_task_count(cont);
4848}
4849
4850static u64 current_css_set_read(struct cgroup *cont, struct cftype *cft)
4851{
4852 return (u64)(unsigned long)current->cgroups;
4853}
4854
4855static u64 current_css_set_refcount_read(struct cgroup *cont,
4856 struct cftype *cft)
4857{
4858 u64 count;
4859
4860 rcu_read_lock();
4861 count = atomic_read(&current->cgroups->refcount);
4862 rcu_read_unlock();
4863 return count;
4864}
4865
Paul Menage7717f7b2009-09-23 15:56:22 -07004866static int current_css_set_cg_links_read(struct cgroup *cont,
4867 struct cftype *cft,
4868 struct seq_file *seq)
4869{
4870 struct cg_cgroup_link *link;
4871 struct css_set *cg;
4872
4873 read_lock(&css_set_lock);
4874 rcu_read_lock();
4875 cg = rcu_dereference(current->cgroups);
4876 list_for_each_entry(link, &cg->cg_links, cg_link_list) {
4877 struct cgroup *c = link->cgrp;
4878 const char *name;
4879
4880 if (c->dentry)
4881 name = c->dentry->d_name.name;
4882 else
4883 name = "?";
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004884 seq_printf(seq, "Root %d group %s\n",
4885 c->root->hierarchy_id, name);
Paul Menage7717f7b2009-09-23 15:56:22 -07004886 }
4887 rcu_read_unlock();
4888 read_unlock(&css_set_lock);
4889 return 0;
4890}
4891
4892#define MAX_TASKS_SHOWN_PER_CSS 25
4893static int cgroup_css_links_read(struct cgroup *cont,
4894 struct cftype *cft,
4895 struct seq_file *seq)
4896{
4897 struct cg_cgroup_link *link;
4898
4899 read_lock(&css_set_lock);
4900 list_for_each_entry(link, &cont->css_sets, cgrp_link_list) {
4901 struct css_set *cg = link->cg;
4902 struct task_struct *task;
4903 int count = 0;
4904 seq_printf(seq, "css_set %p\n", cg);
4905 list_for_each_entry(task, &cg->tasks, cg_list) {
4906 if (count++ > MAX_TASKS_SHOWN_PER_CSS) {
4907 seq_puts(seq, " ...\n");
4908 break;
4909 } else {
4910 seq_printf(seq, " task %d\n",
4911 task_pid_vnr(task));
4912 }
4913 }
4914 }
4915 read_unlock(&css_set_lock);
4916 return 0;
4917}
4918
Paul Menagefe693432009-09-23 15:56:20 -07004919static u64 releasable_read(struct cgroup *cgrp, struct cftype *cft)
4920{
4921 return test_bit(CGRP_RELEASABLE, &cgrp->flags);
4922}
4923
4924static struct cftype debug_files[] = {
4925 {
4926 .name = "cgroup_refcount",
4927 .read_u64 = cgroup_refcount_read,
4928 },
4929 {
4930 .name = "taskcount",
4931 .read_u64 = debug_taskcount_read,
4932 },
4933
4934 {
4935 .name = "current_css_set",
4936 .read_u64 = current_css_set_read,
4937 },
4938
4939 {
4940 .name = "current_css_set_refcount",
4941 .read_u64 = current_css_set_refcount_read,
4942 },
4943
4944 {
Paul Menage7717f7b2009-09-23 15:56:22 -07004945 .name = "current_css_set_cg_links",
4946 .read_seq_string = current_css_set_cg_links_read,
4947 },
4948
4949 {
4950 .name = "cgroup_css_links",
4951 .read_seq_string = cgroup_css_links_read,
4952 },
4953
4954 {
Paul Menagefe693432009-09-23 15:56:20 -07004955 .name = "releasable",
4956 .read_u64 = releasable_read,
4957 },
4958};
4959
4960static int debug_populate(struct cgroup_subsys *ss, struct cgroup *cont)
4961{
4962 return cgroup_add_files(cont, ss, debug_files,
4963 ARRAY_SIZE(debug_files));
4964}
4965
4966struct cgroup_subsys debug_subsys = {
4967 .name = "debug",
4968 .create = debug_create,
4969 .destroy = debug_destroy,
4970 .populate = debug_populate,
4971 .subsys_id = debug_subsys_id,
4972};
4973#endif /* CONFIG_CGROUP_DEBUG */