blob: 5c5f4cc2e99a8b36ea19f0841e10d80937e58b38 [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 Menagee788e0662008-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));
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100877 spin_lock(&dentry->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700878 node = dentry->d_subdirs.next;
879 while (node != &dentry->d_subdirs) {
880 struct dentry *d = list_entry(node, struct dentry, d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100881
882 spin_lock_nested(&d->d_lock, DENTRY_D_LOCK_NESTED);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700883 list_del_init(node);
884 if (d->d_inode) {
885 /* This should never be called on a cgroup
886 * directory with child cgroups */
887 BUG_ON(d->d_inode->i_mode & S_IFDIR);
Nick Piggindc0474b2011-01-07 17:49:43 +1100888 dget_dlock(d);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100889 spin_unlock(&d->d_lock);
890 spin_unlock(&dentry->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700891 d_delete(d);
892 simple_unlink(dentry->d_inode, d);
893 dput(d);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100894 spin_lock(&dentry->d_lock);
895 } else
896 spin_unlock(&d->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700897 node = dentry->d_subdirs.next;
898 }
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100899 spin_unlock(&dentry->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700900}
901
902/*
903 * NOTE : the dentry must have been dget()'ed
904 */
905static void cgroup_d_remove_dir(struct dentry *dentry)
906{
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100907 struct dentry *parent;
908
Paul Menageddbcc7e2007-10-18 23:39:30 -0700909 cgroup_clear_directory(dentry);
910
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100911 parent = dentry->d_parent;
912 spin_lock(&parent->d_lock);
913 spin_lock(&dentry->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700914 list_del_init(&dentry->d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100915 spin_unlock(&dentry->d_lock);
916 spin_unlock(&parent->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700917 remove_dir(dentry);
918}
919
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700920/*
921 * A queue for waiters to do rmdir() cgroup. A tasks will sleep when
922 * cgroup->count == 0 && list_empty(&cgroup->children) && subsys has some
923 * reference to css->refcnt. In general, this refcnt is expected to goes down
924 * to zero, soon.
925 *
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700926 * CGRP_WAIT_ON_RMDIR flag is set under cgroup's inode->i_mutex;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700927 */
928DECLARE_WAIT_QUEUE_HEAD(cgroup_rmdir_waitq);
929
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700930static void cgroup_wakeup_rmdir_waiter(struct cgroup *cgrp)
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700931{
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700932 if (unlikely(test_and_clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags)))
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700933 wake_up_all(&cgroup_rmdir_waitq);
934}
935
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700936void cgroup_exclude_rmdir(struct cgroup_subsys_state *css)
937{
938 css_get(css);
939}
940
941void cgroup_release_and_wakeup_rmdir(struct cgroup_subsys_state *css)
942{
943 cgroup_wakeup_rmdir_waiter(css->cgroup);
944 css_put(css);
945}
946
Ben Blumaae8aab2010-03-10 15:22:07 -0800947/*
Ben Blumcf5d5942010-03-10 15:22:09 -0800948 * Call with cgroup_mutex held. Drops reference counts on modules, including
949 * any duplicate ones that parse_cgroupfs_options took. If this function
950 * returns an error, no reference counts are touched.
Ben Blumaae8aab2010-03-10 15:22:07 -0800951 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700952static int rebind_subsystems(struct cgroupfs_root *root,
953 unsigned long final_bits)
954{
955 unsigned long added_bits, removed_bits;
Paul Menagebd89aab2007-10-18 23:40:44 -0700956 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700957 int i;
958
Ben Blumaae8aab2010-03-10 15:22:07 -0800959 BUG_ON(!mutex_is_locked(&cgroup_mutex));
960
Paul Menageddbcc7e2007-10-18 23:39:30 -0700961 removed_bits = root->actual_subsys_bits & ~final_bits;
962 added_bits = final_bits & ~root->actual_subsys_bits;
963 /* Check that any added subsystems are currently free */
964 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Li Zefan8d53d552008-02-23 15:24:11 -0800965 unsigned long bit = 1UL << i;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700966 struct cgroup_subsys *ss = subsys[i];
967 if (!(bit & added_bits))
968 continue;
Ben Blumaae8aab2010-03-10 15:22:07 -0800969 /*
970 * Nobody should tell us to do a subsys that doesn't exist:
971 * parse_cgroupfs_options should catch that case and refcounts
972 * ensure that subsystems won't disappear once selected.
973 */
974 BUG_ON(ss == NULL);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700975 if (ss->root != &rootnode) {
976 /* Subsystem isn't free */
977 return -EBUSY;
978 }
979 }
980
981 /* Currently we don't handle adding/removing subsystems when
982 * any child cgroups exist. This is theoretically supportable
983 * but involves complex error handling, so it's being left until
984 * later */
Paul Menage307257c2008-12-15 13:54:22 -0800985 if (root->number_of_cgroups > 1)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700986 return -EBUSY;
987
988 /* Process each subsystem */
989 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
990 struct cgroup_subsys *ss = subsys[i];
991 unsigned long bit = 1UL << i;
992 if (bit & added_bits) {
993 /* We're binding this subsystem to this hierarchy */
Ben Blumaae8aab2010-03-10 15:22:07 -0800994 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -0700995 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700996 BUG_ON(!dummytop->subsys[i]);
997 BUG_ON(dummytop->subsys[i]->cgroup != dummytop);
Paul Menage999cd8a2009-01-07 18:08:36 -0800998 mutex_lock(&ss->hierarchy_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -0700999 cgrp->subsys[i] = dummytop->subsys[i];
1000 cgrp->subsys[i]->cgroup = cgrp;
Li Zefan33a68ac2009-01-07 18:07:42 -08001001 list_move(&ss->sibling, &root->subsys_list);
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001002 ss->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001003 if (ss->bind)
Paul Menagebd89aab2007-10-18 23:40:44 -07001004 ss->bind(ss, cgrp);
Paul Menage999cd8a2009-01-07 18:08:36 -08001005 mutex_unlock(&ss->hierarchy_mutex);
Ben Blumcf5d5942010-03-10 15:22:09 -08001006 /* refcount was already taken, and we're keeping it */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001007 } else if (bit & removed_bits) {
1008 /* We're removing this subsystem */
Ben Blumaae8aab2010-03-10 15:22:07 -08001009 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001010 BUG_ON(cgrp->subsys[i] != dummytop->subsys[i]);
1011 BUG_ON(cgrp->subsys[i]->cgroup != cgrp);
Paul Menage999cd8a2009-01-07 18:08:36 -08001012 mutex_lock(&ss->hierarchy_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001013 if (ss->bind)
1014 ss->bind(ss, dummytop);
1015 dummytop->subsys[i]->cgroup = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -07001016 cgrp->subsys[i] = NULL;
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001017 subsys[i]->root = &rootnode;
Li Zefan33a68ac2009-01-07 18:07:42 -08001018 list_move(&ss->sibling, &rootnode.subsys_list);
Paul Menage999cd8a2009-01-07 18:08:36 -08001019 mutex_unlock(&ss->hierarchy_mutex);
Ben Blumcf5d5942010-03-10 15:22:09 -08001020 /* subsystem is now free - drop reference on module */
1021 module_put(ss->module);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001022 } else if (bit & final_bits) {
1023 /* Subsystem state should already exist */
Ben Blumaae8aab2010-03-10 15:22:07 -08001024 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001025 BUG_ON(!cgrp->subsys[i]);
Ben Blumcf5d5942010-03-10 15:22:09 -08001026 /*
1027 * a refcount was taken, but we already had one, so
1028 * drop the extra reference.
1029 */
1030 module_put(ss->module);
1031#ifdef CONFIG_MODULE_UNLOAD
1032 BUG_ON(ss->module && !module_refcount(ss->module));
1033#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001034 } else {
1035 /* Subsystem state shouldn't exist */
Paul Menagebd89aab2007-10-18 23:40:44 -07001036 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001037 }
1038 }
1039 root->subsys_bits = root->actual_subsys_bits = final_bits;
1040 synchronize_rcu();
1041
1042 return 0;
1043}
1044
1045static int cgroup_show_options(struct seq_file *seq, struct vfsmount *vfs)
1046{
1047 struct cgroupfs_root *root = vfs->mnt_sb->s_fs_info;
1048 struct cgroup_subsys *ss;
1049
1050 mutex_lock(&cgroup_mutex);
1051 for_each_subsys(root, ss)
1052 seq_printf(seq, ",%s", ss->name);
1053 if (test_bit(ROOT_NOPREFIX, &root->flags))
1054 seq_puts(seq, ",noprefix");
Paul Menage81a6a5c2007-10-18 23:39:38 -07001055 if (strlen(root->release_agent_path))
1056 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Daniel Lezcano97978e62010-10-27 15:33:35 -07001057 if (clone_children(&root->top_cgroup))
1058 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001059 if (strlen(root->name))
1060 seq_printf(seq, ",name=%s", root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001061 mutex_unlock(&cgroup_mutex);
1062 return 0;
1063}
1064
1065struct cgroup_sb_opts {
1066 unsigned long subsys_bits;
1067 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001068 char *release_agent;
Daniel Lezcano97978e62010-10-27 15:33:35 -07001069 bool clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001070 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001071 /* User explicitly requested empty subsystem */
1072 bool none;
Paul Menagec6d57f32009-09-23 15:56:19 -07001073
1074 struct cgroupfs_root *new_root;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001075
Paul Menageddbcc7e2007-10-18 23:39:30 -07001076};
1077
Ben Blumaae8aab2010-03-10 15:22:07 -08001078/*
1079 * Convert a hierarchy specifier into a bitmask of subsystems and flags. Call
Ben Blumcf5d5942010-03-10 15:22:09 -08001080 * with cgroup_mutex held to protect the subsys[] array. This function takes
1081 * refcounts on subsystems to be used, unless it returns error, in which case
1082 * no refcounts are taken.
Ben Blumaae8aab2010-03-10 15:22:07 -08001083 */
Ben Blumcf5d5942010-03-10 15:22:09 -08001084static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001085{
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001086 char *token, *o = data;
1087 bool all_ss = false, one_ss = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001088 unsigned long mask = (unsigned long)-1;
Ben Blumcf5d5942010-03-10 15:22:09 -08001089 int i;
1090 bool module_pin_failed = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001091
Ben Blumaae8aab2010-03-10 15:22:07 -08001092 BUG_ON(!mutex_is_locked(&cgroup_mutex));
1093
Li Zefanf9ab5b52009-06-17 16:26:33 -07001094#ifdef CONFIG_CPUSETS
1095 mask = ~(1UL << cpuset_subsys_id);
1096#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001097
Paul Menagec6d57f32009-09-23 15:56:19 -07001098 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001099
1100 while ((token = strsep(&o, ",")) != NULL) {
1101 if (!*token)
1102 return -EINVAL;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001103 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001104 /* Explicitly have no subsystems */
1105 opts->none = true;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001106 continue;
1107 }
1108 if (!strcmp(token, "all")) {
1109 /* Mutually exclusive option 'all' + subsystem name */
1110 if (one_ss)
1111 return -EINVAL;
1112 all_ss = true;
1113 continue;
1114 }
1115 if (!strcmp(token, "noprefix")) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001116 set_bit(ROOT_NOPREFIX, &opts->flags);
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001117 continue;
1118 }
1119 if (!strcmp(token, "clone_children")) {
Daniel Lezcano97978e62010-10-27 15:33:35 -07001120 opts->clone_children = true;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001121 continue;
1122 }
1123 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001124 /* Specifying two release agents is forbidden */
1125 if (opts->release_agent)
1126 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001127 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001128 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001129 if (!opts->release_agent)
1130 return -ENOMEM;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001131 continue;
1132 }
1133 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001134 const char *name = token + 5;
1135 /* Can't specify an empty name */
1136 if (!strlen(name))
1137 return -EINVAL;
1138 /* Must match [\w.-]+ */
1139 for (i = 0; i < strlen(name); i++) {
1140 char c = name[i];
1141 if (isalnum(c))
1142 continue;
1143 if ((c == '.') || (c == '-') || (c == '_'))
1144 continue;
1145 return -EINVAL;
1146 }
1147 /* Specifying two names is forbidden */
1148 if (opts->name)
1149 return -EINVAL;
1150 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001151 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001152 GFP_KERNEL);
1153 if (!opts->name)
1154 return -ENOMEM;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001155
1156 continue;
1157 }
1158
1159 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1160 struct cgroup_subsys *ss = subsys[i];
1161 if (ss == NULL)
1162 continue;
1163 if (strcmp(token, ss->name))
1164 continue;
1165 if (ss->disabled)
1166 continue;
1167
1168 /* Mutually exclusive option 'all' + subsystem name */
1169 if (all_ss)
1170 return -EINVAL;
1171 set_bit(i, &opts->subsys_bits);
1172 one_ss = true;
1173
1174 break;
1175 }
1176 if (i == CGROUP_SUBSYS_COUNT)
1177 return -ENOENT;
1178 }
1179
1180 /*
1181 * If the 'all' option was specified select all the subsystems,
1182 * otherwise 'all, 'none' and a subsystem name options were not
1183 * specified, let's default to 'all'
1184 */
1185 if (all_ss || (!all_ss && !one_ss && !opts->none)) {
1186 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1187 struct cgroup_subsys *ss = subsys[i];
1188 if (ss == NULL)
1189 continue;
1190 if (ss->disabled)
1191 continue;
1192 set_bit(i, &opts->subsys_bits);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001193 }
1194 }
1195
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001196 /* Consistency checks */
1197
Li Zefanf9ab5b52009-06-17 16:26:33 -07001198 /*
1199 * Option noprefix was introduced just for backward compatibility
1200 * with the old cpuset, so we allow noprefix only if mounting just
1201 * the cpuset subsystem.
1202 */
1203 if (test_bit(ROOT_NOPREFIX, &opts->flags) &&
1204 (opts->subsys_bits & mask))
1205 return -EINVAL;
1206
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001207
1208 /* Can't specify "none" and some subsystems */
1209 if (opts->subsys_bits && opts->none)
1210 return -EINVAL;
1211
1212 /*
1213 * We either have to specify by name or by subsystems. (So all
1214 * empty hierarchies must have a name).
1215 */
Paul Menagec6d57f32009-09-23 15:56:19 -07001216 if (!opts->subsys_bits && !opts->name)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001217 return -EINVAL;
1218
Ben Blumcf5d5942010-03-10 15:22:09 -08001219 /*
1220 * Grab references on all the modules we'll need, so the subsystems
1221 * don't dance around before rebind_subsystems attaches them. This may
1222 * take duplicate reference counts on a subsystem that's already used,
1223 * but rebind_subsystems handles this case.
1224 */
1225 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
1226 unsigned long bit = 1UL << i;
1227
1228 if (!(bit & opts->subsys_bits))
1229 continue;
1230 if (!try_module_get(subsys[i]->module)) {
1231 module_pin_failed = true;
1232 break;
1233 }
1234 }
1235 if (module_pin_failed) {
1236 /*
1237 * oops, one of the modules was going away. this means that we
1238 * raced with a module_delete call, and to the user this is
1239 * essentially a "subsystem doesn't exist" case.
1240 */
1241 for (i--; i >= CGROUP_BUILTIN_SUBSYS_COUNT; i--) {
1242 /* drop refcounts only on the ones we took */
1243 unsigned long bit = 1UL << i;
1244
1245 if (!(bit & opts->subsys_bits))
1246 continue;
1247 module_put(subsys[i]->module);
1248 }
1249 return -ENOENT;
1250 }
1251
Paul Menageddbcc7e2007-10-18 23:39:30 -07001252 return 0;
1253}
1254
Ben Blumcf5d5942010-03-10 15:22:09 -08001255static void drop_parsed_module_refcounts(unsigned long subsys_bits)
1256{
1257 int i;
1258 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
1259 unsigned long bit = 1UL << i;
1260
1261 if (!(bit & subsys_bits))
1262 continue;
1263 module_put(subsys[i]->module);
1264 }
1265}
1266
Paul Menageddbcc7e2007-10-18 23:39:30 -07001267static int cgroup_remount(struct super_block *sb, int *flags, char *data)
1268{
1269 int ret = 0;
1270 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001271 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001272 struct cgroup_sb_opts opts;
1273
Paul Menagebd89aab2007-10-18 23:40:44 -07001274 mutex_lock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001275 mutex_lock(&cgroup_mutex);
1276
1277 /* See what subsystems are wanted */
1278 ret = parse_cgroupfs_options(data, &opts);
1279 if (ret)
1280 goto out_unlock;
1281
Ben Blumcf5d5942010-03-10 15:22:09 -08001282 /* Don't allow flags or name to change at remount */
1283 if (opts.flags != root->flags ||
1284 (opts.name && strcmp(opts.name, root->name))) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001285 ret = -EINVAL;
Ben Blumcf5d5942010-03-10 15:22:09 -08001286 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menagec6d57f32009-09-23 15:56:19 -07001287 goto out_unlock;
1288 }
1289
Paul Menageddbcc7e2007-10-18 23:39:30 -07001290 ret = rebind_subsystems(root, opts.subsys_bits);
Ben Blumcf5d5942010-03-10 15:22:09 -08001291 if (ret) {
1292 drop_parsed_module_refcounts(opts.subsys_bits);
Li Zefan0670e082009-04-02 16:57:30 -07001293 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001294 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001295
1296 /* (re)populate subsystem files */
Li Zefan0670e082009-04-02 16:57:30 -07001297 cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001298
Paul Menage81a6a5c2007-10-18 23:39:38 -07001299 if (opts.release_agent)
1300 strcpy(root->release_agent_path, opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001301 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001302 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001303 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001304 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07001305 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001306 return ret;
1307}
1308
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001309static const struct super_operations cgroup_ops = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001310 .statfs = simple_statfs,
1311 .drop_inode = generic_delete_inode,
1312 .show_options = cgroup_show_options,
1313 .remount_fs = cgroup_remount,
1314};
1315
Paul Menagecc31edc2008-10-18 20:28:04 -07001316static void init_cgroup_housekeeping(struct cgroup *cgrp)
1317{
1318 INIT_LIST_HEAD(&cgrp->sibling);
1319 INIT_LIST_HEAD(&cgrp->children);
1320 INIT_LIST_HEAD(&cgrp->css_sets);
1321 INIT_LIST_HEAD(&cgrp->release_list);
Ben Blum72a8cb32009-09-23 15:56:27 -07001322 INIT_LIST_HEAD(&cgrp->pidlists);
1323 mutex_init(&cgrp->pidlist_mutex);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08001324 INIT_LIST_HEAD(&cgrp->event_list);
1325 spin_lock_init(&cgrp->event_list_lock);
Paul Menagecc31edc2008-10-18 20:28:04 -07001326}
Paul Menagec6d57f32009-09-23 15:56:19 -07001327
Paul Menageddbcc7e2007-10-18 23:39:30 -07001328static void init_cgroup_root(struct cgroupfs_root *root)
1329{
Paul Menagebd89aab2007-10-18 23:40:44 -07001330 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001331 INIT_LIST_HEAD(&root->subsys_list);
1332 INIT_LIST_HEAD(&root->root_list);
1333 root->number_of_cgroups = 1;
Paul Menagebd89aab2007-10-18 23:40:44 -07001334 cgrp->root = root;
1335 cgrp->top_cgroup = cgrp;
Paul Menagecc31edc2008-10-18 20:28:04 -07001336 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001337}
1338
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001339static bool init_root_id(struct cgroupfs_root *root)
1340{
1341 int ret = 0;
1342
1343 do {
1344 if (!ida_pre_get(&hierarchy_ida, GFP_KERNEL))
1345 return false;
1346 spin_lock(&hierarchy_id_lock);
1347 /* Try to allocate the next unused ID */
1348 ret = ida_get_new_above(&hierarchy_ida, next_hierarchy_id,
1349 &root->hierarchy_id);
1350 if (ret == -ENOSPC)
1351 /* Try again starting from 0 */
1352 ret = ida_get_new(&hierarchy_ida, &root->hierarchy_id);
1353 if (!ret) {
1354 next_hierarchy_id = root->hierarchy_id + 1;
1355 } else if (ret != -EAGAIN) {
1356 /* Can only get here if the 31-bit IDR is full ... */
1357 BUG_ON(ret);
1358 }
1359 spin_unlock(&hierarchy_id_lock);
1360 } while (ret);
1361 return true;
1362}
1363
Paul Menageddbcc7e2007-10-18 23:39:30 -07001364static int cgroup_test_super(struct super_block *sb, void *data)
1365{
Paul Menagec6d57f32009-09-23 15:56:19 -07001366 struct cgroup_sb_opts *opts = data;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001367 struct cgroupfs_root *root = sb->s_fs_info;
1368
Paul Menagec6d57f32009-09-23 15:56:19 -07001369 /* If we asked for a name then it must match */
1370 if (opts->name && strcmp(opts->name, root->name))
1371 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001372
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001373 /*
1374 * If we asked for subsystems (or explicitly for no
1375 * subsystems) then they must match
1376 */
1377 if ((opts->subsys_bits || opts->none)
1378 && (opts->subsys_bits != root->subsys_bits))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001379 return 0;
1380
1381 return 1;
1382}
1383
Paul Menagec6d57f32009-09-23 15:56:19 -07001384static struct cgroupfs_root *cgroup_root_from_opts(struct cgroup_sb_opts *opts)
1385{
1386 struct cgroupfs_root *root;
1387
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001388 if (!opts->subsys_bits && !opts->none)
Paul Menagec6d57f32009-09-23 15:56:19 -07001389 return NULL;
1390
1391 root = kzalloc(sizeof(*root), GFP_KERNEL);
1392 if (!root)
1393 return ERR_PTR(-ENOMEM);
1394
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001395 if (!init_root_id(root)) {
1396 kfree(root);
1397 return ERR_PTR(-ENOMEM);
1398 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001399 init_cgroup_root(root);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001400
Paul Menagec6d57f32009-09-23 15:56:19 -07001401 root->subsys_bits = opts->subsys_bits;
1402 root->flags = opts->flags;
1403 if (opts->release_agent)
1404 strcpy(root->release_agent_path, opts->release_agent);
1405 if (opts->name)
1406 strcpy(root->name, opts->name);
Daniel Lezcano97978e62010-10-27 15:33:35 -07001407 if (opts->clone_children)
1408 set_bit(CGRP_CLONE_CHILDREN, &root->top_cgroup.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001409 return root;
1410}
1411
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001412static void cgroup_drop_root(struct cgroupfs_root *root)
1413{
1414 if (!root)
1415 return;
1416
1417 BUG_ON(!root->hierarchy_id);
1418 spin_lock(&hierarchy_id_lock);
1419 ida_remove(&hierarchy_ida, root->hierarchy_id);
1420 spin_unlock(&hierarchy_id_lock);
1421 kfree(root);
1422}
1423
Paul Menageddbcc7e2007-10-18 23:39:30 -07001424static int cgroup_set_super(struct super_block *sb, void *data)
1425{
1426 int ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001427 struct cgroup_sb_opts *opts = data;
1428
1429 /* If we don't have a new root, we can't set up a new sb */
1430 if (!opts->new_root)
1431 return -EINVAL;
1432
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001433 BUG_ON(!opts->subsys_bits && !opts->none);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001434
1435 ret = set_anon_super(sb, NULL);
1436 if (ret)
1437 return ret;
1438
Paul Menagec6d57f32009-09-23 15:56:19 -07001439 sb->s_fs_info = opts->new_root;
1440 opts->new_root->sb = sb;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001441
1442 sb->s_blocksize = PAGE_CACHE_SIZE;
1443 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
1444 sb->s_magic = CGROUP_SUPER_MAGIC;
1445 sb->s_op = &cgroup_ops;
1446
1447 return 0;
1448}
1449
1450static int cgroup_get_rootdir(struct super_block *sb)
1451{
Al Viro0df6a632010-12-21 13:29:29 -05001452 static const struct dentry_operations cgroup_dops = {
1453 .d_iput = cgroup_diput,
1454 };
1455
Paul Menageddbcc7e2007-10-18 23:39:30 -07001456 struct inode *inode =
1457 cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb);
1458 struct dentry *dentry;
1459
1460 if (!inode)
1461 return -ENOMEM;
1462
Paul Menageddbcc7e2007-10-18 23:39:30 -07001463 inode->i_fop = &simple_dir_operations;
1464 inode->i_op = &cgroup_dir_inode_operations;
1465 /* directories start off with i_nlink == 2 (for "." entry) */
1466 inc_nlink(inode);
1467 dentry = d_alloc_root(inode);
1468 if (!dentry) {
1469 iput(inode);
1470 return -ENOMEM;
1471 }
1472 sb->s_root = dentry;
Al Viro0df6a632010-12-21 13:29:29 -05001473 /* for everything else we want ->d_op set */
1474 sb->s_d_op = &cgroup_dops;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001475 return 0;
1476}
1477
Al Virof7e83572010-07-26 13:23:11 +04001478static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001479 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001480 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001481{
1482 struct cgroup_sb_opts opts;
Paul Menagec6d57f32009-09-23 15:56:19 -07001483 struct cgroupfs_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001484 int ret = 0;
1485 struct super_block *sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001486 struct cgroupfs_root *new_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001487
1488 /* First find the desired set of subsystems */
Ben Blumaae8aab2010-03-10 15:22:07 -08001489 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001490 ret = parse_cgroupfs_options(data, &opts);
Ben Blumaae8aab2010-03-10 15:22:07 -08001491 mutex_unlock(&cgroup_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001492 if (ret)
1493 goto out_err;
1494
1495 /*
1496 * Allocate a new cgroup root. We may not need it if we're
1497 * reusing an existing hierarchy.
1498 */
1499 new_root = cgroup_root_from_opts(&opts);
1500 if (IS_ERR(new_root)) {
1501 ret = PTR_ERR(new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001502 goto drop_modules;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001503 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001504 opts.new_root = new_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001505
Paul Menagec6d57f32009-09-23 15:56:19 -07001506 /* Locate an existing or new sb for this hierarchy */
1507 sb = sget(fs_type, cgroup_test_super, cgroup_set_super, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001508 if (IS_ERR(sb)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001509 ret = PTR_ERR(sb);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001510 cgroup_drop_root(opts.new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001511 goto drop_modules;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001512 }
1513
Paul Menagec6d57f32009-09-23 15:56:19 -07001514 root = sb->s_fs_info;
1515 BUG_ON(!root);
1516 if (root == opts.new_root) {
1517 /* We used the new root structure, so this is a new hierarchy */
1518 struct list_head tmp_cg_links;
Li Zefanc12f65d2009-01-07 18:07:42 -08001519 struct cgroup *root_cgrp = &root->top_cgroup;
Paul Menage817929e2007-10-18 23:39:36 -07001520 struct inode *inode;
Paul Menagec6d57f32009-09-23 15:56:19 -07001521 struct cgroupfs_root *existing_root;
Li Zefan28fd5df2008-04-29 01:00:13 -07001522 int i;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001523
1524 BUG_ON(sb->s_root != NULL);
1525
1526 ret = cgroup_get_rootdir(sb);
1527 if (ret)
1528 goto drop_new_super;
Paul Menage817929e2007-10-18 23:39:36 -07001529 inode = sb->s_root->d_inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001530
Paul Menage817929e2007-10-18 23:39:36 -07001531 mutex_lock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001532 mutex_lock(&cgroup_mutex);
1533
Paul Menagec6d57f32009-09-23 15:56:19 -07001534 if (strlen(root->name)) {
1535 /* Check for name clashes with existing mounts */
1536 for_each_active_root(existing_root) {
1537 if (!strcmp(existing_root->name, root->name)) {
1538 ret = -EBUSY;
1539 mutex_unlock(&cgroup_mutex);
1540 mutex_unlock(&inode->i_mutex);
1541 goto drop_new_super;
1542 }
1543 }
1544 }
1545
Paul Menage817929e2007-10-18 23:39:36 -07001546 /*
1547 * We're accessing css_set_count without locking
1548 * css_set_lock here, but that's OK - it can only be
1549 * increased by someone holding cgroup_lock, and
1550 * that's us. The worst that can happen is that we
1551 * have some link structures left over
1552 */
1553 ret = allocate_cg_links(css_set_count, &tmp_cg_links);
1554 if (ret) {
1555 mutex_unlock(&cgroup_mutex);
1556 mutex_unlock(&inode->i_mutex);
1557 goto drop_new_super;
1558 }
1559
Paul Menageddbcc7e2007-10-18 23:39:30 -07001560 ret = rebind_subsystems(root, root->subsys_bits);
1561 if (ret == -EBUSY) {
1562 mutex_unlock(&cgroup_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07001563 mutex_unlock(&inode->i_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001564 free_cg_links(&tmp_cg_links);
1565 goto drop_new_super;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001566 }
Ben Blumcf5d5942010-03-10 15:22:09 -08001567 /*
1568 * There must be no failure case after here, since rebinding
1569 * takes care of subsystems' refcounts, which are explicitly
1570 * dropped in the failure exit path.
1571 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001572
1573 /* EBUSY should be the only error here */
1574 BUG_ON(ret);
1575
1576 list_add(&root->root_list, &roots);
Paul Menage817929e2007-10-18 23:39:36 -07001577 root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001578
Li Zefanc12f65d2009-01-07 18:07:42 -08001579 sb->s_root->d_fsdata = root_cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001580 root->top_cgroup.dentry = sb->s_root;
1581
Paul Menage817929e2007-10-18 23:39:36 -07001582 /* Link the top cgroup in this hierarchy into all
1583 * the css_set objects */
1584 write_lock(&css_set_lock);
Li Zefan28fd5df2008-04-29 01:00:13 -07001585 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
1586 struct hlist_head *hhead = &css_set_table[i];
1587 struct hlist_node *node;
Paul Menage817929e2007-10-18 23:39:36 -07001588 struct css_set *cg;
Li Zefan28fd5df2008-04-29 01:00:13 -07001589
Li Zefanc12f65d2009-01-07 18:07:42 -08001590 hlist_for_each_entry(cg, node, hhead, hlist)
1591 link_css_set(&tmp_cg_links, cg, root_cgrp);
Li Zefan28fd5df2008-04-29 01:00:13 -07001592 }
Paul Menage817929e2007-10-18 23:39:36 -07001593 write_unlock(&css_set_lock);
1594
1595 free_cg_links(&tmp_cg_links);
1596
Li Zefanc12f65d2009-01-07 18:07:42 -08001597 BUG_ON(!list_empty(&root_cgrp->sibling));
1598 BUG_ON(!list_empty(&root_cgrp->children));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001599 BUG_ON(root->number_of_cgroups != 1);
1600
Li Zefanc12f65d2009-01-07 18:07:42 -08001601 cgroup_populate_dir(root_cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001602 mutex_unlock(&cgroup_mutex);
Xiaotian Feng34f77a92009-09-23 15:56:18 -07001603 mutex_unlock(&inode->i_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001604 } else {
1605 /*
1606 * We re-used an existing hierarchy - the new root (if
1607 * any) is not needed
1608 */
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001609 cgroup_drop_root(opts.new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001610 /* no subsys rebinding, so refcounts don't change */
1611 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001612 }
1613
Paul Menagec6d57f32009-09-23 15:56:19 -07001614 kfree(opts.release_agent);
1615 kfree(opts.name);
Al Virof7e83572010-07-26 13:23:11 +04001616 return dget(sb->s_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001617
1618 drop_new_super:
Al Viro6f5bbff2009-05-06 01:34:22 -04001619 deactivate_locked_super(sb);
Ben Blumcf5d5942010-03-10 15:22:09 -08001620 drop_modules:
1621 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menagec6d57f32009-09-23 15:56:19 -07001622 out_err:
1623 kfree(opts.release_agent);
1624 kfree(opts.name);
Al Virof7e83572010-07-26 13:23:11 +04001625 return ERR_PTR(ret);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001626}
1627
1628static void cgroup_kill_sb(struct super_block *sb) {
1629 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001630 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001631 int ret;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001632 struct cg_cgroup_link *link;
1633 struct cg_cgroup_link *saved_link;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001634
1635 BUG_ON(!root);
1636
1637 BUG_ON(root->number_of_cgroups != 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001638 BUG_ON(!list_empty(&cgrp->children));
1639 BUG_ON(!list_empty(&cgrp->sibling));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001640
1641 mutex_lock(&cgroup_mutex);
1642
1643 /* Rebind all subsystems back to the default hierarchy */
1644 ret = rebind_subsystems(root, 0);
1645 /* Shouldn't be able to fail ... */
1646 BUG_ON(ret);
1647
Paul Menage817929e2007-10-18 23:39:36 -07001648 /*
1649 * Release all the links from css_sets to this hierarchy's
1650 * root cgroup
1651 */
1652 write_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001653
1654 list_for_each_entry_safe(link, saved_link, &cgrp->css_sets,
1655 cgrp_link_list) {
Paul Menage817929e2007-10-18 23:39:36 -07001656 list_del(&link->cg_link_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07001657 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001658 kfree(link);
1659 }
1660 write_unlock(&css_set_lock);
1661
Paul Menage839ec542009-01-29 14:25:22 -08001662 if (!list_empty(&root->root_list)) {
1663 list_del(&root->root_list);
1664 root_count--;
1665 }
Li Zefane5f6a862009-01-07 18:07:41 -08001666
Paul Menageddbcc7e2007-10-18 23:39:30 -07001667 mutex_unlock(&cgroup_mutex);
1668
Paul Menageddbcc7e2007-10-18 23:39:30 -07001669 kill_litter_super(sb);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001670 cgroup_drop_root(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001671}
1672
1673static struct file_system_type cgroup_fs_type = {
1674 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001675 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001676 .kill_sb = cgroup_kill_sb,
1677};
1678
Greg KH676db4a2010-08-05 13:53:35 -07001679static struct kobject *cgroup_kobj;
1680
Paul Menagebd89aab2007-10-18 23:40:44 -07001681static inline struct cgroup *__d_cgrp(struct dentry *dentry)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001682{
1683 return dentry->d_fsdata;
1684}
1685
1686static inline struct cftype *__d_cft(struct dentry *dentry)
1687{
1688 return dentry->d_fsdata;
1689}
1690
Li Zefana043e3b2008-02-23 15:24:09 -08001691/**
1692 * cgroup_path - generate the path of a cgroup
1693 * @cgrp: the cgroup in question
1694 * @buf: the buffer to write the path into
1695 * @buflen: the length of the buffer
1696 *
Paul Menagea47295e2009-01-07 18:07:44 -08001697 * Called with cgroup_mutex held or else with an RCU-protected cgroup
1698 * reference. Writes path of cgroup into buf. Returns 0 on success,
1699 * -errno on error.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001700 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001701int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001702{
1703 char *start;
Li Zefan9a9686b2010-04-22 17:29:24 +08001704 struct dentry *dentry = rcu_dereference_check(cgrp->dentry,
1705 rcu_read_lock_held() ||
1706 cgroup_lock_is_held());
Paul Menageddbcc7e2007-10-18 23:39:30 -07001707
Paul Menagea47295e2009-01-07 18:07:44 -08001708 if (!dentry || cgrp == dummytop) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001709 /*
1710 * Inactive subsystems have no dentry for their root
1711 * cgroup
1712 */
1713 strcpy(buf, "/");
1714 return 0;
1715 }
1716
1717 start = buf + buflen;
1718
1719 *--start = '\0';
1720 for (;;) {
Paul Menagea47295e2009-01-07 18:07:44 -08001721 int len = dentry->d_name.len;
Li Zefan9a9686b2010-04-22 17:29:24 +08001722
Paul Menageddbcc7e2007-10-18 23:39:30 -07001723 if ((start -= len) < buf)
1724 return -ENAMETOOLONG;
Li Zefan9a9686b2010-04-22 17:29:24 +08001725 memcpy(start, dentry->d_name.name, len);
Paul Menagebd89aab2007-10-18 23:40:44 -07001726 cgrp = cgrp->parent;
1727 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001728 break;
Li Zefan9a9686b2010-04-22 17:29:24 +08001729
1730 dentry = rcu_dereference_check(cgrp->dentry,
1731 rcu_read_lock_held() ||
1732 cgroup_lock_is_held());
Paul Menagebd89aab2007-10-18 23:40:44 -07001733 if (!cgrp->parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001734 continue;
1735 if (--start < buf)
1736 return -ENAMETOOLONG;
1737 *start = '/';
1738 }
1739 memmove(buf, start, buf + buflen - start);
1740 return 0;
1741}
Ben Blum67523c42010-03-10 15:22:11 -08001742EXPORT_SYMBOL_GPL(cgroup_path);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001743
Li Zefana043e3b2008-02-23 15:24:09 -08001744/**
1745 * cgroup_attach_task - attach task 'tsk' to cgroup 'cgrp'
1746 * @cgrp: the cgroup the task is attaching to
1747 * @tsk: the task to be attached
Paul Menagebbcb81d2007-10-18 23:39:32 -07001748 *
Li Zefana043e3b2008-02-23 15:24:09 -08001749 * Call holding cgroup_mutex. May take task_lock of
1750 * the task 'tsk' during call.
Paul Menagebbcb81d2007-10-18 23:39:32 -07001751 */
Cliff Wickman956db3c2008-02-07 00:14:43 -08001752int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001753{
1754 int retval = 0;
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001755 struct cgroup_subsys *ss, *failed_ss = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07001756 struct cgroup *oldcgrp;
Lai Jiangshan77efecd2009-01-07 18:07:39 -08001757 struct css_set *cg;
Paul Menage817929e2007-10-18 23:39:36 -07001758 struct css_set *newcg;
Paul Menagebd89aab2007-10-18 23:40:44 -07001759 struct cgroupfs_root *root = cgrp->root;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001760
1761 /* Nothing to do if the task is already in that cgroup */
Paul Menage7717f7b2009-09-23 15:56:22 -07001762 oldcgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07001763 if (cgrp == oldcgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001764 return 0;
1765
1766 for_each_subsys(root, ss) {
1767 if (ss->can_attach) {
Ben Blumbe367d02009-09-23 15:56:31 -07001768 retval = ss->can_attach(ss, cgrp, tsk, false);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001769 if (retval) {
1770 /*
1771 * Remember on which subsystem the can_attach()
1772 * failed, so that we only call cancel_attach()
1773 * against the subsystems whose can_attach()
1774 * succeeded. (See below)
1775 */
1776 failed_ss = ss;
1777 goto out;
1778 }
Paul Menagebbcb81d2007-10-18 23:39:32 -07001779 }
1780 }
1781
Lai Jiangshan77efecd2009-01-07 18:07:39 -08001782 task_lock(tsk);
1783 cg = tsk->cgroups;
1784 get_css_set(cg);
1785 task_unlock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07001786 /*
1787 * Locate or allocate a new css_set for this task,
1788 * based on its final set of cgroups
1789 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001790 newcg = find_css_set(cg, cgrp);
Lai Jiangshan77efecd2009-01-07 18:07:39 -08001791 put_css_set(cg);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001792 if (!newcg) {
1793 retval = -ENOMEM;
1794 goto out;
1795 }
Paul Menage817929e2007-10-18 23:39:36 -07001796
Paul Menagebbcb81d2007-10-18 23:39:32 -07001797 task_lock(tsk);
1798 if (tsk->flags & PF_EXITING) {
1799 task_unlock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07001800 put_css_set(newcg);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001801 retval = -ESRCH;
1802 goto out;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001803 }
Paul Menage817929e2007-10-18 23:39:36 -07001804 rcu_assign_pointer(tsk->cgroups, newcg);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001805 task_unlock(tsk);
1806
Paul Menage817929e2007-10-18 23:39:36 -07001807 /* Update the css_set linked lists if we're using them */
1808 write_lock(&css_set_lock);
1809 if (!list_empty(&tsk->cg_list)) {
1810 list_del(&tsk->cg_list);
1811 list_add(&tsk->cg_list, &newcg->tasks);
1812 }
1813 write_unlock(&css_set_lock);
1814
Paul Menagebbcb81d2007-10-18 23:39:32 -07001815 for_each_subsys(root, ss) {
Paul Jacksone18f6312008-02-07 00:13:44 -08001816 if (ss->attach)
Ben Blumbe367d02009-09-23 15:56:31 -07001817 ss->attach(ss, cgrp, oldcgrp, tsk, false);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001818 }
Paul Menagebd89aab2007-10-18 23:40:44 -07001819 set_bit(CGRP_RELEASABLE, &oldcgrp->flags);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001820 synchronize_rcu();
Paul Menage817929e2007-10-18 23:39:36 -07001821 put_css_set(cg);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07001822
1823 /*
1824 * wake up rmdir() waiter. the rmdir should fail since the cgroup
1825 * is no longer empty.
1826 */
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07001827 cgroup_wakeup_rmdir_waiter(cgrp);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001828out:
1829 if (retval) {
1830 for_each_subsys(root, ss) {
1831 if (ss == failed_ss)
1832 /*
1833 * This subsystem was the one that failed the
1834 * can_attach() check earlier, so we don't need
1835 * to call cancel_attach() against it or any
1836 * remaining subsystems.
1837 */
1838 break;
1839 if (ss->cancel_attach)
1840 ss->cancel_attach(ss, cgrp, tsk, false);
1841 }
1842 }
1843 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001844}
1845
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001846/**
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001847 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
1848 * @from: attach to all cgroups of a given task
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001849 * @tsk: the task to be attached
1850 */
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001851int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001852{
1853 struct cgroupfs_root *root;
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001854 int retval = 0;
1855
1856 cgroup_lock();
1857 for_each_active_root(root) {
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001858 struct cgroup *from_cg = task_cgroup_from_root(from, root);
1859
1860 retval = cgroup_attach_task(from_cg, tsk);
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001861 if (retval)
1862 break;
1863 }
1864 cgroup_unlock();
1865
1866 return retval;
1867}
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001868EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001869
Paul Menagebbcb81d2007-10-18 23:39:32 -07001870/*
Paul Menageaf351022008-07-25 01:47:01 -07001871 * Attach task with pid 'pid' to cgroup 'cgrp'. Call with cgroup_mutex
1872 * held. May take task_lock of task
Paul Menagebbcb81d2007-10-18 23:39:32 -07001873 */
Paul Menageaf351022008-07-25 01:47:01 -07001874static int attach_task_by_pid(struct cgroup *cgrp, u64 pid)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001875{
Paul Menagebbcb81d2007-10-18 23:39:32 -07001876 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11001877 const struct cred *cred = current_cred(), *tcred;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001878 int ret;
1879
Paul Menagebbcb81d2007-10-18 23:39:32 -07001880 if (pid) {
1881 rcu_read_lock();
Pavel Emelyanov73507f32008-02-07 00:14:47 -08001882 tsk = find_task_by_vpid(pid);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001883 if (!tsk || tsk->flags & PF_EXITING) {
1884 rcu_read_unlock();
1885 return -ESRCH;
1886 }
Paul Menagebbcb81d2007-10-18 23:39:32 -07001887
David Howellsc69e8d92008-11-14 10:39:19 +11001888 tcred = __task_cred(tsk);
1889 if (cred->euid &&
1890 cred->euid != tcred->uid &&
1891 cred->euid != tcred->suid) {
1892 rcu_read_unlock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07001893 return -EACCES;
1894 }
David Howellsc69e8d92008-11-14 10:39:19 +11001895 get_task_struct(tsk);
1896 rcu_read_unlock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07001897 } else {
1898 tsk = current;
1899 get_task_struct(tsk);
1900 }
1901
Cliff Wickman956db3c2008-02-07 00:14:43 -08001902 ret = cgroup_attach_task(cgrp, tsk);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001903 put_task_struct(tsk);
1904 return ret;
1905}
1906
Paul Menageaf351022008-07-25 01:47:01 -07001907static int cgroup_tasks_write(struct cgroup *cgrp, struct cftype *cft, u64 pid)
1908{
1909 int ret;
1910 if (!cgroup_lock_live_group(cgrp))
1911 return -ENODEV;
1912 ret = attach_task_by_pid(cgrp, pid);
1913 cgroup_unlock();
1914 return ret;
1915}
1916
Paul Menagee788e0662008-07-25 01:46:59 -07001917/**
1918 * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive.
1919 * @cgrp: the cgroup to be checked for liveness
1920 *
Paul Menage84eea842008-07-25 01:47:00 -07001921 * On success, returns true; the lock should be later released with
1922 * cgroup_unlock(). On failure returns false with no lock held.
Paul Menagee788e0662008-07-25 01:46:59 -07001923 */
Paul Menage84eea842008-07-25 01:47:00 -07001924bool cgroup_lock_live_group(struct cgroup *cgrp)
Paul Menagee788e0662008-07-25 01:46:59 -07001925{
1926 mutex_lock(&cgroup_mutex);
1927 if (cgroup_is_removed(cgrp)) {
1928 mutex_unlock(&cgroup_mutex);
1929 return false;
1930 }
1931 return true;
1932}
Ben Blum67523c42010-03-10 15:22:11 -08001933EXPORT_SYMBOL_GPL(cgroup_lock_live_group);
Paul Menagee788e0662008-07-25 01:46:59 -07001934
1935static int cgroup_release_agent_write(struct cgroup *cgrp, struct cftype *cft,
1936 const char *buffer)
1937{
1938 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
Evgeny Kuznetsovf4a25892010-10-27 15:33:37 -07001939 if (strlen(buffer) >= PATH_MAX)
1940 return -EINVAL;
Paul Menagee788e0662008-07-25 01:46:59 -07001941 if (!cgroup_lock_live_group(cgrp))
1942 return -ENODEV;
1943 strcpy(cgrp->root->release_agent_path, buffer);
Paul Menage84eea842008-07-25 01:47:00 -07001944 cgroup_unlock();
Paul Menagee788e0662008-07-25 01:46:59 -07001945 return 0;
1946}
1947
1948static int cgroup_release_agent_show(struct cgroup *cgrp, struct cftype *cft,
1949 struct seq_file *seq)
1950{
1951 if (!cgroup_lock_live_group(cgrp))
1952 return -ENODEV;
1953 seq_puts(seq, cgrp->root->release_agent_path);
1954 seq_putc(seq, '\n');
Paul Menage84eea842008-07-25 01:47:00 -07001955 cgroup_unlock();
Paul Menagee788e0662008-07-25 01:46:59 -07001956 return 0;
1957}
1958
Paul Menage84eea842008-07-25 01:47:00 -07001959/* A buffer size big enough for numbers or short strings */
1960#define CGROUP_LOCAL_BUFFER_SIZE 64
1961
Paul Menagee73d2c62008-04-29 01:00:06 -07001962static ssize_t cgroup_write_X64(struct cgroup *cgrp, struct cftype *cft,
Paul Menagef4c753b2008-04-29 00:59:56 -07001963 struct file *file,
1964 const char __user *userbuf,
1965 size_t nbytes, loff_t *unused_ppos)
Paul Menage355e0c42007-10-18 23:39:33 -07001966{
Paul Menage84eea842008-07-25 01:47:00 -07001967 char buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menage355e0c42007-10-18 23:39:33 -07001968 int retval = 0;
Paul Menage355e0c42007-10-18 23:39:33 -07001969 char *end;
1970
1971 if (!nbytes)
1972 return -EINVAL;
1973 if (nbytes >= sizeof(buffer))
1974 return -E2BIG;
1975 if (copy_from_user(buffer, userbuf, nbytes))
1976 return -EFAULT;
1977
1978 buffer[nbytes] = 0; /* nul-terminate */
Paul Menagee73d2c62008-04-29 01:00:06 -07001979 if (cft->write_u64) {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07001980 u64 val = simple_strtoull(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07001981 if (*end)
1982 return -EINVAL;
1983 retval = cft->write_u64(cgrp, cft, val);
1984 } else {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07001985 s64 val = simple_strtoll(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07001986 if (*end)
1987 return -EINVAL;
1988 retval = cft->write_s64(cgrp, cft, val);
1989 }
Paul Menage355e0c42007-10-18 23:39:33 -07001990 if (!retval)
1991 retval = nbytes;
1992 return retval;
1993}
1994
Paul Menagedb3b1492008-07-25 01:46:58 -07001995static ssize_t cgroup_write_string(struct cgroup *cgrp, struct cftype *cft,
1996 struct file *file,
1997 const char __user *userbuf,
1998 size_t nbytes, loff_t *unused_ppos)
1999{
Paul Menage84eea842008-07-25 01:47:00 -07002000 char local_buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagedb3b1492008-07-25 01:46:58 -07002001 int retval = 0;
2002 size_t max_bytes = cft->max_write_len;
2003 char *buffer = local_buffer;
2004
2005 if (!max_bytes)
2006 max_bytes = sizeof(local_buffer) - 1;
2007 if (nbytes >= max_bytes)
2008 return -E2BIG;
2009 /* Allocate a dynamic buffer if we need one */
2010 if (nbytes >= sizeof(local_buffer)) {
2011 buffer = kmalloc(nbytes + 1, GFP_KERNEL);
2012 if (buffer == NULL)
2013 return -ENOMEM;
2014 }
Li Zefan5a3eb9f2008-07-29 22:33:18 -07002015 if (nbytes && copy_from_user(buffer, userbuf, nbytes)) {
2016 retval = -EFAULT;
2017 goto out;
2018 }
Paul Menagedb3b1492008-07-25 01:46:58 -07002019
2020 buffer[nbytes] = 0; /* nul-terminate */
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002021 retval = cft->write_string(cgrp, cft, strstrip(buffer));
Paul Menagedb3b1492008-07-25 01:46:58 -07002022 if (!retval)
2023 retval = nbytes;
Li Zefan5a3eb9f2008-07-29 22:33:18 -07002024out:
Paul Menagedb3b1492008-07-25 01:46:58 -07002025 if (buffer != local_buffer)
2026 kfree(buffer);
2027 return retval;
2028}
2029
Paul Menageddbcc7e2007-10-18 23:39:30 -07002030static ssize_t cgroup_file_write(struct file *file, const char __user *buf,
2031 size_t nbytes, loff_t *ppos)
2032{
2033 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07002034 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002035
Li Zefan75139b82009-01-07 18:07:33 -08002036 if (cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07002037 return -ENODEV;
Paul Menage355e0c42007-10-18 23:39:33 -07002038 if (cft->write)
Paul Menagebd89aab2007-10-18 23:40:44 -07002039 return cft->write(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002040 if (cft->write_u64 || cft->write_s64)
2041 return cgroup_write_X64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagedb3b1492008-07-25 01:46:58 -07002042 if (cft->write_string)
2043 return cgroup_write_string(cgrp, cft, file, buf, nbytes, ppos);
Pavel Emelyanovd447ea22008-04-29 01:00:08 -07002044 if (cft->trigger) {
2045 int ret = cft->trigger(cgrp, (unsigned int)cft->private);
2046 return ret ? ret : nbytes;
2047 }
Paul Menage355e0c42007-10-18 23:39:33 -07002048 return -EINVAL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002049}
2050
Paul Menagef4c753b2008-04-29 00:59:56 -07002051static ssize_t cgroup_read_u64(struct cgroup *cgrp, struct cftype *cft,
2052 struct file *file,
2053 char __user *buf, size_t nbytes,
2054 loff_t *ppos)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002055{
Paul Menage84eea842008-07-25 01:47:00 -07002056 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagef4c753b2008-04-29 00:59:56 -07002057 u64 val = cft->read_u64(cgrp, cft);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002058 int len = sprintf(tmp, "%llu\n", (unsigned long long) val);
2059
2060 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2061}
2062
Paul Menagee73d2c62008-04-29 01:00:06 -07002063static ssize_t cgroup_read_s64(struct cgroup *cgrp, struct cftype *cft,
2064 struct file *file,
2065 char __user *buf, size_t nbytes,
2066 loff_t *ppos)
2067{
Paul Menage84eea842008-07-25 01:47:00 -07002068 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagee73d2c62008-04-29 01:00:06 -07002069 s64 val = cft->read_s64(cgrp, cft);
2070 int len = sprintf(tmp, "%lld\n", (long long) val);
2071
2072 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2073}
2074
Paul Menageddbcc7e2007-10-18 23:39:30 -07002075static ssize_t cgroup_file_read(struct file *file, char __user *buf,
2076 size_t nbytes, loff_t *ppos)
2077{
2078 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07002079 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002080
Li Zefan75139b82009-01-07 18:07:33 -08002081 if (cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07002082 return -ENODEV;
2083
2084 if (cft->read)
Paul Menagebd89aab2007-10-18 23:40:44 -07002085 return cft->read(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagef4c753b2008-04-29 00:59:56 -07002086 if (cft->read_u64)
2087 return cgroup_read_u64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002088 if (cft->read_s64)
2089 return cgroup_read_s64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002090 return -EINVAL;
2091}
2092
Paul Menage91796562008-04-29 01:00:01 -07002093/*
2094 * seqfile ops/methods for returning structured data. Currently just
2095 * supports string->u64 maps, but can be extended in future.
2096 */
2097
2098struct cgroup_seqfile_state {
2099 struct cftype *cft;
2100 struct cgroup *cgroup;
2101};
2102
2103static int cgroup_map_add(struct cgroup_map_cb *cb, const char *key, u64 value)
2104{
2105 struct seq_file *sf = cb->state;
2106 return seq_printf(sf, "%s %llu\n", key, (unsigned long long)value);
2107}
2108
2109static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2110{
2111 struct cgroup_seqfile_state *state = m->private;
2112 struct cftype *cft = state->cft;
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002113 if (cft->read_map) {
2114 struct cgroup_map_cb cb = {
2115 .fill = cgroup_map_add,
2116 .state = m,
2117 };
2118 return cft->read_map(state->cgroup, cft, &cb);
2119 }
2120 return cft->read_seq_string(state->cgroup, cft, m);
Paul Menage91796562008-04-29 01:00:01 -07002121}
2122
Adrian Bunk96930a62008-07-25 19:46:21 -07002123static int cgroup_seqfile_release(struct inode *inode, struct file *file)
Paul Menage91796562008-04-29 01:00:01 -07002124{
2125 struct seq_file *seq = file->private_data;
2126 kfree(seq->private);
2127 return single_release(inode, file);
2128}
2129
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002130static const struct file_operations cgroup_seqfile_operations = {
Paul Menage91796562008-04-29 01:00:01 -07002131 .read = seq_read,
Paul Menagee788e0662008-07-25 01:46:59 -07002132 .write = cgroup_file_write,
Paul Menage91796562008-04-29 01:00:01 -07002133 .llseek = seq_lseek,
2134 .release = cgroup_seqfile_release,
2135};
2136
Paul Menageddbcc7e2007-10-18 23:39:30 -07002137static int cgroup_file_open(struct inode *inode, struct file *file)
2138{
2139 int err;
2140 struct cftype *cft;
2141
2142 err = generic_file_open(inode, file);
2143 if (err)
2144 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002145 cft = __d_cft(file->f_dentry);
Li Zefan75139b82009-01-07 18:07:33 -08002146
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002147 if (cft->read_map || cft->read_seq_string) {
Paul Menage91796562008-04-29 01:00:01 -07002148 struct cgroup_seqfile_state *state =
2149 kzalloc(sizeof(*state), GFP_USER);
2150 if (!state)
2151 return -ENOMEM;
2152 state->cft = cft;
2153 state->cgroup = __d_cgrp(file->f_dentry->d_parent);
2154 file->f_op = &cgroup_seqfile_operations;
2155 err = single_open(file, cgroup_seqfile_show, state);
2156 if (err < 0)
2157 kfree(state);
2158 } else if (cft->open)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002159 err = cft->open(inode, file);
2160 else
2161 err = 0;
2162
2163 return err;
2164}
2165
2166static int cgroup_file_release(struct inode *inode, struct file *file)
2167{
2168 struct cftype *cft = __d_cft(file->f_dentry);
2169 if (cft->release)
2170 return cft->release(inode, file);
2171 return 0;
2172}
2173
2174/*
2175 * cgroup_rename - Only allow simple rename of directories in place.
2176 */
2177static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry,
2178 struct inode *new_dir, struct dentry *new_dentry)
2179{
2180 if (!S_ISDIR(old_dentry->d_inode->i_mode))
2181 return -ENOTDIR;
2182 if (new_dentry->d_inode)
2183 return -EEXIST;
2184 if (old_dir != new_dir)
2185 return -EIO;
2186 return simple_rename(old_dir, old_dentry, new_dir, new_dentry);
2187}
2188
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002189static const struct file_operations cgroup_file_operations = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002190 .read = cgroup_file_read,
2191 .write = cgroup_file_write,
2192 .llseek = generic_file_llseek,
2193 .open = cgroup_file_open,
2194 .release = cgroup_file_release,
2195};
2196
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07002197static const struct inode_operations cgroup_dir_inode_operations = {
Al Viro0df6a632010-12-21 13:29:29 -05002198 .lookup = simple_lookup,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002199 .mkdir = cgroup_mkdir,
2200 .rmdir = cgroup_rmdir,
2201 .rename = cgroup_rename,
2202};
2203
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08002204/*
2205 * Check if a file is a control file
2206 */
2207static inline struct cftype *__file_cft(struct file *file)
2208{
2209 if (file->f_dentry->d_inode->i_fop != &cgroup_file_operations)
2210 return ERR_PTR(-EINVAL);
2211 return __d_cft(file->f_dentry);
2212}
2213
Nick Piggin5adcee12011-01-07 17:49:20 +11002214static int cgroup_create_file(struct dentry *dentry, mode_t mode,
2215 struct super_block *sb)
2216{
Paul Menageddbcc7e2007-10-18 23:39:30 -07002217 struct inode *inode;
2218
2219 if (!dentry)
2220 return -ENOENT;
2221 if (dentry->d_inode)
2222 return -EEXIST;
2223
2224 inode = cgroup_new_inode(mode, sb);
2225 if (!inode)
2226 return -ENOMEM;
2227
2228 if (S_ISDIR(mode)) {
2229 inode->i_op = &cgroup_dir_inode_operations;
2230 inode->i_fop = &simple_dir_operations;
2231
2232 /* start off with i_nlink == 2 (for "." entry) */
2233 inc_nlink(inode);
2234
2235 /* start with the directory inode held, so that we can
2236 * populate it without racing with another mkdir */
Paul Menage817929e2007-10-18 23:39:36 -07002237 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002238 } else if (S_ISREG(mode)) {
2239 inode->i_size = 0;
2240 inode->i_fop = &cgroup_file_operations;
2241 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002242 d_instantiate(dentry, inode);
2243 dget(dentry); /* Extra count - pin the dentry in core */
2244 return 0;
2245}
2246
2247/*
Li Zefana043e3b2008-02-23 15:24:09 -08002248 * cgroup_create_dir - create a directory for an object.
2249 * @cgrp: the cgroup we create the directory for. It must have a valid
2250 * ->parent field. And we are going to fill its ->dentry field.
2251 * @dentry: dentry of the new cgroup
2252 * @mode: mode to set on new directory.
Paul Menageddbcc7e2007-10-18 23:39:30 -07002253 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002254static int cgroup_create_dir(struct cgroup *cgrp, struct dentry *dentry,
Li Zefan099fca32009-04-02 16:57:29 -07002255 mode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002256{
2257 struct dentry *parent;
2258 int error = 0;
2259
Paul Menagebd89aab2007-10-18 23:40:44 -07002260 parent = cgrp->parent->dentry;
2261 error = cgroup_create_file(dentry, S_IFDIR | mode, cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002262 if (!error) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002263 dentry->d_fsdata = cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002264 inc_nlink(parent->d_inode);
Paul Menagea47295e2009-01-07 18:07:44 -08002265 rcu_assign_pointer(cgrp->dentry, dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002266 dget(dentry);
2267 }
2268 dput(dentry);
2269
2270 return error;
2271}
2272
Li Zefan099fca32009-04-02 16:57:29 -07002273/**
2274 * cgroup_file_mode - deduce file mode of a control file
2275 * @cft: the control file in question
2276 *
2277 * returns cft->mode if ->mode is not 0
2278 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
2279 * returns S_IRUGO if it has only a read handler
2280 * returns S_IWUSR if it has only a write hander
2281 */
2282static mode_t cgroup_file_mode(const struct cftype *cft)
2283{
2284 mode_t mode = 0;
2285
2286 if (cft->mode)
2287 return cft->mode;
2288
2289 if (cft->read || cft->read_u64 || cft->read_s64 ||
2290 cft->read_map || cft->read_seq_string)
2291 mode |= S_IRUGO;
2292
2293 if (cft->write || cft->write_u64 || cft->write_s64 ||
2294 cft->write_string || cft->trigger)
2295 mode |= S_IWUSR;
2296
2297 return mode;
2298}
2299
Paul Menagebd89aab2007-10-18 23:40:44 -07002300int cgroup_add_file(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002301 struct cgroup_subsys *subsys,
2302 const struct cftype *cft)
2303{
Paul Menagebd89aab2007-10-18 23:40:44 -07002304 struct dentry *dir = cgrp->dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002305 struct dentry *dentry;
2306 int error;
Li Zefan099fca32009-04-02 16:57:29 -07002307 mode_t mode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002308
2309 char name[MAX_CGROUP_TYPE_NAMELEN + MAX_CFTYPE_NAME + 2] = { 0 };
Paul Menagebd89aab2007-10-18 23:40:44 -07002310 if (subsys && !test_bit(ROOT_NOPREFIX, &cgrp->root->flags)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002311 strcpy(name, subsys->name);
2312 strcat(name, ".");
2313 }
2314 strcat(name, cft->name);
2315 BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex));
2316 dentry = lookup_one_len(name, dir, strlen(name));
2317 if (!IS_ERR(dentry)) {
Li Zefan099fca32009-04-02 16:57:29 -07002318 mode = cgroup_file_mode(cft);
2319 error = cgroup_create_file(dentry, mode | S_IFREG,
Paul Menagebd89aab2007-10-18 23:40:44 -07002320 cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002321 if (!error)
2322 dentry->d_fsdata = (void *)cft;
2323 dput(dentry);
2324 } else
2325 error = PTR_ERR(dentry);
2326 return error;
2327}
Ben Blume6a11052010-03-10 15:22:09 -08002328EXPORT_SYMBOL_GPL(cgroup_add_file);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002329
Paul Menagebd89aab2007-10-18 23:40:44 -07002330int cgroup_add_files(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002331 struct cgroup_subsys *subsys,
2332 const struct cftype cft[],
2333 int count)
2334{
2335 int i, err;
2336 for (i = 0; i < count; i++) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002337 err = cgroup_add_file(cgrp, subsys, &cft[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002338 if (err)
2339 return err;
2340 }
2341 return 0;
2342}
Ben Blume6a11052010-03-10 15:22:09 -08002343EXPORT_SYMBOL_GPL(cgroup_add_files);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002344
Li Zefana043e3b2008-02-23 15:24:09 -08002345/**
2346 * cgroup_task_count - count the number of tasks in a cgroup.
2347 * @cgrp: the cgroup in question
2348 *
2349 * Return the number of tasks in the cgroup.
2350 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002351int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002352{
2353 int count = 0;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07002354 struct cg_cgroup_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002355
Paul Menage817929e2007-10-18 23:39:36 -07002356 read_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07002357 list_for_each_entry(link, &cgrp->css_sets, cgrp_link_list) {
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07002358 count += atomic_read(&link->cg->refcount);
Paul Menage817929e2007-10-18 23:39:36 -07002359 }
2360 read_unlock(&css_set_lock);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002361 return count;
2362}
2363
2364/*
Paul Menage817929e2007-10-18 23:39:36 -07002365 * Advance a list_head iterator. The iterator should be positioned at
2366 * the start of a css_set
2367 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002368static void cgroup_advance_iter(struct cgroup *cgrp,
Paul Menage7717f7b2009-09-23 15:56:22 -07002369 struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002370{
2371 struct list_head *l = it->cg_link;
2372 struct cg_cgroup_link *link;
2373 struct css_set *cg;
2374
2375 /* Advance to the next non-empty css_set */
2376 do {
2377 l = l->next;
Paul Menagebd89aab2007-10-18 23:40:44 -07002378 if (l == &cgrp->css_sets) {
Paul Menage817929e2007-10-18 23:39:36 -07002379 it->cg_link = NULL;
2380 return;
2381 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002382 link = list_entry(l, struct cg_cgroup_link, cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07002383 cg = link->cg;
2384 } while (list_empty(&cg->tasks));
2385 it->cg_link = l;
2386 it->task = cg->tasks.next;
2387}
2388
Cliff Wickman31a7df02008-02-07 00:14:42 -08002389/*
2390 * To reduce the fork() overhead for systems that are not actually
2391 * using their cgroups capability, we don't maintain the lists running
2392 * through each css_set to its tasks until we see the list actually
2393 * used - in other words after the first call to cgroup_iter_start().
2394 *
2395 * The tasklist_lock is not held here, as do_each_thread() and
2396 * while_each_thread() are protected by RCU.
2397 */
Adrian Bunk3df91fe2008-04-29 00:59:54 -07002398static void cgroup_enable_task_cg_lists(void)
Cliff Wickman31a7df02008-02-07 00:14:42 -08002399{
2400 struct task_struct *p, *g;
2401 write_lock(&css_set_lock);
2402 use_task_css_set_links = 1;
2403 do_each_thread(g, p) {
2404 task_lock(p);
Li Zefan0e043882008-04-17 11:37:15 +08002405 /*
2406 * We should check if the process is exiting, otherwise
2407 * it will race with cgroup_exit() in that the list
2408 * entry won't be deleted though the process has exited.
2409 */
2410 if (!(p->flags & PF_EXITING) && list_empty(&p->cg_list))
Cliff Wickman31a7df02008-02-07 00:14:42 -08002411 list_add(&p->cg_list, &p->cgroups->tasks);
2412 task_unlock(p);
2413 } while_each_thread(g, p);
2414 write_unlock(&css_set_lock);
2415}
2416
Paul Menagebd89aab2007-10-18 23:40:44 -07002417void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002418{
2419 /*
2420 * The first time anyone tries to iterate across a cgroup,
2421 * we need to enable the list linking each css_set to its
2422 * tasks, and fix up all existing tasks.
2423 */
Cliff Wickman31a7df02008-02-07 00:14:42 -08002424 if (!use_task_css_set_links)
2425 cgroup_enable_task_cg_lists();
2426
Paul Menage817929e2007-10-18 23:39:36 -07002427 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07002428 it->cg_link = &cgrp->css_sets;
2429 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07002430}
2431
Paul Menagebd89aab2007-10-18 23:40:44 -07002432struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -07002433 struct cgroup_iter *it)
2434{
2435 struct task_struct *res;
2436 struct list_head *l = it->task;
Lai Jiangshan2019f632009-01-07 18:07:36 -08002437 struct cg_cgroup_link *link;
Paul Menage817929e2007-10-18 23:39:36 -07002438
2439 /* If the iterator cg is NULL, we have no tasks */
2440 if (!it->cg_link)
2441 return NULL;
2442 res = list_entry(l, struct task_struct, cg_list);
2443 /* Advance iterator to find next entry */
2444 l = l->next;
Lai Jiangshan2019f632009-01-07 18:07:36 -08002445 link = list_entry(it->cg_link, struct cg_cgroup_link, cgrp_link_list);
2446 if (l == &link->cg->tasks) {
Paul Menage817929e2007-10-18 23:39:36 -07002447 /* We reached the end of this task list - move on to
2448 * the next cg_cgroup_link */
Paul Menagebd89aab2007-10-18 23:40:44 -07002449 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07002450 } else {
2451 it->task = l;
2452 }
2453 return res;
2454}
2455
Paul Menagebd89aab2007-10-18 23:40:44 -07002456void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002457{
2458 read_unlock(&css_set_lock);
2459}
2460
Cliff Wickman31a7df02008-02-07 00:14:42 -08002461static inline int started_after_time(struct task_struct *t1,
2462 struct timespec *time,
2463 struct task_struct *t2)
2464{
2465 int start_diff = timespec_compare(&t1->start_time, time);
2466 if (start_diff > 0) {
2467 return 1;
2468 } else if (start_diff < 0) {
2469 return 0;
2470 } else {
2471 /*
2472 * Arbitrarily, if two processes started at the same
2473 * time, we'll say that the lower pointer value
2474 * started first. Note that t2 may have exited by now
2475 * so this may not be a valid pointer any longer, but
2476 * that's fine - it still serves to distinguish
2477 * between two tasks started (effectively) simultaneously.
2478 */
2479 return t1 > t2;
2480 }
2481}
2482
2483/*
2484 * This function is a callback from heap_insert() and is used to order
2485 * the heap.
2486 * In this case we order the heap in descending task start time.
2487 */
2488static inline int started_after(void *p1, void *p2)
2489{
2490 struct task_struct *t1 = p1;
2491 struct task_struct *t2 = p2;
2492 return started_after_time(t1, &t2->start_time, t2);
2493}
2494
2495/**
2496 * cgroup_scan_tasks - iterate though all the tasks in a cgroup
2497 * @scan: struct cgroup_scanner containing arguments for the scan
2498 *
2499 * Arguments include pointers to callback functions test_task() and
2500 * process_task().
2501 * Iterate through all the tasks in a cgroup, calling test_task() for each,
2502 * and if it returns true, call process_task() for it also.
2503 * The test_task pointer may be NULL, meaning always true (select all tasks).
2504 * Effectively duplicates cgroup_iter_{start,next,end}()
2505 * but does not lock css_set_lock for the call to process_task().
2506 * The struct cgroup_scanner may be embedded in any structure of the caller's
2507 * creation.
2508 * It is guaranteed that process_task() will act on every task that
2509 * is a member of the cgroup for the duration of this call. This
2510 * function may or may not call process_task() for tasks that exit
2511 * or move to a different cgroup during the call, or are forked or
2512 * move into the cgroup during the call.
2513 *
2514 * Note that test_task() may be called with locks held, and may in some
2515 * situations be called multiple times for the same task, so it should
2516 * be cheap.
2517 * If the heap pointer in the struct cgroup_scanner is non-NULL, a heap has been
2518 * pre-allocated and will be used for heap operations (and its "gt" member will
2519 * be overwritten), else a temporary heap will be used (allocation of which
2520 * may cause this function to fail).
2521 */
2522int cgroup_scan_tasks(struct cgroup_scanner *scan)
2523{
2524 int retval, i;
2525 struct cgroup_iter it;
2526 struct task_struct *p, *dropped;
2527 /* Never dereference latest_task, since it's not refcounted */
2528 struct task_struct *latest_task = NULL;
2529 struct ptr_heap tmp_heap;
2530 struct ptr_heap *heap;
2531 struct timespec latest_time = { 0, 0 };
2532
2533 if (scan->heap) {
2534 /* The caller supplied our heap and pre-allocated its memory */
2535 heap = scan->heap;
2536 heap->gt = &started_after;
2537 } else {
2538 /* We need to allocate our own heap memory */
2539 heap = &tmp_heap;
2540 retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after);
2541 if (retval)
2542 /* cannot allocate the heap */
2543 return retval;
2544 }
2545
2546 again:
2547 /*
2548 * Scan tasks in the cgroup, using the scanner's "test_task" callback
2549 * to determine which are of interest, and using the scanner's
2550 * "process_task" callback to process any of them that need an update.
2551 * Since we don't want to hold any locks during the task updates,
2552 * gather tasks to be processed in a heap structure.
2553 * The heap is sorted by descending task start time.
2554 * If the statically-sized heap fills up, we overflow tasks that
2555 * started later, and in future iterations only consider tasks that
2556 * started after the latest task in the previous pass. This
2557 * guarantees forward progress and that we don't miss any tasks.
2558 */
2559 heap->size = 0;
2560 cgroup_iter_start(scan->cg, &it);
2561 while ((p = cgroup_iter_next(scan->cg, &it))) {
2562 /*
2563 * Only affect tasks that qualify per the caller's callback,
2564 * if he provided one
2565 */
2566 if (scan->test_task && !scan->test_task(p, scan))
2567 continue;
2568 /*
2569 * Only process tasks that started after the last task
2570 * we processed
2571 */
2572 if (!started_after_time(p, &latest_time, latest_task))
2573 continue;
2574 dropped = heap_insert(heap, p);
2575 if (dropped == NULL) {
2576 /*
2577 * The new task was inserted; the heap wasn't
2578 * previously full
2579 */
2580 get_task_struct(p);
2581 } else if (dropped != p) {
2582 /*
2583 * The new task was inserted, and pushed out a
2584 * different task
2585 */
2586 get_task_struct(p);
2587 put_task_struct(dropped);
2588 }
2589 /*
2590 * Else the new task was newer than anything already in
2591 * the heap and wasn't inserted
2592 */
2593 }
2594 cgroup_iter_end(scan->cg, &it);
2595
2596 if (heap->size) {
2597 for (i = 0; i < heap->size; i++) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07002598 struct task_struct *q = heap->ptrs[i];
Cliff Wickman31a7df02008-02-07 00:14:42 -08002599 if (i == 0) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07002600 latest_time = q->start_time;
2601 latest_task = q;
Cliff Wickman31a7df02008-02-07 00:14:42 -08002602 }
2603 /* Process the task per the caller's callback */
Paul Jackson4fe91d52008-04-29 00:59:55 -07002604 scan->process_task(q, scan);
2605 put_task_struct(q);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002606 }
2607 /*
2608 * If we had to process any tasks at all, scan again
2609 * in case some of them were in the middle of forking
2610 * children that didn't get processed.
2611 * Not the most efficient way to do it, but it avoids
2612 * having to take callback_mutex in the fork path
2613 */
2614 goto again;
2615 }
2616 if (heap == &tmp_heap)
2617 heap_free(&tmp_heap);
2618 return 0;
2619}
2620
Paul Menage817929e2007-10-18 23:39:36 -07002621/*
Ben Blum102a7752009-09-23 15:56:26 -07002622 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07002623 *
2624 * Reading this file can return large amounts of data if a cgroup has
2625 * *lots* of attached tasks. So it may need several calls to read(),
2626 * but we cannot guarantee that the information we produce is correct
2627 * unless we produce it entirely atomically.
2628 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07002629 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07002630
2631/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07002632 * The following two functions "fix" the issue where there are more pids
2633 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
2634 * TODO: replace with a kernel-wide solution to this problem
2635 */
2636#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
2637static void *pidlist_allocate(int count)
2638{
2639 if (PIDLIST_TOO_LARGE(count))
2640 return vmalloc(count * sizeof(pid_t));
2641 else
2642 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
2643}
2644static void pidlist_free(void *p)
2645{
2646 if (is_vmalloc_addr(p))
2647 vfree(p);
2648 else
2649 kfree(p);
2650}
2651static void *pidlist_resize(void *p, int newcount)
2652{
2653 void *newlist;
2654 /* note: if new alloc fails, old p will still be valid either way */
2655 if (is_vmalloc_addr(p)) {
2656 newlist = vmalloc(newcount * sizeof(pid_t));
2657 if (!newlist)
2658 return NULL;
2659 memcpy(newlist, p, newcount * sizeof(pid_t));
2660 vfree(p);
2661 } else {
2662 newlist = krealloc(p, newcount * sizeof(pid_t), GFP_KERNEL);
2663 }
2664 return newlist;
2665}
2666
2667/*
Ben Blum102a7752009-09-23 15:56:26 -07002668 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
2669 * If the new stripped list is sufficiently smaller and there's enough memory
2670 * to allocate a new buffer, will let go of the unneeded memory. Returns the
2671 * number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07002672 */
Ben Blum102a7752009-09-23 15:56:26 -07002673/* is the size difference enough that we should re-allocate the array? */
2674#define PIDLIST_REALLOC_DIFFERENCE(old, new) ((old) - PAGE_SIZE >= (new))
2675static int pidlist_uniq(pid_t **p, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002676{
Ben Blum102a7752009-09-23 15:56:26 -07002677 int src, dest = 1;
2678 pid_t *list = *p;
2679 pid_t *newlist;
2680
2681 /*
2682 * we presume the 0th element is unique, so i starts at 1. trivial
2683 * edge cases first; no work needs to be done for either
2684 */
2685 if (length == 0 || length == 1)
2686 return length;
2687 /* src and dest walk down the list; dest counts unique elements */
2688 for (src = 1; src < length; src++) {
2689 /* find next unique element */
2690 while (list[src] == list[src-1]) {
2691 src++;
2692 if (src == length)
2693 goto after;
2694 }
2695 /* dest always points to where the next unique element goes */
2696 list[dest] = list[src];
2697 dest++;
2698 }
2699after:
2700 /*
2701 * if the length difference is large enough, we want to allocate a
2702 * smaller buffer to save memory. if this fails due to out of memory,
2703 * we'll just stay with what we've got.
2704 */
2705 if (PIDLIST_REALLOC_DIFFERENCE(length, dest)) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07002706 newlist = pidlist_resize(list, dest);
Ben Blum102a7752009-09-23 15:56:26 -07002707 if (newlist)
2708 *p = newlist;
2709 }
2710 return dest;
2711}
2712
2713static int cmppid(const void *a, const void *b)
2714{
2715 return *(pid_t *)a - *(pid_t *)b;
2716}
2717
2718/*
Ben Blum72a8cb32009-09-23 15:56:27 -07002719 * find the appropriate pidlist for our purpose (given procs vs tasks)
2720 * returns with the lock on that pidlist already held, and takes care
2721 * of the use count, or returns NULL with no locks held if we're out of
2722 * memory.
2723 */
2724static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
2725 enum cgroup_filetype type)
2726{
2727 struct cgroup_pidlist *l;
2728 /* don't need task_nsproxy() if we're looking at ourself */
Li Zefanb70cc5f2010-03-10 15:22:12 -08002729 struct pid_namespace *ns = current->nsproxy->pid_ns;
2730
Ben Blum72a8cb32009-09-23 15:56:27 -07002731 /*
2732 * We can't drop the pidlist_mutex before taking the l->mutex in case
2733 * the last ref-holder is trying to remove l from the list at the same
2734 * time. Holding the pidlist_mutex precludes somebody taking whichever
2735 * list we find out from under us - compare release_pid_array().
2736 */
2737 mutex_lock(&cgrp->pidlist_mutex);
2738 list_for_each_entry(l, &cgrp->pidlists, links) {
2739 if (l->key.type == type && l->key.ns == ns) {
Ben Blum72a8cb32009-09-23 15:56:27 -07002740 /* make sure l doesn't vanish out from under us */
2741 down_write(&l->mutex);
2742 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07002743 return l;
2744 }
2745 }
2746 /* entry not found; create a new one */
2747 l = kmalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
2748 if (!l) {
2749 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07002750 return l;
2751 }
2752 init_rwsem(&l->mutex);
2753 down_write(&l->mutex);
2754 l->key.type = type;
Li Zefanb70cc5f2010-03-10 15:22:12 -08002755 l->key.ns = get_pid_ns(ns);
Ben Blum72a8cb32009-09-23 15:56:27 -07002756 l->use_count = 0; /* don't increment here */
2757 l->list = NULL;
2758 l->owner = cgrp;
2759 list_add(&l->links, &cgrp->pidlists);
2760 mutex_unlock(&cgrp->pidlist_mutex);
2761 return l;
2762}
2763
2764/*
Ben Blum102a7752009-09-23 15:56:26 -07002765 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
2766 */
Ben Blum72a8cb32009-09-23 15:56:27 -07002767static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
2768 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07002769{
2770 pid_t *array;
2771 int length;
2772 int pid, n = 0; /* used for populating the array */
Paul Menage817929e2007-10-18 23:39:36 -07002773 struct cgroup_iter it;
2774 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07002775 struct cgroup_pidlist *l;
2776
2777 /*
2778 * If cgroup gets more users after we read count, we won't have
2779 * enough space - tough. This race is indistinguishable to the
2780 * caller from the case that the additional cgroup users didn't
2781 * show up until sometime later on.
2782 */
2783 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07002784 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07002785 if (!array)
2786 return -ENOMEM;
2787 /* now, populate the array */
Paul Menagebd89aab2007-10-18 23:40:44 -07002788 cgroup_iter_start(cgrp, &it);
2789 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Ben Blum102a7752009-09-23 15:56:26 -07002790 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07002791 break;
Ben Blum102a7752009-09-23 15:56:26 -07002792 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07002793 if (type == CGROUP_FILE_PROCS)
2794 pid = task_tgid_vnr(tsk);
2795 else
2796 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07002797 if (pid > 0) /* make sure to only use valid results */
2798 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07002799 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002800 cgroup_iter_end(cgrp, &it);
Ben Blum102a7752009-09-23 15:56:26 -07002801 length = n;
2802 /* now sort & (if procs) strip out duplicates */
2803 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07002804 if (type == CGROUP_FILE_PROCS)
Ben Blum102a7752009-09-23 15:56:26 -07002805 length = pidlist_uniq(&array, length);
Ben Blum72a8cb32009-09-23 15:56:27 -07002806 l = cgroup_pidlist_find(cgrp, type);
2807 if (!l) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07002808 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07002809 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07002810 }
Ben Blum72a8cb32009-09-23 15:56:27 -07002811 /* store array, freeing old if necessary - lock already held */
Ben Blumd1d9fd32009-09-23 15:56:28 -07002812 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07002813 l->list = array;
2814 l->length = length;
2815 l->use_count++;
2816 up_write(&l->mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07002817 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07002818 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002819}
2820
Balbir Singh846c7bb2007-10-18 23:39:44 -07002821/**
Li Zefana043e3b2008-02-23 15:24:09 -08002822 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07002823 * @stats: cgroupstats to fill information into
2824 * @dentry: A dentry entry belonging to the cgroup for which stats have
2825 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08002826 *
2827 * Build and fill cgroupstats so that taskstats can export it to user
2828 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07002829 */
2830int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
2831{
2832 int ret = -EINVAL;
Paul Menagebd89aab2007-10-18 23:40:44 -07002833 struct cgroup *cgrp;
Balbir Singh846c7bb2007-10-18 23:39:44 -07002834 struct cgroup_iter it;
2835 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08002836
Balbir Singh846c7bb2007-10-18 23:39:44 -07002837 /*
Li Zefan33d283b2008-11-19 15:36:48 -08002838 * Validate dentry by checking the superblock operations,
2839 * and make sure it's a directory.
Balbir Singh846c7bb2007-10-18 23:39:44 -07002840 */
Li Zefan33d283b2008-11-19 15:36:48 -08002841 if (dentry->d_sb->s_op != &cgroup_ops ||
2842 !S_ISDIR(dentry->d_inode->i_mode))
Balbir Singh846c7bb2007-10-18 23:39:44 -07002843 goto err;
2844
2845 ret = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07002846 cgrp = dentry->d_fsdata;
Balbir Singh846c7bb2007-10-18 23:39:44 -07002847
Paul Menagebd89aab2007-10-18 23:40:44 -07002848 cgroup_iter_start(cgrp, &it);
2849 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07002850 switch (tsk->state) {
2851 case TASK_RUNNING:
2852 stats->nr_running++;
2853 break;
2854 case TASK_INTERRUPTIBLE:
2855 stats->nr_sleeping++;
2856 break;
2857 case TASK_UNINTERRUPTIBLE:
2858 stats->nr_uninterruptible++;
2859 break;
2860 case TASK_STOPPED:
2861 stats->nr_stopped++;
2862 break;
2863 default:
2864 if (delayacct_is_task_waiting_on_io(tsk))
2865 stats->nr_io_wait++;
2866 break;
2867 }
2868 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002869 cgroup_iter_end(cgrp, &it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07002870
Balbir Singh846c7bb2007-10-18 23:39:44 -07002871err:
2872 return ret;
2873}
2874
Paul Menage8f3ff202009-09-23 15:56:25 -07002875
Paul Menagecc31edc2008-10-18 20:28:04 -07002876/*
Ben Blum102a7752009-09-23 15:56:26 -07002877 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07002878 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07002879 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07002880 */
2881
Ben Blum102a7752009-09-23 15:56:26 -07002882static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07002883{
2884 /*
2885 * Initially we receive a position value that corresponds to
2886 * one more than the last pid shown (or 0 on the first call or
2887 * after a seek to the start). Use a binary-search to find the
2888 * next pid to display, if any
2889 */
Ben Blum102a7752009-09-23 15:56:26 -07002890 struct cgroup_pidlist *l = s->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07002891 int index = 0, pid = *pos;
2892 int *iter;
2893
Ben Blum102a7752009-09-23 15:56:26 -07002894 down_read(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07002895 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07002896 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11002897
Paul Menagecc31edc2008-10-18 20:28:04 -07002898 while (index < end) {
2899 int mid = (index + end) / 2;
Ben Blum102a7752009-09-23 15:56:26 -07002900 if (l->list[mid] == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07002901 index = mid;
2902 break;
Ben Blum102a7752009-09-23 15:56:26 -07002903 } else if (l->list[mid] <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07002904 index = mid + 1;
2905 else
2906 end = mid;
2907 }
2908 }
2909 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07002910 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07002911 return NULL;
2912 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07002913 iter = l->list + index;
Paul Menagecc31edc2008-10-18 20:28:04 -07002914 *pos = *iter;
2915 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002916}
2917
Ben Blum102a7752009-09-23 15:56:26 -07002918static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07002919{
Ben Blum102a7752009-09-23 15:56:26 -07002920 struct cgroup_pidlist *l = s->private;
2921 up_read(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07002922}
2923
Ben Blum102a7752009-09-23 15:56:26 -07002924static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07002925{
Ben Blum102a7752009-09-23 15:56:26 -07002926 struct cgroup_pidlist *l = s->private;
2927 pid_t *p = v;
2928 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07002929 /*
2930 * Advance to the next pid in the array. If this goes off the
2931 * end, we're done
2932 */
2933 p++;
2934 if (p >= end) {
2935 return NULL;
2936 } else {
2937 *pos = *p;
2938 return p;
2939 }
2940}
2941
Ben Blum102a7752009-09-23 15:56:26 -07002942static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07002943{
2944 return seq_printf(s, "%d\n", *(int *)v);
2945}
2946
Ben Blum102a7752009-09-23 15:56:26 -07002947/*
2948 * seq_operations functions for iterating on pidlists through seq_file -
2949 * independent of whether it's tasks or procs
2950 */
2951static const struct seq_operations cgroup_pidlist_seq_operations = {
2952 .start = cgroup_pidlist_start,
2953 .stop = cgroup_pidlist_stop,
2954 .next = cgroup_pidlist_next,
2955 .show = cgroup_pidlist_show,
Paul Menagecc31edc2008-10-18 20:28:04 -07002956};
2957
Ben Blum102a7752009-09-23 15:56:26 -07002958static void cgroup_release_pid_array(struct cgroup_pidlist *l)
Paul Menagecc31edc2008-10-18 20:28:04 -07002959{
Ben Blum72a8cb32009-09-23 15:56:27 -07002960 /*
2961 * the case where we're the last user of this particular pidlist will
2962 * have us remove it from the cgroup's list, which entails taking the
2963 * mutex. since in pidlist_find the pidlist->lock depends on cgroup->
2964 * pidlist_mutex, we have to take pidlist_mutex first.
2965 */
2966 mutex_lock(&l->owner->pidlist_mutex);
Ben Blum102a7752009-09-23 15:56:26 -07002967 down_write(&l->mutex);
2968 BUG_ON(!l->use_count);
2969 if (!--l->use_count) {
Ben Blum72a8cb32009-09-23 15:56:27 -07002970 /* we're the last user if refcount is 0; remove and free */
2971 list_del(&l->links);
2972 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blumd1d9fd32009-09-23 15:56:28 -07002973 pidlist_free(l->list);
Ben Blum72a8cb32009-09-23 15:56:27 -07002974 put_pid_ns(l->key.ns);
2975 up_write(&l->mutex);
2976 kfree(l);
2977 return;
Paul Menagecc31edc2008-10-18 20:28:04 -07002978 }
Ben Blum72a8cb32009-09-23 15:56:27 -07002979 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blum102a7752009-09-23 15:56:26 -07002980 up_write(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07002981}
2982
Ben Blum102a7752009-09-23 15:56:26 -07002983static int cgroup_pidlist_release(struct inode *inode, struct file *file)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002984{
Ben Blum102a7752009-09-23 15:56:26 -07002985 struct cgroup_pidlist *l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002986 if (!(file->f_mode & FMODE_READ))
2987 return 0;
Ben Blum102a7752009-09-23 15:56:26 -07002988 /*
2989 * the seq_file will only be initialized if the file was opened for
2990 * reading; hence we check if it's not null only in that case.
2991 */
2992 l = ((struct seq_file *)file->private_data)->private;
2993 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07002994 return seq_release(inode, file);
2995}
2996
Ben Blum102a7752009-09-23 15:56:26 -07002997static const struct file_operations cgroup_pidlist_operations = {
Paul Menagecc31edc2008-10-18 20:28:04 -07002998 .read = seq_read,
2999 .llseek = seq_lseek,
3000 .write = cgroup_file_write,
Ben Blum102a7752009-09-23 15:56:26 -07003001 .release = cgroup_pidlist_release,
Paul Menagecc31edc2008-10-18 20:28:04 -07003002};
3003
3004/*
Ben Blum102a7752009-09-23 15:56:26 -07003005 * The following functions handle opens on a file that displays a pidlist
3006 * (tasks or procs). Prepare an array of the process/thread IDs of whoever's
3007 * in the cgroup.
Paul Menagecc31edc2008-10-18 20:28:04 -07003008 */
Ben Blum102a7752009-09-23 15:56:26 -07003009/* helper function for the two below it */
Ben Blum72a8cb32009-09-23 15:56:27 -07003010static int cgroup_pidlist_open(struct file *file, enum cgroup_filetype type)
Paul Menagecc31edc2008-10-18 20:28:04 -07003011{
3012 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Ben Blum72a8cb32009-09-23 15:56:27 -07003013 struct cgroup_pidlist *l;
Paul Menagecc31edc2008-10-18 20:28:04 -07003014 int retval;
3015
3016 /* Nothing to do for write-only files */
3017 if (!(file->f_mode & FMODE_READ))
3018 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003019
Ben Blum102a7752009-09-23 15:56:26 -07003020 /* have the array populated */
Ben Blum72a8cb32009-09-23 15:56:27 -07003021 retval = pidlist_array_load(cgrp, type, &l);
Ben Blum102a7752009-09-23 15:56:26 -07003022 if (retval)
3023 return retval;
3024 /* configure file information */
3025 file->f_op = &cgroup_pidlist_operations;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003026
Ben Blum102a7752009-09-23 15:56:26 -07003027 retval = seq_open(file, &cgroup_pidlist_seq_operations);
Paul Menagecc31edc2008-10-18 20:28:04 -07003028 if (retval) {
Ben Blum102a7752009-09-23 15:56:26 -07003029 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07003030 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003031 }
Ben Blum102a7752009-09-23 15:56:26 -07003032 ((struct seq_file *)file->private_data)->private = l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003033 return 0;
3034}
Ben Blum102a7752009-09-23 15:56:26 -07003035static int cgroup_tasks_open(struct inode *unused, struct file *file)
3036{
Ben Blum72a8cb32009-09-23 15:56:27 -07003037 return cgroup_pidlist_open(file, CGROUP_FILE_TASKS);
Ben Blum102a7752009-09-23 15:56:26 -07003038}
3039static int cgroup_procs_open(struct inode *unused, struct file *file)
3040{
Ben Blum72a8cb32009-09-23 15:56:27 -07003041 return cgroup_pidlist_open(file, CGROUP_FILE_PROCS);
Ben Blum102a7752009-09-23 15:56:26 -07003042}
Paul Menagebbcb81d2007-10-18 23:39:32 -07003043
Paul Menagebd89aab2007-10-18 23:40:44 -07003044static u64 cgroup_read_notify_on_release(struct cgroup *cgrp,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003045 struct cftype *cft)
3046{
Paul Menagebd89aab2007-10-18 23:40:44 -07003047 return notify_on_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003048}
3049
Paul Menage6379c102008-07-25 01:47:01 -07003050static int cgroup_write_notify_on_release(struct cgroup *cgrp,
3051 struct cftype *cft,
3052 u64 val)
3053{
3054 clear_bit(CGRP_RELEASABLE, &cgrp->flags);
3055 if (val)
3056 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3057 else
3058 clear_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3059 return 0;
3060}
3061
Paul Menagebbcb81d2007-10-18 23:39:32 -07003062/*
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003063 * Unregister event and free resources.
3064 *
3065 * Gets called from workqueue.
3066 */
3067static void cgroup_event_remove(struct work_struct *work)
3068{
3069 struct cgroup_event *event = container_of(work, struct cgroup_event,
3070 remove);
3071 struct cgroup *cgrp = event->cgrp;
3072
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003073 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3074
3075 eventfd_ctx_put(event->eventfd);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003076 kfree(event);
Kirill A. Shutemova0a4db52010-03-10 15:22:34 -08003077 dput(cgrp->dentry);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003078}
3079
3080/*
3081 * Gets called on POLLHUP on eventfd when user closes it.
3082 *
3083 * Called with wqh->lock held and interrupts disabled.
3084 */
3085static int cgroup_event_wake(wait_queue_t *wait, unsigned mode,
3086 int sync, void *key)
3087{
3088 struct cgroup_event *event = container_of(wait,
3089 struct cgroup_event, wait);
3090 struct cgroup *cgrp = event->cgrp;
3091 unsigned long flags = (unsigned long)key;
3092
3093 if (flags & POLLHUP) {
Changli Gaoa93d2f172010-05-07 14:33:26 +08003094 __remove_wait_queue(event->wqh, &event->wait);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003095 spin_lock(&cgrp->event_list_lock);
3096 list_del(&event->list);
3097 spin_unlock(&cgrp->event_list_lock);
3098 /*
3099 * We are in atomic context, but cgroup_event_remove() may
3100 * sleep, so we have to call it in workqueue.
3101 */
3102 schedule_work(&event->remove);
3103 }
3104
3105 return 0;
3106}
3107
3108static void cgroup_event_ptable_queue_proc(struct file *file,
3109 wait_queue_head_t *wqh, poll_table *pt)
3110{
3111 struct cgroup_event *event = container_of(pt,
3112 struct cgroup_event, pt);
3113
3114 event->wqh = wqh;
3115 add_wait_queue(wqh, &event->wait);
3116}
3117
3118/*
3119 * Parse input and register new cgroup event handler.
3120 *
3121 * Input must be in format '<event_fd> <control_fd> <args>'.
3122 * Interpretation of args is defined by control file implementation.
3123 */
3124static int cgroup_write_event_control(struct cgroup *cgrp, struct cftype *cft,
3125 const char *buffer)
3126{
3127 struct cgroup_event *event = NULL;
3128 unsigned int efd, cfd;
3129 struct file *efile = NULL;
3130 struct file *cfile = NULL;
3131 char *endp;
3132 int ret;
3133
3134 efd = simple_strtoul(buffer, &endp, 10);
3135 if (*endp != ' ')
3136 return -EINVAL;
3137 buffer = endp + 1;
3138
3139 cfd = simple_strtoul(buffer, &endp, 10);
3140 if ((*endp != ' ') && (*endp != '\0'))
3141 return -EINVAL;
3142 buffer = endp + 1;
3143
3144 event = kzalloc(sizeof(*event), GFP_KERNEL);
3145 if (!event)
3146 return -ENOMEM;
3147 event->cgrp = cgrp;
3148 INIT_LIST_HEAD(&event->list);
3149 init_poll_funcptr(&event->pt, cgroup_event_ptable_queue_proc);
3150 init_waitqueue_func_entry(&event->wait, cgroup_event_wake);
3151 INIT_WORK(&event->remove, cgroup_event_remove);
3152
3153 efile = eventfd_fget(efd);
3154 if (IS_ERR(efile)) {
3155 ret = PTR_ERR(efile);
3156 goto fail;
3157 }
3158
3159 event->eventfd = eventfd_ctx_fileget(efile);
3160 if (IS_ERR(event->eventfd)) {
3161 ret = PTR_ERR(event->eventfd);
3162 goto fail;
3163 }
3164
3165 cfile = fget(cfd);
3166 if (!cfile) {
3167 ret = -EBADF;
3168 goto fail;
3169 }
3170
3171 /* the process need read permission on control file */
3172 ret = file_permission(cfile, MAY_READ);
3173 if (ret < 0)
3174 goto fail;
3175
3176 event->cft = __file_cft(cfile);
3177 if (IS_ERR(event->cft)) {
3178 ret = PTR_ERR(event->cft);
3179 goto fail;
3180 }
3181
3182 if (!event->cft->register_event || !event->cft->unregister_event) {
3183 ret = -EINVAL;
3184 goto fail;
3185 }
3186
3187 ret = event->cft->register_event(cgrp, event->cft,
3188 event->eventfd, buffer);
3189 if (ret)
3190 goto fail;
3191
3192 if (efile->f_op->poll(efile, &event->pt) & POLLHUP) {
3193 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3194 ret = 0;
3195 goto fail;
3196 }
3197
Kirill A. Shutemova0a4db52010-03-10 15:22:34 -08003198 /*
3199 * Events should be removed after rmdir of cgroup directory, but before
3200 * destroying subsystem state objects. Let's take reference to cgroup
3201 * directory dentry to do that.
3202 */
3203 dget(cgrp->dentry);
3204
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003205 spin_lock(&cgrp->event_list_lock);
3206 list_add(&event->list, &cgrp->event_list);
3207 spin_unlock(&cgrp->event_list_lock);
3208
3209 fput(cfile);
3210 fput(efile);
3211
3212 return 0;
3213
3214fail:
3215 if (cfile)
3216 fput(cfile);
3217
3218 if (event && event->eventfd && !IS_ERR(event->eventfd))
3219 eventfd_ctx_put(event->eventfd);
3220
3221 if (!IS_ERR_OR_NULL(efile))
3222 fput(efile);
3223
3224 kfree(event);
3225
3226 return ret;
3227}
3228
Daniel Lezcano97978e62010-10-27 15:33:35 -07003229static u64 cgroup_clone_children_read(struct cgroup *cgrp,
3230 struct cftype *cft)
3231{
3232 return clone_children(cgrp);
3233}
3234
3235static int cgroup_clone_children_write(struct cgroup *cgrp,
3236 struct cftype *cft,
3237 u64 val)
3238{
3239 if (val)
3240 set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3241 else
3242 clear_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3243 return 0;
3244}
3245
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003246/*
Paul Menagebbcb81d2007-10-18 23:39:32 -07003247 * for the common functions, 'private' gives the type of file
3248 */
Ben Blum102a7752009-09-23 15:56:26 -07003249/* for hysterical raisins, we can't put this on the older files */
3250#define CGROUP_FILE_GENERIC_PREFIX "cgroup."
Paul Menage81a6a5c2007-10-18 23:39:38 -07003251static struct cftype files[] = {
3252 {
3253 .name = "tasks",
3254 .open = cgroup_tasks_open,
Paul Menageaf351022008-07-25 01:47:01 -07003255 .write_u64 = cgroup_tasks_write,
Ben Blum102a7752009-09-23 15:56:26 -07003256 .release = cgroup_pidlist_release,
Li Zefan099fca32009-04-02 16:57:29 -07003257 .mode = S_IRUGO | S_IWUSR,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003258 },
Ben Blum102a7752009-09-23 15:56:26 -07003259 {
3260 .name = CGROUP_FILE_GENERIC_PREFIX "procs",
3261 .open = cgroup_procs_open,
3262 /* .write_u64 = cgroup_procs_write, TODO */
3263 .release = cgroup_pidlist_release,
3264 .mode = S_IRUGO,
3265 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003266 {
3267 .name = "notify_on_release",
Paul Menagef4c753b2008-04-29 00:59:56 -07003268 .read_u64 = cgroup_read_notify_on_release,
Paul Menage6379c102008-07-25 01:47:01 -07003269 .write_u64 = cgroup_write_notify_on_release,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003270 },
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003271 {
3272 .name = CGROUP_FILE_GENERIC_PREFIX "event_control",
3273 .write_string = cgroup_write_event_control,
3274 .mode = S_IWUGO,
3275 },
Daniel Lezcano97978e62010-10-27 15:33:35 -07003276 {
3277 .name = "cgroup.clone_children",
3278 .read_u64 = cgroup_clone_children_read,
3279 .write_u64 = cgroup_clone_children_write,
3280 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003281};
3282
3283static struct cftype cft_release_agent = {
3284 .name = "release_agent",
Paul Menagee788e0662008-07-25 01:46:59 -07003285 .read_seq_string = cgroup_release_agent_show,
3286 .write_string = cgroup_release_agent_write,
3287 .max_write_len = PATH_MAX,
Paul Menagebbcb81d2007-10-18 23:39:32 -07003288};
3289
Paul Menagebd89aab2007-10-18 23:40:44 -07003290static int cgroup_populate_dir(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003291{
3292 int err;
3293 struct cgroup_subsys *ss;
3294
3295 /* First clear out any existing files */
Paul Menagebd89aab2007-10-18 23:40:44 -07003296 cgroup_clear_directory(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003297
Paul Menagebd89aab2007-10-18 23:40:44 -07003298 err = cgroup_add_files(cgrp, NULL, files, ARRAY_SIZE(files));
Paul Menagebbcb81d2007-10-18 23:39:32 -07003299 if (err < 0)
3300 return err;
3301
Paul Menagebd89aab2007-10-18 23:40:44 -07003302 if (cgrp == cgrp->top_cgroup) {
3303 if ((err = cgroup_add_file(cgrp, NULL, &cft_release_agent)) < 0)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003304 return err;
3305 }
3306
Paul Menagebd89aab2007-10-18 23:40:44 -07003307 for_each_subsys(cgrp->root, ss) {
3308 if (ss->populate && (err = ss->populate(ss, cgrp)) < 0)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003309 return err;
3310 }
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003311 /* This cgroup is ready now */
3312 for_each_subsys(cgrp->root, ss) {
3313 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3314 /*
3315 * Update id->css pointer and make this css visible from
3316 * CSS ID functions. This pointer will be dereferened
3317 * from RCU-read-side without locks.
3318 */
3319 if (css->id)
3320 rcu_assign_pointer(css->id->css, css);
3321 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003322
3323 return 0;
3324}
3325
3326static void init_cgroup_css(struct cgroup_subsys_state *css,
3327 struct cgroup_subsys *ss,
Paul Menagebd89aab2007-10-18 23:40:44 -07003328 struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003329{
Paul Menagebd89aab2007-10-18 23:40:44 -07003330 css->cgroup = cgrp;
Paul Menagee7c5ec92009-01-07 18:08:38 -08003331 atomic_set(&css->refcnt, 1);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003332 css->flags = 0;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003333 css->id = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07003334 if (cgrp == dummytop)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003335 set_bit(CSS_ROOT, &css->flags);
Paul Menagebd89aab2007-10-18 23:40:44 -07003336 BUG_ON(cgrp->subsys[ss->subsys_id]);
3337 cgrp->subsys[ss->subsys_id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003338}
3339
Paul Menage999cd8a2009-01-07 18:08:36 -08003340static void cgroup_lock_hierarchy(struct cgroupfs_root *root)
3341{
3342 /* We need to take each hierarchy_mutex in a consistent order */
3343 int i;
3344
Ben Blumaae8aab2010-03-10 15:22:07 -08003345 /*
3346 * No worry about a race with rebind_subsystems that might mess up the
3347 * locking order, since both parties are under cgroup_mutex.
3348 */
Paul Menage999cd8a2009-01-07 18:08:36 -08003349 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3350 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08003351 if (ss == NULL)
3352 continue;
Paul Menage999cd8a2009-01-07 18:08:36 -08003353 if (ss->root == root)
Li Zefancfebe562009-02-11 13:04:36 -08003354 mutex_lock(&ss->hierarchy_mutex);
Paul Menage999cd8a2009-01-07 18:08:36 -08003355 }
3356}
3357
3358static void cgroup_unlock_hierarchy(struct cgroupfs_root *root)
3359{
3360 int i;
3361
3362 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3363 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08003364 if (ss == NULL)
3365 continue;
Paul Menage999cd8a2009-01-07 18:08:36 -08003366 if (ss->root == root)
3367 mutex_unlock(&ss->hierarchy_mutex);
3368 }
3369}
3370
Paul Menageddbcc7e2007-10-18 23:39:30 -07003371/*
Li Zefana043e3b2008-02-23 15:24:09 -08003372 * cgroup_create - create a cgroup
3373 * @parent: cgroup that will be parent of the new cgroup
3374 * @dentry: dentry of the new cgroup
3375 * @mode: mode to set on new inode
Paul Menageddbcc7e2007-10-18 23:39:30 -07003376 *
Li Zefana043e3b2008-02-23 15:24:09 -08003377 * Must be called with the mutex on the parent inode held
Paul Menageddbcc7e2007-10-18 23:39:30 -07003378 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07003379static long cgroup_create(struct cgroup *parent, struct dentry *dentry,
Li Zefan099fca32009-04-02 16:57:29 -07003380 mode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003381{
Paul Menagebd89aab2007-10-18 23:40:44 -07003382 struct cgroup *cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003383 struct cgroupfs_root *root = parent->root;
3384 int err = 0;
3385 struct cgroup_subsys *ss;
3386 struct super_block *sb = root->sb;
3387
Paul Menagebd89aab2007-10-18 23:40:44 -07003388 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
3389 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003390 return -ENOMEM;
3391
3392 /* Grab a reference on the superblock so the hierarchy doesn't
3393 * get deleted on unmount if there are child cgroups. This
3394 * can be done outside cgroup_mutex, since the sb can't
3395 * disappear while someone has an open control file on the
3396 * fs */
3397 atomic_inc(&sb->s_active);
3398
3399 mutex_lock(&cgroup_mutex);
3400
Paul Menagecc31edc2008-10-18 20:28:04 -07003401 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003402
Paul Menagebd89aab2007-10-18 23:40:44 -07003403 cgrp->parent = parent;
3404 cgrp->root = parent->root;
3405 cgrp->top_cgroup = parent->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003406
Li Zefanb6abdb02008-03-04 14:28:19 -08003407 if (notify_on_release(parent))
3408 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3409
Daniel Lezcano97978e62010-10-27 15:33:35 -07003410 if (clone_children(parent))
3411 set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3412
Paul Menageddbcc7e2007-10-18 23:39:30 -07003413 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07003414 struct cgroup_subsys_state *css = ss->create(ss, cgrp);
Li Zefan4528fd02010-02-02 13:44:10 -08003415
Paul Menageddbcc7e2007-10-18 23:39:30 -07003416 if (IS_ERR(css)) {
3417 err = PTR_ERR(css);
3418 goto err_destroy;
3419 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003420 init_cgroup_css(css, ss, cgrp);
Li Zefan4528fd02010-02-02 13:44:10 -08003421 if (ss->use_id) {
3422 err = alloc_css_id(ss, parent, cgrp);
3423 if (err)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003424 goto err_destroy;
Li Zefan4528fd02010-02-02 13:44:10 -08003425 }
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003426 /* At error, ->destroy() callback has to free assigned ID. */
Daniel Lezcano97978e62010-10-27 15:33:35 -07003427 if (clone_children(parent) && ss->post_clone)
3428 ss->post_clone(ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003429 }
3430
Paul Menage999cd8a2009-01-07 18:08:36 -08003431 cgroup_lock_hierarchy(root);
Paul Menagebd89aab2007-10-18 23:40:44 -07003432 list_add(&cgrp->sibling, &cgrp->parent->children);
Paul Menage999cd8a2009-01-07 18:08:36 -08003433 cgroup_unlock_hierarchy(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003434 root->number_of_cgroups++;
3435
Paul Menagebd89aab2007-10-18 23:40:44 -07003436 err = cgroup_create_dir(cgrp, dentry, mode);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003437 if (err < 0)
3438 goto err_remove;
3439
3440 /* The cgroup directory was pre-locked for us */
Paul Menagebd89aab2007-10-18 23:40:44 -07003441 BUG_ON(!mutex_is_locked(&cgrp->dentry->d_inode->i_mutex));
Paul Menageddbcc7e2007-10-18 23:39:30 -07003442
Paul Menagebd89aab2007-10-18 23:40:44 -07003443 err = cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003444 /* If err < 0, we have a half-filled directory - oh well ;) */
3445
3446 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07003447 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003448
3449 return 0;
3450
3451 err_remove:
3452
KAMEZAWA Hiroyukibaef99a2009-01-29 14:25:10 -08003453 cgroup_lock_hierarchy(root);
Paul Menagebd89aab2007-10-18 23:40:44 -07003454 list_del(&cgrp->sibling);
KAMEZAWA Hiroyukibaef99a2009-01-29 14:25:10 -08003455 cgroup_unlock_hierarchy(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003456 root->number_of_cgroups--;
3457
3458 err_destroy:
3459
3460 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07003461 if (cgrp->subsys[ss->subsys_id])
3462 ss->destroy(ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003463 }
3464
3465 mutex_unlock(&cgroup_mutex);
3466
3467 /* Release the reference count that we took on the superblock */
3468 deactivate_super(sb);
3469
Paul Menagebd89aab2007-10-18 23:40:44 -07003470 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003471 return err;
3472}
3473
3474static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode)
3475{
3476 struct cgroup *c_parent = dentry->d_parent->d_fsdata;
3477
3478 /* the vfs holds inode->i_mutex already */
3479 return cgroup_create(c_parent, dentry, mode | S_IFDIR);
3480}
3481
Li Zefan55b6fd02008-07-29 22:33:20 -07003482static int cgroup_has_css_refs(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003483{
3484 /* Check the reference count on each subsystem. Since we
3485 * already established that there are no tasks in the
Paul Menagee7c5ec92009-01-07 18:08:38 -08003486 * cgroup, if the css refcount is also 1, then there should
Paul Menage81a6a5c2007-10-18 23:39:38 -07003487 * be no outstanding references, so the subsystem is safe to
3488 * destroy. We scan across all subsystems rather than using
3489 * the per-hierarchy linked list of mounted subsystems since
3490 * we can be called via check_for_release() with no
3491 * synchronization other than RCU, and the subsystem linked
3492 * list isn't RCU-safe */
3493 int i;
Ben Blumaae8aab2010-03-10 15:22:07 -08003494 /*
3495 * We won't need to lock the subsys array, because the subsystems
3496 * we're concerned about aren't going anywhere since our cgroup root
3497 * has a reference on them.
3498 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07003499 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3500 struct cgroup_subsys *ss = subsys[i];
3501 struct cgroup_subsys_state *css;
Ben Blumaae8aab2010-03-10 15:22:07 -08003502 /* Skip subsystems not present or not in this hierarchy */
3503 if (ss == NULL || ss->root != cgrp->root)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003504 continue;
Paul Menagebd89aab2007-10-18 23:40:44 -07003505 css = cgrp->subsys[ss->subsys_id];
Paul Menage81a6a5c2007-10-18 23:39:38 -07003506 /* When called from check_for_release() it's possible
3507 * that by this point the cgroup has been removed
3508 * and the css deleted. But a false-positive doesn't
3509 * matter, since it can only happen if the cgroup
3510 * has been deleted and hence no longer needs the
3511 * release agent to be called anyway. */
Paul Menagee7c5ec92009-01-07 18:08:38 -08003512 if (css && (atomic_read(&css->refcnt) > 1))
Paul Menage81a6a5c2007-10-18 23:39:38 -07003513 return 1;
Paul Menage81a6a5c2007-10-18 23:39:38 -07003514 }
3515 return 0;
3516}
3517
Paul Menagee7c5ec92009-01-07 18:08:38 -08003518/*
3519 * Atomically mark all (or else none) of the cgroup's CSS objects as
3520 * CSS_REMOVED. Return true on success, or false if the cgroup has
3521 * busy subsystems. Call with cgroup_mutex held
3522 */
3523
3524static int cgroup_clear_css_refs(struct cgroup *cgrp)
3525{
3526 struct cgroup_subsys *ss;
3527 unsigned long flags;
3528 bool failed = false;
3529 local_irq_save(flags);
3530 for_each_subsys(cgrp->root, ss) {
3531 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3532 int refcnt;
Paul Menage804b3c22009-01-29 14:25:21 -08003533 while (1) {
Paul Menagee7c5ec92009-01-07 18:08:38 -08003534 /* We can only remove a CSS with a refcnt==1 */
3535 refcnt = atomic_read(&css->refcnt);
3536 if (refcnt > 1) {
3537 failed = true;
3538 goto done;
3539 }
3540 BUG_ON(!refcnt);
3541 /*
3542 * Drop the refcnt to 0 while we check other
3543 * subsystems. This will cause any racing
3544 * css_tryget() to spin until we set the
3545 * CSS_REMOVED bits or abort
3546 */
Paul Menage804b3c22009-01-29 14:25:21 -08003547 if (atomic_cmpxchg(&css->refcnt, refcnt, 0) == refcnt)
3548 break;
3549 cpu_relax();
3550 }
Paul Menagee7c5ec92009-01-07 18:08:38 -08003551 }
3552 done:
3553 for_each_subsys(cgrp->root, ss) {
3554 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3555 if (failed) {
3556 /*
3557 * Restore old refcnt if we previously managed
3558 * to clear it from 1 to 0
3559 */
3560 if (!atomic_read(&css->refcnt))
3561 atomic_set(&css->refcnt, 1);
3562 } else {
3563 /* Commit the fact that the CSS is removed */
3564 set_bit(CSS_REMOVED, &css->flags);
3565 }
3566 }
3567 local_irq_restore(flags);
3568 return !failed;
3569}
3570
Paul Menageddbcc7e2007-10-18 23:39:30 -07003571static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry)
3572{
Paul Menagebd89aab2007-10-18 23:40:44 -07003573 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003574 struct dentry *d;
3575 struct cgroup *parent;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003576 DEFINE_WAIT(wait);
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08003577 struct cgroup_event *event, *tmp;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003578 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003579
3580 /* the vfs holds both inode->i_mutex already */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003581again:
Paul Menageddbcc7e2007-10-18 23:39:30 -07003582 mutex_lock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07003583 if (atomic_read(&cgrp->count) != 0) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07003584 mutex_unlock(&cgroup_mutex);
3585 return -EBUSY;
3586 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003587 if (!list_empty(&cgrp->children)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07003588 mutex_unlock(&cgroup_mutex);
3589 return -EBUSY;
3590 }
KAMEZAWA Hiroyuki3fa59df2008-11-19 15:36:34 -08003591 mutex_unlock(&cgroup_mutex);
Li Zefana043e3b2008-02-23 15:24:09 -08003592
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08003593 /*
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003594 * In general, subsystem has no css->refcnt after pre_destroy(). But
3595 * in racy cases, subsystem may have to get css->refcnt after
3596 * pre_destroy() and it makes rmdir return with -EBUSY. This sometimes
3597 * make rmdir return -EBUSY too often. To avoid that, we use waitqueue
3598 * for cgroup's rmdir. CGRP_WAIT_ON_RMDIR is for synchronizing rmdir
3599 * and subsystem's reference count handling. Please see css_get/put
3600 * and css_tryget() and cgroup_wakeup_rmdir_waiter() implementation.
3601 */
3602 set_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
3603
3604 /*
Li Zefana043e3b2008-02-23 15:24:09 -08003605 * Call pre_destroy handlers of subsys. Notify subsystems
3606 * that rmdir() request comes.
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08003607 */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003608 ret = cgroup_call_pre_destroy(cgrp);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003609 if (ret) {
3610 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003611 return ret;
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003612 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003613
KAMEZAWA Hiroyuki3fa59df2008-11-19 15:36:34 -08003614 mutex_lock(&cgroup_mutex);
3615 parent = cgrp->parent;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003616 if (atomic_read(&cgrp->count) || !list_empty(&cgrp->children)) {
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003617 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003618 mutex_unlock(&cgroup_mutex);
3619 return -EBUSY;
3620 }
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003621 prepare_to_wait(&cgroup_rmdir_waitq, &wait, TASK_INTERRUPTIBLE);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003622 if (!cgroup_clear_css_refs(cgrp)) {
3623 mutex_unlock(&cgroup_mutex);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003624 /*
3625 * Because someone may call cgroup_wakeup_rmdir_waiter() before
3626 * prepare_to_wait(), we need to check this flag.
3627 */
3628 if (test_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags))
3629 schedule();
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003630 finish_wait(&cgroup_rmdir_waitq, &wait);
3631 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
3632 if (signal_pending(current))
3633 return -EINTR;
3634 goto again;
3635 }
3636 /* NO css_tryget() can success after here. */
3637 finish_wait(&cgroup_rmdir_waitq, &wait);
3638 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003639
Paul Menage81a6a5c2007-10-18 23:39:38 -07003640 spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07003641 set_bit(CGRP_REMOVED, &cgrp->flags);
3642 if (!list_empty(&cgrp->release_list))
3643 list_del(&cgrp->release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003644 spin_unlock(&release_list_lock);
Paul Menage999cd8a2009-01-07 18:08:36 -08003645
3646 cgroup_lock_hierarchy(cgrp->root);
3647 /* delete this cgroup from parent->children */
Paul Menagebd89aab2007-10-18 23:40:44 -07003648 list_del(&cgrp->sibling);
Paul Menage999cd8a2009-01-07 18:08:36 -08003649 cgroup_unlock_hierarchy(cgrp->root);
3650
Paul Menagebd89aab2007-10-18 23:40:44 -07003651 d = dget(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003652
3653 cgroup_d_remove_dir(d);
3654 dput(d);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003655
Paul Menagebd89aab2007-10-18 23:40:44 -07003656 set_bit(CGRP_RELEASABLE, &parent->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003657 check_for_release(parent);
3658
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08003659 /*
3660 * Unregister events and notify userspace.
3661 * Notify userspace about cgroup removing only after rmdir of cgroup
3662 * directory to avoid race between userspace and kernelspace
3663 */
3664 spin_lock(&cgrp->event_list_lock);
3665 list_for_each_entry_safe(event, tmp, &cgrp->event_list, list) {
3666 list_del(&event->list);
3667 remove_wait_queue(event->wqh, &event->wait);
3668 eventfd_signal(event->eventfd, 1);
3669 schedule_work(&event->remove);
3670 }
3671 spin_unlock(&cgrp->event_list_lock);
3672
Paul Menageddbcc7e2007-10-18 23:39:30 -07003673 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003674 return 0;
3675}
3676
Li Zefan06a11922008-04-29 01:00:07 -07003677static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003678{
Paul Menageddbcc7e2007-10-18 23:39:30 -07003679 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08003680
3681 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003682
3683 /* Create the top cgroup state for this subsystem */
Li Zefan33a68ac2009-01-07 18:07:42 -08003684 list_add(&ss->sibling, &rootnode.subsys_list);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003685 ss->root = &rootnode;
3686 css = ss->create(ss, dummytop);
3687 /* We don't handle early failures gracefully */
3688 BUG_ON(IS_ERR(css));
3689 init_cgroup_css(css, ss, dummytop);
3690
Li Zefane8d55fd2008-04-29 01:00:13 -07003691 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07003692 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07003693 * newly registered, all tasks and hence the
3694 * init_css_set is in the subsystem's top cgroup. */
3695 init_css_set.subsys[ss->subsys_id] = dummytop->subsys[ss->subsys_id];
Paul Menageddbcc7e2007-10-18 23:39:30 -07003696
3697 need_forkexit_callback |= ss->fork || ss->exit;
3698
Li Zefane8d55fd2008-04-29 01:00:13 -07003699 /* At system boot, before all subsystems have been
3700 * registered, no tasks have been forked, so we don't
3701 * need to invoke fork callbacks here. */
3702 BUG_ON(!list_empty(&init_task.tasks));
3703
Paul Menage999cd8a2009-01-07 18:08:36 -08003704 mutex_init(&ss->hierarchy_mutex);
Li Zefancfebe562009-02-11 13:04:36 -08003705 lockdep_set_class(&ss->hierarchy_mutex, &ss->subsys_key);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003706 ss->active = 1;
Ben Blume6a11052010-03-10 15:22:09 -08003707
3708 /* this function shouldn't be used with modular subsystems, since they
3709 * need to register a subsys_id, among other things */
3710 BUG_ON(ss->module);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003711}
3712
3713/**
Ben Blume6a11052010-03-10 15:22:09 -08003714 * cgroup_load_subsys: load and register a modular subsystem at runtime
3715 * @ss: the subsystem to load
3716 *
3717 * This function should be called in a modular subsystem's initcall. If the
Thomas Weber88393162010-03-16 11:47:56 +01003718 * subsystem is built as a module, it will be assigned a new subsys_id and set
Ben Blume6a11052010-03-10 15:22:09 -08003719 * up for use. If the subsystem is built-in anyway, work is delegated to the
3720 * simpler cgroup_init_subsys.
3721 */
3722int __init_or_module cgroup_load_subsys(struct cgroup_subsys *ss)
3723{
3724 int i;
3725 struct cgroup_subsys_state *css;
3726
3727 /* check name and function validity */
3728 if (ss->name == NULL || strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN ||
3729 ss->create == NULL || ss->destroy == NULL)
3730 return -EINVAL;
3731
3732 /*
3733 * we don't support callbacks in modular subsystems. this check is
3734 * before the ss->module check for consistency; a subsystem that could
3735 * be a module should still have no callbacks even if the user isn't
3736 * compiling it as one.
3737 */
3738 if (ss->fork || ss->exit)
3739 return -EINVAL;
3740
3741 /*
3742 * an optionally modular subsystem is built-in: we want to do nothing,
3743 * since cgroup_init_subsys will have already taken care of it.
3744 */
3745 if (ss->module == NULL) {
3746 /* a few sanity checks */
3747 BUG_ON(ss->subsys_id >= CGROUP_BUILTIN_SUBSYS_COUNT);
3748 BUG_ON(subsys[ss->subsys_id] != ss);
3749 return 0;
3750 }
3751
3752 /*
3753 * need to register a subsys id before anything else - for example,
3754 * init_cgroup_css needs it.
3755 */
3756 mutex_lock(&cgroup_mutex);
3757 /* find the first empty slot in the array */
3758 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
3759 if (subsys[i] == NULL)
3760 break;
3761 }
3762 if (i == CGROUP_SUBSYS_COUNT) {
3763 /* maximum number of subsystems already registered! */
3764 mutex_unlock(&cgroup_mutex);
3765 return -EBUSY;
3766 }
3767 /* assign ourselves the subsys_id */
3768 ss->subsys_id = i;
3769 subsys[i] = ss;
3770
3771 /*
3772 * no ss->create seems to need anything important in the ss struct, so
3773 * this can happen first (i.e. before the rootnode attachment).
3774 */
3775 css = ss->create(ss, dummytop);
3776 if (IS_ERR(css)) {
3777 /* failure case - need to deassign the subsys[] slot. */
3778 subsys[i] = NULL;
3779 mutex_unlock(&cgroup_mutex);
3780 return PTR_ERR(css);
3781 }
3782
3783 list_add(&ss->sibling, &rootnode.subsys_list);
3784 ss->root = &rootnode;
3785
3786 /* our new subsystem will be attached to the dummy hierarchy. */
3787 init_cgroup_css(css, ss, dummytop);
3788 /* init_idr must be after init_cgroup_css because it sets css->id. */
3789 if (ss->use_id) {
3790 int ret = cgroup_init_idr(ss, css);
3791 if (ret) {
3792 dummytop->subsys[ss->subsys_id] = NULL;
3793 ss->destroy(ss, dummytop);
3794 subsys[i] = NULL;
3795 mutex_unlock(&cgroup_mutex);
3796 return ret;
3797 }
3798 }
3799
3800 /*
3801 * Now we need to entangle the css into the existing css_sets. unlike
3802 * in cgroup_init_subsys, there are now multiple css_sets, so each one
3803 * will need a new pointer to it; done by iterating the css_set_table.
3804 * furthermore, modifying the existing css_sets will corrupt the hash
3805 * table state, so each changed css_set will need its hash recomputed.
3806 * this is all done under the css_set_lock.
3807 */
3808 write_lock(&css_set_lock);
3809 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
3810 struct css_set *cg;
3811 struct hlist_node *node, *tmp;
3812 struct hlist_head *bucket = &css_set_table[i], *new_bucket;
3813
3814 hlist_for_each_entry_safe(cg, node, tmp, bucket, hlist) {
3815 /* skip entries that we already rehashed */
3816 if (cg->subsys[ss->subsys_id])
3817 continue;
3818 /* remove existing entry */
3819 hlist_del(&cg->hlist);
3820 /* set new value */
3821 cg->subsys[ss->subsys_id] = css;
3822 /* recompute hash and restore entry */
3823 new_bucket = css_set_hash(cg->subsys);
3824 hlist_add_head(&cg->hlist, new_bucket);
3825 }
3826 }
3827 write_unlock(&css_set_lock);
3828
3829 mutex_init(&ss->hierarchy_mutex);
3830 lockdep_set_class(&ss->hierarchy_mutex, &ss->subsys_key);
3831 ss->active = 1;
3832
Ben Blume6a11052010-03-10 15:22:09 -08003833 /* success! */
3834 mutex_unlock(&cgroup_mutex);
3835 return 0;
3836}
3837EXPORT_SYMBOL_GPL(cgroup_load_subsys);
3838
3839/**
Ben Blumcf5d5942010-03-10 15:22:09 -08003840 * cgroup_unload_subsys: unload a modular subsystem
3841 * @ss: the subsystem to unload
3842 *
3843 * This function should be called in a modular subsystem's exitcall. When this
3844 * function is invoked, the refcount on the subsystem's module will be 0, so
3845 * the subsystem will not be attached to any hierarchy.
3846 */
3847void cgroup_unload_subsys(struct cgroup_subsys *ss)
3848{
3849 struct cg_cgroup_link *link;
3850 struct hlist_head *hhead;
3851
3852 BUG_ON(ss->module == NULL);
3853
3854 /*
3855 * we shouldn't be called if the subsystem is in use, and the use of
3856 * try_module_get in parse_cgroupfs_options should ensure that it
3857 * doesn't start being used while we're killing it off.
3858 */
3859 BUG_ON(ss->root != &rootnode);
3860
3861 mutex_lock(&cgroup_mutex);
3862 /* deassign the subsys_id */
3863 BUG_ON(ss->subsys_id < CGROUP_BUILTIN_SUBSYS_COUNT);
3864 subsys[ss->subsys_id] = NULL;
3865
3866 /* remove subsystem from rootnode's list of subsystems */
3867 list_del(&ss->sibling);
3868
3869 /*
3870 * disentangle the css from all css_sets attached to the dummytop. as
3871 * in loading, we need to pay our respects to the hashtable gods.
3872 */
3873 write_lock(&css_set_lock);
3874 list_for_each_entry(link, &dummytop->css_sets, cgrp_link_list) {
3875 struct css_set *cg = link->cg;
3876
3877 hlist_del(&cg->hlist);
3878 BUG_ON(!cg->subsys[ss->subsys_id]);
3879 cg->subsys[ss->subsys_id] = NULL;
3880 hhead = css_set_hash(cg->subsys);
3881 hlist_add_head(&cg->hlist, hhead);
3882 }
3883 write_unlock(&css_set_lock);
3884
3885 /*
3886 * remove subsystem's css from the dummytop and free it - need to free
3887 * before marking as null because ss->destroy needs the cgrp->subsys
3888 * pointer to find their state. note that this also takes care of
3889 * freeing the css_id.
3890 */
3891 ss->destroy(ss, dummytop);
3892 dummytop->subsys[ss->subsys_id] = NULL;
3893
3894 mutex_unlock(&cgroup_mutex);
3895}
3896EXPORT_SYMBOL_GPL(cgroup_unload_subsys);
3897
3898/**
Li Zefana043e3b2008-02-23 15:24:09 -08003899 * cgroup_init_early - cgroup initialization at system boot
3900 *
3901 * Initialize cgroups at system boot, and initialize any
3902 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07003903 */
3904int __init cgroup_init_early(void)
3905{
3906 int i;
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07003907 atomic_set(&init_css_set.refcount, 1);
Paul Menage817929e2007-10-18 23:39:36 -07003908 INIT_LIST_HEAD(&init_css_set.cg_links);
3909 INIT_LIST_HEAD(&init_css_set.tasks);
Li Zefan472b1052008-04-29 01:00:11 -07003910 INIT_HLIST_NODE(&init_css_set.hlist);
Paul Menage817929e2007-10-18 23:39:36 -07003911 css_set_count = 1;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003912 init_cgroup_root(&rootnode);
Paul Menage817929e2007-10-18 23:39:36 -07003913 root_count = 1;
3914 init_task.cgroups = &init_css_set;
3915
3916 init_css_set_link.cg = &init_css_set;
Paul Menage7717f7b2009-09-23 15:56:22 -07003917 init_css_set_link.cgrp = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -07003918 list_add(&init_css_set_link.cgrp_link_list,
Paul Menage817929e2007-10-18 23:39:36 -07003919 &rootnode.top_cgroup.css_sets);
3920 list_add(&init_css_set_link.cg_link_list,
3921 &init_css_set.cg_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003922
Li Zefan472b1052008-04-29 01:00:11 -07003923 for (i = 0; i < CSS_SET_TABLE_SIZE; i++)
3924 INIT_HLIST_HEAD(&css_set_table[i]);
3925
Ben Blumaae8aab2010-03-10 15:22:07 -08003926 /* at bootup time, we don't worry about modular subsystems */
3927 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07003928 struct cgroup_subsys *ss = subsys[i];
3929
3930 BUG_ON(!ss->name);
3931 BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN);
3932 BUG_ON(!ss->create);
3933 BUG_ON(!ss->destroy);
3934 if (ss->subsys_id != i) {
Diego Callejacfe36bd2007-11-14 16:58:54 -08003935 printk(KERN_ERR "cgroup: Subsys %s id == %d\n",
Paul Menageddbcc7e2007-10-18 23:39:30 -07003936 ss->name, ss->subsys_id);
3937 BUG();
3938 }
3939
3940 if (ss->early_init)
3941 cgroup_init_subsys(ss);
3942 }
3943 return 0;
3944}
3945
3946/**
Li Zefana043e3b2008-02-23 15:24:09 -08003947 * cgroup_init - cgroup initialization
3948 *
3949 * Register cgroup filesystem and /proc file, and initialize
3950 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07003951 */
3952int __init cgroup_init(void)
3953{
3954 int err;
3955 int i;
Li Zefan472b1052008-04-29 01:00:11 -07003956 struct hlist_head *hhead;
Paul Menagea4243162007-10-18 23:39:35 -07003957
3958 err = bdi_init(&cgroup_backing_dev_info);
3959 if (err)
3960 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003961
Ben Blumaae8aab2010-03-10 15:22:07 -08003962 /* at bootup time, we don't worry about modular subsystems */
3963 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07003964 struct cgroup_subsys *ss = subsys[i];
3965 if (!ss->early_init)
3966 cgroup_init_subsys(ss);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003967 if (ss->use_id)
Ben Blume6a11052010-03-10 15:22:09 -08003968 cgroup_init_idr(ss, init_css_set.subsys[ss->subsys_id]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003969 }
3970
Li Zefan472b1052008-04-29 01:00:11 -07003971 /* Add init_css_set to the hash table */
3972 hhead = css_set_hash(init_css_set.subsys);
3973 hlist_add_head(&init_css_set.hlist, hhead);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07003974 BUG_ON(!init_root_id(&rootnode));
Greg KH676db4a2010-08-05 13:53:35 -07003975
3976 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
3977 if (!cgroup_kobj) {
3978 err = -ENOMEM;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003979 goto out;
Greg KH676db4a2010-08-05 13:53:35 -07003980 }
3981
3982 err = register_filesystem(&cgroup_fs_type);
3983 if (err < 0) {
3984 kobject_put(cgroup_kobj);
3985 goto out;
3986 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003987
Li Zefan46ae2202008-04-29 01:00:08 -07003988 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Paul Menagea4243162007-10-18 23:39:35 -07003989
Paul Menageddbcc7e2007-10-18 23:39:30 -07003990out:
Paul Menagea4243162007-10-18 23:39:35 -07003991 if (err)
3992 bdi_destroy(&cgroup_backing_dev_info);
3993
Paul Menageddbcc7e2007-10-18 23:39:30 -07003994 return err;
3995}
Paul Menageb4f48b62007-10-18 23:39:33 -07003996
Paul Menagea4243162007-10-18 23:39:35 -07003997/*
3998 * proc_cgroup_show()
3999 * - Print task's cgroup paths into seq_file, one line for each hierarchy
4000 * - Used for /proc/<pid>/cgroup.
4001 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
4002 * doesn't really matter if tsk->cgroup changes after we read it,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004003 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
Paul Menagea4243162007-10-18 23:39:35 -07004004 * anyway. No need to check that tsk->cgroup != NULL, thanks to
4005 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
4006 * cgroup to top_cgroup.
4007 */
4008
4009/* TODO: Use a proper seq_file iterator */
4010static int proc_cgroup_show(struct seq_file *m, void *v)
4011{
4012 struct pid *pid;
4013 struct task_struct *tsk;
4014 char *buf;
4015 int retval;
4016 struct cgroupfs_root *root;
4017
4018 retval = -ENOMEM;
4019 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
4020 if (!buf)
4021 goto out;
4022
4023 retval = -ESRCH;
4024 pid = m->private;
4025 tsk = get_pid_task(pid, PIDTYPE_PID);
4026 if (!tsk)
4027 goto out_free;
4028
4029 retval = 0;
4030
4031 mutex_lock(&cgroup_mutex);
4032
Li Zefane5f6a862009-01-07 18:07:41 -08004033 for_each_active_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07004034 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07004035 struct cgroup *cgrp;
Paul Menagea4243162007-10-18 23:39:35 -07004036 int count = 0;
4037
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004038 seq_printf(m, "%d:", root->hierarchy_id);
Paul Menagea4243162007-10-18 23:39:35 -07004039 for_each_subsys(root, ss)
4040 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07004041 if (strlen(root->name))
4042 seq_printf(m, "%sname=%s", count ? "," : "",
4043 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07004044 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07004045 cgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07004046 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
Paul Menagea4243162007-10-18 23:39:35 -07004047 if (retval < 0)
4048 goto out_unlock;
4049 seq_puts(m, buf);
4050 seq_putc(m, '\n');
4051 }
4052
4053out_unlock:
4054 mutex_unlock(&cgroup_mutex);
4055 put_task_struct(tsk);
4056out_free:
4057 kfree(buf);
4058out:
4059 return retval;
4060}
4061
4062static int cgroup_open(struct inode *inode, struct file *file)
4063{
4064 struct pid *pid = PROC_I(inode)->pid;
4065 return single_open(file, proc_cgroup_show, pid);
4066}
4067
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004068const struct file_operations proc_cgroup_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004069 .open = cgroup_open,
4070 .read = seq_read,
4071 .llseek = seq_lseek,
4072 .release = single_release,
4073};
4074
4075/* Display information about each subsystem and each hierarchy */
4076static int proc_cgroupstats_show(struct seq_file *m, void *v)
4077{
4078 int i;
Paul Menagea4243162007-10-18 23:39:35 -07004079
Paul Menage8bab8dd2008-04-04 14:29:57 -07004080 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08004081 /*
4082 * ideally we don't want subsystems moving around while we do this.
4083 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
4084 * subsys/hierarchy state.
4085 */
Paul Menagea4243162007-10-18 23:39:35 -07004086 mutex_lock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07004087 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
4088 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08004089 if (ss == NULL)
4090 continue;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004091 seq_printf(m, "%s\t%d\t%d\t%d\n",
4092 ss->name, ss->root->hierarchy_id,
Paul Menage8bab8dd2008-04-04 14:29:57 -07004093 ss->root->number_of_cgroups, !ss->disabled);
Paul Menagea4243162007-10-18 23:39:35 -07004094 }
4095 mutex_unlock(&cgroup_mutex);
4096 return 0;
4097}
4098
4099static int cgroupstats_open(struct inode *inode, struct file *file)
4100{
Al Viro9dce07f2008-03-29 03:07:28 +00004101 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07004102}
4103
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004104static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004105 .open = cgroupstats_open,
4106 .read = seq_read,
4107 .llseek = seq_lseek,
4108 .release = single_release,
4109};
4110
Paul Menageb4f48b62007-10-18 23:39:33 -07004111/**
4112 * cgroup_fork - attach newly forked task to its parents cgroup.
Li Zefana043e3b2008-02-23 15:24:09 -08004113 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07004114 *
4115 * Description: A task inherits its parent's cgroup at fork().
4116 *
4117 * A pointer to the shared css_set was automatically copied in
4118 * fork.c by dup_task_struct(). However, we ignore that copy, since
4119 * it was not made under the protection of RCU or cgroup_mutex, so
Cliff Wickman956db3c2008-02-07 00:14:43 -08004120 * might no longer be a valid cgroup pointer. cgroup_attach_task() might
Paul Menage817929e2007-10-18 23:39:36 -07004121 * have already changed current->cgroups, allowing the previously
4122 * referenced cgroup group to be removed and freed.
Paul Menageb4f48b62007-10-18 23:39:33 -07004123 *
4124 * At the point that cgroup_fork() is called, 'current' is the parent
4125 * task, and the passed argument 'child' points to the child task.
4126 */
4127void cgroup_fork(struct task_struct *child)
4128{
Paul Menage817929e2007-10-18 23:39:36 -07004129 task_lock(current);
4130 child->cgroups = current->cgroups;
4131 get_css_set(child->cgroups);
4132 task_unlock(current);
4133 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07004134}
4135
4136/**
Li Zefana043e3b2008-02-23 15:24:09 -08004137 * cgroup_fork_callbacks - run fork callbacks
4138 * @child: the new task
4139 *
4140 * Called on a new task very soon before adding it to the
4141 * tasklist. No need to take any locks since no-one can
4142 * be operating on this task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004143 */
4144void cgroup_fork_callbacks(struct task_struct *child)
4145{
4146 if (need_forkexit_callback) {
4147 int i;
Ben Blumaae8aab2010-03-10 15:22:07 -08004148 /*
4149 * forkexit callbacks are only supported for builtin
4150 * subsystems, and the builtin section of the subsys array is
4151 * immutable, so we don't need to lock the subsys array here.
4152 */
4153 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageb4f48b62007-10-18 23:39:33 -07004154 struct cgroup_subsys *ss = subsys[i];
4155 if (ss->fork)
4156 ss->fork(ss, child);
4157 }
4158 }
4159}
4160
4161/**
Li Zefana043e3b2008-02-23 15:24:09 -08004162 * cgroup_post_fork - called on a new task after adding it to the task list
4163 * @child: the task in question
4164 *
4165 * Adds the task to the list running through its css_set if necessary.
4166 * Has to be after the task is visible on the task list in case we race
4167 * with the first call to cgroup_iter_start() - to guarantee that the
4168 * new task ends up on its list.
4169 */
Paul Menage817929e2007-10-18 23:39:36 -07004170void cgroup_post_fork(struct task_struct *child)
4171{
4172 if (use_task_css_set_links) {
4173 write_lock(&css_set_lock);
Lai Jiangshanb12b5332009-01-07 18:07:36 -08004174 task_lock(child);
Paul Menage817929e2007-10-18 23:39:36 -07004175 if (list_empty(&child->cg_list))
4176 list_add(&child->cg_list, &child->cgroups->tasks);
Lai Jiangshanb12b5332009-01-07 18:07:36 -08004177 task_unlock(child);
Paul Menage817929e2007-10-18 23:39:36 -07004178 write_unlock(&css_set_lock);
4179 }
4180}
4181/**
Paul Menageb4f48b62007-10-18 23:39:33 -07004182 * cgroup_exit - detach cgroup from exiting task
4183 * @tsk: pointer to task_struct of exiting process
Li Zefana043e3b2008-02-23 15:24:09 -08004184 * @run_callback: run exit callbacks?
Paul Menageb4f48b62007-10-18 23:39:33 -07004185 *
4186 * Description: Detach cgroup from @tsk and release it.
4187 *
4188 * Note that cgroups marked notify_on_release force every task in
4189 * them to take the global cgroup_mutex mutex when exiting.
4190 * This could impact scaling on very large systems. Be reluctant to
4191 * use notify_on_release cgroups where very high task exit scaling
4192 * is required on large systems.
4193 *
4194 * the_top_cgroup_hack:
4195 *
4196 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
4197 *
4198 * We call cgroup_exit() while the task is still competent to
4199 * handle notify_on_release(), then leave the task attached to the
4200 * root cgroup in each hierarchy for the remainder of its exit.
4201 *
4202 * To do this properly, we would increment the reference count on
4203 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
4204 * code we would add a second cgroup function call, to drop that
4205 * reference. This would just create an unnecessary hot spot on
4206 * the top_cgroup reference count, to no avail.
4207 *
4208 * Normally, holding a reference to a cgroup without bumping its
4209 * count is unsafe. The cgroup could go away, or someone could
4210 * attach us to a different cgroup, decrementing the count on
4211 * the first cgroup that we never incremented. But in this case,
4212 * top_cgroup isn't going away, and either task has PF_EXITING set,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004213 * which wards off any cgroup_attach_task() attempts, or task is a failed
4214 * fork, never visible to cgroup_attach_task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004215 */
4216void cgroup_exit(struct task_struct *tsk, int run_callbacks)
4217{
4218 int i;
Paul Menage817929e2007-10-18 23:39:36 -07004219 struct css_set *cg;
Paul Menageb4f48b62007-10-18 23:39:33 -07004220
4221 if (run_callbacks && need_forkexit_callback) {
Ben Blumaae8aab2010-03-10 15:22:07 -08004222 /*
4223 * modular subsystems can't use callbacks, so no need to lock
4224 * the subsys array
4225 */
4226 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageb4f48b62007-10-18 23:39:33 -07004227 struct cgroup_subsys *ss = subsys[i];
4228 if (ss->exit)
4229 ss->exit(ss, tsk);
4230 }
4231 }
Paul Menage817929e2007-10-18 23:39:36 -07004232
4233 /*
4234 * Unlink from the css_set task list if necessary.
4235 * Optimistically check cg_list before taking
4236 * css_set_lock
4237 */
4238 if (!list_empty(&tsk->cg_list)) {
4239 write_lock(&css_set_lock);
4240 if (!list_empty(&tsk->cg_list))
4241 list_del(&tsk->cg_list);
4242 write_unlock(&css_set_lock);
4243 }
4244
Paul Menageb4f48b62007-10-18 23:39:33 -07004245 /* Reassign the task to the init_css_set. */
4246 task_lock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07004247 cg = tsk->cgroups;
4248 tsk->cgroups = &init_css_set;
Paul Menageb4f48b62007-10-18 23:39:33 -07004249 task_unlock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07004250 if (cg)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004251 put_css_set_taskexit(cg);
Paul Menageb4f48b62007-10-18 23:39:33 -07004252}
Paul Menage697f4162007-10-18 23:39:34 -07004253
4254/**
Li Zefana043e3b2008-02-23 15:24:09 -08004255 * cgroup_clone - clone the cgroup the given subsystem is attached to
4256 * @tsk: the task to be moved
4257 * @subsys: the given subsystem
Serge E. Hallyne885dcd2008-07-25 01:47:06 -07004258 * @nodename: the name for the new cgroup
Li Zefana043e3b2008-02-23 15:24:09 -08004259 *
4260 * Duplicate the current cgroup in the hierarchy that the given
4261 * subsystem is attached to, and move this task into the new
4262 * child.
Paul Menage697f4162007-10-18 23:39:34 -07004263 */
Serge E. Hallyne885dcd2008-07-25 01:47:06 -07004264int cgroup_clone(struct task_struct *tsk, struct cgroup_subsys *subsys,
4265 char *nodename)
Paul Menage697f4162007-10-18 23:39:34 -07004266{
4267 struct dentry *dentry;
4268 int ret = 0;
Paul Menage697f4162007-10-18 23:39:34 -07004269 struct cgroup *parent, *child;
4270 struct inode *inode;
4271 struct css_set *cg;
4272 struct cgroupfs_root *root;
4273 struct cgroup_subsys *ss;
4274
4275 /* We shouldn't be called by an unregistered subsystem */
4276 BUG_ON(!subsys->active);
4277
4278 /* First figure out what hierarchy and cgroup we're dealing
4279 * with, and pin them so we can drop cgroup_mutex */
4280 mutex_lock(&cgroup_mutex);
4281 again:
4282 root = subsys->root;
4283 if (root == &rootnode) {
Paul Menage697f4162007-10-18 23:39:34 -07004284 mutex_unlock(&cgroup_mutex);
4285 return 0;
4286 }
Paul Menage697f4162007-10-18 23:39:34 -07004287
Paul Menage697f4162007-10-18 23:39:34 -07004288 /* Pin the hierarchy */
Li Zefan1404f062009-01-29 14:25:21 -08004289 if (!atomic_inc_not_zero(&root->sb->s_active)) {
Li Zefan7b574b72009-01-04 12:00:45 -08004290 /* We race with the final deactivate_super() */
4291 mutex_unlock(&cgroup_mutex);
4292 return 0;
4293 }
Paul Menage697f4162007-10-18 23:39:34 -07004294
Paul Menage817929e2007-10-18 23:39:36 -07004295 /* Keep the cgroup alive */
Li Zefan1404f062009-01-29 14:25:21 -08004296 task_lock(tsk);
4297 parent = task_cgroup(tsk, subsys->subsys_id);
4298 cg = tsk->cgroups;
Paul Menage817929e2007-10-18 23:39:36 -07004299 get_css_set(cg);
Lai Jiangshan104cbd52009-01-07 18:07:38 -08004300 task_unlock(tsk);
Li Zefan1404f062009-01-29 14:25:21 -08004301
Paul Menage697f4162007-10-18 23:39:34 -07004302 mutex_unlock(&cgroup_mutex);
4303
4304 /* Now do the VFS work to create a cgroup */
4305 inode = parent->dentry->d_inode;
4306
4307 /* Hold the parent directory mutex across this operation to
4308 * stop anyone else deleting the new cgroup */
4309 mutex_lock(&inode->i_mutex);
4310 dentry = lookup_one_len(nodename, parent->dentry, strlen(nodename));
4311 if (IS_ERR(dentry)) {
4312 printk(KERN_INFO
Diego Callejacfe36bd2007-11-14 16:58:54 -08004313 "cgroup: Couldn't allocate dentry for %s: %ld\n", nodename,
Paul Menage697f4162007-10-18 23:39:34 -07004314 PTR_ERR(dentry));
4315 ret = PTR_ERR(dentry);
4316 goto out_release;
4317 }
4318
4319 /* Create the cgroup directory, which also creates the cgroup */
Li Zefan75139b82009-01-07 18:07:33 -08004320 ret = vfs_mkdir(inode, dentry, 0755);
Paul Menagebd89aab2007-10-18 23:40:44 -07004321 child = __d_cgrp(dentry);
Paul Menage697f4162007-10-18 23:39:34 -07004322 dput(dentry);
4323 if (ret) {
4324 printk(KERN_INFO
4325 "Failed to create cgroup %s: %d\n", nodename,
4326 ret);
4327 goto out_release;
4328 }
4329
Paul Menage697f4162007-10-18 23:39:34 -07004330 /* The cgroup now exists. Retake cgroup_mutex and check
4331 * that we're still in the same state that we thought we
4332 * were. */
4333 mutex_lock(&cgroup_mutex);
4334 if ((root != subsys->root) ||
4335 (parent != task_cgroup(tsk, subsys->subsys_id))) {
4336 /* Aargh, we raced ... */
4337 mutex_unlock(&inode->i_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07004338 put_css_set(cg);
Paul Menage697f4162007-10-18 23:39:34 -07004339
Li Zefan1404f062009-01-29 14:25:21 -08004340 deactivate_super(root->sb);
Paul Menage697f4162007-10-18 23:39:34 -07004341 /* The cgroup is still accessible in the VFS, but
4342 * we're not going to try to rmdir() it at this
4343 * point. */
4344 printk(KERN_INFO
4345 "Race in cgroup_clone() - leaking cgroup %s\n",
4346 nodename);
4347 goto again;
4348 }
4349
4350 /* do any required auto-setup */
4351 for_each_subsys(root, ss) {
4352 if (ss->post_clone)
4353 ss->post_clone(ss, child);
4354 }
4355
4356 /* All seems fine. Finish by moving the task into the new cgroup */
Cliff Wickman956db3c2008-02-07 00:14:43 -08004357 ret = cgroup_attach_task(child, tsk);
Paul Menage697f4162007-10-18 23:39:34 -07004358 mutex_unlock(&cgroup_mutex);
4359
4360 out_release:
4361 mutex_unlock(&inode->i_mutex);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004362
4363 mutex_lock(&cgroup_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07004364 put_css_set(cg);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004365 mutex_unlock(&cgroup_mutex);
Li Zefan1404f062009-01-29 14:25:21 -08004366 deactivate_super(root->sb);
Paul Menage697f4162007-10-18 23:39:34 -07004367 return ret;
4368}
4369
Li Zefana043e3b2008-02-23 15:24:09 -08004370/**
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004371 * cgroup_is_descendant - see if @cgrp is a descendant of @task's cgrp
Li Zefana043e3b2008-02-23 15:24:09 -08004372 * @cgrp: the cgroup in question
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004373 * @task: the task in question
Li Zefana043e3b2008-02-23 15:24:09 -08004374 *
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004375 * See if @cgrp is a descendant of @task's cgroup in the appropriate
4376 * hierarchy.
Paul Menage697f4162007-10-18 23:39:34 -07004377 *
4378 * If we are sending in dummytop, then presumably we are creating
4379 * the top cgroup in the subsystem.
4380 *
4381 * Called only by the ns (nsproxy) cgroup.
4382 */
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004383int cgroup_is_descendant(const struct cgroup *cgrp, struct task_struct *task)
Paul Menage697f4162007-10-18 23:39:34 -07004384{
4385 int ret;
4386 struct cgroup *target;
Paul Menage697f4162007-10-18 23:39:34 -07004387
Paul Menagebd89aab2007-10-18 23:40:44 -07004388 if (cgrp == dummytop)
Paul Menage697f4162007-10-18 23:39:34 -07004389 return 1;
4390
Paul Menage7717f7b2009-09-23 15:56:22 -07004391 target = task_cgroup_from_root(task, cgrp->root);
Paul Menagebd89aab2007-10-18 23:40:44 -07004392 while (cgrp != target && cgrp!= cgrp->top_cgroup)
4393 cgrp = cgrp->parent;
4394 ret = (cgrp == target);
Paul Menage697f4162007-10-18 23:39:34 -07004395 return ret;
4396}
Paul Menage81a6a5c2007-10-18 23:39:38 -07004397
Paul Menagebd89aab2007-10-18 23:40:44 -07004398static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004399{
4400 /* All of these checks rely on RCU to keep the cgroup
4401 * structure alive */
Paul Menagebd89aab2007-10-18 23:40:44 -07004402 if (cgroup_is_releasable(cgrp) && !atomic_read(&cgrp->count)
4403 && list_empty(&cgrp->children) && !cgroup_has_css_refs(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004404 /* Control Group is currently removeable. If it's not
4405 * already queued for a userspace notification, queue
4406 * it now */
4407 int need_schedule_work = 0;
4408 spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07004409 if (!cgroup_is_removed(cgrp) &&
4410 list_empty(&cgrp->release_list)) {
4411 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004412 need_schedule_work = 1;
4413 }
4414 spin_unlock(&release_list_lock);
4415 if (need_schedule_work)
4416 schedule_work(&release_agent_work);
4417 }
4418}
4419
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -08004420/* Caller must verify that the css is not for root cgroup */
4421void __css_put(struct cgroup_subsys_state *css, int count)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004422{
Paul Menagebd89aab2007-10-18 23:40:44 -07004423 struct cgroup *cgrp = css->cgroup;
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004424 int val;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004425 rcu_read_lock();
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -08004426 val = atomic_sub_return(count, &css->refcnt);
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004427 if (val == 1) {
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004428 if (notify_on_release(cgrp)) {
4429 set_bit(CGRP_RELEASABLE, &cgrp->flags);
4430 check_for_release(cgrp);
4431 }
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004432 cgroup_wakeup_rmdir_waiter(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004433 }
4434 rcu_read_unlock();
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004435 WARN_ON_ONCE(val < 1);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004436}
Ben Blum67523c42010-03-10 15:22:11 -08004437EXPORT_SYMBOL_GPL(__css_put);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004438
4439/*
4440 * Notify userspace when a cgroup is released, by running the
4441 * configured release agent with the name of the cgroup (path
4442 * relative to the root of cgroup file system) as the argument.
4443 *
4444 * Most likely, this user command will try to rmdir this cgroup.
4445 *
4446 * This races with the possibility that some other task will be
4447 * attached to this cgroup before it is removed, or that some other
4448 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
4449 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
4450 * unused, and this cgroup will be reprieved from its death sentence,
4451 * to continue to serve a useful existence. Next time it's released,
4452 * we will get notified again, if it still has 'notify_on_release' set.
4453 *
4454 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
4455 * means only wait until the task is successfully execve()'d. The
4456 * separate release agent task is forked by call_usermodehelper(),
4457 * then control in this thread returns here, without waiting for the
4458 * release agent task. We don't bother to wait because the caller of
4459 * this routine has no use for the exit status of the release agent
4460 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07004461 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004462static void cgroup_release_agent(struct work_struct *work)
4463{
4464 BUG_ON(work != &release_agent_work);
4465 mutex_lock(&cgroup_mutex);
4466 spin_lock(&release_list_lock);
4467 while (!list_empty(&release_list)) {
4468 char *argv[3], *envp[3];
4469 int i;
Paul Menagee788e0662008-07-25 01:46:59 -07004470 char *pathbuf = NULL, *agentbuf = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07004471 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07004472 struct cgroup,
4473 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07004474 list_del_init(&cgrp->release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004475 spin_unlock(&release_list_lock);
4476 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paul Menagee788e0662008-07-25 01:46:59 -07004477 if (!pathbuf)
4478 goto continue_free;
4479 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0)
4480 goto continue_free;
4481 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
4482 if (!agentbuf)
4483 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004484
4485 i = 0;
Paul Menagee788e0662008-07-25 01:46:59 -07004486 argv[i++] = agentbuf;
4487 argv[i++] = pathbuf;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004488 argv[i] = NULL;
4489
4490 i = 0;
4491 /* minimal command environment */
4492 envp[i++] = "HOME=/";
4493 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
4494 envp[i] = NULL;
4495
4496 /* Drop the lock while we invoke the usermode helper,
4497 * since the exec could involve hitting disk and hence
4498 * be a slow process */
4499 mutex_unlock(&cgroup_mutex);
4500 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004501 mutex_lock(&cgroup_mutex);
Paul Menagee788e0662008-07-25 01:46:59 -07004502 continue_free:
4503 kfree(pathbuf);
4504 kfree(agentbuf);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004505 spin_lock(&release_list_lock);
4506 }
4507 spin_unlock(&release_list_lock);
4508 mutex_unlock(&cgroup_mutex);
4509}
Paul Menage8bab8dd2008-04-04 14:29:57 -07004510
4511static int __init cgroup_disable(char *str)
4512{
4513 int i;
4514 char *token;
4515
4516 while ((token = strsep(&str, ",")) != NULL) {
4517 if (!*token)
4518 continue;
Ben Blumaae8aab2010-03-10 15:22:07 -08004519 /*
4520 * cgroup_disable, being at boot time, can't know about module
4521 * subsystems, so we don't worry about them.
4522 */
4523 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07004524 struct cgroup_subsys *ss = subsys[i];
4525
4526 if (!strcmp(token, ss->name)) {
4527 ss->disabled = 1;
4528 printk(KERN_INFO "Disabling %s control group"
4529 " subsystem\n", ss->name);
4530 break;
4531 }
4532 }
4533 }
4534 return 1;
4535}
4536__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004537
4538/*
4539 * Functons for CSS ID.
4540 */
4541
4542/*
4543 *To get ID other than 0, this should be called when !cgroup_is_removed().
4544 */
4545unsigned short css_id(struct cgroup_subsys_state *css)
4546{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07004547 struct css_id *cssid;
4548
4549 /*
4550 * This css_id() can return correct value when somone has refcnt
4551 * on this or this is under rcu_read_lock(). Once css->id is allocated,
4552 * it's unchanged until freed.
4553 */
4554 cssid = rcu_dereference_check(css->id,
4555 rcu_read_lock_held() || atomic_read(&css->refcnt));
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004556
4557 if (cssid)
4558 return cssid->id;
4559 return 0;
4560}
Ben Blum67523c42010-03-10 15:22:11 -08004561EXPORT_SYMBOL_GPL(css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004562
4563unsigned short css_depth(struct cgroup_subsys_state *css)
4564{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07004565 struct css_id *cssid;
4566
4567 cssid = rcu_dereference_check(css->id,
4568 rcu_read_lock_held() || atomic_read(&css->refcnt));
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004569
4570 if (cssid)
4571 return cssid->depth;
4572 return 0;
4573}
Ben Blum67523c42010-03-10 15:22:11 -08004574EXPORT_SYMBOL_GPL(css_depth);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004575
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004576/**
4577 * css_is_ancestor - test "root" css is an ancestor of "child"
4578 * @child: the css to be tested.
4579 * @root: the css supporsed to be an ancestor of the child.
4580 *
4581 * Returns true if "root" is an ancestor of "child" in its hierarchy. Because
4582 * this function reads css->id, this use rcu_dereference() and rcu_read_lock().
4583 * But, considering usual usage, the csses should be valid objects after test.
4584 * Assuming that the caller will do some action to the child if this returns
4585 * returns true, the caller must take "child";s reference count.
4586 * If "child" is valid object and this returns true, "root" is valid, too.
4587 */
4588
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004589bool css_is_ancestor(struct cgroup_subsys_state *child,
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07004590 const struct cgroup_subsys_state *root)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004591{
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004592 struct css_id *child_id;
4593 struct css_id *root_id;
4594 bool ret = true;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004595
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004596 rcu_read_lock();
4597 child_id = rcu_dereference(child->id);
4598 root_id = rcu_dereference(root->id);
4599 if (!child_id
4600 || !root_id
4601 || (child_id->depth < root_id->depth)
4602 || (child_id->stack[root_id->depth] != root_id->id))
4603 ret = false;
4604 rcu_read_unlock();
4605 return ret;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004606}
4607
4608static void __free_css_id_cb(struct rcu_head *head)
4609{
4610 struct css_id *id;
4611
4612 id = container_of(head, struct css_id, rcu_head);
4613 kfree(id);
4614}
4615
4616void free_css_id(struct cgroup_subsys *ss, struct cgroup_subsys_state *css)
4617{
4618 struct css_id *id = css->id;
4619 /* When this is called before css_id initialization, id can be NULL */
4620 if (!id)
4621 return;
4622
4623 BUG_ON(!ss->use_id);
4624
4625 rcu_assign_pointer(id->css, NULL);
4626 rcu_assign_pointer(css->id, NULL);
4627 spin_lock(&ss->id_lock);
4628 idr_remove(&ss->idr, id->id);
4629 spin_unlock(&ss->id_lock);
4630 call_rcu(&id->rcu_head, __free_css_id_cb);
4631}
Ben Blum67523c42010-03-10 15:22:11 -08004632EXPORT_SYMBOL_GPL(free_css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004633
4634/*
4635 * This is called by init or create(). Then, calls to this function are
4636 * always serialized (By cgroup_mutex() at create()).
4637 */
4638
4639static struct css_id *get_new_cssid(struct cgroup_subsys *ss, int depth)
4640{
4641 struct css_id *newid;
4642 int myid, error, size;
4643
4644 BUG_ON(!ss->use_id);
4645
4646 size = sizeof(*newid) + sizeof(unsigned short) * (depth + 1);
4647 newid = kzalloc(size, GFP_KERNEL);
4648 if (!newid)
4649 return ERR_PTR(-ENOMEM);
4650 /* get id */
4651 if (unlikely(!idr_pre_get(&ss->idr, GFP_KERNEL))) {
4652 error = -ENOMEM;
4653 goto err_out;
4654 }
4655 spin_lock(&ss->id_lock);
4656 /* Don't use 0. allocates an ID of 1-65535 */
4657 error = idr_get_new_above(&ss->idr, newid, 1, &myid);
4658 spin_unlock(&ss->id_lock);
4659
4660 /* Returns error when there are no free spaces for new ID.*/
4661 if (error) {
4662 error = -ENOSPC;
4663 goto err_out;
4664 }
4665 if (myid > CSS_ID_MAX)
4666 goto remove_idr;
4667
4668 newid->id = myid;
4669 newid->depth = depth;
4670 return newid;
4671remove_idr:
4672 error = -ENOSPC;
4673 spin_lock(&ss->id_lock);
4674 idr_remove(&ss->idr, myid);
4675 spin_unlock(&ss->id_lock);
4676err_out:
4677 kfree(newid);
4678 return ERR_PTR(error);
4679
4680}
4681
Ben Blume6a11052010-03-10 15:22:09 -08004682static int __init_or_module cgroup_init_idr(struct cgroup_subsys *ss,
4683 struct cgroup_subsys_state *rootcss)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004684{
4685 struct css_id *newid;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004686
4687 spin_lock_init(&ss->id_lock);
4688 idr_init(&ss->idr);
4689
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004690 newid = get_new_cssid(ss, 0);
4691 if (IS_ERR(newid))
4692 return PTR_ERR(newid);
4693
4694 newid->stack[0] = newid->id;
4695 newid->css = rootcss;
4696 rootcss->id = newid;
4697 return 0;
4698}
4699
4700static int alloc_css_id(struct cgroup_subsys *ss, struct cgroup *parent,
4701 struct cgroup *child)
4702{
4703 int subsys_id, i, depth = 0;
4704 struct cgroup_subsys_state *parent_css, *child_css;
Li Zefanfae9c792010-04-22 17:30:00 +08004705 struct css_id *child_id, *parent_id;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004706
4707 subsys_id = ss->subsys_id;
4708 parent_css = parent->subsys[subsys_id];
4709 child_css = child->subsys[subsys_id];
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004710 parent_id = parent_css->id;
Greg Thelen94b3dd02010-06-04 14:15:03 -07004711 depth = parent_id->depth + 1;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004712
4713 child_id = get_new_cssid(ss, depth);
4714 if (IS_ERR(child_id))
4715 return PTR_ERR(child_id);
4716
4717 for (i = 0; i < depth; i++)
4718 child_id->stack[i] = parent_id->stack[i];
4719 child_id->stack[depth] = child_id->id;
4720 /*
4721 * child_id->css pointer will be set after this cgroup is available
4722 * see cgroup_populate_dir()
4723 */
4724 rcu_assign_pointer(child_css->id, child_id);
4725
4726 return 0;
4727}
4728
4729/**
4730 * css_lookup - lookup css by id
4731 * @ss: cgroup subsys to be looked into.
4732 * @id: the id
4733 *
4734 * Returns pointer to cgroup_subsys_state if there is valid one with id.
4735 * NULL if not. Should be called under rcu_read_lock()
4736 */
4737struct cgroup_subsys_state *css_lookup(struct cgroup_subsys *ss, int id)
4738{
4739 struct css_id *cssid = NULL;
4740
4741 BUG_ON(!ss->use_id);
4742 cssid = idr_find(&ss->idr, id);
4743
4744 if (unlikely(!cssid))
4745 return NULL;
4746
4747 return rcu_dereference(cssid->css);
4748}
Ben Blum67523c42010-03-10 15:22:11 -08004749EXPORT_SYMBOL_GPL(css_lookup);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004750
4751/**
4752 * css_get_next - lookup next cgroup under specified hierarchy.
4753 * @ss: pointer to subsystem
4754 * @id: current position of iteration.
4755 * @root: pointer to css. search tree under this.
4756 * @foundid: position of found object.
4757 *
4758 * Search next css under the specified hierarchy of rootid. Calling under
4759 * rcu_read_lock() is necessary. Returns NULL if it reaches the end.
4760 */
4761struct cgroup_subsys_state *
4762css_get_next(struct cgroup_subsys *ss, int id,
4763 struct cgroup_subsys_state *root, int *foundid)
4764{
4765 struct cgroup_subsys_state *ret = NULL;
4766 struct css_id *tmp;
4767 int tmpid;
4768 int rootid = css_id(root);
4769 int depth = css_depth(root);
4770
4771 if (!rootid)
4772 return NULL;
4773
4774 BUG_ON(!ss->use_id);
4775 /* fill start point for scan */
4776 tmpid = id;
4777 while (1) {
4778 /*
4779 * scan next entry from bitmap(tree), tmpid is updated after
4780 * idr_get_next().
4781 */
4782 spin_lock(&ss->id_lock);
4783 tmp = idr_get_next(&ss->idr, &tmpid);
4784 spin_unlock(&ss->id_lock);
4785
4786 if (!tmp)
4787 break;
4788 if (tmp->depth >= depth && tmp->stack[depth] == rootid) {
4789 ret = rcu_dereference(tmp->css);
4790 if (ret) {
4791 *foundid = tmpid;
4792 break;
4793 }
4794 }
4795 /* continue to scan from next id */
4796 tmpid = tmpid + 1;
4797 }
4798 return ret;
4799}
4800
Paul Menagefe693432009-09-23 15:56:20 -07004801#ifdef CONFIG_CGROUP_DEBUG
4802static struct cgroup_subsys_state *debug_create(struct cgroup_subsys *ss,
4803 struct cgroup *cont)
4804{
4805 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
4806
4807 if (!css)
4808 return ERR_PTR(-ENOMEM);
4809
4810 return css;
4811}
4812
4813static void debug_destroy(struct cgroup_subsys *ss, struct cgroup *cont)
4814{
4815 kfree(cont->subsys[debug_subsys_id]);
4816}
4817
4818static u64 cgroup_refcount_read(struct cgroup *cont, struct cftype *cft)
4819{
4820 return atomic_read(&cont->count);
4821}
4822
4823static u64 debug_taskcount_read(struct cgroup *cont, struct cftype *cft)
4824{
4825 return cgroup_task_count(cont);
4826}
4827
4828static u64 current_css_set_read(struct cgroup *cont, struct cftype *cft)
4829{
4830 return (u64)(unsigned long)current->cgroups;
4831}
4832
4833static u64 current_css_set_refcount_read(struct cgroup *cont,
4834 struct cftype *cft)
4835{
4836 u64 count;
4837
4838 rcu_read_lock();
4839 count = atomic_read(&current->cgroups->refcount);
4840 rcu_read_unlock();
4841 return count;
4842}
4843
Paul Menage7717f7b2009-09-23 15:56:22 -07004844static int current_css_set_cg_links_read(struct cgroup *cont,
4845 struct cftype *cft,
4846 struct seq_file *seq)
4847{
4848 struct cg_cgroup_link *link;
4849 struct css_set *cg;
4850
4851 read_lock(&css_set_lock);
4852 rcu_read_lock();
4853 cg = rcu_dereference(current->cgroups);
4854 list_for_each_entry(link, &cg->cg_links, cg_link_list) {
4855 struct cgroup *c = link->cgrp;
4856 const char *name;
4857
4858 if (c->dentry)
4859 name = c->dentry->d_name.name;
4860 else
4861 name = "?";
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004862 seq_printf(seq, "Root %d group %s\n",
4863 c->root->hierarchy_id, name);
Paul Menage7717f7b2009-09-23 15:56:22 -07004864 }
4865 rcu_read_unlock();
4866 read_unlock(&css_set_lock);
4867 return 0;
4868}
4869
4870#define MAX_TASKS_SHOWN_PER_CSS 25
4871static int cgroup_css_links_read(struct cgroup *cont,
4872 struct cftype *cft,
4873 struct seq_file *seq)
4874{
4875 struct cg_cgroup_link *link;
4876
4877 read_lock(&css_set_lock);
4878 list_for_each_entry(link, &cont->css_sets, cgrp_link_list) {
4879 struct css_set *cg = link->cg;
4880 struct task_struct *task;
4881 int count = 0;
4882 seq_printf(seq, "css_set %p\n", cg);
4883 list_for_each_entry(task, &cg->tasks, cg_list) {
4884 if (count++ > MAX_TASKS_SHOWN_PER_CSS) {
4885 seq_puts(seq, " ...\n");
4886 break;
4887 } else {
4888 seq_printf(seq, " task %d\n",
4889 task_pid_vnr(task));
4890 }
4891 }
4892 }
4893 read_unlock(&css_set_lock);
4894 return 0;
4895}
4896
Paul Menagefe693432009-09-23 15:56:20 -07004897static u64 releasable_read(struct cgroup *cgrp, struct cftype *cft)
4898{
4899 return test_bit(CGRP_RELEASABLE, &cgrp->flags);
4900}
4901
4902static struct cftype debug_files[] = {
4903 {
4904 .name = "cgroup_refcount",
4905 .read_u64 = cgroup_refcount_read,
4906 },
4907 {
4908 .name = "taskcount",
4909 .read_u64 = debug_taskcount_read,
4910 },
4911
4912 {
4913 .name = "current_css_set",
4914 .read_u64 = current_css_set_read,
4915 },
4916
4917 {
4918 .name = "current_css_set_refcount",
4919 .read_u64 = current_css_set_refcount_read,
4920 },
4921
4922 {
Paul Menage7717f7b2009-09-23 15:56:22 -07004923 .name = "current_css_set_cg_links",
4924 .read_seq_string = current_css_set_cg_links_read,
4925 },
4926
4927 {
4928 .name = "cgroup_css_links",
4929 .read_seq_string = cgroup_css_links_read,
4930 },
4931
4932 {
Paul Menagefe693432009-09-23 15:56:20 -07004933 .name = "releasable",
4934 .read_u64 = releasable_read,
4935 },
4936};
4937
4938static int debug_populate(struct cgroup_subsys *ss, struct cgroup *cont)
4939{
4940 return cgroup_add_files(cont, ss, debug_files,
4941 ARRAY_SIZE(debug_files));
4942}
4943
4944struct cgroup_subsys debug_subsys = {
4945 .name = "debug",
4946 .create = debug_create,
4947 .destroy = debug_destroy,
4948 .populate = debug_populate,
4949 .subsys_id = debug_subsys_id,
4950};
4951#endif /* CONFIG_CGROUP_DEBUG */