blob: 1b3b84174ead5d802809c657be72d6f26a28bd7e [file] [log] [blame]
Paul Menageddbcc7e2007-10-18 23:39:30 -07001/*
Paul Menageddbcc7e2007-10-18 23:39:30 -07002 * Generic process-grouping system.
3 *
4 * Based originally on the cpuset system, extracted by Paul Menage
5 * Copyright (C) 2006 Google, Inc
6 *
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08007 * Notifications support
8 * Copyright (C) 2009 Nokia Corporation
9 * Author: Kirill A. Shutemov
10 *
Paul Menageddbcc7e2007-10-18 23:39:30 -070011 * Copyright notices from the original cpuset code:
12 * --------------------------------------------------
13 * Copyright (C) 2003 BULL SA.
14 * Copyright (C) 2004-2006 Silicon Graphics, Inc.
15 *
16 * Portions derived from Patrick Mochel's sysfs code.
17 * sysfs is Copyright (c) 2001-3 Patrick Mochel
18 *
19 * 2003-10-10 Written by Simon Derr.
20 * 2003-10-22 Updates by Stephen Hemminger.
21 * 2004 May-July Rework by Paul Jackson.
22 * ---------------------------------------------------
23 *
24 * This file is subject to the terms and conditions of the GNU General Public
25 * License. See the file COPYING in the main directory of the Linux
26 * distribution for more details.
27 */
28
29#include <linux/cgroup.h>
eparis@redhat2ce97382011-06-02 21:20:51 +100030#include <linux/cred.h>
Paul Menagec6d57f32009-09-23 15:56:19 -070031#include <linux/ctype.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070032#include <linux/errno.h>
33#include <linux/fs.h>
eparis@redhat2ce97382011-06-02 21:20:51 +100034#include <linux/init_task.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070035#include <linux/kernel.h>
36#include <linux/list.h>
37#include <linux/mm.h>
38#include <linux/mutex.h>
39#include <linux/mount.h>
40#include <linux/pagemap.h>
Paul Menagea4243162007-10-18 23:39:35 -070041#include <linux/proc_fs.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070042#include <linux/rcupdate.h>
43#include <linux/sched.h>
Paul Menage817929e2007-10-18 23:39:36 -070044#include <linux/backing-dev.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070045#include <linux/seq_file.h>
46#include <linux/slab.h>
47#include <linux/magic.h>
48#include <linux/spinlock.h>
49#include <linux/string.h>
Paul Menagebbcb81d2007-10-18 23:39:32 -070050#include <linux/sort.h>
Paul Menage81a6a5c2007-10-18 23:39:38 -070051#include <linux/kmod.h>
Ben Blume6a11052010-03-10 15:22:09 -080052#include <linux/module.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070053#include <linux/delayacct.h>
54#include <linux/cgroupstats.h>
Li Zefan472b1052008-04-29 01:00:11 -070055#include <linux/hash.h>
Al Viro3f8206d2008-07-26 03:46:43 -040056#include <linux/namei.h>
Li Zefan096b7fe2009-07-29 15:04:04 -070057#include <linux/pid_namespace.h>
Paul Menage2c6ab6d2009-09-23 15:56:23 -070058#include <linux/idr.h>
Ben Blumd1d9fd32009-09-23 15:56:28 -070059#include <linux/vmalloc.h> /* TODO: replace with more sophisticated array */
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -080060#include <linux/eventfd.h>
61#include <linux/poll.h>
Ben Blumd8466872011-05-26 16:25:21 -070062#include <linux/flex_array.h> /* used in cgroup_attach_proc */
Balbir Singh846c7bb2007-10-18 23:39:44 -070063
Arun Sharma600634972011-07-26 16:09:06 -070064#include <linux/atomic.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070065
Tejun Heoe25e2cb2011-12-12 18:12:21 -080066/*
67 * cgroup_mutex is the master lock. Any modification to cgroup or its
68 * hierarchy must be performed while holding it.
69 *
70 * cgroup_root_mutex nests inside cgroup_mutex and should be held to modify
71 * cgroupfs_root of any cgroup hierarchy - subsys list, flags,
72 * release_agent_path and so on. Modifying requires both cgroup_mutex and
73 * cgroup_root_mutex. Readers can acquire either of the two. This is to
74 * break the following locking order cycle.
75 *
76 * A. cgroup_mutex -> cred_guard_mutex -> s_type->i_mutex_key -> namespace_sem
77 * B. namespace_sem -> cgroup_mutex
78 *
79 * B happens only through cgroup_show_options() and using cgroup_root_mutex
80 * breaks it.
81 */
Paul Menage81a6a5c2007-10-18 23:39:38 -070082static DEFINE_MUTEX(cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -080083static DEFINE_MUTEX(cgroup_root_mutex);
Paul Menage81a6a5c2007-10-18 23:39:38 -070084
Ben Blumaae8aab2010-03-10 15:22:07 -080085/*
86 * Generate an array of cgroup subsystem pointers. At boot time, this is
87 * populated up to CGROUP_BUILTIN_SUBSYS_COUNT, and modular subsystems are
88 * registered after that. The mutable section of this array is protected by
89 * cgroup_mutex.
90 */
Paul Menageddbcc7e2007-10-18 23:39:30 -070091#define SUBSYS(_x) &_x ## _subsys,
Ben Blumaae8aab2010-03-10 15:22:07 -080092static struct cgroup_subsys *subsys[CGROUP_SUBSYS_COUNT] = {
Paul Menageddbcc7e2007-10-18 23:39:30 -070093#include <linux/cgroup_subsys.h>
94};
95
Paul Menagec6d57f32009-09-23 15:56:19 -070096#define MAX_CGROUP_ROOT_NAMELEN 64
97
Paul Menageddbcc7e2007-10-18 23:39:30 -070098/*
99 * A cgroupfs_root represents the root of a cgroup hierarchy,
100 * and may be associated with a superblock to form an active
101 * hierarchy
102 */
103struct cgroupfs_root {
104 struct super_block *sb;
105
106 /*
107 * The bitmask of subsystems intended to be attached to this
108 * hierarchy
109 */
110 unsigned long subsys_bits;
111
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700112 /* Unique id for this hierarchy. */
113 int hierarchy_id;
114
Paul Menageddbcc7e2007-10-18 23:39:30 -0700115 /* The bitmask of subsystems currently attached to this hierarchy */
116 unsigned long actual_subsys_bits;
117
118 /* A list running through the attached subsystems */
119 struct list_head subsys_list;
120
121 /* The root cgroup for this hierarchy */
122 struct cgroup top_cgroup;
123
124 /* Tracks how many cgroups are currently defined in hierarchy.*/
125 int number_of_cgroups;
126
Li Zefane5f6a862009-01-07 18:07:41 -0800127 /* A list running through the active hierarchies */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700128 struct list_head root_list;
129
130 /* Hierarchy-specific flags */
131 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700132
Paul Menagee788e062008-07-25 01:46:59 -0700133 /* The path to use for release notifications. */
Paul Menage81a6a5c2007-10-18 23:39:38 -0700134 char release_agent_path[PATH_MAX];
Paul Menagec6d57f32009-09-23 15:56:19 -0700135
136 /* The name for this hierarchy - may be empty */
137 char name[MAX_CGROUP_ROOT_NAMELEN];
Paul Menageddbcc7e2007-10-18 23:39:30 -0700138};
139
Paul Menageddbcc7e2007-10-18 23:39:30 -0700140/*
141 * The "rootnode" hierarchy is the "dummy hierarchy", reserved for the
142 * subsystems that are otherwise unattached - it never has more than a
143 * single cgroup, and all tasks are part of that cgroup.
144 */
145static struct cgroupfs_root rootnode;
146
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700147/*
148 * CSS ID -- ID per subsys's Cgroup Subsys State(CSS). used only when
149 * cgroup_subsys->use_id != 0.
150 */
151#define CSS_ID_MAX (65535)
152struct css_id {
153 /*
154 * The css to which this ID points. This pointer is set to valid value
155 * after cgroup is populated. If cgroup is removed, this will be NULL.
156 * This pointer is expected to be RCU-safe because destroy()
157 * is called after synchronize_rcu(). But for safe use, css_is_removed()
158 * css_tryget() should be used for avoiding race.
159 */
Arnd Bergmann2c392b82010-02-24 19:41:39 +0100160 struct cgroup_subsys_state __rcu *css;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700161 /*
162 * ID of this css.
163 */
164 unsigned short id;
165 /*
166 * Depth in hierarchy which this ID belongs to.
167 */
168 unsigned short depth;
169 /*
170 * ID is freed by RCU. (and lookup routine is RCU safe.)
171 */
172 struct rcu_head rcu_head;
173 /*
174 * Hierarchy of CSS ID belongs to.
175 */
176 unsigned short stack[0]; /* Array of Length (depth+1) */
177};
178
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800179/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300180 * cgroup_event represents events which userspace want to receive.
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800181 */
182struct cgroup_event {
183 /*
184 * Cgroup which the event belongs to.
185 */
186 struct cgroup *cgrp;
187 /*
188 * Control file which the event associated.
189 */
190 struct cftype *cft;
191 /*
192 * eventfd to signal userspace about the event.
193 */
194 struct eventfd_ctx *eventfd;
195 /*
196 * Each of these stored in a list by the cgroup.
197 */
198 struct list_head list;
199 /*
200 * All fields below needed to unregister event when
201 * userspace closes eventfd.
202 */
203 poll_table pt;
204 wait_queue_head_t *wqh;
205 wait_queue_t wait;
206 struct work_struct remove;
207};
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700208
Paul Menageddbcc7e2007-10-18 23:39:30 -0700209/* The list of hierarchy roots */
210
211static LIST_HEAD(roots);
Paul Menage817929e2007-10-18 23:39:36 -0700212static int root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700213
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700214static DEFINE_IDA(hierarchy_ida);
215static int next_hierarchy_id;
216static DEFINE_SPINLOCK(hierarchy_id_lock);
217
Paul Menageddbcc7e2007-10-18 23:39:30 -0700218/* dummytop is a shorthand for the dummy hierarchy's top cgroup */
219#define dummytop (&rootnode.top_cgroup)
220
221/* This flag indicates whether tasks in the fork and exit paths should
Li Zefana043e3b2008-02-23 15:24:09 -0800222 * check for fork/exit handlers to call. This avoids us having to do
223 * extra work in the fork/exit path if none of the subsystems need to
224 * be called.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700225 */
Li Zefan8947f9d2008-07-25 01:46:56 -0700226static int need_forkexit_callback __read_mostly;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700227
Paul E. McKenneyd11c5632010-02-22 17:04:50 -0800228#ifdef CONFIG_PROVE_LOCKING
229int cgroup_lock_is_held(void)
230{
231 return lockdep_is_held(&cgroup_mutex);
232}
233#else /* #ifdef CONFIG_PROVE_LOCKING */
234int cgroup_lock_is_held(void)
235{
236 return mutex_is_locked(&cgroup_mutex);
237}
238#endif /* #else #ifdef CONFIG_PROVE_LOCKING */
239
240EXPORT_SYMBOL_GPL(cgroup_lock_is_held);
241
Paul Menageddbcc7e2007-10-18 23:39:30 -0700242/* convenient tests for these bits */
Paul Menagebd89aab2007-10-18 23:40:44 -0700243inline int cgroup_is_removed(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700244{
Paul Menagebd89aab2007-10-18 23:40:44 -0700245 return test_bit(CGRP_REMOVED, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700246}
247
248/* bits in struct cgroupfs_root flags field */
249enum {
250 ROOT_NOPREFIX, /* mounted subsystems have no named prefix */
251};
252
Adrian Bunke9685a02008-02-07 00:13:46 -0800253static int cgroup_is_releasable(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700254{
255 const int bits =
Paul Menagebd89aab2007-10-18 23:40:44 -0700256 (1 << CGRP_RELEASABLE) |
257 (1 << CGRP_NOTIFY_ON_RELEASE);
258 return (cgrp->flags & bits) == bits;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700259}
260
Adrian Bunke9685a02008-02-07 00:13:46 -0800261static int notify_on_release(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700262{
Paul Menagebd89aab2007-10-18 23:40:44 -0700263 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700264}
265
Daniel Lezcano97978e62010-10-27 15:33:35 -0700266static int clone_children(const struct cgroup *cgrp)
267{
268 return test_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
269}
270
Paul Menageddbcc7e2007-10-18 23:39:30 -0700271/*
272 * for_each_subsys() allows you to iterate on each subsystem attached to
273 * an active hierarchy
274 */
275#define for_each_subsys(_root, _ss) \
276list_for_each_entry(_ss, &_root->subsys_list, sibling)
277
Li Zefane5f6a862009-01-07 18:07:41 -0800278/* for_each_active_root() allows you to iterate across the active hierarchies */
279#define for_each_active_root(_root) \
Paul Menageddbcc7e2007-10-18 23:39:30 -0700280list_for_each_entry(_root, &roots, root_list)
281
Paul Menage81a6a5c2007-10-18 23:39:38 -0700282/* the list of cgroups eligible for automatic release. Protected by
283 * release_list_lock */
284static LIST_HEAD(release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +0200285static DEFINE_RAW_SPINLOCK(release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700286static void cgroup_release_agent(struct work_struct *work);
287static DECLARE_WORK(release_agent_work, cgroup_release_agent);
Paul Menagebd89aab2007-10-18 23:40:44 -0700288static void check_for_release(struct cgroup *cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700289
Paul Menage817929e2007-10-18 23:39:36 -0700290/* Link structure for associating css_set objects with cgroups */
291struct cg_cgroup_link {
292 /*
293 * List running through cg_cgroup_links associated with a
294 * cgroup, anchored on cgroup->css_sets
295 */
Paul Menagebd89aab2007-10-18 23:40:44 -0700296 struct list_head cgrp_link_list;
Paul Menage7717f7b2009-09-23 15:56:22 -0700297 struct cgroup *cgrp;
Paul Menage817929e2007-10-18 23:39:36 -0700298 /*
299 * List running through cg_cgroup_links pointing at a
300 * single css_set object, anchored on css_set->cg_links
301 */
302 struct list_head cg_link_list;
303 struct css_set *cg;
304};
305
306/* The default css_set - used by init and its children prior to any
307 * hierarchies being mounted. It contains a pointer to the root state
308 * for each subsystem. Also used to anchor the list of css_sets. Not
309 * reference-counted, to improve performance when child cgroups
310 * haven't been created.
311 */
312
313static struct css_set init_css_set;
314static struct cg_cgroup_link init_css_set_link;
315
Ben Blume6a11052010-03-10 15:22:09 -0800316static int cgroup_init_idr(struct cgroup_subsys *ss,
317 struct cgroup_subsys_state *css);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700318
Paul Menage817929e2007-10-18 23:39:36 -0700319/* css_set_lock protects the list of css_set objects, and the
320 * chain of tasks off each css_set. Nests outside task->alloc_lock
321 * due to cgroup_iter_start() */
322static DEFINE_RWLOCK(css_set_lock);
323static int css_set_count;
324
Paul Menage7717f7b2009-09-23 15:56:22 -0700325/*
326 * hash table for cgroup groups. This improves the performance to find
327 * an existing css_set. This hash doesn't (currently) take into
328 * account cgroups in empty hierarchies.
329 */
Li Zefan472b1052008-04-29 01:00:11 -0700330#define CSS_SET_HASH_BITS 7
331#define CSS_SET_TABLE_SIZE (1 << CSS_SET_HASH_BITS)
332static struct hlist_head css_set_table[CSS_SET_TABLE_SIZE];
333
334static struct hlist_head *css_set_hash(struct cgroup_subsys_state *css[])
335{
336 int i;
337 int index;
338 unsigned long tmp = 0UL;
339
340 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++)
341 tmp += (unsigned long)css[i];
342 tmp = (tmp >> 16) ^ tmp;
343
344 index = hash_long(tmp, CSS_SET_HASH_BITS);
345
346 return &css_set_table[index];
347}
348
Paul Menage817929e2007-10-18 23:39:36 -0700349/* We don't maintain the lists running through each css_set to its
350 * task until after the first call to cgroup_iter_start(). This
351 * reduces the fork()/exit() overhead for people who have cgroups
352 * compiled into their kernel but not actually in use */
Li Zefan8947f9d2008-07-25 01:46:56 -0700353static int use_task_css_set_links __read_mostly;
Paul Menage817929e2007-10-18 23:39:36 -0700354
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700355static void __put_css_set(struct css_set *cg, int taskexit)
Paul Menageb4f48b62007-10-18 23:39:33 -0700356{
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700357 struct cg_cgroup_link *link;
358 struct cg_cgroup_link *saved_link;
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700359 /*
360 * Ensure that the refcount doesn't hit zero while any readers
361 * can see it. Similar to atomic_dec_and_lock(), but for an
362 * rwlock
363 */
364 if (atomic_add_unless(&cg->refcount, -1, 1))
365 return;
366 write_lock(&css_set_lock);
367 if (!atomic_dec_and_test(&cg->refcount)) {
368 write_unlock(&css_set_lock);
369 return;
370 }
Paul Menage81a6a5c2007-10-18 23:39:38 -0700371
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700372 /* This css_set is dead. unlink it and release cgroup refcounts */
373 hlist_del(&cg->hlist);
374 css_set_count--;
375
376 list_for_each_entry_safe(link, saved_link, &cg->cg_links,
377 cg_link_list) {
378 struct cgroup *cgrp = link->cgrp;
379 list_del(&link->cg_link_list);
380 list_del(&link->cgrp_link_list);
Paul Menagebd89aab2007-10-18 23:40:44 -0700381 if (atomic_dec_and_test(&cgrp->count) &&
382 notify_on_release(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -0700383 if (taskexit)
Paul Menagebd89aab2007-10-18 23:40:44 -0700384 set_bit(CGRP_RELEASABLE, &cgrp->flags);
385 check_for_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700386 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700387
388 kfree(link);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700389 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700390
391 write_unlock(&css_set_lock);
Lai Jiangshan30088ad2011-03-15 17:53:46 +0800392 kfree_rcu(cg, rcu_head);
Paul Menage817929e2007-10-18 23:39:36 -0700393}
394
395/*
396 * refcounted get/put for css_set objects
397 */
398static inline void get_css_set(struct css_set *cg)
399{
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700400 atomic_inc(&cg->refcount);
Paul Menage817929e2007-10-18 23:39:36 -0700401}
402
403static inline void put_css_set(struct css_set *cg)
404{
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700405 __put_css_set(cg, 0);
Paul Menage817929e2007-10-18 23:39:36 -0700406}
407
Paul Menage81a6a5c2007-10-18 23:39:38 -0700408static inline void put_css_set_taskexit(struct css_set *cg)
409{
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700410 __put_css_set(cg, 1);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700411}
412
Paul Menage817929e2007-10-18 23:39:36 -0700413/*
Paul Menage7717f7b2009-09-23 15:56:22 -0700414 * compare_css_sets - helper function for find_existing_css_set().
415 * @cg: candidate css_set being tested
416 * @old_cg: existing css_set for a task
417 * @new_cgrp: cgroup that's being entered by the task
418 * @template: desired set of css pointers in css_set (pre-calculated)
419 *
420 * Returns true if "cg" matches "old_cg" except for the hierarchy
421 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
422 */
423static bool compare_css_sets(struct css_set *cg,
424 struct css_set *old_cg,
425 struct cgroup *new_cgrp,
426 struct cgroup_subsys_state *template[])
427{
428 struct list_head *l1, *l2;
429
430 if (memcmp(template, cg->subsys, sizeof(cg->subsys))) {
431 /* Not all subsystems matched */
432 return false;
433 }
434
435 /*
436 * Compare cgroup pointers in order to distinguish between
437 * different cgroups in heirarchies with no subsystems. We
438 * could get by with just this check alone (and skip the
439 * memcmp above) but on most setups the memcmp check will
440 * avoid the need for this more expensive check on almost all
441 * candidates.
442 */
443
444 l1 = &cg->cg_links;
445 l2 = &old_cg->cg_links;
446 while (1) {
447 struct cg_cgroup_link *cgl1, *cgl2;
448 struct cgroup *cg1, *cg2;
449
450 l1 = l1->next;
451 l2 = l2->next;
452 /* See if we reached the end - both lists are equal length. */
453 if (l1 == &cg->cg_links) {
454 BUG_ON(l2 != &old_cg->cg_links);
455 break;
456 } else {
457 BUG_ON(l2 == &old_cg->cg_links);
458 }
459 /* Locate the cgroups associated with these links. */
460 cgl1 = list_entry(l1, struct cg_cgroup_link, cg_link_list);
461 cgl2 = list_entry(l2, struct cg_cgroup_link, cg_link_list);
462 cg1 = cgl1->cgrp;
463 cg2 = cgl2->cgrp;
464 /* Hierarchies should be linked in the same order. */
465 BUG_ON(cg1->root != cg2->root);
466
467 /*
468 * If this hierarchy is the hierarchy of the cgroup
469 * that's changing, then we need to check that this
470 * css_set points to the new cgroup; if it's any other
471 * hierarchy, then this css_set should point to the
472 * same cgroup as the old css_set.
473 */
474 if (cg1->root == new_cgrp->root) {
475 if (cg1 != new_cgrp)
476 return false;
477 } else {
478 if (cg1 != cg2)
479 return false;
480 }
481 }
482 return true;
483}
484
485/*
Paul Menage817929e2007-10-18 23:39:36 -0700486 * find_existing_css_set() is a helper for
487 * find_css_set(), and checks to see whether an existing
Li Zefan472b1052008-04-29 01:00:11 -0700488 * css_set is suitable.
Paul Menage817929e2007-10-18 23:39:36 -0700489 *
490 * oldcg: the cgroup group that we're using before the cgroup
491 * transition
492 *
Paul Menagebd89aab2007-10-18 23:40:44 -0700493 * cgrp: the cgroup that we're moving into
Paul Menage817929e2007-10-18 23:39:36 -0700494 *
495 * template: location in which to build the desired set of subsystem
496 * state objects for the new cgroup group
497 */
Paul Menage817929e2007-10-18 23:39:36 -0700498static struct css_set *find_existing_css_set(
499 struct css_set *oldcg,
Paul Menagebd89aab2007-10-18 23:40:44 -0700500 struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -0700501 struct cgroup_subsys_state *template[])
502{
503 int i;
Paul Menagebd89aab2007-10-18 23:40:44 -0700504 struct cgroupfs_root *root = cgrp->root;
Li Zefan472b1052008-04-29 01:00:11 -0700505 struct hlist_head *hhead;
506 struct hlist_node *node;
507 struct css_set *cg;
Paul Menage817929e2007-10-18 23:39:36 -0700508
Ben Blumaae8aab2010-03-10 15:22:07 -0800509 /*
510 * Build the set of subsystem state objects that we want to see in the
511 * new css_set. while subsystems can change globally, the entries here
512 * won't change, so no need for locking.
513 */
Paul Menage817929e2007-10-18 23:39:36 -0700514 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Li Zefan8d53d552008-02-23 15:24:11 -0800515 if (root->subsys_bits & (1UL << i)) {
Paul Menage817929e2007-10-18 23:39:36 -0700516 /* Subsystem is in this hierarchy. So we want
517 * the subsystem state from the new
518 * cgroup */
Paul Menagebd89aab2007-10-18 23:40:44 -0700519 template[i] = cgrp->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700520 } else {
521 /* Subsystem is not in this hierarchy, so we
522 * don't want to change the subsystem state */
523 template[i] = oldcg->subsys[i];
524 }
525 }
526
Li Zefan472b1052008-04-29 01:00:11 -0700527 hhead = css_set_hash(template);
528 hlist_for_each_entry(cg, node, hhead, hlist) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700529 if (!compare_css_sets(cg, oldcg, cgrp, template))
530 continue;
531
532 /* This css_set matches what we need */
533 return cg;
Li Zefan472b1052008-04-29 01:00:11 -0700534 }
Paul Menage817929e2007-10-18 23:39:36 -0700535
536 /* No existing cgroup group matched */
537 return NULL;
538}
539
Paul Menage817929e2007-10-18 23:39:36 -0700540static void free_cg_links(struct list_head *tmp)
541{
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700542 struct cg_cgroup_link *link;
543 struct cg_cgroup_link *saved_link;
544
545 list_for_each_entry_safe(link, saved_link, tmp, cgrp_link_list) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700546 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -0700547 kfree(link);
548 }
549}
550
551/*
Li Zefan36553432008-07-29 22:33:19 -0700552 * allocate_cg_links() allocates "count" cg_cgroup_link structures
553 * and chains them on tmp through their cgrp_link_list fields. Returns 0 on
554 * success or a negative error
555 */
556static int allocate_cg_links(int count, struct list_head *tmp)
557{
558 struct cg_cgroup_link *link;
559 int i;
560 INIT_LIST_HEAD(tmp);
561 for (i = 0; i < count; i++) {
562 link = kmalloc(sizeof(*link), GFP_KERNEL);
563 if (!link) {
564 free_cg_links(tmp);
565 return -ENOMEM;
566 }
567 list_add(&link->cgrp_link_list, tmp);
568 }
569 return 0;
570}
571
Li Zefanc12f65d2009-01-07 18:07:42 -0800572/**
573 * link_css_set - a helper function to link a css_set to a cgroup
574 * @tmp_cg_links: cg_cgroup_link objects allocated by allocate_cg_links()
575 * @cg: the css_set to be linked
576 * @cgrp: the destination cgroup
577 */
578static void link_css_set(struct list_head *tmp_cg_links,
579 struct css_set *cg, struct cgroup *cgrp)
580{
581 struct cg_cgroup_link *link;
582
583 BUG_ON(list_empty(tmp_cg_links));
584 link = list_first_entry(tmp_cg_links, struct cg_cgroup_link,
585 cgrp_link_list);
586 link->cg = cg;
Paul Menage7717f7b2009-09-23 15:56:22 -0700587 link->cgrp = cgrp;
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700588 atomic_inc(&cgrp->count);
Li Zefanc12f65d2009-01-07 18:07:42 -0800589 list_move(&link->cgrp_link_list, &cgrp->css_sets);
Paul Menage7717f7b2009-09-23 15:56:22 -0700590 /*
591 * Always add links to the tail of the list so that the list
592 * is sorted by order of hierarchy creation
593 */
594 list_add_tail(&link->cg_link_list, &cg->cg_links);
Li Zefanc12f65d2009-01-07 18:07:42 -0800595}
596
Li Zefan36553432008-07-29 22:33:19 -0700597/*
Paul Menage817929e2007-10-18 23:39:36 -0700598 * find_css_set() takes an existing cgroup group and a
599 * cgroup object, and returns a css_set object that's
600 * equivalent to the old group, but with the given cgroup
601 * substituted into the appropriate hierarchy. Must be called with
602 * cgroup_mutex held
603 */
Paul Menage817929e2007-10-18 23:39:36 -0700604static struct css_set *find_css_set(
Paul Menagebd89aab2007-10-18 23:40:44 -0700605 struct css_set *oldcg, struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700606{
607 struct css_set *res;
608 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT];
Paul Menage817929e2007-10-18 23:39:36 -0700609
610 struct list_head tmp_cg_links;
Paul Menage817929e2007-10-18 23:39:36 -0700611
Li Zefan472b1052008-04-29 01:00:11 -0700612 struct hlist_head *hhead;
Paul Menage7717f7b2009-09-23 15:56:22 -0700613 struct cg_cgroup_link *link;
Li Zefan472b1052008-04-29 01:00:11 -0700614
Paul Menage817929e2007-10-18 23:39:36 -0700615 /* First see if we already have a cgroup group that matches
616 * the desired set */
Li Zefan7e9abd82008-07-25 01:46:54 -0700617 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -0700618 res = find_existing_css_set(oldcg, cgrp, template);
Paul Menage817929e2007-10-18 23:39:36 -0700619 if (res)
620 get_css_set(res);
Li Zefan7e9abd82008-07-25 01:46:54 -0700621 read_unlock(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -0700622
623 if (res)
624 return res;
625
626 res = kmalloc(sizeof(*res), GFP_KERNEL);
627 if (!res)
628 return NULL;
629
630 /* Allocate all the cg_cgroup_link objects that we'll need */
631 if (allocate_cg_links(root_count, &tmp_cg_links) < 0) {
632 kfree(res);
633 return NULL;
634 }
635
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700636 atomic_set(&res->refcount, 1);
Paul Menage817929e2007-10-18 23:39:36 -0700637 INIT_LIST_HEAD(&res->cg_links);
638 INIT_LIST_HEAD(&res->tasks);
Li Zefan472b1052008-04-29 01:00:11 -0700639 INIT_HLIST_NODE(&res->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700640
641 /* Copy the set of subsystem state objects generated in
642 * find_existing_css_set() */
643 memcpy(res->subsys, template, sizeof(res->subsys));
644
645 write_lock(&css_set_lock);
646 /* Add reference counts and links from the new css_set. */
Paul Menage7717f7b2009-09-23 15:56:22 -0700647 list_for_each_entry(link, &oldcg->cg_links, cg_link_list) {
648 struct cgroup *c = link->cgrp;
649 if (c->root == cgrp->root)
650 c = cgrp;
651 link_css_set(&tmp_cg_links, res, c);
652 }
Paul Menage817929e2007-10-18 23:39:36 -0700653
654 BUG_ON(!list_empty(&tmp_cg_links));
655
Paul Menage817929e2007-10-18 23:39:36 -0700656 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -0700657
658 /* Add this cgroup group to the hash table */
659 hhead = css_set_hash(res->subsys);
660 hlist_add_head(&res->hlist, hhead);
661
Paul Menage817929e2007-10-18 23:39:36 -0700662 write_unlock(&css_set_lock);
663
664 return res;
Paul Menageb4f48b62007-10-18 23:39:33 -0700665}
666
Paul Menageddbcc7e2007-10-18 23:39:30 -0700667/*
Paul Menage7717f7b2009-09-23 15:56:22 -0700668 * Return the cgroup for "task" from the given hierarchy. Must be
669 * called with cgroup_mutex held.
670 */
671static struct cgroup *task_cgroup_from_root(struct task_struct *task,
672 struct cgroupfs_root *root)
673{
674 struct css_set *css;
675 struct cgroup *res = NULL;
676
677 BUG_ON(!mutex_is_locked(&cgroup_mutex));
678 read_lock(&css_set_lock);
679 /*
680 * No need to lock the task - since we hold cgroup_mutex the
681 * task can't change groups, so the only thing that can happen
682 * is that it exits and its css is set back to init_css_set.
683 */
684 css = task->cgroups;
685 if (css == &init_css_set) {
686 res = &root->top_cgroup;
687 } else {
688 struct cg_cgroup_link *link;
689 list_for_each_entry(link, &css->cg_links, cg_link_list) {
690 struct cgroup *c = link->cgrp;
691 if (c->root == root) {
692 res = c;
693 break;
694 }
695 }
696 }
697 read_unlock(&css_set_lock);
698 BUG_ON(!res);
699 return res;
700}
701
702/*
Paul Menageddbcc7e2007-10-18 23:39:30 -0700703 * There is one global cgroup mutex. We also require taking
704 * task_lock() when dereferencing a task's cgroup subsys pointers.
705 * See "The task_lock() exception", at the end of this comment.
706 *
707 * A task must hold cgroup_mutex to modify cgroups.
708 *
709 * Any task can increment and decrement the count field without lock.
710 * So in general, code holding cgroup_mutex can't rely on the count
711 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -0800712 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -0700713 * means that no tasks are currently attached, therefore there is no
714 * way a task attached to that cgroup can fork (the other way to
715 * increment the count). So code holding cgroup_mutex can safely
716 * assume that if the count is zero, it will stay zero. Similarly, if
717 * a task holds cgroup_mutex on a cgroup with zero count, it
718 * knows that the cgroup won't be removed, as cgroup_rmdir()
719 * needs that mutex.
720 *
Paul Menageddbcc7e2007-10-18 23:39:30 -0700721 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
722 * (usually) take cgroup_mutex. These are the two most performance
723 * critical pieces of code here. The exception occurs on cgroup_exit(),
724 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
725 * is taken, and if the cgroup count is zero, a usermode call made
Li Zefana043e3b2008-02-23 15:24:09 -0800726 * to the release agent with the name of the cgroup (path relative to
727 * the root of cgroup file system) as the argument.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700728 *
729 * A cgroup can only be deleted if both its 'count' of using tasks
730 * is zero, and its list of 'children' cgroups is empty. Since all
731 * tasks in the system use _some_ cgroup, and since there is always at
732 * least one task in the system (init, pid == 1), therefore, top_cgroup
733 * always has either children cgroups and/or using tasks. So we don't
734 * need a special hack to ensure that top_cgroup cannot be deleted.
735 *
736 * The task_lock() exception
737 *
738 * The need for this exception arises from the action of
Cliff Wickman956db3c2008-02-07 00:14:43 -0800739 * cgroup_attach_task(), which overwrites one tasks cgroup pointer with
Li Zefana043e3b2008-02-23 15:24:09 -0800740 * another. It does so using cgroup_mutex, however there are
Paul Menageddbcc7e2007-10-18 23:39:30 -0700741 * several performance critical places that need to reference
742 * task->cgroup without the expense of grabbing a system global
743 * mutex. Therefore except as noted below, when dereferencing or, as
Cliff Wickman956db3c2008-02-07 00:14:43 -0800744 * in cgroup_attach_task(), modifying a task'ss cgroup pointer we use
Paul Menageddbcc7e2007-10-18 23:39:30 -0700745 * task_lock(), which acts on a spinlock (task->alloc_lock) already in
746 * the task_struct routinely used for such matters.
747 *
748 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -0800749 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700750 */
751
Paul Menageddbcc7e2007-10-18 23:39:30 -0700752/**
753 * cgroup_lock - lock out any changes to cgroup structures
754 *
755 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700756void cgroup_lock(void)
757{
758 mutex_lock(&cgroup_mutex);
759}
Ben Blum67523c42010-03-10 15:22:11 -0800760EXPORT_SYMBOL_GPL(cgroup_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700761
762/**
763 * cgroup_unlock - release lock on cgroup changes
764 *
765 * Undo the lock taken in a previous cgroup_lock() call.
766 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700767void cgroup_unlock(void)
768{
769 mutex_unlock(&cgroup_mutex);
770}
Ben Blum67523c42010-03-10 15:22:11 -0800771EXPORT_SYMBOL_GPL(cgroup_unlock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700772
773/*
774 * A couple of forward declarations required, due to cyclic reference loop:
775 * cgroup_mkdir -> cgroup_create -> cgroup_populate_dir ->
776 * cgroup_add_file -> cgroup_create_file -> cgroup_dir_inode_operations
777 * -> cgroup_mkdir.
778 */
779
780static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode);
Al Viroc72a04e2011-01-14 05:31:45 +0000781static struct dentry *cgroup_lookup(struct inode *, struct dentry *, struct nameidata *);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700782static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -0700783static int cgroup_populate_dir(struct cgroup *cgrp);
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -0700784static const struct inode_operations cgroup_dir_inode_operations;
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700785static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -0700786
787static struct backing_dev_info cgroup_backing_dev_info = {
Jens Axboed9938312009-06-12 14:45:52 +0200788 .name = "cgroup",
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700789 .capabilities = BDI_CAP_NO_ACCT_AND_WRITEBACK,
Paul Menagea4243162007-10-18 23:39:35 -0700790};
Paul Menageddbcc7e2007-10-18 23:39:30 -0700791
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700792static int alloc_css_id(struct cgroup_subsys *ss,
793 struct cgroup *parent, struct cgroup *child);
794
Paul Menageddbcc7e2007-10-18 23:39:30 -0700795static struct inode *cgroup_new_inode(mode_t mode, struct super_block *sb)
796{
797 struct inode *inode = new_inode(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700798
799 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400800 inode->i_ino = get_next_ino();
Paul Menageddbcc7e2007-10-18 23:39:30 -0700801 inode->i_mode = mode;
David Howells76aac0e2008-11-14 10:39:12 +1100802 inode->i_uid = current_fsuid();
803 inode->i_gid = current_fsgid();
Paul Menageddbcc7e2007-10-18 23:39:30 -0700804 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
805 inode->i_mapping->backing_dev_info = &cgroup_backing_dev_info;
806 }
807 return inode;
808}
809
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800810/*
811 * Call subsys's pre_destroy handler.
812 * This is called before css refcnt check.
813 */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700814static int cgroup_call_pre_destroy(struct cgroup *cgrp)
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800815{
816 struct cgroup_subsys *ss;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700817 int ret = 0;
818
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800819 for_each_subsys(cgrp->root, ss)
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700820 if (ss->pre_destroy) {
821 ret = ss->pre_destroy(ss, cgrp);
822 if (ret)
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -0800823 break;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700824 }
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800825
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700826 return ret;
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800827}
828
Paul Menageddbcc7e2007-10-18 23:39:30 -0700829static void cgroup_diput(struct dentry *dentry, struct inode *inode)
830{
831 /* is dentry a directory ? if so, kfree() associated cgroup */
832 if (S_ISDIR(inode->i_mode)) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700833 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800834 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -0700835 BUG_ON(!(cgroup_is_removed(cgrp)));
Paul Menage81a6a5c2007-10-18 23:39:38 -0700836 /* It's possible for external users to be holding css
837 * reference counts on a cgroup; css_put() needs to
838 * be able to access the cgroup after decrementing
839 * the reference count in order to know if it needs to
840 * queue the cgroup to be handled by the release
841 * agent */
842 synchronize_rcu();
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800843
844 mutex_lock(&cgroup_mutex);
845 /*
846 * Release the subsystem state objects.
847 */
Li Zefan75139b82009-01-07 18:07:33 -0800848 for_each_subsys(cgrp->root, ss)
849 ss->destroy(ss, cgrp);
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800850
851 cgrp->root->number_of_cgroups--;
852 mutex_unlock(&cgroup_mutex);
853
Paul Menagea47295e2009-01-07 18:07:44 -0800854 /*
855 * Drop the active superblock reference that we took when we
856 * created the cgroup
857 */
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800858 deactivate_super(cgrp->root->sb);
859
Ben Blum72a8cb32009-09-23 15:56:27 -0700860 /*
861 * if we're getting rid of the cgroup, refcount should ensure
862 * that there are no pidlists left.
863 */
864 BUG_ON(!list_empty(&cgrp->pidlists));
865
Lai Jiangshanf2da1c42011-03-15 17:55:16 +0800866 kfree_rcu(cgrp, rcu_head);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700867 }
868 iput(inode);
869}
870
Al Viroc72a04e2011-01-14 05:31:45 +0000871static int cgroup_delete(const struct dentry *d)
872{
873 return 1;
874}
875
Paul Menageddbcc7e2007-10-18 23:39:30 -0700876static void remove_dir(struct dentry *d)
877{
878 struct dentry *parent = dget(d->d_parent);
879
880 d_delete(d);
881 simple_rmdir(parent->d_inode, d);
882 dput(parent);
883}
884
885static void cgroup_clear_directory(struct dentry *dentry)
886{
887 struct list_head *node;
888
889 BUG_ON(!mutex_is_locked(&dentry->d_inode->i_mutex));
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100890 spin_lock(&dentry->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700891 node = dentry->d_subdirs.next;
892 while (node != &dentry->d_subdirs) {
893 struct dentry *d = list_entry(node, struct dentry, d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100894
895 spin_lock_nested(&d->d_lock, DENTRY_D_LOCK_NESTED);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700896 list_del_init(node);
897 if (d->d_inode) {
898 /* This should never be called on a cgroup
899 * directory with child cgroups */
900 BUG_ON(d->d_inode->i_mode & S_IFDIR);
Nick Piggindc0474b2011-01-07 17:49:43 +1100901 dget_dlock(d);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100902 spin_unlock(&d->d_lock);
903 spin_unlock(&dentry->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700904 d_delete(d);
905 simple_unlink(dentry->d_inode, d);
906 dput(d);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100907 spin_lock(&dentry->d_lock);
908 } else
909 spin_unlock(&d->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700910 node = dentry->d_subdirs.next;
911 }
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100912 spin_unlock(&dentry->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700913}
914
915/*
916 * NOTE : the dentry must have been dget()'ed
917 */
918static void cgroup_d_remove_dir(struct dentry *dentry)
919{
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100920 struct dentry *parent;
921
Paul Menageddbcc7e2007-10-18 23:39:30 -0700922 cgroup_clear_directory(dentry);
923
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100924 parent = dentry->d_parent;
925 spin_lock(&parent->d_lock);
Li Zefan3ec762a2011-01-14 11:34:34 +0800926 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700927 list_del_init(&dentry->d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100928 spin_unlock(&dentry->d_lock);
929 spin_unlock(&parent->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700930 remove_dir(dentry);
931}
932
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700933/*
934 * A queue for waiters to do rmdir() cgroup. A tasks will sleep when
935 * cgroup->count == 0 && list_empty(&cgroup->children) && subsys has some
936 * reference to css->refcnt. In general, this refcnt is expected to goes down
937 * to zero, soon.
938 *
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700939 * CGRP_WAIT_ON_RMDIR flag is set under cgroup's inode->i_mutex;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700940 */
941DECLARE_WAIT_QUEUE_HEAD(cgroup_rmdir_waitq);
942
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700943static void cgroup_wakeup_rmdir_waiter(struct cgroup *cgrp)
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700944{
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700945 if (unlikely(test_and_clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags)))
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700946 wake_up_all(&cgroup_rmdir_waitq);
947}
948
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700949void cgroup_exclude_rmdir(struct cgroup_subsys_state *css)
950{
951 css_get(css);
952}
953
954void cgroup_release_and_wakeup_rmdir(struct cgroup_subsys_state *css)
955{
956 cgroup_wakeup_rmdir_waiter(css->cgroup);
957 css_put(css);
958}
959
Ben Blumaae8aab2010-03-10 15:22:07 -0800960/*
Ben Blumcf5d5942010-03-10 15:22:09 -0800961 * Call with cgroup_mutex held. Drops reference counts on modules, including
962 * any duplicate ones that parse_cgroupfs_options took. If this function
963 * returns an error, no reference counts are touched.
Ben Blumaae8aab2010-03-10 15:22:07 -0800964 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700965static int rebind_subsystems(struct cgroupfs_root *root,
966 unsigned long final_bits)
967{
968 unsigned long added_bits, removed_bits;
Paul Menagebd89aab2007-10-18 23:40:44 -0700969 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700970 int i;
971
Ben Blumaae8aab2010-03-10 15:22:07 -0800972 BUG_ON(!mutex_is_locked(&cgroup_mutex));
Tejun Heoe25e2cb2011-12-12 18:12:21 -0800973 BUG_ON(!mutex_is_locked(&cgroup_root_mutex));
Ben Blumaae8aab2010-03-10 15:22:07 -0800974
Paul Menageddbcc7e2007-10-18 23:39:30 -0700975 removed_bits = root->actual_subsys_bits & ~final_bits;
976 added_bits = final_bits & ~root->actual_subsys_bits;
977 /* Check that any added subsystems are currently free */
978 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Li Zefan8d53d552008-02-23 15:24:11 -0800979 unsigned long bit = 1UL << i;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700980 struct cgroup_subsys *ss = subsys[i];
981 if (!(bit & added_bits))
982 continue;
Ben Blumaae8aab2010-03-10 15:22:07 -0800983 /*
984 * Nobody should tell us to do a subsys that doesn't exist:
985 * parse_cgroupfs_options should catch that case and refcounts
986 * ensure that subsystems won't disappear once selected.
987 */
988 BUG_ON(ss == NULL);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700989 if (ss->root != &rootnode) {
990 /* Subsystem isn't free */
991 return -EBUSY;
992 }
993 }
994
995 /* Currently we don't handle adding/removing subsystems when
996 * any child cgroups exist. This is theoretically supportable
997 * but involves complex error handling, so it's being left until
998 * later */
Paul Menage307257c2008-12-15 13:54:22 -0800999 if (root->number_of_cgroups > 1)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001000 return -EBUSY;
1001
1002 /* Process each subsystem */
1003 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1004 struct cgroup_subsys *ss = subsys[i];
1005 unsigned long bit = 1UL << i;
1006 if (bit & added_bits) {
1007 /* We're binding this subsystem to this hierarchy */
Ben Blumaae8aab2010-03-10 15:22:07 -08001008 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001009 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001010 BUG_ON(!dummytop->subsys[i]);
1011 BUG_ON(dummytop->subsys[i]->cgroup != dummytop);
Paul Menage999cd8a2009-01-07 18:08:36 -08001012 mutex_lock(&ss->hierarchy_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07001013 cgrp->subsys[i] = dummytop->subsys[i];
1014 cgrp->subsys[i]->cgroup = cgrp;
Li Zefan33a68ac2009-01-07 18:07:42 -08001015 list_move(&ss->sibling, &root->subsys_list);
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001016 ss->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001017 if (ss->bind)
Paul Menagebd89aab2007-10-18 23:40:44 -07001018 ss->bind(ss, cgrp);
Paul Menage999cd8a2009-01-07 18:08:36 -08001019 mutex_unlock(&ss->hierarchy_mutex);
Ben Blumcf5d5942010-03-10 15:22:09 -08001020 /* refcount was already taken, and we're keeping it */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001021 } else if (bit & removed_bits) {
1022 /* We're removing this subsystem */
Ben Blumaae8aab2010-03-10 15:22:07 -08001023 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001024 BUG_ON(cgrp->subsys[i] != dummytop->subsys[i]);
1025 BUG_ON(cgrp->subsys[i]->cgroup != cgrp);
Paul Menage999cd8a2009-01-07 18:08:36 -08001026 mutex_lock(&ss->hierarchy_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001027 if (ss->bind)
1028 ss->bind(ss, dummytop);
1029 dummytop->subsys[i]->cgroup = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -07001030 cgrp->subsys[i] = NULL;
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001031 subsys[i]->root = &rootnode;
Li Zefan33a68ac2009-01-07 18:07:42 -08001032 list_move(&ss->sibling, &rootnode.subsys_list);
Paul Menage999cd8a2009-01-07 18:08:36 -08001033 mutex_unlock(&ss->hierarchy_mutex);
Ben Blumcf5d5942010-03-10 15:22:09 -08001034 /* subsystem is now free - drop reference on module */
1035 module_put(ss->module);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001036 } else if (bit & final_bits) {
1037 /* Subsystem state should already exist */
Ben Blumaae8aab2010-03-10 15:22:07 -08001038 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001039 BUG_ON(!cgrp->subsys[i]);
Ben Blumcf5d5942010-03-10 15:22:09 -08001040 /*
1041 * a refcount was taken, but we already had one, so
1042 * drop the extra reference.
1043 */
1044 module_put(ss->module);
1045#ifdef CONFIG_MODULE_UNLOAD
1046 BUG_ON(ss->module && !module_refcount(ss->module));
1047#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001048 } else {
1049 /* Subsystem state shouldn't exist */
Paul Menagebd89aab2007-10-18 23:40:44 -07001050 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001051 }
1052 }
1053 root->subsys_bits = root->actual_subsys_bits = final_bits;
1054 synchronize_rcu();
1055
1056 return 0;
1057}
1058
1059static int cgroup_show_options(struct seq_file *seq, struct vfsmount *vfs)
1060{
1061 struct cgroupfs_root *root = vfs->mnt_sb->s_fs_info;
1062 struct cgroup_subsys *ss;
1063
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001064 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001065 for_each_subsys(root, ss)
1066 seq_printf(seq, ",%s", ss->name);
1067 if (test_bit(ROOT_NOPREFIX, &root->flags))
1068 seq_puts(seq, ",noprefix");
Paul Menage81a6a5c2007-10-18 23:39:38 -07001069 if (strlen(root->release_agent_path))
1070 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Daniel Lezcano97978e62010-10-27 15:33:35 -07001071 if (clone_children(&root->top_cgroup))
1072 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001073 if (strlen(root->name))
1074 seq_printf(seq, ",name=%s", root->name);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001075 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001076 return 0;
1077}
1078
1079struct cgroup_sb_opts {
1080 unsigned long subsys_bits;
1081 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001082 char *release_agent;
Daniel Lezcano97978e62010-10-27 15:33:35 -07001083 bool clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001084 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001085 /* User explicitly requested empty subsystem */
1086 bool none;
Paul Menagec6d57f32009-09-23 15:56:19 -07001087
1088 struct cgroupfs_root *new_root;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001089
Paul Menageddbcc7e2007-10-18 23:39:30 -07001090};
1091
Ben Blumaae8aab2010-03-10 15:22:07 -08001092/*
1093 * Convert a hierarchy specifier into a bitmask of subsystems and flags. Call
Ben Blumcf5d5942010-03-10 15:22:09 -08001094 * with cgroup_mutex held to protect the subsys[] array. This function takes
1095 * refcounts on subsystems to be used, unless it returns error, in which case
1096 * no refcounts are taken.
Ben Blumaae8aab2010-03-10 15:22:07 -08001097 */
Ben Blumcf5d5942010-03-10 15:22:09 -08001098static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001099{
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001100 char *token, *o = data;
1101 bool all_ss = false, one_ss = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001102 unsigned long mask = (unsigned long)-1;
Ben Blumcf5d5942010-03-10 15:22:09 -08001103 int i;
1104 bool module_pin_failed = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001105
Ben Blumaae8aab2010-03-10 15:22:07 -08001106 BUG_ON(!mutex_is_locked(&cgroup_mutex));
1107
Li Zefanf9ab5b52009-06-17 16:26:33 -07001108#ifdef CONFIG_CPUSETS
1109 mask = ~(1UL << cpuset_subsys_id);
1110#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001111
Paul Menagec6d57f32009-09-23 15:56:19 -07001112 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001113
1114 while ((token = strsep(&o, ",")) != NULL) {
1115 if (!*token)
1116 return -EINVAL;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001117 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001118 /* Explicitly have no subsystems */
1119 opts->none = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001120 continue;
1121 }
1122 if (!strcmp(token, "all")) {
1123 /* Mutually exclusive option 'all' + subsystem name */
1124 if (one_ss)
1125 return -EINVAL;
1126 all_ss = true;
1127 continue;
1128 }
1129 if (!strcmp(token, "noprefix")) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001130 set_bit(ROOT_NOPREFIX, &opts->flags);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001131 continue;
1132 }
1133 if (!strcmp(token, "clone_children")) {
Daniel Lezcano97978e62010-10-27 15:33:35 -07001134 opts->clone_children = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001135 continue;
1136 }
1137 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001138 /* Specifying two release agents is forbidden */
1139 if (opts->release_agent)
1140 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001141 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001142 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001143 if (!opts->release_agent)
1144 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001145 continue;
1146 }
1147 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001148 const char *name = token + 5;
1149 /* Can't specify an empty name */
1150 if (!strlen(name))
1151 return -EINVAL;
1152 /* Must match [\w.-]+ */
1153 for (i = 0; i < strlen(name); i++) {
1154 char c = name[i];
1155 if (isalnum(c))
1156 continue;
1157 if ((c == '.') || (c == '-') || (c == '_'))
1158 continue;
1159 return -EINVAL;
1160 }
1161 /* Specifying two names is forbidden */
1162 if (opts->name)
1163 return -EINVAL;
1164 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001165 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001166 GFP_KERNEL);
1167 if (!opts->name)
1168 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001169
1170 continue;
1171 }
1172
1173 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1174 struct cgroup_subsys *ss = subsys[i];
1175 if (ss == NULL)
1176 continue;
1177 if (strcmp(token, ss->name))
1178 continue;
1179 if (ss->disabled)
1180 continue;
1181
1182 /* Mutually exclusive option 'all' + subsystem name */
1183 if (all_ss)
1184 return -EINVAL;
1185 set_bit(i, &opts->subsys_bits);
1186 one_ss = true;
1187
1188 break;
1189 }
1190 if (i == CGROUP_SUBSYS_COUNT)
1191 return -ENOENT;
1192 }
1193
1194 /*
1195 * If the 'all' option was specified select all the subsystems,
1196 * otherwise 'all, 'none' and a subsystem name options were not
1197 * specified, let's default to 'all'
1198 */
1199 if (all_ss || (!all_ss && !one_ss && !opts->none)) {
1200 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1201 struct cgroup_subsys *ss = subsys[i];
1202 if (ss == NULL)
1203 continue;
1204 if (ss->disabled)
1205 continue;
1206 set_bit(i, &opts->subsys_bits);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001207 }
1208 }
1209
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001210 /* Consistency checks */
1211
Li Zefanf9ab5b52009-06-17 16:26:33 -07001212 /*
1213 * Option noprefix was introduced just for backward compatibility
1214 * with the old cpuset, so we allow noprefix only if mounting just
1215 * the cpuset subsystem.
1216 */
1217 if (test_bit(ROOT_NOPREFIX, &opts->flags) &&
1218 (opts->subsys_bits & mask))
1219 return -EINVAL;
1220
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001221
1222 /* Can't specify "none" and some subsystems */
1223 if (opts->subsys_bits && opts->none)
1224 return -EINVAL;
1225
1226 /*
1227 * We either have to specify by name or by subsystems. (So all
1228 * empty hierarchies must have a name).
1229 */
Paul Menagec6d57f32009-09-23 15:56:19 -07001230 if (!opts->subsys_bits && !opts->name)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001231 return -EINVAL;
1232
Ben Blumcf5d5942010-03-10 15:22:09 -08001233 /*
1234 * Grab references on all the modules we'll need, so the subsystems
1235 * don't dance around before rebind_subsystems attaches them. This may
1236 * take duplicate reference counts on a subsystem that's already used,
1237 * but rebind_subsystems handles this case.
1238 */
1239 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
1240 unsigned long bit = 1UL << i;
1241
1242 if (!(bit & opts->subsys_bits))
1243 continue;
1244 if (!try_module_get(subsys[i]->module)) {
1245 module_pin_failed = true;
1246 break;
1247 }
1248 }
1249 if (module_pin_failed) {
1250 /*
1251 * oops, one of the modules was going away. this means that we
1252 * raced with a module_delete call, and to the user this is
1253 * essentially a "subsystem doesn't exist" case.
1254 */
1255 for (i--; i >= CGROUP_BUILTIN_SUBSYS_COUNT; i--) {
1256 /* drop refcounts only on the ones we took */
1257 unsigned long bit = 1UL << i;
1258
1259 if (!(bit & opts->subsys_bits))
1260 continue;
1261 module_put(subsys[i]->module);
1262 }
1263 return -ENOENT;
1264 }
1265
Paul Menageddbcc7e2007-10-18 23:39:30 -07001266 return 0;
1267}
1268
Ben Blumcf5d5942010-03-10 15:22:09 -08001269static void drop_parsed_module_refcounts(unsigned long subsys_bits)
1270{
1271 int i;
1272 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
1273 unsigned long bit = 1UL << i;
1274
1275 if (!(bit & subsys_bits))
1276 continue;
1277 module_put(subsys[i]->module);
1278 }
1279}
1280
Paul Menageddbcc7e2007-10-18 23:39:30 -07001281static int cgroup_remount(struct super_block *sb, int *flags, char *data)
1282{
1283 int ret = 0;
1284 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001285 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001286 struct cgroup_sb_opts opts;
1287
Paul Menagebd89aab2007-10-18 23:40:44 -07001288 mutex_lock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001289 mutex_lock(&cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001290 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001291
1292 /* See what subsystems are wanted */
1293 ret = parse_cgroupfs_options(data, &opts);
1294 if (ret)
1295 goto out_unlock;
1296
Ben Blumcf5d5942010-03-10 15:22:09 -08001297 /* Don't allow flags or name to change at remount */
1298 if (opts.flags != root->flags ||
1299 (opts.name && strcmp(opts.name, root->name))) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001300 ret = -EINVAL;
Ben Blumcf5d5942010-03-10 15:22:09 -08001301 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menagec6d57f32009-09-23 15:56:19 -07001302 goto out_unlock;
1303 }
1304
Paul Menageddbcc7e2007-10-18 23:39:30 -07001305 ret = rebind_subsystems(root, opts.subsys_bits);
Ben Blumcf5d5942010-03-10 15:22:09 -08001306 if (ret) {
1307 drop_parsed_module_refcounts(opts.subsys_bits);
Li Zefan0670e082009-04-02 16:57:30 -07001308 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001309 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001310
1311 /* (re)populate subsystem files */
Li Zefan0670e082009-04-02 16:57:30 -07001312 cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001313
Paul Menage81a6a5c2007-10-18 23:39:38 -07001314 if (opts.release_agent)
1315 strcpy(root->release_agent_path, opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001316 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001317 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001318 kfree(opts.name);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001319 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001320 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07001321 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001322 return ret;
1323}
1324
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001325static const struct super_operations cgroup_ops = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001326 .statfs = simple_statfs,
1327 .drop_inode = generic_delete_inode,
1328 .show_options = cgroup_show_options,
1329 .remount_fs = cgroup_remount,
1330};
1331
Paul Menagecc31edc2008-10-18 20:28:04 -07001332static void init_cgroup_housekeeping(struct cgroup *cgrp)
1333{
1334 INIT_LIST_HEAD(&cgrp->sibling);
1335 INIT_LIST_HEAD(&cgrp->children);
1336 INIT_LIST_HEAD(&cgrp->css_sets);
1337 INIT_LIST_HEAD(&cgrp->release_list);
Ben Blum72a8cb32009-09-23 15:56:27 -07001338 INIT_LIST_HEAD(&cgrp->pidlists);
1339 mutex_init(&cgrp->pidlist_mutex);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08001340 INIT_LIST_HEAD(&cgrp->event_list);
1341 spin_lock_init(&cgrp->event_list_lock);
Paul Menagecc31edc2008-10-18 20:28:04 -07001342}
Paul Menagec6d57f32009-09-23 15:56:19 -07001343
Paul Menageddbcc7e2007-10-18 23:39:30 -07001344static void init_cgroup_root(struct cgroupfs_root *root)
1345{
Paul Menagebd89aab2007-10-18 23:40:44 -07001346 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001347 INIT_LIST_HEAD(&root->subsys_list);
1348 INIT_LIST_HEAD(&root->root_list);
1349 root->number_of_cgroups = 1;
Paul Menagebd89aab2007-10-18 23:40:44 -07001350 cgrp->root = root;
1351 cgrp->top_cgroup = cgrp;
Paul Menagecc31edc2008-10-18 20:28:04 -07001352 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001353}
1354
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001355static bool init_root_id(struct cgroupfs_root *root)
1356{
1357 int ret = 0;
1358
1359 do {
1360 if (!ida_pre_get(&hierarchy_ida, GFP_KERNEL))
1361 return false;
1362 spin_lock(&hierarchy_id_lock);
1363 /* Try to allocate the next unused ID */
1364 ret = ida_get_new_above(&hierarchy_ida, next_hierarchy_id,
1365 &root->hierarchy_id);
1366 if (ret == -ENOSPC)
1367 /* Try again starting from 0 */
1368 ret = ida_get_new(&hierarchy_ida, &root->hierarchy_id);
1369 if (!ret) {
1370 next_hierarchy_id = root->hierarchy_id + 1;
1371 } else if (ret != -EAGAIN) {
1372 /* Can only get here if the 31-bit IDR is full ... */
1373 BUG_ON(ret);
1374 }
1375 spin_unlock(&hierarchy_id_lock);
1376 } while (ret);
1377 return true;
1378}
1379
Paul Menageddbcc7e2007-10-18 23:39:30 -07001380static int cgroup_test_super(struct super_block *sb, void *data)
1381{
Paul Menagec6d57f32009-09-23 15:56:19 -07001382 struct cgroup_sb_opts *opts = data;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001383 struct cgroupfs_root *root = sb->s_fs_info;
1384
Paul Menagec6d57f32009-09-23 15:56:19 -07001385 /* If we asked for a name then it must match */
1386 if (opts->name && strcmp(opts->name, root->name))
1387 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001388
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001389 /*
1390 * If we asked for subsystems (or explicitly for no
1391 * subsystems) then they must match
1392 */
1393 if ((opts->subsys_bits || opts->none)
1394 && (opts->subsys_bits != root->subsys_bits))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001395 return 0;
1396
1397 return 1;
1398}
1399
Paul Menagec6d57f32009-09-23 15:56:19 -07001400static struct cgroupfs_root *cgroup_root_from_opts(struct cgroup_sb_opts *opts)
1401{
1402 struct cgroupfs_root *root;
1403
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001404 if (!opts->subsys_bits && !opts->none)
Paul Menagec6d57f32009-09-23 15:56:19 -07001405 return NULL;
1406
1407 root = kzalloc(sizeof(*root), GFP_KERNEL);
1408 if (!root)
1409 return ERR_PTR(-ENOMEM);
1410
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001411 if (!init_root_id(root)) {
1412 kfree(root);
1413 return ERR_PTR(-ENOMEM);
1414 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001415 init_cgroup_root(root);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001416
Paul Menagec6d57f32009-09-23 15:56:19 -07001417 root->subsys_bits = opts->subsys_bits;
1418 root->flags = opts->flags;
1419 if (opts->release_agent)
1420 strcpy(root->release_agent_path, opts->release_agent);
1421 if (opts->name)
1422 strcpy(root->name, opts->name);
Daniel Lezcano97978e62010-10-27 15:33:35 -07001423 if (opts->clone_children)
1424 set_bit(CGRP_CLONE_CHILDREN, &root->top_cgroup.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001425 return root;
1426}
1427
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001428static void cgroup_drop_root(struct cgroupfs_root *root)
1429{
1430 if (!root)
1431 return;
1432
1433 BUG_ON(!root->hierarchy_id);
1434 spin_lock(&hierarchy_id_lock);
1435 ida_remove(&hierarchy_ida, root->hierarchy_id);
1436 spin_unlock(&hierarchy_id_lock);
1437 kfree(root);
1438}
1439
Paul Menageddbcc7e2007-10-18 23:39:30 -07001440static int cgroup_set_super(struct super_block *sb, void *data)
1441{
1442 int ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001443 struct cgroup_sb_opts *opts = data;
1444
1445 /* If we don't have a new root, we can't set up a new sb */
1446 if (!opts->new_root)
1447 return -EINVAL;
1448
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001449 BUG_ON(!opts->subsys_bits && !opts->none);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001450
1451 ret = set_anon_super(sb, NULL);
1452 if (ret)
1453 return ret;
1454
Paul Menagec6d57f32009-09-23 15:56:19 -07001455 sb->s_fs_info = opts->new_root;
1456 opts->new_root->sb = sb;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001457
1458 sb->s_blocksize = PAGE_CACHE_SIZE;
1459 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
1460 sb->s_magic = CGROUP_SUPER_MAGIC;
1461 sb->s_op = &cgroup_ops;
1462
1463 return 0;
1464}
1465
1466static int cgroup_get_rootdir(struct super_block *sb)
1467{
Al Viro0df6a632010-12-21 13:29:29 -05001468 static const struct dentry_operations cgroup_dops = {
1469 .d_iput = cgroup_diput,
Al Viroc72a04e2011-01-14 05:31:45 +00001470 .d_delete = cgroup_delete,
Al Viro0df6a632010-12-21 13:29:29 -05001471 };
1472
Paul Menageddbcc7e2007-10-18 23:39:30 -07001473 struct inode *inode =
1474 cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb);
1475 struct dentry *dentry;
1476
1477 if (!inode)
1478 return -ENOMEM;
1479
Paul Menageddbcc7e2007-10-18 23:39:30 -07001480 inode->i_fop = &simple_dir_operations;
1481 inode->i_op = &cgroup_dir_inode_operations;
1482 /* directories start off with i_nlink == 2 (for "." entry) */
1483 inc_nlink(inode);
1484 dentry = d_alloc_root(inode);
1485 if (!dentry) {
1486 iput(inode);
1487 return -ENOMEM;
1488 }
1489 sb->s_root = dentry;
Al Viro0df6a632010-12-21 13:29:29 -05001490 /* for everything else we want ->d_op set */
1491 sb->s_d_op = &cgroup_dops;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001492 return 0;
1493}
1494
Al Virof7e83572010-07-26 13:23:11 +04001495static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001496 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001497 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001498{
1499 struct cgroup_sb_opts opts;
Paul Menagec6d57f32009-09-23 15:56:19 -07001500 struct cgroupfs_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001501 int ret = 0;
1502 struct super_block *sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001503 struct cgroupfs_root *new_root;
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001504 struct inode *inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001505
1506 /* First find the desired set of subsystems */
Ben Blumaae8aab2010-03-10 15:22:07 -08001507 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001508 ret = parse_cgroupfs_options(data, &opts);
Ben Blumaae8aab2010-03-10 15:22:07 -08001509 mutex_unlock(&cgroup_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001510 if (ret)
1511 goto out_err;
1512
1513 /*
1514 * Allocate a new cgroup root. We may not need it if we're
1515 * reusing an existing hierarchy.
1516 */
1517 new_root = cgroup_root_from_opts(&opts);
1518 if (IS_ERR(new_root)) {
1519 ret = PTR_ERR(new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001520 goto drop_modules;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001521 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001522 opts.new_root = new_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001523
Paul Menagec6d57f32009-09-23 15:56:19 -07001524 /* Locate an existing or new sb for this hierarchy */
1525 sb = sget(fs_type, cgroup_test_super, cgroup_set_super, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001526 if (IS_ERR(sb)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001527 ret = PTR_ERR(sb);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001528 cgroup_drop_root(opts.new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001529 goto drop_modules;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001530 }
1531
Paul Menagec6d57f32009-09-23 15:56:19 -07001532 root = sb->s_fs_info;
1533 BUG_ON(!root);
1534 if (root == opts.new_root) {
1535 /* We used the new root structure, so this is a new hierarchy */
1536 struct list_head tmp_cg_links;
Li Zefanc12f65d2009-01-07 18:07:42 -08001537 struct cgroup *root_cgrp = &root->top_cgroup;
Paul Menagec6d57f32009-09-23 15:56:19 -07001538 struct cgroupfs_root *existing_root;
eparis@redhat2ce97382011-06-02 21:20:51 +10001539 const struct cred *cred;
Li Zefan28fd5df2008-04-29 01:00:13 -07001540 int i;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001541
1542 BUG_ON(sb->s_root != NULL);
1543
1544 ret = cgroup_get_rootdir(sb);
1545 if (ret)
1546 goto drop_new_super;
Paul Menage817929e2007-10-18 23:39:36 -07001547 inode = sb->s_root->d_inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001548
Paul Menage817929e2007-10-18 23:39:36 -07001549 mutex_lock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001550 mutex_lock(&cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001551 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001552
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001553 /* Check for name clashes with existing mounts */
1554 ret = -EBUSY;
1555 if (strlen(root->name))
1556 for_each_active_root(existing_root)
1557 if (!strcmp(existing_root->name, root->name))
1558 goto unlock_drop;
Paul Menagec6d57f32009-09-23 15:56:19 -07001559
Paul Menage817929e2007-10-18 23:39:36 -07001560 /*
1561 * We're accessing css_set_count without locking
1562 * css_set_lock here, but that's OK - it can only be
1563 * increased by someone holding cgroup_lock, and
1564 * that's us. The worst that can happen is that we
1565 * have some link structures left over
1566 */
1567 ret = allocate_cg_links(css_set_count, &tmp_cg_links);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001568 if (ret)
1569 goto unlock_drop;
Paul Menage817929e2007-10-18 23:39:36 -07001570
Paul Menageddbcc7e2007-10-18 23:39:30 -07001571 ret = rebind_subsystems(root, root->subsys_bits);
1572 if (ret == -EBUSY) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001573 free_cg_links(&tmp_cg_links);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001574 goto unlock_drop;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001575 }
Ben Blumcf5d5942010-03-10 15:22:09 -08001576 /*
1577 * There must be no failure case after here, since rebinding
1578 * takes care of subsystems' refcounts, which are explicitly
1579 * dropped in the failure exit path.
1580 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001581
1582 /* EBUSY should be the only error here */
1583 BUG_ON(ret);
1584
1585 list_add(&root->root_list, &roots);
Paul Menage817929e2007-10-18 23:39:36 -07001586 root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001587
Li Zefanc12f65d2009-01-07 18:07:42 -08001588 sb->s_root->d_fsdata = root_cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001589 root->top_cgroup.dentry = sb->s_root;
1590
Paul Menage817929e2007-10-18 23:39:36 -07001591 /* Link the top cgroup in this hierarchy into all
1592 * the css_set objects */
1593 write_lock(&css_set_lock);
Li Zefan28fd5df2008-04-29 01:00:13 -07001594 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
1595 struct hlist_head *hhead = &css_set_table[i];
1596 struct hlist_node *node;
Paul Menage817929e2007-10-18 23:39:36 -07001597 struct css_set *cg;
Li Zefan28fd5df2008-04-29 01:00:13 -07001598
Li Zefanc12f65d2009-01-07 18:07:42 -08001599 hlist_for_each_entry(cg, node, hhead, hlist)
1600 link_css_set(&tmp_cg_links, cg, root_cgrp);
Li Zefan28fd5df2008-04-29 01:00:13 -07001601 }
Paul Menage817929e2007-10-18 23:39:36 -07001602 write_unlock(&css_set_lock);
1603
1604 free_cg_links(&tmp_cg_links);
1605
Li Zefanc12f65d2009-01-07 18:07:42 -08001606 BUG_ON(!list_empty(&root_cgrp->sibling));
1607 BUG_ON(!list_empty(&root_cgrp->children));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001608 BUG_ON(root->number_of_cgroups != 1);
1609
eparis@redhat2ce97382011-06-02 21:20:51 +10001610 cred = override_creds(&init_cred);
Li Zefanc12f65d2009-01-07 18:07:42 -08001611 cgroup_populate_dir(root_cgrp);
eparis@redhat2ce97382011-06-02 21:20:51 +10001612 revert_creds(cred);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001613 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001614 mutex_unlock(&cgroup_mutex);
Xiaotian Feng34f77a92009-09-23 15:56:18 -07001615 mutex_unlock(&inode->i_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001616 } else {
1617 /*
1618 * We re-used an existing hierarchy - the new root (if
1619 * any) is not needed
1620 */
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001621 cgroup_drop_root(opts.new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001622 /* no subsys rebinding, so refcounts don't change */
1623 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001624 }
1625
Paul Menagec6d57f32009-09-23 15:56:19 -07001626 kfree(opts.release_agent);
1627 kfree(opts.name);
Al Virof7e83572010-07-26 13:23:11 +04001628 return dget(sb->s_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001629
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001630 unlock_drop:
1631 mutex_unlock(&cgroup_root_mutex);
1632 mutex_unlock(&cgroup_mutex);
1633 mutex_unlock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001634 drop_new_super:
Al Viro6f5bbff2009-05-06 01:34:22 -04001635 deactivate_locked_super(sb);
Ben Blumcf5d5942010-03-10 15:22:09 -08001636 drop_modules:
1637 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menagec6d57f32009-09-23 15:56:19 -07001638 out_err:
1639 kfree(opts.release_agent);
1640 kfree(opts.name);
Al Virof7e83572010-07-26 13:23:11 +04001641 return ERR_PTR(ret);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001642}
1643
1644static void cgroup_kill_sb(struct super_block *sb) {
1645 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001646 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001647 int ret;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001648 struct cg_cgroup_link *link;
1649 struct cg_cgroup_link *saved_link;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001650
1651 BUG_ON(!root);
1652
1653 BUG_ON(root->number_of_cgroups != 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001654 BUG_ON(!list_empty(&cgrp->children));
1655 BUG_ON(!list_empty(&cgrp->sibling));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001656
1657 mutex_lock(&cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001658 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001659
1660 /* Rebind all subsystems back to the default hierarchy */
1661 ret = rebind_subsystems(root, 0);
1662 /* Shouldn't be able to fail ... */
1663 BUG_ON(ret);
1664
Paul Menage817929e2007-10-18 23:39:36 -07001665 /*
1666 * Release all the links from css_sets to this hierarchy's
1667 * root cgroup
1668 */
1669 write_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001670
1671 list_for_each_entry_safe(link, saved_link, &cgrp->css_sets,
1672 cgrp_link_list) {
Paul Menage817929e2007-10-18 23:39:36 -07001673 list_del(&link->cg_link_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07001674 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001675 kfree(link);
1676 }
1677 write_unlock(&css_set_lock);
1678
Paul Menage839ec542009-01-29 14:25:22 -08001679 if (!list_empty(&root->root_list)) {
1680 list_del(&root->root_list);
1681 root_count--;
1682 }
Li Zefane5f6a862009-01-07 18:07:41 -08001683
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001684 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001685 mutex_unlock(&cgroup_mutex);
1686
Paul Menageddbcc7e2007-10-18 23:39:30 -07001687 kill_litter_super(sb);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001688 cgroup_drop_root(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001689}
1690
1691static struct file_system_type cgroup_fs_type = {
1692 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001693 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001694 .kill_sb = cgroup_kill_sb,
1695};
1696
Greg KH676db4a2010-08-05 13:53:35 -07001697static struct kobject *cgroup_kobj;
1698
Paul Menagebd89aab2007-10-18 23:40:44 -07001699static inline struct cgroup *__d_cgrp(struct dentry *dentry)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001700{
1701 return dentry->d_fsdata;
1702}
1703
1704static inline struct cftype *__d_cft(struct dentry *dentry)
1705{
1706 return dentry->d_fsdata;
1707}
1708
Li Zefana043e3b2008-02-23 15:24:09 -08001709/**
1710 * cgroup_path - generate the path of a cgroup
1711 * @cgrp: the cgroup in question
1712 * @buf: the buffer to write the path into
1713 * @buflen: the length of the buffer
1714 *
Paul Menagea47295e2009-01-07 18:07:44 -08001715 * Called with cgroup_mutex held or else with an RCU-protected cgroup
1716 * reference. Writes path of cgroup into buf. Returns 0 on success,
1717 * -errno on error.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001718 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001719int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001720{
1721 char *start;
Li Zefan9a9686b2010-04-22 17:29:24 +08001722 struct dentry *dentry = rcu_dereference_check(cgrp->dentry,
Li Zefan9a9686b2010-04-22 17:29:24 +08001723 cgroup_lock_is_held());
Paul Menageddbcc7e2007-10-18 23:39:30 -07001724
Paul Menagea47295e2009-01-07 18:07:44 -08001725 if (!dentry || cgrp == dummytop) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001726 /*
1727 * Inactive subsystems have no dentry for their root
1728 * cgroup
1729 */
1730 strcpy(buf, "/");
1731 return 0;
1732 }
1733
1734 start = buf + buflen;
1735
1736 *--start = '\0';
1737 for (;;) {
Paul Menagea47295e2009-01-07 18:07:44 -08001738 int len = dentry->d_name.len;
Li Zefan9a9686b2010-04-22 17:29:24 +08001739
Paul Menageddbcc7e2007-10-18 23:39:30 -07001740 if ((start -= len) < buf)
1741 return -ENAMETOOLONG;
Li Zefan9a9686b2010-04-22 17:29:24 +08001742 memcpy(start, dentry->d_name.name, len);
Paul Menagebd89aab2007-10-18 23:40:44 -07001743 cgrp = cgrp->parent;
1744 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001745 break;
Li Zefan9a9686b2010-04-22 17:29:24 +08001746
1747 dentry = rcu_dereference_check(cgrp->dentry,
Li Zefan9a9686b2010-04-22 17:29:24 +08001748 cgroup_lock_is_held());
Paul Menagebd89aab2007-10-18 23:40:44 -07001749 if (!cgrp->parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001750 continue;
1751 if (--start < buf)
1752 return -ENAMETOOLONG;
1753 *start = '/';
1754 }
1755 memmove(buf, start, buf + buflen - start);
1756 return 0;
1757}
Ben Blum67523c42010-03-10 15:22:11 -08001758EXPORT_SYMBOL_GPL(cgroup_path);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001759
Tejun Heo2f7ee562011-12-12 18:12:21 -08001760/*
1761 * Control Group taskset
1762 */
Tejun Heo134d3372011-12-12 18:12:21 -08001763struct task_and_cgroup {
1764 struct task_struct *task;
1765 struct cgroup *cgrp;
1766};
1767
Tejun Heo2f7ee562011-12-12 18:12:21 -08001768struct cgroup_taskset {
1769 struct task_and_cgroup single;
1770 struct flex_array *tc_array;
1771 int tc_array_len;
1772 int idx;
1773 struct cgroup *cur_cgrp;
1774};
1775
1776/**
1777 * cgroup_taskset_first - reset taskset and return the first task
1778 * @tset: taskset of interest
1779 *
1780 * @tset iteration is initialized and the first task is returned.
1781 */
1782struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
1783{
1784 if (tset->tc_array) {
1785 tset->idx = 0;
1786 return cgroup_taskset_next(tset);
1787 } else {
1788 tset->cur_cgrp = tset->single.cgrp;
1789 return tset->single.task;
1790 }
1791}
1792EXPORT_SYMBOL_GPL(cgroup_taskset_first);
1793
1794/**
1795 * cgroup_taskset_next - iterate to the next task in taskset
1796 * @tset: taskset of interest
1797 *
1798 * Return the next task in @tset. Iteration must have been initialized
1799 * with cgroup_taskset_first().
1800 */
1801struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
1802{
1803 struct task_and_cgroup *tc;
1804
1805 if (!tset->tc_array || tset->idx >= tset->tc_array_len)
1806 return NULL;
1807
1808 tc = flex_array_get(tset->tc_array, tset->idx++);
1809 tset->cur_cgrp = tc->cgrp;
1810 return tc->task;
1811}
1812EXPORT_SYMBOL_GPL(cgroup_taskset_next);
1813
1814/**
1815 * cgroup_taskset_cur_cgroup - return the matching cgroup for the current task
1816 * @tset: taskset of interest
1817 *
1818 * Return the cgroup for the current (last returned) task of @tset. This
1819 * function must be preceded by either cgroup_taskset_first() or
1820 * cgroup_taskset_next().
1821 */
1822struct cgroup *cgroup_taskset_cur_cgroup(struct cgroup_taskset *tset)
1823{
1824 return tset->cur_cgrp;
1825}
1826EXPORT_SYMBOL_GPL(cgroup_taskset_cur_cgroup);
1827
1828/**
1829 * cgroup_taskset_size - return the number of tasks in taskset
1830 * @tset: taskset of interest
1831 */
1832int cgroup_taskset_size(struct cgroup_taskset *tset)
1833{
1834 return tset->tc_array ? tset->tc_array_len : 1;
1835}
1836EXPORT_SYMBOL_GPL(cgroup_taskset_size);
1837
1838
Ben Blum74a11662011-05-26 16:25:20 -07001839/*
1840 * cgroup_task_migrate - move a task from one cgroup to another.
1841 *
1842 * 'guarantee' is set if the caller promises that a new css_set for the task
1843 * will already exist. If not set, this function might sleep, and can fail with
Tejun Heocd3d0952011-12-12 18:12:21 -08001844 * -ENOMEM. Must be called with cgroup_mutex and threadgroup locked.
Ben Blum74a11662011-05-26 16:25:20 -07001845 */
1846static int cgroup_task_migrate(struct cgroup *cgrp, struct cgroup *oldcgrp,
1847 struct task_struct *tsk, bool guarantee)
1848{
1849 struct css_set *oldcg;
1850 struct css_set *newcg;
1851
1852 /*
1853 * get old css_set. we need to take task_lock and refcount it, because
1854 * an exiting task can change its css_set to init_css_set and drop its
1855 * old one without taking cgroup_mutex.
1856 */
1857 task_lock(tsk);
1858 oldcg = tsk->cgroups;
1859 get_css_set(oldcg);
1860 task_unlock(tsk);
1861
1862 /* locate or allocate a new css_set for this task. */
1863 if (guarantee) {
1864 /* we know the css_set we want already exists. */
1865 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT];
1866 read_lock(&css_set_lock);
1867 newcg = find_existing_css_set(oldcg, cgrp, template);
1868 BUG_ON(!newcg);
1869 get_css_set(newcg);
1870 read_unlock(&css_set_lock);
1871 } else {
1872 might_sleep();
1873 /* find_css_set will give us newcg already referenced. */
1874 newcg = find_css_set(oldcg, cgrp);
1875 if (!newcg) {
1876 put_css_set(oldcg);
1877 return -ENOMEM;
1878 }
1879 }
1880 put_css_set(oldcg);
1881
Tejun Heocd3d0952011-12-12 18:12:21 -08001882 /* @tsk can't exit as its threadgroup is locked */
Ben Blum74a11662011-05-26 16:25:20 -07001883 task_lock(tsk);
Tejun Heocd3d0952011-12-12 18:12:21 -08001884 WARN_ON_ONCE(tsk->flags & PF_EXITING);
Ben Blum74a11662011-05-26 16:25:20 -07001885 rcu_assign_pointer(tsk->cgroups, newcg);
1886 task_unlock(tsk);
1887
1888 /* Update the css_set linked lists if we're using them */
1889 write_lock(&css_set_lock);
1890 if (!list_empty(&tsk->cg_list))
1891 list_move(&tsk->cg_list, &newcg->tasks);
1892 write_unlock(&css_set_lock);
1893
1894 /*
1895 * We just gained a reference on oldcg by taking it from the task. As
1896 * trading it for newcg is protected by cgroup_mutex, we're safe to drop
1897 * it here; it will be freed under RCU.
1898 */
1899 put_css_set(oldcg);
1900
1901 set_bit(CGRP_RELEASABLE, &oldcgrp->flags);
1902 return 0;
1903}
1904
Li Zefana043e3b2008-02-23 15:24:09 -08001905/**
1906 * cgroup_attach_task - attach task 'tsk' to cgroup 'cgrp'
1907 * @cgrp: the cgroup the task is attaching to
1908 * @tsk: the task to be attached
Paul Menagebbcb81d2007-10-18 23:39:32 -07001909 *
Tejun Heocd3d0952011-12-12 18:12:21 -08001910 * Call with cgroup_mutex and threadgroup locked. May take task_lock of
1911 * @tsk during call.
Paul Menagebbcb81d2007-10-18 23:39:32 -07001912 */
Cliff Wickman956db3c2008-02-07 00:14:43 -08001913int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001914{
Ben Blum74a11662011-05-26 16:25:20 -07001915 int retval;
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001916 struct cgroup_subsys *ss, *failed_ss = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07001917 struct cgroup *oldcgrp;
Paul Menagebd89aab2007-10-18 23:40:44 -07001918 struct cgroupfs_root *root = cgrp->root;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001919 struct cgroup_taskset tset = { };
Paul Menagebbcb81d2007-10-18 23:39:32 -07001920
Tejun Heocd3d0952011-12-12 18:12:21 -08001921 /* @tsk either already exited or can't exit until the end */
1922 if (tsk->flags & PF_EXITING)
1923 return -ESRCH;
1924
Paul Menagebbcb81d2007-10-18 23:39:32 -07001925 /* Nothing to do if the task is already in that cgroup */
Paul Menage7717f7b2009-09-23 15:56:22 -07001926 oldcgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07001927 if (cgrp == oldcgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001928 return 0;
1929
Tejun Heo2f7ee562011-12-12 18:12:21 -08001930 tset.single.task = tsk;
1931 tset.single.cgrp = oldcgrp;
1932
Paul Menagebbcb81d2007-10-18 23:39:32 -07001933 for_each_subsys(root, ss) {
1934 if (ss->can_attach) {
Tejun Heo2f7ee562011-12-12 18:12:21 -08001935 retval = ss->can_attach(ss, cgrp, &tset);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001936 if (retval) {
1937 /*
1938 * Remember on which subsystem the can_attach()
1939 * failed, so that we only call cancel_attach()
1940 * against the subsystems whose can_attach()
1941 * succeeded. (See below)
1942 */
1943 failed_ss = ss;
1944 goto out;
1945 }
Paul Menagebbcb81d2007-10-18 23:39:32 -07001946 }
1947 }
1948
Ben Blum74a11662011-05-26 16:25:20 -07001949 retval = cgroup_task_migrate(cgrp, oldcgrp, tsk, false);
1950 if (retval)
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001951 goto out;
Paul Menage817929e2007-10-18 23:39:36 -07001952
Paul Menagebbcb81d2007-10-18 23:39:32 -07001953 for_each_subsys(root, ss) {
Paul Jacksone18f6312008-02-07 00:13:44 -08001954 if (ss->attach)
Tejun Heo2f7ee562011-12-12 18:12:21 -08001955 ss->attach(ss, cgrp, &tset);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001956 }
Ben Blum74a11662011-05-26 16:25:20 -07001957
Paul Menagebbcb81d2007-10-18 23:39:32 -07001958 synchronize_rcu();
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07001959
1960 /*
1961 * wake up rmdir() waiter. the rmdir should fail since the cgroup
1962 * is no longer empty.
1963 */
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07001964 cgroup_wakeup_rmdir_waiter(cgrp);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001965out:
1966 if (retval) {
1967 for_each_subsys(root, ss) {
1968 if (ss == failed_ss)
1969 /*
1970 * This subsystem was the one that failed the
1971 * can_attach() check earlier, so we don't need
1972 * to call cancel_attach() against it or any
1973 * remaining subsystems.
1974 */
1975 break;
1976 if (ss->cancel_attach)
Tejun Heo2f7ee562011-12-12 18:12:21 -08001977 ss->cancel_attach(ss, cgrp, &tset);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001978 }
1979 }
1980 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001981}
1982
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001983/**
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001984 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
1985 * @from: attach to all cgroups of a given task
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001986 * @tsk: the task to be attached
1987 */
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001988int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001989{
1990 struct cgroupfs_root *root;
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001991 int retval = 0;
1992
1993 cgroup_lock();
1994 for_each_active_root(root) {
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001995 struct cgroup *from_cg = task_cgroup_from_root(from, root);
1996
1997 retval = cgroup_attach_task(from_cg, tsk);
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001998 if (retval)
1999 break;
2000 }
2001 cgroup_unlock();
2002
2003 return retval;
2004}
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07002005EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02002006
Paul Menagebbcb81d2007-10-18 23:39:32 -07002007/*
Ben Blum74a11662011-05-26 16:25:20 -07002008 * cgroup_attach_proc works in two stages, the first of which prefetches all
2009 * new css_sets needed (to make sure we have enough memory before committing
2010 * to the move) and stores them in a list of entries of the following type.
2011 * TODO: possible optimization: use css_set->rcu_head for chaining instead
Paul Menagebbcb81d2007-10-18 23:39:32 -07002012 */
Ben Blum74a11662011-05-26 16:25:20 -07002013struct cg_list_entry {
2014 struct css_set *cg;
2015 struct list_head links;
2016};
2017
2018static bool css_set_check_fetched(struct cgroup *cgrp,
2019 struct task_struct *tsk, struct css_set *cg,
2020 struct list_head *newcg_list)
2021{
2022 struct css_set *newcg;
2023 struct cg_list_entry *cg_entry;
2024 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT];
2025
2026 read_lock(&css_set_lock);
2027 newcg = find_existing_css_set(cg, cgrp, template);
2028 if (newcg)
2029 get_css_set(newcg);
2030 read_unlock(&css_set_lock);
2031
2032 /* doesn't exist at all? */
2033 if (!newcg)
2034 return false;
2035 /* see if it's already in the list */
2036 list_for_each_entry(cg_entry, newcg_list, links) {
2037 if (cg_entry->cg == newcg) {
2038 put_css_set(newcg);
2039 return true;
2040 }
2041 }
2042
2043 /* not found */
2044 put_css_set(newcg);
2045 return false;
2046}
2047
2048/*
2049 * Find the new css_set and store it in the list in preparation for moving the
2050 * given task to the given cgroup. Returns 0 or -ENOMEM.
2051 */
2052static int css_set_prefetch(struct cgroup *cgrp, struct css_set *cg,
2053 struct list_head *newcg_list)
2054{
2055 struct css_set *newcg;
2056 struct cg_list_entry *cg_entry;
2057
2058 /* ensure a new css_set will exist for this thread */
2059 newcg = find_css_set(cg, cgrp);
2060 if (!newcg)
2061 return -ENOMEM;
2062 /* add it to the list */
2063 cg_entry = kmalloc(sizeof(struct cg_list_entry), GFP_KERNEL);
2064 if (!cg_entry) {
2065 put_css_set(newcg);
2066 return -ENOMEM;
2067 }
2068 cg_entry->cg = newcg;
2069 list_add(&cg_entry->links, newcg_list);
2070 return 0;
2071}
2072
2073/**
2074 * cgroup_attach_proc - attach all threads in a threadgroup to a cgroup
2075 * @cgrp: the cgroup to attach to
2076 * @leader: the threadgroup leader task_struct of the group to be attached
2077 *
Tejun Heo257058a2011-12-12 18:12:21 -08002078 * Call holding cgroup_mutex and the group_rwsem of the leader. Will take
2079 * task_lock of each thread in leader's threadgroup individually in turn.
Ben Blum74a11662011-05-26 16:25:20 -07002080 */
2081int cgroup_attach_proc(struct cgroup *cgrp, struct task_struct *leader)
2082{
Tejun Heo134d3372011-12-12 18:12:21 -08002083 int retval, i, group_size, nr_migrating_tasks;
Ben Blum74a11662011-05-26 16:25:20 -07002084 struct cgroup_subsys *ss, *failed_ss = NULL;
Ben Blum74a11662011-05-26 16:25:20 -07002085 /* guaranteed to be initialized later, but the compiler needs this */
Ben Blum74a11662011-05-26 16:25:20 -07002086 struct css_set *oldcg;
2087 struct cgroupfs_root *root = cgrp->root;
2088 /* threadgroup list cursor and array */
2089 struct task_struct *tsk;
Tejun Heo134d3372011-12-12 18:12:21 -08002090 struct task_and_cgroup *tc;
Ben Blumd8466872011-05-26 16:25:21 -07002091 struct flex_array *group;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002092 struct cgroup_taskset tset = { };
Ben Blum74a11662011-05-26 16:25:20 -07002093 /*
2094 * we need to make sure we have css_sets for all the tasks we're
2095 * going to move -before- we actually start moving them, so that in
2096 * case we get an ENOMEM we can bail out before making any changes.
2097 */
2098 struct list_head newcg_list;
2099 struct cg_list_entry *cg_entry, *temp_nobe;
2100
2101 /*
2102 * step 0: in order to do expensive, possibly blocking operations for
2103 * every thread, we cannot iterate the thread group list, since it needs
2104 * rcu or tasklist locked. instead, build an array of all threads in the
Tejun Heo257058a2011-12-12 18:12:21 -08002105 * group - group_rwsem prevents new threads from appearing, and if
2106 * threads exit, this will just be an over-estimate.
Ben Blum74a11662011-05-26 16:25:20 -07002107 */
2108 group_size = get_nr_threads(leader);
Ben Blumd8466872011-05-26 16:25:21 -07002109 /* flex_array supports very large thread-groups better than kmalloc. */
Tejun Heo134d3372011-12-12 18:12:21 -08002110 group = flex_array_alloc(sizeof(*tc), group_size, GFP_KERNEL);
Ben Blum74a11662011-05-26 16:25:20 -07002111 if (!group)
2112 return -ENOMEM;
Ben Blumd8466872011-05-26 16:25:21 -07002113 /* pre-allocate to guarantee space while iterating in rcu read-side. */
2114 retval = flex_array_prealloc(group, 0, group_size - 1, GFP_KERNEL);
2115 if (retval)
2116 goto out_free_group_list;
Ben Blum74a11662011-05-26 16:25:20 -07002117
2118 /* prevent changes to the threadgroup list while we take a snapshot. */
Ben Blum33ef6b62011-11-02 13:38:05 -07002119 read_lock(&tasklist_lock);
Ben Blum74a11662011-05-26 16:25:20 -07002120 if (!thread_group_leader(leader)) {
2121 /*
2122 * a race with de_thread from another thread's exec() may strip
2123 * us of our leadership, making while_each_thread unsafe to use
2124 * on this task. if this happens, there is no choice but to
2125 * throw this task away and try again (from cgroup_procs_write);
2126 * this is "double-double-toil-and-trouble-check locking".
2127 */
Ben Blum33ef6b62011-11-02 13:38:05 -07002128 read_unlock(&tasklist_lock);
Ben Blum74a11662011-05-26 16:25:20 -07002129 retval = -EAGAIN;
2130 goto out_free_group_list;
2131 }
2132 /* take a reference on each task in the group to go in the array. */
2133 tsk = leader;
Tejun Heo134d3372011-12-12 18:12:21 -08002134 i = nr_migrating_tasks = 0;
Ben Blum74a11662011-05-26 16:25:20 -07002135 do {
Tejun Heo134d3372011-12-12 18:12:21 -08002136 struct task_and_cgroup ent;
2137
Tejun Heocd3d0952011-12-12 18:12:21 -08002138 /* @tsk either already exited or can't exit until the end */
2139 if (tsk->flags & PF_EXITING)
2140 continue;
2141
Ben Blum74a11662011-05-26 16:25:20 -07002142 /* as per above, nr_threads may decrease, but not increase. */
2143 BUG_ON(i >= group_size);
2144 get_task_struct(tsk);
Ben Blumd8466872011-05-26 16:25:21 -07002145 /*
2146 * saying GFP_ATOMIC has no effect here because we did prealloc
2147 * earlier, but it's good form to communicate our expectations.
2148 */
Tejun Heo134d3372011-12-12 18:12:21 -08002149 ent.task = tsk;
2150 ent.cgrp = task_cgroup_from_root(tsk, root);
2151 retval = flex_array_put(group, i, &ent, GFP_ATOMIC);
Ben Blumd8466872011-05-26 16:25:21 -07002152 BUG_ON(retval != 0);
Ben Blum74a11662011-05-26 16:25:20 -07002153 i++;
Tejun Heo134d3372011-12-12 18:12:21 -08002154 if (ent.cgrp != cgrp)
2155 nr_migrating_tasks++;
Ben Blum74a11662011-05-26 16:25:20 -07002156 } while_each_thread(leader, tsk);
2157 /* remember the number of threads in the array for later. */
2158 group_size = i;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002159 tset.tc_array = group;
2160 tset.tc_array_len = group_size;
Ben Blum33ef6b62011-11-02 13:38:05 -07002161 read_unlock(&tasklist_lock);
Ben Blum74a11662011-05-26 16:25:20 -07002162
Tejun Heo134d3372011-12-12 18:12:21 -08002163 /* methods shouldn't be called if no task is actually migrating */
2164 retval = 0;
2165 if (!nr_migrating_tasks)
2166 goto out_put_tasks;
2167
Ben Blum74a11662011-05-26 16:25:20 -07002168 /*
2169 * step 1: check that we can legitimately attach to the cgroup.
2170 */
2171 for_each_subsys(root, ss) {
2172 if (ss->can_attach) {
Tejun Heo2f7ee562011-12-12 18:12:21 -08002173 retval = ss->can_attach(ss, cgrp, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002174 if (retval) {
2175 failed_ss = ss;
2176 goto out_cancel_attach;
2177 }
2178 }
Ben Blum74a11662011-05-26 16:25:20 -07002179 }
2180
2181 /*
2182 * step 2: make sure css_sets exist for all threads to be migrated.
2183 * we use find_css_set, which allocates a new one if necessary.
2184 */
2185 INIT_LIST_HEAD(&newcg_list);
2186 for (i = 0; i < group_size; i++) {
Tejun Heo134d3372011-12-12 18:12:21 -08002187 tc = flex_array_get(group, i);
Ben Blum74a11662011-05-26 16:25:20 -07002188 /* nothing to do if this task is already in the cgroup */
Tejun Heo134d3372011-12-12 18:12:21 -08002189 if (tc->cgrp == cgrp)
Ben Blum74a11662011-05-26 16:25:20 -07002190 continue;
2191 /* get old css_set pointer */
Tejun Heo134d3372011-12-12 18:12:21 -08002192 task_lock(tc->task);
2193 oldcg = tc->task->cgroups;
Ben Blum74a11662011-05-26 16:25:20 -07002194 get_css_set(oldcg);
Tejun Heo134d3372011-12-12 18:12:21 -08002195 task_unlock(tc->task);
Ben Blum74a11662011-05-26 16:25:20 -07002196 /* see if the new one for us is already in the list? */
Tejun Heo134d3372011-12-12 18:12:21 -08002197 if (css_set_check_fetched(cgrp, tc->task, oldcg, &newcg_list)) {
Ben Blum74a11662011-05-26 16:25:20 -07002198 /* was already there, nothing to do. */
2199 put_css_set(oldcg);
2200 } else {
2201 /* we don't already have it. get new one. */
2202 retval = css_set_prefetch(cgrp, oldcg, &newcg_list);
2203 put_css_set(oldcg);
2204 if (retval)
2205 goto out_list_teardown;
2206 }
2207 }
2208
2209 /*
Tejun Heo494c1672011-12-12 18:12:22 -08002210 * step 3: now that we're guaranteed success wrt the css_sets,
2211 * proceed to move all tasks to the new cgroup. There are no
2212 * failure cases after here, so this is the commit point.
Ben Blum74a11662011-05-26 16:25:20 -07002213 */
Ben Blum74a11662011-05-26 16:25:20 -07002214 for (i = 0; i < group_size; i++) {
Tejun Heo134d3372011-12-12 18:12:21 -08002215 tc = flex_array_get(group, i);
Ben Blum74a11662011-05-26 16:25:20 -07002216 /* leave current thread as it is if it's already there */
Tejun Heo134d3372011-12-12 18:12:21 -08002217 if (tc->cgrp == cgrp)
Ben Blum74a11662011-05-26 16:25:20 -07002218 continue;
Tejun Heo134d3372011-12-12 18:12:21 -08002219 retval = cgroup_task_migrate(cgrp, tc->cgrp, tc->task, true);
Tejun Heocd3d0952011-12-12 18:12:21 -08002220 BUG_ON(retval);
Ben Blum74a11662011-05-26 16:25:20 -07002221 }
2222 /* nothing is sensitive to fork() after this point. */
2223
2224 /*
Tejun Heo494c1672011-12-12 18:12:22 -08002225 * step 4: do subsystem attach callbacks.
Ben Blum74a11662011-05-26 16:25:20 -07002226 */
2227 for_each_subsys(root, ss) {
Tejun Heo2f7ee562011-12-12 18:12:21 -08002228 if (ss->attach)
2229 ss->attach(ss, cgrp, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002230 }
2231
2232 /*
2233 * step 5: success! and cleanup
2234 */
2235 synchronize_rcu();
2236 cgroup_wakeup_rmdir_waiter(cgrp);
2237 retval = 0;
2238out_list_teardown:
2239 /* clean up the list of prefetched css_sets. */
2240 list_for_each_entry_safe(cg_entry, temp_nobe, &newcg_list, links) {
2241 list_del(&cg_entry->links);
2242 put_css_set(cg_entry->cg);
2243 kfree(cg_entry);
2244 }
2245out_cancel_attach:
2246 /* same deal as in cgroup_attach_task */
2247 if (retval) {
2248 for_each_subsys(root, ss) {
Tejun Heo494c1672011-12-12 18:12:22 -08002249 if (ss == failed_ss)
Ben Blum74a11662011-05-26 16:25:20 -07002250 break;
Ben Blum74a11662011-05-26 16:25:20 -07002251 if (ss->cancel_attach)
Tejun Heo2f7ee562011-12-12 18:12:21 -08002252 ss->cancel_attach(ss, cgrp, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002253 }
2254 }
Tejun Heo134d3372011-12-12 18:12:21 -08002255out_put_tasks:
Ben Blum74a11662011-05-26 16:25:20 -07002256 /* clean up the array of referenced threads in the group. */
Ben Blumd8466872011-05-26 16:25:21 -07002257 for (i = 0; i < group_size; i++) {
Tejun Heo134d3372011-12-12 18:12:21 -08002258 tc = flex_array_get(group, i);
2259 put_task_struct(tc->task);
Ben Blumd8466872011-05-26 16:25:21 -07002260 }
Ben Blum74a11662011-05-26 16:25:20 -07002261out_free_group_list:
Ben Blumd8466872011-05-26 16:25:21 -07002262 flex_array_free(group);
Ben Blum74a11662011-05-26 16:25:20 -07002263 return retval;
2264}
2265
2266/*
2267 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08002268 * function to attach either it or all tasks in its threadgroup. Will lock
2269 * cgroup_mutex and threadgroup; may take task_lock of task.
Ben Blum74a11662011-05-26 16:25:20 -07002270 */
2271static int attach_task_by_pid(struct cgroup *cgrp, u64 pid, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002272{
Paul Menagebbcb81d2007-10-18 23:39:32 -07002273 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11002274 const struct cred *cred = current_cred(), *tcred;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002275 int ret;
2276
Ben Blum74a11662011-05-26 16:25:20 -07002277 if (!cgroup_lock_live_group(cgrp))
2278 return -ENODEV;
2279
Paul Menagebbcb81d2007-10-18 23:39:32 -07002280 if (pid) {
2281 rcu_read_lock();
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002282 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07002283 if (!tsk) {
Paul Menagebbcb81d2007-10-18 23:39:32 -07002284 rcu_read_unlock();
Ben Blum74a11662011-05-26 16:25:20 -07002285 cgroup_unlock();
2286 return -ESRCH;
2287 }
2288 if (threadgroup) {
2289 /*
2290 * RCU protects this access, since tsk was found in the
2291 * tid map. a race with de_thread may cause group_leader
2292 * to stop being the leader, but cgroup_attach_proc will
2293 * detect it later.
2294 */
2295 tsk = tsk->group_leader;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002296 }
Ben Blum74a11662011-05-26 16:25:20 -07002297 /*
2298 * even if we're attaching all tasks in the thread group, we
2299 * only need to check permissions on one of them.
2300 */
David Howellsc69e8d92008-11-14 10:39:19 +11002301 tcred = __task_cred(tsk);
2302 if (cred->euid &&
2303 cred->euid != tcred->uid &&
2304 cred->euid != tcred->suid) {
2305 rcu_read_unlock();
Ben Blum74a11662011-05-26 16:25:20 -07002306 cgroup_unlock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002307 return -EACCES;
2308 }
David Howellsc69e8d92008-11-14 10:39:19 +11002309 get_task_struct(tsk);
2310 rcu_read_unlock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002311 } else {
Ben Blum74a11662011-05-26 16:25:20 -07002312 if (threadgroup)
2313 tsk = current->group_leader;
2314 else
2315 tsk = current;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002316 get_task_struct(tsk);
2317 }
2318
Tejun Heocd3d0952011-12-12 18:12:21 -08002319 threadgroup_lock(tsk);
2320
2321 if (threadgroup)
Ben Blum74a11662011-05-26 16:25:20 -07002322 ret = cgroup_attach_proc(cgrp, tsk);
Tejun Heocd3d0952011-12-12 18:12:21 -08002323 else
Ben Blum74a11662011-05-26 16:25:20 -07002324 ret = cgroup_attach_task(cgrp, tsk);
Tejun Heocd3d0952011-12-12 18:12:21 -08002325
2326 threadgroup_unlock(tsk);
2327
Paul Menagebbcb81d2007-10-18 23:39:32 -07002328 put_task_struct(tsk);
Ben Blum74a11662011-05-26 16:25:20 -07002329 cgroup_unlock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002330 return ret;
2331}
2332
Paul Menageaf351022008-07-25 01:47:01 -07002333static int cgroup_tasks_write(struct cgroup *cgrp, struct cftype *cft, u64 pid)
2334{
Ben Blum74a11662011-05-26 16:25:20 -07002335 return attach_task_by_pid(cgrp, pid, false);
2336}
2337
2338static int cgroup_procs_write(struct cgroup *cgrp, struct cftype *cft, u64 tgid)
2339{
Paul Menageaf351022008-07-25 01:47:01 -07002340 int ret;
Ben Blum74a11662011-05-26 16:25:20 -07002341 do {
2342 /*
2343 * attach_proc fails with -EAGAIN if threadgroup leadership
2344 * changes in the middle of the operation, in which case we need
2345 * to find the task_struct for the new leader and start over.
2346 */
2347 ret = attach_task_by_pid(cgrp, tgid, true);
2348 } while (ret == -EAGAIN);
Paul Menageaf351022008-07-25 01:47:01 -07002349 return ret;
2350}
2351
Paul Menagee788e062008-07-25 01:46:59 -07002352/**
2353 * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive.
2354 * @cgrp: the cgroup to be checked for liveness
2355 *
Paul Menage84eea842008-07-25 01:47:00 -07002356 * On success, returns true; the lock should be later released with
2357 * cgroup_unlock(). On failure returns false with no lock held.
Paul Menagee788e062008-07-25 01:46:59 -07002358 */
Paul Menage84eea842008-07-25 01:47:00 -07002359bool cgroup_lock_live_group(struct cgroup *cgrp)
Paul Menagee788e062008-07-25 01:46:59 -07002360{
2361 mutex_lock(&cgroup_mutex);
2362 if (cgroup_is_removed(cgrp)) {
2363 mutex_unlock(&cgroup_mutex);
2364 return false;
2365 }
2366 return true;
2367}
Ben Blum67523c42010-03-10 15:22:11 -08002368EXPORT_SYMBOL_GPL(cgroup_lock_live_group);
Paul Menagee788e062008-07-25 01:46:59 -07002369
2370static int cgroup_release_agent_write(struct cgroup *cgrp, struct cftype *cft,
2371 const char *buffer)
2372{
2373 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
Evgeny Kuznetsovf4a25892010-10-27 15:33:37 -07002374 if (strlen(buffer) >= PATH_MAX)
2375 return -EINVAL;
Paul Menagee788e062008-07-25 01:46:59 -07002376 if (!cgroup_lock_live_group(cgrp))
2377 return -ENODEV;
Tejun Heoe25e2cb2011-12-12 18:12:21 -08002378 mutex_lock(&cgroup_root_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07002379 strcpy(cgrp->root->release_agent_path, buffer);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08002380 mutex_unlock(&cgroup_root_mutex);
Paul Menage84eea842008-07-25 01:47:00 -07002381 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07002382 return 0;
2383}
2384
2385static int cgroup_release_agent_show(struct cgroup *cgrp, struct cftype *cft,
2386 struct seq_file *seq)
2387{
2388 if (!cgroup_lock_live_group(cgrp))
2389 return -ENODEV;
2390 seq_puts(seq, cgrp->root->release_agent_path);
2391 seq_putc(seq, '\n');
Paul Menage84eea842008-07-25 01:47:00 -07002392 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07002393 return 0;
2394}
2395
Paul Menage84eea842008-07-25 01:47:00 -07002396/* A buffer size big enough for numbers or short strings */
2397#define CGROUP_LOCAL_BUFFER_SIZE 64
2398
Paul Menagee73d2c62008-04-29 01:00:06 -07002399static ssize_t cgroup_write_X64(struct cgroup *cgrp, struct cftype *cft,
Paul Menagef4c753b2008-04-29 00:59:56 -07002400 struct file *file,
2401 const char __user *userbuf,
2402 size_t nbytes, loff_t *unused_ppos)
Paul Menage355e0c42007-10-18 23:39:33 -07002403{
Paul Menage84eea842008-07-25 01:47:00 -07002404 char buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menage355e0c42007-10-18 23:39:33 -07002405 int retval = 0;
Paul Menage355e0c42007-10-18 23:39:33 -07002406 char *end;
2407
2408 if (!nbytes)
2409 return -EINVAL;
2410 if (nbytes >= sizeof(buffer))
2411 return -E2BIG;
2412 if (copy_from_user(buffer, userbuf, nbytes))
2413 return -EFAULT;
2414
2415 buffer[nbytes] = 0; /* nul-terminate */
Paul Menagee73d2c62008-04-29 01:00:06 -07002416 if (cft->write_u64) {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002417 u64 val = simple_strtoull(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07002418 if (*end)
2419 return -EINVAL;
2420 retval = cft->write_u64(cgrp, cft, val);
2421 } else {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002422 s64 val = simple_strtoll(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07002423 if (*end)
2424 return -EINVAL;
2425 retval = cft->write_s64(cgrp, cft, val);
2426 }
Paul Menage355e0c42007-10-18 23:39:33 -07002427 if (!retval)
2428 retval = nbytes;
2429 return retval;
2430}
2431
Paul Menagedb3b1492008-07-25 01:46:58 -07002432static ssize_t cgroup_write_string(struct cgroup *cgrp, struct cftype *cft,
2433 struct file *file,
2434 const char __user *userbuf,
2435 size_t nbytes, loff_t *unused_ppos)
2436{
Paul Menage84eea842008-07-25 01:47:00 -07002437 char local_buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagedb3b1492008-07-25 01:46:58 -07002438 int retval = 0;
2439 size_t max_bytes = cft->max_write_len;
2440 char *buffer = local_buffer;
2441
2442 if (!max_bytes)
2443 max_bytes = sizeof(local_buffer) - 1;
2444 if (nbytes >= max_bytes)
2445 return -E2BIG;
2446 /* Allocate a dynamic buffer if we need one */
2447 if (nbytes >= sizeof(local_buffer)) {
2448 buffer = kmalloc(nbytes + 1, GFP_KERNEL);
2449 if (buffer == NULL)
2450 return -ENOMEM;
2451 }
Li Zefan5a3eb9f2008-07-29 22:33:18 -07002452 if (nbytes && copy_from_user(buffer, userbuf, nbytes)) {
2453 retval = -EFAULT;
2454 goto out;
2455 }
Paul Menagedb3b1492008-07-25 01:46:58 -07002456
2457 buffer[nbytes] = 0; /* nul-terminate */
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002458 retval = cft->write_string(cgrp, cft, strstrip(buffer));
Paul Menagedb3b1492008-07-25 01:46:58 -07002459 if (!retval)
2460 retval = nbytes;
Li Zefan5a3eb9f2008-07-29 22:33:18 -07002461out:
Paul Menagedb3b1492008-07-25 01:46:58 -07002462 if (buffer != local_buffer)
2463 kfree(buffer);
2464 return retval;
2465}
2466
Paul Menageddbcc7e2007-10-18 23:39:30 -07002467static ssize_t cgroup_file_write(struct file *file, const char __user *buf,
2468 size_t nbytes, loff_t *ppos)
2469{
2470 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07002471 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002472
Li Zefan75139b82009-01-07 18:07:33 -08002473 if (cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07002474 return -ENODEV;
Paul Menage355e0c42007-10-18 23:39:33 -07002475 if (cft->write)
Paul Menagebd89aab2007-10-18 23:40:44 -07002476 return cft->write(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002477 if (cft->write_u64 || cft->write_s64)
2478 return cgroup_write_X64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagedb3b1492008-07-25 01:46:58 -07002479 if (cft->write_string)
2480 return cgroup_write_string(cgrp, cft, file, buf, nbytes, ppos);
Pavel Emelyanovd447ea22008-04-29 01:00:08 -07002481 if (cft->trigger) {
2482 int ret = cft->trigger(cgrp, (unsigned int)cft->private);
2483 return ret ? ret : nbytes;
2484 }
Paul Menage355e0c42007-10-18 23:39:33 -07002485 return -EINVAL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002486}
2487
Paul Menagef4c753b2008-04-29 00:59:56 -07002488static ssize_t cgroup_read_u64(struct cgroup *cgrp, struct cftype *cft,
2489 struct file *file,
2490 char __user *buf, size_t nbytes,
2491 loff_t *ppos)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002492{
Paul Menage84eea842008-07-25 01:47:00 -07002493 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagef4c753b2008-04-29 00:59:56 -07002494 u64 val = cft->read_u64(cgrp, cft);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002495 int len = sprintf(tmp, "%llu\n", (unsigned long long) val);
2496
2497 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2498}
2499
Paul Menagee73d2c62008-04-29 01:00:06 -07002500static ssize_t cgroup_read_s64(struct cgroup *cgrp, struct cftype *cft,
2501 struct file *file,
2502 char __user *buf, size_t nbytes,
2503 loff_t *ppos)
2504{
Paul Menage84eea842008-07-25 01:47:00 -07002505 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagee73d2c62008-04-29 01:00:06 -07002506 s64 val = cft->read_s64(cgrp, cft);
2507 int len = sprintf(tmp, "%lld\n", (long long) val);
2508
2509 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2510}
2511
Paul Menageddbcc7e2007-10-18 23:39:30 -07002512static ssize_t cgroup_file_read(struct file *file, char __user *buf,
2513 size_t nbytes, loff_t *ppos)
2514{
2515 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07002516 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002517
Li Zefan75139b82009-01-07 18:07:33 -08002518 if (cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07002519 return -ENODEV;
2520
2521 if (cft->read)
Paul Menagebd89aab2007-10-18 23:40:44 -07002522 return cft->read(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagef4c753b2008-04-29 00:59:56 -07002523 if (cft->read_u64)
2524 return cgroup_read_u64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002525 if (cft->read_s64)
2526 return cgroup_read_s64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002527 return -EINVAL;
2528}
2529
Paul Menage91796562008-04-29 01:00:01 -07002530/*
2531 * seqfile ops/methods for returning structured data. Currently just
2532 * supports string->u64 maps, but can be extended in future.
2533 */
2534
2535struct cgroup_seqfile_state {
2536 struct cftype *cft;
2537 struct cgroup *cgroup;
2538};
2539
2540static int cgroup_map_add(struct cgroup_map_cb *cb, const char *key, u64 value)
2541{
2542 struct seq_file *sf = cb->state;
2543 return seq_printf(sf, "%s %llu\n", key, (unsigned long long)value);
2544}
2545
2546static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2547{
2548 struct cgroup_seqfile_state *state = m->private;
2549 struct cftype *cft = state->cft;
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002550 if (cft->read_map) {
2551 struct cgroup_map_cb cb = {
2552 .fill = cgroup_map_add,
2553 .state = m,
2554 };
2555 return cft->read_map(state->cgroup, cft, &cb);
2556 }
2557 return cft->read_seq_string(state->cgroup, cft, m);
Paul Menage91796562008-04-29 01:00:01 -07002558}
2559
Adrian Bunk96930a62008-07-25 19:46:21 -07002560static int cgroup_seqfile_release(struct inode *inode, struct file *file)
Paul Menage91796562008-04-29 01:00:01 -07002561{
2562 struct seq_file *seq = file->private_data;
2563 kfree(seq->private);
2564 return single_release(inode, file);
2565}
2566
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002567static const struct file_operations cgroup_seqfile_operations = {
Paul Menage91796562008-04-29 01:00:01 -07002568 .read = seq_read,
Paul Menagee788e062008-07-25 01:46:59 -07002569 .write = cgroup_file_write,
Paul Menage91796562008-04-29 01:00:01 -07002570 .llseek = seq_lseek,
2571 .release = cgroup_seqfile_release,
2572};
2573
Paul Menageddbcc7e2007-10-18 23:39:30 -07002574static int cgroup_file_open(struct inode *inode, struct file *file)
2575{
2576 int err;
2577 struct cftype *cft;
2578
2579 err = generic_file_open(inode, file);
2580 if (err)
2581 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002582 cft = __d_cft(file->f_dentry);
Li Zefan75139b82009-01-07 18:07:33 -08002583
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002584 if (cft->read_map || cft->read_seq_string) {
Paul Menage91796562008-04-29 01:00:01 -07002585 struct cgroup_seqfile_state *state =
2586 kzalloc(sizeof(*state), GFP_USER);
2587 if (!state)
2588 return -ENOMEM;
2589 state->cft = cft;
2590 state->cgroup = __d_cgrp(file->f_dentry->d_parent);
2591 file->f_op = &cgroup_seqfile_operations;
2592 err = single_open(file, cgroup_seqfile_show, state);
2593 if (err < 0)
2594 kfree(state);
2595 } else if (cft->open)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002596 err = cft->open(inode, file);
2597 else
2598 err = 0;
2599
2600 return err;
2601}
2602
2603static int cgroup_file_release(struct inode *inode, struct file *file)
2604{
2605 struct cftype *cft = __d_cft(file->f_dentry);
2606 if (cft->release)
2607 return cft->release(inode, file);
2608 return 0;
2609}
2610
2611/*
2612 * cgroup_rename - Only allow simple rename of directories in place.
2613 */
2614static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry,
2615 struct inode *new_dir, struct dentry *new_dentry)
2616{
2617 if (!S_ISDIR(old_dentry->d_inode->i_mode))
2618 return -ENOTDIR;
2619 if (new_dentry->d_inode)
2620 return -EEXIST;
2621 if (old_dir != new_dir)
2622 return -EIO;
2623 return simple_rename(old_dir, old_dentry, new_dir, new_dentry);
2624}
2625
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002626static const struct file_operations cgroup_file_operations = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002627 .read = cgroup_file_read,
2628 .write = cgroup_file_write,
2629 .llseek = generic_file_llseek,
2630 .open = cgroup_file_open,
2631 .release = cgroup_file_release,
2632};
2633
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07002634static const struct inode_operations cgroup_dir_inode_operations = {
Al Viroc72a04e2011-01-14 05:31:45 +00002635 .lookup = cgroup_lookup,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002636 .mkdir = cgroup_mkdir,
2637 .rmdir = cgroup_rmdir,
2638 .rename = cgroup_rename,
2639};
2640
Al Viroc72a04e2011-01-14 05:31:45 +00002641static struct dentry *cgroup_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
2642{
2643 if (dentry->d_name.len > NAME_MAX)
2644 return ERR_PTR(-ENAMETOOLONG);
2645 d_add(dentry, NULL);
2646 return NULL;
2647}
2648
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08002649/*
2650 * Check if a file is a control file
2651 */
2652static inline struct cftype *__file_cft(struct file *file)
2653{
2654 if (file->f_dentry->d_inode->i_fop != &cgroup_file_operations)
2655 return ERR_PTR(-EINVAL);
2656 return __d_cft(file->f_dentry);
2657}
2658
Nick Piggin5adcee12011-01-07 17:49:20 +11002659static int cgroup_create_file(struct dentry *dentry, mode_t mode,
2660 struct super_block *sb)
2661{
Paul Menageddbcc7e2007-10-18 23:39:30 -07002662 struct inode *inode;
2663
2664 if (!dentry)
2665 return -ENOENT;
2666 if (dentry->d_inode)
2667 return -EEXIST;
2668
2669 inode = cgroup_new_inode(mode, sb);
2670 if (!inode)
2671 return -ENOMEM;
2672
2673 if (S_ISDIR(mode)) {
2674 inode->i_op = &cgroup_dir_inode_operations;
2675 inode->i_fop = &simple_dir_operations;
2676
2677 /* start off with i_nlink == 2 (for "." entry) */
2678 inc_nlink(inode);
2679
2680 /* start with the directory inode held, so that we can
2681 * populate it without racing with another mkdir */
Paul Menage817929e2007-10-18 23:39:36 -07002682 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002683 } else if (S_ISREG(mode)) {
2684 inode->i_size = 0;
2685 inode->i_fop = &cgroup_file_operations;
2686 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002687 d_instantiate(dentry, inode);
2688 dget(dentry); /* Extra count - pin the dentry in core */
2689 return 0;
2690}
2691
2692/*
Li Zefana043e3b2008-02-23 15:24:09 -08002693 * cgroup_create_dir - create a directory for an object.
2694 * @cgrp: the cgroup we create the directory for. It must have a valid
2695 * ->parent field. And we are going to fill its ->dentry field.
2696 * @dentry: dentry of the new cgroup
2697 * @mode: mode to set on new directory.
Paul Menageddbcc7e2007-10-18 23:39:30 -07002698 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002699static int cgroup_create_dir(struct cgroup *cgrp, struct dentry *dentry,
Li Zefan099fca32009-04-02 16:57:29 -07002700 mode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002701{
2702 struct dentry *parent;
2703 int error = 0;
2704
Paul Menagebd89aab2007-10-18 23:40:44 -07002705 parent = cgrp->parent->dentry;
2706 error = cgroup_create_file(dentry, S_IFDIR | mode, cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002707 if (!error) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002708 dentry->d_fsdata = cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002709 inc_nlink(parent->d_inode);
Paul Menagea47295e2009-01-07 18:07:44 -08002710 rcu_assign_pointer(cgrp->dentry, dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002711 dget(dentry);
2712 }
2713 dput(dentry);
2714
2715 return error;
2716}
2717
Li Zefan099fca32009-04-02 16:57:29 -07002718/**
2719 * cgroup_file_mode - deduce file mode of a control file
2720 * @cft: the control file in question
2721 *
2722 * returns cft->mode if ->mode is not 0
2723 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
2724 * returns S_IRUGO if it has only a read handler
2725 * returns S_IWUSR if it has only a write hander
2726 */
2727static mode_t cgroup_file_mode(const struct cftype *cft)
2728{
2729 mode_t mode = 0;
2730
2731 if (cft->mode)
2732 return cft->mode;
2733
2734 if (cft->read || cft->read_u64 || cft->read_s64 ||
2735 cft->read_map || cft->read_seq_string)
2736 mode |= S_IRUGO;
2737
2738 if (cft->write || cft->write_u64 || cft->write_s64 ||
2739 cft->write_string || cft->trigger)
2740 mode |= S_IWUSR;
2741
2742 return mode;
2743}
2744
Paul Menagebd89aab2007-10-18 23:40:44 -07002745int cgroup_add_file(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002746 struct cgroup_subsys *subsys,
2747 const struct cftype *cft)
2748{
Paul Menagebd89aab2007-10-18 23:40:44 -07002749 struct dentry *dir = cgrp->dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002750 struct dentry *dentry;
2751 int error;
Li Zefan099fca32009-04-02 16:57:29 -07002752 mode_t mode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002753
2754 char name[MAX_CGROUP_TYPE_NAMELEN + MAX_CFTYPE_NAME + 2] = { 0 };
Paul Menagebd89aab2007-10-18 23:40:44 -07002755 if (subsys && !test_bit(ROOT_NOPREFIX, &cgrp->root->flags)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002756 strcpy(name, subsys->name);
2757 strcat(name, ".");
2758 }
2759 strcat(name, cft->name);
2760 BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex));
2761 dentry = lookup_one_len(name, dir, strlen(name));
2762 if (!IS_ERR(dentry)) {
Li Zefan099fca32009-04-02 16:57:29 -07002763 mode = cgroup_file_mode(cft);
2764 error = cgroup_create_file(dentry, mode | S_IFREG,
Paul Menagebd89aab2007-10-18 23:40:44 -07002765 cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002766 if (!error)
2767 dentry->d_fsdata = (void *)cft;
2768 dput(dentry);
2769 } else
2770 error = PTR_ERR(dentry);
2771 return error;
2772}
Ben Blume6a11052010-03-10 15:22:09 -08002773EXPORT_SYMBOL_GPL(cgroup_add_file);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002774
Paul Menagebd89aab2007-10-18 23:40:44 -07002775int cgroup_add_files(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002776 struct cgroup_subsys *subsys,
2777 const struct cftype cft[],
2778 int count)
2779{
2780 int i, err;
2781 for (i = 0; i < count; i++) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002782 err = cgroup_add_file(cgrp, subsys, &cft[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002783 if (err)
2784 return err;
2785 }
2786 return 0;
2787}
Ben Blume6a11052010-03-10 15:22:09 -08002788EXPORT_SYMBOL_GPL(cgroup_add_files);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002789
Li Zefana043e3b2008-02-23 15:24:09 -08002790/**
2791 * cgroup_task_count - count the number of tasks in a cgroup.
2792 * @cgrp: the cgroup in question
2793 *
2794 * Return the number of tasks in the cgroup.
2795 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002796int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002797{
2798 int count = 0;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07002799 struct cg_cgroup_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002800
Paul Menage817929e2007-10-18 23:39:36 -07002801 read_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07002802 list_for_each_entry(link, &cgrp->css_sets, cgrp_link_list) {
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07002803 count += atomic_read(&link->cg->refcount);
Paul Menage817929e2007-10-18 23:39:36 -07002804 }
2805 read_unlock(&css_set_lock);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002806 return count;
2807}
2808
2809/*
Paul Menage817929e2007-10-18 23:39:36 -07002810 * Advance a list_head iterator. The iterator should be positioned at
2811 * the start of a css_set
2812 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002813static void cgroup_advance_iter(struct cgroup *cgrp,
Paul Menage7717f7b2009-09-23 15:56:22 -07002814 struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002815{
2816 struct list_head *l = it->cg_link;
2817 struct cg_cgroup_link *link;
2818 struct css_set *cg;
2819
2820 /* Advance to the next non-empty css_set */
2821 do {
2822 l = l->next;
Paul Menagebd89aab2007-10-18 23:40:44 -07002823 if (l == &cgrp->css_sets) {
Paul Menage817929e2007-10-18 23:39:36 -07002824 it->cg_link = NULL;
2825 return;
2826 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002827 link = list_entry(l, struct cg_cgroup_link, cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07002828 cg = link->cg;
2829 } while (list_empty(&cg->tasks));
2830 it->cg_link = l;
2831 it->task = cg->tasks.next;
2832}
2833
Cliff Wickman31a7df02008-02-07 00:14:42 -08002834/*
2835 * To reduce the fork() overhead for systems that are not actually
2836 * using their cgroups capability, we don't maintain the lists running
2837 * through each css_set to its tasks until we see the list actually
2838 * used - in other words after the first call to cgroup_iter_start().
2839 *
2840 * The tasklist_lock is not held here, as do_each_thread() and
2841 * while_each_thread() are protected by RCU.
2842 */
Adrian Bunk3df91fe2008-04-29 00:59:54 -07002843static void cgroup_enable_task_cg_lists(void)
Cliff Wickman31a7df02008-02-07 00:14:42 -08002844{
2845 struct task_struct *p, *g;
2846 write_lock(&css_set_lock);
2847 use_task_css_set_links = 1;
2848 do_each_thread(g, p) {
2849 task_lock(p);
Li Zefan0e043882008-04-17 11:37:15 +08002850 /*
2851 * We should check if the process is exiting, otherwise
2852 * it will race with cgroup_exit() in that the list
2853 * entry won't be deleted though the process has exited.
2854 */
2855 if (!(p->flags & PF_EXITING) && list_empty(&p->cg_list))
Cliff Wickman31a7df02008-02-07 00:14:42 -08002856 list_add(&p->cg_list, &p->cgroups->tasks);
2857 task_unlock(p);
2858 } while_each_thread(g, p);
2859 write_unlock(&css_set_lock);
2860}
2861
Paul Menagebd89aab2007-10-18 23:40:44 -07002862void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002863{
2864 /*
2865 * The first time anyone tries to iterate across a cgroup,
2866 * we need to enable the list linking each css_set to its
2867 * tasks, and fix up all existing tasks.
2868 */
Cliff Wickman31a7df02008-02-07 00:14:42 -08002869 if (!use_task_css_set_links)
2870 cgroup_enable_task_cg_lists();
2871
Paul Menage817929e2007-10-18 23:39:36 -07002872 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07002873 it->cg_link = &cgrp->css_sets;
2874 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07002875}
2876
Paul Menagebd89aab2007-10-18 23:40:44 -07002877struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -07002878 struct cgroup_iter *it)
2879{
2880 struct task_struct *res;
2881 struct list_head *l = it->task;
Lai Jiangshan2019f632009-01-07 18:07:36 -08002882 struct cg_cgroup_link *link;
Paul Menage817929e2007-10-18 23:39:36 -07002883
2884 /* If the iterator cg is NULL, we have no tasks */
2885 if (!it->cg_link)
2886 return NULL;
2887 res = list_entry(l, struct task_struct, cg_list);
2888 /* Advance iterator to find next entry */
2889 l = l->next;
Lai Jiangshan2019f632009-01-07 18:07:36 -08002890 link = list_entry(it->cg_link, struct cg_cgroup_link, cgrp_link_list);
2891 if (l == &link->cg->tasks) {
Paul Menage817929e2007-10-18 23:39:36 -07002892 /* We reached the end of this task list - move on to
2893 * the next cg_cgroup_link */
Paul Menagebd89aab2007-10-18 23:40:44 -07002894 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07002895 } else {
2896 it->task = l;
2897 }
2898 return res;
2899}
2900
Paul Menagebd89aab2007-10-18 23:40:44 -07002901void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002902{
2903 read_unlock(&css_set_lock);
2904}
2905
Cliff Wickman31a7df02008-02-07 00:14:42 -08002906static inline int started_after_time(struct task_struct *t1,
2907 struct timespec *time,
2908 struct task_struct *t2)
2909{
2910 int start_diff = timespec_compare(&t1->start_time, time);
2911 if (start_diff > 0) {
2912 return 1;
2913 } else if (start_diff < 0) {
2914 return 0;
2915 } else {
2916 /*
2917 * Arbitrarily, if two processes started at the same
2918 * time, we'll say that the lower pointer value
2919 * started first. Note that t2 may have exited by now
2920 * so this may not be a valid pointer any longer, but
2921 * that's fine - it still serves to distinguish
2922 * between two tasks started (effectively) simultaneously.
2923 */
2924 return t1 > t2;
2925 }
2926}
2927
2928/*
2929 * This function is a callback from heap_insert() and is used to order
2930 * the heap.
2931 * In this case we order the heap in descending task start time.
2932 */
2933static inline int started_after(void *p1, void *p2)
2934{
2935 struct task_struct *t1 = p1;
2936 struct task_struct *t2 = p2;
2937 return started_after_time(t1, &t2->start_time, t2);
2938}
2939
2940/**
2941 * cgroup_scan_tasks - iterate though all the tasks in a cgroup
2942 * @scan: struct cgroup_scanner containing arguments for the scan
2943 *
2944 * Arguments include pointers to callback functions test_task() and
2945 * process_task().
2946 * Iterate through all the tasks in a cgroup, calling test_task() for each,
2947 * and if it returns true, call process_task() for it also.
2948 * The test_task pointer may be NULL, meaning always true (select all tasks).
2949 * Effectively duplicates cgroup_iter_{start,next,end}()
2950 * but does not lock css_set_lock for the call to process_task().
2951 * The struct cgroup_scanner may be embedded in any structure of the caller's
2952 * creation.
2953 * It is guaranteed that process_task() will act on every task that
2954 * is a member of the cgroup for the duration of this call. This
2955 * function may or may not call process_task() for tasks that exit
2956 * or move to a different cgroup during the call, or are forked or
2957 * move into the cgroup during the call.
2958 *
2959 * Note that test_task() may be called with locks held, and may in some
2960 * situations be called multiple times for the same task, so it should
2961 * be cheap.
2962 * If the heap pointer in the struct cgroup_scanner is non-NULL, a heap has been
2963 * pre-allocated and will be used for heap operations (and its "gt" member will
2964 * be overwritten), else a temporary heap will be used (allocation of which
2965 * may cause this function to fail).
2966 */
2967int cgroup_scan_tasks(struct cgroup_scanner *scan)
2968{
2969 int retval, i;
2970 struct cgroup_iter it;
2971 struct task_struct *p, *dropped;
2972 /* Never dereference latest_task, since it's not refcounted */
2973 struct task_struct *latest_task = NULL;
2974 struct ptr_heap tmp_heap;
2975 struct ptr_heap *heap;
2976 struct timespec latest_time = { 0, 0 };
2977
2978 if (scan->heap) {
2979 /* The caller supplied our heap and pre-allocated its memory */
2980 heap = scan->heap;
2981 heap->gt = &started_after;
2982 } else {
2983 /* We need to allocate our own heap memory */
2984 heap = &tmp_heap;
2985 retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after);
2986 if (retval)
2987 /* cannot allocate the heap */
2988 return retval;
2989 }
2990
2991 again:
2992 /*
2993 * Scan tasks in the cgroup, using the scanner's "test_task" callback
2994 * to determine which are of interest, and using the scanner's
2995 * "process_task" callback to process any of them that need an update.
2996 * Since we don't want to hold any locks during the task updates,
2997 * gather tasks to be processed in a heap structure.
2998 * The heap is sorted by descending task start time.
2999 * If the statically-sized heap fills up, we overflow tasks that
3000 * started later, and in future iterations only consider tasks that
3001 * started after the latest task in the previous pass. This
3002 * guarantees forward progress and that we don't miss any tasks.
3003 */
3004 heap->size = 0;
3005 cgroup_iter_start(scan->cg, &it);
3006 while ((p = cgroup_iter_next(scan->cg, &it))) {
3007 /*
3008 * Only affect tasks that qualify per the caller's callback,
3009 * if he provided one
3010 */
3011 if (scan->test_task && !scan->test_task(p, scan))
3012 continue;
3013 /*
3014 * Only process tasks that started after the last task
3015 * we processed
3016 */
3017 if (!started_after_time(p, &latest_time, latest_task))
3018 continue;
3019 dropped = heap_insert(heap, p);
3020 if (dropped == NULL) {
3021 /*
3022 * The new task was inserted; the heap wasn't
3023 * previously full
3024 */
3025 get_task_struct(p);
3026 } else if (dropped != p) {
3027 /*
3028 * The new task was inserted, and pushed out a
3029 * different task
3030 */
3031 get_task_struct(p);
3032 put_task_struct(dropped);
3033 }
3034 /*
3035 * Else the new task was newer than anything already in
3036 * the heap and wasn't inserted
3037 */
3038 }
3039 cgroup_iter_end(scan->cg, &it);
3040
3041 if (heap->size) {
3042 for (i = 0; i < heap->size; i++) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07003043 struct task_struct *q = heap->ptrs[i];
Cliff Wickman31a7df02008-02-07 00:14:42 -08003044 if (i == 0) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07003045 latest_time = q->start_time;
3046 latest_task = q;
Cliff Wickman31a7df02008-02-07 00:14:42 -08003047 }
3048 /* Process the task per the caller's callback */
Paul Jackson4fe91d52008-04-29 00:59:55 -07003049 scan->process_task(q, scan);
3050 put_task_struct(q);
Cliff Wickman31a7df02008-02-07 00:14:42 -08003051 }
3052 /*
3053 * If we had to process any tasks at all, scan again
3054 * in case some of them were in the middle of forking
3055 * children that didn't get processed.
3056 * Not the most efficient way to do it, but it avoids
3057 * having to take callback_mutex in the fork path
3058 */
3059 goto again;
3060 }
3061 if (heap == &tmp_heap)
3062 heap_free(&tmp_heap);
3063 return 0;
3064}
3065
Paul Menage817929e2007-10-18 23:39:36 -07003066/*
Ben Blum102a7752009-09-23 15:56:26 -07003067 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003068 *
3069 * Reading this file can return large amounts of data if a cgroup has
3070 * *lots* of attached tasks. So it may need several calls to read(),
3071 * but we cannot guarantee that the information we produce is correct
3072 * unless we produce it entirely atomically.
3073 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07003074 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003075
3076/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07003077 * The following two functions "fix" the issue where there are more pids
3078 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
3079 * TODO: replace with a kernel-wide solution to this problem
3080 */
3081#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
3082static void *pidlist_allocate(int count)
3083{
3084 if (PIDLIST_TOO_LARGE(count))
3085 return vmalloc(count * sizeof(pid_t));
3086 else
3087 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
3088}
3089static void pidlist_free(void *p)
3090{
3091 if (is_vmalloc_addr(p))
3092 vfree(p);
3093 else
3094 kfree(p);
3095}
3096static void *pidlist_resize(void *p, int newcount)
3097{
3098 void *newlist;
3099 /* note: if new alloc fails, old p will still be valid either way */
3100 if (is_vmalloc_addr(p)) {
3101 newlist = vmalloc(newcount * sizeof(pid_t));
3102 if (!newlist)
3103 return NULL;
3104 memcpy(newlist, p, newcount * sizeof(pid_t));
3105 vfree(p);
3106 } else {
3107 newlist = krealloc(p, newcount * sizeof(pid_t), GFP_KERNEL);
3108 }
3109 return newlist;
3110}
3111
3112/*
Ben Blum102a7752009-09-23 15:56:26 -07003113 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
3114 * If the new stripped list is sufficiently smaller and there's enough memory
3115 * to allocate a new buffer, will let go of the unneeded memory. Returns the
3116 * number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003117 */
Ben Blum102a7752009-09-23 15:56:26 -07003118/* is the size difference enough that we should re-allocate the array? */
3119#define PIDLIST_REALLOC_DIFFERENCE(old, new) ((old) - PAGE_SIZE >= (new))
3120static int pidlist_uniq(pid_t **p, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003121{
Ben Blum102a7752009-09-23 15:56:26 -07003122 int src, dest = 1;
3123 pid_t *list = *p;
3124 pid_t *newlist;
3125
3126 /*
3127 * we presume the 0th element is unique, so i starts at 1. trivial
3128 * edge cases first; no work needs to be done for either
3129 */
3130 if (length == 0 || length == 1)
3131 return length;
3132 /* src and dest walk down the list; dest counts unique elements */
3133 for (src = 1; src < length; src++) {
3134 /* find next unique element */
3135 while (list[src] == list[src-1]) {
3136 src++;
3137 if (src == length)
3138 goto after;
3139 }
3140 /* dest always points to where the next unique element goes */
3141 list[dest] = list[src];
3142 dest++;
3143 }
3144after:
3145 /*
3146 * if the length difference is large enough, we want to allocate a
3147 * smaller buffer to save memory. if this fails due to out of memory,
3148 * we'll just stay with what we've got.
3149 */
3150 if (PIDLIST_REALLOC_DIFFERENCE(length, dest)) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07003151 newlist = pidlist_resize(list, dest);
Ben Blum102a7752009-09-23 15:56:26 -07003152 if (newlist)
3153 *p = newlist;
3154 }
3155 return dest;
3156}
3157
3158static int cmppid(const void *a, const void *b)
3159{
3160 return *(pid_t *)a - *(pid_t *)b;
3161}
3162
3163/*
Ben Blum72a8cb32009-09-23 15:56:27 -07003164 * find the appropriate pidlist for our purpose (given procs vs tasks)
3165 * returns with the lock on that pidlist already held, and takes care
3166 * of the use count, or returns NULL with no locks held if we're out of
3167 * memory.
3168 */
3169static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
3170 enum cgroup_filetype type)
3171{
3172 struct cgroup_pidlist *l;
3173 /* don't need task_nsproxy() if we're looking at ourself */
Li Zefanb70cc5f2010-03-10 15:22:12 -08003174 struct pid_namespace *ns = current->nsproxy->pid_ns;
3175
Ben Blum72a8cb32009-09-23 15:56:27 -07003176 /*
3177 * We can't drop the pidlist_mutex before taking the l->mutex in case
3178 * the last ref-holder is trying to remove l from the list at the same
3179 * time. Holding the pidlist_mutex precludes somebody taking whichever
3180 * list we find out from under us - compare release_pid_array().
3181 */
3182 mutex_lock(&cgrp->pidlist_mutex);
3183 list_for_each_entry(l, &cgrp->pidlists, links) {
3184 if (l->key.type == type && l->key.ns == ns) {
Ben Blum72a8cb32009-09-23 15:56:27 -07003185 /* make sure l doesn't vanish out from under us */
3186 down_write(&l->mutex);
3187 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003188 return l;
3189 }
3190 }
3191 /* entry not found; create a new one */
3192 l = kmalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
3193 if (!l) {
3194 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003195 return l;
3196 }
3197 init_rwsem(&l->mutex);
3198 down_write(&l->mutex);
3199 l->key.type = type;
Li Zefanb70cc5f2010-03-10 15:22:12 -08003200 l->key.ns = get_pid_ns(ns);
Ben Blum72a8cb32009-09-23 15:56:27 -07003201 l->use_count = 0; /* don't increment here */
3202 l->list = NULL;
3203 l->owner = cgrp;
3204 list_add(&l->links, &cgrp->pidlists);
3205 mutex_unlock(&cgrp->pidlist_mutex);
3206 return l;
3207}
3208
3209/*
Ben Blum102a7752009-09-23 15:56:26 -07003210 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
3211 */
Ben Blum72a8cb32009-09-23 15:56:27 -07003212static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
3213 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07003214{
3215 pid_t *array;
3216 int length;
3217 int pid, n = 0; /* used for populating the array */
Paul Menage817929e2007-10-18 23:39:36 -07003218 struct cgroup_iter it;
3219 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07003220 struct cgroup_pidlist *l;
3221
3222 /*
3223 * If cgroup gets more users after we read count, we won't have
3224 * enough space - tough. This race is indistinguishable to the
3225 * caller from the case that the additional cgroup users didn't
3226 * show up until sometime later on.
3227 */
3228 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003229 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07003230 if (!array)
3231 return -ENOMEM;
3232 /* now, populate the array */
Paul Menagebd89aab2007-10-18 23:40:44 -07003233 cgroup_iter_start(cgrp, &it);
3234 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Ben Blum102a7752009-09-23 15:56:26 -07003235 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07003236 break;
Ben Blum102a7752009-09-23 15:56:26 -07003237 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07003238 if (type == CGROUP_FILE_PROCS)
3239 pid = task_tgid_vnr(tsk);
3240 else
3241 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07003242 if (pid > 0) /* make sure to only use valid results */
3243 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07003244 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003245 cgroup_iter_end(cgrp, &it);
Ben Blum102a7752009-09-23 15:56:26 -07003246 length = n;
3247 /* now sort & (if procs) strip out duplicates */
3248 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07003249 if (type == CGROUP_FILE_PROCS)
Ben Blum102a7752009-09-23 15:56:26 -07003250 length = pidlist_uniq(&array, length);
Ben Blum72a8cb32009-09-23 15:56:27 -07003251 l = cgroup_pidlist_find(cgrp, type);
3252 if (!l) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07003253 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07003254 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07003255 }
Ben Blum72a8cb32009-09-23 15:56:27 -07003256 /* store array, freeing old if necessary - lock already held */
Ben Blumd1d9fd32009-09-23 15:56:28 -07003257 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07003258 l->list = array;
3259 l->length = length;
3260 l->use_count++;
3261 up_write(&l->mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003262 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07003263 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003264}
3265
Balbir Singh846c7bb2007-10-18 23:39:44 -07003266/**
Li Zefana043e3b2008-02-23 15:24:09 -08003267 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07003268 * @stats: cgroupstats to fill information into
3269 * @dentry: A dentry entry belonging to the cgroup for which stats have
3270 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08003271 *
3272 * Build and fill cgroupstats so that taskstats can export it to user
3273 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003274 */
3275int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
3276{
3277 int ret = -EINVAL;
Paul Menagebd89aab2007-10-18 23:40:44 -07003278 struct cgroup *cgrp;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003279 struct cgroup_iter it;
3280 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08003281
Balbir Singh846c7bb2007-10-18 23:39:44 -07003282 /*
Li Zefan33d283b2008-11-19 15:36:48 -08003283 * Validate dentry by checking the superblock operations,
3284 * and make sure it's a directory.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003285 */
Li Zefan33d283b2008-11-19 15:36:48 -08003286 if (dentry->d_sb->s_op != &cgroup_ops ||
3287 !S_ISDIR(dentry->d_inode->i_mode))
Balbir Singh846c7bb2007-10-18 23:39:44 -07003288 goto err;
3289
3290 ret = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07003291 cgrp = dentry->d_fsdata;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003292
Paul Menagebd89aab2007-10-18 23:40:44 -07003293 cgroup_iter_start(cgrp, &it);
3294 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07003295 switch (tsk->state) {
3296 case TASK_RUNNING:
3297 stats->nr_running++;
3298 break;
3299 case TASK_INTERRUPTIBLE:
3300 stats->nr_sleeping++;
3301 break;
3302 case TASK_UNINTERRUPTIBLE:
3303 stats->nr_uninterruptible++;
3304 break;
3305 case TASK_STOPPED:
3306 stats->nr_stopped++;
3307 break;
3308 default:
3309 if (delayacct_is_task_waiting_on_io(tsk))
3310 stats->nr_io_wait++;
3311 break;
3312 }
3313 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003314 cgroup_iter_end(cgrp, &it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07003315
Balbir Singh846c7bb2007-10-18 23:39:44 -07003316err:
3317 return ret;
3318}
3319
Paul Menage8f3ff202009-09-23 15:56:25 -07003320
Paul Menagecc31edc2008-10-18 20:28:04 -07003321/*
Ben Blum102a7752009-09-23 15:56:26 -07003322 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07003323 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07003324 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07003325 */
3326
Ben Blum102a7752009-09-23 15:56:26 -07003327static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003328{
3329 /*
3330 * Initially we receive a position value that corresponds to
3331 * one more than the last pid shown (or 0 on the first call or
3332 * after a seek to the start). Use a binary-search to find the
3333 * next pid to display, if any
3334 */
Ben Blum102a7752009-09-23 15:56:26 -07003335 struct cgroup_pidlist *l = s->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07003336 int index = 0, pid = *pos;
3337 int *iter;
3338
Ben Blum102a7752009-09-23 15:56:26 -07003339 down_read(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003340 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07003341 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11003342
Paul Menagecc31edc2008-10-18 20:28:04 -07003343 while (index < end) {
3344 int mid = (index + end) / 2;
Ben Blum102a7752009-09-23 15:56:26 -07003345 if (l->list[mid] == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07003346 index = mid;
3347 break;
Ben Blum102a7752009-09-23 15:56:26 -07003348 } else if (l->list[mid] <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07003349 index = mid + 1;
3350 else
3351 end = mid;
3352 }
3353 }
3354 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07003355 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07003356 return NULL;
3357 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07003358 iter = l->list + index;
Paul Menagecc31edc2008-10-18 20:28:04 -07003359 *pos = *iter;
3360 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003361}
3362
Ben Blum102a7752009-09-23 15:56:26 -07003363static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003364{
Ben Blum102a7752009-09-23 15:56:26 -07003365 struct cgroup_pidlist *l = s->private;
3366 up_read(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003367}
3368
Ben Blum102a7752009-09-23 15:56:26 -07003369static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003370{
Ben Blum102a7752009-09-23 15:56:26 -07003371 struct cgroup_pidlist *l = s->private;
3372 pid_t *p = v;
3373 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07003374 /*
3375 * Advance to the next pid in the array. If this goes off the
3376 * end, we're done
3377 */
3378 p++;
3379 if (p >= end) {
3380 return NULL;
3381 } else {
3382 *pos = *p;
3383 return p;
3384 }
3385}
3386
Ben Blum102a7752009-09-23 15:56:26 -07003387static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003388{
3389 return seq_printf(s, "%d\n", *(int *)v);
3390}
3391
Ben Blum102a7752009-09-23 15:56:26 -07003392/*
3393 * seq_operations functions for iterating on pidlists through seq_file -
3394 * independent of whether it's tasks or procs
3395 */
3396static const struct seq_operations cgroup_pidlist_seq_operations = {
3397 .start = cgroup_pidlist_start,
3398 .stop = cgroup_pidlist_stop,
3399 .next = cgroup_pidlist_next,
3400 .show = cgroup_pidlist_show,
Paul Menagecc31edc2008-10-18 20:28:04 -07003401};
3402
Ben Blum102a7752009-09-23 15:56:26 -07003403static void cgroup_release_pid_array(struct cgroup_pidlist *l)
Paul Menagecc31edc2008-10-18 20:28:04 -07003404{
Ben Blum72a8cb32009-09-23 15:56:27 -07003405 /*
3406 * the case where we're the last user of this particular pidlist will
3407 * have us remove it from the cgroup's list, which entails taking the
3408 * mutex. since in pidlist_find the pidlist->lock depends on cgroup->
3409 * pidlist_mutex, we have to take pidlist_mutex first.
3410 */
3411 mutex_lock(&l->owner->pidlist_mutex);
Ben Blum102a7752009-09-23 15:56:26 -07003412 down_write(&l->mutex);
3413 BUG_ON(!l->use_count);
3414 if (!--l->use_count) {
Ben Blum72a8cb32009-09-23 15:56:27 -07003415 /* we're the last user if refcount is 0; remove and free */
3416 list_del(&l->links);
3417 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003418 pidlist_free(l->list);
Ben Blum72a8cb32009-09-23 15:56:27 -07003419 put_pid_ns(l->key.ns);
3420 up_write(&l->mutex);
3421 kfree(l);
3422 return;
Paul Menagecc31edc2008-10-18 20:28:04 -07003423 }
Ben Blum72a8cb32009-09-23 15:56:27 -07003424 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blum102a7752009-09-23 15:56:26 -07003425 up_write(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003426}
3427
Ben Blum102a7752009-09-23 15:56:26 -07003428static int cgroup_pidlist_release(struct inode *inode, struct file *file)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003429{
Ben Blum102a7752009-09-23 15:56:26 -07003430 struct cgroup_pidlist *l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003431 if (!(file->f_mode & FMODE_READ))
3432 return 0;
Ben Blum102a7752009-09-23 15:56:26 -07003433 /*
3434 * the seq_file will only be initialized if the file was opened for
3435 * reading; hence we check if it's not null only in that case.
3436 */
3437 l = ((struct seq_file *)file->private_data)->private;
3438 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07003439 return seq_release(inode, file);
3440}
3441
Ben Blum102a7752009-09-23 15:56:26 -07003442static const struct file_operations cgroup_pidlist_operations = {
Paul Menagecc31edc2008-10-18 20:28:04 -07003443 .read = seq_read,
3444 .llseek = seq_lseek,
3445 .write = cgroup_file_write,
Ben Blum102a7752009-09-23 15:56:26 -07003446 .release = cgroup_pidlist_release,
Paul Menagecc31edc2008-10-18 20:28:04 -07003447};
3448
3449/*
Ben Blum102a7752009-09-23 15:56:26 -07003450 * The following functions handle opens on a file that displays a pidlist
3451 * (tasks or procs). Prepare an array of the process/thread IDs of whoever's
3452 * in the cgroup.
Paul Menagecc31edc2008-10-18 20:28:04 -07003453 */
Ben Blum102a7752009-09-23 15:56:26 -07003454/* helper function for the two below it */
Ben Blum72a8cb32009-09-23 15:56:27 -07003455static int cgroup_pidlist_open(struct file *file, enum cgroup_filetype type)
Paul Menagecc31edc2008-10-18 20:28:04 -07003456{
3457 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Ben Blum72a8cb32009-09-23 15:56:27 -07003458 struct cgroup_pidlist *l;
Paul Menagecc31edc2008-10-18 20:28:04 -07003459 int retval;
3460
3461 /* Nothing to do for write-only files */
3462 if (!(file->f_mode & FMODE_READ))
3463 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003464
Ben Blum102a7752009-09-23 15:56:26 -07003465 /* have the array populated */
Ben Blum72a8cb32009-09-23 15:56:27 -07003466 retval = pidlist_array_load(cgrp, type, &l);
Ben Blum102a7752009-09-23 15:56:26 -07003467 if (retval)
3468 return retval;
3469 /* configure file information */
3470 file->f_op = &cgroup_pidlist_operations;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003471
Ben Blum102a7752009-09-23 15:56:26 -07003472 retval = seq_open(file, &cgroup_pidlist_seq_operations);
Paul Menagecc31edc2008-10-18 20:28:04 -07003473 if (retval) {
Ben Blum102a7752009-09-23 15:56:26 -07003474 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07003475 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003476 }
Ben Blum102a7752009-09-23 15:56:26 -07003477 ((struct seq_file *)file->private_data)->private = l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003478 return 0;
3479}
Ben Blum102a7752009-09-23 15:56:26 -07003480static int cgroup_tasks_open(struct inode *unused, struct file *file)
3481{
Ben Blum72a8cb32009-09-23 15:56:27 -07003482 return cgroup_pidlist_open(file, CGROUP_FILE_TASKS);
Ben Blum102a7752009-09-23 15:56:26 -07003483}
3484static int cgroup_procs_open(struct inode *unused, struct file *file)
3485{
Ben Blum72a8cb32009-09-23 15:56:27 -07003486 return cgroup_pidlist_open(file, CGROUP_FILE_PROCS);
Ben Blum102a7752009-09-23 15:56:26 -07003487}
Paul Menagebbcb81d2007-10-18 23:39:32 -07003488
Paul Menagebd89aab2007-10-18 23:40:44 -07003489static u64 cgroup_read_notify_on_release(struct cgroup *cgrp,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003490 struct cftype *cft)
3491{
Paul Menagebd89aab2007-10-18 23:40:44 -07003492 return notify_on_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003493}
3494
Paul Menage6379c102008-07-25 01:47:01 -07003495static int cgroup_write_notify_on_release(struct cgroup *cgrp,
3496 struct cftype *cft,
3497 u64 val)
3498{
3499 clear_bit(CGRP_RELEASABLE, &cgrp->flags);
3500 if (val)
3501 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3502 else
3503 clear_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3504 return 0;
3505}
3506
Paul Menagebbcb81d2007-10-18 23:39:32 -07003507/*
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003508 * Unregister event and free resources.
3509 *
3510 * Gets called from workqueue.
3511 */
3512static void cgroup_event_remove(struct work_struct *work)
3513{
3514 struct cgroup_event *event = container_of(work, struct cgroup_event,
3515 remove);
3516 struct cgroup *cgrp = event->cgrp;
3517
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003518 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3519
3520 eventfd_ctx_put(event->eventfd);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003521 kfree(event);
Kirill A. Shutemova0a4db52010-03-10 15:22:34 -08003522 dput(cgrp->dentry);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003523}
3524
3525/*
3526 * Gets called on POLLHUP on eventfd when user closes it.
3527 *
3528 * Called with wqh->lock held and interrupts disabled.
3529 */
3530static int cgroup_event_wake(wait_queue_t *wait, unsigned mode,
3531 int sync, void *key)
3532{
3533 struct cgroup_event *event = container_of(wait,
3534 struct cgroup_event, wait);
3535 struct cgroup *cgrp = event->cgrp;
3536 unsigned long flags = (unsigned long)key;
3537
3538 if (flags & POLLHUP) {
Changli Gaoa93d2f12010-05-07 14:33:26 +08003539 __remove_wait_queue(event->wqh, &event->wait);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003540 spin_lock(&cgrp->event_list_lock);
3541 list_del(&event->list);
3542 spin_unlock(&cgrp->event_list_lock);
3543 /*
3544 * We are in atomic context, but cgroup_event_remove() may
3545 * sleep, so we have to call it in workqueue.
3546 */
3547 schedule_work(&event->remove);
3548 }
3549
3550 return 0;
3551}
3552
3553static void cgroup_event_ptable_queue_proc(struct file *file,
3554 wait_queue_head_t *wqh, poll_table *pt)
3555{
3556 struct cgroup_event *event = container_of(pt,
3557 struct cgroup_event, pt);
3558
3559 event->wqh = wqh;
3560 add_wait_queue(wqh, &event->wait);
3561}
3562
3563/*
3564 * Parse input and register new cgroup event handler.
3565 *
3566 * Input must be in format '<event_fd> <control_fd> <args>'.
3567 * Interpretation of args is defined by control file implementation.
3568 */
3569static int cgroup_write_event_control(struct cgroup *cgrp, struct cftype *cft,
3570 const char *buffer)
3571{
3572 struct cgroup_event *event = NULL;
3573 unsigned int efd, cfd;
3574 struct file *efile = NULL;
3575 struct file *cfile = NULL;
3576 char *endp;
3577 int ret;
3578
3579 efd = simple_strtoul(buffer, &endp, 10);
3580 if (*endp != ' ')
3581 return -EINVAL;
3582 buffer = endp + 1;
3583
3584 cfd = simple_strtoul(buffer, &endp, 10);
3585 if ((*endp != ' ') && (*endp != '\0'))
3586 return -EINVAL;
3587 buffer = endp + 1;
3588
3589 event = kzalloc(sizeof(*event), GFP_KERNEL);
3590 if (!event)
3591 return -ENOMEM;
3592 event->cgrp = cgrp;
3593 INIT_LIST_HEAD(&event->list);
3594 init_poll_funcptr(&event->pt, cgroup_event_ptable_queue_proc);
3595 init_waitqueue_func_entry(&event->wait, cgroup_event_wake);
3596 INIT_WORK(&event->remove, cgroup_event_remove);
3597
3598 efile = eventfd_fget(efd);
3599 if (IS_ERR(efile)) {
3600 ret = PTR_ERR(efile);
3601 goto fail;
3602 }
3603
3604 event->eventfd = eventfd_ctx_fileget(efile);
3605 if (IS_ERR(event->eventfd)) {
3606 ret = PTR_ERR(event->eventfd);
3607 goto fail;
3608 }
3609
3610 cfile = fget(cfd);
3611 if (!cfile) {
3612 ret = -EBADF;
3613 goto fail;
3614 }
3615
3616 /* the process need read permission on control file */
Al Viro3bfa7842011-06-19 12:55:10 -04003617 /* AV: shouldn't we check that it's been opened for read instead? */
3618 ret = inode_permission(cfile->f_path.dentry->d_inode, MAY_READ);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003619 if (ret < 0)
3620 goto fail;
3621
3622 event->cft = __file_cft(cfile);
3623 if (IS_ERR(event->cft)) {
3624 ret = PTR_ERR(event->cft);
3625 goto fail;
3626 }
3627
3628 if (!event->cft->register_event || !event->cft->unregister_event) {
3629 ret = -EINVAL;
3630 goto fail;
3631 }
3632
3633 ret = event->cft->register_event(cgrp, event->cft,
3634 event->eventfd, buffer);
3635 if (ret)
3636 goto fail;
3637
3638 if (efile->f_op->poll(efile, &event->pt) & POLLHUP) {
3639 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3640 ret = 0;
3641 goto fail;
3642 }
3643
Kirill A. Shutemova0a4db52010-03-10 15:22:34 -08003644 /*
3645 * Events should be removed after rmdir of cgroup directory, but before
3646 * destroying subsystem state objects. Let's take reference to cgroup
3647 * directory dentry to do that.
3648 */
3649 dget(cgrp->dentry);
3650
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003651 spin_lock(&cgrp->event_list_lock);
3652 list_add(&event->list, &cgrp->event_list);
3653 spin_unlock(&cgrp->event_list_lock);
3654
3655 fput(cfile);
3656 fput(efile);
3657
3658 return 0;
3659
3660fail:
3661 if (cfile)
3662 fput(cfile);
3663
3664 if (event && event->eventfd && !IS_ERR(event->eventfd))
3665 eventfd_ctx_put(event->eventfd);
3666
3667 if (!IS_ERR_OR_NULL(efile))
3668 fput(efile);
3669
3670 kfree(event);
3671
3672 return ret;
3673}
3674
Daniel Lezcano97978e62010-10-27 15:33:35 -07003675static u64 cgroup_clone_children_read(struct cgroup *cgrp,
3676 struct cftype *cft)
3677{
3678 return clone_children(cgrp);
3679}
3680
3681static int cgroup_clone_children_write(struct cgroup *cgrp,
3682 struct cftype *cft,
3683 u64 val)
3684{
3685 if (val)
3686 set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3687 else
3688 clear_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3689 return 0;
3690}
3691
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003692/*
Paul Menagebbcb81d2007-10-18 23:39:32 -07003693 * for the common functions, 'private' gives the type of file
3694 */
Ben Blum102a7752009-09-23 15:56:26 -07003695/* for hysterical raisins, we can't put this on the older files */
3696#define CGROUP_FILE_GENERIC_PREFIX "cgroup."
Paul Menage81a6a5c2007-10-18 23:39:38 -07003697static struct cftype files[] = {
3698 {
3699 .name = "tasks",
3700 .open = cgroup_tasks_open,
Paul Menageaf351022008-07-25 01:47:01 -07003701 .write_u64 = cgroup_tasks_write,
Ben Blum102a7752009-09-23 15:56:26 -07003702 .release = cgroup_pidlist_release,
Li Zefan099fca32009-04-02 16:57:29 -07003703 .mode = S_IRUGO | S_IWUSR,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003704 },
Ben Blum102a7752009-09-23 15:56:26 -07003705 {
3706 .name = CGROUP_FILE_GENERIC_PREFIX "procs",
3707 .open = cgroup_procs_open,
Ben Blum74a11662011-05-26 16:25:20 -07003708 .write_u64 = cgroup_procs_write,
Ben Blum102a7752009-09-23 15:56:26 -07003709 .release = cgroup_pidlist_release,
Ben Blum74a11662011-05-26 16:25:20 -07003710 .mode = S_IRUGO | S_IWUSR,
Ben Blum102a7752009-09-23 15:56:26 -07003711 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003712 {
3713 .name = "notify_on_release",
Paul Menagef4c753b2008-04-29 00:59:56 -07003714 .read_u64 = cgroup_read_notify_on_release,
Paul Menage6379c102008-07-25 01:47:01 -07003715 .write_u64 = cgroup_write_notify_on_release,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003716 },
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003717 {
3718 .name = CGROUP_FILE_GENERIC_PREFIX "event_control",
3719 .write_string = cgroup_write_event_control,
3720 .mode = S_IWUGO,
3721 },
Daniel Lezcano97978e62010-10-27 15:33:35 -07003722 {
3723 .name = "cgroup.clone_children",
3724 .read_u64 = cgroup_clone_children_read,
3725 .write_u64 = cgroup_clone_children_write,
3726 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003727};
3728
3729static struct cftype cft_release_agent = {
3730 .name = "release_agent",
Paul Menagee788e062008-07-25 01:46:59 -07003731 .read_seq_string = cgroup_release_agent_show,
3732 .write_string = cgroup_release_agent_write,
3733 .max_write_len = PATH_MAX,
Paul Menagebbcb81d2007-10-18 23:39:32 -07003734};
3735
Paul Menagebd89aab2007-10-18 23:40:44 -07003736static int cgroup_populate_dir(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003737{
3738 int err;
3739 struct cgroup_subsys *ss;
3740
3741 /* First clear out any existing files */
Paul Menagebd89aab2007-10-18 23:40:44 -07003742 cgroup_clear_directory(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003743
Paul Menagebd89aab2007-10-18 23:40:44 -07003744 err = cgroup_add_files(cgrp, NULL, files, ARRAY_SIZE(files));
Paul Menagebbcb81d2007-10-18 23:39:32 -07003745 if (err < 0)
3746 return err;
3747
Paul Menagebd89aab2007-10-18 23:40:44 -07003748 if (cgrp == cgrp->top_cgroup) {
3749 if ((err = cgroup_add_file(cgrp, NULL, &cft_release_agent)) < 0)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003750 return err;
3751 }
3752
Paul Menagebd89aab2007-10-18 23:40:44 -07003753 for_each_subsys(cgrp->root, ss) {
3754 if (ss->populate && (err = ss->populate(ss, cgrp)) < 0)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003755 return err;
3756 }
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003757 /* This cgroup is ready now */
3758 for_each_subsys(cgrp->root, ss) {
3759 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3760 /*
3761 * Update id->css pointer and make this css visible from
3762 * CSS ID functions. This pointer will be dereferened
3763 * from RCU-read-side without locks.
3764 */
3765 if (css->id)
3766 rcu_assign_pointer(css->id->css, css);
3767 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003768
3769 return 0;
3770}
3771
3772static void init_cgroup_css(struct cgroup_subsys_state *css,
3773 struct cgroup_subsys *ss,
Paul Menagebd89aab2007-10-18 23:40:44 -07003774 struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003775{
Paul Menagebd89aab2007-10-18 23:40:44 -07003776 css->cgroup = cgrp;
Paul Menagee7c5ec92009-01-07 18:08:38 -08003777 atomic_set(&css->refcnt, 1);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003778 css->flags = 0;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003779 css->id = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07003780 if (cgrp == dummytop)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003781 set_bit(CSS_ROOT, &css->flags);
Paul Menagebd89aab2007-10-18 23:40:44 -07003782 BUG_ON(cgrp->subsys[ss->subsys_id]);
3783 cgrp->subsys[ss->subsys_id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003784}
3785
Paul Menage999cd8a2009-01-07 18:08:36 -08003786static void cgroup_lock_hierarchy(struct cgroupfs_root *root)
3787{
3788 /* We need to take each hierarchy_mutex in a consistent order */
3789 int i;
3790
Ben Blumaae8aab2010-03-10 15:22:07 -08003791 /*
3792 * No worry about a race with rebind_subsystems that might mess up the
3793 * locking order, since both parties are under cgroup_mutex.
3794 */
Paul Menage999cd8a2009-01-07 18:08:36 -08003795 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3796 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08003797 if (ss == NULL)
3798 continue;
Paul Menage999cd8a2009-01-07 18:08:36 -08003799 if (ss->root == root)
Li Zefancfebe562009-02-11 13:04:36 -08003800 mutex_lock(&ss->hierarchy_mutex);
Paul Menage999cd8a2009-01-07 18:08:36 -08003801 }
3802}
3803
3804static void cgroup_unlock_hierarchy(struct cgroupfs_root *root)
3805{
3806 int i;
3807
3808 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3809 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08003810 if (ss == NULL)
3811 continue;
Paul Menage999cd8a2009-01-07 18:08:36 -08003812 if (ss->root == root)
3813 mutex_unlock(&ss->hierarchy_mutex);
3814 }
3815}
3816
Paul Menageddbcc7e2007-10-18 23:39:30 -07003817/*
Li Zefana043e3b2008-02-23 15:24:09 -08003818 * cgroup_create - create a cgroup
3819 * @parent: cgroup that will be parent of the new cgroup
3820 * @dentry: dentry of the new cgroup
3821 * @mode: mode to set on new inode
Paul Menageddbcc7e2007-10-18 23:39:30 -07003822 *
Li Zefana043e3b2008-02-23 15:24:09 -08003823 * Must be called with the mutex on the parent inode held
Paul Menageddbcc7e2007-10-18 23:39:30 -07003824 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07003825static long cgroup_create(struct cgroup *parent, struct dentry *dentry,
Li Zefan099fca32009-04-02 16:57:29 -07003826 mode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003827{
Paul Menagebd89aab2007-10-18 23:40:44 -07003828 struct cgroup *cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003829 struct cgroupfs_root *root = parent->root;
3830 int err = 0;
3831 struct cgroup_subsys *ss;
3832 struct super_block *sb = root->sb;
3833
Paul Menagebd89aab2007-10-18 23:40:44 -07003834 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
3835 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003836 return -ENOMEM;
3837
3838 /* Grab a reference on the superblock so the hierarchy doesn't
3839 * get deleted on unmount if there are child cgroups. This
3840 * can be done outside cgroup_mutex, since the sb can't
3841 * disappear while someone has an open control file on the
3842 * fs */
3843 atomic_inc(&sb->s_active);
3844
3845 mutex_lock(&cgroup_mutex);
3846
Paul Menagecc31edc2008-10-18 20:28:04 -07003847 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003848
Paul Menagebd89aab2007-10-18 23:40:44 -07003849 cgrp->parent = parent;
3850 cgrp->root = parent->root;
3851 cgrp->top_cgroup = parent->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003852
Li Zefanb6abdb02008-03-04 14:28:19 -08003853 if (notify_on_release(parent))
3854 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3855
Daniel Lezcano97978e62010-10-27 15:33:35 -07003856 if (clone_children(parent))
3857 set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3858
Paul Menageddbcc7e2007-10-18 23:39:30 -07003859 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07003860 struct cgroup_subsys_state *css = ss->create(ss, cgrp);
Li Zefan4528fd02010-02-02 13:44:10 -08003861
Paul Menageddbcc7e2007-10-18 23:39:30 -07003862 if (IS_ERR(css)) {
3863 err = PTR_ERR(css);
3864 goto err_destroy;
3865 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003866 init_cgroup_css(css, ss, cgrp);
Li Zefan4528fd02010-02-02 13:44:10 -08003867 if (ss->use_id) {
3868 err = alloc_css_id(ss, parent, cgrp);
3869 if (err)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003870 goto err_destroy;
Li Zefan4528fd02010-02-02 13:44:10 -08003871 }
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003872 /* At error, ->destroy() callback has to free assigned ID. */
Daniel Lezcano97978e62010-10-27 15:33:35 -07003873 if (clone_children(parent) && ss->post_clone)
3874 ss->post_clone(ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003875 }
3876
Paul Menage999cd8a2009-01-07 18:08:36 -08003877 cgroup_lock_hierarchy(root);
Paul Menagebd89aab2007-10-18 23:40:44 -07003878 list_add(&cgrp->sibling, &cgrp->parent->children);
Paul Menage999cd8a2009-01-07 18:08:36 -08003879 cgroup_unlock_hierarchy(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003880 root->number_of_cgroups++;
3881
Paul Menagebd89aab2007-10-18 23:40:44 -07003882 err = cgroup_create_dir(cgrp, dentry, mode);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003883 if (err < 0)
3884 goto err_remove;
3885
3886 /* The cgroup directory was pre-locked for us */
Paul Menagebd89aab2007-10-18 23:40:44 -07003887 BUG_ON(!mutex_is_locked(&cgrp->dentry->d_inode->i_mutex));
Paul Menageddbcc7e2007-10-18 23:39:30 -07003888
Paul Menagebd89aab2007-10-18 23:40:44 -07003889 err = cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003890 /* If err < 0, we have a half-filled directory - oh well ;) */
3891
3892 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07003893 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003894
3895 return 0;
3896
3897 err_remove:
3898
KAMEZAWA Hiroyukibaef99a2009-01-29 14:25:10 -08003899 cgroup_lock_hierarchy(root);
Paul Menagebd89aab2007-10-18 23:40:44 -07003900 list_del(&cgrp->sibling);
KAMEZAWA Hiroyukibaef99a2009-01-29 14:25:10 -08003901 cgroup_unlock_hierarchy(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003902 root->number_of_cgroups--;
3903
3904 err_destroy:
3905
3906 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07003907 if (cgrp->subsys[ss->subsys_id])
3908 ss->destroy(ss, cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003909 }
3910
3911 mutex_unlock(&cgroup_mutex);
3912
3913 /* Release the reference count that we took on the superblock */
3914 deactivate_super(sb);
3915
Paul Menagebd89aab2007-10-18 23:40:44 -07003916 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003917 return err;
3918}
3919
3920static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, int mode)
3921{
3922 struct cgroup *c_parent = dentry->d_parent->d_fsdata;
3923
3924 /* the vfs holds inode->i_mutex already */
3925 return cgroup_create(c_parent, dentry, mode | S_IFDIR);
3926}
3927
Li Zefan55b6fd02008-07-29 22:33:20 -07003928static int cgroup_has_css_refs(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003929{
3930 /* Check the reference count on each subsystem. Since we
3931 * already established that there are no tasks in the
Paul Menagee7c5ec92009-01-07 18:08:38 -08003932 * cgroup, if the css refcount is also 1, then there should
Paul Menage81a6a5c2007-10-18 23:39:38 -07003933 * be no outstanding references, so the subsystem is safe to
3934 * destroy. We scan across all subsystems rather than using
3935 * the per-hierarchy linked list of mounted subsystems since
3936 * we can be called via check_for_release() with no
3937 * synchronization other than RCU, and the subsystem linked
3938 * list isn't RCU-safe */
3939 int i;
Ben Blumaae8aab2010-03-10 15:22:07 -08003940 /*
3941 * We won't need to lock the subsys array, because the subsystems
3942 * we're concerned about aren't going anywhere since our cgroup root
3943 * has a reference on them.
3944 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07003945 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3946 struct cgroup_subsys *ss = subsys[i];
3947 struct cgroup_subsys_state *css;
Ben Blumaae8aab2010-03-10 15:22:07 -08003948 /* Skip subsystems not present or not in this hierarchy */
3949 if (ss == NULL || ss->root != cgrp->root)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003950 continue;
Paul Menagebd89aab2007-10-18 23:40:44 -07003951 css = cgrp->subsys[ss->subsys_id];
Paul Menage81a6a5c2007-10-18 23:39:38 -07003952 /* When called from check_for_release() it's possible
3953 * that by this point the cgroup has been removed
3954 * and the css deleted. But a false-positive doesn't
3955 * matter, since it can only happen if the cgroup
3956 * has been deleted and hence no longer needs the
3957 * release agent to be called anyway. */
Paul Menagee7c5ec92009-01-07 18:08:38 -08003958 if (css && (atomic_read(&css->refcnt) > 1))
Paul Menage81a6a5c2007-10-18 23:39:38 -07003959 return 1;
Paul Menage81a6a5c2007-10-18 23:39:38 -07003960 }
3961 return 0;
3962}
3963
Paul Menagee7c5ec92009-01-07 18:08:38 -08003964/*
3965 * Atomically mark all (or else none) of the cgroup's CSS objects as
3966 * CSS_REMOVED. Return true on success, or false if the cgroup has
3967 * busy subsystems. Call with cgroup_mutex held
3968 */
3969
3970static int cgroup_clear_css_refs(struct cgroup *cgrp)
3971{
3972 struct cgroup_subsys *ss;
3973 unsigned long flags;
3974 bool failed = false;
3975 local_irq_save(flags);
3976 for_each_subsys(cgrp->root, ss) {
3977 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3978 int refcnt;
Paul Menage804b3c22009-01-29 14:25:21 -08003979 while (1) {
Paul Menagee7c5ec92009-01-07 18:08:38 -08003980 /* We can only remove a CSS with a refcnt==1 */
3981 refcnt = atomic_read(&css->refcnt);
3982 if (refcnt > 1) {
3983 failed = true;
3984 goto done;
3985 }
3986 BUG_ON(!refcnt);
3987 /*
3988 * Drop the refcnt to 0 while we check other
3989 * subsystems. This will cause any racing
3990 * css_tryget() to spin until we set the
3991 * CSS_REMOVED bits or abort
3992 */
Paul Menage804b3c22009-01-29 14:25:21 -08003993 if (atomic_cmpxchg(&css->refcnt, refcnt, 0) == refcnt)
3994 break;
3995 cpu_relax();
3996 }
Paul Menagee7c5ec92009-01-07 18:08:38 -08003997 }
3998 done:
3999 for_each_subsys(cgrp->root, ss) {
4000 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
4001 if (failed) {
4002 /*
4003 * Restore old refcnt if we previously managed
4004 * to clear it from 1 to 0
4005 */
4006 if (!atomic_read(&css->refcnt))
4007 atomic_set(&css->refcnt, 1);
4008 } else {
4009 /* Commit the fact that the CSS is removed */
4010 set_bit(CSS_REMOVED, &css->flags);
4011 }
4012 }
4013 local_irq_restore(flags);
4014 return !failed;
4015}
4016
Paul Menageddbcc7e2007-10-18 23:39:30 -07004017static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry)
4018{
Paul Menagebd89aab2007-10-18 23:40:44 -07004019 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004020 struct dentry *d;
4021 struct cgroup *parent;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004022 DEFINE_WAIT(wait);
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08004023 struct cgroup_event *event, *tmp;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004024 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004025
4026 /* the vfs holds both inode->i_mutex already */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004027again:
Paul Menageddbcc7e2007-10-18 23:39:30 -07004028 mutex_lock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07004029 if (atomic_read(&cgrp->count) != 0) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004030 mutex_unlock(&cgroup_mutex);
4031 return -EBUSY;
4032 }
Paul Menagebd89aab2007-10-18 23:40:44 -07004033 if (!list_empty(&cgrp->children)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004034 mutex_unlock(&cgroup_mutex);
4035 return -EBUSY;
4036 }
KAMEZAWA Hiroyuki3fa59df2008-11-19 15:36:34 -08004037 mutex_unlock(&cgroup_mutex);
Li Zefana043e3b2008-02-23 15:24:09 -08004038
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08004039 /*
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004040 * In general, subsystem has no css->refcnt after pre_destroy(). But
4041 * in racy cases, subsystem may have to get css->refcnt after
4042 * pre_destroy() and it makes rmdir return with -EBUSY. This sometimes
4043 * make rmdir return -EBUSY too often. To avoid that, we use waitqueue
4044 * for cgroup's rmdir. CGRP_WAIT_ON_RMDIR is for synchronizing rmdir
4045 * and subsystem's reference count handling. Please see css_get/put
4046 * and css_tryget() and cgroup_wakeup_rmdir_waiter() implementation.
4047 */
4048 set_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
4049
4050 /*
Li Zefana043e3b2008-02-23 15:24:09 -08004051 * Call pre_destroy handlers of subsys. Notify subsystems
4052 * that rmdir() request comes.
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08004053 */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004054 ret = cgroup_call_pre_destroy(cgrp);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004055 if (ret) {
4056 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004057 return ret;
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004058 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004059
KAMEZAWA Hiroyuki3fa59df2008-11-19 15:36:34 -08004060 mutex_lock(&cgroup_mutex);
4061 parent = cgrp->parent;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004062 if (atomic_read(&cgrp->count) || !list_empty(&cgrp->children)) {
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004063 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004064 mutex_unlock(&cgroup_mutex);
4065 return -EBUSY;
4066 }
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004067 prepare_to_wait(&cgroup_rmdir_waitq, &wait, TASK_INTERRUPTIBLE);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004068 if (!cgroup_clear_css_refs(cgrp)) {
4069 mutex_unlock(&cgroup_mutex);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004070 /*
4071 * Because someone may call cgroup_wakeup_rmdir_waiter() before
4072 * prepare_to_wait(), we need to check this flag.
4073 */
4074 if (test_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags))
4075 schedule();
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004076 finish_wait(&cgroup_rmdir_waitq, &wait);
4077 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
4078 if (signal_pending(current))
4079 return -EINTR;
4080 goto again;
4081 }
4082 /* NO css_tryget() can success after here. */
4083 finish_wait(&cgroup_rmdir_waitq, &wait);
4084 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004085
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004086 raw_spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07004087 set_bit(CGRP_REMOVED, &cgrp->flags);
4088 if (!list_empty(&cgrp->release_list))
Phil Carmody8d258792011-03-22 16:30:13 -07004089 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004090 raw_spin_unlock(&release_list_lock);
Paul Menage999cd8a2009-01-07 18:08:36 -08004091
4092 cgroup_lock_hierarchy(cgrp->root);
4093 /* delete this cgroup from parent->children */
Phil Carmody8d258792011-03-22 16:30:13 -07004094 list_del_init(&cgrp->sibling);
Paul Menage999cd8a2009-01-07 18:08:36 -08004095 cgroup_unlock_hierarchy(cgrp->root);
4096
Paul Menagebd89aab2007-10-18 23:40:44 -07004097 d = dget(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004098
4099 cgroup_d_remove_dir(d);
4100 dput(d);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004101
Paul Menagebd89aab2007-10-18 23:40:44 -07004102 set_bit(CGRP_RELEASABLE, &parent->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004103 check_for_release(parent);
4104
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08004105 /*
4106 * Unregister events and notify userspace.
4107 * Notify userspace about cgroup removing only after rmdir of cgroup
4108 * directory to avoid race between userspace and kernelspace
4109 */
4110 spin_lock(&cgrp->event_list_lock);
4111 list_for_each_entry_safe(event, tmp, &cgrp->event_list, list) {
4112 list_del(&event->list);
4113 remove_wait_queue(event->wqh, &event->wait);
4114 eventfd_signal(event->eventfd, 1);
4115 schedule_work(&event->remove);
4116 }
4117 spin_unlock(&cgrp->event_list_lock);
4118
Paul Menageddbcc7e2007-10-18 23:39:30 -07004119 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004120 return 0;
4121}
4122
Li Zefan06a11922008-04-29 01:00:07 -07004123static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004124{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004125 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08004126
4127 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004128
4129 /* Create the top cgroup state for this subsystem */
Li Zefan33a68ac2009-01-07 18:07:42 -08004130 list_add(&ss->sibling, &rootnode.subsys_list);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004131 ss->root = &rootnode;
4132 css = ss->create(ss, dummytop);
4133 /* We don't handle early failures gracefully */
4134 BUG_ON(IS_ERR(css));
4135 init_cgroup_css(css, ss, dummytop);
4136
Li Zefane8d55fd2008-04-29 01:00:13 -07004137 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07004138 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07004139 * newly registered, all tasks and hence the
4140 * init_css_set is in the subsystem's top cgroup. */
4141 init_css_set.subsys[ss->subsys_id] = dummytop->subsys[ss->subsys_id];
Paul Menageddbcc7e2007-10-18 23:39:30 -07004142
4143 need_forkexit_callback |= ss->fork || ss->exit;
4144
Li Zefane8d55fd2008-04-29 01:00:13 -07004145 /* At system boot, before all subsystems have been
4146 * registered, no tasks have been forked, so we don't
4147 * need to invoke fork callbacks here. */
4148 BUG_ON(!list_empty(&init_task.tasks));
4149
Paul Menage999cd8a2009-01-07 18:08:36 -08004150 mutex_init(&ss->hierarchy_mutex);
Li Zefancfebe562009-02-11 13:04:36 -08004151 lockdep_set_class(&ss->hierarchy_mutex, &ss->subsys_key);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004152 ss->active = 1;
Ben Blume6a11052010-03-10 15:22:09 -08004153
4154 /* this function shouldn't be used with modular subsystems, since they
4155 * need to register a subsys_id, among other things */
4156 BUG_ON(ss->module);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004157}
4158
4159/**
Ben Blume6a11052010-03-10 15:22:09 -08004160 * cgroup_load_subsys: load and register a modular subsystem at runtime
4161 * @ss: the subsystem to load
4162 *
4163 * This function should be called in a modular subsystem's initcall. If the
Thomas Weber88393162010-03-16 11:47:56 +01004164 * subsystem is built as a module, it will be assigned a new subsys_id and set
Ben Blume6a11052010-03-10 15:22:09 -08004165 * up for use. If the subsystem is built-in anyway, work is delegated to the
4166 * simpler cgroup_init_subsys.
4167 */
4168int __init_or_module cgroup_load_subsys(struct cgroup_subsys *ss)
4169{
4170 int i;
4171 struct cgroup_subsys_state *css;
4172
4173 /* check name and function validity */
4174 if (ss->name == NULL || strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN ||
4175 ss->create == NULL || ss->destroy == NULL)
4176 return -EINVAL;
4177
4178 /*
4179 * we don't support callbacks in modular subsystems. this check is
4180 * before the ss->module check for consistency; a subsystem that could
4181 * be a module should still have no callbacks even if the user isn't
4182 * compiling it as one.
4183 */
4184 if (ss->fork || ss->exit)
4185 return -EINVAL;
4186
4187 /*
4188 * an optionally modular subsystem is built-in: we want to do nothing,
4189 * since cgroup_init_subsys will have already taken care of it.
4190 */
4191 if (ss->module == NULL) {
4192 /* a few sanity checks */
4193 BUG_ON(ss->subsys_id >= CGROUP_BUILTIN_SUBSYS_COUNT);
4194 BUG_ON(subsys[ss->subsys_id] != ss);
4195 return 0;
4196 }
4197
4198 /*
4199 * need to register a subsys id before anything else - for example,
4200 * init_cgroup_css needs it.
4201 */
4202 mutex_lock(&cgroup_mutex);
4203 /* find the first empty slot in the array */
4204 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
4205 if (subsys[i] == NULL)
4206 break;
4207 }
4208 if (i == CGROUP_SUBSYS_COUNT) {
4209 /* maximum number of subsystems already registered! */
4210 mutex_unlock(&cgroup_mutex);
4211 return -EBUSY;
4212 }
4213 /* assign ourselves the subsys_id */
4214 ss->subsys_id = i;
4215 subsys[i] = ss;
4216
4217 /*
4218 * no ss->create seems to need anything important in the ss struct, so
4219 * this can happen first (i.e. before the rootnode attachment).
4220 */
4221 css = ss->create(ss, dummytop);
4222 if (IS_ERR(css)) {
4223 /* failure case - need to deassign the subsys[] slot. */
4224 subsys[i] = NULL;
4225 mutex_unlock(&cgroup_mutex);
4226 return PTR_ERR(css);
4227 }
4228
4229 list_add(&ss->sibling, &rootnode.subsys_list);
4230 ss->root = &rootnode;
4231
4232 /* our new subsystem will be attached to the dummy hierarchy. */
4233 init_cgroup_css(css, ss, dummytop);
4234 /* init_idr must be after init_cgroup_css because it sets css->id. */
4235 if (ss->use_id) {
4236 int ret = cgroup_init_idr(ss, css);
4237 if (ret) {
4238 dummytop->subsys[ss->subsys_id] = NULL;
4239 ss->destroy(ss, dummytop);
4240 subsys[i] = NULL;
4241 mutex_unlock(&cgroup_mutex);
4242 return ret;
4243 }
4244 }
4245
4246 /*
4247 * Now we need to entangle the css into the existing css_sets. unlike
4248 * in cgroup_init_subsys, there are now multiple css_sets, so each one
4249 * will need a new pointer to it; done by iterating the css_set_table.
4250 * furthermore, modifying the existing css_sets will corrupt the hash
4251 * table state, so each changed css_set will need its hash recomputed.
4252 * this is all done under the css_set_lock.
4253 */
4254 write_lock(&css_set_lock);
4255 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
4256 struct css_set *cg;
4257 struct hlist_node *node, *tmp;
4258 struct hlist_head *bucket = &css_set_table[i], *new_bucket;
4259
4260 hlist_for_each_entry_safe(cg, node, tmp, bucket, hlist) {
4261 /* skip entries that we already rehashed */
4262 if (cg->subsys[ss->subsys_id])
4263 continue;
4264 /* remove existing entry */
4265 hlist_del(&cg->hlist);
4266 /* set new value */
4267 cg->subsys[ss->subsys_id] = css;
4268 /* recompute hash and restore entry */
4269 new_bucket = css_set_hash(cg->subsys);
4270 hlist_add_head(&cg->hlist, new_bucket);
4271 }
4272 }
4273 write_unlock(&css_set_lock);
4274
4275 mutex_init(&ss->hierarchy_mutex);
4276 lockdep_set_class(&ss->hierarchy_mutex, &ss->subsys_key);
4277 ss->active = 1;
4278
Ben Blume6a11052010-03-10 15:22:09 -08004279 /* success! */
4280 mutex_unlock(&cgroup_mutex);
4281 return 0;
4282}
4283EXPORT_SYMBOL_GPL(cgroup_load_subsys);
4284
4285/**
Ben Blumcf5d5942010-03-10 15:22:09 -08004286 * cgroup_unload_subsys: unload a modular subsystem
4287 * @ss: the subsystem to unload
4288 *
4289 * This function should be called in a modular subsystem's exitcall. When this
4290 * function is invoked, the refcount on the subsystem's module will be 0, so
4291 * the subsystem will not be attached to any hierarchy.
4292 */
4293void cgroup_unload_subsys(struct cgroup_subsys *ss)
4294{
4295 struct cg_cgroup_link *link;
4296 struct hlist_head *hhead;
4297
4298 BUG_ON(ss->module == NULL);
4299
4300 /*
4301 * we shouldn't be called if the subsystem is in use, and the use of
4302 * try_module_get in parse_cgroupfs_options should ensure that it
4303 * doesn't start being used while we're killing it off.
4304 */
4305 BUG_ON(ss->root != &rootnode);
4306
4307 mutex_lock(&cgroup_mutex);
4308 /* deassign the subsys_id */
4309 BUG_ON(ss->subsys_id < CGROUP_BUILTIN_SUBSYS_COUNT);
4310 subsys[ss->subsys_id] = NULL;
4311
4312 /* remove subsystem from rootnode's list of subsystems */
Phil Carmody8d258792011-03-22 16:30:13 -07004313 list_del_init(&ss->sibling);
Ben Blumcf5d5942010-03-10 15:22:09 -08004314
4315 /*
4316 * disentangle the css from all css_sets attached to the dummytop. as
4317 * in loading, we need to pay our respects to the hashtable gods.
4318 */
4319 write_lock(&css_set_lock);
4320 list_for_each_entry(link, &dummytop->css_sets, cgrp_link_list) {
4321 struct css_set *cg = link->cg;
4322
4323 hlist_del(&cg->hlist);
4324 BUG_ON(!cg->subsys[ss->subsys_id]);
4325 cg->subsys[ss->subsys_id] = NULL;
4326 hhead = css_set_hash(cg->subsys);
4327 hlist_add_head(&cg->hlist, hhead);
4328 }
4329 write_unlock(&css_set_lock);
4330
4331 /*
4332 * remove subsystem's css from the dummytop and free it - need to free
4333 * before marking as null because ss->destroy needs the cgrp->subsys
4334 * pointer to find their state. note that this also takes care of
4335 * freeing the css_id.
4336 */
4337 ss->destroy(ss, dummytop);
4338 dummytop->subsys[ss->subsys_id] = NULL;
4339
4340 mutex_unlock(&cgroup_mutex);
4341}
4342EXPORT_SYMBOL_GPL(cgroup_unload_subsys);
4343
4344/**
Li Zefana043e3b2008-02-23 15:24:09 -08004345 * cgroup_init_early - cgroup initialization at system boot
4346 *
4347 * Initialize cgroups at system boot, and initialize any
4348 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004349 */
4350int __init cgroup_init_early(void)
4351{
4352 int i;
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07004353 atomic_set(&init_css_set.refcount, 1);
Paul Menage817929e2007-10-18 23:39:36 -07004354 INIT_LIST_HEAD(&init_css_set.cg_links);
4355 INIT_LIST_HEAD(&init_css_set.tasks);
Li Zefan472b1052008-04-29 01:00:11 -07004356 INIT_HLIST_NODE(&init_css_set.hlist);
Paul Menage817929e2007-10-18 23:39:36 -07004357 css_set_count = 1;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004358 init_cgroup_root(&rootnode);
Paul Menage817929e2007-10-18 23:39:36 -07004359 root_count = 1;
4360 init_task.cgroups = &init_css_set;
4361
4362 init_css_set_link.cg = &init_css_set;
Paul Menage7717f7b2009-09-23 15:56:22 -07004363 init_css_set_link.cgrp = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -07004364 list_add(&init_css_set_link.cgrp_link_list,
Paul Menage817929e2007-10-18 23:39:36 -07004365 &rootnode.top_cgroup.css_sets);
4366 list_add(&init_css_set_link.cg_link_list,
4367 &init_css_set.cg_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004368
Li Zefan472b1052008-04-29 01:00:11 -07004369 for (i = 0; i < CSS_SET_TABLE_SIZE; i++)
4370 INIT_HLIST_HEAD(&css_set_table[i]);
4371
Ben Blumaae8aab2010-03-10 15:22:07 -08004372 /* at bootup time, we don't worry about modular subsystems */
4373 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004374 struct cgroup_subsys *ss = subsys[i];
4375
4376 BUG_ON(!ss->name);
4377 BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN);
4378 BUG_ON(!ss->create);
4379 BUG_ON(!ss->destroy);
4380 if (ss->subsys_id != i) {
Diego Callejacfe36bd2007-11-14 16:58:54 -08004381 printk(KERN_ERR "cgroup: Subsys %s id == %d\n",
Paul Menageddbcc7e2007-10-18 23:39:30 -07004382 ss->name, ss->subsys_id);
4383 BUG();
4384 }
4385
4386 if (ss->early_init)
4387 cgroup_init_subsys(ss);
4388 }
4389 return 0;
4390}
4391
4392/**
Li Zefana043e3b2008-02-23 15:24:09 -08004393 * cgroup_init - cgroup initialization
4394 *
4395 * Register cgroup filesystem and /proc file, and initialize
4396 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004397 */
4398int __init cgroup_init(void)
4399{
4400 int err;
4401 int i;
Li Zefan472b1052008-04-29 01:00:11 -07004402 struct hlist_head *hhead;
Paul Menagea4243162007-10-18 23:39:35 -07004403
4404 err = bdi_init(&cgroup_backing_dev_info);
4405 if (err)
4406 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004407
Ben Blumaae8aab2010-03-10 15:22:07 -08004408 /* at bootup time, we don't worry about modular subsystems */
4409 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004410 struct cgroup_subsys *ss = subsys[i];
4411 if (!ss->early_init)
4412 cgroup_init_subsys(ss);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004413 if (ss->use_id)
Ben Blume6a11052010-03-10 15:22:09 -08004414 cgroup_init_idr(ss, init_css_set.subsys[ss->subsys_id]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004415 }
4416
Li Zefan472b1052008-04-29 01:00:11 -07004417 /* Add init_css_set to the hash table */
4418 hhead = css_set_hash(init_css_set.subsys);
4419 hlist_add_head(&init_css_set.hlist, hhead);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004420 BUG_ON(!init_root_id(&rootnode));
Greg KH676db4a2010-08-05 13:53:35 -07004421
4422 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
4423 if (!cgroup_kobj) {
4424 err = -ENOMEM;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004425 goto out;
Greg KH676db4a2010-08-05 13:53:35 -07004426 }
4427
4428 err = register_filesystem(&cgroup_fs_type);
4429 if (err < 0) {
4430 kobject_put(cgroup_kobj);
4431 goto out;
4432 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004433
Li Zefan46ae2202008-04-29 01:00:08 -07004434 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Paul Menagea4243162007-10-18 23:39:35 -07004435
Paul Menageddbcc7e2007-10-18 23:39:30 -07004436out:
Paul Menagea4243162007-10-18 23:39:35 -07004437 if (err)
4438 bdi_destroy(&cgroup_backing_dev_info);
4439
Paul Menageddbcc7e2007-10-18 23:39:30 -07004440 return err;
4441}
Paul Menageb4f48b62007-10-18 23:39:33 -07004442
Paul Menagea4243162007-10-18 23:39:35 -07004443/*
4444 * proc_cgroup_show()
4445 * - Print task's cgroup paths into seq_file, one line for each hierarchy
4446 * - Used for /proc/<pid>/cgroup.
4447 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
4448 * doesn't really matter if tsk->cgroup changes after we read it,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004449 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
Paul Menagea4243162007-10-18 23:39:35 -07004450 * anyway. No need to check that tsk->cgroup != NULL, thanks to
4451 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
4452 * cgroup to top_cgroup.
4453 */
4454
4455/* TODO: Use a proper seq_file iterator */
4456static int proc_cgroup_show(struct seq_file *m, void *v)
4457{
4458 struct pid *pid;
4459 struct task_struct *tsk;
4460 char *buf;
4461 int retval;
4462 struct cgroupfs_root *root;
4463
4464 retval = -ENOMEM;
4465 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
4466 if (!buf)
4467 goto out;
4468
4469 retval = -ESRCH;
4470 pid = m->private;
4471 tsk = get_pid_task(pid, PIDTYPE_PID);
4472 if (!tsk)
4473 goto out_free;
4474
4475 retval = 0;
4476
4477 mutex_lock(&cgroup_mutex);
4478
Li Zefane5f6a862009-01-07 18:07:41 -08004479 for_each_active_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07004480 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07004481 struct cgroup *cgrp;
Paul Menagea4243162007-10-18 23:39:35 -07004482 int count = 0;
4483
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004484 seq_printf(m, "%d:", root->hierarchy_id);
Paul Menagea4243162007-10-18 23:39:35 -07004485 for_each_subsys(root, ss)
4486 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07004487 if (strlen(root->name))
4488 seq_printf(m, "%sname=%s", count ? "," : "",
4489 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07004490 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07004491 cgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07004492 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
Paul Menagea4243162007-10-18 23:39:35 -07004493 if (retval < 0)
4494 goto out_unlock;
4495 seq_puts(m, buf);
4496 seq_putc(m, '\n');
4497 }
4498
4499out_unlock:
4500 mutex_unlock(&cgroup_mutex);
4501 put_task_struct(tsk);
4502out_free:
4503 kfree(buf);
4504out:
4505 return retval;
4506}
4507
4508static int cgroup_open(struct inode *inode, struct file *file)
4509{
4510 struct pid *pid = PROC_I(inode)->pid;
4511 return single_open(file, proc_cgroup_show, pid);
4512}
4513
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004514const struct file_operations proc_cgroup_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004515 .open = cgroup_open,
4516 .read = seq_read,
4517 .llseek = seq_lseek,
4518 .release = single_release,
4519};
4520
4521/* Display information about each subsystem and each hierarchy */
4522static int proc_cgroupstats_show(struct seq_file *m, void *v)
4523{
4524 int i;
Paul Menagea4243162007-10-18 23:39:35 -07004525
Paul Menage8bab8dd2008-04-04 14:29:57 -07004526 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08004527 /*
4528 * ideally we don't want subsystems moving around while we do this.
4529 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
4530 * subsys/hierarchy state.
4531 */
Paul Menagea4243162007-10-18 23:39:35 -07004532 mutex_lock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07004533 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
4534 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08004535 if (ss == NULL)
4536 continue;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004537 seq_printf(m, "%s\t%d\t%d\t%d\n",
4538 ss->name, ss->root->hierarchy_id,
Paul Menage8bab8dd2008-04-04 14:29:57 -07004539 ss->root->number_of_cgroups, !ss->disabled);
Paul Menagea4243162007-10-18 23:39:35 -07004540 }
4541 mutex_unlock(&cgroup_mutex);
4542 return 0;
4543}
4544
4545static int cgroupstats_open(struct inode *inode, struct file *file)
4546{
Al Viro9dce07f2008-03-29 03:07:28 +00004547 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07004548}
4549
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004550static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004551 .open = cgroupstats_open,
4552 .read = seq_read,
4553 .llseek = seq_lseek,
4554 .release = single_release,
4555};
4556
Paul Menageb4f48b62007-10-18 23:39:33 -07004557/**
4558 * cgroup_fork - attach newly forked task to its parents cgroup.
Li Zefana043e3b2008-02-23 15:24:09 -08004559 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07004560 *
4561 * Description: A task inherits its parent's cgroup at fork().
4562 *
4563 * A pointer to the shared css_set was automatically copied in
4564 * fork.c by dup_task_struct(). However, we ignore that copy, since
4565 * it was not made under the protection of RCU or cgroup_mutex, so
Cliff Wickman956db3c2008-02-07 00:14:43 -08004566 * might no longer be a valid cgroup pointer. cgroup_attach_task() might
Paul Menage817929e2007-10-18 23:39:36 -07004567 * have already changed current->cgroups, allowing the previously
4568 * referenced cgroup group to be removed and freed.
Paul Menageb4f48b62007-10-18 23:39:33 -07004569 *
4570 * At the point that cgroup_fork() is called, 'current' is the parent
4571 * task, and the passed argument 'child' points to the child task.
4572 */
4573void cgroup_fork(struct task_struct *child)
4574{
Paul Menage817929e2007-10-18 23:39:36 -07004575 task_lock(current);
4576 child->cgroups = current->cgroups;
4577 get_css_set(child->cgroups);
4578 task_unlock(current);
4579 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07004580}
4581
4582/**
Li Zefana043e3b2008-02-23 15:24:09 -08004583 * cgroup_fork_callbacks - run fork callbacks
4584 * @child: the new task
4585 *
4586 * Called on a new task very soon before adding it to the
4587 * tasklist. No need to take any locks since no-one can
4588 * be operating on this task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004589 */
4590void cgroup_fork_callbacks(struct task_struct *child)
4591{
4592 if (need_forkexit_callback) {
4593 int i;
Ben Blumaae8aab2010-03-10 15:22:07 -08004594 /*
4595 * forkexit callbacks are only supported for builtin
4596 * subsystems, and the builtin section of the subsys array is
4597 * immutable, so we don't need to lock the subsys array here.
4598 */
4599 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageb4f48b62007-10-18 23:39:33 -07004600 struct cgroup_subsys *ss = subsys[i];
4601 if (ss->fork)
4602 ss->fork(ss, child);
4603 }
4604 }
4605}
4606
4607/**
Li Zefana043e3b2008-02-23 15:24:09 -08004608 * cgroup_post_fork - called on a new task after adding it to the task list
4609 * @child: the task in question
4610 *
4611 * Adds the task to the list running through its css_set if necessary.
4612 * Has to be after the task is visible on the task list in case we race
4613 * with the first call to cgroup_iter_start() - to guarantee that the
4614 * new task ends up on its list.
4615 */
Paul Menage817929e2007-10-18 23:39:36 -07004616void cgroup_post_fork(struct task_struct *child)
4617{
4618 if (use_task_css_set_links) {
4619 write_lock(&css_set_lock);
Lai Jiangshanb12b5332009-01-07 18:07:36 -08004620 task_lock(child);
Paul Menage817929e2007-10-18 23:39:36 -07004621 if (list_empty(&child->cg_list))
4622 list_add(&child->cg_list, &child->cgroups->tasks);
Lai Jiangshanb12b5332009-01-07 18:07:36 -08004623 task_unlock(child);
Paul Menage817929e2007-10-18 23:39:36 -07004624 write_unlock(&css_set_lock);
4625 }
4626}
4627/**
Paul Menageb4f48b62007-10-18 23:39:33 -07004628 * cgroup_exit - detach cgroup from exiting task
4629 * @tsk: pointer to task_struct of exiting process
Li Zefana043e3b2008-02-23 15:24:09 -08004630 * @run_callback: run exit callbacks?
Paul Menageb4f48b62007-10-18 23:39:33 -07004631 *
4632 * Description: Detach cgroup from @tsk and release it.
4633 *
4634 * Note that cgroups marked notify_on_release force every task in
4635 * them to take the global cgroup_mutex mutex when exiting.
4636 * This could impact scaling on very large systems. Be reluctant to
4637 * use notify_on_release cgroups where very high task exit scaling
4638 * is required on large systems.
4639 *
4640 * the_top_cgroup_hack:
4641 *
4642 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
4643 *
4644 * We call cgroup_exit() while the task is still competent to
4645 * handle notify_on_release(), then leave the task attached to the
4646 * root cgroup in each hierarchy for the remainder of its exit.
4647 *
4648 * To do this properly, we would increment the reference count on
4649 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
4650 * code we would add a second cgroup function call, to drop that
4651 * reference. This would just create an unnecessary hot spot on
4652 * the top_cgroup reference count, to no avail.
4653 *
4654 * Normally, holding a reference to a cgroup without bumping its
4655 * count is unsafe. The cgroup could go away, or someone could
4656 * attach us to a different cgroup, decrementing the count on
4657 * the first cgroup that we never incremented. But in this case,
4658 * top_cgroup isn't going away, and either task has PF_EXITING set,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004659 * which wards off any cgroup_attach_task() attempts, or task is a failed
4660 * fork, never visible to cgroup_attach_task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004661 */
4662void cgroup_exit(struct task_struct *tsk, int run_callbacks)
4663{
Paul Menage817929e2007-10-18 23:39:36 -07004664 struct css_set *cg;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004665 int i;
Paul Menage817929e2007-10-18 23:39:36 -07004666
4667 /*
4668 * Unlink from the css_set task list if necessary.
4669 * Optimistically check cg_list before taking
4670 * css_set_lock
4671 */
4672 if (!list_empty(&tsk->cg_list)) {
4673 write_lock(&css_set_lock);
4674 if (!list_empty(&tsk->cg_list))
Phil Carmody8d258792011-03-22 16:30:13 -07004675 list_del_init(&tsk->cg_list);
Paul Menage817929e2007-10-18 23:39:36 -07004676 write_unlock(&css_set_lock);
4677 }
4678
Paul Menageb4f48b62007-10-18 23:39:33 -07004679 /* Reassign the task to the init_css_set. */
4680 task_lock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07004681 cg = tsk->cgroups;
4682 tsk->cgroups = &init_css_set;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004683
4684 if (run_callbacks && need_forkexit_callback) {
4685 /*
4686 * modular subsystems can't use callbacks, so no need to lock
4687 * the subsys array
4688 */
4689 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
4690 struct cgroup_subsys *ss = subsys[i];
4691 if (ss->exit) {
4692 struct cgroup *old_cgrp =
4693 rcu_dereference_raw(cg->subsys[i])->cgroup;
4694 struct cgroup *cgrp = task_cgroup(tsk, i);
4695 ss->exit(ss, cgrp, old_cgrp, tsk);
4696 }
4697 }
4698 }
Paul Menageb4f48b62007-10-18 23:39:33 -07004699 task_unlock(tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004700
Paul Menage817929e2007-10-18 23:39:36 -07004701 if (cg)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004702 put_css_set_taskexit(cg);
Paul Menageb4f48b62007-10-18 23:39:33 -07004703}
Paul Menage697f4162007-10-18 23:39:34 -07004704
4705/**
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004706 * cgroup_is_descendant - see if @cgrp is a descendant of @task's cgrp
Li Zefana043e3b2008-02-23 15:24:09 -08004707 * @cgrp: the cgroup in question
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004708 * @task: the task in question
Li Zefana043e3b2008-02-23 15:24:09 -08004709 *
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004710 * See if @cgrp is a descendant of @task's cgroup in the appropriate
4711 * hierarchy.
Paul Menage697f4162007-10-18 23:39:34 -07004712 *
4713 * If we are sending in dummytop, then presumably we are creating
4714 * the top cgroup in the subsystem.
4715 *
4716 * Called only by the ns (nsproxy) cgroup.
4717 */
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004718int cgroup_is_descendant(const struct cgroup *cgrp, struct task_struct *task)
Paul Menage697f4162007-10-18 23:39:34 -07004719{
4720 int ret;
4721 struct cgroup *target;
Paul Menage697f4162007-10-18 23:39:34 -07004722
Paul Menagebd89aab2007-10-18 23:40:44 -07004723 if (cgrp == dummytop)
Paul Menage697f4162007-10-18 23:39:34 -07004724 return 1;
4725
Paul Menage7717f7b2009-09-23 15:56:22 -07004726 target = task_cgroup_from_root(task, cgrp->root);
Paul Menagebd89aab2007-10-18 23:40:44 -07004727 while (cgrp != target && cgrp!= cgrp->top_cgroup)
4728 cgrp = cgrp->parent;
4729 ret = (cgrp == target);
Paul Menage697f4162007-10-18 23:39:34 -07004730 return ret;
4731}
Paul Menage81a6a5c2007-10-18 23:39:38 -07004732
Paul Menagebd89aab2007-10-18 23:40:44 -07004733static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004734{
4735 /* All of these checks rely on RCU to keep the cgroup
4736 * structure alive */
Paul Menagebd89aab2007-10-18 23:40:44 -07004737 if (cgroup_is_releasable(cgrp) && !atomic_read(&cgrp->count)
4738 && list_empty(&cgrp->children) && !cgroup_has_css_refs(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004739 /* Control Group is currently removeable. If it's not
4740 * already queued for a userspace notification, queue
4741 * it now */
4742 int need_schedule_work = 0;
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004743 raw_spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07004744 if (!cgroup_is_removed(cgrp) &&
4745 list_empty(&cgrp->release_list)) {
4746 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004747 need_schedule_work = 1;
4748 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004749 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004750 if (need_schedule_work)
4751 schedule_work(&release_agent_work);
4752 }
4753}
4754
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -08004755/* Caller must verify that the css is not for root cgroup */
4756void __css_put(struct cgroup_subsys_state *css, int count)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004757{
Paul Menagebd89aab2007-10-18 23:40:44 -07004758 struct cgroup *cgrp = css->cgroup;
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004759 int val;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004760 rcu_read_lock();
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -08004761 val = atomic_sub_return(count, &css->refcnt);
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004762 if (val == 1) {
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004763 if (notify_on_release(cgrp)) {
4764 set_bit(CGRP_RELEASABLE, &cgrp->flags);
4765 check_for_release(cgrp);
4766 }
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004767 cgroup_wakeup_rmdir_waiter(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004768 }
4769 rcu_read_unlock();
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004770 WARN_ON_ONCE(val < 1);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004771}
Ben Blum67523c42010-03-10 15:22:11 -08004772EXPORT_SYMBOL_GPL(__css_put);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004773
4774/*
4775 * Notify userspace when a cgroup is released, by running the
4776 * configured release agent with the name of the cgroup (path
4777 * relative to the root of cgroup file system) as the argument.
4778 *
4779 * Most likely, this user command will try to rmdir this cgroup.
4780 *
4781 * This races with the possibility that some other task will be
4782 * attached to this cgroup before it is removed, or that some other
4783 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
4784 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
4785 * unused, and this cgroup will be reprieved from its death sentence,
4786 * to continue to serve a useful existence. Next time it's released,
4787 * we will get notified again, if it still has 'notify_on_release' set.
4788 *
4789 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
4790 * means only wait until the task is successfully execve()'d. The
4791 * separate release agent task is forked by call_usermodehelper(),
4792 * then control in this thread returns here, without waiting for the
4793 * release agent task. We don't bother to wait because the caller of
4794 * this routine has no use for the exit status of the release agent
4795 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07004796 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004797static void cgroup_release_agent(struct work_struct *work)
4798{
4799 BUG_ON(work != &release_agent_work);
4800 mutex_lock(&cgroup_mutex);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004801 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004802 while (!list_empty(&release_list)) {
4803 char *argv[3], *envp[3];
4804 int i;
Paul Menagee788e062008-07-25 01:46:59 -07004805 char *pathbuf = NULL, *agentbuf = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07004806 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07004807 struct cgroup,
4808 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07004809 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004810 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004811 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paul Menagee788e062008-07-25 01:46:59 -07004812 if (!pathbuf)
4813 goto continue_free;
4814 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0)
4815 goto continue_free;
4816 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
4817 if (!agentbuf)
4818 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004819
4820 i = 0;
Paul Menagee788e062008-07-25 01:46:59 -07004821 argv[i++] = agentbuf;
4822 argv[i++] = pathbuf;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004823 argv[i] = NULL;
4824
4825 i = 0;
4826 /* minimal command environment */
4827 envp[i++] = "HOME=/";
4828 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
4829 envp[i] = NULL;
4830
4831 /* Drop the lock while we invoke the usermode helper,
4832 * since the exec could involve hitting disk and hence
4833 * be a slow process */
4834 mutex_unlock(&cgroup_mutex);
4835 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004836 mutex_lock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07004837 continue_free:
4838 kfree(pathbuf);
4839 kfree(agentbuf);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004840 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004841 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004842 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004843 mutex_unlock(&cgroup_mutex);
4844}
Paul Menage8bab8dd2008-04-04 14:29:57 -07004845
4846static int __init cgroup_disable(char *str)
4847{
4848 int i;
4849 char *token;
4850
4851 while ((token = strsep(&str, ",")) != NULL) {
4852 if (!*token)
4853 continue;
Ben Blumaae8aab2010-03-10 15:22:07 -08004854 /*
4855 * cgroup_disable, being at boot time, can't know about module
4856 * subsystems, so we don't worry about them.
4857 */
4858 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07004859 struct cgroup_subsys *ss = subsys[i];
4860
4861 if (!strcmp(token, ss->name)) {
4862 ss->disabled = 1;
4863 printk(KERN_INFO "Disabling %s control group"
4864 " subsystem\n", ss->name);
4865 break;
4866 }
4867 }
4868 }
4869 return 1;
4870}
4871__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004872
4873/*
4874 * Functons for CSS ID.
4875 */
4876
4877/*
4878 *To get ID other than 0, this should be called when !cgroup_is_removed().
4879 */
4880unsigned short css_id(struct cgroup_subsys_state *css)
4881{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07004882 struct css_id *cssid;
4883
4884 /*
4885 * This css_id() can return correct value when somone has refcnt
4886 * on this or this is under rcu_read_lock(). Once css->id is allocated,
4887 * it's unchanged until freed.
4888 */
Michal Hockod8bf4ca2011-07-08 14:39:41 +02004889 cssid = rcu_dereference_check(css->id, atomic_read(&css->refcnt));
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004890
4891 if (cssid)
4892 return cssid->id;
4893 return 0;
4894}
Ben Blum67523c42010-03-10 15:22:11 -08004895EXPORT_SYMBOL_GPL(css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004896
4897unsigned short css_depth(struct cgroup_subsys_state *css)
4898{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07004899 struct css_id *cssid;
4900
Michal Hockod8bf4ca2011-07-08 14:39:41 +02004901 cssid = rcu_dereference_check(css->id, atomic_read(&css->refcnt));
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004902
4903 if (cssid)
4904 return cssid->depth;
4905 return 0;
4906}
Ben Blum67523c42010-03-10 15:22:11 -08004907EXPORT_SYMBOL_GPL(css_depth);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004908
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004909/**
4910 * css_is_ancestor - test "root" css is an ancestor of "child"
4911 * @child: the css to be tested.
4912 * @root: the css supporsed to be an ancestor of the child.
4913 *
4914 * Returns true if "root" is an ancestor of "child" in its hierarchy. Because
4915 * this function reads css->id, this use rcu_dereference() and rcu_read_lock().
4916 * But, considering usual usage, the csses should be valid objects after test.
4917 * Assuming that the caller will do some action to the child if this returns
4918 * returns true, the caller must take "child";s reference count.
4919 * If "child" is valid object and this returns true, "root" is valid, too.
4920 */
4921
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004922bool css_is_ancestor(struct cgroup_subsys_state *child,
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07004923 const struct cgroup_subsys_state *root)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004924{
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004925 struct css_id *child_id;
4926 struct css_id *root_id;
4927 bool ret = true;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004928
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004929 rcu_read_lock();
4930 child_id = rcu_dereference(child->id);
4931 root_id = rcu_dereference(root->id);
4932 if (!child_id
4933 || !root_id
4934 || (child_id->depth < root_id->depth)
4935 || (child_id->stack[root_id->depth] != root_id->id))
4936 ret = false;
4937 rcu_read_unlock();
4938 return ret;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004939}
4940
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004941void free_css_id(struct cgroup_subsys *ss, struct cgroup_subsys_state *css)
4942{
4943 struct css_id *id = css->id;
4944 /* When this is called before css_id initialization, id can be NULL */
4945 if (!id)
4946 return;
4947
4948 BUG_ON(!ss->use_id);
4949
4950 rcu_assign_pointer(id->css, NULL);
4951 rcu_assign_pointer(css->id, NULL);
Andrew Brestickerc1e2ee22011-11-02 13:40:29 -07004952 write_lock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004953 idr_remove(&ss->idr, id->id);
Andrew Brestickerc1e2ee22011-11-02 13:40:29 -07004954 write_unlock(&ss->id_lock);
Lai Jiangshan025cea92011-03-15 17:56:10 +08004955 kfree_rcu(id, rcu_head);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004956}
Ben Blum67523c42010-03-10 15:22:11 -08004957EXPORT_SYMBOL_GPL(free_css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004958
4959/*
4960 * This is called by init or create(). Then, calls to this function are
4961 * always serialized (By cgroup_mutex() at create()).
4962 */
4963
4964static struct css_id *get_new_cssid(struct cgroup_subsys *ss, int depth)
4965{
4966 struct css_id *newid;
4967 int myid, error, size;
4968
4969 BUG_ON(!ss->use_id);
4970
4971 size = sizeof(*newid) + sizeof(unsigned short) * (depth + 1);
4972 newid = kzalloc(size, GFP_KERNEL);
4973 if (!newid)
4974 return ERR_PTR(-ENOMEM);
4975 /* get id */
4976 if (unlikely(!idr_pre_get(&ss->idr, GFP_KERNEL))) {
4977 error = -ENOMEM;
4978 goto err_out;
4979 }
Andrew Brestickerc1e2ee22011-11-02 13:40:29 -07004980 write_lock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004981 /* Don't use 0. allocates an ID of 1-65535 */
4982 error = idr_get_new_above(&ss->idr, newid, 1, &myid);
Andrew Brestickerc1e2ee22011-11-02 13:40:29 -07004983 write_unlock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004984
4985 /* Returns error when there are no free spaces for new ID.*/
4986 if (error) {
4987 error = -ENOSPC;
4988 goto err_out;
4989 }
4990 if (myid > CSS_ID_MAX)
4991 goto remove_idr;
4992
4993 newid->id = myid;
4994 newid->depth = depth;
4995 return newid;
4996remove_idr:
4997 error = -ENOSPC;
Andrew Brestickerc1e2ee22011-11-02 13:40:29 -07004998 write_lock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004999 idr_remove(&ss->idr, myid);
Andrew Brestickerc1e2ee22011-11-02 13:40:29 -07005000 write_unlock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005001err_out:
5002 kfree(newid);
5003 return ERR_PTR(error);
5004
5005}
5006
Ben Blume6a11052010-03-10 15:22:09 -08005007static int __init_or_module cgroup_init_idr(struct cgroup_subsys *ss,
5008 struct cgroup_subsys_state *rootcss)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005009{
5010 struct css_id *newid;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005011
Andrew Brestickerc1e2ee22011-11-02 13:40:29 -07005012 rwlock_init(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005013 idr_init(&ss->idr);
5014
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005015 newid = get_new_cssid(ss, 0);
5016 if (IS_ERR(newid))
5017 return PTR_ERR(newid);
5018
5019 newid->stack[0] = newid->id;
5020 newid->css = rootcss;
5021 rootcss->id = newid;
5022 return 0;
5023}
5024
5025static int alloc_css_id(struct cgroup_subsys *ss, struct cgroup *parent,
5026 struct cgroup *child)
5027{
5028 int subsys_id, i, depth = 0;
5029 struct cgroup_subsys_state *parent_css, *child_css;
Li Zefanfae9c792010-04-22 17:30:00 +08005030 struct css_id *child_id, *parent_id;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005031
5032 subsys_id = ss->subsys_id;
5033 parent_css = parent->subsys[subsys_id];
5034 child_css = child->subsys[subsys_id];
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005035 parent_id = parent_css->id;
Greg Thelen94b3dd02010-06-04 14:15:03 -07005036 depth = parent_id->depth + 1;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005037
5038 child_id = get_new_cssid(ss, depth);
5039 if (IS_ERR(child_id))
5040 return PTR_ERR(child_id);
5041
5042 for (i = 0; i < depth; i++)
5043 child_id->stack[i] = parent_id->stack[i];
5044 child_id->stack[depth] = child_id->id;
5045 /*
5046 * child_id->css pointer will be set after this cgroup is available
5047 * see cgroup_populate_dir()
5048 */
5049 rcu_assign_pointer(child_css->id, child_id);
5050
5051 return 0;
5052}
5053
5054/**
5055 * css_lookup - lookup css by id
5056 * @ss: cgroup subsys to be looked into.
5057 * @id: the id
5058 *
5059 * Returns pointer to cgroup_subsys_state if there is valid one with id.
5060 * NULL if not. Should be called under rcu_read_lock()
5061 */
5062struct cgroup_subsys_state *css_lookup(struct cgroup_subsys *ss, int id)
5063{
5064 struct css_id *cssid = NULL;
5065
5066 BUG_ON(!ss->use_id);
5067 cssid = idr_find(&ss->idr, id);
5068
5069 if (unlikely(!cssid))
5070 return NULL;
5071
5072 return rcu_dereference(cssid->css);
5073}
Ben Blum67523c42010-03-10 15:22:11 -08005074EXPORT_SYMBOL_GPL(css_lookup);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005075
5076/**
5077 * css_get_next - lookup next cgroup under specified hierarchy.
5078 * @ss: pointer to subsystem
5079 * @id: current position of iteration.
5080 * @root: pointer to css. search tree under this.
5081 * @foundid: position of found object.
5082 *
5083 * Search next css under the specified hierarchy of rootid. Calling under
5084 * rcu_read_lock() is necessary. Returns NULL if it reaches the end.
5085 */
5086struct cgroup_subsys_state *
5087css_get_next(struct cgroup_subsys *ss, int id,
5088 struct cgroup_subsys_state *root, int *foundid)
5089{
5090 struct cgroup_subsys_state *ret = NULL;
5091 struct css_id *tmp;
5092 int tmpid;
5093 int rootid = css_id(root);
5094 int depth = css_depth(root);
5095
5096 if (!rootid)
5097 return NULL;
5098
5099 BUG_ON(!ss->use_id);
5100 /* fill start point for scan */
5101 tmpid = id;
5102 while (1) {
5103 /*
5104 * scan next entry from bitmap(tree), tmpid is updated after
5105 * idr_get_next().
5106 */
Andrew Brestickerc1e2ee22011-11-02 13:40:29 -07005107 read_lock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005108 tmp = idr_get_next(&ss->idr, &tmpid);
Andrew Brestickerc1e2ee22011-11-02 13:40:29 -07005109 read_unlock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005110
5111 if (!tmp)
5112 break;
5113 if (tmp->depth >= depth && tmp->stack[depth] == rootid) {
5114 ret = rcu_dereference(tmp->css);
5115 if (ret) {
5116 *foundid = tmpid;
5117 break;
5118 }
5119 }
5120 /* continue to scan from next id */
5121 tmpid = tmpid + 1;
5122 }
5123 return ret;
5124}
5125
Stephane Eraniane5d13672011-02-14 11:20:01 +02005126/*
5127 * get corresponding css from file open on cgroupfs directory
5128 */
5129struct cgroup_subsys_state *cgroup_css_from_dir(struct file *f, int id)
5130{
5131 struct cgroup *cgrp;
5132 struct inode *inode;
5133 struct cgroup_subsys_state *css;
5134
5135 inode = f->f_dentry->d_inode;
5136 /* check in cgroup filesystem dir */
5137 if (inode->i_op != &cgroup_dir_inode_operations)
5138 return ERR_PTR(-EBADF);
5139
5140 if (id < 0 || id >= CGROUP_SUBSYS_COUNT)
5141 return ERR_PTR(-EINVAL);
5142
5143 /* get cgroup */
5144 cgrp = __d_cgrp(f->f_dentry);
5145 css = cgrp->subsys[id];
5146 return css ? css : ERR_PTR(-ENOENT);
5147}
5148
Paul Menagefe693432009-09-23 15:56:20 -07005149#ifdef CONFIG_CGROUP_DEBUG
5150static struct cgroup_subsys_state *debug_create(struct cgroup_subsys *ss,
5151 struct cgroup *cont)
5152{
5153 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
5154
5155 if (!css)
5156 return ERR_PTR(-ENOMEM);
5157
5158 return css;
5159}
5160
5161static void debug_destroy(struct cgroup_subsys *ss, struct cgroup *cont)
5162{
5163 kfree(cont->subsys[debug_subsys_id]);
5164}
5165
5166static u64 cgroup_refcount_read(struct cgroup *cont, struct cftype *cft)
5167{
5168 return atomic_read(&cont->count);
5169}
5170
5171static u64 debug_taskcount_read(struct cgroup *cont, struct cftype *cft)
5172{
5173 return cgroup_task_count(cont);
5174}
5175
5176static u64 current_css_set_read(struct cgroup *cont, struct cftype *cft)
5177{
5178 return (u64)(unsigned long)current->cgroups;
5179}
5180
5181static u64 current_css_set_refcount_read(struct cgroup *cont,
5182 struct cftype *cft)
5183{
5184 u64 count;
5185
5186 rcu_read_lock();
5187 count = atomic_read(&current->cgroups->refcount);
5188 rcu_read_unlock();
5189 return count;
5190}
5191
Paul Menage7717f7b2009-09-23 15:56:22 -07005192static int current_css_set_cg_links_read(struct cgroup *cont,
5193 struct cftype *cft,
5194 struct seq_file *seq)
5195{
5196 struct cg_cgroup_link *link;
5197 struct css_set *cg;
5198
5199 read_lock(&css_set_lock);
5200 rcu_read_lock();
5201 cg = rcu_dereference(current->cgroups);
5202 list_for_each_entry(link, &cg->cg_links, cg_link_list) {
5203 struct cgroup *c = link->cgrp;
5204 const char *name;
5205
5206 if (c->dentry)
5207 name = c->dentry->d_name.name;
5208 else
5209 name = "?";
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005210 seq_printf(seq, "Root %d group %s\n",
5211 c->root->hierarchy_id, name);
Paul Menage7717f7b2009-09-23 15:56:22 -07005212 }
5213 rcu_read_unlock();
5214 read_unlock(&css_set_lock);
5215 return 0;
5216}
5217
5218#define MAX_TASKS_SHOWN_PER_CSS 25
5219static int cgroup_css_links_read(struct cgroup *cont,
5220 struct cftype *cft,
5221 struct seq_file *seq)
5222{
5223 struct cg_cgroup_link *link;
5224
5225 read_lock(&css_set_lock);
5226 list_for_each_entry(link, &cont->css_sets, cgrp_link_list) {
5227 struct css_set *cg = link->cg;
5228 struct task_struct *task;
5229 int count = 0;
5230 seq_printf(seq, "css_set %p\n", cg);
5231 list_for_each_entry(task, &cg->tasks, cg_list) {
5232 if (count++ > MAX_TASKS_SHOWN_PER_CSS) {
5233 seq_puts(seq, " ...\n");
5234 break;
5235 } else {
5236 seq_printf(seq, " task %d\n",
5237 task_pid_vnr(task));
5238 }
5239 }
5240 }
5241 read_unlock(&css_set_lock);
5242 return 0;
5243}
5244
Paul Menagefe693432009-09-23 15:56:20 -07005245static u64 releasable_read(struct cgroup *cgrp, struct cftype *cft)
5246{
5247 return test_bit(CGRP_RELEASABLE, &cgrp->flags);
5248}
5249
5250static struct cftype debug_files[] = {
5251 {
5252 .name = "cgroup_refcount",
5253 .read_u64 = cgroup_refcount_read,
5254 },
5255 {
5256 .name = "taskcount",
5257 .read_u64 = debug_taskcount_read,
5258 },
5259
5260 {
5261 .name = "current_css_set",
5262 .read_u64 = current_css_set_read,
5263 },
5264
5265 {
5266 .name = "current_css_set_refcount",
5267 .read_u64 = current_css_set_refcount_read,
5268 },
5269
5270 {
Paul Menage7717f7b2009-09-23 15:56:22 -07005271 .name = "current_css_set_cg_links",
5272 .read_seq_string = current_css_set_cg_links_read,
5273 },
5274
5275 {
5276 .name = "cgroup_css_links",
5277 .read_seq_string = cgroup_css_links_read,
5278 },
5279
5280 {
Paul Menagefe693432009-09-23 15:56:20 -07005281 .name = "releasable",
5282 .read_u64 = releasable_read,
5283 },
5284};
5285
5286static int debug_populate(struct cgroup_subsys *ss, struct cgroup *cont)
5287{
5288 return cgroup_add_files(cont, ss, debug_files,
5289 ARRAY_SIZE(debug_files));
5290}
5291
5292struct cgroup_subsys debug_subsys = {
5293 .name = "debug",
5294 .create = debug_create,
5295 .destroy = debug_destroy,
5296 .populate = debug_populate,
5297 .subsys_id = debug_subsys_id,
5298};
5299#endif /* CONFIG_CGROUP_DEBUG */