blob: fe00b3b983a86387332234703217abb1d28ca202 [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 *
7 * Copyright notices from the original cpuset code:
8 * --------------------------------------------------
9 * Copyright (C) 2003 BULL SA.
10 * Copyright (C) 2004-2006 Silicon Graphics, Inc.
11 *
12 * Portions derived from Patrick Mochel's sysfs code.
13 * sysfs is Copyright (c) 2001-3 Patrick Mochel
14 *
15 * 2003-10-10 Written by Simon Derr.
16 * 2003-10-22 Updates by Stephen Hemminger.
17 * 2004 May-July Rework by Paul Jackson.
18 * ---------------------------------------------------
19 *
20 * This file is subject to the terms and conditions of the GNU General Public
21 * License. See the file COPYING in the main directory of the Linux
22 * distribution for more details.
23 */
24
25#include <linux/cgroup.h>
26#include <linux/errno.h>
27#include <linux/fs.h>
28#include <linux/kernel.h>
29#include <linux/list.h>
30#include <linux/mm.h>
31#include <linux/mutex.h>
32#include <linux/mount.h>
33#include <linux/pagemap.h>
Paul Menagea4243162007-10-18 23:39:35 -070034#include <linux/proc_fs.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070035#include <linux/rcupdate.h>
36#include <linux/sched.h>
Paul Menage817929e2007-10-18 23:39:36 -070037#include <linux/backing-dev.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070038#include <linux/seq_file.h>
39#include <linux/slab.h>
40#include <linux/magic.h>
41#include <linux/spinlock.h>
42#include <linux/string.h>
Paul Menagebbcb81d2007-10-18 23:39:32 -070043#include <linux/sort.h>
Paul Menage81a6a5c2007-10-18 23:39:38 -070044#include <linux/kmod.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070045#include <linux/delayacct.h>
46#include <linux/cgroupstats.h>
Li Zefan472b1052008-04-29 01:00:11 -070047#include <linux/hash.h>
Al Viro3f8206d2008-07-26 03:46:43 -040048#include <linux/namei.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070049
Paul Menageddbcc7e2007-10-18 23:39:30 -070050#include <asm/atomic.h>
51
Paul Menage81a6a5c2007-10-18 23:39:38 -070052static DEFINE_MUTEX(cgroup_mutex);
53
Paul Menageddbcc7e2007-10-18 23:39:30 -070054/* Generate an array of cgroup subsystem pointers */
55#define SUBSYS(_x) &_x ## _subsys,
56
57static struct cgroup_subsys *subsys[] = {
58#include <linux/cgroup_subsys.h>
59};
60
61/*
62 * A cgroupfs_root represents the root of a cgroup hierarchy,
63 * and may be associated with a superblock to form an active
64 * hierarchy
65 */
66struct cgroupfs_root {
67 struct super_block *sb;
68
69 /*
70 * The bitmask of subsystems intended to be attached to this
71 * hierarchy
72 */
73 unsigned long subsys_bits;
74
75 /* The bitmask of subsystems currently attached to this hierarchy */
76 unsigned long actual_subsys_bits;
77
78 /* A list running through the attached subsystems */
79 struct list_head subsys_list;
80
81 /* The root cgroup for this hierarchy */
82 struct cgroup top_cgroup;
83
84 /* Tracks how many cgroups are currently defined in hierarchy.*/
85 int number_of_cgroups;
86
87 /* A list running through the mounted hierarchies */
88 struct list_head root_list;
89
90 /* Hierarchy-specific flags */
91 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -070092
Paul Menagee788e062008-07-25 01:46:59 -070093 /* The path to use for release notifications. */
Paul Menage81a6a5c2007-10-18 23:39:38 -070094 char release_agent_path[PATH_MAX];
Paul Menageddbcc7e2007-10-18 23:39:30 -070095};
96
97
98/*
99 * The "rootnode" hierarchy is the "dummy hierarchy", reserved for the
100 * subsystems that are otherwise unattached - it never has more than a
101 * single cgroup, and all tasks are part of that cgroup.
102 */
103static struct cgroupfs_root rootnode;
104
105/* The list of hierarchy roots */
106
107static LIST_HEAD(roots);
Paul Menage817929e2007-10-18 23:39:36 -0700108static int root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700109
110/* dummytop is a shorthand for the dummy hierarchy's top cgroup */
111#define dummytop (&rootnode.top_cgroup)
112
113/* This flag indicates whether tasks in the fork and exit paths should
Li Zefana043e3b2008-02-23 15:24:09 -0800114 * check for fork/exit handlers to call. This avoids us having to do
115 * extra work in the fork/exit path if none of the subsystems need to
116 * be called.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700117 */
Li Zefan8947f9d2008-07-25 01:46:56 -0700118static int need_forkexit_callback __read_mostly;
Balbir Singhcf475ad2008-04-29 01:00:16 -0700119static int need_mm_owner_callback __read_mostly;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700120
Paul Menageddbcc7e2007-10-18 23:39:30 -0700121/* convenient tests for these bits */
Paul Menagebd89aab2007-10-18 23:40:44 -0700122inline int cgroup_is_removed(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700123{
Paul Menagebd89aab2007-10-18 23:40:44 -0700124 return test_bit(CGRP_REMOVED, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700125}
126
127/* bits in struct cgroupfs_root flags field */
128enum {
129 ROOT_NOPREFIX, /* mounted subsystems have no named prefix */
130};
131
Adrian Bunke9685a02008-02-07 00:13:46 -0800132static int cgroup_is_releasable(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700133{
134 const int bits =
Paul Menagebd89aab2007-10-18 23:40:44 -0700135 (1 << CGRP_RELEASABLE) |
136 (1 << CGRP_NOTIFY_ON_RELEASE);
137 return (cgrp->flags & bits) == bits;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700138}
139
Adrian Bunke9685a02008-02-07 00:13:46 -0800140static int notify_on_release(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700141{
Paul Menagebd89aab2007-10-18 23:40:44 -0700142 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700143}
144
Paul Menageddbcc7e2007-10-18 23:39:30 -0700145/*
146 * for_each_subsys() allows you to iterate on each subsystem attached to
147 * an active hierarchy
148 */
149#define for_each_subsys(_root, _ss) \
150list_for_each_entry(_ss, &_root->subsys_list, sibling)
151
152/* for_each_root() allows you to iterate across the active hierarchies */
153#define for_each_root(_root) \
154list_for_each_entry(_root, &roots, root_list)
155
Paul Menage81a6a5c2007-10-18 23:39:38 -0700156/* the list of cgroups eligible for automatic release. Protected by
157 * release_list_lock */
158static LIST_HEAD(release_list);
159static DEFINE_SPINLOCK(release_list_lock);
160static void cgroup_release_agent(struct work_struct *work);
161static DECLARE_WORK(release_agent_work, cgroup_release_agent);
Paul Menagebd89aab2007-10-18 23:40:44 -0700162static void check_for_release(struct cgroup *cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700163
Paul Menage817929e2007-10-18 23:39:36 -0700164/* Link structure for associating css_set objects with cgroups */
165struct cg_cgroup_link {
166 /*
167 * List running through cg_cgroup_links associated with a
168 * cgroup, anchored on cgroup->css_sets
169 */
Paul Menagebd89aab2007-10-18 23:40:44 -0700170 struct list_head cgrp_link_list;
Paul Menage817929e2007-10-18 23:39:36 -0700171 /*
172 * List running through cg_cgroup_links pointing at a
173 * single css_set object, anchored on css_set->cg_links
174 */
175 struct list_head cg_link_list;
176 struct css_set *cg;
177};
178
179/* The default css_set - used by init and its children prior to any
180 * hierarchies being mounted. It contains a pointer to the root state
181 * for each subsystem. Also used to anchor the list of css_sets. Not
182 * reference-counted, to improve performance when child cgroups
183 * haven't been created.
184 */
185
186static struct css_set init_css_set;
187static struct cg_cgroup_link init_css_set_link;
188
189/* css_set_lock protects the list of css_set objects, and the
190 * chain of tasks off each css_set. Nests outside task->alloc_lock
191 * due to cgroup_iter_start() */
192static DEFINE_RWLOCK(css_set_lock);
193static int css_set_count;
194
Li Zefan472b1052008-04-29 01:00:11 -0700195/* hash table for cgroup groups. This improves the performance to
196 * find an existing css_set */
197#define CSS_SET_HASH_BITS 7
198#define CSS_SET_TABLE_SIZE (1 << CSS_SET_HASH_BITS)
199static struct hlist_head css_set_table[CSS_SET_TABLE_SIZE];
200
201static struct hlist_head *css_set_hash(struct cgroup_subsys_state *css[])
202{
203 int i;
204 int index;
205 unsigned long tmp = 0UL;
206
207 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++)
208 tmp += (unsigned long)css[i];
209 tmp = (tmp >> 16) ^ tmp;
210
211 index = hash_long(tmp, CSS_SET_HASH_BITS);
212
213 return &css_set_table[index];
214}
215
Paul Menage817929e2007-10-18 23:39:36 -0700216/* We don't maintain the lists running through each css_set to its
217 * task until after the first call to cgroup_iter_start(). This
218 * reduces the fork()/exit() overhead for people who have cgroups
219 * compiled into their kernel but not actually in use */
Li Zefan8947f9d2008-07-25 01:46:56 -0700220static int use_task_css_set_links __read_mostly;
Paul Menage817929e2007-10-18 23:39:36 -0700221
222/* When we create or destroy a css_set, the operation simply
223 * takes/releases a reference count on all the cgroups referenced
224 * by subsystems in this css_set. This can end up multiple-counting
225 * some cgroups, but that's OK - the ref-count is just a
226 * busy/not-busy indicator; ensuring that we only count each cgroup
227 * once would require taking a global lock to ensure that no
Paul Menageb4f48b62007-10-18 23:39:33 -0700228 * subsystems moved between hierarchies while we were doing so.
229 *
230 * Possible TODO: decide at boot time based on the number of
231 * registered subsystems and the number of CPUs or NUMA nodes whether
232 * it's better for performance to ref-count every subsystem, or to
233 * take a global lock and only add one ref count to each hierarchy.
234 */
Paul Menageb4f48b62007-10-18 23:39:33 -0700235
Paul Menage817929e2007-10-18 23:39:36 -0700236/*
237 * unlink a css_set from the list and free it
238 */
Paul Menage81a6a5c2007-10-18 23:39:38 -0700239static void unlink_css_set(struct css_set *cg)
Paul Menageb4f48b62007-10-18 23:39:33 -0700240{
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700241 struct cg_cgroup_link *link;
242 struct cg_cgroup_link *saved_link;
243
Li Zefan472b1052008-04-29 01:00:11 -0700244 hlist_del(&cg->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700245 css_set_count--;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700246
247 list_for_each_entry_safe(link, saved_link, &cg->cg_links,
248 cg_link_list) {
Paul Menage817929e2007-10-18 23:39:36 -0700249 list_del(&link->cg_link_list);
Paul Menagebd89aab2007-10-18 23:40:44 -0700250 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -0700251 kfree(link);
252 }
Paul Menage81a6a5c2007-10-18 23:39:38 -0700253}
254
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700255static void __put_css_set(struct css_set *cg, int taskexit)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700256{
257 int i;
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700258 /*
259 * Ensure that the refcount doesn't hit zero while any readers
260 * can see it. Similar to atomic_dec_and_lock(), but for an
261 * rwlock
262 */
263 if (atomic_add_unless(&cg->refcount, -1, 1))
264 return;
265 write_lock(&css_set_lock);
266 if (!atomic_dec_and_test(&cg->refcount)) {
267 write_unlock(&css_set_lock);
268 return;
269 }
Paul Menage81a6a5c2007-10-18 23:39:38 -0700270 unlink_css_set(cg);
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700271 write_unlock(&css_set_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700272
273 rcu_read_lock();
274 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700275 struct cgroup *cgrp = cg->subsys[i]->cgroup;
276 if (atomic_dec_and_test(&cgrp->count) &&
277 notify_on_release(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -0700278 if (taskexit)
Paul Menagebd89aab2007-10-18 23:40:44 -0700279 set_bit(CGRP_RELEASABLE, &cgrp->flags);
280 check_for_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700281 }
282 }
283 rcu_read_unlock();
Paul Menage817929e2007-10-18 23:39:36 -0700284 kfree(cg);
285}
286
287/*
288 * refcounted get/put for css_set objects
289 */
290static inline void get_css_set(struct css_set *cg)
291{
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700292 atomic_inc(&cg->refcount);
Paul Menage817929e2007-10-18 23:39:36 -0700293}
294
295static inline void put_css_set(struct css_set *cg)
296{
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700297 __put_css_set(cg, 0);
Paul Menage817929e2007-10-18 23:39:36 -0700298}
299
Paul Menage81a6a5c2007-10-18 23:39:38 -0700300static inline void put_css_set_taskexit(struct css_set *cg)
301{
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700302 __put_css_set(cg, 1);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700303}
304
Paul Menage817929e2007-10-18 23:39:36 -0700305/*
306 * find_existing_css_set() is a helper for
307 * find_css_set(), and checks to see whether an existing
Li Zefan472b1052008-04-29 01:00:11 -0700308 * css_set is suitable.
Paul Menage817929e2007-10-18 23:39:36 -0700309 *
310 * oldcg: the cgroup group that we're using before the cgroup
311 * transition
312 *
Paul Menagebd89aab2007-10-18 23:40:44 -0700313 * cgrp: the cgroup that we're moving into
Paul Menage817929e2007-10-18 23:39:36 -0700314 *
315 * template: location in which to build the desired set of subsystem
316 * state objects for the new cgroup group
317 */
Paul Menage817929e2007-10-18 23:39:36 -0700318static struct css_set *find_existing_css_set(
319 struct css_set *oldcg,
Paul Menagebd89aab2007-10-18 23:40:44 -0700320 struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -0700321 struct cgroup_subsys_state *template[])
322{
323 int i;
Paul Menagebd89aab2007-10-18 23:40:44 -0700324 struct cgroupfs_root *root = cgrp->root;
Li Zefan472b1052008-04-29 01:00:11 -0700325 struct hlist_head *hhead;
326 struct hlist_node *node;
327 struct css_set *cg;
Paul Menage817929e2007-10-18 23:39:36 -0700328
329 /* Built the set of subsystem state objects that we want to
330 * see in the new css_set */
331 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Li Zefan8d53d552008-02-23 15:24:11 -0800332 if (root->subsys_bits & (1UL << i)) {
Paul Menage817929e2007-10-18 23:39:36 -0700333 /* Subsystem is in this hierarchy. So we want
334 * the subsystem state from the new
335 * cgroup */
Paul Menagebd89aab2007-10-18 23:40:44 -0700336 template[i] = cgrp->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700337 } else {
338 /* Subsystem is not in this hierarchy, so we
339 * don't want to change the subsystem state */
340 template[i] = oldcg->subsys[i];
341 }
342 }
343
Li Zefan472b1052008-04-29 01:00:11 -0700344 hhead = css_set_hash(template);
345 hlist_for_each_entry(cg, node, hhead, hlist) {
Paul Menage817929e2007-10-18 23:39:36 -0700346 if (!memcmp(template, cg->subsys, sizeof(cg->subsys))) {
347 /* All subsystems matched */
348 return cg;
349 }
Li Zefan472b1052008-04-29 01:00:11 -0700350 }
Paul Menage817929e2007-10-18 23:39:36 -0700351
352 /* No existing cgroup group matched */
353 return NULL;
354}
355
Paul Menage817929e2007-10-18 23:39:36 -0700356static void free_cg_links(struct list_head *tmp)
357{
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700358 struct cg_cgroup_link *link;
359 struct cg_cgroup_link *saved_link;
360
361 list_for_each_entry_safe(link, saved_link, tmp, cgrp_link_list) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700362 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -0700363 kfree(link);
364 }
365}
366
367/*
Li Zefan36553432008-07-29 22:33:19 -0700368 * allocate_cg_links() allocates "count" cg_cgroup_link structures
369 * and chains them on tmp through their cgrp_link_list fields. Returns 0 on
370 * success or a negative error
371 */
372static int allocate_cg_links(int count, struct list_head *tmp)
373{
374 struct cg_cgroup_link *link;
375 int i;
376 INIT_LIST_HEAD(tmp);
377 for (i = 0; i < count; i++) {
378 link = kmalloc(sizeof(*link), GFP_KERNEL);
379 if (!link) {
380 free_cg_links(tmp);
381 return -ENOMEM;
382 }
383 list_add(&link->cgrp_link_list, tmp);
384 }
385 return 0;
386}
387
388/*
Paul Menage817929e2007-10-18 23:39:36 -0700389 * find_css_set() takes an existing cgroup group and a
390 * cgroup object, and returns a css_set object that's
391 * equivalent to the old group, but with the given cgroup
392 * substituted into the appropriate hierarchy. Must be called with
393 * cgroup_mutex held
394 */
Paul Menage817929e2007-10-18 23:39:36 -0700395static struct css_set *find_css_set(
Paul Menagebd89aab2007-10-18 23:40:44 -0700396 struct css_set *oldcg, struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700397{
398 struct css_set *res;
399 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT];
400 int i;
401
402 struct list_head tmp_cg_links;
403 struct cg_cgroup_link *link;
404
Li Zefan472b1052008-04-29 01:00:11 -0700405 struct hlist_head *hhead;
406
Paul Menage817929e2007-10-18 23:39:36 -0700407 /* First see if we already have a cgroup group that matches
408 * the desired set */
Li Zefan7e9abd82008-07-25 01:46:54 -0700409 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -0700410 res = find_existing_css_set(oldcg, cgrp, template);
Paul Menage817929e2007-10-18 23:39:36 -0700411 if (res)
412 get_css_set(res);
Li Zefan7e9abd82008-07-25 01:46:54 -0700413 read_unlock(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -0700414
415 if (res)
416 return res;
417
418 res = kmalloc(sizeof(*res), GFP_KERNEL);
419 if (!res)
420 return NULL;
421
422 /* Allocate all the cg_cgroup_link objects that we'll need */
423 if (allocate_cg_links(root_count, &tmp_cg_links) < 0) {
424 kfree(res);
425 return NULL;
426 }
427
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700428 atomic_set(&res->refcount, 1);
Paul Menage817929e2007-10-18 23:39:36 -0700429 INIT_LIST_HEAD(&res->cg_links);
430 INIT_LIST_HEAD(&res->tasks);
Li Zefan472b1052008-04-29 01:00:11 -0700431 INIT_HLIST_NODE(&res->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700432
433 /* Copy the set of subsystem state objects generated in
434 * find_existing_css_set() */
435 memcpy(res->subsys, template, sizeof(res->subsys));
436
437 write_lock(&css_set_lock);
438 /* Add reference counts and links from the new css_set. */
439 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700440 struct cgroup *cgrp = res->subsys[i]->cgroup;
Paul Menage817929e2007-10-18 23:39:36 -0700441 struct cgroup_subsys *ss = subsys[i];
Paul Menagebd89aab2007-10-18 23:40:44 -0700442 atomic_inc(&cgrp->count);
Paul Menage817929e2007-10-18 23:39:36 -0700443 /*
444 * We want to add a link once per cgroup, so we
445 * only do it for the first subsystem in each
446 * hierarchy
447 */
448 if (ss->root->subsys_list.next == &ss->sibling) {
449 BUG_ON(list_empty(&tmp_cg_links));
450 link = list_entry(tmp_cg_links.next,
451 struct cg_cgroup_link,
Paul Menagebd89aab2007-10-18 23:40:44 -0700452 cgrp_link_list);
453 list_del(&link->cgrp_link_list);
454 list_add(&link->cgrp_link_list, &cgrp->css_sets);
Paul Menage817929e2007-10-18 23:39:36 -0700455 link->cg = res;
456 list_add(&link->cg_link_list, &res->cg_links);
457 }
458 }
459 if (list_empty(&rootnode.subsys_list)) {
460 link = list_entry(tmp_cg_links.next,
461 struct cg_cgroup_link,
Paul Menagebd89aab2007-10-18 23:40:44 -0700462 cgrp_link_list);
463 list_del(&link->cgrp_link_list);
464 list_add(&link->cgrp_link_list, &dummytop->css_sets);
Paul Menage817929e2007-10-18 23:39:36 -0700465 link->cg = res;
466 list_add(&link->cg_link_list, &res->cg_links);
467 }
468
469 BUG_ON(!list_empty(&tmp_cg_links));
470
Paul Menage817929e2007-10-18 23:39:36 -0700471 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -0700472
473 /* Add this cgroup group to the hash table */
474 hhead = css_set_hash(res->subsys);
475 hlist_add_head(&res->hlist, hhead);
476
Paul Menage817929e2007-10-18 23:39:36 -0700477 write_unlock(&css_set_lock);
478
479 return res;
Paul Menageb4f48b62007-10-18 23:39:33 -0700480}
481
Paul Menageddbcc7e2007-10-18 23:39:30 -0700482/*
483 * There is one global cgroup mutex. We also require taking
484 * task_lock() when dereferencing a task's cgroup subsys pointers.
485 * See "The task_lock() exception", at the end of this comment.
486 *
487 * A task must hold cgroup_mutex to modify cgroups.
488 *
489 * Any task can increment and decrement the count field without lock.
490 * So in general, code holding cgroup_mutex can't rely on the count
491 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -0800492 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -0700493 * means that no tasks are currently attached, therefore there is no
494 * way a task attached to that cgroup can fork (the other way to
495 * increment the count). So code holding cgroup_mutex can safely
496 * assume that if the count is zero, it will stay zero. Similarly, if
497 * a task holds cgroup_mutex on a cgroup with zero count, it
498 * knows that the cgroup won't be removed, as cgroup_rmdir()
499 * needs that mutex.
500 *
Paul Menageddbcc7e2007-10-18 23:39:30 -0700501 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
502 * (usually) take cgroup_mutex. These are the two most performance
503 * critical pieces of code here. The exception occurs on cgroup_exit(),
504 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
505 * is taken, and if the cgroup count is zero, a usermode call made
Li Zefana043e3b2008-02-23 15:24:09 -0800506 * to the release agent with the name of the cgroup (path relative to
507 * the root of cgroup file system) as the argument.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700508 *
509 * A cgroup can only be deleted if both its 'count' of using tasks
510 * is zero, and its list of 'children' cgroups is empty. Since all
511 * tasks in the system use _some_ cgroup, and since there is always at
512 * least one task in the system (init, pid == 1), therefore, top_cgroup
513 * always has either children cgroups and/or using tasks. So we don't
514 * need a special hack to ensure that top_cgroup cannot be deleted.
515 *
516 * The task_lock() exception
517 *
518 * The need for this exception arises from the action of
Cliff Wickman956db3c2008-02-07 00:14:43 -0800519 * cgroup_attach_task(), which overwrites one tasks cgroup pointer with
Li Zefana043e3b2008-02-23 15:24:09 -0800520 * another. It does so using cgroup_mutex, however there are
Paul Menageddbcc7e2007-10-18 23:39:30 -0700521 * several performance critical places that need to reference
522 * task->cgroup without the expense of grabbing a system global
523 * mutex. Therefore except as noted below, when dereferencing or, as
Cliff Wickman956db3c2008-02-07 00:14:43 -0800524 * in cgroup_attach_task(), modifying a task'ss cgroup pointer we use
Paul Menageddbcc7e2007-10-18 23:39:30 -0700525 * task_lock(), which acts on a spinlock (task->alloc_lock) already in
526 * the task_struct routinely used for such matters.
527 *
528 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -0800529 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700530 */
531
Paul Menageddbcc7e2007-10-18 23:39:30 -0700532/**
533 * cgroup_lock - lock out any changes to cgroup structures
534 *
535 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700536void cgroup_lock(void)
537{
538 mutex_lock(&cgroup_mutex);
539}
540
541/**
542 * cgroup_unlock - release lock on cgroup changes
543 *
544 * Undo the lock taken in a previous cgroup_lock() call.
545 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700546void cgroup_unlock(void)
547{
548 mutex_unlock(&cgroup_mutex);
549}
550
551/*
552 * A couple of forward declarations required, due to cyclic reference loop:
553 * cgroup_mkdir -> cgroup_create -> cgroup_populate_dir ->
554 * cgroup_add_file -> cgroup_create_file -> cgroup_dir_inode_operations
555 * -> cgroup_mkdir.
556 */
557
558static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode);
559static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -0700560static int cgroup_populate_dir(struct cgroup *cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700561static struct inode_operations cgroup_dir_inode_operations;
Paul Menagea4243162007-10-18 23:39:35 -0700562static struct file_operations proc_cgroupstats_operations;
563
564static struct backing_dev_info cgroup_backing_dev_info = {
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700565 .capabilities = BDI_CAP_NO_ACCT_AND_WRITEBACK,
Paul Menagea4243162007-10-18 23:39:35 -0700566};
Paul Menageddbcc7e2007-10-18 23:39:30 -0700567
568static struct inode *cgroup_new_inode(mode_t mode, struct super_block *sb)
569{
570 struct inode *inode = new_inode(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700571
572 if (inode) {
573 inode->i_mode = mode;
574 inode->i_uid = current->fsuid;
575 inode->i_gid = current->fsgid;
576 inode->i_blocks = 0;
577 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
578 inode->i_mapping->backing_dev_info = &cgroup_backing_dev_info;
579 }
580 return inode;
581}
582
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800583/*
584 * Call subsys's pre_destroy handler.
585 * This is called before css refcnt check.
586 */
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800587static void cgroup_call_pre_destroy(struct cgroup *cgrp)
588{
589 struct cgroup_subsys *ss;
590 for_each_subsys(cgrp->root, ss)
591 if (ss->pre_destroy && cgrp->subsys[ss->subsys_id])
592 ss->pre_destroy(ss, cgrp);
593 return;
594}
595
Paul Menageddbcc7e2007-10-18 23:39:30 -0700596static void cgroup_diput(struct dentry *dentry, struct inode *inode)
597{
598 /* is dentry a directory ? if so, kfree() associated cgroup */
599 if (S_ISDIR(inode->i_mode)) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700600 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800601 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -0700602 BUG_ON(!(cgroup_is_removed(cgrp)));
Paul Menage81a6a5c2007-10-18 23:39:38 -0700603 /* It's possible for external users to be holding css
604 * reference counts on a cgroup; css_put() needs to
605 * be able to access the cgroup after decrementing
606 * the reference count in order to know if it needs to
607 * queue the cgroup to be handled by the release
608 * agent */
609 synchronize_rcu();
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800610
611 mutex_lock(&cgroup_mutex);
612 /*
613 * Release the subsystem state objects.
614 */
615 for_each_subsys(cgrp->root, ss) {
616 if (cgrp->subsys[ss->subsys_id])
617 ss->destroy(ss, cgrp);
618 }
619
620 cgrp->root->number_of_cgroups--;
621 mutex_unlock(&cgroup_mutex);
622
623 /* Drop the active superblock reference that we took when we
624 * created the cgroup */
625 deactivate_super(cgrp->root->sb);
626
Paul Menagebd89aab2007-10-18 23:40:44 -0700627 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700628 }
629 iput(inode);
630}
631
632static void remove_dir(struct dentry *d)
633{
634 struct dentry *parent = dget(d->d_parent);
635
636 d_delete(d);
637 simple_rmdir(parent->d_inode, d);
638 dput(parent);
639}
640
641static void cgroup_clear_directory(struct dentry *dentry)
642{
643 struct list_head *node;
644
645 BUG_ON(!mutex_is_locked(&dentry->d_inode->i_mutex));
646 spin_lock(&dcache_lock);
647 node = dentry->d_subdirs.next;
648 while (node != &dentry->d_subdirs) {
649 struct dentry *d = list_entry(node, struct dentry, d_u.d_child);
650 list_del_init(node);
651 if (d->d_inode) {
652 /* This should never be called on a cgroup
653 * directory with child cgroups */
654 BUG_ON(d->d_inode->i_mode & S_IFDIR);
655 d = dget_locked(d);
656 spin_unlock(&dcache_lock);
657 d_delete(d);
658 simple_unlink(dentry->d_inode, d);
659 dput(d);
660 spin_lock(&dcache_lock);
661 }
662 node = dentry->d_subdirs.next;
663 }
664 spin_unlock(&dcache_lock);
665}
666
667/*
668 * NOTE : the dentry must have been dget()'ed
669 */
670static void cgroup_d_remove_dir(struct dentry *dentry)
671{
672 cgroup_clear_directory(dentry);
673
674 spin_lock(&dcache_lock);
675 list_del_init(&dentry->d_u.d_child);
676 spin_unlock(&dcache_lock);
677 remove_dir(dentry);
678}
679
680static int rebind_subsystems(struct cgroupfs_root *root,
681 unsigned long final_bits)
682{
683 unsigned long added_bits, removed_bits;
Paul Menagebd89aab2007-10-18 23:40:44 -0700684 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700685 int i;
686
687 removed_bits = root->actual_subsys_bits & ~final_bits;
688 added_bits = final_bits & ~root->actual_subsys_bits;
689 /* Check that any added subsystems are currently free */
690 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Li Zefan8d53d552008-02-23 15:24:11 -0800691 unsigned long bit = 1UL << i;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700692 struct cgroup_subsys *ss = subsys[i];
693 if (!(bit & added_bits))
694 continue;
695 if (ss->root != &rootnode) {
696 /* Subsystem isn't free */
697 return -EBUSY;
698 }
699 }
700
701 /* Currently we don't handle adding/removing subsystems when
702 * any child cgroups exist. This is theoretically supportable
703 * but involves complex error handling, so it's being left until
704 * later */
Paul Menagebd89aab2007-10-18 23:40:44 -0700705 if (!list_empty(&cgrp->children))
Paul Menageddbcc7e2007-10-18 23:39:30 -0700706 return -EBUSY;
707
708 /* Process each subsystem */
709 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
710 struct cgroup_subsys *ss = subsys[i];
711 unsigned long bit = 1UL << i;
712 if (bit & added_bits) {
713 /* We're binding this subsystem to this hierarchy */
Paul Menagebd89aab2007-10-18 23:40:44 -0700714 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700715 BUG_ON(!dummytop->subsys[i]);
716 BUG_ON(dummytop->subsys[i]->cgroup != dummytop);
Paul Menagebd89aab2007-10-18 23:40:44 -0700717 cgrp->subsys[i] = dummytop->subsys[i];
718 cgrp->subsys[i]->cgroup = cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700719 list_add(&ss->sibling, &root->subsys_list);
720 rcu_assign_pointer(ss->root, root);
721 if (ss->bind)
Paul Menagebd89aab2007-10-18 23:40:44 -0700722 ss->bind(ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700723
724 } else if (bit & removed_bits) {
725 /* We're removing this subsystem */
Paul Menagebd89aab2007-10-18 23:40:44 -0700726 BUG_ON(cgrp->subsys[i] != dummytop->subsys[i]);
727 BUG_ON(cgrp->subsys[i]->cgroup != cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700728 if (ss->bind)
729 ss->bind(ss, dummytop);
730 dummytop->subsys[i]->cgroup = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -0700731 cgrp->subsys[i] = NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700732 rcu_assign_pointer(subsys[i]->root, &rootnode);
733 list_del(&ss->sibling);
734 } else if (bit & final_bits) {
735 /* Subsystem state should already exist */
Paul Menagebd89aab2007-10-18 23:40:44 -0700736 BUG_ON(!cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700737 } else {
738 /* Subsystem state shouldn't exist */
Paul Menagebd89aab2007-10-18 23:40:44 -0700739 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700740 }
741 }
742 root->subsys_bits = root->actual_subsys_bits = final_bits;
743 synchronize_rcu();
744
745 return 0;
746}
747
748static int cgroup_show_options(struct seq_file *seq, struct vfsmount *vfs)
749{
750 struct cgroupfs_root *root = vfs->mnt_sb->s_fs_info;
751 struct cgroup_subsys *ss;
752
753 mutex_lock(&cgroup_mutex);
754 for_each_subsys(root, ss)
755 seq_printf(seq, ",%s", ss->name);
756 if (test_bit(ROOT_NOPREFIX, &root->flags))
757 seq_puts(seq, ",noprefix");
Paul Menage81a6a5c2007-10-18 23:39:38 -0700758 if (strlen(root->release_agent_path))
759 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700760 mutex_unlock(&cgroup_mutex);
761 return 0;
762}
763
764struct cgroup_sb_opts {
765 unsigned long subsys_bits;
766 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700767 char *release_agent;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700768};
769
770/* Convert a hierarchy specifier into a bitmask of subsystems and
771 * flags. */
772static int parse_cgroupfs_options(char *data,
773 struct cgroup_sb_opts *opts)
774{
775 char *token, *o = data ?: "all";
776
777 opts->subsys_bits = 0;
778 opts->flags = 0;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700779 opts->release_agent = NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700780
781 while ((token = strsep(&o, ",")) != NULL) {
782 if (!*token)
783 return -EINVAL;
784 if (!strcmp(token, "all")) {
Paul Menage8bab8dd2008-04-04 14:29:57 -0700785 /* Add all non-disabled subsystems */
786 int i;
787 opts->subsys_bits = 0;
788 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
789 struct cgroup_subsys *ss = subsys[i];
790 if (!ss->disabled)
791 opts->subsys_bits |= 1ul << i;
792 }
Paul Menageddbcc7e2007-10-18 23:39:30 -0700793 } else if (!strcmp(token, "noprefix")) {
794 set_bit(ROOT_NOPREFIX, &opts->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700795 } else if (!strncmp(token, "release_agent=", 14)) {
796 /* Specifying two release agents is forbidden */
797 if (opts->release_agent)
798 return -EINVAL;
799 opts->release_agent = kzalloc(PATH_MAX, GFP_KERNEL);
800 if (!opts->release_agent)
801 return -ENOMEM;
802 strncpy(opts->release_agent, token + 14, PATH_MAX - 1);
803 opts->release_agent[PATH_MAX - 1] = 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700804 } else {
805 struct cgroup_subsys *ss;
806 int i;
807 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
808 ss = subsys[i];
809 if (!strcmp(token, ss->name)) {
Paul Menage8bab8dd2008-04-04 14:29:57 -0700810 if (!ss->disabled)
811 set_bit(i, &opts->subsys_bits);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700812 break;
813 }
814 }
815 if (i == CGROUP_SUBSYS_COUNT)
816 return -ENOENT;
817 }
818 }
819
820 /* We can't have an empty hierarchy */
821 if (!opts->subsys_bits)
822 return -EINVAL;
823
824 return 0;
825}
826
827static int cgroup_remount(struct super_block *sb, int *flags, char *data)
828{
829 int ret = 0;
830 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -0700831 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700832 struct cgroup_sb_opts opts;
833
Paul Menagebd89aab2007-10-18 23:40:44 -0700834 mutex_lock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700835 mutex_lock(&cgroup_mutex);
836
837 /* See what subsystems are wanted */
838 ret = parse_cgroupfs_options(data, &opts);
839 if (ret)
840 goto out_unlock;
841
842 /* Don't allow flags to change at remount */
843 if (opts.flags != root->flags) {
844 ret = -EINVAL;
845 goto out_unlock;
846 }
847
848 ret = rebind_subsystems(root, opts.subsys_bits);
849
850 /* (re)populate subsystem files */
851 if (!ret)
Paul Menagebd89aab2007-10-18 23:40:44 -0700852 cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700853
Paul Menage81a6a5c2007-10-18 23:39:38 -0700854 if (opts.release_agent)
855 strcpy(root->release_agent_path, opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700856 out_unlock:
Paul Menage81a6a5c2007-10-18 23:39:38 -0700857 if (opts.release_agent)
858 kfree(opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700859 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -0700860 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700861 return ret;
862}
863
864static struct super_operations cgroup_ops = {
865 .statfs = simple_statfs,
866 .drop_inode = generic_delete_inode,
867 .show_options = cgroup_show_options,
868 .remount_fs = cgroup_remount,
869};
870
Paul Menagecc31edc2008-10-18 20:28:04 -0700871static void init_cgroup_housekeeping(struct cgroup *cgrp)
872{
873 INIT_LIST_HEAD(&cgrp->sibling);
874 INIT_LIST_HEAD(&cgrp->children);
875 INIT_LIST_HEAD(&cgrp->css_sets);
876 INIT_LIST_HEAD(&cgrp->release_list);
877 init_rwsem(&cgrp->pids_mutex);
878}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700879static void init_cgroup_root(struct cgroupfs_root *root)
880{
Paul Menagebd89aab2007-10-18 23:40:44 -0700881 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700882 INIT_LIST_HEAD(&root->subsys_list);
883 INIT_LIST_HEAD(&root->root_list);
884 root->number_of_cgroups = 1;
Paul Menagebd89aab2007-10-18 23:40:44 -0700885 cgrp->root = root;
886 cgrp->top_cgroup = cgrp;
Paul Menagecc31edc2008-10-18 20:28:04 -0700887 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700888}
889
890static int cgroup_test_super(struct super_block *sb, void *data)
891{
892 struct cgroupfs_root *new = data;
893 struct cgroupfs_root *root = sb->s_fs_info;
894
895 /* First check subsystems */
896 if (new->subsys_bits != root->subsys_bits)
897 return 0;
898
899 /* Next check flags */
900 if (new->flags != root->flags)
901 return 0;
902
903 return 1;
904}
905
906static int cgroup_set_super(struct super_block *sb, void *data)
907{
908 int ret;
909 struct cgroupfs_root *root = data;
910
911 ret = set_anon_super(sb, NULL);
912 if (ret)
913 return ret;
914
915 sb->s_fs_info = root;
916 root->sb = sb;
917
918 sb->s_blocksize = PAGE_CACHE_SIZE;
919 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
920 sb->s_magic = CGROUP_SUPER_MAGIC;
921 sb->s_op = &cgroup_ops;
922
923 return 0;
924}
925
926static int cgroup_get_rootdir(struct super_block *sb)
927{
928 struct inode *inode =
929 cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb);
930 struct dentry *dentry;
931
932 if (!inode)
933 return -ENOMEM;
934
Paul Menageddbcc7e2007-10-18 23:39:30 -0700935 inode->i_fop = &simple_dir_operations;
936 inode->i_op = &cgroup_dir_inode_operations;
937 /* directories start off with i_nlink == 2 (for "." entry) */
938 inc_nlink(inode);
939 dentry = d_alloc_root(inode);
940 if (!dentry) {
941 iput(inode);
942 return -ENOMEM;
943 }
944 sb->s_root = dentry;
945 return 0;
946}
947
948static int cgroup_get_sb(struct file_system_type *fs_type,
949 int flags, const char *unused_dev_name,
950 void *data, struct vfsmount *mnt)
951{
952 struct cgroup_sb_opts opts;
953 int ret = 0;
954 struct super_block *sb;
955 struct cgroupfs_root *root;
Li Zefan28fd5df2008-04-29 01:00:13 -0700956 struct list_head tmp_cg_links;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700957
958 /* First find the desired set of subsystems */
959 ret = parse_cgroupfs_options(data, &opts);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700960 if (ret) {
961 if (opts.release_agent)
962 kfree(opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700963 return ret;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700964 }
Paul Menageddbcc7e2007-10-18 23:39:30 -0700965
966 root = kzalloc(sizeof(*root), GFP_KERNEL);
Li Zefanf7770732008-02-23 15:24:10 -0800967 if (!root) {
968 if (opts.release_agent)
969 kfree(opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700970 return -ENOMEM;
Li Zefanf7770732008-02-23 15:24:10 -0800971 }
Paul Menageddbcc7e2007-10-18 23:39:30 -0700972
973 init_cgroup_root(root);
974 root->subsys_bits = opts.subsys_bits;
975 root->flags = opts.flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700976 if (opts.release_agent) {
977 strcpy(root->release_agent_path, opts.release_agent);
978 kfree(opts.release_agent);
979 }
Paul Menageddbcc7e2007-10-18 23:39:30 -0700980
981 sb = sget(fs_type, cgroup_test_super, cgroup_set_super, root);
982
983 if (IS_ERR(sb)) {
984 kfree(root);
985 return PTR_ERR(sb);
986 }
987
988 if (sb->s_fs_info != root) {
989 /* Reusing an existing superblock */
990 BUG_ON(sb->s_root == NULL);
991 kfree(root);
992 root = NULL;
993 } else {
994 /* New superblock */
Paul Menagebd89aab2007-10-18 23:40:44 -0700995 struct cgroup *cgrp = &root->top_cgroup;
Paul Menage817929e2007-10-18 23:39:36 -0700996 struct inode *inode;
Li Zefan28fd5df2008-04-29 01:00:13 -0700997 int i;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700998
999 BUG_ON(sb->s_root != NULL);
1000
1001 ret = cgroup_get_rootdir(sb);
1002 if (ret)
1003 goto drop_new_super;
Paul Menage817929e2007-10-18 23:39:36 -07001004 inode = sb->s_root->d_inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001005
Paul Menage817929e2007-10-18 23:39:36 -07001006 mutex_lock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001007 mutex_lock(&cgroup_mutex);
1008
Paul Menage817929e2007-10-18 23:39:36 -07001009 /*
1010 * We're accessing css_set_count without locking
1011 * css_set_lock here, but that's OK - it can only be
1012 * increased by someone holding cgroup_lock, and
1013 * that's us. The worst that can happen is that we
1014 * have some link structures left over
1015 */
1016 ret = allocate_cg_links(css_set_count, &tmp_cg_links);
1017 if (ret) {
1018 mutex_unlock(&cgroup_mutex);
1019 mutex_unlock(&inode->i_mutex);
1020 goto drop_new_super;
1021 }
1022
Paul Menageddbcc7e2007-10-18 23:39:30 -07001023 ret = rebind_subsystems(root, root->subsys_bits);
1024 if (ret == -EBUSY) {
1025 mutex_unlock(&cgroup_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07001026 mutex_unlock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001027 goto drop_new_super;
1028 }
1029
1030 /* EBUSY should be the only error here */
1031 BUG_ON(ret);
1032
1033 list_add(&root->root_list, &roots);
Paul Menage817929e2007-10-18 23:39:36 -07001034 root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001035
1036 sb->s_root->d_fsdata = &root->top_cgroup;
1037 root->top_cgroup.dentry = sb->s_root;
1038
Paul Menage817929e2007-10-18 23:39:36 -07001039 /* Link the top cgroup in this hierarchy into all
1040 * the css_set objects */
1041 write_lock(&css_set_lock);
Li Zefan28fd5df2008-04-29 01:00:13 -07001042 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
1043 struct hlist_head *hhead = &css_set_table[i];
1044 struct hlist_node *node;
Paul Menage817929e2007-10-18 23:39:36 -07001045 struct css_set *cg;
Li Zefan28fd5df2008-04-29 01:00:13 -07001046
1047 hlist_for_each_entry(cg, node, hhead, hlist) {
1048 struct cg_cgroup_link *link;
1049
1050 BUG_ON(list_empty(&tmp_cg_links));
1051 link = list_entry(tmp_cg_links.next,
1052 struct cg_cgroup_link,
1053 cgrp_link_list);
1054 list_del(&link->cgrp_link_list);
1055 link->cg = cg;
1056 list_add(&link->cgrp_link_list,
1057 &root->top_cgroup.css_sets);
1058 list_add(&link->cg_link_list, &cg->cg_links);
1059 }
1060 }
Paul Menage817929e2007-10-18 23:39:36 -07001061 write_unlock(&css_set_lock);
1062
1063 free_cg_links(&tmp_cg_links);
1064
Paul Menagebd89aab2007-10-18 23:40:44 -07001065 BUG_ON(!list_empty(&cgrp->sibling));
1066 BUG_ON(!list_empty(&cgrp->children));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001067 BUG_ON(root->number_of_cgroups != 1);
1068
Paul Menagebd89aab2007-10-18 23:40:44 -07001069 cgroup_populate_dir(cgrp);
Paul Menage817929e2007-10-18 23:39:36 -07001070 mutex_unlock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001071 mutex_unlock(&cgroup_mutex);
1072 }
1073
1074 return simple_set_mnt(mnt, sb);
1075
1076 drop_new_super:
1077 up_write(&sb->s_umount);
1078 deactivate_super(sb);
Paul Menage817929e2007-10-18 23:39:36 -07001079 free_cg_links(&tmp_cg_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001080 return ret;
1081}
1082
1083static void cgroup_kill_sb(struct super_block *sb) {
1084 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001085 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001086 int ret;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001087 struct cg_cgroup_link *link;
1088 struct cg_cgroup_link *saved_link;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001089
1090 BUG_ON(!root);
1091
1092 BUG_ON(root->number_of_cgroups != 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001093 BUG_ON(!list_empty(&cgrp->children));
1094 BUG_ON(!list_empty(&cgrp->sibling));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001095
1096 mutex_lock(&cgroup_mutex);
1097
1098 /* Rebind all subsystems back to the default hierarchy */
1099 ret = rebind_subsystems(root, 0);
1100 /* Shouldn't be able to fail ... */
1101 BUG_ON(ret);
1102
Paul Menage817929e2007-10-18 23:39:36 -07001103 /*
1104 * Release all the links from css_sets to this hierarchy's
1105 * root cgroup
1106 */
1107 write_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001108
1109 list_for_each_entry_safe(link, saved_link, &cgrp->css_sets,
1110 cgrp_link_list) {
Paul Menage817929e2007-10-18 23:39:36 -07001111 list_del(&link->cg_link_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07001112 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001113 kfree(link);
1114 }
1115 write_unlock(&css_set_lock);
1116
1117 if (!list_empty(&root->root_list)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001118 list_del(&root->root_list);
Paul Menage817929e2007-10-18 23:39:36 -07001119 root_count--;
1120 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001121 mutex_unlock(&cgroup_mutex);
1122
1123 kfree(root);
1124 kill_litter_super(sb);
1125}
1126
1127static struct file_system_type cgroup_fs_type = {
1128 .name = "cgroup",
1129 .get_sb = cgroup_get_sb,
1130 .kill_sb = cgroup_kill_sb,
1131};
1132
Paul Menagebd89aab2007-10-18 23:40:44 -07001133static inline struct cgroup *__d_cgrp(struct dentry *dentry)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001134{
1135 return dentry->d_fsdata;
1136}
1137
1138static inline struct cftype *__d_cft(struct dentry *dentry)
1139{
1140 return dentry->d_fsdata;
1141}
1142
Li Zefana043e3b2008-02-23 15:24:09 -08001143/**
1144 * cgroup_path - generate the path of a cgroup
1145 * @cgrp: the cgroup in question
1146 * @buf: the buffer to write the path into
1147 * @buflen: the length of the buffer
1148 *
1149 * Called with cgroup_mutex held. Writes path of cgroup into buf.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001150 * Returns 0 on success, -errno on error.
1151 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001152int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001153{
1154 char *start;
1155
Paul Menagebd89aab2007-10-18 23:40:44 -07001156 if (cgrp == dummytop) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001157 /*
1158 * Inactive subsystems have no dentry for their root
1159 * cgroup
1160 */
1161 strcpy(buf, "/");
1162 return 0;
1163 }
1164
1165 start = buf + buflen;
1166
1167 *--start = '\0';
1168 for (;;) {
Paul Menagebd89aab2007-10-18 23:40:44 -07001169 int len = cgrp->dentry->d_name.len;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001170 if ((start -= len) < buf)
1171 return -ENAMETOOLONG;
Paul Menagebd89aab2007-10-18 23:40:44 -07001172 memcpy(start, cgrp->dentry->d_name.name, len);
1173 cgrp = cgrp->parent;
1174 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001175 break;
Paul Menagebd89aab2007-10-18 23:40:44 -07001176 if (!cgrp->parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001177 continue;
1178 if (--start < buf)
1179 return -ENAMETOOLONG;
1180 *start = '/';
1181 }
1182 memmove(buf, start, buf + buflen - start);
1183 return 0;
1184}
1185
Paul Menagebbcb81d2007-10-18 23:39:32 -07001186/*
1187 * Return the first subsystem attached to a cgroup's hierarchy, and
1188 * its subsystem id.
1189 */
1190
Paul Menagebd89aab2007-10-18 23:40:44 -07001191static void get_first_subsys(const struct cgroup *cgrp,
Paul Menagebbcb81d2007-10-18 23:39:32 -07001192 struct cgroup_subsys_state **css, int *subsys_id)
1193{
Paul Menagebd89aab2007-10-18 23:40:44 -07001194 const struct cgroupfs_root *root = cgrp->root;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001195 const struct cgroup_subsys *test_ss;
1196 BUG_ON(list_empty(&root->subsys_list));
1197 test_ss = list_entry(root->subsys_list.next,
1198 struct cgroup_subsys, sibling);
1199 if (css) {
Paul Menagebd89aab2007-10-18 23:40:44 -07001200 *css = cgrp->subsys[test_ss->subsys_id];
Paul Menagebbcb81d2007-10-18 23:39:32 -07001201 BUG_ON(!*css);
1202 }
1203 if (subsys_id)
1204 *subsys_id = test_ss->subsys_id;
1205}
1206
Li Zefana043e3b2008-02-23 15:24:09 -08001207/**
1208 * cgroup_attach_task - attach task 'tsk' to cgroup 'cgrp'
1209 * @cgrp: the cgroup the task is attaching to
1210 * @tsk: the task to be attached
Paul Menagebbcb81d2007-10-18 23:39:32 -07001211 *
Li Zefana043e3b2008-02-23 15:24:09 -08001212 * Call holding cgroup_mutex. May take task_lock of
1213 * the task 'tsk' during call.
Paul Menagebbcb81d2007-10-18 23:39:32 -07001214 */
Cliff Wickman956db3c2008-02-07 00:14:43 -08001215int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001216{
1217 int retval = 0;
1218 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07001219 struct cgroup *oldcgrp;
Paul Menage817929e2007-10-18 23:39:36 -07001220 struct css_set *cg = tsk->cgroups;
1221 struct css_set *newcg;
Paul Menagebd89aab2007-10-18 23:40:44 -07001222 struct cgroupfs_root *root = cgrp->root;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001223 int subsys_id;
1224
Paul Menagebd89aab2007-10-18 23:40:44 -07001225 get_first_subsys(cgrp, NULL, &subsys_id);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001226
1227 /* Nothing to do if the task is already in that cgroup */
Paul Menagebd89aab2007-10-18 23:40:44 -07001228 oldcgrp = task_cgroup(tsk, subsys_id);
1229 if (cgrp == oldcgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001230 return 0;
1231
1232 for_each_subsys(root, ss) {
1233 if (ss->can_attach) {
Paul Menagebd89aab2007-10-18 23:40:44 -07001234 retval = ss->can_attach(ss, cgrp, tsk);
Paul Jacksone18f6312008-02-07 00:13:44 -08001235 if (retval)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001236 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001237 }
1238 }
1239
Paul Menage817929e2007-10-18 23:39:36 -07001240 /*
1241 * Locate or allocate a new css_set for this task,
1242 * based on its final set of cgroups
1243 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001244 newcg = find_css_set(cg, cgrp);
Paul Jacksone18f6312008-02-07 00:13:44 -08001245 if (!newcg)
Paul Menage817929e2007-10-18 23:39:36 -07001246 return -ENOMEM;
Paul Menage817929e2007-10-18 23:39:36 -07001247
Paul Menagebbcb81d2007-10-18 23:39:32 -07001248 task_lock(tsk);
1249 if (tsk->flags & PF_EXITING) {
1250 task_unlock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07001251 put_css_set(newcg);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001252 return -ESRCH;
1253 }
Paul Menage817929e2007-10-18 23:39:36 -07001254 rcu_assign_pointer(tsk->cgroups, newcg);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001255 task_unlock(tsk);
1256
Paul Menage817929e2007-10-18 23:39:36 -07001257 /* Update the css_set linked lists if we're using them */
1258 write_lock(&css_set_lock);
1259 if (!list_empty(&tsk->cg_list)) {
1260 list_del(&tsk->cg_list);
1261 list_add(&tsk->cg_list, &newcg->tasks);
1262 }
1263 write_unlock(&css_set_lock);
1264
Paul Menagebbcb81d2007-10-18 23:39:32 -07001265 for_each_subsys(root, ss) {
Paul Jacksone18f6312008-02-07 00:13:44 -08001266 if (ss->attach)
Paul Menagebd89aab2007-10-18 23:40:44 -07001267 ss->attach(ss, cgrp, oldcgrp, tsk);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001268 }
Paul Menagebd89aab2007-10-18 23:40:44 -07001269 set_bit(CGRP_RELEASABLE, &oldcgrp->flags);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001270 synchronize_rcu();
Paul Menage817929e2007-10-18 23:39:36 -07001271 put_css_set(cg);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001272 return 0;
1273}
1274
1275/*
Paul Menageaf351022008-07-25 01:47:01 -07001276 * Attach task with pid 'pid' to cgroup 'cgrp'. Call with cgroup_mutex
1277 * held. May take task_lock of task
Paul Menagebbcb81d2007-10-18 23:39:32 -07001278 */
Paul Menageaf351022008-07-25 01:47:01 -07001279static int attach_task_by_pid(struct cgroup *cgrp, u64 pid)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001280{
Paul Menagebbcb81d2007-10-18 23:39:32 -07001281 struct task_struct *tsk;
1282 int ret;
1283
Paul Menagebbcb81d2007-10-18 23:39:32 -07001284 if (pid) {
1285 rcu_read_lock();
Pavel Emelyanov73507f32008-02-07 00:14:47 -08001286 tsk = find_task_by_vpid(pid);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001287 if (!tsk || tsk->flags & PF_EXITING) {
1288 rcu_read_unlock();
1289 return -ESRCH;
1290 }
1291 get_task_struct(tsk);
1292 rcu_read_unlock();
1293
1294 if ((current->euid) && (current->euid != tsk->uid)
1295 && (current->euid != tsk->suid)) {
1296 put_task_struct(tsk);
1297 return -EACCES;
1298 }
1299 } else {
1300 tsk = current;
1301 get_task_struct(tsk);
1302 }
1303
Cliff Wickman956db3c2008-02-07 00:14:43 -08001304 ret = cgroup_attach_task(cgrp, tsk);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001305 put_task_struct(tsk);
1306 return ret;
1307}
1308
Paul Menageaf351022008-07-25 01:47:01 -07001309static int cgroup_tasks_write(struct cgroup *cgrp, struct cftype *cft, u64 pid)
1310{
1311 int ret;
1312 if (!cgroup_lock_live_group(cgrp))
1313 return -ENODEV;
1314 ret = attach_task_by_pid(cgrp, pid);
1315 cgroup_unlock();
1316 return ret;
1317}
1318
Paul Menageddbcc7e2007-10-18 23:39:30 -07001319/* The various types of files and directories in a cgroup file system */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001320enum cgroup_filetype {
1321 FILE_ROOT,
1322 FILE_DIR,
1323 FILE_TASKLIST,
Paul Menage81a6a5c2007-10-18 23:39:38 -07001324 FILE_NOTIFY_ON_RELEASE,
Paul Menage81a6a5c2007-10-18 23:39:38 -07001325 FILE_RELEASE_AGENT,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001326};
1327
Paul Menagee788e062008-07-25 01:46:59 -07001328/**
1329 * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive.
1330 * @cgrp: the cgroup to be checked for liveness
1331 *
Paul Menage84eea842008-07-25 01:47:00 -07001332 * On success, returns true; the lock should be later released with
1333 * cgroup_unlock(). On failure returns false with no lock held.
Paul Menagee788e062008-07-25 01:46:59 -07001334 */
Paul Menage84eea842008-07-25 01:47:00 -07001335bool cgroup_lock_live_group(struct cgroup *cgrp)
Paul Menagee788e062008-07-25 01:46:59 -07001336{
1337 mutex_lock(&cgroup_mutex);
1338 if (cgroup_is_removed(cgrp)) {
1339 mutex_unlock(&cgroup_mutex);
1340 return false;
1341 }
1342 return true;
1343}
1344
1345static int cgroup_release_agent_write(struct cgroup *cgrp, struct cftype *cft,
1346 const char *buffer)
1347{
1348 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
1349 if (!cgroup_lock_live_group(cgrp))
1350 return -ENODEV;
1351 strcpy(cgrp->root->release_agent_path, buffer);
Paul Menage84eea842008-07-25 01:47:00 -07001352 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07001353 return 0;
1354}
1355
1356static int cgroup_release_agent_show(struct cgroup *cgrp, struct cftype *cft,
1357 struct seq_file *seq)
1358{
1359 if (!cgroup_lock_live_group(cgrp))
1360 return -ENODEV;
1361 seq_puts(seq, cgrp->root->release_agent_path);
1362 seq_putc(seq, '\n');
Paul Menage84eea842008-07-25 01:47:00 -07001363 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07001364 return 0;
1365}
1366
Paul Menage84eea842008-07-25 01:47:00 -07001367/* A buffer size big enough for numbers or short strings */
1368#define CGROUP_LOCAL_BUFFER_SIZE 64
1369
Paul Menagee73d2c62008-04-29 01:00:06 -07001370static ssize_t cgroup_write_X64(struct cgroup *cgrp, struct cftype *cft,
Paul Menagef4c753b2008-04-29 00:59:56 -07001371 struct file *file,
1372 const char __user *userbuf,
1373 size_t nbytes, loff_t *unused_ppos)
Paul Menage355e0c42007-10-18 23:39:33 -07001374{
Paul Menage84eea842008-07-25 01:47:00 -07001375 char buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menage355e0c42007-10-18 23:39:33 -07001376 int retval = 0;
Paul Menage355e0c42007-10-18 23:39:33 -07001377 char *end;
1378
1379 if (!nbytes)
1380 return -EINVAL;
1381 if (nbytes >= sizeof(buffer))
1382 return -E2BIG;
1383 if (copy_from_user(buffer, userbuf, nbytes))
1384 return -EFAULT;
1385
1386 buffer[nbytes] = 0; /* nul-terminate */
Paul Menageb7269df2008-04-29 00:59:59 -07001387 strstrip(buffer);
Paul Menagee73d2c62008-04-29 01:00:06 -07001388 if (cft->write_u64) {
1389 u64 val = simple_strtoull(buffer, &end, 0);
1390 if (*end)
1391 return -EINVAL;
1392 retval = cft->write_u64(cgrp, cft, val);
1393 } else {
1394 s64 val = simple_strtoll(buffer, &end, 0);
1395 if (*end)
1396 return -EINVAL;
1397 retval = cft->write_s64(cgrp, cft, val);
1398 }
Paul Menage355e0c42007-10-18 23:39:33 -07001399 if (!retval)
1400 retval = nbytes;
1401 return retval;
1402}
1403
Paul Menagedb3b1492008-07-25 01:46:58 -07001404static ssize_t cgroup_write_string(struct cgroup *cgrp, struct cftype *cft,
1405 struct file *file,
1406 const char __user *userbuf,
1407 size_t nbytes, loff_t *unused_ppos)
1408{
Paul Menage84eea842008-07-25 01:47:00 -07001409 char local_buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagedb3b1492008-07-25 01:46:58 -07001410 int retval = 0;
1411 size_t max_bytes = cft->max_write_len;
1412 char *buffer = local_buffer;
1413
1414 if (!max_bytes)
1415 max_bytes = sizeof(local_buffer) - 1;
1416 if (nbytes >= max_bytes)
1417 return -E2BIG;
1418 /* Allocate a dynamic buffer if we need one */
1419 if (nbytes >= sizeof(local_buffer)) {
1420 buffer = kmalloc(nbytes + 1, GFP_KERNEL);
1421 if (buffer == NULL)
1422 return -ENOMEM;
1423 }
Li Zefan5a3eb9f2008-07-29 22:33:18 -07001424 if (nbytes && copy_from_user(buffer, userbuf, nbytes)) {
1425 retval = -EFAULT;
1426 goto out;
1427 }
Paul Menagedb3b1492008-07-25 01:46:58 -07001428
1429 buffer[nbytes] = 0; /* nul-terminate */
1430 strstrip(buffer);
1431 retval = cft->write_string(cgrp, cft, buffer);
1432 if (!retval)
1433 retval = nbytes;
Li Zefan5a3eb9f2008-07-29 22:33:18 -07001434out:
Paul Menagedb3b1492008-07-25 01:46:58 -07001435 if (buffer != local_buffer)
1436 kfree(buffer);
1437 return retval;
1438}
1439
Paul Menageddbcc7e2007-10-18 23:39:30 -07001440static ssize_t cgroup_file_write(struct file *file, const char __user *buf,
1441 size_t nbytes, loff_t *ppos)
1442{
1443 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07001444 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001445
Paul Menage8dc4f3e2008-02-07 00:13:45 -08001446 if (!cft || cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001447 return -ENODEV;
Paul Menage355e0c42007-10-18 23:39:33 -07001448 if (cft->write)
Paul Menagebd89aab2007-10-18 23:40:44 -07001449 return cft->write(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07001450 if (cft->write_u64 || cft->write_s64)
1451 return cgroup_write_X64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagedb3b1492008-07-25 01:46:58 -07001452 if (cft->write_string)
1453 return cgroup_write_string(cgrp, cft, file, buf, nbytes, ppos);
Pavel Emelyanovd447ea22008-04-29 01:00:08 -07001454 if (cft->trigger) {
1455 int ret = cft->trigger(cgrp, (unsigned int)cft->private);
1456 return ret ? ret : nbytes;
1457 }
Paul Menage355e0c42007-10-18 23:39:33 -07001458 return -EINVAL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001459}
1460
Paul Menagef4c753b2008-04-29 00:59:56 -07001461static ssize_t cgroup_read_u64(struct cgroup *cgrp, struct cftype *cft,
1462 struct file *file,
1463 char __user *buf, size_t nbytes,
1464 loff_t *ppos)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001465{
Paul Menage84eea842008-07-25 01:47:00 -07001466 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagef4c753b2008-04-29 00:59:56 -07001467 u64 val = cft->read_u64(cgrp, cft);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001468 int len = sprintf(tmp, "%llu\n", (unsigned long long) val);
1469
1470 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
1471}
1472
Paul Menagee73d2c62008-04-29 01:00:06 -07001473static ssize_t cgroup_read_s64(struct cgroup *cgrp, struct cftype *cft,
1474 struct file *file,
1475 char __user *buf, size_t nbytes,
1476 loff_t *ppos)
1477{
Paul Menage84eea842008-07-25 01:47:00 -07001478 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagee73d2c62008-04-29 01:00:06 -07001479 s64 val = cft->read_s64(cgrp, cft);
1480 int len = sprintf(tmp, "%lld\n", (long long) val);
1481
1482 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
1483}
1484
Paul Menageddbcc7e2007-10-18 23:39:30 -07001485static ssize_t cgroup_file_read(struct file *file, char __user *buf,
1486 size_t nbytes, loff_t *ppos)
1487{
1488 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07001489 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001490
Paul Menage8dc4f3e2008-02-07 00:13:45 -08001491 if (!cft || cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001492 return -ENODEV;
1493
1494 if (cft->read)
Paul Menagebd89aab2007-10-18 23:40:44 -07001495 return cft->read(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagef4c753b2008-04-29 00:59:56 -07001496 if (cft->read_u64)
1497 return cgroup_read_u64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07001498 if (cft->read_s64)
1499 return cgroup_read_s64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001500 return -EINVAL;
1501}
1502
Paul Menage91796562008-04-29 01:00:01 -07001503/*
1504 * seqfile ops/methods for returning structured data. Currently just
1505 * supports string->u64 maps, but can be extended in future.
1506 */
1507
1508struct cgroup_seqfile_state {
1509 struct cftype *cft;
1510 struct cgroup *cgroup;
1511};
1512
1513static int cgroup_map_add(struct cgroup_map_cb *cb, const char *key, u64 value)
1514{
1515 struct seq_file *sf = cb->state;
1516 return seq_printf(sf, "%s %llu\n", key, (unsigned long long)value);
1517}
1518
1519static int cgroup_seqfile_show(struct seq_file *m, void *arg)
1520{
1521 struct cgroup_seqfile_state *state = m->private;
1522 struct cftype *cft = state->cft;
Serge E. Hallyn29486df2008-04-29 01:00:14 -07001523 if (cft->read_map) {
1524 struct cgroup_map_cb cb = {
1525 .fill = cgroup_map_add,
1526 .state = m,
1527 };
1528 return cft->read_map(state->cgroup, cft, &cb);
1529 }
1530 return cft->read_seq_string(state->cgroup, cft, m);
Paul Menage91796562008-04-29 01:00:01 -07001531}
1532
Adrian Bunk96930a62008-07-25 19:46:21 -07001533static int cgroup_seqfile_release(struct inode *inode, struct file *file)
Paul Menage91796562008-04-29 01:00:01 -07001534{
1535 struct seq_file *seq = file->private_data;
1536 kfree(seq->private);
1537 return single_release(inode, file);
1538}
1539
1540static struct file_operations cgroup_seqfile_operations = {
1541 .read = seq_read,
Paul Menagee788e062008-07-25 01:46:59 -07001542 .write = cgroup_file_write,
Paul Menage91796562008-04-29 01:00:01 -07001543 .llseek = seq_lseek,
1544 .release = cgroup_seqfile_release,
1545};
1546
Paul Menageddbcc7e2007-10-18 23:39:30 -07001547static int cgroup_file_open(struct inode *inode, struct file *file)
1548{
1549 int err;
1550 struct cftype *cft;
1551
1552 err = generic_file_open(inode, file);
1553 if (err)
1554 return err;
1555
1556 cft = __d_cft(file->f_dentry);
1557 if (!cft)
1558 return -ENODEV;
Serge E. Hallyn29486df2008-04-29 01:00:14 -07001559 if (cft->read_map || cft->read_seq_string) {
Paul Menage91796562008-04-29 01:00:01 -07001560 struct cgroup_seqfile_state *state =
1561 kzalloc(sizeof(*state), GFP_USER);
1562 if (!state)
1563 return -ENOMEM;
1564 state->cft = cft;
1565 state->cgroup = __d_cgrp(file->f_dentry->d_parent);
1566 file->f_op = &cgroup_seqfile_operations;
1567 err = single_open(file, cgroup_seqfile_show, state);
1568 if (err < 0)
1569 kfree(state);
1570 } else if (cft->open)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001571 err = cft->open(inode, file);
1572 else
1573 err = 0;
1574
1575 return err;
1576}
1577
1578static int cgroup_file_release(struct inode *inode, struct file *file)
1579{
1580 struct cftype *cft = __d_cft(file->f_dentry);
1581 if (cft->release)
1582 return cft->release(inode, file);
1583 return 0;
1584}
1585
1586/*
1587 * cgroup_rename - Only allow simple rename of directories in place.
1588 */
1589static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry,
1590 struct inode *new_dir, struct dentry *new_dentry)
1591{
1592 if (!S_ISDIR(old_dentry->d_inode->i_mode))
1593 return -ENOTDIR;
1594 if (new_dentry->d_inode)
1595 return -EEXIST;
1596 if (old_dir != new_dir)
1597 return -EIO;
1598 return simple_rename(old_dir, old_dentry, new_dir, new_dentry);
1599}
1600
1601static struct file_operations cgroup_file_operations = {
1602 .read = cgroup_file_read,
1603 .write = cgroup_file_write,
1604 .llseek = generic_file_llseek,
1605 .open = cgroup_file_open,
1606 .release = cgroup_file_release,
1607};
1608
1609static struct inode_operations cgroup_dir_inode_operations = {
1610 .lookup = simple_lookup,
1611 .mkdir = cgroup_mkdir,
1612 .rmdir = cgroup_rmdir,
1613 .rename = cgroup_rename,
1614};
1615
1616static int cgroup_create_file(struct dentry *dentry, int mode,
1617 struct super_block *sb)
1618{
1619 static struct dentry_operations cgroup_dops = {
1620 .d_iput = cgroup_diput,
1621 };
1622
1623 struct inode *inode;
1624
1625 if (!dentry)
1626 return -ENOENT;
1627 if (dentry->d_inode)
1628 return -EEXIST;
1629
1630 inode = cgroup_new_inode(mode, sb);
1631 if (!inode)
1632 return -ENOMEM;
1633
1634 if (S_ISDIR(mode)) {
1635 inode->i_op = &cgroup_dir_inode_operations;
1636 inode->i_fop = &simple_dir_operations;
1637
1638 /* start off with i_nlink == 2 (for "." entry) */
1639 inc_nlink(inode);
1640
1641 /* start with the directory inode held, so that we can
1642 * populate it without racing with another mkdir */
Paul Menage817929e2007-10-18 23:39:36 -07001643 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001644 } else if (S_ISREG(mode)) {
1645 inode->i_size = 0;
1646 inode->i_fop = &cgroup_file_operations;
1647 }
1648 dentry->d_op = &cgroup_dops;
1649 d_instantiate(dentry, inode);
1650 dget(dentry); /* Extra count - pin the dentry in core */
1651 return 0;
1652}
1653
1654/*
Li Zefana043e3b2008-02-23 15:24:09 -08001655 * cgroup_create_dir - create a directory for an object.
1656 * @cgrp: the cgroup we create the directory for. It must have a valid
1657 * ->parent field. And we are going to fill its ->dentry field.
1658 * @dentry: dentry of the new cgroup
1659 * @mode: mode to set on new directory.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001660 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001661static int cgroup_create_dir(struct cgroup *cgrp, struct dentry *dentry,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001662 int mode)
1663{
1664 struct dentry *parent;
1665 int error = 0;
1666
Paul Menagebd89aab2007-10-18 23:40:44 -07001667 parent = cgrp->parent->dentry;
1668 error = cgroup_create_file(dentry, S_IFDIR | mode, cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001669 if (!error) {
Paul Menagebd89aab2007-10-18 23:40:44 -07001670 dentry->d_fsdata = cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001671 inc_nlink(parent->d_inode);
Paul Menagebd89aab2007-10-18 23:40:44 -07001672 cgrp->dentry = dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001673 dget(dentry);
1674 }
1675 dput(dentry);
1676
1677 return error;
1678}
1679
Paul Menagebd89aab2007-10-18 23:40:44 -07001680int cgroup_add_file(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001681 struct cgroup_subsys *subsys,
1682 const struct cftype *cft)
1683{
Paul Menagebd89aab2007-10-18 23:40:44 -07001684 struct dentry *dir = cgrp->dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001685 struct dentry *dentry;
1686 int error;
1687
1688 char name[MAX_CGROUP_TYPE_NAMELEN + MAX_CFTYPE_NAME + 2] = { 0 };
Paul Menagebd89aab2007-10-18 23:40:44 -07001689 if (subsys && !test_bit(ROOT_NOPREFIX, &cgrp->root->flags)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001690 strcpy(name, subsys->name);
1691 strcat(name, ".");
1692 }
1693 strcat(name, cft->name);
1694 BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex));
1695 dentry = lookup_one_len(name, dir, strlen(name));
1696 if (!IS_ERR(dentry)) {
1697 error = cgroup_create_file(dentry, 0644 | S_IFREG,
Paul Menagebd89aab2007-10-18 23:40:44 -07001698 cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001699 if (!error)
1700 dentry->d_fsdata = (void *)cft;
1701 dput(dentry);
1702 } else
1703 error = PTR_ERR(dentry);
1704 return error;
1705}
1706
Paul Menagebd89aab2007-10-18 23:40:44 -07001707int cgroup_add_files(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001708 struct cgroup_subsys *subsys,
1709 const struct cftype cft[],
1710 int count)
1711{
1712 int i, err;
1713 for (i = 0; i < count; i++) {
Paul Menagebd89aab2007-10-18 23:40:44 -07001714 err = cgroup_add_file(cgrp, subsys, &cft[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001715 if (err)
1716 return err;
1717 }
1718 return 0;
1719}
1720
Li Zefana043e3b2008-02-23 15:24:09 -08001721/**
1722 * cgroup_task_count - count the number of tasks in a cgroup.
1723 * @cgrp: the cgroup in question
1724 *
1725 * Return the number of tasks in the cgroup.
1726 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001727int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001728{
1729 int count = 0;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001730 struct cg_cgroup_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001731
Paul Menage817929e2007-10-18 23:39:36 -07001732 read_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001733 list_for_each_entry(link, &cgrp->css_sets, cgrp_link_list) {
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07001734 count += atomic_read(&link->cg->refcount);
Paul Menage817929e2007-10-18 23:39:36 -07001735 }
1736 read_unlock(&css_set_lock);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001737 return count;
1738}
1739
1740/*
Paul Menage817929e2007-10-18 23:39:36 -07001741 * Advance a list_head iterator. The iterator should be positioned at
1742 * the start of a css_set
1743 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001744static void cgroup_advance_iter(struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -07001745 struct cgroup_iter *it)
1746{
1747 struct list_head *l = it->cg_link;
1748 struct cg_cgroup_link *link;
1749 struct css_set *cg;
1750
1751 /* Advance to the next non-empty css_set */
1752 do {
1753 l = l->next;
Paul Menagebd89aab2007-10-18 23:40:44 -07001754 if (l == &cgrp->css_sets) {
Paul Menage817929e2007-10-18 23:39:36 -07001755 it->cg_link = NULL;
1756 return;
1757 }
Paul Menagebd89aab2007-10-18 23:40:44 -07001758 link = list_entry(l, struct cg_cgroup_link, cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001759 cg = link->cg;
1760 } while (list_empty(&cg->tasks));
1761 it->cg_link = l;
1762 it->task = cg->tasks.next;
1763}
1764
Cliff Wickman31a7df02008-02-07 00:14:42 -08001765/*
1766 * To reduce the fork() overhead for systems that are not actually
1767 * using their cgroups capability, we don't maintain the lists running
1768 * through each css_set to its tasks until we see the list actually
1769 * used - in other words after the first call to cgroup_iter_start().
1770 *
1771 * The tasklist_lock is not held here, as do_each_thread() and
1772 * while_each_thread() are protected by RCU.
1773 */
Adrian Bunk3df91fe2008-04-29 00:59:54 -07001774static void cgroup_enable_task_cg_lists(void)
Cliff Wickman31a7df02008-02-07 00:14:42 -08001775{
1776 struct task_struct *p, *g;
1777 write_lock(&css_set_lock);
1778 use_task_css_set_links = 1;
1779 do_each_thread(g, p) {
1780 task_lock(p);
Li Zefan0e043882008-04-17 11:37:15 +08001781 /*
1782 * We should check if the process is exiting, otherwise
1783 * it will race with cgroup_exit() in that the list
1784 * entry won't be deleted though the process has exited.
1785 */
1786 if (!(p->flags & PF_EXITING) && list_empty(&p->cg_list))
Cliff Wickman31a7df02008-02-07 00:14:42 -08001787 list_add(&p->cg_list, &p->cgroups->tasks);
1788 task_unlock(p);
1789 } while_each_thread(g, p);
1790 write_unlock(&css_set_lock);
1791}
1792
Paul Menagebd89aab2007-10-18 23:40:44 -07001793void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07001794{
1795 /*
1796 * The first time anyone tries to iterate across a cgroup,
1797 * we need to enable the list linking each css_set to its
1798 * tasks, and fix up all existing tasks.
1799 */
Cliff Wickman31a7df02008-02-07 00:14:42 -08001800 if (!use_task_css_set_links)
1801 cgroup_enable_task_cg_lists();
1802
Paul Menage817929e2007-10-18 23:39:36 -07001803 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07001804 it->cg_link = &cgrp->css_sets;
1805 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07001806}
1807
Paul Menagebd89aab2007-10-18 23:40:44 -07001808struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -07001809 struct cgroup_iter *it)
1810{
1811 struct task_struct *res;
1812 struct list_head *l = it->task;
1813
1814 /* If the iterator cg is NULL, we have no tasks */
1815 if (!it->cg_link)
1816 return NULL;
1817 res = list_entry(l, struct task_struct, cg_list);
1818 /* Advance iterator to find next entry */
1819 l = l->next;
1820 if (l == &res->cgroups->tasks) {
1821 /* We reached the end of this task list - move on to
1822 * the next cg_cgroup_link */
Paul Menagebd89aab2007-10-18 23:40:44 -07001823 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07001824 } else {
1825 it->task = l;
1826 }
1827 return res;
1828}
1829
Paul Menagebd89aab2007-10-18 23:40:44 -07001830void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07001831{
1832 read_unlock(&css_set_lock);
1833}
1834
Cliff Wickman31a7df02008-02-07 00:14:42 -08001835static inline int started_after_time(struct task_struct *t1,
1836 struct timespec *time,
1837 struct task_struct *t2)
1838{
1839 int start_diff = timespec_compare(&t1->start_time, time);
1840 if (start_diff > 0) {
1841 return 1;
1842 } else if (start_diff < 0) {
1843 return 0;
1844 } else {
1845 /*
1846 * Arbitrarily, if two processes started at the same
1847 * time, we'll say that the lower pointer value
1848 * started first. Note that t2 may have exited by now
1849 * so this may not be a valid pointer any longer, but
1850 * that's fine - it still serves to distinguish
1851 * between two tasks started (effectively) simultaneously.
1852 */
1853 return t1 > t2;
1854 }
1855}
1856
1857/*
1858 * This function is a callback from heap_insert() and is used to order
1859 * the heap.
1860 * In this case we order the heap in descending task start time.
1861 */
1862static inline int started_after(void *p1, void *p2)
1863{
1864 struct task_struct *t1 = p1;
1865 struct task_struct *t2 = p2;
1866 return started_after_time(t1, &t2->start_time, t2);
1867}
1868
1869/**
1870 * cgroup_scan_tasks - iterate though all the tasks in a cgroup
1871 * @scan: struct cgroup_scanner containing arguments for the scan
1872 *
1873 * Arguments include pointers to callback functions test_task() and
1874 * process_task().
1875 * Iterate through all the tasks in a cgroup, calling test_task() for each,
1876 * and if it returns true, call process_task() for it also.
1877 * The test_task pointer may be NULL, meaning always true (select all tasks).
1878 * Effectively duplicates cgroup_iter_{start,next,end}()
1879 * but does not lock css_set_lock for the call to process_task().
1880 * The struct cgroup_scanner may be embedded in any structure of the caller's
1881 * creation.
1882 * It is guaranteed that process_task() will act on every task that
1883 * is a member of the cgroup for the duration of this call. This
1884 * function may or may not call process_task() for tasks that exit
1885 * or move to a different cgroup during the call, or are forked or
1886 * move into the cgroup during the call.
1887 *
1888 * Note that test_task() may be called with locks held, and may in some
1889 * situations be called multiple times for the same task, so it should
1890 * be cheap.
1891 * If the heap pointer in the struct cgroup_scanner is non-NULL, a heap has been
1892 * pre-allocated and will be used for heap operations (and its "gt" member will
1893 * be overwritten), else a temporary heap will be used (allocation of which
1894 * may cause this function to fail).
1895 */
1896int cgroup_scan_tasks(struct cgroup_scanner *scan)
1897{
1898 int retval, i;
1899 struct cgroup_iter it;
1900 struct task_struct *p, *dropped;
1901 /* Never dereference latest_task, since it's not refcounted */
1902 struct task_struct *latest_task = NULL;
1903 struct ptr_heap tmp_heap;
1904 struct ptr_heap *heap;
1905 struct timespec latest_time = { 0, 0 };
1906
1907 if (scan->heap) {
1908 /* The caller supplied our heap and pre-allocated its memory */
1909 heap = scan->heap;
1910 heap->gt = &started_after;
1911 } else {
1912 /* We need to allocate our own heap memory */
1913 heap = &tmp_heap;
1914 retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after);
1915 if (retval)
1916 /* cannot allocate the heap */
1917 return retval;
1918 }
1919
1920 again:
1921 /*
1922 * Scan tasks in the cgroup, using the scanner's "test_task" callback
1923 * to determine which are of interest, and using the scanner's
1924 * "process_task" callback to process any of them that need an update.
1925 * Since we don't want to hold any locks during the task updates,
1926 * gather tasks to be processed in a heap structure.
1927 * The heap is sorted by descending task start time.
1928 * If the statically-sized heap fills up, we overflow tasks that
1929 * started later, and in future iterations only consider tasks that
1930 * started after the latest task in the previous pass. This
1931 * guarantees forward progress and that we don't miss any tasks.
1932 */
1933 heap->size = 0;
1934 cgroup_iter_start(scan->cg, &it);
1935 while ((p = cgroup_iter_next(scan->cg, &it))) {
1936 /*
1937 * Only affect tasks that qualify per the caller's callback,
1938 * if he provided one
1939 */
1940 if (scan->test_task && !scan->test_task(p, scan))
1941 continue;
1942 /*
1943 * Only process tasks that started after the last task
1944 * we processed
1945 */
1946 if (!started_after_time(p, &latest_time, latest_task))
1947 continue;
1948 dropped = heap_insert(heap, p);
1949 if (dropped == NULL) {
1950 /*
1951 * The new task was inserted; the heap wasn't
1952 * previously full
1953 */
1954 get_task_struct(p);
1955 } else if (dropped != p) {
1956 /*
1957 * The new task was inserted, and pushed out a
1958 * different task
1959 */
1960 get_task_struct(p);
1961 put_task_struct(dropped);
1962 }
1963 /*
1964 * Else the new task was newer than anything already in
1965 * the heap and wasn't inserted
1966 */
1967 }
1968 cgroup_iter_end(scan->cg, &it);
1969
1970 if (heap->size) {
1971 for (i = 0; i < heap->size; i++) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07001972 struct task_struct *q = heap->ptrs[i];
Cliff Wickman31a7df02008-02-07 00:14:42 -08001973 if (i == 0) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07001974 latest_time = q->start_time;
1975 latest_task = q;
Cliff Wickman31a7df02008-02-07 00:14:42 -08001976 }
1977 /* Process the task per the caller's callback */
Paul Jackson4fe91d52008-04-29 00:59:55 -07001978 scan->process_task(q, scan);
1979 put_task_struct(q);
Cliff Wickman31a7df02008-02-07 00:14:42 -08001980 }
1981 /*
1982 * If we had to process any tasks at all, scan again
1983 * in case some of them were in the middle of forking
1984 * children that didn't get processed.
1985 * Not the most efficient way to do it, but it avoids
1986 * having to take callback_mutex in the fork path
1987 */
1988 goto again;
1989 }
1990 if (heap == &tmp_heap)
1991 heap_free(&tmp_heap);
1992 return 0;
1993}
1994
Paul Menage817929e2007-10-18 23:39:36 -07001995/*
Paul Menagebbcb81d2007-10-18 23:39:32 -07001996 * Stuff for reading the 'tasks' file.
1997 *
1998 * Reading this file can return large amounts of data if a cgroup has
1999 * *lots* of attached tasks. So it may need several calls to read(),
2000 * but we cannot guarantee that the information we produce is correct
2001 * unless we produce it entirely atomically.
2002 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07002003 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07002004
2005/*
2006 * Load into 'pidarray' up to 'npids' of the tasks using cgroup
Paul Menagebd89aab2007-10-18 23:40:44 -07002007 * 'cgrp'. Return actual number of pids loaded. No need to
Paul Menagebbcb81d2007-10-18 23:39:32 -07002008 * task_lock(p) when reading out p->cgroup, since we're in an RCU
2009 * read section, so the css_set can't go away, and is
2010 * immutable after creation.
2011 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002012static int pid_array_load(pid_t *pidarray, int npids, struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002013{
2014 int n = 0;
Paul Menage817929e2007-10-18 23:39:36 -07002015 struct cgroup_iter it;
2016 struct task_struct *tsk;
Paul Menagebd89aab2007-10-18 23:40:44 -07002017 cgroup_iter_start(cgrp, &it);
2018 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Paul Menage817929e2007-10-18 23:39:36 -07002019 if (unlikely(n == npids))
2020 break;
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002021 pidarray[n++] = task_pid_vnr(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07002022 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002023 cgroup_iter_end(cgrp, &it);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002024 return n;
2025}
2026
Balbir Singh846c7bb2007-10-18 23:39:44 -07002027/**
Li Zefana043e3b2008-02-23 15:24:09 -08002028 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07002029 * @stats: cgroupstats to fill information into
2030 * @dentry: A dentry entry belonging to the cgroup for which stats have
2031 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08002032 *
2033 * Build and fill cgroupstats so that taskstats can export it to user
2034 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07002035 */
2036int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
2037{
2038 int ret = -EINVAL;
Paul Menagebd89aab2007-10-18 23:40:44 -07002039 struct cgroup *cgrp;
Balbir Singh846c7bb2007-10-18 23:39:44 -07002040 struct cgroup_iter it;
2041 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08002042
Balbir Singh846c7bb2007-10-18 23:39:44 -07002043 /*
Li Zefan33d283b2008-11-19 15:36:48 -08002044 * Validate dentry by checking the superblock operations,
2045 * and make sure it's a directory.
Balbir Singh846c7bb2007-10-18 23:39:44 -07002046 */
Li Zefan33d283b2008-11-19 15:36:48 -08002047 if (dentry->d_sb->s_op != &cgroup_ops ||
2048 !S_ISDIR(dentry->d_inode->i_mode))
Balbir Singh846c7bb2007-10-18 23:39:44 -07002049 goto err;
2050
2051 ret = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07002052 cgrp = dentry->d_fsdata;
Balbir Singh846c7bb2007-10-18 23:39:44 -07002053 rcu_read_lock();
2054
Paul Menagebd89aab2007-10-18 23:40:44 -07002055 cgroup_iter_start(cgrp, &it);
2056 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07002057 switch (tsk->state) {
2058 case TASK_RUNNING:
2059 stats->nr_running++;
2060 break;
2061 case TASK_INTERRUPTIBLE:
2062 stats->nr_sleeping++;
2063 break;
2064 case TASK_UNINTERRUPTIBLE:
2065 stats->nr_uninterruptible++;
2066 break;
2067 case TASK_STOPPED:
2068 stats->nr_stopped++;
2069 break;
2070 default:
2071 if (delayacct_is_task_waiting_on_io(tsk))
2072 stats->nr_io_wait++;
2073 break;
2074 }
2075 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002076 cgroup_iter_end(cgrp, &it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07002077
2078 rcu_read_unlock();
2079err:
2080 return ret;
2081}
2082
Paul Menagebbcb81d2007-10-18 23:39:32 -07002083static int cmppid(const void *a, const void *b)
2084{
2085 return *(pid_t *)a - *(pid_t *)b;
2086}
2087
Paul Menagebbcb81d2007-10-18 23:39:32 -07002088
Paul Menagecc31edc2008-10-18 20:28:04 -07002089/*
2090 * seq_file methods for the "tasks" file. The seq_file position is the
2091 * next pid to display; the seq_file iterator is a pointer to the pid
2092 * in the cgroup->tasks_pids array.
2093 */
2094
2095static void *cgroup_tasks_start(struct seq_file *s, loff_t *pos)
2096{
2097 /*
2098 * Initially we receive a position value that corresponds to
2099 * one more than the last pid shown (or 0 on the first call or
2100 * after a seek to the start). Use a binary-search to find the
2101 * next pid to display, if any
2102 */
2103 struct cgroup *cgrp = s->private;
2104 int index = 0, pid = *pos;
2105 int *iter;
2106
2107 down_read(&cgrp->pids_mutex);
2108 if (pid) {
2109 int end = cgrp->pids_length;
Stephen Rothwell20777762008-10-21 16:11:20 +11002110
Paul Menagecc31edc2008-10-18 20:28:04 -07002111 while (index < end) {
2112 int mid = (index + end) / 2;
2113 if (cgrp->tasks_pids[mid] == pid) {
2114 index = mid;
2115 break;
2116 } else if (cgrp->tasks_pids[mid] <= pid)
2117 index = mid + 1;
2118 else
2119 end = mid;
2120 }
2121 }
2122 /* If we're off the end of the array, we're done */
2123 if (index >= cgrp->pids_length)
2124 return NULL;
2125 /* Update the abstract position to be the actual pid that we found */
2126 iter = cgrp->tasks_pids + index;
2127 *pos = *iter;
2128 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002129}
2130
Paul Menagecc31edc2008-10-18 20:28:04 -07002131static void cgroup_tasks_stop(struct seq_file *s, void *v)
2132{
2133 struct cgroup *cgrp = s->private;
2134 up_read(&cgrp->pids_mutex);
2135}
2136
2137static void *cgroup_tasks_next(struct seq_file *s, void *v, loff_t *pos)
2138{
2139 struct cgroup *cgrp = s->private;
2140 int *p = v;
2141 int *end = cgrp->tasks_pids + cgrp->pids_length;
2142
2143 /*
2144 * Advance to the next pid in the array. If this goes off the
2145 * end, we're done
2146 */
2147 p++;
2148 if (p >= end) {
2149 return NULL;
2150 } else {
2151 *pos = *p;
2152 return p;
2153 }
2154}
2155
2156static int cgroup_tasks_show(struct seq_file *s, void *v)
2157{
2158 return seq_printf(s, "%d\n", *(int *)v);
2159}
2160
2161static struct seq_operations cgroup_tasks_seq_operations = {
2162 .start = cgroup_tasks_start,
2163 .stop = cgroup_tasks_stop,
2164 .next = cgroup_tasks_next,
2165 .show = cgroup_tasks_show,
2166};
2167
2168static void release_cgroup_pid_array(struct cgroup *cgrp)
2169{
2170 down_write(&cgrp->pids_mutex);
2171 BUG_ON(!cgrp->pids_use_count);
2172 if (!--cgrp->pids_use_count) {
2173 kfree(cgrp->tasks_pids);
2174 cgrp->tasks_pids = NULL;
2175 cgrp->pids_length = 0;
2176 }
2177 up_write(&cgrp->pids_mutex);
2178}
2179
2180static int cgroup_tasks_release(struct inode *inode, struct file *file)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002181{
Paul Menagebd89aab2007-10-18 23:40:44 -07002182 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002183
2184 if (!(file->f_mode & FMODE_READ))
2185 return 0;
2186
Paul Menagecc31edc2008-10-18 20:28:04 -07002187 release_cgroup_pid_array(cgrp);
2188 return seq_release(inode, file);
2189}
2190
2191static struct file_operations cgroup_tasks_operations = {
2192 .read = seq_read,
2193 .llseek = seq_lseek,
2194 .write = cgroup_file_write,
2195 .release = cgroup_tasks_release,
2196};
2197
2198/*
2199 * Handle an open on 'tasks' file. Prepare an array containing the
2200 * process id's of tasks currently attached to the cgroup being opened.
2201 */
2202
2203static int cgroup_tasks_open(struct inode *unused, struct file *file)
2204{
2205 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
2206 pid_t *pidarray;
2207 int npids;
2208 int retval;
2209
2210 /* Nothing to do for write-only files */
2211 if (!(file->f_mode & FMODE_READ))
2212 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002213
2214 /*
2215 * If cgroup gets more users after we read count, we won't have
2216 * enough space - tough. This race is indistinguishable to the
2217 * caller from the case that the additional cgroup users didn't
2218 * show up until sometime later on.
2219 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002220 npids = cgroup_task_count(cgrp);
Paul Menagecc31edc2008-10-18 20:28:04 -07002221 pidarray = kmalloc(npids * sizeof(pid_t), GFP_KERNEL);
2222 if (!pidarray)
2223 return -ENOMEM;
2224 npids = pid_array_load(pidarray, npids, cgrp);
2225 sort(pidarray, npids, sizeof(pid_t), cmppid, NULL);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002226
Paul Menagecc31edc2008-10-18 20:28:04 -07002227 /*
2228 * Store the array in the cgroup, freeing the old
2229 * array if necessary
2230 */
2231 down_write(&cgrp->pids_mutex);
2232 kfree(cgrp->tasks_pids);
2233 cgrp->tasks_pids = pidarray;
2234 cgrp->pids_length = npids;
2235 cgrp->pids_use_count++;
2236 up_write(&cgrp->pids_mutex);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002237
Paul Menagecc31edc2008-10-18 20:28:04 -07002238 file->f_op = &cgroup_tasks_operations;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002239
Paul Menagecc31edc2008-10-18 20:28:04 -07002240 retval = seq_open(file, &cgroup_tasks_seq_operations);
2241 if (retval) {
2242 release_cgroup_pid_array(cgrp);
2243 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002244 }
Paul Menagecc31edc2008-10-18 20:28:04 -07002245 ((struct seq_file *)file->private_data)->private = cgrp;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002246 return 0;
2247}
2248
Paul Menagebd89aab2007-10-18 23:40:44 -07002249static u64 cgroup_read_notify_on_release(struct cgroup *cgrp,
Paul Menage81a6a5c2007-10-18 23:39:38 -07002250 struct cftype *cft)
2251{
Paul Menagebd89aab2007-10-18 23:40:44 -07002252 return notify_on_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002253}
2254
Paul Menage6379c102008-07-25 01:47:01 -07002255static int cgroup_write_notify_on_release(struct cgroup *cgrp,
2256 struct cftype *cft,
2257 u64 val)
2258{
2259 clear_bit(CGRP_RELEASABLE, &cgrp->flags);
2260 if (val)
2261 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
2262 else
2263 clear_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
2264 return 0;
2265}
2266
Paul Menagebbcb81d2007-10-18 23:39:32 -07002267/*
2268 * for the common functions, 'private' gives the type of file
2269 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07002270static struct cftype files[] = {
2271 {
2272 .name = "tasks",
2273 .open = cgroup_tasks_open,
Paul Menageaf351022008-07-25 01:47:01 -07002274 .write_u64 = cgroup_tasks_write,
Paul Menage81a6a5c2007-10-18 23:39:38 -07002275 .release = cgroup_tasks_release,
2276 .private = FILE_TASKLIST,
2277 },
2278
2279 {
2280 .name = "notify_on_release",
Paul Menagef4c753b2008-04-29 00:59:56 -07002281 .read_u64 = cgroup_read_notify_on_release,
Paul Menage6379c102008-07-25 01:47:01 -07002282 .write_u64 = cgroup_write_notify_on_release,
Paul Menage81a6a5c2007-10-18 23:39:38 -07002283 .private = FILE_NOTIFY_ON_RELEASE,
2284 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07002285};
2286
2287static struct cftype cft_release_agent = {
2288 .name = "release_agent",
Paul Menagee788e062008-07-25 01:46:59 -07002289 .read_seq_string = cgroup_release_agent_show,
2290 .write_string = cgroup_release_agent_write,
2291 .max_write_len = PATH_MAX,
Paul Menage81a6a5c2007-10-18 23:39:38 -07002292 .private = FILE_RELEASE_AGENT,
Paul Menagebbcb81d2007-10-18 23:39:32 -07002293};
2294
Paul Menagebd89aab2007-10-18 23:40:44 -07002295static int cgroup_populate_dir(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002296{
2297 int err;
2298 struct cgroup_subsys *ss;
2299
2300 /* First clear out any existing files */
Paul Menagebd89aab2007-10-18 23:40:44 -07002301 cgroup_clear_directory(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002302
Paul Menagebd89aab2007-10-18 23:40:44 -07002303 err = cgroup_add_files(cgrp, NULL, files, ARRAY_SIZE(files));
Paul Menagebbcb81d2007-10-18 23:39:32 -07002304 if (err < 0)
2305 return err;
2306
Paul Menagebd89aab2007-10-18 23:40:44 -07002307 if (cgrp == cgrp->top_cgroup) {
2308 if ((err = cgroup_add_file(cgrp, NULL, &cft_release_agent)) < 0)
Paul Menage81a6a5c2007-10-18 23:39:38 -07002309 return err;
2310 }
2311
Paul Menagebd89aab2007-10-18 23:40:44 -07002312 for_each_subsys(cgrp->root, ss) {
2313 if (ss->populate && (err = ss->populate(ss, cgrp)) < 0)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002314 return err;
2315 }
2316
2317 return 0;
2318}
2319
2320static void init_cgroup_css(struct cgroup_subsys_state *css,
2321 struct cgroup_subsys *ss,
Paul Menagebd89aab2007-10-18 23:40:44 -07002322 struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002323{
Paul Menagebd89aab2007-10-18 23:40:44 -07002324 css->cgroup = cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002325 atomic_set(&css->refcnt, 0);
2326 css->flags = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07002327 if (cgrp == dummytop)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002328 set_bit(CSS_ROOT, &css->flags);
Paul Menagebd89aab2007-10-18 23:40:44 -07002329 BUG_ON(cgrp->subsys[ss->subsys_id]);
2330 cgrp->subsys[ss->subsys_id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002331}
2332
2333/*
Li Zefana043e3b2008-02-23 15:24:09 -08002334 * cgroup_create - create a cgroup
2335 * @parent: cgroup that will be parent of the new cgroup
2336 * @dentry: dentry of the new cgroup
2337 * @mode: mode to set on new inode
Paul Menageddbcc7e2007-10-18 23:39:30 -07002338 *
Li Zefana043e3b2008-02-23 15:24:09 -08002339 * Must be called with the mutex on the parent inode held
Paul Menageddbcc7e2007-10-18 23:39:30 -07002340 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07002341static long cgroup_create(struct cgroup *parent, struct dentry *dentry,
2342 int mode)
2343{
Paul Menagebd89aab2007-10-18 23:40:44 -07002344 struct cgroup *cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002345 struct cgroupfs_root *root = parent->root;
2346 int err = 0;
2347 struct cgroup_subsys *ss;
2348 struct super_block *sb = root->sb;
2349
Paul Menagebd89aab2007-10-18 23:40:44 -07002350 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
2351 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002352 return -ENOMEM;
2353
2354 /* Grab a reference on the superblock so the hierarchy doesn't
2355 * get deleted on unmount if there are child cgroups. This
2356 * can be done outside cgroup_mutex, since the sb can't
2357 * disappear while someone has an open control file on the
2358 * fs */
2359 atomic_inc(&sb->s_active);
2360
2361 mutex_lock(&cgroup_mutex);
2362
Paul Menagecc31edc2008-10-18 20:28:04 -07002363 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002364
Paul Menagebd89aab2007-10-18 23:40:44 -07002365 cgrp->parent = parent;
2366 cgrp->root = parent->root;
2367 cgrp->top_cgroup = parent->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002368
Li Zefanb6abdb02008-03-04 14:28:19 -08002369 if (notify_on_release(parent))
2370 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
2371
Paul Menageddbcc7e2007-10-18 23:39:30 -07002372 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002373 struct cgroup_subsys_state *css = ss->create(ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002374 if (IS_ERR(css)) {
2375 err = PTR_ERR(css);
2376 goto err_destroy;
2377 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002378 init_cgroup_css(css, ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002379 }
2380
Paul Menagebd89aab2007-10-18 23:40:44 -07002381 list_add(&cgrp->sibling, &cgrp->parent->children);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002382 root->number_of_cgroups++;
2383
Paul Menagebd89aab2007-10-18 23:40:44 -07002384 err = cgroup_create_dir(cgrp, dentry, mode);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002385 if (err < 0)
2386 goto err_remove;
2387
2388 /* The cgroup directory was pre-locked for us */
Paul Menagebd89aab2007-10-18 23:40:44 -07002389 BUG_ON(!mutex_is_locked(&cgrp->dentry->d_inode->i_mutex));
Paul Menageddbcc7e2007-10-18 23:39:30 -07002390
Paul Menagebd89aab2007-10-18 23:40:44 -07002391 err = cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002392 /* If err < 0, we have a half-filled directory - oh well ;) */
2393
2394 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07002395 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002396
2397 return 0;
2398
2399 err_remove:
2400
Paul Menagebd89aab2007-10-18 23:40:44 -07002401 list_del(&cgrp->sibling);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002402 root->number_of_cgroups--;
2403
2404 err_destroy:
2405
2406 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002407 if (cgrp->subsys[ss->subsys_id])
2408 ss->destroy(ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002409 }
2410
2411 mutex_unlock(&cgroup_mutex);
2412
2413 /* Release the reference count that we took on the superblock */
2414 deactivate_super(sb);
2415
Paul Menagebd89aab2007-10-18 23:40:44 -07002416 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002417 return err;
2418}
2419
2420static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2421{
2422 struct cgroup *c_parent = dentry->d_parent->d_fsdata;
2423
2424 /* the vfs holds inode->i_mutex already */
2425 return cgroup_create(c_parent, dentry, mode | S_IFDIR);
2426}
2427
Li Zefan55b6fd02008-07-29 22:33:20 -07002428static int cgroup_has_css_refs(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07002429{
2430 /* Check the reference count on each subsystem. Since we
2431 * already established that there are no tasks in the
2432 * cgroup, if the css refcount is also 0, then there should
2433 * be no outstanding references, so the subsystem is safe to
2434 * destroy. We scan across all subsystems rather than using
2435 * the per-hierarchy linked list of mounted subsystems since
2436 * we can be called via check_for_release() with no
2437 * synchronization other than RCU, and the subsystem linked
2438 * list isn't RCU-safe */
2439 int i;
2440 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2441 struct cgroup_subsys *ss = subsys[i];
2442 struct cgroup_subsys_state *css;
2443 /* Skip subsystems not in this hierarchy */
Paul Menagebd89aab2007-10-18 23:40:44 -07002444 if (ss->root != cgrp->root)
Paul Menage81a6a5c2007-10-18 23:39:38 -07002445 continue;
Paul Menagebd89aab2007-10-18 23:40:44 -07002446 css = cgrp->subsys[ss->subsys_id];
Paul Menage81a6a5c2007-10-18 23:39:38 -07002447 /* When called from check_for_release() it's possible
2448 * that by this point the cgroup has been removed
2449 * and the css deleted. But a false-positive doesn't
2450 * matter, since it can only happen if the cgroup
2451 * has been deleted and hence no longer needs the
2452 * release agent to be called anyway. */
Paul Jacksone18f6312008-02-07 00:13:44 -08002453 if (css && atomic_read(&css->refcnt))
Paul Menage81a6a5c2007-10-18 23:39:38 -07002454 return 1;
Paul Menage81a6a5c2007-10-18 23:39:38 -07002455 }
2456 return 0;
2457}
2458
Paul Menageddbcc7e2007-10-18 23:39:30 -07002459static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry)
2460{
Paul Menagebd89aab2007-10-18 23:40:44 -07002461 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002462 struct dentry *d;
2463 struct cgroup *parent;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002464 struct super_block *sb;
2465 struct cgroupfs_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002466
2467 /* the vfs holds both inode->i_mutex already */
2468
2469 mutex_lock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07002470 if (atomic_read(&cgrp->count) != 0) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002471 mutex_unlock(&cgroup_mutex);
2472 return -EBUSY;
2473 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002474 if (!list_empty(&cgrp->children)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002475 mutex_unlock(&cgroup_mutex);
2476 return -EBUSY;
2477 }
KAMEZAWA Hiroyuki3fa59df2008-11-19 15:36:34 -08002478 mutex_unlock(&cgroup_mutex);
Li Zefana043e3b2008-02-23 15:24:09 -08002479
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08002480 /*
Li Zefana043e3b2008-02-23 15:24:09 -08002481 * Call pre_destroy handlers of subsys. Notify subsystems
2482 * that rmdir() request comes.
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08002483 */
2484 cgroup_call_pre_destroy(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002485
KAMEZAWA Hiroyuki3fa59df2008-11-19 15:36:34 -08002486 mutex_lock(&cgroup_mutex);
2487 parent = cgrp->parent;
2488 root = cgrp->root;
2489 sb = root->sb;
2490
2491 if (atomic_read(&cgrp->count)
2492 || !list_empty(&cgrp->children)
2493 || cgroup_has_css_refs(cgrp)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002494 mutex_unlock(&cgroup_mutex);
2495 return -EBUSY;
2496 }
2497
Paul Menage81a6a5c2007-10-18 23:39:38 -07002498 spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07002499 set_bit(CGRP_REMOVED, &cgrp->flags);
2500 if (!list_empty(&cgrp->release_list))
2501 list_del(&cgrp->release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002502 spin_unlock(&release_list_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002503 /* delete my sibling from parent->children */
Paul Menagebd89aab2007-10-18 23:40:44 -07002504 list_del(&cgrp->sibling);
2505 spin_lock(&cgrp->dentry->d_lock);
2506 d = dget(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002507 spin_unlock(&d->d_lock);
2508
2509 cgroup_d_remove_dir(d);
2510 dput(d);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002511
Paul Menagebd89aab2007-10-18 23:40:44 -07002512 set_bit(CGRP_RELEASABLE, &parent->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002513 check_for_release(parent);
2514
Paul Menageddbcc7e2007-10-18 23:39:30 -07002515 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002516 return 0;
2517}
2518
Li Zefan06a11922008-04-29 01:00:07 -07002519static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002520{
Paul Menageddbcc7e2007-10-18 23:39:30 -07002521 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08002522
2523 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002524
2525 /* Create the top cgroup state for this subsystem */
2526 ss->root = &rootnode;
2527 css = ss->create(ss, dummytop);
2528 /* We don't handle early failures gracefully */
2529 BUG_ON(IS_ERR(css));
2530 init_cgroup_css(css, ss, dummytop);
2531
Li Zefane8d55fd2008-04-29 01:00:13 -07002532 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07002533 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07002534 * newly registered, all tasks and hence the
2535 * init_css_set is in the subsystem's top cgroup. */
2536 init_css_set.subsys[ss->subsys_id] = dummytop->subsys[ss->subsys_id];
Paul Menageddbcc7e2007-10-18 23:39:30 -07002537
2538 need_forkexit_callback |= ss->fork || ss->exit;
Balbir Singhcf475ad2008-04-29 01:00:16 -07002539 need_mm_owner_callback |= !!ss->mm_owner_changed;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002540
Li Zefane8d55fd2008-04-29 01:00:13 -07002541 /* At system boot, before all subsystems have been
2542 * registered, no tasks have been forked, so we don't
2543 * need to invoke fork callbacks here. */
2544 BUG_ON(!list_empty(&init_task.tasks));
2545
Paul Menageddbcc7e2007-10-18 23:39:30 -07002546 ss->active = 1;
2547}
2548
2549/**
Li Zefana043e3b2008-02-23 15:24:09 -08002550 * cgroup_init_early - cgroup initialization at system boot
2551 *
2552 * Initialize cgroups at system boot, and initialize any
2553 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07002554 */
2555int __init cgroup_init_early(void)
2556{
2557 int i;
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07002558 atomic_set(&init_css_set.refcount, 1);
Paul Menage817929e2007-10-18 23:39:36 -07002559 INIT_LIST_HEAD(&init_css_set.cg_links);
2560 INIT_LIST_HEAD(&init_css_set.tasks);
Li Zefan472b1052008-04-29 01:00:11 -07002561 INIT_HLIST_NODE(&init_css_set.hlist);
Paul Menage817929e2007-10-18 23:39:36 -07002562 css_set_count = 1;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002563 init_cgroup_root(&rootnode);
2564 list_add(&rootnode.root_list, &roots);
Paul Menage817929e2007-10-18 23:39:36 -07002565 root_count = 1;
2566 init_task.cgroups = &init_css_set;
2567
2568 init_css_set_link.cg = &init_css_set;
Paul Menagebd89aab2007-10-18 23:40:44 -07002569 list_add(&init_css_set_link.cgrp_link_list,
Paul Menage817929e2007-10-18 23:39:36 -07002570 &rootnode.top_cgroup.css_sets);
2571 list_add(&init_css_set_link.cg_link_list,
2572 &init_css_set.cg_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002573
Li Zefan472b1052008-04-29 01:00:11 -07002574 for (i = 0; i < CSS_SET_TABLE_SIZE; i++)
2575 INIT_HLIST_HEAD(&css_set_table[i]);
2576
Paul Menageddbcc7e2007-10-18 23:39:30 -07002577 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2578 struct cgroup_subsys *ss = subsys[i];
2579
2580 BUG_ON(!ss->name);
2581 BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN);
2582 BUG_ON(!ss->create);
2583 BUG_ON(!ss->destroy);
2584 if (ss->subsys_id != i) {
Diego Callejacfe36bd2007-11-14 16:58:54 -08002585 printk(KERN_ERR "cgroup: Subsys %s id == %d\n",
Paul Menageddbcc7e2007-10-18 23:39:30 -07002586 ss->name, ss->subsys_id);
2587 BUG();
2588 }
2589
2590 if (ss->early_init)
2591 cgroup_init_subsys(ss);
2592 }
2593 return 0;
2594}
2595
2596/**
Li Zefana043e3b2008-02-23 15:24:09 -08002597 * cgroup_init - cgroup initialization
2598 *
2599 * Register cgroup filesystem and /proc file, and initialize
2600 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07002601 */
2602int __init cgroup_init(void)
2603{
2604 int err;
2605 int i;
Li Zefan472b1052008-04-29 01:00:11 -07002606 struct hlist_head *hhead;
Paul Menagea4243162007-10-18 23:39:35 -07002607
2608 err = bdi_init(&cgroup_backing_dev_info);
2609 if (err)
2610 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002611
2612 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2613 struct cgroup_subsys *ss = subsys[i];
2614 if (!ss->early_init)
2615 cgroup_init_subsys(ss);
2616 }
2617
Li Zefan472b1052008-04-29 01:00:11 -07002618 /* Add init_css_set to the hash table */
2619 hhead = css_set_hash(init_css_set.subsys);
2620 hlist_add_head(&init_css_set.hlist, hhead);
2621
Paul Menageddbcc7e2007-10-18 23:39:30 -07002622 err = register_filesystem(&cgroup_fs_type);
2623 if (err < 0)
2624 goto out;
2625
Li Zefan46ae2202008-04-29 01:00:08 -07002626 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Paul Menagea4243162007-10-18 23:39:35 -07002627
Paul Menageddbcc7e2007-10-18 23:39:30 -07002628out:
Paul Menagea4243162007-10-18 23:39:35 -07002629 if (err)
2630 bdi_destroy(&cgroup_backing_dev_info);
2631
Paul Menageddbcc7e2007-10-18 23:39:30 -07002632 return err;
2633}
Paul Menageb4f48b62007-10-18 23:39:33 -07002634
Paul Menagea4243162007-10-18 23:39:35 -07002635/*
2636 * proc_cgroup_show()
2637 * - Print task's cgroup paths into seq_file, one line for each hierarchy
2638 * - Used for /proc/<pid>/cgroup.
2639 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
2640 * doesn't really matter if tsk->cgroup changes after we read it,
Cliff Wickman956db3c2008-02-07 00:14:43 -08002641 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
Paul Menagea4243162007-10-18 23:39:35 -07002642 * anyway. No need to check that tsk->cgroup != NULL, thanks to
2643 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
2644 * cgroup to top_cgroup.
2645 */
2646
2647/* TODO: Use a proper seq_file iterator */
2648static int proc_cgroup_show(struct seq_file *m, void *v)
2649{
2650 struct pid *pid;
2651 struct task_struct *tsk;
2652 char *buf;
2653 int retval;
2654 struct cgroupfs_root *root;
2655
2656 retval = -ENOMEM;
2657 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
2658 if (!buf)
2659 goto out;
2660
2661 retval = -ESRCH;
2662 pid = m->private;
2663 tsk = get_pid_task(pid, PIDTYPE_PID);
2664 if (!tsk)
2665 goto out_free;
2666
2667 retval = 0;
2668
2669 mutex_lock(&cgroup_mutex);
2670
2671 for_each_root(root) {
2672 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07002673 struct cgroup *cgrp;
Paul Menagea4243162007-10-18 23:39:35 -07002674 int subsys_id;
2675 int count = 0;
2676
2677 /* Skip this hierarchy if it has no active subsystems */
2678 if (!root->actual_subsys_bits)
2679 continue;
Paul Menageb6c30062008-04-10 21:29:16 -07002680 seq_printf(m, "%lu:", root->subsys_bits);
Paul Menagea4243162007-10-18 23:39:35 -07002681 for_each_subsys(root, ss)
2682 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
2683 seq_putc(m, ':');
2684 get_first_subsys(&root->top_cgroup, NULL, &subsys_id);
Paul Menagebd89aab2007-10-18 23:40:44 -07002685 cgrp = task_cgroup(tsk, subsys_id);
2686 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
Paul Menagea4243162007-10-18 23:39:35 -07002687 if (retval < 0)
2688 goto out_unlock;
2689 seq_puts(m, buf);
2690 seq_putc(m, '\n');
2691 }
2692
2693out_unlock:
2694 mutex_unlock(&cgroup_mutex);
2695 put_task_struct(tsk);
2696out_free:
2697 kfree(buf);
2698out:
2699 return retval;
2700}
2701
2702static int cgroup_open(struct inode *inode, struct file *file)
2703{
2704 struct pid *pid = PROC_I(inode)->pid;
2705 return single_open(file, proc_cgroup_show, pid);
2706}
2707
2708struct file_operations proc_cgroup_operations = {
2709 .open = cgroup_open,
2710 .read = seq_read,
2711 .llseek = seq_lseek,
2712 .release = single_release,
2713};
2714
2715/* Display information about each subsystem and each hierarchy */
2716static int proc_cgroupstats_show(struct seq_file *m, void *v)
2717{
2718 int i;
Paul Menagea4243162007-10-18 23:39:35 -07002719
Paul Menage8bab8dd2008-04-04 14:29:57 -07002720 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Paul Menagea4243162007-10-18 23:39:35 -07002721 mutex_lock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07002722 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2723 struct cgroup_subsys *ss = subsys[i];
Paul Menage8bab8dd2008-04-04 14:29:57 -07002724 seq_printf(m, "%s\t%lu\t%d\t%d\n",
Paul Menage817929e2007-10-18 23:39:36 -07002725 ss->name, ss->root->subsys_bits,
Paul Menage8bab8dd2008-04-04 14:29:57 -07002726 ss->root->number_of_cgroups, !ss->disabled);
Paul Menagea4243162007-10-18 23:39:35 -07002727 }
2728 mutex_unlock(&cgroup_mutex);
2729 return 0;
2730}
2731
2732static int cgroupstats_open(struct inode *inode, struct file *file)
2733{
Al Viro9dce07f2008-03-29 03:07:28 +00002734 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07002735}
2736
2737static struct file_operations proc_cgroupstats_operations = {
2738 .open = cgroupstats_open,
2739 .read = seq_read,
2740 .llseek = seq_lseek,
2741 .release = single_release,
2742};
2743
Paul Menageb4f48b62007-10-18 23:39:33 -07002744/**
2745 * cgroup_fork - attach newly forked task to its parents cgroup.
Li Zefana043e3b2008-02-23 15:24:09 -08002746 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07002747 *
2748 * Description: A task inherits its parent's cgroup at fork().
2749 *
2750 * A pointer to the shared css_set was automatically copied in
2751 * fork.c by dup_task_struct(). However, we ignore that copy, since
2752 * it was not made under the protection of RCU or cgroup_mutex, so
Cliff Wickman956db3c2008-02-07 00:14:43 -08002753 * might no longer be a valid cgroup pointer. cgroup_attach_task() might
Paul Menage817929e2007-10-18 23:39:36 -07002754 * have already changed current->cgroups, allowing the previously
2755 * referenced cgroup group to be removed and freed.
Paul Menageb4f48b62007-10-18 23:39:33 -07002756 *
2757 * At the point that cgroup_fork() is called, 'current' is the parent
2758 * task, and the passed argument 'child' points to the child task.
2759 */
2760void cgroup_fork(struct task_struct *child)
2761{
Paul Menage817929e2007-10-18 23:39:36 -07002762 task_lock(current);
2763 child->cgroups = current->cgroups;
2764 get_css_set(child->cgroups);
2765 task_unlock(current);
2766 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07002767}
2768
2769/**
Li Zefana043e3b2008-02-23 15:24:09 -08002770 * cgroup_fork_callbacks - run fork callbacks
2771 * @child: the new task
2772 *
2773 * Called on a new task very soon before adding it to the
2774 * tasklist. No need to take any locks since no-one can
2775 * be operating on this task.
Paul Menageb4f48b62007-10-18 23:39:33 -07002776 */
2777void cgroup_fork_callbacks(struct task_struct *child)
2778{
2779 if (need_forkexit_callback) {
2780 int i;
2781 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2782 struct cgroup_subsys *ss = subsys[i];
2783 if (ss->fork)
2784 ss->fork(ss, child);
2785 }
2786 }
2787}
2788
Balbir Singhcf475ad2008-04-29 01:00:16 -07002789#ifdef CONFIG_MM_OWNER
2790/**
2791 * cgroup_mm_owner_callbacks - run callbacks when the mm->owner changes
2792 * @p: the new owner
2793 *
2794 * Called on every change to mm->owner. mm_init_owner() does not
2795 * invoke this routine, since it assigns the mm->owner the first time
2796 * and does not change it.
Balbir Singh9363b9f2008-10-15 22:01:05 -07002797 *
2798 * The callbacks are invoked with mmap_sem held in read mode.
Balbir Singhcf475ad2008-04-29 01:00:16 -07002799 */
2800void cgroup_mm_owner_callbacks(struct task_struct *old, struct task_struct *new)
2801{
Balbir Singh31a78f22008-09-28 23:09:31 +01002802 struct cgroup *oldcgrp, *newcgrp = NULL;
Balbir Singhcf475ad2008-04-29 01:00:16 -07002803
2804 if (need_mm_owner_callback) {
2805 int i;
2806 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2807 struct cgroup_subsys *ss = subsys[i];
2808 oldcgrp = task_cgroup(old, ss->subsys_id);
Balbir Singh31a78f22008-09-28 23:09:31 +01002809 if (new)
2810 newcgrp = task_cgroup(new, ss->subsys_id);
Balbir Singhcf475ad2008-04-29 01:00:16 -07002811 if (oldcgrp == newcgrp)
2812 continue;
2813 if (ss->mm_owner_changed)
Balbir Singh9363b9f2008-10-15 22:01:05 -07002814 ss->mm_owner_changed(ss, oldcgrp, newcgrp, new);
Balbir Singhcf475ad2008-04-29 01:00:16 -07002815 }
2816 }
2817}
2818#endif /* CONFIG_MM_OWNER */
2819
Paul Menageb4f48b62007-10-18 23:39:33 -07002820/**
Li Zefana043e3b2008-02-23 15:24:09 -08002821 * cgroup_post_fork - called on a new task after adding it to the task list
2822 * @child: the task in question
2823 *
2824 * Adds the task to the list running through its css_set if necessary.
2825 * Has to be after the task is visible on the task list in case we race
2826 * with the first call to cgroup_iter_start() - to guarantee that the
2827 * new task ends up on its list.
2828 */
Paul Menage817929e2007-10-18 23:39:36 -07002829void cgroup_post_fork(struct task_struct *child)
2830{
2831 if (use_task_css_set_links) {
2832 write_lock(&css_set_lock);
2833 if (list_empty(&child->cg_list))
2834 list_add(&child->cg_list, &child->cgroups->tasks);
2835 write_unlock(&css_set_lock);
2836 }
2837}
2838/**
Paul Menageb4f48b62007-10-18 23:39:33 -07002839 * cgroup_exit - detach cgroup from exiting task
2840 * @tsk: pointer to task_struct of exiting process
Li Zefana043e3b2008-02-23 15:24:09 -08002841 * @run_callback: run exit callbacks?
Paul Menageb4f48b62007-10-18 23:39:33 -07002842 *
2843 * Description: Detach cgroup from @tsk and release it.
2844 *
2845 * Note that cgroups marked notify_on_release force every task in
2846 * them to take the global cgroup_mutex mutex when exiting.
2847 * This could impact scaling on very large systems. Be reluctant to
2848 * use notify_on_release cgroups where very high task exit scaling
2849 * is required on large systems.
2850 *
2851 * the_top_cgroup_hack:
2852 *
2853 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
2854 *
2855 * We call cgroup_exit() while the task is still competent to
2856 * handle notify_on_release(), then leave the task attached to the
2857 * root cgroup in each hierarchy for the remainder of its exit.
2858 *
2859 * To do this properly, we would increment the reference count on
2860 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
2861 * code we would add a second cgroup function call, to drop that
2862 * reference. This would just create an unnecessary hot spot on
2863 * the top_cgroup reference count, to no avail.
2864 *
2865 * Normally, holding a reference to a cgroup without bumping its
2866 * count is unsafe. The cgroup could go away, or someone could
2867 * attach us to a different cgroup, decrementing the count on
2868 * the first cgroup that we never incremented. But in this case,
2869 * top_cgroup isn't going away, and either task has PF_EXITING set,
Cliff Wickman956db3c2008-02-07 00:14:43 -08002870 * which wards off any cgroup_attach_task() attempts, or task is a failed
2871 * fork, never visible to cgroup_attach_task.
Paul Menageb4f48b62007-10-18 23:39:33 -07002872 */
2873void cgroup_exit(struct task_struct *tsk, int run_callbacks)
2874{
2875 int i;
Paul Menage817929e2007-10-18 23:39:36 -07002876 struct css_set *cg;
Paul Menageb4f48b62007-10-18 23:39:33 -07002877
2878 if (run_callbacks && need_forkexit_callback) {
2879 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2880 struct cgroup_subsys *ss = subsys[i];
2881 if (ss->exit)
2882 ss->exit(ss, tsk);
2883 }
2884 }
Paul Menage817929e2007-10-18 23:39:36 -07002885
2886 /*
2887 * Unlink from the css_set task list if necessary.
2888 * Optimistically check cg_list before taking
2889 * css_set_lock
2890 */
2891 if (!list_empty(&tsk->cg_list)) {
2892 write_lock(&css_set_lock);
2893 if (!list_empty(&tsk->cg_list))
2894 list_del(&tsk->cg_list);
2895 write_unlock(&css_set_lock);
2896 }
2897
Paul Menageb4f48b62007-10-18 23:39:33 -07002898 /* Reassign the task to the init_css_set. */
2899 task_lock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07002900 cg = tsk->cgroups;
2901 tsk->cgroups = &init_css_set;
Paul Menageb4f48b62007-10-18 23:39:33 -07002902 task_unlock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07002903 if (cg)
Paul Menage81a6a5c2007-10-18 23:39:38 -07002904 put_css_set_taskexit(cg);
Paul Menageb4f48b62007-10-18 23:39:33 -07002905}
Paul Menage697f4162007-10-18 23:39:34 -07002906
2907/**
Li Zefana043e3b2008-02-23 15:24:09 -08002908 * cgroup_clone - clone the cgroup the given subsystem is attached to
2909 * @tsk: the task to be moved
2910 * @subsys: the given subsystem
Serge E. Hallyne885dcd2008-07-25 01:47:06 -07002911 * @nodename: the name for the new cgroup
Li Zefana043e3b2008-02-23 15:24:09 -08002912 *
2913 * Duplicate the current cgroup in the hierarchy that the given
2914 * subsystem is attached to, and move this task into the new
2915 * child.
Paul Menage697f4162007-10-18 23:39:34 -07002916 */
Serge E. Hallyne885dcd2008-07-25 01:47:06 -07002917int cgroup_clone(struct task_struct *tsk, struct cgroup_subsys *subsys,
2918 char *nodename)
Paul Menage697f4162007-10-18 23:39:34 -07002919{
2920 struct dentry *dentry;
2921 int ret = 0;
Paul Menage697f4162007-10-18 23:39:34 -07002922 struct cgroup *parent, *child;
2923 struct inode *inode;
2924 struct css_set *cg;
2925 struct cgroupfs_root *root;
2926 struct cgroup_subsys *ss;
2927
2928 /* We shouldn't be called by an unregistered subsystem */
2929 BUG_ON(!subsys->active);
2930
2931 /* First figure out what hierarchy and cgroup we're dealing
2932 * with, and pin them so we can drop cgroup_mutex */
2933 mutex_lock(&cgroup_mutex);
2934 again:
2935 root = subsys->root;
2936 if (root == &rootnode) {
2937 printk(KERN_INFO
2938 "Not cloning cgroup for unused subsystem %s\n",
2939 subsys->name);
2940 mutex_unlock(&cgroup_mutex);
2941 return 0;
2942 }
Paul Menage817929e2007-10-18 23:39:36 -07002943 cg = tsk->cgroups;
Paul Menage697f4162007-10-18 23:39:34 -07002944 parent = task_cgroup(tsk, subsys->subsys_id);
2945
Paul Menage697f4162007-10-18 23:39:34 -07002946 /* Pin the hierarchy */
2947 atomic_inc(&parent->root->sb->s_active);
2948
Paul Menage817929e2007-10-18 23:39:36 -07002949 /* Keep the cgroup alive */
2950 get_css_set(cg);
Paul Menage697f4162007-10-18 23:39:34 -07002951 mutex_unlock(&cgroup_mutex);
2952
2953 /* Now do the VFS work to create a cgroup */
2954 inode = parent->dentry->d_inode;
2955
2956 /* Hold the parent directory mutex across this operation to
2957 * stop anyone else deleting the new cgroup */
2958 mutex_lock(&inode->i_mutex);
2959 dentry = lookup_one_len(nodename, parent->dentry, strlen(nodename));
2960 if (IS_ERR(dentry)) {
2961 printk(KERN_INFO
Diego Callejacfe36bd2007-11-14 16:58:54 -08002962 "cgroup: Couldn't allocate dentry for %s: %ld\n", nodename,
Paul Menage697f4162007-10-18 23:39:34 -07002963 PTR_ERR(dentry));
2964 ret = PTR_ERR(dentry);
2965 goto out_release;
2966 }
2967
2968 /* Create the cgroup directory, which also creates the cgroup */
2969 ret = vfs_mkdir(inode, dentry, S_IFDIR | 0755);
Paul Menagebd89aab2007-10-18 23:40:44 -07002970 child = __d_cgrp(dentry);
Paul Menage697f4162007-10-18 23:39:34 -07002971 dput(dentry);
2972 if (ret) {
2973 printk(KERN_INFO
2974 "Failed to create cgroup %s: %d\n", nodename,
2975 ret);
2976 goto out_release;
2977 }
2978
2979 if (!child) {
2980 printk(KERN_INFO
2981 "Couldn't find new cgroup %s\n", nodename);
2982 ret = -ENOMEM;
2983 goto out_release;
2984 }
2985
2986 /* The cgroup now exists. Retake cgroup_mutex and check
2987 * that we're still in the same state that we thought we
2988 * were. */
2989 mutex_lock(&cgroup_mutex);
2990 if ((root != subsys->root) ||
2991 (parent != task_cgroup(tsk, subsys->subsys_id))) {
2992 /* Aargh, we raced ... */
2993 mutex_unlock(&inode->i_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07002994 put_css_set(cg);
Paul Menage697f4162007-10-18 23:39:34 -07002995
2996 deactivate_super(parent->root->sb);
2997 /* The cgroup is still accessible in the VFS, but
2998 * we're not going to try to rmdir() it at this
2999 * point. */
3000 printk(KERN_INFO
3001 "Race in cgroup_clone() - leaking cgroup %s\n",
3002 nodename);
3003 goto again;
3004 }
3005
3006 /* do any required auto-setup */
3007 for_each_subsys(root, ss) {
3008 if (ss->post_clone)
3009 ss->post_clone(ss, child);
3010 }
3011
3012 /* All seems fine. Finish by moving the task into the new cgroup */
Cliff Wickman956db3c2008-02-07 00:14:43 -08003013 ret = cgroup_attach_task(child, tsk);
Paul Menage697f4162007-10-18 23:39:34 -07003014 mutex_unlock(&cgroup_mutex);
3015
3016 out_release:
3017 mutex_unlock(&inode->i_mutex);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003018
3019 mutex_lock(&cgroup_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07003020 put_css_set(cg);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003021 mutex_unlock(&cgroup_mutex);
Paul Menage697f4162007-10-18 23:39:34 -07003022 deactivate_super(parent->root->sb);
3023 return ret;
3024}
3025
Li Zefana043e3b2008-02-23 15:24:09 -08003026/**
3027 * cgroup_is_descendant - see if @cgrp is a descendant of current task's cgrp
3028 * @cgrp: the cgroup in question
3029 *
3030 * See if @cgrp is a descendant of the current task's cgroup in
3031 * the appropriate hierarchy.
Paul Menage697f4162007-10-18 23:39:34 -07003032 *
3033 * If we are sending in dummytop, then presumably we are creating
3034 * the top cgroup in the subsystem.
3035 *
3036 * Called only by the ns (nsproxy) cgroup.
3037 */
Paul Menagebd89aab2007-10-18 23:40:44 -07003038int cgroup_is_descendant(const struct cgroup *cgrp)
Paul Menage697f4162007-10-18 23:39:34 -07003039{
3040 int ret;
3041 struct cgroup *target;
3042 int subsys_id;
3043
Paul Menagebd89aab2007-10-18 23:40:44 -07003044 if (cgrp == dummytop)
Paul Menage697f4162007-10-18 23:39:34 -07003045 return 1;
3046
Paul Menagebd89aab2007-10-18 23:40:44 -07003047 get_first_subsys(cgrp, NULL, &subsys_id);
Paul Menage697f4162007-10-18 23:39:34 -07003048 target = task_cgroup(current, subsys_id);
Paul Menagebd89aab2007-10-18 23:40:44 -07003049 while (cgrp != target && cgrp!= cgrp->top_cgroup)
3050 cgrp = cgrp->parent;
3051 ret = (cgrp == target);
Paul Menage697f4162007-10-18 23:39:34 -07003052 return ret;
3053}
Paul Menage81a6a5c2007-10-18 23:39:38 -07003054
Paul Menagebd89aab2007-10-18 23:40:44 -07003055static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003056{
3057 /* All of these checks rely on RCU to keep the cgroup
3058 * structure alive */
Paul Menagebd89aab2007-10-18 23:40:44 -07003059 if (cgroup_is_releasable(cgrp) && !atomic_read(&cgrp->count)
3060 && list_empty(&cgrp->children) && !cgroup_has_css_refs(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07003061 /* Control Group is currently removeable. If it's not
3062 * already queued for a userspace notification, queue
3063 * it now */
3064 int need_schedule_work = 0;
3065 spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07003066 if (!cgroup_is_removed(cgrp) &&
3067 list_empty(&cgrp->release_list)) {
3068 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003069 need_schedule_work = 1;
3070 }
3071 spin_unlock(&release_list_lock);
3072 if (need_schedule_work)
3073 schedule_work(&release_agent_work);
3074 }
3075}
3076
3077void __css_put(struct cgroup_subsys_state *css)
3078{
Paul Menagebd89aab2007-10-18 23:40:44 -07003079 struct cgroup *cgrp = css->cgroup;
Paul Menage81a6a5c2007-10-18 23:39:38 -07003080 rcu_read_lock();
Paul Menagebd89aab2007-10-18 23:40:44 -07003081 if (atomic_dec_and_test(&css->refcnt) && notify_on_release(cgrp)) {
3082 set_bit(CGRP_RELEASABLE, &cgrp->flags);
3083 check_for_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003084 }
3085 rcu_read_unlock();
3086}
3087
3088/*
3089 * Notify userspace when a cgroup is released, by running the
3090 * configured release agent with the name of the cgroup (path
3091 * relative to the root of cgroup file system) as the argument.
3092 *
3093 * Most likely, this user command will try to rmdir this cgroup.
3094 *
3095 * This races with the possibility that some other task will be
3096 * attached to this cgroup before it is removed, or that some other
3097 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
3098 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
3099 * unused, and this cgroup will be reprieved from its death sentence,
3100 * to continue to serve a useful existence. Next time it's released,
3101 * we will get notified again, if it still has 'notify_on_release' set.
3102 *
3103 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
3104 * means only wait until the task is successfully execve()'d. The
3105 * separate release agent task is forked by call_usermodehelper(),
3106 * then control in this thread returns here, without waiting for the
3107 * release agent task. We don't bother to wait because the caller of
3108 * this routine has no use for the exit status of the release agent
3109 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07003110 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07003111static void cgroup_release_agent(struct work_struct *work)
3112{
3113 BUG_ON(work != &release_agent_work);
3114 mutex_lock(&cgroup_mutex);
3115 spin_lock(&release_list_lock);
3116 while (!list_empty(&release_list)) {
3117 char *argv[3], *envp[3];
3118 int i;
Paul Menagee788e062008-07-25 01:46:59 -07003119 char *pathbuf = NULL, *agentbuf = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07003120 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003121 struct cgroup,
3122 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07003123 list_del_init(&cgrp->release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003124 spin_unlock(&release_list_lock);
3125 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paul Menagee788e062008-07-25 01:46:59 -07003126 if (!pathbuf)
3127 goto continue_free;
3128 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0)
3129 goto continue_free;
3130 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
3131 if (!agentbuf)
3132 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07003133
3134 i = 0;
Paul Menagee788e062008-07-25 01:46:59 -07003135 argv[i++] = agentbuf;
3136 argv[i++] = pathbuf;
Paul Menage81a6a5c2007-10-18 23:39:38 -07003137 argv[i] = NULL;
3138
3139 i = 0;
3140 /* minimal command environment */
3141 envp[i++] = "HOME=/";
3142 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
3143 envp[i] = NULL;
3144
3145 /* Drop the lock while we invoke the usermode helper,
3146 * since the exec could involve hitting disk and hence
3147 * be a slow process */
3148 mutex_unlock(&cgroup_mutex);
3149 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003150 mutex_lock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07003151 continue_free:
3152 kfree(pathbuf);
3153 kfree(agentbuf);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003154 spin_lock(&release_list_lock);
3155 }
3156 spin_unlock(&release_list_lock);
3157 mutex_unlock(&cgroup_mutex);
3158}
Paul Menage8bab8dd2008-04-04 14:29:57 -07003159
3160static int __init cgroup_disable(char *str)
3161{
3162 int i;
3163 char *token;
3164
3165 while ((token = strsep(&str, ",")) != NULL) {
3166 if (!*token)
3167 continue;
3168
3169 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3170 struct cgroup_subsys *ss = subsys[i];
3171
3172 if (!strcmp(token, ss->name)) {
3173 ss->disabled = 1;
3174 printk(KERN_INFO "Disabling %s control group"
3175 " subsystem\n", ss->name);
3176 break;
3177 }
3178 }
3179 }
3180 return 1;
3181}
3182__setup("cgroup_disable=", cgroup_disable);