blob: 511d6b537e35926f01934bc0c1ddd3691d435499 [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);
388 if (atomic_dec_and_test(&cgrp->count)) {
389 check_for_release(cgrp);
390 cgroup_wakeup_rmdir_waiter(cgrp);
391 }
392 kfree(link);
393 }
394 write_unlock(&css_set_lock);
395
396 kfree(cg);
397}
398
399static void free_css_set_rcu(struct rcu_head *obj)
400{
401 struct css_set *cg = container_of(obj, struct css_set, rcu_head);
402
403 INIT_WORK(&cg->work, free_css_set_work);
404 schedule_work(&cg->work);
405}
406
Paul Menage817929e2007-10-18 23:39:36 -0700407/* We don't maintain the lists running through each css_set to its
408 * task until after the first call to cgroup_iter_start(). This
409 * reduces the fork()/exit() overhead for people who have cgroups
410 * compiled into their kernel but not actually in use */
Li Zefan8947f9d2008-07-25 01:46:56 -0700411static int use_task_css_set_links __read_mostly;
Paul Menage817929e2007-10-18 23:39:36 -0700412
Colin Crossc0f6fa82010-11-23 21:37:03 -0800413/*
414 * refcounted get/put for css_set objects
415 */
416static inline void get_css_set(struct css_set *cg)
417{
418 atomic_inc(&cg->refcount);
419}
420
421static void put_css_set(struct css_set *cg)
Paul Menageb4f48b62007-10-18 23:39:33 -0700422{
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700423 /*
424 * Ensure that the refcount doesn't hit zero while any readers
425 * can see it. Similar to atomic_dec_and_lock(), but for an
426 * rwlock
427 */
428 if (atomic_add_unless(&cg->refcount, -1, 1))
429 return;
430 write_lock(&css_set_lock);
431 if (!atomic_dec_and_test(&cg->refcount)) {
432 write_unlock(&css_set_lock);
433 return;
434 }
Paul Menage81a6a5c2007-10-18 23:39:38 -0700435
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700436 hlist_del(&cg->hlist);
437 css_set_count--;
438
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700439 write_unlock(&css_set_lock);
Colin Crossbefae2f2010-11-23 21:37:04 -0800440 call_rcu(&cg->rcu_head, free_css_set_rcu);
Paul Menage817929e2007-10-18 23:39:36 -0700441}
442
443/*
Paul Menage7717f7b2009-09-23 15:56:22 -0700444 * compare_css_sets - helper function for find_existing_css_set().
445 * @cg: candidate css_set being tested
446 * @old_cg: existing css_set for a task
447 * @new_cgrp: cgroup that's being entered by the task
448 * @template: desired set of css pointers in css_set (pre-calculated)
449 *
450 * Returns true if "cg" matches "old_cg" except for the hierarchy
451 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
452 */
453static bool compare_css_sets(struct css_set *cg,
454 struct css_set *old_cg,
455 struct cgroup *new_cgrp,
456 struct cgroup_subsys_state *template[])
457{
458 struct list_head *l1, *l2;
459
460 if (memcmp(template, cg->subsys, sizeof(cg->subsys))) {
461 /* Not all subsystems matched */
462 return false;
463 }
464
465 /*
466 * Compare cgroup pointers in order to distinguish between
467 * different cgroups in heirarchies with no subsystems. We
468 * could get by with just this check alone (and skip the
469 * memcmp above) but on most setups the memcmp check will
470 * avoid the need for this more expensive check on almost all
471 * candidates.
472 */
473
474 l1 = &cg->cg_links;
475 l2 = &old_cg->cg_links;
476 while (1) {
477 struct cg_cgroup_link *cgl1, *cgl2;
478 struct cgroup *cg1, *cg2;
479
480 l1 = l1->next;
481 l2 = l2->next;
482 /* See if we reached the end - both lists are equal length. */
483 if (l1 == &cg->cg_links) {
484 BUG_ON(l2 != &old_cg->cg_links);
485 break;
486 } else {
487 BUG_ON(l2 == &old_cg->cg_links);
488 }
489 /* Locate the cgroups associated with these links. */
490 cgl1 = list_entry(l1, struct cg_cgroup_link, cg_link_list);
491 cgl2 = list_entry(l2, struct cg_cgroup_link, cg_link_list);
492 cg1 = cgl1->cgrp;
493 cg2 = cgl2->cgrp;
494 /* Hierarchies should be linked in the same order. */
495 BUG_ON(cg1->root != cg2->root);
496
497 /*
498 * If this hierarchy is the hierarchy of the cgroup
499 * that's changing, then we need to check that this
500 * css_set points to the new cgroup; if it's any other
501 * hierarchy, then this css_set should point to the
502 * same cgroup as the old css_set.
503 */
504 if (cg1->root == new_cgrp->root) {
505 if (cg1 != new_cgrp)
506 return false;
507 } else {
508 if (cg1 != cg2)
509 return false;
510 }
511 }
512 return true;
513}
514
515/*
Paul Menage817929e2007-10-18 23:39:36 -0700516 * find_existing_css_set() is a helper for
517 * find_css_set(), and checks to see whether an existing
Li Zefan472b1052008-04-29 01:00:11 -0700518 * css_set is suitable.
Paul Menage817929e2007-10-18 23:39:36 -0700519 *
520 * oldcg: the cgroup group that we're using before the cgroup
521 * transition
522 *
Paul Menagebd89aab2007-10-18 23:40:44 -0700523 * cgrp: the cgroup that we're moving into
Paul Menage817929e2007-10-18 23:39:36 -0700524 *
525 * template: location in which to build the desired set of subsystem
526 * state objects for the new cgroup group
527 */
Paul Menage817929e2007-10-18 23:39:36 -0700528static struct css_set *find_existing_css_set(
529 struct css_set *oldcg,
Paul Menagebd89aab2007-10-18 23:40:44 -0700530 struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -0700531 struct cgroup_subsys_state *template[])
532{
533 int i;
Paul Menagebd89aab2007-10-18 23:40:44 -0700534 struct cgroupfs_root *root = cgrp->root;
Li Zefan472b1052008-04-29 01:00:11 -0700535 struct hlist_head *hhead;
536 struct hlist_node *node;
537 struct css_set *cg;
Paul Menage817929e2007-10-18 23:39:36 -0700538
Ben Blumaae8aab2010-03-10 15:22:07 -0800539 /*
540 * Build the set of subsystem state objects that we want to see in the
541 * new css_set. while subsystems can change globally, the entries here
542 * won't change, so no need for locking.
543 */
Paul Menage817929e2007-10-18 23:39:36 -0700544 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Li Zefan8d53d552008-02-23 15:24:11 -0800545 if (root->subsys_bits & (1UL << i)) {
Paul Menage817929e2007-10-18 23:39:36 -0700546 /* Subsystem is in this hierarchy. So we want
547 * the subsystem state from the new
548 * cgroup */
Paul Menagebd89aab2007-10-18 23:40:44 -0700549 template[i] = cgrp->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700550 } else {
551 /* Subsystem is not in this hierarchy, so we
552 * don't want to change the subsystem state */
553 template[i] = oldcg->subsys[i];
554 }
555 }
556
Li Zefan472b1052008-04-29 01:00:11 -0700557 hhead = css_set_hash(template);
558 hlist_for_each_entry(cg, node, hhead, hlist) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700559 if (!compare_css_sets(cg, oldcg, cgrp, template))
560 continue;
561
562 /* This css_set matches what we need */
563 return cg;
Li Zefan472b1052008-04-29 01:00:11 -0700564 }
Paul Menage817929e2007-10-18 23:39:36 -0700565
566 /* No existing cgroup group matched */
567 return NULL;
568}
569
Paul Menage817929e2007-10-18 23:39:36 -0700570static void free_cg_links(struct list_head *tmp)
571{
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700572 struct cg_cgroup_link *link;
573 struct cg_cgroup_link *saved_link;
574
575 list_for_each_entry_safe(link, saved_link, tmp, cgrp_link_list) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700576 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -0700577 kfree(link);
578 }
579}
580
581/*
Li Zefan36553432008-07-29 22:33:19 -0700582 * allocate_cg_links() allocates "count" cg_cgroup_link structures
583 * and chains them on tmp through their cgrp_link_list fields. Returns 0 on
584 * success or a negative error
585 */
586static int allocate_cg_links(int count, struct list_head *tmp)
587{
588 struct cg_cgroup_link *link;
589 int i;
590 INIT_LIST_HEAD(tmp);
591 for (i = 0; i < count; i++) {
592 link = kmalloc(sizeof(*link), GFP_KERNEL);
593 if (!link) {
594 free_cg_links(tmp);
595 return -ENOMEM;
596 }
597 list_add(&link->cgrp_link_list, tmp);
598 }
599 return 0;
600}
601
Li Zefanc12f65d2009-01-07 18:07:42 -0800602/**
603 * link_css_set - a helper function to link a css_set to a cgroup
604 * @tmp_cg_links: cg_cgroup_link objects allocated by allocate_cg_links()
605 * @cg: the css_set to be linked
606 * @cgrp: the destination cgroup
607 */
608static void link_css_set(struct list_head *tmp_cg_links,
609 struct css_set *cg, struct cgroup *cgrp)
610{
611 struct cg_cgroup_link *link;
612
613 BUG_ON(list_empty(tmp_cg_links));
614 link = list_first_entry(tmp_cg_links, struct cg_cgroup_link,
615 cgrp_link_list);
616 link->cg = cg;
Paul Menage7717f7b2009-09-23 15:56:22 -0700617 link->cgrp = cgrp;
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700618 atomic_inc(&cgrp->count);
Li Zefanc12f65d2009-01-07 18:07:42 -0800619 list_move(&link->cgrp_link_list, &cgrp->css_sets);
Paul Menage7717f7b2009-09-23 15:56:22 -0700620 /*
621 * Always add links to the tail of the list so that the list
622 * is sorted by order of hierarchy creation
623 */
624 list_add_tail(&link->cg_link_list, &cg->cg_links);
Li Zefanc12f65d2009-01-07 18:07:42 -0800625}
626
Li Zefan36553432008-07-29 22:33:19 -0700627/*
Paul Menage817929e2007-10-18 23:39:36 -0700628 * find_css_set() takes an existing cgroup group and a
629 * cgroup object, and returns a css_set object that's
630 * equivalent to the old group, but with the given cgroup
631 * substituted into the appropriate hierarchy. Must be called with
632 * cgroup_mutex held
633 */
Paul Menage817929e2007-10-18 23:39:36 -0700634static struct css_set *find_css_set(
Paul Menagebd89aab2007-10-18 23:40:44 -0700635 struct css_set *oldcg, struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700636{
637 struct css_set *res;
638 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT];
Paul Menage817929e2007-10-18 23:39:36 -0700639
640 struct list_head tmp_cg_links;
Paul Menage817929e2007-10-18 23:39:36 -0700641
Li Zefan472b1052008-04-29 01:00:11 -0700642 struct hlist_head *hhead;
Paul Menage7717f7b2009-09-23 15:56:22 -0700643 struct cg_cgroup_link *link;
Li Zefan472b1052008-04-29 01:00:11 -0700644
Paul Menage817929e2007-10-18 23:39:36 -0700645 /* First see if we already have a cgroup group that matches
646 * the desired set */
Li Zefan7e9abd82008-07-25 01:46:54 -0700647 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -0700648 res = find_existing_css_set(oldcg, cgrp, template);
Paul Menage817929e2007-10-18 23:39:36 -0700649 if (res)
650 get_css_set(res);
Li Zefan7e9abd82008-07-25 01:46:54 -0700651 read_unlock(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -0700652
653 if (res)
654 return res;
655
656 res = kmalloc(sizeof(*res), GFP_KERNEL);
657 if (!res)
658 return NULL;
659
660 /* Allocate all the cg_cgroup_link objects that we'll need */
661 if (allocate_cg_links(root_count, &tmp_cg_links) < 0) {
662 kfree(res);
663 return NULL;
664 }
665
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700666 atomic_set(&res->refcount, 1);
Paul Menage817929e2007-10-18 23:39:36 -0700667 INIT_LIST_HEAD(&res->cg_links);
668 INIT_LIST_HEAD(&res->tasks);
Li Zefan472b1052008-04-29 01:00:11 -0700669 INIT_HLIST_NODE(&res->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700670
671 /* Copy the set of subsystem state objects generated in
672 * find_existing_css_set() */
673 memcpy(res->subsys, template, sizeof(res->subsys));
674
675 write_lock(&css_set_lock);
676 /* Add reference counts and links from the new css_set. */
Paul Menage7717f7b2009-09-23 15:56:22 -0700677 list_for_each_entry(link, &oldcg->cg_links, cg_link_list) {
678 struct cgroup *c = link->cgrp;
679 if (c->root == cgrp->root)
680 c = cgrp;
681 link_css_set(&tmp_cg_links, res, c);
682 }
Paul Menage817929e2007-10-18 23:39:36 -0700683
684 BUG_ON(!list_empty(&tmp_cg_links));
685
Paul Menage817929e2007-10-18 23:39:36 -0700686 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -0700687
688 /* Add this cgroup group to the hash table */
689 hhead = css_set_hash(res->subsys);
690 hlist_add_head(&res->hlist, hhead);
691
Paul Menage817929e2007-10-18 23:39:36 -0700692 write_unlock(&css_set_lock);
693
694 return res;
Paul Menageb4f48b62007-10-18 23:39:33 -0700695}
696
Paul Menageddbcc7e2007-10-18 23:39:30 -0700697/*
Paul Menage7717f7b2009-09-23 15:56:22 -0700698 * Return the cgroup for "task" from the given hierarchy. Must be
699 * called with cgroup_mutex held.
700 */
701static struct cgroup *task_cgroup_from_root(struct task_struct *task,
702 struct cgroupfs_root *root)
703{
704 struct css_set *css;
705 struct cgroup *res = NULL;
706
707 BUG_ON(!mutex_is_locked(&cgroup_mutex));
708 read_lock(&css_set_lock);
709 /*
710 * No need to lock the task - since we hold cgroup_mutex the
711 * task can't change groups, so the only thing that can happen
712 * is that it exits and its css is set back to init_css_set.
713 */
714 css = task->cgroups;
715 if (css == &init_css_set) {
716 res = &root->top_cgroup;
717 } else {
718 struct cg_cgroup_link *link;
719 list_for_each_entry(link, &css->cg_links, cg_link_list) {
720 struct cgroup *c = link->cgrp;
721 if (c->root == root) {
722 res = c;
723 break;
724 }
725 }
726 }
727 read_unlock(&css_set_lock);
728 BUG_ON(!res);
729 return res;
730}
731
732/*
Paul Menageddbcc7e2007-10-18 23:39:30 -0700733 * There is one global cgroup mutex. We also require taking
734 * task_lock() when dereferencing a task's cgroup subsys pointers.
735 * See "The task_lock() exception", at the end of this comment.
736 *
737 * A task must hold cgroup_mutex to modify cgroups.
738 *
739 * Any task can increment and decrement the count field without lock.
740 * So in general, code holding cgroup_mutex can't rely on the count
741 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -0800742 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -0700743 * means that no tasks are currently attached, therefore there is no
744 * way a task attached to that cgroup can fork (the other way to
745 * increment the count). So code holding cgroup_mutex can safely
746 * assume that if the count is zero, it will stay zero. Similarly, if
747 * a task holds cgroup_mutex on a cgroup with zero count, it
748 * knows that the cgroup won't be removed, as cgroup_rmdir()
749 * needs that mutex.
750 *
Paul Menageddbcc7e2007-10-18 23:39:30 -0700751 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
752 * (usually) take cgroup_mutex. These are the two most performance
753 * critical pieces of code here. The exception occurs on cgroup_exit(),
754 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
755 * is taken, and if the cgroup count is zero, a usermode call made
Li Zefana043e3b2008-02-23 15:24:09 -0800756 * to the release agent with the name of the cgroup (path relative to
757 * the root of cgroup file system) as the argument.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700758 *
759 * A cgroup can only be deleted if both its 'count' of using tasks
760 * is zero, and its list of 'children' cgroups is empty. Since all
761 * tasks in the system use _some_ cgroup, and since there is always at
762 * least one task in the system (init, pid == 1), therefore, top_cgroup
763 * always has either children cgroups and/or using tasks. So we don't
764 * need a special hack to ensure that top_cgroup cannot be deleted.
765 *
766 * The task_lock() exception
767 *
768 * The need for this exception arises from the action of
Cliff Wickman956db3c2008-02-07 00:14:43 -0800769 * cgroup_attach_task(), which overwrites one tasks cgroup pointer with
Li Zefana043e3b2008-02-23 15:24:09 -0800770 * another. It does so using cgroup_mutex, however there are
Paul Menageddbcc7e2007-10-18 23:39:30 -0700771 * several performance critical places that need to reference
Colin Crossbefae2f2010-11-23 21:37:04 -0800772 * task->cgroups without the expense of grabbing a system global
Paul Menageddbcc7e2007-10-18 23:39:30 -0700773 * mutex. Therefore except as noted below, when dereferencing or, as
Colin Crossbefae2f2010-11-23 21:37:04 -0800774 * in cgroup_attach_task(), modifying a task's cgroups pointer we use
Paul Menageddbcc7e2007-10-18 23:39:30 -0700775 * task_lock(), which acts on a spinlock (task->alloc_lock) already in
776 * the task_struct routinely used for such matters.
777 *
778 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -0800779 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700780 */
781
Paul Menageddbcc7e2007-10-18 23:39:30 -0700782/**
783 * cgroup_lock - lock out any changes to cgroup structures
784 *
785 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700786void cgroup_lock(void)
787{
788 mutex_lock(&cgroup_mutex);
789}
Ben Blum67523c42010-03-10 15:22:11 -0800790EXPORT_SYMBOL_GPL(cgroup_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700791
792/**
793 * cgroup_unlock - release lock on cgroup changes
794 *
795 * Undo the lock taken in a previous cgroup_lock() call.
796 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700797void cgroup_unlock(void)
798{
799 mutex_unlock(&cgroup_mutex);
800}
Ben Blum67523c42010-03-10 15:22:11 -0800801EXPORT_SYMBOL_GPL(cgroup_unlock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700802
803/*
804 * A couple of forward declarations required, due to cyclic reference loop:
805 * cgroup_mkdir -> cgroup_create -> cgroup_populate_dir ->
806 * cgroup_add_file -> cgroup_create_file -> cgroup_dir_inode_operations
807 * -> cgroup_mkdir.
808 */
809
Al Viro18bb1db2011-07-26 01:41:39 -0400810static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode);
Al Viroc72a04e2011-01-14 05:31:45 +0000811static struct dentry *cgroup_lookup(struct inode *, struct dentry *, struct nameidata *);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700812static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -0700813static int cgroup_populate_dir(struct cgroup *cgrp);
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -0700814static const struct inode_operations cgroup_dir_inode_operations;
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700815static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -0700816
817static struct backing_dev_info cgroup_backing_dev_info = {
Jens Axboed9938312009-06-12 14:45:52 +0200818 .name = "cgroup",
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700819 .capabilities = BDI_CAP_NO_ACCT_AND_WRITEBACK,
Paul Menagea4243162007-10-18 23:39:35 -0700820};
Paul Menageddbcc7e2007-10-18 23:39:30 -0700821
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700822static int alloc_css_id(struct cgroup_subsys *ss,
823 struct cgroup *parent, struct cgroup *child);
824
Al Viroa5e7ed32011-07-26 01:55:55 -0400825static struct inode *cgroup_new_inode(umode_t mode, struct super_block *sb)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700826{
827 struct inode *inode = new_inode(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700828
829 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400830 inode->i_ino = get_next_ino();
Paul Menageddbcc7e2007-10-18 23:39:30 -0700831 inode->i_mode = mode;
David Howells76aac0e2008-11-14 10:39:12 +1100832 inode->i_uid = current_fsuid();
833 inode->i_gid = current_fsgid();
Paul Menageddbcc7e2007-10-18 23:39:30 -0700834 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
835 inode->i_mapping->backing_dev_info = &cgroup_backing_dev_info;
836 }
837 return inode;
838}
839
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800840/*
841 * Call subsys's pre_destroy handler.
842 * This is called before css refcnt check.
843 */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700844static int cgroup_call_pre_destroy(struct cgroup *cgrp)
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800845{
846 struct cgroup_subsys *ss;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700847 int ret = 0;
848
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800849 for_each_subsys(cgrp->root, ss)
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700850 if (ss->pre_destroy) {
Li Zefan761b3ef2012-01-31 13:47:36 +0800851 ret = ss->pre_destroy(cgrp);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700852 if (ret)
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -0800853 break;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700854 }
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800855
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700856 return ret;
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800857}
858
Paul Menageddbcc7e2007-10-18 23:39:30 -0700859static void cgroup_diput(struct dentry *dentry, struct inode *inode)
860{
861 /* is dentry a directory ? if so, kfree() associated cgroup */
862 if (S_ISDIR(inode->i_mode)) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700863 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800864 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -0700865 BUG_ON(!(cgroup_is_removed(cgrp)));
Paul Menage81a6a5c2007-10-18 23:39:38 -0700866 /* It's possible for external users to be holding css
867 * reference counts on a cgroup; css_put() needs to
868 * be able to access the cgroup after decrementing
869 * the reference count in order to know if it needs to
870 * queue the cgroup to be handled by the release
871 * agent */
872 synchronize_rcu();
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800873
874 mutex_lock(&cgroup_mutex);
875 /*
876 * Release the subsystem state objects.
877 */
Li Zefan75139b82009-01-07 18:07:33 -0800878 for_each_subsys(cgrp->root, ss)
Li Zefan761b3ef2012-01-31 13:47:36 +0800879 ss->destroy(cgrp);
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800880
881 cgrp->root->number_of_cgroups--;
882 mutex_unlock(&cgroup_mutex);
883
Paul Menagea47295e2009-01-07 18:07:44 -0800884 /*
885 * Drop the active superblock reference that we took when we
886 * created the cgroup
887 */
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800888 deactivate_super(cgrp->root->sb);
889
Ben Blum72a8cb32009-09-23 15:56:27 -0700890 /*
891 * if we're getting rid of the cgroup, refcount should ensure
892 * that there are no pidlists left.
893 */
894 BUG_ON(!list_empty(&cgrp->pidlists));
895
Lai Jiangshanf2da1c42011-03-15 17:55:16 +0800896 kfree_rcu(cgrp, rcu_head);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700897 }
898 iput(inode);
899}
900
Al Viroc72a04e2011-01-14 05:31:45 +0000901static int cgroup_delete(const struct dentry *d)
902{
903 return 1;
904}
905
Paul Menageddbcc7e2007-10-18 23:39:30 -0700906static void remove_dir(struct dentry *d)
907{
908 struct dentry *parent = dget(d->d_parent);
909
910 d_delete(d);
911 simple_rmdir(parent->d_inode, d);
912 dput(parent);
913}
914
915static void cgroup_clear_directory(struct dentry *dentry)
916{
917 struct list_head *node;
918
919 BUG_ON(!mutex_is_locked(&dentry->d_inode->i_mutex));
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100920 spin_lock(&dentry->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700921 node = dentry->d_subdirs.next;
922 while (node != &dentry->d_subdirs) {
923 struct dentry *d = list_entry(node, struct dentry, d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100924
925 spin_lock_nested(&d->d_lock, DENTRY_D_LOCK_NESTED);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700926 list_del_init(node);
927 if (d->d_inode) {
928 /* This should never be called on a cgroup
929 * directory with child cgroups */
930 BUG_ON(d->d_inode->i_mode & S_IFDIR);
Nick Piggindc0474b2011-01-07 17:49:43 +1100931 dget_dlock(d);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100932 spin_unlock(&d->d_lock);
933 spin_unlock(&dentry->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700934 d_delete(d);
935 simple_unlink(dentry->d_inode, d);
936 dput(d);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100937 spin_lock(&dentry->d_lock);
938 } else
939 spin_unlock(&d->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700940 node = dentry->d_subdirs.next;
941 }
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100942 spin_unlock(&dentry->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700943}
944
945/*
946 * NOTE : the dentry must have been dget()'ed
947 */
948static void cgroup_d_remove_dir(struct dentry *dentry)
949{
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100950 struct dentry *parent;
951
Paul Menageddbcc7e2007-10-18 23:39:30 -0700952 cgroup_clear_directory(dentry);
953
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100954 parent = dentry->d_parent;
955 spin_lock(&parent->d_lock);
Li Zefan3ec762a2011-01-14 11:34:34 +0800956 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700957 list_del_init(&dentry->d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100958 spin_unlock(&dentry->d_lock);
959 spin_unlock(&parent->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700960 remove_dir(dentry);
961}
962
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700963/*
Ben Blumcf5d5942010-03-10 15:22:09 -0800964 * Call with cgroup_mutex held. Drops reference counts on modules, including
965 * any duplicate ones that parse_cgroupfs_options took. If this function
966 * returns an error, no reference counts are touched.
Ben Blumaae8aab2010-03-10 15:22:07 -0800967 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700968static int rebind_subsystems(struct cgroupfs_root *root,
969 unsigned long final_bits)
970{
971 unsigned long added_bits, removed_bits;
Paul Menagebd89aab2007-10-18 23:40:44 -0700972 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700973 int i;
974
Ben Blumaae8aab2010-03-10 15:22:07 -0800975 BUG_ON(!mutex_is_locked(&cgroup_mutex));
Tejun Heoe25e2cb2011-12-12 18:12:21 -0800976 BUG_ON(!mutex_is_locked(&cgroup_root_mutex));
Ben Blumaae8aab2010-03-10 15:22:07 -0800977
Paul Menageddbcc7e2007-10-18 23:39:30 -0700978 removed_bits = root->actual_subsys_bits & ~final_bits;
979 added_bits = final_bits & ~root->actual_subsys_bits;
980 /* Check that any added subsystems are currently free */
981 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Li Zefan8d53d552008-02-23 15:24:11 -0800982 unsigned long bit = 1UL << i;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700983 struct cgroup_subsys *ss = subsys[i];
984 if (!(bit & added_bits))
985 continue;
Ben Blumaae8aab2010-03-10 15:22:07 -0800986 /*
987 * Nobody should tell us to do a subsys that doesn't exist:
988 * parse_cgroupfs_options should catch that case and refcounts
989 * ensure that subsystems won't disappear once selected.
990 */
991 BUG_ON(ss == NULL);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700992 if (ss->root != &rootnode) {
993 /* Subsystem isn't free */
994 return -EBUSY;
995 }
996 }
997
998 /* Currently we don't handle adding/removing subsystems when
999 * any child cgroups exist. This is theoretically supportable
1000 * but involves complex error handling, so it's being left until
1001 * later */
Paul Menage307257c2008-12-15 13:54:22 -08001002 if (root->number_of_cgroups > 1)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001003 return -EBUSY;
1004
1005 /* Process each subsystem */
1006 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1007 struct cgroup_subsys *ss = subsys[i];
1008 unsigned long bit = 1UL << i;
1009 if (bit & added_bits) {
1010 /* We're binding this subsystem to this hierarchy */
Ben Blumaae8aab2010-03-10 15:22:07 -08001011 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001012 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001013 BUG_ON(!dummytop->subsys[i]);
1014 BUG_ON(dummytop->subsys[i]->cgroup != dummytop);
Paul Menage999cd8a2009-01-07 18:08:36 -08001015 mutex_lock(&ss->hierarchy_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07001016 cgrp->subsys[i] = dummytop->subsys[i];
1017 cgrp->subsys[i]->cgroup = cgrp;
Li Zefan33a68ac2009-01-07 18:07:42 -08001018 list_move(&ss->sibling, &root->subsys_list);
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001019 ss->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001020 if (ss->bind)
Li Zefan761b3ef2012-01-31 13:47:36 +08001021 ss->bind(cgrp);
Paul Menage999cd8a2009-01-07 18:08:36 -08001022 mutex_unlock(&ss->hierarchy_mutex);
Ben Blumcf5d5942010-03-10 15:22:09 -08001023 /* refcount was already taken, and we're keeping it */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001024 } else if (bit & removed_bits) {
1025 /* We're removing this subsystem */
Ben Blumaae8aab2010-03-10 15:22:07 -08001026 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001027 BUG_ON(cgrp->subsys[i] != dummytop->subsys[i]);
1028 BUG_ON(cgrp->subsys[i]->cgroup != cgrp);
Paul Menage999cd8a2009-01-07 18:08:36 -08001029 mutex_lock(&ss->hierarchy_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001030 if (ss->bind)
Li Zefan761b3ef2012-01-31 13:47:36 +08001031 ss->bind(dummytop);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001032 dummytop->subsys[i]->cgroup = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -07001033 cgrp->subsys[i] = NULL;
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001034 subsys[i]->root = &rootnode;
Li Zefan33a68ac2009-01-07 18:07:42 -08001035 list_move(&ss->sibling, &rootnode.subsys_list);
Paul Menage999cd8a2009-01-07 18:08:36 -08001036 mutex_unlock(&ss->hierarchy_mutex);
Ben Blumcf5d5942010-03-10 15:22:09 -08001037 /* subsystem is now free - drop reference on module */
1038 module_put(ss->module);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001039 } else if (bit & final_bits) {
1040 /* Subsystem state should already exist */
Ben Blumaae8aab2010-03-10 15:22:07 -08001041 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001042 BUG_ON(!cgrp->subsys[i]);
Ben Blumcf5d5942010-03-10 15:22:09 -08001043 /*
1044 * a refcount was taken, but we already had one, so
1045 * drop the extra reference.
1046 */
1047 module_put(ss->module);
1048#ifdef CONFIG_MODULE_UNLOAD
1049 BUG_ON(ss->module && !module_refcount(ss->module));
1050#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001051 } else {
1052 /* Subsystem state shouldn't exist */
Paul Menagebd89aab2007-10-18 23:40:44 -07001053 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001054 }
1055 }
1056 root->subsys_bits = root->actual_subsys_bits = final_bits;
1057 synchronize_rcu();
1058
1059 return 0;
1060}
1061
Al Viro34c80b12011-12-08 21:32:45 -05001062static int cgroup_show_options(struct seq_file *seq, struct dentry *dentry)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001063{
Al Viro34c80b12011-12-08 21:32:45 -05001064 struct cgroupfs_root *root = dentry->d_sb->s_fs_info;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001065 struct cgroup_subsys *ss;
1066
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001067 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001068 for_each_subsys(root, ss)
1069 seq_printf(seq, ",%s", ss->name);
1070 if (test_bit(ROOT_NOPREFIX, &root->flags))
1071 seq_puts(seq, ",noprefix");
Paul Menage81a6a5c2007-10-18 23:39:38 -07001072 if (strlen(root->release_agent_path))
1073 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Daniel Lezcano97978e62010-10-27 15:33:35 -07001074 if (clone_children(&root->top_cgroup))
1075 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001076 if (strlen(root->name))
1077 seq_printf(seq, ",name=%s", root->name);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001078 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001079 return 0;
1080}
1081
1082struct cgroup_sb_opts {
1083 unsigned long subsys_bits;
1084 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001085 char *release_agent;
Daniel Lezcano97978e62010-10-27 15:33:35 -07001086 bool clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001087 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001088 /* User explicitly requested empty subsystem */
1089 bool none;
Paul Menagec6d57f32009-09-23 15:56:19 -07001090
1091 struct cgroupfs_root *new_root;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001092
Paul Menageddbcc7e2007-10-18 23:39:30 -07001093};
1094
Ben Blumaae8aab2010-03-10 15:22:07 -08001095/*
1096 * Convert a hierarchy specifier into a bitmask of subsystems and flags. Call
Ben Blumcf5d5942010-03-10 15:22:09 -08001097 * with cgroup_mutex held to protect the subsys[] array. This function takes
1098 * refcounts on subsystems to be used, unless it returns error, in which case
1099 * no refcounts are taken.
Ben Blumaae8aab2010-03-10 15:22:07 -08001100 */
Ben Blumcf5d5942010-03-10 15:22:09 -08001101static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001102{
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001103 char *token, *o = data;
1104 bool all_ss = false, one_ss = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001105 unsigned long mask = (unsigned long)-1;
Ben Blumcf5d5942010-03-10 15:22:09 -08001106 int i;
1107 bool module_pin_failed = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001108
Ben Blumaae8aab2010-03-10 15:22:07 -08001109 BUG_ON(!mutex_is_locked(&cgroup_mutex));
1110
Li Zefanf9ab5b52009-06-17 16:26:33 -07001111#ifdef CONFIG_CPUSETS
1112 mask = ~(1UL << cpuset_subsys_id);
1113#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001114
Paul Menagec6d57f32009-09-23 15:56:19 -07001115 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001116
1117 while ((token = strsep(&o, ",")) != NULL) {
1118 if (!*token)
1119 return -EINVAL;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001120 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001121 /* Explicitly have no subsystems */
1122 opts->none = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001123 continue;
1124 }
1125 if (!strcmp(token, "all")) {
1126 /* Mutually exclusive option 'all' + subsystem name */
1127 if (one_ss)
1128 return -EINVAL;
1129 all_ss = true;
1130 continue;
1131 }
1132 if (!strcmp(token, "noprefix")) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001133 set_bit(ROOT_NOPREFIX, &opts->flags);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001134 continue;
1135 }
1136 if (!strcmp(token, "clone_children")) {
Daniel Lezcano97978e62010-10-27 15:33:35 -07001137 opts->clone_children = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001138 continue;
1139 }
1140 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001141 /* Specifying two release agents is forbidden */
1142 if (opts->release_agent)
1143 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001144 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001145 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001146 if (!opts->release_agent)
1147 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001148 continue;
1149 }
1150 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001151 const char *name = token + 5;
1152 /* Can't specify an empty name */
1153 if (!strlen(name))
1154 return -EINVAL;
1155 /* Must match [\w.-]+ */
1156 for (i = 0; i < strlen(name); i++) {
1157 char c = name[i];
1158 if (isalnum(c))
1159 continue;
1160 if ((c == '.') || (c == '-') || (c == '_'))
1161 continue;
1162 return -EINVAL;
1163 }
1164 /* Specifying two names is forbidden */
1165 if (opts->name)
1166 return -EINVAL;
1167 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001168 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001169 GFP_KERNEL);
1170 if (!opts->name)
1171 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001172
1173 continue;
1174 }
1175
1176 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1177 struct cgroup_subsys *ss = subsys[i];
1178 if (ss == NULL)
1179 continue;
1180 if (strcmp(token, ss->name))
1181 continue;
1182 if (ss->disabled)
1183 continue;
1184
1185 /* Mutually exclusive option 'all' + subsystem name */
1186 if (all_ss)
1187 return -EINVAL;
1188 set_bit(i, &opts->subsys_bits);
1189 one_ss = true;
1190
1191 break;
1192 }
1193 if (i == CGROUP_SUBSYS_COUNT)
1194 return -ENOENT;
1195 }
1196
1197 /*
1198 * If the 'all' option was specified select all the subsystems,
Li Zefan0d19ea82011-12-27 14:25:55 +08001199 * otherwise if 'none', 'name=' and a subsystem name options
1200 * were not specified, let's default to 'all'
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001201 */
Li Zefan0d19ea82011-12-27 14:25:55 +08001202 if (all_ss || (!one_ss && !opts->none && !opts->name)) {
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001203 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1204 struct cgroup_subsys *ss = subsys[i];
1205 if (ss == NULL)
1206 continue;
1207 if (ss->disabled)
1208 continue;
1209 set_bit(i, &opts->subsys_bits);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001210 }
1211 }
1212
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001213 /* Consistency checks */
1214
Li Zefanf9ab5b52009-06-17 16:26:33 -07001215 /*
1216 * Option noprefix was introduced just for backward compatibility
1217 * with the old cpuset, so we allow noprefix only if mounting just
1218 * the cpuset subsystem.
1219 */
1220 if (test_bit(ROOT_NOPREFIX, &opts->flags) &&
1221 (opts->subsys_bits & mask))
1222 return -EINVAL;
1223
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001224
1225 /* Can't specify "none" and some subsystems */
1226 if (opts->subsys_bits && opts->none)
1227 return -EINVAL;
1228
1229 /*
1230 * We either have to specify by name or by subsystems. (So all
1231 * empty hierarchies must have a name).
1232 */
Paul Menagec6d57f32009-09-23 15:56:19 -07001233 if (!opts->subsys_bits && !opts->name)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001234 return -EINVAL;
1235
Ben Blumcf5d5942010-03-10 15:22:09 -08001236 /*
1237 * Grab references on all the modules we'll need, so the subsystems
1238 * don't dance around before rebind_subsystems attaches them. This may
1239 * take duplicate reference counts on a subsystem that's already used,
1240 * but rebind_subsystems handles this case.
1241 */
1242 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
1243 unsigned long bit = 1UL << i;
1244
1245 if (!(bit & opts->subsys_bits))
1246 continue;
1247 if (!try_module_get(subsys[i]->module)) {
1248 module_pin_failed = true;
1249 break;
1250 }
1251 }
1252 if (module_pin_failed) {
1253 /*
1254 * oops, one of the modules was going away. this means that we
1255 * raced with a module_delete call, and to the user this is
1256 * essentially a "subsystem doesn't exist" case.
1257 */
1258 for (i--; i >= CGROUP_BUILTIN_SUBSYS_COUNT; i--) {
1259 /* drop refcounts only on the ones we took */
1260 unsigned long bit = 1UL << i;
1261
1262 if (!(bit & opts->subsys_bits))
1263 continue;
1264 module_put(subsys[i]->module);
1265 }
1266 return -ENOENT;
1267 }
1268
Paul Menageddbcc7e2007-10-18 23:39:30 -07001269 return 0;
1270}
1271
Ben Blumcf5d5942010-03-10 15:22:09 -08001272static void drop_parsed_module_refcounts(unsigned long subsys_bits)
1273{
1274 int i;
1275 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
1276 unsigned long bit = 1UL << i;
1277
1278 if (!(bit & subsys_bits))
1279 continue;
1280 module_put(subsys[i]->module);
1281 }
1282}
1283
Paul Menageddbcc7e2007-10-18 23:39:30 -07001284static int cgroup_remount(struct super_block *sb, int *flags, char *data)
1285{
1286 int ret = 0;
1287 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001288 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001289 struct cgroup_sb_opts opts;
1290
Paul Menagebd89aab2007-10-18 23:40:44 -07001291 mutex_lock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001292 mutex_lock(&cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001293 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001294
1295 /* See what subsystems are wanted */
1296 ret = parse_cgroupfs_options(data, &opts);
1297 if (ret)
1298 goto out_unlock;
1299
Ben Blumcf5d5942010-03-10 15:22:09 -08001300 /* Don't allow flags or name to change at remount */
1301 if (opts.flags != root->flags ||
1302 (opts.name && strcmp(opts.name, root->name))) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001303 ret = -EINVAL;
Ben Blumcf5d5942010-03-10 15:22:09 -08001304 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menagec6d57f32009-09-23 15:56:19 -07001305 goto out_unlock;
1306 }
1307
Paul Menageddbcc7e2007-10-18 23:39:30 -07001308 ret = rebind_subsystems(root, opts.subsys_bits);
Ben Blumcf5d5942010-03-10 15:22:09 -08001309 if (ret) {
1310 drop_parsed_module_refcounts(opts.subsys_bits);
Li Zefan0670e082009-04-02 16:57:30 -07001311 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001312 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001313
1314 /* (re)populate subsystem files */
Li Zefan0670e082009-04-02 16:57:30 -07001315 cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001316
Paul Menage81a6a5c2007-10-18 23:39:38 -07001317 if (opts.release_agent)
1318 strcpy(root->release_agent_path, opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001319 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001320 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001321 kfree(opts.name);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001322 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001323 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07001324 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001325 return ret;
1326}
1327
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001328static const struct super_operations cgroup_ops = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001329 .statfs = simple_statfs,
1330 .drop_inode = generic_delete_inode,
1331 .show_options = cgroup_show_options,
1332 .remount_fs = cgroup_remount,
1333};
1334
Paul Menagecc31edc2008-10-18 20:28:04 -07001335static void init_cgroup_housekeeping(struct cgroup *cgrp)
1336{
1337 INIT_LIST_HEAD(&cgrp->sibling);
1338 INIT_LIST_HEAD(&cgrp->children);
1339 INIT_LIST_HEAD(&cgrp->css_sets);
1340 INIT_LIST_HEAD(&cgrp->release_list);
Ben Blum72a8cb32009-09-23 15:56:27 -07001341 INIT_LIST_HEAD(&cgrp->pidlists);
1342 mutex_init(&cgrp->pidlist_mutex);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08001343 INIT_LIST_HEAD(&cgrp->event_list);
1344 spin_lock_init(&cgrp->event_list_lock);
Paul Menagecc31edc2008-10-18 20:28:04 -07001345}
Paul Menagec6d57f32009-09-23 15:56:19 -07001346
Paul Menageddbcc7e2007-10-18 23:39:30 -07001347static void init_cgroup_root(struct cgroupfs_root *root)
1348{
Paul Menagebd89aab2007-10-18 23:40:44 -07001349 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001350 INIT_LIST_HEAD(&root->subsys_list);
1351 INIT_LIST_HEAD(&root->root_list);
1352 root->number_of_cgroups = 1;
Paul Menagebd89aab2007-10-18 23:40:44 -07001353 cgrp->root = root;
1354 cgrp->top_cgroup = cgrp;
Paul Menagecc31edc2008-10-18 20:28:04 -07001355 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001356}
1357
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001358static bool init_root_id(struct cgroupfs_root *root)
1359{
1360 int ret = 0;
1361
1362 do {
1363 if (!ida_pre_get(&hierarchy_ida, GFP_KERNEL))
1364 return false;
1365 spin_lock(&hierarchy_id_lock);
1366 /* Try to allocate the next unused ID */
1367 ret = ida_get_new_above(&hierarchy_ida, next_hierarchy_id,
1368 &root->hierarchy_id);
1369 if (ret == -ENOSPC)
1370 /* Try again starting from 0 */
1371 ret = ida_get_new(&hierarchy_ida, &root->hierarchy_id);
1372 if (!ret) {
1373 next_hierarchy_id = root->hierarchy_id + 1;
1374 } else if (ret != -EAGAIN) {
1375 /* Can only get here if the 31-bit IDR is full ... */
1376 BUG_ON(ret);
1377 }
1378 spin_unlock(&hierarchy_id_lock);
1379 } while (ret);
1380 return true;
1381}
1382
Paul Menageddbcc7e2007-10-18 23:39:30 -07001383static int cgroup_test_super(struct super_block *sb, void *data)
1384{
Paul Menagec6d57f32009-09-23 15:56:19 -07001385 struct cgroup_sb_opts *opts = data;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001386 struct cgroupfs_root *root = sb->s_fs_info;
1387
Paul Menagec6d57f32009-09-23 15:56:19 -07001388 /* If we asked for a name then it must match */
1389 if (opts->name && strcmp(opts->name, root->name))
1390 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001391
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001392 /*
1393 * If we asked for subsystems (or explicitly for no
1394 * subsystems) then they must match
1395 */
1396 if ((opts->subsys_bits || opts->none)
1397 && (opts->subsys_bits != root->subsys_bits))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001398 return 0;
1399
1400 return 1;
1401}
1402
Paul Menagec6d57f32009-09-23 15:56:19 -07001403static struct cgroupfs_root *cgroup_root_from_opts(struct cgroup_sb_opts *opts)
1404{
1405 struct cgroupfs_root *root;
1406
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001407 if (!opts->subsys_bits && !opts->none)
Paul Menagec6d57f32009-09-23 15:56:19 -07001408 return NULL;
1409
1410 root = kzalloc(sizeof(*root), GFP_KERNEL);
1411 if (!root)
1412 return ERR_PTR(-ENOMEM);
1413
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001414 if (!init_root_id(root)) {
1415 kfree(root);
1416 return ERR_PTR(-ENOMEM);
1417 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001418 init_cgroup_root(root);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001419
Paul Menagec6d57f32009-09-23 15:56:19 -07001420 root->subsys_bits = opts->subsys_bits;
1421 root->flags = opts->flags;
1422 if (opts->release_agent)
1423 strcpy(root->release_agent_path, opts->release_agent);
1424 if (opts->name)
1425 strcpy(root->name, opts->name);
Daniel Lezcano97978e62010-10-27 15:33:35 -07001426 if (opts->clone_children)
1427 set_bit(CGRP_CLONE_CHILDREN, &root->top_cgroup.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001428 return root;
1429}
1430
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001431static void cgroup_drop_root(struct cgroupfs_root *root)
1432{
1433 if (!root)
1434 return;
1435
1436 BUG_ON(!root->hierarchy_id);
1437 spin_lock(&hierarchy_id_lock);
1438 ida_remove(&hierarchy_ida, root->hierarchy_id);
1439 spin_unlock(&hierarchy_id_lock);
1440 kfree(root);
1441}
1442
Paul Menageddbcc7e2007-10-18 23:39:30 -07001443static int cgroup_set_super(struct super_block *sb, void *data)
1444{
1445 int ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001446 struct cgroup_sb_opts *opts = data;
1447
1448 /* If we don't have a new root, we can't set up a new sb */
1449 if (!opts->new_root)
1450 return -EINVAL;
1451
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001452 BUG_ON(!opts->subsys_bits && !opts->none);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001453
1454 ret = set_anon_super(sb, NULL);
1455 if (ret)
1456 return ret;
1457
Paul Menagec6d57f32009-09-23 15:56:19 -07001458 sb->s_fs_info = opts->new_root;
1459 opts->new_root->sb = sb;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001460
1461 sb->s_blocksize = PAGE_CACHE_SIZE;
1462 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
1463 sb->s_magic = CGROUP_SUPER_MAGIC;
1464 sb->s_op = &cgroup_ops;
1465
1466 return 0;
1467}
1468
1469static int cgroup_get_rootdir(struct super_block *sb)
1470{
Al Viro0df6a632010-12-21 13:29:29 -05001471 static const struct dentry_operations cgroup_dops = {
1472 .d_iput = cgroup_diput,
Al Viroc72a04e2011-01-14 05:31:45 +00001473 .d_delete = cgroup_delete,
Al Viro0df6a632010-12-21 13:29:29 -05001474 };
1475
Paul Menageddbcc7e2007-10-18 23:39:30 -07001476 struct inode *inode =
1477 cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001478
1479 if (!inode)
1480 return -ENOMEM;
1481
Paul Menageddbcc7e2007-10-18 23:39:30 -07001482 inode->i_fop = &simple_dir_operations;
1483 inode->i_op = &cgroup_dir_inode_operations;
1484 /* directories start off with i_nlink == 2 (for "." entry) */
1485 inc_nlink(inode);
Al Viro48fde702012-01-08 22:15:13 -05001486 sb->s_root = d_make_root(inode);
1487 if (!sb->s_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001488 return -ENOMEM;
Al Viro0df6a632010-12-21 13:29:29 -05001489 /* for everything else we want ->d_op set */
1490 sb->s_d_op = &cgroup_dops;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001491 return 0;
1492}
1493
Al Virof7e83572010-07-26 13:23:11 +04001494static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001495 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001496 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001497{
1498 struct cgroup_sb_opts opts;
Paul Menagec6d57f32009-09-23 15:56:19 -07001499 struct cgroupfs_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001500 int ret = 0;
1501 struct super_block *sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001502 struct cgroupfs_root *new_root;
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001503 struct inode *inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001504
1505 /* First find the desired set of subsystems */
Ben Blumaae8aab2010-03-10 15:22:07 -08001506 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001507 ret = parse_cgroupfs_options(data, &opts);
Ben Blumaae8aab2010-03-10 15:22:07 -08001508 mutex_unlock(&cgroup_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001509 if (ret)
1510 goto out_err;
1511
1512 /*
1513 * Allocate a new cgroup root. We may not need it if we're
1514 * reusing an existing hierarchy.
1515 */
1516 new_root = cgroup_root_from_opts(&opts);
1517 if (IS_ERR(new_root)) {
1518 ret = PTR_ERR(new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001519 goto drop_modules;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001520 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001521 opts.new_root = new_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001522
Paul Menagec6d57f32009-09-23 15:56:19 -07001523 /* Locate an existing or new sb for this hierarchy */
1524 sb = sget(fs_type, cgroup_test_super, cgroup_set_super, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001525 if (IS_ERR(sb)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001526 ret = PTR_ERR(sb);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001527 cgroup_drop_root(opts.new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001528 goto drop_modules;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001529 }
1530
Paul Menagec6d57f32009-09-23 15:56:19 -07001531 root = sb->s_fs_info;
1532 BUG_ON(!root);
1533 if (root == opts.new_root) {
1534 /* We used the new root structure, so this is a new hierarchy */
1535 struct list_head tmp_cg_links;
Li Zefanc12f65d2009-01-07 18:07:42 -08001536 struct cgroup *root_cgrp = &root->top_cgroup;
Paul Menagec6d57f32009-09-23 15:56:19 -07001537 struct cgroupfs_root *existing_root;
eparis@redhat2ce97382011-06-02 21:20:51 +10001538 const struct cred *cred;
Li Zefan28fd5df2008-04-29 01:00:13 -07001539 int i;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001540
1541 BUG_ON(sb->s_root != NULL);
1542
1543 ret = cgroup_get_rootdir(sb);
1544 if (ret)
1545 goto drop_new_super;
Paul Menage817929e2007-10-18 23:39:36 -07001546 inode = sb->s_root->d_inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001547
Paul Menage817929e2007-10-18 23:39:36 -07001548 mutex_lock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001549 mutex_lock(&cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001550 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001551
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001552 /* Check for name clashes with existing mounts */
1553 ret = -EBUSY;
1554 if (strlen(root->name))
1555 for_each_active_root(existing_root)
1556 if (!strcmp(existing_root->name, root->name))
1557 goto unlock_drop;
Paul Menagec6d57f32009-09-23 15:56:19 -07001558
Paul Menage817929e2007-10-18 23:39:36 -07001559 /*
1560 * We're accessing css_set_count without locking
1561 * css_set_lock here, but that's OK - it can only be
1562 * increased by someone holding cgroup_lock, and
1563 * that's us. The worst that can happen is that we
1564 * have some link structures left over
1565 */
1566 ret = allocate_cg_links(css_set_count, &tmp_cg_links);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001567 if (ret)
1568 goto unlock_drop;
Paul Menage817929e2007-10-18 23:39:36 -07001569
Paul Menageddbcc7e2007-10-18 23:39:30 -07001570 ret = rebind_subsystems(root, root->subsys_bits);
1571 if (ret == -EBUSY) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001572 free_cg_links(&tmp_cg_links);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001573 goto unlock_drop;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001574 }
Ben Blumcf5d5942010-03-10 15:22:09 -08001575 /*
1576 * There must be no failure case after here, since rebinding
1577 * takes care of subsystems' refcounts, which are explicitly
1578 * dropped in the failure exit path.
1579 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001580
1581 /* EBUSY should be the only error here */
1582 BUG_ON(ret);
1583
1584 list_add(&root->root_list, &roots);
Paul Menage817929e2007-10-18 23:39:36 -07001585 root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001586
Li Zefanc12f65d2009-01-07 18:07:42 -08001587 sb->s_root->d_fsdata = root_cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001588 root->top_cgroup.dentry = sb->s_root;
1589
Paul Menage817929e2007-10-18 23:39:36 -07001590 /* Link the top cgroup in this hierarchy into all
1591 * the css_set objects */
1592 write_lock(&css_set_lock);
Li Zefan28fd5df2008-04-29 01:00:13 -07001593 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
1594 struct hlist_head *hhead = &css_set_table[i];
1595 struct hlist_node *node;
Paul Menage817929e2007-10-18 23:39:36 -07001596 struct css_set *cg;
Li Zefan28fd5df2008-04-29 01:00:13 -07001597
Li Zefanc12f65d2009-01-07 18:07:42 -08001598 hlist_for_each_entry(cg, node, hhead, hlist)
1599 link_css_set(&tmp_cg_links, cg, root_cgrp);
Li Zefan28fd5df2008-04-29 01:00:13 -07001600 }
Paul Menage817929e2007-10-18 23:39:36 -07001601 write_unlock(&css_set_lock);
1602
1603 free_cg_links(&tmp_cg_links);
1604
Li Zefanc12f65d2009-01-07 18:07:42 -08001605 BUG_ON(!list_empty(&root_cgrp->sibling));
1606 BUG_ON(!list_empty(&root_cgrp->children));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001607 BUG_ON(root->number_of_cgroups != 1);
1608
eparis@redhat2ce97382011-06-02 21:20:51 +10001609 cred = override_creds(&init_cred);
Li Zefanc12f65d2009-01-07 18:07:42 -08001610 cgroup_populate_dir(root_cgrp);
eparis@redhat2ce97382011-06-02 21:20:51 +10001611 revert_creds(cred);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001612 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001613 mutex_unlock(&cgroup_mutex);
Xiaotian Feng34f77a92009-09-23 15:56:18 -07001614 mutex_unlock(&inode->i_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001615 } else {
1616 /*
1617 * We re-used an existing hierarchy - the new root (if
1618 * any) is not needed
1619 */
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001620 cgroup_drop_root(opts.new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001621 /* no subsys rebinding, so refcounts don't change */
1622 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001623 }
1624
Paul Menagec6d57f32009-09-23 15:56:19 -07001625 kfree(opts.release_agent);
1626 kfree(opts.name);
Al Virof7e83572010-07-26 13:23:11 +04001627 return dget(sb->s_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001628
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001629 unlock_drop:
1630 mutex_unlock(&cgroup_root_mutex);
1631 mutex_unlock(&cgroup_mutex);
1632 mutex_unlock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001633 drop_new_super:
Al Viro6f5bbff2009-05-06 01:34:22 -04001634 deactivate_locked_super(sb);
Ben Blumcf5d5942010-03-10 15:22:09 -08001635 drop_modules:
1636 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menagec6d57f32009-09-23 15:56:19 -07001637 out_err:
1638 kfree(opts.release_agent);
1639 kfree(opts.name);
Al Virof7e83572010-07-26 13:23:11 +04001640 return ERR_PTR(ret);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001641}
1642
1643static void cgroup_kill_sb(struct super_block *sb) {
1644 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001645 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001646 int ret;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001647 struct cg_cgroup_link *link;
1648 struct cg_cgroup_link *saved_link;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001649
1650 BUG_ON(!root);
1651
1652 BUG_ON(root->number_of_cgroups != 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001653 BUG_ON(!list_empty(&cgrp->children));
1654 BUG_ON(!list_empty(&cgrp->sibling));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001655
1656 mutex_lock(&cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001657 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001658
1659 /* Rebind all subsystems back to the default hierarchy */
1660 ret = rebind_subsystems(root, 0);
1661 /* Shouldn't be able to fail ... */
1662 BUG_ON(ret);
1663
Paul Menage817929e2007-10-18 23:39:36 -07001664 /*
1665 * Release all the links from css_sets to this hierarchy's
1666 * root cgroup
1667 */
1668 write_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001669
1670 list_for_each_entry_safe(link, saved_link, &cgrp->css_sets,
1671 cgrp_link_list) {
Paul Menage817929e2007-10-18 23:39:36 -07001672 list_del(&link->cg_link_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07001673 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001674 kfree(link);
1675 }
1676 write_unlock(&css_set_lock);
1677
Paul Menage839ec542009-01-29 14:25:22 -08001678 if (!list_empty(&root->root_list)) {
1679 list_del(&root->root_list);
1680 root_count--;
1681 }
Li Zefane5f6a862009-01-07 18:07:41 -08001682
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001683 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001684 mutex_unlock(&cgroup_mutex);
1685
Paul Menageddbcc7e2007-10-18 23:39:30 -07001686 kill_litter_super(sb);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001687 cgroup_drop_root(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001688}
1689
1690static struct file_system_type cgroup_fs_type = {
1691 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001692 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001693 .kill_sb = cgroup_kill_sb,
1694};
1695
Greg KH676db4a2010-08-05 13:53:35 -07001696static struct kobject *cgroup_kobj;
1697
Paul Menagebd89aab2007-10-18 23:40:44 -07001698static inline struct cgroup *__d_cgrp(struct dentry *dentry)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001699{
1700 return dentry->d_fsdata;
1701}
1702
1703static inline struct cftype *__d_cft(struct dentry *dentry)
1704{
1705 return dentry->d_fsdata;
1706}
1707
Li Zefana043e3b2008-02-23 15:24:09 -08001708/**
1709 * cgroup_path - generate the path of a cgroup
1710 * @cgrp: the cgroup in question
1711 * @buf: the buffer to write the path into
1712 * @buflen: the length of the buffer
1713 *
Paul Menagea47295e2009-01-07 18:07:44 -08001714 * Called with cgroup_mutex held or else with an RCU-protected cgroup
1715 * reference. Writes path of cgroup into buf. Returns 0 on success,
1716 * -errno on error.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001717 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001718int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001719{
1720 char *start;
Li Zefan9a9686b2010-04-22 17:29:24 +08001721 struct dentry *dentry = rcu_dereference_check(cgrp->dentry,
Li Zefan9a9686b2010-04-22 17:29:24 +08001722 cgroup_lock_is_held());
Paul Menageddbcc7e2007-10-18 23:39:30 -07001723
Paul Menagea47295e2009-01-07 18:07:44 -08001724 if (!dentry || cgrp == dummytop) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001725 /*
1726 * Inactive subsystems have no dentry for their root
1727 * cgroup
1728 */
1729 strcpy(buf, "/");
1730 return 0;
1731 }
1732
1733 start = buf + buflen;
1734
1735 *--start = '\0';
1736 for (;;) {
Paul Menagea47295e2009-01-07 18:07:44 -08001737 int len = dentry->d_name.len;
Li Zefan9a9686b2010-04-22 17:29:24 +08001738
Paul Menageddbcc7e2007-10-18 23:39:30 -07001739 if ((start -= len) < buf)
1740 return -ENAMETOOLONG;
Li Zefan9a9686b2010-04-22 17:29:24 +08001741 memcpy(start, dentry->d_name.name, len);
Paul Menagebd89aab2007-10-18 23:40:44 -07001742 cgrp = cgrp->parent;
1743 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001744 break;
Li Zefan9a9686b2010-04-22 17:29:24 +08001745
1746 dentry = rcu_dereference_check(cgrp->dentry,
Li Zefan9a9686b2010-04-22 17:29:24 +08001747 cgroup_lock_is_held());
Paul Menagebd89aab2007-10-18 23:40:44 -07001748 if (!cgrp->parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001749 continue;
1750 if (--start < buf)
1751 return -ENAMETOOLONG;
1752 *start = '/';
1753 }
1754 memmove(buf, start, buf + buflen - start);
1755 return 0;
1756}
Ben Blum67523c42010-03-10 15:22:11 -08001757EXPORT_SYMBOL_GPL(cgroup_path);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001758
Ben Blum74a11662011-05-26 16:25:20 -07001759/*
Tejun Heo2f7ee562011-12-12 18:12:21 -08001760 * Control Group taskset
1761 */
Tejun Heo134d3372011-12-12 18:12:21 -08001762struct task_and_cgroup {
1763 struct task_struct *task;
1764 struct cgroup *cgrp;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001765 struct css_set *cg;
Tejun Heo134d3372011-12-12 18:12:21 -08001766};
1767
Tejun Heo2f7ee562011-12-12 18:12:21 -08001768struct cgroup_taskset {
1769 struct task_and_cgroup single;
1770 struct flex_array *tc_array;
1771 int tc_array_len;
1772 int idx;
1773 struct cgroup *cur_cgrp;
1774};
1775
1776/**
1777 * cgroup_taskset_first - reset taskset and return the first task
1778 * @tset: taskset of interest
1779 *
1780 * @tset iteration is initialized and the first task is returned.
1781 */
1782struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
1783{
1784 if (tset->tc_array) {
1785 tset->idx = 0;
1786 return cgroup_taskset_next(tset);
1787 } else {
1788 tset->cur_cgrp = tset->single.cgrp;
1789 return tset->single.task;
1790 }
1791}
1792EXPORT_SYMBOL_GPL(cgroup_taskset_first);
1793
1794/**
1795 * cgroup_taskset_next - iterate to the next task in taskset
1796 * @tset: taskset of interest
1797 *
1798 * Return the next task in @tset. Iteration must have been initialized
1799 * with cgroup_taskset_first().
1800 */
1801struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
1802{
1803 struct task_and_cgroup *tc;
1804
1805 if (!tset->tc_array || tset->idx >= tset->tc_array_len)
1806 return NULL;
1807
1808 tc = flex_array_get(tset->tc_array, tset->idx++);
1809 tset->cur_cgrp = tc->cgrp;
1810 return tc->task;
1811}
1812EXPORT_SYMBOL_GPL(cgroup_taskset_next);
1813
1814/**
1815 * cgroup_taskset_cur_cgroup - return the matching cgroup for the current task
1816 * @tset: taskset of interest
1817 *
1818 * Return the cgroup for the current (last returned) task of @tset. This
1819 * function must be preceded by either cgroup_taskset_first() or
1820 * cgroup_taskset_next().
1821 */
1822struct cgroup *cgroup_taskset_cur_cgroup(struct cgroup_taskset *tset)
1823{
1824 return tset->cur_cgrp;
1825}
1826EXPORT_SYMBOL_GPL(cgroup_taskset_cur_cgroup);
1827
1828/**
1829 * cgroup_taskset_size - return the number of tasks in taskset
1830 * @tset: taskset of interest
1831 */
1832int cgroup_taskset_size(struct cgroup_taskset *tset)
1833{
1834 return tset->tc_array ? tset->tc_array_len : 1;
1835}
1836EXPORT_SYMBOL_GPL(cgroup_taskset_size);
1837
1838
Ben Blum74a11662011-05-26 16:25:20 -07001839/*
1840 * cgroup_task_migrate - move a task from one cgroup to another.
1841 *
1842 * 'guarantee' is set if the caller promises that a new css_set for the task
1843 * will already exist. If not set, this function might sleep, and can fail with
Tejun Heocd3d0952011-12-12 18:12:21 -08001844 * -ENOMEM. Must be called with cgroup_mutex and threadgroup locked.
Ben Blum74a11662011-05-26 16:25:20 -07001845 */
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001846static void cgroup_task_migrate(struct cgroup *cgrp, struct cgroup *oldcgrp,
1847 struct task_struct *tsk, struct css_set *newcg)
Ben Blum74a11662011-05-26 16:25:20 -07001848{
1849 struct css_set *oldcg;
Ben Blum74a11662011-05-26 16:25:20 -07001850
1851 /*
Mandeep Singh Baines026085e2011-12-21 20:18:35 -08001852 * We are synchronized through threadgroup_lock() against PF_EXITING
1853 * setting such that we can't race against cgroup_exit() changing the
1854 * css_set to init_css_set and dropping the old one.
Ben Blum74a11662011-05-26 16:25:20 -07001855 */
Frederic Weisbeckerc84cdf72011-12-21 20:03:18 +01001856 WARN_ON_ONCE(tsk->flags & PF_EXITING);
Ben Blum74a11662011-05-26 16:25:20 -07001857 oldcg = tsk->cgroups;
Ben Blum74a11662011-05-26 16:25:20 -07001858
Ben Blum74a11662011-05-26 16:25:20 -07001859 task_lock(tsk);
Ben Blum74a11662011-05-26 16:25:20 -07001860 rcu_assign_pointer(tsk->cgroups, newcg);
1861 task_unlock(tsk);
1862
1863 /* Update the css_set linked lists if we're using them */
1864 write_lock(&css_set_lock);
1865 if (!list_empty(&tsk->cg_list))
1866 list_move(&tsk->cg_list, &newcg->tasks);
1867 write_unlock(&css_set_lock);
1868
1869 /*
1870 * We just gained a reference on oldcg by taking it from the task. As
1871 * trading it for newcg is protected by cgroup_mutex, we're safe to drop
1872 * it here; it will be freed under RCU.
1873 */
1874 put_css_set(oldcg);
1875
1876 set_bit(CGRP_RELEASABLE, &oldcgrp->flags);
Ben Blum74a11662011-05-26 16:25:20 -07001877}
1878
Li Zefana043e3b2008-02-23 15:24:09 -08001879/**
1880 * cgroup_attach_task - attach task 'tsk' to cgroup 'cgrp'
1881 * @cgrp: the cgroup the task is attaching to
1882 * @tsk: the task to be attached
Paul Menagebbcb81d2007-10-18 23:39:32 -07001883 *
Tejun Heocd3d0952011-12-12 18:12:21 -08001884 * Call with cgroup_mutex and threadgroup locked. May take task_lock of
1885 * @tsk during call.
Paul Menagebbcb81d2007-10-18 23:39:32 -07001886 */
Cliff Wickman956db3c2008-02-07 00:14:43 -08001887int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001888{
Tejun Heo8f121912012-03-29 22:03:33 -07001889 int retval = 0;
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001890 struct cgroup_subsys *ss, *failed_ss = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07001891 struct cgroup *oldcgrp;
Paul Menagebd89aab2007-10-18 23:40:44 -07001892 struct cgroupfs_root *root = cgrp->root;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001893 struct cgroup_taskset tset = { };
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001894 struct css_set *newcg;
Colin Crossbefae2f2010-11-23 21:37:04 -08001895 struct css_set *cg;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001896
Tejun Heocd3d0952011-12-12 18:12:21 -08001897 /* @tsk either already exited or can't exit until the end */
1898 if (tsk->flags & PF_EXITING)
1899 return -ESRCH;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001900
1901 /* Nothing to do if the task is already in that cgroup */
Paul Menage7717f7b2009-09-23 15:56:22 -07001902 oldcgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07001903 if (cgrp == oldcgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001904 return 0;
1905
Tejun Heo2f7ee562011-12-12 18:12:21 -08001906 tset.single.task = tsk;
1907 tset.single.cgrp = oldcgrp;
1908
Paul Menagebbcb81d2007-10-18 23:39:32 -07001909 for_each_subsys(root, ss) {
1910 if (ss->can_attach) {
Li Zefan761b3ef2012-01-31 13:47:36 +08001911 retval = ss->can_attach(cgrp, &tset);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001912 if (retval) {
1913 /*
1914 * Remember on which subsystem the can_attach()
1915 * failed, so that we only call cancel_attach()
1916 * against the subsystems whose can_attach()
1917 * succeeded. (See below)
1918 */
1919 failed_ss = ss;
1920 goto out;
1921 }
Paul Menagebbcb81d2007-10-18 23:39:32 -07001922 }
1923 }
1924
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001925 newcg = find_css_set(tsk->cgroups, cgrp);
1926 if (!newcg) {
1927 retval = -ENOMEM;
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001928 goto out;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001929 }
1930
Colin Crossbefae2f2010-11-23 21:37:04 -08001931 task_lock(tsk);
1932 cg = tsk->cgroups;
1933 get_css_set(cg);
1934 task_unlock(tsk);
1935
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001936 cgroup_task_migrate(cgrp, oldcgrp, tsk, newcg);
Paul Menage817929e2007-10-18 23:39:36 -07001937
Paul Menagebbcb81d2007-10-18 23:39:32 -07001938 for_each_subsys(root, ss) {
Paul Jacksone18f6312008-02-07 00:13:44 -08001939 if (ss->attach)
Li Zefan761b3ef2012-01-31 13:47:36 +08001940 ss->attach(cgrp, &tset);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001941 }
Colin Crossc0f6fa82010-11-23 21:37:03 -08001942 set_bit(CGRP_RELEASABLE, &cgrp->flags);
Colin Crossbefae2f2010-11-23 21:37:04 -08001943 /* put_css_set will not destroy cg until after an RCU grace period */
1944 put_css_set(cg);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07001945
1946 /*
1947 * wake up rmdir() waiter. the rmdir should fail since the cgroup
1948 * is no longer empty.
1949 */
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07001950 cgroup_wakeup_rmdir_waiter(cgrp);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001951out:
1952 if (retval) {
1953 for_each_subsys(root, ss) {
1954 if (ss == failed_ss)
1955 /*
1956 * This subsystem was the one that failed the
1957 * can_attach() check earlier, so we don't need
1958 * to call cancel_attach() against it or any
1959 * remaining subsystems.
1960 */
1961 break;
1962 if (ss->cancel_attach)
Li Zefan761b3ef2012-01-31 13:47:36 +08001963 ss->cancel_attach(cgrp, &tset);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001964 }
1965 }
1966 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001967}
1968
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001969/**
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001970 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
1971 * @from: attach to all cgroups of a given task
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001972 * @tsk: the task to be attached
1973 */
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001974int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001975{
1976 struct cgroupfs_root *root;
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001977 int retval = 0;
1978
1979 cgroup_lock();
1980 for_each_active_root(root) {
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001981 struct cgroup *from_cg = task_cgroup_from_root(from, root);
1982
1983 retval = cgroup_attach_task(from_cg, tsk);
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001984 if (retval)
1985 break;
1986 }
1987 cgroup_unlock();
1988
1989 return retval;
1990}
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001991EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001992
Ben Blum74a11662011-05-26 16:25:20 -07001993/**
1994 * cgroup_attach_proc - attach all threads in a threadgroup to a cgroup
1995 * @cgrp: the cgroup to attach to
1996 * @leader: the threadgroup leader task_struct of the group to be attached
1997 *
Tejun Heo257058a2011-12-12 18:12:21 -08001998 * Call holding cgroup_mutex and the group_rwsem of the leader. Will take
1999 * task_lock of each thread in leader's threadgroup individually in turn.
Ben Blum74a11662011-05-26 16:25:20 -07002000 */
Kirill A. Shutemov1c6c3fa2011-12-27 07:46:25 +02002001static int cgroup_attach_proc(struct cgroup *cgrp, struct task_struct *leader)
Ben Blum74a11662011-05-26 16:25:20 -07002002{
2003 int retval, i, group_size;
2004 struct cgroup_subsys *ss, *failed_ss = NULL;
Ben Blum74a11662011-05-26 16:25:20 -07002005 /* guaranteed to be initialized later, but the compiler needs this */
Ben Blum74a11662011-05-26 16:25:20 -07002006 struct cgroupfs_root *root = cgrp->root;
2007 /* threadgroup list cursor and array */
2008 struct task_struct *tsk;
Tejun Heo134d3372011-12-12 18:12:21 -08002009 struct task_and_cgroup *tc;
Ben Blumd8466872011-05-26 16:25:21 -07002010 struct flex_array *group;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002011 struct cgroup_taskset tset = { };
Ben Blum74a11662011-05-26 16:25:20 -07002012
2013 /*
2014 * step 0: in order to do expensive, possibly blocking operations for
2015 * every thread, we cannot iterate the thread group list, since it needs
2016 * rcu or tasklist locked. instead, build an array of all threads in the
Tejun Heo257058a2011-12-12 18:12:21 -08002017 * group - group_rwsem prevents new threads from appearing, and if
2018 * threads exit, this will just be an over-estimate.
Ben Blum74a11662011-05-26 16:25:20 -07002019 */
2020 group_size = get_nr_threads(leader);
Ben Blumd8466872011-05-26 16:25:21 -07002021 /* flex_array supports very large thread-groups better than kmalloc. */
Tejun Heo134d3372011-12-12 18:12:21 -08002022 group = flex_array_alloc(sizeof(*tc), group_size, GFP_KERNEL);
Ben Blum74a11662011-05-26 16:25:20 -07002023 if (!group)
2024 return -ENOMEM;
Ben Blumd8466872011-05-26 16:25:21 -07002025 /* pre-allocate to guarantee space while iterating in rcu read-side. */
2026 retval = flex_array_prealloc(group, 0, group_size - 1, GFP_KERNEL);
2027 if (retval)
2028 goto out_free_group_list;
Ben Blum74a11662011-05-26 16:25:20 -07002029
Ben Blum74a11662011-05-26 16:25:20 -07002030 tsk = leader;
2031 i = 0;
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002032 /*
2033 * Prevent freeing of tasks while we take a snapshot. Tasks that are
2034 * already PF_EXITING could be freed from underneath us unless we
2035 * take an rcu_read_lock.
2036 */
2037 rcu_read_lock();
Ben Blum74a11662011-05-26 16:25:20 -07002038 do {
Tejun Heo134d3372011-12-12 18:12:21 -08002039 struct task_and_cgroup ent;
2040
Tejun Heocd3d0952011-12-12 18:12:21 -08002041 /* @tsk either already exited or can't exit until the end */
2042 if (tsk->flags & PF_EXITING)
2043 continue;
2044
Ben Blum74a11662011-05-26 16:25:20 -07002045 /* as per above, nr_threads may decrease, but not increase. */
2046 BUG_ON(i >= group_size);
Tejun Heo134d3372011-12-12 18:12:21 -08002047 ent.task = tsk;
2048 ent.cgrp = task_cgroup_from_root(tsk, root);
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08002049 /* nothing to do if this task is already in the cgroup */
2050 if (ent.cgrp == cgrp)
2051 continue;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002052 /*
2053 * saying GFP_ATOMIC has no effect here because we did prealloc
2054 * earlier, but it's good form to communicate our expectations.
2055 */
Tejun Heo134d3372011-12-12 18:12:21 -08002056 retval = flex_array_put(group, i, &ent, GFP_ATOMIC);
Ben Blumd8466872011-05-26 16:25:21 -07002057 BUG_ON(retval != 0);
Ben Blum74a11662011-05-26 16:25:20 -07002058 i++;
2059 } while_each_thread(leader, tsk);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002060 rcu_read_unlock();
Ben Blum74a11662011-05-26 16:25:20 -07002061 /* remember the number of threads in the array for later. */
2062 group_size = i;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002063 tset.tc_array = group;
2064 tset.tc_array_len = group_size;
Ben Blum74a11662011-05-26 16:25:20 -07002065
Tejun Heo134d3372011-12-12 18:12:21 -08002066 /* methods shouldn't be called if no task is actually migrating */
2067 retval = 0;
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08002068 if (!group_size)
Mandeep Singh Bainesb07ef772011-12-21 20:18:36 -08002069 goto out_free_group_list;
Tejun Heo134d3372011-12-12 18:12:21 -08002070
Ben Blum74a11662011-05-26 16:25:20 -07002071 /*
2072 * step 1: check that we can legitimately attach to the cgroup.
2073 */
2074 for_each_subsys(root, ss) {
2075 if (ss->can_attach) {
Li Zefan761b3ef2012-01-31 13:47:36 +08002076 retval = ss->can_attach(cgrp, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002077 if (retval) {
2078 failed_ss = ss;
2079 goto out_cancel_attach;
2080 }
2081 }
Ben Blum74a11662011-05-26 16:25:20 -07002082 }
2083
2084 /*
2085 * step 2: make sure css_sets exist for all threads to be migrated.
2086 * we use find_css_set, which allocates a new one if necessary.
2087 */
Ben Blum74a11662011-05-26 16:25:20 -07002088 for (i = 0; i < group_size; i++) {
Tejun Heo134d3372011-12-12 18:12:21 -08002089 tc = flex_array_get(group, i);
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002090 tc->cg = find_css_set(tc->task->cgroups, cgrp);
2091 if (!tc->cg) {
2092 retval = -ENOMEM;
2093 goto out_put_css_set_refs;
Ben Blum74a11662011-05-26 16:25:20 -07002094 }
2095 }
2096
2097 /*
Tejun Heo494c1672011-12-12 18:12:22 -08002098 * step 3: now that we're guaranteed success wrt the css_sets,
2099 * proceed to move all tasks to the new cgroup. There are no
2100 * failure cases after here, so this is the commit point.
Ben Blum74a11662011-05-26 16:25:20 -07002101 */
Ben Blum74a11662011-05-26 16:25:20 -07002102 for (i = 0; i < group_size; i++) {
Tejun Heo134d3372011-12-12 18:12:21 -08002103 tc = flex_array_get(group, i);
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002104 cgroup_task_migrate(cgrp, tc->cgrp, tc->task, tc->cg);
Ben Blum74a11662011-05-26 16:25:20 -07002105 }
2106 /* nothing is sensitive to fork() after this point. */
2107
2108 /*
Tejun Heo494c1672011-12-12 18:12:22 -08002109 * step 4: do subsystem attach callbacks.
Ben Blum74a11662011-05-26 16:25:20 -07002110 */
2111 for_each_subsys(root, ss) {
2112 if (ss->attach)
Li Zefan761b3ef2012-01-31 13:47:36 +08002113 ss->attach(cgrp, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002114 }
2115
2116 /*
2117 * step 5: success! and cleanup
2118 */
2119 synchronize_rcu();
2120 cgroup_wakeup_rmdir_waiter(cgrp);
2121 retval = 0;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002122out_put_css_set_refs:
2123 if (retval) {
2124 for (i = 0; i < group_size; i++) {
2125 tc = flex_array_get(group, i);
2126 if (!tc->cg)
2127 break;
2128 put_css_set(tc->cg);
2129 }
Ben Blum74a11662011-05-26 16:25:20 -07002130 }
2131out_cancel_attach:
Ben Blum74a11662011-05-26 16:25:20 -07002132 if (retval) {
2133 for_each_subsys(root, ss) {
Tejun Heo494c1672011-12-12 18:12:22 -08002134 if (ss == failed_ss)
Ben Blum74a11662011-05-26 16:25:20 -07002135 break;
Ben Blum74a11662011-05-26 16:25:20 -07002136 if (ss->cancel_attach)
Li Zefan761b3ef2012-01-31 13:47:36 +08002137 ss->cancel_attach(cgrp, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002138 }
2139 }
Ben Blum74a11662011-05-26 16:25:20 -07002140out_free_group_list:
Ben Blumd8466872011-05-26 16:25:21 -07002141 flex_array_free(group);
Ben Blum74a11662011-05-26 16:25:20 -07002142 return retval;
2143}
2144
Colin Cross4a121782011-07-12 19:53:24 -07002145static int cgroup_allow_attach(struct cgroup *cgrp, struct cgroup_taskset *tset)
2146{
2147 struct cgroup_subsys *ss;
2148 int ret;
2149
2150 for_each_subsys(cgrp->root, ss) {
2151 if (ss->allow_attach) {
2152 ret = ss->allow_attach(cgrp, tset);
2153 if (ret)
2154 return ret;
2155 } else {
2156 return -EACCES;
2157 }
2158 }
2159
2160 return 0;
2161}
2162
Ben Blum74a11662011-05-26 16:25:20 -07002163/*
2164 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08002165 * function to attach either it or all tasks in its threadgroup. Will lock
2166 * cgroup_mutex and threadgroup; may take task_lock of task.
Ben Blum74a11662011-05-26 16:25:20 -07002167 */
2168static int attach_task_by_pid(struct cgroup *cgrp, u64 pid, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002169{
Paul Menagebbcb81d2007-10-18 23:39:32 -07002170 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11002171 const struct cred *cred = current_cred(), *tcred;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002172 int ret;
2173
Ben Blum74a11662011-05-26 16:25:20 -07002174 if (!cgroup_lock_live_group(cgrp))
2175 return -ENODEV;
2176
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002177retry_find_task:
2178 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002179 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002180 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07002181 if (!tsk) {
Paul Menagebbcb81d2007-10-18 23:39:32 -07002182 rcu_read_unlock();
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002183 ret= -ESRCH;
2184 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002185 }
Ben Blum74a11662011-05-26 16:25:20 -07002186 /*
2187 * even if we're attaching all tasks in the thread group, we
2188 * only need to check permissions on one of them.
2189 */
David Howellsc69e8d92008-11-14 10:39:19 +11002190 tcred = __task_cred(tsk);
2191 if (cred->euid &&
2192 cred->euid != tcred->uid &&
2193 cred->euid != tcred->suid) {
Colin Cross4a121782011-07-12 19:53:24 -07002194 /*
2195 * if the default permission check fails, give each
2196 * cgroup a chance to extend the permission check
2197 */
2198 struct cgroup_taskset tset = { };
2199 tset.single.task = tsk;
2200 tset.single.cgrp = cgrp;
2201 ret = cgroup_allow_attach(cgrp, &tset);
2202 if (ret) {
2203 rcu_read_unlock();
2204 goto out_unlock_cgroup;
2205 }
Paul Menagebbcb81d2007-10-18 23:39:32 -07002206 }
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002207 } else
2208 tsk = current;
Tejun Heocd3d0952011-12-12 18:12:21 -08002209
2210 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002211 tsk = tsk->group_leader;
2212 get_task_struct(tsk);
2213 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08002214
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002215 threadgroup_lock(tsk);
2216 if (threadgroup) {
2217 if (!thread_group_leader(tsk)) {
2218 /*
2219 * a race with de_thread from another thread's exec()
2220 * may strip us of our leadership, if this happens,
2221 * there is no choice but to throw this task away and
2222 * try again; this is
2223 * "double-double-toil-and-trouble-check locking".
2224 */
2225 threadgroup_unlock(tsk);
2226 put_task_struct(tsk);
2227 goto retry_find_task;
2228 }
2229 ret = cgroup_attach_proc(cgrp, tsk);
2230 } else
2231 ret = cgroup_attach_task(cgrp, tsk);
Tejun Heocd3d0952011-12-12 18:12:21 -08002232 threadgroup_unlock(tsk);
2233
Paul Menagebbcb81d2007-10-18 23:39:32 -07002234 put_task_struct(tsk);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002235out_unlock_cgroup:
Ben Blum74a11662011-05-26 16:25:20 -07002236 cgroup_unlock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002237 return ret;
2238}
2239
Paul Menageaf351022008-07-25 01:47:01 -07002240static int cgroup_tasks_write(struct cgroup *cgrp, struct cftype *cft, u64 pid)
2241{
Ben Blum74a11662011-05-26 16:25:20 -07002242 return attach_task_by_pid(cgrp, pid, false);
2243}
2244
2245static int cgroup_procs_write(struct cgroup *cgrp, struct cftype *cft, u64 tgid)
2246{
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002247 return attach_task_by_pid(cgrp, tgid, true);
Paul Menageaf351022008-07-25 01:47:01 -07002248}
2249
Paul Menagee788e062008-07-25 01:46:59 -07002250/**
2251 * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive.
2252 * @cgrp: the cgroup to be checked for liveness
2253 *
Paul Menage84eea842008-07-25 01:47:00 -07002254 * On success, returns true; the lock should be later released with
2255 * cgroup_unlock(). On failure returns false with no lock held.
Paul Menagee788e062008-07-25 01:46:59 -07002256 */
Paul Menage84eea842008-07-25 01:47:00 -07002257bool cgroup_lock_live_group(struct cgroup *cgrp)
Paul Menagee788e062008-07-25 01:46:59 -07002258{
2259 mutex_lock(&cgroup_mutex);
2260 if (cgroup_is_removed(cgrp)) {
2261 mutex_unlock(&cgroup_mutex);
2262 return false;
2263 }
2264 return true;
2265}
Ben Blum67523c42010-03-10 15:22:11 -08002266EXPORT_SYMBOL_GPL(cgroup_lock_live_group);
Paul Menagee788e062008-07-25 01:46:59 -07002267
2268static int cgroup_release_agent_write(struct cgroup *cgrp, struct cftype *cft,
2269 const char *buffer)
2270{
2271 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
Evgeny Kuznetsovf4a25892010-10-27 15:33:37 -07002272 if (strlen(buffer) >= PATH_MAX)
2273 return -EINVAL;
Paul Menagee788e062008-07-25 01:46:59 -07002274 if (!cgroup_lock_live_group(cgrp))
2275 return -ENODEV;
Tejun Heoe25e2cb2011-12-12 18:12:21 -08002276 mutex_lock(&cgroup_root_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07002277 strcpy(cgrp->root->release_agent_path, buffer);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08002278 mutex_unlock(&cgroup_root_mutex);
Paul Menage84eea842008-07-25 01:47:00 -07002279 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07002280 return 0;
2281}
2282
2283static int cgroup_release_agent_show(struct cgroup *cgrp, struct cftype *cft,
2284 struct seq_file *seq)
2285{
2286 if (!cgroup_lock_live_group(cgrp))
2287 return -ENODEV;
2288 seq_puts(seq, cgrp->root->release_agent_path);
2289 seq_putc(seq, '\n');
Paul Menage84eea842008-07-25 01:47:00 -07002290 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07002291 return 0;
2292}
2293
Paul Menage84eea842008-07-25 01:47:00 -07002294/* A buffer size big enough for numbers or short strings */
2295#define CGROUP_LOCAL_BUFFER_SIZE 64
2296
Paul Menagee73d2c62008-04-29 01:00:06 -07002297static ssize_t cgroup_write_X64(struct cgroup *cgrp, struct cftype *cft,
Paul Menagef4c753b2008-04-29 00:59:56 -07002298 struct file *file,
2299 const char __user *userbuf,
2300 size_t nbytes, loff_t *unused_ppos)
Paul Menage355e0c42007-10-18 23:39:33 -07002301{
Paul Menage84eea842008-07-25 01:47:00 -07002302 char buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menage355e0c42007-10-18 23:39:33 -07002303 int retval = 0;
Paul Menage355e0c42007-10-18 23:39:33 -07002304 char *end;
2305
2306 if (!nbytes)
2307 return -EINVAL;
2308 if (nbytes >= sizeof(buffer))
2309 return -E2BIG;
2310 if (copy_from_user(buffer, userbuf, nbytes))
2311 return -EFAULT;
2312
2313 buffer[nbytes] = 0; /* nul-terminate */
Paul Menagee73d2c62008-04-29 01:00:06 -07002314 if (cft->write_u64) {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002315 u64 val = simple_strtoull(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07002316 if (*end)
2317 return -EINVAL;
2318 retval = cft->write_u64(cgrp, cft, val);
2319 } else {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002320 s64 val = simple_strtoll(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07002321 if (*end)
2322 return -EINVAL;
2323 retval = cft->write_s64(cgrp, cft, val);
2324 }
Paul Menage355e0c42007-10-18 23:39:33 -07002325 if (!retval)
2326 retval = nbytes;
2327 return retval;
2328}
2329
Paul Menagedb3b1492008-07-25 01:46:58 -07002330static ssize_t cgroup_write_string(struct cgroup *cgrp, struct cftype *cft,
2331 struct file *file,
2332 const char __user *userbuf,
2333 size_t nbytes, loff_t *unused_ppos)
2334{
Paul Menage84eea842008-07-25 01:47:00 -07002335 char local_buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagedb3b1492008-07-25 01:46:58 -07002336 int retval = 0;
2337 size_t max_bytes = cft->max_write_len;
2338 char *buffer = local_buffer;
2339
2340 if (!max_bytes)
2341 max_bytes = sizeof(local_buffer) - 1;
2342 if (nbytes >= max_bytes)
2343 return -E2BIG;
2344 /* Allocate a dynamic buffer if we need one */
2345 if (nbytes >= sizeof(local_buffer)) {
2346 buffer = kmalloc(nbytes + 1, GFP_KERNEL);
2347 if (buffer == NULL)
2348 return -ENOMEM;
2349 }
Li Zefan5a3eb9f2008-07-29 22:33:18 -07002350 if (nbytes && copy_from_user(buffer, userbuf, nbytes)) {
2351 retval = -EFAULT;
2352 goto out;
2353 }
Paul Menagedb3b1492008-07-25 01:46:58 -07002354
2355 buffer[nbytes] = 0; /* nul-terminate */
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002356 retval = cft->write_string(cgrp, cft, strstrip(buffer));
Paul Menagedb3b1492008-07-25 01:46:58 -07002357 if (!retval)
2358 retval = nbytes;
Li Zefan5a3eb9f2008-07-29 22:33:18 -07002359out:
Paul Menagedb3b1492008-07-25 01:46:58 -07002360 if (buffer != local_buffer)
2361 kfree(buffer);
2362 return retval;
2363}
2364
Paul Menageddbcc7e2007-10-18 23:39:30 -07002365static ssize_t cgroup_file_write(struct file *file, const char __user *buf,
2366 size_t nbytes, loff_t *ppos)
2367{
2368 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07002369 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002370
Li Zefan75139b82009-01-07 18:07:33 -08002371 if (cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07002372 return -ENODEV;
Paul Menage355e0c42007-10-18 23:39:33 -07002373 if (cft->write)
Paul Menagebd89aab2007-10-18 23:40:44 -07002374 return cft->write(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002375 if (cft->write_u64 || cft->write_s64)
2376 return cgroup_write_X64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagedb3b1492008-07-25 01:46:58 -07002377 if (cft->write_string)
2378 return cgroup_write_string(cgrp, cft, file, buf, nbytes, ppos);
Pavel Emelyanovd447ea22008-04-29 01:00:08 -07002379 if (cft->trigger) {
2380 int ret = cft->trigger(cgrp, (unsigned int)cft->private);
2381 return ret ? ret : nbytes;
2382 }
Paul Menage355e0c42007-10-18 23:39:33 -07002383 return -EINVAL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002384}
2385
Paul Menagef4c753b2008-04-29 00:59:56 -07002386static ssize_t cgroup_read_u64(struct cgroup *cgrp, struct cftype *cft,
2387 struct file *file,
2388 char __user *buf, size_t nbytes,
2389 loff_t *ppos)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002390{
Paul Menage84eea842008-07-25 01:47:00 -07002391 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagef4c753b2008-04-29 00:59:56 -07002392 u64 val = cft->read_u64(cgrp, cft);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002393 int len = sprintf(tmp, "%llu\n", (unsigned long long) val);
2394
2395 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2396}
2397
Paul Menagee73d2c62008-04-29 01:00:06 -07002398static ssize_t cgroup_read_s64(struct cgroup *cgrp, struct cftype *cft,
2399 struct file *file,
2400 char __user *buf, size_t nbytes,
2401 loff_t *ppos)
2402{
Paul Menage84eea842008-07-25 01:47:00 -07002403 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagee73d2c62008-04-29 01:00:06 -07002404 s64 val = cft->read_s64(cgrp, cft);
2405 int len = sprintf(tmp, "%lld\n", (long long) val);
2406
2407 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2408}
2409
Paul Menageddbcc7e2007-10-18 23:39:30 -07002410static ssize_t cgroup_file_read(struct file *file, char __user *buf,
2411 size_t nbytes, loff_t *ppos)
2412{
2413 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07002414 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002415
Li Zefan75139b82009-01-07 18:07:33 -08002416 if (cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07002417 return -ENODEV;
2418
2419 if (cft->read)
Paul Menagebd89aab2007-10-18 23:40:44 -07002420 return cft->read(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagef4c753b2008-04-29 00:59:56 -07002421 if (cft->read_u64)
2422 return cgroup_read_u64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002423 if (cft->read_s64)
2424 return cgroup_read_s64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002425 return -EINVAL;
2426}
2427
Paul Menage91796562008-04-29 01:00:01 -07002428/*
2429 * seqfile ops/methods for returning structured data. Currently just
2430 * supports string->u64 maps, but can be extended in future.
2431 */
2432
2433struct cgroup_seqfile_state {
2434 struct cftype *cft;
2435 struct cgroup *cgroup;
2436};
2437
2438static int cgroup_map_add(struct cgroup_map_cb *cb, const char *key, u64 value)
2439{
2440 struct seq_file *sf = cb->state;
2441 return seq_printf(sf, "%s %llu\n", key, (unsigned long long)value);
2442}
2443
2444static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2445{
2446 struct cgroup_seqfile_state *state = m->private;
2447 struct cftype *cft = state->cft;
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002448 if (cft->read_map) {
2449 struct cgroup_map_cb cb = {
2450 .fill = cgroup_map_add,
2451 .state = m,
2452 };
2453 return cft->read_map(state->cgroup, cft, &cb);
2454 }
2455 return cft->read_seq_string(state->cgroup, cft, m);
Paul Menage91796562008-04-29 01:00:01 -07002456}
2457
Adrian Bunk96930a62008-07-25 19:46:21 -07002458static int cgroup_seqfile_release(struct inode *inode, struct file *file)
Paul Menage91796562008-04-29 01:00:01 -07002459{
2460 struct seq_file *seq = file->private_data;
2461 kfree(seq->private);
2462 return single_release(inode, file);
2463}
2464
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002465static const struct file_operations cgroup_seqfile_operations = {
Paul Menage91796562008-04-29 01:00:01 -07002466 .read = seq_read,
Paul Menagee788e062008-07-25 01:46:59 -07002467 .write = cgroup_file_write,
Paul Menage91796562008-04-29 01:00:01 -07002468 .llseek = seq_lseek,
2469 .release = cgroup_seqfile_release,
2470};
2471
Paul Menageddbcc7e2007-10-18 23:39:30 -07002472static int cgroup_file_open(struct inode *inode, struct file *file)
2473{
2474 int err;
2475 struct cftype *cft;
2476
2477 err = generic_file_open(inode, file);
2478 if (err)
2479 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002480 cft = __d_cft(file->f_dentry);
Li Zefan75139b82009-01-07 18:07:33 -08002481
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002482 if (cft->read_map || cft->read_seq_string) {
Paul Menage91796562008-04-29 01:00:01 -07002483 struct cgroup_seqfile_state *state =
2484 kzalloc(sizeof(*state), GFP_USER);
2485 if (!state)
2486 return -ENOMEM;
2487 state->cft = cft;
2488 state->cgroup = __d_cgrp(file->f_dentry->d_parent);
2489 file->f_op = &cgroup_seqfile_operations;
2490 err = single_open(file, cgroup_seqfile_show, state);
2491 if (err < 0)
2492 kfree(state);
2493 } else if (cft->open)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002494 err = cft->open(inode, file);
2495 else
2496 err = 0;
2497
2498 return err;
2499}
2500
2501static int cgroup_file_release(struct inode *inode, struct file *file)
2502{
2503 struct cftype *cft = __d_cft(file->f_dentry);
2504 if (cft->release)
2505 return cft->release(inode, file);
2506 return 0;
2507}
2508
2509/*
2510 * cgroup_rename - Only allow simple rename of directories in place.
2511 */
2512static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry,
2513 struct inode *new_dir, struct dentry *new_dentry)
2514{
2515 if (!S_ISDIR(old_dentry->d_inode->i_mode))
2516 return -ENOTDIR;
2517 if (new_dentry->d_inode)
2518 return -EEXIST;
2519 if (old_dir != new_dir)
2520 return -EIO;
2521 return simple_rename(old_dir, old_dentry, new_dir, new_dentry);
2522}
2523
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002524static const struct file_operations cgroup_file_operations = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002525 .read = cgroup_file_read,
2526 .write = cgroup_file_write,
2527 .llseek = generic_file_llseek,
2528 .open = cgroup_file_open,
2529 .release = cgroup_file_release,
2530};
2531
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07002532static const struct inode_operations cgroup_dir_inode_operations = {
Al Viroc72a04e2011-01-14 05:31:45 +00002533 .lookup = cgroup_lookup,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002534 .mkdir = cgroup_mkdir,
2535 .rmdir = cgroup_rmdir,
2536 .rename = cgroup_rename,
2537};
2538
Al Viroc72a04e2011-01-14 05:31:45 +00002539static struct dentry *cgroup_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
2540{
2541 if (dentry->d_name.len > NAME_MAX)
2542 return ERR_PTR(-ENAMETOOLONG);
2543 d_add(dentry, NULL);
2544 return NULL;
2545}
2546
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08002547/*
2548 * Check if a file is a control file
2549 */
2550static inline struct cftype *__file_cft(struct file *file)
2551{
2552 if (file->f_dentry->d_inode->i_fop != &cgroup_file_operations)
2553 return ERR_PTR(-EINVAL);
2554 return __d_cft(file->f_dentry);
2555}
2556
Al Viroa5e7ed32011-07-26 01:55:55 -04002557static int cgroup_create_file(struct dentry *dentry, umode_t mode,
Nick Piggin5adcee12011-01-07 17:49:20 +11002558 struct super_block *sb)
2559{
Paul Menageddbcc7e2007-10-18 23:39:30 -07002560 struct inode *inode;
2561
2562 if (!dentry)
2563 return -ENOENT;
2564 if (dentry->d_inode)
2565 return -EEXIST;
2566
2567 inode = cgroup_new_inode(mode, sb);
2568 if (!inode)
2569 return -ENOMEM;
2570
2571 if (S_ISDIR(mode)) {
2572 inode->i_op = &cgroup_dir_inode_operations;
2573 inode->i_fop = &simple_dir_operations;
2574
2575 /* start off with i_nlink == 2 (for "." entry) */
2576 inc_nlink(inode);
2577
2578 /* start with the directory inode held, so that we can
2579 * populate it without racing with another mkdir */
Paul Menage817929e2007-10-18 23:39:36 -07002580 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002581 } else if (S_ISREG(mode)) {
2582 inode->i_size = 0;
2583 inode->i_fop = &cgroup_file_operations;
2584 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002585 d_instantiate(dentry, inode);
2586 dget(dentry); /* Extra count - pin the dentry in core */
2587 return 0;
2588}
2589
2590/*
Li Zefana043e3b2008-02-23 15:24:09 -08002591 * cgroup_create_dir - create a directory for an object.
2592 * @cgrp: the cgroup we create the directory for. It must have a valid
2593 * ->parent field. And we are going to fill its ->dentry field.
2594 * @dentry: dentry of the new cgroup
2595 * @mode: mode to set on new directory.
Paul Menageddbcc7e2007-10-18 23:39:30 -07002596 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002597static int cgroup_create_dir(struct cgroup *cgrp, struct dentry *dentry,
Al Viroa5e7ed32011-07-26 01:55:55 -04002598 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002599{
2600 struct dentry *parent;
2601 int error = 0;
2602
Paul Menagebd89aab2007-10-18 23:40:44 -07002603 parent = cgrp->parent->dentry;
2604 error = cgroup_create_file(dentry, S_IFDIR | mode, cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002605 if (!error) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002606 dentry->d_fsdata = cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002607 inc_nlink(parent->d_inode);
Paul Menagea47295e2009-01-07 18:07:44 -08002608 rcu_assign_pointer(cgrp->dentry, dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002609 dget(dentry);
2610 }
2611 dput(dentry);
2612
2613 return error;
2614}
2615
Li Zefan099fca32009-04-02 16:57:29 -07002616/**
2617 * cgroup_file_mode - deduce file mode of a control file
2618 * @cft: the control file in question
2619 *
2620 * returns cft->mode if ->mode is not 0
2621 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
2622 * returns S_IRUGO if it has only a read handler
2623 * returns S_IWUSR if it has only a write hander
2624 */
Al Viroa5e7ed32011-07-26 01:55:55 -04002625static umode_t cgroup_file_mode(const struct cftype *cft)
Li Zefan099fca32009-04-02 16:57:29 -07002626{
Al Viroa5e7ed32011-07-26 01:55:55 -04002627 umode_t mode = 0;
Li Zefan099fca32009-04-02 16:57:29 -07002628
2629 if (cft->mode)
2630 return cft->mode;
2631
2632 if (cft->read || cft->read_u64 || cft->read_s64 ||
2633 cft->read_map || cft->read_seq_string)
2634 mode |= S_IRUGO;
2635
2636 if (cft->write || cft->write_u64 || cft->write_s64 ||
2637 cft->write_string || cft->trigger)
2638 mode |= S_IWUSR;
2639
2640 return mode;
2641}
2642
Paul Menagebd89aab2007-10-18 23:40:44 -07002643int cgroup_add_file(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002644 struct cgroup_subsys *subsys,
2645 const struct cftype *cft)
2646{
Paul Menagebd89aab2007-10-18 23:40:44 -07002647 struct dentry *dir = cgrp->dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002648 struct dentry *dentry;
2649 int error;
Al Viroa5e7ed32011-07-26 01:55:55 -04002650 umode_t mode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002651
2652 char name[MAX_CGROUP_TYPE_NAMELEN + MAX_CFTYPE_NAME + 2] = { 0 };
Paul Menagebd89aab2007-10-18 23:40:44 -07002653 if (subsys && !test_bit(ROOT_NOPREFIX, &cgrp->root->flags)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002654 strcpy(name, subsys->name);
2655 strcat(name, ".");
2656 }
2657 strcat(name, cft->name);
2658 BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex));
2659 dentry = lookup_one_len(name, dir, strlen(name));
2660 if (!IS_ERR(dentry)) {
Li Zefan099fca32009-04-02 16:57:29 -07002661 mode = cgroup_file_mode(cft);
2662 error = cgroup_create_file(dentry, mode | S_IFREG,
Paul Menagebd89aab2007-10-18 23:40:44 -07002663 cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002664 if (!error)
2665 dentry->d_fsdata = (void *)cft;
2666 dput(dentry);
2667 } else
2668 error = PTR_ERR(dentry);
2669 return error;
2670}
Ben Blume6a11052010-03-10 15:22:09 -08002671EXPORT_SYMBOL_GPL(cgroup_add_file);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002672
Paul Menagebd89aab2007-10-18 23:40:44 -07002673int cgroup_add_files(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002674 struct cgroup_subsys *subsys,
2675 const struct cftype cft[],
2676 int count)
2677{
2678 int i, err;
2679 for (i = 0; i < count; i++) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002680 err = cgroup_add_file(cgrp, subsys, &cft[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002681 if (err)
2682 return err;
2683 }
2684 return 0;
2685}
Ben Blume6a11052010-03-10 15:22:09 -08002686EXPORT_SYMBOL_GPL(cgroup_add_files);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002687
Li Zefana043e3b2008-02-23 15:24:09 -08002688/**
2689 * cgroup_task_count - count the number of tasks in a cgroup.
2690 * @cgrp: the cgroup in question
2691 *
2692 * Return the number of tasks in the cgroup.
2693 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002694int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002695{
2696 int count = 0;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07002697 struct cg_cgroup_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002698
Paul Menage817929e2007-10-18 23:39:36 -07002699 read_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07002700 list_for_each_entry(link, &cgrp->css_sets, cgrp_link_list) {
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07002701 count += atomic_read(&link->cg->refcount);
Paul Menage817929e2007-10-18 23:39:36 -07002702 }
2703 read_unlock(&css_set_lock);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002704 return count;
2705}
2706
2707/*
Paul Menage817929e2007-10-18 23:39:36 -07002708 * Advance a list_head iterator. The iterator should be positioned at
2709 * the start of a css_set
2710 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002711static void cgroup_advance_iter(struct cgroup *cgrp,
Paul Menage7717f7b2009-09-23 15:56:22 -07002712 struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002713{
2714 struct list_head *l = it->cg_link;
2715 struct cg_cgroup_link *link;
2716 struct css_set *cg;
2717
2718 /* Advance to the next non-empty css_set */
2719 do {
2720 l = l->next;
Paul Menagebd89aab2007-10-18 23:40:44 -07002721 if (l == &cgrp->css_sets) {
Paul Menage817929e2007-10-18 23:39:36 -07002722 it->cg_link = NULL;
2723 return;
2724 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002725 link = list_entry(l, struct cg_cgroup_link, cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07002726 cg = link->cg;
2727 } while (list_empty(&cg->tasks));
2728 it->cg_link = l;
2729 it->task = cg->tasks.next;
2730}
2731
Cliff Wickman31a7df02008-02-07 00:14:42 -08002732/*
2733 * To reduce the fork() overhead for systems that are not actually
2734 * using their cgroups capability, we don't maintain the lists running
2735 * through each css_set to its tasks until we see the list actually
2736 * used - in other words after the first call to cgroup_iter_start().
Cliff Wickman31a7df02008-02-07 00:14:42 -08002737 */
Adrian Bunk3df91fe2008-04-29 00:59:54 -07002738static void cgroup_enable_task_cg_lists(void)
Cliff Wickman31a7df02008-02-07 00:14:42 -08002739{
2740 struct task_struct *p, *g;
2741 write_lock(&css_set_lock);
2742 use_task_css_set_links = 1;
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01002743 /*
2744 * We need tasklist_lock because RCU is not safe against
2745 * while_each_thread(). Besides, a forking task that has passed
2746 * cgroup_post_fork() without seeing use_task_css_set_links = 1
2747 * is not guaranteed to have its child immediately visible in the
2748 * tasklist if we walk through it with RCU.
2749 */
2750 read_lock(&tasklist_lock);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002751 do_each_thread(g, p) {
2752 task_lock(p);
Li Zefan0e043882008-04-17 11:37:15 +08002753 /*
2754 * We should check if the process is exiting, otherwise
2755 * it will race with cgroup_exit() in that the list
2756 * entry won't be deleted though the process has exited.
2757 */
2758 if (!(p->flags & PF_EXITING) && list_empty(&p->cg_list))
Cliff Wickman31a7df02008-02-07 00:14:42 -08002759 list_add(&p->cg_list, &p->cgroups->tasks);
2760 task_unlock(p);
2761 } while_each_thread(g, p);
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01002762 read_unlock(&tasklist_lock);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002763 write_unlock(&css_set_lock);
2764}
2765
Paul Menagebd89aab2007-10-18 23:40:44 -07002766void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it)
Kirill A. Shutemovc6ca5752011-12-27 07:46:26 +02002767 __acquires(css_set_lock)
Paul Menage817929e2007-10-18 23:39:36 -07002768{
2769 /*
2770 * The first time anyone tries to iterate across a cgroup,
2771 * we need to enable the list linking each css_set to its
2772 * tasks, and fix up all existing tasks.
2773 */
Cliff Wickman31a7df02008-02-07 00:14:42 -08002774 if (!use_task_css_set_links)
2775 cgroup_enable_task_cg_lists();
2776
Paul Menage817929e2007-10-18 23:39:36 -07002777 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07002778 it->cg_link = &cgrp->css_sets;
2779 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07002780}
2781
Paul Menagebd89aab2007-10-18 23:40:44 -07002782struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -07002783 struct cgroup_iter *it)
2784{
2785 struct task_struct *res;
2786 struct list_head *l = it->task;
Lai Jiangshan2019f632009-01-07 18:07:36 -08002787 struct cg_cgroup_link *link;
Paul Menage817929e2007-10-18 23:39:36 -07002788
2789 /* If the iterator cg is NULL, we have no tasks */
2790 if (!it->cg_link)
2791 return NULL;
2792 res = list_entry(l, struct task_struct, cg_list);
2793 /* Advance iterator to find next entry */
2794 l = l->next;
Lai Jiangshan2019f632009-01-07 18:07:36 -08002795 link = list_entry(it->cg_link, struct cg_cgroup_link, cgrp_link_list);
2796 if (l == &link->cg->tasks) {
Paul Menage817929e2007-10-18 23:39:36 -07002797 /* We reached the end of this task list - move on to
2798 * the next cg_cgroup_link */
Paul Menagebd89aab2007-10-18 23:40:44 -07002799 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07002800 } else {
2801 it->task = l;
2802 }
2803 return res;
2804}
2805
Paul Menagebd89aab2007-10-18 23:40:44 -07002806void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it)
Kirill A. Shutemovc6ca5752011-12-27 07:46:26 +02002807 __releases(css_set_lock)
Paul Menage817929e2007-10-18 23:39:36 -07002808{
2809 read_unlock(&css_set_lock);
2810}
2811
Cliff Wickman31a7df02008-02-07 00:14:42 -08002812static inline int started_after_time(struct task_struct *t1,
2813 struct timespec *time,
2814 struct task_struct *t2)
2815{
2816 int start_diff = timespec_compare(&t1->start_time, time);
2817 if (start_diff > 0) {
2818 return 1;
2819 } else if (start_diff < 0) {
2820 return 0;
2821 } else {
2822 /*
2823 * Arbitrarily, if two processes started at the same
2824 * time, we'll say that the lower pointer value
2825 * started first. Note that t2 may have exited by now
2826 * so this may not be a valid pointer any longer, but
2827 * that's fine - it still serves to distinguish
2828 * between two tasks started (effectively) simultaneously.
2829 */
2830 return t1 > t2;
2831 }
2832}
2833
2834/*
2835 * This function is a callback from heap_insert() and is used to order
2836 * the heap.
2837 * In this case we order the heap in descending task start time.
2838 */
2839static inline int started_after(void *p1, void *p2)
2840{
2841 struct task_struct *t1 = p1;
2842 struct task_struct *t2 = p2;
2843 return started_after_time(t1, &t2->start_time, t2);
2844}
2845
2846/**
2847 * cgroup_scan_tasks - iterate though all the tasks in a cgroup
2848 * @scan: struct cgroup_scanner containing arguments for the scan
2849 *
2850 * Arguments include pointers to callback functions test_task() and
2851 * process_task().
2852 * Iterate through all the tasks in a cgroup, calling test_task() for each,
2853 * and if it returns true, call process_task() for it also.
2854 * The test_task pointer may be NULL, meaning always true (select all tasks).
2855 * Effectively duplicates cgroup_iter_{start,next,end}()
2856 * but does not lock css_set_lock for the call to process_task().
2857 * The struct cgroup_scanner may be embedded in any structure of the caller's
2858 * creation.
2859 * It is guaranteed that process_task() will act on every task that
2860 * is a member of the cgroup for the duration of this call. This
2861 * function may or may not call process_task() for tasks that exit
2862 * or move to a different cgroup during the call, or are forked or
2863 * move into the cgroup during the call.
2864 *
2865 * Note that test_task() may be called with locks held, and may in some
2866 * situations be called multiple times for the same task, so it should
2867 * be cheap.
2868 * If the heap pointer in the struct cgroup_scanner is non-NULL, a heap has been
2869 * pre-allocated and will be used for heap operations (and its "gt" member will
2870 * be overwritten), else a temporary heap will be used (allocation of which
2871 * may cause this function to fail).
2872 */
2873int cgroup_scan_tasks(struct cgroup_scanner *scan)
2874{
2875 int retval, i;
2876 struct cgroup_iter it;
2877 struct task_struct *p, *dropped;
2878 /* Never dereference latest_task, since it's not refcounted */
2879 struct task_struct *latest_task = NULL;
2880 struct ptr_heap tmp_heap;
2881 struct ptr_heap *heap;
2882 struct timespec latest_time = { 0, 0 };
2883
2884 if (scan->heap) {
2885 /* The caller supplied our heap and pre-allocated its memory */
2886 heap = scan->heap;
2887 heap->gt = &started_after;
2888 } else {
2889 /* We need to allocate our own heap memory */
2890 heap = &tmp_heap;
2891 retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after);
2892 if (retval)
2893 /* cannot allocate the heap */
2894 return retval;
2895 }
2896
2897 again:
2898 /*
2899 * Scan tasks in the cgroup, using the scanner's "test_task" callback
2900 * to determine which are of interest, and using the scanner's
2901 * "process_task" callback to process any of them that need an update.
2902 * Since we don't want to hold any locks during the task updates,
2903 * gather tasks to be processed in a heap structure.
2904 * The heap is sorted by descending task start time.
2905 * If the statically-sized heap fills up, we overflow tasks that
2906 * started later, and in future iterations only consider tasks that
2907 * started after the latest task in the previous pass. This
2908 * guarantees forward progress and that we don't miss any tasks.
2909 */
2910 heap->size = 0;
2911 cgroup_iter_start(scan->cg, &it);
2912 while ((p = cgroup_iter_next(scan->cg, &it))) {
2913 /*
2914 * Only affect tasks that qualify per the caller's callback,
2915 * if he provided one
2916 */
2917 if (scan->test_task && !scan->test_task(p, scan))
2918 continue;
2919 /*
2920 * Only process tasks that started after the last task
2921 * we processed
2922 */
2923 if (!started_after_time(p, &latest_time, latest_task))
2924 continue;
2925 dropped = heap_insert(heap, p);
2926 if (dropped == NULL) {
2927 /*
2928 * The new task was inserted; the heap wasn't
2929 * previously full
2930 */
2931 get_task_struct(p);
2932 } else if (dropped != p) {
2933 /*
2934 * The new task was inserted, and pushed out a
2935 * different task
2936 */
2937 get_task_struct(p);
2938 put_task_struct(dropped);
2939 }
2940 /*
2941 * Else the new task was newer than anything already in
2942 * the heap and wasn't inserted
2943 */
2944 }
2945 cgroup_iter_end(scan->cg, &it);
2946
2947 if (heap->size) {
2948 for (i = 0; i < heap->size; i++) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07002949 struct task_struct *q = heap->ptrs[i];
Cliff Wickman31a7df02008-02-07 00:14:42 -08002950 if (i == 0) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07002951 latest_time = q->start_time;
2952 latest_task = q;
Cliff Wickman31a7df02008-02-07 00:14:42 -08002953 }
2954 /* Process the task per the caller's callback */
Paul Jackson4fe91d52008-04-29 00:59:55 -07002955 scan->process_task(q, scan);
2956 put_task_struct(q);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002957 }
2958 /*
2959 * If we had to process any tasks at all, scan again
2960 * in case some of them were in the middle of forking
2961 * children that didn't get processed.
2962 * Not the most efficient way to do it, but it avoids
2963 * having to take callback_mutex in the fork path
2964 */
2965 goto again;
2966 }
2967 if (heap == &tmp_heap)
2968 heap_free(&tmp_heap);
2969 return 0;
2970}
2971
Paul Menage817929e2007-10-18 23:39:36 -07002972/*
Ben Blum102a7752009-09-23 15:56:26 -07002973 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07002974 *
2975 * Reading this file can return large amounts of data if a cgroup has
2976 * *lots* of attached tasks. So it may need several calls to read(),
2977 * but we cannot guarantee that the information we produce is correct
2978 * unless we produce it entirely atomically.
2979 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07002980 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07002981
Li Zefan24528252012-01-20 11:58:43 +08002982/* which pidlist file are we talking about? */
2983enum cgroup_filetype {
2984 CGROUP_FILE_PROCS,
2985 CGROUP_FILE_TASKS,
2986};
2987
2988/*
2989 * A pidlist is a list of pids that virtually represents the contents of one
2990 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
2991 * a pair (one each for procs, tasks) for each pid namespace that's relevant
2992 * to the cgroup.
2993 */
2994struct cgroup_pidlist {
2995 /*
2996 * used to find which pidlist is wanted. doesn't change as long as
2997 * this particular list stays in the list.
2998 */
2999 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
3000 /* array of xids */
3001 pid_t *list;
3002 /* how many elements the above list has */
3003 int length;
3004 /* how many files are using the current array */
3005 int use_count;
3006 /* each of these stored in a list by its cgroup */
3007 struct list_head links;
3008 /* pointer to the cgroup we belong to, for list removal purposes */
3009 struct cgroup *owner;
3010 /* protects the other fields */
3011 struct rw_semaphore mutex;
3012};
3013
Paul Menagebbcb81d2007-10-18 23:39:32 -07003014/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07003015 * The following two functions "fix" the issue where there are more pids
3016 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
3017 * TODO: replace with a kernel-wide solution to this problem
3018 */
3019#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
3020static void *pidlist_allocate(int count)
3021{
3022 if (PIDLIST_TOO_LARGE(count))
3023 return vmalloc(count * sizeof(pid_t));
3024 else
3025 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
3026}
3027static void pidlist_free(void *p)
3028{
3029 if (is_vmalloc_addr(p))
3030 vfree(p);
3031 else
3032 kfree(p);
3033}
3034static void *pidlist_resize(void *p, int newcount)
3035{
3036 void *newlist;
3037 /* note: if new alloc fails, old p will still be valid either way */
3038 if (is_vmalloc_addr(p)) {
3039 newlist = vmalloc(newcount * sizeof(pid_t));
3040 if (!newlist)
3041 return NULL;
3042 memcpy(newlist, p, newcount * sizeof(pid_t));
3043 vfree(p);
3044 } else {
3045 newlist = krealloc(p, newcount * sizeof(pid_t), GFP_KERNEL);
3046 }
3047 return newlist;
3048}
3049
3050/*
Ben Blum102a7752009-09-23 15:56:26 -07003051 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
3052 * If the new stripped list is sufficiently smaller and there's enough memory
3053 * to allocate a new buffer, will let go of the unneeded memory. Returns the
3054 * number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003055 */
Ben Blum102a7752009-09-23 15:56:26 -07003056/* is the size difference enough that we should re-allocate the array? */
3057#define PIDLIST_REALLOC_DIFFERENCE(old, new) ((old) - PAGE_SIZE >= (new))
3058static int pidlist_uniq(pid_t **p, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003059{
Ben Blum102a7752009-09-23 15:56:26 -07003060 int src, dest = 1;
3061 pid_t *list = *p;
3062 pid_t *newlist;
3063
3064 /*
3065 * we presume the 0th element is unique, so i starts at 1. trivial
3066 * edge cases first; no work needs to be done for either
3067 */
3068 if (length == 0 || length == 1)
3069 return length;
3070 /* src and dest walk down the list; dest counts unique elements */
3071 for (src = 1; src < length; src++) {
3072 /* find next unique element */
3073 while (list[src] == list[src-1]) {
3074 src++;
3075 if (src == length)
3076 goto after;
3077 }
3078 /* dest always points to where the next unique element goes */
3079 list[dest] = list[src];
3080 dest++;
3081 }
3082after:
3083 /*
3084 * if the length difference is large enough, we want to allocate a
3085 * smaller buffer to save memory. if this fails due to out of memory,
3086 * we'll just stay with what we've got.
3087 */
3088 if (PIDLIST_REALLOC_DIFFERENCE(length, dest)) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07003089 newlist = pidlist_resize(list, dest);
Ben Blum102a7752009-09-23 15:56:26 -07003090 if (newlist)
3091 *p = newlist;
3092 }
3093 return dest;
3094}
3095
3096static int cmppid(const void *a, const void *b)
3097{
3098 return *(pid_t *)a - *(pid_t *)b;
3099}
3100
3101/*
Ben Blum72a8cb32009-09-23 15:56:27 -07003102 * find the appropriate pidlist for our purpose (given procs vs tasks)
3103 * returns with the lock on that pidlist already held, and takes care
3104 * of the use count, or returns NULL with no locks held if we're out of
3105 * memory.
3106 */
3107static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
3108 enum cgroup_filetype type)
3109{
3110 struct cgroup_pidlist *l;
3111 /* don't need task_nsproxy() if we're looking at ourself */
Li Zefanb70cc5f2010-03-10 15:22:12 -08003112 struct pid_namespace *ns = current->nsproxy->pid_ns;
3113
Ben Blum72a8cb32009-09-23 15:56:27 -07003114 /*
3115 * We can't drop the pidlist_mutex before taking the l->mutex in case
3116 * the last ref-holder is trying to remove l from the list at the same
3117 * time. Holding the pidlist_mutex precludes somebody taking whichever
3118 * list we find out from under us - compare release_pid_array().
3119 */
3120 mutex_lock(&cgrp->pidlist_mutex);
3121 list_for_each_entry(l, &cgrp->pidlists, links) {
3122 if (l->key.type == type && l->key.ns == ns) {
Ben Blum72a8cb32009-09-23 15:56:27 -07003123 /* make sure l doesn't vanish out from under us */
3124 down_write(&l->mutex);
3125 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003126 return l;
3127 }
3128 }
3129 /* entry not found; create a new one */
3130 l = kmalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
3131 if (!l) {
3132 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003133 return l;
3134 }
3135 init_rwsem(&l->mutex);
3136 down_write(&l->mutex);
3137 l->key.type = type;
Li Zefanb70cc5f2010-03-10 15:22:12 -08003138 l->key.ns = get_pid_ns(ns);
Ben Blum72a8cb32009-09-23 15:56:27 -07003139 l->use_count = 0; /* don't increment here */
3140 l->list = NULL;
3141 l->owner = cgrp;
3142 list_add(&l->links, &cgrp->pidlists);
3143 mutex_unlock(&cgrp->pidlist_mutex);
3144 return l;
3145}
3146
3147/*
Ben Blum102a7752009-09-23 15:56:26 -07003148 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
3149 */
Ben Blum72a8cb32009-09-23 15:56:27 -07003150static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
3151 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07003152{
3153 pid_t *array;
3154 int length;
3155 int pid, n = 0; /* used for populating the array */
Paul Menage817929e2007-10-18 23:39:36 -07003156 struct cgroup_iter it;
3157 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07003158 struct cgroup_pidlist *l;
3159
3160 /*
3161 * If cgroup gets more users after we read count, we won't have
3162 * enough space - tough. This race is indistinguishable to the
3163 * caller from the case that the additional cgroup users didn't
3164 * show up until sometime later on.
3165 */
3166 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003167 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07003168 if (!array)
3169 return -ENOMEM;
3170 /* now, populate the array */
Paul Menagebd89aab2007-10-18 23:40:44 -07003171 cgroup_iter_start(cgrp, &it);
3172 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Ben Blum102a7752009-09-23 15:56:26 -07003173 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07003174 break;
Ben Blum102a7752009-09-23 15:56:26 -07003175 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07003176 if (type == CGROUP_FILE_PROCS)
3177 pid = task_tgid_vnr(tsk);
3178 else
3179 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07003180 if (pid > 0) /* make sure to only use valid results */
3181 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07003182 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003183 cgroup_iter_end(cgrp, &it);
Ben Blum102a7752009-09-23 15:56:26 -07003184 length = n;
3185 /* now sort & (if procs) strip out duplicates */
3186 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07003187 if (type == CGROUP_FILE_PROCS)
Ben Blum102a7752009-09-23 15:56:26 -07003188 length = pidlist_uniq(&array, length);
Ben Blum72a8cb32009-09-23 15:56:27 -07003189 l = cgroup_pidlist_find(cgrp, type);
3190 if (!l) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07003191 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07003192 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07003193 }
Ben Blum72a8cb32009-09-23 15:56:27 -07003194 /* store array, freeing old if necessary - lock already held */
Ben Blumd1d9fd32009-09-23 15:56:28 -07003195 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07003196 l->list = array;
3197 l->length = length;
3198 l->use_count++;
3199 up_write(&l->mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003200 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07003201 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003202}
3203
Balbir Singh846c7bb2007-10-18 23:39:44 -07003204/**
Li Zefana043e3b2008-02-23 15:24:09 -08003205 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07003206 * @stats: cgroupstats to fill information into
3207 * @dentry: A dentry entry belonging to the cgroup for which stats have
3208 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08003209 *
3210 * Build and fill cgroupstats so that taskstats can export it to user
3211 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003212 */
3213int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
3214{
3215 int ret = -EINVAL;
Paul Menagebd89aab2007-10-18 23:40:44 -07003216 struct cgroup *cgrp;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003217 struct cgroup_iter it;
3218 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08003219
Balbir Singh846c7bb2007-10-18 23:39:44 -07003220 /*
Li Zefan33d283b2008-11-19 15:36:48 -08003221 * Validate dentry by checking the superblock operations,
3222 * and make sure it's a directory.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003223 */
Li Zefan33d283b2008-11-19 15:36:48 -08003224 if (dentry->d_sb->s_op != &cgroup_ops ||
3225 !S_ISDIR(dentry->d_inode->i_mode))
Balbir Singh846c7bb2007-10-18 23:39:44 -07003226 goto err;
3227
3228 ret = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07003229 cgrp = dentry->d_fsdata;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003230
Paul Menagebd89aab2007-10-18 23:40:44 -07003231 cgroup_iter_start(cgrp, &it);
3232 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07003233 switch (tsk->state) {
3234 case TASK_RUNNING:
3235 stats->nr_running++;
3236 break;
3237 case TASK_INTERRUPTIBLE:
3238 stats->nr_sleeping++;
3239 break;
3240 case TASK_UNINTERRUPTIBLE:
3241 stats->nr_uninterruptible++;
3242 break;
3243 case TASK_STOPPED:
3244 stats->nr_stopped++;
3245 break;
3246 default:
3247 if (delayacct_is_task_waiting_on_io(tsk))
3248 stats->nr_io_wait++;
3249 break;
3250 }
3251 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003252 cgroup_iter_end(cgrp, &it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07003253
Balbir Singh846c7bb2007-10-18 23:39:44 -07003254err:
3255 return ret;
3256}
3257
Paul Menage8f3ff202009-09-23 15:56:25 -07003258
Paul Menagecc31edc2008-10-18 20:28:04 -07003259/*
Ben Blum102a7752009-09-23 15:56:26 -07003260 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07003261 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07003262 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07003263 */
3264
Ben Blum102a7752009-09-23 15:56:26 -07003265static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003266{
3267 /*
3268 * Initially we receive a position value that corresponds to
3269 * one more than the last pid shown (or 0 on the first call or
3270 * after a seek to the start). Use a binary-search to find the
3271 * next pid to display, if any
3272 */
Ben Blum102a7752009-09-23 15:56:26 -07003273 struct cgroup_pidlist *l = s->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07003274 int index = 0, pid = *pos;
3275 int *iter;
3276
Ben Blum102a7752009-09-23 15:56:26 -07003277 down_read(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003278 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07003279 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11003280
Paul Menagecc31edc2008-10-18 20:28:04 -07003281 while (index < end) {
3282 int mid = (index + end) / 2;
Ben Blum102a7752009-09-23 15:56:26 -07003283 if (l->list[mid] == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07003284 index = mid;
3285 break;
Ben Blum102a7752009-09-23 15:56:26 -07003286 } else if (l->list[mid] <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07003287 index = mid + 1;
3288 else
3289 end = mid;
3290 }
3291 }
3292 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07003293 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07003294 return NULL;
3295 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07003296 iter = l->list + index;
Paul Menagecc31edc2008-10-18 20:28:04 -07003297 *pos = *iter;
3298 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003299}
3300
Ben Blum102a7752009-09-23 15:56:26 -07003301static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003302{
Ben Blum102a7752009-09-23 15:56:26 -07003303 struct cgroup_pidlist *l = s->private;
3304 up_read(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003305}
3306
Ben Blum102a7752009-09-23 15:56:26 -07003307static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003308{
Ben Blum102a7752009-09-23 15:56:26 -07003309 struct cgroup_pidlist *l = s->private;
3310 pid_t *p = v;
3311 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07003312 /*
3313 * Advance to the next pid in the array. If this goes off the
3314 * end, we're done
3315 */
3316 p++;
3317 if (p >= end) {
3318 return NULL;
3319 } else {
3320 *pos = *p;
3321 return p;
3322 }
3323}
3324
Ben Blum102a7752009-09-23 15:56:26 -07003325static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003326{
3327 return seq_printf(s, "%d\n", *(int *)v);
3328}
3329
Ben Blum102a7752009-09-23 15:56:26 -07003330/*
3331 * seq_operations functions for iterating on pidlists through seq_file -
3332 * independent of whether it's tasks or procs
3333 */
3334static const struct seq_operations cgroup_pidlist_seq_operations = {
3335 .start = cgroup_pidlist_start,
3336 .stop = cgroup_pidlist_stop,
3337 .next = cgroup_pidlist_next,
3338 .show = cgroup_pidlist_show,
Paul Menagecc31edc2008-10-18 20:28:04 -07003339};
3340
Ben Blum102a7752009-09-23 15:56:26 -07003341static void cgroup_release_pid_array(struct cgroup_pidlist *l)
Paul Menagecc31edc2008-10-18 20:28:04 -07003342{
Ben Blum72a8cb32009-09-23 15:56:27 -07003343 /*
3344 * the case where we're the last user of this particular pidlist will
3345 * have us remove it from the cgroup's list, which entails taking the
3346 * mutex. since in pidlist_find the pidlist->lock depends on cgroup->
3347 * pidlist_mutex, we have to take pidlist_mutex first.
3348 */
3349 mutex_lock(&l->owner->pidlist_mutex);
Ben Blum102a7752009-09-23 15:56:26 -07003350 down_write(&l->mutex);
3351 BUG_ON(!l->use_count);
3352 if (!--l->use_count) {
Ben Blum72a8cb32009-09-23 15:56:27 -07003353 /* we're the last user if refcount is 0; remove and free */
3354 list_del(&l->links);
3355 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003356 pidlist_free(l->list);
Ben Blum72a8cb32009-09-23 15:56:27 -07003357 put_pid_ns(l->key.ns);
3358 up_write(&l->mutex);
3359 kfree(l);
3360 return;
Paul Menagecc31edc2008-10-18 20:28:04 -07003361 }
Ben Blum72a8cb32009-09-23 15:56:27 -07003362 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blum102a7752009-09-23 15:56:26 -07003363 up_write(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003364}
3365
Ben Blum102a7752009-09-23 15:56:26 -07003366static int cgroup_pidlist_release(struct inode *inode, struct file *file)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003367{
Ben Blum102a7752009-09-23 15:56:26 -07003368 struct cgroup_pidlist *l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003369 if (!(file->f_mode & FMODE_READ))
3370 return 0;
Ben Blum102a7752009-09-23 15:56:26 -07003371 /*
3372 * the seq_file will only be initialized if the file was opened for
3373 * reading; hence we check if it's not null only in that case.
3374 */
3375 l = ((struct seq_file *)file->private_data)->private;
3376 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07003377 return seq_release(inode, file);
3378}
3379
Ben Blum102a7752009-09-23 15:56:26 -07003380static const struct file_operations cgroup_pidlist_operations = {
Paul Menagecc31edc2008-10-18 20:28:04 -07003381 .read = seq_read,
3382 .llseek = seq_lseek,
3383 .write = cgroup_file_write,
Ben Blum102a7752009-09-23 15:56:26 -07003384 .release = cgroup_pidlist_release,
Paul Menagecc31edc2008-10-18 20:28:04 -07003385};
3386
3387/*
Ben Blum102a7752009-09-23 15:56:26 -07003388 * The following functions handle opens on a file that displays a pidlist
3389 * (tasks or procs). Prepare an array of the process/thread IDs of whoever's
3390 * in the cgroup.
Paul Menagecc31edc2008-10-18 20:28:04 -07003391 */
Ben Blum102a7752009-09-23 15:56:26 -07003392/* helper function for the two below it */
Ben Blum72a8cb32009-09-23 15:56:27 -07003393static int cgroup_pidlist_open(struct file *file, enum cgroup_filetype type)
Paul Menagecc31edc2008-10-18 20:28:04 -07003394{
3395 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Ben Blum72a8cb32009-09-23 15:56:27 -07003396 struct cgroup_pidlist *l;
Paul Menagecc31edc2008-10-18 20:28:04 -07003397 int retval;
3398
3399 /* Nothing to do for write-only files */
3400 if (!(file->f_mode & FMODE_READ))
3401 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003402
Ben Blum102a7752009-09-23 15:56:26 -07003403 /* have the array populated */
Ben Blum72a8cb32009-09-23 15:56:27 -07003404 retval = pidlist_array_load(cgrp, type, &l);
Ben Blum102a7752009-09-23 15:56:26 -07003405 if (retval)
3406 return retval;
3407 /* configure file information */
3408 file->f_op = &cgroup_pidlist_operations;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003409
Ben Blum102a7752009-09-23 15:56:26 -07003410 retval = seq_open(file, &cgroup_pidlist_seq_operations);
Paul Menagecc31edc2008-10-18 20:28:04 -07003411 if (retval) {
Ben Blum102a7752009-09-23 15:56:26 -07003412 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07003413 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003414 }
Ben Blum102a7752009-09-23 15:56:26 -07003415 ((struct seq_file *)file->private_data)->private = l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003416 return 0;
3417}
Ben Blum102a7752009-09-23 15:56:26 -07003418static int cgroup_tasks_open(struct inode *unused, struct file *file)
3419{
Ben Blum72a8cb32009-09-23 15:56:27 -07003420 return cgroup_pidlist_open(file, CGROUP_FILE_TASKS);
Ben Blum102a7752009-09-23 15:56:26 -07003421}
3422static int cgroup_procs_open(struct inode *unused, struct file *file)
3423{
Ben Blum72a8cb32009-09-23 15:56:27 -07003424 return cgroup_pidlist_open(file, CGROUP_FILE_PROCS);
Ben Blum102a7752009-09-23 15:56:26 -07003425}
Paul Menagebbcb81d2007-10-18 23:39:32 -07003426
Paul Menagebd89aab2007-10-18 23:40:44 -07003427static u64 cgroup_read_notify_on_release(struct cgroup *cgrp,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003428 struct cftype *cft)
3429{
Paul Menagebd89aab2007-10-18 23:40:44 -07003430 return notify_on_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003431}
3432
Paul Menage6379c102008-07-25 01:47:01 -07003433static int cgroup_write_notify_on_release(struct cgroup *cgrp,
3434 struct cftype *cft,
3435 u64 val)
3436{
3437 clear_bit(CGRP_RELEASABLE, &cgrp->flags);
3438 if (val)
3439 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3440 else
3441 clear_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3442 return 0;
3443}
3444
Paul Menagebbcb81d2007-10-18 23:39:32 -07003445/*
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003446 * Unregister event and free resources.
3447 *
3448 * Gets called from workqueue.
3449 */
3450static void cgroup_event_remove(struct work_struct *work)
3451{
3452 struct cgroup_event *event = container_of(work, struct cgroup_event,
3453 remove);
3454 struct cgroup *cgrp = event->cgrp;
3455
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003456 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3457
3458 eventfd_ctx_put(event->eventfd);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003459 kfree(event);
Kirill A. Shutemova0a4db52010-03-10 15:22:34 -08003460 dput(cgrp->dentry);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003461}
3462
3463/*
3464 * Gets called on POLLHUP on eventfd when user closes it.
3465 *
3466 * Called with wqh->lock held and interrupts disabled.
3467 */
3468static int cgroup_event_wake(wait_queue_t *wait, unsigned mode,
3469 int sync, void *key)
3470{
3471 struct cgroup_event *event = container_of(wait,
3472 struct cgroup_event, wait);
3473 struct cgroup *cgrp = event->cgrp;
3474 unsigned long flags = (unsigned long)key;
3475
3476 if (flags & POLLHUP) {
Changli Gaoa93d2f12010-05-07 14:33:26 +08003477 __remove_wait_queue(event->wqh, &event->wait);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003478 spin_lock(&cgrp->event_list_lock);
3479 list_del(&event->list);
3480 spin_unlock(&cgrp->event_list_lock);
3481 /*
3482 * We are in atomic context, but cgroup_event_remove() may
3483 * sleep, so we have to call it in workqueue.
3484 */
3485 schedule_work(&event->remove);
3486 }
3487
3488 return 0;
3489}
3490
3491static void cgroup_event_ptable_queue_proc(struct file *file,
3492 wait_queue_head_t *wqh, poll_table *pt)
3493{
3494 struct cgroup_event *event = container_of(pt,
3495 struct cgroup_event, pt);
3496
3497 event->wqh = wqh;
3498 add_wait_queue(wqh, &event->wait);
3499}
3500
3501/*
3502 * Parse input and register new cgroup event handler.
3503 *
3504 * Input must be in format '<event_fd> <control_fd> <args>'.
3505 * Interpretation of args is defined by control file implementation.
3506 */
3507static int cgroup_write_event_control(struct cgroup *cgrp, struct cftype *cft,
3508 const char *buffer)
3509{
3510 struct cgroup_event *event = NULL;
3511 unsigned int efd, cfd;
3512 struct file *efile = NULL;
3513 struct file *cfile = NULL;
3514 char *endp;
3515 int ret;
3516
3517 efd = simple_strtoul(buffer, &endp, 10);
3518 if (*endp != ' ')
3519 return -EINVAL;
3520 buffer = endp + 1;
3521
3522 cfd = simple_strtoul(buffer, &endp, 10);
3523 if ((*endp != ' ') && (*endp != '\0'))
3524 return -EINVAL;
3525 buffer = endp + 1;
3526
3527 event = kzalloc(sizeof(*event), GFP_KERNEL);
3528 if (!event)
3529 return -ENOMEM;
3530 event->cgrp = cgrp;
3531 INIT_LIST_HEAD(&event->list);
3532 init_poll_funcptr(&event->pt, cgroup_event_ptable_queue_proc);
3533 init_waitqueue_func_entry(&event->wait, cgroup_event_wake);
3534 INIT_WORK(&event->remove, cgroup_event_remove);
3535
3536 efile = eventfd_fget(efd);
3537 if (IS_ERR(efile)) {
3538 ret = PTR_ERR(efile);
3539 goto fail;
3540 }
3541
3542 event->eventfd = eventfd_ctx_fileget(efile);
3543 if (IS_ERR(event->eventfd)) {
3544 ret = PTR_ERR(event->eventfd);
3545 goto fail;
3546 }
3547
3548 cfile = fget(cfd);
3549 if (!cfile) {
3550 ret = -EBADF;
3551 goto fail;
3552 }
3553
3554 /* the process need read permission on control file */
Al Viro3bfa7842011-06-19 12:55:10 -04003555 /* AV: shouldn't we check that it's been opened for read instead? */
3556 ret = inode_permission(cfile->f_path.dentry->d_inode, MAY_READ);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003557 if (ret < 0)
3558 goto fail;
3559
3560 event->cft = __file_cft(cfile);
3561 if (IS_ERR(event->cft)) {
3562 ret = PTR_ERR(event->cft);
3563 goto fail;
3564 }
3565
3566 if (!event->cft->register_event || !event->cft->unregister_event) {
3567 ret = -EINVAL;
3568 goto fail;
3569 }
3570
3571 ret = event->cft->register_event(cgrp, event->cft,
3572 event->eventfd, buffer);
3573 if (ret)
3574 goto fail;
3575
3576 if (efile->f_op->poll(efile, &event->pt) & POLLHUP) {
3577 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3578 ret = 0;
3579 goto fail;
3580 }
3581
Kirill A. Shutemova0a4db52010-03-10 15:22:34 -08003582 /*
3583 * Events should be removed after rmdir of cgroup directory, but before
3584 * destroying subsystem state objects. Let's take reference to cgroup
3585 * directory dentry to do that.
3586 */
3587 dget(cgrp->dentry);
3588
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003589 spin_lock(&cgrp->event_list_lock);
3590 list_add(&event->list, &cgrp->event_list);
3591 spin_unlock(&cgrp->event_list_lock);
3592
3593 fput(cfile);
3594 fput(efile);
3595
3596 return 0;
3597
3598fail:
3599 if (cfile)
3600 fput(cfile);
3601
3602 if (event && event->eventfd && !IS_ERR(event->eventfd))
3603 eventfd_ctx_put(event->eventfd);
3604
3605 if (!IS_ERR_OR_NULL(efile))
3606 fput(efile);
3607
3608 kfree(event);
3609
3610 return ret;
3611}
3612
Daniel Lezcano97978e62010-10-27 15:33:35 -07003613static u64 cgroup_clone_children_read(struct cgroup *cgrp,
3614 struct cftype *cft)
3615{
3616 return clone_children(cgrp);
3617}
3618
3619static int cgroup_clone_children_write(struct cgroup *cgrp,
3620 struct cftype *cft,
3621 u64 val)
3622{
3623 if (val)
3624 set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3625 else
3626 clear_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3627 return 0;
3628}
3629
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003630/*
Paul Menagebbcb81d2007-10-18 23:39:32 -07003631 * for the common functions, 'private' gives the type of file
3632 */
Ben Blum102a7752009-09-23 15:56:26 -07003633/* for hysterical raisins, we can't put this on the older files */
3634#define CGROUP_FILE_GENERIC_PREFIX "cgroup."
Paul Menage81a6a5c2007-10-18 23:39:38 -07003635static struct cftype files[] = {
3636 {
3637 .name = "tasks",
3638 .open = cgroup_tasks_open,
Paul Menageaf351022008-07-25 01:47:01 -07003639 .write_u64 = cgroup_tasks_write,
Ben Blum102a7752009-09-23 15:56:26 -07003640 .release = cgroup_pidlist_release,
Li Zefan099fca32009-04-02 16:57:29 -07003641 .mode = S_IRUGO | S_IWUSR,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003642 },
Ben Blum102a7752009-09-23 15:56:26 -07003643 {
3644 .name = CGROUP_FILE_GENERIC_PREFIX "procs",
3645 .open = cgroup_procs_open,
Ben Blum74a11662011-05-26 16:25:20 -07003646 .write_u64 = cgroup_procs_write,
Ben Blum102a7752009-09-23 15:56:26 -07003647 .release = cgroup_pidlist_release,
Ben Blum74a11662011-05-26 16:25:20 -07003648 .mode = S_IRUGO | S_IWUSR,
Ben Blum102a7752009-09-23 15:56:26 -07003649 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003650 {
3651 .name = "notify_on_release",
Paul Menagef4c753b2008-04-29 00:59:56 -07003652 .read_u64 = cgroup_read_notify_on_release,
Paul Menage6379c102008-07-25 01:47:01 -07003653 .write_u64 = cgroup_write_notify_on_release,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003654 },
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003655 {
3656 .name = CGROUP_FILE_GENERIC_PREFIX "event_control",
3657 .write_string = cgroup_write_event_control,
3658 .mode = S_IWUGO,
3659 },
Daniel Lezcano97978e62010-10-27 15:33:35 -07003660 {
3661 .name = "cgroup.clone_children",
3662 .read_u64 = cgroup_clone_children_read,
3663 .write_u64 = cgroup_clone_children_write,
3664 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003665};
3666
3667static struct cftype cft_release_agent = {
3668 .name = "release_agent",
Paul Menagee788e062008-07-25 01:46:59 -07003669 .read_seq_string = cgroup_release_agent_show,
3670 .write_string = cgroup_release_agent_write,
3671 .max_write_len = PATH_MAX,
Paul Menagebbcb81d2007-10-18 23:39:32 -07003672};
3673
Paul Menagebd89aab2007-10-18 23:40:44 -07003674static int cgroup_populate_dir(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003675{
3676 int err;
3677 struct cgroup_subsys *ss;
3678
3679 /* First clear out any existing files */
Paul Menagebd89aab2007-10-18 23:40:44 -07003680 cgroup_clear_directory(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003681
Paul Menagebd89aab2007-10-18 23:40:44 -07003682 err = cgroup_add_files(cgrp, NULL, files, ARRAY_SIZE(files));
Paul Menagebbcb81d2007-10-18 23:39:32 -07003683 if (err < 0)
3684 return err;
3685
Paul Menagebd89aab2007-10-18 23:40:44 -07003686 if (cgrp == cgrp->top_cgroup) {
3687 if ((err = cgroup_add_file(cgrp, NULL, &cft_release_agent)) < 0)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003688 return err;
3689 }
3690
Paul Menagebd89aab2007-10-18 23:40:44 -07003691 for_each_subsys(cgrp->root, ss) {
3692 if (ss->populate && (err = ss->populate(ss, cgrp)) < 0)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003693 return err;
3694 }
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003695 /* This cgroup is ready now */
3696 for_each_subsys(cgrp->root, ss) {
3697 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3698 /*
3699 * Update id->css pointer and make this css visible from
3700 * CSS ID functions. This pointer will be dereferened
3701 * from RCU-read-side without locks.
3702 */
3703 if (css->id)
3704 rcu_assign_pointer(css->id->css, css);
3705 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003706
3707 return 0;
3708}
3709
3710static void init_cgroup_css(struct cgroup_subsys_state *css,
3711 struct cgroup_subsys *ss,
Paul Menagebd89aab2007-10-18 23:40:44 -07003712 struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003713{
Paul Menagebd89aab2007-10-18 23:40:44 -07003714 css->cgroup = cgrp;
Paul Menagee7c5ec92009-01-07 18:08:38 -08003715 atomic_set(&css->refcnt, 1);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003716 css->flags = 0;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003717 css->id = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07003718 if (cgrp == dummytop)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003719 set_bit(CSS_ROOT, &css->flags);
Paul Menagebd89aab2007-10-18 23:40:44 -07003720 BUG_ON(cgrp->subsys[ss->subsys_id]);
3721 cgrp->subsys[ss->subsys_id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003722}
3723
Paul Menage999cd8a2009-01-07 18:08:36 -08003724static void cgroup_lock_hierarchy(struct cgroupfs_root *root)
3725{
3726 /* We need to take each hierarchy_mutex in a consistent order */
3727 int i;
3728
Ben Blumaae8aab2010-03-10 15:22:07 -08003729 /*
3730 * No worry about a race with rebind_subsystems that might mess up the
3731 * locking order, since both parties are under cgroup_mutex.
3732 */
Paul Menage999cd8a2009-01-07 18:08:36 -08003733 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3734 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08003735 if (ss == NULL)
3736 continue;
Paul Menage999cd8a2009-01-07 18:08:36 -08003737 if (ss->root == root)
Li Zefancfebe562009-02-11 13:04:36 -08003738 mutex_lock(&ss->hierarchy_mutex);
Paul Menage999cd8a2009-01-07 18:08:36 -08003739 }
3740}
3741
3742static void cgroup_unlock_hierarchy(struct cgroupfs_root *root)
3743{
3744 int i;
3745
3746 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3747 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08003748 if (ss == NULL)
3749 continue;
Paul Menage999cd8a2009-01-07 18:08:36 -08003750 if (ss->root == root)
3751 mutex_unlock(&ss->hierarchy_mutex);
3752 }
3753}
3754
Paul Menageddbcc7e2007-10-18 23:39:30 -07003755/*
Li Zefana043e3b2008-02-23 15:24:09 -08003756 * cgroup_create - create a cgroup
3757 * @parent: cgroup that will be parent of the new cgroup
3758 * @dentry: dentry of the new cgroup
3759 * @mode: mode to set on new inode
Paul Menageddbcc7e2007-10-18 23:39:30 -07003760 *
Li Zefana043e3b2008-02-23 15:24:09 -08003761 * Must be called with the mutex on the parent inode held
Paul Menageddbcc7e2007-10-18 23:39:30 -07003762 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07003763static long cgroup_create(struct cgroup *parent, struct dentry *dentry,
Al Viroa5e7ed32011-07-26 01:55:55 -04003764 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003765{
Paul Menagebd89aab2007-10-18 23:40:44 -07003766 struct cgroup *cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003767 struct cgroupfs_root *root = parent->root;
3768 int err = 0;
3769 struct cgroup_subsys *ss;
3770 struct super_block *sb = root->sb;
3771
Paul Menagebd89aab2007-10-18 23:40:44 -07003772 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
3773 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003774 return -ENOMEM;
3775
3776 /* Grab a reference on the superblock so the hierarchy doesn't
3777 * get deleted on unmount if there are child cgroups. This
3778 * can be done outside cgroup_mutex, since the sb can't
3779 * disappear while someone has an open control file on the
3780 * fs */
3781 atomic_inc(&sb->s_active);
3782
3783 mutex_lock(&cgroup_mutex);
3784
Paul Menagecc31edc2008-10-18 20:28:04 -07003785 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003786
Paul Menagebd89aab2007-10-18 23:40:44 -07003787 cgrp->parent = parent;
3788 cgrp->root = parent->root;
3789 cgrp->top_cgroup = parent->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003790
Li Zefanb6abdb02008-03-04 14:28:19 -08003791 if (notify_on_release(parent))
3792 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3793
Daniel Lezcano97978e62010-10-27 15:33:35 -07003794 if (clone_children(parent))
3795 set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3796
Paul Menageddbcc7e2007-10-18 23:39:30 -07003797 for_each_subsys(root, ss) {
Li Zefan761b3ef2012-01-31 13:47:36 +08003798 struct cgroup_subsys_state *css = ss->create(cgrp);
Li Zefan4528fd02010-02-02 13:44:10 -08003799
Paul Menageddbcc7e2007-10-18 23:39:30 -07003800 if (IS_ERR(css)) {
3801 err = PTR_ERR(css);
3802 goto err_destroy;
3803 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003804 init_cgroup_css(css, ss, cgrp);
Li Zefan4528fd02010-02-02 13:44:10 -08003805 if (ss->use_id) {
3806 err = alloc_css_id(ss, parent, cgrp);
3807 if (err)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003808 goto err_destroy;
Li Zefan4528fd02010-02-02 13:44:10 -08003809 }
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003810 /* At error, ->destroy() callback has to free assigned ID. */
Daniel Lezcano97978e62010-10-27 15:33:35 -07003811 if (clone_children(parent) && ss->post_clone)
Li Zefan761b3ef2012-01-31 13:47:36 +08003812 ss->post_clone(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003813 }
3814
Paul Menage999cd8a2009-01-07 18:08:36 -08003815 cgroup_lock_hierarchy(root);
Paul Menagebd89aab2007-10-18 23:40:44 -07003816 list_add(&cgrp->sibling, &cgrp->parent->children);
Paul Menage999cd8a2009-01-07 18:08:36 -08003817 cgroup_unlock_hierarchy(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003818 root->number_of_cgroups++;
3819
Paul Menagebd89aab2007-10-18 23:40:44 -07003820 err = cgroup_create_dir(cgrp, dentry, mode);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003821 if (err < 0)
3822 goto err_remove;
3823
Colin Crossc0f6fa82010-11-23 21:37:03 -08003824 set_bit(CGRP_RELEASABLE, &parent->flags);
3825
Paul Menageddbcc7e2007-10-18 23:39:30 -07003826 /* The cgroup directory was pre-locked for us */
Paul Menagebd89aab2007-10-18 23:40:44 -07003827 BUG_ON(!mutex_is_locked(&cgrp->dentry->d_inode->i_mutex));
Paul Menageddbcc7e2007-10-18 23:39:30 -07003828
Paul Menagebd89aab2007-10-18 23:40:44 -07003829 err = cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003830 /* If err < 0, we have a half-filled directory - oh well ;) */
3831
3832 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07003833 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003834
3835 return 0;
3836
3837 err_remove:
3838
KAMEZAWA Hiroyukibaef99a2009-01-29 14:25:10 -08003839 cgroup_lock_hierarchy(root);
Paul Menagebd89aab2007-10-18 23:40:44 -07003840 list_del(&cgrp->sibling);
KAMEZAWA Hiroyukibaef99a2009-01-29 14:25:10 -08003841 cgroup_unlock_hierarchy(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003842 root->number_of_cgroups--;
3843
3844 err_destroy:
3845
3846 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07003847 if (cgrp->subsys[ss->subsys_id])
Li Zefan761b3ef2012-01-31 13:47:36 +08003848 ss->destroy(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003849 }
3850
3851 mutex_unlock(&cgroup_mutex);
3852
3853 /* Release the reference count that we took on the superblock */
3854 deactivate_super(sb);
3855
Paul Menagebd89aab2007-10-18 23:40:44 -07003856 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003857 return err;
3858}
3859
Al Viro18bb1db2011-07-26 01:41:39 -04003860static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003861{
3862 struct cgroup *c_parent = dentry->d_parent->d_fsdata;
3863
3864 /* the vfs holds inode->i_mutex already */
3865 return cgroup_create(c_parent, dentry, mode | S_IFDIR);
3866}
3867
Li Zefan55b6fd02008-07-29 22:33:20 -07003868static int cgroup_has_css_refs(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003869{
3870 /* Check the reference count on each subsystem. Since we
3871 * already established that there are no tasks in the
Paul Menagee7c5ec92009-01-07 18:08:38 -08003872 * cgroup, if the css refcount is also 1, then there should
Paul Menage81a6a5c2007-10-18 23:39:38 -07003873 * be no outstanding references, so the subsystem is safe to
3874 * destroy. We scan across all subsystems rather than using
3875 * the per-hierarchy linked list of mounted subsystems since
3876 * we can be called via check_for_release() with no
3877 * synchronization other than RCU, and the subsystem linked
3878 * list isn't RCU-safe */
3879 int i;
Ben Blumaae8aab2010-03-10 15:22:07 -08003880 /*
3881 * We won't need to lock the subsys array, because the subsystems
3882 * we're concerned about aren't going anywhere since our cgroup root
3883 * has a reference on them.
3884 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07003885 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3886 struct cgroup_subsys *ss = subsys[i];
3887 struct cgroup_subsys_state *css;
Ben Blumaae8aab2010-03-10 15:22:07 -08003888 /* Skip subsystems not present or not in this hierarchy */
3889 if (ss == NULL || ss->root != cgrp->root)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003890 continue;
Paul Menagebd89aab2007-10-18 23:40:44 -07003891 css = cgrp->subsys[ss->subsys_id];
Paul Menage81a6a5c2007-10-18 23:39:38 -07003892 /* When called from check_for_release() it's possible
3893 * that by this point the cgroup has been removed
3894 * and the css deleted. But a false-positive doesn't
3895 * matter, since it can only happen if the cgroup
3896 * has been deleted and hence no longer needs the
3897 * release agent to be called anyway. */
Paul Menagee7c5ec92009-01-07 18:08:38 -08003898 if (css && (atomic_read(&css->refcnt) > 1))
Paul Menage81a6a5c2007-10-18 23:39:38 -07003899 return 1;
Paul Menage81a6a5c2007-10-18 23:39:38 -07003900 }
3901 return 0;
3902}
3903
Paul Menagee7c5ec92009-01-07 18:08:38 -08003904/*
3905 * Atomically mark all (or else none) of the cgroup's CSS objects as
3906 * CSS_REMOVED. Return true on success, or false if the cgroup has
3907 * busy subsystems. Call with cgroup_mutex held
3908 */
3909
3910static int cgroup_clear_css_refs(struct cgroup *cgrp)
3911{
3912 struct cgroup_subsys *ss;
3913 unsigned long flags;
3914 bool failed = false;
3915 local_irq_save(flags);
3916 for_each_subsys(cgrp->root, ss) {
3917 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3918 int refcnt;
Paul Menage804b3c22009-01-29 14:25:21 -08003919 while (1) {
Paul Menagee7c5ec92009-01-07 18:08:38 -08003920 /* We can only remove a CSS with a refcnt==1 */
3921 refcnt = atomic_read(&css->refcnt);
3922 if (refcnt > 1) {
3923 failed = true;
3924 goto done;
3925 }
3926 BUG_ON(!refcnt);
3927 /*
3928 * Drop the refcnt to 0 while we check other
3929 * subsystems. This will cause any racing
3930 * css_tryget() to spin until we set the
3931 * CSS_REMOVED bits or abort
3932 */
Paul Menage804b3c22009-01-29 14:25:21 -08003933 if (atomic_cmpxchg(&css->refcnt, refcnt, 0) == refcnt)
3934 break;
3935 cpu_relax();
3936 }
Paul Menagee7c5ec92009-01-07 18:08:38 -08003937 }
3938 done:
3939 for_each_subsys(cgrp->root, ss) {
3940 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3941 if (failed) {
3942 /*
3943 * Restore old refcnt if we previously managed
3944 * to clear it from 1 to 0
3945 */
3946 if (!atomic_read(&css->refcnt))
3947 atomic_set(&css->refcnt, 1);
3948 } else {
3949 /* Commit the fact that the CSS is removed */
3950 set_bit(CSS_REMOVED, &css->flags);
3951 }
3952 }
3953 local_irq_restore(flags);
3954 return !failed;
3955}
3956
Colin Crossbefae2f2010-11-23 21:37:04 -08003957/* checks if all of the css_sets attached to a cgroup have a refcount of 0.
3958 * Must be called with css_set_lock held */
3959static int cgroup_css_sets_empty(struct cgroup *cgrp)
3960{
3961 struct cg_cgroup_link *link;
3962
Swetha Chikkaboraiah600cbf82014-09-17 17:28:13 +05303963 read_lock(&css_set_lock);
Colin Crossbefae2f2010-11-23 21:37:04 -08003964 list_for_each_entry(link, &cgrp->css_sets, cgrp_link_list) {
3965 struct css_set *cg = link->cg;
Swetha Chikkaboraiah600cbf82014-09-17 17:28:13 +05303966 if (cg && (atomic_read(&cg->refcount) > 0)) {
3967 read_unlock(&css_set_lock);
Colin Crossbefae2f2010-11-23 21:37:04 -08003968 return 0;
Swetha Chikkaboraiah600cbf82014-09-17 17:28:13 +05303969 }
Colin Crossbefae2f2010-11-23 21:37:04 -08003970 }
3971
Swetha Chikkaboraiah600cbf82014-09-17 17:28:13 +05303972 read_unlock(&css_set_lock);
Colin Crossbefae2f2010-11-23 21:37:04 -08003973 return 1;
3974}
3975
Paul Menageddbcc7e2007-10-18 23:39:30 -07003976static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry)
3977{
Paul Menagebd89aab2007-10-18 23:40:44 -07003978 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003979 struct dentry *d;
3980 struct cgroup *parent;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003981 DEFINE_WAIT(wait);
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08003982 struct cgroup_event *event, *tmp;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003983 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003984
3985 /* the vfs holds both inode->i_mutex already */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003986again:
Paul Menageddbcc7e2007-10-18 23:39:30 -07003987 mutex_lock(&cgroup_mutex);
Colin Crossbefae2f2010-11-23 21:37:04 -08003988 if (!cgroup_css_sets_empty(cgrp)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07003989 mutex_unlock(&cgroup_mutex);
3990 return -EBUSY;
3991 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003992 if (!list_empty(&cgrp->children)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07003993 mutex_unlock(&cgroup_mutex);
3994 return -EBUSY;
3995 }
KAMEZAWA Hiroyuki3fa59df2008-11-19 15:36:34 -08003996 mutex_unlock(&cgroup_mutex);
Li Zefana043e3b2008-02-23 15:24:09 -08003997
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08003998 /*
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003999 * In general, subsystem has no css->refcnt after pre_destroy(). But
4000 * in racy cases, subsystem may have to get css->refcnt after
4001 * pre_destroy() and it makes rmdir return with -EBUSY. This sometimes
4002 * make rmdir return -EBUSY too often. To avoid that, we use waitqueue
4003 * for cgroup's rmdir. CGRP_WAIT_ON_RMDIR is for synchronizing rmdir
4004 * and subsystem's reference count handling. Please see css_get/put
4005 * and css_tryget() and cgroup_wakeup_rmdir_waiter() implementation.
4006 */
4007 set_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
4008
4009 /*
Li Zefana043e3b2008-02-23 15:24:09 -08004010 * Call pre_destroy handlers of subsys. Notify subsystems
4011 * that rmdir() request comes.
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08004012 */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004013 ret = cgroup_call_pre_destroy(cgrp);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004014 if (ret) {
4015 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004016 return ret;
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004017 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004018
KAMEZAWA Hiroyuki3fa59df2008-11-19 15:36:34 -08004019 mutex_lock(&cgroup_mutex);
4020 parent = cgrp->parent;
Colin Crossbefae2f2010-11-23 21:37:04 -08004021 if (!cgroup_css_sets_empty(cgrp) || !list_empty(&cgrp->children)) {
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004022 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004023 mutex_unlock(&cgroup_mutex);
4024 return -EBUSY;
4025 }
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004026 prepare_to_wait(&cgroup_rmdir_waitq, &wait, TASK_INTERRUPTIBLE);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004027 if (!cgroup_clear_css_refs(cgrp)) {
4028 mutex_unlock(&cgroup_mutex);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004029 /*
4030 * Because someone may call cgroup_wakeup_rmdir_waiter() before
4031 * prepare_to_wait(), we need to check this flag.
4032 */
4033 if (test_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags))
4034 schedule();
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004035 finish_wait(&cgroup_rmdir_waitq, &wait);
4036 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
4037 if (signal_pending(current))
4038 return -EINTR;
4039 goto again;
4040 }
4041 /* NO css_tryget() can success after here. */
4042 finish_wait(&cgroup_rmdir_waitq, &wait);
4043 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004044
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004045 raw_spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07004046 set_bit(CGRP_REMOVED, &cgrp->flags);
4047 if (!list_empty(&cgrp->release_list))
Phil Carmody8d258792011-03-22 16:30:13 -07004048 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004049 raw_spin_unlock(&release_list_lock);
Paul Menage999cd8a2009-01-07 18:08:36 -08004050
4051 cgroup_lock_hierarchy(cgrp->root);
4052 /* delete this cgroup from parent->children */
Phil Carmody8d258792011-03-22 16:30:13 -07004053 list_del_init(&cgrp->sibling);
Paul Menage999cd8a2009-01-07 18:08:36 -08004054 cgroup_unlock_hierarchy(cgrp->root);
4055
Paul Menagebd89aab2007-10-18 23:40:44 -07004056 d = dget(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004057
4058 cgroup_d_remove_dir(d);
4059 dput(d);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004060
Paul Menage81a6a5c2007-10-18 23:39:38 -07004061 check_for_release(parent);
4062
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08004063 /*
4064 * Unregister events and notify userspace.
4065 * Notify userspace about cgroup removing only after rmdir of cgroup
4066 * directory to avoid race between userspace and kernelspace
4067 */
4068 spin_lock(&cgrp->event_list_lock);
4069 list_for_each_entry_safe(event, tmp, &cgrp->event_list, list) {
4070 list_del(&event->list);
4071 remove_wait_queue(event->wqh, &event->wait);
4072 eventfd_signal(event->eventfd, 1);
4073 schedule_work(&event->remove);
4074 }
4075 spin_unlock(&cgrp->event_list_lock);
4076
Paul Menageddbcc7e2007-10-18 23:39:30 -07004077 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004078 return 0;
4079}
4080
Li Zefan06a11922008-04-29 01:00:07 -07004081static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004082{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004083 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08004084
4085 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004086
4087 /* Create the top cgroup state for this subsystem */
Li Zefan33a68ac2009-01-07 18:07:42 -08004088 list_add(&ss->sibling, &rootnode.subsys_list);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004089 ss->root = &rootnode;
Li Zefan761b3ef2012-01-31 13:47:36 +08004090 css = ss->create(dummytop);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004091 /* We don't handle early failures gracefully */
4092 BUG_ON(IS_ERR(css));
4093 init_cgroup_css(css, ss, dummytop);
4094
Li Zefane8d55fd2008-04-29 01:00:13 -07004095 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07004096 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07004097 * newly registered, all tasks and hence the
4098 * init_css_set is in the subsystem's top cgroup. */
4099 init_css_set.subsys[ss->subsys_id] = dummytop->subsys[ss->subsys_id];
Paul Menageddbcc7e2007-10-18 23:39:30 -07004100
4101 need_forkexit_callback |= ss->fork || ss->exit;
4102
Li Zefane8d55fd2008-04-29 01:00:13 -07004103 /* At system boot, before all subsystems have been
4104 * registered, no tasks have been forked, so we don't
4105 * need to invoke fork callbacks here. */
4106 BUG_ON(!list_empty(&init_task.tasks));
4107
Paul Menage999cd8a2009-01-07 18:08:36 -08004108 mutex_init(&ss->hierarchy_mutex);
Li Zefancfebe562009-02-11 13:04:36 -08004109 lockdep_set_class(&ss->hierarchy_mutex, &ss->subsys_key);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004110 ss->active = 1;
Ben Blume6a11052010-03-10 15:22:09 -08004111
4112 /* this function shouldn't be used with modular subsystems, since they
4113 * need to register a subsys_id, among other things */
4114 BUG_ON(ss->module);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004115}
4116
4117/**
Ben Blume6a11052010-03-10 15:22:09 -08004118 * cgroup_load_subsys: load and register a modular subsystem at runtime
4119 * @ss: the subsystem to load
4120 *
4121 * This function should be called in a modular subsystem's initcall. If the
Thomas Weber88393162010-03-16 11:47:56 +01004122 * subsystem is built as a module, it will be assigned a new subsys_id and set
Ben Blume6a11052010-03-10 15:22:09 -08004123 * up for use. If the subsystem is built-in anyway, work is delegated to the
4124 * simpler cgroup_init_subsys.
4125 */
4126int __init_or_module cgroup_load_subsys(struct cgroup_subsys *ss)
4127{
4128 int i;
4129 struct cgroup_subsys_state *css;
4130
4131 /* check name and function validity */
4132 if (ss->name == NULL || strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN ||
4133 ss->create == NULL || ss->destroy == NULL)
4134 return -EINVAL;
4135
4136 /*
4137 * we don't support callbacks in modular subsystems. this check is
4138 * before the ss->module check for consistency; a subsystem that could
4139 * be a module should still have no callbacks even if the user isn't
4140 * compiling it as one.
4141 */
4142 if (ss->fork || ss->exit)
4143 return -EINVAL;
4144
4145 /*
4146 * an optionally modular subsystem is built-in: we want to do nothing,
4147 * since cgroup_init_subsys will have already taken care of it.
4148 */
4149 if (ss->module == NULL) {
4150 /* a few sanity checks */
4151 BUG_ON(ss->subsys_id >= CGROUP_BUILTIN_SUBSYS_COUNT);
4152 BUG_ON(subsys[ss->subsys_id] != ss);
4153 return 0;
4154 }
4155
4156 /*
4157 * need to register a subsys id before anything else - for example,
4158 * init_cgroup_css needs it.
4159 */
4160 mutex_lock(&cgroup_mutex);
4161 /* find the first empty slot in the array */
4162 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
4163 if (subsys[i] == NULL)
4164 break;
4165 }
4166 if (i == CGROUP_SUBSYS_COUNT) {
4167 /* maximum number of subsystems already registered! */
4168 mutex_unlock(&cgroup_mutex);
4169 return -EBUSY;
4170 }
4171 /* assign ourselves the subsys_id */
4172 ss->subsys_id = i;
4173 subsys[i] = ss;
4174
4175 /*
4176 * no ss->create seems to need anything important in the ss struct, so
4177 * this can happen first (i.e. before the rootnode attachment).
4178 */
Li Zefan761b3ef2012-01-31 13:47:36 +08004179 css = ss->create(dummytop);
Ben Blume6a11052010-03-10 15:22:09 -08004180 if (IS_ERR(css)) {
4181 /* failure case - need to deassign the subsys[] slot. */
4182 subsys[i] = NULL;
4183 mutex_unlock(&cgroup_mutex);
4184 return PTR_ERR(css);
4185 }
4186
4187 list_add(&ss->sibling, &rootnode.subsys_list);
4188 ss->root = &rootnode;
4189
4190 /* our new subsystem will be attached to the dummy hierarchy. */
4191 init_cgroup_css(css, ss, dummytop);
4192 /* init_idr must be after init_cgroup_css because it sets css->id. */
4193 if (ss->use_id) {
4194 int ret = cgroup_init_idr(ss, css);
4195 if (ret) {
4196 dummytop->subsys[ss->subsys_id] = NULL;
Li Zefan761b3ef2012-01-31 13:47:36 +08004197 ss->destroy(dummytop);
Ben Blume6a11052010-03-10 15:22:09 -08004198 subsys[i] = NULL;
4199 mutex_unlock(&cgroup_mutex);
4200 return ret;
4201 }
4202 }
4203
4204 /*
4205 * Now we need to entangle the css into the existing css_sets. unlike
4206 * in cgroup_init_subsys, there are now multiple css_sets, so each one
4207 * will need a new pointer to it; done by iterating the css_set_table.
4208 * furthermore, modifying the existing css_sets will corrupt the hash
4209 * table state, so each changed css_set will need its hash recomputed.
4210 * this is all done under the css_set_lock.
4211 */
4212 write_lock(&css_set_lock);
4213 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
4214 struct css_set *cg;
4215 struct hlist_node *node, *tmp;
4216 struct hlist_head *bucket = &css_set_table[i], *new_bucket;
4217
4218 hlist_for_each_entry_safe(cg, node, tmp, bucket, hlist) {
4219 /* skip entries that we already rehashed */
4220 if (cg->subsys[ss->subsys_id])
4221 continue;
4222 /* remove existing entry */
4223 hlist_del(&cg->hlist);
4224 /* set new value */
4225 cg->subsys[ss->subsys_id] = css;
4226 /* recompute hash and restore entry */
4227 new_bucket = css_set_hash(cg->subsys);
4228 hlist_add_head(&cg->hlist, new_bucket);
4229 }
4230 }
4231 write_unlock(&css_set_lock);
4232
4233 mutex_init(&ss->hierarchy_mutex);
4234 lockdep_set_class(&ss->hierarchy_mutex, &ss->subsys_key);
4235 ss->active = 1;
4236
Ben Blume6a11052010-03-10 15:22:09 -08004237 /* success! */
4238 mutex_unlock(&cgroup_mutex);
4239 return 0;
4240}
4241EXPORT_SYMBOL_GPL(cgroup_load_subsys);
4242
4243/**
Ben Blumcf5d5942010-03-10 15:22:09 -08004244 * cgroup_unload_subsys: unload a modular subsystem
4245 * @ss: the subsystem to unload
4246 *
4247 * This function should be called in a modular subsystem's exitcall. When this
4248 * function is invoked, the refcount on the subsystem's module will be 0, so
4249 * the subsystem will not be attached to any hierarchy.
4250 */
4251void cgroup_unload_subsys(struct cgroup_subsys *ss)
4252{
4253 struct cg_cgroup_link *link;
4254 struct hlist_head *hhead;
4255
4256 BUG_ON(ss->module == NULL);
4257
4258 /*
4259 * we shouldn't be called if the subsystem is in use, and the use of
4260 * try_module_get in parse_cgroupfs_options should ensure that it
4261 * doesn't start being used while we're killing it off.
4262 */
4263 BUG_ON(ss->root != &rootnode);
4264
4265 mutex_lock(&cgroup_mutex);
4266 /* deassign the subsys_id */
4267 BUG_ON(ss->subsys_id < CGROUP_BUILTIN_SUBSYS_COUNT);
4268 subsys[ss->subsys_id] = NULL;
4269
4270 /* remove subsystem from rootnode's list of subsystems */
Phil Carmody8d258792011-03-22 16:30:13 -07004271 list_del_init(&ss->sibling);
Ben Blumcf5d5942010-03-10 15:22:09 -08004272
4273 /*
4274 * disentangle the css from all css_sets attached to the dummytop. as
4275 * in loading, we need to pay our respects to the hashtable gods.
4276 */
4277 write_lock(&css_set_lock);
4278 list_for_each_entry(link, &dummytop->css_sets, cgrp_link_list) {
4279 struct css_set *cg = link->cg;
4280
4281 hlist_del(&cg->hlist);
4282 BUG_ON(!cg->subsys[ss->subsys_id]);
4283 cg->subsys[ss->subsys_id] = NULL;
4284 hhead = css_set_hash(cg->subsys);
4285 hlist_add_head(&cg->hlist, hhead);
4286 }
4287 write_unlock(&css_set_lock);
4288
4289 /*
4290 * remove subsystem's css from the dummytop and free it - need to free
4291 * before marking as null because ss->destroy needs the cgrp->subsys
4292 * pointer to find their state. note that this also takes care of
4293 * freeing the css_id.
4294 */
Li Zefan761b3ef2012-01-31 13:47:36 +08004295 ss->destroy(dummytop);
Ben Blumcf5d5942010-03-10 15:22:09 -08004296 dummytop->subsys[ss->subsys_id] = NULL;
4297
4298 mutex_unlock(&cgroup_mutex);
4299}
4300EXPORT_SYMBOL_GPL(cgroup_unload_subsys);
4301
4302/**
Li Zefana043e3b2008-02-23 15:24:09 -08004303 * cgroup_init_early - cgroup initialization at system boot
4304 *
4305 * Initialize cgroups at system boot, and initialize any
4306 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004307 */
4308int __init cgroup_init_early(void)
4309{
4310 int i;
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07004311 atomic_set(&init_css_set.refcount, 1);
Paul Menage817929e2007-10-18 23:39:36 -07004312 INIT_LIST_HEAD(&init_css_set.cg_links);
4313 INIT_LIST_HEAD(&init_css_set.tasks);
Li Zefan472b1052008-04-29 01:00:11 -07004314 INIT_HLIST_NODE(&init_css_set.hlist);
Paul Menage817929e2007-10-18 23:39:36 -07004315 css_set_count = 1;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004316 init_cgroup_root(&rootnode);
Paul Menage817929e2007-10-18 23:39:36 -07004317 root_count = 1;
4318 init_task.cgroups = &init_css_set;
4319
4320 init_css_set_link.cg = &init_css_set;
Paul Menage7717f7b2009-09-23 15:56:22 -07004321 init_css_set_link.cgrp = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -07004322 list_add(&init_css_set_link.cgrp_link_list,
Paul Menage817929e2007-10-18 23:39:36 -07004323 &rootnode.top_cgroup.css_sets);
4324 list_add(&init_css_set_link.cg_link_list,
4325 &init_css_set.cg_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004326
Li Zefan472b1052008-04-29 01:00:11 -07004327 for (i = 0; i < CSS_SET_TABLE_SIZE; i++)
4328 INIT_HLIST_HEAD(&css_set_table[i]);
4329
Ben Blumaae8aab2010-03-10 15:22:07 -08004330 /* at bootup time, we don't worry about modular subsystems */
4331 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004332 struct cgroup_subsys *ss = subsys[i];
4333
4334 BUG_ON(!ss->name);
4335 BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN);
4336 BUG_ON(!ss->create);
4337 BUG_ON(!ss->destroy);
4338 if (ss->subsys_id != i) {
Diego Callejacfe36bd2007-11-14 16:58:54 -08004339 printk(KERN_ERR "cgroup: Subsys %s id == %d\n",
Paul Menageddbcc7e2007-10-18 23:39:30 -07004340 ss->name, ss->subsys_id);
4341 BUG();
4342 }
4343
4344 if (ss->early_init)
4345 cgroup_init_subsys(ss);
4346 }
4347 return 0;
4348}
4349
4350/**
Li Zefana043e3b2008-02-23 15:24:09 -08004351 * cgroup_init - cgroup initialization
4352 *
4353 * Register cgroup filesystem and /proc file, and initialize
4354 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004355 */
4356int __init cgroup_init(void)
4357{
4358 int err;
4359 int i;
Li Zefan472b1052008-04-29 01:00:11 -07004360 struct hlist_head *hhead;
Paul Menagea4243162007-10-18 23:39:35 -07004361
4362 err = bdi_init(&cgroup_backing_dev_info);
4363 if (err)
4364 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004365
Ben Blumaae8aab2010-03-10 15:22:07 -08004366 /* at bootup time, we don't worry about modular subsystems */
4367 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004368 struct cgroup_subsys *ss = subsys[i];
4369 if (!ss->early_init)
4370 cgroup_init_subsys(ss);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004371 if (ss->use_id)
Ben Blume6a11052010-03-10 15:22:09 -08004372 cgroup_init_idr(ss, init_css_set.subsys[ss->subsys_id]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004373 }
4374
Li Zefan472b1052008-04-29 01:00:11 -07004375 /* Add init_css_set to the hash table */
4376 hhead = css_set_hash(init_css_set.subsys);
4377 hlist_add_head(&init_css_set.hlist, hhead);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004378 BUG_ON(!init_root_id(&rootnode));
Greg KH676db4a2010-08-05 13:53:35 -07004379
4380 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
4381 if (!cgroup_kobj) {
4382 err = -ENOMEM;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004383 goto out;
Greg KH676db4a2010-08-05 13:53:35 -07004384 }
4385
4386 err = register_filesystem(&cgroup_fs_type);
4387 if (err < 0) {
4388 kobject_put(cgroup_kobj);
4389 goto out;
4390 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004391
Li Zefan46ae2202008-04-29 01:00:08 -07004392 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Paul Menagea4243162007-10-18 23:39:35 -07004393
Paul Menageddbcc7e2007-10-18 23:39:30 -07004394out:
Paul Menagea4243162007-10-18 23:39:35 -07004395 if (err)
4396 bdi_destroy(&cgroup_backing_dev_info);
4397
Paul Menageddbcc7e2007-10-18 23:39:30 -07004398 return err;
4399}
Paul Menageb4f48b62007-10-18 23:39:33 -07004400
Paul Menagea4243162007-10-18 23:39:35 -07004401/*
4402 * proc_cgroup_show()
4403 * - Print task's cgroup paths into seq_file, one line for each hierarchy
4404 * - Used for /proc/<pid>/cgroup.
4405 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
4406 * doesn't really matter if tsk->cgroup changes after we read it,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004407 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
Paul Menagea4243162007-10-18 23:39:35 -07004408 * anyway. No need to check that tsk->cgroup != NULL, thanks to
4409 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
4410 * cgroup to top_cgroup.
4411 */
4412
4413/* TODO: Use a proper seq_file iterator */
4414static int proc_cgroup_show(struct seq_file *m, void *v)
4415{
4416 struct pid *pid;
4417 struct task_struct *tsk;
4418 char *buf;
4419 int retval;
4420 struct cgroupfs_root *root;
4421
4422 retval = -ENOMEM;
4423 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
4424 if (!buf)
4425 goto out;
4426
4427 retval = -ESRCH;
4428 pid = m->private;
4429 tsk = get_pid_task(pid, PIDTYPE_PID);
4430 if (!tsk)
4431 goto out_free;
4432
4433 retval = 0;
4434
4435 mutex_lock(&cgroup_mutex);
4436
Li Zefane5f6a862009-01-07 18:07:41 -08004437 for_each_active_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07004438 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07004439 struct cgroup *cgrp;
Paul Menagea4243162007-10-18 23:39:35 -07004440 int count = 0;
4441
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004442 seq_printf(m, "%d:", root->hierarchy_id);
Paul Menagea4243162007-10-18 23:39:35 -07004443 for_each_subsys(root, ss)
4444 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07004445 if (strlen(root->name))
4446 seq_printf(m, "%sname=%s", count ? "," : "",
4447 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07004448 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07004449 cgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07004450 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
Paul Menagea4243162007-10-18 23:39:35 -07004451 if (retval < 0)
4452 goto out_unlock;
4453 seq_puts(m, buf);
4454 seq_putc(m, '\n');
4455 }
4456
4457out_unlock:
4458 mutex_unlock(&cgroup_mutex);
4459 put_task_struct(tsk);
4460out_free:
4461 kfree(buf);
4462out:
4463 return retval;
4464}
4465
4466static int cgroup_open(struct inode *inode, struct file *file)
4467{
4468 struct pid *pid = PROC_I(inode)->pid;
4469 return single_open(file, proc_cgroup_show, pid);
4470}
4471
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004472const struct file_operations proc_cgroup_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004473 .open = cgroup_open,
4474 .read = seq_read,
4475 .llseek = seq_lseek,
4476 .release = single_release,
4477};
4478
4479/* Display information about each subsystem and each hierarchy */
4480static int proc_cgroupstats_show(struct seq_file *m, void *v)
4481{
4482 int i;
Paul Menagea4243162007-10-18 23:39:35 -07004483
Paul Menage8bab8dd2008-04-04 14:29:57 -07004484 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08004485 /*
4486 * ideally we don't want subsystems moving around while we do this.
4487 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
4488 * subsys/hierarchy state.
4489 */
Paul Menagea4243162007-10-18 23:39:35 -07004490 mutex_lock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07004491 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
4492 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08004493 if (ss == NULL)
4494 continue;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004495 seq_printf(m, "%s\t%d\t%d\t%d\n",
4496 ss->name, ss->root->hierarchy_id,
Paul Menage8bab8dd2008-04-04 14:29:57 -07004497 ss->root->number_of_cgroups, !ss->disabled);
Paul Menagea4243162007-10-18 23:39:35 -07004498 }
4499 mutex_unlock(&cgroup_mutex);
4500 return 0;
4501}
4502
4503static int cgroupstats_open(struct inode *inode, struct file *file)
4504{
Al Viro9dce07f12008-03-29 03:07:28 +00004505 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07004506}
4507
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004508static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004509 .open = cgroupstats_open,
4510 .read = seq_read,
4511 .llseek = seq_lseek,
4512 .release = single_release,
4513};
4514
Paul Menageb4f48b62007-10-18 23:39:33 -07004515/**
4516 * cgroup_fork - attach newly forked task to its parents cgroup.
Li Zefana043e3b2008-02-23 15:24:09 -08004517 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07004518 *
4519 * Description: A task inherits its parent's cgroup at fork().
4520 *
4521 * A pointer to the shared css_set was automatically copied in
4522 * fork.c by dup_task_struct(). However, we ignore that copy, since
Frederic Weisbecker7e381b0e2011-12-21 20:03:19 +01004523 * it was not made under the protection of RCU, cgroup_mutex or
4524 * threadgroup_change_begin(), so it might no longer be a valid
4525 * cgroup pointer. cgroup_attach_task() might have already changed
4526 * current->cgroups, allowing the previously referenced cgroup
4527 * group to be removed and freed.
4528 *
4529 * Outside the pointer validity we also need to process the css_set
4530 * inheritance between threadgoup_change_begin() and
4531 * threadgoup_change_end(), this way there is no leak in any process
4532 * wide migration performed by cgroup_attach_proc() that could otherwise
4533 * miss a thread because it is too early or too late in the fork stage.
Paul Menageb4f48b62007-10-18 23:39:33 -07004534 *
4535 * At the point that cgroup_fork() is called, 'current' is the parent
4536 * task, and the passed argument 'child' points to the child task.
4537 */
4538void cgroup_fork(struct task_struct *child)
4539{
Frederic Weisbecker7e381b0e2011-12-21 20:03:19 +01004540 /*
4541 * We don't need to task_lock() current because current->cgroups
4542 * can't be changed concurrently here. The parent obviously hasn't
4543 * exited and called cgroup_exit(), and we are synchronized against
4544 * cgroup migration through threadgroup_change_begin().
4545 */
Paul Menage817929e2007-10-18 23:39:36 -07004546 child->cgroups = current->cgroups;
4547 get_css_set(child->cgroups);
Paul Menage817929e2007-10-18 23:39:36 -07004548 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07004549}
4550
4551/**
Li Zefana043e3b2008-02-23 15:24:09 -08004552 * cgroup_fork_callbacks - run fork callbacks
4553 * @child: the new task
4554 *
4555 * Called on a new task very soon before adding it to the
4556 * tasklist. No need to take any locks since no-one can
4557 * be operating on this task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004558 */
4559void cgroup_fork_callbacks(struct task_struct *child)
4560{
4561 if (need_forkexit_callback) {
4562 int i;
Ben Blumaae8aab2010-03-10 15:22:07 -08004563 /*
4564 * forkexit callbacks are only supported for builtin
4565 * subsystems, and the builtin section of the subsys array is
4566 * immutable, so we don't need to lock the subsys array here.
4567 */
4568 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageb4f48b62007-10-18 23:39:33 -07004569 struct cgroup_subsys *ss = subsys[i];
4570 if (ss->fork)
Li Zefan761b3ef2012-01-31 13:47:36 +08004571 ss->fork(child);
Paul Menageb4f48b62007-10-18 23:39:33 -07004572 }
4573 }
4574}
4575
4576/**
Li Zefana043e3b2008-02-23 15:24:09 -08004577 * cgroup_post_fork - called on a new task after adding it to the task list
4578 * @child: the task in question
4579 *
4580 * Adds the task to the list running through its css_set if necessary.
4581 * Has to be after the task is visible on the task list in case we race
4582 * with the first call to cgroup_iter_start() - to guarantee that the
4583 * new task ends up on its list.
4584 */
Paul Menage817929e2007-10-18 23:39:36 -07004585void cgroup_post_fork(struct task_struct *child)
4586{
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01004587 /*
4588 * use_task_css_set_links is set to 1 before we walk the tasklist
4589 * under the tasklist_lock and we read it here after we added the child
4590 * to the tasklist under the tasklist_lock as well. If the child wasn't
4591 * yet in the tasklist when we walked through it from
4592 * cgroup_enable_task_cg_lists(), then use_task_css_set_links value
4593 * should be visible now due to the paired locking and barriers implied
4594 * by LOCK/UNLOCK: it is written before the tasklist_lock unlock
4595 * in cgroup_enable_task_cg_lists() and read here after the tasklist_lock
4596 * lock on fork.
4597 */
Paul Menage817929e2007-10-18 23:39:36 -07004598 if (use_task_css_set_links) {
4599 write_lock(&css_set_lock);
Frederic Weisbecker7e3aa302011-12-23 04:25:23 +01004600 if (list_empty(&child->cg_list)) {
4601 /*
4602 * It's safe to use child->cgroups without task_lock()
4603 * here because we are protected through
4604 * threadgroup_change_begin() against concurrent
4605 * css_set change in cgroup_task_migrate(). Also
4606 * the task can't exit at that point until
4607 * wake_up_new_task() is called, so we are protected
4608 * against cgroup_exit() setting child->cgroup to
4609 * init_css_set.
4610 */
Paul Menage817929e2007-10-18 23:39:36 -07004611 list_add(&child->cg_list, &child->cgroups->tasks);
Frederic Weisbecker7e3aa302011-12-23 04:25:23 +01004612 }
Paul Menage817929e2007-10-18 23:39:36 -07004613 write_unlock(&css_set_lock);
4614 }
4615}
4616/**
Paul Menageb4f48b62007-10-18 23:39:33 -07004617 * cgroup_exit - detach cgroup from exiting task
4618 * @tsk: pointer to task_struct of exiting process
Li Zefana043e3b2008-02-23 15:24:09 -08004619 * @run_callback: run exit callbacks?
Paul Menageb4f48b62007-10-18 23:39:33 -07004620 *
4621 * Description: Detach cgroup from @tsk and release it.
4622 *
4623 * Note that cgroups marked notify_on_release force every task in
4624 * them to take the global cgroup_mutex mutex when exiting.
4625 * This could impact scaling on very large systems. Be reluctant to
4626 * use notify_on_release cgroups where very high task exit scaling
4627 * is required on large systems.
4628 *
4629 * the_top_cgroup_hack:
4630 *
4631 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
4632 *
4633 * We call cgroup_exit() while the task is still competent to
4634 * handle notify_on_release(), then leave the task attached to the
4635 * root cgroup in each hierarchy for the remainder of its exit.
4636 *
4637 * To do this properly, we would increment the reference count on
4638 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
4639 * code we would add a second cgroup function call, to drop that
4640 * reference. This would just create an unnecessary hot spot on
4641 * the top_cgroup reference count, to no avail.
4642 *
4643 * Normally, holding a reference to a cgroup without bumping its
4644 * count is unsafe. The cgroup could go away, or someone could
4645 * attach us to a different cgroup, decrementing the count on
4646 * the first cgroup that we never incremented. But in this case,
4647 * top_cgroup isn't going away, and either task has PF_EXITING set,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004648 * which wards off any cgroup_attach_task() attempts, or task is a failed
4649 * fork, never visible to cgroup_attach_task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004650 */
4651void cgroup_exit(struct task_struct *tsk, int run_callbacks)
4652{
Paul Menage817929e2007-10-18 23:39:36 -07004653 struct css_set *cg;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004654 int i;
Paul Menage817929e2007-10-18 23:39:36 -07004655
4656 /*
4657 * Unlink from the css_set task list if necessary.
4658 * Optimistically check cg_list before taking
4659 * css_set_lock
4660 */
4661 if (!list_empty(&tsk->cg_list)) {
4662 write_lock(&css_set_lock);
4663 if (!list_empty(&tsk->cg_list))
Phil Carmody8d258792011-03-22 16:30:13 -07004664 list_del_init(&tsk->cg_list);
Paul Menage817929e2007-10-18 23:39:36 -07004665 write_unlock(&css_set_lock);
4666 }
4667
Paul Menageb4f48b62007-10-18 23:39:33 -07004668 /* Reassign the task to the init_css_set. */
4669 task_lock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07004670 cg = tsk->cgroups;
4671 tsk->cgroups = &init_css_set;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004672
4673 if (run_callbacks && need_forkexit_callback) {
4674 /*
4675 * modular subsystems can't use callbacks, so no need to lock
4676 * the subsys array
4677 */
4678 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
4679 struct cgroup_subsys *ss = subsys[i];
4680 if (ss->exit) {
4681 struct cgroup *old_cgrp =
4682 rcu_dereference_raw(cg->subsys[i])->cgroup;
4683 struct cgroup *cgrp = task_cgroup(tsk, i);
Li Zefan761b3ef2012-01-31 13:47:36 +08004684 ss->exit(cgrp, old_cgrp, tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004685 }
4686 }
4687 }
Paul Menageb4f48b62007-10-18 23:39:33 -07004688 task_unlock(tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004689
Paul Menage817929e2007-10-18 23:39:36 -07004690 if (cg)
Colin Crossc0f6fa82010-11-23 21:37:03 -08004691 put_css_set(cg);
Paul Menageb4f48b62007-10-18 23:39:33 -07004692}
Paul Menage697f4162007-10-18 23:39:34 -07004693
4694/**
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004695 * cgroup_is_descendant - see if @cgrp is a descendant of @task's cgrp
Li Zefana043e3b2008-02-23 15:24:09 -08004696 * @cgrp: the cgroup in question
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004697 * @task: the task in question
Li Zefana043e3b2008-02-23 15:24:09 -08004698 *
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004699 * See if @cgrp is a descendant of @task's cgroup in the appropriate
4700 * hierarchy.
Paul Menage697f4162007-10-18 23:39:34 -07004701 *
4702 * If we are sending in dummytop, then presumably we are creating
4703 * the top cgroup in the subsystem.
4704 *
4705 * Called only by the ns (nsproxy) cgroup.
4706 */
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004707int cgroup_is_descendant(const struct cgroup *cgrp, struct task_struct *task)
Paul Menage697f4162007-10-18 23:39:34 -07004708{
4709 int ret;
4710 struct cgroup *target;
Paul Menage697f4162007-10-18 23:39:34 -07004711
Paul Menagebd89aab2007-10-18 23:40:44 -07004712 if (cgrp == dummytop)
Paul Menage697f4162007-10-18 23:39:34 -07004713 return 1;
4714
Paul Menage7717f7b2009-09-23 15:56:22 -07004715 target = task_cgroup_from_root(task, cgrp->root);
Paul Menagebd89aab2007-10-18 23:40:44 -07004716 while (cgrp != target && cgrp!= cgrp->top_cgroup)
4717 cgrp = cgrp->parent;
4718 ret = (cgrp == target);
Paul Menage697f4162007-10-18 23:39:34 -07004719 return ret;
4720}
Paul Menage81a6a5c2007-10-18 23:39:38 -07004721
Paul Menagebd89aab2007-10-18 23:40:44 -07004722static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004723{
4724 /* All of these checks rely on RCU to keep the cgroup
4725 * structure alive */
Paul Menagebd89aab2007-10-18 23:40:44 -07004726 if (cgroup_is_releasable(cgrp) && !atomic_read(&cgrp->count)
4727 && list_empty(&cgrp->children) && !cgroup_has_css_refs(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004728 /* Control Group is currently removeable. If it's not
4729 * already queued for a userspace notification, queue
4730 * it now */
4731 int need_schedule_work = 0;
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004732 raw_spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07004733 if (!cgroup_is_removed(cgrp) &&
4734 list_empty(&cgrp->release_list)) {
4735 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004736 need_schedule_work = 1;
4737 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004738 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004739 if (need_schedule_work)
4740 schedule_work(&release_agent_work);
4741 }
4742}
4743
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -08004744/* Caller must verify that the css is not for root cgroup */
Colin Crossc0f6fa82010-11-23 21:37:03 -08004745void __css_get(struct cgroup_subsys_state *css, int count)
4746{
4747 atomic_add(count, &css->refcnt);
4748 set_bit(CGRP_RELEASABLE, &css->cgroup->flags);
4749}
4750EXPORT_SYMBOL_GPL(__css_get);
4751
4752/* Caller must verify that the css is not for root cgroup */
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -08004753void __css_put(struct cgroup_subsys_state *css, int count)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004754{
Paul Menagebd89aab2007-10-18 23:40:44 -07004755 struct cgroup *cgrp = css->cgroup;
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004756 int val;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004757 rcu_read_lock();
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -08004758 val = atomic_sub_return(count, &css->refcnt);
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004759 if (val == 1) {
Colin Crossc0f6fa82010-11-23 21:37:03 -08004760 check_for_release(cgrp);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004761 cgroup_wakeup_rmdir_waiter(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004762 }
4763 rcu_read_unlock();
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004764 WARN_ON_ONCE(val < 1);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004765}
Ben Blum67523c42010-03-10 15:22:11 -08004766EXPORT_SYMBOL_GPL(__css_put);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004767
4768/*
4769 * Notify userspace when a cgroup is released, by running the
4770 * configured release agent with the name of the cgroup (path
4771 * relative to the root of cgroup file system) as the argument.
4772 *
4773 * Most likely, this user command will try to rmdir this cgroup.
4774 *
4775 * This races with the possibility that some other task will be
4776 * attached to this cgroup before it is removed, or that some other
4777 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
4778 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
4779 * unused, and this cgroup will be reprieved from its death sentence,
4780 * to continue to serve a useful existence. Next time it's released,
4781 * we will get notified again, if it still has 'notify_on_release' set.
4782 *
4783 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
4784 * means only wait until the task is successfully execve()'d. The
4785 * separate release agent task is forked by call_usermodehelper(),
4786 * then control in this thread returns here, without waiting for the
4787 * release agent task. We don't bother to wait because the caller of
4788 * this routine has no use for the exit status of the release agent
4789 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07004790 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004791static void cgroup_release_agent(struct work_struct *work)
4792{
4793 BUG_ON(work != &release_agent_work);
4794 mutex_lock(&cgroup_mutex);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004795 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004796 while (!list_empty(&release_list)) {
4797 char *argv[3], *envp[3];
4798 int i;
Paul Menagee788e062008-07-25 01:46:59 -07004799 char *pathbuf = NULL, *agentbuf = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07004800 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07004801 struct cgroup,
4802 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07004803 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004804 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004805 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paul Menagee788e062008-07-25 01:46:59 -07004806 if (!pathbuf)
4807 goto continue_free;
4808 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0)
4809 goto continue_free;
4810 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
4811 if (!agentbuf)
4812 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004813
4814 i = 0;
Paul Menagee788e062008-07-25 01:46:59 -07004815 argv[i++] = agentbuf;
4816 argv[i++] = pathbuf;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004817 argv[i] = NULL;
4818
4819 i = 0;
4820 /* minimal command environment */
4821 envp[i++] = "HOME=/";
4822 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
4823 envp[i] = NULL;
4824
4825 /* Drop the lock while we invoke the usermode helper,
4826 * since the exec could involve hitting disk and hence
4827 * be a slow process */
4828 mutex_unlock(&cgroup_mutex);
4829 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004830 mutex_lock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07004831 continue_free:
4832 kfree(pathbuf);
4833 kfree(agentbuf);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004834 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004835 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004836 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004837 mutex_unlock(&cgroup_mutex);
4838}
Paul Menage8bab8dd2008-04-04 14:29:57 -07004839
4840static int __init cgroup_disable(char *str)
4841{
4842 int i;
4843 char *token;
4844
4845 while ((token = strsep(&str, ",")) != NULL) {
4846 if (!*token)
4847 continue;
Ben Blumaae8aab2010-03-10 15:22:07 -08004848 /*
4849 * cgroup_disable, being at boot time, can't know about module
4850 * subsystems, so we don't worry about them.
4851 */
4852 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07004853 struct cgroup_subsys *ss = subsys[i];
4854
4855 if (!strcmp(token, ss->name)) {
4856 ss->disabled = 1;
4857 printk(KERN_INFO "Disabling %s control group"
4858 " subsystem\n", ss->name);
4859 break;
4860 }
4861 }
4862 }
4863 return 1;
4864}
4865__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004866
4867/*
4868 * Functons for CSS ID.
4869 */
4870
4871/*
4872 *To get ID other than 0, this should be called when !cgroup_is_removed().
4873 */
4874unsigned short css_id(struct cgroup_subsys_state *css)
4875{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07004876 struct css_id *cssid;
4877
4878 /*
4879 * This css_id() can return correct value when somone has refcnt
4880 * on this or this is under rcu_read_lock(). Once css->id is allocated,
4881 * it's unchanged until freed.
4882 */
Michal Hockod8bf4ca2011-07-08 14:39:41 +02004883 cssid = rcu_dereference_check(css->id, atomic_read(&css->refcnt));
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004884
4885 if (cssid)
4886 return cssid->id;
4887 return 0;
4888}
Ben Blum67523c42010-03-10 15:22:11 -08004889EXPORT_SYMBOL_GPL(css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004890
4891unsigned short css_depth(struct cgroup_subsys_state *css)
4892{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07004893 struct css_id *cssid;
4894
Michal Hockod8bf4ca2011-07-08 14:39:41 +02004895 cssid = rcu_dereference_check(css->id, atomic_read(&css->refcnt));
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004896
4897 if (cssid)
4898 return cssid->depth;
4899 return 0;
4900}
Ben Blum67523c42010-03-10 15:22:11 -08004901EXPORT_SYMBOL_GPL(css_depth);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004902
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004903/**
4904 * css_is_ancestor - test "root" css is an ancestor of "child"
4905 * @child: the css to be tested.
4906 * @root: the css supporsed to be an ancestor of the child.
4907 *
4908 * Returns true if "root" is an ancestor of "child" in its hierarchy. Because
4909 * this function reads css->id, this use rcu_dereference() and rcu_read_lock().
4910 * But, considering usual usage, the csses should be valid objects after test.
4911 * Assuming that the caller will do some action to the child if this returns
4912 * returns true, the caller must take "child";s reference count.
4913 * If "child" is valid object and this returns true, "root" is valid, too.
4914 */
4915
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004916bool css_is_ancestor(struct cgroup_subsys_state *child,
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07004917 const struct cgroup_subsys_state *root)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004918{
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004919 struct css_id *child_id;
4920 struct css_id *root_id;
4921 bool ret = true;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004922
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004923 rcu_read_lock();
4924 child_id = rcu_dereference(child->id);
4925 root_id = rcu_dereference(root->id);
4926 if (!child_id
4927 || !root_id
4928 || (child_id->depth < root_id->depth)
4929 || (child_id->stack[root_id->depth] != root_id->id))
4930 ret = false;
4931 rcu_read_unlock();
4932 return ret;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004933}
4934
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004935void free_css_id(struct cgroup_subsys *ss, struct cgroup_subsys_state *css)
4936{
4937 struct css_id *id = css->id;
4938 /* When this is called before css_id initialization, id can be NULL */
4939 if (!id)
4940 return;
4941
4942 BUG_ON(!ss->use_id);
4943
4944 rcu_assign_pointer(id->css, NULL);
4945 rcu_assign_pointer(css->id, NULL);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07004946 spin_lock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004947 idr_remove(&ss->idr, id->id);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07004948 spin_unlock(&ss->id_lock);
Lai Jiangshan025cea92011-03-15 17:56:10 +08004949 kfree_rcu(id, rcu_head);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004950}
Ben Blum67523c42010-03-10 15:22:11 -08004951EXPORT_SYMBOL_GPL(free_css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004952
4953/*
4954 * This is called by init or create(). Then, calls to this function are
4955 * always serialized (By cgroup_mutex() at create()).
4956 */
4957
4958static struct css_id *get_new_cssid(struct cgroup_subsys *ss, int depth)
4959{
4960 struct css_id *newid;
4961 int myid, error, size;
4962
4963 BUG_ON(!ss->use_id);
4964
4965 size = sizeof(*newid) + sizeof(unsigned short) * (depth + 1);
4966 newid = kzalloc(size, GFP_KERNEL);
4967 if (!newid)
4968 return ERR_PTR(-ENOMEM);
4969 /* get id */
4970 if (unlikely(!idr_pre_get(&ss->idr, GFP_KERNEL))) {
4971 error = -ENOMEM;
4972 goto err_out;
4973 }
Hugh Dickins42aee6c2012-03-21 16:34:21 -07004974 spin_lock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004975 /* Don't use 0. allocates an ID of 1-65535 */
4976 error = idr_get_new_above(&ss->idr, newid, 1, &myid);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07004977 spin_unlock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004978
4979 /* Returns error when there are no free spaces for new ID.*/
4980 if (error) {
4981 error = -ENOSPC;
4982 goto err_out;
4983 }
4984 if (myid > CSS_ID_MAX)
4985 goto remove_idr;
4986
4987 newid->id = myid;
4988 newid->depth = depth;
4989 return newid;
4990remove_idr:
4991 error = -ENOSPC;
Hugh Dickins42aee6c2012-03-21 16:34:21 -07004992 spin_lock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004993 idr_remove(&ss->idr, myid);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07004994 spin_unlock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004995err_out:
4996 kfree(newid);
4997 return ERR_PTR(error);
4998
4999}
5000
Ben Blume6a11052010-03-10 15:22:09 -08005001static int __init_or_module cgroup_init_idr(struct cgroup_subsys *ss,
5002 struct cgroup_subsys_state *rootcss)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005003{
5004 struct css_id *newid;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005005
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005006 spin_lock_init(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005007 idr_init(&ss->idr);
5008
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005009 newid = get_new_cssid(ss, 0);
5010 if (IS_ERR(newid))
5011 return PTR_ERR(newid);
5012
5013 newid->stack[0] = newid->id;
5014 newid->css = rootcss;
5015 rootcss->id = newid;
5016 return 0;
5017}
5018
5019static int alloc_css_id(struct cgroup_subsys *ss, struct cgroup *parent,
5020 struct cgroup *child)
5021{
5022 int subsys_id, i, depth = 0;
5023 struct cgroup_subsys_state *parent_css, *child_css;
Li Zefanfae9c792010-04-22 17:30:00 +08005024 struct css_id *child_id, *parent_id;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005025
5026 subsys_id = ss->subsys_id;
5027 parent_css = parent->subsys[subsys_id];
5028 child_css = child->subsys[subsys_id];
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005029 parent_id = parent_css->id;
Greg Thelen94b3dd02010-06-04 14:15:03 -07005030 depth = parent_id->depth + 1;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005031
5032 child_id = get_new_cssid(ss, depth);
5033 if (IS_ERR(child_id))
5034 return PTR_ERR(child_id);
5035
5036 for (i = 0; i < depth; i++)
5037 child_id->stack[i] = parent_id->stack[i];
5038 child_id->stack[depth] = child_id->id;
5039 /*
5040 * child_id->css pointer will be set after this cgroup is available
5041 * see cgroup_populate_dir()
5042 */
5043 rcu_assign_pointer(child_css->id, child_id);
5044
5045 return 0;
5046}
5047
5048/**
5049 * css_lookup - lookup css by id
5050 * @ss: cgroup subsys to be looked into.
5051 * @id: the id
5052 *
5053 * Returns pointer to cgroup_subsys_state if there is valid one with id.
5054 * NULL if not. Should be called under rcu_read_lock()
5055 */
5056struct cgroup_subsys_state *css_lookup(struct cgroup_subsys *ss, int id)
5057{
5058 struct css_id *cssid = NULL;
5059
5060 BUG_ON(!ss->use_id);
5061 cssid = idr_find(&ss->idr, id);
5062
5063 if (unlikely(!cssid))
5064 return NULL;
5065
5066 return rcu_dereference(cssid->css);
5067}
Ben Blum67523c42010-03-10 15:22:11 -08005068EXPORT_SYMBOL_GPL(css_lookup);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005069
5070/**
5071 * css_get_next - lookup next cgroup under specified hierarchy.
5072 * @ss: pointer to subsystem
5073 * @id: current position of iteration.
5074 * @root: pointer to css. search tree under this.
5075 * @foundid: position of found object.
5076 *
5077 * Search next css under the specified hierarchy of rootid. Calling under
5078 * rcu_read_lock() is necessary. Returns NULL if it reaches the end.
5079 */
5080struct cgroup_subsys_state *
5081css_get_next(struct cgroup_subsys *ss, int id,
5082 struct cgroup_subsys_state *root, int *foundid)
5083{
5084 struct cgroup_subsys_state *ret = NULL;
5085 struct css_id *tmp;
5086 int tmpid;
5087 int rootid = css_id(root);
5088 int depth = css_depth(root);
5089
5090 if (!rootid)
5091 return NULL;
5092
5093 BUG_ON(!ss->use_id);
Hugh Dickinsca464d62012-03-21 16:34:21 -07005094 WARN_ON_ONCE(!rcu_read_lock_held());
5095
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005096 /* fill start point for scan */
5097 tmpid = id;
5098 while (1) {
5099 /*
5100 * scan next entry from bitmap(tree), tmpid is updated after
5101 * idr_get_next().
5102 */
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005103 tmp = idr_get_next(&ss->idr, &tmpid);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005104 if (!tmp)
5105 break;
5106 if (tmp->depth >= depth && tmp->stack[depth] == rootid) {
5107 ret = rcu_dereference(tmp->css);
5108 if (ret) {
5109 *foundid = tmpid;
5110 break;
5111 }
5112 }
5113 /* continue to scan from next id */
5114 tmpid = tmpid + 1;
5115 }
5116 return ret;
5117}
5118
Stephane Eraniane5d13672011-02-14 11:20:01 +02005119/*
5120 * get corresponding css from file open on cgroupfs directory
5121 */
5122struct cgroup_subsys_state *cgroup_css_from_dir(struct file *f, int id)
5123{
5124 struct cgroup *cgrp;
5125 struct inode *inode;
5126 struct cgroup_subsys_state *css;
5127
5128 inode = f->f_dentry->d_inode;
5129 /* check in cgroup filesystem dir */
5130 if (inode->i_op != &cgroup_dir_inode_operations)
5131 return ERR_PTR(-EBADF);
5132
5133 if (id < 0 || id >= CGROUP_SUBSYS_COUNT)
5134 return ERR_PTR(-EINVAL);
5135
5136 /* get cgroup */
5137 cgrp = __d_cgrp(f->f_dentry);
5138 css = cgrp->subsys[id];
5139 return css ? css : ERR_PTR(-ENOENT);
5140}
5141
Paul Menagefe693432009-09-23 15:56:20 -07005142#ifdef CONFIG_CGROUP_DEBUG
Li Zefan761b3ef2012-01-31 13:47:36 +08005143static struct cgroup_subsys_state *debug_create(struct cgroup *cont)
Paul Menagefe693432009-09-23 15:56:20 -07005144{
5145 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
5146
5147 if (!css)
5148 return ERR_PTR(-ENOMEM);
5149
5150 return css;
5151}
5152
Li Zefan761b3ef2012-01-31 13:47:36 +08005153static void debug_destroy(struct cgroup *cont)
Paul Menagefe693432009-09-23 15:56:20 -07005154{
5155 kfree(cont->subsys[debug_subsys_id]);
5156}
5157
5158static u64 cgroup_refcount_read(struct cgroup *cont, struct cftype *cft)
5159{
5160 return atomic_read(&cont->count);
5161}
5162
5163static u64 debug_taskcount_read(struct cgroup *cont, struct cftype *cft)
5164{
5165 return cgroup_task_count(cont);
5166}
5167
5168static u64 current_css_set_read(struct cgroup *cont, struct cftype *cft)
5169{
5170 return (u64)(unsigned long)current->cgroups;
5171}
5172
5173static u64 current_css_set_refcount_read(struct cgroup *cont,
5174 struct cftype *cft)
5175{
5176 u64 count;
5177
5178 rcu_read_lock();
5179 count = atomic_read(&current->cgroups->refcount);
5180 rcu_read_unlock();
5181 return count;
5182}
5183
Paul Menage7717f7b2009-09-23 15:56:22 -07005184static int current_css_set_cg_links_read(struct cgroup *cont,
5185 struct cftype *cft,
5186 struct seq_file *seq)
5187{
5188 struct cg_cgroup_link *link;
5189 struct css_set *cg;
5190
5191 read_lock(&css_set_lock);
5192 rcu_read_lock();
5193 cg = rcu_dereference(current->cgroups);
5194 list_for_each_entry(link, &cg->cg_links, cg_link_list) {
5195 struct cgroup *c = link->cgrp;
5196 const char *name;
5197
5198 if (c->dentry)
5199 name = c->dentry->d_name.name;
5200 else
5201 name = "?";
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005202 seq_printf(seq, "Root %d group %s\n",
5203 c->root->hierarchy_id, name);
Paul Menage7717f7b2009-09-23 15:56:22 -07005204 }
5205 rcu_read_unlock();
5206 read_unlock(&css_set_lock);
5207 return 0;
5208}
5209
5210#define MAX_TASKS_SHOWN_PER_CSS 25
5211static int cgroup_css_links_read(struct cgroup *cont,
5212 struct cftype *cft,
5213 struct seq_file *seq)
5214{
5215 struct cg_cgroup_link *link;
5216
5217 read_lock(&css_set_lock);
5218 list_for_each_entry(link, &cont->css_sets, cgrp_link_list) {
5219 struct css_set *cg = link->cg;
5220 struct task_struct *task;
5221 int count = 0;
5222 seq_printf(seq, "css_set %p\n", cg);
5223 list_for_each_entry(task, &cg->tasks, cg_list) {
5224 if (count++ > MAX_TASKS_SHOWN_PER_CSS) {
5225 seq_puts(seq, " ...\n");
5226 break;
5227 } else {
5228 seq_printf(seq, " task %d\n",
5229 task_pid_vnr(task));
5230 }
5231 }
5232 }
5233 read_unlock(&css_set_lock);
5234 return 0;
5235}
5236
Paul Menagefe693432009-09-23 15:56:20 -07005237static u64 releasable_read(struct cgroup *cgrp, struct cftype *cft)
5238{
5239 return test_bit(CGRP_RELEASABLE, &cgrp->flags);
5240}
5241
5242static struct cftype debug_files[] = {
5243 {
5244 .name = "cgroup_refcount",
5245 .read_u64 = cgroup_refcount_read,
5246 },
5247 {
5248 .name = "taskcount",
5249 .read_u64 = debug_taskcount_read,
5250 },
5251
5252 {
5253 .name = "current_css_set",
5254 .read_u64 = current_css_set_read,
5255 },
5256
5257 {
5258 .name = "current_css_set_refcount",
5259 .read_u64 = current_css_set_refcount_read,
5260 },
5261
5262 {
Paul Menage7717f7b2009-09-23 15:56:22 -07005263 .name = "current_css_set_cg_links",
5264 .read_seq_string = current_css_set_cg_links_read,
5265 },
5266
5267 {
5268 .name = "cgroup_css_links",
5269 .read_seq_string = cgroup_css_links_read,
5270 },
5271
5272 {
Paul Menagefe693432009-09-23 15:56:20 -07005273 .name = "releasable",
5274 .read_u64 = releasable_read,
5275 },
5276};
5277
5278static int debug_populate(struct cgroup_subsys *ss, struct cgroup *cont)
5279{
5280 return cgroup_add_files(cont, ss, debug_files,
5281 ARRAY_SIZE(debug_files));
5282}
5283
5284struct cgroup_subsys debug_subsys = {
5285 .name = "debug",
5286 .create = debug_create,
5287 .destroy = debug_destroy,
5288 .populate = debug_populate,
5289 .subsys_id = debug_subsys_id,
5290};
5291#endif /* CONFIG_CGROUP_DEBUG */