blob: 3e6517e51fd3199aa1c9bd7773f33be3743c1a47 [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
766static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode);
767static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -0700768static int cgroup_populate_dir(struct cgroup *cgrp);
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -0700769static const struct inode_operations cgroup_dir_inode_operations;
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700770static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -0700771
772static struct backing_dev_info cgroup_backing_dev_info = {
Jens Axboed9938312009-06-12 14:45:52 +0200773 .name = "cgroup",
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700774 .capabilities = BDI_CAP_NO_ACCT_AND_WRITEBACK,
Paul Menagea4243162007-10-18 23:39:35 -0700775};
Paul Menageddbcc7e2007-10-18 23:39:30 -0700776
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700777static int alloc_css_id(struct cgroup_subsys *ss,
778 struct cgroup *parent, struct cgroup *child);
779
Paul Menageddbcc7e2007-10-18 23:39:30 -0700780static struct inode *cgroup_new_inode(mode_t mode, struct super_block *sb)
781{
782 struct inode *inode = new_inode(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700783
784 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400785 inode->i_ino = get_next_ino();
Paul Menageddbcc7e2007-10-18 23:39:30 -0700786 inode->i_mode = mode;
David Howells76aac0e2008-11-14 10:39:12 +1100787 inode->i_uid = current_fsuid();
788 inode->i_gid = current_fsgid();
Paul Menageddbcc7e2007-10-18 23:39:30 -0700789 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
790 inode->i_mapping->backing_dev_info = &cgroup_backing_dev_info;
791 }
792 return inode;
793}
794
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800795/*
796 * Call subsys's pre_destroy handler.
797 * This is called before css refcnt check.
798 */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700799static int cgroup_call_pre_destroy(struct cgroup *cgrp)
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800800{
801 struct cgroup_subsys *ss;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700802 int ret = 0;
803
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800804 for_each_subsys(cgrp->root, ss)
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700805 if (ss->pre_destroy) {
806 ret = ss->pre_destroy(ss, cgrp);
807 if (ret)
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -0800808 break;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700809 }
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800810
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700811 return ret;
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800812}
813
Paul Menagea47295e2009-01-07 18:07:44 -0800814static void free_cgroup_rcu(struct rcu_head *obj)
815{
816 struct cgroup *cgrp = container_of(obj, struct cgroup, rcu_head);
817
818 kfree(cgrp);
819}
820
Paul Menageddbcc7e2007-10-18 23:39:30 -0700821static void cgroup_diput(struct dentry *dentry, struct inode *inode)
822{
823 /* is dentry a directory ? if so, kfree() associated cgroup */
824 if (S_ISDIR(inode->i_mode)) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700825 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800826 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -0700827 BUG_ON(!(cgroup_is_removed(cgrp)));
Paul Menage81a6a5c2007-10-18 23:39:38 -0700828 /* It's possible for external users to be holding css
829 * reference counts on a cgroup; css_put() needs to
830 * be able to access the cgroup after decrementing
831 * the reference count in order to know if it needs to
832 * queue the cgroup to be handled by the release
833 * agent */
834 synchronize_rcu();
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800835
836 mutex_lock(&cgroup_mutex);
837 /*
838 * Release the subsystem state objects.
839 */
Li Zefan75139b82009-01-07 18:07:33 -0800840 for_each_subsys(cgrp->root, ss)
841 ss->destroy(ss, cgrp);
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800842
843 cgrp->root->number_of_cgroups--;
844 mutex_unlock(&cgroup_mutex);
845
Paul Menagea47295e2009-01-07 18:07:44 -0800846 /*
847 * Drop the active superblock reference that we took when we
848 * created the cgroup
849 */
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800850 deactivate_super(cgrp->root->sb);
851
Ben Blum72a8cb32009-09-23 15:56:27 -0700852 /*
853 * if we're getting rid of the cgroup, refcount should ensure
854 * that there are no pidlists left.
855 */
856 BUG_ON(!list_empty(&cgrp->pidlists));
857
Paul Menagea47295e2009-01-07 18:07:44 -0800858 call_rcu(&cgrp->rcu_head, free_cgroup_rcu);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700859 }
860 iput(inode);
861}
862
863static void remove_dir(struct dentry *d)
864{
865 struct dentry *parent = dget(d->d_parent);
866
867 d_delete(d);
868 simple_rmdir(parent->d_inode, d);
869 dput(parent);
870}
871
872static void cgroup_clear_directory(struct dentry *dentry)
873{
874 struct list_head *node;
875
876 BUG_ON(!mutex_is_locked(&dentry->d_inode->i_mutex));
877 spin_lock(&dcache_lock);
878 node = dentry->d_subdirs.next;
879 while (node != &dentry->d_subdirs) {
880 struct dentry *d = list_entry(node, struct dentry, d_u.d_child);
881 list_del_init(node);
882 if (d->d_inode) {
883 /* This should never be called on a cgroup
884 * directory with child cgroups */
885 BUG_ON(d->d_inode->i_mode & S_IFDIR);
886 d = dget_locked(d);
887 spin_unlock(&dcache_lock);
888 d_delete(d);
889 simple_unlink(dentry->d_inode, d);
890 dput(d);
891 spin_lock(&dcache_lock);
892 }
893 node = dentry->d_subdirs.next;
894 }
895 spin_unlock(&dcache_lock);
896}
897
898/*
899 * NOTE : the dentry must have been dget()'ed
900 */
901static void cgroup_d_remove_dir(struct dentry *dentry)
902{
903 cgroup_clear_directory(dentry);
904
905 spin_lock(&dcache_lock);
906 list_del_init(&dentry->d_u.d_child);
907 spin_unlock(&dcache_lock);
908 remove_dir(dentry);
909}
910
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700911/*
912 * A queue for waiters to do rmdir() cgroup. A tasks will sleep when
913 * cgroup->count == 0 && list_empty(&cgroup->children) && subsys has some
914 * reference to css->refcnt. In general, this refcnt is expected to goes down
915 * to zero, soon.
916 *
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700917 * CGRP_WAIT_ON_RMDIR flag is set under cgroup's inode->i_mutex;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700918 */
919DECLARE_WAIT_QUEUE_HEAD(cgroup_rmdir_waitq);
920
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700921static void cgroup_wakeup_rmdir_waiter(struct cgroup *cgrp)
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700922{
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700923 if (unlikely(test_and_clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags)))
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700924 wake_up_all(&cgroup_rmdir_waitq);
925}
926
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700927void cgroup_exclude_rmdir(struct cgroup_subsys_state *css)
928{
929 css_get(css);
930}
931
932void cgroup_release_and_wakeup_rmdir(struct cgroup_subsys_state *css)
933{
934 cgroup_wakeup_rmdir_waiter(css->cgroup);
935 css_put(css);
936}
937
Ben Blumaae8aab2010-03-10 15:22:07 -0800938/*
Ben Blumcf5d5942010-03-10 15:22:09 -0800939 * Call with cgroup_mutex held. Drops reference counts on modules, including
940 * any duplicate ones that parse_cgroupfs_options took. If this function
941 * returns an error, no reference counts are touched.
Ben Blumaae8aab2010-03-10 15:22:07 -0800942 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700943static int rebind_subsystems(struct cgroupfs_root *root,
944 unsigned long final_bits)
945{
946 unsigned long added_bits, removed_bits;
Paul Menagebd89aab2007-10-18 23:40:44 -0700947 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700948 int i;
949
Ben Blumaae8aab2010-03-10 15:22:07 -0800950 BUG_ON(!mutex_is_locked(&cgroup_mutex));
951
Paul Menageddbcc7e2007-10-18 23:39:30 -0700952 removed_bits = root->actual_subsys_bits & ~final_bits;
953 added_bits = final_bits & ~root->actual_subsys_bits;
954 /* Check that any added subsystems are currently free */
955 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Li Zefan8d53d552008-02-23 15:24:11 -0800956 unsigned long bit = 1UL << i;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700957 struct cgroup_subsys *ss = subsys[i];
958 if (!(bit & added_bits))
959 continue;
Ben Blumaae8aab2010-03-10 15:22:07 -0800960 /*
961 * Nobody should tell us to do a subsys that doesn't exist:
962 * parse_cgroupfs_options should catch that case and refcounts
963 * ensure that subsystems won't disappear once selected.
964 */
965 BUG_ON(ss == NULL);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700966 if (ss->root != &rootnode) {
967 /* Subsystem isn't free */
968 return -EBUSY;
969 }
970 }
971
972 /* Currently we don't handle adding/removing subsystems when
973 * any child cgroups exist. This is theoretically supportable
974 * but involves complex error handling, so it's being left until
975 * later */
Paul Menage307257c2008-12-15 13:54:22 -0800976 if (root->number_of_cgroups > 1)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700977 return -EBUSY;
978
979 /* Process each subsystem */
980 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
981 struct cgroup_subsys *ss = subsys[i];
982 unsigned long bit = 1UL << i;
983 if (bit & added_bits) {
984 /* We're binding this subsystem to this hierarchy */
Ben Blumaae8aab2010-03-10 15:22:07 -0800985 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -0700986 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700987 BUG_ON(!dummytop->subsys[i]);
988 BUG_ON(dummytop->subsys[i]->cgroup != dummytop);
Paul Menage999cd8a2009-01-07 18:08:36 -0800989 mutex_lock(&ss->hierarchy_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -0700990 cgrp->subsys[i] = dummytop->subsys[i];
991 cgrp->subsys[i]->cgroup = cgrp;
Li Zefan33a68ac2009-01-07 18:07:42 -0800992 list_move(&ss->sibling, &root->subsys_list);
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -0800993 ss->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700994 if (ss->bind)
Paul Menagebd89aab2007-10-18 23:40:44 -0700995 ss->bind(ss, cgrp);
Paul Menage999cd8a2009-01-07 18:08:36 -0800996 mutex_unlock(&ss->hierarchy_mutex);
Ben Blumcf5d5942010-03-10 15:22:09 -0800997 /* refcount was already taken, and we're keeping it */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700998 } else if (bit & removed_bits) {
999 /* We're removing this subsystem */
Ben Blumaae8aab2010-03-10 15:22:07 -08001000 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001001 BUG_ON(cgrp->subsys[i] != dummytop->subsys[i]);
1002 BUG_ON(cgrp->subsys[i]->cgroup != cgrp);
Paul Menage999cd8a2009-01-07 18:08:36 -08001003 mutex_lock(&ss->hierarchy_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001004 if (ss->bind)
1005 ss->bind(ss, dummytop);
1006 dummytop->subsys[i]->cgroup = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -07001007 cgrp->subsys[i] = NULL;
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001008 subsys[i]->root = &rootnode;
Li Zefan33a68ac2009-01-07 18:07:42 -08001009 list_move(&ss->sibling, &rootnode.subsys_list);
Paul Menage999cd8a2009-01-07 18:08:36 -08001010 mutex_unlock(&ss->hierarchy_mutex);
Ben Blumcf5d5942010-03-10 15:22:09 -08001011 /* subsystem is now free - drop reference on module */
1012 module_put(ss->module);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001013 } else if (bit & final_bits) {
1014 /* Subsystem state should already exist */
Ben Blumaae8aab2010-03-10 15:22:07 -08001015 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001016 BUG_ON(!cgrp->subsys[i]);
Ben Blumcf5d5942010-03-10 15:22:09 -08001017 /*
1018 * a refcount was taken, but we already had one, so
1019 * drop the extra reference.
1020 */
1021 module_put(ss->module);
1022#ifdef CONFIG_MODULE_UNLOAD
1023 BUG_ON(ss->module && !module_refcount(ss->module));
1024#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001025 } else {
1026 /* Subsystem state shouldn't exist */
Paul Menagebd89aab2007-10-18 23:40:44 -07001027 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001028 }
1029 }
1030 root->subsys_bits = root->actual_subsys_bits = final_bits;
1031 synchronize_rcu();
1032
1033 return 0;
1034}
1035
1036static int cgroup_show_options(struct seq_file *seq, struct vfsmount *vfs)
1037{
1038 struct cgroupfs_root *root = vfs->mnt_sb->s_fs_info;
1039 struct cgroup_subsys *ss;
1040
1041 mutex_lock(&cgroup_mutex);
1042 for_each_subsys(root, ss)
1043 seq_printf(seq, ",%s", ss->name);
1044 if (test_bit(ROOT_NOPREFIX, &root->flags))
1045 seq_puts(seq, ",noprefix");
Paul Menage81a6a5c2007-10-18 23:39:38 -07001046 if (strlen(root->release_agent_path))
1047 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Daniel Lezcano97978e62010-10-27 15:33:35 -07001048 if (clone_children(&root->top_cgroup))
1049 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001050 if (strlen(root->name))
1051 seq_printf(seq, ",name=%s", root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001052 mutex_unlock(&cgroup_mutex);
1053 return 0;
1054}
1055
1056struct cgroup_sb_opts {
1057 unsigned long subsys_bits;
1058 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001059 char *release_agent;
Daniel Lezcano97978e62010-10-27 15:33:35 -07001060 bool clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001061 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001062 /* User explicitly requested empty subsystem */
1063 bool none;
Paul Menagec6d57f32009-09-23 15:56:19 -07001064
1065 struct cgroupfs_root *new_root;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001066
Paul Menageddbcc7e2007-10-18 23:39:30 -07001067};
1068
Ben Blumaae8aab2010-03-10 15:22:07 -08001069/*
1070 * Convert a hierarchy specifier into a bitmask of subsystems and flags. Call
Ben Blumcf5d5942010-03-10 15:22:09 -08001071 * with cgroup_mutex held to protect the subsys[] array. This function takes
1072 * refcounts on subsystems to be used, unless it returns error, in which case
1073 * no refcounts are taken.
Ben Blumaae8aab2010-03-10 15:22:07 -08001074 */
Ben Blumcf5d5942010-03-10 15:22:09 -08001075static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001076{
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001077 char *token, *o = data;
1078 bool all_ss = false, one_ss = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001079 unsigned long mask = (unsigned long)-1;
Ben Blumcf5d5942010-03-10 15:22:09 -08001080 int i;
1081 bool module_pin_failed = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001082
Ben Blumaae8aab2010-03-10 15:22:07 -08001083 BUG_ON(!mutex_is_locked(&cgroup_mutex));
1084
Li Zefanf9ab5b52009-06-17 16:26:33 -07001085#ifdef CONFIG_CPUSETS
1086 mask = ~(1UL << cpuset_subsys_id);
1087#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001088
Paul Menagec6d57f32009-09-23 15:56:19 -07001089 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001090
1091 while ((token = strsep(&o, ",")) != NULL) {
1092 if (!*token)
1093 return -EINVAL;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001094 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001095 /* Explicitly have no subsystems */
1096 opts->none = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001097 continue;
1098 }
1099 if (!strcmp(token, "all")) {
1100 /* Mutually exclusive option 'all' + subsystem name */
1101 if (one_ss)
1102 return -EINVAL;
1103 all_ss = true;
1104 continue;
1105 }
1106 if (!strcmp(token, "noprefix")) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001107 set_bit(ROOT_NOPREFIX, &opts->flags);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001108 continue;
1109 }
1110 if (!strcmp(token, "clone_children")) {
Daniel Lezcano97978e62010-10-27 15:33:35 -07001111 opts->clone_children = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001112 continue;
1113 }
1114 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001115 /* Specifying two release agents is forbidden */
1116 if (opts->release_agent)
1117 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001118 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001119 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001120 if (!opts->release_agent)
1121 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001122 continue;
1123 }
1124 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001125 const char *name = token + 5;
1126 /* Can't specify an empty name */
1127 if (!strlen(name))
1128 return -EINVAL;
1129 /* Must match [\w.-]+ */
1130 for (i = 0; i < strlen(name); i++) {
1131 char c = name[i];
1132 if (isalnum(c))
1133 continue;
1134 if ((c == '.') || (c == '-') || (c == '_'))
1135 continue;
1136 return -EINVAL;
1137 }
1138 /* Specifying two names is forbidden */
1139 if (opts->name)
1140 return -EINVAL;
1141 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001142 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001143 GFP_KERNEL);
1144 if (!opts->name)
1145 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001146
1147 continue;
1148 }
1149
1150 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1151 struct cgroup_subsys *ss = subsys[i];
1152 if (ss == NULL)
1153 continue;
1154 if (strcmp(token, ss->name))
1155 continue;
1156 if (ss->disabled)
1157 continue;
1158
1159 /* Mutually exclusive option 'all' + subsystem name */
1160 if (all_ss)
1161 return -EINVAL;
1162 set_bit(i, &opts->subsys_bits);
1163 one_ss = true;
1164
1165 break;
1166 }
1167 if (i == CGROUP_SUBSYS_COUNT)
1168 return -ENOENT;
1169 }
1170
1171 /*
1172 * If the 'all' option was specified select all the subsystems,
1173 * otherwise 'all, 'none' and a subsystem name options were not
1174 * specified, let's default to 'all'
1175 */
1176 if (all_ss || (!all_ss && !one_ss && !opts->none)) {
1177 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1178 struct cgroup_subsys *ss = subsys[i];
1179 if (ss == NULL)
1180 continue;
1181 if (ss->disabled)
1182 continue;
1183 set_bit(i, &opts->subsys_bits);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001184 }
1185 }
1186
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001187 /* Consistency checks */
1188
Li Zefanf9ab5b52009-06-17 16:26:33 -07001189 /*
1190 * Option noprefix was introduced just for backward compatibility
1191 * with the old cpuset, so we allow noprefix only if mounting just
1192 * the cpuset subsystem.
1193 */
1194 if (test_bit(ROOT_NOPREFIX, &opts->flags) &&
1195 (opts->subsys_bits & mask))
1196 return -EINVAL;
1197
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001198
1199 /* Can't specify "none" and some subsystems */
1200 if (opts->subsys_bits && opts->none)
1201 return -EINVAL;
1202
1203 /*
1204 * We either have to specify by name or by subsystems. (So all
1205 * empty hierarchies must have a name).
1206 */
Paul Menagec6d57f32009-09-23 15:56:19 -07001207 if (!opts->subsys_bits && !opts->name)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001208 return -EINVAL;
1209
Ben Blumcf5d5942010-03-10 15:22:09 -08001210 /*
1211 * Grab references on all the modules we'll need, so the subsystems
1212 * don't dance around before rebind_subsystems attaches them. This may
1213 * take duplicate reference counts on a subsystem that's already used,
1214 * but rebind_subsystems handles this case.
1215 */
1216 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
1217 unsigned long bit = 1UL << i;
1218
1219 if (!(bit & opts->subsys_bits))
1220 continue;
1221 if (!try_module_get(subsys[i]->module)) {
1222 module_pin_failed = true;
1223 break;
1224 }
1225 }
1226 if (module_pin_failed) {
1227 /*
1228 * oops, one of the modules was going away. this means that we
1229 * raced with a module_delete call, and to the user this is
1230 * essentially a "subsystem doesn't exist" case.
1231 */
1232 for (i--; i >= CGROUP_BUILTIN_SUBSYS_COUNT; i--) {
1233 /* drop refcounts only on the ones we took */
1234 unsigned long bit = 1UL << i;
1235
1236 if (!(bit & opts->subsys_bits))
1237 continue;
1238 module_put(subsys[i]->module);
1239 }
1240 return -ENOENT;
1241 }
1242
Paul Menageddbcc7e2007-10-18 23:39:30 -07001243 return 0;
1244}
1245
Ben Blumcf5d5942010-03-10 15:22:09 -08001246static void drop_parsed_module_refcounts(unsigned long subsys_bits)
1247{
1248 int i;
1249 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
1250 unsigned long bit = 1UL << i;
1251
1252 if (!(bit & subsys_bits))
1253 continue;
1254 module_put(subsys[i]->module);
1255 }
1256}
1257
Paul Menageddbcc7e2007-10-18 23:39:30 -07001258static int cgroup_remount(struct super_block *sb, int *flags, char *data)
1259{
1260 int ret = 0;
1261 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001262 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001263 struct cgroup_sb_opts opts;
1264
Paul Menagebd89aab2007-10-18 23:40:44 -07001265 mutex_lock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001266 mutex_lock(&cgroup_mutex);
1267
1268 /* See what subsystems are wanted */
1269 ret = parse_cgroupfs_options(data, &opts);
1270 if (ret)
1271 goto out_unlock;
1272
Ben Blumcf5d5942010-03-10 15:22:09 -08001273 /* Don't allow flags or name to change at remount */
1274 if (opts.flags != root->flags ||
1275 (opts.name && strcmp(opts.name, root->name))) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001276 ret = -EINVAL;
Ben Blumcf5d5942010-03-10 15:22:09 -08001277 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menagec6d57f32009-09-23 15:56:19 -07001278 goto out_unlock;
1279 }
1280
Paul Menageddbcc7e2007-10-18 23:39:30 -07001281 ret = rebind_subsystems(root, opts.subsys_bits);
Ben Blumcf5d5942010-03-10 15:22:09 -08001282 if (ret) {
1283 drop_parsed_module_refcounts(opts.subsys_bits);
Li Zefan0670e082009-04-02 16:57:30 -07001284 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001285 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001286
1287 /* (re)populate subsystem files */
Li Zefan0670e082009-04-02 16:57:30 -07001288 cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001289
Paul Menage81a6a5c2007-10-18 23:39:38 -07001290 if (opts.release_agent)
1291 strcpy(root->release_agent_path, opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001292 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001293 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001294 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001295 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07001296 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001297 return ret;
1298}
1299
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001300static const struct super_operations cgroup_ops = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001301 .statfs = simple_statfs,
1302 .drop_inode = generic_delete_inode,
1303 .show_options = cgroup_show_options,
1304 .remount_fs = cgroup_remount,
1305};
1306
Paul Menagecc31edc2008-10-18 20:28:04 -07001307static void init_cgroup_housekeeping(struct cgroup *cgrp)
1308{
1309 INIT_LIST_HEAD(&cgrp->sibling);
1310 INIT_LIST_HEAD(&cgrp->children);
1311 INIT_LIST_HEAD(&cgrp->css_sets);
1312 INIT_LIST_HEAD(&cgrp->release_list);
Ben Blum72a8cb32009-09-23 15:56:27 -07001313 INIT_LIST_HEAD(&cgrp->pidlists);
1314 mutex_init(&cgrp->pidlist_mutex);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08001315 INIT_LIST_HEAD(&cgrp->event_list);
1316 spin_lock_init(&cgrp->event_list_lock);
Paul Menagecc31edc2008-10-18 20:28:04 -07001317}
Paul Menagec6d57f32009-09-23 15:56:19 -07001318
Paul Menageddbcc7e2007-10-18 23:39:30 -07001319static void init_cgroup_root(struct cgroupfs_root *root)
1320{
Paul Menagebd89aab2007-10-18 23:40:44 -07001321 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001322 INIT_LIST_HEAD(&root->subsys_list);
1323 INIT_LIST_HEAD(&root->root_list);
1324 root->number_of_cgroups = 1;
Paul Menagebd89aab2007-10-18 23:40:44 -07001325 cgrp->root = root;
1326 cgrp->top_cgroup = cgrp;
Paul Menagecc31edc2008-10-18 20:28:04 -07001327 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001328}
1329
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001330static bool init_root_id(struct cgroupfs_root *root)
1331{
1332 int ret = 0;
1333
1334 do {
1335 if (!ida_pre_get(&hierarchy_ida, GFP_KERNEL))
1336 return false;
1337 spin_lock(&hierarchy_id_lock);
1338 /* Try to allocate the next unused ID */
1339 ret = ida_get_new_above(&hierarchy_ida, next_hierarchy_id,
1340 &root->hierarchy_id);
1341 if (ret == -ENOSPC)
1342 /* Try again starting from 0 */
1343 ret = ida_get_new(&hierarchy_ida, &root->hierarchy_id);
1344 if (!ret) {
1345 next_hierarchy_id = root->hierarchy_id + 1;
1346 } else if (ret != -EAGAIN) {
1347 /* Can only get here if the 31-bit IDR is full ... */
1348 BUG_ON(ret);
1349 }
1350 spin_unlock(&hierarchy_id_lock);
1351 } while (ret);
1352 return true;
1353}
1354
Paul Menageddbcc7e2007-10-18 23:39:30 -07001355static int cgroup_test_super(struct super_block *sb, void *data)
1356{
Paul Menagec6d57f32009-09-23 15:56:19 -07001357 struct cgroup_sb_opts *opts = data;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001358 struct cgroupfs_root *root = sb->s_fs_info;
1359
Paul Menagec6d57f32009-09-23 15:56:19 -07001360 /* If we asked for a name then it must match */
1361 if (opts->name && strcmp(opts->name, root->name))
1362 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001363
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001364 /*
1365 * If we asked for subsystems (or explicitly for no
1366 * subsystems) then they must match
1367 */
1368 if ((opts->subsys_bits || opts->none)
1369 && (opts->subsys_bits != root->subsys_bits))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001370 return 0;
1371
1372 return 1;
1373}
1374
Paul Menagec6d57f32009-09-23 15:56:19 -07001375static struct cgroupfs_root *cgroup_root_from_opts(struct cgroup_sb_opts *opts)
1376{
1377 struct cgroupfs_root *root;
1378
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001379 if (!opts->subsys_bits && !opts->none)
Paul Menagec6d57f32009-09-23 15:56:19 -07001380 return NULL;
1381
1382 root = kzalloc(sizeof(*root), GFP_KERNEL);
1383 if (!root)
1384 return ERR_PTR(-ENOMEM);
1385
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001386 if (!init_root_id(root)) {
1387 kfree(root);
1388 return ERR_PTR(-ENOMEM);
1389 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001390 init_cgroup_root(root);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001391
Paul Menagec6d57f32009-09-23 15:56:19 -07001392 root->subsys_bits = opts->subsys_bits;
1393 root->flags = opts->flags;
1394 if (opts->release_agent)
1395 strcpy(root->release_agent_path, opts->release_agent);
1396 if (opts->name)
1397 strcpy(root->name, opts->name);
Daniel Lezcano97978e62010-10-27 15:33:35 -07001398 if (opts->clone_children)
1399 set_bit(CGRP_CLONE_CHILDREN, &root->top_cgroup.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001400 return root;
1401}
1402
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001403static void cgroup_drop_root(struct cgroupfs_root *root)
1404{
1405 if (!root)
1406 return;
1407
1408 BUG_ON(!root->hierarchy_id);
1409 spin_lock(&hierarchy_id_lock);
1410 ida_remove(&hierarchy_ida, root->hierarchy_id);
1411 spin_unlock(&hierarchy_id_lock);
1412 kfree(root);
1413}
1414
Paul Menageddbcc7e2007-10-18 23:39:30 -07001415static int cgroup_set_super(struct super_block *sb, void *data)
1416{
1417 int ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001418 struct cgroup_sb_opts *opts = data;
1419
1420 /* If we don't have a new root, we can't set up a new sb */
1421 if (!opts->new_root)
1422 return -EINVAL;
1423
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001424 BUG_ON(!opts->subsys_bits && !opts->none);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001425
1426 ret = set_anon_super(sb, NULL);
1427 if (ret)
1428 return ret;
1429
Paul Menagec6d57f32009-09-23 15:56:19 -07001430 sb->s_fs_info = opts->new_root;
1431 opts->new_root->sb = sb;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001432
1433 sb->s_blocksize = PAGE_CACHE_SIZE;
1434 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
1435 sb->s_magic = CGROUP_SUPER_MAGIC;
1436 sb->s_op = &cgroup_ops;
1437
1438 return 0;
1439}
1440
1441static int cgroup_get_rootdir(struct super_block *sb)
1442{
1443 struct inode *inode =
1444 cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb);
1445 struct dentry *dentry;
1446
1447 if (!inode)
1448 return -ENOMEM;
1449
Paul Menageddbcc7e2007-10-18 23:39:30 -07001450 inode->i_fop = &simple_dir_operations;
1451 inode->i_op = &cgroup_dir_inode_operations;
1452 /* directories start off with i_nlink == 2 (for "." entry) */
1453 inc_nlink(inode);
1454 dentry = d_alloc_root(inode);
1455 if (!dentry) {
1456 iput(inode);
1457 return -ENOMEM;
1458 }
1459 sb->s_root = dentry;
1460 return 0;
1461}
1462
1463static int cgroup_get_sb(struct file_system_type *fs_type,
1464 int flags, const char *unused_dev_name,
1465 void *data, struct vfsmount *mnt)
1466{
1467 struct cgroup_sb_opts opts;
Paul Menagec6d57f32009-09-23 15:56:19 -07001468 struct cgroupfs_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001469 int ret = 0;
1470 struct super_block *sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001471 struct cgroupfs_root *new_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001472
1473 /* First find the desired set of subsystems */
Ben Blumaae8aab2010-03-10 15:22:07 -08001474 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001475 ret = parse_cgroupfs_options(data, &opts);
Ben Blumaae8aab2010-03-10 15:22:07 -08001476 mutex_unlock(&cgroup_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001477 if (ret)
1478 goto out_err;
1479
1480 /*
1481 * Allocate a new cgroup root. We may not need it if we're
1482 * reusing an existing hierarchy.
1483 */
1484 new_root = cgroup_root_from_opts(&opts);
1485 if (IS_ERR(new_root)) {
1486 ret = PTR_ERR(new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001487 goto drop_modules;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001488 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001489 opts.new_root = new_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001490
Paul Menagec6d57f32009-09-23 15:56:19 -07001491 /* Locate an existing or new sb for this hierarchy */
1492 sb = sget(fs_type, cgroup_test_super, cgroup_set_super, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001493 if (IS_ERR(sb)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001494 ret = PTR_ERR(sb);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001495 cgroup_drop_root(opts.new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001496 goto drop_modules;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001497 }
1498
Paul Menagec6d57f32009-09-23 15:56:19 -07001499 root = sb->s_fs_info;
1500 BUG_ON(!root);
1501 if (root == opts.new_root) {
1502 /* We used the new root structure, so this is a new hierarchy */
1503 struct list_head tmp_cg_links;
Li Zefanc12f65d2009-01-07 18:07:42 -08001504 struct cgroup *root_cgrp = &root->top_cgroup;
Paul Menage817929e2007-10-18 23:39:36 -07001505 struct inode *inode;
Paul Menagec6d57f32009-09-23 15:56:19 -07001506 struct cgroupfs_root *existing_root;
Li Zefan28fd5df2008-04-29 01:00:13 -07001507 int i;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001508
1509 BUG_ON(sb->s_root != NULL);
1510
1511 ret = cgroup_get_rootdir(sb);
1512 if (ret)
1513 goto drop_new_super;
Paul Menage817929e2007-10-18 23:39:36 -07001514 inode = sb->s_root->d_inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001515
Paul Menage817929e2007-10-18 23:39:36 -07001516 mutex_lock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001517 mutex_lock(&cgroup_mutex);
1518
Paul Menagec6d57f32009-09-23 15:56:19 -07001519 if (strlen(root->name)) {
1520 /* Check for name clashes with existing mounts */
1521 for_each_active_root(existing_root) {
1522 if (!strcmp(existing_root->name, root->name)) {
1523 ret = -EBUSY;
1524 mutex_unlock(&cgroup_mutex);
1525 mutex_unlock(&inode->i_mutex);
1526 goto drop_new_super;
1527 }
1528 }
1529 }
1530
Paul Menage817929e2007-10-18 23:39:36 -07001531 /*
1532 * We're accessing css_set_count without locking
1533 * css_set_lock here, but that's OK - it can only be
1534 * increased by someone holding cgroup_lock, and
1535 * that's us. The worst that can happen is that we
1536 * have some link structures left over
1537 */
1538 ret = allocate_cg_links(css_set_count, &tmp_cg_links);
1539 if (ret) {
1540 mutex_unlock(&cgroup_mutex);
1541 mutex_unlock(&inode->i_mutex);
1542 goto drop_new_super;
1543 }
1544
Paul Menageddbcc7e2007-10-18 23:39:30 -07001545 ret = rebind_subsystems(root, root->subsys_bits);
1546 if (ret == -EBUSY) {
1547 mutex_unlock(&cgroup_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07001548 mutex_unlock(&inode->i_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001549 free_cg_links(&tmp_cg_links);
1550 goto drop_new_super;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001551 }
Ben Blumcf5d5942010-03-10 15:22:09 -08001552 /*
1553 * There must be no failure case after here, since rebinding
1554 * takes care of subsystems' refcounts, which are explicitly
1555 * dropped in the failure exit path.
1556 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001557
1558 /* EBUSY should be the only error here */
1559 BUG_ON(ret);
1560
1561 list_add(&root->root_list, &roots);
Paul Menage817929e2007-10-18 23:39:36 -07001562 root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001563
Li Zefanc12f65d2009-01-07 18:07:42 -08001564 sb->s_root->d_fsdata = root_cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001565 root->top_cgroup.dentry = sb->s_root;
1566
Paul Menage817929e2007-10-18 23:39:36 -07001567 /* Link the top cgroup in this hierarchy into all
1568 * the css_set objects */
1569 write_lock(&css_set_lock);
Li Zefan28fd5df2008-04-29 01:00:13 -07001570 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
1571 struct hlist_head *hhead = &css_set_table[i];
1572 struct hlist_node *node;
Paul Menage817929e2007-10-18 23:39:36 -07001573 struct css_set *cg;
Li Zefan28fd5df2008-04-29 01:00:13 -07001574
Li Zefanc12f65d2009-01-07 18:07:42 -08001575 hlist_for_each_entry(cg, node, hhead, hlist)
1576 link_css_set(&tmp_cg_links, cg, root_cgrp);
Li Zefan28fd5df2008-04-29 01:00:13 -07001577 }
Paul Menage817929e2007-10-18 23:39:36 -07001578 write_unlock(&css_set_lock);
1579
1580 free_cg_links(&tmp_cg_links);
1581
Li Zefanc12f65d2009-01-07 18:07:42 -08001582 BUG_ON(!list_empty(&root_cgrp->sibling));
1583 BUG_ON(!list_empty(&root_cgrp->children));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001584 BUG_ON(root->number_of_cgroups != 1);
1585
Li Zefanc12f65d2009-01-07 18:07:42 -08001586 cgroup_populate_dir(root_cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001587 mutex_unlock(&cgroup_mutex);
Xiaotian Feng34f77a92009-09-23 15:56:18 -07001588 mutex_unlock(&inode->i_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001589 } else {
1590 /*
1591 * We re-used an existing hierarchy - the new root (if
1592 * any) is not needed
1593 */
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001594 cgroup_drop_root(opts.new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001595 /* no subsys rebinding, so refcounts don't change */
1596 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001597 }
1598
Sukadev Bhattiprolua3ec9472009-03-04 12:06:34 -08001599 simple_set_mnt(mnt, sb);
Paul Menagec6d57f32009-09-23 15:56:19 -07001600 kfree(opts.release_agent);
1601 kfree(opts.name);
Sukadev Bhattiprolua3ec9472009-03-04 12:06:34 -08001602 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001603
1604 drop_new_super:
Al Viro6f5bbff2009-05-06 01:34:22 -04001605 deactivate_locked_super(sb);
Ben Blumcf5d5942010-03-10 15:22:09 -08001606 drop_modules:
1607 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menagec6d57f32009-09-23 15:56:19 -07001608 out_err:
1609 kfree(opts.release_agent);
1610 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001611 return ret;
1612}
1613
1614static void cgroup_kill_sb(struct super_block *sb) {
1615 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001616 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001617 int ret;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001618 struct cg_cgroup_link *link;
1619 struct cg_cgroup_link *saved_link;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001620
1621 BUG_ON(!root);
1622
1623 BUG_ON(root->number_of_cgroups != 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001624 BUG_ON(!list_empty(&cgrp->children));
1625 BUG_ON(!list_empty(&cgrp->sibling));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001626
1627 mutex_lock(&cgroup_mutex);
1628
1629 /* Rebind all subsystems back to the default hierarchy */
1630 ret = rebind_subsystems(root, 0);
1631 /* Shouldn't be able to fail ... */
1632 BUG_ON(ret);
1633
Paul Menage817929e2007-10-18 23:39:36 -07001634 /*
1635 * Release all the links from css_sets to this hierarchy's
1636 * root cgroup
1637 */
1638 write_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001639
1640 list_for_each_entry_safe(link, saved_link, &cgrp->css_sets,
1641 cgrp_link_list) {
Paul Menage817929e2007-10-18 23:39:36 -07001642 list_del(&link->cg_link_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07001643 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001644 kfree(link);
1645 }
1646 write_unlock(&css_set_lock);
1647
Paul Menage839ec542009-01-29 14:25:22 -08001648 if (!list_empty(&root->root_list)) {
1649 list_del(&root->root_list);
1650 root_count--;
1651 }
Li Zefane5f6a862009-01-07 18:07:41 -08001652
Paul Menageddbcc7e2007-10-18 23:39:30 -07001653 mutex_unlock(&cgroup_mutex);
1654
Paul Menageddbcc7e2007-10-18 23:39:30 -07001655 kill_litter_super(sb);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001656 cgroup_drop_root(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001657}
1658
1659static struct file_system_type cgroup_fs_type = {
1660 .name = "cgroup",
1661 .get_sb = cgroup_get_sb,
1662 .kill_sb = cgroup_kill_sb,
1663};
1664
Greg KH676db4a2010-08-05 13:53:35 -07001665static struct kobject *cgroup_kobj;
1666
Paul Menagebd89aab2007-10-18 23:40:44 -07001667static inline struct cgroup *__d_cgrp(struct dentry *dentry)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001668{
1669 return dentry->d_fsdata;
1670}
1671
1672static inline struct cftype *__d_cft(struct dentry *dentry)
1673{
1674 return dentry->d_fsdata;
1675}
1676
Li Zefana043e3b2008-02-23 15:24:09 -08001677/**
1678 * cgroup_path - generate the path of a cgroup
1679 * @cgrp: the cgroup in question
1680 * @buf: the buffer to write the path into
1681 * @buflen: the length of the buffer
1682 *
Paul Menagea47295e2009-01-07 18:07:44 -08001683 * Called with cgroup_mutex held or else with an RCU-protected cgroup
1684 * reference. Writes path of cgroup into buf. Returns 0 on success,
1685 * -errno on error.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001686 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001687int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001688{
1689 char *start;
Li Zefan9a9686b2010-04-22 17:29:24 +08001690 struct dentry *dentry = rcu_dereference_check(cgrp->dentry,
1691 rcu_read_lock_held() ||
1692 cgroup_lock_is_held());
Paul Menageddbcc7e2007-10-18 23:39:30 -07001693
Paul Menagea47295e2009-01-07 18:07:44 -08001694 if (!dentry || cgrp == dummytop) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001695 /*
1696 * Inactive subsystems have no dentry for their root
1697 * cgroup
1698 */
1699 strcpy(buf, "/");
1700 return 0;
1701 }
1702
1703 start = buf + buflen;
1704
1705 *--start = '\0';
1706 for (;;) {
Paul Menagea47295e2009-01-07 18:07:44 -08001707 int len = dentry->d_name.len;
Li Zefan9a9686b2010-04-22 17:29:24 +08001708
Paul Menageddbcc7e2007-10-18 23:39:30 -07001709 if ((start -= len) < buf)
1710 return -ENAMETOOLONG;
Li Zefan9a9686b2010-04-22 17:29:24 +08001711 memcpy(start, dentry->d_name.name, len);
Paul Menagebd89aab2007-10-18 23:40:44 -07001712 cgrp = cgrp->parent;
1713 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001714 break;
Li Zefan9a9686b2010-04-22 17:29:24 +08001715
1716 dentry = rcu_dereference_check(cgrp->dentry,
1717 rcu_read_lock_held() ||
1718 cgroup_lock_is_held());
Paul Menagebd89aab2007-10-18 23:40:44 -07001719 if (!cgrp->parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001720 continue;
1721 if (--start < buf)
1722 return -ENAMETOOLONG;
1723 *start = '/';
1724 }
1725 memmove(buf, start, buf + buflen - start);
1726 return 0;
1727}
Ben Blum67523c42010-03-10 15:22:11 -08001728EXPORT_SYMBOL_GPL(cgroup_path);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001729
Li Zefana043e3b2008-02-23 15:24:09 -08001730/**
1731 * cgroup_attach_task - attach task 'tsk' to cgroup 'cgrp'
1732 * @cgrp: the cgroup the task is attaching to
1733 * @tsk: the task to be attached
Paul Menagebbcb81d2007-10-18 23:39:32 -07001734 *
Li Zefana043e3b2008-02-23 15:24:09 -08001735 * Call holding cgroup_mutex. May take task_lock of
1736 * the task 'tsk' during call.
Paul Menagebbcb81d2007-10-18 23:39:32 -07001737 */
Cliff Wickman956db3c2008-02-07 00:14:43 -08001738int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001739{
1740 int retval = 0;
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001741 struct cgroup_subsys *ss, *failed_ss = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07001742 struct cgroup *oldcgrp;
Lai Jiangshan77efecd2009-01-07 18:07:39 -08001743 struct css_set *cg;
Paul Menage817929e2007-10-18 23:39:36 -07001744 struct css_set *newcg;
Paul Menagebd89aab2007-10-18 23:40:44 -07001745 struct cgroupfs_root *root = cgrp->root;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001746
1747 /* Nothing to do if the task is already in that cgroup */
Paul Menage7717f7b2009-09-23 15:56:22 -07001748 oldcgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07001749 if (cgrp == oldcgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001750 return 0;
1751
1752 for_each_subsys(root, ss) {
1753 if (ss->can_attach) {
Ben Blumbe367d02009-09-23 15:56:31 -07001754 retval = ss->can_attach(ss, cgrp, tsk, false);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001755 if (retval) {
1756 /*
1757 * Remember on which subsystem the can_attach()
1758 * failed, so that we only call cancel_attach()
1759 * against the subsystems whose can_attach()
1760 * succeeded. (See below)
1761 */
1762 failed_ss = ss;
1763 goto out;
1764 }
Paul Menagebbcb81d2007-10-18 23:39:32 -07001765 }
1766 }
1767
Lai Jiangshan77efecd2009-01-07 18:07:39 -08001768 task_lock(tsk);
1769 cg = tsk->cgroups;
1770 get_css_set(cg);
1771 task_unlock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07001772 /*
1773 * Locate or allocate a new css_set for this task,
1774 * based on its final set of cgroups
1775 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001776 newcg = find_css_set(cg, cgrp);
Lai Jiangshan77efecd2009-01-07 18:07:39 -08001777 put_css_set(cg);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001778 if (!newcg) {
1779 retval = -ENOMEM;
1780 goto out;
1781 }
Paul Menage817929e2007-10-18 23:39:36 -07001782
Paul Menagebbcb81d2007-10-18 23:39:32 -07001783 task_lock(tsk);
1784 if (tsk->flags & PF_EXITING) {
1785 task_unlock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07001786 put_css_set(newcg);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001787 retval = -ESRCH;
1788 goto out;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001789 }
Paul Menage817929e2007-10-18 23:39:36 -07001790 rcu_assign_pointer(tsk->cgroups, newcg);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001791 task_unlock(tsk);
1792
Paul Menage817929e2007-10-18 23:39:36 -07001793 /* Update the css_set linked lists if we're using them */
1794 write_lock(&css_set_lock);
1795 if (!list_empty(&tsk->cg_list)) {
1796 list_del(&tsk->cg_list);
1797 list_add(&tsk->cg_list, &newcg->tasks);
1798 }
1799 write_unlock(&css_set_lock);
1800
Paul Menagebbcb81d2007-10-18 23:39:32 -07001801 for_each_subsys(root, ss) {
Paul Jacksone18f6312008-02-07 00:13:44 -08001802 if (ss->attach)
Ben Blumbe367d02009-09-23 15:56:31 -07001803 ss->attach(ss, cgrp, oldcgrp, tsk, false);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001804 }
Paul Menagebd89aab2007-10-18 23:40:44 -07001805 set_bit(CGRP_RELEASABLE, &oldcgrp->flags);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001806 synchronize_rcu();
Paul Menage817929e2007-10-18 23:39:36 -07001807 put_css_set(cg);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07001808
1809 /*
1810 * wake up rmdir() waiter. the rmdir should fail since the cgroup
1811 * is no longer empty.
1812 */
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07001813 cgroup_wakeup_rmdir_waiter(cgrp);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001814out:
1815 if (retval) {
1816 for_each_subsys(root, ss) {
1817 if (ss == failed_ss)
1818 /*
1819 * This subsystem was the one that failed the
1820 * can_attach() check earlier, so we don't need
1821 * to call cancel_attach() against it or any
1822 * remaining subsystems.
1823 */
1824 break;
1825 if (ss->cancel_attach)
1826 ss->cancel_attach(ss, cgrp, tsk, false);
1827 }
1828 }
1829 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001830}
1831
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001832/**
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001833 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
1834 * @from: attach to all cgroups of a given task
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001835 * @tsk: the task to be attached
1836 */
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001837int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001838{
1839 struct cgroupfs_root *root;
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001840 int retval = 0;
1841
1842 cgroup_lock();
1843 for_each_active_root(root) {
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001844 struct cgroup *from_cg = task_cgroup_from_root(from, root);
1845
1846 retval = cgroup_attach_task(from_cg, tsk);
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001847 if (retval)
1848 break;
1849 }
1850 cgroup_unlock();
1851
1852 return retval;
1853}
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001854EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001855
Paul Menagebbcb81d2007-10-18 23:39:32 -07001856/*
Paul Menageaf351022008-07-25 01:47:01 -07001857 * Attach task with pid 'pid' to cgroup 'cgrp'. Call with cgroup_mutex
1858 * held. May take task_lock of task
Paul Menagebbcb81d2007-10-18 23:39:32 -07001859 */
Paul Menageaf351022008-07-25 01:47:01 -07001860static int attach_task_by_pid(struct cgroup *cgrp, u64 pid)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001861{
Paul Menagebbcb81d2007-10-18 23:39:32 -07001862 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11001863 const struct cred *cred = current_cred(), *tcred;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001864 int ret;
1865
Paul Menagebbcb81d2007-10-18 23:39:32 -07001866 if (pid) {
1867 rcu_read_lock();
Pavel Emelyanov73507f32008-02-07 00:14:47 -08001868 tsk = find_task_by_vpid(pid);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001869 if (!tsk || tsk->flags & PF_EXITING) {
1870 rcu_read_unlock();
1871 return -ESRCH;
1872 }
Paul Menagebbcb81d2007-10-18 23:39:32 -07001873
David Howellsc69e8d92008-11-14 10:39:19 +11001874 tcred = __task_cred(tsk);
1875 if (cred->euid &&
1876 cred->euid != tcred->uid &&
1877 cred->euid != tcred->suid) {
1878 rcu_read_unlock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07001879 return -EACCES;
1880 }
David Howellsc69e8d92008-11-14 10:39:19 +11001881 get_task_struct(tsk);
1882 rcu_read_unlock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07001883 } else {
1884 tsk = current;
1885 get_task_struct(tsk);
1886 }
1887
Cliff Wickman956db3c2008-02-07 00:14:43 -08001888 ret = cgroup_attach_task(cgrp, tsk);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001889 put_task_struct(tsk);
1890 return ret;
1891}
1892
Paul Menageaf351022008-07-25 01:47:01 -07001893static int cgroup_tasks_write(struct cgroup *cgrp, struct cftype *cft, u64 pid)
1894{
1895 int ret;
1896 if (!cgroup_lock_live_group(cgrp))
1897 return -ENODEV;
1898 ret = attach_task_by_pid(cgrp, pid);
1899 cgroup_unlock();
1900 return ret;
1901}
1902
Paul Menagee788e062008-07-25 01:46:59 -07001903/**
1904 * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive.
1905 * @cgrp: the cgroup to be checked for liveness
1906 *
Paul Menage84eea842008-07-25 01:47:00 -07001907 * On success, returns true; the lock should be later released with
1908 * cgroup_unlock(). On failure returns false with no lock held.
Paul Menagee788e062008-07-25 01:46:59 -07001909 */
Paul Menage84eea842008-07-25 01:47:00 -07001910bool cgroup_lock_live_group(struct cgroup *cgrp)
Paul Menagee788e062008-07-25 01:46:59 -07001911{
1912 mutex_lock(&cgroup_mutex);
1913 if (cgroup_is_removed(cgrp)) {
1914 mutex_unlock(&cgroup_mutex);
1915 return false;
1916 }
1917 return true;
1918}
Ben Blum67523c42010-03-10 15:22:11 -08001919EXPORT_SYMBOL_GPL(cgroup_lock_live_group);
Paul Menagee788e062008-07-25 01:46:59 -07001920
1921static int cgroup_release_agent_write(struct cgroup *cgrp, struct cftype *cft,
1922 const char *buffer)
1923{
1924 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
1925 if (!cgroup_lock_live_group(cgrp))
1926 return -ENODEV;
1927 strcpy(cgrp->root->release_agent_path, buffer);
Paul Menage84eea842008-07-25 01:47:00 -07001928 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07001929 return 0;
1930}
1931
1932static int cgroup_release_agent_show(struct cgroup *cgrp, struct cftype *cft,
1933 struct seq_file *seq)
1934{
1935 if (!cgroup_lock_live_group(cgrp))
1936 return -ENODEV;
1937 seq_puts(seq, cgrp->root->release_agent_path);
1938 seq_putc(seq, '\n');
Paul Menage84eea842008-07-25 01:47:00 -07001939 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07001940 return 0;
1941}
1942
Paul Menage84eea842008-07-25 01:47:00 -07001943/* A buffer size big enough for numbers or short strings */
1944#define CGROUP_LOCAL_BUFFER_SIZE 64
1945
Paul Menagee73d2c62008-04-29 01:00:06 -07001946static ssize_t cgroup_write_X64(struct cgroup *cgrp, struct cftype *cft,
Paul Menagef4c753b2008-04-29 00:59:56 -07001947 struct file *file,
1948 const char __user *userbuf,
1949 size_t nbytes, loff_t *unused_ppos)
Paul Menage355e0c42007-10-18 23:39:33 -07001950{
Paul Menage84eea842008-07-25 01:47:00 -07001951 char buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menage355e0c42007-10-18 23:39:33 -07001952 int retval = 0;
Paul Menage355e0c42007-10-18 23:39:33 -07001953 char *end;
1954
1955 if (!nbytes)
1956 return -EINVAL;
1957 if (nbytes >= sizeof(buffer))
1958 return -E2BIG;
1959 if (copy_from_user(buffer, userbuf, nbytes))
1960 return -EFAULT;
1961
1962 buffer[nbytes] = 0; /* nul-terminate */
Paul Menagee73d2c62008-04-29 01:00:06 -07001963 if (cft->write_u64) {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07001964 u64 val = simple_strtoull(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07001965 if (*end)
1966 return -EINVAL;
1967 retval = cft->write_u64(cgrp, cft, val);
1968 } else {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07001969 s64 val = simple_strtoll(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07001970 if (*end)
1971 return -EINVAL;
1972 retval = cft->write_s64(cgrp, cft, val);
1973 }
Paul Menage355e0c42007-10-18 23:39:33 -07001974 if (!retval)
1975 retval = nbytes;
1976 return retval;
1977}
1978
Paul Menagedb3b1492008-07-25 01:46:58 -07001979static ssize_t cgroup_write_string(struct cgroup *cgrp, struct cftype *cft,
1980 struct file *file,
1981 const char __user *userbuf,
1982 size_t nbytes, loff_t *unused_ppos)
1983{
Paul Menage84eea842008-07-25 01:47:00 -07001984 char local_buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagedb3b1492008-07-25 01:46:58 -07001985 int retval = 0;
1986 size_t max_bytes = cft->max_write_len;
1987 char *buffer = local_buffer;
1988
1989 if (!max_bytes)
1990 max_bytes = sizeof(local_buffer) - 1;
1991 if (nbytes >= max_bytes)
1992 return -E2BIG;
1993 /* Allocate a dynamic buffer if we need one */
1994 if (nbytes >= sizeof(local_buffer)) {
1995 buffer = kmalloc(nbytes + 1, GFP_KERNEL);
1996 if (buffer == NULL)
1997 return -ENOMEM;
1998 }
Li Zefan5a3eb9f2008-07-29 22:33:18 -07001999 if (nbytes && copy_from_user(buffer, userbuf, nbytes)) {
2000 retval = -EFAULT;
2001 goto out;
2002 }
Paul Menagedb3b1492008-07-25 01:46:58 -07002003
2004 buffer[nbytes] = 0; /* nul-terminate */
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002005 retval = cft->write_string(cgrp, cft, strstrip(buffer));
Paul Menagedb3b1492008-07-25 01:46:58 -07002006 if (!retval)
2007 retval = nbytes;
Li Zefan5a3eb9f2008-07-29 22:33:18 -07002008out:
Paul Menagedb3b1492008-07-25 01:46:58 -07002009 if (buffer != local_buffer)
2010 kfree(buffer);
2011 return retval;
2012}
2013
Paul Menageddbcc7e2007-10-18 23:39:30 -07002014static ssize_t cgroup_file_write(struct file *file, const char __user *buf,
2015 size_t nbytes, loff_t *ppos)
2016{
2017 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07002018 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002019
Li Zefan75139b82009-01-07 18:07:33 -08002020 if (cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07002021 return -ENODEV;
Paul Menage355e0c42007-10-18 23:39:33 -07002022 if (cft->write)
Paul Menagebd89aab2007-10-18 23:40:44 -07002023 return cft->write(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002024 if (cft->write_u64 || cft->write_s64)
2025 return cgroup_write_X64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagedb3b1492008-07-25 01:46:58 -07002026 if (cft->write_string)
2027 return cgroup_write_string(cgrp, cft, file, buf, nbytes, ppos);
Pavel Emelyanovd447ea22008-04-29 01:00:08 -07002028 if (cft->trigger) {
2029 int ret = cft->trigger(cgrp, (unsigned int)cft->private);
2030 return ret ? ret : nbytes;
2031 }
Paul Menage355e0c42007-10-18 23:39:33 -07002032 return -EINVAL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002033}
2034
Paul Menagef4c753b2008-04-29 00:59:56 -07002035static ssize_t cgroup_read_u64(struct cgroup *cgrp, struct cftype *cft,
2036 struct file *file,
2037 char __user *buf, size_t nbytes,
2038 loff_t *ppos)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002039{
Paul Menage84eea842008-07-25 01:47:00 -07002040 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagef4c753b2008-04-29 00:59:56 -07002041 u64 val = cft->read_u64(cgrp, cft);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002042 int len = sprintf(tmp, "%llu\n", (unsigned long long) val);
2043
2044 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2045}
2046
Paul Menagee73d2c62008-04-29 01:00:06 -07002047static ssize_t cgroup_read_s64(struct cgroup *cgrp, struct cftype *cft,
2048 struct file *file,
2049 char __user *buf, size_t nbytes,
2050 loff_t *ppos)
2051{
Paul Menage84eea842008-07-25 01:47:00 -07002052 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagee73d2c62008-04-29 01:00:06 -07002053 s64 val = cft->read_s64(cgrp, cft);
2054 int len = sprintf(tmp, "%lld\n", (long long) val);
2055
2056 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2057}
2058
Paul Menageddbcc7e2007-10-18 23:39:30 -07002059static ssize_t cgroup_file_read(struct file *file, char __user *buf,
2060 size_t nbytes, loff_t *ppos)
2061{
2062 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07002063 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002064
Li Zefan75139b82009-01-07 18:07:33 -08002065 if (cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07002066 return -ENODEV;
2067
2068 if (cft->read)
Paul Menagebd89aab2007-10-18 23:40:44 -07002069 return cft->read(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagef4c753b2008-04-29 00:59:56 -07002070 if (cft->read_u64)
2071 return cgroup_read_u64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002072 if (cft->read_s64)
2073 return cgroup_read_s64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002074 return -EINVAL;
2075}
2076
Paul Menage91796562008-04-29 01:00:01 -07002077/*
2078 * seqfile ops/methods for returning structured data. Currently just
2079 * supports string->u64 maps, but can be extended in future.
2080 */
2081
2082struct cgroup_seqfile_state {
2083 struct cftype *cft;
2084 struct cgroup *cgroup;
2085};
2086
2087static int cgroup_map_add(struct cgroup_map_cb *cb, const char *key, u64 value)
2088{
2089 struct seq_file *sf = cb->state;
2090 return seq_printf(sf, "%s %llu\n", key, (unsigned long long)value);
2091}
2092
2093static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2094{
2095 struct cgroup_seqfile_state *state = m->private;
2096 struct cftype *cft = state->cft;
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002097 if (cft->read_map) {
2098 struct cgroup_map_cb cb = {
2099 .fill = cgroup_map_add,
2100 .state = m,
2101 };
2102 return cft->read_map(state->cgroup, cft, &cb);
2103 }
2104 return cft->read_seq_string(state->cgroup, cft, m);
Paul Menage91796562008-04-29 01:00:01 -07002105}
2106
Adrian Bunk96930a62008-07-25 19:46:21 -07002107static int cgroup_seqfile_release(struct inode *inode, struct file *file)
Paul Menage91796562008-04-29 01:00:01 -07002108{
2109 struct seq_file *seq = file->private_data;
2110 kfree(seq->private);
2111 return single_release(inode, file);
2112}
2113
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002114static const struct file_operations cgroup_seqfile_operations = {
Paul Menage91796562008-04-29 01:00:01 -07002115 .read = seq_read,
Paul Menagee788e062008-07-25 01:46:59 -07002116 .write = cgroup_file_write,
Paul Menage91796562008-04-29 01:00:01 -07002117 .llseek = seq_lseek,
2118 .release = cgroup_seqfile_release,
2119};
2120
Paul Menageddbcc7e2007-10-18 23:39:30 -07002121static int cgroup_file_open(struct inode *inode, struct file *file)
2122{
2123 int err;
2124 struct cftype *cft;
2125
2126 err = generic_file_open(inode, file);
2127 if (err)
2128 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002129 cft = __d_cft(file->f_dentry);
Li Zefan75139b82009-01-07 18:07:33 -08002130
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002131 if (cft->read_map || cft->read_seq_string) {
Paul Menage91796562008-04-29 01:00:01 -07002132 struct cgroup_seqfile_state *state =
2133 kzalloc(sizeof(*state), GFP_USER);
2134 if (!state)
2135 return -ENOMEM;
2136 state->cft = cft;
2137 state->cgroup = __d_cgrp(file->f_dentry->d_parent);
2138 file->f_op = &cgroup_seqfile_operations;
2139 err = single_open(file, cgroup_seqfile_show, state);
2140 if (err < 0)
2141 kfree(state);
2142 } else if (cft->open)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002143 err = cft->open(inode, file);
2144 else
2145 err = 0;
2146
2147 return err;
2148}
2149
2150static int cgroup_file_release(struct inode *inode, struct file *file)
2151{
2152 struct cftype *cft = __d_cft(file->f_dentry);
2153 if (cft->release)
2154 return cft->release(inode, file);
2155 return 0;
2156}
2157
2158/*
2159 * cgroup_rename - Only allow simple rename of directories in place.
2160 */
2161static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry,
2162 struct inode *new_dir, struct dentry *new_dentry)
2163{
2164 if (!S_ISDIR(old_dentry->d_inode->i_mode))
2165 return -ENOTDIR;
2166 if (new_dentry->d_inode)
2167 return -EEXIST;
2168 if (old_dir != new_dir)
2169 return -EIO;
2170 return simple_rename(old_dir, old_dentry, new_dir, new_dentry);
2171}
2172
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002173static const struct file_operations cgroup_file_operations = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002174 .read = cgroup_file_read,
2175 .write = cgroup_file_write,
2176 .llseek = generic_file_llseek,
2177 .open = cgroup_file_open,
2178 .release = cgroup_file_release,
2179};
2180
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07002181static const struct inode_operations cgroup_dir_inode_operations = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002182 .lookup = simple_lookup,
2183 .mkdir = cgroup_mkdir,
2184 .rmdir = cgroup_rmdir,
2185 .rename = cgroup_rename,
2186};
2187
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08002188/*
2189 * Check if a file is a control file
2190 */
2191static inline struct cftype *__file_cft(struct file *file)
2192{
2193 if (file->f_dentry->d_inode->i_fop != &cgroup_file_operations)
2194 return ERR_PTR(-EINVAL);
2195 return __d_cft(file->f_dentry);
2196}
2197
Li Zefan099fca32009-04-02 16:57:29 -07002198static int cgroup_create_file(struct dentry *dentry, mode_t mode,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002199 struct super_block *sb)
2200{
Al Viro3ba13d12009-02-20 06:02:22 +00002201 static const struct dentry_operations cgroup_dops = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002202 .d_iput = cgroup_diput,
2203 };
2204
2205 struct inode *inode;
2206
2207 if (!dentry)
2208 return -ENOENT;
2209 if (dentry->d_inode)
2210 return -EEXIST;
2211
2212 inode = cgroup_new_inode(mode, sb);
2213 if (!inode)
2214 return -ENOMEM;
2215
2216 if (S_ISDIR(mode)) {
2217 inode->i_op = &cgroup_dir_inode_operations;
2218 inode->i_fop = &simple_dir_operations;
2219
2220 /* start off with i_nlink == 2 (for "." entry) */
2221 inc_nlink(inode);
2222
2223 /* start with the directory inode held, so that we can
2224 * populate it without racing with another mkdir */
Paul Menage817929e2007-10-18 23:39:36 -07002225 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002226 } else if (S_ISREG(mode)) {
2227 inode->i_size = 0;
2228 inode->i_fop = &cgroup_file_operations;
2229 }
2230 dentry->d_op = &cgroup_dops;
2231 d_instantiate(dentry, inode);
2232 dget(dentry); /* Extra count - pin the dentry in core */
2233 return 0;
2234}
2235
2236/*
Li Zefana043e3b2008-02-23 15:24:09 -08002237 * cgroup_create_dir - create a directory for an object.
2238 * @cgrp: the cgroup we create the directory for. It must have a valid
2239 * ->parent field. And we are going to fill its ->dentry field.
2240 * @dentry: dentry of the new cgroup
2241 * @mode: mode to set on new directory.
Paul Menageddbcc7e2007-10-18 23:39:30 -07002242 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002243static int cgroup_create_dir(struct cgroup *cgrp, struct dentry *dentry,
Li Zefan099fca32009-04-02 16:57:29 -07002244 mode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002245{
2246 struct dentry *parent;
2247 int error = 0;
2248
Paul Menagebd89aab2007-10-18 23:40:44 -07002249 parent = cgrp->parent->dentry;
2250 error = cgroup_create_file(dentry, S_IFDIR | mode, cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002251 if (!error) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002252 dentry->d_fsdata = cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002253 inc_nlink(parent->d_inode);
Paul Menagea47295e2009-01-07 18:07:44 -08002254 rcu_assign_pointer(cgrp->dentry, dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002255 dget(dentry);
2256 }
2257 dput(dentry);
2258
2259 return error;
2260}
2261
Li Zefan099fca32009-04-02 16:57:29 -07002262/**
2263 * cgroup_file_mode - deduce file mode of a control file
2264 * @cft: the control file in question
2265 *
2266 * returns cft->mode if ->mode is not 0
2267 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
2268 * returns S_IRUGO if it has only a read handler
2269 * returns S_IWUSR if it has only a write hander
2270 */
2271static mode_t cgroup_file_mode(const struct cftype *cft)
2272{
2273 mode_t mode = 0;
2274
2275 if (cft->mode)
2276 return cft->mode;
2277
2278 if (cft->read || cft->read_u64 || cft->read_s64 ||
2279 cft->read_map || cft->read_seq_string)
2280 mode |= S_IRUGO;
2281
2282 if (cft->write || cft->write_u64 || cft->write_s64 ||
2283 cft->write_string || cft->trigger)
2284 mode |= S_IWUSR;
2285
2286 return mode;
2287}
2288
Paul Menagebd89aab2007-10-18 23:40:44 -07002289int cgroup_add_file(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002290 struct cgroup_subsys *subsys,
2291 const struct cftype *cft)
2292{
Paul Menagebd89aab2007-10-18 23:40:44 -07002293 struct dentry *dir = cgrp->dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002294 struct dentry *dentry;
2295 int error;
Li Zefan099fca32009-04-02 16:57:29 -07002296 mode_t mode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002297
2298 char name[MAX_CGROUP_TYPE_NAMELEN + MAX_CFTYPE_NAME + 2] = { 0 };
Paul Menagebd89aab2007-10-18 23:40:44 -07002299 if (subsys && !test_bit(ROOT_NOPREFIX, &cgrp->root->flags)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002300 strcpy(name, subsys->name);
2301 strcat(name, ".");
2302 }
2303 strcat(name, cft->name);
2304 BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex));
2305 dentry = lookup_one_len(name, dir, strlen(name));
2306 if (!IS_ERR(dentry)) {
Li Zefan099fca32009-04-02 16:57:29 -07002307 mode = cgroup_file_mode(cft);
2308 error = cgroup_create_file(dentry, mode | S_IFREG,
Paul Menagebd89aab2007-10-18 23:40:44 -07002309 cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002310 if (!error)
2311 dentry->d_fsdata = (void *)cft;
2312 dput(dentry);
2313 } else
2314 error = PTR_ERR(dentry);
2315 return error;
2316}
Ben Blume6a11052010-03-10 15:22:09 -08002317EXPORT_SYMBOL_GPL(cgroup_add_file);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002318
Paul Menagebd89aab2007-10-18 23:40:44 -07002319int cgroup_add_files(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002320 struct cgroup_subsys *subsys,
2321 const struct cftype cft[],
2322 int count)
2323{
2324 int i, err;
2325 for (i = 0; i < count; i++) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002326 err = cgroup_add_file(cgrp, subsys, &cft[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002327 if (err)
2328 return err;
2329 }
2330 return 0;
2331}
Ben Blume6a11052010-03-10 15:22:09 -08002332EXPORT_SYMBOL_GPL(cgroup_add_files);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002333
Li Zefana043e3b2008-02-23 15:24:09 -08002334/**
2335 * cgroup_task_count - count the number of tasks in a cgroup.
2336 * @cgrp: the cgroup in question
2337 *
2338 * Return the number of tasks in the cgroup.
2339 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002340int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002341{
2342 int count = 0;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07002343 struct cg_cgroup_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002344
Paul Menage817929e2007-10-18 23:39:36 -07002345 read_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07002346 list_for_each_entry(link, &cgrp->css_sets, cgrp_link_list) {
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07002347 count += atomic_read(&link->cg->refcount);
Paul Menage817929e2007-10-18 23:39:36 -07002348 }
2349 read_unlock(&css_set_lock);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002350 return count;
2351}
2352
2353/*
Paul Menage817929e2007-10-18 23:39:36 -07002354 * Advance a list_head iterator. The iterator should be positioned at
2355 * the start of a css_set
2356 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002357static void cgroup_advance_iter(struct cgroup *cgrp,
Paul Menage7717f7b2009-09-23 15:56:22 -07002358 struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002359{
2360 struct list_head *l = it->cg_link;
2361 struct cg_cgroup_link *link;
2362 struct css_set *cg;
2363
2364 /* Advance to the next non-empty css_set */
2365 do {
2366 l = l->next;
Paul Menagebd89aab2007-10-18 23:40:44 -07002367 if (l == &cgrp->css_sets) {
Paul Menage817929e2007-10-18 23:39:36 -07002368 it->cg_link = NULL;
2369 return;
2370 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002371 link = list_entry(l, struct cg_cgroup_link, cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07002372 cg = link->cg;
2373 } while (list_empty(&cg->tasks));
2374 it->cg_link = l;
2375 it->task = cg->tasks.next;
2376}
2377
Cliff Wickman31a7df02008-02-07 00:14:42 -08002378/*
2379 * To reduce the fork() overhead for systems that are not actually
2380 * using their cgroups capability, we don't maintain the lists running
2381 * through each css_set to its tasks until we see the list actually
2382 * used - in other words after the first call to cgroup_iter_start().
2383 *
2384 * The tasklist_lock is not held here, as do_each_thread() and
2385 * while_each_thread() are protected by RCU.
2386 */
Adrian Bunk3df91fe2008-04-29 00:59:54 -07002387static void cgroup_enable_task_cg_lists(void)
Cliff Wickman31a7df02008-02-07 00:14:42 -08002388{
2389 struct task_struct *p, *g;
2390 write_lock(&css_set_lock);
2391 use_task_css_set_links = 1;
2392 do_each_thread(g, p) {
2393 task_lock(p);
Li Zefan0e043882008-04-17 11:37:15 +08002394 /*
2395 * We should check if the process is exiting, otherwise
2396 * it will race with cgroup_exit() in that the list
2397 * entry won't be deleted though the process has exited.
2398 */
2399 if (!(p->flags & PF_EXITING) && list_empty(&p->cg_list))
Cliff Wickman31a7df02008-02-07 00:14:42 -08002400 list_add(&p->cg_list, &p->cgroups->tasks);
2401 task_unlock(p);
2402 } while_each_thread(g, p);
2403 write_unlock(&css_set_lock);
2404}
2405
Paul Menagebd89aab2007-10-18 23:40:44 -07002406void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002407{
2408 /*
2409 * The first time anyone tries to iterate across a cgroup,
2410 * we need to enable the list linking each css_set to its
2411 * tasks, and fix up all existing tasks.
2412 */
Cliff Wickman31a7df02008-02-07 00:14:42 -08002413 if (!use_task_css_set_links)
2414 cgroup_enable_task_cg_lists();
2415
Paul Menage817929e2007-10-18 23:39:36 -07002416 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07002417 it->cg_link = &cgrp->css_sets;
2418 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07002419}
2420
Paul Menagebd89aab2007-10-18 23:40:44 -07002421struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -07002422 struct cgroup_iter *it)
2423{
2424 struct task_struct *res;
2425 struct list_head *l = it->task;
Lai Jiangshan2019f632009-01-07 18:07:36 -08002426 struct cg_cgroup_link *link;
Paul Menage817929e2007-10-18 23:39:36 -07002427
2428 /* If the iterator cg is NULL, we have no tasks */
2429 if (!it->cg_link)
2430 return NULL;
2431 res = list_entry(l, struct task_struct, cg_list);
2432 /* Advance iterator to find next entry */
2433 l = l->next;
Lai Jiangshan2019f632009-01-07 18:07:36 -08002434 link = list_entry(it->cg_link, struct cg_cgroup_link, cgrp_link_list);
2435 if (l == &link->cg->tasks) {
Paul Menage817929e2007-10-18 23:39:36 -07002436 /* We reached the end of this task list - move on to
2437 * the next cg_cgroup_link */
Paul Menagebd89aab2007-10-18 23:40:44 -07002438 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07002439 } else {
2440 it->task = l;
2441 }
2442 return res;
2443}
2444
Paul Menagebd89aab2007-10-18 23:40:44 -07002445void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002446{
2447 read_unlock(&css_set_lock);
2448}
2449
Cliff Wickman31a7df02008-02-07 00:14:42 -08002450static inline int started_after_time(struct task_struct *t1,
2451 struct timespec *time,
2452 struct task_struct *t2)
2453{
2454 int start_diff = timespec_compare(&t1->start_time, time);
2455 if (start_diff > 0) {
2456 return 1;
2457 } else if (start_diff < 0) {
2458 return 0;
2459 } else {
2460 /*
2461 * Arbitrarily, if two processes started at the same
2462 * time, we'll say that the lower pointer value
2463 * started first. Note that t2 may have exited by now
2464 * so this may not be a valid pointer any longer, but
2465 * that's fine - it still serves to distinguish
2466 * between two tasks started (effectively) simultaneously.
2467 */
2468 return t1 > t2;
2469 }
2470}
2471
2472/*
2473 * This function is a callback from heap_insert() and is used to order
2474 * the heap.
2475 * In this case we order the heap in descending task start time.
2476 */
2477static inline int started_after(void *p1, void *p2)
2478{
2479 struct task_struct *t1 = p1;
2480 struct task_struct *t2 = p2;
2481 return started_after_time(t1, &t2->start_time, t2);
2482}
2483
2484/**
2485 * cgroup_scan_tasks - iterate though all the tasks in a cgroup
2486 * @scan: struct cgroup_scanner containing arguments for the scan
2487 *
2488 * Arguments include pointers to callback functions test_task() and
2489 * process_task().
2490 * Iterate through all the tasks in a cgroup, calling test_task() for each,
2491 * and if it returns true, call process_task() for it also.
2492 * The test_task pointer may be NULL, meaning always true (select all tasks).
2493 * Effectively duplicates cgroup_iter_{start,next,end}()
2494 * but does not lock css_set_lock for the call to process_task().
2495 * The struct cgroup_scanner may be embedded in any structure of the caller's
2496 * creation.
2497 * It is guaranteed that process_task() will act on every task that
2498 * is a member of the cgroup for the duration of this call. This
2499 * function may or may not call process_task() for tasks that exit
2500 * or move to a different cgroup during the call, or are forked or
2501 * move into the cgroup during the call.
2502 *
2503 * Note that test_task() may be called with locks held, and may in some
2504 * situations be called multiple times for the same task, so it should
2505 * be cheap.
2506 * If the heap pointer in the struct cgroup_scanner is non-NULL, a heap has been
2507 * pre-allocated and will be used for heap operations (and its "gt" member will
2508 * be overwritten), else a temporary heap will be used (allocation of which
2509 * may cause this function to fail).
2510 */
2511int cgroup_scan_tasks(struct cgroup_scanner *scan)
2512{
2513 int retval, i;
2514 struct cgroup_iter it;
2515 struct task_struct *p, *dropped;
2516 /* Never dereference latest_task, since it's not refcounted */
2517 struct task_struct *latest_task = NULL;
2518 struct ptr_heap tmp_heap;
2519 struct ptr_heap *heap;
2520 struct timespec latest_time = { 0, 0 };
2521
2522 if (scan->heap) {
2523 /* The caller supplied our heap and pre-allocated its memory */
2524 heap = scan->heap;
2525 heap->gt = &started_after;
2526 } else {
2527 /* We need to allocate our own heap memory */
2528 heap = &tmp_heap;
2529 retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after);
2530 if (retval)
2531 /* cannot allocate the heap */
2532 return retval;
2533 }
2534
2535 again:
2536 /*
2537 * Scan tasks in the cgroup, using the scanner's "test_task" callback
2538 * to determine which are of interest, and using the scanner's
2539 * "process_task" callback to process any of them that need an update.
2540 * Since we don't want to hold any locks during the task updates,
2541 * gather tasks to be processed in a heap structure.
2542 * The heap is sorted by descending task start time.
2543 * If the statically-sized heap fills up, we overflow tasks that
2544 * started later, and in future iterations only consider tasks that
2545 * started after the latest task in the previous pass. This
2546 * guarantees forward progress and that we don't miss any tasks.
2547 */
2548 heap->size = 0;
2549 cgroup_iter_start(scan->cg, &it);
2550 while ((p = cgroup_iter_next(scan->cg, &it))) {
2551 /*
2552 * Only affect tasks that qualify per the caller's callback,
2553 * if he provided one
2554 */
2555 if (scan->test_task && !scan->test_task(p, scan))
2556 continue;
2557 /*
2558 * Only process tasks that started after the last task
2559 * we processed
2560 */
2561 if (!started_after_time(p, &latest_time, latest_task))
2562 continue;
2563 dropped = heap_insert(heap, p);
2564 if (dropped == NULL) {
2565 /*
2566 * The new task was inserted; the heap wasn't
2567 * previously full
2568 */
2569 get_task_struct(p);
2570 } else if (dropped != p) {
2571 /*
2572 * The new task was inserted, and pushed out a
2573 * different task
2574 */
2575 get_task_struct(p);
2576 put_task_struct(dropped);
2577 }
2578 /*
2579 * Else the new task was newer than anything already in
2580 * the heap and wasn't inserted
2581 */
2582 }
2583 cgroup_iter_end(scan->cg, &it);
2584
2585 if (heap->size) {
2586 for (i = 0; i < heap->size; i++) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07002587 struct task_struct *q = heap->ptrs[i];
Cliff Wickman31a7df02008-02-07 00:14:42 -08002588 if (i == 0) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07002589 latest_time = q->start_time;
2590 latest_task = q;
Cliff Wickman31a7df02008-02-07 00:14:42 -08002591 }
2592 /* Process the task per the caller's callback */
Paul Jackson4fe91d52008-04-29 00:59:55 -07002593 scan->process_task(q, scan);
2594 put_task_struct(q);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002595 }
2596 /*
2597 * If we had to process any tasks at all, scan again
2598 * in case some of them were in the middle of forking
2599 * children that didn't get processed.
2600 * Not the most efficient way to do it, but it avoids
2601 * having to take callback_mutex in the fork path
2602 */
2603 goto again;
2604 }
2605 if (heap == &tmp_heap)
2606 heap_free(&tmp_heap);
2607 return 0;
2608}
2609
Paul Menage817929e2007-10-18 23:39:36 -07002610/*
Ben Blum102a7752009-09-23 15:56:26 -07002611 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07002612 *
2613 * Reading this file can return large amounts of data if a cgroup has
2614 * *lots* of attached tasks. So it may need several calls to read(),
2615 * but we cannot guarantee that the information we produce is correct
2616 * unless we produce it entirely atomically.
2617 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07002618 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07002619
2620/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07002621 * The following two functions "fix" the issue where there are more pids
2622 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
2623 * TODO: replace with a kernel-wide solution to this problem
2624 */
2625#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
2626static void *pidlist_allocate(int count)
2627{
2628 if (PIDLIST_TOO_LARGE(count))
2629 return vmalloc(count * sizeof(pid_t));
2630 else
2631 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
2632}
2633static void pidlist_free(void *p)
2634{
2635 if (is_vmalloc_addr(p))
2636 vfree(p);
2637 else
2638 kfree(p);
2639}
2640static void *pidlist_resize(void *p, int newcount)
2641{
2642 void *newlist;
2643 /* note: if new alloc fails, old p will still be valid either way */
2644 if (is_vmalloc_addr(p)) {
2645 newlist = vmalloc(newcount * sizeof(pid_t));
2646 if (!newlist)
2647 return NULL;
2648 memcpy(newlist, p, newcount * sizeof(pid_t));
2649 vfree(p);
2650 } else {
2651 newlist = krealloc(p, newcount * sizeof(pid_t), GFP_KERNEL);
2652 }
2653 return newlist;
2654}
2655
2656/*
Ben Blum102a7752009-09-23 15:56:26 -07002657 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
2658 * If the new stripped list is sufficiently smaller and there's enough memory
2659 * to allocate a new buffer, will let go of the unneeded memory. Returns the
2660 * number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07002661 */
Ben Blum102a7752009-09-23 15:56:26 -07002662/* is the size difference enough that we should re-allocate the array? */
2663#define PIDLIST_REALLOC_DIFFERENCE(old, new) ((old) - PAGE_SIZE >= (new))
2664static int pidlist_uniq(pid_t **p, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002665{
Ben Blum102a7752009-09-23 15:56:26 -07002666 int src, dest = 1;
2667 pid_t *list = *p;
2668 pid_t *newlist;
2669
2670 /*
2671 * we presume the 0th element is unique, so i starts at 1. trivial
2672 * edge cases first; no work needs to be done for either
2673 */
2674 if (length == 0 || length == 1)
2675 return length;
2676 /* src and dest walk down the list; dest counts unique elements */
2677 for (src = 1; src < length; src++) {
2678 /* find next unique element */
2679 while (list[src] == list[src-1]) {
2680 src++;
2681 if (src == length)
2682 goto after;
2683 }
2684 /* dest always points to where the next unique element goes */
2685 list[dest] = list[src];
2686 dest++;
2687 }
2688after:
2689 /*
2690 * if the length difference is large enough, we want to allocate a
2691 * smaller buffer to save memory. if this fails due to out of memory,
2692 * we'll just stay with what we've got.
2693 */
2694 if (PIDLIST_REALLOC_DIFFERENCE(length, dest)) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07002695 newlist = pidlist_resize(list, dest);
Ben Blum102a7752009-09-23 15:56:26 -07002696 if (newlist)
2697 *p = newlist;
2698 }
2699 return dest;
2700}
2701
2702static int cmppid(const void *a, const void *b)
2703{
2704 return *(pid_t *)a - *(pid_t *)b;
2705}
2706
2707/*
Ben Blum72a8cb32009-09-23 15:56:27 -07002708 * find the appropriate pidlist for our purpose (given procs vs tasks)
2709 * returns with the lock on that pidlist already held, and takes care
2710 * of the use count, or returns NULL with no locks held if we're out of
2711 * memory.
2712 */
2713static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
2714 enum cgroup_filetype type)
2715{
2716 struct cgroup_pidlist *l;
2717 /* don't need task_nsproxy() if we're looking at ourself */
Li Zefanb70cc5f2010-03-10 15:22:12 -08002718 struct pid_namespace *ns = current->nsproxy->pid_ns;
2719
Ben Blum72a8cb32009-09-23 15:56:27 -07002720 /*
2721 * We can't drop the pidlist_mutex before taking the l->mutex in case
2722 * the last ref-holder is trying to remove l from the list at the same
2723 * time. Holding the pidlist_mutex precludes somebody taking whichever
2724 * list we find out from under us - compare release_pid_array().
2725 */
2726 mutex_lock(&cgrp->pidlist_mutex);
2727 list_for_each_entry(l, &cgrp->pidlists, links) {
2728 if (l->key.type == type && l->key.ns == ns) {
Ben Blum72a8cb32009-09-23 15:56:27 -07002729 /* make sure l doesn't vanish out from under us */
2730 down_write(&l->mutex);
2731 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07002732 return l;
2733 }
2734 }
2735 /* entry not found; create a new one */
2736 l = kmalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
2737 if (!l) {
2738 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07002739 return l;
2740 }
2741 init_rwsem(&l->mutex);
2742 down_write(&l->mutex);
2743 l->key.type = type;
Li Zefanb70cc5f2010-03-10 15:22:12 -08002744 l->key.ns = get_pid_ns(ns);
Ben Blum72a8cb32009-09-23 15:56:27 -07002745 l->use_count = 0; /* don't increment here */
2746 l->list = NULL;
2747 l->owner = cgrp;
2748 list_add(&l->links, &cgrp->pidlists);
2749 mutex_unlock(&cgrp->pidlist_mutex);
2750 return l;
2751}
2752
2753/*
Ben Blum102a7752009-09-23 15:56:26 -07002754 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
2755 */
Ben Blum72a8cb32009-09-23 15:56:27 -07002756static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
2757 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07002758{
2759 pid_t *array;
2760 int length;
2761 int pid, n = 0; /* used for populating the array */
Paul Menage817929e2007-10-18 23:39:36 -07002762 struct cgroup_iter it;
2763 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07002764 struct cgroup_pidlist *l;
2765
2766 /*
2767 * If cgroup gets more users after we read count, we won't have
2768 * enough space - tough. This race is indistinguishable to the
2769 * caller from the case that the additional cgroup users didn't
2770 * show up until sometime later on.
2771 */
2772 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07002773 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07002774 if (!array)
2775 return -ENOMEM;
2776 /* now, populate the array */
Paul Menagebd89aab2007-10-18 23:40:44 -07002777 cgroup_iter_start(cgrp, &it);
2778 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Ben Blum102a7752009-09-23 15:56:26 -07002779 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07002780 break;
Ben Blum102a7752009-09-23 15:56:26 -07002781 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07002782 if (type == CGROUP_FILE_PROCS)
2783 pid = task_tgid_vnr(tsk);
2784 else
2785 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07002786 if (pid > 0) /* make sure to only use valid results */
2787 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07002788 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002789 cgroup_iter_end(cgrp, &it);
Ben Blum102a7752009-09-23 15:56:26 -07002790 length = n;
2791 /* now sort & (if procs) strip out duplicates */
2792 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07002793 if (type == CGROUP_FILE_PROCS)
Ben Blum102a7752009-09-23 15:56:26 -07002794 length = pidlist_uniq(&array, length);
Ben Blum72a8cb32009-09-23 15:56:27 -07002795 l = cgroup_pidlist_find(cgrp, type);
2796 if (!l) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07002797 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07002798 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07002799 }
Ben Blum72a8cb32009-09-23 15:56:27 -07002800 /* store array, freeing old if necessary - lock already held */
Ben Blumd1d9fd32009-09-23 15:56:28 -07002801 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07002802 l->list = array;
2803 l->length = length;
2804 l->use_count++;
2805 up_write(&l->mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07002806 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07002807 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002808}
2809
Balbir Singh846c7bb2007-10-18 23:39:44 -07002810/**
Li Zefana043e3b2008-02-23 15:24:09 -08002811 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07002812 * @stats: cgroupstats to fill information into
2813 * @dentry: A dentry entry belonging to the cgroup for which stats have
2814 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08002815 *
2816 * Build and fill cgroupstats so that taskstats can export it to user
2817 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07002818 */
2819int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
2820{
2821 int ret = -EINVAL;
Paul Menagebd89aab2007-10-18 23:40:44 -07002822 struct cgroup *cgrp;
Balbir Singh846c7bb2007-10-18 23:39:44 -07002823 struct cgroup_iter it;
2824 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08002825
Balbir Singh846c7bb2007-10-18 23:39:44 -07002826 /*
Li Zefan33d283b2008-11-19 15:36:48 -08002827 * Validate dentry by checking the superblock operations,
2828 * and make sure it's a directory.
Balbir Singh846c7bb2007-10-18 23:39:44 -07002829 */
Li Zefan33d283b2008-11-19 15:36:48 -08002830 if (dentry->d_sb->s_op != &cgroup_ops ||
2831 !S_ISDIR(dentry->d_inode->i_mode))
Balbir Singh846c7bb2007-10-18 23:39:44 -07002832 goto err;
2833
2834 ret = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07002835 cgrp = dentry->d_fsdata;
Balbir Singh846c7bb2007-10-18 23:39:44 -07002836
Paul Menagebd89aab2007-10-18 23:40:44 -07002837 cgroup_iter_start(cgrp, &it);
2838 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07002839 switch (tsk->state) {
2840 case TASK_RUNNING:
2841 stats->nr_running++;
2842 break;
2843 case TASK_INTERRUPTIBLE:
2844 stats->nr_sleeping++;
2845 break;
2846 case TASK_UNINTERRUPTIBLE:
2847 stats->nr_uninterruptible++;
2848 break;
2849 case TASK_STOPPED:
2850 stats->nr_stopped++;
2851 break;
2852 default:
2853 if (delayacct_is_task_waiting_on_io(tsk))
2854 stats->nr_io_wait++;
2855 break;
2856 }
2857 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002858 cgroup_iter_end(cgrp, &it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07002859
Balbir Singh846c7bb2007-10-18 23:39:44 -07002860err:
2861 return ret;
2862}
2863
Paul Menage8f3ff202009-09-23 15:56:25 -07002864
Paul Menagecc31edc2008-10-18 20:28:04 -07002865/*
Ben Blum102a7752009-09-23 15:56:26 -07002866 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07002867 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07002868 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07002869 */
2870
Ben Blum102a7752009-09-23 15:56:26 -07002871static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07002872{
2873 /*
2874 * Initially we receive a position value that corresponds to
2875 * one more than the last pid shown (or 0 on the first call or
2876 * after a seek to the start). Use a binary-search to find the
2877 * next pid to display, if any
2878 */
Ben Blum102a7752009-09-23 15:56:26 -07002879 struct cgroup_pidlist *l = s->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07002880 int index = 0, pid = *pos;
2881 int *iter;
2882
Ben Blum102a7752009-09-23 15:56:26 -07002883 down_read(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07002884 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07002885 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11002886
Paul Menagecc31edc2008-10-18 20:28:04 -07002887 while (index < end) {
2888 int mid = (index + end) / 2;
Ben Blum102a7752009-09-23 15:56:26 -07002889 if (l->list[mid] == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07002890 index = mid;
2891 break;
Ben Blum102a7752009-09-23 15:56:26 -07002892 } else if (l->list[mid] <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07002893 index = mid + 1;
2894 else
2895 end = mid;
2896 }
2897 }
2898 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07002899 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07002900 return NULL;
2901 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07002902 iter = l->list + index;
Paul Menagecc31edc2008-10-18 20:28:04 -07002903 *pos = *iter;
2904 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002905}
2906
Ben Blum102a7752009-09-23 15:56:26 -07002907static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07002908{
Ben Blum102a7752009-09-23 15:56:26 -07002909 struct cgroup_pidlist *l = s->private;
2910 up_read(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07002911}
2912
Ben Blum102a7752009-09-23 15:56:26 -07002913static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07002914{
Ben Blum102a7752009-09-23 15:56:26 -07002915 struct cgroup_pidlist *l = s->private;
2916 pid_t *p = v;
2917 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07002918 /*
2919 * Advance to the next pid in the array. If this goes off the
2920 * end, we're done
2921 */
2922 p++;
2923 if (p >= end) {
2924 return NULL;
2925 } else {
2926 *pos = *p;
2927 return p;
2928 }
2929}
2930
Ben Blum102a7752009-09-23 15:56:26 -07002931static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07002932{
2933 return seq_printf(s, "%d\n", *(int *)v);
2934}
2935
Ben Blum102a7752009-09-23 15:56:26 -07002936/*
2937 * seq_operations functions for iterating on pidlists through seq_file -
2938 * independent of whether it's tasks or procs
2939 */
2940static const struct seq_operations cgroup_pidlist_seq_operations = {
2941 .start = cgroup_pidlist_start,
2942 .stop = cgroup_pidlist_stop,
2943 .next = cgroup_pidlist_next,
2944 .show = cgroup_pidlist_show,
Paul Menagecc31edc2008-10-18 20:28:04 -07002945};
2946
Ben Blum102a7752009-09-23 15:56:26 -07002947static void cgroup_release_pid_array(struct cgroup_pidlist *l)
Paul Menagecc31edc2008-10-18 20:28:04 -07002948{
Ben Blum72a8cb32009-09-23 15:56:27 -07002949 /*
2950 * the case where we're the last user of this particular pidlist will
2951 * have us remove it from the cgroup's list, which entails taking the
2952 * mutex. since in pidlist_find the pidlist->lock depends on cgroup->
2953 * pidlist_mutex, we have to take pidlist_mutex first.
2954 */
2955 mutex_lock(&l->owner->pidlist_mutex);
Ben Blum102a7752009-09-23 15:56:26 -07002956 down_write(&l->mutex);
2957 BUG_ON(!l->use_count);
2958 if (!--l->use_count) {
Ben Blum72a8cb32009-09-23 15:56:27 -07002959 /* we're the last user if refcount is 0; remove and free */
2960 list_del(&l->links);
2961 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blumd1d9fd32009-09-23 15:56:28 -07002962 pidlist_free(l->list);
Ben Blum72a8cb32009-09-23 15:56:27 -07002963 put_pid_ns(l->key.ns);
2964 up_write(&l->mutex);
2965 kfree(l);
2966 return;
Paul Menagecc31edc2008-10-18 20:28:04 -07002967 }
Ben Blum72a8cb32009-09-23 15:56:27 -07002968 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blum102a7752009-09-23 15:56:26 -07002969 up_write(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07002970}
2971
Ben Blum102a7752009-09-23 15:56:26 -07002972static int cgroup_pidlist_release(struct inode *inode, struct file *file)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002973{
Ben Blum102a7752009-09-23 15:56:26 -07002974 struct cgroup_pidlist *l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002975 if (!(file->f_mode & FMODE_READ))
2976 return 0;
Ben Blum102a7752009-09-23 15:56:26 -07002977 /*
2978 * the seq_file will only be initialized if the file was opened for
2979 * reading; hence we check if it's not null only in that case.
2980 */
2981 l = ((struct seq_file *)file->private_data)->private;
2982 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07002983 return seq_release(inode, file);
2984}
2985
Ben Blum102a7752009-09-23 15:56:26 -07002986static const struct file_operations cgroup_pidlist_operations = {
Paul Menagecc31edc2008-10-18 20:28:04 -07002987 .read = seq_read,
2988 .llseek = seq_lseek,
2989 .write = cgroup_file_write,
Ben Blum102a7752009-09-23 15:56:26 -07002990 .release = cgroup_pidlist_release,
Paul Menagecc31edc2008-10-18 20:28:04 -07002991};
2992
2993/*
Ben Blum102a7752009-09-23 15:56:26 -07002994 * The following functions handle opens on a file that displays a pidlist
2995 * (tasks or procs). Prepare an array of the process/thread IDs of whoever's
2996 * in the cgroup.
Paul Menagecc31edc2008-10-18 20:28:04 -07002997 */
Ben Blum102a7752009-09-23 15:56:26 -07002998/* helper function for the two below it */
Ben Blum72a8cb32009-09-23 15:56:27 -07002999static int cgroup_pidlist_open(struct file *file, enum cgroup_filetype type)
Paul Menagecc31edc2008-10-18 20:28:04 -07003000{
3001 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Ben Blum72a8cb32009-09-23 15:56:27 -07003002 struct cgroup_pidlist *l;
Paul Menagecc31edc2008-10-18 20:28:04 -07003003 int retval;
3004
3005 /* Nothing to do for write-only files */
3006 if (!(file->f_mode & FMODE_READ))
3007 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003008
Ben Blum102a7752009-09-23 15:56:26 -07003009 /* have the array populated */
Ben Blum72a8cb32009-09-23 15:56:27 -07003010 retval = pidlist_array_load(cgrp, type, &l);
Ben Blum102a7752009-09-23 15:56:26 -07003011 if (retval)
3012 return retval;
3013 /* configure file information */
3014 file->f_op = &cgroup_pidlist_operations;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003015
Ben Blum102a7752009-09-23 15:56:26 -07003016 retval = seq_open(file, &cgroup_pidlist_seq_operations);
Paul Menagecc31edc2008-10-18 20:28:04 -07003017 if (retval) {
Ben Blum102a7752009-09-23 15:56:26 -07003018 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07003019 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003020 }
Ben Blum102a7752009-09-23 15:56:26 -07003021 ((struct seq_file *)file->private_data)->private = l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003022 return 0;
3023}
Ben Blum102a7752009-09-23 15:56:26 -07003024static int cgroup_tasks_open(struct inode *unused, struct file *file)
3025{
Ben Blum72a8cb32009-09-23 15:56:27 -07003026 return cgroup_pidlist_open(file, CGROUP_FILE_TASKS);
Ben Blum102a7752009-09-23 15:56:26 -07003027}
3028static int cgroup_procs_open(struct inode *unused, struct file *file)
3029{
Ben Blum72a8cb32009-09-23 15:56:27 -07003030 return cgroup_pidlist_open(file, CGROUP_FILE_PROCS);
Ben Blum102a7752009-09-23 15:56:26 -07003031}
Paul Menagebbcb81d2007-10-18 23:39:32 -07003032
Paul Menagebd89aab2007-10-18 23:40:44 -07003033static u64 cgroup_read_notify_on_release(struct cgroup *cgrp,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003034 struct cftype *cft)
3035{
Paul Menagebd89aab2007-10-18 23:40:44 -07003036 return notify_on_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003037}
3038
Paul Menage6379c102008-07-25 01:47:01 -07003039static int cgroup_write_notify_on_release(struct cgroup *cgrp,
3040 struct cftype *cft,
3041 u64 val)
3042{
3043 clear_bit(CGRP_RELEASABLE, &cgrp->flags);
3044 if (val)
3045 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3046 else
3047 clear_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3048 return 0;
3049}
3050
Paul Menagebbcb81d2007-10-18 23:39:32 -07003051/*
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003052 * Unregister event and free resources.
3053 *
3054 * Gets called from workqueue.
3055 */
3056static void cgroup_event_remove(struct work_struct *work)
3057{
3058 struct cgroup_event *event = container_of(work, struct cgroup_event,
3059 remove);
3060 struct cgroup *cgrp = event->cgrp;
3061
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003062 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3063
3064 eventfd_ctx_put(event->eventfd);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003065 kfree(event);
Kirill A. Shutemova0a4db52010-03-10 15:22:34 -08003066 dput(cgrp->dentry);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003067}
3068
3069/*
3070 * Gets called on POLLHUP on eventfd when user closes it.
3071 *
3072 * Called with wqh->lock held and interrupts disabled.
3073 */
3074static int cgroup_event_wake(wait_queue_t *wait, unsigned mode,
3075 int sync, void *key)
3076{
3077 struct cgroup_event *event = container_of(wait,
3078 struct cgroup_event, wait);
3079 struct cgroup *cgrp = event->cgrp;
3080 unsigned long flags = (unsigned long)key;
3081
3082 if (flags & POLLHUP) {
Changli Gaoa93d2f12010-05-07 14:33:26 +08003083 __remove_wait_queue(event->wqh, &event->wait);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003084 spin_lock(&cgrp->event_list_lock);
3085 list_del(&event->list);
3086 spin_unlock(&cgrp->event_list_lock);
3087 /*
3088 * We are in atomic context, but cgroup_event_remove() may
3089 * sleep, so we have to call it in workqueue.
3090 */
3091 schedule_work(&event->remove);
3092 }
3093
3094 return 0;
3095}
3096
3097static void cgroup_event_ptable_queue_proc(struct file *file,
3098 wait_queue_head_t *wqh, poll_table *pt)
3099{
3100 struct cgroup_event *event = container_of(pt,
3101 struct cgroup_event, pt);
3102
3103 event->wqh = wqh;
3104 add_wait_queue(wqh, &event->wait);
3105}
3106
3107/*
3108 * Parse input and register new cgroup event handler.
3109 *
3110 * Input must be in format '<event_fd> <control_fd> <args>'.
3111 * Interpretation of args is defined by control file implementation.
3112 */
3113static int cgroup_write_event_control(struct cgroup *cgrp, struct cftype *cft,
3114 const char *buffer)
3115{
3116 struct cgroup_event *event = NULL;
3117 unsigned int efd, cfd;
3118 struct file *efile = NULL;
3119 struct file *cfile = NULL;
3120 char *endp;
3121 int ret;
3122
3123 efd = simple_strtoul(buffer, &endp, 10);
3124 if (*endp != ' ')
3125 return -EINVAL;
3126 buffer = endp + 1;
3127
3128 cfd = simple_strtoul(buffer, &endp, 10);
3129 if ((*endp != ' ') && (*endp != '\0'))
3130 return -EINVAL;
3131 buffer = endp + 1;
3132
3133 event = kzalloc(sizeof(*event), GFP_KERNEL);
3134 if (!event)
3135 return -ENOMEM;
3136 event->cgrp = cgrp;
3137 INIT_LIST_HEAD(&event->list);
3138 init_poll_funcptr(&event->pt, cgroup_event_ptable_queue_proc);
3139 init_waitqueue_func_entry(&event->wait, cgroup_event_wake);
3140 INIT_WORK(&event->remove, cgroup_event_remove);
3141
3142 efile = eventfd_fget(efd);
3143 if (IS_ERR(efile)) {
3144 ret = PTR_ERR(efile);
3145 goto fail;
3146 }
3147
3148 event->eventfd = eventfd_ctx_fileget(efile);
3149 if (IS_ERR(event->eventfd)) {
3150 ret = PTR_ERR(event->eventfd);
3151 goto fail;
3152 }
3153
3154 cfile = fget(cfd);
3155 if (!cfile) {
3156 ret = -EBADF;
3157 goto fail;
3158 }
3159
3160 /* the process need read permission on control file */
3161 ret = file_permission(cfile, MAY_READ);
3162 if (ret < 0)
3163 goto fail;
3164
3165 event->cft = __file_cft(cfile);
3166 if (IS_ERR(event->cft)) {
3167 ret = PTR_ERR(event->cft);
3168 goto fail;
3169 }
3170
3171 if (!event->cft->register_event || !event->cft->unregister_event) {
3172 ret = -EINVAL;
3173 goto fail;
3174 }
3175
3176 ret = event->cft->register_event(cgrp, event->cft,
3177 event->eventfd, buffer);
3178 if (ret)
3179 goto fail;
3180
3181 if (efile->f_op->poll(efile, &event->pt) & POLLHUP) {
3182 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3183 ret = 0;
3184 goto fail;
3185 }
3186
Kirill A. Shutemova0a4db52010-03-10 15:22:34 -08003187 /*
3188 * Events should be removed after rmdir of cgroup directory, but before
3189 * destroying subsystem state objects. Let's take reference to cgroup
3190 * directory dentry to do that.
3191 */
3192 dget(cgrp->dentry);
3193
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003194 spin_lock(&cgrp->event_list_lock);
3195 list_add(&event->list, &cgrp->event_list);
3196 spin_unlock(&cgrp->event_list_lock);
3197
3198 fput(cfile);
3199 fput(efile);
3200
3201 return 0;
3202
3203fail:
3204 if (cfile)
3205 fput(cfile);
3206
3207 if (event && event->eventfd && !IS_ERR(event->eventfd))
3208 eventfd_ctx_put(event->eventfd);
3209
3210 if (!IS_ERR_OR_NULL(efile))
3211 fput(efile);
3212
3213 kfree(event);
3214
3215 return ret;
3216}
3217
Daniel Lezcano97978e62010-10-27 15:33:35 -07003218static u64 cgroup_clone_children_read(struct cgroup *cgrp,
3219 struct cftype *cft)
3220{
3221 return clone_children(cgrp);
3222}
3223
3224static int cgroup_clone_children_write(struct cgroup *cgrp,
3225 struct cftype *cft,
3226 u64 val)
3227{
3228 if (val)
3229 set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3230 else
3231 clear_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3232 return 0;
3233}
3234
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003235/*
Paul Menagebbcb81d2007-10-18 23:39:32 -07003236 * for the common functions, 'private' gives the type of file
3237 */
Ben Blum102a7752009-09-23 15:56:26 -07003238/* for hysterical raisins, we can't put this on the older files */
3239#define CGROUP_FILE_GENERIC_PREFIX "cgroup."
Paul Menage81a6a5c2007-10-18 23:39:38 -07003240static struct cftype files[] = {
3241 {
3242 .name = "tasks",
3243 .open = cgroup_tasks_open,
Paul Menageaf351022008-07-25 01:47:01 -07003244 .write_u64 = cgroup_tasks_write,
Ben Blum102a7752009-09-23 15:56:26 -07003245 .release = cgroup_pidlist_release,
Li Zefan099fca32009-04-02 16:57:29 -07003246 .mode = S_IRUGO | S_IWUSR,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003247 },
Ben Blum102a7752009-09-23 15:56:26 -07003248 {
3249 .name = CGROUP_FILE_GENERIC_PREFIX "procs",
3250 .open = cgroup_procs_open,
3251 /* .write_u64 = cgroup_procs_write, TODO */
3252 .release = cgroup_pidlist_release,
3253 .mode = S_IRUGO,
3254 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003255 {
3256 .name = "notify_on_release",
Paul Menagef4c753b2008-04-29 00:59:56 -07003257 .read_u64 = cgroup_read_notify_on_release,
Paul Menage6379c102008-07-25 01:47:01 -07003258 .write_u64 = cgroup_write_notify_on_release,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003259 },
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003260 {
3261 .name = CGROUP_FILE_GENERIC_PREFIX "event_control",
3262 .write_string = cgroup_write_event_control,
3263 .mode = S_IWUGO,
3264 },
Daniel Lezcano97978e62010-10-27 15:33:35 -07003265 {
3266 .name = "cgroup.clone_children",
3267 .read_u64 = cgroup_clone_children_read,
3268 .write_u64 = cgroup_clone_children_write,
3269 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003270};
3271
3272static struct cftype cft_release_agent = {
3273 .name = "release_agent",
Paul Menagee788e062008-07-25 01:46:59 -07003274 .read_seq_string = cgroup_release_agent_show,
3275 .write_string = cgroup_release_agent_write,
3276 .max_write_len = PATH_MAX,
Paul Menagebbcb81d2007-10-18 23:39:32 -07003277};
3278
Paul Menagebd89aab2007-10-18 23:40:44 -07003279static int cgroup_populate_dir(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003280{
3281 int err;
3282 struct cgroup_subsys *ss;
3283
3284 /* First clear out any existing files */
Paul Menagebd89aab2007-10-18 23:40:44 -07003285 cgroup_clear_directory(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003286
Paul Menagebd89aab2007-10-18 23:40:44 -07003287 err = cgroup_add_files(cgrp, NULL, files, ARRAY_SIZE(files));
Paul Menagebbcb81d2007-10-18 23:39:32 -07003288 if (err < 0)
3289 return err;
3290
Paul Menagebd89aab2007-10-18 23:40:44 -07003291 if (cgrp == cgrp->top_cgroup) {
3292 if ((err = cgroup_add_file(cgrp, NULL, &cft_release_agent)) < 0)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003293 return err;
3294 }
3295
Paul Menagebd89aab2007-10-18 23:40:44 -07003296 for_each_subsys(cgrp->root, ss) {
3297 if (ss->populate && (err = ss->populate(ss, cgrp)) < 0)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003298 return err;
3299 }
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003300 /* This cgroup is ready now */
3301 for_each_subsys(cgrp->root, ss) {
3302 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3303 /*
3304 * Update id->css pointer and make this css visible from
3305 * CSS ID functions. This pointer will be dereferened
3306 * from RCU-read-side without locks.
3307 */
3308 if (css->id)
3309 rcu_assign_pointer(css->id->css, css);
3310 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003311
3312 return 0;
3313}
3314
3315static void init_cgroup_css(struct cgroup_subsys_state *css,
3316 struct cgroup_subsys *ss,
Paul Menagebd89aab2007-10-18 23:40:44 -07003317 struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003318{
Paul Menagebd89aab2007-10-18 23:40:44 -07003319 css->cgroup = cgrp;
Paul Menagee7c5ec92009-01-07 18:08:38 -08003320 atomic_set(&css->refcnt, 1);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003321 css->flags = 0;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003322 css->id = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07003323 if (cgrp == dummytop)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003324 set_bit(CSS_ROOT, &css->flags);
Paul Menagebd89aab2007-10-18 23:40:44 -07003325 BUG_ON(cgrp->subsys[ss->subsys_id]);
3326 cgrp->subsys[ss->subsys_id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003327}
3328
Paul Menage999cd8a2009-01-07 18:08:36 -08003329static void cgroup_lock_hierarchy(struct cgroupfs_root *root)
3330{
3331 /* We need to take each hierarchy_mutex in a consistent order */
3332 int i;
3333
Ben Blumaae8aab2010-03-10 15:22:07 -08003334 /*
3335 * No worry about a race with rebind_subsystems that might mess up the
3336 * locking order, since both parties are under cgroup_mutex.
3337 */
Paul Menage999cd8a2009-01-07 18:08:36 -08003338 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3339 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08003340 if (ss == NULL)
3341 continue;
Paul Menage999cd8a2009-01-07 18:08:36 -08003342 if (ss->root == root)
Li Zefancfebe562009-02-11 13:04:36 -08003343 mutex_lock(&ss->hierarchy_mutex);
Paul Menage999cd8a2009-01-07 18:08:36 -08003344 }
3345}
3346
3347static void cgroup_unlock_hierarchy(struct cgroupfs_root *root)
3348{
3349 int i;
3350
3351 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3352 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08003353 if (ss == NULL)
3354 continue;
Paul Menage999cd8a2009-01-07 18:08:36 -08003355 if (ss->root == root)
3356 mutex_unlock(&ss->hierarchy_mutex);
3357 }
3358}
3359
Paul Menageddbcc7e2007-10-18 23:39:30 -07003360/*
Li Zefana043e3b2008-02-23 15:24:09 -08003361 * cgroup_create - create a cgroup
3362 * @parent: cgroup that will be parent of the new cgroup
3363 * @dentry: dentry of the new cgroup
3364 * @mode: mode to set on new inode
Paul Menageddbcc7e2007-10-18 23:39:30 -07003365 *
Li Zefana043e3b2008-02-23 15:24:09 -08003366 * Must be called with the mutex on the parent inode held
Paul Menageddbcc7e2007-10-18 23:39:30 -07003367 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07003368static long cgroup_create(struct cgroup *parent, struct dentry *dentry,
Li Zefan099fca32009-04-02 16:57:29 -07003369 mode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003370{
Paul Menagebd89aab2007-10-18 23:40:44 -07003371 struct cgroup *cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003372 struct cgroupfs_root *root = parent->root;
3373 int err = 0;
3374 struct cgroup_subsys *ss;
3375 struct super_block *sb = root->sb;
3376
Paul Menagebd89aab2007-10-18 23:40:44 -07003377 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
3378 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003379 return -ENOMEM;
3380
3381 /* Grab a reference on the superblock so the hierarchy doesn't
3382 * get deleted on unmount if there are child cgroups. This
3383 * can be done outside cgroup_mutex, since the sb can't
3384 * disappear while someone has an open control file on the
3385 * fs */
3386 atomic_inc(&sb->s_active);
3387
3388 mutex_lock(&cgroup_mutex);
3389
Paul Menagecc31edc2008-10-18 20:28:04 -07003390 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003391
Paul Menagebd89aab2007-10-18 23:40:44 -07003392 cgrp->parent = parent;
3393 cgrp->root = parent->root;
3394 cgrp->top_cgroup = parent->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003395
Li Zefanb6abdb02008-03-04 14:28:19 -08003396 if (notify_on_release(parent))
3397 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3398
Daniel Lezcano97978e62010-10-27 15:33:35 -07003399 if (clone_children(parent))
3400 set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3401
Paul Menageddbcc7e2007-10-18 23:39:30 -07003402 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07003403 struct cgroup_subsys_state *css = ss->create(ss, cgrp);
Li Zefan4528fd02010-02-02 13:44:10 -08003404
Paul Menageddbcc7e2007-10-18 23:39:30 -07003405 if (IS_ERR(css)) {
3406 err = PTR_ERR(css);
3407 goto err_destroy;
3408 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003409 init_cgroup_css(css, ss, cgrp);
Li Zefan4528fd02010-02-02 13:44:10 -08003410 if (ss->use_id) {
3411 err = alloc_css_id(ss, parent, cgrp);
3412 if (err)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003413 goto err_destroy;
Li Zefan4528fd02010-02-02 13:44:10 -08003414 }
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003415 /* At error, ->destroy() callback has to free assigned ID. */
Daniel Lezcano97978e62010-10-27 15:33:35 -07003416 if (clone_children(parent) && ss->post_clone)
3417 ss->post_clone(ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003418 }
3419
Paul Menage999cd8a2009-01-07 18:08:36 -08003420 cgroup_lock_hierarchy(root);
Paul Menagebd89aab2007-10-18 23:40:44 -07003421 list_add(&cgrp->sibling, &cgrp->parent->children);
Paul Menage999cd8a2009-01-07 18:08:36 -08003422 cgroup_unlock_hierarchy(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003423 root->number_of_cgroups++;
3424
Paul Menagebd89aab2007-10-18 23:40:44 -07003425 err = cgroup_create_dir(cgrp, dentry, mode);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003426 if (err < 0)
3427 goto err_remove;
3428
3429 /* The cgroup directory was pre-locked for us */
Paul Menagebd89aab2007-10-18 23:40:44 -07003430 BUG_ON(!mutex_is_locked(&cgrp->dentry->d_inode->i_mutex));
Paul Menageddbcc7e2007-10-18 23:39:30 -07003431
Paul Menagebd89aab2007-10-18 23:40:44 -07003432 err = cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003433 /* If err < 0, we have a half-filled directory - oh well ;) */
3434
3435 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07003436 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003437
3438 return 0;
3439
3440 err_remove:
3441
KAMEZAWA Hiroyukibaef99a2009-01-29 14:25:10 -08003442 cgroup_lock_hierarchy(root);
Paul Menagebd89aab2007-10-18 23:40:44 -07003443 list_del(&cgrp->sibling);
KAMEZAWA Hiroyukibaef99a2009-01-29 14:25:10 -08003444 cgroup_unlock_hierarchy(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003445 root->number_of_cgroups--;
3446
3447 err_destroy:
3448
3449 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07003450 if (cgrp->subsys[ss->subsys_id])
3451 ss->destroy(ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003452 }
3453
3454 mutex_unlock(&cgroup_mutex);
3455
3456 /* Release the reference count that we took on the superblock */
3457 deactivate_super(sb);
3458
Paul Menagebd89aab2007-10-18 23:40:44 -07003459 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003460 return err;
3461}
3462
3463static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode)
3464{
3465 struct cgroup *c_parent = dentry->d_parent->d_fsdata;
3466
3467 /* the vfs holds inode->i_mutex already */
3468 return cgroup_create(c_parent, dentry, mode | S_IFDIR);
3469}
3470
Li Zefan55b6fd02008-07-29 22:33:20 -07003471static int cgroup_has_css_refs(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003472{
3473 /* Check the reference count on each subsystem. Since we
3474 * already established that there are no tasks in the
Paul Menagee7c5ec92009-01-07 18:08:38 -08003475 * cgroup, if the css refcount is also 1, then there should
Paul Menage81a6a5c2007-10-18 23:39:38 -07003476 * be no outstanding references, so the subsystem is safe to
3477 * destroy. We scan across all subsystems rather than using
3478 * the per-hierarchy linked list of mounted subsystems since
3479 * we can be called via check_for_release() with no
3480 * synchronization other than RCU, and the subsystem linked
3481 * list isn't RCU-safe */
3482 int i;
Ben Blumaae8aab2010-03-10 15:22:07 -08003483 /*
3484 * We won't need to lock the subsys array, because the subsystems
3485 * we're concerned about aren't going anywhere since our cgroup root
3486 * has a reference on them.
3487 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07003488 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3489 struct cgroup_subsys *ss = subsys[i];
3490 struct cgroup_subsys_state *css;
Ben Blumaae8aab2010-03-10 15:22:07 -08003491 /* Skip subsystems not present or not in this hierarchy */
3492 if (ss == NULL || ss->root != cgrp->root)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003493 continue;
Paul Menagebd89aab2007-10-18 23:40:44 -07003494 css = cgrp->subsys[ss->subsys_id];
Paul Menage81a6a5c2007-10-18 23:39:38 -07003495 /* When called from check_for_release() it's possible
3496 * that by this point the cgroup has been removed
3497 * and the css deleted. But a false-positive doesn't
3498 * matter, since it can only happen if the cgroup
3499 * has been deleted and hence no longer needs the
3500 * release agent to be called anyway. */
Paul Menagee7c5ec92009-01-07 18:08:38 -08003501 if (css && (atomic_read(&css->refcnt) > 1))
Paul Menage81a6a5c2007-10-18 23:39:38 -07003502 return 1;
Paul Menage81a6a5c2007-10-18 23:39:38 -07003503 }
3504 return 0;
3505}
3506
Paul Menagee7c5ec92009-01-07 18:08:38 -08003507/*
3508 * Atomically mark all (or else none) of the cgroup's CSS objects as
3509 * CSS_REMOVED. Return true on success, or false if the cgroup has
3510 * busy subsystems. Call with cgroup_mutex held
3511 */
3512
3513static int cgroup_clear_css_refs(struct cgroup *cgrp)
3514{
3515 struct cgroup_subsys *ss;
3516 unsigned long flags;
3517 bool failed = false;
3518 local_irq_save(flags);
3519 for_each_subsys(cgrp->root, ss) {
3520 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3521 int refcnt;
Paul Menage804b3c22009-01-29 14:25:21 -08003522 while (1) {
Paul Menagee7c5ec92009-01-07 18:08:38 -08003523 /* We can only remove a CSS with a refcnt==1 */
3524 refcnt = atomic_read(&css->refcnt);
3525 if (refcnt > 1) {
3526 failed = true;
3527 goto done;
3528 }
3529 BUG_ON(!refcnt);
3530 /*
3531 * Drop the refcnt to 0 while we check other
3532 * subsystems. This will cause any racing
3533 * css_tryget() to spin until we set the
3534 * CSS_REMOVED bits or abort
3535 */
Paul Menage804b3c22009-01-29 14:25:21 -08003536 if (atomic_cmpxchg(&css->refcnt, refcnt, 0) == refcnt)
3537 break;
3538 cpu_relax();
3539 }
Paul Menagee7c5ec92009-01-07 18:08:38 -08003540 }
3541 done:
3542 for_each_subsys(cgrp->root, ss) {
3543 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3544 if (failed) {
3545 /*
3546 * Restore old refcnt if we previously managed
3547 * to clear it from 1 to 0
3548 */
3549 if (!atomic_read(&css->refcnt))
3550 atomic_set(&css->refcnt, 1);
3551 } else {
3552 /* Commit the fact that the CSS is removed */
3553 set_bit(CSS_REMOVED, &css->flags);
3554 }
3555 }
3556 local_irq_restore(flags);
3557 return !failed;
3558}
3559
Paul Menageddbcc7e2007-10-18 23:39:30 -07003560static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry)
3561{
Paul Menagebd89aab2007-10-18 23:40:44 -07003562 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003563 struct dentry *d;
3564 struct cgroup *parent;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003565 DEFINE_WAIT(wait);
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08003566 struct cgroup_event *event, *tmp;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003567 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003568
3569 /* the vfs holds both inode->i_mutex already */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003570again:
Paul Menageddbcc7e2007-10-18 23:39:30 -07003571 mutex_lock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07003572 if (atomic_read(&cgrp->count) != 0) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07003573 mutex_unlock(&cgroup_mutex);
3574 return -EBUSY;
3575 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003576 if (!list_empty(&cgrp->children)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07003577 mutex_unlock(&cgroup_mutex);
3578 return -EBUSY;
3579 }
KAMEZAWA Hiroyuki3fa59df2008-11-19 15:36:34 -08003580 mutex_unlock(&cgroup_mutex);
Li Zefana043e3b2008-02-23 15:24:09 -08003581
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08003582 /*
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003583 * In general, subsystem has no css->refcnt after pre_destroy(). But
3584 * in racy cases, subsystem may have to get css->refcnt after
3585 * pre_destroy() and it makes rmdir return with -EBUSY. This sometimes
3586 * make rmdir return -EBUSY too often. To avoid that, we use waitqueue
3587 * for cgroup's rmdir. CGRP_WAIT_ON_RMDIR is for synchronizing rmdir
3588 * and subsystem's reference count handling. Please see css_get/put
3589 * and css_tryget() and cgroup_wakeup_rmdir_waiter() implementation.
3590 */
3591 set_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
3592
3593 /*
Li Zefana043e3b2008-02-23 15:24:09 -08003594 * Call pre_destroy handlers of subsys. Notify subsystems
3595 * that rmdir() request comes.
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08003596 */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003597 ret = cgroup_call_pre_destroy(cgrp);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003598 if (ret) {
3599 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003600 return ret;
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003601 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003602
KAMEZAWA Hiroyuki3fa59df2008-11-19 15:36:34 -08003603 mutex_lock(&cgroup_mutex);
3604 parent = cgrp->parent;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003605 if (atomic_read(&cgrp->count) || !list_empty(&cgrp->children)) {
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003606 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003607 mutex_unlock(&cgroup_mutex);
3608 return -EBUSY;
3609 }
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003610 prepare_to_wait(&cgroup_rmdir_waitq, &wait, TASK_INTERRUPTIBLE);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003611 if (!cgroup_clear_css_refs(cgrp)) {
3612 mutex_unlock(&cgroup_mutex);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003613 /*
3614 * Because someone may call cgroup_wakeup_rmdir_waiter() before
3615 * prepare_to_wait(), we need to check this flag.
3616 */
3617 if (test_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags))
3618 schedule();
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003619 finish_wait(&cgroup_rmdir_waitq, &wait);
3620 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
3621 if (signal_pending(current))
3622 return -EINTR;
3623 goto again;
3624 }
3625 /* NO css_tryget() can success after here. */
3626 finish_wait(&cgroup_rmdir_waitq, &wait);
3627 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003628
Paul Menage81a6a5c2007-10-18 23:39:38 -07003629 spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07003630 set_bit(CGRP_REMOVED, &cgrp->flags);
3631 if (!list_empty(&cgrp->release_list))
3632 list_del(&cgrp->release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003633 spin_unlock(&release_list_lock);
Paul Menage999cd8a2009-01-07 18:08:36 -08003634
3635 cgroup_lock_hierarchy(cgrp->root);
3636 /* delete this cgroup from parent->children */
Paul Menagebd89aab2007-10-18 23:40:44 -07003637 list_del(&cgrp->sibling);
Paul Menage999cd8a2009-01-07 18:08:36 -08003638 cgroup_unlock_hierarchy(cgrp->root);
3639
Paul Menagebd89aab2007-10-18 23:40:44 -07003640 spin_lock(&cgrp->dentry->d_lock);
3641 d = dget(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003642 spin_unlock(&d->d_lock);
3643
3644 cgroup_d_remove_dir(d);
3645 dput(d);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003646
Paul Menagebd89aab2007-10-18 23:40:44 -07003647 set_bit(CGRP_RELEASABLE, &parent->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003648 check_for_release(parent);
3649
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08003650 /*
3651 * Unregister events and notify userspace.
3652 * Notify userspace about cgroup removing only after rmdir of cgroup
3653 * directory to avoid race between userspace and kernelspace
3654 */
3655 spin_lock(&cgrp->event_list_lock);
3656 list_for_each_entry_safe(event, tmp, &cgrp->event_list, list) {
3657 list_del(&event->list);
3658 remove_wait_queue(event->wqh, &event->wait);
3659 eventfd_signal(event->eventfd, 1);
3660 schedule_work(&event->remove);
3661 }
3662 spin_unlock(&cgrp->event_list_lock);
3663
Paul Menageddbcc7e2007-10-18 23:39:30 -07003664 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003665 return 0;
3666}
3667
Li Zefan06a11922008-04-29 01:00:07 -07003668static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003669{
Paul Menageddbcc7e2007-10-18 23:39:30 -07003670 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08003671
3672 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003673
3674 /* Create the top cgroup state for this subsystem */
Li Zefan33a68ac2009-01-07 18:07:42 -08003675 list_add(&ss->sibling, &rootnode.subsys_list);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003676 ss->root = &rootnode;
3677 css = ss->create(ss, dummytop);
3678 /* We don't handle early failures gracefully */
3679 BUG_ON(IS_ERR(css));
3680 init_cgroup_css(css, ss, dummytop);
3681
Li Zefane8d55fd2008-04-29 01:00:13 -07003682 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07003683 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07003684 * newly registered, all tasks and hence the
3685 * init_css_set is in the subsystem's top cgroup. */
3686 init_css_set.subsys[ss->subsys_id] = dummytop->subsys[ss->subsys_id];
Paul Menageddbcc7e2007-10-18 23:39:30 -07003687
3688 need_forkexit_callback |= ss->fork || ss->exit;
3689
Li Zefane8d55fd2008-04-29 01:00:13 -07003690 /* At system boot, before all subsystems have been
3691 * registered, no tasks have been forked, so we don't
3692 * need to invoke fork callbacks here. */
3693 BUG_ON(!list_empty(&init_task.tasks));
3694
Paul Menage999cd8a2009-01-07 18:08:36 -08003695 mutex_init(&ss->hierarchy_mutex);
Li Zefancfebe562009-02-11 13:04:36 -08003696 lockdep_set_class(&ss->hierarchy_mutex, &ss->subsys_key);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003697 ss->active = 1;
Ben Blume6a11052010-03-10 15:22:09 -08003698
3699 /* this function shouldn't be used with modular subsystems, since they
3700 * need to register a subsys_id, among other things */
3701 BUG_ON(ss->module);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003702}
3703
3704/**
Ben Blume6a11052010-03-10 15:22:09 -08003705 * cgroup_load_subsys: load and register a modular subsystem at runtime
3706 * @ss: the subsystem to load
3707 *
3708 * This function should be called in a modular subsystem's initcall. If the
Thomas Weber88393162010-03-16 11:47:56 +01003709 * subsystem is built as a module, it will be assigned a new subsys_id and set
Ben Blume6a11052010-03-10 15:22:09 -08003710 * up for use. If the subsystem is built-in anyway, work is delegated to the
3711 * simpler cgroup_init_subsys.
3712 */
3713int __init_or_module cgroup_load_subsys(struct cgroup_subsys *ss)
3714{
3715 int i;
3716 struct cgroup_subsys_state *css;
3717
3718 /* check name and function validity */
3719 if (ss->name == NULL || strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN ||
3720 ss->create == NULL || ss->destroy == NULL)
3721 return -EINVAL;
3722
3723 /*
3724 * we don't support callbacks in modular subsystems. this check is
3725 * before the ss->module check for consistency; a subsystem that could
3726 * be a module should still have no callbacks even if the user isn't
3727 * compiling it as one.
3728 */
3729 if (ss->fork || ss->exit)
3730 return -EINVAL;
3731
3732 /*
3733 * an optionally modular subsystem is built-in: we want to do nothing,
3734 * since cgroup_init_subsys will have already taken care of it.
3735 */
3736 if (ss->module == NULL) {
3737 /* a few sanity checks */
3738 BUG_ON(ss->subsys_id >= CGROUP_BUILTIN_SUBSYS_COUNT);
3739 BUG_ON(subsys[ss->subsys_id] != ss);
3740 return 0;
3741 }
3742
3743 /*
3744 * need to register a subsys id before anything else - for example,
3745 * init_cgroup_css needs it.
3746 */
3747 mutex_lock(&cgroup_mutex);
3748 /* find the first empty slot in the array */
3749 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
3750 if (subsys[i] == NULL)
3751 break;
3752 }
3753 if (i == CGROUP_SUBSYS_COUNT) {
3754 /* maximum number of subsystems already registered! */
3755 mutex_unlock(&cgroup_mutex);
3756 return -EBUSY;
3757 }
3758 /* assign ourselves the subsys_id */
3759 ss->subsys_id = i;
3760 subsys[i] = ss;
3761
3762 /*
3763 * no ss->create seems to need anything important in the ss struct, so
3764 * this can happen first (i.e. before the rootnode attachment).
3765 */
3766 css = ss->create(ss, dummytop);
3767 if (IS_ERR(css)) {
3768 /* failure case - need to deassign the subsys[] slot. */
3769 subsys[i] = NULL;
3770 mutex_unlock(&cgroup_mutex);
3771 return PTR_ERR(css);
3772 }
3773
3774 list_add(&ss->sibling, &rootnode.subsys_list);
3775 ss->root = &rootnode;
3776
3777 /* our new subsystem will be attached to the dummy hierarchy. */
3778 init_cgroup_css(css, ss, dummytop);
3779 /* init_idr must be after init_cgroup_css because it sets css->id. */
3780 if (ss->use_id) {
3781 int ret = cgroup_init_idr(ss, css);
3782 if (ret) {
3783 dummytop->subsys[ss->subsys_id] = NULL;
3784 ss->destroy(ss, dummytop);
3785 subsys[i] = NULL;
3786 mutex_unlock(&cgroup_mutex);
3787 return ret;
3788 }
3789 }
3790
3791 /*
3792 * Now we need to entangle the css into the existing css_sets. unlike
3793 * in cgroup_init_subsys, there are now multiple css_sets, so each one
3794 * will need a new pointer to it; done by iterating the css_set_table.
3795 * furthermore, modifying the existing css_sets will corrupt the hash
3796 * table state, so each changed css_set will need its hash recomputed.
3797 * this is all done under the css_set_lock.
3798 */
3799 write_lock(&css_set_lock);
3800 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
3801 struct css_set *cg;
3802 struct hlist_node *node, *tmp;
3803 struct hlist_head *bucket = &css_set_table[i], *new_bucket;
3804
3805 hlist_for_each_entry_safe(cg, node, tmp, bucket, hlist) {
3806 /* skip entries that we already rehashed */
3807 if (cg->subsys[ss->subsys_id])
3808 continue;
3809 /* remove existing entry */
3810 hlist_del(&cg->hlist);
3811 /* set new value */
3812 cg->subsys[ss->subsys_id] = css;
3813 /* recompute hash and restore entry */
3814 new_bucket = css_set_hash(cg->subsys);
3815 hlist_add_head(&cg->hlist, new_bucket);
3816 }
3817 }
3818 write_unlock(&css_set_lock);
3819
3820 mutex_init(&ss->hierarchy_mutex);
3821 lockdep_set_class(&ss->hierarchy_mutex, &ss->subsys_key);
3822 ss->active = 1;
3823
Ben Blume6a11052010-03-10 15:22:09 -08003824 /* success! */
3825 mutex_unlock(&cgroup_mutex);
3826 return 0;
3827}
3828EXPORT_SYMBOL_GPL(cgroup_load_subsys);
3829
3830/**
Ben Blumcf5d5942010-03-10 15:22:09 -08003831 * cgroup_unload_subsys: unload a modular subsystem
3832 * @ss: the subsystem to unload
3833 *
3834 * This function should be called in a modular subsystem's exitcall. When this
3835 * function is invoked, the refcount on the subsystem's module will be 0, so
3836 * the subsystem will not be attached to any hierarchy.
3837 */
3838void cgroup_unload_subsys(struct cgroup_subsys *ss)
3839{
3840 struct cg_cgroup_link *link;
3841 struct hlist_head *hhead;
3842
3843 BUG_ON(ss->module == NULL);
3844
3845 /*
3846 * we shouldn't be called if the subsystem is in use, and the use of
3847 * try_module_get in parse_cgroupfs_options should ensure that it
3848 * doesn't start being used while we're killing it off.
3849 */
3850 BUG_ON(ss->root != &rootnode);
3851
3852 mutex_lock(&cgroup_mutex);
3853 /* deassign the subsys_id */
3854 BUG_ON(ss->subsys_id < CGROUP_BUILTIN_SUBSYS_COUNT);
3855 subsys[ss->subsys_id] = NULL;
3856
3857 /* remove subsystem from rootnode's list of subsystems */
3858 list_del(&ss->sibling);
3859
3860 /*
3861 * disentangle the css from all css_sets attached to the dummytop. as
3862 * in loading, we need to pay our respects to the hashtable gods.
3863 */
3864 write_lock(&css_set_lock);
3865 list_for_each_entry(link, &dummytop->css_sets, cgrp_link_list) {
3866 struct css_set *cg = link->cg;
3867
3868 hlist_del(&cg->hlist);
3869 BUG_ON(!cg->subsys[ss->subsys_id]);
3870 cg->subsys[ss->subsys_id] = NULL;
3871 hhead = css_set_hash(cg->subsys);
3872 hlist_add_head(&cg->hlist, hhead);
3873 }
3874 write_unlock(&css_set_lock);
3875
3876 /*
3877 * remove subsystem's css from the dummytop and free it - need to free
3878 * before marking as null because ss->destroy needs the cgrp->subsys
3879 * pointer to find their state. note that this also takes care of
3880 * freeing the css_id.
3881 */
3882 ss->destroy(ss, dummytop);
3883 dummytop->subsys[ss->subsys_id] = NULL;
3884
3885 mutex_unlock(&cgroup_mutex);
3886}
3887EXPORT_SYMBOL_GPL(cgroup_unload_subsys);
3888
3889/**
Li Zefana043e3b2008-02-23 15:24:09 -08003890 * cgroup_init_early - cgroup initialization at system boot
3891 *
3892 * Initialize cgroups at system boot, and initialize any
3893 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07003894 */
3895int __init cgroup_init_early(void)
3896{
3897 int i;
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07003898 atomic_set(&init_css_set.refcount, 1);
Paul Menage817929e2007-10-18 23:39:36 -07003899 INIT_LIST_HEAD(&init_css_set.cg_links);
3900 INIT_LIST_HEAD(&init_css_set.tasks);
Li Zefan472b1052008-04-29 01:00:11 -07003901 INIT_HLIST_NODE(&init_css_set.hlist);
Paul Menage817929e2007-10-18 23:39:36 -07003902 css_set_count = 1;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003903 init_cgroup_root(&rootnode);
Paul Menage817929e2007-10-18 23:39:36 -07003904 root_count = 1;
3905 init_task.cgroups = &init_css_set;
3906
3907 init_css_set_link.cg = &init_css_set;
Paul Menage7717f7b2009-09-23 15:56:22 -07003908 init_css_set_link.cgrp = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -07003909 list_add(&init_css_set_link.cgrp_link_list,
Paul Menage817929e2007-10-18 23:39:36 -07003910 &rootnode.top_cgroup.css_sets);
3911 list_add(&init_css_set_link.cg_link_list,
3912 &init_css_set.cg_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003913
Li Zefan472b1052008-04-29 01:00:11 -07003914 for (i = 0; i < CSS_SET_TABLE_SIZE; i++)
3915 INIT_HLIST_HEAD(&css_set_table[i]);
3916
Ben Blumaae8aab2010-03-10 15:22:07 -08003917 /* at bootup time, we don't worry about modular subsystems */
3918 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07003919 struct cgroup_subsys *ss = subsys[i];
3920
3921 BUG_ON(!ss->name);
3922 BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN);
3923 BUG_ON(!ss->create);
3924 BUG_ON(!ss->destroy);
3925 if (ss->subsys_id != i) {
Diego Callejacfe36bd2007-11-14 16:58:54 -08003926 printk(KERN_ERR "cgroup: Subsys %s id == %d\n",
Paul Menageddbcc7e2007-10-18 23:39:30 -07003927 ss->name, ss->subsys_id);
3928 BUG();
3929 }
3930
3931 if (ss->early_init)
3932 cgroup_init_subsys(ss);
3933 }
3934 return 0;
3935}
3936
3937/**
Li Zefana043e3b2008-02-23 15:24:09 -08003938 * cgroup_init - cgroup initialization
3939 *
3940 * Register cgroup filesystem and /proc file, and initialize
3941 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07003942 */
3943int __init cgroup_init(void)
3944{
3945 int err;
3946 int i;
Li Zefan472b1052008-04-29 01:00:11 -07003947 struct hlist_head *hhead;
Paul Menagea4243162007-10-18 23:39:35 -07003948
3949 err = bdi_init(&cgroup_backing_dev_info);
3950 if (err)
3951 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003952
Ben Blumaae8aab2010-03-10 15:22:07 -08003953 /* at bootup time, we don't worry about modular subsystems */
3954 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07003955 struct cgroup_subsys *ss = subsys[i];
3956 if (!ss->early_init)
3957 cgroup_init_subsys(ss);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003958 if (ss->use_id)
Ben Blume6a11052010-03-10 15:22:09 -08003959 cgroup_init_idr(ss, init_css_set.subsys[ss->subsys_id]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003960 }
3961
Li Zefan472b1052008-04-29 01:00:11 -07003962 /* Add init_css_set to the hash table */
3963 hhead = css_set_hash(init_css_set.subsys);
3964 hlist_add_head(&init_css_set.hlist, hhead);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07003965 BUG_ON(!init_root_id(&rootnode));
Greg KH676db4a2010-08-05 13:53:35 -07003966
3967 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
3968 if (!cgroup_kobj) {
3969 err = -ENOMEM;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003970 goto out;
Greg KH676db4a2010-08-05 13:53:35 -07003971 }
3972
3973 err = register_filesystem(&cgroup_fs_type);
3974 if (err < 0) {
3975 kobject_put(cgroup_kobj);
3976 goto out;
3977 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003978
Li Zefan46ae2202008-04-29 01:00:08 -07003979 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Paul Menagea4243162007-10-18 23:39:35 -07003980
Paul Menageddbcc7e2007-10-18 23:39:30 -07003981out:
Paul Menagea4243162007-10-18 23:39:35 -07003982 if (err)
3983 bdi_destroy(&cgroup_backing_dev_info);
3984
Paul Menageddbcc7e2007-10-18 23:39:30 -07003985 return err;
3986}
Paul Menageb4f48b62007-10-18 23:39:33 -07003987
Paul Menagea4243162007-10-18 23:39:35 -07003988/*
3989 * proc_cgroup_show()
3990 * - Print task's cgroup paths into seq_file, one line for each hierarchy
3991 * - Used for /proc/<pid>/cgroup.
3992 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
3993 * doesn't really matter if tsk->cgroup changes after we read it,
Cliff Wickman956db3c2008-02-07 00:14:43 -08003994 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
Paul Menagea4243162007-10-18 23:39:35 -07003995 * anyway. No need to check that tsk->cgroup != NULL, thanks to
3996 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
3997 * cgroup to top_cgroup.
3998 */
3999
4000/* TODO: Use a proper seq_file iterator */
4001static int proc_cgroup_show(struct seq_file *m, void *v)
4002{
4003 struct pid *pid;
4004 struct task_struct *tsk;
4005 char *buf;
4006 int retval;
4007 struct cgroupfs_root *root;
4008
4009 retval = -ENOMEM;
4010 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
4011 if (!buf)
4012 goto out;
4013
4014 retval = -ESRCH;
4015 pid = m->private;
4016 tsk = get_pid_task(pid, PIDTYPE_PID);
4017 if (!tsk)
4018 goto out_free;
4019
4020 retval = 0;
4021
4022 mutex_lock(&cgroup_mutex);
4023
Li Zefane5f6a862009-01-07 18:07:41 -08004024 for_each_active_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07004025 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07004026 struct cgroup *cgrp;
Paul Menagea4243162007-10-18 23:39:35 -07004027 int count = 0;
4028
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004029 seq_printf(m, "%d:", root->hierarchy_id);
Paul Menagea4243162007-10-18 23:39:35 -07004030 for_each_subsys(root, ss)
4031 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07004032 if (strlen(root->name))
4033 seq_printf(m, "%sname=%s", count ? "," : "",
4034 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07004035 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07004036 cgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07004037 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
Paul Menagea4243162007-10-18 23:39:35 -07004038 if (retval < 0)
4039 goto out_unlock;
4040 seq_puts(m, buf);
4041 seq_putc(m, '\n');
4042 }
4043
4044out_unlock:
4045 mutex_unlock(&cgroup_mutex);
4046 put_task_struct(tsk);
4047out_free:
4048 kfree(buf);
4049out:
4050 return retval;
4051}
4052
4053static int cgroup_open(struct inode *inode, struct file *file)
4054{
4055 struct pid *pid = PROC_I(inode)->pid;
4056 return single_open(file, proc_cgroup_show, pid);
4057}
4058
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004059const struct file_operations proc_cgroup_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004060 .open = cgroup_open,
4061 .read = seq_read,
4062 .llseek = seq_lseek,
4063 .release = single_release,
4064};
4065
4066/* Display information about each subsystem and each hierarchy */
4067static int proc_cgroupstats_show(struct seq_file *m, void *v)
4068{
4069 int i;
Paul Menagea4243162007-10-18 23:39:35 -07004070
Paul Menage8bab8dd2008-04-04 14:29:57 -07004071 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08004072 /*
4073 * ideally we don't want subsystems moving around while we do this.
4074 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
4075 * subsys/hierarchy state.
4076 */
Paul Menagea4243162007-10-18 23:39:35 -07004077 mutex_lock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07004078 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
4079 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08004080 if (ss == NULL)
4081 continue;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004082 seq_printf(m, "%s\t%d\t%d\t%d\n",
4083 ss->name, ss->root->hierarchy_id,
Paul Menage8bab8dd2008-04-04 14:29:57 -07004084 ss->root->number_of_cgroups, !ss->disabled);
Paul Menagea4243162007-10-18 23:39:35 -07004085 }
4086 mutex_unlock(&cgroup_mutex);
4087 return 0;
4088}
4089
4090static int cgroupstats_open(struct inode *inode, struct file *file)
4091{
Al Viro9dce07f2008-03-29 03:07:28 +00004092 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07004093}
4094
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004095static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004096 .open = cgroupstats_open,
4097 .read = seq_read,
4098 .llseek = seq_lseek,
4099 .release = single_release,
4100};
4101
Paul Menageb4f48b62007-10-18 23:39:33 -07004102/**
4103 * cgroup_fork - attach newly forked task to its parents cgroup.
Li Zefana043e3b2008-02-23 15:24:09 -08004104 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07004105 *
4106 * Description: A task inherits its parent's cgroup at fork().
4107 *
4108 * A pointer to the shared css_set was automatically copied in
4109 * fork.c by dup_task_struct(). However, we ignore that copy, since
4110 * it was not made under the protection of RCU or cgroup_mutex, so
Cliff Wickman956db3c2008-02-07 00:14:43 -08004111 * might no longer be a valid cgroup pointer. cgroup_attach_task() might
Paul Menage817929e2007-10-18 23:39:36 -07004112 * have already changed current->cgroups, allowing the previously
4113 * referenced cgroup group to be removed and freed.
Paul Menageb4f48b62007-10-18 23:39:33 -07004114 *
4115 * At the point that cgroup_fork() is called, 'current' is the parent
4116 * task, and the passed argument 'child' points to the child task.
4117 */
4118void cgroup_fork(struct task_struct *child)
4119{
Paul Menage817929e2007-10-18 23:39:36 -07004120 task_lock(current);
4121 child->cgroups = current->cgroups;
4122 get_css_set(child->cgroups);
4123 task_unlock(current);
4124 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07004125}
4126
4127/**
Li Zefana043e3b2008-02-23 15:24:09 -08004128 * cgroup_fork_callbacks - run fork callbacks
4129 * @child: the new task
4130 *
4131 * Called on a new task very soon before adding it to the
4132 * tasklist. No need to take any locks since no-one can
4133 * be operating on this task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004134 */
4135void cgroup_fork_callbacks(struct task_struct *child)
4136{
4137 if (need_forkexit_callback) {
4138 int i;
Ben Blumaae8aab2010-03-10 15:22:07 -08004139 /*
4140 * forkexit callbacks are only supported for builtin
4141 * subsystems, and the builtin section of the subsys array is
4142 * immutable, so we don't need to lock the subsys array here.
4143 */
4144 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageb4f48b62007-10-18 23:39:33 -07004145 struct cgroup_subsys *ss = subsys[i];
4146 if (ss->fork)
4147 ss->fork(ss, child);
4148 }
4149 }
4150}
4151
4152/**
Li Zefana043e3b2008-02-23 15:24:09 -08004153 * cgroup_post_fork - called on a new task after adding it to the task list
4154 * @child: the task in question
4155 *
4156 * Adds the task to the list running through its css_set if necessary.
4157 * Has to be after the task is visible on the task list in case we race
4158 * with the first call to cgroup_iter_start() - to guarantee that the
4159 * new task ends up on its list.
4160 */
Paul Menage817929e2007-10-18 23:39:36 -07004161void cgroup_post_fork(struct task_struct *child)
4162{
4163 if (use_task_css_set_links) {
4164 write_lock(&css_set_lock);
Lai Jiangshanb12b5332009-01-07 18:07:36 -08004165 task_lock(child);
Paul Menage817929e2007-10-18 23:39:36 -07004166 if (list_empty(&child->cg_list))
4167 list_add(&child->cg_list, &child->cgroups->tasks);
Lai Jiangshanb12b5332009-01-07 18:07:36 -08004168 task_unlock(child);
Paul Menage817929e2007-10-18 23:39:36 -07004169 write_unlock(&css_set_lock);
4170 }
4171}
4172/**
Paul Menageb4f48b62007-10-18 23:39:33 -07004173 * cgroup_exit - detach cgroup from exiting task
4174 * @tsk: pointer to task_struct of exiting process
Li Zefana043e3b2008-02-23 15:24:09 -08004175 * @run_callback: run exit callbacks?
Paul Menageb4f48b62007-10-18 23:39:33 -07004176 *
4177 * Description: Detach cgroup from @tsk and release it.
4178 *
4179 * Note that cgroups marked notify_on_release force every task in
4180 * them to take the global cgroup_mutex mutex when exiting.
4181 * This could impact scaling on very large systems. Be reluctant to
4182 * use notify_on_release cgroups where very high task exit scaling
4183 * is required on large systems.
4184 *
4185 * the_top_cgroup_hack:
4186 *
4187 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
4188 *
4189 * We call cgroup_exit() while the task is still competent to
4190 * handle notify_on_release(), then leave the task attached to the
4191 * root cgroup in each hierarchy for the remainder of its exit.
4192 *
4193 * To do this properly, we would increment the reference count on
4194 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
4195 * code we would add a second cgroup function call, to drop that
4196 * reference. This would just create an unnecessary hot spot on
4197 * the top_cgroup reference count, to no avail.
4198 *
4199 * Normally, holding a reference to a cgroup without bumping its
4200 * count is unsafe. The cgroup could go away, or someone could
4201 * attach us to a different cgroup, decrementing the count on
4202 * the first cgroup that we never incremented. But in this case,
4203 * top_cgroup isn't going away, and either task has PF_EXITING set,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004204 * which wards off any cgroup_attach_task() attempts, or task is a failed
4205 * fork, never visible to cgroup_attach_task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004206 */
4207void cgroup_exit(struct task_struct *tsk, int run_callbacks)
4208{
4209 int i;
Paul Menage817929e2007-10-18 23:39:36 -07004210 struct css_set *cg;
Paul Menageb4f48b62007-10-18 23:39:33 -07004211
4212 if (run_callbacks && need_forkexit_callback) {
Ben Blumaae8aab2010-03-10 15:22:07 -08004213 /*
4214 * modular subsystems can't use callbacks, so no need to lock
4215 * the subsys array
4216 */
4217 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageb4f48b62007-10-18 23:39:33 -07004218 struct cgroup_subsys *ss = subsys[i];
4219 if (ss->exit)
4220 ss->exit(ss, tsk);
4221 }
4222 }
Paul Menage817929e2007-10-18 23:39:36 -07004223
4224 /*
4225 * Unlink from the css_set task list if necessary.
4226 * Optimistically check cg_list before taking
4227 * css_set_lock
4228 */
4229 if (!list_empty(&tsk->cg_list)) {
4230 write_lock(&css_set_lock);
4231 if (!list_empty(&tsk->cg_list))
4232 list_del(&tsk->cg_list);
4233 write_unlock(&css_set_lock);
4234 }
4235
Paul Menageb4f48b62007-10-18 23:39:33 -07004236 /* Reassign the task to the init_css_set. */
4237 task_lock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07004238 cg = tsk->cgroups;
4239 tsk->cgroups = &init_css_set;
Paul Menageb4f48b62007-10-18 23:39:33 -07004240 task_unlock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07004241 if (cg)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004242 put_css_set_taskexit(cg);
Paul Menageb4f48b62007-10-18 23:39:33 -07004243}
Paul Menage697f4162007-10-18 23:39:34 -07004244
4245/**
Li Zefana043e3b2008-02-23 15:24:09 -08004246 * cgroup_clone - clone the cgroup the given subsystem is attached to
4247 * @tsk: the task to be moved
4248 * @subsys: the given subsystem
Serge E. Hallyne885dcd2008-07-25 01:47:06 -07004249 * @nodename: the name for the new cgroup
Li Zefana043e3b2008-02-23 15:24:09 -08004250 *
4251 * Duplicate the current cgroup in the hierarchy that the given
4252 * subsystem is attached to, and move this task into the new
4253 * child.
Paul Menage697f4162007-10-18 23:39:34 -07004254 */
Serge E. Hallyne885dcd2008-07-25 01:47:06 -07004255int cgroup_clone(struct task_struct *tsk, struct cgroup_subsys *subsys,
4256 char *nodename)
Paul Menage697f4162007-10-18 23:39:34 -07004257{
4258 struct dentry *dentry;
4259 int ret = 0;
Paul Menage697f4162007-10-18 23:39:34 -07004260 struct cgroup *parent, *child;
4261 struct inode *inode;
4262 struct css_set *cg;
4263 struct cgroupfs_root *root;
4264 struct cgroup_subsys *ss;
4265
4266 /* We shouldn't be called by an unregistered subsystem */
4267 BUG_ON(!subsys->active);
4268
4269 /* First figure out what hierarchy and cgroup we're dealing
4270 * with, and pin them so we can drop cgroup_mutex */
4271 mutex_lock(&cgroup_mutex);
4272 again:
4273 root = subsys->root;
4274 if (root == &rootnode) {
Paul Menage697f4162007-10-18 23:39:34 -07004275 mutex_unlock(&cgroup_mutex);
4276 return 0;
4277 }
Paul Menage697f4162007-10-18 23:39:34 -07004278
Paul Menage697f4162007-10-18 23:39:34 -07004279 /* Pin the hierarchy */
Li Zefan1404f062009-01-29 14:25:21 -08004280 if (!atomic_inc_not_zero(&root->sb->s_active)) {
Li Zefan7b574b72009-01-04 12:00:45 -08004281 /* We race with the final deactivate_super() */
4282 mutex_unlock(&cgroup_mutex);
4283 return 0;
4284 }
Paul Menage697f4162007-10-18 23:39:34 -07004285
Paul Menage817929e2007-10-18 23:39:36 -07004286 /* Keep the cgroup alive */
Li Zefan1404f062009-01-29 14:25:21 -08004287 task_lock(tsk);
4288 parent = task_cgroup(tsk, subsys->subsys_id);
4289 cg = tsk->cgroups;
Paul Menage817929e2007-10-18 23:39:36 -07004290 get_css_set(cg);
Lai Jiangshan104cbd52009-01-07 18:07:38 -08004291 task_unlock(tsk);
Li Zefan1404f062009-01-29 14:25:21 -08004292
Paul Menage697f4162007-10-18 23:39:34 -07004293 mutex_unlock(&cgroup_mutex);
4294
4295 /* Now do the VFS work to create a cgroup */
4296 inode = parent->dentry->d_inode;
4297
4298 /* Hold the parent directory mutex across this operation to
4299 * stop anyone else deleting the new cgroup */
4300 mutex_lock(&inode->i_mutex);
4301 dentry = lookup_one_len(nodename, parent->dentry, strlen(nodename));
4302 if (IS_ERR(dentry)) {
4303 printk(KERN_INFO
Diego Callejacfe36bd2007-11-14 16:58:54 -08004304 "cgroup: Couldn't allocate dentry for %s: %ld\n", nodename,
Paul Menage697f4162007-10-18 23:39:34 -07004305 PTR_ERR(dentry));
4306 ret = PTR_ERR(dentry);
4307 goto out_release;
4308 }
4309
4310 /* Create the cgroup directory, which also creates the cgroup */
Li Zefan75139b82009-01-07 18:07:33 -08004311 ret = vfs_mkdir(inode, dentry, 0755);
Paul Menagebd89aab2007-10-18 23:40:44 -07004312 child = __d_cgrp(dentry);
Paul Menage697f4162007-10-18 23:39:34 -07004313 dput(dentry);
4314 if (ret) {
4315 printk(KERN_INFO
4316 "Failed to create cgroup %s: %d\n", nodename,
4317 ret);
4318 goto out_release;
4319 }
4320
Paul Menage697f4162007-10-18 23:39:34 -07004321 /* The cgroup now exists. Retake cgroup_mutex and check
4322 * that we're still in the same state that we thought we
4323 * were. */
4324 mutex_lock(&cgroup_mutex);
4325 if ((root != subsys->root) ||
4326 (parent != task_cgroup(tsk, subsys->subsys_id))) {
4327 /* Aargh, we raced ... */
4328 mutex_unlock(&inode->i_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07004329 put_css_set(cg);
Paul Menage697f4162007-10-18 23:39:34 -07004330
Li Zefan1404f062009-01-29 14:25:21 -08004331 deactivate_super(root->sb);
Paul Menage697f4162007-10-18 23:39:34 -07004332 /* The cgroup is still accessible in the VFS, but
4333 * we're not going to try to rmdir() it at this
4334 * point. */
4335 printk(KERN_INFO
4336 "Race in cgroup_clone() - leaking cgroup %s\n",
4337 nodename);
4338 goto again;
4339 }
4340
4341 /* do any required auto-setup */
4342 for_each_subsys(root, ss) {
4343 if (ss->post_clone)
4344 ss->post_clone(ss, child);
4345 }
4346
4347 /* All seems fine. Finish by moving the task into the new cgroup */
Cliff Wickman956db3c2008-02-07 00:14:43 -08004348 ret = cgroup_attach_task(child, tsk);
Paul Menage697f4162007-10-18 23:39:34 -07004349 mutex_unlock(&cgroup_mutex);
4350
4351 out_release:
4352 mutex_unlock(&inode->i_mutex);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004353
4354 mutex_lock(&cgroup_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07004355 put_css_set(cg);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004356 mutex_unlock(&cgroup_mutex);
Li Zefan1404f062009-01-29 14:25:21 -08004357 deactivate_super(root->sb);
Paul Menage697f4162007-10-18 23:39:34 -07004358 return ret;
4359}
4360
Li Zefana043e3b2008-02-23 15:24:09 -08004361/**
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004362 * cgroup_is_descendant - see if @cgrp is a descendant of @task's cgrp
Li Zefana043e3b2008-02-23 15:24:09 -08004363 * @cgrp: the cgroup in question
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004364 * @task: the task in question
Li Zefana043e3b2008-02-23 15:24:09 -08004365 *
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004366 * See if @cgrp is a descendant of @task's cgroup in the appropriate
4367 * hierarchy.
Paul Menage697f4162007-10-18 23:39:34 -07004368 *
4369 * If we are sending in dummytop, then presumably we are creating
4370 * the top cgroup in the subsystem.
4371 *
4372 * Called only by the ns (nsproxy) cgroup.
4373 */
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004374int cgroup_is_descendant(const struct cgroup *cgrp, struct task_struct *task)
Paul Menage697f4162007-10-18 23:39:34 -07004375{
4376 int ret;
4377 struct cgroup *target;
Paul Menage697f4162007-10-18 23:39:34 -07004378
Paul Menagebd89aab2007-10-18 23:40:44 -07004379 if (cgrp == dummytop)
Paul Menage697f4162007-10-18 23:39:34 -07004380 return 1;
4381
Paul Menage7717f7b2009-09-23 15:56:22 -07004382 target = task_cgroup_from_root(task, cgrp->root);
Paul Menagebd89aab2007-10-18 23:40:44 -07004383 while (cgrp != target && cgrp!= cgrp->top_cgroup)
4384 cgrp = cgrp->parent;
4385 ret = (cgrp == target);
Paul Menage697f4162007-10-18 23:39:34 -07004386 return ret;
4387}
Paul Menage81a6a5c2007-10-18 23:39:38 -07004388
Paul Menagebd89aab2007-10-18 23:40:44 -07004389static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004390{
4391 /* All of these checks rely on RCU to keep the cgroup
4392 * structure alive */
Paul Menagebd89aab2007-10-18 23:40:44 -07004393 if (cgroup_is_releasable(cgrp) && !atomic_read(&cgrp->count)
4394 && list_empty(&cgrp->children) && !cgroup_has_css_refs(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004395 /* Control Group is currently removeable. If it's not
4396 * already queued for a userspace notification, queue
4397 * it now */
4398 int need_schedule_work = 0;
4399 spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07004400 if (!cgroup_is_removed(cgrp) &&
4401 list_empty(&cgrp->release_list)) {
4402 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004403 need_schedule_work = 1;
4404 }
4405 spin_unlock(&release_list_lock);
4406 if (need_schedule_work)
4407 schedule_work(&release_agent_work);
4408 }
4409}
4410
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -08004411/* Caller must verify that the css is not for root cgroup */
4412void __css_put(struct cgroup_subsys_state *css, int count)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004413{
Paul Menagebd89aab2007-10-18 23:40:44 -07004414 struct cgroup *cgrp = css->cgroup;
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004415 int val;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004416 rcu_read_lock();
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -08004417 val = atomic_sub_return(count, &css->refcnt);
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004418 if (val == 1) {
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004419 if (notify_on_release(cgrp)) {
4420 set_bit(CGRP_RELEASABLE, &cgrp->flags);
4421 check_for_release(cgrp);
4422 }
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004423 cgroup_wakeup_rmdir_waiter(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004424 }
4425 rcu_read_unlock();
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004426 WARN_ON_ONCE(val < 1);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004427}
Ben Blum67523c42010-03-10 15:22:11 -08004428EXPORT_SYMBOL_GPL(__css_put);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004429
4430/*
4431 * Notify userspace when a cgroup is released, by running the
4432 * configured release agent with the name of the cgroup (path
4433 * relative to the root of cgroup file system) as the argument.
4434 *
4435 * Most likely, this user command will try to rmdir this cgroup.
4436 *
4437 * This races with the possibility that some other task will be
4438 * attached to this cgroup before it is removed, or that some other
4439 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
4440 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
4441 * unused, and this cgroup will be reprieved from its death sentence,
4442 * to continue to serve a useful existence. Next time it's released,
4443 * we will get notified again, if it still has 'notify_on_release' set.
4444 *
4445 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
4446 * means only wait until the task is successfully execve()'d. The
4447 * separate release agent task is forked by call_usermodehelper(),
4448 * then control in this thread returns here, without waiting for the
4449 * release agent task. We don't bother to wait because the caller of
4450 * this routine has no use for the exit status of the release agent
4451 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07004452 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004453static void cgroup_release_agent(struct work_struct *work)
4454{
4455 BUG_ON(work != &release_agent_work);
4456 mutex_lock(&cgroup_mutex);
4457 spin_lock(&release_list_lock);
4458 while (!list_empty(&release_list)) {
4459 char *argv[3], *envp[3];
4460 int i;
Paul Menagee788e062008-07-25 01:46:59 -07004461 char *pathbuf = NULL, *agentbuf = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07004462 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07004463 struct cgroup,
4464 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07004465 list_del_init(&cgrp->release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004466 spin_unlock(&release_list_lock);
4467 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paul Menagee788e062008-07-25 01:46:59 -07004468 if (!pathbuf)
4469 goto continue_free;
4470 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0)
4471 goto continue_free;
4472 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
4473 if (!agentbuf)
4474 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004475
4476 i = 0;
Paul Menagee788e062008-07-25 01:46:59 -07004477 argv[i++] = agentbuf;
4478 argv[i++] = pathbuf;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004479 argv[i] = NULL;
4480
4481 i = 0;
4482 /* minimal command environment */
4483 envp[i++] = "HOME=/";
4484 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
4485 envp[i] = NULL;
4486
4487 /* Drop the lock while we invoke the usermode helper,
4488 * since the exec could involve hitting disk and hence
4489 * be a slow process */
4490 mutex_unlock(&cgroup_mutex);
4491 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004492 mutex_lock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07004493 continue_free:
4494 kfree(pathbuf);
4495 kfree(agentbuf);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004496 spin_lock(&release_list_lock);
4497 }
4498 spin_unlock(&release_list_lock);
4499 mutex_unlock(&cgroup_mutex);
4500}
Paul Menage8bab8dd2008-04-04 14:29:57 -07004501
4502static int __init cgroup_disable(char *str)
4503{
4504 int i;
4505 char *token;
4506
4507 while ((token = strsep(&str, ",")) != NULL) {
4508 if (!*token)
4509 continue;
Ben Blumaae8aab2010-03-10 15:22:07 -08004510 /*
4511 * cgroup_disable, being at boot time, can't know about module
4512 * subsystems, so we don't worry about them.
4513 */
4514 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07004515 struct cgroup_subsys *ss = subsys[i];
4516
4517 if (!strcmp(token, ss->name)) {
4518 ss->disabled = 1;
4519 printk(KERN_INFO "Disabling %s control group"
4520 " subsystem\n", ss->name);
4521 break;
4522 }
4523 }
4524 }
4525 return 1;
4526}
4527__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004528
4529/*
4530 * Functons for CSS ID.
4531 */
4532
4533/*
4534 *To get ID other than 0, this should be called when !cgroup_is_removed().
4535 */
4536unsigned short css_id(struct cgroup_subsys_state *css)
4537{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07004538 struct css_id *cssid;
4539
4540 /*
4541 * This css_id() can return correct value when somone has refcnt
4542 * on this or this is under rcu_read_lock(). Once css->id is allocated,
4543 * it's unchanged until freed.
4544 */
4545 cssid = rcu_dereference_check(css->id,
4546 rcu_read_lock_held() || atomic_read(&css->refcnt));
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004547
4548 if (cssid)
4549 return cssid->id;
4550 return 0;
4551}
Ben Blum67523c42010-03-10 15:22:11 -08004552EXPORT_SYMBOL_GPL(css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004553
4554unsigned short css_depth(struct cgroup_subsys_state *css)
4555{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07004556 struct css_id *cssid;
4557
4558 cssid = rcu_dereference_check(css->id,
4559 rcu_read_lock_held() || atomic_read(&css->refcnt));
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004560
4561 if (cssid)
4562 return cssid->depth;
4563 return 0;
4564}
Ben Blum67523c42010-03-10 15:22:11 -08004565EXPORT_SYMBOL_GPL(css_depth);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004566
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004567/**
4568 * css_is_ancestor - test "root" css is an ancestor of "child"
4569 * @child: the css to be tested.
4570 * @root: the css supporsed to be an ancestor of the child.
4571 *
4572 * Returns true if "root" is an ancestor of "child" in its hierarchy. Because
4573 * this function reads css->id, this use rcu_dereference() and rcu_read_lock().
4574 * But, considering usual usage, the csses should be valid objects after test.
4575 * Assuming that the caller will do some action to the child if this returns
4576 * returns true, the caller must take "child";s reference count.
4577 * If "child" is valid object and this returns true, "root" is valid, too.
4578 */
4579
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004580bool css_is_ancestor(struct cgroup_subsys_state *child,
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07004581 const struct cgroup_subsys_state *root)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004582{
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004583 struct css_id *child_id;
4584 struct css_id *root_id;
4585 bool ret = true;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004586
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004587 rcu_read_lock();
4588 child_id = rcu_dereference(child->id);
4589 root_id = rcu_dereference(root->id);
4590 if (!child_id
4591 || !root_id
4592 || (child_id->depth < root_id->depth)
4593 || (child_id->stack[root_id->depth] != root_id->id))
4594 ret = false;
4595 rcu_read_unlock();
4596 return ret;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004597}
4598
4599static void __free_css_id_cb(struct rcu_head *head)
4600{
4601 struct css_id *id;
4602
4603 id = container_of(head, struct css_id, rcu_head);
4604 kfree(id);
4605}
4606
4607void free_css_id(struct cgroup_subsys *ss, struct cgroup_subsys_state *css)
4608{
4609 struct css_id *id = css->id;
4610 /* When this is called before css_id initialization, id can be NULL */
4611 if (!id)
4612 return;
4613
4614 BUG_ON(!ss->use_id);
4615
4616 rcu_assign_pointer(id->css, NULL);
4617 rcu_assign_pointer(css->id, NULL);
4618 spin_lock(&ss->id_lock);
4619 idr_remove(&ss->idr, id->id);
4620 spin_unlock(&ss->id_lock);
4621 call_rcu(&id->rcu_head, __free_css_id_cb);
4622}
Ben Blum67523c42010-03-10 15:22:11 -08004623EXPORT_SYMBOL_GPL(free_css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004624
4625/*
4626 * This is called by init or create(). Then, calls to this function are
4627 * always serialized (By cgroup_mutex() at create()).
4628 */
4629
4630static struct css_id *get_new_cssid(struct cgroup_subsys *ss, int depth)
4631{
4632 struct css_id *newid;
4633 int myid, error, size;
4634
4635 BUG_ON(!ss->use_id);
4636
4637 size = sizeof(*newid) + sizeof(unsigned short) * (depth + 1);
4638 newid = kzalloc(size, GFP_KERNEL);
4639 if (!newid)
4640 return ERR_PTR(-ENOMEM);
4641 /* get id */
4642 if (unlikely(!idr_pre_get(&ss->idr, GFP_KERNEL))) {
4643 error = -ENOMEM;
4644 goto err_out;
4645 }
4646 spin_lock(&ss->id_lock);
4647 /* Don't use 0. allocates an ID of 1-65535 */
4648 error = idr_get_new_above(&ss->idr, newid, 1, &myid);
4649 spin_unlock(&ss->id_lock);
4650
4651 /* Returns error when there are no free spaces for new ID.*/
4652 if (error) {
4653 error = -ENOSPC;
4654 goto err_out;
4655 }
4656 if (myid > CSS_ID_MAX)
4657 goto remove_idr;
4658
4659 newid->id = myid;
4660 newid->depth = depth;
4661 return newid;
4662remove_idr:
4663 error = -ENOSPC;
4664 spin_lock(&ss->id_lock);
4665 idr_remove(&ss->idr, myid);
4666 spin_unlock(&ss->id_lock);
4667err_out:
4668 kfree(newid);
4669 return ERR_PTR(error);
4670
4671}
4672
Ben Blume6a11052010-03-10 15:22:09 -08004673static int __init_or_module cgroup_init_idr(struct cgroup_subsys *ss,
4674 struct cgroup_subsys_state *rootcss)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004675{
4676 struct css_id *newid;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004677
4678 spin_lock_init(&ss->id_lock);
4679 idr_init(&ss->idr);
4680
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004681 newid = get_new_cssid(ss, 0);
4682 if (IS_ERR(newid))
4683 return PTR_ERR(newid);
4684
4685 newid->stack[0] = newid->id;
4686 newid->css = rootcss;
4687 rootcss->id = newid;
4688 return 0;
4689}
4690
4691static int alloc_css_id(struct cgroup_subsys *ss, struct cgroup *parent,
4692 struct cgroup *child)
4693{
4694 int subsys_id, i, depth = 0;
4695 struct cgroup_subsys_state *parent_css, *child_css;
Li Zefanfae9c792010-04-22 17:30:00 +08004696 struct css_id *child_id, *parent_id;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004697
4698 subsys_id = ss->subsys_id;
4699 parent_css = parent->subsys[subsys_id];
4700 child_css = child->subsys[subsys_id];
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004701 parent_id = parent_css->id;
Greg Thelen94b3dd02010-06-04 14:15:03 -07004702 depth = parent_id->depth + 1;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004703
4704 child_id = get_new_cssid(ss, depth);
4705 if (IS_ERR(child_id))
4706 return PTR_ERR(child_id);
4707
4708 for (i = 0; i < depth; i++)
4709 child_id->stack[i] = parent_id->stack[i];
4710 child_id->stack[depth] = child_id->id;
4711 /*
4712 * child_id->css pointer will be set after this cgroup is available
4713 * see cgroup_populate_dir()
4714 */
4715 rcu_assign_pointer(child_css->id, child_id);
4716
4717 return 0;
4718}
4719
4720/**
4721 * css_lookup - lookup css by id
4722 * @ss: cgroup subsys to be looked into.
4723 * @id: the id
4724 *
4725 * Returns pointer to cgroup_subsys_state if there is valid one with id.
4726 * NULL if not. Should be called under rcu_read_lock()
4727 */
4728struct cgroup_subsys_state *css_lookup(struct cgroup_subsys *ss, int id)
4729{
4730 struct css_id *cssid = NULL;
4731
4732 BUG_ON(!ss->use_id);
4733 cssid = idr_find(&ss->idr, id);
4734
4735 if (unlikely(!cssid))
4736 return NULL;
4737
4738 return rcu_dereference(cssid->css);
4739}
Ben Blum67523c42010-03-10 15:22:11 -08004740EXPORT_SYMBOL_GPL(css_lookup);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004741
4742/**
4743 * css_get_next - lookup next cgroup under specified hierarchy.
4744 * @ss: pointer to subsystem
4745 * @id: current position of iteration.
4746 * @root: pointer to css. search tree under this.
4747 * @foundid: position of found object.
4748 *
4749 * Search next css under the specified hierarchy of rootid. Calling under
4750 * rcu_read_lock() is necessary. Returns NULL if it reaches the end.
4751 */
4752struct cgroup_subsys_state *
4753css_get_next(struct cgroup_subsys *ss, int id,
4754 struct cgroup_subsys_state *root, int *foundid)
4755{
4756 struct cgroup_subsys_state *ret = NULL;
4757 struct css_id *tmp;
4758 int tmpid;
4759 int rootid = css_id(root);
4760 int depth = css_depth(root);
4761
4762 if (!rootid)
4763 return NULL;
4764
4765 BUG_ON(!ss->use_id);
4766 /* fill start point for scan */
4767 tmpid = id;
4768 while (1) {
4769 /*
4770 * scan next entry from bitmap(tree), tmpid is updated after
4771 * idr_get_next().
4772 */
4773 spin_lock(&ss->id_lock);
4774 tmp = idr_get_next(&ss->idr, &tmpid);
4775 spin_unlock(&ss->id_lock);
4776
4777 if (!tmp)
4778 break;
4779 if (tmp->depth >= depth && tmp->stack[depth] == rootid) {
4780 ret = rcu_dereference(tmp->css);
4781 if (ret) {
4782 *foundid = tmpid;
4783 break;
4784 }
4785 }
4786 /* continue to scan from next id */
4787 tmpid = tmpid + 1;
4788 }
4789 return ret;
4790}
4791
Paul Menagefe693432009-09-23 15:56:20 -07004792#ifdef CONFIG_CGROUP_DEBUG
4793static struct cgroup_subsys_state *debug_create(struct cgroup_subsys *ss,
4794 struct cgroup *cont)
4795{
4796 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
4797
4798 if (!css)
4799 return ERR_PTR(-ENOMEM);
4800
4801 return css;
4802}
4803
4804static void debug_destroy(struct cgroup_subsys *ss, struct cgroup *cont)
4805{
4806 kfree(cont->subsys[debug_subsys_id]);
4807}
4808
4809static u64 cgroup_refcount_read(struct cgroup *cont, struct cftype *cft)
4810{
4811 return atomic_read(&cont->count);
4812}
4813
4814static u64 debug_taskcount_read(struct cgroup *cont, struct cftype *cft)
4815{
4816 return cgroup_task_count(cont);
4817}
4818
4819static u64 current_css_set_read(struct cgroup *cont, struct cftype *cft)
4820{
4821 return (u64)(unsigned long)current->cgroups;
4822}
4823
4824static u64 current_css_set_refcount_read(struct cgroup *cont,
4825 struct cftype *cft)
4826{
4827 u64 count;
4828
4829 rcu_read_lock();
4830 count = atomic_read(&current->cgroups->refcount);
4831 rcu_read_unlock();
4832 return count;
4833}
4834
Paul Menage7717f7b2009-09-23 15:56:22 -07004835static int current_css_set_cg_links_read(struct cgroup *cont,
4836 struct cftype *cft,
4837 struct seq_file *seq)
4838{
4839 struct cg_cgroup_link *link;
4840 struct css_set *cg;
4841
4842 read_lock(&css_set_lock);
4843 rcu_read_lock();
4844 cg = rcu_dereference(current->cgroups);
4845 list_for_each_entry(link, &cg->cg_links, cg_link_list) {
4846 struct cgroup *c = link->cgrp;
4847 const char *name;
4848
4849 if (c->dentry)
4850 name = c->dentry->d_name.name;
4851 else
4852 name = "?";
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004853 seq_printf(seq, "Root %d group %s\n",
4854 c->root->hierarchy_id, name);
Paul Menage7717f7b2009-09-23 15:56:22 -07004855 }
4856 rcu_read_unlock();
4857 read_unlock(&css_set_lock);
4858 return 0;
4859}
4860
4861#define MAX_TASKS_SHOWN_PER_CSS 25
4862static int cgroup_css_links_read(struct cgroup *cont,
4863 struct cftype *cft,
4864 struct seq_file *seq)
4865{
4866 struct cg_cgroup_link *link;
4867
4868 read_lock(&css_set_lock);
4869 list_for_each_entry(link, &cont->css_sets, cgrp_link_list) {
4870 struct css_set *cg = link->cg;
4871 struct task_struct *task;
4872 int count = 0;
4873 seq_printf(seq, "css_set %p\n", cg);
4874 list_for_each_entry(task, &cg->tasks, cg_list) {
4875 if (count++ > MAX_TASKS_SHOWN_PER_CSS) {
4876 seq_puts(seq, " ...\n");
4877 break;
4878 } else {
4879 seq_printf(seq, " task %d\n",
4880 task_pid_vnr(task));
4881 }
4882 }
4883 }
4884 read_unlock(&css_set_lock);
4885 return 0;
4886}
4887
Paul Menagefe693432009-09-23 15:56:20 -07004888static u64 releasable_read(struct cgroup *cgrp, struct cftype *cft)
4889{
4890 return test_bit(CGRP_RELEASABLE, &cgrp->flags);
4891}
4892
4893static struct cftype debug_files[] = {
4894 {
4895 .name = "cgroup_refcount",
4896 .read_u64 = cgroup_refcount_read,
4897 },
4898 {
4899 .name = "taskcount",
4900 .read_u64 = debug_taskcount_read,
4901 },
4902
4903 {
4904 .name = "current_css_set",
4905 .read_u64 = current_css_set_read,
4906 },
4907
4908 {
4909 .name = "current_css_set_refcount",
4910 .read_u64 = current_css_set_refcount_read,
4911 },
4912
4913 {
Paul Menage7717f7b2009-09-23 15:56:22 -07004914 .name = "current_css_set_cg_links",
4915 .read_seq_string = current_css_set_cg_links_read,
4916 },
4917
4918 {
4919 .name = "cgroup_css_links",
4920 .read_seq_string = cgroup_css_links_read,
4921 },
4922
4923 {
Paul Menagefe693432009-09-23 15:56:20 -07004924 .name = "releasable",
4925 .read_u64 = releasable_read,
4926 },
4927};
4928
4929static int debug_populate(struct cgroup_subsys *ss, struct cgroup *cont)
4930{
4931 return cgroup_add_files(cont, ss, debug_files,
4932 ARRAY_SIZE(debug_files));
4933}
4934
4935struct cgroup_subsys debug_subsys = {
4936 .name = "debug",
4937 .create = debug_create,
4938 .destroy = debug_destroy,
4939 .populate = debug_populate,
4940 .subsys_id = debug_subsys_id,
4941};
4942#endif /* CONFIG_CGROUP_DEBUG */