blob: 657f8f8d93a5fa947e79d0b8567a9c5288f425d9 [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
Paul Menage817929e2007-10-18 23:39:36 -0700244 write_lock(&css_set_lock);
Li Zefan472b1052008-04-29 01:00:11 -0700245 hlist_del(&cg->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700246 css_set_count--;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700247
248 list_for_each_entry_safe(link, saved_link, &cg->cg_links,
249 cg_link_list) {
Paul Menage817929e2007-10-18 23:39:36 -0700250 list_del(&link->cg_link_list);
Paul Menagebd89aab2007-10-18 23:40:44 -0700251 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -0700252 kfree(link);
253 }
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700254
Paul Menage817929e2007-10-18 23:39:36 -0700255 write_unlock(&css_set_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700256}
257
258static void __release_css_set(struct kref *k, int taskexit)
259{
260 int i;
261 struct css_set *cg = container_of(k, struct css_set, ref);
262
263 unlink_css_set(cg);
264
265 rcu_read_lock();
266 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700267 struct cgroup *cgrp = cg->subsys[i]->cgroup;
268 if (atomic_dec_and_test(&cgrp->count) &&
269 notify_on_release(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -0700270 if (taskexit)
Paul Menagebd89aab2007-10-18 23:40:44 -0700271 set_bit(CGRP_RELEASABLE, &cgrp->flags);
272 check_for_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700273 }
274 }
275 rcu_read_unlock();
Paul Menage817929e2007-10-18 23:39:36 -0700276 kfree(cg);
277}
278
Paul Menage81a6a5c2007-10-18 23:39:38 -0700279static void release_css_set(struct kref *k)
280{
281 __release_css_set(k, 0);
282}
283
284static void release_css_set_taskexit(struct kref *k)
285{
286 __release_css_set(k, 1);
287}
288
Paul Menage817929e2007-10-18 23:39:36 -0700289/*
290 * refcounted get/put for css_set objects
291 */
292static inline void get_css_set(struct css_set *cg)
293{
294 kref_get(&cg->ref);
295}
296
297static inline void put_css_set(struct css_set *cg)
298{
299 kref_put(&cg->ref, release_css_set);
300}
301
Paul Menage81a6a5c2007-10-18 23:39:38 -0700302static inline void put_css_set_taskexit(struct css_set *cg)
303{
304 kref_put(&cg->ref, release_css_set_taskexit);
305}
306
Paul Menage817929e2007-10-18 23:39:36 -0700307/*
308 * find_existing_css_set() is a helper for
309 * find_css_set(), and checks to see whether an existing
Li Zefan472b1052008-04-29 01:00:11 -0700310 * css_set is suitable.
Paul Menage817929e2007-10-18 23:39:36 -0700311 *
312 * oldcg: the cgroup group that we're using before the cgroup
313 * transition
314 *
Paul Menagebd89aab2007-10-18 23:40:44 -0700315 * cgrp: the cgroup that we're moving into
Paul Menage817929e2007-10-18 23:39:36 -0700316 *
317 * template: location in which to build the desired set of subsystem
318 * state objects for the new cgroup group
319 */
Paul Menage817929e2007-10-18 23:39:36 -0700320static struct css_set *find_existing_css_set(
321 struct css_set *oldcg,
Paul Menagebd89aab2007-10-18 23:40:44 -0700322 struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -0700323 struct cgroup_subsys_state *template[])
324{
325 int i;
Paul Menagebd89aab2007-10-18 23:40:44 -0700326 struct cgroupfs_root *root = cgrp->root;
Li Zefan472b1052008-04-29 01:00:11 -0700327 struct hlist_head *hhead;
328 struct hlist_node *node;
329 struct css_set *cg;
Paul Menage817929e2007-10-18 23:39:36 -0700330
331 /* Built the set of subsystem state objects that we want to
332 * see in the new css_set */
333 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Li Zefan8d53d552008-02-23 15:24:11 -0800334 if (root->subsys_bits & (1UL << i)) {
Paul Menage817929e2007-10-18 23:39:36 -0700335 /* Subsystem is in this hierarchy. So we want
336 * the subsystem state from the new
337 * cgroup */
Paul Menagebd89aab2007-10-18 23:40:44 -0700338 template[i] = cgrp->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700339 } else {
340 /* Subsystem is not in this hierarchy, so we
341 * don't want to change the subsystem state */
342 template[i] = oldcg->subsys[i];
343 }
344 }
345
Li Zefan472b1052008-04-29 01:00:11 -0700346 hhead = css_set_hash(template);
347 hlist_for_each_entry(cg, node, hhead, hlist) {
Paul Menage817929e2007-10-18 23:39:36 -0700348 if (!memcmp(template, cg->subsys, sizeof(cg->subsys))) {
349 /* All subsystems matched */
350 return cg;
351 }
Li Zefan472b1052008-04-29 01:00:11 -0700352 }
Paul Menage817929e2007-10-18 23:39:36 -0700353
354 /* No existing cgroup group matched */
355 return NULL;
356}
357
358/*
359 * allocate_cg_links() allocates "count" cg_cgroup_link structures
Paul Menagebd89aab2007-10-18 23:40:44 -0700360 * and chains them on tmp through their cgrp_link_list fields. Returns 0 on
Paul Menage817929e2007-10-18 23:39:36 -0700361 * success or a negative error
362 */
Paul Menage817929e2007-10-18 23:39:36 -0700363static int allocate_cg_links(int count, struct list_head *tmp)
364{
365 struct cg_cgroup_link *link;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700366 struct cg_cgroup_link *saved_link;
Paul Menage817929e2007-10-18 23:39:36 -0700367 int i;
368 INIT_LIST_HEAD(tmp);
369 for (i = 0; i < count; i++) {
370 link = kmalloc(sizeof(*link), GFP_KERNEL);
371 if (!link) {
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700372 list_for_each_entry_safe(link, saved_link, tmp,
373 cgrp_link_list) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700374 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -0700375 kfree(link);
376 }
377 return -ENOMEM;
378 }
Paul Menagebd89aab2007-10-18 23:40:44 -0700379 list_add(&link->cgrp_link_list, tmp);
Paul Menage817929e2007-10-18 23:39:36 -0700380 }
381 return 0;
382}
383
384static void free_cg_links(struct list_head *tmp)
385{
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700386 struct cg_cgroup_link *link;
387 struct cg_cgroup_link *saved_link;
388
389 list_for_each_entry_safe(link, saved_link, tmp, cgrp_link_list) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700390 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -0700391 kfree(link);
392 }
393}
394
395/*
396 * find_css_set() takes an existing cgroup group and a
397 * cgroup object, and returns a css_set object that's
398 * equivalent to the old group, but with the given cgroup
399 * substituted into the appropriate hierarchy. Must be called with
400 * cgroup_mutex held
401 */
Paul Menage817929e2007-10-18 23:39:36 -0700402static struct css_set *find_css_set(
Paul Menagebd89aab2007-10-18 23:40:44 -0700403 struct css_set *oldcg, struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700404{
405 struct css_set *res;
406 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT];
407 int i;
408
409 struct list_head tmp_cg_links;
410 struct cg_cgroup_link *link;
411
Li Zefan472b1052008-04-29 01:00:11 -0700412 struct hlist_head *hhead;
413
Paul Menage817929e2007-10-18 23:39:36 -0700414 /* First see if we already have a cgroup group that matches
415 * the desired set */
Li Zefan7e9abd82008-07-25 01:46:54 -0700416 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -0700417 res = find_existing_css_set(oldcg, cgrp, template);
Paul Menage817929e2007-10-18 23:39:36 -0700418 if (res)
419 get_css_set(res);
Li Zefan7e9abd82008-07-25 01:46:54 -0700420 read_unlock(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -0700421
422 if (res)
423 return res;
424
425 res = kmalloc(sizeof(*res), GFP_KERNEL);
426 if (!res)
427 return NULL;
428
429 /* Allocate all the cg_cgroup_link objects that we'll need */
430 if (allocate_cg_links(root_count, &tmp_cg_links) < 0) {
431 kfree(res);
432 return NULL;
433 }
434
435 kref_init(&res->ref);
436 INIT_LIST_HEAD(&res->cg_links);
437 INIT_LIST_HEAD(&res->tasks);
Li Zefan472b1052008-04-29 01:00:11 -0700438 INIT_HLIST_NODE(&res->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700439
440 /* Copy the set of subsystem state objects generated in
441 * find_existing_css_set() */
442 memcpy(res->subsys, template, sizeof(res->subsys));
443
444 write_lock(&css_set_lock);
445 /* Add reference counts and links from the new css_set. */
446 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700447 struct cgroup *cgrp = res->subsys[i]->cgroup;
Paul Menage817929e2007-10-18 23:39:36 -0700448 struct cgroup_subsys *ss = subsys[i];
Paul Menagebd89aab2007-10-18 23:40:44 -0700449 atomic_inc(&cgrp->count);
Paul Menage817929e2007-10-18 23:39:36 -0700450 /*
451 * We want to add a link once per cgroup, so we
452 * only do it for the first subsystem in each
453 * hierarchy
454 */
455 if (ss->root->subsys_list.next == &ss->sibling) {
456 BUG_ON(list_empty(&tmp_cg_links));
457 link = list_entry(tmp_cg_links.next,
458 struct cg_cgroup_link,
Paul Menagebd89aab2007-10-18 23:40:44 -0700459 cgrp_link_list);
460 list_del(&link->cgrp_link_list);
461 list_add(&link->cgrp_link_list, &cgrp->css_sets);
Paul Menage817929e2007-10-18 23:39:36 -0700462 link->cg = res;
463 list_add(&link->cg_link_list, &res->cg_links);
464 }
465 }
466 if (list_empty(&rootnode.subsys_list)) {
467 link = list_entry(tmp_cg_links.next,
468 struct cg_cgroup_link,
Paul Menagebd89aab2007-10-18 23:40:44 -0700469 cgrp_link_list);
470 list_del(&link->cgrp_link_list);
471 list_add(&link->cgrp_link_list, &dummytop->css_sets);
Paul Menage817929e2007-10-18 23:39:36 -0700472 link->cg = res;
473 list_add(&link->cg_link_list, &res->cg_links);
474 }
475
476 BUG_ON(!list_empty(&tmp_cg_links));
477
Paul Menage817929e2007-10-18 23:39:36 -0700478 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -0700479
480 /* Add this cgroup group to the hash table */
481 hhead = css_set_hash(res->subsys);
482 hlist_add_head(&res->hlist, hhead);
483
Paul Menage817929e2007-10-18 23:39:36 -0700484 write_unlock(&css_set_lock);
485
486 return res;
Paul Menageb4f48b62007-10-18 23:39:33 -0700487}
488
Paul Menageddbcc7e2007-10-18 23:39:30 -0700489/*
490 * There is one global cgroup mutex. We also require taking
491 * task_lock() when dereferencing a task's cgroup subsys pointers.
492 * See "The task_lock() exception", at the end of this comment.
493 *
494 * A task must hold cgroup_mutex to modify cgroups.
495 *
496 * Any task can increment and decrement the count field without lock.
497 * So in general, code holding cgroup_mutex can't rely on the count
498 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -0800499 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -0700500 * means that no tasks are currently attached, therefore there is no
501 * way a task attached to that cgroup can fork (the other way to
502 * increment the count). So code holding cgroup_mutex can safely
503 * assume that if the count is zero, it will stay zero. Similarly, if
504 * a task holds cgroup_mutex on a cgroup with zero count, it
505 * knows that the cgroup won't be removed, as cgroup_rmdir()
506 * needs that mutex.
507 *
Paul Menageddbcc7e2007-10-18 23:39:30 -0700508 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
509 * (usually) take cgroup_mutex. These are the two most performance
510 * critical pieces of code here. The exception occurs on cgroup_exit(),
511 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
512 * is taken, and if the cgroup count is zero, a usermode call made
Li Zefana043e3b2008-02-23 15:24:09 -0800513 * to the release agent with the name of the cgroup (path relative to
514 * the root of cgroup file system) as the argument.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700515 *
516 * A cgroup can only be deleted if both its 'count' of using tasks
517 * is zero, and its list of 'children' cgroups is empty. Since all
518 * tasks in the system use _some_ cgroup, and since there is always at
519 * least one task in the system (init, pid == 1), therefore, top_cgroup
520 * always has either children cgroups and/or using tasks. So we don't
521 * need a special hack to ensure that top_cgroup cannot be deleted.
522 *
523 * The task_lock() exception
524 *
525 * The need for this exception arises from the action of
Cliff Wickman956db3c2008-02-07 00:14:43 -0800526 * cgroup_attach_task(), which overwrites one tasks cgroup pointer with
Li Zefana043e3b2008-02-23 15:24:09 -0800527 * another. It does so using cgroup_mutex, however there are
Paul Menageddbcc7e2007-10-18 23:39:30 -0700528 * several performance critical places that need to reference
529 * task->cgroup without the expense of grabbing a system global
530 * mutex. Therefore except as noted below, when dereferencing or, as
Cliff Wickman956db3c2008-02-07 00:14:43 -0800531 * in cgroup_attach_task(), modifying a task'ss cgroup pointer we use
Paul Menageddbcc7e2007-10-18 23:39:30 -0700532 * task_lock(), which acts on a spinlock (task->alloc_lock) already in
533 * the task_struct routinely used for such matters.
534 *
535 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -0800536 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700537 */
538
Paul Menageddbcc7e2007-10-18 23:39:30 -0700539/**
540 * cgroup_lock - lock out any changes to cgroup structures
541 *
542 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700543void cgroup_lock(void)
544{
545 mutex_lock(&cgroup_mutex);
546}
547
548/**
549 * cgroup_unlock - release lock on cgroup changes
550 *
551 * Undo the lock taken in a previous cgroup_lock() call.
552 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700553void cgroup_unlock(void)
554{
555 mutex_unlock(&cgroup_mutex);
556}
557
558/*
559 * A couple of forward declarations required, due to cyclic reference loop:
560 * cgroup_mkdir -> cgroup_create -> cgroup_populate_dir ->
561 * cgroup_add_file -> cgroup_create_file -> cgroup_dir_inode_operations
562 * -> cgroup_mkdir.
563 */
564
565static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode);
566static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -0700567static int cgroup_populate_dir(struct cgroup *cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700568static struct inode_operations cgroup_dir_inode_operations;
Paul Menagea4243162007-10-18 23:39:35 -0700569static struct file_operations proc_cgroupstats_operations;
570
571static struct backing_dev_info cgroup_backing_dev_info = {
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700572 .capabilities = BDI_CAP_NO_ACCT_AND_WRITEBACK,
Paul Menagea4243162007-10-18 23:39:35 -0700573};
Paul Menageddbcc7e2007-10-18 23:39:30 -0700574
575static struct inode *cgroup_new_inode(mode_t mode, struct super_block *sb)
576{
577 struct inode *inode = new_inode(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700578
579 if (inode) {
580 inode->i_mode = mode;
581 inode->i_uid = current->fsuid;
582 inode->i_gid = current->fsgid;
583 inode->i_blocks = 0;
584 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
585 inode->i_mapping->backing_dev_info = &cgroup_backing_dev_info;
586 }
587 return inode;
588}
589
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800590/*
591 * Call subsys's pre_destroy handler.
592 * This is called before css refcnt check.
593 */
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800594static void cgroup_call_pre_destroy(struct cgroup *cgrp)
595{
596 struct cgroup_subsys *ss;
597 for_each_subsys(cgrp->root, ss)
598 if (ss->pre_destroy && cgrp->subsys[ss->subsys_id])
599 ss->pre_destroy(ss, cgrp);
600 return;
601}
602
Paul Menageddbcc7e2007-10-18 23:39:30 -0700603static void cgroup_diput(struct dentry *dentry, struct inode *inode)
604{
605 /* is dentry a directory ? if so, kfree() associated cgroup */
606 if (S_ISDIR(inode->i_mode)) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700607 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800608 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -0700609 BUG_ON(!(cgroup_is_removed(cgrp)));
Paul Menage81a6a5c2007-10-18 23:39:38 -0700610 /* It's possible for external users to be holding css
611 * reference counts on a cgroup; css_put() needs to
612 * be able to access the cgroup after decrementing
613 * the reference count in order to know if it needs to
614 * queue the cgroup to be handled by the release
615 * agent */
616 synchronize_rcu();
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800617
618 mutex_lock(&cgroup_mutex);
619 /*
620 * Release the subsystem state objects.
621 */
622 for_each_subsys(cgrp->root, ss) {
623 if (cgrp->subsys[ss->subsys_id])
624 ss->destroy(ss, cgrp);
625 }
626
627 cgrp->root->number_of_cgroups--;
628 mutex_unlock(&cgroup_mutex);
629
630 /* Drop the active superblock reference that we took when we
631 * created the cgroup */
632 deactivate_super(cgrp->root->sb);
633
Paul Menagebd89aab2007-10-18 23:40:44 -0700634 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700635 }
636 iput(inode);
637}
638
639static void remove_dir(struct dentry *d)
640{
641 struct dentry *parent = dget(d->d_parent);
642
643 d_delete(d);
644 simple_rmdir(parent->d_inode, d);
645 dput(parent);
646}
647
648static void cgroup_clear_directory(struct dentry *dentry)
649{
650 struct list_head *node;
651
652 BUG_ON(!mutex_is_locked(&dentry->d_inode->i_mutex));
653 spin_lock(&dcache_lock);
654 node = dentry->d_subdirs.next;
655 while (node != &dentry->d_subdirs) {
656 struct dentry *d = list_entry(node, struct dentry, d_u.d_child);
657 list_del_init(node);
658 if (d->d_inode) {
659 /* This should never be called on a cgroup
660 * directory with child cgroups */
661 BUG_ON(d->d_inode->i_mode & S_IFDIR);
662 d = dget_locked(d);
663 spin_unlock(&dcache_lock);
664 d_delete(d);
665 simple_unlink(dentry->d_inode, d);
666 dput(d);
667 spin_lock(&dcache_lock);
668 }
669 node = dentry->d_subdirs.next;
670 }
671 spin_unlock(&dcache_lock);
672}
673
674/*
675 * NOTE : the dentry must have been dget()'ed
676 */
677static void cgroup_d_remove_dir(struct dentry *dentry)
678{
679 cgroup_clear_directory(dentry);
680
681 spin_lock(&dcache_lock);
682 list_del_init(&dentry->d_u.d_child);
683 spin_unlock(&dcache_lock);
684 remove_dir(dentry);
685}
686
687static int rebind_subsystems(struct cgroupfs_root *root,
688 unsigned long final_bits)
689{
690 unsigned long added_bits, removed_bits;
Paul Menagebd89aab2007-10-18 23:40:44 -0700691 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700692 int i;
693
694 removed_bits = root->actual_subsys_bits & ~final_bits;
695 added_bits = final_bits & ~root->actual_subsys_bits;
696 /* Check that any added subsystems are currently free */
697 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Li Zefan8d53d552008-02-23 15:24:11 -0800698 unsigned long bit = 1UL << i;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700699 struct cgroup_subsys *ss = subsys[i];
700 if (!(bit & added_bits))
701 continue;
702 if (ss->root != &rootnode) {
703 /* Subsystem isn't free */
704 return -EBUSY;
705 }
706 }
707
708 /* Currently we don't handle adding/removing subsystems when
709 * any child cgroups exist. This is theoretically supportable
710 * but involves complex error handling, so it's being left until
711 * later */
Paul Menagebd89aab2007-10-18 23:40:44 -0700712 if (!list_empty(&cgrp->children))
Paul Menageddbcc7e2007-10-18 23:39:30 -0700713 return -EBUSY;
714
715 /* Process each subsystem */
716 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
717 struct cgroup_subsys *ss = subsys[i];
718 unsigned long bit = 1UL << i;
719 if (bit & added_bits) {
720 /* We're binding this subsystem to this hierarchy */
Paul Menagebd89aab2007-10-18 23:40:44 -0700721 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700722 BUG_ON(!dummytop->subsys[i]);
723 BUG_ON(dummytop->subsys[i]->cgroup != dummytop);
Paul Menagebd89aab2007-10-18 23:40:44 -0700724 cgrp->subsys[i] = dummytop->subsys[i];
725 cgrp->subsys[i]->cgroup = cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700726 list_add(&ss->sibling, &root->subsys_list);
727 rcu_assign_pointer(ss->root, root);
728 if (ss->bind)
Paul Menagebd89aab2007-10-18 23:40:44 -0700729 ss->bind(ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700730
731 } else if (bit & removed_bits) {
732 /* We're removing this subsystem */
Paul Menagebd89aab2007-10-18 23:40:44 -0700733 BUG_ON(cgrp->subsys[i] != dummytop->subsys[i]);
734 BUG_ON(cgrp->subsys[i]->cgroup != cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700735 if (ss->bind)
736 ss->bind(ss, dummytop);
737 dummytop->subsys[i]->cgroup = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -0700738 cgrp->subsys[i] = NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700739 rcu_assign_pointer(subsys[i]->root, &rootnode);
740 list_del(&ss->sibling);
741 } else if (bit & final_bits) {
742 /* Subsystem state should already exist */
Paul Menagebd89aab2007-10-18 23:40:44 -0700743 BUG_ON(!cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700744 } else {
745 /* Subsystem state shouldn't exist */
Paul Menagebd89aab2007-10-18 23:40:44 -0700746 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700747 }
748 }
749 root->subsys_bits = root->actual_subsys_bits = final_bits;
750 synchronize_rcu();
751
752 return 0;
753}
754
755static int cgroup_show_options(struct seq_file *seq, struct vfsmount *vfs)
756{
757 struct cgroupfs_root *root = vfs->mnt_sb->s_fs_info;
758 struct cgroup_subsys *ss;
759
760 mutex_lock(&cgroup_mutex);
761 for_each_subsys(root, ss)
762 seq_printf(seq, ",%s", ss->name);
763 if (test_bit(ROOT_NOPREFIX, &root->flags))
764 seq_puts(seq, ",noprefix");
Paul Menage81a6a5c2007-10-18 23:39:38 -0700765 if (strlen(root->release_agent_path))
766 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700767 mutex_unlock(&cgroup_mutex);
768 return 0;
769}
770
771struct cgroup_sb_opts {
772 unsigned long subsys_bits;
773 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700774 char *release_agent;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700775};
776
777/* Convert a hierarchy specifier into a bitmask of subsystems and
778 * flags. */
779static int parse_cgroupfs_options(char *data,
780 struct cgroup_sb_opts *opts)
781{
782 char *token, *o = data ?: "all";
783
784 opts->subsys_bits = 0;
785 opts->flags = 0;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700786 opts->release_agent = NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700787
788 while ((token = strsep(&o, ",")) != NULL) {
789 if (!*token)
790 return -EINVAL;
791 if (!strcmp(token, "all")) {
Paul Menage8bab8dd2008-04-04 14:29:57 -0700792 /* Add all non-disabled subsystems */
793 int i;
794 opts->subsys_bits = 0;
795 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
796 struct cgroup_subsys *ss = subsys[i];
797 if (!ss->disabled)
798 opts->subsys_bits |= 1ul << i;
799 }
Paul Menageddbcc7e2007-10-18 23:39:30 -0700800 } else if (!strcmp(token, "noprefix")) {
801 set_bit(ROOT_NOPREFIX, &opts->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700802 } else if (!strncmp(token, "release_agent=", 14)) {
803 /* Specifying two release agents is forbidden */
804 if (opts->release_agent)
805 return -EINVAL;
806 opts->release_agent = kzalloc(PATH_MAX, GFP_KERNEL);
807 if (!opts->release_agent)
808 return -ENOMEM;
809 strncpy(opts->release_agent, token + 14, PATH_MAX - 1);
810 opts->release_agent[PATH_MAX - 1] = 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700811 } else {
812 struct cgroup_subsys *ss;
813 int i;
814 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
815 ss = subsys[i];
816 if (!strcmp(token, ss->name)) {
Paul Menage8bab8dd2008-04-04 14:29:57 -0700817 if (!ss->disabled)
818 set_bit(i, &opts->subsys_bits);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700819 break;
820 }
821 }
822 if (i == CGROUP_SUBSYS_COUNT)
823 return -ENOENT;
824 }
825 }
826
827 /* We can't have an empty hierarchy */
828 if (!opts->subsys_bits)
829 return -EINVAL;
830
831 return 0;
832}
833
834static int cgroup_remount(struct super_block *sb, int *flags, char *data)
835{
836 int ret = 0;
837 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -0700838 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700839 struct cgroup_sb_opts opts;
840
Paul Menagebd89aab2007-10-18 23:40:44 -0700841 mutex_lock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700842 mutex_lock(&cgroup_mutex);
843
844 /* See what subsystems are wanted */
845 ret = parse_cgroupfs_options(data, &opts);
846 if (ret)
847 goto out_unlock;
848
849 /* Don't allow flags to change at remount */
850 if (opts.flags != root->flags) {
851 ret = -EINVAL;
852 goto out_unlock;
853 }
854
855 ret = rebind_subsystems(root, opts.subsys_bits);
856
857 /* (re)populate subsystem files */
858 if (!ret)
Paul Menagebd89aab2007-10-18 23:40:44 -0700859 cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700860
Paul Menage81a6a5c2007-10-18 23:39:38 -0700861 if (opts.release_agent)
862 strcpy(root->release_agent_path, opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700863 out_unlock:
Paul Menage81a6a5c2007-10-18 23:39:38 -0700864 if (opts.release_agent)
865 kfree(opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700866 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -0700867 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700868 return ret;
869}
870
871static struct super_operations cgroup_ops = {
872 .statfs = simple_statfs,
873 .drop_inode = generic_delete_inode,
874 .show_options = cgroup_show_options,
875 .remount_fs = cgroup_remount,
876};
877
878static void init_cgroup_root(struct cgroupfs_root *root)
879{
Paul Menagebd89aab2007-10-18 23:40:44 -0700880 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700881 INIT_LIST_HEAD(&root->subsys_list);
882 INIT_LIST_HEAD(&root->root_list);
883 root->number_of_cgroups = 1;
Paul Menagebd89aab2007-10-18 23:40:44 -0700884 cgrp->root = root;
885 cgrp->top_cgroup = cgrp;
886 INIT_LIST_HEAD(&cgrp->sibling);
887 INIT_LIST_HEAD(&cgrp->children);
888 INIT_LIST_HEAD(&cgrp->css_sets);
889 INIT_LIST_HEAD(&cgrp->release_list);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700890}
891
892static int cgroup_test_super(struct super_block *sb, void *data)
893{
894 struct cgroupfs_root *new = data;
895 struct cgroupfs_root *root = sb->s_fs_info;
896
897 /* First check subsystems */
898 if (new->subsys_bits != root->subsys_bits)
899 return 0;
900
901 /* Next check flags */
902 if (new->flags != root->flags)
903 return 0;
904
905 return 1;
906}
907
908static int cgroup_set_super(struct super_block *sb, void *data)
909{
910 int ret;
911 struct cgroupfs_root *root = data;
912
913 ret = set_anon_super(sb, NULL);
914 if (ret)
915 return ret;
916
917 sb->s_fs_info = root;
918 root->sb = sb;
919
920 sb->s_blocksize = PAGE_CACHE_SIZE;
921 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
922 sb->s_magic = CGROUP_SUPER_MAGIC;
923 sb->s_op = &cgroup_ops;
924
925 return 0;
926}
927
928static int cgroup_get_rootdir(struct super_block *sb)
929{
930 struct inode *inode =
931 cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb);
932 struct dentry *dentry;
933
934 if (!inode)
935 return -ENOMEM;
936
Paul Menageddbcc7e2007-10-18 23:39:30 -0700937 inode->i_fop = &simple_dir_operations;
938 inode->i_op = &cgroup_dir_inode_operations;
939 /* directories start off with i_nlink == 2 (for "." entry) */
940 inc_nlink(inode);
941 dentry = d_alloc_root(inode);
942 if (!dentry) {
943 iput(inode);
944 return -ENOMEM;
945 }
946 sb->s_root = dentry;
947 return 0;
948}
949
950static int cgroup_get_sb(struct file_system_type *fs_type,
951 int flags, const char *unused_dev_name,
952 void *data, struct vfsmount *mnt)
953{
954 struct cgroup_sb_opts opts;
955 int ret = 0;
956 struct super_block *sb;
957 struct cgroupfs_root *root;
Li Zefan28fd5df2008-04-29 01:00:13 -0700958 struct list_head tmp_cg_links;
Paul Menage817929e2007-10-18 23:39:36 -0700959 INIT_LIST_HEAD(&tmp_cg_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700960
961 /* First find the desired set of subsystems */
962 ret = parse_cgroupfs_options(data, &opts);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700963 if (ret) {
964 if (opts.release_agent)
965 kfree(opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700966 return ret;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700967 }
Paul Menageddbcc7e2007-10-18 23:39:30 -0700968
969 root = kzalloc(sizeof(*root), GFP_KERNEL);
Li Zefanf7770732008-02-23 15:24:10 -0800970 if (!root) {
971 if (opts.release_agent)
972 kfree(opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700973 return -ENOMEM;
Li Zefanf7770732008-02-23 15:24:10 -0800974 }
Paul Menageddbcc7e2007-10-18 23:39:30 -0700975
976 init_cgroup_root(root);
977 root->subsys_bits = opts.subsys_bits;
978 root->flags = opts.flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700979 if (opts.release_agent) {
980 strcpy(root->release_agent_path, opts.release_agent);
981 kfree(opts.release_agent);
982 }
Paul Menageddbcc7e2007-10-18 23:39:30 -0700983
984 sb = sget(fs_type, cgroup_test_super, cgroup_set_super, root);
985
986 if (IS_ERR(sb)) {
987 kfree(root);
988 return PTR_ERR(sb);
989 }
990
991 if (sb->s_fs_info != root) {
992 /* Reusing an existing superblock */
993 BUG_ON(sb->s_root == NULL);
994 kfree(root);
995 root = NULL;
996 } else {
997 /* New superblock */
Paul Menagebd89aab2007-10-18 23:40:44 -0700998 struct cgroup *cgrp = &root->top_cgroup;
Paul Menage817929e2007-10-18 23:39:36 -0700999 struct inode *inode;
Li Zefan28fd5df2008-04-29 01:00:13 -07001000 int i;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001001
1002 BUG_ON(sb->s_root != NULL);
1003
1004 ret = cgroup_get_rootdir(sb);
1005 if (ret)
1006 goto drop_new_super;
Paul Menage817929e2007-10-18 23:39:36 -07001007 inode = sb->s_root->d_inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001008
Paul Menage817929e2007-10-18 23:39:36 -07001009 mutex_lock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001010 mutex_lock(&cgroup_mutex);
1011
Paul Menage817929e2007-10-18 23:39:36 -07001012 /*
1013 * We're accessing css_set_count without locking
1014 * css_set_lock here, but that's OK - it can only be
1015 * increased by someone holding cgroup_lock, and
1016 * that's us. The worst that can happen is that we
1017 * have some link structures left over
1018 */
1019 ret = allocate_cg_links(css_set_count, &tmp_cg_links);
1020 if (ret) {
1021 mutex_unlock(&cgroup_mutex);
1022 mutex_unlock(&inode->i_mutex);
1023 goto drop_new_super;
1024 }
1025
Paul Menageddbcc7e2007-10-18 23:39:30 -07001026 ret = rebind_subsystems(root, root->subsys_bits);
1027 if (ret == -EBUSY) {
1028 mutex_unlock(&cgroup_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07001029 mutex_unlock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001030 goto drop_new_super;
1031 }
1032
1033 /* EBUSY should be the only error here */
1034 BUG_ON(ret);
1035
1036 list_add(&root->root_list, &roots);
Paul Menage817929e2007-10-18 23:39:36 -07001037 root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001038
1039 sb->s_root->d_fsdata = &root->top_cgroup;
1040 root->top_cgroup.dentry = sb->s_root;
1041
Paul Menage817929e2007-10-18 23:39:36 -07001042 /* Link the top cgroup in this hierarchy into all
1043 * the css_set objects */
1044 write_lock(&css_set_lock);
Li Zefan28fd5df2008-04-29 01:00:13 -07001045 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
1046 struct hlist_head *hhead = &css_set_table[i];
1047 struct hlist_node *node;
Paul Menage817929e2007-10-18 23:39:36 -07001048 struct css_set *cg;
Li Zefan28fd5df2008-04-29 01:00:13 -07001049
1050 hlist_for_each_entry(cg, node, hhead, hlist) {
1051 struct cg_cgroup_link *link;
1052
1053 BUG_ON(list_empty(&tmp_cg_links));
1054 link = list_entry(tmp_cg_links.next,
1055 struct cg_cgroup_link,
1056 cgrp_link_list);
1057 list_del(&link->cgrp_link_list);
1058 link->cg = cg;
1059 list_add(&link->cgrp_link_list,
1060 &root->top_cgroup.css_sets);
1061 list_add(&link->cg_link_list, &cg->cg_links);
1062 }
1063 }
Paul Menage817929e2007-10-18 23:39:36 -07001064 write_unlock(&css_set_lock);
1065
1066 free_cg_links(&tmp_cg_links);
1067
Paul Menagebd89aab2007-10-18 23:40:44 -07001068 BUG_ON(!list_empty(&cgrp->sibling));
1069 BUG_ON(!list_empty(&cgrp->children));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001070 BUG_ON(root->number_of_cgroups != 1);
1071
Paul Menagebd89aab2007-10-18 23:40:44 -07001072 cgroup_populate_dir(cgrp);
Paul Menage817929e2007-10-18 23:39:36 -07001073 mutex_unlock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001074 mutex_unlock(&cgroup_mutex);
1075 }
1076
1077 return simple_set_mnt(mnt, sb);
1078
1079 drop_new_super:
1080 up_write(&sb->s_umount);
1081 deactivate_super(sb);
Paul Menage817929e2007-10-18 23:39:36 -07001082 free_cg_links(&tmp_cg_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001083 return ret;
1084}
1085
1086static void cgroup_kill_sb(struct super_block *sb) {
1087 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001088 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001089 int ret;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001090 struct cg_cgroup_link *link;
1091 struct cg_cgroup_link *saved_link;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001092
1093 BUG_ON(!root);
1094
1095 BUG_ON(root->number_of_cgroups != 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001096 BUG_ON(!list_empty(&cgrp->children));
1097 BUG_ON(!list_empty(&cgrp->sibling));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001098
1099 mutex_lock(&cgroup_mutex);
1100
1101 /* Rebind all subsystems back to the default hierarchy */
1102 ret = rebind_subsystems(root, 0);
1103 /* Shouldn't be able to fail ... */
1104 BUG_ON(ret);
1105
Paul Menage817929e2007-10-18 23:39:36 -07001106 /*
1107 * Release all the links from css_sets to this hierarchy's
1108 * root cgroup
1109 */
1110 write_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001111
1112 list_for_each_entry_safe(link, saved_link, &cgrp->css_sets,
1113 cgrp_link_list) {
Paul Menage817929e2007-10-18 23:39:36 -07001114 list_del(&link->cg_link_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07001115 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001116 kfree(link);
1117 }
1118 write_unlock(&css_set_lock);
1119
1120 if (!list_empty(&root->root_list)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001121 list_del(&root->root_list);
Paul Menage817929e2007-10-18 23:39:36 -07001122 root_count--;
1123 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001124 mutex_unlock(&cgroup_mutex);
1125
1126 kfree(root);
1127 kill_litter_super(sb);
1128}
1129
1130static struct file_system_type cgroup_fs_type = {
1131 .name = "cgroup",
1132 .get_sb = cgroup_get_sb,
1133 .kill_sb = cgroup_kill_sb,
1134};
1135
Paul Menagebd89aab2007-10-18 23:40:44 -07001136static inline struct cgroup *__d_cgrp(struct dentry *dentry)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001137{
1138 return dentry->d_fsdata;
1139}
1140
1141static inline struct cftype *__d_cft(struct dentry *dentry)
1142{
1143 return dentry->d_fsdata;
1144}
1145
Li Zefana043e3b2008-02-23 15:24:09 -08001146/**
1147 * cgroup_path - generate the path of a cgroup
1148 * @cgrp: the cgroup in question
1149 * @buf: the buffer to write the path into
1150 * @buflen: the length of the buffer
1151 *
1152 * Called with cgroup_mutex held. Writes path of cgroup into buf.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001153 * Returns 0 on success, -errno on error.
1154 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001155int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001156{
1157 char *start;
1158
Paul Menagebd89aab2007-10-18 23:40:44 -07001159 if (cgrp == dummytop) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001160 /*
1161 * Inactive subsystems have no dentry for their root
1162 * cgroup
1163 */
1164 strcpy(buf, "/");
1165 return 0;
1166 }
1167
1168 start = buf + buflen;
1169
1170 *--start = '\0';
1171 for (;;) {
Paul Menagebd89aab2007-10-18 23:40:44 -07001172 int len = cgrp->dentry->d_name.len;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001173 if ((start -= len) < buf)
1174 return -ENAMETOOLONG;
Paul Menagebd89aab2007-10-18 23:40:44 -07001175 memcpy(start, cgrp->dentry->d_name.name, len);
1176 cgrp = cgrp->parent;
1177 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001178 break;
Paul Menagebd89aab2007-10-18 23:40:44 -07001179 if (!cgrp->parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001180 continue;
1181 if (--start < buf)
1182 return -ENAMETOOLONG;
1183 *start = '/';
1184 }
1185 memmove(buf, start, buf + buflen - start);
1186 return 0;
1187}
1188
Paul Menagebbcb81d2007-10-18 23:39:32 -07001189/*
1190 * Return the first subsystem attached to a cgroup's hierarchy, and
1191 * its subsystem id.
1192 */
1193
Paul Menagebd89aab2007-10-18 23:40:44 -07001194static void get_first_subsys(const struct cgroup *cgrp,
Paul Menagebbcb81d2007-10-18 23:39:32 -07001195 struct cgroup_subsys_state **css, int *subsys_id)
1196{
Paul Menagebd89aab2007-10-18 23:40:44 -07001197 const struct cgroupfs_root *root = cgrp->root;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001198 const struct cgroup_subsys *test_ss;
1199 BUG_ON(list_empty(&root->subsys_list));
1200 test_ss = list_entry(root->subsys_list.next,
1201 struct cgroup_subsys, sibling);
1202 if (css) {
Paul Menagebd89aab2007-10-18 23:40:44 -07001203 *css = cgrp->subsys[test_ss->subsys_id];
Paul Menagebbcb81d2007-10-18 23:39:32 -07001204 BUG_ON(!*css);
1205 }
1206 if (subsys_id)
1207 *subsys_id = test_ss->subsys_id;
1208}
1209
Li Zefana043e3b2008-02-23 15:24:09 -08001210/**
1211 * cgroup_attach_task - attach task 'tsk' to cgroup 'cgrp'
1212 * @cgrp: the cgroup the task is attaching to
1213 * @tsk: the task to be attached
Paul Menagebbcb81d2007-10-18 23:39:32 -07001214 *
Li Zefana043e3b2008-02-23 15:24:09 -08001215 * Call holding cgroup_mutex. May take task_lock of
1216 * the task 'tsk' during call.
Paul Menagebbcb81d2007-10-18 23:39:32 -07001217 */
Cliff Wickman956db3c2008-02-07 00:14:43 -08001218int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001219{
1220 int retval = 0;
1221 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07001222 struct cgroup *oldcgrp;
Paul Menage817929e2007-10-18 23:39:36 -07001223 struct css_set *cg = tsk->cgroups;
1224 struct css_set *newcg;
Paul Menagebd89aab2007-10-18 23:40:44 -07001225 struct cgroupfs_root *root = cgrp->root;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001226 int subsys_id;
1227
Paul Menagebd89aab2007-10-18 23:40:44 -07001228 get_first_subsys(cgrp, NULL, &subsys_id);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001229
1230 /* Nothing to do if the task is already in that cgroup */
Paul Menagebd89aab2007-10-18 23:40:44 -07001231 oldcgrp = task_cgroup(tsk, subsys_id);
1232 if (cgrp == oldcgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001233 return 0;
1234
1235 for_each_subsys(root, ss) {
1236 if (ss->can_attach) {
Paul Menagebd89aab2007-10-18 23:40:44 -07001237 retval = ss->can_attach(ss, cgrp, tsk);
Paul Jacksone18f6312008-02-07 00:13:44 -08001238 if (retval)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001239 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001240 }
1241 }
1242
Paul Menage817929e2007-10-18 23:39:36 -07001243 /*
1244 * Locate or allocate a new css_set for this task,
1245 * based on its final set of cgroups
1246 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001247 newcg = find_css_set(cg, cgrp);
Paul Jacksone18f6312008-02-07 00:13:44 -08001248 if (!newcg)
Paul Menage817929e2007-10-18 23:39:36 -07001249 return -ENOMEM;
Paul Menage817929e2007-10-18 23:39:36 -07001250
Paul Menagebbcb81d2007-10-18 23:39:32 -07001251 task_lock(tsk);
1252 if (tsk->flags & PF_EXITING) {
1253 task_unlock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07001254 put_css_set(newcg);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001255 return -ESRCH;
1256 }
Paul Menage817929e2007-10-18 23:39:36 -07001257 rcu_assign_pointer(tsk->cgroups, newcg);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001258 task_unlock(tsk);
1259
Paul Menage817929e2007-10-18 23:39:36 -07001260 /* Update the css_set linked lists if we're using them */
1261 write_lock(&css_set_lock);
1262 if (!list_empty(&tsk->cg_list)) {
1263 list_del(&tsk->cg_list);
1264 list_add(&tsk->cg_list, &newcg->tasks);
1265 }
1266 write_unlock(&css_set_lock);
1267
Paul Menagebbcb81d2007-10-18 23:39:32 -07001268 for_each_subsys(root, ss) {
Paul Jacksone18f6312008-02-07 00:13:44 -08001269 if (ss->attach)
Paul Menagebd89aab2007-10-18 23:40:44 -07001270 ss->attach(ss, cgrp, oldcgrp, tsk);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001271 }
Paul Menagebd89aab2007-10-18 23:40:44 -07001272 set_bit(CGRP_RELEASABLE, &oldcgrp->flags);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001273 synchronize_rcu();
Paul Menage817929e2007-10-18 23:39:36 -07001274 put_css_set(cg);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001275 return 0;
1276}
1277
1278/*
Paul Menageaf351022008-07-25 01:47:01 -07001279 * Attach task with pid 'pid' to cgroup 'cgrp'. Call with cgroup_mutex
1280 * held. May take task_lock of task
Paul Menagebbcb81d2007-10-18 23:39:32 -07001281 */
Paul Menageaf351022008-07-25 01:47:01 -07001282static int attach_task_by_pid(struct cgroup *cgrp, u64 pid)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001283{
Paul Menagebbcb81d2007-10-18 23:39:32 -07001284 struct task_struct *tsk;
1285 int ret;
1286
Paul Menagebbcb81d2007-10-18 23:39:32 -07001287 if (pid) {
1288 rcu_read_lock();
Pavel Emelyanov73507f32008-02-07 00:14:47 -08001289 tsk = find_task_by_vpid(pid);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001290 if (!tsk || tsk->flags & PF_EXITING) {
1291 rcu_read_unlock();
1292 return -ESRCH;
1293 }
1294 get_task_struct(tsk);
1295 rcu_read_unlock();
1296
1297 if ((current->euid) && (current->euid != tsk->uid)
1298 && (current->euid != tsk->suid)) {
1299 put_task_struct(tsk);
1300 return -EACCES;
1301 }
1302 } else {
1303 tsk = current;
1304 get_task_struct(tsk);
1305 }
1306
Cliff Wickman956db3c2008-02-07 00:14:43 -08001307 ret = cgroup_attach_task(cgrp, tsk);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001308 put_task_struct(tsk);
1309 return ret;
1310}
1311
Paul Menageaf351022008-07-25 01:47:01 -07001312static int cgroup_tasks_write(struct cgroup *cgrp, struct cftype *cft, u64 pid)
1313{
1314 int ret;
1315 if (!cgroup_lock_live_group(cgrp))
1316 return -ENODEV;
1317 ret = attach_task_by_pid(cgrp, pid);
1318 cgroup_unlock();
1319 return ret;
1320}
1321
Paul Menageddbcc7e2007-10-18 23:39:30 -07001322/* The various types of files and directories in a cgroup file system */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001323enum cgroup_filetype {
1324 FILE_ROOT,
1325 FILE_DIR,
1326 FILE_TASKLIST,
Paul Menage81a6a5c2007-10-18 23:39:38 -07001327 FILE_NOTIFY_ON_RELEASE,
Paul Menage81a6a5c2007-10-18 23:39:38 -07001328 FILE_RELEASE_AGENT,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001329};
1330
Paul Menagee788e062008-07-25 01:46:59 -07001331/**
1332 * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive.
1333 * @cgrp: the cgroup to be checked for liveness
1334 *
Paul Menage84eea842008-07-25 01:47:00 -07001335 * On success, returns true; the lock should be later released with
1336 * cgroup_unlock(). On failure returns false with no lock held.
Paul Menagee788e062008-07-25 01:46:59 -07001337 */
Paul Menage84eea842008-07-25 01:47:00 -07001338bool cgroup_lock_live_group(struct cgroup *cgrp)
Paul Menagee788e062008-07-25 01:46:59 -07001339{
1340 mutex_lock(&cgroup_mutex);
1341 if (cgroup_is_removed(cgrp)) {
1342 mutex_unlock(&cgroup_mutex);
1343 return false;
1344 }
1345 return true;
1346}
1347
1348static int cgroup_release_agent_write(struct cgroup *cgrp, struct cftype *cft,
1349 const char *buffer)
1350{
1351 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
1352 if (!cgroup_lock_live_group(cgrp))
1353 return -ENODEV;
1354 strcpy(cgrp->root->release_agent_path, buffer);
Paul Menage84eea842008-07-25 01:47:00 -07001355 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07001356 return 0;
1357}
1358
1359static int cgroup_release_agent_show(struct cgroup *cgrp, struct cftype *cft,
1360 struct seq_file *seq)
1361{
1362 if (!cgroup_lock_live_group(cgrp))
1363 return -ENODEV;
1364 seq_puts(seq, cgrp->root->release_agent_path);
1365 seq_putc(seq, '\n');
Paul Menage84eea842008-07-25 01:47:00 -07001366 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07001367 return 0;
1368}
1369
Paul Menage84eea842008-07-25 01:47:00 -07001370/* A buffer size big enough for numbers or short strings */
1371#define CGROUP_LOCAL_BUFFER_SIZE 64
1372
Paul Menagee73d2c62008-04-29 01:00:06 -07001373static ssize_t cgroup_write_X64(struct cgroup *cgrp, struct cftype *cft,
Paul Menagef4c753b2008-04-29 00:59:56 -07001374 struct file *file,
1375 const char __user *userbuf,
1376 size_t nbytes, loff_t *unused_ppos)
Paul Menage355e0c42007-10-18 23:39:33 -07001377{
Paul Menage84eea842008-07-25 01:47:00 -07001378 char buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menage355e0c42007-10-18 23:39:33 -07001379 int retval = 0;
Paul Menage355e0c42007-10-18 23:39:33 -07001380 char *end;
1381
1382 if (!nbytes)
1383 return -EINVAL;
1384 if (nbytes >= sizeof(buffer))
1385 return -E2BIG;
1386 if (copy_from_user(buffer, userbuf, nbytes))
1387 return -EFAULT;
1388
1389 buffer[nbytes] = 0; /* nul-terminate */
Paul Menageb7269df2008-04-29 00:59:59 -07001390 strstrip(buffer);
Paul Menagee73d2c62008-04-29 01:00:06 -07001391 if (cft->write_u64) {
1392 u64 val = simple_strtoull(buffer, &end, 0);
1393 if (*end)
1394 return -EINVAL;
1395 retval = cft->write_u64(cgrp, cft, val);
1396 } else {
1397 s64 val = simple_strtoll(buffer, &end, 0);
1398 if (*end)
1399 return -EINVAL;
1400 retval = cft->write_s64(cgrp, cft, val);
1401 }
Paul Menage355e0c42007-10-18 23:39:33 -07001402 if (!retval)
1403 retval = nbytes;
1404 return retval;
1405}
1406
Paul Menagedb3b1492008-07-25 01:46:58 -07001407static ssize_t cgroup_write_string(struct cgroup *cgrp, struct cftype *cft,
1408 struct file *file,
1409 const char __user *userbuf,
1410 size_t nbytes, loff_t *unused_ppos)
1411{
Paul Menage84eea842008-07-25 01:47:00 -07001412 char local_buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagedb3b1492008-07-25 01:46:58 -07001413 int retval = 0;
1414 size_t max_bytes = cft->max_write_len;
1415 char *buffer = local_buffer;
1416
1417 if (!max_bytes)
1418 max_bytes = sizeof(local_buffer) - 1;
1419 if (nbytes >= max_bytes)
1420 return -E2BIG;
1421 /* Allocate a dynamic buffer if we need one */
1422 if (nbytes >= sizeof(local_buffer)) {
1423 buffer = kmalloc(nbytes + 1, GFP_KERNEL);
1424 if (buffer == NULL)
1425 return -ENOMEM;
1426 }
1427 if (nbytes && copy_from_user(buffer, userbuf, nbytes))
1428 return -EFAULT;
1429
1430 buffer[nbytes] = 0; /* nul-terminate */
1431 strstrip(buffer);
1432 retval = cft->write_string(cgrp, cft, buffer);
1433 if (!retval)
1434 retval = nbytes;
1435 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) {
Paul Menage817929e2007-10-18 23:39:36 -07001734 count += atomic_read(&link->cg->ref.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 *
2003 * Upon tasks file open(), a struct ctr_struct is allocated, that
2004 * will have a pointer to an array (also allocated here). The struct
2005 * ctr_struct * is stored in file->private_data. Its resources will
2006 * be freed by release() when the file is closed. The array is used
2007 * to sprintf the PIDs and then used by read().
2008 */
2009struct ctr_struct {
2010 char *buf;
2011 int bufsz;
2012};
2013
2014/*
2015 * Load into 'pidarray' up to 'npids' of the tasks using cgroup
Paul Menagebd89aab2007-10-18 23:40:44 -07002016 * 'cgrp'. Return actual number of pids loaded. No need to
Paul Menagebbcb81d2007-10-18 23:39:32 -07002017 * task_lock(p) when reading out p->cgroup, since we're in an RCU
2018 * read section, so the css_set can't go away, and is
2019 * immutable after creation.
2020 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002021static int pid_array_load(pid_t *pidarray, int npids, struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002022{
2023 int n = 0;
Paul Menage817929e2007-10-18 23:39:36 -07002024 struct cgroup_iter it;
2025 struct task_struct *tsk;
Paul Menagebd89aab2007-10-18 23:40:44 -07002026 cgroup_iter_start(cgrp, &it);
2027 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Paul Menage817929e2007-10-18 23:39:36 -07002028 if (unlikely(n == npids))
2029 break;
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002030 pidarray[n++] = task_pid_vnr(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07002031 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002032 cgroup_iter_end(cgrp, &it);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002033 return n;
2034}
2035
Balbir Singh846c7bb2007-10-18 23:39:44 -07002036/**
Li Zefana043e3b2008-02-23 15:24:09 -08002037 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07002038 * @stats: cgroupstats to fill information into
2039 * @dentry: A dentry entry belonging to the cgroup for which stats have
2040 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08002041 *
2042 * Build and fill cgroupstats so that taskstats can export it to user
2043 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07002044 */
2045int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
2046{
2047 int ret = -EINVAL;
Paul Menagebd89aab2007-10-18 23:40:44 -07002048 struct cgroup *cgrp;
Balbir Singh846c7bb2007-10-18 23:39:44 -07002049 struct cgroup_iter it;
2050 struct task_struct *tsk;
2051 /*
2052 * Validate dentry by checking the superblock operations
2053 */
2054 if (dentry->d_sb->s_op != &cgroup_ops)
2055 goto err;
2056
2057 ret = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07002058 cgrp = dentry->d_fsdata;
Balbir Singh846c7bb2007-10-18 23:39:44 -07002059 rcu_read_lock();
2060
Paul Menagebd89aab2007-10-18 23:40:44 -07002061 cgroup_iter_start(cgrp, &it);
2062 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07002063 switch (tsk->state) {
2064 case TASK_RUNNING:
2065 stats->nr_running++;
2066 break;
2067 case TASK_INTERRUPTIBLE:
2068 stats->nr_sleeping++;
2069 break;
2070 case TASK_UNINTERRUPTIBLE:
2071 stats->nr_uninterruptible++;
2072 break;
2073 case TASK_STOPPED:
2074 stats->nr_stopped++;
2075 break;
2076 default:
2077 if (delayacct_is_task_waiting_on_io(tsk))
2078 stats->nr_io_wait++;
2079 break;
2080 }
2081 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002082 cgroup_iter_end(cgrp, &it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07002083
2084 rcu_read_unlock();
2085err:
2086 return ret;
2087}
2088
Paul Menagebbcb81d2007-10-18 23:39:32 -07002089static int cmppid(const void *a, const void *b)
2090{
2091 return *(pid_t *)a - *(pid_t *)b;
2092}
2093
2094/*
2095 * Convert array 'a' of 'npids' pid_t's to a string of newline separated
2096 * decimal pids in 'buf'. Don't write more than 'sz' chars, but return
2097 * count 'cnt' of how many chars would be written if buf were large enough.
2098 */
2099static int pid_array_to_buf(char *buf, int sz, pid_t *a, int npids)
2100{
2101 int cnt = 0;
2102 int i;
2103
2104 for (i = 0; i < npids; i++)
2105 cnt += snprintf(buf + cnt, max(sz - cnt, 0), "%d\n", a[i]);
2106 return cnt;
2107}
2108
2109/*
2110 * Handle an open on 'tasks' file. Prepare a buffer listing the
2111 * process id's of tasks currently attached to the cgroup being opened.
2112 *
2113 * Does not require any specific cgroup mutexes, and does not take any.
2114 */
2115static int cgroup_tasks_open(struct inode *unused, struct file *file)
2116{
Paul Menagebd89aab2007-10-18 23:40:44 -07002117 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002118 struct ctr_struct *ctr;
2119 pid_t *pidarray;
2120 int npids;
2121 char c;
2122
2123 if (!(file->f_mode & FMODE_READ))
2124 return 0;
2125
2126 ctr = kmalloc(sizeof(*ctr), GFP_KERNEL);
2127 if (!ctr)
2128 goto err0;
2129
2130 /*
2131 * If cgroup gets more users after we read count, we won't have
2132 * enough space - tough. This race is indistinguishable to the
2133 * caller from the case that the additional cgroup users didn't
2134 * show up until sometime later on.
2135 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002136 npids = cgroup_task_count(cgrp);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002137 if (npids) {
2138 pidarray = kmalloc(npids * sizeof(pid_t), GFP_KERNEL);
2139 if (!pidarray)
2140 goto err1;
2141
Paul Menagebd89aab2007-10-18 23:40:44 -07002142 npids = pid_array_load(pidarray, npids, cgrp);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002143 sort(pidarray, npids, sizeof(pid_t), cmppid, NULL);
2144
2145 /* Call pid_array_to_buf() twice, first just to get bufsz */
2146 ctr->bufsz = pid_array_to_buf(&c, sizeof(c), pidarray, npids) + 1;
2147 ctr->buf = kmalloc(ctr->bufsz, GFP_KERNEL);
2148 if (!ctr->buf)
2149 goto err2;
2150 ctr->bufsz = pid_array_to_buf(ctr->buf, ctr->bufsz, pidarray, npids);
2151
2152 kfree(pidarray);
2153 } else {
Al Viro9dce07f2008-03-29 03:07:28 +00002154 ctr->buf = NULL;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002155 ctr->bufsz = 0;
2156 }
2157 file->private_data = ctr;
2158 return 0;
2159
2160err2:
2161 kfree(pidarray);
2162err1:
2163 kfree(ctr);
2164err0:
2165 return -ENOMEM;
2166}
2167
Paul Menagebd89aab2007-10-18 23:40:44 -07002168static ssize_t cgroup_tasks_read(struct cgroup *cgrp,
Paul Menagebbcb81d2007-10-18 23:39:32 -07002169 struct cftype *cft,
2170 struct file *file, char __user *buf,
2171 size_t nbytes, loff_t *ppos)
2172{
2173 struct ctr_struct *ctr = file->private_data;
2174
2175 return simple_read_from_buffer(buf, nbytes, ppos, ctr->buf, ctr->bufsz);
2176}
2177
2178static int cgroup_tasks_release(struct inode *unused_inode,
2179 struct file *file)
2180{
2181 struct ctr_struct *ctr;
2182
2183 if (file->f_mode & FMODE_READ) {
2184 ctr = file->private_data;
2185 kfree(ctr->buf);
2186 kfree(ctr);
2187 }
2188 return 0;
2189}
2190
Paul Menagebd89aab2007-10-18 23:40:44 -07002191static u64 cgroup_read_notify_on_release(struct cgroup *cgrp,
Paul Menage81a6a5c2007-10-18 23:39:38 -07002192 struct cftype *cft)
2193{
Paul Menagebd89aab2007-10-18 23:40:44 -07002194 return notify_on_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002195}
2196
Paul Menage6379c102008-07-25 01:47:01 -07002197static int cgroup_write_notify_on_release(struct cgroup *cgrp,
2198 struct cftype *cft,
2199 u64 val)
2200{
2201 clear_bit(CGRP_RELEASABLE, &cgrp->flags);
2202 if (val)
2203 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
2204 else
2205 clear_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
2206 return 0;
2207}
2208
Paul Menagebbcb81d2007-10-18 23:39:32 -07002209/*
2210 * for the common functions, 'private' gives the type of file
2211 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07002212static struct cftype files[] = {
2213 {
2214 .name = "tasks",
2215 .open = cgroup_tasks_open,
2216 .read = cgroup_tasks_read,
Paul Menageaf351022008-07-25 01:47:01 -07002217 .write_u64 = cgroup_tasks_write,
Paul Menage81a6a5c2007-10-18 23:39:38 -07002218 .release = cgroup_tasks_release,
2219 .private = FILE_TASKLIST,
2220 },
2221
2222 {
2223 .name = "notify_on_release",
Paul Menagef4c753b2008-04-29 00:59:56 -07002224 .read_u64 = cgroup_read_notify_on_release,
Paul Menage6379c102008-07-25 01:47:01 -07002225 .write_u64 = cgroup_write_notify_on_release,
Paul Menage81a6a5c2007-10-18 23:39:38 -07002226 .private = FILE_NOTIFY_ON_RELEASE,
2227 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07002228};
2229
2230static struct cftype cft_release_agent = {
2231 .name = "release_agent",
Paul Menagee788e062008-07-25 01:46:59 -07002232 .read_seq_string = cgroup_release_agent_show,
2233 .write_string = cgroup_release_agent_write,
2234 .max_write_len = PATH_MAX,
Paul Menage81a6a5c2007-10-18 23:39:38 -07002235 .private = FILE_RELEASE_AGENT,
Paul Menagebbcb81d2007-10-18 23:39:32 -07002236};
2237
Paul Menagebd89aab2007-10-18 23:40:44 -07002238static int cgroup_populate_dir(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002239{
2240 int err;
2241 struct cgroup_subsys *ss;
2242
2243 /* First clear out any existing files */
Paul Menagebd89aab2007-10-18 23:40:44 -07002244 cgroup_clear_directory(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002245
Paul Menagebd89aab2007-10-18 23:40:44 -07002246 err = cgroup_add_files(cgrp, NULL, files, ARRAY_SIZE(files));
Paul Menagebbcb81d2007-10-18 23:39:32 -07002247 if (err < 0)
2248 return err;
2249
Paul Menagebd89aab2007-10-18 23:40:44 -07002250 if (cgrp == cgrp->top_cgroup) {
2251 if ((err = cgroup_add_file(cgrp, NULL, &cft_release_agent)) < 0)
Paul Menage81a6a5c2007-10-18 23:39:38 -07002252 return err;
2253 }
2254
Paul Menagebd89aab2007-10-18 23:40:44 -07002255 for_each_subsys(cgrp->root, ss) {
2256 if (ss->populate && (err = ss->populate(ss, cgrp)) < 0)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002257 return err;
2258 }
2259
2260 return 0;
2261}
2262
2263static void init_cgroup_css(struct cgroup_subsys_state *css,
2264 struct cgroup_subsys *ss,
Paul Menagebd89aab2007-10-18 23:40:44 -07002265 struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002266{
Paul Menagebd89aab2007-10-18 23:40:44 -07002267 css->cgroup = cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002268 atomic_set(&css->refcnt, 0);
2269 css->flags = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07002270 if (cgrp == dummytop)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002271 set_bit(CSS_ROOT, &css->flags);
Paul Menagebd89aab2007-10-18 23:40:44 -07002272 BUG_ON(cgrp->subsys[ss->subsys_id]);
2273 cgrp->subsys[ss->subsys_id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002274}
2275
2276/*
Li Zefana043e3b2008-02-23 15:24:09 -08002277 * cgroup_create - create a cgroup
2278 * @parent: cgroup that will be parent of the new cgroup
2279 * @dentry: dentry of the new cgroup
2280 * @mode: mode to set on new inode
Paul Menageddbcc7e2007-10-18 23:39:30 -07002281 *
Li Zefana043e3b2008-02-23 15:24:09 -08002282 * Must be called with the mutex on the parent inode held
Paul Menageddbcc7e2007-10-18 23:39:30 -07002283 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07002284static long cgroup_create(struct cgroup *parent, struct dentry *dentry,
2285 int mode)
2286{
Paul Menagebd89aab2007-10-18 23:40:44 -07002287 struct cgroup *cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002288 struct cgroupfs_root *root = parent->root;
2289 int err = 0;
2290 struct cgroup_subsys *ss;
2291 struct super_block *sb = root->sb;
2292
Paul Menagebd89aab2007-10-18 23:40:44 -07002293 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
2294 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002295 return -ENOMEM;
2296
2297 /* Grab a reference on the superblock so the hierarchy doesn't
2298 * get deleted on unmount if there are child cgroups. This
2299 * can be done outside cgroup_mutex, since the sb can't
2300 * disappear while someone has an open control file on the
2301 * fs */
2302 atomic_inc(&sb->s_active);
2303
2304 mutex_lock(&cgroup_mutex);
2305
Paul Menagebd89aab2007-10-18 23:40:44 -07002306 INIT_LIST_HEAD(&cgrp->sibling);
2307 INIT_LIST_HEAD(&cgrp->children);
2308 INIT_LIST_HEAD(&cgrp->css_sets);
2309 INIT_LIST_HEAD(&cgrp->release_list);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002310
Paul Menagebd89aab2007-10-18 23:40:44 -07002311 cgrp->parent = parent;
2312 cgrp->root = parent->root;
2313 cgrp->top_cgroup = parent->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002314
Li Zefanb6abdb02008-03-04 14:28:19 -08002315 if (notify_on_release(parent))
2316 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
2317
Paul Menageddbcc7e2007-10-18 23:39:30 -07002318 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002319 struct cgroup_subsys_state *css = ss->create(ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002320 if (IS_ERR(css)) {
2321 err = PTR_ERR(css);
2322 goto err_destroy;
2323 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002324 init_cgroup_css(css, ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002325 }
2326
Paul Menagebd89aab2007-10-18 23:40:44 -07002327 list_add(&cgrp->sibling, &cgrp->parent->children);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002328 root->number_of_cgroups++;
2329
Paul Menagebd89aab2007-10-18 23:40:44 -07002330 err = cgroup_create_dir(cgrp, dentry, mode);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002331 if (err < 0)
2332 goto err_remove;
2333
2334 /* The cgroup directory was pre-locked for us */
Paul Menagebd89aab2007-10-18 23:40:44 -07002335 BUG_ON(!mutex_is_locked(&cgrp->dentry->d_inode->i_mutex));
Paul Menageddbcc7e2007-10-18 23:39:30 -07002336
Paul Menagebd89aab2007-10-18 23:40:44 -07002337 err = cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002338 /* If err < 0, we have a half-filled directory - oh well ;) */
2339
2340 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07002341 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002342
2343 return 0;
2344
2345 err_remove:
2346
Paul Menagebd89aab2007-10-18 23:40:44 -07002347 list_del(&cgrp->sibling);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002348 root->number_of_cgroups--;
2349
2350 err_destroy:
2351
2352 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002353 if (cgrp->subsys[ss->subsys_id])
2354 ss->destroy(ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002355 }
2356
2357 mutex_unlock(&cgroup_mutex);
2358
2359 /* Release the reference count that we took on the superblock */
2360 deactivate_super(sb);
2361
Paul Menagebd89aab2007-10-18 23:40:44 -07002362 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002363 return err;
2364}
2365
2366static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2367{
2368 struct cgroup *c_parent = dentry->d_parent->d_fsdata;
2369
2370 /* the vfs holds inode->i_mutex already */
2371 return cgroup_create(c_parent, dentry, mode | S_IFDIR);
2372}
2373
Paul Menagebd89aab2007-10-18 23:40:44 -07002374static inline int cgroup_has_css_refs(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07002375{
2376 /* Check the reference count on each subsystem. Since we
2377 * already established that there are no tasks in the
2378 * cgroup, if the css refcount is also 0, then there should
2379 * be no outstanding references, so the subsystem is safe to
2380 * destroy. We scan across all subsystems rather than using
2381 * the per-hierarchy linked list of mounted subsystems since
2382 * we can be called via check_for_release() with no
2383 * synchronization other than RCU, and the subsystem linked
2384 * list isn't RCU-safe */
2385 int i;
2386 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2387 struct cgroup_subsys *ss = subsys[i];
2388 struct cgroup_subsys_state *css;
2389 /* Skip subsystems not in this hierarchy */
Paul Menagebd89aab2007-10-18 23:40:44 -07002390 if (ss->root != cgrp->root)
Paul Menage81a6a5c2007-10-18 23:39:38 -07002391 continue;
Paul Menagebd89aab2007-10-18 23:40:44 -07002392 css = cgrp->subsys[ss->subsys_id];
Paul Menage81a6a5c2007-10-18 23:39:38 -07002393 /* When called from check_for_release() it's possible
2394 * that by this point the cgroup has been removed
2395 * and the css deleted. But a false-positive doesn't
2396 * matter, since it can only happen if the cgroup
2397 * has been deleted and hence no longer needs the
2398 * release agent to be called anyway. */
Paul Jacksone18f6312008-02-07 00:13:44 -08002399 if (css && atomic_read(&css->refcnt))
Paul Menage81a6a5c2007-10-18 23:39:38 -07002400 return 1;
Paul Menage81a6a5c2007-10-18 23:39:38 -07002401 }
2402 return 0;
2403}
2404
Paul Menageddbcc7e2007-10-18 23:39:30 -07002405static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry)
2406{
Paul Menagebd89aab2007-10-18 23:40:44 -07002407 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002408 struct dentry *d;
2409 struct cgroup *parent;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002410 struct super_block *sb;
2411 struct cgroupfs_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002412
2413 /* the vfs holds both inode->i_mutex already */
2414
2415 mutex_lock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07002416 if (atomic_read(&cgrp->count) != 0) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002417 mutex_unlock(&cgroup_mutex);
2418 return -EBUSY;
2419 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002420 if (!list_empty(&cgrp->children)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002421 mutex_unlock(&cgroup_mutex);
2422 return -EBUSY;
2423 }
2424
Paul Menagebd89aab2007-10-18 23:40:44 -07002425 parent = cgrp->parent;
2426 root = cgrp->root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002427 sb = root->sb;
Li Zefana043e3b2008-02-23 15:24:09 -08002428
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08002429 /*
Li Zefana043e3b2008-02-23 15:24:09 -08002430 * Call pre_destroy handlers of subsys. Notify subsystems
2431 * that rmdir() request comes.
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08002432 */
2433 cgroup_call_pre_destroy(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002434
Paul Menagebd89aab2007-10-18 23:40:44 -07002435 if (cgroup_has_css_refs(cgrp)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002436 mutex_unlock(&cgroup_mutex);
2437 return -EBUSY;
2438 }
2439
Paul Menage81a6a5c2007-10-18 23:39:38 -07002440 spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07002441 set_bit(CGRP_REMOVED, &cgrp->flags);
2442 if (!list_empty(&cgrp->release_list))
2443 list_del(&cgrp->release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002444 spin_unlock(&release_list_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002445 /* delete my sibling from parent->children */
Paul Menagebd89aab2007-10-18 23:40:44 -07002446 list_del(&cgrp->sibling);
2447 spin_lock(&cgrp->dentry->d_lock);
2448 d = dget(cgrp->dentry);
2449 cgrp->dentry = NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002450 spin_unlock(&d->d_lock);
2451
2452 cgroup_d_remove_dir(d);
2453 dput(d);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002454
Paul Menagebd89aab2007-10-18 23:40:44 -07002455 set_bit(CGRP_RELEASABLE, &parent->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002456 check_for_release(parent);
2457
Paul Menageddbcc7e2007-10-18 23:39:30 -07002458 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002459 return 0;
2460}
2461
Li Zefan06a11922008-04-29 01:00:07 -07002462static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002463{
Paul Menageddbcc7e2007-10-18 23:39:30 -07002464 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08002465
2466 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002467
2468 /* Create the top cgroup state for this subsystem */
2469 ss->root = &rootnode;
2470 css = ss->create(ss, dummytop);
2471 /* We don't handle early failures gracefully */
2472 BUG_ON(IS_ERR(css));
2473 init_cgroup_css(css, ss, dummytop);
2474
Li Zefane8d55fd2008-04-29 01:00:13 -07002475 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07002476 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07002477 * newly registered, all tasks and hence the
2478 * init_css_set is in the subsystem's top cgroup. */
2479 init_css_set.subsys[ss->subsys_id] = dummytop->subsys[ss->subsys_id];
Paul Menageddbcc7e2007-10-18 23:39:30 -07002480
2481 need_forkexit_callback |= ss->fork || ss->exit;
Balbir Singhcf475ad2008-04-29 01:00:16 -07002482 need_mm_owner_callback |= !!ss->mm_owner_changed;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002483
Li Zefane8d55fd2008-04-29 01:00:13 -07002484 /* At system boot, before all subsystems have been
2485 * registered, no tasks have been forked, so we don't
2486 * need to invoke fork callbacks here. */
2487 BUG_ON(!list_empty(&init_task.tasks));
2488
Paul Menageddbcc7e2007-10-18 23:39:30 -07002489 ss->active = 1;
2490}
2491
2492/**
Li Zefana043e3b2008-02-23 15:24:09 -08002493 * cgroup_init_early - cgroup initialization at system boot
2494 *
2495 * Initialize cgroups at system boot, and initialize any
2496 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07002497 */
2498int __init cgroup_init_early(void)
2499{
2500 int i;
Paul Menage817929e2007-10-18 23:39:36 -07002501 kref_init(&init_css_set.ref);
2502 kref_get(&init_css_set.ref);
Paul Menage817929e2007-10-18 23:39:36 -07002503 INIT_LIST_HEAD(&init_css_set.cg_links);
2504 INIT_LIST_HEAD(&init_css_set.tasks);
Li Zefan472b1052008-04-29 01:00:11 -07002505 INIT_HLIST_NODE(&init_css_set.hlist);
Paul Menage817929e2007-10-18 23:39:36 -07002506 css_set_count = 1;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002507 init_cgroup_root(&rootnode);
2508 list_add(&rootnode.root_list, &roots);
Paul Menage817929e2007-10-18 23:39:36 -07002509 root_count = 1;
2510 init_task.cgroups = &init_css_set;
2511
2512 init_css_set_link.cg = &init_css_set;
Paul Menagebd89aab2007-10-18 23:40:44 -07002513 list_add(&init_css_set_link.cgrp_link_list,
Paul Menage817929e2007-10-18 23:39:36 -07002514 &rootnode.top_cgroup.css_sets);
2515 list_add(&init_css_set_link.cg_link_list,
2516 &init_css_set.cg_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002517
Li Zefan472b1052008-04-29 01:00:11 -07002518 for (i = 0; i < CSS_SET_TABLE_SIZE; i++)
2519 INIT_HLIST_HEAD(&css_set_table[i]);
2520
Paul Menageddbcc7e2007-10-18 23:39:30 -07002521 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2522 struct cgroup_subsys *ss = subsys[i];
2523
2524 BUG_ON(!ss->name);
2525 BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN);
2526 BUG_ON(!ss->create);
2527 BUG_ON(!ss->destroy);
2528 if (ss->subsys_id != i) {
Diego Callejacfe36bd2007-11-14 16:58:54 -08002529 printk(KERN_ERR "cgroup: Subsys %s id == %d\n",
Paul Menageddbcc7e2007-10-18 23:39:30 -07002530 ss->name, ss->subsys_id);
2531 BUG();
2532 }
2533
2534 if (ss->early_init)
2535 cgroup_init_subsys(ss);
2536 }
2537 return 0;
2538}
2539
2540/**
Li Zefana043e3b2008-02-23 15:24:09 -08002541 * cgroup_init - cgroup initialization
2542 *
2543 * Register cgroup filesystem and /proc file, and initialize
2544 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07002545 */
2546int __init cgroup_init(void)
2547{
2548 int err;
2549 int i;
Li Zefan472b1052008-04-29 01:00:11 -07002550 struct hlist_head *hhead;
Paul Menagea4243162007-10-18 23:39:35 -07002551
2552 err = bdi_init(&cgroup_backing_dev_info);
2553 if (err)
2554 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002555
2556 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2557 struct cgroup_subsys *ss = subsys[i];
2558 if (!ss->early_init)
2559 cgroup_init_subsys(ss);
2560 }
2561
Li Zefan472b1052008-04-29 01:00:11 -07002562 /* Add init_css_set to the hash table */
2563 hhead = css_set_hash(init_css_set.subsys);
2564 hlist_add_head(&init_css_set.hlist, hhead);
2565
Paul Menageddbcc7e2007-10-18 23:39:30 -07002566 err = register_filesystem(&cgroup_fs_type);
2567 if (err < 0)
2568 goto out;
2569
Li Zefan46ae2202008-04-29 01:00:08 -07002570 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Paul Menagea4243162007-10-18 23:39:35 -07002571
Paul Menageddbcc7e2007-10-18 23:39:30 -07002572out:
Paul Menagea4243162007-10-18 23:39:35 -07002573 if (err)
2574 bdi_destroy(&cgroup_backing_dev_info);
2575
Paul Menageddbcc7e2007-10-18 23:39:30 -07002576 return err;
2577}
Paul Menageb4f48b62007-10-18 23:39:33 -07002578
Paul Menagea4243162007-10-18 23:39:35 -07002579/*
2580 * proc_cgroup_show()
2581 * - Print task's cgroup paths into seq_file, one line for each hierarchy
2582 * - Used for /proc/<pid>/cgroup.
2583 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
2584 * doesn't really matter if tsk->cgroup changes after we read it,
Cliff Wickman956db3c2008-02-07 00:14:43 -08002585 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
Paul Menagea4243162007-10-18 23:39:35 -07002586 * anyway. No need to check that tsk->cgroup != NULL, thanks to
2587 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
2588 * cgroup to top_cgroup.
2589 */
2590
2591/* TODO: Use a proper seq_file iterator */
2592static int proc_cgroup_show(struct seq_file *m, void *v)
2593{
2594 struct pid *pid;
2595 struct task_struct *tsk;
2596 char *buf;
2597 int retval;
2598 struct cgroupfs_root *root;
2599
2600 retval = -ENOMEM;
2601 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
2602 if (!buf)
2603 goto out;
2604
2605 retval = -ESRCH;
2606 pid = m->private;
2607 tsk = get_pid_task(pid, PIDTYPE_PID);
2608 if (!tsk)
2609 goto out_free;
2610
2611 retval = 0;
2612
2613 mutex_lock(&cgroup_mutex);
2614
2615 for_each_root(root) {
2616 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07002617 struct cgroup *cgrp;
Paul Menagea4243162007-10-18 23:39:35 -07002618 int subsys_id;
2619 int count = 0;
2620
2621 /* Skip this hierarchy if it has no active subsystems */
2622 if (!root->actual_subsys_bits)
2623 continue;
Paul Menageb6c30062008-04-10 21:29:16 -07002624 seq_printf(m, "%lu:", root->subsys_bits);
Paul Menagea4243162007-10-18 23:39:35 -07002625 for_each_subsys(root, ss)
2626 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
2627 seq_putc(m, ':');
2628 get_first_subsys(&root->top_cgroup, NULL, &subsys_id);
Paul Menagebd89aab2007-10-18 23:40:44 -07002629 cgrp = task_cgroup(tsk, subsys_id);
2630 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
Paul Menagea4243162007-10-18 23:39:35 -07002631 if (retval < 0)
2632 goto out_unlock;
2633 seq_puts(m, buf);
2634 seq_putc(m, '\n');
2635 }
2636
2637out_unlock:
2638 mutex_unlock(&cgroup_mutex);
2639 put_task_struct(tsk);
2640out_free:
2641 kfree(buf);
2642out:
2643 return retval;
2644}
2645
2646static int cgroup_open(struct inode *inode, struct file *file)
2647{
2648 struct pid *pid = PROC_I(inode)->pid;
2649 return single_open(file, proc_cgroup_show, pid);
2650}
2651
2652struct file_operations proc_cgroup_operations = {
2653 .open = cgroup_open,
2654 .read = seq_read,
2655 .llseek = seq_lseek,
2656 .release = single_release,
2657};
2658
2659/* Display information about each subsystem and each hierarchy */
2660static int proc_cgroupstats_show(struct seq_file *m, void *v)
2661{
2662 int i;
Paul Menagea4243162007-10-18 23:39:35 -07002663
Paul Menage8bab8dd2008-04-04 14:29:57 -07002664 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Paul Menagea4243162007-10-18 23:39:35 -07002665 mutex_lock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07002666 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2667 struct cgroup_subsys *ss = subsys[i];
Paul Menage8bab8dd2008-04-04 14:29:57 -07002668 seq_printf(m, "%s\t%lu\t%d\t%d\n",
Paul Menage817929e2007-10-18 23:39:36 -07002669 ss->name, ss->root->subsys_bits,
Paul Menage8bab8dd2008-04-04 14:29:57 -07002670 ss->root->number_of_cgroups, !ss->disabled);
Paul Menagea4243162007-10-18 23:39:35 -07002671 }
2672 mutex_unlock(&cgroup_mutex);
2673 return 0;
2674}
2675
2676static int cgroupstats_open(struct inode *inode, struct file *file)
2677{
Al Viro9dce07f2008-03-29 03:07:28 +00002678 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07002679}
2680
2681static struct file_operations proc_cgroupstats_operations = {
2682 .open = cgroupstats_open,
2683 .read = seq_read,
2684 .llseek = seq_lseek,
2685 .release = single_release,
2686};
2687
Paul Menageb4f48b62007-10-18 23:39:33 -07002688/**
2689 * cgroup_fork - attach newly forked task to its parents cgroup.
Li Zefana043e3b2008-02-23 15:24:09 -08002690 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07002691 *
2692 * Description: A task inherits its parent's cgroup at fork().
2693 *
2694 * A pointer to the shared css_set was automatically copied in
2695 * fork.c by dup_task_struct(). However, we ignore that copy, since
2696 * it was not made under the protection of RCU or cgroup_mutex, so
Cliff Wickman956db3c2008-02-07 00:14:43 -08002697 * might no longer be a valid cgroup pointer. cgroup_attach_task() might
Paul Menage817929e2007-10-18 23:39:36 -07002698 * have already changed current->cgroups, allowing the previously
2699 * referenced cgroup group to be removed and freed.
Paul Menageb4f48b62007-10-18 23:39:33 -07002700 *
2701 * At the point that cgroup_fork() is called, 'current' is the parent
2702 * task, and the passed argument 'child' points to the child task.
2703 */
2704void cgroup_fork(struct task_struct *child)
2705{
Paul Menage817929e2007-10-18 23:39:36 -07002706 task_lock(current);
2707 child->cgroups = current->cgroups;
2708 get_css_set(child->cgroups);
2709 task_unlock(current);
2710 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07002711}
2712
2713/**
Li Zefana043e3b2008-02-23 15:24:09 -08002714 * cgroup_fork_callbacks - run fork callbacks
2715 * @child: the new task
2716 *
2717 * Called on a new task very soon before adding it to the
2718 * tasklist. No need to take any locks since no-one can
2719 * be operating on this task.
Paul Menageb4f48b62007-10-18 23:39:33 -07002720 */
2721void cgroup_fork_callbacks(struct task_struct *child)
2722{
2723 if (need_forkexit_callback) {
2724 int i;
2725 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2726 struct cgroup_subsys *ss = subsys[i];
2727 if (ss->fork)
2728 ss->fork(ss, child);
2729 }
2730 }
2731}
2732
Balbir Singhcf475ad2008-04-29 01:00:16 -07002733#ifdef CONFIG_MM_OWNER
2734/**
2735 * cgroup_mm_owner_callbacks - run callbacks when the mm->owner changes
2736 * @p: the new owner
2737 *
2738 * Called on every change to mm->owner. mm_init_owner() does not
2739 * invoke this routine, since it assigns the mm->owner the first time
2740 * and does not change it.
2741 */
2742void cgroup_mm_owner_callbacks(struct task_struct *old, struct task_struct *new)
2743{
2744 struct cgroup *oldcgrp, *newcgrp;
2745
2746 if (need_mm_owner_callback) {
2747 int i;
2748 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2749 struct cgroup_subsys *ss = subsys[i];
2750 oldcgrp = task_cgroup(old, ss->subsys_id);
2751 newcgrp = task_cgroup(new, ss->subsys_id);
2752 if (oldcgrp == newcgrp)
2753 continue;
2754 if (ss->mm_owner_changed)
2755 ss->mm_owner_changed(ss, oldcgrp, newcgrp);
2756 }
2757 }
2758}
2759#endif /* CONFIG_MM_OWNER */
2760
Paul Menageb4f48b62007-10-18 23:39:33 -07002761/**
Li Zefana043e3b2008-02-23 15:24:09 -08002762 * cgroup_post_fork - called on a new task after adding it to the task list
2763 * @child: the task in question
2764 *
2765 * Adds the task to the list running through its css_set if necessary.
2766 * Has to be after the task is visible on the task list in case we race
2767 * with the first call to cgroup_iter_start() - to guarantee that the
2768 * new task ends up on its list.
2769 */
Paul Menage817929e2007-10-18 23:39:36 -07002770void cgroup_post_fork(struct task_struct *child)
2771{
2772 if (use_task_css_set_links) {
2773 write_lock(&css_set_lock);
2774 if (list_empty(&child->cg_list))
2775 list_add(&child->cg_list, &child->cgroups->tasks);
2776 write_unlock(&css_set_lock);
2777 }
2778}
2779/**
Paul Menageb4f48b62007-10-18 23:39:33 -07002780 * cgroup_exit - detach cgroup from exiting task
2781 * @tsk: pointer to task_struct of exiting process
Li Zefana043e3b2008-02-23 15:24:09 -08002782 * @run_callback: run exit callbacks?
Paul Menageb4f48b62007-10-18 23:39:33 -07002783 *
2784 * Description: Detach cgroup from @tsk and release it.
2785 *
2786 * Note that cgroups marked notify_on_release force every task in
2787 * them to take the global cgroup_mutex mutex when exiting.
2788 * This could impact scaling on very large systems. Be reluctant to
2789 * use notify_on_release cgroups where very high task exit scaling
2790 * is required on large systems.
2791 *
2792 * the_top_cgroup_hack:
2793 *
2794 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
2795 *
2796 * We call cgroup_exit() while the task is still competent to
2797 * handle notify_on_release(), then leave the task attached to the
2798 * root cgroup in each hierarchy for the remainder of its exit.
2799 *
2800 * To do this properly, we would increment the reference count on
2801 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
2802 * code we would add a second cgroup function call, to drop that
2803 * reference. This would just create an unnecessary hot spot on
2804 * the top_cgroup reference count, to no avail.
2805 *
2806 * Normally, holding a reference to a cgroup without bumping its
2807 * count is unsafe. The cgroup could go away, or someone could
2808 * attach us to a different cgroup, decrementing the count on
2809 * the first cgroup that we never incremented. But in this case,
2810 * top_cgroup isn't going away, and either task has PF_EXITING set,
Cliff Wickman956db3c2008-02-07 00:14:43 -08002811 * which wards off any cgroup_attach_task() attempts, or task is a failed
2812 * fork, never visible to cgroup_attach_task.
Paul Menageb4f48b62007-10-18 23:39:33 -07002813 */
2814void cgroup_exit(struct task_struct *tsk, int run_callbacks)
2815{
2816 int i;
Paul Menage817929e2007-10-18 23:39:36 -07002817 struct css_set *cg;
Paul Menageb4f48b62007-10-18 23:39:33 -07002818
2819 if (run_callbacks && need_forkexit_callback) {
2820 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
2821 struct cgroup_subsys *ss = subsys[i];
2822 if (ss->exit)
2823 ss->exit(ss, tsk);
2824 }
2825 }
Paul Menage817929e2007-10-18 23:39:36 -07002826
2827 /*
2828 * Unlink from the css_set task list if necessary.
2829 * Optimistically check cg_list before taking
2830 * css_set_lock
2831 */
2832 if (!list_empty(&tsk->cg_list)) {
2833 write_lock(&css_set_lock);
2834 if (!list_empty(&tsk->cg_list))
2835 list_del(&tsk->cg_list);
2836 write_unlock(&css_set_lock);
2837 }
2838
Paul Menageb4f48b62007-10-18 23:39:33 -07002839 /* Reassign the task to the init_css_set. */
2840 task_lock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07002841 cg = tsk->cgroups;
2842 tsk->cgroups = &init_css_set;
Paul Menageb4f48b62007-10-18 23:39:33 -07002843 task_unlock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07002844 if (cg)
Paul Menage81a6a5c2007-10-18 23:39:38 -07002845 put_css_set_taskexit(cg);
Paul Menageb4f48b62007-10-18 23:39:33 -07002846}
Paul Menage697f4162007-10-18 23:39:34 -07002847
2848/**
Li Zefana043e3b2008-02-23 15:24:09 -08002849 * cgroup_clone - clone the cgroup the given subsystem is attached to
2850 * @tsk: the task to be moved
2851 * @subsys: the given subsystem
Serge E. Hallyne885dcd2008-07-25 01:47:06 -07002852 * @nodename: the name for the new cgroup
Li Zefana043e3b2008-02-23 15:24:09 -08002853 *
2854 * Duplicate the current cgroup in the hierarchy that the given
2855 * subsystem is attached to, and move this task into the new
2856 * child.
Paul Menage697f4162007-10-18 23:39:34 -07002857 */
Serge E. Hallyne885dcd2008-07-25 01:47:06 -07002858int cgroup_clone(struct task_struct *tsk, struct cgroup_subsys *subsys,
2859 char *nodename)
Paul Menage697f4162007-10-18 23:39:34 -07002860{
2861 struct dentry *dentry;
2862 int ret = 0;
Paul Menage697f4162007-10-18 23:39:34 -07002863 struct cgroup *parent, *child;
2864 struct inode *inode;
2865 struct css_set *cg;
2866 struct cgroupfs_root *root;
2867 struct cgroup_subsys *ss;
2868
2869 /* We shouldn't be called by an unregistered subsystem */
2870 BUG_ON(!subsys->active);
2871
2872 /* First figure out what hierarchy and cgroup we're dealing
2873 * with, and pin them so we can drop cgroup_mutex */
2874 mutex_lock(&cgroup_mutex);
2875 again:
2876 root = subsys->root;
2877 if (root == &rootnode) {
2878 printk(KERN_INFO
2879 "Not cloning cgroup for unused subsystem %s\n",
2880 subsys->name);
2881 mutex_unlock(&cgroup_mutex);
2882 return 0;
2883 }
Paul Menage817929e2007-10-18 23:39:36 -07002884 cg = tsk->cgroups;
Paul Menage697f4162007-10-18 23:39:34 -07002885 parent = task_cgroup(tsk, subsys->subsys_id);
2886
Paul Menage697f4162007-10-18 23:39:34 -07002887 /* Pin the hierarchy */
2888 atomic_inc(&parent->root->sb->s_active);
2889
Paul Menage817929e2007-10-18 23:39:36 -07002890 /* Keep the cgroup alive */
2891 get_css_set(cg);
Paul Menage697f4162007-10-18 23:39:34 -07002892 mutex_unlock(&cgroup_mutex);
2893
2894 /* Now do the VFS work to create a cgroup */
2895 inode = parent->dentry->d_inode;
2896
2897 /* Hold the parent directory mutex across this operation to
2898 * stop anyone else deleting the new cgroup */
2899 mutex_lock(&inode->i_mutex);
2900 dentry = lookup_one_len(nodename, parent->dentry, strlen(nodename));
2901 if (IS_ERR(dentry)) {
2902 printk(KERN_INFO
Diego Callejacfe36bd2007-11-14 16:58:54 -08002903 "cgroup: Couldn't allocate dentry for %s: %ld\n", nodename,
Paul Menage697f4162007-10-18 23:39:34 -07002904 PTR_ERR(dentry));
2905 ret = PTR_ERR(dentry);
2906 goto out_release;
2907 }
2908
2909 /* Create the cgroup directory, which also creates the cgroup */
2910 ret = vfs_mkdir(inode, dentry, S_IFDIR | 0755);
Paul Menagebd89aab2007-10-18 23:40:44 -07002911 child = __d_cgrp(dentry);
Paul Menage697f4162007-10-18 23:39:34 -07002912 dput(dentry);
2913 if (ret) {
2914 printk(KERN_INFO
2915 "Failed to create cgroup %s: %d\n", nodename,
2916 ret);
2917 goto out_release;
2918 }
2919
2920 if (!child) {
2921 printk(KERN_INFO
2922 "Couldn't find new cgroup %s\n", nodename);
2923 ret = -ENOMEM;
2924 goto out_release;
2925 }
2926
2927 /* The cgroup now exists. Retake cgroup_mutex and check
2928 * that we're still in the same state that we thought we
2929 * were. */
2930 mutex_lock(&cgroup_mutex);
2931 if ((root != subsys->root) ||
2932 (parent != task_cgroup(tsk, subsys->subsys_id))) {
2933 /* Aargh, we raced ... */
2934 mutex_unlock(&inode->i_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07002935 put_css_set(cg);
Paul Menage697f4162007-10-18 23:39:34 -07002936
2937 deactivate_super(parent->root->sb);
2938 /* The cgroup is still accessible in the VFS, but
2939 * we're not going to try to rmdir() it at this
2940 * point. */
2941 printk(KERN_INFO
2942 "Race in cgroup_clone() - leaking cgroup %s\n",
2943 nodename);
2944 goto again;
2945 }
2946
2947 /* do any required auto-setup */
2948 for_each_subsys(root, ss) {
2949 if (ss->post_clone)
2950 ss->post_clone(ss, child);
2951 }
2952
2953 /* All seems fine. Finish by moving the task into the new cgroup */
Cliff Wickman956db3c2008-02-07 00:14:43 -08002954 ret = cgroup_attach_task(child, tsk);
Paul Menage697f4162007-10-18 23:39:34 -07002955 mutex_unlock(&cgroup_mutex);
2956
2957 out_release:
2958 mutex_unlock(&inode->i_mutex);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002959
2960 mutex_lock(&cgroup_mutex);
Paul Menage817929e2007-10-18 23:39:36 -07002961 put_css_set(cg);
Paul Menage81a6a5c2007-10-18 23:39:38 -07002962 mutex_unlock(&cgroup_mutex);
Paul Menage697f4162007-10-18 23:39:34 -07002963 deactivate_super(parent->root->sb);
2964 return ret;
2965}
2966
Li Zefana043e3b2008-02-23 15:24:09 -08002967/**
2968 * cgroup_is_descendant - see if @cgrp is a descendant of current task's cgrp
2969 * @cgrp: the cgroup in question
2970 *
2971 * See if @cgrp is a descendant of the current task's cgroup in
2972 * the appropriate hierarchy.
Paul Menage697f4162007-10-18 23:39:34 -07002973 *
2974 * If we are sending in dummytop, then presumably we are creating
2975 * the top cgroup in the subsystem.
2976 *
2977 * Called only by the ns (nsproxy) cgroup.
2978 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002979int cgroup_is_descendant(const struct cgroup *cgrp)
Paul Menage697f4162007-10-18 23:39:34 -07002980{
2981 int ret;
2982 struct cgroup *target;
2983 int subsys_id;
2984
Paul Menagebd89aab2007-10-18 23:40:44 -07002985 if (cgrp == dummytop)
Paul Menage697f4162007-10-18 23:39:34 -07002986 return 1;
2987
Paul Menagebd89aab2007-10-18 23:40:44 -07002988 get_first_subsys(cgrp, NULL, &subsys_id);
Paul Menage697f4162007-10-18 23:39:34 -07002989 target = task_cgroup(current, subsys_id);
Paul Menagebd89aab2007-10-18 23:40:44 -07002990 while (cgrp != target && cgrp!= cgrp->top_cgroup)
2991 cgrp = cgrp->parent;
2992 ret = (cgrp == target);
Paul Menage697f4162007-10-18 23:39:34 -07002993 return ret;
2994}
Paul Menage81a6a5c2007-10-18 23:39:38 -07002995
Paul Menagebd89aab2007-10-18 23:40:44 -07002996static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07002997{
2998 /* All of these checks rely on RCU to keep the cgroup
2999 * structure alive */
Paul Menagebd89aab2007-10-18 23:40:44 -07003000 if (cgroup_is_releasable(cgrp) && !atomic_read(&cgrp->count)
3001 && list_empty(&cgrp->children) && !cgroup_has_css_refs(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07003002 /* Control Group is currently removeable. If it's not
3003 * already queued for a userspace notification, queue
3004 * it now */
3005 int need_schedule_work = 0;
3006 spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07003007 if (!cgroup_is_removed(cgrp) &&
3008 list_empty(&cgrp->release_list)) {
3009 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003010 need_schedule_work = 1;
3011 }
3012 spin_unlock(&release_list_lock);
3013 if (need_schedule_work)
3014 schedule_work(&release_agent_work);
3015 }
3016}
3017
3018void __css_put(struct cgroup_subsys_state *css)
3019{
Paul Menagebd89aab2007-10-18 23:40:44 -07003020 struct cgroup *cgrp = css->cgroup;
Paul Menage81a6a5c2007-10-18 23:39:38 -07003021 rcu_read_lock();
Paul Menagebd89aab2007-10-18 23:40:44 -07003022 if (atomic_dec_and_test(&css->refcnt) && notify_on_release(cgrp)) {
3023 set_bit(CGRP_RELEASABLE, &cgrp->flags);
3024 check_for_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003025 }
3026 rcu_read_unlock();
3027}
3028
3029/*
3030 * Notify userspace when a cgroup is released, by running the
3031 * configured release agent with the name of the cgroup (path
3032 * relative to the root of cgroup file system) as the argument.
3033 *
3034 * Most likely, this user command will try to rmdir this cgroup.
3035 *
3036 * This races with the possibility that some other task will be
3037 * attached to this cgroup before it is removed, or that some other
3038 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
3039 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
3040 * unused, and this cgroup will be reprieved from its death sentence,
3041 * to continue to serve a useful existence. Next time it's released,
3042 * we will get notified again, if it still has 'notify_on_release' set.
3043 *
3044 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
3045 * means only wait until the task is successfully execve()'d. The
3046 * separate release agent task is forked by call_usermodehelper(),
3047 * then control in this thread returns here, without waiting for the
3048 * release agent task. We don't bother to wait because the caller of
3049 * this routine has no use for the exit status of the release agent
3050 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07003051 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07003052static void cgroup_release_agent(struct work_struct *work)
3053{
3054 BUG_ON(work != &release_agent_work);
3055 mutex_lock(&cgroup_mutex);
3056 spin_lock(&release_list_lock);
3057 while (!list_empty(&release_list)) {
3058 char *argv[3], *envp[3];
3059 int i;
Paul Menagee788e062008-07-25 01:46:59 -07003060 char *pathbuf = NULL, *agentbuf = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07003061 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003062 struct cgroup,
3063 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07003064 list_del_init(&cgrp->release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003065 spin_unlock(&release_list_lock);
3066 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paul Menagee788e062008-07-25 01:46:59 -07003067 if (!pathbuf)
3068 goto continue_free;
3069 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0)
3070 goto continue_free;
3071 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
3072 if (!agentbuf)
3073 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07003074
3075 i = 0;
Paul Menagee788e062008-07-25 01:46:59 -07003076 argv[i++] = agentbuf;
3077 argv[i++] = pathbuf;
Paul Menage81a6a5c2007-10-18 23:39:38 -07003078 argv[i] = NULL;
3079
3080 i = 0;
3081 /* minimal command environment */
3082 envp[i++] = "HOME=/";
3083 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
3084 envp[i] = NULL;
3085
3086 /* Drop the lock while we invoke the usermode helper,
3087 * since the exec could involve hitting disk and hence
3088 * be a slow process */
3089 mutex_unlock(&cgroup_mutex);
3090 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003091 mutex_lock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07003092 continue_free:
3093 kfree(pathbuf);
3094 kfree(agentbuf);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003095 spin_lock(&release_list_lock);
3096 }
3097 spin_unlock(&release_list_lock);
3098 mutex_unlock(&cgroup_mutex);
3099}
Paul Menage8bab8dd2008-04-04 14:29:57 -07003100
3101static int __init cgroup_disable(char *str)
3102{
3103 int i;
3104 char *token;
3105
3106 while ((token = strsep(&str, ",")) != NULL) {
3107 if (!*token)
3108 continue;
3109
3110 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3111 struct cgroup_subsys *ss = subsys[i];
3112
3113 if (!strcmp(token, ss->name)) {
3114 ss->disabled = 1;
3115 printk(KERN_INFO "Disabling %s control group"
3116 " subsystem\n", ss->name);
3117 break;
3118 }
3119 }
3120 }
3121 return 1;
3122}
3123__setup("cgroup_disable=", cgroup_disable);