blob: 9d90c08f3bdedf768a86cdd9f01874a1e0a87c8b [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>
Alessio Igor Bogani337eb002009-05-12 15:10:54 +020055#include <linux/smp_lock.h>
Li Zefan096b7fe2009-07-29 15:04:04 -070056#include <linux/pid_namespace.h>
Paul Menage2c6ab6d2009-09-23 15:56:23 -070057#include <linux/idr.h>
Ben Blumd1d9fd32009-09-23 15:56:28 -070058#include <linux/vmalloc.h> /* TODO: replace with more sophisticated array */
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -080059#include <linux/eventfd.h>
60#include <linux/poll.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070061
Paul Menageddbcc7e2007-10-18 23:39:30 -070062#include <asm/atomic.h>
63
Paul Menage81a6a5c2007-10-18 23:39:38 -070064static DEFINE_MUTEX(cgroup_mutex);
65
Ben Blumaae8aab2010-03-10 15:22:07 -080066/*
67 * Generate an array of cgroup subsystem pointers. At boot time, this is
68 * populated up to CGROUP_BUILTIN_SUBSYS_COUNT, and modular subsystems are
69 * registered after that. The mutable section of this array is protected by
70 * cgroup_mutex.
71 */
Paul Menageddbcc7e2007-10-18 23:39:30 -070072#define SUBSYS(_x) &_x ## _subsys,
Ben Blumaae8aab2010-03-10 15:22:07 -080073static struct cgroup_subsys *subsys[CGROUP_SUBSYS_COUNT] = {
Paul Menageddbcc7e2007-10-18 23:39:30 -070074#include <linux/cgroup_subsys.h>
75};
76
Paul Menagec6d57f32009-09-23 15:56:19 -070077#define MAX_CGROUP_ROOT_NAMELEN 64
78
Paul Menageddbcc7e2007-10-18 23:39:30 -070079/*
80 * A cgroupfs_root represents the root of a cgroup hierarchy,
81 * and may be associated with a superblock to form an active
82 * hierarchy
83 */
84struct cgroupfs_root {
85 struct super_block *sb;
86
87 /*
88 * The bitmask of subsystems intended to be attached to this
89 * hierarchy
90 */
91 unsigned long subsys_bits;
92
Paul Menage2c6ab6d2009-09-23 15:56:23 -070093 /* Unique id for this hierarchy. */
94 int hierarchy_id;
95
Paul Menageddbcc7e2007-10-18 23:39:30 -070096 /* The bitmask of subsystems currently attached to this hierarchy */
97 unsigned long actual_subsys_bits;
98
99 /* A list running through the attached subsystems */
100 struct list_head subsys_list;
101
102 /* The root cgroup for this hierarchy */
103 struct cgroup top_cgroup;
104
105 /* Tracks how many cgroups are currently defined in hierarchy.*/
106 int number_of_cgroups;
107
Li Zefane5f6a862009-01-07 18:07:41 -0800108 /* A list running through the active hierarchies */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700109 struct list_head root_list;
110
111 /* Hierarchy-specific flags */
112 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700113
Paul Menagee788e062008-07-25 01:46:59 -0700114 /* The path to use for release notifications. */
Paul Menage81a6a5c2007-10-18 23:39:38 -0700115 char release_agent_path[PATH_MAX];
Paul Menagec6d57f32009-09-23 15:56:19 -0700116
117 /* The name for this hierarchy - may be empty */
118 char name[MAX_CGROUP_ROOT_NAMELEN];
Paul Menageddbcc7e2007-10-18 23:39:30 -0700119};
120
Paul Menageddbcc7e2007-10-18 23:39:30 -0700121/*
122 * The "rootnode" hierarchy is the "dummy hierarchy", reserved for the
123 * subsystems that are otherwise unattached - it never has more than a
124 * single cgroup, and all tasks are part of that cgroup.
125 */
126static struct cgroupfs_root rootnode;
127
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700128/*
129 * CSS ID -- ID per subsys's Cgroup Subsys State(CSS). used only when
130 * cgroup_subsys->use_id != 0.
131 */
132#define CSS_ID_MAX (65535)
133struct css_id {
134 /*
135 * The css to which this ID points. This pointer is set to valid value
136 * after cgroup is populated. If cgroup is removed, this will be NULL.
137 * This pointer is expected to be RCU-safe because destroy()
138 * is called after synchronize_rcu(). But for safe use, css_is_removed()
139 * css_tryget() should be used for avoiding race.
140 */
141 struct cgroup_subsys_state *css;
142 /*
143 * ID of this css.
144 */
145 unsigned short id;
146 /*
147 * Depth in hierarchy which this ID belongs to.
148 */
149 unsigned short depth;
150 /*
151 * ID is freed by RCU. (and lookup routine is RCU safe.)
152 */
153 struct rcu_head rcu_head;
154 /*
155 * Hierarchy of CSS ID belongs to.
156 */
157 unsigned short stack[0]; /* Array of Length (depth+1) */
158};
159
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800160/*
161 * cgroup_event represents events which userspace want to recieve.
162 */
163struct cgroup_event {
164 /*
165 * Cgroup which the event belongs to.
166 */
167 struct cgroup *cgrp;
168 /*
169 * Control file which the event associated.
170 */
171 struct cftype *cft;
172 /*
173 * eventfd to signal userspace about the event.
174 */
175 struct eventfd_ctx *eventfd;
176 /*
177 * Each of these stored in a list by the cgroup.
178 */
179 struct list_head list;
180 /*
181 * All fields below needed to unregister event when
182 * userspace closes eventfd.
183 */
184 poll_table pt;
185 wait_queue_head_t *wqh;
186 wait_queue_t wait;
187 struct work_struct remove;
188};
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700189
Paul Menageddbcc7e2007-10-18 23:39:30 -0700190/* The list of hierarchy roots */
191
192static LIST_HEAD(roots);
Paul Menage817929e2007-10-18 23:39:36 -0700193static int root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700194
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700195static DEFINE_IDA(hierarchy_ida);
196static int next_hierarchy_id;
197static DEFINE_SPINLOCK(hierarchy_id_lock);
198
Paul Menageddbcc7e2007-10-18 23:39:30 -0700199/* dummytop is a shorthand for the dummy hierarchy's top cgroup */
200#define dummytop (&rootnode.top_cgroup)
201
202/* This flag indicates whether tasks in the fork and exit paths should
Li Zefana043e3b2008-02-23 15:24:09 -0800203 * check for fork/exit handlers to call. This avoids us having to do
204 * extra work in the fork/exit path if none of the subsystems need to
205 * be called.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700206 */
Li Zefan8947f9d2008-07-25 01:46:56 -0700207static int need_forkexit_callback __read_mostly;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700208
Paul E. McKenneyd11c5632010-02-22 17:04:50 -0800209#ifdef CONFIG_PROVE_LOCKING
210int cgroup_lock_is_held(void)
211{
212 return lockdep_is_held(&cgroup_mutex);
213}
214#else /* #ifdef CONFIG_PROVE_LOCKING */
215int cgroup_lock_is_held(void)
216{
217 return mutex_is_locked(&cgroup_mutex);
218}
219#endif /* #else #ifdef CONFIG_PROVE_LOCKING */
220
221EXPORT_SYMBOL_GPL(cgroup_lock_is_held);
222
Paul Menageddbcc7e2007-10-18 23:39:30 -0700223/* convenient tests for these bits */
Paul Menagebd89aab2007-10-18 23:40:44 -0700224inline int cgroup_is_removed(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700225{
Paul Menagebd89aab2007-10-18 23:40:44 -0700226 return test_bit(CGRP_REMOVED, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700227}
228
229/* bits in struct cgroupfs_root flags field */
230enum {
231 ROOT_NOPREFIX, /* mounted subsystems have no named prefix */
232};
233
Adrian Bunke9685a02008-02-07 00:13:46 -0800234static int cgroup_is_releasable(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700235{
236 const int bits =
Paul Menagebd89aab2007-10-18 23:40:44 -0700237 (1 << CGRP_RELEASABLE) |
238 (1 << CGRP_NOTIFY_ON_RELEASE);
239 return (cgrp->flags & bits) == bits;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700240}
241
Adrian Bunke9685a02008-02-07 00:13:46 -0800242static int notify_on_release(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700243{
Paul Menagebd89aab2007-10-18 23:40:44 -0700244 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700245}
246
Paul Menageddbcc7e2007-10-18 23:39:30 -0700247/*
248 * for_each_subsys() allows you to iterate on each subsystem attached to
249 * an active hierarchy
250 */
251#define for_each_subsys(_root, _ss) \
252list_for_each_entry(_ss, &_root->subsys_list, sibling)
253
Li Zefane5f6a862009-01-07 18:07:41 -0800254/* for_each_active_root() allows you to iterate across the active hierarchies */
255#define for_each_active_root(_root) \
Paul Menageddbcc7e2007-10-18 23:39:30 -0700256list_for_each_entry(_root, &roots, root_list)
257
Paul Menage81a6a5c2007-10-18 23:39:38 -0700258/* the list of cgroups eligible for automatic release. Protected by
259 * release_list_lock */
260static LIST_HEAD(release_list);
261static DEFINE_SPINLOCK(release_list_lock);
262static void cgroup_release_agent(struct work_struct *work);
263static DECLARE_WORK(release_agent_work, cgroup_release_agent);
Paul Menagebd89aab2007-10-18 23:40:44 -0700264static void check_for_release(struct cgroup *cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700265
Paul Menage817929e2007-10-18 23:39:36 -0700266/* Link structure for associating css_set objects with cgroups */
267struct cg_cgroup_link {
268 /*
269 * List running through cg_cgroup_links associated with a
270 * cgroup, anchored on cgroup->css_sets
271 */
Paul Menagebd89aab2007-10-18 23:40:44 -0700272 struct list_head cgrp_link_list;
Paul Menage7717f7b2009-09-23 15:56:22 -0700273 struct cgroup *cgrp;
Paul Menage817929e2007-10-18 23:39:36 -0700274 /*
275 * List running through cg_cgroup_links pointing at a
276 * single css_set object, anchored on css_set->cg_links
277 */
278 struct list_head cg_link_list;
279 struct css_set *cg;
280};
281
282/* The default css_set - used by init and its children prior to any
283 * hierarchies being mounted. It contains a pointer to the root state
284 * for each subsystem. Also used to anchor the list of css_sets. Not
285 * reference-counted, to improve performance when child cgroups
286 * haven't been created.
287 */
288
289static struct css_set init_css_set;
290static struct cg_cgroup_link init_css_set_link;
291
Ben Blume6a11052010-03-10 15:22:09 -0800292static int cgroup_init_idr(struct cgroup_subsys *ss,
293 struct cgroup_subsys_state *css);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700294
Paul Menage817929e2007-10-18 23:39:36 -0700295/* css_set_lock protects the list of css_set objects, and the
296 * chain of tasks off each css_set. Nests outside task->alloc_lock
297 * due to cgroup_iter_start() */
298static DEFINE_RWLOCK(css_set_lock);
299static int css_set_count;
300
Paul Menage7717f7b2009-09-23 15:56:22 -0700301/*
302 * hash table for cgroup groups. This improves the performance to find
303 * an existing css_set. This hash doesn't (currently) take into
304 * account cgroups in empty hierarchies.
305 */
Li Zefan472b1052008-04-29 01:00:11 -0700306#define CSS_SET_HASH_BITS 7
307#define CSS_SET_TABLE_SIZE (1 << CSS_SET_HASH_BITS)
308static struct hlist_head css_set_table[CSS_SET_TABLE_SIZE];
309
310static struct hlist_head *css_set_hash(struct cgroup_subsys_state *css[])
311{
312 int i;
313 int index;
314 unsigned long tmp = 0UL;
315
316 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++)
317 tmp += (unsigned long)css[i];
318 tmp = (tmp >> 16) ^ tmp;
319
320 index = hash_long(tmp, CSS_SET_HASH_BITS);
321
322 return &css_set_table[index];
323}
324
Ben Blumc3783692009-09-23 15:56:29 -0700325static void free_css_set_rcu(struct rcu_head *obj)
326{
327 struct css_set *cg = container_of(obj, struct css_set, rcu_head);
328 kfree(cg);
329}
330
Paul Menage817929e2007-10-18 23:39:36 -0700331/* We don't maintain the lists running through each css_set to its
332 * task until after the first call to cgroup_iter_start(). This
333 * reduces the fork()/exit() overhead for people who have cgroups
334 * compiled into their kernel but not actually in use */
Li Zefan8947f9d2008-07-25 01:46:56 -0700335static int use_task_css_set_links __read_mostly;
Paul Menage817929e2007-10-18 23:39:36 -0700336
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700337static void __put_css_set(struct css_set *cg, int taskexit)
Paul Menageb4f48b62007-10-18 23:39:33 -0700338{
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700339 struct cg_cgroup_link *link;
340 struct cg_cgroup_link *saved_link;
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700341 /*
342 * Ensure that the refcount doesn't hit zero while any readers
343 * can see it. Similar to atomic_dec_and_lock(), but for an
344 * rwlock
345 */
346 if (atomic_add_unless(&cg->refcount, -1, 1))
347 return;
348 write_lock(&css_set_lock);
349 if (!atomic_dec_and_test(&cg->refcount)) {
350 write_unlock(&css_set_lock);
351 return;
352 }
Paul Menage81a6a5c2007-10-18 23:39:38 -0700353
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700354 /* This css_set is dead. unlink it and release cgroup refcounts */
355 hlist_del(&cg->hlist);
356 css_set_count--;
357
358 list_for_each_entry_safe(link, saved_link, &cg->cg_links,
359 cg_link_list) {
360 struct cgroup *cgrp = link->cgrp;
361 list_del(&link->cg_link_list);
362 list_del(&link->cgrp_link_list);
Paul Menagebd89aab2007-10-18 23:40:44 -0700363 if (atomic_dec_and_test(&cgrp->count) &&
364 notify_on_release(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -0700365 if (taskexit)
Paul Menagebd89aab2007-10-18 23:40:44 -0700366 set_bit(CGRP_RELEASABLE, &cgrp->flags);
367 check_for_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700368 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700369
370 kfree(link);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700371 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700372
373 write_unlock(&css_set_lock);
Ben Blumc3783692009-09-23 15:56:29 -0700374 call_rcu(&cg->rcu_head, free_css_set_rcu);
Paul Menage817929e2007-10-18 23:39:36 -0700375}
376
377/*
378 * refcounted get/put for css_set objects
379 */
380static inline void get_css_set(struct css_set *cg)
381{
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700382 atomic_inc(&cg->refcount);
Paul Menage817929e2007-10-18 23:39:36 -0700383}
384
385static inline void put_css_set(struct css_set *cg)
386{
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700387 __put_css_set(cg, 0);
Paul Menage817929e2007-10-18 23:39:36 -0700388}
389
Paul Menage81a6a5c2007-10-18 23:39:38 -0700390static inline void put_css_set_taskexit(struct css_set *cg)
391{
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700392 __put_css_set(cg, 1);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700393}
394
Paul Menage817929e2007-10-18 23:39:36 -0700395/*
Paul Menage7717f7b2009-09-23 15:56:22 -0700396 * compare_css_sets - helper function for find_existing_css_set().
397 * @cg: candidate css_set being tested
398 * @old_cg: existing css_set for a task
399 * @new_cgrp: cgroup that's being entered by the task
400 * @template: desired set of css pointers in css_set (pre-calculated)
401 *
402 * Returns true if "cg" matches "old_cg" except for the hierarchy
403 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
404 */
405static bool compare_css_sets(struct css_set *cg,
406 struct css_set *old_cg,
407 struct cgroup *new_cgrp,
408 struct cgroup_subsys_state *template[])
409{
410 struct list_head *l1, *l2;
411
412 if (memcmp(template, cg->subsys, sizeof(cg->subsys))) {
413 /* Not all subsystems matched */
414 return false;
415 }
416
417 /*
418 * Compare cgroup pointers in order to distinguish between
419 * different cgroups in heirarchies with no subsystems. We
420 * could get by with just this check alone (and skip the
421 * memcmp above) but on most setups the memcmp check will
422 * avoid the need for this more expensive check on almost all
423 * candidates.
424 */
425
426 l1 = &cg->cg_links;
427 l2 = &old_cg->cg_links;
428 while (1) {
429 struct cg_cgroup_link *cgl1, *cgl2;
430 struct cgroup *cg1, *cg2;
431
432 l1 = l1->next;
433 l2 = l2->next;
434 /* See if we reached the end - both lists are equal length. */
435 if (l1 == &cg->cg_links) {
436 BUG_ON(l2 != &old_cg->cg_links);
437 break;
438 } else {
439 BUG_ON(l2 == &old_cg->cg_links);
440 }
441 /* Locate the cgroups associated with these links. */
442 cgl1 = list_entry(l1, struct cg_cgroup_link, cg_link_list);
443 cgl2 = list_entry(l2, struct cg_cgroup_link, cg_link_list);
444 cg1 = cgl1->cgrp;
445 cg2 = cgl2->cgrp;
446 /* Hierarchies should be linked in the same order. */
447 BUG_ON(cg1->root != cg2->root);
448
449 /*
450 * If this hierarchy is the hierarchy of the cgroup
451 * that's changing, then we need to check that this
452 * css_set points to the new cgroup; if it's any other
453 * hierarchy, then this css_set should point to the
454 * same cgroup as the old css_set.
455 */
456 if (cg1->root == new_cgrp->root) {
457 if (cg1 != new_cgrp)
458 return false;
459 } else {
460 if (cg1 != cg2)
461 return false;
462 }
463 }
464 return true;
465}
466
467/*
Paul Menage817929e2007-10-18 23:39:36 -0700468 * find_existing_css_set() is a helper for
469 * find_css_set(), and checks to see whether an existing
Li Zefan472b1052008-04-29 01:00:11 -0700470 * css_set is suitable.
Paul Menage817929e2007-10-18 23:39:36 -0700471 *
472 * oldcg: the cgroup group that we're using before the cgroup
473 * transition
474 *
Paul Menagebd89aab2007-10-18 23:40:44 -0700475 * cgrp: the cgroup that we're moving into
Paul Menage817929e2007-10-18 23:39:36 -0700476 *
477 * template: location in which to build the desired set of subsystem
478 * state objects for the new cgroup group
479 */
Paul Menage817929e2007-10-18 23:39:36 -0700480static struct css_set *find_existing_css_set(
481 struct css_set *oldcg,
Paul Menagebd89aab2007-10-18 23:40:44 -0700482 struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -0700483 struct cgroup_subsys_state *template[])
484{
485 int i;
Paul Menagebd89aab2007-10-18 23:40:44 -0700486 struct cgroupfs_root *root = cgrp->root;
Li Zefan472b1052008-04-29 01:00:11 -0700487 struct hlist_head *hhead;
488 struct hlist_node *node;
489 struct css_set *cg;
Paul Menage817929e2007-10-18 23:39:36 -0700490
Ben Blumaae8aab2010-03-10 15:22:07 -0800491 /*
492 * Build the set of subsystem state objects that we want to see in the
493 * new css_set. while subsystems can change globally, the entries here
494 * won't change, so no need for locking.
495 */
Paul Menage817929e2007-10-18 23:39:36 -0700496 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Li Zefan8d53d552008-02-23 15:24:11 -0800497 if (root->subsys_bits & (1UL << i)) {
Paul Menage817929e2007-10-18 23:39:36 -0700498 /* Subsystem is in this hierarchy. So we want
499 * the subsystem state from the new
500 * cgroup */
Paul Menagebd89aab2007-10-18 23:40:44 -0700501 template[i] = cgrp->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700502 } else {
503 /* Subsystem is not in this hierarchy, so we
504 * don't want to change the subsystem state */
505 template[i] = oldcg->subsys[i];
506 }
507 }
508
Li Zefan472b1052008-04-29 01:00:11 -0700509 hhead = css_set_hash(template);
510 hlist_for_each_entry(cg, node, hhead, hlist) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700511 if (!compare_css_sets(cg, oldcg, cgrp, template))
512 continue;
513
514 /* This css_set matches what we need */
515 return cg;
Li Zefan472b1052008-04-29 01:00:11 -0700516 }
Paul Menage817929e2007-10-18 23:39:36 -0700517
518 /* No existing cgroup group matched */
519 return NULL;
520}
521
Paul Menage817929e2007-10-18 23:39:36 -0700522static void free_cg_links(struct list_head *tmp)
523{
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700524 struct cg_cgroup_link *link;
525 struct cg_cgroup_link *saved_link;
526
527 list_for_each_entry_safe(link, saved_link, tmp, cgrp_link_list) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700528 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -0700529 kfree(link);
530 }
531}
532
533/*
Li Zefan36553432008-07-29 22:33:19 -0700534 * allocate_cg_links() allocates "count" cg_cgroup_link structures
535 * and chains them on tmp through their cgrp_link_list fields. Returns 0 on
536 * success or a negative error
537 */
538static int allocate_cg_links(int count, struct list_head *tmp)
539{
540 struct cg_cgroup_link *link;
541 int i;
542 INIT_LIST_HEAD(tmp);
543 for (i = 0; i < count; i++) {
544 link = kmalloc(sizeof(*link), GFP_KERNEL);
545 if (!link) {
546 free_cg_links(tmp);
547 return -ENOMEM;
548 }
549 list_add(&link->cgrp_link_list, tmp);
550 }
551 return 0;
552}
553
Li Zefanc12f65d2009-01-07 18:07:42 -0800554/**
555 * link_css_set - a helper function to link a css_set to a cgroup
556 * @tmp_cg_links: cg_cgroup_link objects allocated by allocate_cg_links()
557 * @cg: the css_set to be linked
558 * @cgrp: the destination cgroup
559 */
560static void link_css_set(struct list_head *tmp_cg_links,
561 struct css_set *cg, struct cgroup *cgrp)
562{
563 struct cg_cgroup_link *link;
564
565 BUG_ON(list_empty(tmp_cg_links));
566 link = list_first_entry(tmp_cg_links, struct cg_cgroup_link,
567 cgrp_link_list);
568 link->cg = cg;
Paul Menage7717f7b2009-09-23 15:56:22 -0700569 link->cgrp = cgrp;
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700570 atomic_inc(&cgrp->count);
Li Zefanc12f65d2009-01-07 18:07:42 -0800571 list_move(&link->cgrp_link_list, &cgrp->css_sets);
Paul Menage7717f7b2009-09-23 15:56:22 -0700572 /*
573 * Always add links to the tail of the list so that the list
574 * is sorted by order of hierarchy creation
575 */
576 list_add_tail(&link->cg_link_list, &cg->cg_links);
Li Zefanc12f65d2009-01-07 18:07:42 -0800577}
578
Li Zefan36553432008-07-29 22:33:19 -0700579/*
Paul Menage817929e2007-10-18 23:39:36 -0700580 * find_css_set() takes an existing cgroup group and a
581 * cgroup object, and returns a css_set object that's
582 * equivalent to the old group, but with the given cgroup
583 * substituted into the appropriate hierarchy. Must be called with
584 * cgroup_mutex held
585 */
Paul Menage817929e2007-10-18 23:39:36 -0700586static struct css_set *find_css_set(
Paul Menagebd89aab2007-10-18 23:40:44 -0700587 struct css_set *oldcg, struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700588{
589 struct css_set *res;
590 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT];
Paul Menage817929e2007-10-18 23:39:36 -0700591
592 struct list_head tmp_cg_links;
Paul Menage817929e2007-10-18 23:39:36 -0700593
Li Zefan472b1052008-04-29 01:00:11 -0700594 struct hlist_head *hhead;
Paul Menage7717f7b2009-09-23 15:56:22 -0700595 struct cg_cgroup_link *link;
Li Zefan472b1052008-04-29 01:00:11 -0700596
Paul Menage817929e2007-10-18 23:39:36 -0700597 /* First see if we already have a cgroup group that matches
598 * the desired set */
Li Zefan7e9abd82008-07-25 01:46:54 -0700599 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -0700600 res = find_existing_css_set(oldcg, cgrp, template);
Paul Menage817929e2007-10-18 23:39:36 -0700601 if (res)
602 get_css_set(res);
Li Zefan7e9abd82008-07-25 01:46:54 -0700603 read_unlock(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -0700604
605 if (res)
606 return res;
607
608 res = kmalloc(sizeof(*res), GFP_KERNEL);
609 if (!res)
610 return NULL;
611
612 /* Allocate all the cg_cgroup_link objects that we'll need */
613 if (allocate_cg_links(root_count, &tmp_cg_links) < 0) {
614 kfree(res);
615 return NULL;
616 }
617
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700618 atomic_set(&res->refcount, 1);
Paul Menage817929e2007-10-18 23:39:36 -0700619 INIT_LIST_HEAD(&res->cg_links);
620 INIT_LIST_HEAD(&res->tasks);
Li Zefan472b1052008-04-29 01:00:11 -0700621 INIT_HLIST_NODE(&res->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700622
623 /* Copy the set of subsystem state objects generated in
624 * find_existing_css_set() */
625 memcpy(res->subsys, template, sizeof(res->subsys));
626
627 write_lock(&css_set_lock);
628 /* Add reference counts and links from the new css_set. */
Paul Menage7717f7b2009-09-23 15:56:22 -0700629 list_for_each_entry(link, &oldcg->cg_links, cg_link_list) {
630 struct cgroup *c = link->cgrp;
631 if (c->root == cgrp->root)
632 c = cgrp;
633 link_css_set(&tmp_cg_links, res, c);
634 }
Paul Menage817929e2007-10-18 23:39:36 -0700635
636 BUG_ON(!list_empty(&tmp_cg_links));
637
Paul Menage817929e2007-10-18 23:39:36 -0700638 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -0700639
640 /* Add this cgroup group to the hash table */
641 hhead = css_set_hash(res->subsys);
642 hlist_add_head(&res->hlist, hhead);
643
Paul Menage817929e2007-10-18 23:39:36 -0700644 write_unlock(&css_set_lock);
645
646 return res;
Paul Menageb4f48b62007-10-18 23:39:33 -0700647}
648
Paul Menageddbcc7e2007-10-18 23:39:30 -0700649/*
Paul Menage7717f7b2009-09-23 15:56:22 -0700650 * Return the cgroup for "task" from the given hierarchy. Must be
651 * called with cgroup_mutex held.
652 */
653static struct cgroup *task_cgroup_from_root(struct task_struct *task,
654 struct cgroupfs_root *root)
655{
656 struct css_set *css;
657 struct cgroup *res = NULL;
658
659 BUG_ON(!mutex_is_locked(&cgroup_mutex));
660 read_lock(&css_set_lock);
661 /*
662 * No need to lock the task - since we hold cgroup_mutex the
663 * task can't change groups, so the only thing that can happen
664 * is that it exits and its css is set back to init_css_set.
665 */
666 css = task->cgroups;
667 if (css == &init_css_set) {
668 res = &root->top_cgroup;
669 } else {
670 struct cg_cgroup_link *link;
671 list_for_each_entry(link, &css->cg_links, cg_link_list) {
672 struct cgroup *c = link->cgrp;
673 if (c->root == root) {
674 res = c;
675 break;
676 }
677 }
678 }
679 read_unlock(&css_set_lock);
680 BUG_ON(!res);
681 return res;
682}
683
684/*
Paul Menageddbcc7e2007-10-18 23:39:30 -0700685 * There is one global cgroup mutex. We also require taking
686 * task_lock() when dereferencing a task's cgroup subsys pointers.
687 * See "The task_lock() exception", at the end of this comment.
688 *
689 * A task must hold cgroup_mutex to modify cgroups.
690 *
691 * Any task can increment and decrement the count field without lock.
692 * So in general, code holding cgroup_mutex can't rely on the count
693 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -0800694 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -0700695 * means that no tasks are currently attached, therefore there is no
696 * way a task attached to that cgroup can fork (the other way to
697 * increment the count). So code holding cgroup_mutex can safely
698 * assume that if the count is zero, it will stay zero. Similarly, if
699 * a task holds cgroup_mutex on a cgroup with zero count, it
700 * knows that the cgroup won't be removed, as cgroup_rmdir()
701 * needs that mutex.
702 *
Paul Menageddbcc7e2007-10-18 23:39:30 -0700703 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
704 * (usually) take cgroup_mutex. These are the two most performance
705 * critical pieces of code here. The exception occurs on cgroup_exit(),
706 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
707 * is taken, and if the cgroup count is zero, a usermode call made
Li Zefana043e3b2008-02-23 15:24:09 -0800708 * to the release agent with the name of the cgroup (path relative to
709 * the root of cgroup file system) as the argument.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700710 *
711 * A cgroup can only be deleted if both its 'count' of using tasks
712 * is zero, and its list of 'children' cgroups is empty. Since all
713 * tasks in the system use _some_ cgroup, and since there is always at
714 * least one task in the system (init, pid == 1), therefore, top_cgroup
715 * always has either children cgroups and/or using tasks. So we don't
716 * need a special hack to ensure that top_cgroup cannot be deleted.
717 *
718 * The task_lock() exception
719 *
720 * The need for this exception arises from the action of
Cliff Wickman956db3c2008-02-07 00:14:43 -0800721 * cgroup_attach_task(), which overwrites one tasks cgroup pointer with
Li Zefana043e3b2008-02-23 15:24:09 -0800722 * another. It does so using cgroup_mutex, however there are
Paul Menageddbcc7e2007-10-18 23:39:30 -0700723 * several performance critical places that need to reference
724 * task->cgroup without the expense of grabbing a system global
725 * mutex. Therefore except as noted below, when dereferencing or, as
Cliff Wickman956db3c2008-02-07 00:14:43 -0800726 * in cgroup_attach_task(), modifying a task'ss cgroup pointer we use
Paul Menageddbcc7e2007-10-18 23:39:30 -0700727 * task_lock(), which acts on a spinlock (task->alloc_lock) already in
728 * the task_struct routinely used for such matters.
729 *
730 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -0800731 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700732 */
733
Paul Menageddbcc7e2007-10-18 23:39:30 -0700734/**
735 * cgroup_lock - lock out any changes to cgroup structures
736 *
737 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700738void cgroup_lock(void)
739{
740 mutex_lock(&cgroup_mutex);
741}
Ben Blum67523c42010-03-10 15:22:11 -0800742EXPORT_SYMBOL_GPL(cgroup_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700743
744/**
745 * cgroup_unlock - release lock on cgroup changes
746 *
747 * Undo the lock taken in a previous cgroup_lock() call.
748 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700749void cgroup_unlock(void)
750{
751 mutex_unlock(&cgroup_mutex);
752}
Ben Blum67523c42010-03-10 15:22:11 -0800753EXPORT_SYMBOL_GPL(cgroup_unlock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700754
755/*
756 * A couple of forward declarations required, due to cyclic reference loop:
757 * cgroup_mkdir -> cgroup_create -> cgroup_populate_dir ->
758 * cgroup_add_file -> cgroup_create_file -> cgroup_dir_inode_operations
759 * -> cgroup_mkdir.
760 */
761
762static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode);
763static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -0700764static int cgroup_populate_dir(struct cgroup *cgrp);
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -0700765static const struct inode_operations cgroup_dir_inode_operations;
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700766static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -0700767
768static struct backing_dev_info cgroup_backing_dev_info = {
Jens Axboed9938312009-06-12 14:45:52 +0200769 .name = "cgroup",
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700770 .capabilities = BDI_CAP_NO_ACCT_AND_WRITEBACK,
Paul Menagea4243162007-10-18 23:39:35 -0700771};
Paul Menageddbcc7e2007-10-18 23:39:30 -0700772
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700773static int alloc_css_id(struct cgroup_subsys *ss,
774 struct cgroup *parent, struct cgroup *child);
775
Paul Menageddbcc7e2007-10-18 23:39:30 -0700776static struct inode *cgroup_new_inode(mode_t mode, struct super_block *sb)
777{
778 struct inode *inode = new_inode(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700779
780 if (inode) {
781 inode->i_mode = mode;
David Howells76aac0e2008-11-14 10:39:12 +1100782 inode->i_uid = current_fsuid();
783 inode->i_gid = current_fsgid();
Paul Menageddbcc7e2007-10-18 23:39:30 -0700784 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
785 inode->i_mapping->backing_dev_info = &cgroup_backing_dev_info;
786 }
787 return inode;
788}
789
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800790/*
791 * Call subsys's pre_destroy handler.
792 * This is called before css refcnt check.
793 */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700794static int cgroup_call_pre_destroy(struct cgroup *cgrp)
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800795{
796 struct cgroup_subsys *ss;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700797 int ret = 0;
798
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800799 for_each_subsys(cgrp->root, ss)
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700800 if (ss->pre_destroy) {
801 ret = ss->pre_destroy(ss, cgrp);
802 if (ret)
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -0800803 break;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700804 }
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800805
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700806 return ret;
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800807}
808
Paul Menagea47295e2009-01-07 18:07:44 -0800809static void free_cgroup_rcu(struct rcu_head *obj)
810{
811 struct cgroup *cgrp = container_of(obj, struct cgroup, rcu_head);
812
813 kfree(cgrp);
814}
815
Paul Menageddbcc7e2007-10-18 23:39:30 -0700816static void cgroup_diput(struct dentry *dentry, struct inode *inode)
817{
818 /* is dentry a directory ? if so, kfree() associated cgroup */
819 if (S_ISDIR(inode->i_mode)) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700820 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800821 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -0700822 BUG_ON(!(cgroup_is_removed(cgrp)));
Paul Menage81a6a5c2007-10-18 23:39:38 -0700823 /* It's possible for external users to be holding css
824 * reference counts on a cgroup; css_put() needs to
825 * be able to access the cgroup after decrementing
826 * the reference count in order to know if it needs to
827 * queue the cgroup to be handled by the release
828 * agent */
829 synchronize_rcu();
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800830
831 mutex_lock(&cgroup_mutex);
832 /*
833 * Release the subsystem state objects.
834 */
Li Zefan75139b82009-01-07 18:07:33 -0800835 for_each_subsys(cgrp->root, ss)
836 ss->destroy(ss, cgrp);
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800837
838 cgrp->root->number_of_cgroups--;
839 mutex_unlock(&cgroup_mutex);
840
Paul Menagea47295e2009-01-07 18:07:44 -0800841 /*
842 * Drop the active superblock reference that we took when we
843 * created the cgroup
844 */
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800845 deactivate_super(cgrp->root->sb);
846
Ben Blum72a8cb32009-09-23 15:56:27 -0700847 /*
848 * if we're getting rid of the cgroup, refcount should ensure
849 * that there are no pidlists left.
850 */
851 BUG_ON(!list_empty(&cgrp->pidlists));
852
Paul Menagea47295e2009-01-07 18:07:44 -0800853 call_rcu(&cgrp->rcu_head, free_cgroup_rcu);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700854 }
855 iput(inode);
856}
857
858static void remove_dir(struct dentry *d)
859{
860 struct dentry *parent = dget(d->d_parent);
861
862 d_delete(d);
863 simple_rmdir(parent->d_inode, d);
864 dput(parent);
865}
866
867static void cgroup_clear_directory(struct dentry *dentry)
868{
869 struct list_head *node;
870
871 BUG_ON(!mutex_is_locked(&dentry->d_inode->i_mutex));
872 spin_lock(&dcache_lock);
873 node = dentry->d_subdirs.next;
874 while (node != &dentry->d_subdirs) {
875 struct dentry *d = list_entry(node, struct dentry, d_u.d_child);
876 list_del_init(node);
877 if (d->d_inode) {
878 /* This should never be called on a cgroup
879 * directory with child cgroups */
880 BUG_ON(d->d_inode->i_mode & S_IFDIR);
881 d = dget_locked(d);
882 spin_unlock(&dcache_lock);
883 d_delete(d);
884 simple_unlink(dentry->d_inode, d);
885 dput(d);
886 spin_lock(&dcache_lock);
887 }
888 node = dentry->d_subdirs.next;
889 }
890 spin_unlock(&dcache_lock);
891}
892
893/*
894 * NOTE : the dentry must have been dget()'ed
895 */
896static void cgroup_d_remove_dir(struct dentry *dentry)
897{
898 cgroup_clear_directory(dentry);
899
900 spin_lock(&dcache_lock);
901 list_del_init(&dentry->d_u.d_child);
902 spin_unlock(&dcache_lock);
903 remove_dir(dentry);
904}
905
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700906/*
907 * A queue for waiters to do rmdir() cgroup. A tasks will sleep when
908 * cgroup->count == 0 && list_empty(&cgroup->children) && subsys has some
909 * reference to css->refcnt. In general, this refcnt is expected to goes down
910 * to zero, soon.
911 *
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700912 * CGRP_WAIT_ON_RMDIR flag is set under cgroup's inode->i_mutex;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700913 */
914DECLARE_WAIT_QUEUE_HEAD(cgroup_rmdir_waitq);
915
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700916static void cgroup_wakeup_rmdir_waiter(struct cgroup *cgrp)
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700917{
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700918 if (unlikely(test_and_clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags)))
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700919 wake_up_all(&cgroup_rmdir_waitq);
920}
921
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700922void cgroup_exclude_rmdir(struct cgroup_subsys_state *css)
923{
924 css_get(css);
925}
926
927void cgroup_release_and_wakeup_rmdir(struct cgroup_subsys_state *css)
928{
929 cgroup_wakeup_rmdir_waiter(css->cgroup);
930 css_put(css);
931}
932
Ben Blumaae8aab2010-03-10 15:22:07 -0800933/*
Ben Blumcf5d5942010-03-10 15:22:09 -0800934 * Call with cgroup_mutex held. Drops reference counts on modules, including
935 * any duplicate ones that parse_cgroupfs_options took. If this function
936 * returns an error, no reference counts are touched.
Ben Blumaae8aab2010-03-10 15:22:07 -0800937 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700938static int rebind_subsystems(struct cgroupfs_root *root,
939 unsigned long final_bits)
940{
941 unsigned long added_bits, removed_bits;
Paul Menagebd89aab2007-10-18 23:40:44 -0700942 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700943 int i;
944
Ben Blumaae8aab2010-03-10 15:22:07 -0800945 BUG_ON(!mutex_is_locked(&cgroup_mutex));
946
Paul Menageddbcc7e2007-10-18 23:39:30 -0700947 removed_bits = root->actual_subsys_bits & ~final_bits;
948 added_bits = final_bits & ~root->actual_subsys_bits;
949 /* Check that any added subsystems are currently free */
950 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Li Zefan8d53d552008-02-23 15:24:11 -0800951 unsigned long bit = 1UL << i;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700952 struct cgroup_subsys *ss = subsys[i];
953 if (!(bit & added_bits))
954 continue;
Ben Blumaae8aab2010-03-10 15:22:07 -0800955 /*
956 * Nobody should tell us to do a subsys that doesn't exist:
957 * parse_cgroupfs_options should catch that case and refcounts
958 * ensure that subsystems won't disappear once selected.
959 */
960 BUG_ON(ss == NULL);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700961 if (ss->root != &rootnode) {
962 /* Subsystem isn't free */
963 return -EBUSY;
964 }
965 }
966
967 /* Currently we don't handle adding/removing subsystems when
968 * any child cgroups exist. This is theoretically supportable
969 * but involves complex error handling, so it's being left until
970 * later */
Paul Menage307257c2008-12-15 13:54:22 -0800971 if (root->number_of_cgroups > 1)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700972 return -EBUSY;
973
974 /* Process each subsystem */
975 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
976 struct cgroup_subsys *ss = subsys[i];
977 unsigned long bit = 1UL << i;
978 if (bit & added_bits) {
979 /* We're binding this subsystem to this hierarchy */
Ben Blumaae8aab2010-03-10 15:22:07 -0800980 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -0700981 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700982 BUG_ON(!dummytop->subsys[i]);
983 BUG_ON(dummytop->subsys[i]->cgroup != dummytop);
Paul Menage999cd8a2009-01-07 18:08:36 -0800984 mutex_lock(&ss->hierarchy_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -0700985 cgrp->subsys[i] = dummytop->subsys[i];
986 cgrp->subsys[i]->cgroup = cgrp;
Li Zefan33a68ac2009-01-07 18:07:42 -0800987 list_move(&ss->sibling, &root->subsys_list);
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -0800988 ss->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700989 if (ss->bind)
Paul Menagebd89aab2007-10-18 23:40:44 -0700990 ss->bind(ss, cgrp);
Paul Menage999cd8a2009-01-07 18:08:36 -0800991 mutex_unlock(&ss->hierarchy_mutex);
Ben Blumcf5d5942010-03-10 15:22:09 -0800992 /* refcount was already taken, and we're keeping it */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700993 } else if (bit & removed_bits) {
994 /* We're removing this subsystem */
Ben Blumaae8aab2010-03-10 15:22:07 -0800995 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -0700996 BUG_ON(cgrp->subsys[i] != dummytop->subsys[i]);
997 BUG_ON(cgrp->subsys[i]->cgroup != cgrp);
Paul Menage999cd8a2009-01-07 18:08:36 -0800998 mutex_lock(&ss->hierarchy_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700999 if (ss->bind)
1000 ss->bind(ss, dummytop);
1001 dummytop->subsys[i]->cgroup = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -07001002 cgrp->subsys[i] = NULL;
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001003 subsys[i]->root = &rootnode;
Li Zefan33a68ac2009-01-07 18:07:42 -08001004 list_move(&ss->sibling, &rootnode.subsys_list);
Paul Menage999cd8a2009-01-07 18:08:36 -08001005 mutex_unlock(&ss->hierarchy_mutex);
Ben Blumcf5d5942010-03-10 15:22:09 -08001006 /* subsystem is now free - drop reference on module */
1007 module_put(ss->module);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001008 } else if (bit & final_bits) {
1009 /* Subsystem state should already exist */
Ben Blumaae8aab2010-03-10 15:22:07 -08001010 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001011 BUG_ON(!cgrp->subsys[i]);
Ben Blumcf5d5942010-03-10 15:22:09 -08001012 /*
1013 * a refcount was taken, but we already had one, so
1014 * drop the extra reference.
1015 */
1016 module_put(ss->module);
1017#ifdef CONFIG_MODULE_UNLOAD
1018 BUG_ON(ss->module && !module_refcount(ss->module));
1019#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001020 } else {
1021 /* Subsystem state shouldn't exist */
Paul Menagebd89aab2007-10-18 23:40:44 -07001022 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001023 }
1024 }
1025 root->subsys_bits = root->actual_subsys_bits = final_bits;
1026 synchronize_rcu();
1027
1028 return 0;
1029}
1030
1031static int cgroup_show_options(struct seq_file *seq, struct vfsmount *vfs)
1032{
1033 struct cgroupfs_root *root = vfs->mnt_sb->s_fs_info;
1034 struct cgroup_subsys *ss;
1035
1036 mutex_lock(&cgroup_mutex);
1037 for_each_subsys(root, ss)
1038 seq_printf(seq, ",%s", ss->name);
1039 if (test_bit(ROOT_NOPREFIX, &root->flags))
1040 seq_puts(seq, ",noprefix");
Paul Menage81a6a5c2007-10-18 23:39:38 -07001041 if (strlen(root->release_agent_path))
1042 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Paul Menagec6d57f32009-09-23 15:56:19 -07001043 if (strlen(root->name))
1044 seq_printf(seq, ",name=%s", root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001045 mutex_unlock(&cgroup_mutex);
1046 return 0;
1047}
1048
1049struct cgroup_sb_opts {
1050 unsigned long subsys_bits;
1051 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001052 char *release_agent;
Paul Menagec6d57f32009-09-23 15:56:19 -07001053 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001054 /* User explicitly requested empty subsystem */
1055 bool none;
Paul Menagec6d57f32009-09-23 15:56:19 -07001056
1057 struct cgroupfs_root *new_root;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001058
Paul Menageddbcc7e2007-10-18 23:39:30 -07001059};
1060
Ben Blumaae8aab2010-03-10 15:22:07 -08001061/*
1062 * Convert a hierarchy specifier into a bitmask of subsystems and flags. Call
Ben Blumcf5d5942010-03-10 15:22:09 -08001063 * with cgroup_mutex held to protect the subsys[] array. This function takes
1064 * refcounts on subsystems to be used, unless it returns error, in which case
1065 * no refcounts are taken.
Ben Blumaae8aab2010-03-10 15:22:07 -08001066 */
Ben Blumcf5d5942010-03-10 15:22:09 -08001067static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001068{
1069 char *token, *o = data ?: "all";
Li Zefanf9ab5b52009-06-17 16:26:33 -07001070 unsigned long mask = (unsigned long)-1;
Ben Blumcf5d5942010-03-10 15:22:09 -08001071 int i;
1072 bool module_pin_failed = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001073
Ben Blumaae8aab2010-03-10 15:22:07 -08001074 BUG_ON(!mutex_is_locked(&cgroup_mutex));
1075
Li Zefanf9ab5b52009-06-17 16:26:33 -07001076#ifdef CONFIG_CPUSETS
1077 mask = ~(1UL << cpuset_subsys_id);
1078#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001079
Paul Menagec6d57f32009-09-23 15:56:19 -07001080 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001081
1082 while ((token = strsep(&o, ",")) != NULL) {
1083 if (!*token)
1084 return -EINVAL;
1085 if (!strcmp(token, "all")) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07001086 /* Add all non-disabled subsystems */
Paul Menage8bab8dd2008-04-04 14:29:57 -07001087 opts->subsys_bits = 0;
1088 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1089 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08001090 if (ss == NULL)
1091 continue;
Paul Menage8bab8dd2008-04-04 14:29:57 -07001092 if (!ss->disabled)
1093 opts->subsys_bits |= 1ul << i;
1094 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001095 } else if (!strcmp(token, "none")) {
1096 /* Explicitly have no subsystems */
1097 opts->none = true;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001098 } else if (!strcmp(token, "noprefix")) {
1099 set_bit(ROOT_NOPREFIX, &opts->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001100 } else if (!strncmp(token, "release_agent=", 14)) {
1101 /* Specifying two release agents is forbidden */
1102 if (opts->release_agent)
1103 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001104 opts->release_agent =
1105 kstrndup(token + 14, PATH_MAX, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001106 if (!opts->release_agent)
1107 return -ENOMEM;
Paul Menagec6d57f32009-09-23 15:56:19 -07001108 } else if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001109 const char *name = token + 5;
1110 /* Can't specify an empty name */
1111 if (!strlen(name))
1112 return -EINVAL;
1113 /* Must match [\w.-]+ */
1114 for (i = 0; i < strlen(name); i++) {
1115 char c = name[i];
1116 if (isalnum(c))
1117 continue;
1118 if ((c == '.') || (c == '-') || (c == '_'))
1119 continue;
1120 return -EINVAL;
1121 }
1122 /* Specifying two names is forbidden */
1123 if (opts->name)
1124 return -EINVAL;
1125 opts->name = kstrndup(name,
1126 MAX_CGROUP_ROOT_NAMELEN,
1127 GFP_KERNEL);
1128 if (!opts->name)
1129 return -ENOMEM;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001130 } else {
1131 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001132 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1133 ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08001134 if (ss == NULL)
1135 continue;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001136 if (!strcmp(token, ss->name)) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07001137 if (!ss->disabled)
1138 set_bit(i, &opts->subsys_bits);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001139 break;
1140 }
1141 }
1142 if (i == CGROUP_SUBSYS_COUNT)
1143 return -ENOENT;
1144 }
1145 }
1146
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001147 /* Consistency checks */
1148
Li Zefanf9ab5b52009-06-17 16:26:33 -07001149 /*
1150 * Option noprefix was introduced just for backward compatibility
1151 * with the old cpuset, so we allow noprefix only if mounting just
1152 * the cpuset subsystem.
1153 */
1154 if (test_bit(ROOT_NOPREFIX, &opts->flags) &&
1155 (opts->subsys_bits & mask))
1156 return -EINVAL;
1157
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001158
1159 /* Can't specify "none" and some subsystems */
1160 if (opts->subsys_bits && opts->none)
1161 return -EINVAL;
1162
1163 /*
1164 * We either have to specify by name or by subsystems. (So all
1165 * empty hierarchies must have a name).
1166 */
Paul Menagec6d57f32009-09-23 15:56:19 -07001167 if (!opts->subsys_bits && !opts->name)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001168 return -EINVAL;
1169
Ben Blumcf5d5942010-03-10 15:22:09 -08001170 /*
1171 * Grab references on all the modules we'll need, so the subsystems
1172 * don't dance around before rebind_subsystems attaches them. This may
1173 * take duplicate reference counts on a subsystem that's already used,
1174 * but rebind_subsystems handles this case.
1175 */
1176 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
1177 unsigned long bit = 1UL << i;
1178
1179 if (!(bit & opts->subsys_bits))
1180 continue;
1181 if (!try_module_get(subsys[i]->module)) {
1182 module_pin_failed = true;
1183 break;
1184 }
1185 }
1186 if (module_pin_failed) {
1187 /*
1188 * oops, one of the modules was going away. this means that we
1189 * raced with a module_delete call, and to the user this is
1190 * essentially a "subsystem doesn't exist" case.
1191 */
1192 for (i--; i >= CGROUP_BUILTIN_SUBSYS_COUNT; i--) {
1193 /* drop refcounts only on the ones we took */
1194 unsigned long bit = 1UL << i;
1195
1196 if (!(bit & opts->subsys_bits))
1197 continue;
1198 module_put(subsys[i]->module);
1199 }
1200 return -ENOENT;
1201 }
1202
Paul Menageddbcc7e2007-10-18 23:39:30 -07001203 return 0;
1204}
1205
Ben Blumcf5d5942010-03-10 15:22:09 -08001206static void drop_parsed_module_refcounts(unsigned long subsys_bits)
1207{
1208 int i;
1209 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
1210 unsigned long bit = 1UL << i;
1211
1212 if (!(bit & subsys_bits))
1213 continue;
1214 module_put(subsys[i]->module);
1215 }
1216}
1217
Paul Menageddbcc7e2007-10-18 23:39:30 -07001218static int cgroup_remount(struct super_block *sb, int *flags, char *data)
1219{
1220 int ret = 0;
1221 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001222 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001223 struct cgroup_sb_opts opts;
1224
Alessio Igor Bogani337eb002009-05-12 15:10:54 +02001225 lock_kernel();
Paul Menagebd89aab2007-10-18 23:40:44 -07001226 mutex_lock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001227 mutex_lock(&cgroup_mutex);
1228
1229 /* See what subsystems are wanted */
1230 ret = parse_cgroupfs_options(data, &opts);
1231 if (ret)
1232 goto out_unlock;
1233
Ben Blumcf5d5942010-03-10 15:22:09 -08001234 /* Don't allow flags or name to change at remount */
1235 if (opts.flags != root->flags ||
1236 (opts.name && strcmp(opts.name, root->name))) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001237 ret = -EINVAL;
Ben Blumcf5d5942010-03-10 15:22:09 -08001238 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menagec6d57f32009-09-23 15:56:19 -07001239 goto out_unlock;
1240 }
1241
Paul Menageddbcc7e2007-10-18 23:39:30 -07001242 ret = rebind_subsystems(root, opts.subsys_bits);
Ben Blumcf5d5942010-03-10 15:22:09 -08001243 if (ret) {
1244 drop_parsed_module_refcounts(opts.subsys_bits);
Li Zefan0670e082009-04-02 16:57:30 -07001245 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001246 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001247
1248 /* (re)populate subsystem files */
Li Zefan0670e082009-04-02 16:57:30 -07001249 cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001250
Paul Menage81a6a5c2007-10-18 23:39:38 -07001251 if (opts.release_agent)
1252 strcpy(root->release_agent_path, opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001253 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001254 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001255 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001256 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07001257 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Alessio Igor Bogani337eb002009-05-12 15:10:54 +02001258 unlock_kernel();
Paul Menageddbcc7e2007-10-18 23:39:30 -07001259 return ret;
1260}
1261
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001262static const struct super_operations cgroup_ops = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001263 .statfs = simple_statfs,
1264 .drop_inode = generic_delete_inode,
1265 .show_options = cgroup_show_options,
1266 .remount_fs = cgroup_remount,
1267};
1268
Paul Menagecc31edc2008-10-18 20:28:04 -07001269static void init_cgroup_housekeeping(struct cgroup *cgrp)
1270{
1271 INIT_LIST_HEAD(&cgrp->sibling);
1272 INIT_LIST_HEAD(&cgrp->children);
1273 INIT_LIST_HEAD(&cgrp->css_sets);
1274 INIT_LIST_HEAD(&cgrp->release_list);
Ben Blum72a8cb32009-09-23 15:56:27 -07001275 INIT_LIST_HEAD(&cgrp->pidlists);
1276 mutex_init(&cgrp->pidlist_mutex);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08001277 INIT_LIST_HEAD(&cgrp->event_list);
1278 spin_lock_init(&cgrp->event_list_lock);
Paul Menagecc31edc2008-10-18 20:28:04 -07001279}
Paul Menagec6d57f32009-09-23 15:56:19 -07001280
Paul Menageddbcc7e2007-10-18 23:39:30 -07001281static void init_cgroup_root(struct cgroupfs_root *root)
1282{
Paul Menagebd89aab2007-10-18 23:40:44 -07001283 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001284 INIT_LIST_HEAD(&root->subsys_list);
1285 INIT_LIST_HEAD(&root->root_list);
1286 root->number_of_cgroups = 1;
Paul Menagebd89aab2007-10-18 23:40:44 -07001287 cgrp->root = root;
1288 cgrp->top_cgroup = cgrp;
Paul Menagecc31edc2008-10-18 20:28:04 -07001289 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001290}
1291
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001292static bool init_root_id(struct cgroupfs_root *root)
1293{
1294 int ret = 0;
1295
1296 do {
1297 if (!ida_pre_get(&hierarchy_ida, GFP_KERNEL))
1298 return false;
1299 spin_lock(&hierarchy_id_lock);
1300 /* Try to allocate the next unused ID */
1301 ret = ida_get_new_above(&hierarchy_ida, next_hierarchy_id,
1302 &root->hierarchy_id);
1303 if (ret == -ENOSPC)
1304 /* Try again starting from 0 */
1305 ret = ida_get_new(&hierarchy_ida, &root->hierarchy_id);
1306 if (!ret) {
1307 next_hierarchy_id = root->hierarchy_id + 1;
1308 } else if (ret != -EAGAIN) {
1309 /* Can only get here if the 31-bit IDR is full ... */
1310 BUG_ON(ret);
1311 }
1312 spin_unlock(&hierarchy_id_lock);
1313 } while (ret);
1314 return true;
1315}
1316
Paul Menageddbcc7e2007-10-18 23:39:30 -07001317static int cgroup_test_super(struct super_block *sb, void *data)
1318{
Paul Menagec6d57f32009-09-23 15:56:19 -07001319 struct cgroup_sb_opts *opts = data;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001320 struct cgroupfs_root *root = sb->s_fs_info;
1321
Paul Menagec6d57f32009-09-23 15:56:19 -07001322 /* If we asked for a name then it must match */
1323 if (opts->name && strcmp(opts->name, root->name))
1324 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001325
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001326 /*
1327 * If we asked for subsystems (or explicitly for no
1328 * subsystems) then they must match
1329 */
1330 if ((opts->subsys_bits || opts->none)
1331 && (opts->subsys_bits != root->subsys_bits))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001332 return 0;
1333
1334 return 1;
1335}
1336
Paul Menagec6d57f32009-09-23 15:56:19 -07001337static struct cgroupfs_root *cgroup_root_from_opts(struct cgroup_sb_opts *opts)
1338{
1339 struct cgroupfs_root *root;
1340
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001341 if (!opts->subsys_bits && !opts->none)
Paul Menagec6d57f32009-09-23 15:56:19 -07001342 return NULL;
1343
1344 root = kzalloc(sizeof(*root), GFP_KERNEL);
1345 if (!root)
1346 return ERR_PTR(-ENOMEM);
1347
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001348 if (!init_root_id(root)) {
1349 kfree(root);
1350 return ERR_PTR(-ENOMEM);
1351 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001352 init_cgroup_root(root);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001353
Paul Menagec6d57f32009-09-23 15:56:19 -07001354 root->subsys_bits = opts->subsys_bits;
1355 root->flags = opts->flags;
1356 if (opts->release_agent)
1357 strcpy(root->release_agent_path, opts->release_agent);
1358 if (opts->name)
1359 strcpy(root->name, opts->name);
1360 return root;
1361}
1362
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001363static void cgroup_drop_root(struct cgroupfs_root *root)
1364{
1365 if (!root)
1366 return;
1367
1368 BUG_ON(!root->hierarchy_id);
1369 spin_lock(&hierarchy_id_lock);
1370 ida_remove(&hierarchy_ida, root->hierarchy_id);
1371 spin_unlock(&hierarchy_id_lock);
1372 kfree(root);
1373}
1374
Paul Menageddbcc7e2007-10-18 23:39:30 -07001375static int cgroup_set_super(struct super_block *sb, void *data)
1376{
1377 int ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001378 struct cgroup_sb_opts *opts = data;
1379
1380 /* If we don't have a new root, we can't set up a new sb */
1381 if (!opts->new_root)
1382 return -EINVAL;
1383
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001384 BUG_ON(!opts->subsys_bits && !opts->none);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001385
1386 ret = set_anon_super(sb, NULL);
1387 if (ret)
1388 return ret;
1389
Paul Menagec6d57f32009-09-23 15:56:19 -07001390 sb->s_fs_info = opts->new_root;
1391 opts->new_root->sb = sb;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001392
1393 sb->s_blocksize = PAGE_CACHE_SIZE;
1394 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
1395 sb->s_magic = CGROUP_SUPER_MAGIC;
1396 sb->s_op = &cgroup_ops;
1397
1398 return 0;
1399}
1400
1401static int cgroup_get_rootdir(struct super_block *sb)
1402{
1403 struct inode *inode =
1404 cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb);
1405 struct dentry *dentry;
1406
1407 if (!inode)
1408 return -ENOMEM;
1409
Paul Menageddbcc7e2007-10-18 23:39:30 -07001410 inode->i_fop = &simple_dir_operations;
1411 inode->i_op = &cgroup_dir_inode_operations;
1412 /* directories start off with i_nlink == 2 (for "." entry) */
1413 inc_nlink(inode);
1414 dentry = d_alloc_root(inode);
1415 if (!dentry) {
1416 iput(inode);
1417 return -ENOMEM;
1418 }
1419 sb->s_root = dentry;
1420 return 0;
1421}
1422
1423static int cgroup_get_sb(struct file_system_type *fs_type,
1424 int flags, const char *unused_dev_name,
1425 void *data, struct vfsmount *mnt)
1426{
1427 struct cgroup_sb_opts opts;
Paul Menagec6d57f32009-09-23 15:56:19 -07001428 struct cgroupfs_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001429 int ret = 0;
1430 struct super_block *sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001431 struct cgroupfs_root *new_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001432
1433 /* First find the desired set of subsystems */
Ben Blumaae8aab2010-03-10 15:22:07 -08001434 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001435 ret = parse_cgroupfs_options(data, &opts);
Ben Blumaae8aab2010-03-10 15:22:07 -08001436 mutex_unlock(&cgroup_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001437 if (ret)
1438 goto out_err;
1439
1440 /*
1441 * Allocate a new cgroup root. We may not need it if we're
1442 * reusing an existing hierarchy.
1443 */
1444 new_root = cgroup_root_from_opts(&opts);
1445 if (IS_ERR(new_root)) {
1446 ret = PTR_ERR(new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001447 goto drop_modules;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001448 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001449 opts.new_root = new_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001450
Paul Menagec6d57f32009-09-23 15:56:19 -07001451 /* Locate an existing or new sb for this hierarchy */
1452 sb = sget(fs_type, cgroup_test_super, cgroup_set_super, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001453 if (IS_ERR(sb)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001454 ret = PTR_ERR(sb);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001455 cgroup_drop_root(opts.new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001456 goto drop_modules;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001457 }
1458
Paul Menagec6d57f32009-09-23 15:56:19 -07001459 root = sb->s_fs_info;
1460 BUG_ON(!root);
1461 if (root == opts.new_root) {
1462 /* We used the new root structure, so this is a new hierarchy */
1463 struct list_head tmp_cg_links;
Li Zefanc12f65d2009-01-07 18:07:42 -08001464 struct cgroup *root_cgrp = &root->top_cgroup;
Paul Menage817929e2007-10-18 23:39:36 -07001465 struct inode *inode;
Paul Menagec6d57f32009-09-23 15:56:19 -07001466 struct cgroupfs_root *existing_root;
Li Zefan28fd5df2008-04-29 01:00:13 -07001467 int i;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001468
1469 BUG_ON(sb->s_root != NULL);
1470
1471 ret = cgroup_get_rootdir(sb);
1472 if (ret)
1473 goto drop_new_super;
Paul Menage817929e2007-10-18 23:39:36 -07001474 inode = sb->s_root->d_inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001475
Paul Menage817929e2007-10-18 23:39:36 -07001476 mutex_lock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001477 mutex_lock(&cgroup_mutex);
1478
Paul Menagec6d57f32009-09-23 15:56:19 -07001479 if (strlen(root->name)) {
1480 /* Check for name clashes with existing mounts */
1481 for_each_active_root(existing_root) {
1482 if (!strcmp(existing_root->name, root->name)) {
1483 ret = -EBUSY;
1484 mutex_unlock(&cgroup_mutex);
1485 mutex_unlock(&inode->i_mutex);
1486 goto drop_new_super;
1487 }
1488 }
1489 }
1490
Paul Menage817929e2007-10-18 23:39:36 -07001491 /*
1492 * We're accessing css_set_count without locking
1493 * css_set_lock here, but that's OK - it can only be
1494 * increased by someone holding cgroup_lock, and
1495 * that's us. The worst that can happen is that we
1496 * have some link structures left over
1497 */
1498 ret = allocate_cg_links(css_set_count, &tmp_cg_links);
1499 if (ret) {
1500 mutex_unlock(&cgroup_mutex);
1501 mutex_unlock(&inode->i_mutex);
1502 goto drop_new_super;
1503 }
1504
Paul Menageddbcc7e2007-10-18 23:39:30 -07001505 ret = rebind_subsystems(root, root->subsys_bits);
1506 if (ret == -EBUSY) {
1507 mutex_unlock(&cgroup_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07001508 mutex_unlock(&inode->i_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001509 free_cg_links(&tmp_cg_links);
1510 goto drop_new_super;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001511 }
Ben Blumcf5d5942010-03-10 15:22:09 -08001512 /*
1513 * There must be no failure case after here, since rebinding
1514 * takes care of subsystems' refcounts, which are explicitly
1515 * dropped in the failure exit path.
1516 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001517
1518 /* EBUSY should be the only error here */
1519 BUG_ON(ret);
1520
1521 list_add(&root->root_list, &roots);
Paul Menage817929e2007-10-18 23:39:36 -07001522 root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001523
Li Zefanc12f65d2009-01-07 18:07:42 -08001524 sb->s_root->d_fsdata = root_cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001525 root->top_cgroup.dentry = sb->s_root;
1526
Paul Menage817929e2007-10-18 23:39:36 -07001527 /* Link the top cgroup in this hierarchy into all
1528 * the css_set objects */
1529 write_lock(&css_set_lock);
Li Zefan28fd5df2008-04-29 01:00:13 -07001530 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
1531 struct hlist_head *hhead = &css_set_table[i];
1532 struct hlist_node *node;
Paul Menage817929e2007-10-18 23:39:36 -07001533 struct css_set *cg;
Li Zefan28fd5df2008-04-29 01:00:13 -07001534
Li Zefanc12f65d2009-01-07 18:07:42 -08001535 hlist_for_each_entry(cg, node, hhead, hlist)
1536 link_css_set(&tmp_cg_links, cg, root_cgrp);
Li Zefan28fd5df2008-04-29 01:00:13 -07001537 }
Paul Menage817929e2007-10-18 23:39:36 -07001538 write_unlock(&css_set_lock);
1539
1540 free_cg_links(&tmp_cg_links);
1541
Li Zefanc12f65d2009-01-07 18:07:42 -08001542 BUG_ON(!list_empty(&root_cgrp->sibling));
1543 BUG_ON(!list_empty(&root_cgrp->children));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001544 BUG_ON(root->number_of_cgroups != 1);
1545
Li Zefanc12f65d2009-01-07 18:07:42 -08001546 cgroup_populate_dir(root_cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001547 mutex_unlock(&cgroup_mutex);
Xiaotian Feng34f77a92009-09-23 15:56:18 -07001548 mutex_unlock(&inode->i_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001549 } else {
1550 /*
1551 * We re-used an existing hierarchy - the new root (if
1552 * any) is not needed
1553 */
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001554 cgroup_drop_root(opts.new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001555 /* no subsys rebinding, so refcounts don't change */
1556 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001557 }
1558
Sukadev Bhattiprolua3ec9472009-03-04 12:06:34 -08001559 simple_set_mnt(mnt, sb);
Paul Menagec6d57f32009-09-23 15:56:19 -07001560 kfree(opts.release_agent);
1561 kfree(opts.name);
Sukadev Bhattiprolua3ec9472009-03-04 12:06:34 -08001562 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001563
1564 drop_new_super:
Al Viro6f5bbff2009-05-06 01:34:22 -04001565 deactivate_locked_super(sb);
Ben Blumcf5d5942010-03-10 15:22:09 -08001566 drop_modules:
1567 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menagec6d57f32009-09-23 15:56:19 -07001568 out_err:
1569 kfree(opts.release_agent);
1570 kfree(opts.name);
1571
Paul Menageddbcc7e2007-10-18 23:39:30 -07001572 return ret;
1573}
1574
1575static void cgroup_kill_sb(struct super_block *sb) {
1576 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001577 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001578 int ret;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001579 struct cg_cgroup_link *link;
1580 struct cg_cgroup_link *saved_link;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001581
1582 BUG_ON(!root);
1583
1584 BUG_ON(root->number_of_cgroups != 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001585 BUG_ON(!list_empty(&cgrp->children));
1586 BUG_ON(!list_empty(&cgrp->sibling));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001587
1588 mutex_lock(&cgroup_mutex);
1589
1590 /* Rebind all subsystems back to the default hierarchy */
1591 ret = rebind_subsystems(root, 0);
1592 /* Shouldn't be able to fail ... */
1593 BUG_ON(ret);
1594
Paul Menage817929e2007-10-18 23:39:36 -07001595 /*
1596 * Release all the links from css_sets to this hierarchy's
1597 * root cgroup
1598 */
1599 write_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001600
1601 list_for_each_entry_safe(link, saved_link, &cgrp->css_sets,
1602 cgrp_link_list) {
Paul Menage817929e2007-10-18 23:39:36 -07001603 list_del(&link->cg_link_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07001604 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001605 kfree(link);
1606 }
1607 write_unlock(&css_set_lock);
1608
Paul Menage839ec542009-01-29 14:25:22 -08001609 if (!list_empty(&root->root_list)) {
1610 list_del(&root->root_list);
1611 root_count--;
1612 }
Li Zefane5f6a862009-01-07 18:07:41 -08001613
Paul Menageddbcc7e2007-10-18 23:39:30 -07001614 mutex_unlock(&cgroup_mutex);
1615
Paul Menageddbcc7e2007-10-18 23:39:30 -07001616 kill_litter_super(sb);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001617 cgroup_drop_root(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001618}
1619
1620static struct file_system_type cgroup_fs_type = {
1621 .name = "cgroup",
1622 .get_sb = cgroup_get_sb,
1623 .kill_sb = cgroup_kill_sb,
1624};
1625
Paul Menagebd89aab2007-10-18 23:40:44 -07001626static inline struct cgroup *__d_cgrp(struct dentry *dentry)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001627{
1628 return dentry->d_fsdata;
1629}
1630
1631static inline struct cftype *__d_cft(struct dentry *dentry)
1632{
1633 return dentry->d_fsdata;
1634}
1635
Li Zefana043e3b2008-02-23 15:24:09 -08001636/**
1637 * cgroup_path - generate the path of a cgroup
1638 * @cgrp: the cgroup in question
1639 * @buf: the buffer to write the path into
1640 * @buflen: the length of the buffer
1641 *
Paul Menagea47295e2009-01-07 18:07:44 -08001642 * Called with cgroup_mutex held or else with an RCU-protected cgroup
1643 * reference. Writes path of cgroup into buf. Returns 0 on success,
1644 * -errno on error.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001645 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001646int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001647{
1648 char *start;
Li Zefan9a9686b2010-04-22 17:29:24 +08001649 struct dentry *dentry = rcu_dereference_check(cgrp->dentry,
1650 rcu_read_lock_held() ||
1651 cgroup_lock_is_held());
Paul Menageddbcc7e2007-10-18 23:39:30 -07001652
Paul Menagea47295e2009-01-07 18:07:44 -08001653 if (!dentry || cgrp == dummytop) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001654 /*
1655 * Inactive subsystems have no dentry for their root
1656 * cgroup
1657 */
1658 strcpy(buf, "/");
1659 return 0;
1660 }
1661
1662 start = buf + buflen;
1663
1664 *--start = '\0';
1665 for (;;) {
Paul Menagea47295e2009-01-07 18:07:44 -08001666 int len = dentry->d_name.len;
Li Zefan9a9686b2010-04-22 17:29:24 +08001667
Paul Menageddbcc7e2007-10-18 23:39:30 -07001668 if ((start -= len) < buf)
1669 return -ENAMETOOLONG;
Li Zefan9a9686b2010-04-22 17:29:24 +08001670 memcpy(start, dentry->d_name.name, len);
Paul Menagebd89aab2007-10-18 23:40:44 -07001671 cgrp = cgrp->parent;
1672 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001673 break;
Li Zefan9a9686b2010-04-22 17:29:24 +08001674
1675 dentry = rcu_dereference_check(cgrp->dentry,
1676 rcu_read_lock_held() ||
1677 cgroup_lock_is_held());
Paul Menagebd89aab2007-10-18 23:40:44 -07001678 if (!cgrp->parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001679 continue;
1680 if (--start < buf)
1681 return -ENAMETOOLONG;
1682 *start = '/';
1683 }
1684 memmove(buf, start, buf + buflen - start);
1685 return 0;
1686}
Ben Blum67523c42010-03-10 15:22:11 -08001687EXPORT_SYMBOL_GPL(cgroup_path);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001688
Li Zefana043e3b2008-02-23 15:24:09 -08001689/**
1690 * cgroup_attach_task - attach task 'tsk' to cgroup 'cgrp'
1691 * @cgrp: the cgroup the task is attaching to
1692 * @tsk: the task to be attached
Paul Menagebbcb81d2007-10-18 23:39:32 -07001693 *
Li Zefana043e3b2008-02-23 15:24:09 -08001694 * Call holding cgroup_mutex. May take task_lock of
1695 * the task 'tsk' during call.
Paul Menagebbcb81d2007-10-18 23:39:32 -07001696 */
Cliff Wickman956db3c2008-02-07 00:14:43 -08001697int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001698{
1699 int retval = 0;
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001700 struct cgroup_subsys *ss, *failed_ss = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07001701 struct cgroup *oldcgrp;
Lai Jiangshan77efecd2009-01-07 18:07:39 -08001702 struct css_set *cg;
Paul Menage817929e2007-10-18 23:39:36 -07001703 struct css_set *newcg;
Paul Menagebd89aab2007-10-18 23:40:44 -07001704 struct cgroupfs_root *root = cgrp->root;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001705
1706 /* Nothing to do if the task is already in that cgroup */
Paul Menage7717f7b2009-09-23 15:56:22 -07001707 oldcgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07001708 if (cgrp == oldcgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001709 return 0;
1710
1711 for_each_subsys(root, ss) {
1712 if (ss->can_attach) {
Ben Blumbe367d02009-09-23 15:56:31 -07001713 retval = ss->can_attach(ss, cgrp, tsk, false);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001714 if (retval) {
1715 /*
1716 * Remember on which subsystem the can_attach()
1717 * failed, so that we only call cancel_attach()
1718 * against the subsystems whose can_attach()
1719 * succeeded. (See below)
1720 */
1721 failed_ss = ss;
1722 goto out;
1723 }
Paul Menagebbcb81d2007-10-18 23:39:32 -07001724 }
1725 }
1726
Lai Jiangshan77efecd2009-01-07 18:07:39 -08001727 task_lock(tsk);
1728 cg = tsk->cgroups;
1729 get_css_set(cg);
1730 task_unlock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07001731 /*
1732 * Locate or allocate a new css_set for this task,
1733 * based on its final set of cgroups
1734 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001735 newcg = find_css_set(cg, cgrp);
Lai Jiangshan77efecd2009-01-07 18:07:39 -08001736 put_css_set(cg);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001737 if (!newcg) {
1738 retval = -ENOMEM;
1739 goto out;
1740 }
Paul Menage817929e2007-10-18 23:39:36 -07001741
Paul Menagebbcb81d2007-10-18 23:39:32 -07001742 task_lock(tsk);
1743 if (tsk->flags & PF_EXITING) {
1744 task_unlock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07001745 put_css_set(newcg);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001746 retval = -ESRCH;
1747 goto out;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001748 }
Paul Menage817929e2007-10-18 23:39:36 -07001749 rcu_assign_pointer(tsk->cgroups, newcg);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001750 task_unlock(tsk);
1751
Paul Menage817929e2007-10-18 23:39:36 -07001752 /* Update the css_set linked lists if we're using them */
1753 write_lock(&css_set_lock);
1754 if (!list_empty(&tsk->cg_list)) {
1755 list_del(&tsk->cg_list);
1756 list_add(&tsk->cg_list, &newcg->tasks);
1757 }
1758 write_unlock(&css_set_lock);
1759
Paul Menagebbcb81d2007-10-18 23:39:32 -07001760 for_each_subsys(root, ss) {
Paul Jacksone18f6312008-02-07 00:13:44 -08001761 if (ss->attach)
Ben Blumbe367d02009-09-23 15:56:31 -07001762 ss->attach(ss, cgrp, oldcgrp, tsk, false);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001763 }
Paul Menagebd89aab2007-10-18 23:40:44 -07001764 set_bit(CGRP_RELEASABLE, &oldcgrp->flags);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001765 synchronize_rcu();
Paul Menage817929e2007-10-18 23:39:36 -07001766 put_css_set(cg);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07001767
1768 /*
1769 * wake up rmdir() waiter. the rmdir should fail since the cgroup
1770 * is no longer empty.
1771 */
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07001772 cgroup_wakeup_rmdir_waiter(cgrp);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001773out:
1774 if (retval) {
1775 for_each_subsys(root, ss) {
1776 if (ss == failed_ss)
1777 /*
1778 * This subsystem was the one that failed the
1779 * can_attach() check earlier, so we don't need
1780 * to call cancel_attach() against it or any
1781 * remaining subsystems.
1782 */
1783 break;
1784 if (ss->cancel_attach)
1785 ss->cancel_attach(ss, cgrp, tsk, false);
1786 }
1787 }
1788 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001789}
1790
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001791/**
Michael S. Tsirkin73457f0f2010-08-06 01:59:14 +03001792 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
1793 * @from: attach to all cgroups of a given task
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001794 * @tsk: the task to be attached
1795 */
Michael S. Tsirkin73457f0f2010-08-06 01:59:14 +03001796int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001797{
1798 struct cgroupfs_root *root;
1799 struct cgroup *cur_cg;
1800 int retval = 0;
1801
1802 cgroup_lock();
1803 for_each_active_root(root) {
Michael S. Tsirkin73457f0f2010-08-06 01:59:14 +03001804 cur_cg = task_cgroup_from_root(from, root);
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001805 retval = cgroup_attach_task(cur_cg, tsk);
1806 if (retval)
1807 break;
1808 }
1809 cgroup_unlock();
1810
1811 return retval;
1812}
Michael S. Tsirkin73457f0f2010-08-06 01:59:14 +03001813EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001814
Paul Menagebbcb81d2007-10-18 23:39:32 -07001815/*
Paul Menageaf351022008-07-25 01:47:01 -07001816 * Attach task with pid 'pid' to cgroup 'cgrp'. Call with cgroup_mutex
1817 * held. May take task_lock of task
Paul Menagebbcb81d2007-10-18 23:39:32 -07001818 */
Paul Menageaf351022008-07-25 01:47:01 -07001819static int attach_task_by_pid(struct cgroup *cgrp, u64 pid)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001820{
Paul Menagebbcb81d2007-10-18 23:39:32 -07001821 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11001822 const struct cred *cred = current_cred(), *tcred;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001823 int ret;
1824
Paul Menagebbcb81d2007-10-18 23:39:32 -07001825 if (pid) {
1826 rcu_read_lock();
Pavel Emelyanov73507f32008-02-07 00:14:47 -08001827 tsk = find_task_by_vpid(pid);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001828 if (!tsk || tsk->flags & PF_EXITING) {
1829 rcu_read_unlock();
1830 return -ESRCH;
1831 }
Paul Menagebbcb81d2007-10-18 23:39:32 -07001832
David Howellsc69e8d92008-11-14 10:39:19 +11001833 tcred = __task_cred(tsk);
1834 if (cred->euid &&
1835 cred->euid != tcred->uid &&
1836 cred->euid != tcred->suid) {
1837 rcu_read_unlock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07001838 return -EACCES;
1839 }
David Howellsc69e8d92008-11-14 10:39:19 +11001840 get_task_struct(tsk);
1841 rcu_read_unlock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07001842 } else {
1843 tsk = current;
1844 get_task_struct(tsk);
1845 }
1846
Cliff Wickman956db3c2008-02-07 00:14:43 -08001847 ret = cgroup_attach_task(cgrp, tsk);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001848 put_task_struct(tsk);
1849 return ret;
1850}
1851
Paul Menageaf351022008-07-25 01:47:01 -07001852static int cgroup_tasks_write(struct cgroup *cgrp, struct cftype *cft, u64 pid)
1853{
1854 int ret;
1855 if (!cgroup_lock_live_group(cgrp))
1856 return -ENODEV;
1857 ret = attach_task_by_pid(cgrp, pid);
1858 cgroup_unlock();
1859 return ret;
1860}
1861
Paul Menagee788e062008-07-25 01:46:59 -07001862/**
1863 * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive.
1864 * @cgrp: the cgroup to be checked for liveness
1865 *
Paul Menage84eea842008-07-25 01:47:00 -07001866 * On success, returns true; the lock should be later released with
1867 * cgroup_unlock(). On failure returns false with no lock held.
Paul Menagee788e062008-07-25 01:46:59 -07001868 */
Paul Menage84eea842008-07-25 01:47:00 -07001869bool cgroup_lock_live_group(struct cgroup *cgrp)
Paul Menagee788e062008-07-25 01:46:59 -07001870{
1871 mutex_lock(&cgroup_mutex);
1872 if (cgroup_is_removed(cgrp)) {
1873 mutex_unlock(&cgroup_mutex);
1874 return false;
1875 }
1876 return true;
1877}
Ben Blum67523c42010-03-10 15:22:11 -08001878EXPORT_SYMBOL_GPL(cgroup_lock_live_group);
Paul Menagee788e062008-07-25 01:46:59 -07001879
1880static int cgroup_release_agent_write(struct cgroup *cgrp, struct cftype *cft,
1881 const char *buffer)
1882{
1883 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
1884 if (!cgroup_lock_live_group(cgrp))
1885 return -ENODEV;
1886 strcpy(cgrp->root->release_agent_path, buffer);
Paul Menage84eea842008-07-25 01:47:00 -07001887 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07001888 return 0;
1889}
1890
1891static int cgroup_release_agent_show(struct cgroup *cgrp, struct cftype *cft,
1892 struct seq_file *seq)
1893{
1894 if (!cgroup_lock_live_group(cgrp))
1895 return -ENODEV;
1896 seq_puts(seq, cgrp->root->release_agent_path);
1897 seq_putc(seq, '\n');
Paul Menage84eea842008-07-25 01:47:00 -07001898 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07001899 return 0;
1900}
1901
Paul Menage84eea842008-07-25 01:47:00 -07001902/* A buffer size big enough for numbers or short strings */
1903#define CGROUP_LOCAL_BUFFER_SIZE 64
1904
Paul Menagee73d2c62008-04-29 01:00:06 -07001905static ssize_t cgroup_write_X64(struct cgroup *cgrp, struct cftype *cft,
Paul Menagef4c753b2008-04-29 00:59:56 -07001906 struct file *file,
1907 const char __user *userbuf,
1908 size_t nbytes, loff_t *unused_ppos)
Paul Menage355e0c42007-10-18 23:39:33 -07001909{
Paul Menage84eea842008-07-25 01:47:00 -07001910 char buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menage355e0c42007-10-18 23:39:33 -07001911 int retval = 0;
Paul Menage355e0c42007-10-18 23:39:33 -07001912 char *end;
1913
1914 if (!nbytes)
1915 return -EINVAL;
1916 if (nbytes >= sizeof(buffer))
1917 return -E2BIG;
1918 if (copy_from_user(buffer, userbuf, nbytes))
1919 return -EFAULT;
1920
1921 buffer[nbytes] = 0; /* nul-terminate */
Paul Menagee73d2c62008-04-29 01:00:06 -07001922 if (cft->write_u64) {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07001923 u64 val = simple_strtoull(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07001924 if (*end)
1925 return -EINVAL;
1926 retval = cft->write_u64(cgrp, cft, val);
1927 } else {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07001928 s64 val = simple_strtoll(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07001929 if (*end)
1930 return -EINVAL;
1931 retval = cft->write_s64(cgrp, cft, val);
1932 }
Paul Menage355e0c42007-10-18 23:39:33 -07001933 if (!retval)
1934 retval = nbytes;
1935 return retval;
1936}
1937
Paul Menagedb3b1492008-07-25 01:46:58 -07001938static ssize_t cgroup_write_string(struct cgroup *cgrp, struct cftype *cft,
1939 struct file *file,
1940 const char __user *userbuf,
1941 size_t nbytes, loff_t *unused_ppos)
1942{
Paul Menage84eea842008-07-25 01:47:00 -07001943 char local_buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagedb3b1492008-07-25 01:46:58 -07001944 int retval = 0;
1945 size_t max_bytes = cft->max_write_len;
1946 char *buffer = local_buffer;
1947
1948 if (!max_bytes)
1949 max_bytes = sizeof(local_buffer) - 1;
1950 if (nbytes >= max_bytes)
1951 return -E2BIG;
1952 /* Allocate a dynamic buffer if we need one */
1953 if (nbytes >= sizeof(local_buffer)) {
1954 buffer = kmalloc(nbytes + 1, GFP_KERNEL);
1955 if (buffer == NULL)
1956 return -ENOMEM;
1957 }
Li Zefan5a3eb9f2008-07-29 22:33:18 -07001958 if (nbytes && copy_from_user(buffer, userbuf, nbytes)) {
1959 retval = -EFAULT;
1960 goto out;
1961 }
Paul Menagedb3b1492008-07-25 01:46:58 -07001962
1963 buffer[nbytes] = 0; /* nul-terminate */
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07001964 retval = cft->write_string(cgrp, cft, strstrip(buffer));
Paul Menagedb3b1492008-07-25 01:46:58 -07001965 if (!retval)
1966 retval = nbytes;
Li Zefan5a3eb9f2008-07-29 22:33:18 -07001967out:
Paul Menagedb3b1492008-07-25 01:46:58 -07001968 if (buffer != local_buffer)
1969 kfree(buffer);
1970 return retval;
1971}
1972
Paul Menageddbcc7e2007-10-18 23:39:30 -07001973static ssize_t cgroup_file_write(struct file *file, const char __user *buf,
1974 size_t nbytes, loff_t *ppos)
1975{
1976 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07001977 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001978
Li Zefan75139b82009-01-07 18:07:33 -08001979 if (cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001980 return -ENODEV;
Paul Menage355e0c42007-10-18 23:39:33 -07001981 if (cft->write)
Paul Menagebd89aab2007-10-18 23:40:44 -07001982 return cft->write(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07001983 if (cft->write_u64 || cft->write_s64)
1984 return cgroup_write_X64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagedb3b1492008-07-25 01:46:58 -07001985 if (cft->write_string)
1986 return cgroup_write_string(cgrp, cft, file, buf, nbytes, ppos);
Pavel Emelyanovd447ea22008-04-29 01:00:08 -07001987 if (cft->trigger) {
1988 int ret = cft->trigger(cgrp, (unsigned int)cft->private);
1989 return ret ? ret : nbytes;
1990 }
Paul Menage355e0c42007-10-18 23:39:33 -07001991 return -EINVAL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001992}
1993
Paul Menagef4c753b2008-04-29 00:59:56 -07001994static ssize_t cgroup_read_u64(struct cgroup *cgrp, struct cftype *cft,
1995 struct file *file,
1996 char __user *buf, size_t nbytes,
1997 loff_t *ppos)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001998{
Paul Menage84eea842008-07-25 01:47:00 -07001999 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagef4c753b2008-04-29 00:59:56 -07002000 u64 val = cft->read_u64(cgrp, cft);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002001 int len = sprintf(tmp, "%llu\n", (unsigned long long) val);
2002
2003 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2004}
2005
Paul Menagee73d2c62008-04-29 01:00:06 -07002006static ssize_t cgroup_read_s64(struct cgroup *cgrp, struct cftype *cft,
2007 struct file *file,
2008 char __user *buf, size_t nbytes,
2009 loff_t *ppos)
2010{
Paul Menage84eea842008-07-25 01:47:00 -07002011 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagee73d2c62008-04-29 01:00:06 -07002012 s64 val = cft->read_s64(cgrp, cft);
2013 int len = sprintf(tmp, "%lld\n", (long long) val);
2014
2015 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2016}
2017
Paul Menageddbcc7e2007-10-18 23:39:30 -07002018static ssize_t cgroup_file_read(struct file *file, char __user *buf,
2019 size_t nbytes, loff_t *ppos)
2020{
2021 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07002022 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002023
Li Zefan75139b82009-01-07 18:07:33 -08002024 if (cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07002025 return -ENODEV;
2026
2027 if (cft->read)
Paul Menagebd89aab2007-10-18 23:40:44 -07002028 return cft->read(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagef4c753b2008-04-29 00:59:56 -07002029 if (cft->read_u64)
2030 return cgroup_read_u64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002031 if (cft->read_s64)
2032 return cgroup_read_s64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002033 return -EINVAL;
2034}
2035
Paul Menage91796562008-04-29 01:00:01 -07002036/*
2037 * seqfile ops/methods for returning structured data. Currently just
2038 * supports string->u64 maps, but can be extended in future.
2039 */
2040
2041struct cgroup_seqfile_state {
2042 struct cftype *cft;
2043 struct cgroup *cgroup;
2044};
2045
2046static int cgroup_map_add(struct cgroup_map_cb *cb, const char *key, u64 value)
2047{
2048 struct seq_file *sf = cb->state;
2049 return seq_printf(sf, "%s %llu\n", key, (unsigned long long)value);
2050}
2051
2052static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2053{
2054 struct cgroup_seqfile_state *state = m->private;
2055 struct cftype *cft = state->cft;
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002056 if (cft->read_map) {
2057 struct cgroup_map_cb cb = {
2058 .fill = cgroup_map_add,
2059 .state = m,
2060 };
2061 return cft->read_map(state->cgroup, cft, &cb);
2062 }
2063 return cft->read_seq_string(state->cgroup, cft, m);
Paul Menage91796562008-04-29 01:00:01 -07002064}
2065
Adrian Bunk96930a62008-07-25 19:46:21 -07002066static int cgroup_seqfile_release(struct inode *inode, struct file *file)
Paul Menage91796562008-04-29 01:00:01 -07002067{
2068 struct seq_file *seq = file->private_data;
2069 kfree(seq->private);
2070 return single_release(inode, file);
2071}
2072
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002073static const struct file_operations cgroup_seqfile_operations = {
Paul Menage91796562008-04-29 01:00:01 -07002074 .read = seq_read,
Paul Menagee788e062008-07-25 01:46:59 -07002075 .write = cgroup_file_write,
Paul Menage91796562008-04-29 01:00:01 -07002076 .llseek = seq_lseek,
2077 .release = cgroup_seqfile_release,
2078};
2079
Paul Menageddbcc7e2007-10-18 23:39:30 -07002080static int cgroup_file_open(struct inode *inode, struct file *file)
2081{
2082 int err;
2083 struct cftype *cft;
2084
2085 err = generic_file_open(inode, file);
2086 if (err)
2087 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002088 cft = __d_cft(file->f_dentry);
Li Zefan75139b82009-01-07 18:07:33 -08002089
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002090 if (cft->read_map || cft->read_seq_string) {
Paul Menage91796562008-04-29 01:00:01 -07002091 struct cgroup_seqfile_state *state =
2092 kzalloc(sizeof(*state), GFP_USER);
2093 if (!state)
2094 return -ENOMEM;
2095 state->cft = cft;
2096 state->cgroup = __d_cgrp(file->f_dentry->d_parent);
2097 file->f_op = &cgroup_seqfile_operations;
2098 err = single_open(file, cgroup_seqfile_show, state);
2099 if (err < 0)
2100 kfree(state);
2101 } else if (cft->open)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002102 err = cft->open(inode, file);
2103 else
2104 err = 0;
2105
2106 return err;
2107}
2108
2109static int cgroup_file_release(struct inode *inode, struct file *file)
2110{
2111 struct cftype *cft = __d_cft(file->f_dentry);
2112 if (cft->release)
2113 return cft->release(inode, file);
2114 return 0;
2115}
2116
2117/*
2118 * cgroup_rename - Only allow simple rename of directories in place.
2119 */
2120static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry,
2121 struct inode *new_dir, struct dentry *new_dentry)
2122{
2123 if (!S_ISDIR(old_dentry->d_inode->i_mode))
2124 return -ENOTDIR;
2125 if (new_dentry->d_inode)
2126 return -EEXIST;
2127 if (old_dir != new_dir)
2128 return -EIO;
2129 return simple_rename(old_dir, old_dentry, new_dir, new_dentry);
2130}
2131
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002132static const struct file_operations cgroup_file_operations = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002133 .read = cgroup_file_read,
2134 .write = cgroup_file_write,
2135 .llseek = generic_file_llseek,
2136 .open = cgroup_file_open,
2137 .release = cgroup_file_release,
2138};
2139
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07002140static const struct inode_operations cgroup_dir_inode_operations = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002141 .lookup = simple_lookup,
2142 .mkdir = cgroup_mkdir,
2143 .rmdir = cgroup_rmdir,
2144 .rename = cgroup_rename,
2145};
2146
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08002147/*
2148 * Check if a file is a control file
2149 */
2150static inline struct cftype *__file_cft(struct file *file)
2151{
2152 if (file->f_dentry->d_inode->i_fop != &cgroup_file_operations)
2153 return ERR_PTR(-EINVAL);
2154 return __d_cft(file->f_dentry);
2155}
2156
Li Zefan099fca32009-04-02 16:57:29 -07002157static int cgroup_create_file(struct dentry *dentry, mode_t mode,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002158 struct super_block *sb)
2159{
Al Viro3ba13d12009-02-20 06:02:22 +00002160 static const struct dentry_operations cgroup_dops = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002161 .d_iput = cgroup_diput,
2162 };
2163
2164 struct inode *inode;
2165
2166 if (!dentry)
2167 return -ENOENT;
2168 if (dentry->d_inode)
2169 return -EEXIST;
2170
2171 inode = cgroup_new_inode(mode, sb);
2172 if (!inode)
2173 return -ENOMEM;
2174
2175 if (S_ISDIR(mode)) {
2176 inode->i_op = &cgroup_dir_inode_operations;
2177 inode->i_fop = &simple_dir_operations;
2178
2179 /* start off with i_nlink == 2 (for "." entry) */
2180 inc_nlink(inode);
2181
2182 /* start with the directory inode held, so that we can
2183 * populate it without racing with another mkdir */
Paul Menage817929e2007-10-18 23:39:36 -07002184 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002185 } else if (S_ISREG(mode)) {
2186 inode->i_size = 0;
2187 inode->i_fop = &cgroup_file_operations;
2188 }
2189 dentry->d_op = &cgroup_dops;
2190 d_instantiate(dentry, inode);
2191 dget(dentry); /* Extra count - pin the dentry in core */
2192 return 0;
2193}
2194
2195/*
Li Zefana043e3b2008-02-23 15:24:09 -08002196 * cgroup_create_dir - create a directory for an object.
2197 * @cgrp: the cgroup we create the directory for. It must have a valid
2198 * ->parent field. And we are going to fill its ->dentry field.
2199 * @dentry: dentry of the new cgroup
2200 * @mode: mode to set on new directory.
Paul Menageddbcc7e2007-10-18 23:39:30 -07002201 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002202static int cgroup_create_dir(struct cgroup *cgrp, struct dentry *dentry,
Li Zefan099fca32009-04-02 16:57:29 -07002203 mode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002204{
2205 struct dentry *parent;
2206 int error = 0;
2207
Paul Menagebd89aab2007-10-18 23:40:44 -07002208 parent = cgrp->parent->dentry;
2209 error = cgroup_create_file(dentry, S_IFDIR | mode, cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002210 if (!error) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002211 dentry->d_fsdata = cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002212 inc_nlink(parent->d_inode);
Paul Menagea47295e2009-01-07 18:07:44 -08002213 rcu_assign_pointer(cgrp->dentry, dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002214 dget(dentry);
2215 }
2216 dput(dentry);
2217
2218 return error;
2219}
2220
Li Zefan099fca32009-04-02 16:57:29 -07002221/**
2222 * cgroup_file_mode - deduce file mode of a control file
2223 * @cft: the control file in question
2224 *
2225 * returns cft->mode if ->mode is not 0
2226 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
2227 * returns S_IRUGO if it has only a read handler
2228 * returns S_IWUSR if it has only a write hander
2229 */
2230static mode_t cgroup_file_mode(const struct cftype *cft)
2231{
2232 mode_t mode = 0;
2233
2234 if (cft->mode)
2235 return cft->mode;
2236
2237 if (cft->read || cft->read_u64 || cft->read_s64 ||
2238 cft->read_map || cft->read_seq_string)
2239 mode |= S_IRUGO;
2240
2241 if (cft->write || cft->write_u64 || cft->write_s64 ||
2242 cft->write_string || cft->trigger)
2243 mode |= S_IWUSR;
2244
2245 return mode;
2246}
2247
Paul Menagebd89aab2007-10-18 23:40:44 -07002248int cgroup_add_file(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002249 struct cgroup_subsys *subsys,
2250 const struct cftype *cft)
2251{
Paul Menagebd89aab2007-10-18 23:40:44 -07002252 struct dentry *dir = cgrp->dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002253 struct dentry *dentry;
2254 int error;
Li Zefan099fca32009-04-02 16:57:29 -07002255 mode_t mode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002256
2257 char name[MAX_CGROUP_TYPE_NAMELEN + MAX_CFTYPE_NAME + 2] = { 0 };
Paul Menagebd89aab2007-10-18 23:40:44 -07002258 if (subsys && !test_bit(ROOT_NOPREFIX, &cgrp->root->flags)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002259 strcpy(name, subsys->name);
2260 strcat(name, ".");
2261 }
2262 strcat(name, cft->name);
2263 BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex));
2264 dentry = lookup_one_len(name, dir, strlen(name));
2265 if (!IS_ERR(dentry)) {
Li Zefan099fca32009-04-02 16:57:29 -07002266 mode = cgroup_file_mode(cft);
2267 error = cgroup_create_file(dentry, mode | S_IFREG,
Paul Menagebd89aab2007-10-18 23:40:44 -07002268 cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002269 if (!error)
2270 dentry->d_fsdata = (void *)cft;
2271 dput(dentry);
2272 } else
2273 error = PTR_ERR(dentry);
2274 return error;
2275}
Ben Blume6a11052010-03-10 15:22:09 -08002276EXPORT_SYMBOL_GPL(cgroup_add_file);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002277
Paul Menagebd89aab2007-10-18 23:40:44 -07002278int cgroup_add_files(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002279 struct cgroup_subsys *subsys,
2280 const struct cftype cft[],
2281 int count)
2282{
2283 int i, err;
2284 for (i = 0; i < count; i++) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002285 err = cgroup_add_file(cgrp, subsys, &cft[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002286 if (err)
2287 return err;
2288 }
2289 return 0;
2290}
Ben Blume6a11052010-03-10 15:22:09 -08002291EXPORT_SYMBOL_GPL(cgroup_add_files);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002292
Li Zefana043e3b2008-02-23 15:24:09 -08002293/**
2294 * cgroup_task_count - count the number of tasks in a cgroup.
2295 * @cgrp: the cgroup in question
2296 *
2297 * Return the number of tasks in the cgroup.
2298 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002299int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002300{
2301 int count = 0;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07002302 struct cg_cgroup_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002303
Paul Menage817929e2007-10-18 23:39:36 -07002304 read_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07002305 list_for_each_entry(link, &cgrp->css_sets, cgrp_link_list) {
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07002306 count += atomic_read(&link->cg->refcount);
Paul Menage817929e2007-10-18 23:39:36 -07002307 }
2308 read_unlock(&css_set_lock);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002309 return count;
2310}
2311
2312/*
Paul Menage817929e2007-10-18 23:39:36 -07002313 * Advance a list_head iterator. The iterator should be positioned at
2314 * the start of a css_set
2315 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002316static void cgroup_advance_iter(struct cgroup *cgrp,
Paul Menage7717f7b2009-09-23 15:56:22 -07002317 struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002318{
2319 struct list_head *l = it->cg_link;
2320 struct cg_cgroup_link *link;
2321 struct css_set *cg;
2322
2323 /* Advance to the next non-empty css_set */
2324 do {
2325 l = l->next;
Paul Menagebd89aab2007-10-18 23:40:44 -07002326 if (l == &cgrp->css_sets) {
Paul Menage817929e2007-10-18 23:39:36 -07002327 it->cg_link = NULL;
2328 return;
2329 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002330 link = list_entry(l, struct cg_cgroup_link, cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07002331 cg = link->cg;
2332 } while (list_empty(&cg->tasks));
2333 it->cg_link = l;
2334 it->task = cg->tasks.next;
2335}
2336
Cliff Wickman31a7df02008-02-07 00:14:42 -08002337/*
2338 * To reduce the fork() overhead for systems that are not actually
2339 * using their cgroups capability, we don't maintain the lists running
2340 * through each css_set to its tasks until we see the list actually
2341 * used - in other words after the first call to cgroup_iter_start().
2342 *
2343 * The tasklist_lock is not held here, as do_each_thread() and
2344 * while_each_thread() are protected by RCU.
2345 */
Adrian Bunk3df91fe2008-04-29 00:59:54 -07002346static void cgroup_enable_task_cg_lists(void)
Cliff Wickman31a7df02008-02-07 00:14:42 -08002347{
2348 struct task_struct *p, *g;
2349 write_lock(&css_set_lock);
2350 use_task_css_set_links = 1;
2351 do_each_thread(g, p) {
2352 task_lock(p);
Li Zefan0e043882008-04-17 11:37:15 +08002353 /*
2354 * We should check if the process is exiting, otherwise
2355 * it will race with cgroup_exit() in that the list
2356 * entry won't be deleted though the process has exited.
2357 */
2358 if (!(p->flags & PF_EXITING) && list_empty(&p->cg_list))
Cliff Wickman31a7df02008-02-07 00:14:42 -08002359 list_add(&p->cg_list, &p->cgroups->tasks);
2360 task_unlock(p);
2361 } while_each_thread(g, p);
2362 write_unlock(&css_set_lock);
2363}
2364
Paul Menagebd89aab2007-10-18 23:40:44 -07002365void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002366{
2367 /*
2368 * The first time anyone tries to iterate across a cgroup,
2369 * we need to enable the list linking each css_set to its
2370 * tasks, and fix up all existing tasks.
2371 */
Cliff Wickman31a7df02008-02-07 00:14:42 -08002372 if (!use_task_css_set_links)
2373 cgroup_enable_task_cg_lists();
2374
Paul Menage817929e2007-10-18 23:39:36 -07002375 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07002376 it->cg_link = &cgrp->css_sets;
2377 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07002378}
2379
Paul Menagebd89aab2007-10-18 23:40:44 -07002380struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -07002381 struct cgroup_iter *it)
2382{
2383 struct task_struct *res;
2384 struct list_head *l = it->task;
Lai Jiangshan2019f632009-01-07 18:07:36 -08002385 struct cg_cgroup_link *link;
Paul Menage817929e2007-10-18 23:39:36 -07002386
2387 /* If the iterator cg is NULL, we have no tasks */
2388 if (!it->cg_link)
2389 return NULL;
2390 res = list_entry(l, struct task_struct, cg_list);
2391 /* Advance iterator to find next entry */
2392 l = l->next;
Lai Jiangshan2019f632009-01-07 18:07:36 -08002393 link = list_entry(it->cg_link, struct cg_cgroup_link, cgrp_link_list);
2394 if (l == &link->cg->tasks) {
Paul Menage817929e2007-10-18 23:39:36 -07002395 /* We reached the end of this task list - move on to
2396 * the next cg_cgroup_link */
Paul Menagebd89aab2007-10-18 23:40:44 -07002397 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07002398 } else {
2399 it->task = l;
2400 }
2401 return res;
2402}
2403
Paul Menagebd89aab2007-10-18 23:40:44 -07002404void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002405{
2406 read_unlock(&css_set_lock);
2407}
2408
Cliff Wickman31a7df02008-02-07 00:14:42 -08002409static inline int started_after_time(struct task_struct *t1,
2410 struct timespec *time,
2411 struct task_struct *t2)
2412{
2413 int start_diff = timespec_compare(&t1->start_time, time);
2414 if (start_diff > 0) {
2415 return 1;
2416 } else if (start_diff < 0) {
2417 return 0;
2418 } else {
2419 /*
2420 * Arbitrarily, if two processes started at the same
2421 * time, we'll say that the lower pointer value
2422 * started first. Note that t2 may have exited by now
2423 * so this may not be a valid pointer any longer, but
2424 * that's fine - it still serves to distinguish
2425 * between two tasks started (effectively) simultaneously.
2426 */
2427 return t1 > t2;
2428 }
2429}
2430
2431/*
2432 * This function is a callback from heap_insert() and is used to order
2433 * the heap.
2434 * In this case we order the heap in descending task start time.
2435 */
2436static inline int started_after(void *p1, void *p2)
2437{
2438 struct task_struct *t1 = p1;
2439 struct task_struct *t2 = p2;
2440 return started_after_time(t1, &t2->start_time, t2);
2441}
2442
2443/**
2444 * cgroup_scan_tasks - iterate though all the tasks in a cgroup
2445 * @scan: struct cgroup_scanner containing arguments for the scan
2446 *
2447 * Arguments include pointers to callback functions test_task() and
2448 * process_task().
2449 * Iterate through all the tasks in a cgroup, calling test_task() for each,
2450 * and if it returns true, call process_task() for it also.
2451 * The test_task pointer may be NULL, meaning always true (select all tasks).
2452 * Effectively duplicates cgroup_iter_{start,next,end}()
2453 * but does not lock css_set_lock for the call to process_task().
2454 * The struct cgroup_scanner may be embedded in any structure of the caller's
2455 * creation.
2456 * It is guaranteed that process_task() will act on every task that
2457 * is a member of the cgroup for the duration of this call. This
2458 * function may or may not call process_task() for tasks that exit
2459 * or move to a different cgroup during the call, or are forked or
2460 * move into the cgroup during the call.
2461 *
2462 * Note that test_task() may be called with locks held, and may in some
2463 * situations be called multiple times for the same task, so it should
2464 * be cheap.
2465 * If the heap pointer in the struct cgroup_scanner is non-NULL, a heap has been
2466 * pre-allocated and will be used for heap operations (and its "gt" member will
2467 * be overwritten), else a temporary heap will be used (allocation of which
2468 * may cause this function to fail).
2469 */
2470int cgroup_scan_tasks(struct cgroup_scanner *scan)
2471{
2472 int retval, i;
2473 struct cgroup_iter it;
2474 struct task_struct *p, *dropped;
2475 /* Never dereference latest_task, since it's not refcounted */
2476 struct task_struct *latest_task = NULL;
2477 struct ptr_heap tmp_heap;
2478 struct ptr_heap *heap;
2479 struct timespec latest_time = { 0, 0 };
2480
2481 if (scan->heap) {
2482 /* The caller supplied our heap and pre-allocated its memory */
2483 heap = scan->heap;
2484 heap->gt = &started_after;
2485 } else {
2486 /* We need to allocate our own heap memory */
2487 heap = &tmp_heap;
2488 retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after);
2489 if (retval)
2490 /* cannot allocate the heap */
2491 return retval;
2492 }
2493
2494 again:
2495 /*
2496 * Scan tasks in the cgroup, using the scanner's "test_task" callback
2497 * to determine which are of interest, and using the scanner's
2498 * "process_task" callback to process any of them that need an update.
2499 * Since we don't want to hold any locks during the task updates,
2500 * gather tasks to be processed in a heap structure.
2501 * The heap is sorted by descending task start time.
2502 * If the statically-sized heap fills up, we overflow tasks that
2503 * started later, and in future iterations only consider tasks that
2504 * started after the latest task in the previous pass. This
2505 * guarantees forward progress and that we don't miss any tasks.
2506 */
2507 heap->size = 0;
2508 cgroup_iter_start(scan->cg, &it);
2509 while ((p = cgroup_iter_next(scan->cg, &it))) {
2510 /*
2511 * Only affect tasks that qualify per the caller's callback,
2512 * if he provided one
2513 */
2514 if (scan->test_task && !scan->test_task(p, scan))
2515 continue;
2516 /*
2517 * Only process tasks that started after the last task
2518 * we processed
2519 */
2520 if (!started_after_time(p, &latest_time, latest_task))
2521 continue;
2522 dropped = heap_insert(heap, p);
2523 if (dropped == NULL) {
2524 /*
2525 * The new task was inserted; the heap wasn't
2526 * previously full
2527 */
2528 get_task_struct(p);
2529 } else if (dropped != p) {
2530 /*
2531 * The new task was inserted, and pushed out a
2532 * different task
2533 */
2534 get_task_struct(p);
2535 put_task_struct(dropped);
2536 }
2537 /*
2538 * Else the new task was newer than anything already in
2539 * the heap and wasn't inserted
2540 */
2541 }
2542 cgroup_iter_end(scan->cg, &it);
2543
2544 if (heap->size) {
2545 for (i = 0; i < heap->size; i++) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07002546 struct task_struct *q = heap->ptrs[i];
Cliff Wickman31a7df02008-02-07 00:14:42 -08002547 if (i == 0) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07002548 latest_time = q->start_time;
2549 latest_task = q;
Cliff Wickman31a7df02008-02-07 00:14:42 -08002550 }
2551 /* Process the task per the caller's callback */
Paul Jackson4fe91d52008-04-29 00:59:55 -07002552 scan->process_task(q, scan);
2553 put_task_struct(q);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002554 }
2555 /*
2556 * If we had to process any tasks at all, scan again
2557 * in case some of them were in the middle of forking
2558 * children that didn't get processed.
2559 * Not the most efficient way to do it, but it avoids
2560 * having to take callback_mutex in the fork path
2561 */
2562 goto again;
2563 }
2564 if (heap == &tmp_heap)
2565 heap_free(&tmp_heap);
2566 return 0;
2567}
2568
Paul Menage817929e2007-10-18 23:39:36 -07002569/*
Ben Blum102a7752009-09-23 15:56:26 -07002570 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07002571 *
2572 * Reading this file can return large amounts of data if a cgroup has
2573 * *lots* of attached tasks. So it may need several calls to read(),
2574 * but we cannot guarantee that the information we produce is correct
2575 * unless we produce it entirely atomically.
2576 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07002577 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07002578
2579/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07002580 * The following two functions "fix" the issue where there are more pids
2581 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
2582 * TODO: replace with a kernel-wide solution to this problem
2583 */
2584#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
2585static void *pidlist_allocate(int count)
2586{
2587 if (PIDLIST_TOO_LARGE(count))
2588 return vmalloc(count * sizeof(pid_t));
2589 else
2590 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
2591}
2592static void pidlist_free(void *p)
2593{
2594 if (is_vmalloc_addr(p))
2595 vfree(p);
2596 else
2597 kfree(p);
2598}
2599static void *pidlist_resize(void *p, int newcount)
2600{
2601 void *newlist;
2602 /* note: if new alloc fails, old p will still be valid either way */
2603 if (is_vmalloc_addr(p)) {
2604 newlist = vmalloc(newcount * sizeof(pid_t));
2605 if (!newlist)
2606 return NULL;
2607 memcpy(newlist, p, newcount * sizeof(pid_t));
2608 vfree(p);
2609 } else {
2610 newlist = krealloc(p, newcount * sizeof(pid_t), GFP_KERNEL);
2611 }
2612 return newlist;
2613}
2614
2615/*
Ben Blum102a7752009-09-23 15:56:26 -07002616 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
2617 * If the new stripped list is sufficiently smaller and there's enough memory
2618 * to allocate a new buffer, will let go of the unneeded memory. Returns the
2619 * number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07002620 */
Ben Blum102a7752009-09-23 15:56:26 -07002621/* is the size difference enough that we should re-allocate the array? */
2622#define PIDLIST_REALLOC_DIFFERENCE(old, new) ((old) - PAGE_SIZE >= (new))
2623static int pidlist_uniq(pid_t **p, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002624{
Ben Blum102a7752009-09-23 15:56:26 -07002625 int src, dest = 1;
2626 pid_t *list = *p;
2627 pid_t *newlist;
2628
2629 /*
2630 * we presume the 0th element is unique, so i starts at 1. trivial
2631 * edge cases first; no work needs to be done for either
2632 */
2633 if (length == 0 || length == 1)
2634 return length;
2635 /* src and dest walk down the list; dest counts unique elements */
2636 for (src = 1; src < length; src++) {
2637 /* find next unique element */
2638 while (list[src] == list[src-1]) {
2639 src++;
2640 if (src == length)
2641 goto after;
2642 }
2643 /* dest always points to where the next unique element goes */
2644 list[dest] = list[src];
2645 dest++;
2646 }
2647after:
2648 /*
2649 * if the length difference is large enough, we want to allocate a
2650 * smaller buffer to save memory. if this fails due to out of memory,
2651 * we'll just stay with what we've got.
2652 */
2653 if (PIDLIST_REALLOC_DIFFERENCE(length, dest)) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07002654 newlist = pidlist_resize(list, dest);
Ben Blum102a7752009-09-23 15:56:26 -07002655 if (newlist)
2656 *p = newlist;
2657 }
2658 return dest;
2659}
2660
2661static int cmppid(const void *a, const void *b)
2662{
2663 return *(pid_t *)a - *(pid_t *)b;
2664}
2665
2666/*
Ben Blum72a8cb32009-09-23 15:56:27 -07002667 * find the appropriate pidlist for our purpose (given procs vs tasks)
2668 * returns with the lock on that pidlist already held, and takes care
2669 * of the use count, or returns NULL with no locks held if we're out of
2670 * memory.
2671 */
2672static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
2673 enum cgroup_filetype type)
2674{
2675 struct cgroup_pidlist *l;
2676 /* don't need task_nsproxy() if we're looking at ourself */
Li Zefanb70cc5f2010-03-10 15:22:12 -08002677 struct pid_namespace *ns = current->nsproxy->pid_ns;
2678
Ben Blum72a8cb32009-09-23 15:56:27 -07002679 /*
2680 * We can't drop the pidlist_mutex before taking the l->mutex in case
2681 * the last ref-holder is trying to remove l from the list at the same
2682 * time. Holding the pidlist_mutex precludes somebody taking whichever
2683 * list we find out from under us - compare release_pid_array().
2684 */
2685 mutex_lock(&cgrp->pidlist_mutex);
2686 list_for_each_entry(l, &cgrp->pidlists, links) {
2687 if (l->key.type == type && l->key.ns == ns) {
Ben Blum72a8cb32009-09-23 15:56:27 -07002688 /* make sure l doesn't vanish out from under us */
2689 down_write(&l->mutex);
2690 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07002691 return l;
2692 }
2693 }
2694 /* entry not found; create a new one */
2695 l = kmalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
2696 if (!l) {
2697 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07002698 return l;
2699 }
2700 init_rwsem(&l->mutex);
2701 down_write(&l->mutex);
2702 l->key.type = type;
Li Zefanb70cc5f2010-03-10 15:22:12 -08002703 l->key.ns = get_pid_ns(ns);
Ben Blum72a8cb32009-09-23 15:56:27 -07002704 l->use_count = 0; /* don't increment here */
2705 l->list = NULL;
2706 l->owner = cgrp;
2707 list_add(&l->links, &cgrp->pidlists);
2708 mutex_unlock(&cgrp->pidlist_mutex);
2709 return l;
2710}
2711
2712/*
Ben Blum102a7752009-09-23 15:56:26 -07002713 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
2714 */
Ben Blum72a8cb32009-09-23 15:56:27 -07002715static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
2716 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07002717{
2718 pid_t *array;
2719 int length;
2720 int pid, n = 0; /* used for populating the array */
Paul Menage817929e2007-10-18 23:39:36 -07002721 struct cgroup_iter it;
2722 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07002723 struct cgroup_pidlist *l;
2724
2725 /*
2726 * If cgroup gets more users after we read count, we won't have
2727 * enough space - tough. This race is indistinguishable to the
2728 * caller from the case that the additional cgroup users didn't
2729 * show up until sometime later on.
2730 */
2731 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07002732 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07002733 if (!array)
2734 return -ENOMEM;
2735 /* now, populate the array */
Paul Menagebd89aab2007-10-18 23:40:44 -07002736 cgroup_iter_start(cgrp, &it);
2737 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Ben Blum102a7752009-09-23 15:56:26 -07002738 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07002739 break;
Ben Blum102a7752009-09-23 15:56:26 -07002740 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07002741 if (type == CGROUP_FILE_PROCS)
2742 pid = task_tgid_vnr(tsk);
2743 else
2744 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07002745 if (pid > 0) /* make sure to only use valid results */
2746 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07002747 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002748 cgroup_iter_end(cgrp, &it);
Ben Blum102a7752009-09-23 15:56:26 -07002749 length = n;
2750 /* now sort & (if procs) strip out duplicates */
2751 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07002752 if (type == CGROUP_FILE_PROCS)
Ben Blum102a7752009-09-23 15:56:26 -07002753 length = pidlist_uniq(&array, length);
Ben Blum72a8cb32009-09-23 15:56:27 -07002754 l = cgroup_pidlist_find(cgrp, type);
2755 if (!l) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07002756 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07002757 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07002758 }
Ben Blum72a8cb32009-09-23 15:56:27 -07002759 /* store array, freeing old if necessary - lock already held */
Ben Blumd1d9fd32009-09-23 15:56:28 -07002760 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07002761 l->list = array;
2762 l->length = length;
2763 l->use_count++;
2764 up_write(&l->mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07002765 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07002766 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002767}
2768
Balbir Singh846c7bb2007-10-18 23:39:44 -07002769/**
Li Zefana043e3b2008-02-23 15:24:09 -08002770 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07002771 * @stats: cgroupstats to fill information into
2772 * @dentry: A dentry entry belonging to the cgroup for which stats have
2773 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08002774 *
2775 * Build and fill cgroupstats so that taskstats can export it to user
2776 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07002777 */
2778int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
2779{
2780 int ret = -EINVAL;
Paul Menagebd89aab2007-10-18 23:40:44 -07002781 struct cgroup *cgrp;
Balbir Singh846c7bb2007-10-18 23:39:44 -07002782 struct cgroup_iter it;
2783 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08002784
Balbir Singh846c7bb2007-10-18 23:39:44 -07002785 /*
Li Zefan33d283b2008-11-19 15:36:48 -08002786 * Validate dentry by checking the superblock operations,
2787 * and make sure it's a directory.
Balbir Singh846c7bb2007-10-18 23:39:44 -07002788 */
Li Zefan33d283b2008-11-19 15:36:48 -08002789 if (dentry->d_sb->s_op != &cgroup_ops ||
2790 !S_ISDIR(dentry->d_inode->i_mode))
Balbir Singh846c7bb2007-10-18 23:39:44 -07002791 goto err;
2792
2793 ret = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07002794 cgrp = dentry->d_fsdata;
Balbir Singh846c7bb2007-10-18 23:39:44 -07002795
Paul Menagebd89aab2007-10-18 23:40:44 -07002796 cgroup_iter_start(cgrp, &it);
2797 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07002798 switch (tsk->state) {
2799 case TASK_RUNNING:
2800 stats->nr_running++;
2801 break;
2802 case TASK_INTERRUPTIBLE:
2803 stats->nr_sleeping++;
2804 break;
2805 case TASK_UNINTERRUPTIBLE:
2806 stats->nr_uninterruptible++;
2807 break;
2808 case TASK_STOPPED:
2809 stats->nr_stopped++;
2810 break;
2811 default:
2812 if (delayacct_is_task_waiting_on_io(tsk))
2813 stats->nr_io_wait++;
2814 break;
2815 }
2816 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002817 cgroup_iter_end(cgrp, &it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07002818
Balbir Singh846c7bb2007-10-18 23:39:44 -07002819err:
2820 return ret;
2821}
2822
Paul Menage8f3ff202009-09-23 15:56:25 -07002823
Paul Menagecc31edc2008-10-18 20:28:04 -07002824/*
Ben Blum102a7752009-09-23 15:56:26 -07002825 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07002826 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07002827 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07002828 */
2829
Ben Blum102a7752009-09-23 15:56:26 -07002830static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07002831{
2832 /*
2833 * Initially we receive a position value that corresponds to
2834 * one more than the last pid shown (or 0 on the first call or
2835 * after a seek to the start). Use a binary-search to find the
2836 * next pid to display, if any
2837 */
Ben Blum102a7752009-09-23 15:56:26 -07002838 struct cgroup_pidlist *l = s->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07002839 int index = 0, pid = *pos;
2840 int *iter;
2841
Ben Blum102a7752009-09-23 15:56:26 -07002842 down_read(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07002843 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07002844 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11002845
Paul Menagecc31edc2008-10-18 20:28:04 -07002846 while (index < end) {
2847 int mid = (index + end) / 2;
Ben Blum102a7752009-09-23 15:56:26 -07002848 if (l->list[mid] == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07002849 index = mid;
2850 break;
Ben Blum102a7752009-09-23 15:56:26 -07002851 } else if (l->list[mid] <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07002852 index = mid + 1;
2853 else
2854 end = mid;
2855 }
2856 }
2857 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07002858 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07002859 return NULL;
2860 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07002861 iter = l->list + index;
Paul Menagecc31edc2008-10-18 20:28:04 -07002862 *pos = *iter;
2863 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002864}
2865
Ben Blum102a7752009-09-23 15:56:26 -07002866static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07002867{
Ben Blum102a7752009-09-23 15:56:26 -07002868 struct cgroup_pidlist *l = s->private;
2869 up_read(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07002870}
2871
Ben Blum102a7752009-09-23 15:56:26 -07002872static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07002873{
Ben Blum102a7752009-09-23 15:56:26 -07002874 struct cgroup_pidlist *l = s->private;
2875 pid_t *p = v;
2876 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07002877 /*
2878 * Advance to the next pid in the array. If this goes off the
2879 * end, we're done
2880 */
2881 p++;
2882 if (p >= end) {
2883 return NULL;
2884 } else {
2885 *pos = *p;
2886 return p;
2887 }
2888}
2889
Ben Blum102a7752009-09-23 15:56:26 -07002890static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07002891{
2892 return seq_printf(s, "%d\n", *(int *)v);
2893}
2894
Ben Blum102a7752009-09-23 15:56:26 -07002895/*
2896 * seq_operations functions for iterating on pidlists through seq_file -
2897 * independent of whether it's tasks or procs
2898 */
2899static const struct seq_operations cgroup_pidlist_seq_operations = {
2900 .start = cgroup_pidlist_start,
2901 .stop = cgroup_pidlist_stop,
2902 .next = cgroup_pidlist_next,
2903 .show = cgroup_pidlist_show,
Paul Menagecc31edc2008-10-18 20:28:04 -07002904};
2905
Ben Blum102a7752009-09-23 15:56:26 -07002906static void cgroup_release_pid_array(struct cgroup_pidlist *l)
Paul Menagecc31edc2008-10-18 20:28:04 -07002907{
Ben Blum72a8cb32009-09-23 15:56:27 -07002908 /*
2909 * the case where we're the last user of this particular pidlist will
2910 * have us remove it from the cgroup's list, which entails taking the
2911 * mutex. since in pidlist_find the pidlist->lock depends on cgroup->
2912 * pidlist_mutex, we have to take pidlist_mutex first.
2913 */
2914 mutex_lock(&l->owner->pidlist_mutex);
Ben Blum102a7752009-09-23 15:56:26 -07002915 down_write(&l->mutex);
2916 BUG_ON(!l->use_count);
2917 if (!--l->use_count) {
Ben Blum72a8cb32009-09-23 15:56:27 -07002918 /* we're the last user if refcount is 0; remove and free */
2919 list_del(&l->links);
2920 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blumd1d9fd32009-09-23 15:56:28 -07002921 pidlist_free(l->list);
Ben Blum72a8cb32009-09-23 15:56:27 -07002922 put_pid_ns(l->key.ns);
2923 up_write(&l->mutex);
2924 kfree(l);
2925 return;
Paul Menagecc31edc2008-10-18 20:28:04 -07002926 }
Ben Blum72a8cb32009-09-23 15:56:27 -07002927 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blum102a7752009-09-23 15:56:26 -07002928 up_write(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07002929}
2930
Ben Blum102a7752009-09-23 15:56:26 -07002931static int cgroup_pidlist_release(struct inode *inode, struct file *file)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002932{
Ben Blum102a7752009-09-23 15:56:26 -07002933 struct cgroup_pidlist *l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002934 if (!(file->f_mode & FMODE_READ))
2935 return 0;
Ben Blum102a7752009-09-23 15:56:26 -07002936 /*
2937 * the seq_file will only be initialized if the file was opened for
2938 * reading; hence we check if it's not null only in that case.
2939 */
2940 l = ((struct seq_file *)file->private_data)->private;
2941 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07002942 return seq_release(inode, file);
2943}
2944
Ben Blum102a7752009-09-23 15:56:26 -07002945static const struct file_operations cgroup_pidlist_operations = {
Paul Menagecc31edc2008-10-18 20:28:04 -07002946 .read = seq_read,
2947 .llseek = seq_lseek,
2948 .write = cgroup_file_write,
Ben Blum102a7752009-09-23 15:56:26 -07002949 .release = cgroup_pidlist_release,
Paul Menagecc31edc2008-10-18 20:28:04 -07002950};
2951
2952/*
Ben Blum102a7752009-09-23 15:56:26 -07002953 * The following functions handle opens on a file that displays a pidlist
2954 * (tasks or procs). Prepare an array of the process/thread IDs of whoever's
2955 * in the cgroup.
Paul Menagecc31edc2008-10-18 20:28:04 -07002956 */
Ben Blum102a7752009-09-23 15:56:26 -07002957/* helper function for the two below it */
Ben Blum72a8cb32009-09-23 15:56:27 -07002958static int cgroup_pidlist_open(struct file *file, enum cgroup_filetype type)
Paul Menagecc31edc2008-10-18 20:28:04 -07002959{
2960 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Ben Blum72a8cb32009-09-23 15:56:27 -07002961 struct cgroup_pidlist *l;
Paul Menagecc31edc2008-10-18 20:28:04 -07002962 int retval;
2963
2964 /* Nothing to do for write-only files */
2965 if (!(file->f_mode & FMODE_READ))
2966 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002967
Ben Blum102a7752009-09-23 15:56:26 -07002968 /* have the array populated */
Ben Blum72a8cb32009-09-23 15:56:27 -07002969 retval = pidlist_array_load(cgrp, type, &l);
Ben Blum102a7752009-09-23 15:56:26 -07002970 if (retval)
2971 return retval;
2972 /* configure file information */
2973 file->f_op = &cgroup_pidlist_operations;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002974
Ben Blum102a7752009-09-23 15:56:26 -07002975 retval = seq_open(file, &cgroup_pidlist_seq_operations);
Paul Menagecc31edc2008-10-18 20:28:04 -07002976 if (retval) {
Ben Blum102a7752009-09-23 15:56:26 -07002977 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07002978 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002979 }
Ben Blum102a7752009-09-23 15:56:26 -07002980 ((struct seq_file *)file->private_data)->private = l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002981 return 0;
2982}
Ben Blum102a7752009-09-23 15:56:26 -07002983static int cgroup_tasks_open(struct inode *unused, struct file *file)
2984{
Ben Blum72a8cb32009-09-23 15:56:27 -07002985 return cgroup_pidlist_open(file, CGROUP_FILE_TASKS);
Ben Blum102a7752009-09-23 15:56:26 -07002986}
2987static int cgroup_procs_open(struct inode *unused, struct file *file)
2988{
Ben Blum72a8cb32009-09-23 15:56:27 -07002989 return cgroup_pidlist_open(file, CGROUP_FILE_PROCS);
Ben Blum102a7752009-09-23 15:56:26 -07002990}
Paul Menagebbcb81d2007-10-18 23:39:32 -07002991
Paul Menagebd89aab2007-10-18 23:40:44 -07002992static u64 cgroup_read_notify_on_release(struct cgroup *cgrp,
Paul Menage81a6a5c2007-10-18 23:39:38 -07002993 struct cftype *cft)
2994{
Paul Menagebd89aab2007-10-18 23:40:44 -07002995 return notify_on_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002996}
2997
Paul Menage6379c102008-07-25 01:47:01 -07002998static int cgroup_write_notify_on_release(struct cgroup *cgrp,
2999 struct cftype *cft,
3000 u64 val)
3001{
3002 clear_bit(CGRP_RELEASABLE, &cgrp->flags);
3003 if (val)
3004 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3005 else
3006 clear_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3007 return 0;
3008}
3009
Paul Menagebbcb81d2007-10-18 23:39:32 -07003010/*
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003011 * Unregister event and free resources.
3012 *
3013 * Gets called from workqueue.
3014 */
3015static void cgroup_event_remove(struct work_struct *work)
3016{
3017 struct cgroup_event *event = container_of(work, struct cgroup_event,
3018 remove);
3019 struct cgroup *cgrp = event->cgrp;
3020
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003021 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3022
3023 eventfd_ctx_put(event->eventfd);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003024 kfree(event);
Kirill A. Shutemova0a4db52010-03-10 15:22:34 -08003025 dput(cgrp->dentry);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003026}
3027
3028/*
3029 * Gets called on POLLHUP on eventfd when user closes it.
3030 *
3031 * Called with wqh->lock held and interrupts disabled.
3032 */
3033static int cgroup_event_wake(wait_queue_t *wait, unsigned mode,
3034 int sync, void *key)
3035{
3036 struct cgroup_event *event = container_of(wait,
3037 struct cgroup_event, wait);
3038 struct cgroup *cgrp = event->cgrp;
3039 unsigned long flags = (unsigned long)key;
3040
3041 if (flags & POLLHUP) {
Changli Gaoa93d2f12010-05-07 14:33:26 +08003042 __remove_wait_queue(event->wqh, &event->wait);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003043 spin_lock(&cgrp->event_list_lock);
3044 list_del(&event->list);
3045 spin_unlock(&cgrp->event_list_lock);
3046 /*
3047 * We are in atomic context, but cgroup_event_remove() may
3048 * sleep, so we have to call it in workqueue.
3049 */
3050 schedule_work(&event->remove);
3051 }
3052
3053 return 0;
3054}
3055
3056static void cgroup_event_ptable_queue_proc(struct file *file,
3057 wait_queue_head_t *wqh, poll_table *pt)
3058{
3059 struct cgroup_event *event = container_of(pt,
3060 struct cgroup_event, pt);
3061
3062 event->wqh = wqh;
3063 add_wait_queue(wqh, &event->wait);
3064}
3065
3066/*
3067 * Parse input and register new cgroup event handler.
3068 *
3069 * Input must be in format '<event_fd> <control_fd> <args>'.
3070 * Interpretation of args is defined by control file implementation.
3071 */
3072static int cgroup_write_event_control(struct cgroup *cgrp, struct cftype *cft,
3073 const char *buffer)
3074{
3075 struct cgroup_event *event = NULL;
3076 unsigned int efd, cfd;
3077 struct file *efile = NULL;
3078 struct file *cfile = NULL;
3079 char *endp;
3080 int ret;
3081
3082 efd = simple_strtoul(buffer, &endp, 10);
3083 if (*endp != ' ')
3084 return -EINVAL;
3085 buffer = endp + 1;
3086
3087 cfd = simple_strtoul(buffer, &endp, 10);
3088 if ((*endp != ' ') && (*endp != '\0'))
3089 return -EINVAL;
3090 buffer = endp + 1;
3091
3092 event = kzalloc(sizeof(*event), GFP_KERNEL);
3093 if (!event)
3094 return -ENOMEM;
3095 event->cgrp = cgrp;
3096 INIT_LIST_HEAD(&event->list);
3097 init_poll_funcptr(&event->pt, cgroup_event_ptable_queue_proc);
3098 init_waitqueue_func_entry(&event->wait, cgroup_event_wake);
3099 INIT_WORK(&event->remove, cgroup_event_remove);
3100
3101 efile = eventfd_fget(efd);
3102 if (IS_ERR(efile)) {
3103 ret = PTR_ERR(efile);
3104 goto fail;
3105 }
3106
3107 event->eventfd = eventfd_ctx_fileget(efile);
3108 if (IS_ERR(event->eventfd)) {
3109 ret = PTR_ERR(event->eventfd);
3110 goto fail;
3111 }
3112
3113 cfile = fget(cfd);
3114 if (!cfile) {
3115 ret = -EBADF;
3116 goto fail;
3117 }
3118
3119 /* the process need read permission on control file */
3120 ret = file_permission(cfile, MAY_READ);
3121 if (ret < 0)
3122 goto fail;
3123
3124 event->cft = __file_cft(cfile);
3125 if (IS_ERR(event->cft)) {
3126 ret = PTR_ERR(event->cft);
3127 goto fail;
3128 }
3129
3130 if (!event->cft->register_event || !event->cft->unregister_event) {
3131 ret = -EINVAL;
3132 goto fail;
3133 }
3134
3135 ret = event->cft->register_event(cgrp, event->cft,
3136 event->eventfd, buffer);
3137 if (ret)
3138 goto fail;
3139
3140 if (efile->f_op->poll(efile, &event->pt) & POLLHUP) {
3141 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3142 ret = 0;
3143 goto fail;
3144 }
3145
Kirill A. Shutemova0a4db52010-03-10 15:22:34 -08003146 /*
3147 * Events should be removed after rmdir of cgroup directory, but before
3148 * destroying subsystem state objects. Let's take reference to cgroup
3149 * directory dentry to do that.
3150 */
3151 dget(cgrp->dentry);
3152
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003153 spin_lock(&cgrp->event_list_lock);
3154 list_add(&event->list, &cgrp->event_list);
3155 spin_unlock(&cgrp->event_list_lock);
3156
3157 fput(cfile);
3158 fput(efile);
3159
3160 return 0;
3161
3162fail:
3163 if (cfile)
3164 fput(cfile);
3165
3166 if (event && event->eventfd && !IS_ERR(event->eventfd))
3167 eventfd_ctx_put(event->eventfd);
3168
3169 if (!IS_ERR_OR_NULL(efile))
3170 fput(efile);
3171
3172 kfree(event);
3173
3174 return ret;
3175}
3176
3177/*
Paul Menagebbcb81d2007-10-18 23:39:32 -07003178 * for the common functions, 'private' gives the type of file
3179 */
Ben Blum102a7752009-09-23 15:56:26 -07003180/* for hysterical raisins, we can't put this on the older files */
3181#define CGROUP_FILE_GENERIC_PREFIX "cgroup."
Paul Menage81a6a5c2007-10-18 23:39:38 -07003182static struct cftype files[] = {
3183 {
3184 .name = "tasks",
3185 .open = cgroup_tasks_open,
Paul Menageaf351022008-07-25 01:47:01 -07003186 .write_u64 = cgroup_tasks_write,
Ben Blum102a7752009-09-23 15:56:26 -07003187 .release = cgroup_pidlist_release,
Li Zefan099fca32009-04-02 16:57:29 -07003188 .mode = S_IRUGO | S_IWUSR,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003189 },
Ben Blum102a7752009-09-23 15:56:26 -07003190 {
3191 .name = CGROUP_FILE_GENERIC_PREFIX "procs",
3192 .open = cgroup_procs_open,
3193 /* .write_u64 = cgroup_procs_write, TODO */
3194 .release = cgroup_pidlist_release,
3195 .mode = S_IRUGO,
3196 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003197 {
3198 .name = "notify_on_release",
Paul Menagef4c753b2008-04-29 00:59:56 -07003199 .read_u64 = cgroup_read_notify_on_release,
Paul Menage6379c102008-07-25 01:47:01 -07003200 .write_u64 = cgroup_write_notify_on_release,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003201 },
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003202 {
3203 .name = CGROUP_FILE_GENERIC_PREFIX "event_control",
3204 .write_string = cgroup_write_event_control,
3205 .mode = S_IWUGO,
3206 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003207};
3208
3209static struct cftype cft_release_agent = {
3210 .name = "release_agent",
Paul Menagee788e062008-07-25 01:46:59 -07003211 .read_seq_string = cgroup_release_agent_show,
3212 .write_string = cgroup_release_agent_write,
3213 .max_write_len = PATH_MAX,
Paul Menagebbcb81d2007-10-18 23:39:32 -07003214};
3215
Paul Menagebd89aab2007-10-18 23:40:44 -07003216static int cgroup_populate_dir(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003217{
3218 int err;
3219 struct cgroup_subsys *ss;
3220
3221 /* First clear out any existing files */
Paul Menagebd89aab2007-10-18 23:40:44 -07003222 cgroup_clear_directory(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003223
Paul Menagebd89aab2007-10-18 23:40:44 -07003224 err = cgroup_add_files(cgrp, NULL, files, ARRAY_SIZE(files));
Paul Menagebbcb81d2007-10-18 23:39:32 -07003225 if (err < 0)
3226 return err;
3227
Paul Menagebd89aab2007-10-18 23:40:44 -07003228 if (cgrp == cgrp->top_cgroup) {
3229 if ((err = cgroup_add_file(cgrp, NULL, &cft_release_agent)) < 0)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003230 return err;
3231 }
3232
Paul Menagebd89aab2007-10-18 23:40:44 -07003233 for_each_subsys(cgrp->root, ss) {
3234 if (ss->populate && (err = ss->populate(ss, cgrp)) < 0)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003235 return err;
3236 }
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003237 /* This cgroup is ready now */
3238 for_each_subsys(cgrp->root, ss) {
3239 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3240 /*
3241 * Update id->css pointer and make this css visible from
3242 * CSS ID functions. This pointer will be dereferened
3243 * from RCU-read-side without locks.
3244 */
3245 if (css->id)
3246 rcu_assign_pointer(css->id->css, css);
3247 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003248
3249 return 0;
3250}
3251
3252static void init_cgroup_css(struct cgroup_subsys_state *css,
3253 struct cgroup_subsys *ss,
Paul Menagebd89aab2007-10-18 23:40:44 -07003254 struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003255{
Paul Menagebd89aab2007-10-18 23:40:44 -07003256 css->cgroup = cgrp;
Paul Menagee7c5ec92009-01-07 18:08:38 -08003257 atomic_set(&css->refcnt, 1);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003258 css->flags = 0;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003259 css->id = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07003260 if (cgrp == dummytop)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003261 set_bit(CSS_ROOT, &css->flags);
Paul Menagebd89aab2007-10-18 23:40:44 -07003262 BUG_ON(cgrp->subsys[ss->subsys_id]);
3263 cgrp->subsys[ss->subsys_id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003264}
3265
Paul Menage999cd8a2009-01-07 18:08:36 -08003266static void cgroup_lock_hierarchy(struct cgroupfs_root *root)
3267{
3268 /* We need to take each hierarchy_mutex in a consistent order */
3269 int i;
3270
Ben Blumaae8aab2010-03-10 15:22:07 -08003271 /*
3272 * No worry about a race with rebind_subsystems that might mess up the
3273 * locking order, since both parties are under cgroup_mutex.
3274 */
Paul Menage999cd8a2009-01-07 18:08:36 -08003275 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3276 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08003277 if (ss == NULL)
3278 continue;
Paul Menage999cd8a2009-01-07 18:08:36 -08003279 if (ss->root == root)
Li Zefancfebe562009-02-11 13:04:36 -08003280 mutex_lock(&ss->hierarchy_mutex);
Paul Menage999cd8a2009-01-07 18:08:36 -08003281 }
3282}
3283
3284static void cgroup_unlock_hierarchy(struct cgroupfs_root *root)
3285{
3286 int i;
3287
3288 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3289 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08003290 if (ss == NULL)
3291 continue;
Paul Menage999cd8a2009-01-07 18:08:36 -08003292 if (ss->root == root)
3293 mutex_unlock(&ss->hierarchy_mutex);
3294 }
3295}
3296
Paul Menageddbcc7e2007-10-18 23:39:30 -07003297/*
Li Zefana043e3b2008-02-23 15:24:09 -08003298 * cgroup_create - create a cgroup
3299 * @parent: cgroup that will be parent of the new cgroup
3300 * @dentry: dentry of the new cgroup
3301 * @mode: mode to set on new inode
Paul Menageddbcc7e2007-10-18 23:39:30 -07003302 *
Li Zefana043e3b2008-02-23 15:24:09 -08003303 * Must be called with the mutex on the parent inode held
Paul Menageddbcc7e2007-10-18 23:39:30 -07003304 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07003305static long cgroup_create(struct cgroup *parent, struct dentry *dentry,
Li Zefan099fca32009-04-02 16:57:29 -07003306 mode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003307{
Paul Menagebd89aab2007-10-18 23:40:44 -07003308 struct cgroup *cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003309 struct cgroupfs_root *root = parent->root;
3310 int err = 0;
3311 struct cgroup_subsys *ss;
3312 struct super_block *sb = root->sb;
3313
Paul Menagebd89aab2007-10-18 23:40:44 -07003314 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
3315 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003316 return -ENOMEM;
3317
3318 /* Grab a reference on the superblock so the hierarchy doesn't
3319 * get deleted on unmount if there are child cgroups. This
3320 * can be done outside cgroup_mutex, since the sb can't
3321 * disappear while someone has an open control file on the
3322 * fs */
3323 atomic_inc(&sb->s_active);
3324
3325 mutex_lock(&cgroup_mutex);
3326
Paul Menagecc31edc2008-10-18 20:28:04 -07003327 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003328
Paul Menagebd89aab2007-10-18 23:40:44 -07003329 cgrp->parent = parent;
3330 cgrp->root = parent->root;
3331 cgrp->top_cgroup = parent->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003332
Li Zefanb6abdb02008-03-04 14:28:19 -08003333 if (notify_on_release(parent))
3334 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3335
Paul Menageddbcc7e2007-10-18 23:39:30 -07003336 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07003337 struct cgroup_subsys_state *css = ss->create(ss, cgrp);
Li Zefan4528fd02010-02-02 13:44:10 -08003338
Paul Menageddbcc7e2007-10-18 23:39:30 -07003339 if (IS_ERR(css)) {
3340 err = PTR_ERR(css);
3341 goto err_destroy;
3342 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003343 init_cgroup_css(css, ss, cgrp);
Li Zefan4528fd02010-02-02 13:44:10 -08003344 if (ss->use_id) {
3345 err = alloc_css_id(ss, parent, cgrp);
3346 if (err)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003347 goto err_destroy;
Li Zefan4528fd02010-02-02 13:44:10 -08003348 }
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003349 /* At error, ->destroy() callback has to free assigned ID. */
Paul Menageddbcc7e2007-10-18 23:39:30 -07003350 }
3351
Paul Menage999cd8a2009-01-07 18:08:36 -08003352 cgroup_lock_hierarchy(root);
Paul Menagebd89aab2007-10-18 23:40:44 -07003353 list_add(&cgrp->sibling, &cgrp->parent->children);
Paul Menage999cd8a2009-01-07 18:08:36 -08003354 cgroup_unlock_hierarchy(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003355 root->number_of_cgroups++;
3356
Paul Menagebd89aab2007-10-18 23:40:44 -07003357 err = cgroup_create_dir(cgrp, dentry, mode);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003358 if (err < 0)
3359 goto err_remove;
3360
3361 /* The cgroup directory was pre-locked for us */
Paul Menagebd89aab2007-10-18 23:40:44 -07003362 BUG_ON(!mutex_is_locked(&cgrp->dentry->d_inode->i_mutex));
Paul Menageddbcc7e2007-10-18 23:39:30 -07003363
Paul Menagebd89aab2007-10-18 23:40:44 -07003364 err = cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003365 /* If err < 0, we have a half-filled directory - oh well ;) */
3366
3367 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07003368 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003369
3370 return 0;
3371
3372 err_remove:
3373
KAMEZAWA Hiroyukibaef99a2009-01-29 14:25:10 -08003374 cgroup_lock_hierarchy(root);
Paul Menagebd89aab2007-10-18 23:40:44 -07003375 list_del(&cgrp->sibling);
KAMEZAWA Hiroyukibaef99a2009-01-29 14:25:10 -08003376 cgroup_unlock_hierarchy(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003377 root->number_of_cgroups--;
3378
3379 err_destroy:
3380
3381 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07003382 if (cgrp->subsys[ss->subsys_id])
3383 ss->destroy(ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003384 }
3385
3386 mutex_unlock(&cgroup_mutex);
3387
3388 /* Release the reference count that we took on the superblock */
3389 deactivate_super(sb);
3390
Paul Menagebd89aab2007-10-18 23:40:44 -07003391 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003392 return err;
3393}
3394
3395static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode)
3396{
3397 struct cgroup *c_parent = dentry->d_parent->d_fsdata;
3398
3399 /* the vfs holds inode->i_mutex already */
3400 return cgroup_create(c_parent, dentry, mode | S_IFDIR);
3401}
3402
Li Zefan55b6fd02008-07-29 22:33:20 -07003403static int cgroup_has_css_refs(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003404{
3405 /* Check the reference count on each subsystem. Since we
3406 * already established that there are no tasks in the
Paul Menagee7c5ec92009-01-07 18:08:38 -08003407 * cgroup, if the css refcount is also 1, then there should
Paul Menage81a6a5c2007-10-18 23:39:38 -07003408 * be no outstanding references, so the subsystem is safe to
3409 * destroy. We scan across all subsystems rather than using
3410 * the per-hierarchy linked list of mounted subsystems since
3411 * we can be called via check_for_release() with no
3412 * synchronization other than RCU, and the subsystem linked
3413 * list isn't RCU-safe */
3414 int i;
Ben Blumaae8aab2010-03-10 15:22:07 -08003415 /*
3416 * We won't need to lock the subsys array, because the subsystems
3417 * we're concerned about aren't going anywhere since our cgroup root
3418 * has a reference on them.
3419 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07003420 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3421 struct cgroup_subsys *ss = subsys[i];
3422 struct cgroup_subsys_state *css;
Ben Blumaae8aab2010-03-10 15:22:07 -08003423 /* Skip subsystems not present or not in this hierarchy */
3424 if (ss == NULL || ss->root != cgrp->root)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003425 continue;
Paul Menagebd89aab2007-10-18 23:40:44 -07003426 css = cgrp->subsys[ss->subsys_id];
Paul Menage81a6a5c2007-10-18 23:39:38 -07003427 /* When called from check_for_release() it's possible
3428 * that by this point the cgroup has been removed
3429 * and the css deleted. But a false-positive doesn't
3430 * matter, since it can only happen if the cgroup
3431 * has been deleted and hence no longer needs the
3432 * release agent to be called anyway. */
Paul Menagee7c5ec92009-01-07 18:08:38 -08003433 if (css && (atomic_read(&css->refcnt) > 1))
Paul Menage81a6a5c2007-10-18 23:39:38 -07003434 return 1;
Paul Menage81a6a5c2007-10-18 23:39:38 -07003435 }
3436 return 0;
3437}
3438
Paul Menagee7c5ec92009-01-07 18:08:38 -08003439/*
3440 * Atomically mark all (or else none) of the cgroup's CSS objects as
3441 * CSS_REMOVED. Return true on success, or false if the cgroup has
3442 * busy subsystems. Call with cgroup_mutex held
3443 */
3444
3445static int cgroup_clear_css_refs(struct cgroup *cgrp)
3446{
3447 struct cgroup_subsys *ss;
3448 unsigned long flags;
3449 bool failed = false;
3450 local_irq_save(flags);
3451 for_each_subsys(cgrp->root, ss) {
3452 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3453 int refcnt;
Paul Menage804b3c22009-01-29 14:25:21 -08003454 while (1) {
Paul Menagee7c5ec92009-01-07 18:08:38 -08003455 /* We can only remove a CSS with a refcnt==1 */
3456 refcnt = atomic_read(&css->refcnt);
3457 if (refcnt > 1) {
3458 failed = true;
3459 goto done;
3460 }
3461 BUG_ON(!refcnt);
3462 /*
3463 * Drop the refcnt to 0 while we check other
3464 * subsystems. This will cause any racing
3465 * css_tryget() to spin until we set the
3466 * CSS_REMOVED bits or abort
3467 */
Paul Menage804b3c22009-01-29 14:25:21 -08003468 if (atomic_cmpxchg(&css->refcnt, refcnt, 0) == refcnt)
3469 break;
3470 cpu_relax();
3471 }
Paul Menagee7c5ec92009-01-07 18:08:38 -08003472 }
3473 done:
3474 for_each_subsys(cgrp->root, ss) {
3475 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3476 if (failed) {
3477 /*
3478 * Restore old refcnt if we previously managed
3479 * to clear it from 1 to 0
3480 */
3481 if (!atomic_read(&css->refcnt))
3482 atomic_set(&css->refcnt, 1);
3483 } else {
3484 /* Commit the fact that the CSS is removed */
3485 set_bit(CSS_REMOVED, &css->flags);
3486 }
3487 }
3488 local_irq_restore(flags);
3489 return !failed;
3490}
3491
Paul Menageddbcc7e2007-10-18 23:39:30 -07003492static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry)
3493{
Paul Menagebd89aab2007-10-18 23:40:44 -07003494 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003495 struct dentry *d;
3496 struct cgroup *parent;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003497 DEFINE_WAIT(wait);
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08003498 struct cgroup_event *event, *tmp;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003499 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003500
3501 /* the vfs holds both inode->i_mutex already */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003502again:
Paul Menageddbcc7e2007-10-18 23:39:30 -07003503 mutex_lock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07003504 if (atomic_read(&cgrp->count) != 0) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07003505 mutex_unlock(&cgroup_mutex);
3506 return -EBUSY;
3507 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003508 if (!list_empty(&cgrp->children)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07003509 mutex_unlock(&cgroup_mutex);
3510 return -EBUSY;
3511 }
KAMEZAWA Hiroyuki3fa59df2008-11-19 15:36:34 -08003512 mutex_unlock(&cgroup_mutex);
Li Zefana043e3b2008-02-23 15:24:09 -08003513
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08003514 /*
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003515 * In general, subsystem has no css->refcnt after pre_destroy(). But
3516 * in racy cases, subsystem may have to get css->refcnt after
3517 * pre_destroy() and it makes rmdir return with -EBUSY. This sometimes
3518 * make rmdir return -EBUSY too often. To avoid that, we use waitqueue
3519 * for cgroup's rmdir. CGRP_WAIT_ON_RMDIR is for synchronizing rmdir
3520 * and subsystem's reference count handling. Please see css_get/put
3521 * and css_tryget() and cgroup_wakeup_rmdir_waiter() implementation.
3522 */
3523 set_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
3524
3525 /*
Li Zefana043e3b2008-02-23 15:24:09 -08003526 * Call pre_destroy handlers of subsys. Notify subsystems
3527 * that rmdir() request comes.
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08003528 */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003529 ret = cgroup_call_pre_destroy(cgrp);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003530 if (ret) {
3531 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003532 return ret;
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003533 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003534
KAMEZAWA Hiroyuki3fa59df2008-11-19 15:36:34 -08003535 mutex_lock(&cgroup_mutex);
3536 parent = cgrp->parent;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003537 if (atomic_read(&cgrp->count) || !list_empty(&cgrp->children)) {
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003538 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003539 mutex_unlock(&cgroup_mutex);
3540 return -EBUSY;
3541 }
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003542 prepare_to_wait(&cgroup_rmdir_waitq, &wait, TASK_INTERRUPTIBLE);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003543 if (!cgroup_clear_css_refs(cgrp)) {
3544 mutex_unlock(&cgroup_mutex);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003545 /*
3546 * Because someone may call cgroup_wakeup_rmdir_waiter() before
3547 * prepare_to_wait(), we need to check this flag.
3548 */
3549 if (test_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags))
3550 schedule();
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003551 finish_wait(&cgroup_rmdir_waitq, &wait);
3552 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
3553 if (signal_pending(current))
3554 return -EINTR;
3555 goto again;
3556 }
3557 /* NO css_tryget() can success after here. */
3558 finish_wait(&cgroup_rmdir_waitq, &wait);
3559 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003560
Paul Menage81a6a5c2007-10-18 23:39:38 -07003561 spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07003562 set_bit(CGRP_REMOVED, &cgrp->flags);
3563 if (!list_empty(&cgrp->release_list))
3564 list_del(&cgrp->release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003565 spin_unlock(&release_list_lock);
Paul Menage999cd8a2009-01-07 18:08:36 -08003566
3567 cgroup_lock_hierarchy(cgrp->root);
3568 /* delete this cgroup from parent->children */
Paul Menagebd89aab2007-10-18 23:40:44 -07003569 list_del(&cgrp->sibling);
Paul Menage999cd8a2009-01-07 18:08:36 -08003570 cgroup_unlock_hierarchy(cgrp->root);
3571
Paul Menagebd89aab2007-10-18 23:40:44 -07003572 spin_lock(&cgrp->dentry->d_lock);
3573 d = dget(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003574 spin_unlock(&d->d_lock);
3575
3576 cgroup_d_remove_dir(d);
3577 dput(d);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003578
Paul Menagebd89aab2007-10-18 23:40:44 -07003579 set_bit(CGRP_RELEASABLE, &parent->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003580 check_for_release(parent);
3581
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08003582 /*
3583 * Unregister events and notify userspace.
3584 * Notify userspace about cgroup removing only after rmdir of cgroup
3585 * directory to avoid race between userspace and kernelspace
3586 */
3587 spin_lock(&cgrp->event_list_lock);
3588 list_for_each_entry_safe(event, tmp, &cgrp->event_list, list) {
3589 list_del(&event->list);
3590 remove_wait_queue(event->wqh, &event->wait);
3591 eventfd_signal(event->eventfd, 1);
3592 schedule_work(&event->remove);
3593 }
3594 spin_unlock(&cgrp->event_list_lock);
3595
Paul Menageddbcc7e2007-10-18 23:39:30 -07003596 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003597 return 0;
3598}
3599
Li Zefan06a11922008-04-29 01:00:07 -07003600static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003601{
Paul Menageddbcc7e2007-10-18 23:39:30 -07003602 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08003603
3604 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003605
3606 /* Create the top cgroup state for this subsystem */
Li Zefan33a68ac2009-01-07 18:07:42 -08003607 list_add(&ss->sibling, &rootnode.subsys_list);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003608 ss->root = &rootnode;
3609 css = ss->create(ss, dummytop);
3610 /* We don't handle early failures gracefully */
3611 BUG_ON(IS_ERR(css));
3612 init_cgroup_css(css, ss, dummytop);
3613
Li Zefane8d55fd2008-04-29 01:00:13 -07003614 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07003615 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07003616 * newly registered, all tasks and hence the
3617 * init_css_set is in the subsystem's top cgroup. */
3618 init_css_set.subsys[ss->subsys_id] = dummytop->subsys[ss->subsys_id];
Paul Menageddbcc7e2007-10-18 23:39:30 -07003619
3620 need_forkexit_callback |= ss->fork || ss->exit;
3621
Li Zefane8d55fd2008-04-29 01:00:13 -07003622 /* At system boot, before all subsystems have been
3623 * registered, no tasks have been forked, so we don't
3624 * need to invoke fork callbacks here. */
3625 BUG_ON(!list_empty(&init_task.tasks));
3626
Paul Menage999cd8a2009-01-07 18:08:36 -08003627 mutex_init(&ss->hierarchy_mutex);
Li Zefancfebe562009-02-11 13:04:36 -08003628 lockdep_set_class(&ss->hierarchy_mutex, &ss->subsys_key);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003629 ss->active = 1;
Ben Blume6a11052010-03-10 15:22:09 -08003630
3631 /* this function shouldn't be used with modular subsystems, since they
3632 * need to register a subsys_id, among other things */
3633 BUG_ON(ss->module);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003634}
3635
3636/**
Ben Blume6a11052010-03-10 15:22:09 -08003637 * cgroup_load_subsys: load and register a modular subsystem at runtime
3638 * @ss: the subsystem to load
3639 *
3640 * This function should be called in a modular subsystem's initcall. If the
Thomas Weber88393162010-03-16 11:47:56 +01003641 * subsystem is built as a module, it will be assigned a new subsys_id and set
Ben Blume6a11052010-03-10 15:22:09 -08003642 * up for use. If the subsystem is built-in anyway, work is delegated to the
3643 * simpler cgroup_init_subsys.
3644 */
3645int __init_or_module cgroup_load_subsys(struct cgroup_subsys *ss)
3646{
3647 int i;
3648 struct cgroup_subsys_state *css;
3649
3650 /* check name and function validity */
3651 if (ss->name == NULL || strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN ||
3652 ss->create == NULL || ss->destroy == NULL)
3653 return -EINVAL;
3654
3655 /*
3656 * we don't support callbacks in modular subsystems. this check is
3657 * before the ss->module check for consistency; a subsystem that could
3658 * be a module should still have no callbacks even if the user isn't
3659 * compiling it as one.
3660 */
3661 if (ss->fork || ss->exit)
3662 return -EINVAL;
3663
3664 /*
3665 * an optionally modular subsystem is built-in: we want to do nothing,
3666 * since cgroup_init_subsys will have already taken care of it.
3667 */
3668 if (ss->module == NULL) {
3669 /* a few sanity checks */
3670 BUG_ON(ss->subsys_id >= CGROUP_BUILTIN_SUBSYS_COUNT);
3671 BUG_ON(subsys[ss->subsys_id] != ss);
3672 return 0;
3673 }
3674
3675 /*
3676 * need to register a subsys id before anything else - for example,
3677 * init_cgroup_css needs it.
3678 */
3679 mutex_lock(&cgroup_mutex);
3680 /* find the first empty slot in the array */
3681 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
3682 if (subsys[i] == NULL)
3683 break;
3684 }
3685 if (i == CGROUP_SUBSYS_COUNT) {
3686 /* maximum number of subsystems already registered! */
3687 mutex_unlock(&cgroup_mutex);
3688 return -EBUSY;
3689 }
3690 /* assign ourselves the subsys_id */
3691 ss->subsys_id = i;
3692 subsys[i] = ss;
3693
3694 /*
3695 * no ss->create seems to need anything important in the ss struct, so
3696 * this can happen first (i.e. before the rootnode attachment).
3697 */
3698 css = ss->create(ss, dummytop);
3699 if (IS_ERR(css)) {
3700 /* failure case - need to deassign the subsys[] slot. */
3701 subsys[i] = NULL;
3702 mutex_unlock(&cgroup_mutex);
3703 return PTR_ERR(css);
3704 }
3705
3706 list_add(&ss->sibling, &rootnode.subsys_list);
3707 ss->root = &rootnode;
3708
3709 /* our new subsystem will be attached to the dummy hierarchy. */
3710 init_cgroup_css(css, ss, dummytop);
3711 /* init_idr must be after init_cgroup_css because it sets css->id. */
3712 if (ss->use_id) {
3713 int ret = cgroup_init_idr(ss, css);
3714 if (ret) {
3715 dummytop->subsys[ss->subsys_id] = NULL;
3716 ss->destroy(ss, dummytop);
3717 subsys[i] = NULL;
3718 mutex_unlock(&cgroup_mutex);
3719 return ret;
3720 }
3721 }
3722
3723 /*
3724 * Now we need to entangle the css into the existing css_sets. unlike
3725 * in cgroup_init_subsys, there are now multiple css_sets, so each one
3726 * will need a new pointer to it; done by iterating the css_set_table.
3727 * furthermore, modifying the existing css_sets will corrupt the hash
3728 * table state, so each changed css_set will need its hash recomputed.
3729 * this is all done under the css_set_lock.
3730 */
3731 write_lock(&css_set_lock);
3732 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
3733 struct css_set *cg;
3734 struct hlist_node *node, *tmp;
3735 struct hlist_head *bucket = &css_set_table[i], *new_bucket;
3736
3737 hlist_for_each_entry_safe(cg, node, tmp, bucket, hlist) {
3738 /* skip entries that we already rehashed */
3739 if (cg->subsys[ss->subsys_id])
3740 continue;
3741 /* remove existing entry */
3742 hlist_del(&cg->hlist);
3743 /* set new value */
3744 cg->subsys[ss->subsys_id] = css;
3745 /* recompute hash and restore entry */
3746 new_bucket = css_set_hash(cg->subsys);
3747 hlist_add_head(&cg->hlist, new_bucket);
3748 }
3749 }
3750 write_unlock(&css_set_lock);
3751
3752 mutex_init(&ss->hierarchy_mutex);
3753 lockdep_set_class(&ss->hierarchy_mutex, &ss->subsys_key);
3754 ss->active = 1;
3755
Ben Blume6a11052010-03-10 15:22:09 -08003756 /* success! */
3757 mutex_unlock(&cgroup_mutex);
3758 return 0;
3759}
3760EXPORT_SYMBOL_GPL(cgroup_load_subsys);
3761
3762/**
Ben Blumcf5d5942010-03-10 15:22:09 -08003763 * cgroup_unload_subsys: unload a modular subsystem
3764 * @ss: the subsystem to unload
3765 *
3766 * This function should be called in a modular subsystem's exitcall. When this
3767 * function is invoked, the refcount on the subsystem's module will be 0, so
3768 * the subsystem will not be attached to any hierarchy.
3769 */
3770void cgroup_unload_subsys(struct cgroup_subsys *ss)
3771{
3772 struct cg_cgroup_link *link;
3773 struct hlist_head *hhead;
3774
3775 BUG_ON(ss->module == NULL);
3776
3777 /*
3778 * we shouldn't be called if the subsystem is in use, and the use of
3779 * try_module_get in parse_cgroupfs_options should ensure that it
3780 * doesn't start being used while we're killing it off.
3781 */
3782 BUG_ON(ss->root != &rootnode);
3783
3784 mutex_lock(&cgroup_mutex);
3785 /* deassign the subsys_id */
3786 BUG_ON(ss->subsys_id < CGROUP_BUILTIN_SUBSYS_COUNT);
3787 subsys[ss->subsys_id] = NULL;
3788
3789 /* remove subsystem from rootnode's list of subsystems */
3790 list_del(&ss->sibling);
3791
3792 /*
3793 * disentangle the css from all css_sets attached to the dummytop. as
3794 * in loading, we need to pay our respects to the hashtable gods.
3795 */
3796 write_lock(&css_set_lock);
3797 list_for_each_entry(link, &dummytop->css_sets, cgrp_link_list) {
3798 struct css_set *cg = link->cg;
3799
3800 hlist_del(&cg->hlist);
3801 BUG_ON(!cg->subsys[ss->subsys_id]);
3802 cg->subsys[ss->subsys_id] = NULL;
3803 hhead = css_set_hash(cg->subsys);
3804 hlist_add_head(&cg->hlist, hhead);
3805 }
3806 write_unlock(&css_set_lock);
3807
3808 /*
3809 * remove subsystem's css from the dummytop and free it - need to free
3810 * before marking as null because ss->destroy needs the cgrp->subsys
3811 * pointer to find their state. note that this also takes care of
3812 * freeing the css_id.
3813 */
3814 ss->destroy(ss, dummytop);
3815 dummytop->subsys[ss->subsys_id] = NULL;
3816
3817 mutex_unlock(&cgroup_mutex);
3818}
3819EXPORT_SYMBOL_GPL(cgroup_unload_subsys);
3820
3821/**
Li Zefana043e3b2008-02-23 15:24:09 -08003822 * cgroup_init_early - cgroup initialization at system boot
3823 *
3824 * Initialize cgroups at system boot, and initialize any
3825 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07003826 */
3827int __init cgroup_init_early(void)
3828{
3829 int i;
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07003830 atomic_set(&init_css_set.refcount, 1);
Paul Menage817929e2007-10-18 23:39:36 -07003831 INIT_LIST_HEAD(&init_css_set.cg_links);
3832 INIT_LIST_HEAD(&init_css_set.tasks);
Li Zefan472b1052008-04-29 01:00:11 -07003833 INIT_HLIST_NODE(&init_css_set.hlist);
Paul Menage817929e2007-10-18 23:39:36 -07003834 css_set_count = 1;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003835 init_cgroup_root(&rootnode);
Paul Menage817929e2007-10-18 23:39:36 -07003836 root_count = 1;
3837 init_task.cgroups = &init_css_set;
3838
3839 init_css_set_link.cg = &init_css_set;
Paul Menage7717f7b2009-09-23 15:56:22 -07003840 init_css_set_link.cgrp = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -07003841 list_add(&init_css_set_link.cgrp_link_list,
Paul Menage817929e2007-10-18 23:39:36 -07003842 &rootnode.top_cgroup.css_sets);
3843 list_add(&init_css_set_link.cg_link_list,
3844 &init_css_set.cg_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003845
Li Zefan472b1052008-04-29 01:00:11 -07003846 for (i = 0; i < CSS_SET_TABLE_SIZE; i++)
3847 INIT_HLIST_HEAD(&css_set_table[i]);
3848
Ben Blumaae8aab2010-03-10 15:22:07 -08003849 /* at bootup time, we don't worry about modular subsystems */
3850 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07003851 struct cgroup_subsys *ss = subsys[i];
3852
3853 BUG_ON(!ss->name);
3854 BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN);
3855 BUG_ON(!ss->create);
3856 BUG_ON(!ss->destroy);
3857 if (ss->subsys_id != i) {
Diego Callejacfe36bd2007-11-14 16:58:54 -08003858 printk(KERN_ERR "cgroup: Subsys %s id == %d\n",
Paul Menageddbcc7e2007-10-18 23:39:30 -07003859 ss->name, ss->subsys_id);
3860 BUG();
3861 }
3862
3863 if (ss->early_init)
3864 cgroup_init_subsys(ss);
3865 }
3866 return 0;
3867}
3868
3869/**
Li Zefana043e3b2008-02-23 15:24:09 -08003870 * cgroup_init - cgroup initialization
3871 *
3872 * Register cgroup filesystem and /proc file, and initialize
3873 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07003874 */
3875int __init cgroup_init(void)
3876{
3877 int err;
3878 int i;
Li Zefan472b1052008-04-29 01:00:11 -07003879 struct hlist_head *hhead;
Paul Menagea4243162007-10-18 23:39:35 -07003880
3881 err = bdi_init(&cgroup_backing_dev_info);
3882 if (err)
3883 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003884
Ben Blumaae8aab2010-03-10 15:22:07 -08003885 /* at bootup time, we don't worry about modular subsystems */
3886 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07003887 struct cgroup_subsys *ss = subsys[i];
3888 if (!ss->early_init)
3889 cgroup_init_subsys(ss);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003890 if (ss->use_id)
Ben Blume6a11052010-03-10 15:22:09 -08003891 cgroup_init_idr(ss, init_css_set.subsys[ss->subsys_id]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003892 }
3893
Li Zefan472b1052008-04-29 01:00:11 -07003894 /* Add init_css_set to the hash table */
3895 hhead = css_set_hash(init_css_set.subsys);
3896 hlist_add_head(&init_css_set.hlist, hhead);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07003897 BUG_ON(!init_root_id(&rootnode));
Paul Menageddbcc7e2007-10-18 23:39:30 -07003898 err = register_filesystem(&cgroup_fs_type);
3899 if (err < 0)
3900 goto out;
3901
Li Zefan46ae2202008-04-29 01:00:08 -07003902 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Paul Menagea4243162007-10-18 23:39:35 -07003903
Paul Menageddbcc7e2007-10-18 23:39:30 -07003904out:
Paul Menagea4243162007-10-18 23:39:35 -07003905 if (err)
3906 bdi_destroy(&cgroup_backing_dev_info);
3907
Paul Menageddbcc7e2007-10-18 23:39:30 -07003908 return err;
3909}
Paul Menageb4f48b62007-10-18 23:39:33 -07003910
Paul Menagea4243162007-10-18 23:39:35 -07003911/*
3912 * proc_cgroup_show()
3913 * - Print task's cgroup paths into seq_file, one line for each hierarchy
3914 * - Used for /proc/<pid>/cgroup.
3915 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
3916 * doesn't really matter if tsk->cgroup changes after we read it,
Cliff Wickman956db3c2008-02-07 00:14:43 -08003917 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
Paul Menagea4243162007-10-18 23:39:35 -07003918 * anyway. No need to check that tsk->cgroup != NULL, thanks to
3919 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
3920 * cgroup to top_cgroup.
3921 */
3922
3923/* TODO: Use a proper seq_file iterator */
3924static int proc_cgroup_show(struct seq_file *m, void *v)
3925{
3926 struct pid *pid;
3927 struct task_struct *tsk;
3928 char *buf;
3929 int retval;
3930 struct cgroupfs_root *root;
3931
3932 retval = -ENOMEM;
3933 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
3934 if (!buf)
3935 goto out;
3936
3937 retval = -ESRCH;
3938 pid = m->private;
3939 tsk = get_pid_task(pid, PIDTYPE_PID);
3940 if (!tsk)
3941 goto out_free;
3942
3943 retval = 0;
3944
3945 mutex_lock(&cgroup_mutex);
3946
Li Zefane5f6a862009-01-07 18:07:41 -08003947 for_each_active_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07003948 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07003949 struct cgroup *cgrp;
Paul Menagea4243162007-10-18 23:39:35 -07003950 int count = 0;
3951
Paul Menage2c6ab6d2009-09-23 15:56:23 -07003952 seq_printf(m, "%d:", root->hierarchy_id);
Paul Menagea4243162007-10-18 23:39:35 -07003953 for_each_subsys(root, ss)
3954 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07003955 if (strlen(root->name))
3956 seq_printf(m, "%sname=%s", count ? "," : "",
3957 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07003958 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07003959 cgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07003960 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
Paul Menagea4243162007-10-18 23:39:35 -07003961 if (retval < 0)
3962 goto out_unlock;
3963 seq_puts(m, buf);
3964 seq_putc(m, '\n');
3965 }
3966
3967out_unlock:
3968 mutex_unlock(&cgroup_mutex);
3969 put_task_struct(tsk);
3970out_free:
3971 kfree(buf);
3972out:
3973 return retval;
3974}
3975
3976static int cgroup_open(struct inode *inode, struct file *file)
3977{
3978 struct pid *pid = PROC_I(inode)->pid;
3979 return single_open(file, proc_cgroup_show, pid);
3980}
3981
Alexey Dobriyan828c0952009-10-01 15:43:56 -07003982const struct file_operations proc_cgroup_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07003983 .open = cgroup_open,
3984 .read = seq_read,
3985 .llseek = seq_lseek,
3986 .release = single_release,
3987};
3988
3989/* Display information about each subsystem and each hierarchy */
3990static int proc_cgroupstats_show(struct seq_file *m, void *v)
3991{
3992 int i;
Paul Menagea4243162007-10-18 23:39:35 -07003993
Paul Menage8bab8dd2008-04-04 14:29:57 -07003994 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08003995 /*
3996 * ideally we don't want subsystems moving around while we do this.
3997 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
3998 * subsys/hierarchy state.
3999 */
Paul Menagea4243162007-10-18 23:39:35 -07004000 mutex_lock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07004001 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
4002 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08004003 if (ss == NULL)
4004 continue;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004005 seq_printf(m, "%s\t%d\t%d\t%d\n",
4006 ss->name, ss->root->hierarchy_id,
Paul Menage8bab8dd2008-04-04 14:29:57 -07004007 ss->root->number_of_cgroups, !ss->disabled);
Paul Menagea4243162007-10-18 23:39:35 -07004008 }
4009 mutex_unlock(&cgroup_mutex);
4010 return 0;
4011}
4012
4013static int cgroupstats_open(struct inode *inode, struct file *file)
4014{
Al Viro9dce07f12008-03-29 03:07:28 +00004015 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07004016}
4017
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004018static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004019 .open = cgroupstats_open,
4020 .read = seq_read,
4021 .llseek = seq_lseek,
4022 .release = single_release,
4023};
4024
Paul Menageb4f48b62007-10-18 23:39:33 -07004025/**
4026 * cgroup_fork - attach newly forked task to its parents cgroup.
Li Zefana043e3b2008-02-23 15:24:09 -08004027 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07004028 *
4029 * Description: A task inherits its parent's cgroup at fork().
4030 *
4031 * A pointer to the shared css_set was automatically copied in
4032 * fork.c by dup_task_struct(). However, we ignore that copy, since
4033 * it was not made under the protection of RCU or cgroup_mutex, so
Cliff Wickman956db3c2008-02-07 00:14:43 -08004034 * might no longer be a valid cgroup pointer. cgroup_attach_task() might
Paul Menage817929e2007-10-18 23:39:36 -07004035 * have already changed current->cgroups, allowing the previously
4036 * referenced cgroup group to be removed and freed.
Paul Menageb4f48b62007-10-18 23:39:33 -07004037 *
4038 * At the point that cgroup_fork() is called, 'current' is the parent
4039 * task, and the passed argument 'child' points to the child task.
4040 */
4041void cgroup_fork(struct task_struct *child)
4042{
Paul Menage817929e2007-10-18 23:39:36 -07004043 task_lock(current);
4044 child->cgroups = current->cgroups;
4045 get_css_set(child->cgroups);
4046 task_unlock(current);
4047 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07004048}
4049
4050/**
Li Zefana043e3b2008-02-23 15:24:09 -08004051 * cgroup_fork_callbacks - run fork callbacks
4052 * @child: the new task
4053 *
4054 * Called on a new task very soon before adding it to the
4055 * tasklist. No need to take any locks since no-one can
4056 * be operating on this task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004057 */
4058void cgroup_fork_callbacks(struct task_struct *child)
4059{
4060 if (need_forkexit_callback) {
4061 int i;
Ben Blumaae8aab2010-03-10 15:22:07 -08004062 /*
4063 * forkexit callbacks are only supported for builtin
4064 * subsystems, and the builtin section of the subsys array is
4065 * immutable, so we don't need to lock the subsys array here.
4066 */
4067 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageb4f48b62007-10-18 23:39:33 -07004068 struct cgroup_subsys *ss = subsys[i];
4069 if (ss->fork)
4070 ss->fork(ss, child);
4071 }
4072 }
4073}
4074
4075/**
Li Zefana043e3b2008-02-23 15:24:09 -08004076 * cgroup_post_fork - called on a new task after adding it to the task list
4077 * @child: the task in question
4078 *
4079 * Adds the task to the list running through its css_set if necessary.
4080 * Has to be after the task is visible on the task list in case we race
4081 * with the first call to cgroup_iter_start() - to guarantee that the
4082 * new task ends up on its list.
4083 */
Paul Menage817929e2007-10-18 23:39:36 -07004084void cgroup_post_fork(struct task_struct *child)
4085{
4086 if (use_task_css_set_links) {
4087 write_lock(&css_set_lock);
Lai Jiangshanb12b5332009-01-07 18:07:36 -08004088 task_lock(child);
Paul Menage817929e2007-10-18 23:39:36 -07004089 if (list_empty(&child->cg_list))
4090 list_add(&child->cg_list, &child->cgroups->tasks);
Lai Jiangshanb12b5332009-01-07 18:07:36 -08004091 task_unlock(child);
Paul Menage817929e2007-10-18 23:39:36 -07004092 write_unlock(&css_set_lock);
4093 }
4094}
4095/**
Paul Menageb4f48b62007-10-18 23:39:33 -07004096 * cgroup_exit - detach cgroup from exiting task
4097 * @tsk: pointer to task_struct of exiting process
Li Zefana043e3b2008-02-23 15:24:09 -08004098 * @run_callback: run exit callbacks?
Paul Menageb4f48b62007-10-18 23:39:33 -07004099 *
4100 * Description: Detach cgroup from @tsk and release it.
4101 *
4102 * Note that cgroups marked notify_on_release force every task in
4103 * them to take the global cgroup_mutex mutex when exiting.
4104 * This could impact scaling on very large systems. Be reluctant to
4105 * use notify_on_release cgroups where very high task exit scaling
4106 * is required on large systems.
4107 *
4108 * the_top_cgroup_hack:
4109 *
4110 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
4111 *
4112 * We call cgroup_exit() while the task is still competent to
4113 * handle notify_on_release(), then leave the task attached to the
4114 * root cgroup in each hierarchy for the remainder of its exit.
4115 *
4116 * To do this properly, we would increment the reference count on
4117 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
4118 * code we would add a second cgroup function call, to drop that
4119 * reference. This would just create an unnecessary hot spot on
4120 * the top_cgroup reference count, to no avail.
4121 *
4122 * Normally, holding a reference to a cgroup without bumping its
4123 * count is unsafe. The cgroup could go away, or someone could
4124 * attach us to a different cgroup, decrementing the count on
4125 * the first cgroup that we never incremented. But in this case,
4126 * top_cgroup isn't going away, and either task has PF_EXITING set,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004127 * which wards off any cgroup_attach_task() attempts, or task is a failed
4128 * fork, never visible to cgroup_attach_task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004129 */
4130void cgroup_exit(struct task_struct *tsk, int run_callbacks)
4131{
4132 int i;
Paul Menage817929e2007-10-18 23:39:36 -07004133 struct css_set *cg;
Paul Menageb4f48b62007-10-18 23:39:33 -07004134
4135 if (run_callbacks && need_forkexit_callback) {
Ben Blumaae8aab2010-03-10 15:22:07 -08004136 /*
4137 * modular subsystems can't use callbacks, so no need to lock
4138 * the subsys array
4139 */
4140 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageb4f48b62007-10-18 23:39:33 -07004141 struct cgroup_subsys *ss = subsys[i];
4142 if (ss->exit)
4143 ss->exit(ss, tsk);
4144 }
4145 }
Paul Menage817929e2007-10-18 23:39:36 -07004146
4147 /*
4148 * Unlink from the css_set task list if necessary.
4149 * Optimistically check cg_list before taking
4150 * css_set_lock
4151 */
4152 if (!list_empty(&tsk->cg_list)) {
4153 write_lock(&css_set_lock);
4154 if (!list_empty(&tsk->cg_list))
4155 list_del(&tsk->cg_list);
4156 write_unlock(&css_set_lock);
4157 }
4158
Paul Menageb4f48b62007-10-18 23:39:33 -07004159 /* Reassign the task to the init_css_set. */
4160 task_lock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07004161 cg = tsk->cgroups;
4162 tsk->cgroups = &init_css_set;
Paul Menageb4f48b62007-10-18 23:39:33 -07004163 task_unlock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07004164 if (cg)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004165 put_css_set_taskexit(cg);
Paul Menageb4f48b62007-10-18 23:39:33 -07004166}
Paul Menage697f4162007-10-18 23:39:34 -07004167
4168/**
Li Zefana043e3b2008-02-23 15:24:09 -08004169 * cgroup_clone - clone the cgroup the given subsystem is attached to
4170 * @tsk: the task to be moved
4171 * @subsys: the given subsystem
Serge E. Hallyne885dcd2008-07-25 01:47:06 -07004172 * @nodename: the name for the new cgroup
Li Zefana043e3b2008-02-23 15:24:09 -08004173 *
4174 * Duplicate the current cgroup in the hierarchy that the given
4175 * subsystem is attached to, and move this task into the new
4176 * child.
Paul Menage697f4162007-10-18 23:39:34 -07004177 */
Serge E. Hallyne885dcd2008-07-25 01:47:06 -07004178int cgroup_clone(struct task_struct *tsk, struct cgroup_subsys *subsys,
4179 char *nodename)
Paul Menage697f4162007-10-18 23:39:34 -07004180{
4181 struct dentry *dentry;
4182 int ret = 0;
Paul Menage697f4162007-10-18 23:39:34 -07004183 struct cgroup *parent, *child;
4184 struct inode *inode;
4185 struct css_set *cg;
4186 struct cgroupfs_root *root;
4187 struct cgroup_subsys *ss;
4188
4189 /* We shouldn't be called by an unregistered subsystem */
4190 BUG_ON(!subsys->active);
4191
4192 /* First figure out what hierarchy and cgroup we're dealing
4193 * with, and pin them so we can drop cgroup_mutex */
4194 mutex_lock(&cgroup_mutex);
4195 again:
4196 root = subsys->root;
4197 if (root == &rootnode) {
Paul Menage697f4162007-10-18 23:39:34 -07004198 mutex_unlock(&cgroup_mutex);
4199 return 0;
4200 }
Paul Menage697f4162007-10-18 23:39:34 -07004201
Paul Menage697f4162007-10-18 23:39:34 -07004202 /* Pin the hierarchy */
Li Zefan1404f062009-01-29 14:25:21 -08004203 if (!atomic_inc_not_zero(&root->sb->s_active)) {
Li Zefan7b574b72009-01-04 12:00:45 -08004204 /* We race with the final deactivate_super() */
4205 mutex_unlock(&cgroup_mutex);
4206 return 0;
4207 }
Paul Menage697f4162007-10-18 23:39:34 -07004208
Paul Menage817929e2007-10-18 23:39:36 -07004209 /* Keep the cgroup alive */
Li Zefan1404f062009-01-29 14:25:21 -08004210 task_lock(tsk);
4211 parent = task_cgroup(tsk, subsys->subsys_id);
4212 cg = tsk->cgroups;
Paul Menage817929e2007-10-18 23:39:36 -07004213 get_css_set(cg);
Lai Jiangshan104cbd52009-01-07 18:07:38 -08004214 task_unlock(tsk);
Li Zefan1404f062009-01-29 14:25:21 -08004215
Paul Menage697f4162007-10-18 23:39:34 -07004216 mutex_unlock(&cgroup_mutex);
4217
4218 /* Now do the VFS work to create a cgroup */
4219 inode = parent->dentry->d_inode;
4220
4221 /* Hold the parent directory mutex across this operation to
4222 * stop anyone else deleting the new cgroup */
4223 mutex_lock(&inode->i_mutex);
4224 dentry = lookup_one_len(nodename, parent->dentry, strlen(nodename));
4225 if (IS_ERR(dentry)) {
4226 printk(KERN_INFO
Diego Callejacfe36bd2007-11-14 16:58:54 -08004227 "cgroup: Couldn't allocate dentry for %s: %ld\n", nodename,
Paul Menage697f4162007-10-18 23:39:34 -07004228 PTR_ERR(dentry));
4229 ret = PTR_ERR(dentry);
4230 goto out_release;
4231 }
4232
4233 /* Create the cgroup directory, which also creates the cgroup */
Li Zefan75139b82009-01-07 18:07:33 -08004234 ret = vfs_mkdir(inode, dentry, 0755);
Paul Menagebd89aab2007-10-18 23:40:44 -07004235 child = __d_cgrp(dentry);
Paul Menage697f4162007-10-18 23:39:34 -07004236 dput(dentry);
4237 if (ret) {
4238 printk(KERN_INFO
4239 "Failed to create cgroup %s: %d\n", nodename,
4240 ret);
4241 goto out_release;
4242 }
4243
Paul Menage697f4162007-10-18 23:39:34 -07004244 /* The cgroup now exists. Retake cgroup_mutex and check
4245 * that we're still in the same state that we thought we
4246 * were. */
4247 mutex_lock(&cgroup_mutex);
4248 if ((root != subsys->root) ||
4249 (parent != task_cgroup(tsk, subsys->subsys_id))) {
4250 /* Aargh, we raced ... */
4251 mutex_unlock(&inode->i_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07004252 put_css_set(cg);
Paul Menage697f4162007-10-18 23:39:34 -07004253
Li Zefan1404f062009-01-29 14:25:21 -08004254 deactivate_super(root->sb);
Paul Menage697f4162007-10-18 23:39:34 -07004255 /* The cgroup is still accessible in the VFS, but
4256 * we're not going to try to rmdir() it at this
4257 * point. */
4258 printk(KERN_INFO
4259 "Race in cgroup_clone() - leaking cgroup %s\n",
4260 nodename);
4261 goto again;
4262 }
4263
4264 /* do any required auto-setup */
4265 for_each_subsys(root, ss) {
4266 if (ss->post_clone)
4267 ss->post_clone(ss, child);
4268 }
4269
4270 /* All seems fine. Finish by moving the task into the new cgroup */
Cliff Wickman956db3c2008-02-07 00:14:43 -08004271 ret = cgroup_attach_task(child, tsk);
Paul Menage697f4162007-10-18 23:39:34 -07004272 mutex_unlock(&cgroup_mutex);
4273
4274 out_release:
4275 mutex_unlock(&inode->i_mutex);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004276
4277 mutex_lock(&cgroup_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07004278 put_css_set(cg);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004279 mutex_unlock(&cgroup_mutex);
Li Zefan1404f062009-01-29 14:25:21 -08004280 deactivate_super(root->sb);
Paul Menage697f4162007-10-18 23:39:34 -07004281 return ret;
4282}
4283
Li Zefana043e3b2008-02-23 15:24:09 -08004284/**
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004285 * cgroup_is_descendant - see if @cgrp is a descendant of @task's cgrp
Li Zefana043e3b2008-02-23 15:24:09 -08004286 * @cgrp: the cgroup in question
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004287 * @task: the task in question
Li Zefana043e3b2008-02-23 15:24:09 -08004288 *
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004289 * See if @cgrp is a descendant of @task's cgroup in the appropriate
4290 * hierarchy.
Paul Menage697f4162007-10-18 23:39:34 -07004291 *
4292 * If we are sending in dummytop, then presumably we are creating
4293 * the top cgroup in the subsystem.
4294 *
4295 * Called only by the ns (nsproxy) cgroup.
4296 */
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004297int cgroup_is_descendant(const struct cgroup *cgrp, struct task_struct *task)
Paul Menage697f4162007-10-18 23:39:34 -07004298{
4299 int ret;
4300 struct cgroup *target;
Paul Menage697f4162007-10-18 23:39:34 -07004301
Paul Menagebd89aab2007-10-18 23:40:44 -07004302 if (cgrp == dummytop)
Paul Menage697f4162007-10-18 23:39:34 -07004303 return 1;
4304
Paul Menage7717f7b2009-09-23 15:56:22 -07004305 target = task_cgroup_from_root(task, cgrp->root);
Paul Menagebd89aab2007-10-18 23:40:44 -07004306 while (cgrp != target && cgrp!= cgrp->top_cgroup)
4307 cgrp = cgrp->parent;
4308 ret = (cgrp == target);
Paul Menage697f4162007-10-18 23:39:34 -07004309 return ret;
4310}
Paul Menage81a6a5c2007-10-18 23:39:38 -07004311
Paul Menagebd89aab2007-10-18 23:40:44 -07004312static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004313{
4314 /* All of these checks rely on RCU to keep the cgroup
4315 * structure alive */
Paul Menagebd89aab2007-10-18 23:40:44 -07004316 if (cgroup_is_releasable(cgrp) && !atomic_read(&cgrp->count)
4317 && list_empty(&cgrp->children) && !cgroup_has_css_refs(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004318 /* Control Group is currently removeable. If it's not
4319 * already queued for a userspace notification, queue
4320 * it now */
4321 int need_schedule_work = 0;
4322 spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07004323 if (!cgroup_is_removed(cgrp) &&
4324 list_empty(&cgrp->release_list)) {
4325 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004326 need_schedule_work = 1;
4327 }
4328 spin_unlock(&release_list_lock);
4329 if (need_schedule_work)
4330 schedule_work(&release_agent_work);
4331 }
4332}
4333
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -08004334/* Caller must verify that the css is not for root cgroup */
4335void __css_put(struct cgroup_subsys_state *css, int count)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004336{
Paul Menagebd89aab2007-10-18 23:40:44 -07004337 struct cgroup *cgrp = css->cgroup;
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004338 int val;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004339 rcu_read_lock();
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -08004340 val = atomic_sub_return(count, &css->refcnt);
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004341 if (val == 1) {
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004342 if (notify_on_release(cgrp)) {
4343 set_bit(CGRP_RELEASABLE, &cgrp->flags);
4344 check_for_release(cgrp);
4345 }
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004346 cgroup_wakeup_rmdir_waiter(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004347 }
4348 rcu_read_unlock();
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004349 WARN_ON_ONCE(val < 1);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004350}
Ben Blum67523c42010-03-10 15:22:11 -08004351EXPORT_SYMBOL_GPL(__css_put);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004352
4353/*
4354 * Notify userspace when a cgroup is released, by running the
4355 * configured release agent with the name of the cgroup (path
4356 * relative to the root of cgroup file system) as the argument.
4357 *
4358 * Most likely, this user command will try to rmdir this cgroup.
4359 *
4360 * This races with the possibility that some other task will be
4361 * attached to this cgroup before it is removed, or that some other
4362 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
4363 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
4364 * unused, and this cgroup will be reprieved from its death sentence,
4365 * to continue to serve a useful existence. Next time it's released,
4366 * we will get notified again, if it still has 'notify_on_release' set.
4367 *
4368 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
4369 * means only wait until the task is successfully execve()'d. The
4370 * separate release agent task is forked by call_usermodehelper(),
4371 * then control in this thread returns here, without waiting for the
4372 * release agent task. We don't bother to wait because the caller of
4373 * this routine has no use for the exit status of the release agent
4374 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07004375 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004376static void cgroup_release_agent(struct work_struct *work)
4377{
4378 BUG_ON(work != &release_agent_work);
4379 mutex_lock(&cgroup_mutex);
4380 spin_lock(&release_list_lock);
4381 while (!list_empty(&release_list)) {
4382 char *argv[3], *envp[3];
4383 int i;
Paul Menagee788e062008-07-25 01:46:59 -07004384 char *pathbuf = NULL, *agentbuf = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07004385 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07004386 struct cgroup,
4387 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07004388 list_del_init(&cgrp->release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004389 spin_unlock(&release_list_lock);
4390 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paul Menagee788e062008-07-25 01:46:59 -07004391 if (!pathbuf)
4392 goto continue_free;
4393 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0)
4394 goto continue_free;
4395 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
4396 if (!agentbuf)
4397 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004398
4399 i = 0;
Paul Menagee788e062008-07-25 01:46:59 -07004400 argv[i++] = agentbuf;
4401 argv[i++] = pathbuf;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004402 argv[i] = NULL;
4403
4404 i = 0;
4405 /* minimal command environment */
4406 envp[i++] = "HOME=/";
4407 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
4408 envp[i] = NULL;
4409
4410 /* Drop the lock while we invoke the usermode helper,
4411 * since the exec could involve hitting disk and hence
4412 * be a slow process */
4413 mutex_unlock(&cgroup_mutex);
4414 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004415 mutex_lock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07004416 continue_free:
4417 kfree(pathbuf);
4418 kfree(agentbuf);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004419 spin_lock(&release_list_lock);
4420 }
4421 spin_unlock(&release_list_lock);
4422 mutex_unlock(&cgroup_mutex);
4423}
Paul Menage8bab8dd2008-04-04 14:29:57 -07004424
4425static int __init cgroup_disable(char *str)
4426{
4427 int i;
4428 char *token;
4429
4430 while ((token = strsep(&str, ",")) != NULL) {
4431 if (!*token)
4432 continue;
Ben Blumaae8aab2010-03-10 15:22:07 -08004433 /*
4434 * cgroup_disable, being at boot time, can't know about module
4435 * subsystems, so we don't worry about them.
4436 */
4437 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07004438 struct cgroup_subsys *ss = subsys[i];
4439
4440 if (!strcmp(token, ss->name)) {
4441 ss->disabled = 1;
4442 printk(KERN_INFO "Disabling %s control group"
4443 " subsystem\n", ss->name);
4444 break;
4445 }
4446 }
4447 }
4448 return 1;
4449}
4450__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004451
4452/*
4453 * Functons for CSS ID.
4454 */
4455
4456/*
4457 *To get ID other than 0, this should be called when !cgroup_is_removed().
4458 */
4459unsigned short css_id(struct cgroup_subsys_state *css)
4460{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07004461 struct css_id *cssid;
4462
4463 /*
4464 * This css_id() can return correct value when somone has refcnt
4465 * on this or this is under rcu_read_lock(). Once css->id is allocated,
4466 * it's unchanged until freed.
4467 */
4468 cssid = rcu_dereference_check(css->id,
4469 rcu_read_lock_held() || atomic_read(&css->refcnt));
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004470
4471 if (cssid)
4472 return cssid->id;
4473 return 0;
4474}
Ben Blum67523c42010-03-10 15:22:11 -08004475EXPORT_SYMBOL_GPL(css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004476
4477unsigned short css_depth(struct cgroup_subsys_state *css)
4478{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07004479 struct css_id *cssid;
4480
4481 cssid = rcu_dereference_check(css->id,
4482 rcu_read_lock_held() || atomic_read(&css->refcnt));
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004483
4484 if (cssid)
4485 return cssid->depth;
4486 return 0;
4487}
Ben Blum67523c42010-03-10 15:22:11 -08004488EXPORT_SYMBOL_GPL(css_depth);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004489
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004490/**
4491 * css_is_ancestor - test "root" css is an ancestor of "child"
4492 * @child: the css to be tested.
4493 * @root: the css supporsed to be an ancestor of the child.
4494 *
4495 * Returns true if "root" is an ancestor of "child" in its hierarchy. Because
4496 * this function reads css->id, this use rcu_dereference() and rcu_read_lock().
4497 * But, considering usual usage, the csses should be valid objects after test.
4498 * Assuming that the caller will do some action to the child if this returns
4499 * returns true, the caller must take "child";s reference count.
4500 * If "child" is valid object and this returns true, "root" is valid, too.
4501 */
4502
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004503bool css_is_ancestor(struct cgroup_subsys_state *child,
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07004504 const struct cgroup_subsys_state *root)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004505{
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004506 struct css_id *child_id;
4507 struct css_id *root_id;
4508 bool ret = true;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004509
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004510 rcu_read_lock();
4511 child_id = rcu_dereference(child->id);
4512 root_id = rcu_dereference(root->id);
4513 if (!child_id
4514 || !root_id
4515 || (child_id->depth < root_id->depth)
4516 || (child_id->stack[root_id->depth] != root_id->id))
4517 ret = false;
4518 rcu_read_unlock();
4519 return ret;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004520}
4521
4522static void __free_css_id_cb(struct rcu_head *head)
4523{
4524 struct css_id *id;
4525
4526 id = container_of(head, struct css_id, rcu_head);
4527 kfree(id);
4528}
4529
4530void free_css_id(struct cgroup_subsys *ss, struct cgroup_subsys_state *css)
4531{
4532 struct css_id *id = css->id;
4533 /* When this is called before css_id initialization, id can be NULL */
4534 if (!id)
4535 return;
4536
4537 BUG_ON(!ss->use_id);
4538
4539 rcu_assign_pointer(id->css, NULL);
4540 rcu_assign_pointer(css->id, NULL);
4541 spin_lock(&ss->id_lock);
4542 idr_remove(&ss->idr, id->id);
4543 spin_unlock(&ss->id_lock);
4544 call_rcu(&id->rcu_head, __free_css_id_cb);
4545}
Ben Blum67523c42010-03-10 15:22:11 -08004546EXPORT_SYMBOL_GPL(free_css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004547
4548/*
4549 * This is called by init or create(). Then, calls to this function are
4550 * always serialized (By cgroup_mutex() at create()).
4551 */
4552
4553static struct css_id *get_new_cssid(struct cgroup_subsys *ss, int depth)
4554{
4555 struct css_id *newid;
4556 int myid, error, size;
4557
4558 BUG_ON(!ss->use_id);
4559
4560 size = sizeof(*newid) + sizeof(unsigned short) * (depth + 1);
4561 newid = kzalloc(size, GFP_KERNEL);
4562 if (!newid)
4563 return ERR_PTR(-ENOMEM);
4564 /* get id */
4565 if (unlikely(!idr_pre_get(&ss->idr, GFP_KERNEL))) {
4566 error = -ENOMEM;
4567 goto err_out;
4568 }
4569 spin_lock(&ss->id_lock);
4570 /* Don't use 0. allocates an ID of 1-65535 */
4571 error = idr_get_new_above(&ss->idr, newid, 1, &myid);
4572 spin_unlock(&ss->id_lock);
4573
4574 /* Returns error when there are no free spaces for new ID.*/
4575 if (error) {
4576 error = -ENOSPC;
4577 goto err_out;
4578 }
4579 if (myid > CSS_ID_MAX)
4580 goto remove_idr;
4581
4582 newid->id = myid;
4583 newid->depth = depth;
4584 return newid;
4585remove_idr:
4586 error = -ENOSPC;
4587 spin_lock(&ss->id_lock);
4588 idr_remove(&ss->idr, myid);
4589 spin_unlock(&ss->id_lock);
4590err_out:
4591 kfree(newid);
4592 return ERR_PTR(error);
4593
4594}
4595
Ben Blume6a11052010-03-10 15:22:09 -08004596static int __init_or_module cgroup_init_idr(struct cgroup_subsys *ss,
4597 struct cgroup_subsys_state *rootcss)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004598{
4599 struct css_id *newid;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004600
4601 spin_lock_init(&ss->id_lock);
4602 idr_init(&ss->idr);
4603
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004604 newid = get_new_cssid(ss, 0);
4605 if (IS_ERR(newid))
4606 return PTR_ERR(newid);
4607
4608 newid->stack[0] = newid->id;
4609 newid->css = rootcss;
4610 rootcss->id = newid;
4611 return 0;
4612}
4613
4614static int alloc_css_id(struct cgroup_subsys *ss, struct cgroup *parent,
4615 struct cgroup *child)
4616{
4617 int subsys_id, i, depth = 0;
4618 struct cgroup_subsys_state *parent_css, *child_css;
Li Zefanfae9c792010-04-22 17:30:00 +08004619 struct css_id *child_id, *parent_id;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004620
4621 subsys_id = ss->subsys_id;
4622 parent_css = parent->subsys[subsys_id];
4623 child_css = child->subsys[subsys_id];
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004624 parent_id = parent_css->id;
Greg Thelen94b3dd02010-06-04 14:15:03 -07004625 depth = parent_id->depth + 1;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004626
4627 child_id = get_new_cssid(ss, depth);
4628 if (IS_ERR(child_id))
4629 return PTR_ERR(child_id);
4630
4631 for (i = 0; i < depth; i++)
4632 child_id->stack[i] = parent_id->stack[i];
4633 child_id->stack[depth] = child_id->id;
4634 /*
4635 * child_id->css pointer will be set after this cgroup is available
4636 * see cgroup_populate_dir()
4637 */
4638 rcu_assign_pointer(child_css->id, child_id);
4639
4640 return 0;
4641}
4642
4643/**
4644 * css_lookup - lookup css by id
4645 * @ss: cgroup subsys to be looked into.
4646 * @id: the id
4647 *
4648 * Returns pointer to cgroup_subsys_state if there is valid one with id.
4649 * NULL if not. Should be called under rcu_read_lock()
4650 */
4651struct cgroup_subsys_state *css_lookup(struct cgroup_subsys *ss, int id)
4652{
4653 struct css_id *cssid = NULL;
4654
4655 BUG_ON(!ss->use_id);
4656 cssid = idr_find(&ss->idr, id);
4657
4658 if (unlikely(!cssid))
4659 return NULL;
4660
4661 return rcu_dereference(cssid->css);
4662}
Ben Blum67523c42010-03-10 15:22:11 -08004663EXPORT_SYMBOL_GPL(css_lookup);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004664
4665/**
4666 * css_get_next - lookup next cgroup under specified hierarchy.
4667 * @ss: pointer to subsystem
4668 * @id: current position of iteration.
4669 * @root: pointer to css. search tree under this.
4670 * @foundid: position of found object.
4671 *
4672 * Search next css under the specified hierarchy of rootid. Calling under
4673 * rcu_read_lock() is necessary. Returns NULL if it reaches the end.
4674 */
4675struct cgroup_subsys_state *
4676css_get_next(struct cgroup_subsys *ss, int id,
4677 struct cgroup_subsys_state *root, int *foundid)
4678{
4679 struct cgroup_subsys_state *ret = NULL;
4680 struct css_id *tmp;
4681 int tmpid;
4682 int rootid = css_id(root);
4683 int depth = css_depth(root);
4684
4685 if (!rootid)
4686 return NULL;
4687
4688 BUG_ON(!ss->use_id);
4689 /* fill start point for scan */
4690 tmpid = id;
4691 while (1) {
4692 /*
4693 * scan next entry from bitmap(tree), tmpid is updated after
4694 * idr_get_next().
4695 */
4696 spin_lock(&ss->id_lock);
4697 tmp = idr_get_next(&ss->idr, &tmpid);
4698 spin_unlock(&ss->id_lock);
4699
4700 if (!tmp)
4701 break;
4702 if (tmp->depth >= depth && tmp->stack[depth] == rootid) {
4703 ret = rcu_dereference(tmp->css);
4704 if (ret) {
4705 *foundid = tmpid;
4706 break;
4707 }
4708 }
4709 /* continue to scan from next id */
4710 tmpid = tmpid + 1;
4711 }
4712 return ret;
4713}
4714
Paul Menagefe693432009-09-23 15:56:20 -07004715#ifdef CONFIG_CGROUP_DEBUG
4716static struct cgroup_subsys_state *debug_create(struct cgroup_subsys *ss,
4717 struct cgroup *cont)
4718{
4719 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
4720
4721 if (!css)
4722 return ERR_PTR(-ENOMEM);
4723
4724 return css;
4725}
4726
4727static void debug_destroy(struct cgroup_subsys *ss, struct cgroup *cont)
4728{
4729 kfree(cont->subsys[debug_subsys_id]);
4730}
4731
4732static u64 cgroup_refcount_read(struct cgroup *cont, struct cftype *cft)
4733{
4734 return atomic_read(&cont->count);
4735}
4736
4737static u64 debug_taskcount_read(struct cgroup *cont, struct cftype *cft)
4738{
4739 return cgroup_task_count(cont);
4740}
4741
4742static u64 current_css_set_read(struct cgroup *cont, struct cftype *cft)
4743{
4744 return (u64)(unsigned long)current->cgroups;
4745}
4746
4747static u64 current_css_set_refcount_read(struct cgroup *cont,
4748 struct cftype *cft)
4749{
4750 u64 count;
4751
4752 rcu_read_lock();
4753 count = atomic_read(&current->cgroups->refcount);
4754 rcu_read_unlock();
4755 return count;
4756}
4757
Paul Menage7717f7b2009-09-23 15:56:22 -07004758static int current_css_set_cg_links_read(struct cgroup *cont,
4759 struct cftype *cft,
4760 struct seq_file *seq)
4761{
4762 struct cg_cgroup_link *link;
4763 struct css_set *cg;
4764
4765 read_lock(&css_set_lock);
4766 rcu_read_lock();
4767 cg = rcu_dereference(current->cgroups);
4768 list_for_each_entry(link, &cg->cg_links, cg_link_list) {
4769 struct cgroup *c = link->cgrp;
4770 const char *name;
4771
4772 if (c->dentry)
4773 name = c->dentry->d_name.name;
4774 else
4775 name = "?";
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004776 seq_printf(seq, "Root %d group %s\n",
4777 c->root->hierarchy_id, name);
Paul Menage7717f7b2009-09-23 15:56:22 -07004778 }
4779 rcu_read_unlock();
4780 read_unlock(&css_set_lock);
4781 return 0;
4782}
4783
4784#define MAX_TASKS_SHOWN_PER_CSS 25
4785static int cgroup_css_links_read(struct cgroup *cont,
4786 struct cftype *cft,
4787 struct seq_file *seq)
4788{
4789 struct cg_cgroup_link *link;
4790
4791 read_lock(&css_set_lock);
4792 list_for_each_entry(link, &cont->css_sets, cgrp_link_list) {
4793 struct css_set *cg = link->cg;
4794 struct task_struct *task;
4795 int count = 0;
4796 seq_printf(seq, "css_set %p\n", cg);
4797 list_for_each_entry(task, &cg->tasks, cg_list) {
4798 if (count++ > MAX_TASKS_SHOWN_PER_CSS) {
4799 seq_puts(seq, " ...\n");
4800 break;
4801 } else {
4802 seq_printf(seq, " task %d\n",
4803 task_pid_vnr(task));
4804 }
4805 }
4806 }
4807 read_unlock(&css_set_lock);
4808 return 0;
4809}
4810
Paul Menagefe693432009-09-23 15:56:20 -07004811static u64 releasable_read(struct cgroup *cgrp, struct cftype *cft)
4812{
4813 return test_bit(CGRP_RELEASABLE, &cgrp->flags);
4814}
4815
4816static struct cftype debug_files[] = {
4817 {
4818 .name = "cgroup_refcount",
4819 .read_u64 = cgroup_refcount_read,
4820 },
4821 {
4822 .name = "taskcount",
4823 .read_u64 = debug_taskcount_read,
4824 },
4825
4826 {
4827 .name = "current_css_set",
4828 .read_u64 = current_css_set_read,
4829 },
4830
4831 {
4832 .name = "current_css_set_refcount",
4833 .read_u64 = current_css_set_refcount_read,
4834 },
4835
4836 {
Paul Menage7717f7b2009-09-23 15:56:22 -07004837 .name = "current_css_set_cg_links",
4838 .read_seq_string = current_css_set_cg_links_read,
4839 },
4840
4841 {
4842 .name = "cgroup_css_links",
4843 .read_seq_string = cgroup_css_links_read,
4844 },
4845
4846 {
Paul Menagefe693432009-09-23 15:56:20 -07004847 .name = "releasable",
4848 .read_u64 = releasable_read,
4849 },
4850};
4851
4852static int debug_populate(struct cgroup_subsys *ss, struct cgroup *cont)
4853{
4854 return cgroup_add_files(cont, ss, debug_files,
4855 ARRAY_SIZE(debug_files));
4856}
4857
4858struct cgroup_subsys debug_subsys = {
4859 .name = "debug",
4860 .create = debug_create,
4861 .destroy = debug_destroy,
4862 .populate = debug_populate,
4863 .subsys_id = debug_subsys_id,
4864};
4865#endif /* CONFIG_CGROUP_DEBUG */