blob: 9f41470c3949d62c2ccd37398df77fa974ec57d4 [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));
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100879 spin_lock(&dentry->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700880 node = dentry->d_subdirs.next;
881 while (node != &dentry->d_subdirs) {
882 struct dentry *d = list_entry(node, struct dentry, d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100883
884 spin_lock_nested(&d->d_lock, DENTRY_D_LOCK_NESTED);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700885 list_del_init(node);
886 if (d->d_inode) {
887 /* This should never be called on a cgroup
888 * directory with child cgroups */
889 BUG_ON(d->d_inode->i_mode & S_IFDIR);
Nick Piggindc0474b2011-01-07 17:49:43 +1100890 dget_dlock(d);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100891 spin_unlock(&d->d_lock);
892 spin_unlock(&dentry->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700893 d_delete(d);
894 simple_unlink(dentry->d_inode, d);
895 dput(d);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100896 spin_lock(&dentry->d_lock);
897 } else
898 spin_unlock(&d->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700899 node = dentry->d_subdirs.next;
900 }
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100901 spin_unlock(&dentry->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700902}
903
904/*
905 * NOTE : the dentry must have been dget()'ed
906 */
907static void cgroup_d_remove_dir(struct dentry *dentry)
908{
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100909 struct dentry *parent;
910
Paul Menageddbcc7e2007-10-18 23:39:30 -0700911 cgroup_clear_directory(dentry);
912
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100913 parent = dentry->d_parent;
914 spin_lock(&parent->d_lock);
915 spin_lock(&dentry->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700916 list_del_init(&dentry->d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100917 spin_unlock(&dentry->d_lock);
918 spin_unlock(&parent->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700919 remove_dir(dentry);
920}
921
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700922/*
923 * A queue for waiters to do rmdir() cgroup. A tasks will sleep when
924 * cgroup->count == 0 && list_empty(&cgroup->children) && subsys has some
925 * reference to css->refcnt. In general, this refcnt is expected to goes down
926 * to zero, soon.
927 *
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700928 * CGRP_WAIT_ON_RMDIR flag is set under cgroup's inode->i_mutex;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700929 */
930DECLARE_WAIT_QUEUE_HEAD(cgroup_rmdir_waitq);
931
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700932static void cgroup_wakeup_rmdir_waiter(struct cgroup *cgrp)
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700933{
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700934 if (unlikely(test_and_clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags)))
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700935 wake_up_all(&cgroup_rmdir_waitq);
936}
937
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700938void cgroup_exclude_rmdir(struct cgroup_subsys_state *css)
939{
940 css_get(css);
941}
942
943void cgroup_release_and_wakeup_rmdir(struct cgroup_subsys_state *css)
944{
945 cgroup_wakeup_rmdir_waiter(css->cgroup);
946 css_put(css);
947}
948
Ben Blumaae8aab2010-03-10 15:22:07 -0800949/*
Ben Blumcf5d5942010-03-10 15:22:09 -0800950 * Call with cgroup_mutex held. Drops reference counts on modules, including
951 * any duplicate ones that parse_cgroupfs_options took. If this function
952 * returns an error, no reference counts are touched.
Ben Blumaae8aab2010-03-10 15:22:07 -0800953 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700954static int rebind_subsystems(struct cgroupfs_root *root,
955 unsigned long final_bits)
956{
957 unsigned long added_bits, removed_bits;
Paul Menagebd89aab2007-10-18 23:40:44 -0700958 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700959 int i;
960
Ben Blumaae8aab2010-03-10 15:22:07 -0800961 BUG_ON(!mutex_is_locked(&cgroup_mutex));
962
Paul Menageddbcc7e2007-10-18 23:39:30 -0700963 removed_bits = root->actual_subsys_bits & ~final_bits;
964 added_bits = final_bits & ~root->actual_subsys_bits;
965 /* Check that any added subsystems are currently free */
966 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Li Zefan8d53d552008-02-23 15:24:11 -0800967 unsigned long bit = 1UL << i;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700968 struct cgroup_subsys *ss = subsys[i];
969 if (!(bit & added_bits))
970 continue;
Ben Blumaae8aab2010-03-10 15:22:07 -0800971 /*
972 * Nobody should tell us to do a subsys that doesn't exist:
973 * parse_cgroupfs_options should catch that case and refcounts
974 * ensure that subsystems won't disappear once selected.
975 */
976 BUG_ON(ss == NULL);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700977 if (ss->root != &rootnode) {
978 /* Subsystem isn't free */
979 return -EBUSY;
980 }
981 }
982
983 /* Currently we don't handle adding/removing subsystems when
984 * any child cgroups exist. This is theoretically supportable
985 * but involves complex error handling, so it's being left until
986 * later */
Paul Menage307257c2008-12-15 13:54:22 -0800987 if (root->number_of_cgroups > 1)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700988 return -EBUSY;
989
990 /* Process each subsystem */
991 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
992 struct cgroup_subsys *ss = subsys[i];
993 unsigned long bit = 1UL << i;
994 if (bit & added_bits) {
995 /* We're binding this subsystem to this hierarchy */
Ben Blumaae8aab2010-03-10 15:22:07 -0800996 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -0700997 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700998 BUG_ON(!dummytop->subsys[i]);
999 BUG_ON(dummytop->subsys[i]->cgroup != dummytop);
Paul Menage999cd8a2009-01-07 18:08:36 -08001000 mutex_lock(&ss->hierarchy_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07001001 cgrp->subsys[i] = dummytop->subsys[i];
1002 cgrp->subsys[i]->cgroup = cgrp;
Li Zefan33a68ac2009-01-07 18:07:42 -08001003 list_move(&ss->sibling, &root->subsys_list);
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001004 ss->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001005 if (ss->bind)
Paul Menagebd89aab2007-10-18 23:40:44 -07001006 ss->bind(ss, cgrp);
Paul Menage999cd8a2009-01-07 18:08:36 -08001007 mutex_unlock(&ss->hierarchy_mutex);
Ben Blumcf5d5942010-03-10 15:22:09 -08001008 /* refcount was already taken, and we're keeping it */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001009 } else if (bit & removed_bits) {
1010 /* We're removing this subsystem */
Ben Blumaae8aab2010-03-10 15:22:07 -08001011 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001012 BUG_ON(cgrp->subsys[i] != dummytop->subsys[i]);
1013 BUG_ON(cgrp->subsys[i]->cgroup != cgrp);
Paul Menage999cd8a2009-01-07 18:08:36 -08001014 mutex_lock(&ss->hierarchy_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001015 if (ss->bind)
1016 ss->bind(ss, dummytop);
1017 dummytop->subsys[i]->cgroup = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -07001018 cgrp->subsys[i] = NULL;
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001019 subsys[i]->root = &rootnode;
Li Zefan33a68ac2009-01-07 18:07:42 -08001020 list_move(&ss->sibling, &rootnode.subsys_list);
Paul Menage999cd8a2009-01-07 18:08:36 -08001021 mutex_unlock(&ss->hierarchy_mutex);
Ben Blumcf5d5942010-03-10 15:22:09 -08001022 /* subsystem is now free - drop reference on module */
1023 module_put(ss->module);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001024 } else if (bit & final_bits) {
1025 /* Subsystem state should already exist */
Ben Blumaae8aab2010-03-10 15:22:07 -08001026 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001027 BUG_ON(!cgrp->subsys[i]);
Ben Blumcf5d5942010-03-10 15:22:09 -08001028 /*
1029 * a refcount was taken, but we already had one, so
1030 * drop the extra reference.
1031 */
1032 module_put(ss->module);
1033#ifdef CONFIG_MODULE_UNLOAD
1034 BUG_ON(ss->module && !module_refcount(ss->module));
1035#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001036 } else {
1037 /* Subsystem state shouldn't exist */
Paul Menagebd89aab2007-10-18 23:40:44 -07001038 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001039 }
1040 }
1041 root->subsys_bits = root->actual_subsys_bits = final_bits;
1042 synchronize_rcu();
1043
1044 return 0;
1045}
1046
1047static int cgroup_show_options(struct seq_file *seq, struct vfsmount *vfs)
1048{
1049 struct cgroupfs_root *root = vfs->mnt_sb->s_fs_info;
1050 struct cgroup_subsys *ss;
1051
1052 mutex_lock(&cgroup_mutex);
1053 for_each_subsys(root, ss)
1054 seq_printf(seq, ",%s", ss->name);
1055 if (test_bit(ROOT_NOPREFIX, &root->flags))
1056 seq_puts(seq, ",noprefix");
Paul Menage81a6a5c2007-10-18 23:39:38 -07001057 if (strlen(root->release_agent_path))
1058 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Daniel Lezcano97978e62010-10-27 15:33:35 -07001059 if (clone_children(&root->top_cgroup))
1060 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001061 if (strlen(root->name))
1062 seq_printf(seq, ",name=%s", root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001063 mutex_unlock(&cgroup_mutex);
1064 return 0;
1065}
1066
1067struct cgroup_sb_opts {
1068 unsigned long subsys_bits;
1069 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001070 char *release_agent;
Daniel Lezcano97978e62010-10-27 15:33:35 -07001071 bool clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001072 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001073 /* User explicitly requested empty subsystem */
1074 bool none;
Paul Menagec6d57f32009-09-23 15:56:19 -07001075
1076 struct cgroupfs_root *new_root;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001077
Paul Menageddbcc7e2007-10-18 23:39:30 -07001078};
1079
Ben Blumaae8aab2010-03-10 15:22:07 -08001080/*
1081 * Convert a hierarchy specifier into a bitmask of subsystems and flags. Call
Ben Blumcf5d5942010-03-10 15:22:09 -08001082 * with cgroup_mutex held to protect the subsys[] array. This function takes
1083 * refcounts on subsystems to be used, unless it returns error, in which case
1084 * no refcounts are taken.
Ben Blumaae8aab2010-03-10 15:22:07 -08001085 */
Ben Blumcf5d5942010-03-10 15:22:09 -08001086static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001087{
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001088 char *token, *o = data;
1089 bool all_ss = false, one_ss = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001090 unsigned long mask = (unsigned long)-1;
Ben Blumcf5d5942010-03-10 15:22:09 -08001091 int i;
1092 bool module_pin_failed = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001093
Ben Blumaae8aab2010-03-10 15:22:07 -08001094 BUG_ON(!mutex_is_locked(&cgroup_mutex));
1095
Li Zefanf9ab5b52009-06-17 16:26:33 -07001096#ifdef CONFIG_CPUSETS
1097 mask = ~(1UL << cpuset_subsys_id);
1098#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001099
Paul Menagec6d57f32009-09-23 15:56:19 -07001100 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001101
1102 while ((token = strsep(&o, ",")) != NULL) {
1103 if (!*token)
1104 return -EINVAL;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001105 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001106 /* Explicitly have no subsystems */
1107 opts->none = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001108 continue;
1109 }
1110 if (!strcmp(token, "all")) {
1111 /* Mutually exclusive option 'all' + subsystem name */
1112 if (one_ss)
1113 return -EINVAL;
1114 all_ss = true;
1115 continue;
1116 }
1117 if (!strcmp(token, "noprefix")) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001118 set_bit(ROOT_NOPREFIX, &opts->flags);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001119 continue;
1120 }
1121 if (!strcmp(token, "clone_children")) {
Daniel Lezcano97978e62010-10-27 15:33:35 -07001122 opts->clone_children = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001123 continue;
1124 }
1125 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001126 /* Specifying two release agents is forbidden */
1127 if (opts->release_agent)
1128 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001129 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001130 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001131 if (!opts->release_agent)
1132 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001133 continue;
1134 }
1135 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001136 const char *name = token + 5;
1137 /* Can't specify an empty name */
1138 if (!strlen(name))
1139 return -EINVAL;
1140 /* Must match [\w.-]+ */
1141 for (i = 0; i < strlen(name); i++) {
1142 char c = name[i];
1143 if (isalnum(c))
1144 continue;
1145 if ((c == '.') || (c == '-') || (c == '_'))
1146 continue;
1147 return -EINVAL;
1148 }
1149 /* Specifying two names is forbidden */
1150 if (opts->name)
1151 return -EINVAL;
1152 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001153 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001154 GFP_KERNEL);
1155 if (!opts->name)
1156 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001157
1158 continue;
1159 }
1160
1161 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1162 struct cgroup_subsys *ss = subsys[i];
1163 if (ss == NULL)
1164 continue;
1165 if (strcmp(token, ss->name))
1166 continue;
1167 if (ss->disabled)
1168 continue;
1169
1170 /* Mutually exclusive option 'all' + subsystem name */
1171 if (all_ss)
1172 return -EINVAL;
1173 set_bit(i, &opts->subsys_bits);
1174 one_ss = true;
1175
1176 break;
1177 }
1178 if (i == CGROUP_SUBSYS_COUNT)
1179 return -ENOENT;
1180 }
1181
1182 /*
1183 * If the 'all' option was specified select all the subsystems,
1184 * otherwise 'all, 'none' and a subsystem name options were not
1185 * specified, let's default to 'all'
1186 */
1187 if (all_ss || (!all_ss && !one_ss && !opts->none)) {
1188 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1189 struct cgroup_subsys *ss = subsys[i];
1190 if (ss == NULL)
1191 continue;
1192 if (ss->disabled)
1193 continue;
1194 set_bit(i, &opts->subsys_bits);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001195 }
1196 }
1197
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001198 /* Consistency checks */
1199
Li Zefanf9ab5b52009-06-17 16:26:33 -07001200 /*
1201 * Option noprefix was introduced just for backward compatibility
1202 * with the old cpuset, so we allow noprefix only if mounting just
1203 * the cpuset subsystem.
1204 */
1205 if (test_bit(ROOT_NOPREFIX, &opts->flags) &&
1206 (opts->subsys_bits & mask))
1207 return -EINVAL;
1208
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001209
1210 /* Can't specify "none" and some subsystems */
1211 if (opts->subsys_bits && opts->none)
1212 return -EINVAL;
1213
1214 /*
1215 * We either have to specify by name or by subsystems. (So all
1216 * empty hierarchies must have a name).
1217 */
Paul Menagec6d57f32009-09-23 15:56:19 -07001218 if (!opts->subsys_bits && !opts->name)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001219 return -EINVAL;
1220
Ben Blumcf5d5942010-03-10 15:22:09 -08001221 /*
1222 * Grab references on all the modules we'll need, so the subsystems
1223 * don't dance around before rebind_subsystems attaches them. This may
1224 * take duplicate reference counts on a subsystem that's already used,
1225 * but rebind_subsystems handles this case.
1226 */
1227 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
1228 unsigned long bit = 1UL << i;
1229
1230 if (!(bit & opts->subsys_bits))
1231 continue;
1232 if (!try_module_get(subsys[i]->module)) {
1233 module_pin_failed = true;
1234 break;
1235 }
1236 }
1237 if (module_pin_failed) {
1238 /*
1239 * oops, one of the modules was going away. this means that we
1240 * raced with a module_delete call, and to the user this is
1241 * essentially a "subsystem doesn't exist" case.
1242 */
1243 for (i--; i >= CGROUP_BUILTIN_SUBSYS_COUNT; i--) {
1244 /* drop refcounts only on the ones we took */
1245 unsigned long bit = 1UL << i;
1246
1247 if (!(bit & opts->subsys_bits))
1248 continue;
1249 module_put(subsys[i]->module);
1250 }
1251 return -ENOENT;
1252 }
1253
Paul Menageddbcc7e2007-10-18 23:39:30 -07001254 return 0;
1255}
1256
Ben Blumcf5d5942010-03-10 15:22:09 -08001257static void drop_parsed_module_refcounts(unsigned long subsys_bits)
1258{
1259 int i;
1260 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
1261 unsigned long bit = 1UL << i;
1262
1263 if (!(bit & subsys_bits))
1264 continue;
1265 module_put(subsys[i]->module);
1266 }
1267}
1268
Paul Menageddbcc7e2007-10-18 23:39:30 -07001269static int cgroup_remount(struct super_block *sb, int *flags, char *data)
1270{
1271 int ret = 0;
1272 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001273 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001274 struct cgroup_sb_opts opts;
1275
Paul Menagebd89aab2007-10-18 23:40:44 -07001276 mutex_lock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001277 mutex_lock(&cgroup_mutex);
1278
1279 /* See what subsystems are wanted */
1280 ret = parse_cgroupfs_options(data, &opts);
1281 if (ret)
1282 goto out_unlock;
1283
Ben Blumcf5d5942010-03-10 15:22:09 -08001284 /* Don't allow flags or name to change at remount */
1285 if (opts.flags != root->flags ||
1286 (opts.name && strcmp(opts.name, root->name))) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001287 ret = -EINVAL;
Ben Blumcf5d5942010-03-10 15:22:09 -08001288 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menagec6d57f32009-09-23 15:56:19 -07001289 goto out_unlock;
1290 }
1291
Paul Menageddbcc7e2007-10-18 23:39:30 -07001292 ret = rebind_subsystems(root, opts.subsys_bits);
Ben Blumcf5d5942010-03-10 15:22:09 -08001293 if (ret) {
1294 drop_parsed_module_refcounts(opts.subsys_bits);
Li Zefan0670e082009-04-02 16:57:30 -07001295 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001296 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001297
1298 /* (re)populate subsystem files */
Li Zefan0670e082009-04-02 16:57:30 -07001299 cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001300
Paul Menage81a6a5c2007-10-18 23:39:38 -07001301 if (opts.release_agent)
1302 strcpy(root->release_agent_path, opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001303 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001304 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001305 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001306 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07001307 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001308 return ret;
1309}
1310
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001311static const struct super_operations cgroup_ops = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001312 .statfs = simple_statfs,
1313 .drop_inode = generic_delete_inode,
1314 .show_options = cgroup_show_options,
1315 .remount_fs = cgroup_remount,
1316};
1317
Paul Menagecc31edc2008-10-18 20:28:04 -07001318static void init_cgroup_housekeeping(struct cgroup *cgrp)
1319{
1320 INIT_LIST_HEAD(&cgrp->sibling);
1321 INIT_LIST_HEAD(&cgrp->children);
1322 INIT_LIST_HEAD(&cgrp->css_sets);
1323 INIT_LIST_HEAD(&cgrp->release_list);
Ben Blum72a8cb32009-09-23 15:56:27 -07001324 INIT_LIST_HEAD(&cgrp->pidlists);
1325 mutex_init(&cgrp->pidlist_mutex);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08001326 INIT_LIST_HEAD(&cgrp->event_list);
1327 spin_lock_init(&cgrp->event_list_lock);
Paul Menagecc31edc2008-10-18 20:28:04 -07001328}
Paul Menagec6d57f32009-09-23 15:56:19 -07001329
Paul Menageddbcc7e2007-10-18 23:39:30 -07001330static void init_cgroup_root(struct cgroupfs_root *root)
1331{
Paul Menagebd89aab2007-10-18 23:40:44 -07001332 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001333 INIT_LIST_HEAD(&root->subsys_list);
1334 INIT_LIST_HEAD(&root->root_list);
1335 root->number_of_cgroups = 1;
Paul Menagebd89aab2007-10-18 23:40:44 -07001336 cgrp->root = root;
1337 cgrp->top_cgroup = cgrp;
Paul Menagecc31edc2008-10-18 20:28:04 -07001338 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001339}
1340
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001341static bool init_root_id(struct cgroupfs_root *root)
1342{
1343 int ret = 0;
1344
1345 do {
1346 if (!ida_pre_get(&hierarchy_ida, GFP_KERNEL))
1347 return false;
1348 spin_lock(&hierarchy_id_lock);
1349 /* Try to allocate the next unused ID */
1350 ret = ida_get_new_above(&hierarchy_ida, next_hierarchy_id,
1351 &root->hierarchy_id);
1352 if (ret == -ENOSPC)
1353 /* Try again starting from 0 */
1354 ret = ida_get_new(&hierarchy_ida, &root->hierarchy_id);
1355 if (!ret) {
1356 next_hierarchy_id = root->hierarchy_id + 1;
1357 } else if (ret != -EAGAIN) {
1358 /* Can only get here if the 31-bit IDR is full ... */
1359 BUG_ON(ret);
1360 }
1361 spin_unlock(&hierarchy_id_lock);
1362 } while (ret);
1363 return true;
1364}
1365
Paul Menageddbcc7e2007-10-18 23:39:30 -07001366static int cgroup_test_super(struct super_block *sb, void *data)
1367{
Paul Menagec6d57f32009-09-23 15:56:19 -07001368 struct cgroup_sb_opts *opts = data;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001369 struct cgroupfs_root *root = sb->s_fs_info;
1370
Paul Menagec6d57f32009-09-23 15:56:19 -07001371 /* If we asked for a name then it must match */
1372 if (opts->name && strcmp(opts->name, root->name))
1373 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001374
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001375 /*
1376 * If we asked for subsystems (or explicitly for no
1377 * subsystems) then they must match
1378 */
1379 if ((opts->subsys_bits || opts->none)
1380 && (opts->subsys_bits != root->subsys_bits))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001381 return 0;
1382
1383 return 1;
1384}
1385
Paul Menagec6d57f32009-09-23 15:56:19 -07001386static struct cgroupfs_root *cgroup_root_from_opts(struct cgroup_sb_opts *opts)
1387{
1388 struct cgroupfs_root *root;
1389
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001390 if (!opts->subsys_bits && !opts->none)
Paul Menagec6d57f32009-09-23 15:56:19 -07001391 return NULL;
1392
1393 root = kzalloc(sizeof(*root), GFP_KERNEL);
1394 if (!root)
1395 return ERR_PTR(-ENOMEM);
1396
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001397 if (!init_root_id(root)) {
1398 kfree(root);
1399 return ERR_PTR(-ENOMEM);
1400 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001401 init_cgroup_root(root);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001402
Paul Menagec6d57f32009-09-23 15:56:19 -07001403 root->subsys_bits = opts->subsys_bits;
1404 root->flags = opts->flags;
1405 if (opts->release_agent)
1406 strcpy(root->release_agent_path, opts->release_agent);
1407 if (opts->name)
1408 strcpy(root->name, opts->name);
Daniel Lezcano97978e62010-10-27 15:33:35 -07001409 if (opts->clone_children)
1410 set_bit(CGRP_CLONE_CHILDREN, &root->top_cgroup.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001411 return root;
1412}
1413
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001414static void cgroup_drop_root(struct cgroupfs_root *root)
1415{
1416 if (!root)
1417 return;
1418
1419 BUG_ON(!root->hierarchy_id);
1420 spin_lock(&hierarchy_id_lock);
1421 ida_remove(&hierarchy_ida, root->hierarchy_id);
1422 spin_unlock(&hierarchy_id_lock);
1423 kfree(root);
1424}
1425
Paul Menageddbcc7e2007-10-18 23:39:30 -07001426static int cgroup_set_super(struct super_block *sb, void *data)
1427{
1428 int ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001429 struct cgroup_sb_opts *opts = data;
1430
1431 /* If we don't have a new root, we can't set up a new sb */
1432 if (!opts->new_root)
1433 return -EINVAL;
1434
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001435 BUG_ON(!opts->subsys_bits && !opts->none);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001436
1437 ret = set_anon_super(sb, NULL);
1438 if (ret)
1439 return ret;
1440
Paul Menagec6d57f32009-09-23 15:56:19 -07001441 sb->s_fs_info = opts->new_root;
1442 opts->new_root->sb = sb;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001443
1444 sb->s_blocksize = PAGE_CACHE_SIZE;
1445 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
1446 sb->s_magic = CGROUP_SUPER_MAGIC;
1447 sb->s_op = &cgroup_ops;
1448
1449 return 0;
1450}
1451
1452static int cgroup_get_rootdir(struct super_block *sb)
1453{
1454 struct inode *inode =
1455 cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb);
1456 struct dentry *dentry;
1457
1458 if (!inode)
1459 return -ENOMEM;
1460
Paul Menageddbcc7e2007-10-18 23:39:30 -07001461 inode->i_fop = &simple_dir_operations;
1462 inode->i_op = &cgroup_dir_inode_operations;
1463 /* directories start off with i_nlink == 2 (for "." entry) */
1464 inc_nlink(inode);
1465 dentry = d_alloc_root(inode);
1466 if (!dentry) {
1467 iput(inode);
1468 return -ENOMEM;
1469 }
1470 sb->s_root = dentry;
1471 return 0;
1472}
1473
Al Virof7e83572010-07-26 13:23:11 +04001474static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001475 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001476 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001477{
1478 struct cgroup_sb_opts opts;
Paul Menagec6d57f32009-09-23 15:56:19 -07001479 struct cgroupfs_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001480 int ret = 0;
1481 struct super_block *sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001482 struct cgroupfs_root *new_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001483
1484 /* First find the desired set of subsystems */
Ben Blumaae8aab2010-03-10 15:22:07 -08001485 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001486 ret = parse_cgroupfs_options(data, &opts);
Ben Blumaae8aab2010-03-10 15:22:07 -08001487 mutex_unlock(&cgroup_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001488 if (ret)
1489 goto out_err;
1490
1491 /*
1492 * Allocate a new cgroup root. We may not need it if we're
1493 * reusing an existing hierarchy.
1494 */
1495 new_root = cgroup_root_from_opts(&opts);
1496 if (IS_ERR(new_root)) {
1497 ret = PTR_ERR(new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001498 goto drop_modules;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001499 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001500 opts.new_root = new_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001501
Paul Menagec6d57f32009-09-23 15:56:19 -07001502 /* Locate an existing or new sb for this hierarchy */
1503 sb = sget(fs_type, cgroup_test_super, cgroup_set_super, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001504 if (IS_ERR(sb)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001505 ret = PTR_ERR(sb);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001506 cgroup_drop_root(opts.new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001507 goto drop_modules;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001508 }
1509
Paul Menagec6d57f32009-09-23 15:56:19 -07001510 root = sb->s_fs_info;
1511 BUG_ON(!root);
1512 if (root == opts.new_root) {
1513 /* We used the new root structure, so this is a new hierarchy */
1514 struct list_head tmp_cg_links;
Li Zefanc12f65d2009-01-07 18:07:42 -08001515 struct cgroup *root_cgrp = &root->top_cgroup;
Paul Menage817929e2007-10-18 23:39:36 -07001516 struct inode *inode;
Paul Menagec6d57f32009-09-23 15:56:19 -07001517 struct cgroupfs_root *existing_root;
Li Zefan28fd5df2008-04-29 01:00:13 -07001518 int i;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001519
1520 BUG_ON(sb->s_root != NULL);
1521
1522 ret = cgroup_get_rootdir(sb);
1523 if (ret)
1524 goto drop_new_super;
Paul Menage817929e2007-10-18 23:39:36 -07001525 inode = sb->s_root->d_inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001526
Paul Menage817929e2007-10-18 23:39:36 -07001527 mutex_lock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001528 mutex_lock(&cgroup_mutex);
1529
Paul Menagec6d57f32009-09-23 15:56:19 -07001530 if (strlen(root->name)) {
1531 /* Check for name clashes with existing mounts */
1532 for_each_active_root(existing_root) {
1533 if (!strcmp(existing_root->name, root->name)) {
1534 ret = -EBUSY;
1535 mutex_unlock(&cgroup_mutex);
1536 mutex_unlock(&inode->i_mutex);
1537 goto drop_new_super;
1538 }
1539 }
1540 }
1541
Paul Menage817929e2007-10-18 23:39:36 -07001542 /*
1543 * We're accessing css_set_count without locking
1544 * css_set_lock here, but that's OK - it can only be
1545 * increased by someone holding cgroup_lock, and
1546 * that's us. The worst that can happen is that we
1547 * have some link structures left over
1548 */
1549 ret = allocate_cg_links(css_set_count, &tmp_cg_links);
1550 if (ret) {
1551 mutex_unlock(&cgroup_mutex);
1552 mutex_unlock(&inode->i_mutex);
1553 goto drop_new_super;
1554 }
1555
Paul Menageddbcc7e2007-10-18 23:39:30 -07001556 ret = rebind_subsystems(root, root->subsys_bits);
1557 if (ret == -EBUSY) {
1558 mutex_unlock(&cgroup_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07001559 mutex_unlock(&inode->i_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001560 free_cg_links(&tmp_cg_links);
1561 goto drop_new_super;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001562 }
Ben Blumcf5d5942010-03-10 15:22:09 -08001563 /*
1564 * There must be no failure case after here, since rebinding
1565 * takes care of subsystems' refcounts, which are explicitly
1566 * dropped in the failure exit path.
1567 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001568
1569 /* EBUSY should be the only error here */
1570 BUG_ON(ret);
1571
1572 list_add(&root->root_list, &roots);
Paul Menage817929e2007-10-18 23:39:36 -07001573 root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001574
Li Zefanc12f65d2009-01-07 18:07:42 -08001575 sb->s_root->d_fsdata = root_cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001576 root->top_cgroup.dentry = sb->s_root;
1577
Paul Menage817929e2007-10-18 23:39:36 -07001578 /* Link the top cgroup in this hierarchy into all
1579 * the css_set objects */
1580 write_lock(&css_set_lock);
Li Zefan28fd5df2008-04-29 01:00:13 -07001581 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
1582 struct hlist_head *hhead = &css_set_table[i];
1583 struct hlist_node *node;
Paul Menage817929e2007-10-18 23:39:36 -07001584 struct css_set *cg;
Li Zefan28fd5df2008-04-29 01:00:13 -07001585
Li Zefanc12f65d2009-01-07 18:07:42 -08001586 hlist_for_each_entry(cg, node, hhead, hlist)
1587 link_css_set(&tmp_cg_links, cg, root_cgrp);
Li Zefan28fd5df2008-04-29 01:00:13 -07001588 }
Paul Menage817929e2007-10-18 23:39:36 -07001589 write_unlock(&css_set_lock);
1590
1591 free_cg_links(&tmp_cg_links);
1592
Li Zefanc12f65d2009-01-07 18:07:42 -08001593 BUG_ON(!list_empty(&root_cgrp->sibling));
1594 BUG_ON(!list_empty(&root_cgrp->children));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001595 BUG_ON(root->number_of_cgroups != 1);
1596
Li Zefanc12f65d2009-01-07 18:07:42 -08001597 cgroup_populate_dir(root_cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001598 mutex_unlock(&cgroup_mutex);
Xiaotian Feng34f77a92009-09-23 15:56:18 -07001599 mutex_unlock(&inode->i_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001600 } else {
1601 /*
1602 * We re-used an existing hierarchy - the new root (if
1603 * any) is not needed
1604 */
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001605 cgroup_drop_root(opts.new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001606 /* no subsys rebinding, so refcounts don't change */
1607 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001608 }
1609
Paul Menagec6d57f32009-09-23 15:56:19 -07001610 kfree(opts.release_agent);
1611 kfree(opts.name);
Al Virof7e83572010-07-26 13:23:11 +04001612 return dget(sb->s_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001613
1614 drop_new_super:
Al Viro6f5bbff2009-05-06 01:34:22 -04001615 deactivate_locked_super(sb);
Ben Blumcf5d5942010-03-10 15:22:09 -08001616 drop_modules:
1617 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menagec6d57f32009-09-23 15:56:19 -07001618 out_err:
1619 kfree(opts.release_agent);
1620 kfree(opts.name);
Al Virof7e83572010-07-26 13:23:11 +04001621 return ERR_PTR(ret);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001622}
1623
1624static void cgroup_kill_sb(struct super_block *sb) {
1625 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001626 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001627 int ret;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001628 struct cg_cgroup_link *link;
1629 struct cg_cgroup_link *saved_link;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001630
1631 BUG_ON(!root);
1632
1633 BUG_ON(root->number_of_cgroups != 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001634 BUG_ON(!list_empty(&cgrp->children));
1635 BUG_ON(!list_empty(&cgrp->sibling));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001636
1637 mutex_lock(&cgroup_mutex);
1638
1639 /* Rebind all subsystems back to the default hierarchy */
1640 ret = rebind_subsystems(root, 0);
1641 /* Shouldn't be able to fail ... */
1642 BUG_ON(ret);
1643
Paul Menage817929e2007-10-18 23:39:36 -07001644 /*
1645 * Release all the links from css_sets to this hierarchy's
1646 * root cgroup
1647 */
1648 write_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001649
1650 list_for_each_entry_safe(link, saved_link, &cgrp->css_sets,
1651 cgrp_link_list) {
Paul Menage817929e2007-10-18 23:39:36 -07001652 list_del(&link->cg_link_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07001653 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001654 kfree(link);
1655 }
1656 write_unlock(&css_set_lock);
1657
Paul Menage839ec542009-01-29 14:25:22 -08001658 if (!list_empty(&root->root_list)) {
1659 list_del(&root->root_list);
1660 root_count--;
1661 }
Li Zefane5f6a862009-01-07 18:07:41 -08001662
Paul Menageddbcc7e2007-10-18 23:39:30 -07001663 mutex_unlock(&cgroup_mutex);
1664
Paul Menageddbcc7e2007-10-18 23:39:30 -07001665 kill_litter_super(sb);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001666 cgroup_drop_root(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001667}
1668
1669static struct file_system_type cgroup_fs_type = {
1670 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001671 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001672 .kill_sb = cgroup_kill_sb,
1673};
1674
Greg KH676db4a2010-08-05 13:53:35 -07001675static struct kobject *cgroup_kobj;
1676
Paul Menagebd89aab2007-10-18 23:40:44 -07001677static inline struct cgroup *__d_cgrp(struct dentry *dentry)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001678{
1679 return dentry->d_fsdata;
1680}
1681
1682static inline struct cftype *__d_cft(struct dentry *dentry)
1683{
1684 return dentry->d_fsdata;
1685}
1686
Li Zefana043e3b2008-02-23 15:24:09 -08001687/**
1688 * cgroup_path - generate the path of a cgroup
1689 * @cgrp: the cgroup in question
1690 * @buf: the buffer to write the path into
1691 * @buflen: the length of the buffer
1692 *
Paul Menagea47295e2009-01-07 18:07:44 -08001693 * Called with cgroup_mutex held or else with an RCU-protected cgroup
1694 * reference. Writes path of cgroup into buf. Returns 0 on success,
1695 * -errno on error.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001696 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001697int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001698{
1699 char *start;
Li Zefan9a9686b2010-04-22 17:29:24 +08001700 struct dentry *dentry = rcu_dereference_check(cgrp->dentry,
1701 rcu_read_lock_held() ||
1702 cgroup_lock_is_held());
Paul Menageddbcc7e2007-10-18 23:39:30 -07001703
Paul Menagea47295e2009-01-07 18:07:44 -08001704 if (!dentry || cgrp == dummytop) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001705 /*
1706 * Inactive subsystems have no dentry for their root
1707 * cgroup
1708 */
1709 strcpy(buf, "/");
1710 return 0;
1711 }
1712
1713 start = buf + buflen;
1714
1715 *--start = '\0';
1716 for (;;) {
Paul Menagea47295e2009-01-07 18:07:44 -08001717 int len = dentry->d_name.len;
Li Zefan9a9686b2010-04-22 17:29:24 +08001718
Paul Menageddbcc7e2007-10-18 23:39:30 -07001719 if ((start -= len) < buf)
1720 return -ENAMETOOLONG;
Li Zefan9a9686b2010-04-22 17:29:24 +08001721 memcpy(start, dentry->d_name.name, len);
Paul Menagebd89aab2007-10-18 23:40:44 -07001722 cgrp = cgrp->parent;
1723 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001724 break;
Li Zefan9a9686b2010-04-22 17:29:24 +08001725
1726 dentry = rcu_dereference_check(cgrp->dentry,
1727 rcu_read_lock_held() ||
1728 cgroup_lock_is_held());
Paul Menagebd89aab2007-10-18 23:40:44 -07001729 if (!cgrp->parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001730 continue;
1731 if (--start < buf)
1732 return -ENAMETOOLONG;
1733 *start = '/';
1734 }
1735 memmove(buf, start, buf + buflen - start);
1736 return 0;
1737}
Ben Blum67523c42010-03-10 15:22:11 -08001738EXPORT_SYMBOL_GPL(cgroup_path);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001739
Li Zefana043e3b2008-02-23 15:24:09 -08001740/**
1741 * cgroup_attach_task - attach task 'tsk' to cgroup 'cgrp'
1742 * @cgrp: the cgroup the task is attaching to
1743 * @tsk: the task to be attached
Paul Menagebbcb81d2007-10-18 23:39:32 -07001744 *
Li Zefana043e3b2008-02-23 15:24:09 -08001745 * Call holding cgroup_mutex. May take task_lock of
1746 * the task 'tsk' during call.
Paul Menagebbcb81d2007-10-18 23:39:32 -07001747 */
Cliff Wickman956db3c2008-02-07 00:14:43 -08001748int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001749{
1750 int retval = 0;
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001751 struct cgroup_subsys *ss, *failed_ss = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07001752 struct cgroup *oldcgrp;
Lai Jiangshan77efecd2009-01-07 18:07:39 -08001753 struct css_set *cg;
Paul Menage817929e2007-10-18 23:39:36 -07001754 struct css_set *newcg;
Paul Menagebd89aab2007-10-18 23:40:44 -07001755 struct cgroupfs_root *root = cgrp->root;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001756
1757 /* Nothing to do if the task is already in that cgroup */
Paul Menage7717f7b2009-09-23 15:56:22 -07001758 oldcgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07001759 if (cgrp == oldcgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001760 return 0;
1761
1762 for_each_subsys(root, ss) {
1763 if (ss->can_attach) {
Ben Blumbe367d02009-09-23 15:56:31 -07001764 retval = ss->can_attach(ss, cgrp, tsk, false);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001765 if (retval) {
1766 /*
1767 * Remember on which subsystem the can_attach()
1768 * failed, so that we only call cancel_attach()
1769 * against the subsystems whose can_attach()
1770 * succeeded. (See below)
1771 */
1772 failed_ss = ss;
1773 goto out;
1774 }
Paul Menagebbcb81d2007-10-18 23:39:32 -07001775 }
1776 }
1777
Lai Jiangshan77efecd2009-01-07 18:07:39 -08001778 task_lock(tsk);
1779 cg = tsk->cgroups;
1780 get_css_set(cg);
1781 task_unlock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07001782 /*
1783 * Locate or allocate a new css_set for this task,
1784 * based on its final set of cgroups
1785 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001786 newcg = find_css_set(cg, cgrp);
Lai Jiangshan77efecd2009-01-07 18:07:39 -08001787 put_css_set(cg);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001788 if (!newcg) {
1789 retval = -ENOMEM;
1790 goto out;
1791 }
Paul Menage817929e2007-10-18 23:39:36 -07001792
Paul Menagebbcb81d2007-10-18 23:39:32 -07001793 task_lock(tsk);
1794 if (tsk->flags & PF_EXITING) {
1795 task_unlock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07001796 put_css_set(newcg);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001797 retval = -ESRCH;
1798 goto out;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001799 }
Paul Menage817929e2007-10-18 23:39:36 -07001800 rcu_assign_pointer(tsk->cgroups, newcg);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001801 task_unlock(tsk);
1802
Paul Menage817929e2007-10-18 23:39:36 -07001803 /* Update the css_set linked lists if we're using them */
1804 write_lock(&css_set_lock);
1805 if (!list_empty(&tsk->cg_list)) {
1806 list_del(&tsk->cg_list);
1807 list_add(&tsk->cg_list, &newcg->tasks);
1808 }
1809 write_unlock(&css_set_lock);
1810
Paul Menagebbcb81d2007-10-18 23:39:32 -07001811 for_each_subsys(root, ss) {
Paul Jacksone18f6312008-02-07 00:13:44 -08001812 if (ss->attach)
Ben Blumbe367d02009-09-23 15:56:31 -07001813 ss->attach(ss, cgrp, oldcgrp, tsk, false);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001814 }
Paul Menagebd89aab2007-10-18 23:40:44 -07001815 set_bit(CGRP_RELEASABLE, &oldcgrp->flags);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001816 synchronize_rcu();
Paul Menage817929e2007-10-18 23:39:36 -07001817 put_css_set(cg);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07001818
1819 /*
1820 * wake up rmdir() waiter. the rmdir should fail since the cgroup
1821 * is no longer empty.
1822 */
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07001823 cgroup_wakeup_rmdir_waiter(cgrp);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001824out:
1825 if (retval) {
1826 for_each_subsys(root, ss) {
1827 if (ss == failed_ss)
1828 /*
1829 * This subsystem was the one that failed the
1830 * can_attach() check earlier, so we don't need
1831 * to call cancel_attach() against it or any
1832 * remaining subsystems.
1833 */
1834 break;
1835 if (ss->cancel_attach)
1836 ss->cancel_attach(ss, cgrp, tsk, false);
1837 }
1838 }
1839 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001840}
1841
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001842/**
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001843 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
1844 * @from: attach to all cgroups of a given task
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001845 * @tsk: the task to be attached
1846 */
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001847int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001848{
1849 struct cgroupfs_root *root;
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001850 int retval = 0;
1851
1852 cgroup_lock();
1853 for_each_active_root(root) {
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001854 struct cgroup *from_cg = task_cgroup_from_root(from, root);
1855
1856 retval = cgroup_attach_task(from_cg, tsk);
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001857 if (retval)
1858 break;
1859 }
1860 cgroup_unlock();
1861
1862 return retval;
1863}
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001864EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001865
Paul Menagebbcb81d2007-10-18 23:39:32 -07001866/*
Paul Menageaf351022008-07-25 01:47:01 -07001867 * Attach task with pid 'pid' to cgroup 'cgrp'. Call with cgroup_mutex
1868 * held. May take task_lock of task
Paul Menagebbcb81d2007-10-18 23:39:32 -07001869 */
Paul Menageaf351022008-07-25 01:47:01 -07001870static int attach_task_by_pid(struct cgroup *cgrp, u64 pid)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001871{
Paul Menagebbcb81d2007-10-18 23:39:32 -07001872 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11001873 const struct cred *cred = current_cred(), *tcred;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001874 int ret;
1875
Paul Menagebbcb81d2007-10-18 23:39:32 -07001876 if (pid) {
1877 rcu_read_lock();
Pavel Emelyanov73507f32008-02-07 00:14:47 -08001878 tsk = find_task_by_vpid(pid);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001879 if (!tsk || tsk->flags & PF_EXITING) {
1880 rcu_read_unlock();
1881 return -ESRCH;
1882 }
Paul Menagebbcb81d2007-10-18 23:39:32 -07001883
David Howellsc69e8d92008-11-14 10:39:19 +11001884 tcred = __task_cred(tsk);
1885 if (cred->euid &&
1886 cred->euid != tcred->uid &&
1887 cred->euid != tcred->suid) {
1888 rcu_read_unlock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07001889 return -EACCES;
1890 }
David Howellsc69e8d92008-11-14 10:39:19 +11001891 get_task_struct(tsk);
1892 rcu_read_unlock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07001893 } else {
1894 tsk = current;
1895 get_task_struct(tsk);
1896 }
1897
Cliff Wickman956db3c2008-02-07 00:14:43 -08001898 ret = cgroup_attach_task(cgrp, tsk);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001899 put_task_struct(tsk);
1900 return ret;
1901}
1902
Paul Menageaf351022008-07-25 01:47:01 -07001903static int cgroup_tasks_write(struct cgroup *cgrp, struct cftype *cft, u64 pid)
1904{
1905 int ret;
1906 if (!cgroup_lock_live_group(cgrp))
1907 return -ENODEV;
1908 ret = attach_task_by_pid(cgrp, pid);
1909 cgroup_unlock();
1910 return ret;
1911}
1912
Paul Menagee788e062008-07-25 01:46:59 -07001913/**
1914 * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive.
1915 * @cgrp: the cgroup to be checked for liveness
1916 *
Paul Menage84eea842008-07-25 01:47:00 -07001917 * On success, returns true; the lock should be later released with
1918 * cgroup_unlock(). On failure returns false with no lock held.
Paul Menagee788e062008-07-25 01:46:59 -07001919 */
Paul Menage84eea842008-07-25 01:47:00 -07001920bool cgroup_lock_live_group(struct cgroup *cgrp)
Paul Menagee788e062008-07-25 01:46:59 -07001921{
1922 mutex_lock(&cgroup_mutex);
1923 if (cgroup_is_removed(cgrp)) {
1924 mutex_unlock(&cgroup_mutex);
1925 return false;
1926 }
1927 return true;
1928}
Ben Blum67523c42010-03-10 15:22:11 -08001929EXPORT_SYMBOL_GPL(cgroup_lock_live_group);
Paul Menagee788e062008-07-25 01:46:59 -07001930
1931static int cgroup_release_agent_write(struct cgroup *cgrp, struct cftype *cft,
1932 const char *buffer)
1933{
1934 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
Evgeny Kuznetsovf4a25892010-10-27 15:33:37 -07001935 if (strlen(buffer) >= PATH_MAX)
1936 return -EINVAL;
Paul Menagee788e062008-07-25 01:46:59 -07001937 if (!cgroup_lock_live_group(cgrp))
1938 return -ENODEV;
1939 strcpy(cgrp->root->release_agent_path, buffer);
Paul Menage84eea842008-07-25 01:47:00 -07001940 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07001941 return 0;
1942}
1943
1944static int cgroup_release_agent_show(struct cgroup *cgrp, struct cftype *cft,
1945 struct seq_file *seq)
1946{
1947 if (!cgroup_lock_live_group(cgrp))
1948 return -ENODEV;
1949 seq_puts(seq, cgrp->root->release_agent_path);
1950 seq_putc(seq, '\n');
Paul Menage84eea842008-07-25 01:47:00 -07001951 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07001952 return 0;
1953}
1954
Paul Menage84eea842008-07-25 01:47:00 -07001955/* A buffer size big enough for numbers or short strings */
1956#define CGROUP_LOCAL_BUFFER_SIZE 64
1957
Paul Menagee73d2c62008-04-29 01:00:06 -07001958static ssize_t cgroup_write_X64(struct cgroup *cgrp, struct cftype *cft,
Paul Menagef4c753b2008-04-29 00:59:56 -07001959 struct file *file,
1960 const char __user *userbuf,
1961 size_t nbytes, loff_t *unused_ppos)
Paul Menage355e0c42007-10-18 23:39:33 -07001962{
Paul Menage84eea842008-07-25 01:47:00 -07001963 char buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menage355e0c42007-10-18 23:39:33 -07001964 int retval = 0;
Paul Menage355e0c42007-10-18 23:39:33 -07001965 char *end;
1966
1967 if (!nbytes)
1968 return -EINVAL;
1969 if (nbytes >= sizeof(buffer))
1970 return -E2BIG;
1971 if (copy_from_user(buffer, userbuf, nbytes))
1972 return -EFAULT;
1973
1974 buffer[nbytes] = 0; /* nul-terminate */
Paul Menagee73d2c62008-04-29 01:00:06 -07001975 if (cft->write_u64) {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07001976 u64 val = simple_strtoull(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07001977 if (*end)
1978 return -EINVAL;
1979 retval = cft->write_u64(cgrp, cft, val);
1980 } else {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07001981 s64 val = simple_strtoll(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07001982 if (*end)
1983 return -EINVAL;
1984 retval = cft->write_s64(cgrp, cft, val);
1985 }
Paul Menage355e0c42007-10-18 23:39:33 -07001986 if (!retval)
1987 retval = nbytes;
1988 return retval;
1989}
1990
Paul Menagedb3b1492008-07-25 01:46:58 -07001991static ssize_t cgroup_write_string(struct cgroup *cgrp, struct cftype *cft,
1992 struct file *file,
1993 const char __user *userbuf,
1994 size_t nbytes, loff_t *unused_ppos)
1995{
Paul Menage84eea842008-07-25 01:47:00 -07001996 char local_buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagedb3b1492008-07-25 01:46:58 -07001997 int retval = 0;
1998 size_t max_bytes = cft->max_write_len;
1999 char *buffer = local_buffer;
2000
2001 if (!max_bytes)
2002 max_bytes = sizeof(local_buffer) - 1;
2003 if (nbytes >= max_bytes)
2004 return -E2BIG;
2005 /* Allocate a dynamic buffer if we need one */
2006 if (nbytes >= sizeof(local_buffer)) {
2007 buffer = kmalloc(nbytes + 1, GFP_KERNEL);
2008 if (buffer == NULL)
2009 return -ENOMEM;
2010 }
Li Zefan5a3eb9f2008-07-29 22:33:18 -07002011 if (nbytes && copy_from_user(buffer, userbuf, nbytes)) {
2012 retval = -EFAULT;
2013 goto out;
2014 }
Paul Menagedb3b1492008-07-25 01:46:58 -07002015
2016 buffer[nbytes] = 0; /* nul-terminate */
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002017 retval = cft->write_string(cgrp, cft, strstrip(buffer));
Paul Menagedb3b1492008-07-25 01:46:58 -07002018 if (!retval)
2019 retval = nbytes;
Li Zefan5a3eb9f2008-07-29 22:33:18 -07002020out:
Paul Menagedb3b1492008-07-25 01:46:58 -07002021 if (buffer != local_buffer)
2022 kfree(buffer);
2023 return retval;
2024}
2025
Paul Menageddbcc7e2007-10-18 23:39:30 -07002026static ssize_t cgroup_file_write(struct file *file, const char __user *buf,
2027 size_t nbytes, loff_t *ppos)
2028{
2029 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07002030 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002031
Li Zefan75139b82009-01-07 18:07:33 -08002032 if (cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07002033 return -ENODEV;
Paul Menage355e0c42007-10-18 23:39:33 -07002034 if (cft->write)
Paul Menagebd89aab2007-10-18 23:40:44 -07002035 return cft->write(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002036 if (cft->write_u64 || cft->write_s64)
2037 return cgroup_write_X64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagedb3b1492008-07-25 01:46:58 -07002038 if (cft->write_string)
2039 return cgroup_write_string(cgrp, cft, file, buf, nbytes, ppos);
Pavel Emelyanovd447ea22008-04-29 01:00:08 -07002040 if (cft->trigger) {
2041 int ret = cft->trigger(cgrp, (unsigned int)cft->private);
2042 return ret ? ret : nbytes;
2043 }
Paul Menage355e0c42007-10-18 23:39:33 -07002044 return -EINVAL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002045}
2046
Paul Menagef4c753b2008-04-29 00:59:56 -07002047static ssize_t cgroup_read_u64(struct cgroup *cgrp, struct cftype *cft,
2048 struct file *file,
2049 char __user *buf, size_t nbytes,
2050 loff_t *ppos)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002051{
Paul Menage84eea842008-07-25 01:47:00 -07002052 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagef4c753b2008-04-29 00:59:56 -07002053 u64 val = cft->read_u64(cgrp, cft);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002054 int len = sprintf(tmp, "%llu\n", (unsigned long long) val);
2055
2056 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2057}
2058
Paul Menagee73d2c62008-04-29 01:00:06 -07002059static ssize_t cgroup_read_s64(struct cgroup *cgrp, struct cftype *cft,
2060 struct file *file,
2061 char __user *buf, size_t nbytes,
2062 loff_t *ppos)
2063{
Paul Menage84eea842008-07-25 01:47:00 -07002064 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagee73d2c62008-04-29 01:00:06 -07002065 s64 val = cft->read_s64(cgrp, cft);
2066 int len = sprintf(tmp, "%lld\n", (long long) val);
2067
2068 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2069}
2070
Paul Menageddbcc7e2007-10-18 23:39:30 -07002071static ssize_t cgroup_file_read(struct file *file, char __user *buf,
2072 size_t nbytes, loff_t *ppos)
2073{
2074 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07002075 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002076
Li Zefan75139b82009-01-07 18:07:33 -08002077 if (cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07002078 return -ENODEV;
2079
2080 if (cft->read)
Paul Menagebd89aab2007-10-18 23:40:44 -07002081 return cft->read(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagef4c753b2008-04-29 00:59:56 -07002082 if (cft->read_u64)
2083 return cgroup_read_u64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002084 if (cft->read_s64)
2085 return cgroup_read_s64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002086 return -EINVAL;
2087}
2088
Paul Menage91796562008-04-29 01:00:01 -07002089/*
2090 * seqfile ops/methods for returning structured data. Currently just
2091 * supports string->u64 maps, but can be extended in future.
2092 */
2093
2094struct cgroup_seqfile_state {
2095 struct cftype *cft;
2096 struct cgroup *cgroup;
2097};
2098
2099static int cgroup_map_add(struct cgroup_map_cb *cb, const char *key, u64 value)
2100{
2101 struct seq_file *sf = cb->state;
2102 return seq_printf(sf, "%s %llu\n", key, (unsigned long long)value);
2103}
2104
2105static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2106{
2107 struct cgroup_seqfile_state *state = m->private;
2108 struct cftype *cft = state->cft;
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002109 if (cft->read_map) {
2110 struct cgroup_map_cb cb = {
2111 .fill = cgroup_map_add,
2112 .state = m,
2113 };
2114 return cft->read_map(state->cgroup, cft, &cb);
2115 }
2116 return cft->read_seq_string(state->cgroup, cft, m);
Paul Menage91796562008-04-29 01:00:01 -07002117}
2118
Adrian Bunk96930a62008-07-25 19:46:21 -07002119static int cgroup_seqfile_release(struct inode *inode, struct file *file)
Paul Menage91796562008-04-29 01:00:01 -07002120{
2121 struct seq_file *seq = file->private_data;
2122 kfree(seq->private);
2123 return single_release(inode, file);
2124}
2125
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002126static const struct file_operations cgroup_seqfile_operations = {
Paul Menage91796562008-04-29 01:00:01 -07002127 .read = seq_read,
Paul Menagee788e062008-07-25 01:46:59 -07002128 .write = cgroup_file_write,
Paul Menage91796562008-04-29 01:00:01 -07002129 .llseek = seq_lseek,
2130 .release = cgroup_seqfile_release,
2131};
2132
Paul Menageddbcc7e2007-10-18 23:39:30 -07002133static int cgroup_file_open(struct inode *inode, struct file *file)
2134{
2135 int err;
2136 struct cftype *cft;
2137
2138 err = generic_file_open(inode, file);
2139 if (err)
2140 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002141 cft = __d_cft(file->f_dentry);
Li Zefan75139b82009-01-07 18:07:33 -08002142
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002143 if (cft->read_map || cft->read_seq_string) {
Paul Menage91796562008-04-29 01:00:01 -07002144 struct cgroup_seqfile_state *state =
2145 kzalloc(sizeof(*state), GFP_USER);
2146 if (!state)
2147 return -ENOMEM;
2148 state->cft = cft;
2149 state->cgroup = __d_cgrp(file->f_dentry->d_parent);
2150 file->f_op = &cgroup_seqfile_operations;
2151 err = single_open(file, cgroup_seqfile_show, state);
2152 if (err < 0)
2153 kfree(state);
2154 } else if (cft->open)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002155 err = cft->open(inode, file);
2156 else
2157 err = 0;
2158
2159 return err;
2160}
2161
2162static int cgroup_file_release(struct inode *inode, struct file *file)
2163{
2164 struct cftype *cft = __d_cft(file->f_dentry);
2165 if (cft->release)
2166 return cft->release(inode, file);
2167 return 0;
2168}
2169
2170/*
2171 * cgroup_rename - Only allow simple rename of directories in place.
2172 */
2173static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry,
2174 struct inode *new_dir, struct dentry *new_dentry)
2175{
2176 if (!S_ISDIR(old_dentry->d_inode->i_mode))
2177 return -ENOTDIR;
2178 if (new_dentry->d_inode)
2179 return -EEXIST;
2180 if (old_dir != new_dir)
2181 return -EIO;
2182 return simple_rename(old_dir, old_dentry, new_dir, new_dentry);
2183}
2184
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002185static const struct file_operations cgroup_file_operations = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002186 .read = cgroup_file_read,
2187 .write = cgroup_file_write,
2188 .llseek = generic_file_llseek,
2189 .open = cgroup_file_open,
2190 .release = cgroup_file_release,
2191};
2192
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07002193static const struct inode_operations cgroup_dir_inode_operations = {
Nick Piggin5adcee12011-01-07 17:49:20 +11002194 .lookup = cgroup_lookup,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002195 .mkdir = cgroup_mkdir,
2196 .rmdir = cgroup_rmdir,
2197 .rename = cgroup_rename,
2198};
2199
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08002200/*
2201 * Check if a file is a control file
2202 */
2203static inline struct cftype *__file_cft(struct file *file)
2204{
2205 if (file->f_dentry->d_inode->i_fop != &cgroup_file_operations)
2206 return ERR_PTR(-EINVAL);
2207 return __d_cft(file->f_dentry);
2208}
2209
Nick Pigginfe15ce42011-01-07 17:49:23 +11002210static int cgroup_delete_dentry(const struct dentry *dentry)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002211{
Nick Piggin5adcee12011-01-07 17:49:20 +11002212 return 1;
2213}
2214
2215static struct dentry *cgroup_lookup(struct inode *dir,
2216 struct dentry *dentry, struct nameidata *nd)
2217{
2218 static const struct dentry_operations cgroup_dentry_operations = {
2219 .d_delete = cgroup_delete_dentry,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002220 .d_iput = cgroup_diput,
2221 };
2222
Nick Piggin5adcee12011-01-07 17:49:20 +11002223 if (dentry->d_name.len > NAME_MAX)
2224 return ERR_PTR(-ENAMETOOLONG);
2225 dentry->d_op = &cgroup_dentry_operations;
2226 d_add(dentry, NULL);
2227 return NULL;
2228}
2229
2230static int cgroup_create_file(struct dentry *dentry, mode_t mode,
2231 struct super_block *sb)
2232{
Paul Menageddbcc7e2007-10-18 23:39:30 -07002233 struct inode *inode;
2234
2235 if (!dentry)
2236 return -ENOENT;
2237 if (dentry->d_inode)
2238 return -EEXIST;
2239
2240 inode = cgroup_new_inode(mode, sb);
2241 if (!inode)
2242 return -ENOMEM;
2243
2244 if (S_ISDIR(mode)) {
2245 inode->i_op = &cgroup_dir_inode_operations;
2246 inode->i_fop = &simple_dir_operations;
2247
2248 /* start off with i_nlink == 2 (for "." entry) */
2249 inc_nlink(inode);
2250
2251 /* start with the directory inode held, so that we can
2252 * populate it without racing with another mkdir */
Paul Menage817929e2007-10-18 23:39:36 -07002253 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002254 } else if (S_ISREG(mode)) {
2255 inode->i_size = 0;
2256 inode->i_fop = &cgroup_file_operations;
2257 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002258 d_instantiate(dentry, inode);
2259 dget(dentry); /* Extra count - pin the dentry in core */
2260 return 0;
2261}
2262
2263/*
Li Zefana043e3b2008-02-23 15:24:09 -08002264 * cgroup_create_dir - create a directory for an object.
2265 * @cgrp: the cgroup we create the directory for. It must have a valid
2266 * ->parent field. And we are going to fill its ->dentry field.
2267 * @dentry: dentry of the new cgroup
2268 * @mode: mode to set on new directory.
Paul Menageddbcc7e2007-10-18 23:39:30 -07002269 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002270static int cgroup_create_dir(struct cgroup *cgrp, struct dentry *dentry,
Li Zefan099fca32009-04-02 16:57:29 -07002271 mode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002272{
2273 struct dentry *parent;
2274 int error = 0;
2275
Paul Menagebd89aab2007-10-18 23:40:44 -07002276 parent = cgrp->parent->dentry;
2277 error = cgroup_create_file(dentry, S_IFDIR | mode, cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002278 if (!error) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002279 dentry->d_fsdata = cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002280 inc_nlink(parent->d_inode);
Paul Menagea47295e2009-01-07 18:07:44 -08002281 rcu_assign_pointer(cgrp->dentry, dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002282 dget(dentry);
2283 }
2284 dput(dentry);
2285
2286 return error;
2287}
2288
Li Zefan099fca32009-04-02 16:57:29 -07002289/**
2290 * cgroup_file_mode - deduce file mode of a control file
2291 * @cft: the control file in question
2292 *
2293 * returns cft->mode if ->mode is not 0
2294 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
2295 * returns S_IRUGO if it has only a read handler
2296 * returns S_IWUSR if it has only a write hander
2297 */
2298static mode_t cgroup_file_mode(const struct cftype *cft)
2299{
2300 mode_t mode = 0;
2301
2302 if (cft->mode)
2303 return cft->mode;
2304
2305 if (cft->read || cft->read_u64 || cft->read_s64 ||
2306 cft->read_map || cft->read_seq_string)
2307 mode |= S_IRUGO;
2308
2309 if (cft->write || cft->write_u64 || cft->write_s64 ||
2310 cft->write_string || cft->trigger)
2311 mode |= S_IWUSR;
2312
2313 return mode;
2314}
2315
Paul Menagebd89aab2007-10-18 23:40:44 -07002316int cgroup_add_file(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002317 struct cgroup_subsys *subsys,
2318 const struct cftype *cft)
2319{
Paul Menagebd89aab2007-10-18 23:40:44 -07002320 struct dentry *dir = cgrp->dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002321 struct dentry *dentry;
2322 int error;
Li Zefan099fca32009-04-02 16:57:29 -07002323 mode_t mode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002324
2325 char name[MAX_CGROUP_TYPE_NAMELEN + MAX_CFTYPE_NAME + 2] = { 0 };
Paul Menagebd89aab2007-10-18 23:40:44 -07002326 if (subsys && !test_bit(ROOT_NOPREFIX, &cgrp->root->flags)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002327 strcpy(name, subsys->name);
2328 strcat(name, ".");
2329 }
2330 strcat(name, cft->name);
2331 BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex));
2332 dentry = lookup_one_len(name, dir, strlen(name));
2333 if (!IS_ERR(dentry)) {
Li Zefan099fca32009-04-02 16:57:29 -07002334 mode = cgroup_file_mode(cft);
2335 error = cgroup_create_file(dentry, mode | S_IFREG,
Paul Menagebd89aab2007-10-18 23:40:44 -07002336 cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002337 if (!error)
2338 dentry->d_fsdata = (void *)cft;
2339 dput(dentry);
2340 } else
2341 error = PTR_ERR(dentry);
2342 return error;
2343}
Ben Blume6a11052010-03-10 15:22:09 -08002344EXPORT_SYMBOL_GPL(cgroup_add_file);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002345
Paul Menagebd89aab2007-10-18 23:40:44 -07002346int cgroup_add_files(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002347 struct cgroup_subsys *subsys,
2348 const struct cftype cft[],
2349 int count)
2350{
2351 int i, err;
2352 for (i = 0; i < count; i++) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002353 err = cgroup_add_file(cgrp, subsys, &cft[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002354 if (err)
2355 return err;
2356 }
2357 return 0;
2358}
Ben Blume6a11052010-03-10 15:22:09 -08002359EXPORT_SYMBOL_GPL(cgroup_add_files);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002360
Li Zefana043e3b2008-02-23 15:24:09 -08002361/**
2362 * cgroup_task_count - count the number of tasks in a cgroup.
2363 * @cgrp: the cgroup in question
2364 *
2365 * Return the number of tasks in the cgroup.
2366 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002367int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002368{
2369 int count = 0;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07002370 struct cg_cgroup_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002371
Paul Menage817929e2007-10-18 23:39:36 -07002372 read_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07002373 list_for_each_entry(link, &cgrp->css_sets, cgrp_link_list) {
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07002374 count += atomic_read(&link->cg->refcount);
Paul Menage817929e2007-10-18 23:39:36 -07002375 }
2376 read_unlock(&css_set_lock);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002377 return count;
2378}
2379
2380/*
Paul Menage817929e2007-10-18 23:39:36 -07002381 * Advance a list_head iterator. The iterator should be positioned at
2382 * the start of a css_set
2383 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002384static void cgroup_advance_iter(struct cgroup *cgrp,
Paul Menage7717f7b2009-09-23 15:56:22 -07002385 struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002386{
2387 struct list_head *l = it->cg_link;
2388 struct cg_cgroup_link *link;
2389 struct css_set *cg;
2390
2391 /* Advance to the next non-empty css_set */
2392 do {
2393 l = l->next;
Paul Menagebd89aab2007-10-18 23:40:44 -07002394 if (l == &cgrp->css_sets) {
Paul Menage817929e2007-10-18 23:39:36 -07002395 it->cg_link = NULL;
2396 return;
2397 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002398 link = list_entry(l, struct cg_cgroup_link, cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07002399 cg = link->cg;
2400 } while (list_empty(&cg->tasks));
2401 it->cg_link = l;
2402 it->task = cg->tasks.next;
2403}
2404
Cliff Wickman31a7df02008-02-07 00:14:42 -08002405/*
2406 * To reduce the fork() overhead for systems that are not actually
2407 * using their cgroups capability, we don't maintain the lists running
2408 * through each css_set to its tasks until we see the list actually
2409 * used - in other words after the first call to cgroup_iter_start().
2410 *
2411 * The tasklist_lock is not held here, as do_each_thread() and
2412 * while_each_thread() are protected by RCU.
2413 */
Adrian Bunk3df91fe2008-04-29 00:59:54 -07002414static void cgroup_enable_task_cg_lists(void)
Cliff Wickman31a7df02008-02-07 00:14:42 -08002415{
2416 struct task_struct *p, *g;
2417 write_lock(&css_set_lock);
2418 use_task_css_set_links = 1;
2419 do_each_thread(g, p) {
2420 task_lock(p);
Li Zefan0e043882008-04-17 11:37:15 +08002421 /*
2422 * We should check if the process is exiting, otherwise
2423 * it will race with cgroup_exit() in that the list
2424 * entry won't be deleted though the process has exited.
2425 */
2426 if (!(p->flags & PF_EXITING) && list_empty(&p->cg_list))
Cliff Wickman31a7df02008-02-07 00:14:42 -08002427 list_add(&p->cg_list, &p->cgroups->tasks);
2428 task_unlock(p);
2429 } while_each_thread(g, p);
2430 write_unlock(&css_set_lock);
2431}
2432
Paul Menagebd89aab2007-10-18 23:40:44 -07002433void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002434{
2435 /*
2436 * The first time anyone tries to iterate across a cgroup,
2437 * we need to enable the list linking each css_set to its
2438 * tasks, and fix up all existing tasks.
2439 */
Cliff Wickman31a7df02008-02-07 00:14:42 -08002440 if (!use_task_css_set_links)
2441 cgroup_enable_task_cg_lists();
2442
Paul Menage817929e2007-10-18 23:39:36 -07002443 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07002444 it->cg_link = &cgrp->css_sets;
2445 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07002446}
2447
Paul Menagebd89aab2007-10-18 23:40:44 -07002448struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -07002449 struct cgroup_iter *it)
2450{
2451 struct task_struct *res;
2452 struct list_head *l = it->task;
Lai Jiangshan2019f632009-01-07 18:07:36 -08002453 struct cg_cgroup_link *link;
Paul Menage817929e2007-10-18 23:39:36 -07002454
2455 /* If the iterator cg is NULL, we have no tasks */
2456 if (!it->cg_link)
2457 return NULL;
2458 res = list_entry(l, struct task_struct, cg_list);
2459 /* Advance iterator to find next entry */
2460 l = l->next;
Lai Jiangshan2019f632009-01-07 18:07:36 -08002461 link = list_entry(it->cg_link, struct cg_cgroup_link, cgrp_link_list);
2462 if (l == &link->cg->tasks) {
Paul Menage817929e2007-10-18 23:39:36 -07002463 /* We reached the end of this task list - move on to
2464 * the next cg_cgroup_link */
Paul Menagebd89aab2007-10-18 23:40:44 -07002465 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07002466 } else {
2467 it->task = l;
2468 }
2469 return res;
2470}
2471
Paul Menagebd89aab2007-10-18 23:40:44 -07002472void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002473{
2474 read_unlock(&css_set_lock);
2475}
2476
Cliff Wickman31a7df02008-02-07 00:14:42 -08002477static inline int started_after_time(struct task_struct *t1,
2478 struct timespec *time,
2479 struct task_struct *t2)
2480{
2481 int start_diff = timespec_compare(&t1->start_time, time);
2482 if (start_diff > 0) {
2483 return 1;
2484 } else if (start_diff < 0) {
2485 return 0;
2486 } else {
2487 /*
2488 * Arbitrarily, if two processes started at the same
2489 * time, we'll say that the lower pointer value
2490 * started first. Note that t2 may have exited by now
2491 * so this may not be a valid pointer any longer, but
2492 * that's fine - it still serves to distinguish
2493 * between two tasks started (effectively) simultaneously.
2494 */
2495 return t1 > t2;
2496 }
2497}
2498
2499/*
2500 * This function is a callback from heap_insert() and is used to order
2501 * the heap.
2502 * In this case we order the heap in descending task start time.
2503 */
2504static inline int started_after(void *p1, void *p2)
2505{
2506 struct task_struct *t1 = p1;
2507 struct task_struct *t2 = p2;
2508 return started_after_time(t1, &t2->start_time, t2);
2509}
2510
2511/**
2512 * cgroup_scan_tasks - iterate though all the tasks in a cgroup
2513 * @scan: struct cgroup_scanner containing arguments for the scan
2514 *
2515 * Arguments include pointers to callback functions test_task() and
2516 * process_task().
2517 * Iterate through all the tasks in a cgroup, calling test_task() for each,
2518 * and if it returns true, call process_task() for it also.
2519 * The test_task pointer may be NULL, meaning always true (select all tasks).
2520 * Effectively duplicates cgroup_iter_{start,next,end}()
2521 * but does not lock css_set_lock for the call to process_task().
2522 * The struct cgroup_scanner may be embedded in any structure of the caller's
2523 * creation.
2524 * It is guaranteed that process_task() will act on every task that
2525 * is a member of the cgroup for the duration of this call. This
2526 * function may or may not call process_task() for tasks that exit
2527 * or move to a different cgroup during the call, or are forked or
2528 * move into the cgroup during the call.
2529 *
2530 * Note that test_task() may be called with locks held, and may in some
2531 * situations be called multiple times for the same task, so it should
2532 * be cheap.
2533 * If the heap pointer in the struct cgroup_scanner is non-NULL, a heap has been
2534 * pre-allocated and will be used for heap operations (and its "gt" member will
2535 * be overwritten), else a temporary heap will be used (allocation of which
2536 * may cause this function to fail).
2537 */
2538int cgroup_scan_tasks(struct cgroup_scanner *scan)
2539{
2540 int retval, i;
2541 struct cgroup_iter it;
2542 struct task_struct *p, *dropped;
2543 /* Never dereference latest_task, since it's not refcounted */
2544 struct task_struct *latest_task = NULL;
2545 struct ptr_heap tmp_heap;
2546 struct ptr_heap *heap;
2547 struct timespec latest_time = { 0, 0 };
2548
2549 if (scan->heap) {
2550 /* The caller supplied our heap and pre-allocated its memory */
2551 heap = scan->heap;
2552 heap->gt = &started_after;
2553 } else {
2554 /* We need to allocate our own heap memory */
2555 heap = &tmp_heap;
2556 retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after);
2557 if (retval)
2558 /* cannot allocate the heap */
2559 return retval;
2560 }
2561
2562 again:
2563 /*
2564 * Scan tasks in the cgroup, using the scanner's "test_task" callback
2565 * to determine which are of interest, and using the scanner's
2566 * "process_task" callback to process any of them that need an update.
2567 * Since we don't want to hold any locks during the task updates,
2568 * gather tasks to be processed in a heap structure.
2569 * The heap is sorted by descending task start time.
2570 * If the statically-sized heap fills up, we overflow tasks that
2571 * started later, and in future iterations only consider tasks that
2572 * started after the latest task in the previous pass. This
2573 * guarantees forward progress and that we don't miss any tasks.
2574 */
2575 heap->size = 0;
2576 cgroup_iter_start(scan->cg, &it);
2577 while ((p = cgroup_iter_next(scan->cg, &it))) {
2578 /*
2579 * Only affect tasks that qualify per the caller's callback,
2580 * if he provided one
2581 */
2582 if (scan->test_task && !scan->test_task(p, scan))
2583 continue;
2584 /*
2585 * Only process tasks that started after the last task
2586 * we processed
2587 */
2588 if (!started_after_time(p, &latest_time, latest_task))
2589 continue;
2590 dropped = heap_insert(heap, p);
2591 if (dropped == NULL) {
2592 /*
2593 * The new task was inserted; the heap wasn't
2594 * previously full
2595 */
2596 get_task_struct(p);
2597 } else if (dropped != p) {
2598 /*
2599 * The new task was inserted, and pushed out a
2600 * different task
2601 */
2602 get_task_struct(p);
2603 put_task_struct(dropped);
2604 }
2605 /*
2606 * Else the new task was newer than anything already in
2607 * the heap and wasn't inserted
2608 */
2609 }
2610 cgroup_iter_end(scan->cg, &it);
2611
2612 if (heap->size) {
2613 for (i = 0; i < heap->size; i++) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07002614 struct task_struct *q = heap->ptrs[i];
Cliff Wickman31a7df02008-02-07 00:14:42 -08002615 if (i == 0) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07002616 latest_time = q->start_time;
2617 latest_task = q;
Cliff Wickman31a7df02008-02-07 00:14:42 -08002618 }
2619 /* Process the task per the caller's callback */
Paul Jackson4fe91d52008-04-29 00:59:55 -07002620 scan->process_task(q, scan);
2621 put_task_struct(q);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002622 }
2623 /*
2624 * If we had to process any tasks at all, scan again
2625 * in case some of them were in the middle of forking
2626 * children that didn't get processed.
2627 * Not the most efficient way to do it, but it avoids
2628 * having to take callback_mutex in the fork path
2629 */
2630 goto again;
2631 }
2632 if (heap == &tmp_heap)
2633 heap_free(&tmp_heap);
2634 return 0;
2635}
2636
Paul Menage817929e2007-10-18 23:39:36 -07002637/*
Ben Blum102a7752009-09-23 15:56:26 -07002638 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07002639 *
2640 * Reading this file can return large amounts of data if a cgroup has
2641 * *lots* of attached tasks. So it may need several calls to read(),
2642 * but we cannot guarantee that the information we produce is correct
2643 * unless we produce it entirely atomically.
2644 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07002645 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07002646
2647/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07002648 * The following two functions "fix" the issue where there are more pids
2649 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
2650 * TODO: replace with a kernel-wide solution to this problem
2651 */
2652#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
2653static void *pidlist_allocate(int count)
2654{
2655 if (PIDLIST_TOO_LARGE(count))
2656 return vmalloc(count * sizeof(pid_t));
2657 else
2658 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
2659}
2660static void pidlist_free(void *p)
2661{
2662 if (is_vmalloc_addr(p))
2663 vfree(p);
2664 else
2665 kfree(p);
2666}
2667static void *pidlist_resize(void *p, int newcount)
2668{
2669 void *newlist;
2670 /* note: if new alloc fails, old p will still be valid either way */
2671 if (is_vmalloc_addr(p)) {
2672 newlist = vmalloc(newcount * sizeof(pid_t));
2673 if (!newlist)
2674 return NULL;
2675 memcpy(newlist, p, newcount * sizeof(pid_t));
2676 vfree(p);
2677 } else {
2678 newlist = krealloc(p, newcount * sizeof(pid_t), GFP_KERNEL);
2679 }
2680 return newlist;
2681}
2682
2683/*
Ben Blum102a7752009-09-23 15:56:26 -07002684 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
2685 * If the new stripped list is sufficiently smaller and there's enough memory
2686 * to allocate a new buffer, will let go of the unneeded memory. Returns the
2687 * number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07002688 */
Ben Blum102a7752009-09-23 15:56:26 -07002689/* is the size difference enough that we should re-allocate the array? */
2690#define PIDLIST_REALLOC_DIFFERENCE(old, new) ((old) - PAGE_SIZE >= (new))
2691static int pidlist_uniq(pid_t **p, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002692{
Ben Blum102a7752009-09-23 15:56:26 -07002693 int src, dest = 1;
2694 pid_t *list = *p;
2695 pid_t *newlist;
2696
2697 /*
2698 * we presume the 0th element is unique, so i starts at 1. trivial
2699 * edge cases first; no work needs to be done for either
2700 */
2701 if (length == 0 || length == 1)
2702 return length;
2703 /* src and dest walk down the list; dest counts unique elements */
2704 for (src = 1; src < length; src++) {
2705 /* find next unique element */
2706 while (list[src] == list[src-1]) {
2707 src++;
2708 if (src == length)
2709 goto after;
2710 }
2711 /* dest always points to where the next unique element goes */
2712 list[dest] = list[src];
2713 dest++;
2714 }
2715after:
2716 /*
2717 * if the length difference is large enough, we want to allocate a
2718 * smaller buffer to save memory. if this fails due to out of memory,
2719 * we'll just stay with what we've got.
2720 */
2721 if (PIDLIST_REALLOC_DIFFERENCE(length, dest)) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07002722 newlist = pidlist_resize(list, dest);
Ben Blum102a7752009-09-23 15:56:26 -07002723 if (newlist)
2724 *p = newlist;
2725 }
2726 return dest;
2727}
2728
2729static int cmppid(const void *a, const void *b)
2730{
2731 return *(pid_t *)a - *(pid_t *)b;
2732}
2733
2734/*
Ben Blum72a8cb32009-09-23 15:56:27 -07002735 * find the appropriate pidlist for our purpose (given procs vs tasks)
2736 * returns with the lock on that pidlist already held, and takes care
2737 * of the use count, or returns NULL with no locks held if we're out of
2738 * memory.
2739 */
2740static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
2741 enum cgroup_filetype type)
2742{
2743 struct cgroup_pidlist *l;
2744 /* don't need task_nsproxy() if we're looking at ourself */
Li Zefanb70cc5f2010-03-10 15:22:12 -08002745 struct pid_namespace *ns = current->nsproxy->pid_ns;
2746
Ben Blum72a8cb32009-09-23 15:56:27 -07002747 /*
2748 * We can't drop the pidlist_mutex before taking the l->mutex in case
2749 * the last ref-holder is trying to remove l from the list at the same
2750 * time. Holding the pidlist_mutex precludes somebody taking whichever
2751 * list we find out from under us - compare release_pid_array().
2752 */
2753 mutex_lock(&cgrp->pidlist_mutex);
2754 list_for_each_entry(l, &cgrp->pidlists, links) {
2755 if (l->key.type == type && l->key.ns == ns) {
Ben Blum72a8cb32009-09-23 15:56:27 -07002756 /* make sure l doesn't vanish out from under us */
2757 down_write(&l->mutex);
2758 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07002759 return l;
2760 }
2761 }
2762 /* entry not found; create a new one */
2763 l = kmalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
2764 if (!l) {
2765 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07002766 return l;
2767 }
2768 init_rwsem(&l->mutex);
2769 down_write(&l->mutex);
2770 l->key.type = type;
Li Zefanb70cc5f2010-03-10 15:22:12 -08002771 l->key.ns = get_pid_ns(ns);
Ben Blum72a8cb32009-09-23 15:56:27 -07002772 l->use_count = 0; /* don't increment here */
2773 l->list = NULL;
2774 l->owner = cgrp;
2775 list_add(&l->links, &cgrp->pidlists);
2776 mutex_unlock(&cgrp->pidlist_mutex);
2777 return l;
2778}
2779
2780/*
Ben Blum102a7752009-09-23 15:56:26 -07002781 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
2782 */
Ben Blum72a8cb32009-09-23 15:56:27 -07002783static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
2784 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07002785{
2786 pid_t *array;
2787 int length;
2788 int pid, n = 0; /* used for populating the array */
Paul Menage817929e2007-10-18 23:39:36 -07002789 struct cgroup_iter it;
2790 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07002791 struct cgroup_pidlist *l;
2792
2793 /*
2794 * If cgroup gets more users after we read count, we won't have
2795 * enough space - tough. This race is indistinguishable to the
2796 * caller from the case that the additional cgroup users didn't
2797 * show up until sometime later on.
2798 */
2799 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07002800 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07002801 if (!array)
2802 return -ENOMEM;
2803 /* now, populate the array */
Paul Menagebd89aab2007-10-18 23:40:44 -07002804 cgroup_iter_start(cgrp, &it);
2805 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Ben Blum102a7752009-09-23 15:56:26 -07002806 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07002807 break;
Ben Blum102a7752009-09-23 15:56:26 -07002808 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07002809 if (type == CGROUP_FILE_PROCS)
2810 pid = task_tgid_vnr(tsk);
2811 else
2812 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07002813 if (pid > 0) /* make sure to only use valid results */
2814 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07002815 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002816 cgroup_iter_end(cgrp, &it);
Ben Blum102a7752009-09-23 15:56:26 -07002817 length = n;
2818 /* now sort & (if procs) strip out duplicates */
2819 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07002820 if (type == CGROUP_FILE_PROCS)
Ben Blum102a7752009-09-23 15:56:26 -07002821 length = pidlist_uniq(&array, length);
Ben Blum72a8cb32009-09-23 15:56:27 -07002822 l = cgroup_pidlist_find(cgrp, type);
2823 if (!l) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07002824 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07002825 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07002826 }
Ben Blum72a8cb32009-09-23 15:56:27 -07002827 /* store array, freeing old if necessary - lock already held */
Ben Blumd1d9fd32009-09-23 15:56:28 -07002828 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07002829 l->list = array;
2830 l->length = length;
2831 l->use_count++;
2832 up_write(&l->mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07002833 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07002834 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002835}
2836
Balbir Singh846c7bb2007-10-18 23:39:44 -07002837/**
Li Zefana043e3b2008-02-23 15:24:09 -08002838 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07002839 * @stats: cgroupstats to fill information into
2840 * @dentry: A dentry entry belonging to the cgroup for which stats have
2841 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08002842 *
2843 * Build and fill cgroupstats so that taskstats can export it to user
2844 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07002845 */
2846int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
2847{
2848 int ret = -EINVAL;
Paul Menagebd89aab2007-10-18 23:40:44 -07002849 struct cgroup *cgrp;
Balbir Singh846c7bb2007-10-18 23:39:44 -07002850 struct cgroup_iter it;
2851 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08002852
Balbir Singh846c7bb2007-10-18 23:39:44 -07002853 /*
Li Zefan33d283b2008-11-19 15:36:48 -08002854 * Validate dentry by checking the superblock operations,
2855 * and make sure it's a directory.
Balbir Singh846c7bb2007-10-18 23:39:44 -07002856 */
Li Zefan33d283b2008-11-19 15:36:48 -08002857 if (dentry->d_sb->s_op != &cgroup_ops ||
2858 !S_ISDIR(dentry->d_inode->i_mode))
Balbir Singh846c7bb2007-10-18 23:39:44 -07002859 goto err;
2860
2861 ret = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07002862 cgrp = dentry->d_fsdata;
Balbir Singh846c7bb2007-10-18 23:39:44 -07002863
Paul Menagebd89aab2007-10-18 23:40:44 -07002864 cgroup_iter_start(cgrp, &it);
2865 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07002866 switch (tsk->state) {
2867 case TASK_RUNNING:
2868 stats->nr_running++;
2869 break;
2870 case TASK_INTERRUPTIBLE:
2871 stats->nr_sleeping++;
2872 break;
2873 case TASK_UNINTERRUPTIBLE:
2874 stats->nr_uninterruptible++;
2875 break;
2876 case TASK_STOPPED:
2877 stats->nr_stopped++;
2878 break;
2879 default:
2880 if (delayacct_is_task_waiting_on_io(tsk))
2881 stats->nr_io_wait++;
2882 break;
2883 }
2884 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002885 cgroup_iter_end(cgrp, &it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07002886
Balbir Singh846c7bb2007-10-18 23:39:44 -07002887err:
2888 return ret;
2889}
2890
Paul Menage8f3ff202009-09-23 15:56:25 -07002891
Paul Menagecc31edc2008-10-18 20:28:04 -07002892/*
Ben Blum102a7752009-09-23 15:56:26 -07002893 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07002894 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07002895 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07002896 */
2897
Ben Blum102a7752009-09-23 15:56:26 -07002898static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07002899{
2900 /*
2901 * Initially we receive a position value that corresponds to
2902 * one more than the last pid shown (or 0 on the first call or
2903 * after a seek to the start). Use a binary-search to find the
2904 * next pid to display, if any
2905 */
Ben Blum102a7752009-09-23 15:56:26 -07002906 struct cgroup_pidlist *l = s->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07002907 int index = 0, pid = *pos;
2908 int *iter;
2909
Ben Blum102a7752009-09-23 15:56:26 -07002910 down_read(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07002911 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07002912 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11002913
Paul Menagecc31edc2008-10-18 20:28:04 -07002914 while (index < end) {
2915 int mid = (index + end) / 2;
Ben Blum102a7752009-09-23 15:56:26 -07002916 if (l->list[mid] == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07002917 index = mid;
2918 break;
Ben Blum102a7752009-09-23 15:56:26 -07002919 } else if (l->list[mid] <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07002920 index = mid + 1;
2921 else
2922 end = mid;
2923 }
2924 }
2925 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07002926 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07002927 return NULL;
2928 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07002929 iter = l->list + index;
Paul Menagecc31edc2008-10-18 20:28:04 -07002930 *pos = *iter;
2931 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002932}
2933
Ben Blum102a7752009-09-23 15:56:26 -07002934static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07002935{
Ben Blum102a7752009-09-23 15:56:26 -07002936 struct cgroup_pidlist *l = s->private;
2937 up_read(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07002938}
2939
Ben Blum102a7752009-09-23 15:56:26 -07002940static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07002941{
Ben Blum102a7752009-09-23 15:56:26 -07002942 struct cgroup_pidlist *l = s->private;
2943 pid_t *p = v;
2944 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07002945 /*
2946 * Advance to the next pid in the array. If this goes off the
2947 * end, we're done
2948 */
2949 p++;
2950 if (p >= end) {
2951 return NULL;
2952 } else {
2953 *pos = *p;
2954 return p;
2955 }
2956}
2957
Ben Blum102a7752009-09-23 15:56:26 -07002958static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07002959{
2960 return seq_printf(s, "%d\n", *(int *)v);
2961}
2962
Ben Blum102a7752009-09-23 15:56:26 -07002963/*
2964 * seq_operations functions for iterating on pidlists through seq_file -
2965 * independent of whether it's tasks or procs
2966 */
2967static const struct seq_operations cgroup_pidlist_seq_operations = {
2968 .start = cgroup_pidlist_start,
2969 .stop = cgroup_pidlist_stop,
2970 .next = cgroup_pidlist_next,
2971 .show = cgroup_pidlist_show,
Paul Menagecc31edc2008-10-18 20:28:04 -07002972};
2973
Ben Blum102a7752009-09-23 15:56:26 -07002974static void cgroup_release_pid_array(struct cgroup_pidlist *l)
Paul Menagecc31edc2008-10-18 20:28:04 -07002975{
Ben Blum72a8cb32009-09-23 15:56:27 -07002976 /*
2977 * the case where we're the last user of this particular pidlist will
2978 * have us remove it from the cgroup's list, which entails taking the
2979 * mutex. since in pidlist_find the pidlist->lock depends on cgroup->
2980 * pidlist_mutex, we have to take pidlist_mutex first.
2981 */
2982 mutex_lock(&l->owner->pidlist_mutex);
Ben Blum102a7752009-09-23 15:56:26 -07002983 down_write(&l->mutex);
2984 BUG_ON(!l->use_count);
2985 if (!--l->use_count) {
Ben Blum72a8cb32009-09-23 15:56:27 -07002986 /* we're the last user if refcount is 0; remove and free */
2987 list_del(&l->links);
2988 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blumd1d9fd32009-09-23 15:56:28 -07002989 pidlist_free(l->list);
Ben Blum72a8cb32009-09-23 15:56:27 -07002990 put_pid_ns(l->key.ns);
2991 up_write(&l->mutex);
2992 kfree(l);
2993 return;
Paul Menagecc31edc2008-10-18 20:28:04 -07002994 }
Ben Blum72a8cb32009-09-23 15:56:27 -07002995 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blum102a7752009-09-23 15:56:26 -07002996 up_write(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07002997}
2998
Ben Blum102a7752009-09-23 15:56:26 -07002999static int cgroup_pidlist_release(struct inode *inode, struct file *file)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003000{
Ben Blum102a7752009-09-23 15:56:26 -07003001 struct cgroup_pidlist *l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003002 if (!(file->f_mode & FMODE_READ))
3003 return 0;
Ben Blum102a7752009-09-23 15:56:26 -07003004 /*
3005 * the seq_file will only be initialized if the file was opened for
3006 * reading; hence we check if it's not null only in that case.
3007 */
3008 l = ((struct seq_file *)file->private_data)->private;
3009 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07003010 return seq_release(inode, file);
3011}
3012
Ben Blum102a7752009-09-23 15:56:26 -07003013static const struct file_operations cgroup_pidlist_operations = {
Paul Menagecc31edc2008-10-18 20:28:04 -07003014 .read = seq_read,
3015 .llseek = seq_lseek,
3016 .write = cgroup_file_write,
Ben Blum102a7752009-09-23 15:56:26 -07003017 .release = cgroup_pidlist_release,
Paul Menagecc31edc2008-10-18 20:28:04 -07003018};
3019
3020/*
Ben Blum102a7752009-09-23 15:56:26 -07003021 * The following functions handle opens on a file that displays a pidlist
3022 * (tasks or procs). Prepare an array of the process/thread IDs of whoever's
3023 * in the cgroup.
Paul Menagecc31edc2008-10-18 20:28:04 -07003024 */
Ben Blum102a7752009-09-23 15:56:26 -07003025/* helper function for the two below it */
Ben Blum72a8cb32009-09-23 15:56:27 -07003026static int cgroup_pidlist_open(struct file *file, enum cgroup_filetype type)
Paul Menagecc31edc2008-10-18 20:28:04 -07003027{
3028 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Ben Blum72a8cb32009-09-23 15:56:27 -07003029 struct cgroup_pidlist *l;
Paul Menagecc31edc2008-10-18 20:28:04 -07003030 int retval;
3031
3032 /* Nothing to do for write-only files */
3033 if (!(file->f_mode & FMODE_READ))
3034 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003035
Ben Blum102a7752009-09-23 15:56:26 -07003036 /* have the array populated */
Ben Blum72a8cb32009-09-23 15:56:27 -07003037 retval = pidlist_array_load(cgrp, type, &l);
Ben Blum102a7752009-09-23 15:56:26 -07003038 if (retval)
3039 return retval;
3040 /* configure file information */
3041 file->f_op = &cgroup_pidlist_operations;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003042
Ben Blum102a7752009-09-23 15:56:26 -07003043 retval = seq_open(file, &cgroup_pidlist_seq_operations);
Paul Menagecc31edc2008-10-18 20:28:04 -07003044 if (retval) {
Ben Blum102a7752009-09-23 15:56:26 -07003045 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07003046 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003047 }
Ben Blum102a7752009-09-23 15:56:26 -07003048 ((struct seq_file *)file->private_data)->private = l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003049 return 0;
3050}
Ben Blum102a7752009-09-23 15:56:26 -07003051static int cgroup_tasks_open(struct inode *unused, struct file *file)
3052{
Ben Blum72a8cb32009-09-23 15:56:27 -07003053 return cgroup_pidlist_open(file, CGROUP_FILE_TASKS);
Ben Blum102a7752009-09-23 15:56:26 -07003054}
3055static int cgroup_procs_open(struct inode *unused, struct file *file)
3056{
Ben Blum72a8cb32009-09-23 15:56:27 -07003057 return cgroup_pidlist_open(file, CGROUP_FILE_PROCS);
Ben Blum102a7752009-09-23 15:56:26 -07003058}
Paul Menagebbcb81d2007-10-18 23:39:32 -07003059
Paul Menagebd89aab2007-10-18 23:40:44 -07003060static u64 cgroup_read_notify_on_release(struct cgroup *cgrp,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003061 struct cftype *cft)
3062{
Paul Menagebd89aab2007-10-18 23:40:44 -07003063 return notify_on_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003064}
3065
Paul Menage6379c102008-07-25 01:47:01 -07003066static int cgroup_write_notify_on_release(struct cgroup *cgrp,
3067 struct cftype *cft,
3068 u64 val)
3069{
3070 clear_bit(CGRP_RELEASABLE, &cgrp->flags);
3071 if (val)
3072 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3073 else
3074 clear_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3075 return 0;
3076}
3077
Paul Menagebbcb81d2007-10-18 23:39:32 -07003078/*
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003079 * Unregister event and free resources.
3080 *
3081 * Gets called from workqueue.
3082 */
3083static void cgroup_event_remove(struct work_struct *work)
3084{
3085 struct cgroup_event *event = container_of(work, struct cgroup_event,
3086 remove);
3087 struct cgroup *cgrp = event->cgrp;
3088
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003089 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3090
3091 eventfd_ctx_put(event->eventfd);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003092 kfree(event);
Kirill A. Shutemova0a4db52010-03-10 15:22:34 -08003093 dput(cgrp->dentry);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003094}
3095
3096/*
3097 * Gets called on POLLHUP on eventfd when user closes it.
3098 *
3099 * Called with wqh->lock held and interrupts disabled.
3100 */
3101static int cgroup_event_wake(wait_queue_t *wait, unsigned mode,
3102 int sync, void *key)
3103{
3104 struct cgroup_event *event = container_of(wait,
3105 struct cgroup_event, wait);
3106 struct cgroup *cgrp = event->cgrp;
3107 unsigned long flags = (unsigned long)key;
3108
3109 if (flags & POLLHUP) {
Changli Gaoa93d2f12010-05-07 14:33:26 +08003110 __remove_wait_queue(event->wqh, &event->wait);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003111 spin_lock(&cgrp->event_list_lock);
3112 list_del(&event->list);
3113 spin_unlock(&cgrp->event_list_lock);
3114 /*
3115 * We are in atomic context, but cgroup_event_remove() may
3116 * sleep, so we have to call it in workqueue.
3117 */
3118 schedule_work(&event->remove);
3119 }
3120
3121 return 0;
3122}
3123
3124static void cgroup_event_ptable_queue_proc(struct file *file,
3125 wait_queue_head_t *wqh, poll_table *pt)
3126{
3127 struct cgroup_event *event = container_of(pt,
3128 struct cgroup_event, pt);
3129
3130 event->wqh = wqh;
3131 add_wait_queue(wqh, &event->wait);
3132}
3133
3134/*
3135 * Parse input and register new cgroup event handler.
3136 *
3137 * Input must be in format '<event_fd> <control_fd> <args>'.
3138 * Interpretation of args is defined by control file implementation.
3139 */
3140static int cgroup_write_event_control(struct cgroup *cgrp, struct cftype *cft,
3141 const char *buffer)
3142{
3143 struct cgroup_event *event = NULL;
3144 unsigned int efd, cfd;
3145 struct file *efile = NULL;
3146 struct file *cfile = NULL;
3147 char *endp;
3148 int ret;
3149
3150 efd = simple_strtoul(buffer, &endp, 10);
3151 if (*endp != ' ')
3152 return -EINVAL;
3153 buffer = endp + 1;
3154
3155 cfd = simple_strtoul(buffer, &endp, 10);
3156 if ((*endp != ' ') && (*endp != '\0'))
3157 return -EINVAL;
3158 buffer = endp + 1;
3159
3160 event = kzalloc(sizeof(*event), GFP_KERNEL);
3161 if (!event)
3162 return -ENOMEM;
3163 event->cgrp = cgrp;
3164 INIT_LIST_HEAD(&event->list);
3165 init_poll_funcptr(&event->pt, cgroup_event_ptable_queue_proc);
3166 init_waitqueue_func_entry(&event->wait, cgroup_event_wake);
3167 INIT_WORK(&event->remove, cgroup_event_remove);
3168
3169 efile = eventfd_fget(efd);
3170 if (IS_ERR(efile)) {
3171 ret = PTR_ERR(efile);
3172 goto fail;
3173 }
3174
3175 event->eventfd = eventfd_ctx_fileget(efile);
3176 if (IS_ERR(event->eventfd)) {
3177 ret = PTR_ERR(event->eventfd);
3178 goto fail;
3179 }
3180
3181 cfile = fget(cfd);
3182 if (!cfile) {
3183 ret = -EBADF;
3184 goto fail;
3185 }
3186
3187 /* the process need read permission on control file */
3188 ret = file_permission(cfile, MAY_READ);
3189 if (ret < 0)
3190 goto fail;
3191
3192 event->cft = __file_cft(cfile);
3193 if (IS_ERR(event->cft)) {
3194 ret = PTR_ERR(event->cft);
3195 goto fail;
3196 }
3197
3198 if (!event->cft->register_event || !event->cft->unregister_event) {
3199 ret = -EINVAL;
3200 goto fail;
3201 }
3202
3203 ret = event->cft->register_event(cgrp, event->cft,
3204 event->eventfd, buffer);
3205 if (ret)
3206 goto fail;
3207
3208 if (efile->f_op->poll(efile, &event->pt) & POLLHUP) {
3209 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3210 ret = 0;
3211 goto fail;
3212 }
3213
Kirill A. Shutemova0a4db52010-03-10 15:22:34 -08003214 /*
3215 * Events should be removed after rmdir of cgroup directory, but before
3216 * destroying subsystem state objects. Let's take reference to cgroup
3217 * directory dentry to do that.
3218 */
3219 dget(cgrp->dentry);
3220
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003221 spin_lock(&cgrp->event_list_lock);
3222 list_add(&event->list, &cgrp->event_list);
3223 spin_unlock(&cgrp->event_list_lock);
3224
3225 fput(cfile);
3226 fput(efile);
3227
3228 return 0;
3229
3230fail:
3231 if (cfile)
3232 fput(cfile);
3233
3234 if (event && event->eventfd && !IS_ERR(event->eventfd))
3235 eventfd_ctx_put(event->eventfd);
3236
3237 if (!IS_ERR_OR_NULL(efile))
3238 fput(efile);
3239
3240 kfree(event);
3241
3242 return ret;
3243}
3244
Daniel Lezcano97978e62010-10-27 15:33:35 -07003245static u64 cgroup_clone_children_read(struct cgroup *cgrp,
3246 struct cftype *cft)
3247{
3248 return clone_children(cgrp);
3249}
3250
3251static int cgroup_clone_children_write(struct cgroup *cgrp,
3252 struct cftype *cft,
3253 u64 val)
3254{
3255 if (val)
3256 set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3257 else
3258 clear_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3259 return 0;
3260}
3261
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003262/*
Paul Menagebbcb81d2007-10-18 23:39:32 -07003263 * for the common functions, 'private' gives the type of file
3264 */
Ben Blum102a7752009-09-23 15:56:26 -07003265/* for hysterical raisins, we can't put this on the older files */
3266#define CGROUP_FILE_GENERIC_PREFIX "cgroup."
Paul Menage81a6a5c2007-10-18 23:39:38 -07003267static struct cftype files[] = {
3268 {
3269 .name = "tasks",
3270 .open = cgroup_tasks_open,
Paul Menageaf351022008-07-25 01:47:01 -07003271 .write_u64 = cgroup_tasks_write,
Ben Blum102a7752009-09-23 15:56:26 -07003272 .release = cgroup_pidlist_release,
Li Zefan099fca32009-04-02 16:57:29 -07003273 .mode = S_IRUGO | S_IWUSR,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003274 },
Ben Blum102a7752009-09-23 15:56:26 -07003275 {
3276 .name = CGROUP_FILE_GENERIC_PREFIX "procs",
3277 .open = cgroup_procs_open,
3278 /* .write_u64 = cgroup_procs_write, TODO */
3279 .release = cgroup_pidlist_release,
3280 .mode = S_IRUGO,
3281 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003282 {
3283 .name = "notify_on_release",
Paul Menagef4c753b2008-04-29 00:59:56 -07003284 .read_u64 = cgroup_read_notify_on_release,
Paul Menage6379c102008-07-25 01:47:01 -07003285 .write_u64 = cgroup_write_notify_on_release,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003286 },
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003287 {
3288 .name = CGROUP_FILE_GENERIC_PREFIX "event_control",
3289 .write_string = cgroup_write_event_control,
3290 .mode = S_IWUGO,
3291 },
Daniel Lezcano97978e62010-10-27 15:33:35 -07003292 {
3293 .name = "cgroup.clone_children",
3294 .read_u64 = cgroup_clone_children_read,
3295 .write_u64 = cgroup_clone_children_write,
3296 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003297};
3298
3299static struct cftype cft_release_agent = {
3300 .name = "release_agent",
Paul Menagee788e062008-07-25 01:46:59 -07003301 .read_seq_string = cgroup_release_agent_show,
3302 .write_string = cgroup_release_agent_write,
3303 .max_write_len = PATH_MAX,
Paul Menagebbcb81d2007-10-18 23:39:32 -07003304};
3305
Paul Menagebd89aab2007-10-18 23:40:44 -07003306static int cgroup_populate_dir(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003307{
3308 int err;
3309 struct cgroup_subsys *ss;
3310
3311 /* First clear out any existing files */
Paul Menagebd89aab2007-10-18 23:40:44 -07003312 cgroup_clear_directory(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003313
Paul Menagebd89aab2007-10-18 23:40:44 -07003314 err = cgroup_add_files(cgrp, NULL, files, ARRAY_SIZE(files));
Paul Menagebbcb81d2007-10-18 23:39:32 -07003315 if (err < 0)
3316 return err;
3317
Paul Menagebd89aab2007-10-18 23:40:44 -07003318 if (cgrp == cgrp->top_cgroup) {
3319 if ((err = cgroup_add_file(cgrp, NULL, &cft_release_agent)) < 0)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003320 return err;
3321 }
3322
Paul Menagebd89aab2007-10-18 23:40:44 -07003323 for_each_subsys(cgrp->root, ss) {
3324 if (ss->populate && (err = ss->populate(ss, cgrp)) < 0)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003325 return err;
3326 }
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003327 /* This cgroup is ready now */
3328 for_each_subsys(cgrp->root, ss) {
3329 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3330 /*
3331 * Update id->css pointer and make this css visible from
3332 * CSS ID functions. This pointer will be dereferened
3333 * from RCU-read-side without locks.
3334 */
3335 if (css->id)
3336 rcu_assign_pointer(css->id->css, css);
3337 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003338
3339 return 0;
3340}
3341
3342static void init_cgroup_css(struct cgroup_subsys_state *css,
3343 struct cgroup_subsys *ss,
Paul Menagebd89aab2007-10-18 23:40:44 -07003344 struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003345{
Paul Menagebd89aab2007-10-18 23:40:44 -07003346 css->cgroup = cgrp;
Paul Menagee7c5ec92009-01-07 18:08:38 -08003347 atomic_set(&css->refcnt, 1);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003348 css->flags = 0;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003349 css->id = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07003350 if (cgrp == dummytop)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003351 set_bit(CSS_ROOT, &css->flags);
Paul Menagebd89aab2007-10-18 23:40:44 -07003352 BUG_ON(cgrp->subsys[ss->subsys_id]);
3353 cgrp->subsys[ss->subsys_id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003354}
3355
Paul Menage999cd8a2009-01-07 18:08:36 -08003356static void cgroup_lock_hierarchy(struct cgroupfs_root *root)
3357{
3358 /* We need to take each hierarchy_mutex in a consistent order */
3359 int i;
3360
Ben Blumaae8aab2010-03-10 15:22:07 -08003361 /*
3362 * No worry about a race with rebind_subsystems that might mess up the
3363 * locking order, since both parties are under cgroup_mutex.
3364 */
Paul Menage999cd8a2009-01-07 18:08:36 -08003365 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3366 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08003367 if (ss == NULL)
3368 continue;
Paul Menage999cd8a2009-01-07 18:08:36 -08003369 if (ss->root == root)
Li Zefancfebe562009-02-11 13:04:36 -08003370 mutex_lock(&ss->hierarchy_mutex);
Paul Menage999cd8a2009-01-07 18:08:36 -08003371 }
3372}
3373
3374static void cgroup_unlock_hierarchy(struct cgroupfs_root *root)
3375{
3376 int i;
3377
3378 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3379 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08003380 if (ss == NULL)
3381 continue;
Paul Menage999cd8a2009-01-07 18:08:36 -08003382 if (ss->root == root)
3383 mutex_unlock(&ss->hierarchy_mutex);
3384 }
3385}
3386
Paul Menageddbcc7e2007-10-18 23:39:30 -07003387/*
Li Zefana043e3b2008-02-23 15:24:09 -08003388 * cgroup_create - create a cgroup
3389 * @parent: cgroup that will be parent of the new cgroup
3390 * @dentry: dentry of the new cgroup
3391 * @mode: mode to set on new inode
Paul Menageddbcc7e2007-10-18 23:39:30 -07003392 *
Li Zefana043e3b2008-02-23 15:24:09 -08003393 * Must be called with the mutex on the parent inode held
Paul Menageddbcc7e2007-10-18 23:39:30 -07003394 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07003395static long cgroup_create(struct cgroup *parent, struct dentry *dentry,
Li Zefan099fca32009-04-02 16:57:29 -07003396 mode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003397{
Paul Menagebd89aab2007-10-18 23:40:44 -07003398 struct cgroup *cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003399 struct cgroupfs_root *root = parent->root;
3400 int err = 0;
3401 struct cgroup_subsys *ss;
3402 struct super_block *sb = root->sb;
3403
Paul Menagebd89aab2007-10-18 23:40:44 -07003404 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
3405 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003406 return -ENOMEM;
3407
3408 /* Grab a reference on the superblock so the hierarchy doesn't
3409 * get deleted on unmount if there are child cgroups. This
3410 * can be done outside cgroup_mutex, since the sb can't
3411 * disappear while someone has an open control file on the
3412 * fs */
3413 atomic_inc(&sb->s_active);
3414
3415 mutex_lock(&cgroup_mutex);
3416
Paul Menagecc31edc2008-10-18 20:28:04 -07003417 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003418
Paul Menagebd89aab2007-10-18 23:40:44 -07003419 cgrp->parent = parent;
3420 cgrp->root = parent->root;
3421 cgrp->top_cgroup = parent->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003422
Li Zefanb6abdb02008-03-04 14:28:19 -08003423 if (notify_on_release(parent))
3424 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3425
Daniel Lezcano97978e62010-10-27 15:33:35 -07003426 if (clone_children(parent))
3427 set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3428
Paul Menageddbcc7e2007-10-18 23:39:30 -07003429 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07003430 struct cgroup_subsys_state *css = ss->create(ss, cgrp);
Li Zefan4528fd02010-02-02 13:44:10 -08003431
Paul Menageddbcc7e2007-10-18 23:39:30 -07003432 if (IS_ERR(css)) {
3433 err = PTR_ERR(css);
3434 goto err_destroy;
3435 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003436 init_cgroup_css(css, ss, cgrp);
Li Zefan4528fd02010-02-02 13:44:10 -08003437 if (ss->use_id) {
3438 err = alloc_css_id(ss, parent, cgrp);
3439 if (err)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003440 goto err_destroy;
Li Zefan4528fd02010-02-02 13:44:10 -08003441 }
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003442 /* At error, ->destroy() callback has to free assigned ID. */
Daniel Lezcano97978e62010-10-27 15:33:35 -07003443 if (clone_children(parent) && ss->post_clone)
3444 ss->post_clone(ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003445 }
3446
Paul Menage999cd8a2009-01-07 18:08:36 -08003447 cgroup_lock_hierarchy(root);
Paul Menagebd89aab2007-10-18 23:40:44 -07003448 list_add(&cgrp->sibling, &cgrp->parent->children);
Paul Menage999cd8a2009-01-07 18:08:36 -08003449 cgroup_unlock_hierarchy(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003450 root->number_of_cgroups++;
3451
Paul Menagebd89aab2007-10-18 23:40:44 -07003452 err = cgroup_create_dir(cgrp, dentry, mode);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003453 if (err < 0)
3454 goto err_remove;
3455
3456 /* The cgroup directory was pre-locked for us */
Paul Menagebd89aab2007-10-18 23:40:44 -07003457 BUG_ON(!mutex_is_locked(&cgrp->dentry->d_inode->i_mutex));
Paul Menageddbcc7e2007-10-18 23:39:30 -07003458
Paul Menagebd89aab2007-10-18 23:40:44 -07003459 err = cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003460 /* If err < 0, we have a half-filled directory - oh well ;) */
3461
3462 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07003463 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003464
3465 return 0;
3466
3467 err_remove:
3468
KAMEZAWA Hiroyukibaef99a2009-01-29 14:25:10 -08003469 cgroup_lock_hierarchy(root);
Paul Menagebd89aab2007-10-18 23:40:44 -07003470 list_del(&cgrp->sibling);
KAMEZAWA Hiroyukibaef99a2009-01-29 14:25:10 -08003471 cgroup_unlock_hierarchy(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003472 root->number_of_cgroups--;
3473
3474 err_destroy:
3475
3476 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07003477 if (cgrp->subsys[ss->subsys_id])
3478 ss->destroy(ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003479 }
3480
3481 mutex_unlock(&cgroup_mutex);
3482
3483 /* Release the reference count that we took on the superblock */
3484 deactivate_super(sb);
3485
Paul Menagebd89aab2007-10-18 23:40:44 -07003486 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003487 return err;
3488}
3489
3490static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode)
3491{
3492 struct cgroup *c_parent = dentry->d_parent->d_fsdata;
3493
3494 /* the vfs holds inode->i_mutex already */
3495 return cgroup_create(c_parent, dentry, mode | S_IFDIR);
3496}
3497
Li Zefan55b6fd02008-07-29 22:33:20 -07003498static int cgroup_has_css_refs(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003499{
3500 /* Check the reference count on each subsystem. Since we
3501 * already established that there are no tasks in the
Paul Menagee7c5ec92009-01-07 18:08:38 -08003502 * cgroup, if the css refcount is also 1, then there should
Paul Menage81a6a5c2007-10-18 23:39:38 -07003503 * be no outstanding references, so the subsystem is safe to
3504 * destroy. We scan across all subsystems rather than using
3505 * the per-hierarchy linked list of mounted subsystems since
3506 * we can be called via check_for_release() with no
3507 * synchronization other than RCU, and the subsystem linked
3508 * list isn't RCU-safe */
3509 int i;
Ben Blumaae8aab2010-03-10 15:22:07 -08003510 /*
3511 * We won't need to lock the subsys array, because the subsystems
3512 * we're concerned about aren't going anywhere since our cgroup root
3513 * has a reference on them.
3514 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07003515 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3516 struct cgroup_subsys *ss = subsys[i];
3517 struct cgroup_subsys_state *css;
Ben Blumaae8aab2010-03-10 15:22:07 -08003518 /* Skip subsystems not present or not in this hierarchy */
3519 if (ss == NULL || ss->root != cgrp->root)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003520 continue;
Paul Menagebd89aab2007-10-18 23:40:44 -07003521 css = cgrp->subsys[ss->subsys_id];
Paul Menage81a6a5c2007-10-18 23:39:38 -07003522 /* When called from check_for_release() it's possible
3523 * that by this point the cgroup has been removed
3524 * and the css deleted. But a false-positive doesn't
3525 * matter, since it can only happen if the cgroup
3526 * has been deleted and hence no longer needs the
3527 * release agent to be called anyway. */
Paul Menagee7c5ec92009-01-07 18:08:38 -08003528 if (css && (atomic_read(&css->refcnt) > 1))
Paul Menage81a6a5c2007-10-18 23:39:38 -07003529 return 1;
Paul Menage81a6a5c2007-10-18 23:39:38 -07003530 }
3531 return 0;
3532}
3533
Paul Menagee7c5ec92009-01-07 18:08:38 -08003534/*
3535 * Atomically mark all (or else none) of the cgroup's CSS objects as
3536 * CSS_REMOVED. Return true on success, or false if the cgroup has
3537 * busy subsystems. Call with cgroup_mutex held
3538 */
3539
3540static int cgroup_clear_css_refs(struct cgroup *cgrp)
3541{
3542 struct cgroup_subsys *ss;
3543 unsigned long flags;
3544 bool failed = false;
3545 local_irq_save(flags);
3546 for_each_subsys(cgrp->root, ss) {
3547 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3548 int refcnt;
Paul Menage804b3c22009-01-29 14:25:21 -08003549 while (1) {
Paul Menagee7c5ec92009-01-07 18:08:38 -08003550 /* We can only remove a CSS with a refcnt==1 */
3551 refcnt = atomic_read(&css->refcnt);
3552 if (refcnt > 1) {
3553 failed = true;
3554 goto done;
3555 }
3556 BUG_ON(!refcnt);
3557 /*
3558 * Drop the refcnt to 0 while we check other
3559 * subsystems. This will cause any racing
3560 * css_tryget() to spin until we set the
3561 * CSS_REMOVED bits or abort
3562 */
Paul Menage804b3c22009-01-29 14:25:21 -08003563 if (atomic_cmpxchg(&css->refcnt, refcnt, 0) == refcnt)
3564 break;
3565 cpu_relax();
3566 }
Paul Menagee7c5ec92009-01-07 18:08:38 -08003567 }
3568 done:
3569 for_each_subsys(cgrp->root, ss) {
3570 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3571 if (failed) {
3572 /*
3573 * Restore old refcnt if we previously managed
3574 * to clear it from 1 to 0
3575 */
3576 if (!atomic_read(&css->refcnt))
3577 atomic_set(&css->refcnt, 1);
3578 } else {
3579 /* Commit the fact that the CSS is removed */
3580 set_bit(CSS_REMOVED, &css->flags);
3581 }
3582 }
3583 local_irq_restore(flags);
3584 return !failed;
3585}
3586
Paul Menageddbcc7e2007-10-18 23:39:30 -07003587static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry)
3588{
Paul Menagebd89aab2007-10-18 23:40:44 -07003589 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003590 struct dentry *d;
3591 struct cgroup *parent;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003592 DEFINE_WAIT(wait);
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08003593 struct cgroup_event *event, *tmp;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003594 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003595
3596 /* the vfs holds both inode->i_mutex already */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003597again:
Paul Menageddbcc7e2007-10-18 23:39:30 -07003598 mutex_lock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07003599 if (atomic_read(&cgrp->count) != 0) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07003600 mutex_unlock(&cgroup_mutex);
3601 return -EBUSY;
3602 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003603 if (!list_empty(&cgrp->children)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07003604 mutex_unlock(&cgroup_mutex);
3605 return -EBUSY;
3606 }
KAMEZAWA Hiroyuki3fa59df2008-11-19 15:36:34 -08003607 mutex_unlock(&cgroup_mutex);
Li Zefana043e3b2008-02-23 15:24:09 -08003608
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08003609 /*
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003610 * In general, subsystem has no css->refcnt after pre_destroy(). But
3611 * in racy cases, subsystem may have to get css->refcnt after
3612 * pre_destroy() and it makes rmdir return with -EBUSY. This sometimes
3613 * make rmdir return -EBUSY too often. To avoid that, we use waitqueue
3614 * for cgroup's rmdir. CGRP_WAIT_ON_RMDIR is for synchronizing rmdir
3615 * and subsystem's reference count handling. Please see css_get/put
3616 * and css_tryget() and cgroup_wakeup_rmdir_waiter() implementation.
3617 */
3618 set_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
3619
3620 /*
Li Zefana043e3b2008-02-23 15:24:09 -08003621 * Call pre_destroy handlers of subsys. Notify subsystems
3622 * that rmdir() request comes.
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08003623 */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003624 ret = cgroup_call_pre_destroy(cgrp);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003625 if (ret) {
3626 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003627 return ret;
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003628 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003629
KAMEZAWA Hiroyuki3fa59df2008-11-19 15:36:34 -08003630 mutex_lock(&cgroup_mutex);
3631 parent = cgrp->parent;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003632 if (atomic_read(&cgrp->count) || !list_empty(&cgrp->children)) {
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003633 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003634 mutex_unlock(&cgroup_mutex);
3635 return -EBUSY;
3636 }
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003637 prepare_to_wait(&cgroup_rmdir_waitq, &wait, TASK_INTERRUPTIBLE);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003638 if (!cgroup_clear_css_refs(cgrp)) {
3639 mutex_unlock(&cgroup_mutex);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003640 /*
3641 * Because someone may call cgroup_wakeup_rmdir_waiter() before
3642 * prepare_to_wait(), we need to check this flag.
3643 */
3644 if (test_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags))
3645 schedule();
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003646 finish_wait(&cgroup_rmdir_waitq, &wait);
3647 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
3648 if (signal_pending(current))
3649 return -EINTR;
3650 goto again;
3651 }
3652 /* NO css_tryget() can success after here. */
3653 finish_wait(&cgroup_rmdir_waitq, &wait);
3654 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003655
Paul Menage81a6a5c2007-10-18 23:39:38 -07003656 spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07003657 set_bit(CGRP_REMOVED, &cgrp->flags);
3658 if (!list_empty(&cgrp->release_list))
3659 list_del(&cgrp->release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003660 spin_unlock(&release_list_lock);
Paul Menage999cd8a2009-01-07 18:08:36 -08003661
3662 cgroup_lock_hierarchy(cgrp->root);
3663 /* delete this cgroup from parent->children */
Paul Menagebd89aab2007-10-18 23:40:44 -07003664 list_del(&cgrp->sibling);
Paul Menage999cd8a2009-01-07 18:08:36 -08003665 cgroup_unlock_hierarchy(cgrp->root);
3666
Paul Menagebd89aab2007-10-18 23:40:44 -07003667 d = dget(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003668
3669 cgroup_d_remove_dir(d);
3670 dput(d);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003671
Paul Menagebd89aab2007-10-18 23:40:44 -07003672 set_bit(CGRP_RELEASABLE, &parent->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003673 check_for_release(parent);
3674
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08003675 /*
3676 * Unregister events and notify userspace.
3677 * Notify userspace about cgroup removing only after rmdir of cgroup
3678 * directory to avoid race between userspace and kernelspace
3679 */
3680 spin_lock(&cgrp->event_list_lock);
3681 list_for_each_entry_safe(event, tmp, &cgrp->event_list, list) {
3682 list_del(&event->list);
3683 remove_wait_queue(event->wqh, &event->wait);
3684 eventfd_signal(event->eventfd, 1);
3685 schedule_work(&event->remove);
3686 }
3687 spin_unlock(&cgrp->event_list_lock);
3688
Paul Menageddbcc7e2007-10-18 23:39:30 -07003689 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003690 return 0;
3691}
3692
Li Zefan06a11922008-04-29 01:00:07 -07003693static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003694{
Paul Menageddbcc7e2007-10-18 23:39:30 -07003695 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08003696
3697 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003698
3699 /* Create the top cgroup state for this subsystem */
Li Zefan33a68ac2009-01-07 18:07:42 -08003700 list_add(&ss->sibling, &rootnode.subsys_list);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003701 ss->root = &rootnode;
3702 css = ss->create(ss, dummytop);
3703 /* We don't handle early failures gracefully */
3704 BUG_ON(IS_ERR(css));
3705 init_cgroup_css(css, ss, dummytop);
3706
Li Zefane8d55fd2008-04-29 01:00:13 -07003707 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07003708 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07003709 * newly registered, all tasks and hence the
3710 * init_css_set is in the subsystem's top cgroup. */
3711 init_css_set.subsys[ss->subsys_id] = dummytop->subsys[ss->subsys_id];
Paul Menageddbcc7e2007-10-18 23:39:30 -07003712
3713 need_forkexit_callback |= ss->fork || ss->exit;
3714
Li Zefane8d55fd2008-04-29 01:00:13 -07003715 /* At system boot, before all subsystems have been
3716 * registered, no tasks have been forked, so we don't
3717 * need to invoke fork callbacks here. */
3718 BUG_ON(!list_empty(&init_task.tasks));
3719
Paul Menage999cd8a2009-01-07 18:08:36 -08003720 mutex_init(&ss->hierarchy_mutex);
Li Zefancfebe562009-02-11 13:04:36 -08003721 lockdep_set_class(&ss->hierarchy_mutex, &ss->subsys_key);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003722 ss->active = 1;
Ben Blume6a11052010-03-10 15:22:09 -08003723
3724 /* this function shouldn't be used with modular subsystems, since they
3725 * need to register a subsys_id, among other things */
3726 BUG_ON(ss->module);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003727}
3728
3729/**
Ben Blume6a11052010-03-10 15:22:09 -08003730 * cgroup_load_subsys: load and register a modular subsystem at runtime
3731 * @ss: the subsystem to load
3732 *
3733 * This function should be called in a modular subsystem's initcall. If the
Thomas Weber88393162010-03-16 11:47:56 +01003734 * subsystem is built as a module, it will be assigned a new subsys_id and set
Ben Blume6a11052010-03-10 15:22:09 -08003735 * up for use. If the subsystem is built-in anyway, work is delegated to the
3736 * simpler cgroup_init_subsys.
3737 */
3738int __init_or_module cgroup_load_subsys(struct cgroup_subsys *ss)
3739{
3740 int i;
3741 struct cgroup_subsys_state *css;
3742
3743 /* check name and function validity */
3744 if (ss->name == NULL || strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN ||
3745 ss->create == NULL || ss->destroy == NULL)
3746 return -EINVAL;
3747
3748 /*
3749 * we don't support callbacks in modular subsystems. this check is
3750 * before the ss->module check for consistency; a subsystem that could
3751 * be a module should still have no callbacks even if the user isn't
3752 * compiling it as one.
3753 */
3754 if (ss->fork || ss->exit)
3755 return -EINVAL;
3756
3757 /*
3758 * an optionally modular subsystem is built-in: we want to do nothing,
3759 * since cgroup_init_subsys will have already taken care of it.
3760 */
3761 if (ss->module == NULL) {
3762 /* a few sanity checks */
3763 BUG_ON(ss->subsys_id >= CGROUP_BUILTIN_SUBSYS_COUNT);
3764 BUG_ON(subsys[ss->subsys_id] != ss);
3765 return 0;
3766 }
3767
3768 /*
3769 * need to register a subsys id before anything else - for example,
3770 * init_cgroup_css needs it.
3771 */
3772 mutex_lock(&cgroup_mutex);
3773 /* find the first empty slot in the array */
3774 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
3775 if (subsys[i] == NULL)
3776 break;
3777 }
3778 if (i == CGROUP_SUBSYS_COUNT) {
3779 /* maximum number of subsystems already registered! */
3780 mutex_unlock(&cgroup_mutex);
3781 return -EBUSY;
3782 }
3783 /* assign ourselves the subsys_id */
3784 ss->subsys_id = i;
3785 subsys[i] = ss;
3786
3787 /*
3788 * no ss->create seems to need anything important in the ss struct, so
3789 * this can happen first (i.e. before the rootnode attachment).
3790 */
3791 css = ss->create(ss, dummytop);
3792 if (IS_ERR(css)) {
3793 /* failure case - need to deassign the subsys[] slot. */
3794 subsys[i] = NULL;
3795 mutex_unlock(&cgroup_mutex);
3796 return PTR_ERR(css);
3797 }
3798
3799 list_add(&ss->sibling, &rootnode.subsys_list);
3800 ss->root = &rootnode;
3801
3802 /* our new subsystem will be attached to the dummy hierarchy. */
3803 init_cgroup_css(css, ss, dummytop);
3804 /* init_idr must be after init_cgroup_css because it sets css->id. */
3805 if (ss->use_id) {
3806 int ret = cgroup_init_idr(ss, css);
3807 if (ret) {
3808 dummytop->subsys[ss->subsys_id] = NULL;
3809 ss->destroy(ss, dummytop);
3810 subsys[i] = NULL;
3811 mutex_unlock(&cgroup_mutex);
3812 return ret;
3813 }
3814 }
3815
3816 /*
3817 * Now we need to entangle the css into the existing css_sets. unlike
3818 * in cgroup_init_subsys, there are now multiple css_sets, so each one
3819 * will need a new pointer to it; done by iterating the css_set_table.
3820 * furthermore, modifying the existing css_sets will corrupt the hash
3821 * table state, so each changed css_set will need its hash recomputed.
3822 * this is all done under the css_set_lock.
3823 */
3824 write_lock(&css_set_lock);
3825 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
3826 struct css_set *cg;
3827 struct hlist_node *node, *tmp;
3828 struct hlist_head *bucket = &css_set_table[i], *new_bucket;
3829
3830 hlist_for_each_entry_safe(cg, node, tmp, bucket, hlist) {
3831 /* skip entries that we already rehashed */
3832 if (cg->subsys[ss->subsys_id])
3833 continue;
3834 /* remove existing entry */
3835 hlist_del(&cg->hlist);
3836 /* set new value */
3837 cg->subsys[ss->subsys_id] = css;
3838 /* recompute hash and restore entry */
3839 new_bucket = css_set_hash(cg->subsys);
3840 hlist_add_head(&cg->hlist, new_bucket);
3841 }
3842 }
3843 write_unlock(&css_set_lock);
3844
3845 mutex_init(&ss->hierarchy_mutex);
3846 lockdep_set_class(&ss->hierarchy_mutex, &ss->subsys_key);
3847 ss->active = 1;
3848
Ben Blume6a11052010-03-10 15:22:09 -08003849 /* success! */
3850 mutex_unlock(&cgroup_mutex);
3851 return 0;
3852}
3853EXPORT_SYMBOL_GPL(cgroup_load_subsys);
3854
3855/**
Ben Blumcf5d5942010-03-10 15:22:09 -08003856 * cgroup_unload_subsys: unload a modular subsystem
3857 * @ss: the subsystem to unload
3858 *
3859 * This function should be called in a modular subsystem's exitcall. When this
3860 * function is invoked, the refcount on the subsystem's module will be 0, so
3861 * the subsystem will not be attached to any hierarchy.
3862 */
3863void cgroup_unload_subsys(struct cgroup_subsys *ss)
3864{
3865 struct cg_cgroup_link *link;
3866 struct hlist_head *hhead;
3867
3868 BUG_ON(ss->module == NULL);
3869
3870 /*
3871 * we shouldn't be called if the subsystem is in use, and the use of
3872 * try_module_get in parse_cgroupfs_options should ensure that it
3873 * doesn't start being used while we're killing it off.
3874 */
3875 BUG_ON(ss->root != &rootnode);
3876
3877 mutex_lock(&cgroup_mutex);
3878 /* deassign the subsys_id */
3879 BUG_ON(ss->subsys_id < CGROUP_BUILTIN_SUBSYS_COUNT);
3880 subsys[ss->subsys_id] = NULL;
3881
3882 /* remove subsystem from rootnode's list of subsystems */
3883 list_del(&ss->sibling);
3884
3885 /*
3886 * disentangle the css from all css_sets attached to the dummytop. as
3887 * in loading, we need to pay our respects to the hashtable gods.
3888 */
3889 write_lock(&css_set_lock);
3890 list_for_each_entry(link, &dummytop->css_sets, cgrp_link_list) {
3891 struct css_set *cg = link->cg;
3892
3893 hlist_del(&cg->hlist);
3894 BUG_ON(!cg->subsys[ss->subsys_id]);
3895 cg->subsys[ss->subsys_id] = NULL;
3896 hhead = css_set_hash(cg->subsys);
3897 hlist_add_head(&cg->hlist, hhead);
3898 }
3899 write_unlock(&css_set_lock);
3900
3901 /*
3902 * remove subsystem's css from the dummytop and free it - need to free
3903 * before marking as null because ss->destroy needs the cgrp->subsys
3904 * pointer to find their state. note that this also takes care of
3905 * freeing the css_id.
3906 */
3907 ss->destroy(ss, dummytop);
3908 dummytop->subsys[ss->subsys_id] = NULL;
3909
3910 mutex_unlock(&cgroup_mutex);
3911}
3912EXPORT_SYMBOL_GPL(cgroup_unload_subsys);
3913
3914/**
Li Zefana043e3b2008-02-23 15:24:09 -08003915 * cgroup_init_early - cgroup initialization at system boot
3916 *
3917 * Initialize cgroups at system boot, and initialize any
3918 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07003919 */
3920int __init cgroup_init_early(void)
3921{
3922 int i;
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07003923 atomic_set(&init_css_set.refcount, 1);
Paul Menage817929e2007-10-18 23:39:36 -07003924 INIT_LIST_HEAD(&init_css_set.cg_links);
3925 INIT_LIST_HEAD(&init_css_set.tasks);
Li Zefan472b1052008-04-29 01:00:11 -07003926 INIT_HLIST_NODE(&init_css_set.hlist);
Paul Menage817929e2007-10-18 23:39:36 -07003927 css_set_count = 1;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003928 init_cgroup_root(&rootnode);
Paul Menage817929e2007-10-18 23:39:36 -07003929 root_count = 1;
3930 init_task.cgroups = &init_css_set;
3931
3932 init_css_set_link.cg = &init_css_set;
Paul Menage7717f7b2009-09-23 15:56:22 -07003933 init_css_set_link.cgrp = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -07003934 list_add(&init_css_set_link.cgrp_link_list,
Paul Menage817929e2007-10-18 23:39:36 -07003935 &rootnode.top_cgroup.css_sets);
3936 list_add(&init_css_set_link.cg_link_list,
3937 &init_css_set.cg_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003938
Li Zefan472b1052008-04-29 01:00:11 -07003939 for (i = 0; i < CSS_SET_TABLE_SIZE; i++)
3940 INIT_HLIST_HEAD(&css_set_table[i]);
3941
Ben Blumaae8aab2010-03-10 15:22:07 -08003942 /* at bootup time, we don't worry about modular subsystems */
3943 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07003944 struct cgroup_subsys *ss = subsys[i];
3945
3946 BUG_ON(!ss->name);
3947 BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN);
3948 BUG_ON(!ss->create);
3949 BUG_ON(!ss->destroy);
3950 if (ss->subsys_id != i) {
Diego Callejacfe36bd2007-11-14 16:58:54 -08003951 printk(KERN_ERR "cgroup: Subsys %s id == %d\n",
Paul Menageddbcc7e2007-10-18 23:39:30 -07003952 ss->name, ss->subsys_id);
3953 BUG();
3954 }
3955
3956 if (ss->early_init)
3957 cgroup_init_subsys(ss);
3958 }
3959 return 0;
3960}
3961
3962/**
Li Zefana043e3b2008-02-23 15:24:09 -08003963 * cgroup_init - cgroup initialization
3964 *
3965 * Register cgroup filesystem and /proc file, and initialize
3966 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07003967 */
3968int __init cgroup_init(void)
3969{
3970 int err;
3971 int i;
Li Zefan472b1052008-04-29 01:00:11 -07003972 struct hlist_head *hhead;
Paul Menagea4243162007-10-18 23:39:35 -07003973
3974 err = bdi_init(&cgroup_backing_dev_info);
3975 if (err)
3976 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003977
Ben Blumaae8aab2010-03-10 15:22:07 -08003978 /* at bootup time, we don't worry about modular subsystems */
3979 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07003980 struct cgroup_subsys *ss = subsys[i];
3981 if (!ss->early_init)
3982 cgroup_init_subsys(ss);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003983 if (ss->use_id)
Ben Blume6a11052010-03-10 15:22:09 -08003984 cgroup_init_idr(ss, init_css_set.subsys[ss->subsys_id]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003985 }
3986
Li Zefan472b1052008-04-29 01:00:11 -07003987 /* Add init_css_set to the hash table */
3988 hhead = css_set_hash(init_css_set.subsys);
3989 hlist_add_head(&init_css_set.hlist, hhead);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07003990 BUG_ON(!init_root_id(&rootnode));
Greg KH676db4a2010-08-05 13:53:35 -07003991
3992 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
3993 if (!cgroup_kobj) {
3994 err = -ENOMEM;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003995 goto out;
Greg KH676db4a2010-08-05 13:53:35 -07003996 }
3997
3998 err = register_filesystem(&cgroup_fs_type);
3999 if (err < 0) {
4000 kobject_put(cgroup_kobj);
4001 goto out;
4002 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004003
Li Zefan46ae2202008-04-29 01:00:08 -07004004 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Paul Menagea4243162007-10-18 23:39:35 -07004005
Paul Menageddbcc7e2007-10-18 23:39:30 -07004006out:
Paul Menagea4243162007-10-18 23:39:35 -07004007 if (err)
4008 bdi_destroy(&cgroup_backing_dev_info);
4009
Paul Menageddbcc7e2007-10-18 23:39:30 -07004010 return err;
4011}
Paul Menageb4f48b62007-10-18 23:39:33 -07004012
Paul Menagea4243162007-10-18 23:39:35 -07004013/*
4014 * proc_cgroup_show()
4015 * - Print task's cgroup paths into seq_file, one line for each hierarchy
4016 * - Used for /proc/<pid>/cgroup.
4017 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
4018 * doesn't really matter if tsk->cgroup changes after we read it,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004019 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
Paul Menagea4243162007-10-18 23:39:35 -07004020 * anyway. No need to check that tsk->cgroup != NULL, thanks to
4021 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
4022 * cgroup to top_cgroup.
4023 */
4024
4025/* TODO: Use a proper seq_file iterator */
4026static int proc_cgroup_show(struct seq_file *m, void *v)
4027{
4028 struct pid *pid;
4029 struct task_struct *tsk;
4030 char *buf;
4031 int retval;
4032 struct cgroupfs_root *root;
4033
4034 retval = -ENOMEM;
4035 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
4036 if (!buf)
4037 goto out;
4038
4039 retval = -ESRCH;
4040 pid = m->private;
4041 tsk = get_pid_task(pid, PIDTYPE_PID);
4042 if (!tsk)
4043 goto out_free;
4044
4045 retval = 0;
4046
4047 mutex_lock(&cgroup_mutex);
4048
Li Zefane5f6a862009-01-07 18:07:41 -08004049 for_each_active_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07004050 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07004051 struct cgroup *cgrp;
Paul Menagea4243162007-10-18 23:39:35 -07004052 int count = 0;
4053
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004054 seq_printf(m, "%d:", root->hierarchy_id);
Paul Menagea4243162007-10-18 23:39:35 -07004055 for_each_subsys(root, ss)
4056 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07004057 if (strlen(root->name))
4058 seq_printf(m, "%sname=%s", count ? "," : "",
4059 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07004060 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07004061 cgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07004062 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
Paul Menagea4243162007-10-18 23:39:35 -07004063 if (retval < 0)
4064 goto out_unlock;
4065 seq_puts(m, buf);
4066 seq_putc(m, '\n');
4067 }
4068
4069out_unlock:
4070 mutex_unlock(&cgroup_mutex);
4071 put_task_struct(tsk);
4072out_free:
4073 kfree(buf);
4074out:
4075 return retval;
4076}
4077
4078static int cgroup_open(struct inode *inode, struct file *file)
4079{
4080 struct pid *pid = PROC_I(inode)->pid;
4081 return single_open(file, proc_cgroup_show, pid);
4082}
4083
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004084const struct file_operations proc_cgroup_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004085 .open = cgroup_open,
4086 .read = seq_read,
4087 .llseek = seq_lseek,
4088 .release = single_release,
4089};
4090
4091/* Display information about each subsystem and each hierarchy */
4092static int proc_cgroupstats_show(struct seq_file *m, void *v)
4093{
4094 int i;
Paul Menagea4243162007-10-18 23:39:35 -07004095
Paul Menage8bab8dd2008-04-04 14:29:57 -07004096 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08004097 /*
4098 * ideally we don't want subsystems moving around while we do this.
4099 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
4100 * subsys/hierarchy state.
4101 */
Paul Menagea4243162007-10-18 23:39:35 -07004102 mutex_lock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07004103 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
4104 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08004105 if (ss == NULL)
4106 continue;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004107 seq_printf(m, "%s\t%d\t%d\t%d\n",
4108 ss->name, ss->root->hierarchy_id,
Paul Menage8bab8dd2008-04-04 14:29:57 -07004109 ss->root->number_of_cgroups, !ss->disabled);
Paul Menagea4243162007-10-18 23:39:35 -07004110 }
4111 mutex_unlock(&cgroup_mutex);
4112 return 0;
4113}
4114
4115static int cgroupstats_open(struct inode *inode, struct file *file)
4116{
Al Viro9dce07f2008-03-29 03:07:28 +00004117 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07004118}
4119
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004120static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004121 .open = cgroupstats_open,
4122 .read = seq_read,
4123 .llseek = seq_lseek,
4124 .release = single_release,
4125};
4126
Paul Menageb4f48b62007-10-18 23:39:33 -07004127/**
4128 * cgroup_fork - attach newly forked task to its parents cgroup.
Li Zefana043e3b2008-02-23 15:24:09 -08004129 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07004130 *
4131 * Description: A task inherits its parent's cgroup at fork().
4132 *
4133 * A pointer to the shared css_set was automatically copied in
4134 * fork.c by dup_task_struct(). However, we ignore that copy, since
4135 * it was not made under the protection of RCU or cgroup_mutex, so
Cliff Wickman956db3c2008-02-07 00:14:43 -08004136 * might no longer be a valid cgroup pointer. cgroup_attach_task() might
Paul Menage817929e2007-10-18 23:39:36 -07004137 * have already changed current->cgroups, allowing the previously
4138 * referenced cgroup group to be removed and freed.
Paul Menageb4f48b62007-10-18 23:39:33 -07004139 *
4140 * At the point that cgroup_fork() is called, 'current' is the parent
4141 * task, and the passed argument 'child' points to the child task.
4142 */
4143void cgroup_fork(struct task_struct *child)
4144{
Paul Menage817929e2007-10-18 23:39:36 -07004145 task_lock(current);
4146 child->cgroups = current->cgroups;
4147 get_css_set(child->cgroups);
4148 task_unlock(current);
4149 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07004150}
4151
4152/**
Li Zefana043e3b2008-02-23 15:24:09 -08004153 * cgroup_fork_callbacks - run fork callbacks
4154 * @child: the new task
4155 *
4156 * Called on a new task very soon before adding it to the
4157 * tasklist. No need to take any locks since no-one can
4158 * be operating on this task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004159 */
4160void cgroup_fork_callbacks(struct task_struct *child)
4161{
4162 if (need_forkexit_callback) {
4163 int i;
Ben Blumaae8aab2010-03-10 15:22:07 -08004164 /*
4165 * forkexit callbacks are only supported for builtin
4166 * subsystems, and the builtin section of the subsys array is
4167 * immutable, so we don't need to lock the subsys array here.
4168 */
4169 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageb4f48b62007-10-18 23:39:33 -07004170 struct cgroup_subsys *ss = subsys[i];
4171 if (ss->fork)
4172 ss->fork(ss, child);
4173 }
4174 }
4175}
4176
4177/**
Li Zefana043e3b2008-02-23 15:24:09 -08004178 * cgroup_post_fork - called on a new task after adding it to the task list
4179 * @child: the task in question
4180 *
4181 * Adds the task to the list running through its css_set if necessary.
4182 * Has to be after the task is visible on the task list in case we race
4183 * with the first call to cgroup_iter_start() - to guarantee that the
4184 * new task ends up on its list.
4185 */
Paul Menage817929e2007-10-18 23:39:36 -07004186void cgroup_post_fork(struct task_struct *child)
4187{
4188 if (use_task_css_set_links) {
4189 write_lock(&css_set_lock);
Lai Jiangshanb12b5332009-01-07 18:07:36 -08004190 task_lock(child);
Paul Menage817929e2007-10-18 23:39:36 -07004191 if (list_empty(&child->cg_list))
4192 list_add(&child->cg_list, &child->cgroups->tasks);
Lai Jiangshanb12b5332009-01-07 18:07:36 -08004193 task_unlock(child);
Paul Menage817929e2007-10-18 23:39:36 -07004194 write_unlock(&css_set_lock);
4195 }
4196}
4197/**
Paul Menageb4f48b62007-10-18 23:39:33 -07004198 * cgroup_exit - detach cgroup from exiting task
4199 * @tsk: pointer to task_struct of exiting process
Li Zefana043e3b2008-02-23 15:24:09 -08004200 * @run_callback: run exit callbacks?
Paul Menageb4f48b62007-10-18 23:39:33 -07004201 *
4202 * Description: Detach cgroup from @tsk and release it.
4203 *
4204 * Note that cgroups marked notify_on_release force every task in
4205 * them to take the global cgroup_mutex mutex when exiting.
4206 * This could impact scaling on very large systems. Be reluctant to
4207 * use notify_on_release cgroups where very high task exit scaling
4208 * is required on large systems.
4209 *
4210 * the_top_cgroup_hack:
4211 *
4212 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
4213 *
4214 * We call cgroup_exit() while the task is still competent to
4215 * handle notify_on_release(), then leave the task attached to the
4216 * root cgroup in each hierarchy for the remainder of its exit.
4217 *
4218 * To do this properly, we would increment the reference count on
4219 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
4220 * code we would add a second cgroup function call, to drop that
4221 * reference. This would just create an unnecessary hot spot on
4222 * the top_cgroup reference count, to no avail.
4223 *
4224 * Normally, holding a reference to a cgroup without bumping its
4225 * count is unsafe. The cgroup could go away, or someone could
4226 * attach us to a different cgroup, decrementing the count on
4227 * the first cgroup that we never incremented. But in this case,
4228 * top_cgroup isn't going away, and either task has PF_EXITING set,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004229 * which wards off any cgroup_attach_task() attempts, or task is a failed
4230 * fork, never visible to cgroup_attach_task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004231 */
4232void cgroup_exit(struct task_struct *tsk, int run_callbacks)
4233{
4234 int i;
Paul Menage817929e2007-10-18 23:39:36 -07004235 struct css_set *cg;
Paul Menageb4f48b62007-10-18 23:39:33 -07004236
4237 if (run_callbacks && need_forkexit_callback) {
Ben Blumaae8aab2010-03-10 15:22:07 -08004238 /*
4239 * modular subsystems can't use callbacks, so no need to lock
4240 * the subsys array
4241 */
4242 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageb4f48b62007-10-18 23:39:33 -07004243 struct cgroup_subsys *ss = subsys[i];
4244 if (ss->exit)
4245 ss->exit(ss, tsk);
4246 }
4247 }
Paul Menage817929e2007-10-18 23:39:36 -07004248
4249 /*
4250 * Unlink from the css_set task list if necessary.
4251 * Optimistically check cg_list before taking
4252 * css_set_lock
4253 */
4254 if (!list_empty(&tsk->cg_list)) {
4255 write_lock(&css_set_lock);
4256 if (!list_empty(&tsk->cg_list))
4257 list_del(&tsk->cg_list);
4258 write_unlock(&css_set_lock);
4259 }
4260
Paul Menageb4f48b62007-10-18 23:39:33 -07004261 /* Reassign the task to the init_css_set. */
4262 task_lock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07004263 cg = tsk->cgroups;
4264 tsk->cgroups = &init_css_set;
Paul Menageb4f48b62007-10-18 23:39:33 -07004265 task_unlock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07004266 if (cg)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004267 put_css_set_taskexit(cg);
Paul Menageb4f48b62007-10-18 23:39:33 -07004268}
Paul Menage697f4162007-10-18 23:39:34 -07004269
4270/**
Li Zefana043e3b2008-02-23 15:24:09 -08004271 * cgroup_clone - clone the cgroup the given subsystem is attached to
4272 * @tsk: the task to be moved
4273 * @subsys: the given subsystem
Serge E. Hallyne885dcd2008-07-25 01:47:06 -07004274 * @nodename: the name for the new cgroup
Li Zefana043e3b2008-02-23 15:24:09 -08004275 *
4276 * Duplicate the current cgroup in the hierarchy that the given
4277 * subsystem is attached to, and move this task into the new
4278 * child.
Paul Menage697f4162007-10-18 23:39:34 -07004279 */
Serge E. Hallyne885dcd2008-07-25 01:47:06 -07004280int cgroup_clone(struct task_struct *tsk, struct cgroup_subsys *subsys,
4281 char *nodename)
Paul Menage697f4162007-10-18 23:39:34 -07004282{
4283 struct dentry *dentry;
4284 int ret = 0;
Paul Menage697f4162007-10-18 23:39:34 -07004285 struct cgroup *parent, *child;
4286 struct inode *inode;
4287 struct css_set *cg;
4288 struct cgroupfs_root *root;
4289 struct cgroup_subsys *ss;
4290
4291 /* We shouldn't be called by an unregistered subsystem */
4292 BUG_ON(!subsys->active);
4293
4294 /* First figure out what hierarchy and cgroup we're dealing
4295 * with, and pin them so we can drop cgroup_mutex */
4296 mutex_lock(&cgroup_mutex);
4297 again:
4298 root = subsys->root;
4299 if (root == &rootnode) {
Paul Menage697f4162007-10-18 23:39:34 -07004300 mutex_unlock(&cgroup_mutex);
4301 return 0;
4302 }
Paul Menage697f4162007-10-18 23:39:34 -07004303
Paul Menage697f4162007-10-18 23:39:34 -07004304 /* Pin the hierarchy */
Li Zefan1404f062009-01-29 14:25:21 -08004305 if (!atomic_inc_not_zero(&root->sb->s_active)) {
Li Zefan7b574b72009-01-04 12:00:45 -08004306 /* We race with the final deactivate_super() */
4307 mutex_unlock(&cgroup_mutex);
4308 return 0;
4309 }
Paul Menage697f4162007-10-18 23:39:34 -07004310
Paul Menage817929e2007-10-18 23:39:36 -07004311 /* Keep the cgroup alive */
Li Zefan1404f062009-01-29 14:25:21 -08004312 task_lock(tsk);
4313 parent = task_cgroup(tsk, subsys->subsys_id);
4314 cg = tsk->cgroups;
Paul Menage817929e2007-10-18 23:39:36 -07004315 get_css_set(cg);
Lai Jiangshan104cbd52009-01-07 18:07:38 -08004316 task_unlock(tsk);
Li Zefan1404f062009-01-29 14:25:21 -08004317
Paul Menage697f4162007-10-18 23:39:34 -07004318 mutex_unlock(&cgroup_mutex);
4319
4320 /* Now do the VFS work to create a cgroup */
4321 inode = parent->dentry->d_inode;
4322
4323 /* Hold the parent directory mutex across this operation to
4324 * stop anyone else deleting the new cgroup */
4325 mutex_lock(&inode->i_mutex);
4326 dentry = lookup_one_len(nodename, parent->dentry, strlen(nodename));
4327 if (IS_ERR(dentry)) {
4328 printk(KERN_INFO
Diego Callejacfe36bd2007-11-14 16:58:54 -08004329 "cgroup: Couldn't allocate dentry for %s: %ld\n", nodename,
Paul Menage697f4162007-10-18 23:39:34 -07004330 PTR_ERR(dentry));
4331 ret = PTR_ERR(dentry);
4332 goto out_release;
4333 }
4334
4335 /* Create the cgroup directory, which also creates the cgroup */
Li Zefan75139b82009-01-07 18:07:33 -08004336 ret = vfs_mkdir(inode, dentry, 0755);
Paul Menagebd89aab2007-10-18 23:40:44 -07004337 child = __d_cgrp(dentry);
Paul Menage697f4162007-10-18 23:39:34 -07004338 dput(dentry);
4339 if (ret) {
4340 printk(KERN_INFO
4341 "Failed to create cgroup %s: %d\n", nodename,
4342 ret);
4343 goto out_release;
4344 }
4345
Paul Menage697f4162007-10-18 23:39:34 -07004346 /* The cgroup now exists. Retake cgroup_mutex and check
4347 * that we're still in the same state that we thought we
4348 * were. */
4349 mutex_lock(&cgroup_mutex);
4350 if ((root != subsys->root) ||
4351 (parent != task_cgroup(tsk, subsys->subsys_id))) {
4352 /* Aargh, we raced ... */
4353 mutex_unlock(&inode->i_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07004354 put_css_set(cg);
Paul Menage697f4162007-10-18 23:39:34 -07004355
Li Zefan1404f062009-01-29 14:25:21 -08004356 deactivate_super(root->sb);
Paul Menage697f4162007-10-18 23:39:34 -07004357 /* The cgroup is still accessible in the VFS, but
4358 * we're not going to try to rmdir() it at this
4359 * point. */
4360 printk(KERN_INFO
4361 "Race in cgroup_clone() - leaking cgroup %s\n",
4362 nodename);
4363 goto again;
4364 }
4365
4366 /* do any required auto-setup */
4367 for_each_subsys(root, ss) {
4368 if (ss->post_clone)
4369 ss->post_clone(ss, child);
4370 }
4371
4372 /* All seems fine. Finish by moving the task into the new cgroup */
Cliff Wickman956db3c2008-02-07 00:14:43 -08004373 ret = cgroup_attach_task(child, tsk);
Paul Menage697f4162007-10-18 23:39:34 -07004374 mutex_unlock(&cgroup_mutex);
4375
4376 out_release:
4377 mutex_unlock(&inode->i_mutex);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004378
4379 mutex_lock(&cgroup_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07004380 put_css_set(cg);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004381 mutex_unlock(&cgroup_mutex);
Li Zefan1404f062009-01-29 14:25:21 -08004382 deactivate_super(root->sb);
Paul Menage697f4162007-10-18 23:39:34 -07004383 return ret;
4384}
4385
Li Zefana043e3b2008-02-23 15:24:09 -08004386/**
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004387 * cgroup_is_descendant - see if @cgrp is a descendant of @task's cgrp
Li Zefana043e3b2008-02-23 15:24:09 -08004388 * @cgrp: the cgroup in question
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004389 * @task: the task in question
Li Zefana043e3b2008-02-23 15:24:09 -08004390 *
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004391 * See if @cgrp is a descendant of @task's cgroup in the appropriate
4392 * hierarchy.
Paul Menage697f4162007-10-18 23:39:34 -07004393 *
4394 * If we are sending in dummytop, then presumably we are creating
4395 * the top cgroup in the subsystem.
4396 *
4397 * Called only by the ns (nsproxy) cgroup.
4398 */
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004399int cgroup_is_descendant(const struct cgroup *cgrp, struct task_struct *task)
Paul Menage697f4162007-10-18 23:39:34 -07004400{
4401 int ret;
4402 struct cgroup *target;
Paul Menage697f4162007-10-18 23:39:34 -07004403
Paul Menagebd89aab2007-10-18 23:40:44 -07004404 if (cgrp == dummytop)
Paul Menage697f4162007-10-18 23:39:34 -07004405 return 1;
4406
Paul Menage7717f7b2009-09-23 15:56:22 -07004407 target = task_cgroup_from_root(task, cgrp->root);
Paul Menagebd89aab2007-10-18 23:40:44 -07004408 while (cgrp != target && cgrp!= cgrp->top_cgroup)
4409 cgrp = cgrp->parent;
4410 ret = (cgrp == target);
Paul Menage697f4162007-10-18 23:39:34 -07004411 return ret;
4412}
Paul Menage81a6a5c2007-10-18 23:39:38 -07004413
Paul Menagebd89aab2007-10-18 23:40:44 -07004414static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004415{
4416 /* All of these checks rely on RCU to keep the cgroup
4417 * structure alive */
Paul Menagebd89aab2007-10-18 23:40:44 -07004418 if (cgroup_is_releasable(cgrp) && !atomic_read(&cgrp->count)
4419 && list_empty(&cgrp->children) && !cgroup_has_css_refs(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004420 /* Control Group is currently removeable. If it's not
4421 * already queued for a userspace notification, queue
4422 * it now */
4423 int need_schedule_work = 0;
4424 spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07004425 if (!cgroup_is_removed(cgrp) &&
4426 list_empty(&cgrp->release_list)) {
4427 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004428 need_schedule_work = 1;
4429 }
4430 spin_unlock(&release_list_lock);
4431 if (need_schedule_work)
4432 schedule_work(&release_agent_work);
4433 }
4434}
4435
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -08004436/* Caller must verify that the css is not for root cgroup */
4437void __css_put(struct cgroup_subsys_state *css, int count)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004438{
Paul Menagebd89aab2007-10-18 23:40:44 -07004439 struct cgroup *cgrp = css->cgroup;
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004440 int val;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004441 rcu_read_lock();
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -08004442 val = atomic_sub_return(count, &css->refcnt);
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004443 if (val == 1) {
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004444 if (notify_on_release(cgrp)) {
4445 set_bit(CGRP_RELEASABLE, &cgrp->flags);
4446 check_for_release(cgrp);
4447 }
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004448 cgroup_wakeup_rmdir_waiter(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004449 }
4450 rcu_read_unlock();
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004451 WARN_ON_ONCE(val < 1);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004452}
Ben Blum67523c42010-03-10 15:22:11 -08004453EXPORT_SYMBOL_GPL(__css_put);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004454
4455/*
4456 * Notify userspace when a cgroup is released, by running the
4457 * configured release agent with the name of the cgroup (path
4458 * relative to the root of cgroup file system) as the argument.
4459 *
4460 * Most likely, this user command will try to rmdir this cgroup.
4461 *
4462 * This races with the possibility that some other task will be
4463 * attached to this cgroup before it is removed, or that some other
4464 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
4465 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
4466 * unused, and this cgroup will be reprieved from its death sentence,
4467 * to continue to serve a useful existence. Next time it's released,
4468 * we will get notified again, if it still has 'notify_on_release' set.
4469 *
4470 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
4471 * means only wait until the task is successfully execve()'d. The
4472 * separate release agent task is forked by call_usermodehelper(),
4473 * then control in this thread returns here, without waiting for the
4474 * release agent task. We don't bother to wait because the caller of
4475 * this routine has no use for the exit status of the release agent
4476 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07004477 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004478static void cgroup_release_agent(struct work_struct *work)
4479{
4480 BUG_ON(work != &release_agent_work);
4481 mutex_lock(&cgroup_mutex);
4482 spin_lock(&release_list_lock);
4483 while (!list_empty(&release_list)) {
4484 char *argv[3], *envp[3];
4485 int i;
Paul Menagee788e062008-07-25 01:46:59 -07004486 char *pathbuf = NULL, *agentbuf = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07004487 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07004488 struct cgroup,
4489 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07004490 list_del_init(&cgrp->release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004491 spin_unlock(&release_list_lock);
4492 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paul Menagee788e062008-07-25 01:46:59 -07004493 if (!pathbuf)
4494 goto continue_free;
4495 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0)
4496 goto continue_free;
4497 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
4498 if (!agentbuf)
4499 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004500
4501 i = 0;
Paul Menagee788e062008-07-25 01:46:59 -07004502 argv[i++] = agentbuf;
4503 argv[i++] = pathbuf;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004504 argv[i] = NULL;
4505
4506 i = 0;
4507 /* minimal command environment */
4508 envp[i++] = "HOME=/";
4509 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
4510 envp[i] = NULL;
4511
4512 /* Drop the lock while we invoke the usermode helper,
4513 * since the exec could involve hitting disk and hence
4514 * be a slow process */
4515 mutex_unlock(&cgroup_mutex);
4516 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004517 mutex_lock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07004518 continue_free:
4519 kfree(pathbuf);
4520 kfree(agentbuf);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004521 spin_lock(&release_list_lock);
4522 }
4523 spin_unlock(&release_list_lock);
4524 mutex_unlock(&cgroup_mutex);
4525}
Paul Menage8bab8dd2008-04-04 14:29:57 -07004526
4527static int __init cgroup_disable(char *str)
4528{
4529 int i;
4530 char *token;
4531
4532 while ((token = strsep(&str, ",")) != NULL) {
4533 if (!*token)
4534 continue;
Ben Blumaae8aab2010-03-10 15:22:07 -08004535 /*
4536 * cgroup_disable, being at boot time, can't know about module
4537 * subsystems, so we don't worry about them.
4538 */
4539 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07004540 struct cgroup_subsys *ss = subsys[i];
4541
4542 if (!strcmp(token, ss->name)) {
4543 ss->disabled = 1;
4544 printk(KERN_INFO "Disabling %s control group"
4545 " subsystem\n", ss->name);
4546 break;
4547 }
4548 }
4549 }
4550 return 1;
4551}
4552__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004553
4554/*
4555 * Functons for CSS ID.
4556 */
4557
4558/*
4559 *To get ID other than 0, this should be called when !cgroup_is_removed().
4560 */
4561unsigned short css_id(struct cgroup_subsys_state *css)
4562{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07004563 struct css_id *cssid;
4564
4565 /*
4566 * This css_id() can return correct value when somone has refcnt
4567 * on this or this is under rcu_read_lock(). Once css->id is allocated,
4568 * it's unchanged until freed.
4569 */
4570 cssid = rcu_dereference_check(css->id,
4571 rcu_read_lock_held() || atomic_read(&css->refcnt));
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004572
4573 if (cssid)
4574 return cssid->id;
4575 return 0;
4576}
Ben Blum67523c42010-03-10 15:22:11 -08004577EXPORT_SYMBOL_GPL(css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004578
4579unsigned short css_depth(struct cgroup_subsys_state *css)
4580{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07004581 struct css_id *cssid;
4582
4583 cssid = rcu_dereference_check(css->id,
4584 rcu_read_lock_held() || atomic_read(&css->refcnt));
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004585
4586 if (cssid)
4587 return cssid->depth;
4588 return 0;
4589}
Ben Blum67523c42010-03-10 15:22:11 -08004590EXPORT_SYMBOL_GPL(css_depth);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004591
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004592/**
4593 * css_is_ancestor - test "root" css is an ancestor of "child"
4594 * @child: the css to be tested.
4595 * @root: the css supporsed to be an ancestor of the child.
4596 *
4597 * Returns true if "root" is an ancestor of "child" in its hierarchy. Because
4598 * this function reads css->id, this use rcu_dereference() and rcu_read_lock().
4599 * But, considering usual usage, the csses should be valid objects after test.
4600 * Assuming that the caller will do some action to the child if this returns
4601 * returns true, the caller must take "child";s reference count.
4602 * If "child" is valid object and this returns true, "root" is valid, too.
4603 */
4604
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004605bool css_is_ancestor(struct cgroup_subsys_state *child,
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07004606 const struct cgroup_subsys_state *root)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004607{
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004608 struct css_id *child_id;
4609 struct css_id *root_id;
4610 bool ret = true;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004611
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004612 rcu_read_lock();
4613 child_id = rcu_dereference(child->id);
4614 root_id = rcu_dereference(root->id);
4615 if (!child_id
4616 || !root_id
4617 || (child_id->depth < root_id->depth)
4618 || (child_id->stack[root_id->depth] != root_id->id))
4619 ret = false;
4620 rcu_read_unlock();
4621 return ret;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004622}
4623
4624static void __free_css_id_cb(struct rcu_head *head)
4625{
4626 struct css_id *id;
4627
4628 id = container_of(head, struct css_id, rcu_head);
4629 kfree(id);
4630}
4631
4632void free_css_id(struct cgroup_subsys *ss, struct cgroup_subsys_state *css)
4633{
4634 struct css_id *id = css->id;
4635 /* When this is called before css_id initialization, id can be NULL */
4636 if (!id)
4637 return;
4638
4639 BUG_ON(!ss->use_id);
4640
4641 rcu_assign_pointer(id->css, NULL);
4642 rcu_assign_pointer(css->id, NULL);
4643 spin_lock(&ss->id_lock);
4644 idr_remove(&ss->idr, id->id);
4645 spin_unlock(&ss->id_lock);
4646 call_rcu(&id->rcu_head, __free_css_id_cb);
4647}
Ben Blum67523c42010-03-10 15:22:11 -08004648EXPORT_SYMBOL_GPL(free_css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004649
4650/*
4651 * This is called by init or create(). Then, calls to this function are
4652 * always serialized (By cgroup_mutex() at create()).
4653 */
4654
4655static struct css_id *get_new_cssid(struct cgroup_subsys *ss, int depth)
4656{
4657 struct css_id *newid;
4658 int myid, error, size;
4659
4660 BUG_ON(!ss->use_id);
4661
4662 size = sizeof(*newid) + sizeof(unsigned short) * (depth + 1);
4663 newid = kzalloc(size, GFP_KERNEL);
4664 if (!newid)
4665 return ERR_PTR(-ENOMEM);
4666 /* get id */
4667 if (unlikely(!idr_pre_get(&ss->idr, GFP_KERNEL))) {
4668 error = -ENOMEM;
4669 goto err_out;
4670 }
4671 spin_lock(&ss->id_lock);
4672 /* Don't use 0. allocates an ID of 1-65535 */
4673 error = idr_get_new_above(&ss->idr, newid, 1, &myid);
4674 spin_unlock(&ss->id_lock);
4675
4676 /* Returns error when there are no free spaces for new ID.*/
4677 if (error) {
4678 error = -ENOSPC;
4679 goto err_out;
4680 }
4681 if (myid > CSS_ID_MAX)
4682 goto remove_idr;
4683
4684 newid->id = myid;
4685 newid->depth = depth;
4686 return newid;
4687remove_idr:
4688 error = -ENOSPC;
4689 spin_lock(&ss->id_lock);
4690 idr_remove(&ss->idr, myid);
4691 spin_unlock(&ss->id_lock);
4692err_out:
4693 kfree(newid);
4694 return ERR_PTR(error);
4695
4696}
4697
Ben Blume6a11052010-03-10 15:22:09 -08004698static int __init_or_module cgroup_init_idr(struct cgroup_subsys *ss,
4699 struct cgroup_subsys_state *rootcss)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004700{
4701 struct css_id *newid;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004702
4703 spin_lock_init(&ss->id_lock);
4704 idr_init(&ss->idr);
4705
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004706 newid = get_new_cssid(ss, 0);
4707 if (IS_ERR(newid))
4708 return PTR_ERR(newid);
4709
4710 newid->stack[0] = newid->id;
4711 newid->css = rootcss;
4712 rootcss->id = newid;
4713 return 0;
4714}
4715
4716static int alloc_css_id(struct cgroup_subsys *ss, struct cgroup *parent,
4717 struct cgroup *child)
4718{
4719 int subsys_id, i, depth = 0;
4720 struct cgroup_subsys_state *parent_css, *child_css;
Li Zefanfae9c792010-04-22 17:30:00 +08004721 struct css_id *child_id, *parent_id;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004722
4723 subsys_id = ss->subsys_id;
4724 parent_css = parent->subsys[subsys_id];
4725 child_css = child->subsys[subsys_id];
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004726 parent_id = parent_css->id;
Greg Thelen94b3dd02010-06-04 14:15:03 -07004727 depth = parent_id->depth + 1;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004728
4729 child_id = get_new_cssid(ss, depth);
4730 if (IS_ERR(child_id))
4731 return PTR_ERR(child_id);
4732
4733 for (i = 0; i < depth; i++)
4734 child_id->stack[i] = parent_id->stack[i];
4735 child_id->stack[depth] = child_id->id;
4736 /*
4737 * child_id->css pointer will be set after this cgroup is available
4738 * see cgroup_populate_dir()
4739 */
4740 rcu_assign_pointer(child_css->id, child_id);
4741
4742 return 0;
4743}
4744
4745/**
4746 * css_lookup - lookup css by id
4747 * @ss: cgroup subsys to be looked into.
4748 * @id: the id
4749 *
4750 * Returns pointer to cgroup_subsys_state if there is valid one with id.
4751 * NULL if not. Should be called under rcu_read_lock()
4752 */
4753struct cgroup_subsys_state *css_lookup(struct cgroup_subsys *ss, int id)
4754{
4755 struct css_id *cssid = NULL;
4756
4757 BUG_ON(!ss->use_id);
4758 cssid = idr_find(&ss->idr, id);
4759
4760 if (unlikely(!cssid))
4761 return NULL;
4762
4763 return rcu_dereference(cssid->css);
4764}
Ben Blum67523c42010-03-10 15:22:11 -08004765EXPORT_SYMBOL_GPL(css_lookup);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004766
4767/**
4768 * css_get_next - lookup next cgroup under specified hierarchy.
4769 * @ss: pointer to subsystem
4770 * @id: current position of iteration.
4771 * @root: pointer to css. search tree under this.
4772 * @foundid: position of found object.
4773 *
4774 * Search next css under the specified hierarchy of rootid. Calling under
4775 * rcu_read_lock() is necessary. Returns NULL if it reaches the end.
4776 */
4777struct cgroup_subsys_state *
4778css_get_next(struct cgroup_subsys *ss, int id,
4779 struct cgroup_subsys_state *root, int *foundid)
4780{
4781 struct cgroup_subsys_state *ret = NULL;
4782 struct css_id *tmp;
4783 int tmpid;
4784 int rootid = css_id(root);
4785 int depth = css_depth(root);
4786
4787 if (!rootid)
4788 return NULL;
4789
4790 BUG_ON(!ss->use_id);
4791 /* fill start point for scan */
4792 tmpid = id;
4793 while (1) {
4794 /*
4795 * scan next entry from bitmap(tree), tmpid is updated after
4796 * idr_get_next().
4797 */
4798 spin_lock(&ss->id_lock);
4799 tmp = idr_get_next(&ss->idr, &tmpid);
4800 spin_unlock(&ss->id_lock);
4801
4802 if (!tmp)
4803 break;
4804 if (tmp->depth >= depth && tmp->stack[depth] == rootid) {
4805 ret = rcu_dereference(tmp->css);
4806 if (ret) {
4807 *foundid = tmpid;
4808 break;
4809 }
4810 }
4811 /* continue to scan from next id */
4812 tmpid = tmpid + 1;
4813 }
4814 return ret;
4815}
4816
Paul Menagefe693432009-09-23 15:56:20 -07004817#ifdef CONFIG_CGROUP_DEBUG
4818static struct cgroup_subsys_state *debug_create(struct cgroup_subsys *ss,
4819 struct cgroup *cont)
4820{
4821 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
4822
4823 if (!css)
4824 return ERR_PTR(-ENOMEM);
4825
4826 return css;
4827}
4828
4829static void debug_destroy(struct cgroup_subsys *ss, struct cgroup *cont)
4830{
4831 kfree(cont->subsys[debug_subsys_id]);
4832}
4833
4834static u64 cgroup_refcount_read(struct cgroup *cont, struct cftype *cft)
4835{
4836 return atomic_read(&cont->count);
4837}
4838
4839static u64 debug_taskcount_read(struct cgroup *cont, struct cftype *cft)
4840{
4841 return cgroup_task_count(cont);
4842}
4843
4844static u64 current_css_set_read(struct cgroup *cont, struct cftype *cft)
4845{
4846 return (u64)(unsigned long)current->cgroups;
4847}
4848
4849static u64 current_css_set_refcount_read(struct cgroup *cont,
4850 struct cftype *cft)
4851{
4852 u64 count;
4853
4854 rcu_read_lock();
4855 count = atomic_read(&current->cgroups->refcount);
4856 rcu_read_unlock();
4857 return count;
4858}
4859
Paul Menage7717f7b2009-09-23 15:56:22 -07004860static int current_css_set_cg_links_read(struct cgroup *cont,
4861 struct cftype *cft,
4862 struct seq_file *seq)
4863{
4864 struct cg_cgroup_link *link;
4865 struct css_set *cg;
4866
4867 read_lock(&css_set_lock);
4868 rcu_read_lock();
4869 cg = rcu_dereference(current->cgroups);
4870 list_for_each_entry(link, &cg->cg_links, cg_link_list) {
4871 struct cgroup *c = link->cgrp;
4872 const char *name;
4873
4874 if (c->dentry)
4875 name = c->dentry->d_name.name;
4876 else
4877 name = "?";
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004878 seq_printf(seq, "Root %d group %s\n",
4879 c->root->hierarchy_id, name);
Paul Menage7717f7b2009-09-23 15:56:22 -07004880 }
4881 rcu_read_unlock();
4882 read_unlock(&css_set_lock);
4883 return 0;
4884}
4885
4886#define MAX_TASKS_SHOWN_PER_CSS 25
4887static int cgroup_css_links_read(struct cgroup *cont,
4888 struct cftype *cft,
4889 struct seq_file *seq)
4890{
4891 struct cg_cgroup_link *link;
4892
4893 read_lock(&css_set_lock);
4894 list_for_each_entry(link, &cont->css_sets, cgrp_link_list) {
4895 struct css_set *cg = link->cg;
4896 struct task_struct *task;
4897 int count = 0;
4898 seq_printf(seq, "css_set %p\n", cg);
4899 list_for_each_entry(task, &cg->tasks, cg_list) {
4900 if (count++ > MAX_TASKS_SHOWN_PER_CSS) {
4901 seq_puts(seq, " ...\n");
4902 break;
4903 } else {
4904 seq_printf(seq, " task %d\n",
4905 task_pid_vnr(task));
4906 }
4907 }
4908 }
4909 read_unlock(&css_set_lock);
4910 return 0;
4911}
4912
Paul Menagefe693432009-09-23 15:56:20 -07004913static u64 releasable_read(struct cgroup *cgrp, struct cftype *cft)
4914{
4915 return test_bit(CGRP_RELEASABLE, &cgrp->flags);
4916}
4917
4918static struct cftype debug_files[] = {
4919 {
4920 .name = "cgroup_refcount",
4921 .read_u64 = cgroup_refcount_read,
4922 },
4923 {
4924 .name = "taskcount",
4925 .read_u64 = debug_taskcount_read,
4926 },
4927
4928 {
4929 .name = "current_css_set",
4930 .read_u64 = current_css_set_read,
4931 },
4932
4933 {
4934 .name = "current_css_set_refcount",
4935 .read_u64 = current_css_set_refcount_read,
4936 },
4937
4938 {
Paul Menage7717f7b2009-09-23 15:56:22 -07004939 .name = "current_css_set_cg_links",
4940 .read_seq_string = current_css_set_cg_links_read,
4941 },
4942
4943 {
4944 .name = "cgroup_css_links",
4945 .read_seq_string = cgroup_css_links_read,
4946 },
4947
4948 {
Paul Menagefe693432009-09-23 15:56:20 -07004949 .name = "releasable",
4950 .read_u64 = releasable_read,
4951 },
4952};
4953
4954static int debug_populate(struct cgroup_subsys *ss, struct cgroup *cont)
4955{
4956 return cgroup_add_files(cont, ss, debug_files,
4957 ARRAY_SIZE(debug_files));
4958}
4959
4960struct cgroup_subsys debug_subsys = {
4961 .name = "debug",
4962 .create = debug_create,
4963 .destroy = debug_destroy,
4964 .populate = debug_populate,
4965 .subsys_id = debug_subsys_id,
4966};
4967#endif /* CONFIG_CGROUP_DEBUG */