blob: 09006a2c8303d6a3a62b34307adfa89f93579b95 [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 Sharma60063492011-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
Colin Crossbefae2f2010-11-23 21:37:04 -0800290/*
291 * A queue for waiters to do rmdir() cgroup. A tasks will sleep when
292 * cgroup->count == 0 && list_empty(&cgroup->children) && subsys has some
293 * reference to css->refcnt. In general, this refcnt is expected to goes down
294 * to zero, soon.
295 *
296 * CGRP_WAIT_ON_RMDIR flag is set under cgroup's inode->i_mutex;
297 */
298static DECLARE_WAIT_QUEUE_HEAD(cgroup_rmdir_waitq);
299
300static void cgroup_wakeup_rmdir_waiter(struct cgroup *cgrp)
301{
302 if (unlikely(test_and_clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags)))
303 wake_up_all(&cgroup_rmdir_waitq);
304}
305
306void cgroup_exclude_rmdir(struct cgroup_subsys_state *css)
307{
308 css_get(css);
309}
310
311void cgroup_release_and_wakeup_rmdir(struct cgroup_subsys_state *css)
312{
313 cgroup_wakeup_rmdir_waiter(css->cgroup);
314 css_put(css);
315}
316
Paul Menage817929e2007-10-18 23:39:36 -0700317/* Link structure for associating css_set objects with cgroups */
318struct cg_cgroup_link {
319 /*
320 * List running through cg_cgroup_links associated with a
321 * cgroup, anchored on cgroup->css_sets
322 */
Paul Menagebd89aab2007-10-18 23:40:44 -0700323 struct list_head cgrp_link_list;
Paul Menage7717f7b2009-09-23 15:56:22 -0700324 struct cgroup *cgrp;
Paul Menage817929e2007-10-18 23:39:36 -0700325 /*
326 * List running through cg_cgroup_links pointing at a
327 * single css_set object, anchored on css_set->cg_links
328 */
329 struct list_head cg_link_list;
330 struct css_set *cg;
331};
332
333/* The default css_set - used by init and its children prior to any
334 * hierarchies being mounted. It contains a pointer to the root state
335 * for each subsystem. Also used to anchor the list of css_sets. Not
336 * reference-counted, to improve performance when child cgroups
337 * haven't been created.
338 */
339
340static struct css_set init_css_set;
341static struct cg_cgroup_link init_css_set_link;
342
Ben Blume6a11052010-03-10 15:22:09 -0800343static int cgroup_init_idr(struct cgroup_subsys *ss,
344 struct cgroup_subsys_state *css);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700345
Paul Menage817929e2007-10-18 23:39:36 -0700346/* css_set_lock protects the list of css_set objects, and the
347 * chain of tasks off each css_set. Nests outside task->alloc_lock
348 * due to cgroup_iter_start() */
349static DEFINE_RWLOCK(css_set_lock);
350static int css_set_count;
351
Paul Menage7717f7b2009-09-23 15:56:22 -0700352/*
353 * hash table for cgroup groups. This improves the performance to find
354 * an existing css_set. This hash doesn't (currently) take into
355 * account cgroups in empty hierarchies.
356 */
Li Zefan472b1052008-04-29 01:00:11 -0700357#define CSS_SET_HASH_BITS 7
358#define CSS_SET_TABLE_SIZE (1 << CSS_SET_HASH_BITS)
359static struct hlist_head css_set_table[CSS_SET_TABLE_SIZE];
360
361static struct hlist_head *css_set_hash(struct cgroup_subsys_state *css[])
362{
363 int i;
364 int index;
365 unsigned long tmp = 0UL;
366
367 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++)
368 tmp += (unsigned long)css[i];
369 tmp = (tmp >> 16) ^ tmp;
370
371 index = hash_long(tmp, CSS_SET_HASH_BITS);
372
373 return &css_set_table[index];
374}
375
Colin Crossbefae2f2010-11-23 21:37:04 -0800376static void free_css_set_work(struct work_struct *work)
377{
378 struct css_set *cg = container_of(work, struct css_set, work);
379 struct cg_cgroup_link *link;
380 struct cg_cgroup_link *saved_link;
381
382 write_lock(&css_set_lock);
383 list_for_each_entry_safe(link, saved_link, &cg->cg_links,
384 cg_link_list) {
385 struct cgroup *cgrp = link->cgrp;
386 list_del(&link->cg_link_list);
387 list_del(&link->cgrp_link_list);
Ethan Chen2a38ada2013-12-08 12:50:38 -0800388
389 /*
390 * We may not be holding cgroup_mutex, and if cgrp->count is
391 * dropped to 0 the cgroup can be destroyed at any time, hence
392 * rcu_read_lock is used to keep it alive.
393 */
394 rcu_read_lock();
Colin Crossbefae2f2010-11-23 21:37:04 -0800395 if (atomic_dec_and_test(&cgrp->count)) {
Ethan Chen2a38ada2013-12-08 12:50:38 -0800396
Colin Crossbefae2f2010-11-23 21:37:04 -0800397 check_for_release(cgrp);
398 cgroup_wakeup_rmdir_waiter(cgrp);
399 }
Ethan Chen2a38ada2013-12-08 12:50:38 -0800400 rcu_read_unlock();
401
Colin Crossbefae2f2010-11-23 21:37:04 -0800402 kfree(link);
403 }
404 write_unlock(&css_set_lock);
405
406 kfree(cg);
407}
408
409static void free_css_set_rcu(struct rcu_head *obj)
410{
411 struct css_set *cg = container_of(obj, struct css_set, rcu_head);
412
413 INIT_WORK(&cg->work, free_css_set_work);
414 schedule_work(&cg->work);
415}
416
Paul Menage817929e2007-10-18 23:39:36 -0700417/* We don't maintain the lists running through each css_set to its
418 * task until after the first call to cgroup_iter_start(). This
419 * reduces the fork()/exit() overhead for people who have cgroups
420 * compiled into their kernel but not actually in use */
Li Zefan8947f9d2008-07-25 01:46:56 -0700421static int use_task_css_set_links __read_mostly;
Paul Menage817929e2007-10-18 23:39:36 -0700422
Colin Crossc0f6fa82010-11-23 21:37:03 -0800423/*
424 * refcounted get/put for css_set objects
425 */
426static inline void get_css_set(struct css_set *cg)
427{
428 atomic_inc(&cg->refcount);
429}
430
431static void put_css_set(struct css_set *cg)
Paul Menageb4f48b62007-10-18 23:39:33 -0700432{
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700433 /*
434 * Ensure that the refcount doesn't hit zero while any readers
435 * can see it. Similar to atomic_dec_and_lock(), but for an
436 * rwlock
437 */
438 if (atomic_add_unless(&cg->refcount, -1, 1))
439 return;
440 write_lock(&css_set_lock);
441 if (!atomic_dec_and_test(&cg->refcount)) {
442 write_unlock(&css_set_lock);
443 return;
444 }
Paul Menage81a6a5c2007-10-18 23:39:38 -0700445
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700446 hlist_del(&cg->hlist);
447 css_set_count--;
448
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700449 write_unlock(&css_set_lock);
Colin Crossbefae2f2010-11-23 21:37:04 -0800450 call_rcu(&cg->rcu_head, free_css_set_rcu);
Paul Menage817929e2007-10-18 23:39:36 -0700451}
452
453/*
Paul Menage7717f7b2009-09-23 15:56:22 -0700454 * compare_css_sets - helper function for find_existing_css_set().
455 * @cg: candidate css_set being tested
456 * @old_cg: existing css_set for a task
457 * @new_cgrp: cgroup that's being entered by the task
458 * @template: desired set of css pointers in css_set (pre-calculated)
459 *
460 * Returns true if "cg" matches "old_cg" except for the hierarchy
461 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
462 */
463static bool compare_css_sets(struct css_set *cg,
464 struct css_set *old_cg,
465 struct cgroup *new_cgrp,
466 struct cgroup_subsys_state *template[])
467{
468 struct list_head *l1, *l2;
469
470 if (memcmp(template, cg->subsys, sizeof(cg->subsys))) {
471 /* Not all subsystems matched */
472 return false;
473 }
474
475 /*
476 * Compare cgroup pointers in order to distinguish between
477 * different cgroups in heirarchies with no subsystems. We
478 * could get by with just this check alone (and skip the
479 * memcmp above) but on most setups the memcmp check will
480 * avoid the need for this more expensive check on almost all
481 * candidates.
482 */
483
484 l1 = &cg->cg_links;
485 l2 = &old_cg->cg_links;
486 while (1) {
487 struct cg_cgroup_link *cgl1, *cgl2;
488 struct cgroup *cg1, *cg2;
489
490 l1 = l1->next;
491 l2 = l2->next;
492 /* See if we reached the end - both lists are equal length. */
493 if (l1 == &cg->cg_links) {
494 BUG_ON(l2 != &old_cg->cg_links);
495 break;
496 } else {
497 BUG_ON(l2 == &old_cg->cg_links);
498 }
499 /* Locate the cgroups associated with these links. */
500 cgl1 = list_entry(l1, struct cg_cgroup_link, cg_link_list);
501 cgl2 = list_entry(l2, struct cg_cgroup_link, cg_link_list);
502 cg1 = cgl1->cgrp;
503 cg2 = cgl2->cgrp;
504 /* Hierarchies should be linked in the same order. */
505 BUG_ON(cg1->root != cg2->root);
506
507 /*
508 * If this hierarchy is the hierarchy of the cgroup
509 * that's changing, then we need to check that this
510 * css_set points to the new cgroup; if it's any other
511 * hierarchy, then this css_set should point to the
512 * same cgroup as the old css_set.
513 */
514 if (cg1->root == new_cgrp->root) {
515 if (cg1 != new_cgrp)
516 return false;
517 } else {
518 if (cg1 != cg2)
519 return false;
520 }
521 }
522 return true;
523}
524
525/*
Paul Menage817929e2007-10-18 23:39:36 -0700526 * find_existing_css_set() is a helper for
527 * find_css_set(), and checks to see whether an existing
Li Zefan472b1052008-04-29 01:00:11 -0700528 * css_set is suitable.
Paul Menage817929e2007-10-18 23:39:36 -0700529 *
530 * oldcg: the cgroup group that we're using before the cgroup
531 * transition
532 *
Paul Menagebd89aab2007-10-18 23:40:44 -0700533 * cgrp: the cgroup that we're moving into
Paul Menage817929e2007-10-18 23:39:36 -0700534 *
535 * template: location in which to build the desired set of subsystem
536 * state objects for the new cgroup group
537 */
Paul Menage817929e2007-10-18 23:39:36 -0700538static struct css_set *find_existing_css_set(
539 struct css_set *oldcg,
Paul Menagebd89aab2007-10-18 23:40:44 -0700540 struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -0700541 struct cgroup_subsys_state *template[])
542{
543 int i;
Paul Menagebd89aab2007-10-18 23:40:44 -0700544 struct cgroupfs_root *root = cgrp->root;
Li Zefan472b1052008-04-29 01:00:11 -0700545 struct hlist_head *hhead;
546 struct hlist_node *node;
547 struct css_set *cg;
Paul Menage817929e2007-10-18 23:39:36 -0700548
Ben Blumaae8aab2010-03-10 15:22:07 -0800549 /*
550 * Build the set of subsystem state objects that we want to see in the
551 * new css_set. while subsystems can change globally, the entries here
552 * won't change, so no need for locking.
553 */
Paul Menage817929e2007-10-18 23:39:36 -0700554 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Li Zefan8d53d552008-02-23 15:24:11 -0800555 if (root->subsys_bits & (1UL << i)) {
Paul Menage817929e2007-10-18 23:39:36 -0700556 /* Subsystem is in this hierarchy. So we want
557 * the subsystem state from the new
558 * cgroup */
Paul Menagebd89aab2007-10-18 23:40:44 -0700559 template[i] = cgrp->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700560 } else {
561 /* Subsystem is not in this hierarchy, so we
562 * don't want to change the subsystem state */
563 template[i] = oldcg->subsys[i];
564 }
565 }
566
Li Zefan472b1052008-04-29 01:00:11 -0700567 hhead = css_set_hash(template);
568 hlist_for_each_entry(cg, node, hhead, hlist) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700569 if (!compare_css_sets(cg, oldcg, cgrp, template))
570 continue;
571
572 /* This css_set matches what we need */
573 return cg;
Li Zefan472b1052008-04-29 01:00:11 -0700574 }
Paul Menage817929e2007-10-18 23:39:36 -0700575
576 /* No existing cgroup group matched */
577 return NULL;
578}
579
Paul Menage817929e2007-10-18 23:39:36 -0700580static void free_cg_links(struct list_head *tmp)
581{
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700582 struct cg_cgroup_link *link;
583 struct cg_cgroup_link *saved_link;
584
585 list_for_each_entry_safe(link, saved_link, tmp, cgrp_link_list) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700586 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -0700587 kfree(link);
588 }
589}
590
591/*
Li Zefan36553432008-07-29 22:33:19 -0700592 * allocate_cg_links() allocates "count" cg_cgroup_link structures
593 * and chains them on tmp through their cgrp_link_list fields. Returns 0 on
594 * success or a negative error
595 */
596static int allocate_cg_links(int count, struct list_head *tmp)
597{
598 struct cg_cgroup_link *link;
599 int i;
600 INIT_LIST_HEAD(tmp);
601 for (i = 0; i < count; i++) {
602 link = kmalloc(sizeof(*link), GFP_KERNEL);
603 if (!link) {
604 free_cg_links(tmp);
605 return -ENOMEM;
606 }
607 list_add(&link->cgrp_link_list, tmp);
608 }
609 return 0;
610}
611
Li Zefanc12f65d2009-01-07 18:07:42 -0800612/**
613 * link_css_set - a helper function to link a css_set to a cgroup
614 * @tmp_cg_links: cg_cgroup_link objects allocated by allocate_cg_links()
615 * @cg: the css_set to be linked
616 * @cgrp: the destination cgroup
617 */
618static void link_css_set(struct list_head *tmp_cg_links,
619 struct css_set *cg, struct cgroup *cgrp)
620{
621 struct cg_cgroup_link *link;
622
623 BUG_ON(list_empty(tmp_cg_links));
624 link = list_first_entry(tmp_cg_links, struct cg_cgroup_link,
625 cgrp_link_list);
626 link->cg = cg;
Paul Menage7717f7b2009-09-23 15:56:22 -0700627 link->cgrp = cgrp;
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700628 atomic_inc(&cgrp->count);
Li Zefanc12f65d2009-01-07 18:07:42 -0800629 list_move(&link->cgrp_link_list, &cgrp->css_sets);
Paul Menage7717f7b2009-09-23 15:56:22 -0700630 /*
631 * Always add links to the tail of the list so that the list
632 * is sorted by order of hierarchy creation
633 */
634 list_add_tail(&link->cg_link_list, &cg->cg_links);
Li Zefanc12f65d2009-01-07 18:07:42 -0800635}
636
Li Zefan36553432008-07-29 22:33:19 -0700637/*
Paul Menage817929e2007-10-18 23:39:36 -0700638 * find_css_set() takes an existing cgroup group and a
639 * cgroup object, and returns a css_set object that's
640 * equivalent to the old group, but with the given cgroup
641 * substituted into the appropriate hierarchy. Must be called with
642 * cgroup_mutex held
643 */
Paul Menage817929e2007-10-18 23:39:36 -0700644static struct css_set *find_css_set(
Paul Menagebd89aab2007-10-18 23:40:44 -0700645 struct css_set *oldcg, struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700646{
647 struct css_set *res;
648 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT];
Paul Menage817929e2007-10-18 23:39:36 -0700649
650 struct list_head tmp_cg_links;
Paul Menage817929e2007-10-18 23:39:36 -0700651
Li Zefan472b1052008-04-29 01:00:11 -0700652 struct hlist_head *hhead;
Paul Menage7717f7b2009-09-23 15:56:22 -0700653 struct cg_cgroup_link *link;
Li Zefan472b1052008-04-29 01:00:11 -0700654
Paul Menage817929e2007-10-18 23:39:36 -0700655 /* First see if we already have a cgroup group that matches
656 * the desired set */
Li Zefan7e9abd82008-07-25 01:46:54 -0700657 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -0700658 res = find_existing_css_set(oldcg, cgrp, template);
Paul Menage817929e2007-10-18 23:39:36 -0700659 if (res)
660 get_css_set(res);
Li Zefan7e9abd82008-07-25 01:46:54 -0700661 read_unlock(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -0700662
663 if (res)
664 return res;
665
666 res = kmalloc(sizeof(*res), GFP_KERNEL);
667 if (!res)
668 return NULL;
669
670 /* Allocate all the cg_cgroup_link objects that we'll need */
671 if (allocate_cg_links(root_count, &tmp_cg_links) < 0) {
672 kfree(res);
673 return NULL;
674 }
675
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700676 atomic_set(&res->refcount, 1);
Paul Menage817929e2007-10-18 23:39:36 -0700677 INIT_LIST_HEAD(&res->cg_links);
678 INIT_LIST_HEAD(&res->tasks);
Li Zefan472b1052008-04-29 01:00:11 -0700679 INIT_HLIST_NODE(&res->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700680
681 /* Copy the set of subsystem state objects generated in
682 * find_existing_css_set() */
683 memcpy(res->subsys, template, sizeof(res->subsys));
684
685 write_lock(&css_set_lock);
686 /* Add reference counts and links from the new css_set. */
Paul Menage7717f7b2009-09-23 15:56:22 -0700687 list_for_each_entry(link, &oldcg->cg_links, cg_link_list) {
688 struct cgroup *c = link->cgrp;
689 if (c->root == cgrp->root)
690 c = cgrp;
691 link_css_set(&tmp_cg_links, res, c);
692 }
Paul Menage817929e2007-10-18 23:39:36 -0700693
694 BUG_ON(!list_empty(&tmp_cg_links));
695
Paul Menage817929e2007-10-18 23:39:36 -0700696 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -0700697
698 /* Add this cgroup group to the hash table */
699 hhead = css_set_hash(res->subsys);
700 hlist_add_head(&res->hlist, hhead);
701
Paul Menage817929e2007-10-18 23:39:36 -0700702 write_unlock(&css_set_lock);
703
704 return res;
Paul Menageb4f48b62007-10-18 23:39:33 -0700705}
706
Paul Menageddbcc7e2007-10-18 23:39:30 -0700707/*
Paul Menage7717f7b2009-09-23 15:56:22 -0700708 * Return the cgroup for "task" from the given hierarchy. Must be
709 * called with cgroup_mutex held.
710 */
711static struct cgroup *task_cgroup_from_root(struct task_struct *task,
712 struct cgroupfs_root *root)
713{
714 struct css_set *css;
715 struct cgroup *res = NULL;
716
717 BUG_ON(!mutex_is_locked(&cgroup_mutex));
718 read_lock(&css_set_lock);
719 /*
720 * No need to lock the task - since we hold cgroup_mutex the
721 * task can't change groups, so the only thing that can happen
722 * is that it exits and its css is set back to init_css_set.
723 */
724 css = task->cgroups;
725 if (css == &init_css_set) {
726 res = &root->top_cgroup;
727 } else {
728 struct cg_cgroup_link *link;
729 list_for_each_entry(link, &css->cg_links, cg_link_list) {
730 struct cgroup *c = link->cgrp;
731 if (c->root == root) {
732 res = c;
733 break;
734 }
735 }
736 }
737 read_unlock(&css_set_lock);
738 BUG_ON(!res);
739 return res;
740}
741
742/*
Paul Menageddbcc7e2007-10-18 23:39:30 -0700743 * There is one global cgroup mutex. We also require taking
744 * task_lock() when dereferencing a task's cgroup subsys pointers.
745 * See "The task_lock() exception", at the end of this comment.
746 *
747 * A task must hold cgroup_mutex to modify cgroups.
748 *
749 * Any task can increment and decrement the count field without lock.
750 * So in general, code holding cgroup_mutex can't rely on the count
751 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -0800752 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -0700753 * means that no tasks are currently attached, therefore there is no
754 * way a task attached to that cgroup can fork (the other way to
755 * increment the count). So code holding cgroup_mutex can safely
756 * assume that if the count is zero, it will stay zero. Similarly, if
757 * a task holds cgroup_mutex on a cgroup with zero count, it
758 * knows that the cgroup won't be removed, as cgroup_rmdir()
759 * needs that mutex.
760 *
Paul Menageddbcc7e2007-10-18 23:39:30 -0700761 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
762 * (usually) take cgroup_mutex. These are the two most performance
763 * critical pieces of code here. The exception occurs on cgroup_exit(),
764 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
765 * is taken, and if the cgroup count is zero, a usermode call made
Li Zefana043e3b2008-02-23 15:24:09 -0800766 * to the release agent with the name of the cgroup (path relative to
767 * the root of cgroup file system) as the argument.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700768 *
769 * A cgroup can only be deleted if both its 'count' of using tasks
770 * is zero, and its list of 'children' cgroups is empty. Since all
771 * tasks in the system use _some_ cgroup, and since there is always at
772 * least one task in the system (init, pid == 1), therefore, top_cgroup
773 * always has either children cgroups and/or using tasks. So we don't
774 * need a special hack to ensure that top_cgroup cannot be deleted.
775 *
776 * The task_lock() exception
777 *
778 * The need for this exception arises from the action of
Cliff Wickman956db3c2008-02-07 00:14:43 -0800779 * cgroup_attach_task(), which overwrites one tasks cgroup pointer with
Li Zefana043e3b2008-02-23 15:24:09 -0800780 * another. It does so using cgroup_mutex, however there are
Paul Menageddbcc7e2007-10-18 23:39:30 -0700781 * several performance critical places that need to reference
Colin Crossbefae2f2010-11-23 21:37:04 -0800782 * task->cgroups without the expense of grabbing a system global
Paul Menageddbcc7e2007-10-18 23:39:30 -0700783 * mutex. Therefore except as noted below, when dereferencing or, as
Colin Crossbefae2f2010-11-23 21:37:04 -0800784 * in cgroup_attach_task(), modifying a task's cgroups pointer we use
Paul Menageddbcc7e2007-10-18 23:39:30 -0700785 * task_lock(), which acts on a spinlock (task->alloc_lock) already in
786 * the task_struct routinely used for such matters.
787 *
788 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -0800789 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700790 */
791
Paul Menageddbcc7e2007-10-18 23:39:30 -0700792/**
793 * cgroup_lock - lock out any changes to cgroup structures
794 *
795 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700796void cgroup_lock(void)
797{
798 mutex_lock(&cgroup_mutex);
799}
Ben Blum67523c42010-03-10 15:22:11 -0800800EXPORT_SYMBOL_GPL(cgroup_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700801
802/**
803 * cgroup_unlock - release lock on cgroup changes
804 *
805 * Undo the lock taken in a previous cgroup_lock() call.
806 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700807void cgroup_unlock(void)
808{
809 mutex_unlock(&cgroup_mutex);
810}
Ben Blum67523c42010-03-10 15:22:11 -0800811EXPORT_SYMBOL_GPL(cgroup_unlock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700812
813/*
814 * A couple of forward declarations required, due to cyclic reference loop:
815 * cgroup_mkdir -> cgroup_create -> cgroup_populate_dir ->
816 * cgroup_add_file -> cgroup_create_file -> cgroup_dir_inode_operations
817 * -> cgroup_mkdir.
818 */
819
Al Viro18bb1db2011-07-26 01:41:39 -0400820static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode);
Al Viroc72a04e2011-01-14 05:31:45 +0000821static struct dentry *cgroup_lookup(struct inode *, struct dentry *, struct nameidata *);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700822static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -0700823static int cgroup_populate_dir(struct cgroup *cgrp);
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -0700824static const struct inode_operations cgroup_dir_inode_operations;
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700825static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -0700826
827static struct backing_dev_info cgroup_backing_dev_info = {
Jens Axboed9938312009-06-12 14:45:52 +0200828 .name = "cgroup",
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700829 .capabilities = BDI_CAP_NO_ACCT_AND_WRITEBACK,
Paul Menagea4243162007-10-18 23:39:35 -0700830};
Paul Menageddbcc7e2007-10-18 23:39:30 -0700831
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700832static int alloc_css_id(struct cgroup_subsys *ss,
833 struct cgroup *parent, struct cgroup *child);
834
Al Viroa5e7ed32011-07-26 01:55:55 -0400835static struct inode *cgroup_new_inode(umode_t mode, struct super_block *sb)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700836{
837 struct inode *inode = new_inode(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700838
839 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400840 inode->i_ino = get_next_ino();
Paul Menageddbcc7e2007-10-18 23:39:30 -0700841 inode->i_mode = mode;
David Howells76aac0e2008-11-14 10:39:12 +1100842 inode->i_uid = current_fsuid();
843 inode->i_gid = current_fsgid();
Paul Menageddbcc7e2007-10-18 23:39:30 -0700844 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
845 inode->i_mapping->backing_dev_info = &cgroup_backing_dev_info;
846 }
847 return inode;
848}
849
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800850/*
851 * Call subsys's pre_destroy handler.
852 * This is called before css refcnt check.
853 */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700854static int cgroup_call_pre_destroy(struct cgroup *cgrp)
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800855{
856 struct cgroup_subsys *ss;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700857 int ret = 0;
858
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800859 for_each_subsys(cgrp->root, ss)
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700860 if (ss->pre_destroy) {
Li Zefan761b3ef2012-01-31 13:47:36 +0800861 ret = ss->pre_destroy(cgrp);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700862 if (ret)
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -0800863 break;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700864 }
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800865
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700866 return ret;
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800867}
868
Paul Menageddbcc7e2007-10-18 23:39:30 -0700869static void cgroup_diput(struct dentry *dentry, struct inode *inode)
870{
871 /* is dentry a directory ? if so, kfree() associated cgroup */
872 if (S_ISDIR(inode->i_mode)) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700873 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800874 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -0700875 BUG_ON(!(cgroup_is_removed(cgrp)));
Paul Menage81a6a5c2007-10-18 23:39:38 -0700876 /* It's possible for external users to be holding css
877 * reference counts on a cgroup; css_put() needs to
878 * be able to access the cgroup after decrementing
879 * the reference count in order to know if it needs to
880 * queue the cgroup to be handled by the release
881 * agent */
882 synchronize_rcu();
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800883
884 mutex_lock(&cgroup_mutex);
885 /*
886 * Release the subsystem state objects.
887 */
Li Zefan75139b82009-01-07 18:07:33 -0800888 for_each_subsys(cgrp->root, ss)
Li Zefan761b3ef2012-01-31 13:47:36 +0800889 ss->destroy(cgrp);
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800890
891 cgrp->root->number_of_cgroups--;
892 mutex_unlock(&cgroup_mutex);
893
Paul Menagea47295e2009-01-07 18:07:44 -0800894 /*
895 * Drop the active superblock reference that we took when we
896 * created the cgroup
897 */
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800898 deactivate_super(cgrp->root->sb);
899
Ben Blum72a8cb32009-09-23 15:56:27 -0700900 /*
901 * if we're getting rid of the cgroup, refcount should ensure
902 * that there are no pidlists left.
903 */
904 BUG_ON(!list_empty(&cgrp->pidlists));
905
Lai Jiangshanf2da1c42011-03-15 17:55:16 +0800906 kfree_rcu(cgrp, rcu_head);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700907 }
908 iput(inode);
909}
910
Al Viroc72a04e2011-01-14 05:31:45 +0000911static int cgroup_delete(const struct dentry *d)
912{
913 return 1;
914}
915
Paul Menageddbcc7e2007-10-18 23:39:30 -0700916static void remove_dir(struct dentry *d)
917{
918 struct dentry *parent = dget(d->d_parent);
919
920 d_delete(d);
921 simple_rmdir(parent->d_inode, d);
922 dput(parent);
923}
924
925static void cgroup_clear_directory(struct dentry *dentry)
926{
927 struct list_head *node;
928
929 BUG_ON(!mutex_is_locked(&dentry->d_inode->i_mutex));
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100930 spin_lock(&dentry->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700931 node = dentry->d_subdirs.next;
932 while (node != &dentry->d_subdirs) {
933 struct dentry *d = list_entry(node, struct dentry, d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100934
935 spin_lock_nested(&d->d_lock, DENTRY_D_LOCK_NESTED);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700936 list_del_init(node);
937 if (d->d_inode) {
938 /* This should never be called on a cgroup
939 * directory with child cgroups */
940 BUG_ON(d->d_inode->i_mode & S_IFDIR);
Nick Piggindc0474b2011-01-07 17:49:43 +1100941 dget_dlock(d);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100942 spin_unlock(&d->d_lock);
943 spin_unlock(&dentry->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700944 d_delete(d);
945 simple_unlink(dentry->d_inode, d);
946 dput(d);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100947 spin_lock(&dentry->d_lock);
948 } else
949 spin_unlock(&d->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700950 node = dentry->d_subdirs.next;
951 }
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100952 spin_unlock(&dentry->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700953}
954
955/*
956 * NOTE : the dentry must have been dget()'ed
957 */
958static void cgroup_d_remove_dir(struct dentry *dentry)
959{
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100960 struct dentry *parent;
961
Paul Menageddbcc7e2007-10-18 23:39:30 -0700962 cgroup_clear_directory(dentry);
963
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100964 parent = dentry->d_parent;
965 spin_lock(&parent->d_lock);
Li Zefan3ec762a2011-01-14 11:34:34 +0800966 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700967 list_del_init(&dentry->d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100968 spin_unlock(&dentry->d_lock);
969 spin_unlock(&parent->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700970 remove_dir(dentry);
971}
972
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700973/*
Ben Blumcf5d5942010-03-10 15:22:09 -0800974 * Call with cgroup_mutex held. Drops reference counts on modules, including
975 * any duplicate ones that parse_cgroupfs_options took. If this function
976 * returns an error, no reference counts are touched.
Ben Blumaae8aab2010-03-10 15:22:07 -0800977 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700978static int rebind_subsystems(struct cgroupfs_root *root,
979 unsigned long final_bits)
980{
981 unsigned long added_bits, removed_bits;
Paul Menagebd89aab2007-10-18 23:40:44 -0700982 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700983 int i;
984
Ben Blumaae8aab2010-03-10 15:22:07 -0800985 BUG_ON(!mutex_is_locked(&cgroup_mutex));
Tejun Heoe25e2cb2011-12-12 18:12:21 -0800986 BUG_ON(!mutex_is_locked(&cgroup_root_mutex));
Ben Blumaae8aab2010-03-10 15:22:07 -0800987
Paul Menageddbcc7e2007-10-18 23:39:30 -0700988 removed_bits = root->actual_subsys_bits & ~final_bits;
989 added_bits = final_bits & ~root->actual_subsys_bits;
990 /* Check that any added subsystems are currently free */
991 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Li Zefan8d53d552008-02-23 15:24:11 -0800992 unsigned long bit = 1UL << i;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700993 struct cgroup_subsys *ss = subsys[i];
994 if (!(bit & added_bits))
995 continue;
Ben Blumaae8aab2010-03-10 15:22:07 -0800996 /*
997 * Nobody should tell us to do a subsys that doesn't exist:
998 * parse_cgroupfs_options should catch that case and refcounts
999 * ensure that subsystems won't disappear once selected.
1000 */
1001 BUG_ON(ss == NULL);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001002 if (ss->root != &rootnode) {
1003 /* Subsystem isn't free */
1004 return -EBUSY;
1005 }
1006 }
1007
1008 /* Currently we don't handle adding/removing subsystems when
1009 * any child cgroups exist. This is theoretically supportable
1010 * but involves complex error handling, so it's being left until
1011 * later */
Paul Menage307257c2008-12-15 13:54:22 -08001012 if (root->number_of_cgroups > 1)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001013 return -EBUSY;
1014
1015 /* Process each subsystem */
1016 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1017 struct cgroup_subsys *ss = subsys[i];
1018 unsigned long bit = 1UL << i;
1019 if (bit & added_bits) {
1020 /* We're binding this subsystem to this hierarchy */
Ben Blumaae8aab2010-03-10 15:22:07 -08001021 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001022 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001023 BUG_ON(!dummytop->subsys[i]);
1024 BUG_ON(dummytop->subsys[i]->cgroup != dummytop);
Paul Menage999cd8a2009-01-07 18:08:36 -08001025 mutex_lock(&ss->hierarchy_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07001026 cgrp->subsys[i] = dummytop->subsys[i];
1027 cgrp->subsys[i]->cgroup = cgrp;
Li Zefan33a68ac2009-01-07 18:07:42 -08001028 list_move(&ss->sibling, &root->subsys_list);
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001029 ss->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001030 if (ss->bind)
Li Zefan761b3ef2012-01-31 13:47:36 +08001031 ss->bind(cgrp);
Paul Menage999cd8a2009-01-07 18:08:36 -08001032 mutex_unlock(&ss->hierarchy_mutex);
Ben Blumcf5d5942010-03-10 15:22:09 -08001033 /* refcount was already taken, and we're keeping it */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001034 } else if (bit & removed_bits) {
1035 /* We're removing this subsystem */
Ben Blumaae8aab2010-03-10 15:22:07 -08001036 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001037 BUG_ON(cgrp->subsys[i] != dummytop->subsys[i]);
1038 BUG_ON(cgrp->subsys[i]->cgroup != cgrp);
Paul Menage999cd8a2009-01-07 18:08:36 -08001039 mutex_lock(&ss->hierarchy_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001040 if (ss->bind)
Li Zefan761b3ef2012-01-31 13:47:36 +08001041 ss->bind(dummytop);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001042 dummytop->subsys[i]->cgroup = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -07001043 cgrp->subsys[i] = NULL;
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001044 subsys[i]->root = &rootnode;
Li Zefan33a68ac2009-01-07 18:07:42 -08001045 list_move(&ss->sibling, &rootnode.subsys_list);
Paul Menage999cd8a2009-01-07 18:08:36 -08001046 mutex_unlock(&ss->hierarchy_mutex);
Ben Blumcf5d5942010-03-10 15:22:09 -08001047 /* subsystem is now free - drop reference on module */
1048 module_put(ss->module);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001049 } else if (bit & final_bits) {
1050 /* Subsystem state should already exist */
Ben Blumaae8aab2010-03-10 15:22:07 -08001051 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001052 BUG_ON(!cgrp->subsys[i]);
Ben Blumcf5d5942010-03-10 15:22:09 -08001053 /*
1054 * a refcount was taken, but we already had one, so
1055 * drop the extra reference.
1056 */
1057 module_put(ss->module);
1058#ifdef CONFIG_MODULE_UNLOAD
1059 BUG_ON(ss->module && !module_refcount(ss->module));
1060#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001061 } else {
1062 /* Subsystem state shouldn't exist */
Paul Menagebd89aab2007-10-18 23:40:44 -07001063 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001064 }
1065 }
1066 root->subsys_bits = root->actual_subsys_bits = final_bits;
1067 synchronize_rcu();
1068
1069 return 0;
1070}
1071
Al Viro34c80b12011-12-08 21:32:45 -05001072static int cgroup_show_options(struct seq_file *seq, struct dentry *dentry)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001073{
Al Viro34c80b12011-12-08 21:32:45 -05001074 struct cgroupfs_root *root = dentry->d_sb->s_fs_info;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001075 struct cgroup_subsys *ss;
1076
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001077 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001078 for_each_subsys(root, ss)
1079 seq_printf(seq, ",%s", ss->name);
1080 if (test_bit(ROOT_NOPREFIX, &root->flags))
1081 seq_puts(seq, ",noprefix");
Paul Menage81a6a5c2007-10-18 23:39:38 -07001082 if (strlen(root->release_agent_path))
1083 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Daniel Lezcano97978e62010-10-27 15:33:35 -07001084 if (clone_children(&root->top_cgroup))
1085 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001086 if (strlen(root->name))
1087 seq_printf(seq, ",name=%s", root->name);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001088 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001089 return 0;
1090}
1091
1092struct cgroup_sb_opts {
1093 unsigned long subsys_bits;
1094 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001095 char *release_agent;
Daniel Lezcano97978e62010-10-27 15:33:35 -07001096 bool clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001097 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001098 /* User explicitly requested empty subsystem */
1099 bool none;
Paul Menagec6d57f32009-09-23 15:56:19 -07001100
1101 struct cgroupfs_root *new_root;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001102
Paul Menageddbcc7e2007-10-18 23:39:30 -07001103};
1104
Ben Blumaae8aab2010-03-10 15:22:07 -08001105/*
1106 * Convert a hierarchy specifier into a bitmask of subsystems and flags. Call
Ben Blumcf5d5942010-03-10 15:22:09 -08001107 * with cgroup_mutex held to protect the subsys[] array. This function takes
1108 * refcounts on subsystems to be used, unless it returns error, in which case
1109 * no refcounts are taken.
Ben Blumaae8aab2010-03-10 15:22:07 -08001110 */
Ben Blumcf5d5942010-03-10 15:22:09 -08001111static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001112{
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001113 char *token, *o = data;
1114 bool all_ss = false, one_ss = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001115 unsigned long mask = (unsigned long)-1;
Ben Blumcf5d5942010-03-10 15:22:09 -08001116 int i;
1117 bool module_pin_failed = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001118
Ben Blumaae8aab2010-03-10 15:22:07 -08001119 BUG_ON(!mutex_is_locked(&cgroup_mutex));
1120
Li Zefanf9ab5b52009-06-17 16:26:33 -07001121#ifdef CONFIG_CPUSETS
1122 mask = ~(1UL << cpuset_subsys_id);
1123#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001124
Paul Menagec6d57f32009-09-23 15:56:19 -07001125 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001126
1127 while ((token = strsep(&o, ",")) != NULL) {
1128 if (!*token)
1129 return -EINVAL;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001130 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001131 /* Explicitly have no subsystems */
1132 opts->none = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001133 continue;
1134 }
1135 if (!strcmp(token, "all")) {
1136 /* Mutually exclusive option 'all' + subsystem name */
1137 if (one_ss)
1138 return -EINVAL;
1139 all_ss = true;
1140 continue;
1141 }
1142 if (!strcmp(token, "noprefix")) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001143 set_bit(ROOT_NOPREFIX, &opts->flags);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001144 continue;
1145 }
1146 if (!strcmp(token, "clone_children")) {
Daniel Lezcano97978e62010-10-27 15:33:35 -07001147 opts->clone_children = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001148 continue;
1149 }
1150 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001151 /* Specifying two release agents is forbidden */
1152 if (opts->release_agent)
1153 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001154 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001155 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001156 if (!opts->release_agent)
1157 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001158 continue;
1159 }
1160 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001161 const char *name = token + 5;
1162 /* Can't specify an empty name */
1163 if (!strlen(name))
1164 return -EINVAL;
1165 /* Must match [\w.-]+ */
1166 for (i = 0; i < strlen(name); i++) {
1167 char c = name[i];
1168 if (isalnum(c))
1169 continue;
1170 if ((c == '.') || (c == '-') || (c == '_'))
1171 continue;
1172 return -EINVAL;
1173 }
1174 /* Specifying two names is forbidden */
1175 if (opts->name)
1176 return -EINVAL;
1177 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001178 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001179 GFP_KERNEL);
1180 if (!opts->name)
1181 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001182
1183 continue;
1184 }
1185
1186 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1187 struct cgroup_subsys *ss = subsys[i];
1188 if (ss == NULL)
1189 continue;
1190 if (strcmp(token, ss->name))
1191 continue;
1192 if (ss->disabled)
1193 continue;
1194
1195 /* Mutually exclusive option 'all' + subsystem name */
1196 if (all_ss)
1197 return -EINVAL;
1198 set_bit(i, &opts->subsys_bits);
1199 one_ss = true;
1200
1201 break;
1202 }
1203 if (i == CGROUP_SUBSYS_COUNT)
1204 return -ENOENT;
1205 }
1206
1207 /*
1208 * If the 'all' option was specified select all the subsystems,
Li Zefan0d19ea82011-12-27 14:25:55 +08001209 * otherwise if 'none', 'name=' and a subsystem name options
1210 * were not specified, let's default to 'all'
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001211 */
Li Zefan0d19ea82011-12-27 14:25:55 +08001212 if (all_ss || (!one_ss && !opts->none && !opts->name)) {
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001213 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1214 struct cgroup_subsys *ss = subsys[i];
1215 if (ss == NULL)
1216 continue;
1217 if (ss->disabled)
1218 continue;
1219 set_bit(i, &opts->subsys_bits);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001220 }
1221 }
1222
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001223 /* Consistency checks */
1224
Li Zefanf9ab5b52009-06-17 16:26:33 -07001225 /*
1226 * Option noprefix was introduced just for backward compatibility
1227 * with the old cpuset, so we allow noprefix only if mounting just
1228 * the cpuset subsystem.
1229 */
1230 if (test_bit(ROOT_NOPREFIX, &opts->flags) &&
1231 (opts->subsys_bits & mask))
1232 return -EINVAL;
1233
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001234
1235 /* Can't specify "none" and some subsystems */
1236 if (opts->subsys_bits && opts->none)
1237 return -EINVAL;
1238
1239 /*
1240 * We either have to specify by name or by subsystems. (So all
1241 * empty hierarchies must have a name).
1242 */
Paul Menagec6d57f32009-09-23 15:56:19 -07001243 if (!opts->subsys_bits && !opts->name)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001244 return -EINVAL;
1245
Ben Blumcf5d5942010-03-10 15:22:09 -08001246 /*
1247 * Grab references on all the modules we'll need, so the subsystems
1248 * don't dance around before rebind_subsystems attaches them. This may
1249 * take duplicate reference counts on a subsystem that's already used,
1250 * but rebind_subsystems handles this case.
1251 */
1252 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
1253 unsigned long bit = 1UL << i;
1254
1255 if (!(bit & opts->subsys_bits))
1256 continue;
1257 if (!try_module_get(subsys[i]->module)) {
1258 module_pin_failed = true;
1259 break;
1260 }
1261 }
1262 if (module_pin_failed) {
1263 /*
1264 * oops, one of the modules was going away. this means that we
1265 * raced with a module_delete call, and to the user this is
1266 * essentially a "subsystem doesn't exist" case.
1267 */
1268 for (i--; i >= CGROUP_BUILTIN_SUBSYS_COUNT; i--) {
1269 /* drop refcounts only on the ones we took */
1270 unsigned long bit = 1UL << i;
1271
1272 if (!(bit & opts->subsys_bits))
1273 continue;
1274 module_put(subsys[i]->module);
1275 }
1276 return -ENOENT;
1277 }
1278
Paul Menageddbcc7e2007-10-18 23:39:30 -07001279 return 0;
1280}
1281
Ben Blumcf5d5942010-03-10 15:22:09 -08001282static void drop_parsed_module_refcounts(unsigned long subsys_bits)
1283{
1284 int i;
1285 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
1286 unsigned long bit = 1UL << i;
1287
1288 if (!(bit & subsys_bits))
1289 continue;
1290 module_put(subsys[i]->module);
1291 }
1292}
1293
Paul Menageddbcc7e2007-10-18 23:39:30 -07001294static int cgroup_remount(struct super_block *sb, int *flags, char *data)
1295{
1296 int ret = 0;
1297 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001298 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001299 struct cgroup_sb_opts opts;
1300
Paul Menagebd89aab2007-10-18 23:40:44 -07001301 mutex_lock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001302 mutex_lock(&cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001303 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001304
1305 /* See what subsystems are wanted */
1306 ret = parse_cgroupfs_options(data, &opts);
1307 if (ret)
1308 goto out_unlock;
1309
Ben Blumcf5d5942010-03-10 15:22:09 -08001310 /* Don't allow flags or name to change at remount */
1311 if (opts.flags != root->flags ||
1312 (opts.name && strcmp(opts.name, root->name))) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001313 ret = -EINVAL;
Ben Blumcf5d5942010-03-10 15:22:09 -08001314 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menagec6d57f32009-09-23 15:56:19 -07001315 goto out_unlock;
1316 }
1317
Paul Menageddbcc7e2007-10-18 23:39:30 -07001318 ret = rebind_subsystems(root, opts.subsys_bits);
Ben Blumcf5d5942010-03-10 15:22:09 -08001319 if (ret) {
1320 drop_parsed_module_refcounts(opts.subsys_bits);
Li Zefan0670e082009-04-02 16:57:30 -07001321 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001322 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001323
1324 /* (re)populate subsystem files */
Li Zefan0670e082009-04-02 16:57:30 -07001325 cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001326
Paul Menage81a6a5c2007-10-18 23:39:38 -07001327 if (opts.release_agent)
1328 strcpy(root->release_agent_path, opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001329 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001330 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001331 kfree(opts.name);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001332 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001333 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07001334 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001335 return ret;
1336}
1337
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001338static const struct super_operations cgroup_ops = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001339 .statfs = simple_statfs,
1340 .drop_inode = generic_delete_inode,
1341 .show_options = cgroup_show_options,
1342 .remount_fs = cgroup_remount,
1343};
1344
Paul Menagecc31edc2008-10-18 20:28:04 -07001345static void init_cgroup_housekeeping(struct cgroup *cgrp)
1346{
1347 INIT_LIST_HEAD(&cgrp->sibling);
1348 INIT_LIST_HEAD(&cgrp->children);
1349 INIT_LIST_HEAD(&cgrp->css_sets);
1350 INIT_LIST_HEAD(&cgrp->release_list);
Ben Blum72a8cb32009-09-23 15:56:27 -07001351 INIT_LIST_HEAD(&cgrp->pidlists);
1352 mutex_init(&cgrp->pidlist_mutex);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08001353 INIT_LIST_HEAD(&cgrp->event_list);
1354 spin_lock_init(&cgrp->event_list_lock);
Paul Menagecc31edc2008-10-18 20:28:04 -07001355}
Paul Menagec6d57f32009-09-23 15:56:19 -07001356
Paul Menageddbcc7e2007-10-18 23:39:30 -07001357static void init_cgroup_root(struct cgroupfs_root *root)
1358{
Paul Menagebd89aab2007-10-18 23:40:44 -07001359 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001360 INIT_LIST_HEAD(&root->subsys_list);
1361 INIT_LIST_HEAD(&root->root_list);
1362 root->number_of_cgroups = 1;
Paul Menagebd89aab2007-10-18 23:40:44 -07001363 cgrp->root = root;
1364 cgrp->top_cgroup = cgrp;
Paul Menagecc31edc2008-10-18 20:28:04 -07001365 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001366}
1367
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001368static bool init_root_id(struct cgroupfs_root *root)
1369{
1370 int ret = 0;
1371
1372 do {
1373 if (!ida_pre_get(&hierarchy_ida, GFP_KERNEL))
1374 return false;
1375 spin_lock(&hierarchy_id_lock);
1376 /* Try to allocate the next unused ID */
1377 ret = ida_get_new_above(&hierarchy_ida, next_hierarchy_id,
1378 &root->hierarchy_id);
1379 if (ret == -ENOSPC)
1380 /* Try again starting from 0 */
1381 ret = ida_get_new(&hierarchy_ida, &root->hierarchy_id);
1382 if (!ret) {
1383 next_hierarchy_id = root->hierarchy_id + 1;
1384 } else if (ret != -EAGAIN) {
1385 /* Can only get here if the 31-bit IDR is full ... */
1386 BUG_ON(ret);
1387 }
1388 spin_unlock(&hierarchy_id_lock);
1389 } while (ret);
1390 return true;
1391}
1392
Paul Menageddbcc7e2007-10-18 23:39:30 -07001393static int cgroup_test_super(struct super_block *sb, void *data)
1394{
Paul Menagec6d57f32009-09-23 15:56:19 -07001395 struct cgroup_sb_opts *opts = data;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001396 struct cgroupfs_root *root = sb->s_fs_info;
1397
Paul Menagec6d57f32009-09-23 15:56:19 -07001398 /* If we asked for a name then it must match */
1399 if (opts->name && strcmp(opts->name, root->name))
1400 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001401
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001402 /*
1403 * If we asked for subsystems (or explicitly for no
1404 * subsystems) then they must match
1405 */
1406 if ((opts->subsys_bits || opts->none)
1407 && (opts->subsys_bits != root->subsys_bits))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001408 return 0;
1409
1410 return 1;
1411}
1412
Paul Menagec6d57f32009-09-23 15:56:19 -07001413static struct cgroupfs_root *cgroup_root_from_opts(struct cgroup_sb_opts *opts)
1414{
1415 struct cgroupfs_root *root;
1416
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001417 if (!opts->subsys_bits && !opts->none)
Paul Menagec6d57f32009-09-23 15:56:19 -07001418 return NULL;
1419
1420 root = kzalloc(sizeof(*root), GFP_KERNEL);
1421 if (!root)
1422 return ERR_PTR(-ENOMEM);
1423
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001424 if (!init_root_id(root)) {
1425 kfree(root);
1426 return ERR_PTR(-ENOMEM);
1427 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001428 init_cgroup_root(root);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001429
Paul Menagec6d57f32009-09-23 15:56:19 -07001430 root->subsys_bits = opts->subsys_bits;
1431 root->flags = opts->flags;
1432 if (opts->release_agent)
1433 strcpy(root->release_agent_path, opts->release_agent);
1434 if (opts->name)
1435 strcpy(root->name, opts->name);
Daniel Lezcano97978e62010-10-27 15:33:35 -07001436 if (opts->clone_children)
1437 set_bit(CGRP_CLONE_CHILDREN, &root->top_cgroup.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001438 return root;
1439}
1440
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001441static void cgroup_drop_root(struct cgroupfs_root *root)
1442{
1443 if (!root)
1444 return;
1445
1446 BUG_ON(!root->hierarchy_id);
1447 spin_lock(&hierarchy_id_lock);
1448 ida_remove(&hierarchy_ida, root->hierarchy_id);
1449 spin_unlock(&hierarchy_id_lock);
1450 kfree(root);
1451}
1452
Paul Menageddbcc7e2007-10-18 23:39:30 -07001453static int cgroup_set_super(struct super_block *sb, void *data)
1454{
1455 int ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001456 struct cgroup_sb_opts *opts = data;
1457
1458 /* If we don't have a new root, we can't set up a new sb */
1459 if (!opts->new_root)
1460 return -EINVAL;
1461
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001462 BUG_ON(!opts->subsys_bits && !opts->none);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001463
1464 ret = set_anon_super(sb, NULL);
1465 if (ret)
1466 return ret;
1467
Paul Menagec6d57f32009-09-23 15:56:19 -07001468 sb->s_fs_info = opts->new_root;
1469 opts->new_root->sb = sb;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001470
1471 sb->s_blocksize = PAGE_CACHE_SIZE;
1472 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
1473 sb->s_magic = CGROUP_SUPER_MAGIC;
1474 sb->s_op = &cgroup_ops;
1475
1476 return 0;
1477}
1478
1479static int cgroup_get_rootdir(struct super_block *sb)
1480{
Al Viro0df6a632010-12-21 13:29:29 -05001481 static const struct dentry_operations cgroup_dops = {
1482 .d_iput = cgroup_diput,
Al Viroc72a04e2011-01-14 05:31:45 +00001483 .d_delete = cgroup_delete,
Al Viro0df6a632010-12-21 13:29:29 -05001484 };
1485
Paul Menageddbcc7e2007-10-18 23:39:30 -07001486 struct inode *inode =
1487 cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001488
1489 if (!inode)
1490 return -ENOMEM;
1491
Paul Menageddbcc7e2007-10-18 23:39:30 -07001492 inode->i_fop = &simple_dir_operations;
1493 inode->i_op = &cgroup_dir_inode_operations;
1494 /* directories start off with i_nlink == 2 (for "." entry) */
1495 inc_nlink(inode);
Al Viro48fde702012-01-08 22:15:13 -05001496 sb->s_root = d_make_root(inode);
1497 if (!sb->s_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001498 return -ENOMEM;
Al Viro0df6a632010-12-21 13:29:29 -05001499 /* for everything else we want ->d_op set */
1500 sb->s_d_op = &cgroup_dops;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001501 return 0;
1502}
1503
Al Virof7e83572010-07-26 13:23:11 +04001504static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001505 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001506 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001507{
1508 struct cgroup_sb_opts opts;
Paul Menagec6d57f32009-09-23 15:56:19 -07001509 struct cgroupfs_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001510 int ret = 0;
1511 struct super_block *sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001512 struct cgroupfs_root *new_root;
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001513 struct inode *inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001514
1515 /* First find the desired set of subsystems */
Ben Blumaae8aab2010-03-10 15:22:07 -08001516 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001517 ret = parse_cgroupfs_options(data, &opts);
Ben Blumaae8aab2010-03-10 15:22:07 -08001518 mutex_unlock(&cgroup_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001519 if (ret)
1520 goto out_err;
1521
1522 /*
1523 * Allocate a new cgroup root. We may not need it if we're
1524 * reusing an existing hierarchy.
1525 */
1526 new_root = cgroup_root_from_opts(&opts);
1527 if (IS_ERR(new_root)) {
1528 ret = PTR_ERR(new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001529 goto drop_modules;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001530 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001531 opts.new_root = new_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001532
Paul Menagec6d57f32009-09-23 15:56:19 -07001533 /* Locate an existing or new sb for this hierarchy */
1534 sb = sget(fs_type, cgroup_test_super, cgroup_set_super, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001535 if (IS_ERR(sb)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001536 ret = PTR_ERR(sb);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001537 cgroup_drop_root(opts.new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001538 goto drop_modules;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001539 }
1540
Paul Menagec6d57f32009-09-23 15:56:19 -07001541 root = sb->s_fs_info;
1542 BUG_ON(!root);
1543 if (root == opts.new_root) {
1544 /* We used the new root structure, so this is a new hierarchy */
1545 struct list_head tmp_cg_links;
Li Zefanc12f65d2009-01-07 18:07:42 -08001546 struct cgroup *root_cgrp = &root->top_cgroup;
Paul Menagec6d57f32009-09-23 15:56:19 -07001547 struct cgroupfs_root *existing_root;
eparis@redhat2ce97382011-06-02 21:20:51 +10001548 const struct cred *cred;
Li Zefan28fd5df2008-04-29 01:00:13 -07001549 int i;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001550
1551 BUG_ON(sb->s_root != NULL);
1552
1553 ret = cgroup_get_rootdir(sb);
1554 if (ret)
1555 goto drop_new_super;
Paul Menage817929e2007-10-18 23:39:36 -07001556 inode = sb->s_root->d_inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001557
Paul Menage817929e2007-10-18 23:39:36 -07001558 mutex_lock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001559 mutex_lock(&cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001560 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001561
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001562 /* Check for name clashes with existing mounts */
1563 ret = -EBUSY;
1564 if (strlen(root->name))
1565 for_each_active_root(existing_root)
1566 if (!strcmp(existing_root->name, root->name))
1567 goto unlock_drop;
Paul Menagec6d57f32009-09-23 15:56:19 -07001568
Paul Menage817929e2007-10-18 23:39:36 -07001569 /*
1570 * We're accessing css_set_count without locking
1571 * css_set_lock here, but that's OK - it can only be
1572 * increased by someone holding cgroup_lock, and
1573 * that's us. The worst that can happen is that we
1574 * have some link structures left over
1575 */
1576 ret = allocate_cg_links(css_set_count, &tmp_cg_links);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001577 if (ret)
1578 goto unlock_drop;
Paul Menage817929e2007-10-18 23:39:36 -07001579
Paul Menageddbcc7e2007-10-18 23:39:30 -07001580 ret = rebind_subsystems(root, root->subsys_bits);
1581 if (ret == -EBUSY) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001582 free_cg_links(&tmp_cg_links);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001583 goto unlock_drop;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001584 }
Ben Blumcf5d5942010-03-10 15:22:09 -08001585 /*
1586 * There must be no failure case after here, since rebinding
1587 * takes care of subsystems' refcounts, which are explicitly
1588 * dropped in the failure exit path.
1589 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001590
1591 /* EBUSY should be the only error here */
1592 BUG_ON(ret);
1593
1594 list_add(&root->root_list, &roots);
Paul Menage817929e2007-10-18 23:39:36 -07001595 root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001596
Li Zefanc12f65d2009-01-07 18:07:42 -08001597 sb->s_root->d_fsdata = root_cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001598 root->top_cgroup.dentry = sb->s_root;
1599
Paul Menage817929e2007-10-18 23:39:36 -07001600 /* Link the top cgroup in this hierarchy into all
1601 * the css_set objects */
1602 write_lock(&css_set_lock);
Li Zefan28fd5df2008-04-29 01:00:13 -07001603 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
1604 struct hlist_head *hhead = &css_set_table[i];
1605 struct hlist_node *node;
Paul Menage817929e2007-10-18 23:39:36 -07001606 struct css_set *cg;
Li Zefan28fd5df2008-04-29 01:00:13 -07001607
Li Zefanc12f65d2009-01-07 18:07:42 -08001608 hlist_for_each_entry(cg, node, hhead, hlist)
1609 link_css_set(&tmp_cg_links, cg, root_cgrp);
Li Zefan28fd5df2008-04-29 01:00:13 -07001610 }
Paul Menage817929e2007-10-18 23:39:36 -07001611 write_unlock(&css_set_lock);
1612
1613 free_cg_links(&tmp_cg_links);
1614
Li Zefanc12f65d2009-01-07 18:07:42 -08001615 BUG_ON(!list_empty(&root_cgrp->sibling));
1616 BUG_ON(!list_empty(&root_cgrp->children));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001617 BUG_ON(root->number_of_cgroups != 1);
1618
eparis@redhat2ce97382011-06-02 21:20:51 +10001619 cred = override_creds(&init_cred);
Li Zefanc12f65d2009-01-07 18:07:42 -08001620 cgroup_populate_dir(root_cgrp);
eparis@redhat2ce97382011-06-02 21:20:51 +10001621 revert_creds(cred);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001622 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001623 mutex_unlock(&cgroup_mutex);
Xiaotian Feng34f77a92009-09-23 15:56:18 -07001624 mutex_unlock(&inode->i_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001625 } else {
1626 /*
1627 * We re-used an existing hierarchy - the new root (if
1628 * any) is not needed
1629 */
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001630 cgroup_drop_root(opts.new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001631 /* no subsys rebinding, so refcounts don't change */
1632 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001633 }
1634
Paul Menagec6d57f32009-09-23 15:56:19 -07001635 kfree(opts.release_agent);
1636 kfree(opts.name);
Al Virof7e83572010-07-26 13:23:11 +04001637 return dget(sb->s_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001638
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001639 unlock_drop:
1640 mutex_unlock(&cgroup_root_mutex);
1641 mutex_unlock(&cgroup_mutex);
1642 mutex_unlock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001643 drop_new_super:
Al Viro6f5bbff2009-05-06 01:34:22 -04001644 deactivate_locked_super(sb);
Ben Blumcf5d5942010-03-10 15:22:09 -08001645 drop_modules:
1646 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menagec6d57f32009-09-23 15:56:19 -07001647 out_err:
1648 kfree(opts.release_agent);
1649 kfree(opts.name);
Al Virof7e83572010-07-26 13:23:11 +04001650 return ERR_PTR(ret);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001651}
1652
1653static void cgroup_kill_sb(struct super_block *sb) {
1654 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001655 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001656 int ret;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001657 struct cg_cgroup_link *link;
1658 struct cg_cgroup_link *saved_link;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001659
1660 BUG_ON(!root);
1661
1662 BUG_ON(root->number_of_cgroups != 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001663 BUG_ON(!list_empty(&cgrp->children));
1664 BUG_ON(!list_empty(&cgrp->sibling));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001665
1666 mutex_lock(&cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001667 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001668
1669 /* Rebind all subsystems back to the default hierarchy */
1670 ret = rebind_subsystems(root, 0);
1671 /* Shouldn't be able to fail ... */
1672 BUG_ON(ret);
1673
Paul Menage817929e2007-10-18 23:39:36 -07001674 /*
1675 * Release all the links from css_sets to this hierarchy's
1676 * root cgroup
1677 */
1678 write_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001679
1680 list_for_each_entry_safe(link, saved_link, &cgrp->css_sets,
1681 cgrp_link_list) {
Paul Menage817929e2007-10-18 23:39:36 -07001682 list_del(&link->cg_link_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07001683 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001684 kfree(link);
1685 }
1686 write_unlock(&css_set_lock);
1687
Paul Menage839ec542009-01-29 14:25:22 -08001688 if (!list_empty(&root->root_list)) {
1689 list_del(&root->root_list);
1690 root_count--;
1691 }
Li Zefane5f6a862009-01-07 18:07:41 -08001692
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001693 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001694 mutex_unlock(&cgroup_mutex);
1695
Paul Menageddbcc7e2007-10-18 23:39:30 -07001696 kill_litter_super(sb);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001697 cgroup_drop_root(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001698}
1699
1700static struct file_system_type cgroup_fs_type = {
1701 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001702 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001703 .kill_sb = cgroup_kill_sb,
1704};
1705
Greg KH676db4a2010-08-05 13:53:35 -07001706static struct kobject *cgroup_kobj;
1707
Paul Menagebd89aab2007-10-18 23:40:44 -07001708static inline struct cgroup *__d_cgrp(struct dentry *dentry)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001709{
1710 return dentry->d_fsdata;
1711}
1712
1713static inline struct cftype *__d_cft(struct dentry *dentry)
1714{
1715 return dentry->d_fsdata;
1716}
1717
Li Zefana043e3b2008-02-23 15:24:09 -08001718/**
1719 * cgroup_path - generate the path of a cgroup
1720 * @cgrp: the cgroup in question
1721 * @buf: the buffer to write the path into
1722 * @buflen: the length of the buffer
1723 *
Paul Menagea47295e2009-01-07 18:07:44 -08001724 * Called with cgroup_mutex held or else with an RCU-protected cgroup
1725 * reference. Writes path of cgroup into buf. Returns 0 on success,
1726 * -errno on error.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001727 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001728int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001729{
1730 char *start;
Li Zefan9a9686b2010-04-22 17:29:24 +08001731 struct dentry *dentry = rcu_dereference_check(cgrp->dentry,
Li Zefan9a9686b2010-04-22 17:29:24 +08001732 cgroup_lock_is_held());
Paul Menageddbcc7e2007-10-18 23:39:30 -07001733
Paul Menagea47295e2009-01-07 18:07:44 -08001734 if (!dentry || cgrp == dummytop) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001735 /*
1736 * Inactive subsystems have no dentry for their root
1737 * cgroup
1738 */
1739 strcpy(buf, "/");
1740 return 0;
1741 }
1742
1743 start = buf + buflen;
1744
1745 *--start = '\0';
1746 for (;;) {
Paul Menagea47295e2009-01-07 18:07:44 -08001747 int len = dentry->d_name.len;
Li Zefan9a9686b2010-04-22 17:29:24 +08001748
Paul Menageddbcc7e2007-10-18 23:39:30 -07001749 if ((start -= len) < buf)
1750 return -ENAMETOOLONG;
Li Zefan9a9686b2010-04-22 17:29:24 +08001751 memcpy(start, dentry->d_name.name, len);
Paul Menagebd89aab2007-10-18 23:40:44 -07001752 cgrp = cgrp->parent;
1753 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001754 break;
Li Zefan9a9686b2010-04-22 17:29:24 +08001755
1756 dentry = rcu_dereference_check(cgrp->dentry,
Li Zefan9a9686b2010-04-22 17:29:24 +08001757 cgroup_lock_is_held());
Paul Menagebd89aab2007-10-18 23:40:44 -07001758 if (!cgrp->parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001759 continue;
1760 if (--start < buf)
1761 return -ENAMETOOLONG;
1762 *start = '/';
1763 }
1764 memmove(buf, start, buf + buflen - start);
1765 return 0;
1766}
Ben Blum67523c42010-03-10 15:22:11 -08001767EXPORT_SYMBOL_GPL(cgroup_path);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001768
Ben Blum74a11662011-05-26 16:25:20 -07001769/*
Tejun Heo2f7ee562011-12-12 18:12:21 -08001770 * Control Group taskset
1771 */
Tejun Heo134d3372011-12-12 18:12:21 -08001772struct task_and_cgroup {
1773 struct task_struct *task;
1774 struct cgroup *cgrp;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001775 struct css_set *cg;
Tejun Heo134d3372011-12-12 18:12:21 -08001776};
1777
Tejun Heo2f7ee562011-12-12 18:12:21 -08001778struct cgroup_taskset {
1779 struct task_and_cgroup single;
1780 struct flex_array *tc_array;
1781 int tc_array_len;
1782 int idx;
1783 struct cgroup *cur_cgrp;
1784};
1785
1786/**
1787 * cgroup_taskset_first - reset taskset and return the first task
1788 * @tset: taskset of interest
1789 *
1790 * @tset iteration is initialized and the first task is returned.
1791 */
1792struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
1793{
1794 if (tset->tc_array) {
1795 tset->idx = 0;
1796 return cgroup_taskset_next(tset);
1797 } else {
1798 tset->cur_cgrp = tset->single.cgrp;
1799 return tset->single.task;
1800 }
1801}
1802EXPORT_SYMBOL_GPL(cgroup_taskset_first);
1803
1804/**
1805 * cgroup_taskset_next - iterate to the next task in taskset
1806 * @tset: taskset of interest
1807 *
1808 * Return the next task in @tset. Iteration must have been initialized
1809 * with cgroup_taskset_first().
1810 */
1811struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
1812{
1813 struct task_and_cgroup *tc;
1814
1815 if (!tset->tc_array || tset->idx >= tset->tc_array_len)
1816 return NULL;
1817
1818 tc = flex_array_get(tset->tc_array, tset->idx++);
1819 tset->cur_cgrp = tc->cgrp;
1820 return tc->task;
1821}
1822EXPORT_SYMBOL_GPL(cgroup_taskset_next);
1823
1824/**
1825 * cgroup_taskset_cur_cgroup - return the matching cgroup for the current task
1826 * @tset: taskset of interest
1827 *
1828 * Return the cgroup for the current (last returned) task of @tset. This
1829 * function must be preceded by either cgroup_taskset_first() or
1830 * cgroup_taskset_next().
1831 */
1832struct cgroup *cgroup_taskset_cur_cgroup(struct cgroup_taskset *tset)
1833{
1834 return tset->cur_cgrp;
1835}
1836EXPORT_SYMBOL_GPL(cgroup_taskset_cur_cgroup);
1837
1838/**
1839 * cgroup_taskset_size - return the number of tasks in taskset
1840 * @tset: taskset of interest
1841 */
1842int cgroup_taskset_size(struct cgroup_taskset *tset)
1843{
1844 return tset->tc_array ? tset->tc_array_len : 1;
1845}
1846EXPORT_SYMBOL_GPL(cgroup_taskset_size);
1847
1848
Ben Blum74a11662011-05-26 16:25:20 -07001849/*
1850 * cgroup_task_migrate - move a task from one cgroup to another.
1851 *
1852 * 'guarantee' is set if the caller promises that a new css_set for the task
1853 * will already exist. If not set, this function might sleep, and can fail with
Tejun Heocd3d0952011-12-12 18:12:21 -08001854 * -ENOMEM. Must be called with cgroup_mutex and threadgroup locked.
Ben Blum74a11662011-05-26 16:25:20 -07001855 */
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001856static void cgroup_task_migrate(struct cgroup *cgrp, struct cgroup *oldcgrp,
1857 struct task_struct *tsk, struct css_set *newcg)
Ben Blum74a11662011-05-26 16:25:20 -07001858{
1859 struct css_set *oldcg;
Ben Blum74a11662011-05-26 16:25:20 -07001860
1861 /*
Mandeep Singh Baines026085e2011-12-21 20:18:35 -08001862 * We are synchronized through threadgroup_lock() against PF_EXITING
1863 * setting such that we can't race against cgroup_exit() changing the
1864 * css_set to init_css_set and dropping the old one.
Ben Blum74a11662011-05-26 16:25:20 -07001865 */
Frederic Weisbeckerc84cdf72011-12-21 20:03:18 +01001866 WARN_ON_ONCE(tsk->flags & PF_EXITING);
Ben Blum74a11662011-05-26 16:25:20 -07001867 oldcg = tsk->cgroups;
Ben Blum74a11662011-05-26 16:25:20 -07001868
Ben Blum74a11662011-05-26 16:25:20 -07001869 task_lock(tsk);
Ben Blum74a11662011-05-26 16:25:20 -07001870 rcu_assign_pointer(tsk->cgroups, newcg);
1871 task_unlock(tsk);
1872
1873 /* Update the css_set linked lists if we're using them */
1874 write_lock(&css_set_lock);
1875 if (!list_empty(&tsk->cg_list))
1876 list_move(&tsk->cg_list, &newcg->tasks);
1877 write_unlock(&css_set_lock);
1878
1879 /*
1880 * We just gained a reference on oldcg by taking it from the task. As
1881 * trading it for newcg is protected by cgroup_mutex, we're safe to drop
1882 * it here; it will be freed under RCU.
1883 */
Ben Blum74a11662011-05-26 16:25:20 -07001884 set_bit(CGRP_RELEASABLE, &oldcgrp->flags);
Daisuke Nishimura9a55fef2012-10-04 16:37:16 +09001885 put_css_set(oldcg);
Ben Blum74a11662011-05-26 16:25:20 -07001886}
1887
Li Zefana043e3b2008-02-23 15:24:09 -08001888/**
1889 * cgroup_attach_task - attach task 'tsk' to cgroup 'cgrp'
1890 * @cgrp: the cgroup the task is attaching to
1891 * @tsk: the task to be attached
Paul Menagebbcb81d2007-10-18 23:39:32 -07001892 *
Tejun Heocd3d0952011-12-12 18:12:21 -08001893 * Call with cgroup_mutex and threadgroup locked. May take task_lock of
1894 * @tsk during call.
Paul Menagebbcb81d2007-10-18 23:39:32 -07001895 */
Cliff Wickman956db3c2008-02-07 00:14:43 -08001896int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001897{
Tejun Heo8f121912012-03-29 22:03:33 -07001898 int retval = 0;
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001899 struct cgroup_subsys *ss, *failed_ss = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07001900 struct cgroup *oldcgrp;
Paul Menagebd89aab2007-10-18 23:40:44 -07001901 struct cgroupfs_root *root = cgrp->root;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001902 struct cgroup_taskset tset = { };
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001903 struct css_set *newcg;
Colin Crossbefae2f2010-11-23 21:37:04 -08001904 struct css_set *cg;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001905
Tejun Heocd3d0952011-12-12 18:12:21 -08001906 /* @tsk either already exited or can't exit until the end */
1907 if (tsk->flags & PF_EXITING)
1908 return -ESRCH;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001909
1910 /* Nothing to do if the task is already in that cgroup */
Paul Menage7717f7b2009-09-23 15:56:22 -07001911 oldcgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07001912 if (cgrp == oldcgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001913 return 0;
1914
Tejun Heo2f7ee562011-12-12 18:12:21 -08001915 tset.single.task = tsk;
1916 tset.single.cgrp = oldcgrp;
1917
Paul Menagebbcb81d2007-10-18 23:39:32 -07001918 for_each_subsys(root, ss) {
1919 if (ss->can_attach) {
Li Zefan761b3ef2012-01-31 13:47:36 +08001920 retval = ss->can_attach(cgrp, &tset);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001921 if (retval) {
1922 /*
1923 * Remember on which subsystem the can_attach()
1924 * failed, so that we only call cancel_attach()
1925 * against the subsystems whose can_attach()
1926 * succeeded. (See below)
1927 */
1928 failed_ss = ss;
1929 goto out;
1930 }
Paul Menagebbcb81d2007-10-18 23:39:32 -07001931 }
1932 }
1933
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001934 newcg = find_css_set(tsk->cgroups, cgrp);
1935 if (!newcg) {
1936 retval = -ENOMEM;
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001937 goto out;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001938 }
1939
Colin Crossbefae2f2010-11-23 21:37:04 -08001940 task_lock(tsk);
1941 cg = tsk->cgroups;
1942 get_css_set(cg);
1943 task_unlock(tsk);
1944
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001945 cgroup_task_migrate(cgrp, oldcgrp, tsk, newcg);
Paul Menage817929e2007-10-18 23:39:36 -07001946
Paul Menagebbcb81d2007-10-18 23:39:32 -07001947 for_each_subsys(root, ss) {
Paul Jacksone18f6312008-02-07 00:13:44 -08001948 if (ss->attach)
Li Zefan761b3ef2012-01-31 13:47:36 +08001949 ss->attach(cgrp, &tset);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001950 }
Colin Crossc0f6fa82010-11-23 21:37:03 -08001951 set_bit(CGRP_RELEASABLE, &cgrp->flags);
Colin Crossbefae2f2010-11-23 21:37:04 -08001952 /* put_css_set will not destroy cg until after an RCU grace period */
1953 put_css_set(cg);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07001954
1955 /*
1956 * wake up rmdir() waiter. the rmdir should fail since the cgroup
1957 * is no longer empty.
1958 */
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07001959 cgroup_wakeup_rmdir_waiter(cgrp);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001960out:
1961 if (retval) {
1962 for_each_subsys(root, ss) {
1963 if (ss == failed_ss)
1964 /*
1965 * This subsystem was the one that failed the
1966 * can_attach() check earlier, so we don't need
1967 * to call cancel_attach() against it or any
1968 * remaining subsystems.
1969 */
1970 break;
1971 if (ss->cancel_attach)
Li Zefan761b3ef2012-01-31 13:47:36 +08001972 ss->cancel_attach(cgrp, &tset);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001973 }
1974 }
1975 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001976}
1977
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001978/**
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001979 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
1980 * @from: attach to all cgroups of a given task
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001981 * @tsk: the task to be attached
1982 */
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001983int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001984{
1985 struct cgroupfs_root *root;
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001986 int retval = 0;
1987
1988 cgroup_lock();
1989 for_each_active_root(root) {
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001990 struct cgroup *from_cg = task_cgroup_from_root(from, root);
1991
1992 retval = cgroup_attach_task(from_cg, tsk);
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001993 if (retval)
1994 break;
1995 }
1996 cgroup_unlock();
1997
1998 return retval;
1999}
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07002000EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02002001
Ben Blum74a11662011-05-26 16:25:20 -07002002/**
2003 * cgroup_attach_proc - attach all threads in a threadgroup to a cgroup
2004 * @cgrp: the cgroup to attach to
2005 * @leader: the threadgroup leader task_struct of the group to be attached
2006 *
Tejun Heo257058a2011-12-12 18:12:21 -08002007 * Call holding cgroup_mutex and the group_rwsem of the leader. Will take
2008 * task_lock of each thread in leader's threadgroup individually in turn.
Ben Blum74a11662011-05-26 16:25:20 -07002009 */
Kirill A. Shutemov1c6c3fa2011-12-27 07:46:25 +02002010static int cgroup_attach_proc(struct cgroup *cgrp, struct task_struct *leader)
Ben Blum74a11662011-05-26 16:25:20 -07002011{
2012 int retval, i, group_size;
2013 struct cgroup_subsys *ss, *failed_ss = NULL;
Ben Blum74a11662011-05-26 16:25:20 -07002014 /* guaranteed to be initialized later, but the compiler needs this */
Ben Blum74a11662011-05-26 16:25:20 -07002015 struct cgroupfs_root *root = cgrp->root;
2016 /* threadgroup list cursor and array */
2017 struct task_struct *tsk;
Tejun Heo134d3372011-12-12 18:12:21 -08002018 struct task_and_cgroup *tc;
Ben Blumd8466872011-05-26 16:25:21 -07002019 struct flex_array *group;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002020 struct cgroup_taskset tset = { };
Ben Blum74a11662011-05-26 16:25:20 -07002021
2022 /*
2023 * step 0: in order to do expensive, possibly blocking operations for
2024 * every thread, we cannot iterate the thread group list, since it needs
2025 * rcu or tasklist locked. instead, build an array of all threads in the
Tejun Heo257058a2011-12-12 18:12:21 -08002026 * group - group_rwsem prevents new threads from appearing, and if
2027 * threads exit, this will just be an over-estimate.
Ben Blum74a11662011-05-26 16:25:20 -07002028 */
2029 group_size = get_nr_threads(leader);
Ben Blumd8466872011-05-26 16:25:21 -07002030 /* flex_array supports very large thread-groups better than kmalloc. */
Tejun Heo134d3372011-12-12 18:12:21 -08002031 group = flex_array_alloc(sizeof(*tc), group_size, GFP_KERNEL);
Ben Blum74a11662011-05-26 16:25:20 -07002032 if (!group)
2033 return -ENOMEM;
Ben Blumd8466872011-05-26 16:25:21 -07002034 /* pre-allocate to guarantee space while iterating in rcu read-side. */
Li Zefan97630ec2013-03-12 15:36:00 -07002035 retval = flex_array_prealloc(group, 0, group_size, GFP_KERNEL);
Ben Blumd8466872011-05-26 16:25:21 -07002036 if (retval)
2037 goto out_free_group_list;
Ben Blum74a11662011-05-26 16:25:20 -07002038
Ben Blum74a11662011-05-26 16:25:20 -07002039 tsk = leader;
2040 i = 0;
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002041 /*
2042 * Prevent freeing of tasks while we take a snapshot. Tasks that are
2043 * already PF_EXITING could be freed from underneath us unless we
2044 * take an rcu_read_lock.
2045 */
2046 rcu_read_lock();
Ben Blum74a11662011-05-26 16:25:20 -07002047 do {
Tejun Heo134d3372011-12-12 18:12:21 -08002048 struct task_and_cgroup ent;
2049
Tejun Heocd3d0952011-12-12 18:12:21 -08002050 /* @tsk either already exited or can't exit until the end */
2051 if (tsk->flags & PF_EXITING)
2052 continue;
2053
Ben Blum74a11662011-05-26 16:25:20 -07002054 /* as per above, nr_threads may decrease, but not increase. */
2055 BUG_ON(i >= group_size);
Tejun Heo134d3372011-12-12 18:12:21 -08002056 ent.task = tsk;
2057 ent.cgrp = task_cgroup_from_root(tsk, root);
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08002058 /* nothing to do if this task is already in the cgroup */
2059 if (ent.cgrp == cgrp)
2060 continue;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002061 /*
2062 * saying GFP_ATOMIC has no effect here because we did prealloc
2063 * earlier, but it's good form to communicate our expectations.
2064 */
Tejun Heo134d3372011-12-12 18:12:21 -08002065 retval = flex_array_put(group, i, &ent, GFP_ATOMIC);
Ben Blumd8466872011-05-26 16:25:21 -07002066 BUG_ON(retval != 0);
Ben Blum74a11662011-05-26 16:25:20 -07002067 i++;
2068 } while_each_thread(leader, tsk);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002069 rcu_read_unlock();
Ben Blum74a11662011-05-26 16:25:20 -07002070 /* remember the number of threads in the array for later. */
2071 group_size = i;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002072 tset.tc_array = group;
2073 tset.tc_array_len = group_size;
Ben Blum74a11662011-05-26 16:25:20 -07002074
Tejun Heo134d3372011-12-12 18:12:21 -08002075 /* methods shouldn't be called if no task is actually migrating */
2076 retval = 0;
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08002077 if (!group_size)
Mandeep Singh Bainesb07ef772011-12-21 20:18:36 -08002078 goto out_free_group_list;
Tejun Heo134d3372011-12-12 18:12:21 -08002079
Ben Blum74a11662011-05-26 16:25:20 -07002080 /*
2081 * step 1: check that we can legitimately attach to the cgroup.
2082 */
2083 for_each_subsys(root, ss) {
2084 if (ss->can_attach) {
Li Zefan761b3ef2012-01-31 13:47:36 +08002085 retval = ss->can_attach(cgrp, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002086 if (retval) {
2087 failed_ss = ss;
2088 goto out_cancel_attach;
2089 }
2090 }
Ben Blum74a11662011-05-26 16:25:20 -07002091 }
2092
2093 /*
2094 * step 2: make sure css_sets exist for all threads to be migrated.
2095 * we use find_css_set, which allocates a new one if necessary.
2096 */
Ben Blum74a11662011-05-26 16:25:20 -07002097 for (i = 0; i < group_size; i++) {
Tejun Heo134d3372011-12-12 18:12:21 -08002098 tc = flex_array_get(group, i);
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002099 tc->cg = find_css_set(tc->task->cgroups, cgrp);
2100 if (!tc->cg) {
2101 retval = -ENOMEM;
2102 goto out_put_css_set_refs;
Ben Blum74a11662011-05-26 16:25:20 -07002103 }
2104 }
2105
2106 /*
Tejun Heo494c1672011-12-12 18:12:22 -08002107 * step 3: now that we're guaranteed success wrt the css_sets,
2108 * proceed to move all tasks to the new cgroup. There are no
2109 * failure cases after here, so this is the commit point.
Ben Blum74a11662011-05-26 16:25:20 -07002110 */
Ben Blum74a11662011-05-26 16:25:20 -07002111 for (i = 0; i < group_size; i++) {
Tejun Heo134d3372011-12-12 18:12:21 -08002112 tc = flex_array_get(group, i);
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002113 cgroup_task_migrate(cgrp, tc->cgrp, tc->task, tc->cg);
Ben Blum74a11662011-05-26 16:25:20 -07002114 }
2115 /* nothing is sensitive to fork() after this point. */
2116
2117 /*
Tejun Heo494c1672011-12-12 18:12:22 -08002118 * step 4: do subsystem attach callbacks.
Ben Blum74a11662011-05-26 16:25:20 -07002119 */
2120 for_each_subsys(root, ss) {
2121 if (ss->attach)
Li Zefan761b3ef2012-01-31 13:47:36 +08002122 ss->attach(cgrp, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002123 }
2124
2125 /*
2126 * step 5: success! and cleanup
2127 */
2128 synchronize_rcu();
2129 cgroup_wakeup_rmdir_waiter(cgrp);
2130 retval = 0;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002131out_put_css_set_refs:
2132 if (retval) {
2133 for (i = 0; i < group_size; i++) {
2134 tc = flex_array_get(group, i);
2135 if (!tc->cg)
2136 break;
2137 put_css_set(tc->cg);
2138 }
Ben Blum74a11662011-05-26 16:25:20 -07002139 }
2140out_cancel_attach:
Ben Blum74a11662011-05-26 16:25:20 -07002141 if (retval) {
2142 for_each_subsys(root, ss) {
Tejun Heo494c1672011-12-12 18:12:22 -08002143 if (ss == failed_ss)
Ben Blum74a11662011-05-26 16:25:20 -07002144 break;
Ben Blum74a11662011-05-26 16:25:20 -07002145 if (ss->cancel_attach)
Li Zefan761b3ef2012-01-31 13:47:36 +08002146 ss->cancel_attach(cgrp, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002147 }
2148 }
Ben Blum74a11662011-05-26 16:25:20 -07002149out_free_group_list:
Ben Blumd8466872011-05-26 16:25:21 -07002150 flex_array_free(group);
Ben Blum74a11662011-05-26 16:25:20 -07002151 return retval;
2152}
2153
Colin Cross4a121782011-07-12 19:53:24 -07002154static int cgroup_allow_attach(struct cgroup *cgrp, struct cgroup_taskset *tset)
2155{
2156 struct cgroup_subsys *ss;
2157 int ret;
2158
2159 for_each_subsys(cgrp->root, ss) {
2160 if (ss->allow_attach) {
2161 ret = ss->allow_attach(cgrp, tset);
2162 if (ret)
2163 return ret;
2164 } else {
2165 return -EACCES;
2166 }
2167 }
2168
2169 return 0;
2170}
2171
Ben Blum74a11662011-05-26 16:25:20 -07002172/*
2173 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08002174 * function to attach either it or all tasks in its threadgroup. Will lock
2175 * cgroup_mutex and threadgroup; may take task_lock of task.
Ben Blum74a11662011-05-26 16:25:20 -07002176 */
2177static int attach_task_by_pid(struct cgroup *cgrp, u64 pid, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002178{
Paul Menagebbcb81d2007-10-18 23:39:32 -07002179 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11002180 const struct cred *cred = current_cred(), *tcred;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002181 int ret;
2182
Ben Blum74a11662011-05-26 16:25:20 -07002183 if (!cgroup_lock_live_group(cgrp))
2184 return -ENODEV;
2185
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002186retry_find_task:
2187 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002188 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002189 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07002190 if (!tsk) {
Paul Menagebbcb81d2007-10-18 23:39:32 -07002191 rcu_read_unlock();
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002192 ret= -ESRCH;
2193 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002194 }
Ben Blum74a11662011-05-26 16:25:20 -07002195 /*
2196 * even if we're attaching all tasks in the thread group, we
2197 * only need to check permissions on one of them.
2198 */
David Howellsc69e8d92008-11-14 10:39:19 +11002199 tcred = __task_cred(tsk);
2200 if (cred->euid &&
2201 cred->euid != tcred->uid &&
2202 cred->euid != tcred->suid) {
Colin Cross4a121782011-07-12 19:53:24 -07002203 /*
2204 * if the default permission check fails, give each
2205 * cgroup a chance to extend the permission check
2206 */
2207 struct cgroup_taskset tset = { };
2208 tset.single.task = tsk;
2209 tset.single.cgrp = cgrp;
2210 ret = cgroup_allow_attach(cgrp, &tset);
2211 if (ret) {
2212 rcu_read_unlock();
2213 goto out_unlock_cgroup;
2214 }
Paul Menagebbcb81d2007-10-18 23:39:32 -07002215 }
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002216 } else
2217 tsk = current;
Tejun Heocd3d0952011-12-12 18:12:21 -08002218
2219 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002220 tsk = tsk->group_leader;
2221 get_task_struct(tsk);
2222 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08002223
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002224 threadgroup_lock(tsk);
2225 if (threadgroup) {
2226 if (!thread_group_leader(tsk)) {
2227 /*
2228 * a race with de_thread from another thread's exec()
2229 * may strip us of our leadership, if this happens,
2230 * there is no choice but to throw this task away and
2231 * try again; this is
2232 * "double-double-toil-and-trouble-check locking".
2233 */
2234 threadgroup_unlock(tsk);
2235 put_task_struct(tsk);
2236 goto retry_find_task;
2237 }
2238 ret = cgroup_attach_proc(cgrp, tsk);
2239 } else
2240 ret = cgroup_attach_task(cgrp, tsk);
Tejun Heocd3d0952011-12-12 18:12:21 -08002241 threadgroup_unlock(tsk);
2242
Paul Menagebbcb81d2007-10-18 23:39:32 -07002243 put_task_struct(tsk);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002244out_unlock_cgroup:
Ben Blum74a11662011-05-26 16:25:20 -07002245 cgroup_unlock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002246 return ret;
2247}
2248
Paul Menageaf351022008-07-25 01:47:01 -07002249static int cgroup_tasks_write(struct cgroup *cgrp, struct cftype *cft, u64 pid)
2250{
Ben Blum74a11662011-05-26 16:25:20 -07002251 return attach_task_by_pid(cgrp, pid, false);
2252}
2253
2254static int cgroup_procs_write(struct cgroup *cgrp, struct cftype *cft, u64 tgid)
2255{
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002256 return attach_task_by_pid(cgrp, tgid, true);
Paul Menageaf351022008-07-25 01:47:01 -07002257}
2258
Paul Menagee788e062008-07-25 01:46:59 -07002259/**
2260 * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive.
2261 * @cgrp: the cgroup to be checked for liveness
2262 *
Paul Menage84eea842008-07-25 01:47:00 -07002263 * On success, returns true; the lock should be later released with
2264 * cgroup_unlock(). On failure returns false with no lock held.
Paul Menagee788e062008-07-25 01:46:59 -07002265 */
Paul Menage84eea842008-07-25 01:47:00 -07002266bool cgroup_lock_live_group(struct cgroup *cgrp)
Paul Menagee788e062008-07-25 01:46:59 -07002267{
2268 mutex_lock(&cgroup_mutex);
2269 if (cgroup_is_removed(cgrp)) {
2270 mutex_unlock(&cgroup_mutex);
2271 return false;
2272 }
2273 return true;
2274}
Ben Blum67523c42010-03-10 15:22:11 -08002275EXPORT_SYMBOL_GPL(cgroup_lock_live_group);
Paul Menagee788e062008-07-25 01:46:59 -07002276
2277static int cgroup_release_agent_write(struct cgroup *cgrp, struct cftype *cft,
2278 const char *buffer)
2279{
2280 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
Evgeny Kuznetsovf4a25892010-10-27 15:33:37 -07002281 if (strlen(buffer) >= PATH_MAX)
2282 return -EINVAL;
Paul Menagee788e062008-07-25 01:46:59 -07002283 if (!cgroup_lock_live_group(cgrp))
2284 return -ENODEV;
Tejun Heoe25e2cb2011-12-12 18:12:21 -08002285 mutex_lock(&cgroup_root_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07002286 strcpy(cgrp->root->release_agent_path, buffer);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08002287 mutex_unlock(&cgroup_root_mutex);
Paul Menage84eea842008-07-25 01:47:00 -07002288 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07002289 return 0;
2290}
2291
2292static int cgroup_release_agent_show(struct cgroup *cgrp, struct cftype *cft,
2293 struct seq_file *seq)
2294{
2295 if (!cgroup_lock_live_group(cgrp))
2296 return -ENODEV;
2297 seq_puts(seq, cgrp->root->release_agent_path);
2298 seq_putc(seq, '\n');
Paul Menage84eea842008-07-25 01:47:00 -07002299 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07002300 return 0;
2301}
2302
Paul Menage84eea842008-07-25 01:47:00 -07002303/* A buffer size big enough for numbers or short strings */
2304#define CGROUP_LOCAL_BUFFER_SIZE 64
2305
Paul Menagee73d2c62008-04-29 01:00:06 -07002306static ssize_t cgroup_write_X64(struct cgroup *cgrp, struct cftype *cft,
Paul Menagef4c753b2008-04-29 00:59:56 -07002307 struct file *file,
2308 const char __user *userbuf,
2309 size_t nbytes, loff_t *unused_ppos)
Paul Menage355e0c42007-10-18 23:39:33 -07002310{
Paul Menage84eea842008-07-25 01:47:00 -07002311 char buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menage355e0c42007-10-18 23:39:33 -07002312 int retval = 0;
Paul Menage355e0c42007-10-18 23:39:33 -07002313 char *end;
2314
2315 if (!nbytes)
2316 return -EINVAL;
2317 if (nbytes >= sizeof(buffer))
2318 return -E2BIG;
2319 if (copy_from_user(buffer, userbuf, nbytes))
2320 return -EFAULT;
2321
2322 buffer[nbytes] = 0; /* nul-terminate */
Paul Menagee73d2c62008-04-29 01:00:06 -07002323 if (cft->write_u64) {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002324 u64 val = simple_strtoull(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07002325 if (*end)
2326 return -EINVAL;
2327 retval = cft->write_u64(cgrp, cft, val);
2328 } else {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002329 s64 val = simple_strtoll(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07002330 if (*end)
2331 return -EINVAL;
2332 retval = cft->write_s64(cgrp, cft, val);
2333 }
Paul Menage355e0c42007-10-18 23:39:33 -07002334 if (!retval)
2335 retval = nbytes;
2336 return retval;
2337}
2338
Paul Menagedb3b1492008-07-25 01:46:58 -07002339static ssize_t cgroup_write_string(struct cgroup *cgrp, struct cftype *cft,
2340 struct file *file,
2341 const char __user *userbuf,
2342 size_t nbytes, loff_t *unused_ppos)
2343{
Paul Menage84eea842008-07-25 01:47:00 -07002344 char local_buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagedb3b1492008-07-25 01:46:58 -07002345 int retval = 0;
2346 size_t max_bytes = cft->max_write_len;
2347 char *buffer = local_buffer;
2348
2349 if (!max_bytes)
2350 max_bytes = sizeof(local_buffer) - 1;
2351 if (nbytes >= max_bytes)
2352 return -E2BIG;
2353 /* Allocate a dynamic buffer if we need one */
2354 if (nbytes >= sizeof(local_buffer)) {
2355 buffer = kmalloc(nbytes + 1, GFP_KERNEL);
2356 if (buffer == NULL)
2357 return -ENOMEM;
2358 }
Li Zefan5a3eb9f2008-07-29 22:33:18 -07002359 if (nbytes && copy_from_user(buffer, userbuf, nbytes)) {
2360 retval = -EFAULT;
2361 goto out;
2362 }
Paul Menagedb3b1492008-07-25 01:46:58 -07002363
2364 buffer[nbytes] = 0; /* nul-terminate */
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002365 retval = cft->write_string(cgrp, cft, strstrip(buffer));
Paul Menagedb3b1492008-07-25 01:46:58 -07002366 if (!retval)
2367 retval = nbytes;
Li Zefan5a3eb9f2008-07-29 22:33:18 -07002368out:
Paul Menagedb3b1492008-07-25 01:46:58 -07002369 if (buffer != local_buffer)
2370 kfree(buffer);
2371 return retval;
2372}
2373
Paul Menageddbcc7e2007-10-18 23:39:30 -07002374static ssize_t cgroup_file_write(struct file *file, const char __user *buf,
2375 size_t nbytes, loff_t *ppos)
2376{
2377 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07002378 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002379
Li Zefan75139b82009-01-07 18:07:33 -08002380 if (cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07002381 return -ENODEV;
Paul Menage355e0c42007-10-18 23:39:33 -07002382 if (cft->write)
Paul Menagebd89aab2007-10-18 23:40:44 -07002383 return cft->write(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002384 if (cft->write_u64 || cft->write_s64)
2385 return cgroup_write_X64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagedb3b1492008-07-25 01:46:58 -07002386 if (cft->write_string)
2387 return cgroup_write_string(cgrp, cft, file, buf, nbytes, ppos);
Pavel Emelyanovd447ea22008-04-29 01:00:08 -07002388 if (cft->trigger) {
2389 int ret = cft->trigger(cgrp, (unsigned int)cft->private);
2390 return ret ? ret : nbytes;
2391 }
Paul Menage355e0c42007-10-18 23:39:33 -07002392 return -EINVAL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002393}
2394
Paul Menagef4c753b2008-04-29 00:59:56 -07002395static ssize_t cgroup_read_u64(struct cgroup *cgrp, struct cftype *cft,
2396 struct file *file,
2397 char __user *buf, size_t nbytes,
2398 loff_t *ppos)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002399{
Paul Menage84eea842008-07-25 01:47:00 -07002400 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagef4c753b2008-04-29 00:59:56 -07002401 u64 val = cft->read_u64(cgrp, cft);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002402 int len = sprintf(tmp, "%llu\n", (unsigned long long) val);
2403
2404 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2405}
2406
Paul Menagee73d2c62008-04-29 01:00:06 -07002407static ssize_t cgroup_read_s64(struct cgroup *cgrp, struct cftype *cft,
2408 struct file *file,
2409 char __user *buf, size_t nbytes,
2410 loff_t *ppos)
2411{
Paul Menage84eea842008-07-25 01:47:00 -07002412 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagee73d2c62008-04-29 01:00:06 -07002413 s64 val = cft->read_s64(cgrp, cft);
2414 int len = sprintf(tmp, "%lld\n", (long long) val);
2415
2416 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2417}
2418
Paul Menageddbcc7e2007-10-18 23:39:30 -07002419static ssize_t cgroup_file_read(struct file *file, char __user *buf,
2420 size_t nbytes, loff_t *ppos)
2421{
2422 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07002423 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002424
Li Zefan75139b82009-01-07 18:07:33 -08002425 if (cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07002426 return -ENODEV;
2427
2428 if (cft->read)
Paul Menagebd89aab2007-10-18 23:40:44 -07002429 return cft->read(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagef4c753b2008-04-29 00:59:56 -07002430 if (cft->read_u64)
2431 return cgroup_read_u64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002432 if (cft->read_s64)
2433 return cgroup_read_s64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002434 return -EINVAL;
2435}
2436
Paul Menage91796562008-04-29 01:00:01 -07002437/*
2438 * seqfile ops/methods for returning structured data. Currently just
2439 * supports string->u64 maps, but can be extended in future.
2440 */
2441
2442struct cgroup_seqfile_state {
2443 struct cftype *cft;
2444 struct cgroup *cgroup;
2445};
2446
2447static int cgroup_map_add(struct cgroup_map_cb *cb, const char *key, u64 value)
2448{
2449 struct seq_file *sf = cb->state;
2450 return seq_printf(sf, "%s %llu\n", key, (unsigned long long)value);
2451}
2452
2453static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2454{
2455 struct cgroup_seqfile_state *state = m->private;
2456 struct cftype *cft = state->cft;
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002457 if (cft->read_map) {
2458 struct cgroup_map_cb cb = {
2459 .fill = cgroup_map_add,
2460 .state = m,
2461 };
2462 return cft->read_map(state->cgroup, cft, &cb);
2463 }
2464 return cft->read_seq_string(state->cgroup, cft, m);
Paul Menage91796562008-04-29 01:00:01 -07002465}
2466
Adrian Bunk96930a62008-07-25 19:46:21 -07002467static int cgroup_seqfile_release(struct inode *inode, struct file *file)
Paul Menage91796562008-04-29 01:00:01 -07002468{
2469 struct seq_file *seq = file->private_data;
2470 kfree(seq->private);
2471 return single_release(inode, file);
2472}
2473
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002474static const struct file_operations cgroup_seqfile_operations = {
Paul Menage91796562008-04-29 01:00:01 -07002475 .read = seq_read,
Paul Menagee788e062008-07-25 01:46:59 -07002476 .write = cgroup_file_write,
Paul Menage91796562008-04-29 01:00:01 -07002477 .llseek = seq_lseek,
2478 .release = cgroup_seqfile_release,
2479};
2480
Paul Menageddbcc7e2007-10-18 23:39:30 -07002481static int cgroup_file_open(struct inode *inode, struct file *file)
2482{
2483 int err;
2484 struct cftype *cft;
2485
2486 err = generic_file_open(inode, file);
2487 if (err)
2488 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002489 cft = __d_cft(file->f_dentry);
Li Zefan75139b82009-01-07 18:07:33 -08002490
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002491 if (cft->read_map || cft->read_seq_string) {
Paul Menage91796562008-04-29 01:00:01 -07002492 struct cgroup_seqfile_state *state =
2493 kzalloc(sizeof(*state), GFP_USER);
2494 if (!state)
2495 return -ENOMEM;
2496 state->cft = cft;
2497 state->cgroup = __d_cgrp(file->f_dentry->d_parent);
2498 file->f_op = &cgroup_seqfile_operations;
2499 err = single_open(file, cgroup_seqfile_show, state);
2500 if (err < 0)
2501 kfree(state);
2502 } else if (cft->open)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002503 err = cft->open(inode, file);
2504 else
2505 err = 0;
2506
2507 return err;
2508}
2509
2510static int cgroup_file_release(struct inode *inode, struct file *file)
2511{
2512 struct cftype *cft = __d_cft(file->f_dentry);
2513 if (cft->release)
2514 return cft->release(inode, file);
2515 return 0;
2516}
2517
2518/*
2519 * cgroup_rename - Only allow simple rename of directories in place.
2520 */
2521static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry,
2522 struct inode *new_dir, struct dentry *new_dentry)
2523{
2524 if (!S_ISDIR(old_dentry->d_inode->i_mode))
2525 return -ENOTDIR;
2526 if (new_dentry->d_inode)
2527 return -EEXIST;
2528 if (old_dir != new_dir)
2529 return -EIO;
2530 return simple_rename(old_dir, old_dentry, new_dir, new_dentry);
2531}
2532
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002533static const struct file_operations cgroup_file_operations = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002534 .read = cgroup_file_read,
2535 .write = cgroup_file_write,
2536 .llseek = generic_file_llseek,
2537 .open = cgroup_file_open,
2538 .release = cgroup_file_release,
2539};
2540
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07002541static const struct inode_operations cgroup_dir_inode_operations = {
Al Viroc72a04e2011-01-14 05:31:45 +00002542 .lookup = cgroup_lookup,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002543 .mkdir = cgroup_mkdir,
2544 .rmdir = cgroup_rmdir,
2545 .rename = cgroup_rename,
2546};
2547
Al Viroc72a04e2011-01-14 05:31:45 +00002548static struct dentry *cgroup_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
2549{
2550 if (dentry->d_name.len > NAME_MAX)
2551 return ERR_PTR(-ENAMETOOLONG);
2552 d_add(dentry, NULL);
2553 return NULL;
2554}
2555
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08002556/*
2557 * Check if a file is a control file
2558 */
2559static inline struct cftype *__file_cft(struct file *file)
2560{
2561 if (file->f_dentry->d_inode->i_fop != &cgroup_file_operations)
2562 return ERR_PTR(-EINVAL);
2563 return __d_cft(file->f_dentry);
2564}
2565
Al Viroa5e7ed32011-07-26 01:55:55 -04002566static int cgroup_create_file(struct dentry *dentry, umode_t mode,
Nick Piggin5adcee12011-01-07 17:49:20 +11002567 struct super_block *sb)
2568{
Paul Menageddbcc7e2007-10-18 23:39:30 -07002569 struct inode *inode;
2570
2571 if (!dentry)
2572 return -ENOENT;
2573 if (dentry->d_inode)
2574 return -EEXIST;
2575
2576 inode = cgroup_new_inode(mode, sb);
2577 if (!inode)
2578 return -ENOMEM;
2579
2580 if (S_ISDIR(mode)) {
2581 inode->i_op = &cgroup_dir_inode_operations;
2582 inode->i_fop = &simple_dir_operations;
2583
2584 /* start off with i_nlink == 2 (for "." entry) */
2585 inc_nlink(inode);
2586
2587 /* start with the directory inode held, so that we can
2588 * populate it without racing with another mkdir */
Paul Menage817929e2007-10-18 23:39:36 -07002589 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002590 } else if (S_ISREG(mode)) {
2591 inode->i_size = 0;
2592 inode->i_fop = &cgroup_file_operations;
2593 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002594 d_instantiate(dentry, inode);
2595 dget(dentry); /* Extra count - pin the dentry in core */
2596 return 0;
2597}
2598
2599/*
Li Zefana043e3b2008-02-23 15:24:09 -08002600 * cgroup_create_dir - create a directory for an object.
2601 * @cgrp: the cgroup we create the directory for. It must have a valid
2602 * ->parent field. And we are going to fill its ->dentry field.
2603 * @dentry: dentry of the new cgroup
2604 * @mode: mode to set on new directory.
Paul Menageddbcc7e2007-10-18 23:39:30 -07002605 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002606static int cgroup_create_dir(struct cgroup *cgrp, struct dentry *dentry,
Al Viroa5e7ed32011-07-26 01:55:55 -04002607 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002608{
2609 struct dentry *parent;
2610 int error = 0;
2611
Paul Menagebd89aab2007-10-18 23:40:44 -07002612 parent = cgrp->parent->dentry;
2613 error = cgroup_create_file(dentry, S_IFDIR | mode, cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002614 if (!error) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002615 dentry->d_fsdata = cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002616 inc_nlink(parent->d_inode);
Paul Menagea47295e2009-01-07 18:07:44 -08002617 rcu_assign_pointer(cgrp->dentry, dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002618 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002619
2620 return error;
2621}
2622
Li Zefan099fca32009-04-02 16:57:29 -07002623/**
2624 * cgroup_file_mode - deduce file mode of a control file
2625 * @cft: the control file in question
2626 *
2627 * returns cft->mode if ->mode is not 0
2628 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
2629 * returns S_IRUGO if it has only a read handler
2630 * returns S_IWUSR if it has only a write hander
2631 */
Al Viroa5e7ed32011-07-26 01:55:55 -04002632static umode_t cgroup_file_mode(const struct cftype *cft)
Li Zefan099fca32009-04-02 16:57:29 -07002633{
Al Viroa5e7ed32011-07-26 01:55:55 -04002634 umode_t mode = 0;
Li Zefan099fca32009-04-02 16:57:29 -07002635
2636 if (cft->mode)
2637 return cft->mode;
2638
2639 if (cft->read || cft->read_u64 || cft->read_s64 ||
2640 cft->read_map || cft->read_seq_string)
2641 mode |= S_IRUGO;
2642
2643 if (cft->write || cft->write_u64 || cft->write_s64 ||
2644 cft->write_string || cft->trigger)
2645 mode |= S_IWUSR;
2646
2647 return mode;
2648}
2649
Paul Menagebd89aab2007-10-18 23:40:44 -07002650int cgroup_add_file(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002651 struct cgroup_subsys *subsys,
2652 const struct cftype *cft)
2653{
Paul Menagebd89aab2007-10-18 23:40:44 -07002654 struct dentry *dir = cgrp->dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002655 struct dentry *dentry;
2656 int error;
Al Viroa5e7ed32011-07-26 01:55:55 -04002657 umode_t mode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002658
2659 char name[MAX_CGROUP_TYPE_NAMELEN + MAX_CFTYPE_NAME + 2] = { 0 };
Paul Menagebd89aab2007-10-18 23:40:44 -07002660 if (subsys && !test_bit(ROOT_NOPREFIX, &cgrp->root->flags)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002661 strcpy(name, subsys->name);
2662 strcat(name, ".");
2663 }
2664 strcat(name, cft->name);
2665 BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex));
2666 dentry = lookup_one_len(name, dir, strlen(name));
2667 if (!IS_ERR(dentry)) {
Li Zefan099fca32009-04-02 16:57:29 -07002668 mode = cgroup_file_mode(cft);
2669 error = cgroup_create_file(dentry, mode | S_IFREG,
Paul Menagebd89aab2007-10-18 23:40:44 -07002670 cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002671 if (!error)
2672 dentry->d_fsdata = (void *)cft;
2673 dput(dentry);
2674 } else
2675 error = PTR_ERR(dentry);
2676 return error;
2677}
Ben Blume6a11052010-03-10 15:22:09 -08002678EXPORT_SYMBOL_GPL(cgroup_add_file);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002679
Paul Menagebd89aab2007-10-18 23:40:44 -07002680int cgroup_add_files(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002681 struct cgroup_subsys *subsys,
2682 const struct cftype cft[],
2683 int count)
2684{
2685 int i, err;
2686 for (i = 0; i < count; i++) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002687 err = cgroup_add_file(cgrp, subsys, &cft[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002688 if (err)
2689 return err;
2690 }
2691 return 0;
2692}
Ben Blume6a11052010-03-10 15:22:09 -08002693EXPORT_SYMBOL_GPL(cgroup_add_files);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002694
Li Zefana043e3b2008-02-23 15:24:09 -08002695/**
2696 * cgroup_task_count - count the number of tasks in a cgroup.
2697 * @cgrp: the cgroup in question
2698 *
2699 * Return the number of tasks in the cgroup.
2700 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002701int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002702{
2703 int count = 0;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07002704 struct cg_cgroup_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002705
Paul Menage817929e2007-10-18 23:39:36 -07002706 read_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07002707 list_for_each_entry(link, &cgrp->css_sets, cgrp_link_list) {
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07002708 count += atomic_read(&link->cg->refcount);
Paul Menage817929e2007-10-18 23:39:36 -07002709 }
2710 read_unlock(&css_set_lock);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002711 return count;
2712}
2713
2714/*
Paul Menage817929e2007-10-18 23:39:36 -07002715 * Advance a list_head iterator. The iterator should be positioned at
2716 * the start of a css_set
2717 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002718static void cgroup_advance_iter(struct cgroup *cgrp,
Paul Menage7717f7b2009-09-23 15:56:22 -07002719 struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002720{
2721 struct list_head *l = it->cg_link;
2722 struct cg_cgroup_link *link;
2723 struct css_set *cg;
2724
2725 /* Advance to the next non-empty css_set */
2726 do {
2727 l = l->next;
Paul Menagebd89aab2007-10-18 23:40:44 -07002728 if (l == &cgrp->css_sets) {
Paul Menage817929e2007-10-18 23:39:36 -07002729 it->cg_link = NULL;
2730 return;
2731 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002732 link = list_entry(l, struct cg_cgroup_link, cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07002733 cg = link->cg;
2734 } while (list_empty(&cg->tasks));
2735 it->cg_link = l;
2736 it->task = cg->tasks.next;
2737}
2738
Cliff Wickman31a7df02008-02-07 00:14:42 -08002739/*
2740 * To reduce the fork() overhead for systems that are not actually
2741 * using their cgroups capability, we don't maintain the lists running
2742 * through each css_set to its tasks until we see the list actually
2743 * used - in other words after the first call to cgroup_iter_start().
Cliff Wickman31a7df02008-02-07 00:14:42 -08002744 */
Adrian Bunk3df91fe2008-04-29 00:59:54 -07002745static void cgroup_enable_task_cg_lists(void)
Cliff Wickman31a7df02008-02-07 00:14:42 -08002746{
2747 struct task_struct *p, *g;
2748 write_lock(&css_set_lock);
2749 use_task_css_set_links = 1;
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01002750 /*
2751 * We need tasklist_lock because RCU is not safe against
2752 * while_each_thread(). Besides, a forking task that has passed
2753 * cgroup_post_fork() without seeing use_task_css_set_links = 1
2754 * is not guaranteed to have its child immediately visible in the
2755 * tasklist if we walk through it with RCU.
2756 */
2757 read_lock(&tasklist_lock);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002758 do_each_thread(g, p) {
2759 task_lock(p);
Li Zefan0e043882008-04-17 11:37:15 +08002760 /*
2761 * We should check if the process is exiting, otherwise
2762 * it will race with cgroup_exit() in that the list
2763 * entry won't be deleted though the process has exited.
2764 */
2765 if (!(p->flags & PF_EXITING) && list_empty(&p->cg_list))
Cliff Wickman31a7df02008-02-07 00:14:42 -08002766 list_add(&p->cg_list, &p->cgroups->tasks);
2767 task_unlock(p);
2768 } while_each_thread(g, p);
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01002769 read_unlock(&tasklist_lock);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002770 write_unlock(&css_set_lock);
2771}
2772
Paul Menagebd89aab2007-10-18 23:40:44 -07002773void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it)
Kirill A. Shutemovc6ca5752011-12-27 07:46:26 +02002774 __acquires(css_set_lock)
Paul Menage817929e2007-10-18 23:39:36 -07002775{
2776 /*
2777 * The first time anyone tries to iterate across a cgroup,
2778 * we need to enable the list linking each css_set to its
2779 * tasks, and fix up all existing tasks.
2780 */
Cliff Wickman31a7df02008-02-07 00:14:42 -08002781 if (!use_task_css_set_links)
2782 cgroup_enable_task_cg_lists();
2783
Paul Menage817929e2007-10-18 23:39:36 -07002784 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07002785 it->cg_link = &cgrp->css_sets;
2786 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07002787}
2788
Paul Menagebd89aab2007-10-18 23:40:44 -07002789struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -07002790 struct cgroup_iter *it)
2791{
2792 struct task_struct *res;
2793 struct list_head *l = it->task;
Lai Jiangshan2019f632009-01-07 18:07:36 -08002794 struct cg_cgroup_link *link;
Paul Menage817929e2007-10-18 23:39:36 -07002795
2796 /* If the iterator cg is NULL, we have no tasks */
2797 if (!it->cg_link)
2798 return NULL;
2799 res = list_entry(l, struct task_struct, cg_list);
2800 /* Advance iterator to find next entry */
2801 l = l->next;
Lai Jiangshan2019f632009-01-07 18:07:36 -08002802 link = list_entry(it->cg_link, struct cg_cgroup_link, cgrp_link_list);
2803 if (l == &link->cg->tasks) {
Paul Menage817929e2007-10-18 23:39:36 -07002804 /* We reached the end of this task list - move on to
2805 * the next cg_cgroup_link */
Paul Menagebd89aab2007-10-18 23:40:44 -07002806 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07002807 } else {
2808 it->task = l;
2809 }
2810 return res;
2811}
2812
Paul Menagebd89aab2007-10-18 23:40:44 -07002813void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it)
Kirill A. Shutemovc6ca5752011-12-27 07:46:26 +02002814 __releases(css_set_lock)
Paul Menage817929e2007-10-18 23:39:36 -07002815{
2816 read_unlock(&css_set_lock);
2817}
2818
Cliff Wickman31a7df02008-02-07 00:14:42 -08002819static inline int started_after_time(struct task_struct *t1,
2820 struct timespec *time,
2821 struct task_struct *t2)
2822{
2823 int start_diff = timespec_compare(&t1->start_time, time);
2824 if (start_diff > 0) {
2825 return 1;
2826 } else if (start_diff < 0) {
2827 return 0;
2828 } else {
2829 /*
2830 * Arbitrarily, if two processes started at the same
2831 * time, we'll say that the lower pointer value
2832 * started first. Note that t2 may have exited by now
2833 * so this may not be a valid pointer any longer, but
2834 * that's fine - it still serves to distinguish
2835 * between two tasks started (effectively) simultaneously.
2836 */
2837 return t1 > t2;
2838 }
2839}
2840
2841/*
2842 * This function is a callback from heap_insert() and is used to order
2843 * the heap.
2844 * In this case we order the heap in descending task start time.
2845 */
2846static inline int started_after(void *p1, void *p2)
2847{
2848 struct task_struct *t1 = p1;
2849 struct task_struct *t2 = p2;
2850 return started_after_time(t1, &t2->start_time, t2);
2851}
2852
2853/**
2854 * cgroup_scan_tasks - iterate though all the tasks in a cgroup
2855 * @scan: struct cgroup_scanner containing arguments for the scan
2856 *
2857 * Arguments include pointers to callback functions test_task() and
2858 * process_task().
2859 * Iterate through all the tasks in a cgroup, calling test_task() for each,
2860 * and if it returns true, call process_task() for it also.
2861 * The test_task pointer may be NULL, meaning always true (select all tasks).
2862 * Effectively duplicates cgroup_iter_{start,next,end}()
2863 * but does not lock css_set_lock for the call to process_task().
2864 * The struct cgroup_scanner may be embedded in any structure of the caller's
2865 * creation.
2866 * It is guaranteed that process_task() will act on every task that
2867 * is a member of the cgroup for the duration of this call. This
2868 * function may or may not call process_task() for tasks that exit
2869 * or move to a different cgroup during the call, or are forked or
2870 * move into the cgroup during the call.
2871 *
2872 * Note that test_task() may be called with locks held, and may in some
2873 * situations be called multiple times for the same task, so it should
2874 * be cheap.
2875 * If the heap pointer in the struct cgroup_scanner is non-NULL, a heap has been
2876 * pre-allocated and will be used for heap operations (and its "gt" member will
2877 * be overwritten), else a temporary heap will be used (allocation of which
2878 * may cause this function to fail).
2879 */
2880int cgroup_scan_tasks(struct cgroup_scanner *scan)
2881{
2882 int retval, i;
2883 struct cgroup_iter it;
2884 struct task_struct *p, *dropped;
2885 /* Never dereference latest_task, since it's not refcounted */
2886 struct task_struct *latest_task = NULL;
2887 struct ptr_heap tmp_heap;
2888 struct ptr_heap *heap;
2889 struct timespec latest_time = { 0, 0 };
2890
2891 if (scan->heap) {
2892 /* The caller supplied our heap and pre-allocated its memory */
2893 heap = scan->heap;
2894 heap->gt = &started_after;
2895 } else {
2896 /* We need to allocate our own heap memory */
2897 heap = &tmp_heap;
2898 retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after);
2899 if (retval)
2900 /* cannot allocate the heap */
2901 return retval;
2902 }
2903
2904 again:
2905 /*
2906 * Scan tasks in the cgroup, using the scanner's "test_task" callback
2907 * to determine which are of interest, and using the scanner's
2908 * "process_task" callback to process any of them that need an update.
2909 * Since we don't want to hold any locks during the task updates,
2910 * gather tasks to be processed in a heap structure.
2911 * The heap is sorted by descending task start time.
2912 * If the statically-sized heap fills up, we overflow tasks that
2913 * started later, and in future iterations only consider tasks that
2914 * started after the latest task in the previous pass. This
2915 * guarantees forward progress and that we don't miss any tasks.
2916 */
2917 heap->size = 0;
2918 cgroup_iter_start(scan->cg, &it);
2919 while ((p = cgroup_iter_next(scan->cg, &it))) {
2920 /*
2921 * Only affect tasks that qualify per the caller's callback,
2922 * if he provided one
2923 */
2924 if (scan->test_task && !scan->test_task(p, scan))
2925 continue;
2926 /*
2927 * Only process tasks that started after the last task
2928 * we processed
2929 */
2930 if (!started_after_time(p, &latest_time, latest_task))
2931 continue;
2932 dropped = heap_insert(heap, p);
2933 if (dropped == NULL) {
2934 /*
2935 * The new task was inserted; the heap wasn't
2936 * previously full
2937 */
2938 get_task_struct(p);
2939 } else if (dropped != p) {
2940 /*
2941 * The new task was inserted, and pushed out a
2942 * different task
2943 */
2944 get_task_struct(p);
2945 put_task_struct(dropped);
2946 }
2947 /*
2948 * Else the new task was newer than anything already in
2949 * the heap and wasn't inserted
2950 */
2951 }
2952 cgroup_iter_end(scan->cg, &it);
2953
2954 if (heap->size) {
2955 for (i = 0; i < heap->size; i++) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07002956 struct task_struct *q = heap->ptrs[i];
Cliff Wickman31a7df02008-02-07 00:14:42 -08002957 if (i == 0) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07002958 latest_time = q->start_time;
2959 latest_task = q;
Cliff Wickman31a7df02008-02-07 00:14:42 -08002960 }
2961 /* Process the task per the caller's callback */
Paul Jackson4fe91d52008-04-29 00:59:55 -07002962 scan->process_task(q, scan);
2963 put_task_struct(q);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002964 }
2965 /*
2966 * If we had to process any tasks at all, scan again
2967 * in case some of them were in the middle of forking
2968 * children that didn't get processed.
2969 * Not the most efficient way to do it, but it avoids
2970 * having to take callback_mutex in the fork path
2971 */
2972 goto again;
2973 }
2974 if (heap == &tmp_heap)
2975 heap_free(&tmp_heap);
2976 return 0;
2977}
2978
Paul Menage817929e2007-10-18 23:39:36 -07002979/*
Ben Blum102a7752009-09-23 15:56:26 -07002980 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07002981 *
2982 * Reading this file can return large amounts of data if a cgroup has
2983 * *lots* of attached tasks. So it may need several calls to read(),
2984 * but we cannot guarantee that the information we produce is correct
2985 * unless we produce it entirely atomically.
2986 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07002987 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07002988
Li Zefan24528252012-01-20 11:58:43 +08002989/* which pidlist file are we talking about? */
2990enum cgroup_filetype {
2991 CGROUP_FILE_PROCS,
2992 CGROUP_FILE_TASKS,
2993};
2994
2995/*
2996 * A pidlist is a list of pids that virtually represents the contents of one
2997 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
2998 * a pair (one each for procs, tasks) for each pid namespace that's relevant
2999 * to the cgroup.
3000 */
3001struct cgroup_pidlist {
3002 /*
3003 * used to find which pidlist is wanted. doesn't change as long as
3004 * this particular list stays in the list.
3005 */
3006 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
3007 /* array of xids */
3008 pid_t *list;
3009 /* how many elements the above list has */
3010 int length;
3011 /* how many files are using the current array */
3012 int use_count;
3013 /* each of these stored in a list by its cgroup */
3014 struct list_head links;
3015 /* pointer to the cgroup we belong to, for list removal purposes */
3016 struct cgroup *owner;
3017 /* protects the other fields */
3018 struct rw_semaphore mutex;
3019};
3020
Paul Menagebbcb81d2007-10-18 23:39:32 -07003021/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07003022 * The following two functions "fix" the issue where there are more pids
3023 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
3024 * TODO: replace with a kernel-wide solution to this problem
3025 */
3026#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
3027static void *pidlist_allocate(int count)
3028{
3029 if (PIDLIST_TOO_LARGE(count))
3030 return vmalloc(count * sizeof(pid_t));
3031 else
3032 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
3033}
3034static void pidlist_free(void *p)
3035{
3036 if (is_vmalloc_addr(p))
3037 vfree(p);
3038 else
3039 kfree(p);
3040}
3041static void *pidlist_resize(void *p, int newcount)
3042{
3043 void *newlist;
3044 /* note: if new alloc fails, old p will still be valid either way */
3045 if (is_vmalloc_addr(p)) {
3046 newlist = vmalloc(newcount * sizeof(pid_t));
3047 if (!newlist)
3048 return NULL;
3049 memcpy(newlist, p, newcount * sizeof(pid_t));
3050 vfree(p);
3051 } else {
3052 newlist = krealloc(p, newcount * sizeof(pid_t), GFP_KERNEL);
3053 }
3054 return newlist;
3055}
3056
3057/*
Ben Blum102a7752009-09-23 15:56:26 -07003058 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
3059 * If the new stripped list is sufficiently smaller and there's enough memory
3060 * to allocate a new buffer, will let go of the unneeded memory. Returns the
3061 * number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003062 */
Ben Blum102a7752009-09-23 15:56:26 -07003063/* is the size difference enough that we should re-allocate the array? */
3064#define PIDLIST_REALLOC_DIFFERENCE(old, new) ((old) - PAGE_SIZE >= (new))
3065static int pidlist_uniq(pid_t **p, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003066{
Ben Blum102a7752009-09-23 15:56:26 -07003067 int src, dest = 1;
3068 pid_t *list = *p;
3069 pid_t *newlist;
3070
3071 /*
3072 * we presume the 0th element is unique, so i starts at 1. trivial
3073 * edge cases first; no work needs to be done for either
3074 */
3075 if (length == 0 || length == 1)
3076 return length;
3077 /* src and dest walk down the list; dest counts unique elements */
3078 for (src = 1; src < length; src++) {
3079 /* find next unique element */
3080 while (list[src] == list[src-1]) {
3081 src++;
3082 if (src == length)
3083 goto after;
3084 }
3085 /* dest always points to where the next unique element goes */
3086 list[dest] = list[src];
3087 dest++;
3088 }
3089after:
3090 /*
3091 * if the length difference is large enough, we want to allocate a
3092 * smaller buffer to save memory. if this fails due to out of memory,
3093 * we'll just stay with what we've got.
3094 */
3095 if (PIDLIST_REALLOC_DIFFERENCE(length, dest)) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07003096 newlist = pidlist_resize(list, dest);
Ben Blum102a7752009-09-23 15:56:26 -07003097 if (newlist)
3098 *p = newlist;
3099 }
3100 return dest;
3101}
3102
3103static int cmppid(const void *a, const void *b)
3104{
3105 return *(pid_t *)a - *(pid_t *)b;
3106}
3107
3108/*
Ben Blum72a8cb32009-09-23 15:56:27 -07003109 * find the appropriate pidlist for our purpose (given procs vs tasks)
3110 * returns with the lock on that pidlist already held, and takes care
3111 * of the use count, or returns NULL with no locks held if we're out of
3112 * memory.
3113 */
3114static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
3115 enum cgroup_filetype type)
3116{
3117 struct cgroup_pidlist *l;
3118 /* don't need task_nsproxy() if we're looking at ourself */
Li Zefanb70cc5f2010-03-10 15:22:12 -08003119 struct pid_namespace *ns = current->nsproxy->pid_ns;
3120
Ben Blum72a8cb32009-09-23 15:56:27 -07003121 /*
3122 * We can't drop the pidlist_mutex before taking the l->mutex in case
3123 * the last ref-holder is trying to remove l from the list at the same
3124 * time. Holding the pidlist_mutex precludes somebody taking whichever
3125 * list we find out from under us - compare release_pid_array().
3126 */
3127 mutex_lock(&cgrp->pidlist_mutex);
3128 list_for_each_entry(l, &cgrp->pidlists, links) {
3129 if (l->key.type == type && l->key.ns == ns) {
Ben Blum72a8cb32009-09-23 15:56:27 -07003130 /* make sure l doesn't vanish out from under us */
3131 down_write(&l->mutex);
3132 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003133 return l;
3134 }
3135 }
3136 /* entry not found; create a new one */
3137 l = kmalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
3138 if (!l) {
3139 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003140 return l;
3141 }
3142 init_rwsem(&l->mutex);
3143 down_write(&l->mutex);
3144 l->key.type = type;
Li Zefanb70cc5f2010-03-10 15:22:12 -08003145 l->key.ns = get_pid_ns(ns);
Ben Blum72a8cb32009-09-23 15:56:27 -07003146 l->use_count = 0; /* don't increment here */
3147 l->list = NULL;
3148 l->owner = cgrp;
3149 list_add(&l->links, &cgrp->pidlists);
3150 mutex_unlock(&cgrp->pidlist_mutex);
3151 return l;
3152}
3153
3154/*
Ben Blum102a7752009-09-23 15:56:26 -07003155 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
3156 */
Ben Blum72a8cb32009-09-23 15:56:27 -07003157static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
3158 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07003159{
3160 pid_t *array;
3161 int length;
3162 int pid, n = 0; /* used for populating the array */
Paul Menage817929e2007-10-18 23:39:36 -07003163 struct cgroup_iter it;
3164 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07003165 struct cgroup_pidlist *l;
3166
3167 /*
3168 * If cgroup gets more users after we read count, we won't have
3169 * enough space - tough. This race is indistinguishable to the
3170 * caller from the case that the additional cgroup users didn't
3171 * show up until sometime later on.
3172 */
3173 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003174 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07003175 if (!array)
3176 return -ENOMEM;
3177 /* now, populate the array */
Paul Menagebd89aab2007-10-18 23:40:44 -07003178 cgroup_iter_start(cgrp, &it);
3179 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Ben Blum102a7752009-09-23 15:56:26 -07003180 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07003181 break;
Ben Blum102a7752009-09-23 15:56:26 -07003182 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07003183 if (type == CGROUP_FILE_PROCS)
3184 pid = task_tgid_vnr(tsk);
3185 else
3186 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07003187 if (pid > 0) /* make sure to only use valid results */
3188 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07003189 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003190 cgroup_iter_end(cgrp, &it);
Ben Blum102a7752009-09-23 15:56:26 -07003191 length = n;
3192 /* now sort & (if procs) strip out duplicates */
3193 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07003194 if (type == CGROUP_FILE_PROCS)
Ben Blum102a7752009-09-23 15:56:26 -07003195 length = pidlist_uniq(&array, length);
Ben Blum72a8cb32009-09-23 15:56:27 -07003196 l = cgroup_pidlist_find(cgrp, type);
3197 if (!l) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07003198 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07003199 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07003200 }
Ben Blum72a8cb32009-09-23 15:56:27 -07003201 /* store array, freeing old if necessary - lock already held */
Ben Blumd1d9fd32009-09-23 15:56:28 -07003202 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07003203 l->list = array;
3204 l->length = length;
3205 l->use_count++;
3206 up_write(&l->mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003207 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07003208 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003209}
3210
Balbir Singh846c7bb2007-10-18 23:39:44 -07003211/**
Li Zefana043e3b2008-02-23 15:24:09 -08003212 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07003213 * @stats: cgroupstats to fill information into
3214 * @dentry: A dentry entry belonging to the cgroup for which stats have
3215 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08003216 *
3217 * Build and fill cgroupstats so that taskstats can export it to user
3218 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003219 */
3220int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
3221{
3222 int ret = -EINVAL;
Paul Menagebd89aab2007-10-18 23:40:44 -07003223 struct cgroup *cgrp;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003224 struct cgroup_iter it;
3225 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08003226
Balbir Singh846c7bb2007-10-18 23:39:44 -07003227 /*
Li Zefan33d283b2008-11-19 15:36:48 -08003228 * Validate dentry by checking the superblock operations,
3229 * and make sure it's a directory.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003230 */
Li Zefan33d283b2008-11-19 15:36:48 -08003231 if (dentry->d_sb->s_op != &cgroup_ops ||
3232 !S_ISDIR(dentry->d_inode->i_mode))
Balbir Singh846c7bb2007-10-18 23:39:44 -07003233 goto err;
3234
3235 ret = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07003236 cgrp = dentry->d_fsdata;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003237
Paul Menagebd89aab2007-10-18 23:40:44 -07003238 cgroup_iter_start(cgrp, &it);
3239 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07003240 switch (tsk->state) {
3241 case TASK_RUNNING:
3242 stats->nr_running++;
3243 break;
3244 case TASK_INTERRUPTIBLE:
3245 stats->nr_sleeping++;
3246 break;
3247 case TASK_UNINTERRUPTIBLE:
3248 stats->nr_uninterruptible++;
3249 break;
3250 case TASK_STOPPED:
3251 stats->nr_stopped++;
3252 break;
3253 default:
3254 if (delayacct_is_task_waiting_on_io(tsk))
3255 stats->nr_io_wait++;
3256 break;
3257 }
3258 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003259 cgroup_iter_end(cgrp, &it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07003260
Balbir Singh846c7bb2007-10-18 23:39:44 -07003261err:
3262 return ret;
3263}
3264
Paul Menage8f3ff202009-09-23 15:56:25 -07003265
Paul Menagecc31edc2008-10-18 20:28:04 -07003266/*
Ben Blum102a7752009-09-23 15:56:26 -07003267 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07003268 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07003269 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07003270 */
3271
Ben Blum102a7752009-09-23 15:56:26 -07003272static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003273{
3274 /*
3275 * Initially we receive a position value that corresponds to
3276 * one more than the last pid shown (or 0 on the first call or
3277 * after a seek to the start). Use a binary-search to find the
3278 * next pid to display, if any
3279 */
Ben Blum102a7752009-09-23 15:56:26 -07003280 struct cgroup_pidlist *l = s->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07003281 int index = 0, pid = *pos;
3282 int *iter;
3283
Ben Blum102a7752009-09-23 15:56:26 -07003284 down_read(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003285 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07003286 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11003287
Paul Menagecc31edc2008-10-18 20:28:04 -07003288 while (index < end) {
3289 int mid = (index + end) / 2;
Ben Blum102a7752009-09-23 15:56:26 -07003290 if (l->list[mid] == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07003291 index = mid;
3292 break;
Ben Blum102a7752009-09-23 15:56:26 -07003293 } else if (l->list[mid] <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07003294 index = mid + 1;
3295 else
3296 end = mid;
3297 }
3298 }
3299 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07003300 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07003301 return NULL;
3302 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07003303 iter = l->list + index;
Paul Menagecc31edc2008-10-18 20:28:04 -07003304 *pos = *iter;
3305 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003306}
3307
Ben Blum102a7752009-09-23 15:56:26 -07003308static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003309{
Ben Blum102a7752009-09-23 15:56:26 -07003310 struct cgroup_pidlist *l = s->private;
3311 up_read(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003312}
3313
Ben Blum102a7752009-09-23 15:56:26 -07003314static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003315{
Ben Blum102a7752009-09-23 15:56:26 -07003316 struct cgroup_pidlist *l = s->private;
3317 pid_t *p = v;
3318 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07003319 /*
3320 * Advance to the next pid in the array. If this goes off the
3321 * end, we're done
3322 */
3323 p++;
3324 if (p >= end) {
3325 return NULL;
3326 } else {
3327 *pos = *p;
3328 return p;
3329 }
3330}
3331
Ben Blum102a7752009-09-23 15:56:26 -07003332static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003333{
3334 return seq_printf(s, "%d\n", *(int *)v);
3335}
3336
Ben Blum102a7752009-09-23 15:56:26 -07003337/*
3338 * seq_operations functions for iterating on pidlists through seq_file -
3339 * independent of whether it's tasks or procs
3340 */
3341static const struct seq_operations cgroup_pidlist_seq_operations = {
3342 .start = cgroup_pidlist_start,
3343 .stop = cgroup_pidlist_stop,
3344 .next = cgroup_pidlist_next,
3345 .show = cgroup_pidlist_show,
Paul Menagecc31edc2008-10-18 20:28:04 -07003346};
3347
Ben Blum102a7752009-09-23 15:56:26 -07003348static void cgroup_release_pid_array(struct cgroup_pidlist *l)
Paul Menagecc31edc2008-10-18 20:28:04 -07003349{
Ben Blum72a8cb32009-09-23 15:56:27 -07003350 /*
3351 * the case where we're the last user of this particular pidlist will
3352 * have us remove it from the cgroup's list, which entails taking the
3353 * mutex. since in pidlist_find the pidlist->lock depends on cgroup->
3354 * pidlist_mutex, we have to take pidlist_mutex first.
3355 */
3356 mutex_lock(&l->owner->pidlist_mutex);
Ben Blum102a7752009-09-23 15:56:26 -07003357 down_write(&l->mutex);
3358 BUG_ON(!l->use_count);
3359 if (!--l->use_count) {
Ben Blum72a8cb32009-09-23 15:56:27 -07003360 /* we're the last user if refcount is 0; remove and free */
3361 list_del(&l->links);
3362 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003363 pidlist_free(l->list);
Ben Blum72a8cb32009-09-23 15:56:27 -07003364 put_pid_ns(l->key.ns);
3365 up_write(&l->mutex);
3366 kfree(l);
3367 return;
Paul Menagecc31edc2008-10-18 20:28:04 -07003368 }
Ben Blum72a8cb32009-09-23 15:56:27 -07003369 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blum102a7752009-09-23 15:56:26 -07003370 up_write(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003371}
3372
Ben Blum102a7752009-09-23 15:56:26 -07003373static int cgroup_pidlist_release(struct inode *inode, struct file *file)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003374{
Ben Blum102a7752009-09-23 15:56:26 -07003375 struct cgroup_pidlist *l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003376 if (!(file->f_mode & FMODE_READ))
3377 return 0;
Ben Blum102a7752009-09-23 15:56:26 -07003378 /*
3379 * the seq_file will only be initialized if the file was opened for
3380 * reading; hence we check if it's not null only in that case.
3381 */
3382 l = ((struct seq_file *)file->private_data)->private;
3383 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07003384 return seq_release(inode, file);
3385}
3386
Ben Blum102a7752009-09-23 15:56:26 -07003387static const struct file_operations cgroup_pidlist_operations = {
Paul Menagecc31edc2008-10-18 20:28:04 -07003388 .read = seq_read,
3389 .llseek = seq_lseek,
3390 .write = cgroup_file_write,
Ben Blum102a7752009-09-23 15:56:26 -07003391 .release = cgroup_pidlist_release,
Paul Menagecc31edc2008-10-18 20:28:04 -07003392};
3393
3394/*
Ben Blum102a7752009-09-23 15:56:26 -07003395 * The following functions handle opens on a file that displays a pidlist
3396 * (tasks or procs). Prepare an array of the process/thread IDs of whoever's
3397 * in the cgroup.
Paul Menagecc31edc2008-10-18 20:28:04 -07003398 */
Ben Blum102a7752009-09-23 15:56:26 -07003399/* helper function for the two below it */
Ben Blum72a8cb32009-09-23 15:56:27 -07003400static int cgroup_pidlist_open(struct file *file, enum cgroup_filetype type)
Paul Menagecc31edc2008-10-18 20:28:04 -07003401{
3402 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Ben Blum72a8cb32009-09-23 15:56:27 -07003403 struct cgroup_pidlist *l;
Paul Menagecc31edc2008-10-18 20:28:04 -07003404 int retval;
3405
3406 /* Nothing to do for write-only files */
3407 if (!(file->f_mode & FMODE_READ))
3408 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003409
Ben Blum102a7752009-09-23 15:56:26 -07003410 /* have the array populated */
Ben Blum72a8cb32009-09-23 15:56:27 -07003411 retval = pidlist_array_load(cgrp, type, &l);
Ben Blum102a7752009-09-23 15:56:26 -07003412 if (retval)
3413 return retval;
3414 /* configure file information */
3415 file->f_op = &cgroup_pidlist_operations;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003416
Ben Blum102a7752009-09-23 15:56:26 -07003417 retval = seq_open(file, &cgroup_pidlist_seq_operations);
Paul Menagecc31edc2008-10-18 20:28:04 -07003418 if (retval) {
Ben Blum102a7752009-09-23 15:56:26 -07003419 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07003420 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003421 }
Ben Blum102a7752009-09-23 15:56:26 -07003422 ((struct seq_file *)file->private_data)->private = l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003423 return 0;
3424}
Ben Blum102a7752009-09-23 15:56:26 -07003425static int cgroup_tasks_open(struct inode *unused, struct file *file)
3426{
Ben Blum72a8cb32009-09-23 15:56:27 -07003427 return cgroup_pidlist_open(file, CGROUP_FILE_TASKS);
Ben Blum102a7752009-09-23 15:56:26 -07003428}
3429static int cgroup_procs_open(struct inode *unused, struct file *file)
3430{
Ben Blum72a8cb32009-09-23 15:56:27 -07003431 return cgroup_pidlist_open(file, CGROUP_FILE_PROCS);
Ben Blum102a7752009-09-23 15:56:26 -07003432}
Paul Menagebbcb81d2007-10-18 23:39:32 -07003433
Paul Menagebd89aab2007-10-18 23:40:44 -07003434static u64 cgroup_read_notify_on_release(struct cgroup *cgrp,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003435 struct cftype *cft)
3436{
Paul Menagebd89aab2007-10-18 23:40:44 -07003437 return notify_on_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003438}
3439
Paul Menage6379c102008-07-25 01:47:01 -07003440static int cgroup_write_notify_on_release(struct cgroup *cgrp,
3441 struct cftype *cft,
3442 u64 val)
3443{
3444 clear_bit(CGRP_RELEASABLE, &cgrp->flags);
3445 if (val)
3446 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3447 else
3448 clear_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3449 return 0;
3450}
3451
Paul Menagebbcb81d2007-10-18 23:39:32 -07003452/*
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003453 * Unregister event and free resources.
3454 *
3455 * Gets called from workqueue.
3456 */
3457static void cgroup_event_remove(struct work_struct *work)
3458{
3459 struct cgroup_event *event = container_of(work, struct cgroup_event,
3460 remove);
3461 struct cgroup *cgrp = event->cgrp;
3462
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003463 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3464
3465 eventfd_ctx_put(event->eventfd);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003466 kfree(event);
Kirill A. Shutemova0a4db52010-03-10 15:22:34 -08003467 dput(cgrp->dentry);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003468}
3469
3470/*
3471 * Gets called on POLLHUP on eventfd when user closes it.
3472 *
3473 * Called with wqh->lock held and interrupts disabled.
3474 */
3475static int cgroup_event_wake(wait_queue_t *wait, unsigned mode,
3476 int sync, void *key)
3477{
3478 struct cgroup_event *event = container_of(wait,
3479 struct cgroup_event, wait);
3480 struct cgroup *cgrp = event->cgrp;
3481 unsigned long flags = (unsigned long)key;
3482
3483 if (flags & POLLHUP) {
Changli Gaoa93d2f12010-05-07 14:33:26 +08003484 __remove_wait_queue(event->wqh, &event->wait);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003485 spin_lock(&cgrp->event_list_lock);
3486 list_del(&event->list);
3487 spin_unlock(&cgrp->event_list_lock);
3488 /*
3489 * We are in atomic context, but cgroup_event_remove() may
3490 * sleep, so we have to call it in workqueue.
3491 */
3492 schedule_work(&event->remove);
3493 }
3494
3495 return 0;
3496}
3497
3498static void cgroup_event_ptable_queue_proc(struct file *file,
3499 wait_queue_head_t *wqh, poll_table *pt)
3500{
3501 struct cgroup_event *event = container_of(pt,
3502 struct cgroup_event, pt);
3503
3504 event->wqh = wqh;
3505 add_wait_queue(wqh, &event->wait);
3506}
3507
3508/*
3509 * Parse input and register new cgroup event handler.
3510 *
3511 * Input must be in format '<event_fd> <control_fd> <args>'.
3512 * Interpretation of args is defined by control file implementation.
3513 */
3514static int cgroup_write_event_control(struct cgroup *cgrp, struct cftype *cft,
3515 const char *buffer)
3516{
3517 struct cgroup_event *event = NULL;
Li Zefan29279372013-02-18 14:13:35 +08003518 struct cgroup *cgrp_cfile;
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003519 unsigned int efd, cfd;
3520 struct file *efile = NULL;
3521 struct file *cfile = NULL;
3522 char *endp;
3523 int ret;
3524
3525 efd = simple_strtoul(buffer, &endp, 10);
3526 if (*endp != ' ')
3527 return -EINVAL;
3528 buffer = endp + 1;
3529
3530 cfd = simple_strtoul(buffer, &endp, 10);
3531 if ((*endp != ' ') && (*endp != '\0'))
3532 return -EINVAL;
3533 buffer = endp + 1;
3534
3535 event = kzalloc(sizeof(*event), GFP_KERNEL);
3536 if (!event)
3537 return -ENOMEM;
3538 event->cgrp = cgrp;
3539 INIT_LIST_HEAD(&event->list);
3540 init_poll_funcptr(&event->pt, cgroup_event_ptable_queue_proc);
3541 init_waitqueue_func_entry(&event->wait, cgroup_event_wake);
3542 INIT_WORK(&event->remove, cgroup_event_remove);
3543
3544 efile = eventfd_fget(efd);
3545 if (IS_ERR(efile)) {
3546 ret = PTR_ERR(efile);
3547 goto fail;
3548 }
3549
3550 event->eventfd = eventfd_ctx_fileget(efile);
3551 if (IS_ERR(event->eventfd)) {
3552 ret = PTR_ERR(event->eventfd);
3553 goto fail;
3554 }
3555
3556 cfile = fget(cfd);
3557 if (!cfile) {
3558 ret = -EBADF;
3559 goto fail;
3560 }
3561
3562 /* the process need read permission on control file */
Al Viro3bfa7842011-06-19 12:55:10 -04003563 /* AV: shouldn't we check that it's been opened for read instead? */
3564 ret = inode_permission(cfile->f_path.dentry->d_inode, MAY_READ);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003565 if (ret < 0)
3566 goto fail;
3567
3568 event->cft = __file_cft(cfile);
3569 if (IS_ERR(event->cft)) {
3570 ret = PTR_ERR(event->cft);
3571 goto fail;
3572 }
3573
Li Zefan29279372013-02-18 14:13:35 +08003574 /*
3575 * The file to be monitored must be in the same cgroup as
3576 * cgroup.event_control is.
3577 */
3578 cgrp_cfile = __d_cgrp(cfile->f_dentry->d_parent);
3579 if (cgrp_cfile != cgrp) {
3580 ret = -EINVAL;
3581 goto fail;
3582 }
3583
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003584 if (!event->cft->register_event || !event->cft->unregister_event) {
3585 ret = -EINVAL;
3586 goto fail;
3587 }
3588
3589 ret = event->cft->register_event(cgrp, event->cft,
3590 event->eventfd, buffer);
3591 if (ret)
3592 goto fail;
3593
3594 if (efile->f_op->poll(efile, &event->pt) & POLLHUP) {
3595 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3596 ret = 0;
3597 goto fail;
3598 }
3599
Kirill A. Shutemova0a4db52010-03-10 15:22:34 -08003600 /*
3601 * Events should be removed after rmdir of cgroup directory, but before
3602 * destroying subsystem state objects. Let's take reference to cgroup
3603 * directory dentry to do that.
3604 */
3605 dget(cgrp->dentry);
3606
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003607 spin_lock(&cgrp->event_list_lock);
3608 list_add(&event->list, &cgrp->event_list);
3609 spin_unlock(&cgrp->event_list_lock);
3610
3611 fput(cfile);
3612 fput(efile);
3613
3614 return 0;
3615
3616fail:
3617 if (cfile)
3618 fput(cfile);
3619
3620 if (event && event->eventfd && !IS_ERR(event->eventfd))
3621 eventfd_ctx_put(event->eventfd);
3622
3623 if (!IS_ERR_OR_NULL(efile))
3624 fput(efile);
3625
3626 kfree(event);
3627
3628 return ret;
3629}
3630
Daniel Lezcano97978e62010-10-27 15:33:35 -07003631static u64 cgroup_clone_children_read(struct cgroup *cgrp,
3632 struct cftype *cft)
3633{
3634 return clone_children(cgrp);
3635}
3636
3637static int cgroup_clone_children_write(struct cgroup *cgrp,
3638 struct cftype *cft,
3639 u64 val)
3640{
3641 if (val)
3642 set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3643 else
3644 clear_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3645 return 0;
3646}
3647
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003648/*
Paul Menagebbcb81d2007-10-18 23:39:32 -07003649 * for the common functions, 'private' gives the type of file
3650 */
Ben Blum102a7752009-09-23 15:56:26 -07003651/* for hysterical raisins, we can't put this on the older files */
3652#define CGROUP_FILE_GENERIC_PREFIX "cgroup."
Paul Menage81a6a5c2007-10-18 23:39:38 -07003653static struct cftype files[] = {
3654 {
3655 .name = "tasks",
3656 .open = cgroup_tasks_open,
Paul Menageaf351022008-07-25 01:47:01 -07003657 .write_u64 = cgroup_tasks_write,
Ben Blum102a7752009-09-23 15:56:26 -07003658 .release = cgroup_pidlist_release,
Li Zefan099fca32009-04-02 16:57:29 -07003659 .mode = S_IRUGO | S_IWUSR,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003660 },
Ben Blum102a7752009-09-23 15:56:26 -07003661 {
3662 .name = CGROUP_FILE_GENERIC_PREFIX "procs",
3663 .open = cgroup_procs_open,
Ben Blum74a11662011-05-26 16:25:20 -07003664 .write_u64 = cgroup_procs_write,
Ben Blum102a7752009-09-23 15:56:26 -07003665 .release = cgroup_pidlist_release,
Ben Blum74a11662011-05-26 16:25:20 -07003666 .mode = S_IRUGO | S_IWUSR,
Ben Blum102a7752009-09-23 15:56:26 -07003667 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003668 {
3669 .name = "notify_on_release",
Paul Menagef4c753b2008-04-29 00:59:56 -07003670 .read_u64 = cgroup_read_notify_on_release,
Paul Menage6379c102008-07-25 01:47:01 -07003671 .write_u64 = cgroup_write_notify_on_release,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003672 },
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003673 {
3674 .name = CGROUP_FILE_GENERIC_PREFIX "event_control",
3675 .write_string = cgroup_write_event_control,
3676 .mode = S_IWUGO,
3677 },
Daniel Lezcano97978e62010-10-27 15:33:35 -07003678 {
3679 .name = "cgroup.clone_children",
3680 .read_u64 = cgroup_clone_children_read,
3681 .write_u64 = cgroup_clone_children_write,
3682 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003683};
3684
3685static struct cftype cft_release_agent = {
3686 .name = "release_agent",
Paul Menagee788e062008-07-25 01:46:59 -07003687 .read_seq_string = cgroup_release_agent_show,
3688 .write_string = cgroup_release_agent_write,
3689 .max_write_len = PATH_MAX,
Paul Menagebbcb81d2007-10-18 23:39:32 -07003690};
3691
Paul Menagebd89aab2007-10-18 23:40:44 -07003692static int cgroup_populate_dir(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003693{
3694 int err;
3695 struct cgroup_subsys *ss;
3696
3697 /* First clear out any existing files */
Paul Menagebd89aab2007-10-18 23:40:44 -07003698 cgroup_clear_directory(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003699
Paul Menagebd89aab2007-10-18 23:40:44 -07003700 err = cgroup_add_files(cgrp, NULL, files, ARRAY_SIZE(files));
Paul Menagebbcb81d2007-10-18 23:39:32 -07003701 if (err < 0)
3702 return err;
3703
Paul Menagebd89aab2007-10-18 23:40:44 -07003704 if (cgrp == cgrp->top_cgroup) {
3705 if ((err = cgroup_add_file(cgrp, NULL, &cft_release_agent)) < 0)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003706 return err;
3707 }
3708
Paul Menagebd89aab2007-10-18 23:40:44 -07003709 for_each_subsys(cgrp->root, ss) {
3710 if (ss->populate && (err = ss->populate(ss, cgrp)) < 0)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003711 return err;
3712 }
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003713 /* This cgroup is ready now */
3714 for_each_subsys(cgrp->root, ss) {
3715 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3716 /*
3717 * Update id->css pointer and make this css visible from
3718 * CSS ID functions. This pointer will be dereferened
3719 * from RCU-read-side without locks.
3720 */
3721 if (css->id)
3722 rcu_assign_pointer(css->id->css, css);
3723 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003724
3725 return 0;
3726}
3727
3728static void init_cgroup_css(struct cgroup_subsys_state *css,
3729 struct cgroup_subsys *ss,
Paul Menagebd89aab2007-10-18 23:40:44 -07003730 struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003731{
Paul Menagebd89aab2007-10-18 23:40:44 -07003732 css->cgroup = cgrp;
Paul Menagee7c5ec92009-01-07 18:08:38 -08003733 atomic_set(&css->refcnt, 1);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003734 css->flags = 0;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003735 css->id = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07003736 if (cgrp == dummytop)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003737 set_bit(CSS_ROOT, &css->flags);
Paul Menagebd89aab2007-10-18 23:40:44 -07003738 BUG_ON(cgrp->subsys[ss->subsys_id]);
3739 cgrp->subsys[ss->subsys_id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003740}
3741
Paul Menage999cd8a2009-01-07 18:08:36 -08003742static void cgroup_lock_hierarchy(struct cgroupfs_root *root)
3743{
3744 /* We need to take each hierarchy_mutex in a consistent order */
3745 int i;
3746
Ben Blumaae8aab2010-03-10 15:22:07 -08003747 /*
3748 * No worry about a race with rebind_subsystems that might mess up the
3749 * locking order, since both parties are under cgroup_mutex.
3750 */
Paul Menage999cd8a2009-01-07 18:08:36 -08003751 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3752 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08003753 if (ss == NULL)
3754 continue;
Paul Menage999cd8a2009-01-07 18:08:36 -08003755 if (ss->root == root)
Li Zefancfebe562009-02-11 13:04:36 -08003756 mutex_lock(&ss->hierarchy_mutex);
Paul Menage999cd8a2009-01-07 18:08:36 -08003757 }
3758}
3759
3760static void cgroup_unlock_hierarchy(struct cgroupfs_root *root)
3761{
3762 int i;
3763
3764 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3765 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08003766 if (ss == NULL)
3767 continue;
Paul Menage999cd8a2009-01-07 18:08:36 -08003768 if (ss->root == root)
3769 mutex_unlock(&ss->hierarchy_mutex);
3770 }
3771}
3772
Paul Menageddbcc7e2007-10-18 23:39:30 -07003773/*
Li Zefana043e3b2008-02-23 15:24:09 -08003774 * cgroup_create - create a cgroup
3775 * @parent: cgroup that will be parent of the new cgroup
3776 * @dentry: dentry of the new cgroup
3777 * @mode: mode to set on new inode
Paul Menageddbcc7e2007-10-18 23:39:30 -07003778 *
Li Zefana043e3b2008-02-23 15:24:09 -08003779 * Must be called with the mutex on the parent inode held
Paul Menageddbcc7e2007-10-18 23:39:30 -07003780 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07003781static long cgroup_create(struct cgroup *parent, struct dentry *dentry,
Al Viroa5e7ed32011-07-26 01:55:55 -04003782 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003783{
Paul Menagebd89aab2007-10-18 23:40:44 -07003784 struct cgroup *cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003785 struct cgroupfs_root *root = parent->root;
3786 int err = 0;
3787 struct cgroup_subsys *ss;
3788 struct super_block *sb = root->sb;
3789
Paul Menagebd89aab2007-10-18 23:40:44 -07003790 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
3791 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003792 return -ENOMEM;
3793
3794 /* Grab a reference on the superblock so the hierarchy doesn't
3795 * get deleted on unmount if there are child cgroups. This
3796 * can be done outside cgroup_mutex, since the sb can't
3797 * disappear while someone has an open control file on the
3798 * fs */
3799 atomic_inc(&sb->s_active);
3800
3801 mutex_lock(&cgroup_mutex);
3802
Paul Menagecc31edc2008-10-18 20:28:04 -07003803 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003804
Paul Menagebd89aab2007-10-18 23:40:44 -07003805 cgrp->parent = parent;
3806 cgrp->root = parent->root;
3807 cgrp->top_cgroup = parent->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003808
Li Zefanb6abdb02008-03-04 14:28:19 -08003809 if (notify_on_release(parent))
3810 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3811
Daniel Lezcano97978e62010-10-27 15:33:35 -07003812 if (clone_children(parent))
3813 set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3814
Paul Menageddbcc7e2007-10-18 23:39:30 -07003815 for_each_subsys(root, ss) {
Li Zefan761b3ef2012-01-31 13:47:36 +08003816 struct cgroup_subsys_state *css = ss->create(cgrp);
Li Zefan4528fd02010-02-02 13:44:10 -08003817
Paul Menageddbcc7e2007-10-18 23:39:30 -07003818 if (IS_ERR(css)) {
3819 err = PTR_ERR(css);
3820 goto err_destroy;
3821 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003822 init_cgroup_css(css, ss, cgrp);
Li Zefan4528fd02010-02-02 13:44:10 -08003823 if (ss->use_id) {
3824 err = alloc_css_id(ss, parent, cgrp);
3825 if (err)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003826 goto err_destroy;
Li Zefan4528fd02010-02-02 13:44:10 -08003827 }
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003828 /* At error, ->destroy() callback has to free assigned ID. */
Daniel Lezcano97978e62010-10-27 15:33:35 -07003829 if (clone_children(parent) && ss->post_clone)
Li Zefan761b3ef2012-01-31 13:47:36 +08003830 ss->post_clone(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003831 }
3832
Paul Menage999cd8a2009-01-07 18:08:36 -08003833 cgroup_lock_hierarchy(root);
Paul Menagebd89aab2007-10-18 23:40:44 -07003834 list_add(&cgrp->sibling, &cgrp->parent->children);
Paul Menage999cd8a2009-01-07 18:08:36 -08003835 cgroup_unlock_hierarchy(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003836 root->number_of_cgroups++;
3837
Paul Menagebd89aab2007-10-18 23:40:44 -07003838 err = cgroup_create_dir(cgrp, dentry, mode);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003839 if (err < 0)
3840 goto err_remove;
3841
Colin Crossc0f6fa82010-11-23 21:37:03 -08003842 set_bit(CGRP_RELEASABLE, &parent->flags);
3843
Paul Menageddbcc7e2007-10-18 23:39:30 -07003844 /* The cgroup directory was pre-locked for us */
Paul Menagebd89aab2007-10-18 23:40:44 -07003845 BUG_ON(!mutex_is_locked(&cgrp->dentry->d_inode->i_mutex));
Paul Menageddbcc7e2007-10-18 23:39:30 -07003846
Paul Menagebd89aab2007-10-18 23:40:44 -07003847 err = cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003848 /* If err < 0, we have a half-filled directory - oh well ;) */
3849
3850 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07003851 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003852
3853 return 0;
3854
3855 err_remove:
3856
KAMEZAWA Hiroyukibaef99a2009-01-29 14:25:10 -08003857 cgroup_lock_hierarchy(root);
Paul Menagebd89aab2007-10-18 23:40:44 -07003858 list_del(&cgrp->sibling);
KAMEZAWA Hiroyukibaef99a2009-01-29 14:25:10 -08003859 cgroup_unlock_hierarchy(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003860 root->number_of_cgroups--;
3861
3862 err_destroy:
3863
3864 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07003865 if (cgrp->subsys[ss->subsys_id])
Li Zefan761b3ef2012-01-31 13:47:36 +08003866 ss->destroy(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003867 }
3868
3869 mutex_unlock(&cgroup_mutex);
3870
3871 /* Release the reference count that we took on the superblock */
3872 deactivate_super(sb);
3873
Paul Menagebd89aab2007-10-18 23:40:44 -07003874 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003875 return err;
3876}
3877
Al Viro18bb1db2011-07-26 01:41:39 -04003878static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003879{
3880 struct cgroup *c_parent = dentry->d_parent->d_fsdata;
3881
3882 /* the vfs holds inode->i_mutex already */
3883 return cgroup_create(c_parent, dentry, mode | S_IFDIR);
3884}
3885
Li Zefan55b6fd02008-07-29 22:33:20 -07003886static int cgroup_has_css_refs(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003887{
3888 /* Check the reference count on each subsystem. Since we
3889 * already established that there are no tasks in the
Paul Menagee7c5ec92009-01-07 18:08:38 -08003890 * cgroup, if the css refcount is also 1, then there should
Paul Menage81a6a5c2007-10-18 23:39:38 -07003891 * be no outstanding references, so the subsystem is safe to
3892 * destroy. We scan across all subsystems rather than using
3893 * the per-hierarchy linked list of mounted subsystems since
3894 * we can be called via check_for_release() with no
3895 * synchronization other than RCU, and the subsystem linked
3896 * list isn't RCU-safe */
3897 int i;
Ben Blumaae8aab2010-03-10 15:22:07 -08003898 /*
3899 * We won't need to lock the subsys array, because the subsystems
3900 * we're concerned about aren't going anywhere since our cgroup root
3901 * has a reference on them.
3902 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07003903 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3904 struct cgroup_subsys *ss = subsys[i];
3905 struct cgroup_subsys_state *css;
Ben Blumaae8aab2010-03-10 15:22:07 -08003906 /* Skip subsystems not present or not in this hierarchy */
3907 if (ss == NULL || ss->root != cgrp->root)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003908 continue;
Paul Menagebd89aab2007-10-18 23:40:44 -07003909 css = cgrp->subsys[ss->subsys_id];
Paul Menage81a6a5c2007-10-18 23:39:38 -07003910 /* When called from check_for_release() it's possible
3911 * that by this point the cgroup has been removed
3912 * and the css deleted. But a false-positive doesn't
3913 * matter, since it can only happen if the cgroup
3914 * has been deleted and hence no longer needs the
3915 * release agent to be called anyway. */
Paul Menagee7c5ec92009-01-07 18:08:38 -08003916 if (css && (atomic_read(&css->refcnt) > 1))
Paul Menage81a6a5c2007-10-18 23:39:38 -07003917 return 1;
Paul Menage81a6a5c2007-10-18 23:39:38 -07003918 }
3919 return 0;
3920}
3921
Paul Menagee7c5ec92009-01-07 18:08:38 -08003922/*
3923 * Atomically mark all (or else none) of the cgroup's CSS objects as
3924 * CSS_REMOVED. Return true on success, or false if the cgroup has
3925 * busy subsystems. Call with cgroup_mutex held
3926 */
3927
3928static int cgroup_clear_css_refs(struct cgroup *cgrp)
3929{
3930 struct cgroup_subsys *ss;
3931 unsigned long flags;
3932 bool failed = false;
3933 local_irq_save(flags);
3934 for_each_subsys(cgrp->root, ss) {
3935 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3936 int refcnt;
Paul Menage804b3c22009-01-29 14:25:21 -08003937 while (1) {
Paul Menagee7c5ec92009-01-07 18:08:38 -08003938 /* We can only remove a CSS with a refcnt==1 */
3939 refcnt = atomic_read(&css->refcnt);
3940 if (refcnt > 1) {
3941 failed = true;
3942 goto done;
3943 }
3944 BUG_ON(!refcnt);
3945 /*
3946 * Drop the refcnt to 0 while we check other
3947 * subsystems. This will cause any racing
3948 * css_tryget() to spin until we set the
3949 * CSS_REMOVED bits or abort
3950 */
Paul Menage804b3c22009-01-29 14:25:21 -08003951 if (atomic_cmpxchg(&css->refcnt, refcnt, 0) == refcnt)
3952 break;
3953 cpu_relax();
3954 }
Paul Menagee7c5ec92009-01-07 18:08:38 -08003955 }
3956 done:
3957 for_each_subsys(cgrp->root, ss) {
3958 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3959 if (failed) {
3960 /*
3961 * Restore old refcnt if we previously managed
3962 * to clear it from 1 to 0
3963 */
3964 if (!atomic_read(&css->refcnt))
3965 atomic_set(&css->refcnt, 1);
3966 } else {
3967 /* Commit the fact that the CSS is removed */
3968 set_bit(CSS_REMOVED, &css->flags);
3969 }
3970 }
3971 local_irq_restore(flags);
3972 return !failed;
3973}
3974
Colin Crossbefae2f2010-11-23 21:37:04 -08003975/* checks if all of the css_sets attached to a cgroup have a refcount of 0.
3976 * Must be called with css_set_lock held */
3977static int cgroup_css_sets_empty(struct cgroup *cgrp)
3978{
3979 struct cg_cgroup_link *link;
3980
3981 list_for_each_entry(link, &cgrp->css_sets, cgrp_link_list) {
3982 struct css_set *cg = link->cg;
3983 if (atomic_read(&cg->refcount) > 0)
3984 return 0;
3985 }
3986
3987 return 1;
3988}
3989
Paul Menageddbcc7e2007-10-18 23:39:30 -07003990static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry)
3991{
Paul Menagebd89aab2007-10-18 23:40:44 -07003992 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003993 struct dentry *d;
3994 struct cgroup *parent;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003995 DEFINE_WAIT(wait);
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08003996 struct cgroup_event *event, *tmp;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003997 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003998
3999 /* the vfs holds both inode->i_mutex already */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004000again:
Paul Menageddbcc7e2007-10-18 23:39:30 -07004001 mutex_lock(&cgroup_mutex);
Colin Crossbefae2f2010-11-23 21:37:04 -08004002 if (!cgroup_css_sets_empty(cgrp)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004003 mutex_unlock(&cgroup_mutex);
4004 return -EBUSY;
4005 }
Paul Menagebd89aab2007-10-18 23:40:44 -07004006 if (!list_empty(&cgrp->children)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004007 mutex_unlock(&cgroup_mutex);
4008 return -EBUSY;
4009 }
KAMEZAWA Hiroyuki3fa59df2008-11-19 15:36:34 -08004010 mutex_unlock(&cgroup_mutex);
Li Zefana043e3b2008-02-23 15:24:09 -08004011
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08004012 /*
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004013 * In general, subsystem has no css->refcnt after pre_destroy(). But
4014 * in racy cases, subsystem may have to get css->refcnt after
4015 * pre_destroy() and it makes rmdir return with -EBUSY. This sometimes
4016 * make rmdir return -EBUSY too often. To avoid that, we use waitqueue
4017 * for cgroup's rmdir. CGRP_WAIT_ON_RMDIR is for synchronizing rmdir
4018 * and subsystem's reference count handling. Please see css_get/put
4019 * and css_tryget() and cgroup_wakeup_rmdir_waiter() implementation.
4020 */
4021 set_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
4022
4023 /*
Li Zefana043e3b2008-02-23 15:24:09 -08004024 * Call pre_destroy handlers of subsys. Notify subsystems
4025 * that rmdir() request comes.
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08004026 */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004027 ret = cgroup_call_pre_destroy(cgrp);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004028 if (ret) {
4029 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004030 return ret;
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004031 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004032
KAMEZAWA Hiroyuki3fa59df2008-11-19 15:36:34 -08004033 mutex_lock(&cgroup_mutex);
4034 parent = cgrp->parent;
Colin Crossbefae2f2010-11-23 21:37:04 -08004035 if (!cgroup_css_sets_empty(cgrp) || !list_empty(&cgrp->children)) {
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004036 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004037 mutex_unlock(&cgroup_mutex);
4038 return -EBUSY;
4039 }
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004040 prepare_to_wait(&cgroup_rmdir_waitq, &wait, TASK_INTERRUPTIBLE);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004041 if (!cgroup_clear_css_refs(cgrp)) {
4042 mutex_unlock(&cgroup_mutex);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004043 /*
4044 * Because someone may call cgroup_wakeup_rmdir_waiter() before
4045 * prepare_to_wait(), we need to check this flag.
4046 */
4047 if (test_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags))
4048 schedule();
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004049 finish_wait(&cgroup_rmdir_waitq, &wait);
4050 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
4051 if (signal_pending(current))
4052 return -EINTR;
4053 goto again;
4054 }
4055 /* NO css_tryget() can success after here. */
4056 finish_wait(&cgroup_rmdir_waitq, &wait);
4057 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004058
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004059 raw_spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07004060 set_bit(CGRP_REMOVED, &cgrp->flags);
4061 if (!list_empty(&cgrp->release_list))
Phil Carmody8d258792011-03-22 16:30:13 -07004062 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004063 raw_spin_unlock(&release_list_lock);
Paul Menage999cd8a2009-01-07 18:08:36 -08004064
4065 cgroup_lock_hierarchy(cgrp->root);
4066 /* delete this cgroup from parent->children */
Phil Carmody8d258792011-03-22 16:30:13 -07004067 list_del_init(&cgrp->sibling);
Paul Menage999cd8a2009-01-07 18:08:36 -08004068 cgroup_unlock_hierarchy(cgrp->root);
4069
Paul Menagebd89aab2007-10-18 23:40:44 -07004070 d = dget(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004071
4072 cgroup_d_remove_dir(d);
4073 dput(d);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004074
Paul Menage81a6a5c2007-10-18 23:39:38 -07004075 check_for_release(parent);
4076
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08004077 /*
4078 * Unregister events and notify userspace.
4079 * Notify userspace about cgroup removing only after rmdir of cgroup
4080 * directory to avoid race between userspace and kernelspace
4081 */
4082 spin_lock(&cgrp->event_list_lock);
4083 list_for_each_entry_safe(event, tmp, &cgrp->event_list, list) {
4084 list_del(&event->list);
4085 remove_wait_queue(event->wqh, &event->wait);
4086 eventfd_signal(event->eventfd, 1);
4087 schedule_work(&event->remove);
4088 }
4089 spin_unlock(&cgrp->event_list_lock);
4090
Paul Menageddbcc7e2007-10-18 23:39:30 -07004091 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004092 return 0;
4093}
4094
Li Zefan06a11922008-04-29 01:00:07 -07004095static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004096{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004097 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08004098
4099 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004100
4101 /* Create the top cgroup state for this subsystem */
Li Zefan33a68ac2009-01-07 18:07:42 -08004102 list_add(&ss->sibling, &rootnode.subsys_list);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004103 ss->root = &rootnode;
Li Zefan761b3ef2012-01-31 13:47:36 +08004104 css = ss->create(dummytop);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004105 /* We don't handle early failures gracefully */
4106 BUG_ON(IS_ERR(css));
4107 init_cgroup_css(css, ss, dummytop);
4108
Li Zefane8d55fd2008-04-29 01:00:13 -07004109 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07004110 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07004111 * newly registered, all tasks and hence the
4112 * init_css_set is in the subsystem's top cgroup. */
4113 init_css_set.subsys[ss->subsys_id] = dummytop->subsys[ss->subsys_id];
Paul Menageddbcc7e2007-10-18 23:39:30 -07004114
4115 need_forkexit_callback |= ss->fork || ss->exit;
4116
Li Zefane8d55fd2008-04-29 01:00:13 -07004117 /* At system boot, before all subsystems have been
4118 * registered, no tasks have been forked, so we don't
4119 * need to invoke fork callbacks here. */
4120 BUG_ON(!list_empty(&init_task.tasks));
4121
Paul Menage999cd8a2009-01-07 18:08:36 -08004122 mutex_init(&ss->hierarchy_mutex);
Li Zefancfebe562009-02-11 13:04:36 -08004123 lockdep_set_class(&ss->hierarchy_mutex, &ss->subsys_key);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004124 ss->active = 1;
Ben Blume6a11052010-03-10 15:22:09 -08004125
4126 /* this function shouldn't be used with modular subsystems, since they
4127 * need to register a subsys_id, among other things */
4128 BUG_ON(ss->module);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004129}
4130
4131/**
Ben Blume6a11052010-03-10 15:22:09 -08004132 * cgroup_load_subsys: load and register a modular subsystem at runtime
4133 * @ss: the subsystem to load
4134 *
4135 * This function should be called in a modular subsystem's initcall. If the
Thomas Weber88393162010-03-16 11:47:56 +01004136 * subsystem is built as a module, it will be assigned a new subsys_id and set
Ben Blume6a11052010-03-10 15:22:09 -08004137 * up for use. If the subsystem is built-in anyway, work is delegated to the
4138 * simpler cgroup_init_subsys.
4139 */
4140int __init_or_module cgroup_load_subsys(struct cgroup_subsys *ss)
4141{
4142 int i;
4143 struct cgroup_subsys_state *css;
4144
4145 /* check name and function validity */
4146 if (ss->name == NULL || strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN ||
4147 ss->create == NULL || ss->destroy == NULL)
4148 return -EINVAL;
4149
4150 /*
4151 * we don't support callbacks in modular subsystems. this check is
4152 * before the ss->module check for consistency; a subsystem that could
4153 * be a module should still have no callbacks even if the user isn't
4154 * compiling it as one.
4155 */
4156 if (ss->fork || ss->exit)
4157 return -EINVAL;
4158
4159 /*
4160 * an optionally modular subsystem is built-in: we want to do nothing,
4161 * since cgroup_init_subsys will have already taken care of it.
4162 */
4163 if (ss->module == NULL) {
4164 /* a few sanity checks */
4165 BUG_ON(ss->subsys_id >= CGROUP_BUILTIN_SUBSYS_COUNT);
4166 BUG_ON(subsys[ss->subsys_id] != ss);
4167 return 0;
4168 }
4169
4170 /*
4171 * need to register a subsys id before anything else - for example,
4172 * init_cgroup_css needs it.
4173 */
4174 mutex_lock(&cgroup_mutex);
4175 /* find the first empty slot in the array */
4176 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
4177 if (subsys[i] == NULL)
4178 break;
4179 }
4180 if (i == CGROUP_SUBSYS_COUNT) {
4181 /* maximum number of subsystems already registered! */
4182 mutex_unlock(&cgroup_mutex);
4183 return -EBUSY;
4184 }
4185 /* assign ourselves the subsys_id */
4186 ss->subsys_id = i;
4187 subsys[i] = ss;
4188
4189 /*
4190 * no ss->create seems to need anything important in the ss struct, so
4191 * this can happen first (i.e. before the rootnode attachment).
4192 */
Li Zefan761b3ef2012-01-31 13:47:36 +08004193 css = ss->create(dummytop);
Ben Blume6a11052010-03-10 15:22:09 -08004194 if (IS_ERR(css)) {
4195 /* failure case - need to deassign the subsys[] slot. */
4196 subsys[i] = NULL;
4197 mutex_unlock(&cgroup_mutex);
4198 return PTR_ERR(css);
4199 }
4200
4201 list_add(&ss->sibling, &rootnode.subsys_list);
4202 ss->root = &rootnode;
4203
4204 /* our new subsystem will be attached to the dummy hierarchy. */
4205 init_cgroup_css(css, ss, dummytop);
4206 /* init_idr must be after init_cgroup_css because it sets css->id. */
4207 if (ss->use_id) {
4208 int ret = cgroup_init_idr(ss, css);
4209 if (ret) {
4210 dummytop->subsys[ss->subsys_id] = NULL;
Li Zefan761b3ef2012-01-31 13:47:36 +08004211 ss->destroy(dummytop);
Ben Blume6a11052010-03-10 15:22:09 -08004212 subsys[i] = NULL;
4213 mutex_unlock(&cgroup_mutex);
4214 return ret;
4215 }
4216 }
4217
4218 /*
4219 * Now we need to entangle the css into the existing css_sets. unlike
4220 * in cgroup_init_subsys, there are now multiple css_sets, so each one
4221 * will need a new pointer to it; done by iterating the css_set_table.
4222 * furthermore, modifying the existing css_sets will corrupt the hash
4223 * table state, so each changed css_set will need its hash recomputed.
4224 * this is all done under the css_set_lock.
4225 */
4226 write_lock(&css_set_lock);
4227 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
4228 struct css_set *cg;
4229 struct hlist_node *node, *tmp;
4230 struct hlist_head *bucket = &css_set_table[i], *new_bucket;
4231
4232 hlist_for_each_entry_safe(cg, node, tmp, bucket, hlist) {
4233 /* skip entries that we already rehashed */
4234 if (cg->subsys[ss->subsys_id])
4235 continue;
4236 /* remove existing entry */
4237 hlist_del(&cg->hlist);
4238 /* set new value */
4239 cg->subsys[ss->subsys_id] = css;
4240 /* recompute hash and restore entry */
4241 new_bucket = css_set_hash(cg->subsys);
4242 hlist_add_head(&cg->hlist, new_bucket);
4243 }
4244 }
4245 write_unlock(&css_set_lock);
4246
4247 mutex_init(&ss->hierarchy_mutex);
4248 lockdep_set_class(&ss->hierarchy_mutex, &ss->subsys_key);
4249 ss->active = 1;
4250
Ben Blume6a11052010-03-10 15:22:09 -08004251 /* success! */
4252 mutex_unlock(&cgroup_mutex);
4253 return 0;
4254}
4255EXPORT_SYMBOL_GPL(cgroup_load_subsys);
4256
4257/**
Ben Blumcf5d5942010-03-10 15:22:09 -08004258 * cgroup_unload_subsys: unload a modular subsystem
4259 * @ss: the subsystem to unload
4260 *
4261 * This function should be called in a modular subsystem's exitcall. When this
4262 * function is invoked, the refcount on the subsystem's module will be 0, so
4263 * the subsystem will not be attached to any hierarchy.
4264 */
4265void cgroup_unload_subsys(struct cgroup_subsys *ss)
4266{
4267 struct cg_cgroup_link *link;
4268 struct hlist_head *hhead;
4269
4270 BUG_ON(ss->module == NULL);
4271
4272 /*
4273 * we shouldn't be called if the subsystem is in use, and the use of
4274 * try_module_get in parse_cgroupfs_options should ensure that it
4275 * doesn't start being used while we're killing it off.
4276 */
4277 BUG_ON(ss->root != &rootnode);
4278
4279 mutex_lock(&cgroup_mutex);
4280 /* deassign the subsys_id */
4281 BUG_ON(ss->subsys_id < CGROUP_BUILTIN_SUBSYS_COUNT);
4282 subsys[ss->subsys_id] = NULL;
4283
4284 /* remove subsystem from rootnode's list of subsystems */
Phil Carmody8d258792011-03-22 16:30:13 -07004285 list_del_init(&ss->sibling);
Ben Blumcf5d5942010-03-10 15:22:09 -08004286
4287 /*
4288 * disentangle the css from all css_sets attached to the dummytop. as
4289 * in loading, we need to pay our respects to the hashtable gods.
4290 */
4291 write_lock(&css_set_lock);
4292 list_for_each_entry(link, &dummytop->css_sets, cgrp_link_list) {
4293 struct css_set *cg = link->cg;
4294
4295 hlist_del(&cg->hlist);
4296 BUG_ON(!cg->subsys[ss->subsys_id]);
4297 cg->subsys[ss->subsys_id] = NULL;
4298 hhead = css_set_hash(cg->subsys);
4299 hlist_add_head(&cg->hlist, hhead);
4300 }
4301 write_unlock(&css_set_lock);
4302
4303 /*
4304 * remove subsystem's css from the dummytop and free it - need to free
4305 * before marking as null because ss->destroy needs the cgrp->subsys
4306 * pointer to find their state. note that this also takes care of
4307 * freeing the css_id.
4308 */
Li Zefan761b3ef2012-01-31 13:47:36 +08004309 ss->destroy(dummytop);
Ben Blumcf5d5942010-03-10 15:22:09 -08004310 dummytop->subsys[ss->subsys_id] = NULL;
4311
4312 mutex_unlock(&cgroup_mutex);
4313}
4314EXPORT_SYMBOL_GPL(cgroup_unload_subsys);
4315
4316/**
Li Zefana043e3b2008-02-23 15:24:09 -08004317 * cgroup_init_early - cgroup initialization at system boot
4318 *
4319 * Initialize cgroups at system boot, and initialize any
4320 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004321 */
4322int __init cgroup_init_early(void)
4323{
4324 int i;
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07004325 atomic_set(&init_css_set.refcount, 1);
Paul Menage817929e2007-10-18 23:39:36 -07004326 INIT_LIST_HEAD(&init_css_set.cg_links);
4327 INIT_LIST_HEAD(&init_css_set.tasks);
Li Zefan472b1052008-04-29 01:00:11 -07004328 INIT_HLIST_NODE(&init_css_set.hlist);
Paul Menage817929e2007-10-18 23:39:36 -07004329 css_set_count = 1;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004330 init_cgroup_root(&rootnode);
Paul Menage817929e2007-10-18 23:39:36 -07004331 root_count = 1;
4332 init_task.cgroups = &init_css_set;
4333
4334 init_css_set_link.cg = &init_css_set;
Paul Menage7717f7b2009-09-23 15:56:22 -07004335 init_css_set_link.cgrp = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -07004336 list_add(&init_css_set_link.cgrp_link_list,
Paul Menage817929e2007-10-18 23:39:36 -07004337 &rootnode.top_cgroup.css_sets);
4338 list_add(&init_css_set_link.cg_link_list,
4339 &init_css_set.cg_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004340
Li Zefan472b1052008-04-29 01:00:11 -07004341 for (i = 0; i < CSS_SET_TABLE_SIZE; i++)
4342 INIT_HLIST_HEAD(&css_set_table[i]);
4343
Ben Blumaae8aab2010-03-10 15:22:07 -08004344 /* at bootup time, we don't worry about modular subsystems */
4345 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004346 struct cgroup_subsys *ss = subsys[i];
4347
4348 BUG_ON(!ss->name);
4349 BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN);
4350 BUG_ON(!ss->create);
4351 BUG_ON(!ss->destroy);
4352 if (ss->subsys_id != i) {
Diego Callejacfe36bd2007-11-14 16:58:54 -08004353 printk(KERN_ERR "cgroup: Subsys %s id == %d\n",
Paul Menageddbcc7e2007-10-18 23:39:30 -07004354 ss->name, ss->subsys_id);
4355 BUG();
4356 }
4357
4358 if (ss->early_init)
4359 cgroup_init_subsys(ss);
4360 }
4361 return 0;
4362}
4363
4364/**
Li Zefana043e3b2008-02-23 15:24:09 -08004365 * cgroup_init - cgroup initialization
4366 *
4367 * Register cgroup filesystem and /proc file, and initialize
4368 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004369 */
4370int __init cgroup_init(void)
4371{
4372 int err;
4373 int i;
Li Zefan472b1052008-04-29 01:00:11 -07004374 struct hlist_head *hhead;
Paul Menagea4243162007-10-18 23:39:35 -07004375
4376 err = bdi_init(&cgroup_backing_dev_info);
4377 if (err)
4378 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004379
Ben Blumaae8aab2010-03-10 15:22:07 -08004380 /* at bootup time, we don't worry about modular subsystems */
4381 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004382 struct cgroup_subsys *ss = subsys[i];
4383 if (!ss->early_init)
4384 cgroup_init_subsys(ss);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004385 if (ss->use_id)
Ben Blume6a11052010-03-10 15:22:09 -08004386 cgroup_init_idr(ss, init_css_set.subsys[ss->subsys_id]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004387 }
4388
Li Zefan472b1052008-04-29 01:00:11 -07004389 /* Add init_css_set to the hash table */
4390 hhead = css_set_hash(init_css_set.subsys);
4391 hlist_add_head(&init_css_set.hlist, hhead);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004392 BUG_ON(!init_root_id(&rootnode));
Greg KH676db4a2010-08-05 13:53:35 -07004393
4394 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
4395 if (!cgroup_kobj) {
4396 err = -ENOMEM;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004397 goto out;
Greg KH676db4a2010-08-05 13:53:35 -07004398 }
4399
4400 err = register_filesystem(&cgroup_fs_type);
4401 if (err < 0) {
4402 kobject_put(cgroup_kobj);
4403 goto out;
4404 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004405
Li Zefan46ae2202008-04-29 01:00:08 -07004406 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Paul Menagea4243162007-10-18 23:39:35 -07004407
Paul Menageddbcc7e2007-10-18 23:39:30 -07004408out:
Paul Menagea4243162007-10-18 23:39:35 -07004409 if (err)
4410 bdi_destroy(&cgroup_backing_dev_info);
4411
Paul Menageddbcc7e2007-10-18 23:39:30 -07004412 return err;
4413}
Paul Menageb4f48b62007-10-18 23:39:33 -07004414
Paul Menagea4243162007-10-18 23:39:35 -07004415/*
4416 * proc_cgroup_show()
4417 * - Print task's cgroup paths into seq_file, one line for each hierarchy
4418 * - Used for /proc/<pid>/cgroup.
4419 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
4420 * doesn't really matter if tsk->cgroup changes after we read it,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004421 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
Paul Menagea4243162007-10-18 23:39:35 -07004422 * anyway. No need to check that tsk->cgroup != NULL, thanks to
4423 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
4424 * cgroup to top_cgroup.
4425 */
4426
4427/* TODO: Use a proper seq_file iterator */
4428static int proc_cgroup_show(struct seq_file *m, void *v)
4429{
4430 struct pid *pid;
4431 struct task_struct *tsk;
4432 char *buf;
4433 int retval;
4434 struct cgroupfs_root *root;
4435
4436 retval = -ENOMEM;
4437 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
4438 if (!buf)
4439 goto out;
4440
4441 retval = -ESRCH;
4442 pid = m->private;
4443 tsk = get_pid_task(pid, PIDTYPE_PID);
4444 if (!tsk)
4445 goto out_free;
4446
4447 retval = 0;
4448
4449 mutex_lock(&cgroup_mutex);
4450
Li Zefane5f6a862009-01-07 18:07:41 -08004451 for_each_active_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07004452 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07004453 struct cgroup *cgrp;
Paul Menagea4243162007-10-18 23:39:35 -07004454 int count = 0;
4455
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004456 seq_printf(m, "%d:", root->hierarchy_id);
Paul Menagea4243162007-10-18 23:39:35 -07004457 for_each_subsys(root, ss)
4458 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07004459 if (strlen(root->name))
4460 seq_printf(m, "%sname=%s", count ? "," : "",
4461 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07004462 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07004463 cgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07004464 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
Paul Menagea4243162007-10-18 23:39:35 -07004465 if (retval < 0)
4466 goto out_unlock;
4467 seq_puts(m, buf);
4468 seq_putc(m, '\n');
4469 }
4470
4471out_unlock:
4472 mutex_unlock(&cgroup_mutex);
4473 put_task_struct(tsk);
4474out_free:
4475 kfree(buf);
4476out:
4477 return retval;
4478}
4479
4480static int cgroup_open(struct inode *inode, struct file *file)
4481{
4482 struct pid *pid = PROC_I(inode)->pid;
4483 return single_open(file, proc_cgroup_show, pid);
4484}
4485
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004486const struct file_operations proc_cgroup_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004487 .open = cgroup_open,
4488 .read = seq_read,
4489 .llseek = seq_lseek,
4490 .release = single_release,
4491};
4492
4493/* Display information about each subsystem and each hierarchy */
4494static int proc_cgroupstats_show(struct seq_file *m, void *v)
4495{
4496 int i;
Paul Menagea4243162007-10-18 23:39:35 -07004497
Paul Menage8bab8dd2008-04-04 14:29:57 -07004498 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08004499 /*
4500 * ideally we don't want subsystems moving around while we do this.
4501 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
4502 * subsys/hierarchy state.
4503 */
Paul Menagea4243162007-10-18 23:39:35 -07004504 mutex_lock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07004505 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
4506 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08004507 if (ss == NULL)
4508 continue;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004509 seq_printf(m, "%s\t%d\t%d\t%d\n",
4510 ss->name, ss->root->hierarchy_id,
Paul Menage8bab8dd2008-04-04 14:29:57 -07004511 ss->root->number_of_cgroups, !ss->disabled);
Paul Menagea4243162007-10-18 23:39:35 -07004512 }
4513 mutex_unlock(&cgroup_mutex);
4514 return 0;
4515}
4516
4517static int cgroupstats_open(struct inode *inode, struct file *file)
4518{
Al Viro9dce07f12008-03-29 03:07:28 +00004519 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07004520}
4521
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004522static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004523 .open = cgroupstats_open,
4524 .read = seq_read,
4525 .llseek = seq_lseek,
4526 .release = single_release,
4527};
4528
Paul Menageb4f48b62007-10-18 23:39:33 -07004529/**
4530 * cgroup_fork - attach newly forked task to its parents cgroup.
Li Zefana043e3b2008-02-23 15:24:09 -08004531 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07004532 *
4533 * Description: A task inherits its parent's cgroup at fork().
4534 *
4535 * A pointer to the shared css_set was automatically copied in
4536 * fork.c by dup_task_struct(). However, we ignore that copy, since
Tejun Heo727fa372012-10-18 17:52:07 -07004537 * it was not made under the protection of RCU or cgroup_mutex, so
4538 * might no longer be a valid cgroup pointer. cgroup_attach_task() might
4539 * have already changed current->cgroups, allowing the previously
4540 * referenced cgroup group to be removed and freed.
Paul Menageb4f48b62007-10-18 23:39:33 -07004541 *
4542 * At the point that cgroup_fork() is called, 'current' is the parent
4543 * task, and the passed argument 'child' points to the child task.
4544 */
4545void cgroup_fork(struct task_struct *child)
4546{
Tejun Heo727fa372012-10-18 17:52:07 -07004547 task_lock(current);
Paul Menage817929e2007-10-18 23:39:36 -07004548 child->cgroups = current->cgroups;
4549 get_css_set(child->cgroups);
Tejun Heo727fa372012-10-18 17:52:07 -07004550 task_unlock(current);
Paul Menage817929e2007-10-18 23:39:36 -07004551 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07004552}
4553
4554/**
Li Zefana043e3b2008-02-23 15:24:09 -08004555 * cgroup_fork_callbacks - run fork callbacks
4556 * @child: the new task
4557 *
4558 * Called on a new task very soon before adding it to the
4559 * tasklist. No need to take any locks since no-one can
4560 * be operating on this task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004561 */
4562void cgroup_fork_callbacks(struct task_struct *child)
4563{
4564 if (need_forkexit_callback) {
4565 int i;
Ben Blumaae8aab2010-03-10 15:22:07 -08004566 /*
4567 * forkexit callbacks are only supported for builtin
4568 * subsystems, and the builtin section of the subsys array is
4569 * immutable, so we don't need to lock the subsys array here.
4570 */
4571 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageb4f48b62007-10-18 23:39:33 -07004572 struct cgroup_subsys *ss = subsys[i];
4573 if (ss->fork)
Li Zefan761b3ef2012-01-31 13:47:36 +08004574 ss->fork(child);
Paul Menageb4f48b62007-10-18 23:39:33 -07004575 }
4576 }
4577}
4578
4579/**
Li Zefana043e3b2008-02-23 15:24:09 -08004580 * cgroup_post_fork - called on a new task after adding it to the task list
4581 * @child: the task in question
4582 *
4583 * Adds the task to the list running through its css_set if necessary.
4584 * Has to be after the task is visible on the task list in case we race
4585 * with the first call to cgroup_iter_start() - to guarantee that the
4586 * new task ends up on its list.
4587 */
Paul Menage817929e2007-10-18 23:39:36 -07004588void cgroup_post_fork(struct task_struct *child)
4589{
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01004590 /*
4591 * use_task_css_set_links is set to 1 before we walk the tasklist
4592 * under the tasklist_lock and we read it here after we added the child
4593 * to the tasklist under the tasklist_lock as well. If the child wasn't
4594 * yet in the tasklist when we walked through it from
4595 * cgroup_enable_task_cg_lists(), then use_task_css_set_links value
4596 * should be visible now due to the paired locking and barriers implied
4597 * by LOCK/UNLOCK: it is written before the tasklist_lock unlock
4598 * in cgroup_enable_task_cg_lists() and read here after the tasklist_lock
4599 * lock on fork.
4600 */
Paul Menage817929e2007-10-18 23:39:36 -07004601 if (use_task_css_set_links) {
4602 write_lock(&css_set_lock);
Tejun Heo5993bba2012-10-18 17:40:30 -07004603 task_lock(child);
4604 if (list_empty(&child->cg_list))
Paul Menage817929e2007-10-18 23:39:36 -07004605 list_add(&child->cg_list, &child->cgroups->tasks);
Tejun Heo5993bba2012-10-18 17:40:30 -07004606 task_unlock(child);
Paul Menage817929e2007-10-18 23:39:36 -07004607 write_unlock(&css_set_lock);
4608 }
4609}
4610/**
Paul Menageb4f48b62007-10-18 23:39:33 -07004611 * cgroup_exit - detach cgroup from exiting task
4612 * @tsk: pointer to task_struct of exiting process
Li Zefana043e3b2008-02-23 15:24:09 -08004613 * @run_callback: run exit callbacks?
Paul Menageb4f48b62007-10-18 23:39:33 -07004614 *
4615 * Description: Detach cgroup from @tsk and release it.
4616 *
4617 * Note that cgroups marked notify_on_release force every task in
4618 * them to take the global cgroup_mutex mutex when exiting.
4619 * This could impact scaling on very large systems. Be reluctant to
4620 * use notify_on_release cgroups where very high task exit scaling
4621 * is required on large systems.
4622 *
4623 * the_top_cgroup_hack:
4624 *
4625 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
4626 *
4627 * We call cgroup_exit() while the task is still competent to
4628 * handle notify_on_release(), then leave the task attached to the
4629 * root cgroup in each hierarchy for the remainder of its exit.
4630 *
4631 * To do this properly, we would increment the reference count on
4632 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
4633 * code we would add a second cgroup function call, to drop that
4634 * reference. This would just create an unnecessary hot spot on
4635 * the top_cgroup reference count, to no avail.
4636 *
4637 * Normally, holding a reference to a cgroup without bumping its
4638 * count is unsafe. The cgroup could go away, or someone could
4639 * attach us to a different cgroup, decrementing the count on
4640 * the first cgroup that we never incremented. But in this case,
4641 * top_cgroup isn't going away, and either task has PF_EXITING set,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004642 * which wards off any cgroup_attach_task() attempts, or task is a failed
4643 * fork, never visible to cgroup_attach_task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004644 */
4645void cgroup_exit(struct task_struct *tsk, int run_callbacks)
4646{
Paul Menage817929e2007-10-18 23:39:36 -07004647 struct css_set *cg;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004648 int i;
Paul Menage817929e2007-10-18 23:39:36 -07004649
4650 /*
4651 * Unlink from the css_set task list if necessary.
4652 * Optimistically check cg_list before taking
4653 * css_set_lock
4654 */
4655 if (!list_empty(&tsk->cg_list)) {
4656 write_lock(&css_set_lock);
4657 if (!list_empty(&tsk->cg_list))
Phil Carmody8d258792011-03-22 16:30:13 -07004658 list_del_init(&tsk->cg_list);
Paul Menage817929e2007-10-18 23:39:36 -07004659 write_unlock(&css_set_lock);
4660 }
4661
Paul Menageb4f48b62007-10-18 23:39:33 -07004662 /* Reassign the task to the init_css_set. */
4663 task_lock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07004664 cg = tsk->cgroups;
4665 tsk->cgroups = &init_css_set;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004666
4667 if (run_callbacks && need_forkexit_callback) {
4668 /*
4669 * modular subsystems can't use callbacks, so no need to lock
4670 * the subsys array
4671 */
4672 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
4673 struct cgroup_subsys *ss = subsys[i];
4674 if (ss->exit) {
4675 struct cgroup *old_cgrp =
4676 rcu_dereference_raw(cg->subsys[i])->cgroup;
4677 struct cgroup *cgrp = task_cgroup(tsk, i);
Li Zefan761b3ef2012-01-31 13:47:36 +08004678 ss->exit(cgrp, old_cgrp, tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004679 }
4680 }
4681 }
Paul Menageb4f48b62007-10-18 23:39:33 -07004682 task_unlock(tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004683
Paul Menage817929e2007-10-18 23:39:36 -07004684 if (cg)
Colin Crossc0f6fa82010-11-23 21:37:03 -08004685 put_css_set(cg);
Paul Menageb4f48b62007-10-18 23:39:33 -07004686}
Paul Menage697f4162007-10-18 23:39:34 -07004687
4688/**
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004689 * cgroup_is_descendant - see if @cgrp is a descendant of @task's cgrp
Li Zefana043e3b2008-02-23 15:24:09 -08004690 * @cgrp: the cgroup in question
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004691 * @task: the task in question
Li Zefana043e3b2008-02-23 15:24:09 -08004692 *
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004693 * See if @cgrp is a descendant of @task's cgroup in the appropriate
4694 * hierarchy.
Paul Menage697f4162007-10-18 23:39:34 -07004695 *
4696 * If we are sending in dummytop, then presumably we are creating
4697 * the top cgroup in the subsystem.
4698 *
4699 * Called only by the ns (nsproxy) cgroup.
4700 */
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004701int cgroup_is_descendant(const struct cgroup *cgrp, struct task_struct *task)
Paul Menage697f4162007-10-18 23:39:34 -07004702{
4703 int ret;
4704 struct cgroup *target;
Paul Menage697f4162007-10-18 23:39:34 -07004705
Paul Menagebd89aab2007-10-18 23:40:44 -07004706 if (cgrp == dummytop)
Paul Menage697f4162007-10-18 23:39:34 -07004707 return 1;
4708
Paul Menage7717f7b2009-09-23 15:56:22 -07004709 target = task_cgroup_from_root(task, cgrp->root);
Paul Menagebd89aab2007-10-18 23:40:44 -07004710 while (cgrp != target && cgrp!= cgrp->top_cgroup)
4711 cgrp = cgrp->parent;
4712 ret = (cgrp == target);
Paul Menage697f4162007-10-18 23:39:34 -07004713 return ret;
4714}
Paul Menage81a6a5c2007-10-18 23:39:38 -07004715
Paul Menagebd89aab2007-10-18 23:40:44 -07004716static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004717{
4718 /* All of these checks rely on RCU to keep the cgroup
4719 * structure alive */
Paul Menagebd89aab2007-10-18 23:40:44 -07004720 if (cgroup_is_releasable(cgrp) && !atomic_read(&cgrp->count)
4721 && list_empty(&cgrp->children) && !cgroup_has_css_refs(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004722 /* Control Group is currently removeable. If it's not
4723 * already queued for a userspace notification, queue
4724 * it now */
4725 int need_schedule_work = 0;
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004726 raw_spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07004727 if (!cgroup_is_removed(cgrp) &&
4728 list_empty(&cgrp->release_list)) {
4729 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004730 need_schedule_work = 1;
4731 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004732 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004733 if (need_schedule_work)
4734 schedule_work(&release_agent_work);
4735 }
4736}
4737
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -08004738/* Caller must verify that the css is not for root cgroup */
Colin Crossc0f6fa82010-11-23 21:37:03 -08004739void __css_get(struct cgroup_subsys_state *css, int count)
4740{
4741 atomic_add(count, &css->refcnt);
4742 set_bit(CGRP_RELEASABLE, &css->cgroup->flags);
4743}
4744EXPORT_SYMBOL_GPL(__css_get);
4745
4746/* Caller must verify that the css is not for root cgroup */
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -08004747void __css_put(struct cgroup_subsys_state *css, int count)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004748{
Paul Menagebd89aab2007-10-18 23:40:44 -07004749 struct cgroup *cgrp = css->cgroup;
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004750 int val;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004751 rcu_read_lock();
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -08004752 val = atomic_sub_return(count, &css->refcnt);
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004753 if (val == 1) {
Colin Crossc0f6fa82010-11-23 21:37:03 -08004754 check_for_release(cgrp);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004755 cgroup_wakeup_rmdir_waiter(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004756 }
4757 rcu_read_unlock();
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004758 WARN_ON_ONCE(val < 1);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004759}
Ben Blum67523c42010-03-10 15:22:11 -08004760EXPORT_SYMBOL_GPL(__css_put);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004761
4762/*
4763 * Notify userspace when a cgroup is released, by running the
4764 * configured release agent with the name of the cgroup (path
4765 * relative to the root of cgroup file system) as the argument.
4766 *
4767 * Most likely, this user command will try to rmdir this cgroup.
4768 *
4769 * This races with the possibility that some other task will be
4770 * attached to this cgroup before it is removed, or that some other
4771 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
4772 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
4773 * unused, and this cgroup will be reprieved from its death sentence,
4774 * to continue to serve a useful existence. Next time it's released,
4775 * we will get notified again, if it still has 'notify_on_release' set.
4776 *
4777 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
4778 * means only wait until the task is successfully execve()'d. The
4779 * separate release agent task is forked by call_usermodehelper(),
4780 * then control in this thread returns here, without waiting for the
4781 * release agent task. We don't bother to wait because the caller of
4782 * this routine has no use for the exit status of the release agent
4783 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07004784 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004785static void cgroup_release_agent(struct work_struct *work)
4786{
4787 BUG_ON(work != &release_agent_work);
4788 mutex_lock(&cgroup_mutex);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004789 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004790 while (!list_empty(&release_list)) {
4791 char *argv[3], *envp[3];
4792 int i;
Paul Menagee788e062008-07-25 01:46:59 -07004793 char *pathbuf = NULL, *agentbuf = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07004794 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07004795 struct cgroup,
4796 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07004797 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004798 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004799 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paul Menagee788e062008-07-25 01:46:59 -07004800 if (!pathbuf)
4801 goto continue_free;
4802 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0)
4803 goto continue_free;
4804 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
4805 if (!agentbuf)
4806 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004807
4808 i = 0;
Paul Menagee788e062008-07-25 01:46:59 -07004809 argv[i++] = agentbuf;
4810 argv[i++] = pathbuf;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004811 argv[i] = NULL;
4812
4813 i = 0;
4814 /* minimal command environment */
4815 envp[i++] = "HOME=/";
4816 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
4817 envp[i] = NULL;
4818
4819 /* Drop the lock while we invoke the usermode helper,
4820 * since the exec could involve hitting disk and hence
4821 * be a slow process */
4822 mutex_unlock(&cgroup_mutex);
4823 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004824 mutex_lock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07004825 continue_free:
4826 kfree(pathbuf);
4827 kfree(agentbuf);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004828 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004829 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004830 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004831 mutex_unlock(&cgroup_mutex);
4832}
Paul Menage8bab8dd2008-04-04 14:29:57 -07004833
4834static int __init cgroup_disable(char *str)
4835{
4836 int i;
4837 char *token;
4838
4839 while ((token = strsep(&str, ",")) != NULL) {
4840 if (!*token)
4841 continue;
Ben Blumaae8aab2010-03-10 15:22:07 -08004842 /*
4843 * cgroup_disable, being at boot time, can't know about module
4844 * subsystems, so we don't worry about them.
4845 */
4846 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07004847 struct cgroup_subsys *ss = subsys[i];
4848
4849 if (!strcmp(token, ss->name)) {
4850 ss->disabled = 1;
4851 printk(KERN_INFO "Disabling %s control group"
4852 " subsystem\n", ss->name);
4853 break;
4854 }
4855 }
4856 }
4857 return 1;
4858}
4859__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004860
4861/*
4862 * Functons for CSS ID.
4863 */
4864
4865/*
4866 *To get ID other than 0, this should be called when !cgroup_is_removed().
4867 */
4868unsigned short css_id(struct cgroup_subsys_state *css)
4869{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07004870 struct css_id *cssid;
4871
4872 /*
4873 * This css_id() can return correct value when somone has refcnt
4874 * on this or this is under rcu_read_lock(). Once css->id is allocated,
4875 * it's unchanged until freed.
4876 */
Michal Hockod8bf4ca2011-07-08 14:39:41 +02004877 cssid = rcu_dereference_check(css->id, atomic_read(&css->refcnt));
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004878
4879 if (cssid)
4880 return cssid->id;
4881 return 0;
4882}
Ben Blum67523c42010-03-10 15:22:11 -08004883EXPORT_SYMBOL_GPL(css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004884
4885unsigned short css_depth(struct cgroup_subsys_state *css)
4886{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07004887 struct css_id *cssid;
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->depth;
4893 return 0;
4894}
Ben Blum67523c42010-03-10 15:22:11 -08004895EXPORT_SYMBOL_GPL(css_depth);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004896
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004897/**
4898 * css_is_ancestor - test "root" css is an ancestor of "child"
4899 * @child: the css to be tested.
4900 * @root: the css supporsed to be an ancestor of the child.
4901 *
4902 * Returns true if "root" is an ancestor of "child" in its hierarchy. Because
4903 * this function reads css->id, this use rcu_dereference() and rcu_read_lock().
4904 * But, considering usual usage, the csses should be valid objects after test.
4905 * Assuming that the caller will do some action to the child if this returns
4906 * returns true, the caller must take "child";s reference count.
4907 * If "child" is valid object and this returns true, "root" is valid, too.
4908 */
4909
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004910bool css_is_ancestor(struct cgroup_subsys_state *child,
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07004911 const struct cgroup_subsys_state *root)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004912{
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004913 struct css_id *child_id;
4914 struct css_id *root_id;
4915 bool ret = true;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004916
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004917 rcu_read_lock();
4918 child_id = rcu_dereference(child->id);
4919 root_id = rcu_dereference(root->id);
4920 if (!child_id
4921 || !root_id
4922 || (child_id->depth < root_id->depth)
4923 || (child_id->stack[root_id->depth] != root_id->id))
4924 ret = false;
4925 rcu_read_unlock();
4926 return ret;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004927}
4928
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004929void free_css_id(struct cgroup_subsys *ss, struct cgroup_subsys_state *css)
4930{
4931 struct css_id *id = css->id;
4932 /* When this is called before css_id initialization, id can be NULL */
4933 if (!id)
4934 return;
4935
4936 BUG_ON(!ss->use_id);
4937
4938 rcu_assign_pointer(id->css, NULL);
4939 rcu_assign_pointer(css->id, NULL);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07004940 spin_lock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004941 idr_remove(&ss->idr, id->id);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07004942 spin_unlock(&ss->id_lock);
Lai Jiangshan025cea92011-03-15 17:56:10 +08004943 kfree_rcu(id, rcu_head);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004944}
Ben Blum67523c42010-03-10 15:22:11 -08004945EXPORT_SYMBOL_GPL(free_css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004946
4947/*
4948 * This is called by init or create(). Then, calls to this function are
4949 * always serialized (By cgroup_mutex() at create()).
4950 */
4951
4952static struct css_id *get_new_cssid(struct cgroup_subsys *ss, int depth)
4953{
4954 struct css_id *newid;
4955 int myid, error, size;
4956
4957 BUG_ON(!ss->use_id);
4958
4959 size = sizeof(*newid) + sizeof(unsigned short) * (depth + 1);
4960 newid = kzalloc(size, GFP_KERNEL);
4961 if (!newid)
4962 return ERR_PTR(-ENOMEM);
4963 /* get id */
4964 if (unlikely(!idr_pre_get(&ss->idr, GFP_KERNEL))) {
4965 error = -ENOMEM;
4966 goto err_out;
4967 }
Hugh Dickins42aee6c2012-03-21 16:34:21 -07004968 spin_lock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004969 /* Don't use 0. allocates an ID of 1-65535 */
4970 error = idr_get_new_above(&ss->idr, newid, 1, &myid);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07004971 spin_unlock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004972
4973 /* Returns error when there are no free spaces for new ID.*/
4974 if (error) {
4975 error = -ENOSPC;
4976 goto err_out;
4977 }
4978 if (myid > CSS_ID_MAX)
4979 goto remove_idr;
4980
4981 newid->id = myid;
4982 newid->depth = depth;
4983 return newid;
4984remove_idr:
4985 error = -ENOSPC;
Hugh Dickins42aee6c2012-03-21 16:34:21 -07004986 spin_lock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004987 idr_remove(&ss->idr, myid);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07004988 spin_unlock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004989err_out:
4990 kfree(newid);
4991 return ERR_PTR(error);
4992
4993}
4994
Ben Blume6a11052010-03-10 15:22:09 -08004995static int __init_or_module cgroup_init_idr(struct cgroup_subsys *ss,
4996 struct cgroup_subsys_state *rootcss)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004997{
4998 struct css_id *newid;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004999
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005000 spin_lock_init(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005001 idr_init(&ss->idr);
5002
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005003 newid = get_new_cssid(ss, 0);
5004 if (IS_ERR(newid))
5005 return PTR_ERR(newid);
5006
5007 newid->stack[0] = newid->id;
5008 newid->css = rootcss;
5009 rootcss->id = newid;
5010 return 0;
5011}
5012
5013static int alloc_css_id(struct cgroup_subsys *ss, struct cgroup *parent,
5014 struct cgroup *child)
5015{
5016 int subsys_id, i, depth = 0;
5017 struct cgroup_subsys_state *parent_css, *child_css;
Li Zefanfae9c792010-04-22 17:30:00 +08005018 struct css_id *child_id, *parent_id;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005019
5020 subsys_id = ss->subsys_id;
5021 parent_css = parent->subsys[subsys_id];
5022 child_css = child->subsys[subsys_id];
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005023 parent_id = parent_css->id;
Greg Thelen94b3dd02010-06-04 14:15:03 -07005024 depth = parent_id->depth + 1;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005025
5026 child_id = get_new_cssid(ss, depth);
5027 if (IS_ERR(child_id))
5028 return PTR_ERR(child_id);
5029
5030 for (i = 0; i < depth; i++)
5031 child_id->stack[i] = parent_id->stack[i];
5032 child_id->stack[depth] = child_id->id;
5033 /*
5034 * child_id->css pointer will be set after this cgroup is available
5035 * see cgroup_populate_dir()
5036 */
5037 rcu_assign_pointer(child_css->id, child_id);
5038
5039 return 0;
5040}
5041
5042/**
5043 * css_lookup - lookup css by id
5044 * @ss: cgroup subsys to be looked into.
5045 * @id: the id
5046 *
5047 * Returns pointer to cgroup_subsys_state if there is valid one with id.
5048 * NULL if not. Should be called under rcu_read_lock()
5049 */
5050struct cgroup_subsys_state *css_lookup(struct cgroup_subsys *ss, int id)
5051{
5052 struct css_id *cssid = NULL;
5053
5054 BUG_ON(!ss->use_id);
5055 cssid = idr_find(&ss->idr, id);
5056
5057 if (unlikely(!cssid))
5058 return NULL;
5059
5060 return rcu_dereference(cssid->css);
5061}
Ben Blum67523c42010-03-10 15:22:11 -08005062EXPORT_SYMBOL_GPL(css_lookup);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005063
5064/**
5065 * css_get_next - lookup next cgroup under specified hierarchy.
5066 * @ss: pointer to subsystem
5067 * @id: current position of iteration.
5068 * @root: pointer to css. search tree under this.
5069 * @foundid: position of found object.
5070 *
5071 * Search next css under the specified hierarchy of rootid. Calling under
5072 * rcu_read_lock() is necessary. Returns NULL if it reaches the end.
5073 */
5074struct cgroup_subsys_state *
5075css_get_next(struct cgroup_subsys *ss, int id,
5076 struct cgroup_subsys_state *root, int *foundid)
5077{
5078 struct cgroup_subsys_state *ret = NULL;
5079 struct css_id *tmp;
5080 int tmpid;
5081 int rootid = css_id(root);
5082 int depth = css_depth(root);
5083
5084 if (!rootid)
5085 return NULL;
5086
5087 BUG_ON(!ss->use_id);
Hugh Dickinsca464d62012-03-21 16:34:21 -07005088 WARN_ON_ONCE(!rcu_read_lock_held());
5089
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005090 /* fill start point for scan */
5091 tmpid = id;
5092 while (1) {
5093 /*
5094 * scan next entry from bitmap(tree), tmpid is updated after
5095 * idr_get_next().
5096 */
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005097 tmp = idr_get_next(&ss->idr, &tmpid);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005098 if (!tmp)
5099 break;
5100 if (tmp->depth >= depth && tmp->stack[depth] == rootid) {
5101 ret = rcu_dereference(tmp->css);
5102 if (ret) {
5103 *foundid = tmpid;
5104 break;
5105 }
5106 }
5107 /* continue to scan from next id */
5108 tmpid = tmpid + 1;
5109 }
5110 return ret;
5111}
5112
Stephane Eraniane5d13672011-02-14 11:20:01 +02005113/*
5114 * get corresponding css from file open on cgroupfs directory
5115 */
5116struct cgroup_subsys_state *cgroup_css_from_dir(struct file *f, int id)
5117{
5118 struct cgroup *cgrp;
5119 struct inode *inode;
5120 struct cgroup_subsys_state *css;
5121
5122 inode = f->f_dentry->d_inode;
5123 /* check in cgroup filesystem dir */
5124 if (inode->i_op != &cgroup_dir_inode_operations)
5125 return ERR_PTR(-EBADF);
5126
5127 if (id < 0 || id >= CGROUP_SUBSYS_COUNT)
5128 return ERR_PTR(-EINVAL);
5129
5130 /* get cgroup */
5131 cgrp = __d_cgrp(f->f_dentry);
5132 css = cgrp->subsys[id];
5133 return css ? css : ERR_PTR(-ENOENT);
5134}
5135
Paul Menagefe693432009-09-23 15:56:20 -07005136#ifdef CONFIG_CGROUP_DEBUG
Li Zefan761b3ef2012-01-31 13:47:36 +08005137static struct cgroup_subsys_state *debug_create(struct cgroup *cont)
Paul Menagefe693432009-09-23 15:56:20 -07005138{
5139 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
5140
5141 if (!css)
5142 return ERR_PTR(-ENOMEM);
5143
5144 return css;
5145}
5146
Li Zefan761b3ef2012-01-31 13:47:36 +08005147static void debug_destroy(struct cgroup *cont)
Paul Menagefe693432009-09-23 15:56:20 -07005148{
5149 kfree(cont->subsys[debug_subsys_id]);
5150}
5151
5152static u64 cgroup_refcount_read(struct cgroup *cont, struct cftype *cft)
5153{
5154 return atomic_read(&cont->count);
5155}
5156
5157static u64 debug_taskcount_read(struct cgroup *cont, struct cftype *cft)
5158{
5159 return cgroup_task_count(cont);
5160}
5161
5162static u64 current_css_set_read(struct cgroup *cont, struct cftype *cft)
5163{
5164 return (u64)(unsigned long)current->cgroups;
5165}
5166
5167static u64 current_css_set_refcount_read(struct cgroup *cont,
5168 struct cftype *cft)
5169{
5170 u64 count;
5171
5172 rcu_read_lock();
5173 count = atomic_read(&current->cgroups->refcount);
5174 rcu_read_unlock();
5175 return count;
5176}
5177
Paul Menage7717f7b2009-09-23 15:56:22 -07005178static int current_css_set_cg_links_read(struct cgroup *cont,
5179 struct cftype *cft,
5180 struct seq_file *seq)
5181{
5182 struct cg_cgroup_link *link;
5183 struct css_set *cg;
5184
5185 read_lock(&css_set_lock);
5186 rcu_read_lock();
5187 cg = rcu_dereference(current->cgroups);
5188 list_for_each_entry(link, &cg->cg_links, cg_link_list) {
5189 struct cgroup *c = link->cgrp;
5190 const char *name;
5191
5192 if (c->dentry)
5193 name = c->dentry->d_name.name;
5194 else
5195 name = "?";
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005196 seq_printf(seq, "Root %d group %s\n",
5197 c->root->hierarchy_id, name);
Paul Menage7717f7b2009-09-23 15:56:22 -07005198 }
5199 rcu_read_unlock();
5200 read_unlock(&css_set_lock);
5201 return 0;
5202}
5203
5204#define MAX_TASKS_SHOWN_PER_CSS 25
5205static int cgroup_css_links_read(struct cgroup *cont,
5206 struct cftype *cft,
5207 struct seq_file *seq)
5208{
5209 struct cg_cgroup_link *link;
5210
5211 read_lock(&css_set_lock);
5212 list_for_each_entry(link, &cont->css_sets, cgrp_link_list) {
5213 struct css_set *cg = link->cg;
5214 struct task_struct *task;
5215 int count = 0;
5216 seq_printf(seq, "css_set %p\n", cg);
5217 list_for_each_entry(task, &cg->tasks, cg_list) {
5218 if (count++ > MAX_TASKS_SHOWN_PER_CSS) {
5219 seq_puts(seq, " ...\n");
5220 break;
5221 } else {
5222 seq_printf(seq, " task %d\n",
5223 task_pid_vnr(task));
5224 }
5225 }
5226 }
5227 read_unlock(&css_set_lock);
5228 return 0;
5229}
5230
Paul Menagefe693432009-09-23 15:56:20 -07005231static u64 releasable_read(struct cgroup *cgrp, struct cftype *cft)
5232{
5233 return test_bit(CGRP_RELEASABLE, &cgrp->flags);
5234}
5235
5236static struct cftype debug_files[] = {
5237 {
5238 .name = "cgroup_refcount",
5239 .read_u64 = cgroup_refcount_read,
5240 },
5241 {
5242 .name = "taskcount",
5243 .read_u64 = debug_taskcount_read,
5244 },
5245
5246 {
5247 .name = "current_css_set",
5248 .read_u64 = current_css_set_read,
5249 },
5250
5251 {
5252 .name = "current_css_set_refcount",
5253 .read_u64 = current_css_set_refcount_read,
5254 },
5255
5256 {
Paul Menage7717f7b2009-09-23 15:56:22 -07005257 .name = "current_css_set_cg_links",
5258 .read_seq_string = current_css_set_cg_links_read,
5259 },
5260
5261 {
5262 .name = "cgroup_css_links",
5263 .read_seq_string = cgroup_css_links_read,
5264 },
5265
5266 {
Paul Menagefe693432009-09-23 15:56:20 -07005267 .name = "releasable",
5268 .read_u64 = releasable_read,
5269 },
5270};
5271
5272static int debug_populate(struct cgroup_subsys *ss, struct cgroup *cont)
5273{
5274 return cgroup_add_files(cont, ss, debug_files,
5275 ARRAY_SIZE(debug_files));
5276}
5277
5278struct cgroup_subsys debug_subsys = {
5279 .name = "debug",
5280 .create = debug_create,
5281 .destroy = debug_destroy,
5282 .populate = debug_populate,
5283 .subsys_id = debug_subsys_id,
5284};
5285#endif /* CONFIG_CGROUP_DEBUG */