blob: 2eade51866048c5448851db3e57209ab989125fc [file] [log] [blame]
Paul Menageddbcc7e2007-10-18 23:39:30 -07001/*
Paul Menageddbcc7e2007-10-18 23:39:30 -07002 * Generic process-grouping system.
3 *
4 * Based originally on the cpuset system, extracted by Paul Menage
5 * Copyright (C) 2006 Google, Inc
6 *
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08007 * Notifications support
8 * Copyright (C) 2009 Nokia Corporation
9 * Author: Kirill A. Shutemov
10 *
Paul Menageddbcc7e2007-10-18 23:39:30 -070011 * Copyright notices from the original cpuset code:
12 * --------------------------------------------------
13 * Copyright (C) 2003 BULL SA.
14 * Copyright (C) 2004-2006 Silicon Graphics, Inc.
15 *
16 * Portions derived from Patrick Mochel's sysfs code.
17 * sysfs is Copyright (c) 2001-3 Patrick Mochel
18 *
19 * 2003-10-10 Written by Simon Derr.
20 * 2003-10-22 Updates by Stephen Hemminger.
21 * 2004 May-July Rework by Paul Jackson.
22 * ---------------------------------------------------
23 *
24 * This file is subject to the terms and conditions of the GNU General Public
25 * License. See the file COPYING in the main directory of the Linux
26 * distribution for more details.
27 */
28
29#include <linux/cgroup.h>
eparis@redhat2ce97382011-06-02 21:20:51 +100030#include <linux/cred.h>
Paul Menagec6d57f32009-09-23 15:56:19 -070031#include <linux/ctype.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070032#include <linux/errno.h>
33#include <linux/fs.h>
eparis@redhat2ce97382011-06-02 21:20:51 +100034#include <linux/init_task.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070035#include <linux/kernel.h>
36#include <linux/list.h>
37#include <linux/mm.h>
38#include <linux/mutex.h>
39#include <linux/mount.h>
40#include <linux/pagemap.h>
Paul Menagea4243162007-10-18 23:39:35 -070041#include <linux/proc_fs.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070042#include <linux/rcupdate.h>
43#include <linux/sched.h>
Paul Menage817929e2007-10-18 23:39:36 -070044#include <linux/backing-dev.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070045#include <linux/seq_file.h>
46#include <linux/slab.h>
47#include <linux/magic.h>
48#include <linux/spinlock.h>
49#include <linux/string.h>
Paul Menagebbcb81d2007-10-18 23:39:32 -070050#include <linux/sort.h>
Paul Menage81a6a5c2007-10-18 23:39:38 -070051#include <linux/kmod.h>
Ben Blume6a11052010-03-10 15:22:09 -080052#include <linux/module.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070053#include <linux/delayacct.h>
54#include <linux/cgroupstats.h>
Li Zefan472b1052008-04-29 01:00:11 -070055#include <linux/hash.h>
Al Viro3f8206d2008-07-26 03:46:43 -040056#include <linux/namei.h>
Li Zefan096b7fe2009-07-29 15:04:04 -070057#include <linux/pid_namespace.h>
Paul Menage2c6ab6d2009-09-23 15:56:23 -070058#include <linux/idr.h>
Ben Blumd1d9fd32009-09-23 15:56:28 -070059#include <linux/vmalloc.h> /* TODO: replace with more sophisticated array */
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -080060#include <linux/eventfd.h>
61#include <linux/poll.h>
Ben Blumd8466872011-05-26 16:25:21 -070062#include <linux/flex_array.h> /* used in cgroup_attach_proc */
Balbir Singh846c7bb2007-10-18 23:39:44 -070063
Arun Sharma600634972011-07-26 16:09:06 -070064#include <linux/atomic.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070065
Tejun Heo28b4c272012-04-01 12:09:56 -070066/* css deactivation bias, makes css->refcnt negative to deny new trygets */
67#define CSS_DEACT_BIAS INT_MIN
68
Tejun Heoe25e2cb2011-12-12 18:12:21 -080069/*
70 * cgroup_mutex is the master lock. Any modification to cgroup or its
71 * hierarchy must be performed while holding it.
72 *
73 * cgroup_root_mutex nests inside cgroup_mutex and should be held to modify
74 * cgroupfs_root of any cgroup hierarchy - subsys list, flags,
75 * release_agent_path and so on. Modifying requires both cgroup_mutex and
76 * cgroup_root_mutex. Readers can acquire either of the two. This is to
77 * break the following locking order cycle.
78 *
79 * A. cgroup_mutex -> cred_guard_mutex -> s_type->i_mutex_key -> namespace_sem
80 * B. namespace_sem -> cgroup_mutex
81 *
82 * B happens only through cgroup_show_options() and using cgroup_root_mutex
83 * breaks it.
84 */
Paul Menage81a6a5c2007-10-18 23:39:38 -070085static DEFINE_MUTEX(cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -080086static DEFINE_MUTEX(cgroup_root_mutex);
Paul Menage81a6a5c2007-10-18 23:39:38 -070087
Ben Blumaae8aab2010-03-10 15:22:07 -080088/*
89 * Generate an array of cgroup subsystem pointers. At boot time, this is
90 * populated up to CGROUP_BUILTIN_SUBSYS_COUNT, and modular subsystems are
91 * registered after that. The mutable section of this array is protected by
92 * cgroup_mutex.
93 */
Paul Menageddbcc7e2007-10-18 23:39:30 -070094#define SUBSYS(_x) &_x ## _subsys,
Ben Blumaae8aab2010-03-10 15:22:07 -080095static struct cgroup_subsys *subsys[CGROUP_SUBSYS_COUNT] = {
Paul Menageddbcc7e2007-10-18 23:39:30 -070096#include <linux/cgroup_subsys.h>
97};
98
Paul Menagec6d57f32009-09-23 15:56:19 -070099#define MAX_CGROUP_ROOT_NAMELEN 64
100
Paul Menageddbcc7e2007-10-18 23:39:30 -0700101/*
102 * A cgroupfs_root represents the root of a cgroup hierarchy,
103 * and may be associated with a superblock to form an active
104 * hierarchy
105 */
106struct cgroupfs_root {
107 struct super_block *sb;
108
109 /*
110 * The bitmask of subsystems intended to be attached to this
111 * hierarchy
112 */
113 unsigned long subsys_bits;
114
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700115 /* Unique id for this hierarchy. */
116 int hierarchy_id;
117
Paul Menageddbcc7e2007-10-18 23:39:30 -0700118 /* The bitmask of subsystems currently attached to this hierarchy */
119 unsigned long actual_subsys_bits;
120
121 /* A list running through the attached subsystems */
122 struct list_head subsys_list;
123
124 /* The root cgroup for this hierarchy */
125 struct cgroup top_cgroup;
126
127 /* Tracks how many cgroups are currently defined in hierarchy.*/
128 int number_of_cgroups;
129
Li Zefane5f6a862009-01-07 18:07:41 -0800130 /* A list running through the active hierarchies */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700131 struct list_head root_list;
132
Tejun Heob0ca5a82012-04-01 12:09:54 -0700133 /* All cgroups on this root, cgroup_mutex protected */
134 struct list_head allcg_list;
135
Paul Menageddbcc7e2007-10-18 23:39:30 -0700136 /* Hierarchy-specific flags */
137 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700138
Paul Menagee788e062008-07-25 01:46:59 -0700139 /* The path to use for release notifications. */
Paul Menage81a6a5c2007-10-18 23:39:38 -0700140 char release_agent_path[PATH_MAX];
Paul Menagec6d57f32009-09-23 15:56:19 -0700141
142 /* The name for this hierarchy - may be empty */
143 char name[MAX_CGROUP_ROOT_NAMELEN];
Paul Menageddbcc7e2007-10-18 23:39:30 -0700144};
145
Paul Menageddbcc7e2007-10-18 23:39:30 -0700146/*
147 * The "rootnode" hierarchy is the "dummy hierarchy", reserved for the
148 * subsystems that are otherwise unattached - it never has more than a
149 * single cgroup, and all tasks are part of that cgroup.
150 */
151static struct cgroupfs_root rootnode;
152
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700153/*
Tejun Heo05ef1d72012-04-01 12:09:56 -0700154 * cgroupfs file entry, pointed to from leaf dentry->d_fsdata.
155 */
156struct cfent {
157 struct list_head node;
158 struct dentry *dentry;
159 struct cftype *type;
160};
161
162/*
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700163 * CSS ID -- ID per subsys's Cgroup Subsys State(CSS). used only when
164 * cgroup_subsys->use_id != 0.
165 */
166#define CSS_ID_MAX (65535)
167struct css_id {
168 /*
169 * The css to which this ID points. This pointer is set to valid value
170 * after cgroup is populated. If cgroup is removed, this will be NULL.
171 * This pointer is expected to be RCU-safe because destroy()
172 * is called after synchronize_rcu(). But for safe use, css_is_removed()
173 * css_tryget() should be used for avoiding race.
174 */
Arnd Bergmann2c392b82010-02-24 19:41:39 +0100175 struct cgroup_subsys_state __rcu *css;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700176 /*
177 * ID of this css.
178 */
179 unsigned short id;
180 /*
181 * Depth in hierarchy which this ID belongs to.
182 */
183 unsigned short depth;
184 /*
185 * ID is freed by RCU. (and lookup routine is RCU safe.)
186 */
187 struct rcu_head rcu_head;
188 /*
189 * Hierarchy of CSS ID belongs to.
190 */
191 unsigned short stack[0]; /* Array of Length (depth+1) */
192};
193
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800194/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300195 * cgroup_event represents events which userspace want to receive.
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800196 */
197struct cgroup_event {
198 /*
199 * Cgroup which the event belongs to.
200 */
201 struct cgroup *cgrp;
202 /*
203 * Control file which the event associated.
204 */
205 struct cftype *cft;
206 /*
207 * eventfd to signal userspace about the event.
208 */
209 struct eventfd_ctx *eventfd;
210 /*
211 * Each of these stored in a list by the cgroup.
212 */
213 struct list_head list;
214 /*
215 * All fields below needed to unregister event when
216 * userspace closes eventfd.
217 */
218 poll_table pt;
219 wait_queue_head_t *wqh;
220 wait_queue_t wait;
221 struct work_struct remove;
222};
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700223
Paul Menageddbcc7e2007-10-18 23:39:30 -0700224/* The list of hierarchy roots */
225
226static LIST_HEAD(roots);
Paul Menage817929e2007-10-18 23:39:36 -0700227static int root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700228
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700229static DEFINE_IDA(hierarchy_ida);
230static int next_hierarchy_id;
231static DEFINE_SPINLOCK(hierarchy_id_lock);
232
Paul Menageddbcc7e2007-10-18 23:39:30 -0700233/* dummytop is a shorthand for the dummy hierarchy's top cgroup */
234#define dummytop (&rootnode.top_cgroup)
235
236/* This flag indicates whether tasks in the fork and exit paths should
Li Zefana043e3b2008-02-23 15:24:09 -0800237 * check for fork/exit handlers to call. This avoids us having to do
238 * extra work in the fork/exit path if none of the subsystems need to
239 * be called.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700240 */
Li Zefan8947f9d2008-07-25 01:46:56 -0700241static int need_forkexit_callback __read_mostly;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700242
Paul E. McKenneyd11c5632010-02-22 17:04:50 -0800243#ifdef CONFIG_PROVE_LOCKING
244int cgroup_lock_is_held(void)
245{
246 return lockdep_is_held(&cgroup_mutex);
247}
248#else /* #ifdef CONFIG_PROVE_LOCKING */
249int cgroup_lock_is_held(void)
250{
251 return mutex_is_locked(&cgroup_mutex);
252}
253#endif /* #else #ifdef CONFIG_PROVE_LOCKING */
254
255EXPORT_SYMBOL_GPL(cgroup_lock_is_held);
256
Tejun Heo28b4c272012-04-01 12:09:56 -0700257/* the current nr of refs, always >= 0 whether @css is deactivated or not */
258static int css_refcnt(struct cgroup_subsys_state *css)
259{
260 int v = atomic_read(&css->refcnt);
261
262 return v >= 0 ? v : v - CSS_DEACT_BIAS;
263}
264
Paul Menageddbcc7e2007-10-18 23:39:30 -0700265/* convenient tests for these bits */
Paul Menagebd89aab2007-10-18 23:40:44 -0700266inline int cgroup_is_removed(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700267{
Paul Menagebd89aab2007-10-18 23:40:44 -0700268 return test_bit(CGRP_REMOVED, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700269}
270
271/* bits in struct cgroupfs_root flags field */
272enum {
273 ROOT_NOPREFIX, /* mounted subsystems have no named prefix */
274};
275
Adrian Bunke9685a02008-02-07 00:13:46 -0800276static int cgroup_is_releasable(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700277{
278 const int bits =
Paul Menagebd89aab2007-10-18 23:40:44 -0700279 (1 << CGRP_RELEASABLE) |
280 (1 << CGRP_NOTIFY_ON_RELEASE);
281 return (cgrp->flags & bits) == bits;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700282}
283
Adrian Bunke9685a02008-02-07 00:13:46 -0800284static int notify_on_release(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700285{
Paul Menagebd89aab2007-10-18 23:40:44 -0700286 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700287}
288
Daniel Lezcano97978e62010-10-27 15:33:35 -0700289static int clone_children(const struct cgroup *cgrp)
290{
291 return test_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
292}
293
Paul Menageddbcc7e2007-10-18 23:39:30 -0700294/*
295 * for_each_subsys() allows you to iterate on each subsystem attached to
296 * an active hierarchy
297 */
298#define for_each_subsys(_root, _ss) \
299list_for_each_entry(_ss, &_root->subsys_list, sibling)
300
Li Zefane5f6a862009-01-07 18:07:41 -0800301/* for_each_active_root() allows you to iterate across the active hierarchies */
302#define for_each_active_root(_root) \
Paul Menageddbcc7e2007-10-18 23:39:30 -0700303list_for_each_entry(_root, &roots, root_list)
304
Tejun Heof6ea9372012-04-01 12:09:55 -0700305static inline struct cgroup *__d_cgrp(struct dentry *dentry)
306{
307 return dentry->d_fsdata;
308}
309
Tejun Heo05ef1d72012-04-01 12:09:56 -0700310static inline struct cfent *__d_cfe(struct dentry *dentry)
Tejun Heof6ea9372012-04-01 12:09:55 -0700311{
312 return dentry->d_fsdata;
313}
314
Tejun Heo05ef1d72012-04-01 12:09:56 -0700315static inline struct cftype *__d_cft(struct dentry *dentry)
316{
317 return __d_cfe(dentry)->type;
318}
319
Paul Menage81a6a5c2007-10-18 23:39:38 -0700320/* the list of cgroups eligible for automatic release. Protected by
321 * release_list_lock */
322static LIST_HEAD(release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +0200323static DEFINE_RAW_SPINLOCK(release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700324static void cgroup_release_agent(struct work_struct *work);
325static DECLARE_WORK(release_agent_work, cgroup_release_agent);
Paul Menagebd89aab2007-10-18 23:40:44 -0700326static void check_for_release(struct cgroup *cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700327
Paul Menage817929e2007-10-18 23:39:36 -0700328/* Link structure for associating css_set objects with cgroups */
329struct cg_cgroup_link {
330 /*
331 * List running through cg_cgroup_links associated with a
332 * cgroup, anchored on cgroup->css_sets
333 */
Paul Menagebd89aab2007-10-18 23:40:44 -0700334 struct list_head cgrp_link_list;
Paul Menage7717f7b2009-09-23 15:56:22 -0700335 struct cgroup *cgrp;
Paul Menage817929e2007-10-18 23:39:36 -0700336 /*
337 * List running through cg_cgroup_links pointing at a
338 * single css_set object, anchored on css_set->cg_links
339 */
340 struct list_head cg_link_list;
341 struct css_set *cg;
342};
343
344/* The default css_set - used by init and its children prior to any
345 * hierarchies being mounted. It contains a pointer to the root state
346 * for each subsystem. Also used to anchor the list of css_sets. Not
347 * reference-counted, to improve performance when child cgroups
348 * haven't been created.
349 */
350
351static struct css_set init_css_set;
352static struct cg_cgroup_link init_css_set_link;
353
Ben Blume6a11052010-03-10 15:22:09 -0800354static int cgroup_init_idr(struct cgroup_subsys *ss,
355 struct cgroup_subsys_state *css);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700356
Paul Menage817929e2007-10-18 23:39:36 -0700357/* css_set_lock protects the list of css_set objects, and the
358 * chain of tasks off each css_set. Nests outside task->alloc_lock
359 * due to cgroup_iter_start() */
360static DEFINE_RWLOCK(css_set_lock);
361static int css_set_count;
362
Paul Menage7717f7b2009-09-23 15:56:22 -0700363/*
364 * hash table for cgroup groups. This improves the performance to find
365 * an existing css_set. This hash doesn't (currently) take into
366 * account cgroups in empty hierarchies.
367 */
Li Zefan472b1052008-04-29 01:00:11 -0700368#define CSS_SET_HASH_BITS 7
369#define CSS_SET_TABLE_SIZE (1 << CSS_SET_HASH_BITS)
370static struct hlist_head css_set_table[CSS_SET_TABLE_SIZE];
371
372static struct hlist_head *css_set_hash(struct cgroup_subsys_state *css[])
373{
374 int i;
375 int index;
376 unsigned long tmp = 0UL;
377
378 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++)
379 tmp += (unsigned long)css[i];
380 tmp = (tmp >> 16) ^ tmp;
381
382 index = hash_long(tmp, CSS_SET_HASH_BITS);
383
384 return &css_set_table[index];
385}
386
Paul Menage817929e2007-10-18 23:39:36 -0700387/* We don't maintain the lists running through each css_set to its
388 * task until after the first call to cgroup_iter_start(). This
389 * reduces the fork()/exit() overhead for people who have cgroups
390 * compiled into their kernel but not actually in use */
Li Zefan8947f9d2008-07-25 01:46:56 -0700391static int use_task_css_set_links __read_mostly;
Paul Menage817929e2007-10-18 23:39:36 -0700392
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700393static void __put_css_set(struct css_set *cg, int taskexit)
Paul Menageb4f48b62007-10-18 23:39:33 -0700394{
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700395 struct cg_cgroup_link *link;
396 struct cg_cgroup_link *saved_link;
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700397 /*
398 * Ensure that the refcount doesn't hit zero while any readers
399 * can see it. Similar to atomic_dec_and_lock(), but for an
400 * rwlock
401 */
402 if (atomic_add_unless(&cg->refcount, -1, 1))
403 return;
404 write_lock(&css_set_lock);
405 if (!atomic_dec_and_test(&cg->refcount)) {
406 write_unlock(&css_set_lock);
407 return;
408 }
Paul Menage81a6a5c2007-10-18 23:39:38 -0700409
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700410 /* This css_set is dead. unlink it and release cgroup refcounts */
411 hlist_del(&cg->hlist);
412 css_set_count--;
413
414 list_for_each_entry_safe(link, saved_link, &cg->cg_links,
415 cg_link_list) {
416 struct cgroup *cgrp = link->cgrp;
417 list_del(&link->cg_link_list);
418 list_del(&link->cgrp_link_list);
Paul Menagebd89aab2007-10-18 23:40:44 -0700419 if (atomic_dec_and_test(&cgrp->count) &&
420 notify_on_release(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -0700421 if (taskexit)
Paul Menagebd89aab2007-10-18 23:40:44 -0700422 set_bit(CGRP_RELEASABLE, &cgrp->flags);
423 check_for_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700424 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700425
426 kfree(link);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700427 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700428
429 write_unlock(&css_set_lock);
Lai Jiangshan30088ad2011-03-15 17:53:46 +0800430 kfree_rcu(cg, rcu_head);
Paul Menage817929e2007-10-18 23:39:36 -0700431}
432
433/*
434 * refcounted get/put for css_set objects
435 */
436static inline void get_css_set(struct css_set *cg)
437{
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700438 atomic_inc(&cg->refcount);
Paul Menage817929e2007-10-18 23:39:36 -0700439}
440
441static inline void put_css_set(struct css_set *cg)
442{
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700443 __put_css_set(cg, 0);
Paul Menage817929e2007-10-18 23:39:36 -0700444}
445
Paul Menage81a6a5c2007-10-18 23:39:38 -0700446static inline void put_css_set_taskexit(struct css_set *cg)
447{
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700448 __put_css_set(cg, 1);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700449}
450
Paul Menage817929e2007-10-18 23:39:36 -0700451/*
Paul Menage7717f7b2009-09-23 15:56:22 -0700452 * compare_css_sets - helper function for find_existing_css_set().
453 * @cg: candidate css_set being tested
454 * @old_cg: existing css_set for a task
455 * @new_cgrp: cgroup that's being entered by the task
456 * @template: desired set of css pointers in css_set (pre-calculated)
457 *
458 * Returns true if "cg" matches "old_cg" except for the hierarchy
459 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
460 */
461static bool compare_css_sets(struct css_set *cg,
462 struct css_set *old_cg,
463 struct cgroup *new_cgrp,
464 struct cgroup_subsys_state *template[])
465{
466 struct list_head *l1, *l2;
467
468 if (memcmp(template, cg->subsys, sizeof(cg->subsys))) {
469 /* Not all subsystems matched */
470 return false;
471 }
472
473 /*
474 * Compare cgroup pointers in order to distinguish between
475 * different cgroups in heirarchies with no subsystems. We
476 * could get by with just this check alone (and skip the
477 * memcmp above) but on most setups the memcmp check will
478 * avoid the need for this more expensive check on almost all
479 * candidates.
480 */
481
482 l1 = &cg->cg_links;
483 l2 = &old_cg->cg_links;
484 while (1) {
485 struct cg_cgroup_link *cgl1, *cgl2;
486 struct cgroup *cg1, *cg2;
487
488 l1 = l1->next;
489 l2 = l2->next;
490 /* See if we reached the end - both lists are equal length. */
491 if (l1 == &cg->cg_links) {
492 BUG_ON(l2 != &old_cg->cg_links);
493 break;
494 } else {
495 BUG_ON(l2 == &old_cg->cg_links);
496 }
497 /* Locate the cgroups associated with these links. */
498 cgl1 = list_entry(l1, struct cg_cgroup_link, cg_link_list);
499 cgl2 = list_entry(l2, struct cg_cgroup_link, cg_link_list);
500 cg1 = cgl1->cgrp;
501 cg2 = cgl2->cgrp;
502 /* Hierarchies should be linked in the same order. */
503 BUG_ON(cg1->root != cg2->root);
504
505 /*
506 * If this hierarchy is the hierarchy of the cgroup
507 * that's changing, then we need to check that this
508 * css_set points to the new cgroup; if it's any other
509 * hierarchy, then this css_set should point to the
510 * same cgroup as the old css_set.
511 */
512 if (cg1->root == new_cgrp->root) {
513 if (cg1 != new_cgrp)
514 return false;
515 } else {
516 if (cg1 != cg2)
517 return false;
518 }
519 }
520 return true;
521}
522
523/*
Paul Menage817929e2007-10-18 23:39:36 -0700524 * find_existing_css_set() is a helper for
525 * find_css_set(), and checks to see whether an existing
Li Zefan472b1052008-04-29 01:00:11 -0700526 * css_set is suitable.
Paul Menage817929e2007-10-18 23:39:36 -0700527 *
528 * oldcg: the cgroup group that we're using before the cgroup
529 * transition
530 *
Paul Menagebd89aab2007-10-18 23:40:44 -0700531 * cgrp: the cgroup that we're moving into
Paul Menage817929e2007-10-18 23:39:36 -0700532 *
533 * template: location in which to build the desired set of subsystem
534 * state objects for the new cgroup group
535 */
Paul Menage817929e2007-10-18 23:39:36 -0700536static struct css_set *find_existing_css_set(
537 struct css_set *oldcg,
Paul Menagebd89aab2007-10-18 23:40:44 -0700538 struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -0700539 struct cgroup_subsys_state *template[])
540{
541 int i;
Paul Menagebd89aab2007-10-18 23:40:44 -0700542 struct cgroupfs_root *root = cgrp->root;
Li Zefan472b1052008-04-29 01:00:11 -0700543 struct hlist_head *hhead;
544 struct hlist_node *node;
545 struct css_set *cg;
Paul Menage817929e2007-10-18 23:39:36 -0700546
Ben Blumaae8aab2010-03-10 15:22:07 -0800547 /*
548 * Build the set of subsystem state objects that we want to see in the
549 * new css_set. while subsystems can change globally, the entries here
550 * won't change, so no need for locking.
551 */
Paul Menage817929e2007-10-18 23:39:36 -0700552 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Li Zefan8d53d552008-02-23 15:24:11 -0800553 if (root->subsys_bits & (1UL << i)) {
Paul Menage817929e2007-10-18 23:39:36 -0700554 /* Subsystem is in this hierarchy. So we want
555 * the subsystem state from the new
556 * cgroup */
Paul Menagebd89aab2007-10-18 23:40:44 -0700557 template[i] = cgrp->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700558 } else {
559 /* Subsystem is not in this hierarchy, so we
560 * don't want to change the subsystem state */
561 template[i] = oldcg->subsys[i];
562 }
563 }
564
Li Zefan472b1052008-04-29 01:00:11 -0700565 hhead = css_set_hash(template);
566 hlist_for_each_entry(cg, node, hhead, hlist) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700567 if (!compare_css_sets(cg, oldcg, cgrp, template))
568 continue;
569
570 /* This css_set matches what we need */
571 return cg;
Li Zefan472b1052008-04-29 01:00:11 -0700572 }
Paul Menage817929e2007-10-18 23:39:36 -0700573
574 /* No existing cgroup group matched */
575 return NULL;
576}
577
Paul Menage817929e2007-10-18 23:39:36 -0700578static void free_cg_links(struct list_head *tmp)
579{
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700580 struct cg_cgroup_link *link;
581 struct cg_cgroup_link *saved_link;
582
583 list_for_each_entry_safe(link, saved_link, tmp, cgrp_link_list) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700584 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -0700585 kfree(link);
586 }
587}
588
589/*
Li Zefan36553432008-07-29 22:33:19 -0700590 * allocate_cg_links() allocates "count" cg_cgroup_link structures
591 * and chains them on tmp through their cgrp_link_list fields. Returns 0 on
592 * success or a negative error
593 */
594static int allocate_cg_links(int count, struct list_head *tmp)
595{
596 struct cg_cgroup_link *link;
597 int i;
598 INIT_LIST_HEAD(tmp);
599 for (i = 0; i < count; i++) {
600 link = kmalloc(sizeof(*link), GFP_KERNEL);
601 if (!link) {
602 free_cg_links(tmp);
603 return -ENOMEM;
604 }
605 list_add(&link->cgrp_link_list, tmp);
606 }
607 return 0;
608}
609
Li Zefanc12f65d2009-01-07 18:07:42 -0800610/**
611 * link_css_set - a helper function to link a css_set to a cgroup
612 * @tmp_cg_links: cg_cgroup_link objects allocated by allocate_cg_links()
613 * @cg: the css_set to be linked
614 * @cgrp: the destination cgroup
615 */
616static void link_css_set(struct list_head *tmp_cg_links,
617 struct css_set *cg, struct cgroup *cgrp)
618{
619 struct cg_cgroup_link *link;
620
621 BUG_ON(list_empty(tmp_cg_links));
622 link = list_first_entry(tmp_cg_links, struct cg_cgroup_link,
623 cgrp_link_list);
624 link->cg = cg;
Paul Menage7717f7b2009-09-23 15:56:22 -0700625 link->cgrp = cgrp;
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700626 atomic_inc(&cgrp->count);
Li Zefanc12f65d2009-01-07 18:07:42 -0800627 list_move(&link->cgrp_link_list, &cgrp->css_sets);
Paul Menage7717f7b2009-09-23 15:56:22 -0700628 /*
629 * Always add links to the tail of the list so that the list
630 * is sorted by order of hierarchy creation
631 */
632 list_add_tail(&link->cg_link_list, &cg->cg_links);
Li Zefanc12f65d2009-01-07 18:07:42 -0800633}
634
Li Zefan36553432008-07-29 22:33:19 -0700635/*
Paul Menage817929e2007-10-18 23:39:36 -0700636 * find_css_set() takes an existing cgroup group and a
637 * cgroup object, and returns a css_set object that's
638 * equivalent to the old group, but with the given cgroup
639 * substituted into the appropriate hierarchy. Must be called with
640 * cgroup_mutex held
641 */
Paul Menage817929e2007-10-18 23:39:36 -0700642static struct css_set *find_css_set(
Paul Menagebd89aab2007-10-18 23:40:44 -0700643 struct css_set *oldcg, struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700644{
645 struct css_set *res;
646 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT];
Paul Menage817929e2007-10-18 23:39:36 -0700647
648 struct list_head tmp_cg_links;
Paul Menage817929e2007-10-18 23:39:36 -0700649
Li Zefan472b1052008-04-29 01:00:11 -0700650 struct hlist_head *hhead;
Paul Menage7717f7b2009-09-23 15:56:22 -0700651 struct cg_cgroup_link *link;
Li Zefan472b1052008-04-29 01:00:11 -0700652
Paul Menage817929e2007-10-18 23:39:36 -0700653 /* First see if we already have a cgroup group that matches
654 * the desired set */
Li Zefan7e9abd82008-07-25 01:46:54 -0700655 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -0700656 res = find_existing_css_set(oldcg, cgrp, template);
Paul Menage817929e2007-10-18 23:39:36 -0700657 if (res)
658 get_css_set(res);
Li Zefan7e9abd82008-07-25 01:46:54 -0700659 read_unlock(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -0700660
661 if (res)
662 return res;
663
664 res = kmalloc(sizeof(*res), GFP_KERNEL);
665 if (!res)
666 return NULL;
667
668 /* Allocate all the cg_cgroup_link objects that we'll need */
669 if (allocate_cg_links(root_count, &tmp_cg_links) < 0) {
670 kfree(res);
671 return NULL;
672 }
673
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700674 atomic_set(&res->refcount, 1);
Paul Menage817929e2007-10-18 23:39:36 -0700675 INIT_LIST_HEAD(&res->cg_links);
676 INIT_LIST_HEAD(&res->tasks);
Li Zefan472b1052008-04-29 01:00:11 -0700677 INIT_HLIST_NODE(&res->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700678
679 /* Copy the set of subsystem state objects generated in
680 * find_existing_css_set() */
681 memcpy(res->subsys, template, sizeof(res->subsys));
682
683 write_lock(&css_set_lock);
684 /* Add reference counts and links from the new css_set. */
Paul Menage7717f7b2009-09-23 15:56:22 -0700685 list_for_each_entry(link, &oldcg->cg_links, cg_link_list) {
686 struct cgroup *c = link->cgrp;
687 if (c->root == cgrp->root)
688 c = cgrp;
689 link_css_set(&tmp_cg_links, res, c);
690 }
Paul Menage817929e2007-10-18 23:39:36 -0700691
692 BUG_ON(!list_empty(&tmp_cg_links));
693
Paul Menage817929e2007-10-18 23:39:36 -0700694 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -0700695
696 /* Add this cgroup group to the hash table */
697 hhead = css_set_hash(res->subsys);
698 hlist_add_head(&res->hlist, hhead);
699
Paul Menage817929e2007-10-18 23:39:36 -0700700 write_unlock(&css_set_lock);
701
702 return res;
Paul Menageb4f48b62007-10-18 23:39:33 -0700703}
704
Paul Menageddbcc7e2007-10-18 23:39:30 -0700705/*
Paul Menage7717f7b2009-09-23 15:56:22 -0700706 * Return the cgroup for "task" from the given hierarchy. Must be
707 * called with cgroup_mutex held.
708 */
709static struct cgroup *task_cgroup_from_root(struct task_struct *task,
710 struct cgroupfs_root *root)
711{
712 struct css_set *css;
713 struct cgroup *res = NULL;
714
715 BUG_ON(!mutex_is_locked(&cgroup_mutex));
716 read_lock(&css_set_lock);
717 /*
718 * No need to lock the task - since we hold cgroup_mutex the
719 * task can't change groups, so the only thing that can happen
720 * is that it exits and its css is set back to init_css_set.
721 */
722 css = task->cgroups;
723 if (css == &init_css_set) {
724 res = &root->top_cgroup;
725 } else {
726 struct cg_cgroup_link *link;
727 list_for_each_entry(link, &css->cg_links, cg_link_list) {
728 struct cgroup *c = link->cgrp;
729 if (c->root == root) {
730 res = c;
731 break;
732 }
733 }
734 }
735 read_unlock(&css_set_lock);
736 BUG_ON(!res);
737 return res;
738}
739
740/*
Paul Menageddbcc7e2007-10-18 23:39:30 -0700741 * There is one global cgroup mutex. We also require taking
742 * task_lock() when dereferencing a task's cgroup subsys pointers.
743 * See "The task_lock() exception", at the end of this comment.
744 *
745 * A task must hold cgroup_mutex to modify cgroups.
746 *
747 * Any task can increment and decrement the count field without lock.
748 * So in general, code holding cgroup_mutex can't rely on the count
749 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -0800750 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -0700751 * means that no tasks are currently attached, therefore there is no
752 * way a task attached to that cgroup can fork (the other way to
753 * increment the count). So code holding cgroup_mutex can safely
754 * assume that if the count is zero, it will stay zero. Similarly, if
755 * a task holds cgroup_mutex on a cgroup with zero count, it
756 * knows that the cgroup won't be removed, as cgroup_rmdir()
757 * needs that mutex.
758 *
Paul Menageddbcc7e2007-10-18 23:39:30 -0700759 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
760 * (usually) take cgroup_mutex. These are the two most performance
761 * critical pieces of code here. The exception occurs on cgroup_exit(),
762 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
763 * is taken, and if the cgroup count is zero, a usermode call made
Li Zefana043e3b2008-02-23 15:24:09 -0800764 * to the release agent with the name of the cgroup (path relative to
765 * the root of cgroup file system) as the argument.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700766 *
767 * A cgroup can only be deleted if both its 'count' of using tasks
768 * is zero, and its list of 'children' cgroups is empty. Since all
769 * tasks in the system use _some_ cgroup, and since there is always at
770 * least one task in the system (init, pid == 1), therefore, top_cgroup
771 * always has either children cgroups and/or using tasks. So we don't
772 * need a special hack to ensure that top_cgroup cannot be deleted.
773 *
774 * The task_lock() exception
775 *
776 * The need for this exception arises from the action of
Cliff Wickman956db3c2008-02-07 00:14:43 -0800777 * cgroup_attach_task(), which overwrites one tasks cgroup pointer with
Li Zefana043e3b2008-02-23 15:24:09 -0800778 * another. It does so using cgroup_mutex, however there are
Paul Menageddbcc7e2007-10-18 23:39:30 -0700779 * several performance critical places that need to reference
780 * task->cgroup without the expense of grabbing a system global
781 * mutex. Therefore except as noted below, when dereferencing or, as
Cliff Wickman956db3c2008-02-07 00:14:43 -0800782 * in cgroup_attach_task(), modifying a task'ss cgroup pointer we use
Paul Menageddbcc7e2007-10-18 23:39:30 -0700783 * task_lock(), which acts on a spinlock (task->alloc_lock) already in
784 * the task_struct routinely used for such matters.
785 *
786 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -0800787 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700788 */
789
Paul Menageddbcc7e2007-10-18 23:39:30 -0700790/**
791 * cgroup_lock - lock out any changes to cgroup structures
792 *
793 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700794void cgroup_lock(void)
795{
796 mutex_lock(&cgroup_mutex);
797}
Ben Blum67523c42010-03-10 15:22:11 -0800798EXPORT_SYMBOL_GPL(cgroup_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700799
800/**
801 * cgroup_unlock - release lock on cgroup changes
802 *
803 * Undo the lock taken in a previous cgroup_lock() call.
804 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700805void cgroup_unlock(void)
806{
807 mutex_unlock(&cgroup_mutex);
808}
Ben Blum67523c42010-03-10 15:22:11 -0800809EXPORT_SYMBOL_GPL(cgroup_unlock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700810
811/*
812 * A couple of forward declarations required, due to cyclic reference loop:
813 * cgroup_mkdir -> cgroup_create -> cgroup_populate_dir ->
814 * cgroup_add_file -> cgroup_create_file -> cgroup_dir_inode_operations
815 * -> cgroup_mkdir.
816 */
817
Al Viro18bb1db2011-07-26 01:41:39 -0400818static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode);
Al Viroc72a04e2011-01-14 05:31:45 +0000819static struct dentry *cgroup_lookup(struct inode *, struct dentry *, struct nameidata *);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700820static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -0700821static int cgroup_populate_dir(struct cgroup *cgrp);
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -0700822static const struct inode_operations cgroup_dir_inode_operations;
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700823static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -0700824
825static struct backing_dev_info cgroup_backing_dev_info = {
Jens Axboed9938312009-06-12 14:45:52 +0200826 .name = "cgroup",
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700827 .capabilities = BDI_CAP_NO_ACCT_AND_WRITEBACK,
Paul Menagea4243162007-10-18 23:39:35 -0700828};
Paul Menageddbcc7e2007-10-18 23:39:30 -0700829
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700830static int alloc_css_id(struct cgroup_subsys *ss,
831 struct cgroup *parent, struct cgroup *child);
832
Al Viroa5e7ed32011-07-26 01:55:55 -0400833static struct inode *cgroup_new_inode(umode_t mode, struct super_block *sb)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700834{
835 struct inode *inode = new_inode(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700836
837 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400838 inode->i_ino = get_next_ino();
Paul Menageddbcc7e2007-10-18 23:39:30 -0700839 inode->i_mode = mode;
David Howells76aac0e2008-11-14 10:39:12 +1100840 inode->i_uid = current_fsuid();
841 inode->i_gid = current_fsgid();
Paul Menageddbcc7e2007-10-18 23:39:30 -0700842 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
843 inode->i_mapping->backing_dev_info = &cgroup_backing_dev_info;
844 }
845 return inode;
846}
847
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800848/*
849 * Call subsys's pre_destroy handler.
850 * This is called before css refcnt check.
851 */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700852static int cgroup_call_pre_destroy(struct cgroup *cgrp)
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800853{
854 struct cgroup_subsys *ss;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700855 int ret = 0;
856
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800857 for_each_subsys(cgrp->root, ss)
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700858 if (ss->pre_destroy) {
Li Zefan761b3ef2012-01-31 13:47:36 +0800859 ret = ss->pre_destroy(cgrp);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700860 if (ret)
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -0800861 break;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700862 }
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800863
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700864 return ret;
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800865}
866
Paul Menageddbcc7e2007-10-18 23:39:30 -0700867static void cgroup_diput(struct dentry *dentry, struct inode *inode)
868{
869 /* is dentry a directory ? if so, kfree() associated cgroup */
870 if (S_ISDIR(inode->i_mode)) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700871 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800872 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -0700873 BUG_ON(!(cgroup_is_removed(cgrp)));
Paul Menage81a6a5c2007-10-18 23:39:38 -0700874 /* It's possible for external users to be holding css
875 * reference counts on a cgroup; css_put() needs to
876 * be able to access the cgroup after decrementing
877 * the reference count in order to know if it needs to
878 * queue the cgroup to be handled by the release
879 * agent */
880 synchronize_rcu();
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800881
882 mutex_lock(&cgroup_mutex);
883 /*
884 * Release the subsystem state objects.
885 */
Li Zefan75139b82009-01-07 18:07:33 -0800886 for_each_subsys(cgrp->root, ss)
Li Zefan761b3ef2012-01-31 13:47:36 +0800887 ss->destroy(cgrp);
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800888
889 cgrp->root->number_of_cgroups--;
890 mutex_unlock(&cgroup_mutex);
891
Paul Menagea47295e2009-01-07 18:07:44 -0800892 /*
893 * Drop the active superblock reference that we took when we
894 * created the cgroup
895 */
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800896 deactivate_super(cgrp->root->sb);
897
Ben Blum72a8cb32009-09-23 15:56:27 -0700898 /*
899 * if we're getting rid of the cgroup, refcount should ensure
900 * that there are no pidlists left.
901 */
902 BUG_ON(!list_empty(&cgrp->pidlists));
903
Lai Jiangshanf2da1c42011-03-15 17:55:16 +0800904 kfree_rcu(cgrp, rcu_head);
Tejun Heo05ef1d72012-04-01 12:09:56 -0700905 } else {
906 struct cfent *cfe = __d_cfe(dentry);
907 struct cgroup *cgrp = dentry->d_parent->d_fsdata;
908
909 WARN_ONCE(!list_empty(&cfe->node) &&
910 cgrp != &cgrp->root->top_cgroup,
911 "cfe still linked for %s\n", cfe->type->name);
912 kfree(cfe);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700913 }
914 iput(inode);
915}
916
Al Viroc72a04e2011-01-14 05:31:45 +0000917static int cgroup_delete(const struct dentry *d)
918{
919 return 1;
920}
921
Paul Menageddbcc7e2007-10-18 23:39:30 -0700922static void remove_dir(struct dentry *d)
923{
924 struct dentry *parent = dget(d->d_parent);
925
926 d_delete(d);
927 simple_rmdir(parent->d_inode, d);
928 dput(parent);
929}
930
Tejun Heo05ef1d72012-04-01 12:09:56 -0700931static int cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700932{
Tejun Heo05ef1d72012-04-01 12:09:56 -0700933 struct cfent *cfe;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700934
Tejun Heo05ef1d72012-04-01 12:09:56 -0700935 lockdep_assert_held(&cgrp->dentry->d_inode->i_mutex);
936 lockdep_assert_held(&cgroup_mutex);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100937
Tejun Heo05ef1d72012-04-01 12:09:56 -0700938 list_for_each_entry(cfe, &cgrp->files, node) {
939 struct dentry *d = cfe->dentry;
940
941 if (cft && cfe->type != cft)
942 continue;
943
944 dget(d);
945 d_delete(d);
946 simple_unlink(d->d_inode, d);
947 list_del_init(&cfe->node);
948 dput(d);
949
950 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700951 }
Tejun Heo05ef1d72012-04-01 12:09:56 -0700952 return -ENOENT;
953}
954
955static void cgroup_clear_directory(struct dentry *dir)
956{
957 struct cgroup *cgrp = __d_cgrp(dir);
958
959 while (!list_empty(&cgrp->files))
960 cgroup_rm_file(cgrp, NULL);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700961}
962
963/*
964 * NOTE : the dentry must have been dget()'ed
965 */
966static void cgroup_d_remove_dir(struct dentry *dentry)
967{
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100968 struct dentry *parent;
969
Paul Menageddbcc7e2007-10-18 23:39:30 -0700970 cgroup_clear_directory(dentry);
971
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100972 parent = dentry->d_parent;
973 spin_lock(&parent->d_lock);
Li Zefan3ec762a2011-01-14 11:34:34 +0800974 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700975 list_del_init(&dentry->d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100976 spin_unlock(&dentry->d_lock);
977 spin_unlock(&parent->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700978 remove_dir(dentry);
979}
980
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700981/*
982 * A queue for waiters to do rmdir() cgroup. A tasks will sleep when
983 * cgroup->count == 0 && list_empty(&cgroup->children) && subsys has some
984 * reference to css->refcnt. In general, this refcnt is expected to goes down
985 * to zero, soon.
986 *
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700987 * CGRP_WAIT_ON_RMDIR flag is set under cgroup's inode->i_mutex;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700988 */
Kirill A. Shutemov1c6c3fa2011-12-27 07:46:25 +0200989static DECLARE_WAIT_QUEUE_HEAD(cgroup_rmdir_waitq);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700990
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700991static void cgroup_wakeup_rmdir_waiter(struct cgroup *cgrp)
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700992{
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700993 if (unlikely(test_and_clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags)))
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700994 wake_up_all(&cgroup_rmdir_waitq);
995}
996
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700997void cgroup_exclude_rmdir(struct cgroup_subsys_state *css)
998{
999 css_get(css);
1000}
1001
1002void cgroup_release_and_wakeup_rmdir(struct cgroup_subsys_state *css)
1003{
1004 cgroup_wakeup_rmdir_waiter(css->cgroup);
1005 css_put(css);
1006}
1007
Ben Blumaae8aab2010-03-10 15:22:07 -08001008/*
Ben Blumcf5d5942010-03-10 15:22:09 -08001009 * Call with cgroup_mutex held. Drops reference counts on modules, including
1010 * any duplicate ones that parse_cgroupfs_options took. If this function
1011 * returns an error, no reference counts are touched.
Ben Blumaae8aab2010-03-10 15:22:07 -08001012 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001013static int rebind_subsystems(struct cgroupfs_root *root,
1014 unsigned long final_bits)
1015{
1016 unsigned long added_bits, removed_bits;
Paul Menagebd89aab2007-10-18 23:40:44 -07001017 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001018 int i;
1019
Ben Blumaae8aab2010-03-10 15:22:07 -08001020 BUG_ON(!mutex_is_locked(&cgroup_mutex));
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001021 BUG_ON(!mutex_is_locked(&cgroup_root_mutex));
Ben Blumaae8aab2010-03-10 15:22:07 -08001022
Paul Menageddbcc7e2007-10-18 23:39:30 -07001023 removed_bits = root->actual_subsys_bits & ~final_bits;
1024 added_bits = final_bits & ~root->actual_subsys_bits;
1025 /* Check that any added subsystems are currently free */
1026 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Li Zefan8d53d552008-02-23 15:24:11 -08001027 unsigned long bit = 1UL << i;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001028 struct cgroup_subsys *ss = subsys[i];
1029 if (!(bit & added_bits))
1030 continue;
Ben Blumaae8aab2010-03-10 15:22:07 -08001031 /*
1032 * Nobody should tell us to do a subsys that doesn't exist:
1033 * parse_cgroupfs_options should catch that case and refcounts
1034 * ensure that subsystems won't disappear once selected.
1035 */
1036 BUG_ON(ss == NULL);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001037 if (ss->root != &rootnode) {
1038 /* Subsystem isn't free */
1039 return -EBUSY;
1040 }
1041 }
1042
1043 /* Currently we don't handle adding/removing subsystems when
1044 * any child cgroups exist. This is theoretically supportable
1045 * but involves complex error handling, so it's being left until
1046 * later */
Paul Menage307257c2008-12-15 13:54:22 -08001047 if (root->number_of_cgroups > 1)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001048 return -EBUSY;
1049
1050 /* Process each subsystem */
1051 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1052 struct cgroup_subsys *ss = subsys[i];
1053 unsigned long bit = 1UL << i;
1054 if (bit & added_bits) {
1055 /* We're binding this subsystem to this hierarchy */
Ben Blumaae8aab2010-03-10 15:22:07 -08001056 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001057 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001058 BUG_ON(!dummytop->subsys[i]);
1059 BUG_ON(dummytop->subsys[i]->cgroup != dummytop);
Paul Menage999cd8a2009-01-07 18:08:36 -08001060 mutex_lock(&ss->hierarchy_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07001061 cgrp->subsys[i] = dummytop->subsys[i];
1062 cgrp->subsys[i]->cgroup = cgrp;
Li Zefan33a68ac2009-01-07 18:07:42 -08001063 list_move(&ss->sibling, &root->subsys_list);
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001064 ss->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001065 if (ss->bind)
Li Zefan761b3ef2012-01-31 13:47:36 +08001066 ss->bind(cgrp);
Paul Menage999cd8a2009-01-07 18:08:36 -08001067 mutex_unlock(&ss->hierarchy_mutex);
Ben Blumcf5d5942010-03-10 15:22:09 -08001068 /* refcount was already taken, and we're keeping it */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001069 } else if (bit & removed_bits) {
1070 /* We're removing this subsystem */
Ben Blumaae8aab2010-03-10 15:22:07 -08001071 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001072 BUG_ON(cgrp->subsys[i] != dummytop->subsys[i]);
1073 BUG_ON(cgrp->subsys[i]->cgroup != cgrp);
Paul Menage999cd8a2009-01-07 18:08:36 -08001074 mutex_lock(&ss->hierarchy_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001075 if (ss->bind)
Li Zefan761b3ef2012-01-31 13:47:36 +08001076 ss->bind(dummytop);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001077 dummytop->subsys[i]->cgroup = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -07001078 cgrp->subsys[i] = NULL;
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001079 subsys[i]->root = &rootnode;
Li Zefan33a68ac2009-01-07 18:07:42 -08001080 list_move(&ss->sibling, &rootnode.subsys_list);
Paul Menage999cd8a2009-01-07 18:08:36 -08001081 mutex_unlock(&ss->hierarchy_mutex);
Ben Blumcf5d5942010-03-10 15:22:09 -08001082 /* subsystem is now free - drop reference on module */
1083 module_put(ss->module);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001084 } else if (bit & final_bits) {
1085 /* Subsystem state should already exist */
Ben Blumaae8aab2010-03-10 15:22:07 -08001086 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001087 BUG_ON(!cgrp->subsys[i]);
Ben Blumcf5d5942010-03-10 15:22:09 -08001088 /*
1089 * a refcount was taken, but we already had one, so
1090 * drop the extra reference.
1091 */
1092 module_put(ss->module);
1093#ifdef CONFIG_MODULE_UNLOAD
1094 BUG_ON(ss->module && !module_refcount(ss->module));
1095#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001096 } else {
1097 /* Subsystem state shouldn't exist */
Paul Menagebd89aab2007-10-18 23:40:44 -07001098 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001099 }
1100 }
1101 root->subsys_bits = root->actual_subsys_bits = final_bits;
1102 synchronize_rcu();
1103
1104 return 0;
1105}
1106
Al Viro34c80b12011-12-08 21:32:45 -05001107static int cgroup_show_options(struct seq_file *seq, struct dentry *dentry)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001108{
Al Viro34c80b12011-12-08 21:32:45 -05001109 struct cgroupfs_root *root = dentry->d_sb->s_fs_info;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001110 struct cgroup_subsys *ss;
1111
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001112 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001113 for_each_subsys(root, ss)
1114 seq_printf(seq, ",%s", ss->name);
1115 if (test_bit(ROOT_NOPREFIX, &root->flags))
1116 seq_puts(seq, ",noprefix");
Paul Menage81a6a5c2007-10-18 23:39:38 -07001117 if (strlen(root->release_agent_path))
1118 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Daniel Lezcano97978e62010-10-27 15:33:35 -07001119 if (clone_children(&root->top_cgroup))
1120 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001121 if (strlen(root->name))
1122 seq_printf(seq, ",name=%s", root->name);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001123 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001124 return 0;
1125}
1126
1127struct cgroup_sb_opts {
1128 unsigned long subsys_bits;
1129 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001130 char *release_agent;
Daniel Lezcano97978e62010-10-27 15:33:35 -07001131 bool clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001132 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001133 /* User explicitly requested empty subsystem */
1134 bool none;
Paul Menagec6d57f32009-09-23 15:56:19 -07001135
1136 struct cgroupfs_root *new_root;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001137
Paul Menageddbcc7e2007-10-18 23:39:30 -07001138};
1139
Ben Blumaae8aab2010-03-10 15:22:07 -08001140/*
1141 * Convert a hierarchy specifier into a bitmask of subsystems and flags. Call
Ben Blumcf5d5942010-03-10 15:22:09 -08001142 * with cgroup_mutex held to protect the subsys[] array. This function takes
1143 * refcounts on subsystems to be used, unless it returns error, in which case
1144 * no refcounts are taken.
Ben Blumaae8aab2010-03-10 15:22:07 -08001145 */
Ben Blumcf5d5942010-03-10 15:22:09 -08001146static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001147{
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001148 char *token, *o = data;
1149 bool all_ss = false, one_ss = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001150 unsigned long mask = (unsigned long)-1;
Ben Blumcf5d5942010-03-10 15:22:09 -08001151 int i;
1152 bool module_pin_failed = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001153
Ben Blumaae8aab2010-03-10 15:22:07 -08001154 BUG_ON(!mutex_is_locked(&cgroup_mutex));
1155
Li Zefanf9ab5b52009-06-17 16:26:33 -07001156#ifdef CONFIG_CPUSETS
1157 mask = ~(1UL << cpuset_subsys_id);
1158#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001159
Paul Menagec6d57f32009-09-23 15:56:19 -07001160 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001161
1162 while ((token = strsep(&o, ",")) != NULL) {
1163 if (!*token)
1164 return -EINVAL;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001165 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001166 /* Explicitly have no subsystems */
1167 opts->none = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001168 continue;
1169 }
1170 if (!strcmp(token, "all")) {
1171 /* Mutually exclusive option 'all' + subsystem name */
1172 if (one_ss)
1173 return -EINVAL;
1174 all_ss = true;
1175 continue;
1176 }
1177 if (!strcmp(token, "noprefix")) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001178 set_bit(ROOT_NOPREFIX, &opts->flags);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001179 continue;
1180 }
1181 if (!strcmp(token, "clone_children")) {
Daniel Lezcano97978e62010-10-27 15:33:35 -07001182 opts->clone_children = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001183 continue;
1184 }
1185 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001186 /* Specifying two release agents is forbidden */
1187 if (opts->release_agent)
1188 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001189 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001190 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001191 if (!opts->release_agent)
1192 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001193 continue;
1194 }
1195 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001196 const char *name = token + 5;
1197 /* Can't specify an empty name */
1198 if (!strlen(name))
1199 return -EINVAL;
1200 /* Must match [\w.-]+ */
1201 for (i = 0; i < strlen(name); i++) {
1202 char c = name[i];
1203 if (isalnum(c))
1204 continue;
1205 if ((c == '.') || (c == '-') || (c == '_'))
1206 continue;
1207 return -EINVAL;
1208 }
1209 /* Specifying two names is forbidden */
1210 if (opts->name)
1211 return -EINVAL;
1212 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001213 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001214 GFP_KERNEL);
1215 if (!opts->name)
1216 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001217
1218 continue;
1219 }
1220
1221 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1222 struct cgroup_subsys *ss = subsys[i];
1223 if (ss == NULL)
1224 continue;
1225 if (strcmp(token, ss->name))
1226 continue;
1227 if (ss->disabled)
1228 continue;
1229
1230 /* Mutually exclusive option 'all' + subsystem name */
1231 if (all_ss)
1232 return -EINVAL;
1233 set_bit(i, &opts->subsys_bits);
1234 one_ss = true;
1235
1236 break;
1237 }
1238 if (i == CGROUP_SUBSYS_COUNT)
1239 return -ENOENT;
1240 }
1241
1242 /*
1243 * If the 'all' option was specified select all the subsystems,
Li Zefan0d19ea82011-12-27 14:25:55 +08001244 * otherwise if 'none', 'name=' and a subsystem name options
1245 * were not specified, let's default to 'all'
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001246 */
Li Zefan0d19ea82011-12-27 14:25:55 +08001247 if (all_ss || (!one_ss && !opts->none && !opts->name)) {
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001248 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1249 struct cgroup_subsys *ss = subsys[i];
1250 if (ss == NULL)
1251 continue;
1252 if (ss->disabled)
1253 continue;
1254 set_bit(i, &opts->subsys_bits);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001255 }
1256 }
1257
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001258 /* Consistency checks */
1259
Li Zefanf9ab5b52009-06-17 16:26:33 -07001260 /*
1261 * Option noprefix was introduced just for backward compatibility
1262 * with the old cpuset, so we allow noprefix only if mounting just
1263 * the cpuset subsystem.
1264 */
1265 if (test_bit(ROOT_NOPREFIX, &opts->flags) &&
1266 (opts->subsys_bits & mask))
1267 return -EINVAL;
1268
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001269
1270 /* Can't specify "none" and some subsystems */
1271 if (opts->subsys_bits && opts->none)
1272 return -EINVAL;
1273
1274 /*
1275 * We either have to specify by name or by subsystems. (So all
1276 * empty hierarchies must have a name).
1277 */
Paul Menagec6d57f32009-09-23 15:56:19 -07001278 if (!opts->subsys_bits && !opts->name)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001279 return -EINVAL;
1280
Ben Blumcf5d5942010-03-10 15:22:09 -08001281 /*
1282 * Grab references on all the modules we'll need, so the subsystems
1283 * don't dance around before rebind_subsystems attaches them. This may
1284 * take duplicate reference counts on a subsystem that's already used,
1285 * but rebind_subsystems handles this case.
1286 */
1287 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
1288 unsigned long bit = 1UL << i;
1289
1290 if (!(bit & opts->subsys_bits))
1291 continue;
1292 if (!try_module_get(subsys[i]->module)) {
1293 module_pin_failed = true;
1294 break;
1295 }
1296 }
1297 if (module_pin_failed) {
1298 /*
1299 * oops, one of the modules was going away. this means that we
1300 * raced with a module_delete call, and to the user this is
1301 * essentially a "subsystem doesn't exist" case.
1302 */
1303 for (i--; i >= CGROUP_BUILTIN_SUBSYS_COUNT; i--) {
1304 /* drop refcounts only on the ones we took */
1305 unsigned long bit = 1UL << i;
1306
1307 if (!(bit & opts->subsys_bits))
1308 continue;
1309 module_put(subsys[i]->module);
1310 }
1311 return -ENOENT;
1312 }
1313
Paul Menageddbcc7e2007-10-18 23:39:30 -07001314 return 0;
1315}
1316
Ben Blumcf5d5942010-03-10 15:22:09 -08001317static void drop_parsed_module_refcounts(unsigned long subsys_bits)
1318{
1319 int i;
1320 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
1321 unsigned long bit = 1UL << i;
1322
1323 if (!(bit & subsys_bits))
1324 continue;
1325 module_put(subsys[i]->module);
1326 }
1327}
1328
Paul Menageddbcc7e2007-10-18 23:39:30 -07001329static int cgroup_remount(struct super_block *sb, int *flags, char *data)
1330{
1331 int ret = 0;
1332 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001333 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001334 struct cgroup_sb_opts opts;
1335
Paul Menagebd89aab2007-10-18 23:40:44 -07001336 mutex_lock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001337 mutex_lock(&cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001338 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001339
1340 /* See what subsystems are wanted */
1341 ret = parse_cgroupfs_options(data, &opts);
1342 if (ret)
1343 goto out_unlock;
1344
Tejun Heo8b5a5a92012-04-01 12:09:54 -07001345 /* See feature-removal-schedule.txt */
1346 if (opts.subsys_bits != root->actual_subsys_bits || opts.release_agent)
1347 pr_warning("cgroup: option changes via remount are deprecated (pid=%d comm=%s)\n",
1348 task_tgid_nr(current), current->comm);
1349
Ben Blumcf5d5942010-03-10 15:22:09 -08001350 /* Don't allow flags or name to change at remount */
1351 if (opts.flags != root->flags ||
1352 (opts.name && strcmp(opts.name, root->name))) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001353 ret = -EINVAL;
Ben Blumcf5d5942010-03-10 15:22:09 -08001354 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menagec6d57f32009-09-23 15:56:19 -07001355 goto out_unlock;
1356 }
1357
Paul Menageddbcc7e2007-10-18 23:39:30 -07001358 ret = rebind_subsystems(root, opts.subsys_bits);
Ben Blumcf5d5942010-03-10 15:22:09 -08001359 if (ret) {
1360 drop_parsed_module_refcounts(opts.subsys_bits);
Li Zefan0670e082009-04-02 16:57:30 -07001361 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001362 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001363
Tejun Heoff4c8d52012-04-01 12:09:54 -07001364 /* clear out any existing files and repopulate subsystem files */
1365 cgroup_clear_directory(cgrp->dentry);
Li Zefan0670e082009-04-02 16:57:30 -07001366 cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001367
Paul Menage81a6a5c2007-10-18 23:39:38 -07001368 if (opts.release_agent)
1369 strcpy(root->release_agent_path, opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001370 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001371 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001372 kfree(opts.name);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001373 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001374 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07001375 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001376 return ret;
1377}
1378
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001379static const struct super_operations cgroup_ops = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001380 .statfs = simple_statfs,
1381 .drop_inode = generic_delete_inode,
1382 .show_options = cgroup_show_options,
1383 .remount_fs = cgroup_remount,
1384};
1385
Paul Menagecc31edc2008-10-18 20:28:04 -07001386static void init_cgroup_housekeeping(struct cgroup *cgrp)
1387{
1388 INIT_LIST_HEAD(&cgrp->sibling);
1389 INIT_LIST_HEAD(&cgrp->children);
Tejun Heo05ef1d72012-04-01 12:09:56 -07001390 INIT_LIST_HEAD(&cgrp->files);
Paul Menagecc31edc2008-10-18 20:28:04 -07001391 INIT_LIST_HEAD(&cgrp->css_sets);
1392 INIT_LIST_HEAD(&cgrp->release_list);
Ben Blum72a8cb32009-09-23 15:56:27 -07001393 INIT_LIST_HEAD(&cgrp->pidlists);
1394 mutex_init(&cgrp->pidlist_mutex);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08001395 INIT_LIST_HEAD(&cgrp->event_list);
1396 spin_lock_init(&cgrp->event_list_lock);
Paul Menagecc31edc2008-10-18 20:28:04 -07001397}
Paul Menagec6d57f32009-09-23 15:56:19 -07001398
Paul Menageddbcc7e2007-10-18 23:39:30 -07001399static void init_cgroup_root(struct cgroupfs_root *root)
1400{
Paul Menagebd89aab2007-10-18 23:40:44 -07001401 struct cgroup *cgrp = &root->top_cgroup;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001402
Paul Menageddbcc7e2007-10-18 23:39:30 -07001403 INIT_LIST_HEAD(&root->subsys_list);
1404 INIT_LIST_HEAD(&root->root_list);
Tejun Heob0ca5a82012-04-01 12:09:54 -07001405 INIT_LIST_HEAD(&root->allcg_list);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001406 root->number_of_cgroups = 1;
Paul Menagebd89aab2007-10-18 23:40:44 -07001407 cgrp->root = root;
1408 cgrp->top_cgroup = cgrp;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001409 list_add_tail(&cgrp->allcg_node, &root->allcg_list);
Paul Menagecc31edc2008-10-18 20:28:04 -07001410 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001411}
1412
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001413static bool init_root_id(struct cgroupfs_root *root)
1414{
1415 int ret = 0;
1416
1417 do {
1418 if (!ida_pre_get(&hierarchy_ida, GFP_KERNEL))
1419 return false;
1420 spin_lock(&hierarchy_id_lock);
1421 /* Try to allocate the next unused ID */
1422 ret = ida_get_new_above(&hierarchy_ida, next_hierarchy_id,
1423 &root->hierarchy_id);
1424 if (ret == -ENOSPC)
1425 /* Try again starting from 0 */
1426 ret = ida_get_new(&hierarchy_ida, &root->hierarchy_id);
1427 if (!ret) {
1428 next_hierarchy_id = root->hierarchy_id + 1;
1429 } else if (ret != -EAGAIN) {
1430 /* Can only get here if the 31-bit IDR is full ... */
1431 BUG_ON(ret);
1432 }
1433 spin_unlock(&hierarchy_id_lock);
1434 } while (ret);
1435 return true;
1436}
1437
Paul Menageddbcc7e2007-10-18 23:39:30 -07001438static int cgroup_test_super(struct super_block *sb, void *data)
1439{
Paul Menagec6d57f32009-09-23 15:56:19 -07001440 struct cgroup_sb_opts *opts = data;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001441 struct cgroupfs_root *root = sb->s_fs_info;
1442
Paul Menagec6d57f32009-09-23 15:56:19 -07001443 /* If we asked for a name then it must match */
1444 if (opts->name && strcmp(opts->name, root->name))
1445 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001446
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001447 /*
1448 * If we asked for subsystems (or explicitly for no
1449 * subsystems) then they must match
1450 */
1451 if ((opts->subsys_bits || opts->none)
1452 && (opts->subsys_bits != root->subsys_bits))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001453 return 0;
1454
1455 return 1;
1456}
1457
Paul Menagec6d57f32009-09-23 15:56:19 -07001458static struct cgroupfs_root *cgroup_root_from_opts(struct cgroup_sb_opts *opts)
1459{
1460 struct cgroupfs_root *root;
1461
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001462 if (!opts->subsys_bits && !opts->none)
Paul Menagec6d57f32009-09-23 15:56:19 -07001463 return NULL;
1464
1465 root = kzalloc(sizeof(*root), GFP_KERNEL);
1466 if (!root)
1467 return ERR_PTR(-ENOMEM);
1468
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001469 if (!init_root_id(root)) {
1470 kfree(root);
1471 return ERR_PTR(-ENOMEM);
1472 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001473 init_cgroup_root(root);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001474
Paul Menagec6d57f32009-09-23 15:56:19 -07001475 root->subsys_bits = opts->subsys_bits;
1476 root->flags = opts->flags;
1477 if (opts->release_agent)
1478 strcpy(root->release_agent_path, opts->release_agent);
1479 if (opts->name)
1480 strcpy(root->name, opts->name);
Daniel Lezcano97978e62010-10-27 15:33:35 -07001481 if (opts->clone_children)
1482 set_bit(CGRP_CLONE_CHILDREN, &root->top_cgroup.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001483 return root;
1484}
1485
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001486static void cgroup_drop_root(struct cgroupfs_root *root)
1487{
1488 if (!root)
1489 return;
1490
1491 BUG_ON(!root->hierarchy_id);
1492 spin_lock(&hierarchy_id_lock);
1493 ida_remove(&hierarchy_ida, root->hierarchy_id);
1494 spin_unlock(&hierarchy_id_lock);
1495 kfree(root);
1496}
1497
Paul Menageddbcc7e2007-10-18 23:39:30 -07001498static int cgroup_set_super(struct super_block *sb, void *data)
1499{
1500 int ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001501 struct cgroup_sb_opts *opts = data;
1502
1503 /* If we don't have a new root, we can't set up a new sb */
1504 if (!opts->new_root)
1505 return -EINVAL;
1506
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001507 BUG_ON(!opts->subsys_bits && !opts->none);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001508
1509 ret = set_anon_super(sb, NULL);
1510 if (ret)
1511 return ret;
1512
Paul Menagec6d57f32009-09-23 15:56:19 -07001513 sb->s_fs_info = opts->new_root;
1514 opts->new_root->sb = sb;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001515
1516 sb->s_blocksize = PAGE_CACHE_SIZE;
1517 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
1518 sb->s_magic = CGROUP_SUPER_MAGIC;
1519 sb->s_op = &cgroup_ops;
1520
1521 return 0;
1522}
1523
1524static int cgroup_get_rootdir(struct super_block *sb)
1525{
Al Viro0df6a632010-12-21 13:29:29 -05001526 static const struct dentry_operations cgroup_dops = {
1527 .d_iput = cgroup_diput,
Al Viroc72a04e2011-01-14 05:31:45 +00001528 .d_delete = cgroup_delete,
Al Viro0df6a632010-12-21 13:29:29 -05001529 };
1530
Paul Menageddbcc7e2007-10-18 23:39:30 -07001531 struct inode *inode =
1532 cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001533
1534 if (!inode)
1535 return -ENOMEM;
1536
Paul Menageddbcc7e2007-10-18 23:39:30 -07001537 inode->i_fop = &simple_dir_operations;
1538 inode->i_op = &cgroup_dir_inode_operations;
1539 /* directories start off with i_nlink == 2 (for "." entry) */
1540 inc_nlink(inode);
Al Viro48fde702012-01-08 22:15:13 -05001541 sb->s_root = d_make_root(inode);
1542 if (!sb->s_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001543 return -ENOMEM;
Al Viro0df6a632010-12-21 13:29:29 -05001544 /* for everything else we want ->d_op set */
1545 sb->s_d_op = &cgroup_dops;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001546 return 0;
1547}
1548
Al Virof7e83572010-07-26 13:23:11 +04001549static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001550 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001551 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001552{
1553 struct cgroup_sb_opts opts;
Paul Menagec6d57f32009-09-23 15:56:19 -07001554 struct cgroupfs_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001555 int ret = 0;
1556 struct super_block *sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001557 struct cgroupfs_root *new_root;
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001558 struct inode *inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001559
1560 /* First find the desired set of subsystems */
Ben Blumaae8aab2010-03-10 15:22:07 -08001561 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001562 ret = parse_cgroupfs_options(data, &opts);
Ben Blumaae8aab2010-03-10 15:22:07 -08001563 mutex_unlock(&cgroup_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001564 if (ret)
1565 goto out_err;
1566
1567 /*
1568 * Allocate a new cgroup root. We may not need it if we're
1569 * reusing an existing hierarchy.
1570 */
1571 new_root = cgroup_root_from_opts(&opts);
1572 if (IS_ERR(new_root)) {
1573 ret = PTR_ERR(new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001574 goto drop_modules;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001575 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001576 opts.new_root = new_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001577
Paul Menagec6d57f32009-09-23 15:56:19 -07001578 /* Locate an existing or new sb for this hierarchy */
1579 sb = sget(fs_type, cgroup_test_super, cgroup_set_super, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001580 if (IS_ERR(sb)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001581 ret = PTR_ERR(sb);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001582 cgroup_drop_root(opts.new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001583 goto drop_modules;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001584 }
1585
Paul Menagec6d57f32009-09-23 15:56:19 -07001586 root = sb->s_fs_info;
1587 BUG_ON(!root);
1588 if (root == opts.new_root) {
1589 /* We used the new root structure, so this is a new hierarchy */
1590 struct list_head tmp_cg_links;
Li Zefanc12f65d2009-01-07 18:07:42 -08001591 struct cgroup *root_cgrp = &root->top_cgroup;
Paul Menagec6d57f32009-09-23 15:56:19 -07001592 struct cgroupfs_root *existing_root;
eparis@redhat2ce97382011-06-02 21:20:51 +10001593 const struct cred *cred;
Li Zefan28fd5df2008-04-29 01:00:13 -07001594 int i;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001595
1596 BUG_ON(sb->s_root != NULL);
1597
1598 ret = cgroup_get_rootdir(sb);
1599 if (ret)
1600 goto drop_new_super;
Paul Menage817929e2007-10-18 23:39:36 -07001601 inode = sb->s_root->d_inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001602
Paul Menage817929e2007-10-18 23:39:36 -07001603 mutex_lock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001604 mutex_lock(&cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001605 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001606
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001607 /* Check for name clashes with existing mounts */
1608 ret = -EBUSY;
1609 if (strlen(root->name))
1610 for_each_active_root(existing_root)
1611 if (!strcmp(existing_root->name, root->name))
1612 goto unlock_drop;
Paul Menagec6d57f32009-09-23 15:56:19 -07001613
Paul Menage817929e2007-10-18 23:39:36 -07001614 /*
1615 * We're accessing css_set_count without locking
1616 * css_set_lock here, but that's OK - it can only be
1617 * increased by someone holding cgroup_lock, and
1618 * that's us. The worst that can happen is that we
1619 * have some link structures left over
1620 */
1621 ret = allocate_cg_links(css_set_count, &tmp_cg_links);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001622 if (ret)
1623 goto unlock_drop;
Paul Menage817929e2007-10-18 23:39:36 -07001624
Paul Menageddbcc7e2007-10-18 23:39:30 -07001625 ret = rebind_subsystems(root, root->subsys_bits);
1626 if (ret == -EBUSY) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001627 free_cg_links(&tmp_cg_links);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001628 goto unlock_drop;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001629 }
Ben Blumcf5d5942010-03-10 15:22:09 -08001630 /*
1631 * There must be no failure case after here, since rebinding
1632 * takes care of subsystems' refcounts, which are explicitly
1633 * dropped in the failure exit path.
1634 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001635
1636 /* EBUSY should be the only error here */
1637 BUG_ON(ret);
1638
1639 list_add(&root->root_list, &roots);
Paul Menage817929e2007-10-18 23:39:36 -07001640 root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001641
Li Zefanc12f65d2009-01-07 18:07:42 -08001642 sb->s_root->d_fsdata = root_cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001643 root->top_cgroup.dentry = sb->s_root;
1644
Paul Menage817929e2007-10-18 23:39:36 -07001645 /* Link the top cgroup in this hierarchy into all
1646 * the css_set objects */
1647 write_lock(&css_set_lock);
Li Zefan28fd5df2008-04-29 01:00:13 -07001648 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
1649 struct hlist_head *hhead = &css_set_table[i];
1650 struct hlist_node *node;
Paul Menage817929e2007-10-18 23:39:36 -07001651 struct css_set *cg;
Li Zefan28fd5df2008-04-29 01:00:13 -07001652
Li Zefanc12f65d2009-01-07 18:07:42 -08001653 hlist_for_each_entry(cg, node, hhead, hlist)
1654 link_css_set(&tmp_cg_links, cg, root_cgrp);
Li Zefan28fd5df2008-04-29 01:00:13 -07001655 }
Paul Menage817929e2007-10-18 23:39:36 -07001656 write_unlock(&css_set_lock);
1657
1658 free_cg_links(&tmp_cg_links);
1659
Li Zefanc12f65d2009-01-07 18:07:42 -08001660 BUG_ON(!list_empty(&root_cgrp->sibling));
1661 BUG_ON(!list_empty(&root_cgrp->children));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001662 BUG_ON(root->number_of_cgroups != 1);
1663
eparis@redhat2ce97382011-06-02 21:20:51 +10001664 cred = override_creds(&init_cred);
Li Zefanc12f65d2009-01-07 18:07:42 -08001665 cgroup_populate_dir(root_cgrp);
eparis@redhat2ce97382011-06-02 21:20:51 +10001666 revert_creds(cred);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001667 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001668 mutex_unlock(&cgroup_mutex);
Xiaotian Feng34f77a92009-09-23 15:56:18 -07001669 mutex_unlock(&inode->i_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001670 } else {
1671 /*
1672 * We re-used an existing hierarchy - the new root (if
1673 * any) is not needed
1674 */
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001675 cgroup_drop_root(opts.new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001676 /* no subsys rebinding, so refcounts don't change */
1677 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001678 }
1679
Paul Menagec6d57f32009-09-23 15:56:19 -07001680 kfree(opts.release_agent);
1681 kfree(opts.name);
Al Virof7e83572010-07-26 13:23:11 +04001682 return dget(sb->s_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001683
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001684 unlock_drop:
1685 mutex_unlock(&cgroup_root_mutex);
1686 mutex_unlock(&cgroup_mutex);
1687 mutex_unlock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001688 drop_new_super:
Al Viro6f5bbff2009-05-06 01:34:22 -04001689 deactivate_locked_super(sb);
Ben Blumcf5d5942010-03-10 15:22:09 -08001690 drop_modules:
1691 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menagec6d57f32009-09-23 15:56:19 -07001692 out_err:
1693 kfree(opts.release_agent);
1694 kfree(opts.name);
Al Virof7e83572010-07-26 13:23:11 +04001695 return ERR_PTR(ret);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001696}
1697
1698static void cgroup_kill_sb(struct super_block *sb) {
1699 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001700 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001701 int ret;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001702 struct cg_cgroup_link *link;
1703 struct cg_cgroup_link *saved_link;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001704
1705 BUG_ON(!root);
1706
1707 BUG_ON(root->number_of_cgroups != 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001708 BUG_ON(!list_empty(&cgrp->children));
1709 BUG_ON(!list_empty(&cgrp->sibling));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001710
1711 mutex_lock(&cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001712 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001713
1714 /* Rebind all subsystems back to the default hierarchy */
1715 ret = rebind_subsystems(root, 0);
1716 /* Shouldn't be able to fail ... */
1717 BUG_ON(ret);
1718
Paul Menage817929e2007-10-18 23:39:36 -07001719 /*
1720 * Release all the links from css_sets to this hierarchy's
1721 * root cgroup
1722 */
1723 write_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001724
1725 list_for_each_entry_safe(link, saved_link, &cgrp->css_sets,
1726 cgrp_link_list) {
Paul Menage817929e2007-10-18 23:39:36 -07001727 list_del(&link->cg_link_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07001728 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001729 kfree(link);
1730 }
1731 write_unlock(&css_set_lock);
1732
Paul Menage839ec542009-01-29 14:25:22 -08001733 if (!list_empty(&root->root_list)) {
1734 list_del(&root->root_list);
1735 root_count--;
1736 }
Li Zefane5f6a862009-01-07 18:07:41 -08001737
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001738 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001739 mutex_unlock(&cgroup_mutex);
1740
Paul Menageddbcc7e2007-10-18 23:39:30 -07001741 kill_litter_super(sb);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001742 cgroup_drop_root(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001743}
1744
1745static struct file_system_type cgroup_fs_type = {
1746 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001747 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001748 .kill_sb = cgroup_kill_sb,
1749};
1750
Greg KH676db4a2010-08-05 13:53:35 -07001751static struct kobject *cgroup_kobj;
1752
Li Zefana043e3b2008-02-23 15:24:09 -08001753/**
1754 * cgroup_path - generate the path of a cgroup
1755 * @cgrp: the cgroup in question
1756 * @buf: the buffer to write the path into
1757 * @buflen: the length of the buffer
1758 *
Paul Menagea47295e2009-01-07 18:07:44 -08001759 * Called with cgroup_mutex held or else with an RCU-protected cgroup
1760 * reference. Writes path of cgroup into buf. Returns 0 on success,
1761 * -errno on error.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001762 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001763int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001764{
1765 char *start;
Li Zefan9a9686b2010-04-22 17:29:24 +08001766 struct dentry *dentry = rcu_dereference_check(cgrp->dentry,
Li Zefan9a9686b2010-04-22 17:29:24 +08001767 cgroup_lock_is_held());
Paul Menageddbcc7e2007-10-18 23:39:30 -07001768
Paul Menagea47295e2009-01-07 18:07:44 -08001769 if (!dentry || cgrp == dummytop) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001770 /*
1771 * Inactive subsystems have no dentry for their root
1772 * cgroup
1773 */
1774 strcpy(buf, "/");
1775 return 0;
1776 }
1777
1778 start = buf + buflen;
1779
1780 *--start = '\0';
1781 for (;;) {
Paul Menagea47295e2009-01-07 18:07:44 -08001782 int len = dentry->d_name.len;
Li Zefan9a9686b2010-04-22 17:29:24 +08001783
Paul Menageddbcc7e2007-10-18 23:39:30 -07001784 if ((start -= len) < buf)
1785 return -ENAMETOOLONG;
Li Zefan9a9686b2010-04-22 17:29:24 +08001786 memcpy(start, dentry->d_name.name, len);
Paul Menagebd89aab2007-10-18 23:40:44 -07001787 cgrp = cgrp->parent;
1788 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001789 break;
Li Zefan9a9686b2010-04-22 17:29:24 +08001790
1791 dentry = rcu_dereference_check(cgrp->dentry,
Li Zefan9a9686b2010-04-22 17:29:24 +08001792 cgroup_lock_is_held());
Paul Menagebd89aab2007-10-18 23:40:44 -07001793 if (!cgrp->parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001794 continue;
1795 if (--start < buf)
1796 return -ENAMETOOLONG;
1797 *start = '/';
1798 }
1799 memmove(buf, start, buf + buflen - start);
1800 return 0;
1801}
Ben Blum67523c42010-03-10 15:22:11 -08001802EXPORT_SYMBOL_GPL(cgroup_path);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001803
Ben Blum74a11662011-05-26 16:25:20 -07001804/*
Tejun Heo2f7ee562011-12-12 18:12:21 -08001805 * Control Group taskset
1806 */
Tejun Heo134d3372011-12-12 18:12:21 -08001807struct task_and_cgroup {
1808 struct task_struct *task;
1809 struct cgroup *cgrp;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001810 struct css_set *cg;
Tejun Heo134d3372011-12-12 18:12:21 -08001811};
1812
Tejun Heo2f7ee562011-12-12 18:12:21 -08001813struct cgroup_taskset {
1814 struct task_and_cgroup single;
1815 struct flex_array *tc_array;
1816 int tc_array_len;
1817 int idx;
1818 struct cgroup *cur_cgrp;
1819};
1820
1821/**
1822 * cgroup_taskset_first - reset taskset and return the first task
1823 * @tset: taskset of interest
1824 *
1825 * @tset iteration is initialized and the first task is returned.
1826 */
1827struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
1828{
1829 if (tset->tc_array) {
1830 tset->idx = 0;
1831 return cgroup_taskset_next(tset);
1832 } else {
1833 tset->cur_cgrp = tset->single.cgrp;
1834 return tset->single.task;
1835 }
1836}
1837EXPORT_SYMBOL_GPL(cgroup_taskset_first);
1838
1839/**
1840 * cgroup_taskset_next - iterate to the next task in taskset
1841 * @tset: taskset of interest
1842 *
1843 * Return the next task in @tset. Iteration must have been initialized
1844 * with cgroup_taskset_first().
1845 */
1846struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
1847{
1848 struct task_and_cgroup *tc;
1849
1850 if (!tset->tc_array || tset->idx >= tset->tc_array_len)
1851 return NULL;
1852
1853 tc = flex_array_get(tset->tc_array, tset->idx++);
1854 tset->cur_cgrp = tc->cgrp;
1855 return tc->task;
1856}
1857EXPORT_SYMBOL_GPL(cgroup_taskset_next);
1858
1859/**
1860 * cgroup_taskset_cur_cgroup - return the matching cgroup for the current task
1861 * @tset: taskset of interest
1862 *
1863 * Return the cgroup for the current (last returned) task of @tset. This
1864 * function must be preceded by either cgroup_taskset_first() or
1865 * cgroup_taskset_next().
1866 */
1867struct cgroup *cgroup_taskset_cur_cgroup(struct cgroup_taskset *tset)
1868{
1869 return tset->cur_cgrp;
1870}
1871EXPORT_SYMBOL_GPL(cgroup_taskset_cur_cgroup);
1872
1873/**
1874 * cgroup_taskset_size - return the number of tasks in taskset
1875 * @tset: taskset of interest
1876 */
1877int cgroup_taskset_size(struct cgroup_taskset *tset)
1878{
1879 return tset->tc_array ? tset->tc_array_len : 1;
1880}
1881EXPORT_SYMBOL_GPL(cgroup_taskset_size);
1882
1883
Ben Blum74a11662011-05-26 16:25:20 -07001884/*
1885 * cgroup_task_migrate - move a task from one cgroup to another.
1886 *
1887 * 'guarantee' is set if the caller promises that a new css_set for the task
1888 * will already exist. If not set, this function might sleep, and can fail with
Tejun Heocd3d0952011-12-12 18:12:21 -08001889 * -ENOMEM. Must be called with cgroup_mutex and threadgroup locked.
Ben Blum74a11662011-05-26 16:25:20 -07001890 */
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001891static void cgroup_task_migrate(struct cgroup *cgrp, struct cgroup *oldcgrp,
1892 struct task_struct *tsk, struct css_set *newcg)
Ben Blum74a11662011-05-26 16:25:20 -07001893{
1894 struct css_set *oldcg;
Ben Blum74a11662011-05-26 16:25:20 -07001895
1896 /*
Mandeep Singh Baines026085e2011-12-21 20:18:35 -08001897 * We are synchronized through threadgroup_lock() against PF_EXITING
1898 * setting such that we can't race against cgroup_exit() changing the
1899 * css_set to init_css_set and dropping the old one.
Ben Blum74a11662011-05-26 16:25:20 -07001900 */
Frederic Weisbeckerc84cdf72011-12-21 20:03:18 +01001901 WARN_ON_ONCE(tsk->flags & PF_EXITING);
Ben Blum74a11662011-05-26 16:25:20 -07001902 oldcg = tsk->cgroups;
Ben Blum74a11662011-05-26 16:25:20 -07001903
Ben Blum74a11662011-05-26 16:25:20 -07001904 task_lock(tsk);
Ben Blum74a11662011-05-26 16:25:20 -07001905 rcu_assign_pointer(tsk->cgroups, newcg);
1906 task_unlock(tsk);
1907
1908 /* Update the css_set linked lists if we're using them */
1909 write_lock(&css_set_lock);
1910 if (!list_empty(&tsk->cg_list))
1911 list_move(&tsk->cg_list, &newcg->tasks);
1912 write_unlock(&css_set_lock);
1913
1914 /*
1915 * We just gained a reference on oldcg by taking it from the task. As
1916 * trading it for newcg is protected by cgroup_mutex, we're safe to drop
1917 * it here; it will be freed under RCU.
1918 */
1919 put_css_set(oldcg);
1920
1921 set_bit(CGRP_RELEASABLE, &oldcgrp->flags);
Ben Blum74a11662011-05-26 16:25:20 -07001922}
1923
Li Zefana043e3b2008-02-23 15:24:09 -08001924/**
1925 * cgroup_attach_task - attach task 'tsk' to cgroup 'cgrp'
1926 * @cgrp: the cgroup the task is attaching to
1927 * @tsk: the task to be attached
Paul Menagebbcb81d2007-10-18 23:39:32 -07001928 *
Tejun Heocd3d0952011-12-12 18:12:21 -08001929 * Call with cgroup_mutex and threadgroup locked. May take task_lock of
1930 * @tsk during call.
Paul Menagebbcb81d2007-10-18 23:39:32 -07001931 */
Cliff Wickman956db3c2008-02-07 00:14:43 -08001932int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001933{
Tejun Heo8f121912012-03-29 22:03:33 -07001934 int retval = 0;
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001935 struct cgroup_subsys *ss, *failed_ss = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07001936 struct cgroup *oldcgrp;
Paul Menagebd89aab2007-10-18 23:40:44 -07001937 struct cgroupfs_root *root = cgrp->root;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001938 struct cgroup_taskset tset = { };
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001939 struct css_set *newcg;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001940
Tejun Heocd3d0952011-12-12 18:12:21 -08001941 /* @tsk either already exited or can't exit until the end */
1942 if (tsk->flags & PF_EXITING)
1943 return -ESRCH;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001944
1945 /* Nothing to do if the task is already in that cgroup */
Paul Menage7717f7b2009-09-23 15:56:22 -07001946 oldcgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07001947 if (cgrp == oldcgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001948 return 0;
1949
Tejun Heo2f7ee562011-12-12 18:12:21 -08001950 tset.single.task = tsk;
1951 tset.single.cgrp = oldcgrp;
1952
Paul Menagebbcb81d2007-10-18 23:39:32 -07001953 for_each_subsys(root, ss) {
1954 if (ss->can_attach) {
Li Zefan761b3ef2012-01-31 13:47:36 +08001955 retval = ss->can_attach(cgrp, &tset);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001956 if (retval) {
1957 /*
1958 * Remember on which subsystem the can_attach()
1959 * failed, so that we only call cancel_attach()
1960 * against the subsystems whose can_attach()
1961 * succeeded. (See below)
1962 */
1963 failed_ss = ss;
1964 goto out;
1965 }
Paul Menagebbcb81d2007-10-18 23:39:32 -07001966 }
1967 }
1968
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001969 newcg = find_css_set(tsk->cgroups, cgrp);
1970 if (!newcg) {
1971 retval = -ENOMEM;
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001972 goto out;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001973 }
1974
1975 cgroup_task_migrate(cgrp, oldcgrp, tsk, newcg);
Paul Menage817929e2007-10-18 23:39:36 -07001976
Paul Menagebbcb81d2007-10-18 23:39:32 -07001977 for_each_subsys(root, ss) {
Paul Jacksone18f6312008-02-07 00:13:44 -08001978 if (ss->attach)
Li Zefan761b3ef2012-01-31 13:47:36 +08001979 ss->attach(cgrp, &tset);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001980 }
Ben Blum74a11662011-05-26 16:25:20 -07001981
Paul Menagebbcb81d2007-10-18 23:39:32 -07001982 synchronize_rcu();
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07001983
1984 /*
1985 * wake up rmdir() waiter. the rmdir should fail since the cgroup
1986 * is no longer empty.
1987 */
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07001988 cgroup_wakeup_rmdir_waiter(cgrp);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001989out:
1990 if (retval) {
1991 for_each_subsys(root, ss) {
1992 if (ss == failed_ss)
1993 /*
1994 * This subsystem was the one that failed the
1995 * can_attach() check earlier, so we don't need
1996 * to call cancel_attach() against it or any
1997 * remaining subsystems.
1998 */
1999 break;
2000 if (ss->cancel_attach)
Li Zefan761b3ef2012-01-31 13:47:36 +08002001 ss->cancel_attach(cgrp, &tset);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08002002 }
2003 }
2004 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002005}
2006
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02002007/**
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07002008 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
2009 * @from: attach to all cgroups of a given task
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02002010 * @tsk: the task to be attached
2011 */
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07002012int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02002013{
2014 struct cgroupfs_root *root;
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02002015 int retval = 0;
2016
2017 cgroup_lock();
2018 for_each_active_root(root) {
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07002019 struct cgroup *from_cg = task_cgroup_from_root(from, root);
2020
2021 retval = cgroup_attach_task(from_cg, tsk);
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02002022 if (retval)
2023 break;
2024 }
2025 cgroup_unlock();
2026
2027 return retval;
2028}
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07002029EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02002030
Ben Blum74a11662011-05-26 16:25:20 -07002031/**
2032 * cgroup_attach_proc - attach all threads in a threadgroup to a cgroup
2033 * @cgrp: the cgroup to attach to
2034 * @leader: the threadgroup leader task_struct of the group to be attached
2035 *
Tejun Heo257058a2011-12-12 18:12:21 -08002036 * Call holding cgroup_mutex and the group_rwsem of the leader. Will take
2037 * task_lock of each thread in leader's threadgroup individually in turn.
Ben Blum74a11662011-05-26 16:25:20 -07002038 */
Kirill A. Shutemov1c6c3fa2011-12-27 07:46:25 +02002039static int cgroup_attach_proc(struct cgroup *cgrp, struct task_struct *leader)
Ben Blum74a11662011-05-26 16:25:20 -07002040{
2041 int retval, i, group_size;
2042 struct cgroup_subsys *ss, *failed_ss = NULL;
Ben Blum74a11662011-05-26 16:25:20 -07002043 /* guaranteed to be initialized later, but the compiler needs this */
Ben Blum74a11662011-05-26 16:25:20 -07002044 struct cgroupfs_root *root = cgrp->root;
2045 /* threadgroup list cursor and array */
2046 struct task_struct *tsk;
Tejun Heo134d3372011-12-12 18:12:21 -08002047 struct task_and_cgroup *tc;
Ben Blumd8466872011-05-26 16:25:21 -07002048 struct flex_array *group;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002049 struct cgroup_taskset tset = { };
Ben Blum74a11662011-05-26 16:25:20 -07002050
2051 /*
2052 * step 0: in order to do expensive, possibly blocking operations for
2053 * every thread, we cannot iterate the thread group list, since it needs
2054 * rcu or tasklist locked. instead, build an array of all threads in the
Tejun Heo257058a2011-12-12 18:12:21 -08002055 * group - group_rwsem prevents new threads from appearing, and if
2056 * threads exit, this will just be an over-estimate.
Ben Blum74a11662011-05-26 16:25:20 -07002057 */
2058 group_size = get_nr_threads(leader);
Ben Blumd8466872011-05-26 16:25:21 -07002059 /* flex_array supports very large thread-groups better than kmalloc. */
Tejun Heo134d3372011-12-12 18:12:21 -08002060 group = flex_array_alloc(sizeof(*tc), group_size, GFP_KERNEL);
Ben Blum74a11662011-05-26 16:25:20 -07002061 if (!group)
2062 return -ENOMEM;
Ben Blumd8466872011-05-26 16:25:21 -07002063 /* pre-allocate to guarantee space while iterating in rcu read-side. */
2064 retval = flex_array_prealloc(group, 0, group_size - 1, GFP_KERNEL);
2065 if (retval)
2066 goto out_free_group_list;
Ben Blum74a11662011-05-26 16:25:20 -07002067
Ben Blum74a11662011-05-26 16:25:20 -07002068 tsk = leader;
2069 i = 0;
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002070 /*
2071 * Prevent freeing of tasks while we take a snapshot. Tasks that are
2072 * already PF_EXITING could be freed from underneath us unless we
2073 * take an rcu_read_lock.
2074 */
2075 rcu_read_lock();
Ben Blum74a11662011-05-26 16:25:20 -07002076 do {
Tejun Heo134d3372011-12-12 18:12:21 -08002077 struct task_and_cgroup ent;
2078
Tejun Heocd3d0952011-12-12 18:12:21 -08002079 /* @tsk either already exited or can't exit until the end */
2080 if (tsk->flags & PF_EXITING)
2081 continue;
2082
Ben Blum74a11662011-05-26 16:25:20 -07002083 /* as per above, nr_threads may decrease, but not increase. */
2084 BUG_ON(i >= group_size);
Tejun Heo134d3372011-12-12 18:12:21 -08002085 ent.task = tsk;
2086 ent.cgrp = task_cgroup_from_root(tsk, root);
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08002087 /* nothing to do if this task is already in the cgroup */
2088 if (ent.cgrp == cgrp)
2089 continue;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002090 /*
2091 * saying GFP_ATOMIC has no effect here because we did prealloc
2092 * earlier, but it's good form to communicate our expectations.
2093 */
Tejun Heo134d3372011-12-12 18:12:21 -08002094 retval = flex_array_put(group, i, &ent, GFP_ATOMIC);
Ben Blumd8466872011-05-26 16:25:21 -07002095 BUG_ON(retval != 0);
Ben Blum74a11662011-05-26 16:25:20 -07002096 i++;
2097 } while_each_thread(leader, tsk);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002098 rcu_read_unlock();
Ben Blum74a11662011-05-26 16:25:20 -07002099 /* remember the number of threads in the array for later. */
2100 group_size = i;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002101 tset.tc_array = group;
2102 tset.tc_array_len = group_size;
Ben Blum74a11662011-05-26 16:25:20 -07002103
Tejun Heo134d3372011-12-12 18:12:21 -08002104 /* methods shouldn't be called if no task is actually migrating */
2105 retval = 0;
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08002106 if (!group_size)
Mandeep Singh Bainesb07ef772011-12-21 20:18:36 -08002107 goto out_free_group_list;
Tejun Heo134d3372011-12-12 18:12:21 -08002108
Ben Blum74a11662011-05-26 16:25:20 -07002109 /*
2110 * step 1: check that we can legitimately attach to the cgroup.
2111 */
2112 for_each_subsys(root, ss) {
2113 if (ss->can_attach) {
Li Zefan761b3ef2012-01-31 13:47:36 +08002114 retval = ss->can_attach(cgrp, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002115 if (retval) {
2116 failed_ss = ss;
2117 goto out_cancel_attach;
2118 }
2119 }
Ben Blum74a11662011-05-26 16:25:20 -07002120 }
2121
2122 /*
2123 * step 2: make sure css_sets exist for all threads to be migrated.
2124 * we use find_css_set, which allocates a new one if necessary.
2125 */
Ben Blum74a11662011-05-26 16:25:20 -07002126 for (i = 0; i < group_size; i++) {
Tejun Heo134d3372011-12-12 18:12:21 -08002127 tc = flex_array_get(group, i);
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002128 tc->cg = find_css_set(tc->task->cgroups, cgrp);
2129 if (!tc->cg) {
2130 retval = -ENOMEM;
2131 goto out_put_css_set_refs;
Ben Blum74a11662011-05-26 16:25:20 -07002132 }
2133 }
2134
2135 /*
Tejun Heo494c1672011-12-12 18:12:22 -08002136 * step 3: now that we're guaranteed success wrt the css_sets,
2137 * proceed to move all tasks to the new cgroup. There are no
2138 * failure cases after here, so this is the commit point.
Ben Blum74a11662011-05-26 16:25:20 -07002139 */
Ben Blum74a11662011-05-26 16:25:20 -07002140 for (i = 0; i < group_size; i++) {
Tejun Heo134d3372011-12-12 18:12:21 -08002141 tc = flex_array_get(group, i);
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002142 cgroup_task_migrate(cgrp, tc->cgrp, tc->task, tc->cg);
Ben Blum74a11662011-05-26 16:25:20 -07002143 }
2144 /* nothing is sensitive to fork() after this point. */
2145
2146 /*
Tejun Heo494c1672011-12-12 18:12:22 -08002147 * step 4: do subsystem attach callbacks.
Ben Blum74a11662011-05-26 16:25:20 -07002148 */
2149 for_each_subsys(root, ss) {
2150 if (ss->attach)
Li Zefan761b3ef2012-01-31 13:47:36 +08002151 ss->attach(cgrp, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002152 }
2153
2154 /*
2155 * step 5: success! and cleanup
2156 */
2157 synchronize_rcu();
2158 cgroup_wakeup_rmdir_waiter(cgrp);
2159 retval = 0;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002160out_put_css_set_refs:
2161 if (retval) {
2162 for (i = 0; i < group_size; i++) {
2163 tc = flex_array_get(group, i);
2164 if (!tc->cg)
2165 break;
2166 put_css_set(tc->cg);
2167 }
Ben Blum74a11662011-05-26 16:25:20 -07002168 }
2169out_cancel_attach:
Ben Blum74a11662011-05-26 16:25:20 -07002170 if (retval) {
2171 for_each_subsys(root, ss) {
Tejun Heo494c1672011-12-12 18:12:22 -08002172 if (ss == failed_ss)
Ben Blum74a11662011-05-26 16:25:20 -07002173 break;
Ben Blum74a11662011-05-26 16:25:20 -07002174 if (ss->cancel_attach)
Li Zefan761b3ef2012-01-31 13:47:36 +08002175 ss->cancel_attach(cgrp, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002176 }
2177 }
Ben Blum74a11662011-05-26 16:25:20 -07002178out_free_group_list:
Ben Blumd8466872011-05-26 16:25:21 -07002179 flex_array_free(group);
Ben Blum74a11662011-05-26 16:25:20 -07002180 return retval;
2181}
2182
2183/*
2184 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08002185 * function to attach either it or all tasks in its threadgroup. Will lock
2186 * cgroup_mutex and threadgroup; may take task_lock of task.
Ben Blum74a11662011-05-26 16:25:20 -07002187 */
2188static int attach_task_by_pid(struct cgroup *cgrp, u64 pid, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002189{
Paul Menagebbcb81d2007-10-18 23:39:32 -07002190 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11002191 const struct cred *cred = current_cred(), *tcred;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002192 int ret;
2193
Ben Blum74a11662011-05-26 16:25:20 -07002194 if (!cgroup_lock_live_group(cgrp))
2195 return -ENODEV;
2196
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002197retry_find_task:
2198 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002199 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002200 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07002201 if (!tsk) {
Paul Menagebbcb81d2007-10-18 23:39:32 -07002202 rcu_read_unlock();
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002203 ret= -ESRCH;
2204 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002205 }
Ben Blum74a11662011-05-26 16:25:20 -07002206 /*
2207 * even if we're attaching all tasks in the thread group, we
2208 * only need to check permissions on one of them.
2209 */
David Howellsc69e8d92008-11-14 10:39:19 +11002210 tcred = __task_cred(tsk);
2211 if (cred->euid &&
2212 cred->euid != tcred->uid &&
2213 cred->euid != tcred->suid) {
2214 rcu_read_unlock();
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002215 ret = -EACCES;
2216 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002217 }
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002218 } else
2219 tsk = current;
Tejun Heocd3d0952011-12-12 18:12:21 -08002220
2221 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002222 tsk = tsk->group_leader;
2223 get_task_struct(tsk);
2224 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08002225
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002226 threadgroup_lock(tsk);
2227 if (threadgroup) {
2228 if (!thread_group_leader(tsk)) {
2229 /*
2230 * a race with de_thread from another thread's exec()
2231 * may strip us of our leadership, if this happens,
2232 * there is no choice but to throw this task away and
2233 * try again; this is
2234 * "double-double-toil-and-trouble-check locking".
2235 */
2236 threadgroup_unlock(tsk);
2237 put_task_struct(tsk);
2238 goto retry_find_task;
2239 }
2240 ret = cgroup_attach_proc(cgrp, tsk);
2241 } else
2242 ret = cgroup_attach_task(cgrp, tsk);
Tejun Heocd3d0952011-12-12 18:12:21 -08002243 threadgroup_unlock(tsk);
2244
Paul Menagebbcb81d2007-10-18 23:39:32 -07002245 put_task_struct(tsk);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002246out_unlock_cgroup:
Ben Blum74a11662011-05-26 16:25:20 -07002247 cgroup_unlock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002248 return ret;
2249}
2250
Paul Menageaf351022008-07-25 01:47:01 -07002251static int cgroup_tasks_write(struct cgroup *cgrp, struct cftype *cft, u64 pid)
2252{
Ben Blum74a11662011-05-26 16:25:20 -07002253 return attach_task_by_pid(cgrp, pid, false);
2254}
2255
2256static int cgroup_procs_write(struct cgroup *cgrp, struct cftype *cft, u64 tgid)
2257{
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002258 return attach_task_by_pid(cgrp, tgid, true);
Paul Menageaf351022008-07-25 01:47:01 -07002259}
2260
Paul Menagee788e062008-07-25 01:46:59 -07002261/**
2262 * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive.
2263 * @cgrp: the cgroup to be checked for liveness
2264 *
Paul Menage84eea842008-07-25 01:47:00 -07002265 * On success, returns true; the lock should be later released with
2266 * cgroup_unlock(). On failure returns false with no lock held.
Paul Menagee788e062008-07-25 01:46:59 -07002267 */
Paul Menage84eea842008-07-25 01:47:00 -07002268bool cgroup_lock_live_group(struct cgroup *cgrp)
Paul Menagee788e062008-07-25 01:46:59 -07002269{
2270 mutex_lock(&cgroup_mutex);
2271 if (cgroup_is_removed(cgrp)) {
2272 mutex_unlock(&cgroup_mutex);
2273 return false;
2274 }
2275 return true;
2276}
Ben Blum67523c42010-03-10 15:22:11 -08002277EXPORT_SYMBOL_GPL(cgroup_lock_live_group);
Paul Menagee788e062008-07-25 01:46:59 -07002278
2279static int cgroup_release_agent_write(struct cgroup *cgrp, struct cftype *cft,
2280 const char *buffer)
2281{
2282 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
Evgeny Kuznetsovf4a25892010-10-27 15:33:37 -07002283 if (strlen(buffer) >= PATH_MAX)
2284 return -EINVAL;
Paul Menagee788e062008-07-25 01:46:59 -07002285 if (!cgroup_lock_live_group(cgrp))
2286 return -ENODEV;
Tejun Heoe25e2cb2011-12-12 18:12:21 -08002287 mutex_lock(&cgroup_root_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07002288 strcpy(cgrp->root->release_agent_path, buffer);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08002289 mutex_unlock(&cgroup_root_mutex);
Paul Menage84eea842008-07-25 01:47:00 -07002290 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07002291 return 0;
2292}
2293
2294static int cgroup_release_agent_show(struct cgroup *cgrp, struct cftype *cft,
2295 struct seq_file *seq)
2296{
2297 if (!cgroup_lock_live_group(cgrp))
2298 return -ENODEV;
2299 seq_puts(seq, cgrp->root->release_agent_path);
2300 seq_putc(seq, '\n');
Paul Menage84eea842008-07-25 01:47:00 -07002301 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07002302 return 0;
2303}
2304
Paul Menage84eea842008-07-25 01:47:00 -07002305/* A buffer size big enough for numbers or short strings */
2306#define CGROUP_LOCAL_BUFFER_SIZE 64
2307
Paul Menagee73d2c62008-04-29 01:00:06 -07002308static ssize_t cgroup_write_X64(struct cgroup *cgrp, struct cftype *cft,
Paul Menagef4c753b2008-04-29 00:59:56 -07002309 struct file *file,
2310 const char __user *userbuf,
2311 size_t nbytes, loff_t *unused_ppos)
Paul Menage355e0c42007-10-18 23:39:33 -07002312{
Paul Menage84eea842008-07-25 01:47:00 -07002313 char buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menage355e0c42007-10-18 23:39:33 -07002314 int retval = 0;
Paul Menage355e0c42007-10-18 23:39:33 -07002315 char *end;
2316
2317 if (!nbytes)
2318 return -EINVAL;
2319 if (nbytes >= sizeof(buffer))
2320 return -E2BIG;
2321 if (copy_from_user(buffer, userbuf, nbytes))
2322 return -EFAULT;
2323
2324 buffer[nbytes] = 0; /* nul-terminate */
Paul Menagee73d2c62008-04-29 01:00:06 -07002325 if (cft->write_u64) {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002326 u64 val = simple_strtoull(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07002327 if (*end)
2328 return -EINVAL;
2329 retval = cft->write_u64(cgrp, cft, val);
2330 } else {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002331 s64 val = simple_strtoll(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07002332 if (*end)
2333 return -EINVAL;
2334 retval = cft->write_s64(cgrp, cft, val);
2335 }
Paul Menage355e0c42007-10-18 23:39:33 -07002336 if (!retval)
2337 retval = nbytes;
2338 return retval;
2339}
2340
Paul Menagedb3b1492008-07-25 01:46:58 -07002341static ssize_t cgroup_write_string(struct cgroup *cgrp, struct cftype *cft,
2342 struct file *file,
2343 const char __user *userbuf,
2344 size_t nbytes, loff_t *unused_ppos)
2345{
Paul Menage84eea842008-07-25 01:47:00 -07002346 char local_buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagedb3b1492008-07-25 01:46:58 -07002347 int retval = 0;
2348 size_t max_bytes = cft->max_write_len;
2349 char *buffer = local_buffer;
2350
2351 if (!max_bytes)
2352 max_bytes = sizeof(local_buffer) - 1;
2353 if (nbytes >= max_bytes)
2354 return -E2BIG;
2355 /* Allocate a dynamic buffer if we need one */
2356 if (nbytes >= sizeof(local_buffer)) {
2357 buffer = kmalloc(nbytes + 1, GFP_KERNEL);
2358 if (buffer == NULL)
2359 return -ENOMEM;
2360 }
Li Zefan5a3eb9f2008-07-29 22:33:18 -07002361 if (nbytes && copy_from_user(buffer, userbuf, nbytes)) {
2362 retval = -EFAULT;
2363 goto out;
2364 }
Paul Menagedb3b1492008-07-25 01:46:58 -07002365
2366 buffer[nbytes] = 0; /* nul-terminate */
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002367 retval = cft->write_string(cgrp, cft, strstrip(buffer));
Paul Menagedb3b1492008-07-25 01:46:58 -07002368 if (!retval)
2369 retval = nbytes;
Li Zefan5a3eb9f2008-07-29 22:33:18 -07002370out:
Paul Menagedb3b1492008-07-25 01:46:58 -07002371 if (buffer != local_buffer)
2372 kfree(buffer);
2373 return retval;
2374}
2375
Paul Menageddbcc7e2007-10-18 23:39:30 -07002376static ssize_t cgroup_file_write(struct file *file, const char __user *buf,
2377 size_t nbytes, loff_t *ppos)
2378{
2379 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07002380 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002381
Li Zefan75139b82009-01-07 18:07:33 -08002382 if (cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07002383 return -ENODEV;
Paul Menage355e0c42007-10-18 23:39:33 -07002384 if (cft->write)
Paul Menagebd89aab2007-10-18 23:40:44 -07002385 return cft->write(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002386 if (cft->write_u64 || cft->write_s64)
2387 return cgroup_write_X64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagedb3b1492008-07-25 01:46:58 -07002388 if (cft->write_string)
2389 return cgroup_write_string(cgrp, cft, file, buf, nbytes, ppos);
Pavel Emelyanovd447ea22008-04-29 01:00:08 -07002390 if (cft->trigger) {
2391 int ret = cft->trigger(cgrp, (unsigned int)cft->private);
2392 return ret ? ret : nbytes;
2393 }
Paul Menage355e0c42007-10-18 23:39:33 -07002394 return -EINVAL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002395}
2396
Paul Menagef4c753b2008-04-29 00:59:56 -07002397static ssize_t cgroup_read_u64(struct cgroup *cgrp, struct cftype *cft,
2398 struct file *file,
2399 char __user *buf, size_t nbytes,
2400 loff_t *ppos)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002401{
Paul Menage84eea842008-07-25 01:47:00 -07002402 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagef4c753b2008-04-29 00:59:56 -07002403 u64 val = cft->read_u64(cgrp, cft);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002404 int len = sprintf(tmp, "%llu\n", (unsigned long long) val);
2405
2406 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2407}
2408
Paul Menagee73d2c62008-04-29 01:00:06 -07002409static ssize_t cgroup_read_s64(struct cgroup *cgrp, struct cftype *cft,
2410 struct file *file,
2411 char __user *buf, size_t nbytes,
2412 loff_t *ppos)
2413{
Paul Menage84eea842008-07-25 01:47:00 -07002414 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagee73d2c62008-04-29 01:00:06 -07002415 s64 val = cft->read_s64(cgrp, cft);
2416 int len = sprintf(tmp, "%lld\n", (long long) val);
2417
2418 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2419}
2420
Paul Menageddbcc7e2007-10-18 23:39:30 -07002421static ssize_t cgroup_file_read(struct file *file, char __user *buf,
2422 size_t nbytes, loff_t *ppos)
2423{
2424 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07002425 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002426
Li Zefan75139b82009-01-07 18:07:33 -08002427 if (cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07002428 return -ENODEV;
2429
2430 if (cft->read)
Paul Menagebd89aab2007-10-18 23:40:44 -07002431 return cft->read(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagef4c753b2008-04-29 00:59:56 -07002432 if (cft->read_u64)
2433 return cgroup_read_u64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002434 if (cft->read_s64)
2435 return cgroup_read_s64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002436 return -EINVAL;
2437}
2438
Paul Menage91796562008-04-29 01:00:01 -07002439/*
2440 * seqfile ops/methods for returning structured data. Currently just
2441 * supports string->u64 maps, but can be extended in future.
2442 */
2443
2444struct cgroup_seqfile_state {
2445 struct cftype *cft;
2446 struct cgroup *cgroup;
2447};
2448
2449static int cgroup_map_add(struct cgroup_map_cb *cb, const char *key, u64 value)
2450{
2451 struct seq_file *sf = cb->state;
2452 return seq_printf(sf, "%s %llu\n", key, (unsigned long long)value);
2453}
2454
2455static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2456{
2457 struct cgroup_seqfile_state *state = m->private;
2458 struct cftype *cft = state->cft;
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002459 if (cft->read_map) {
2460 struct cgroup_map_cb cb = {
2461 .fill = cgroup_map_add,
2462 .state = m,
2463 };
2464 return cft->read_map(state->cgroup, cft, &cb);
2465 }
2466 return cft->read_seq_string(state->cgroup, cft, m);
Paul Menage91796562008-04-29 01:00:01 -07002467}
2468
Adrian Bunk96930a62008-07-25 19:46:21 -07002469static int cgroup_seqfile_release(struct inode *inode, struct file *file)
Paul Menage91796562008-04-29 01:00:01 -07002470{
2471 struct seq_file *seq = file->private_data;
2472 kfree(seq->private);
2473 return single_release(inode, file);
2474}
2475
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002476static const struct file_operations cgroup_seqfile_operations = {
Paul Menage91796562008-04-29 01:00:01 -07002477 .read = seq_read,
Paul Menagee788e062008-07-25 01:46:59 -07002478 .write = cgroup_file_write,
Paul Menage91796562008-04-29 01:00:01 -07002479 .llseek = seq_lseek,
2480 .release = cgroup_seqfile_release,
2481};
2482
Paul Menageddbcc7e2007-10-18 23:39:30 -07002483static int cgroup_file_open(struct inode *inode, struct file *file)
2484{
2485 int err;
2486 struct cftype *cft;
2487
2488 err = generic_file_open(inode, file);
2489 if (err)
2490 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002491 cft = __d_cft(file->f_dentry);
Li Zefan75139b82009-01-07 18:07:33 -08002492
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002493 if (cft->read_map || cft->read_seq_string) {
Paul Menage91796562008-04-29 01:00:01 -07002494 struct cgroup_seqfile_state *state =
2495 kzalloc(sizeof(*state), GFP_USER);
2496 if (!state)
2497 return -ENOMEM;
2498 state->cft = cft;
2499 state->cgroup = __d_cgrp(file->f_dentry->d_parent);
2500 file->f_op = &cgroup_seqfile_operations;
2501 err = single_open(file, cgroup_seqfile_show, state);
2502 if (err < 0)
2503 kfree(state);
2504 } else if (cft->open)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002505 err = cft->open(inode, file);
2506 else
2507 err = 0;
2508
2509 return err;
2510}
2511
2512static int cgroup_file_release(struct inode *inode, struct file *file)
2513{
2514 struct cftype *cft = __d_cft(file->f_dentry);
2515 if (cft->release)
2516 return cft->release(inode, file);
2517 return 0;
2518}
2519
2520/*
2521 * cgroup_rename - Only allow simple rename of directories in place.
2522 */
2523static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry,
2524 struct inode *new_dir, struct dentry *new_dentry)
2525{
2526 if (!S_ISDIR(old_dentry->d_inode->i_mode))
2527 return -ENOTDIR;
2528 if (new_dentry->d_inode)
2529 return -EEXIST;
2530 if (old_dir != new_dir)
2531 return -EIO;
2532 return simple_rename(old_dir, old_dentry, new_dir, new_dentry);
2533}
2534
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002535static const struct file_operations cgroup_file_operations = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002536 .read = cgroup_file_read,
2537 .write = cgroup_file_write,
2538 .llseek = generic_file_llseek,
2539 .open = cgroup_file_open,
2540 .release = cgroup_file_release,
2541};
2542
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07002543static const struct inode_operations cgroup_dir_inode_operations = {
Al Viroc72a04e2011-01-14 05:31:45 +00002544 .lookup = cgroup_lookup,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002545 .mkdir = cgroup_mkdir,
2546 .rmdir = cgroup_rmdir,
2547 .rename = cgroup_rename,
2548};
2549
Al Viroc72a04e2011-01-14 05:31:45 +00002550static struct dentry *cgroup_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
2551{
2552 if (dentry->d_name.len > NAME_MAX)
2553 return ERR_PTR(-ENAMETOOLONG);
2554 d_add(dentry, NULL);
2555 return NULL;
2556}
2557
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08002558/*
2559 * Check if a file is a control file
2560 */
2561static inline struct cftype *__file_cft(struct file *file)
2562{
2563 if (file->f_dentry->d_inode->i_fop != &cgroup_file_operations)
2564 return ERR_PTR(-EINVAL);
2565 return __d_cft(file->f_dentry);
2566}
2567
Al Viroa5e7ed32011-07-26 01:55:55 -04002568static int cgroup_create_file(struct dentry *dentry, umode_t mode,
Nick Piggin5adcee12011-01-07 17:49:20 +11002569 struct super_block *sb)
2570{
Paul Menageddbcc7e2007-10-18 23:39:30 -07002571 struct inode *inode;
2572
2573 if (!dentry)
2574 return -ENOENT;
2575 if (dentry->d_inode)
2576 return -EEXIST;
2577
2578 inode = cgroup_new_inode(mode, sb);
2579 if (!inode)
2580 return -ENOMEM;
2581
2582 if (S_ISDIR(mode)) {
2583 inode->i_op = &cgroup_dir_inode_operations;
2584 inode->i_fop = &simple_dir_operations;
2585
2586 /* start off with i_nlink == 2 (for "." entry) */
2587 inc_nlink(inode);
2588
2589 /* start with the directory inode held, so that we can
2590 * populate it without racing with another mkdir */
Paul Menage817929e2007-10-18 23:39:36 -07002591 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002592 } else if (S_ISREG(mode)) {
2593 inode->i_size = 0;
2594 inode->i_fop = &cgroup_file_operations;
2595 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002596 d_instantiate(dentry, inode);
2597 dget(dentry); /* Extra count - pin the dentry in core */
2598 return 0;
2599}
2600
2601/*
Li Zefana043e3b2008-02-23 15:24:09 -08002602 * cgroup_create_dir - create a directory for an object.
2603 * @cgrp: the cgroup we create the directory for. It must have a valid
2604 * ->parent field. And we are going to fill its ->dentry field.
2605 * @dentry: dentry of the new cgroup
2606 * @mode: mode to set on new directory.
Paul Menageddbcc7e2007-10-18 23:39:30 -07002607 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002608static int cgroup_create_dir(struct cgroup *cgrp, struct dentry *dentry,
Al Viroa5e7ed32011-07-26 01:55:55 -04002609 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002610{
2611 struct dentry *parent;
2612 int error = 0;
2613
Paul Menagebd89aab2007-10-18 23:40:44 -07002614 parent = cgrp->parent->dentry;
2615 error = cgroup_create_file(dentry, S_IFDIR | mode, cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002616 if (!error) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002617 dentry->d_fsdata = cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002618 inc_nlink(parent->d_inode);
Paul Menagea47295e2009-01-07 18:07:44 -08002619 rcu_assign_pointer(cgrp->dentry, dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002620 dget(dentry);
2621 }
2622 dput(dentry);
2623
2624 return error;
2625}
2626
Li Zefan099fca32009-04-02 16:57:29 -07002627/**
2628 * cgroup_file_mode - deduce file mode of a control file
2629 * @cft: the control file in question
2630 *
2631 * returns cft->mode if ->mode is not 0
2632 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
2633 * returns S_IRUGO if it has only a read handler
2634 * returns S_IWUSR if it has only a write hander
2635 */
Al Viroa5e7ed32011-07-26 01:55:55 -04002636static umode_t cgroup_file_mode(const struct cftype *cft)
Li Zefan099fca32009-04-02 16:57:29 -07002637{
Al Viroa5e7ed32011-07-26 01:55:55 -04002638 umode_t mode = 0;
Li Zefan099fca32009-04-02 16:57:29 -07002639
2640 if (cft->mode)
2641 return cft->mode;
2642
2643 if (cft->read || cft->read_u64 || cft->read_s64 ||
2644 cft->read_map || cft->read_seq_string)
2645 mode |= S_IRUGO;
2646
2647 if (cft->write || cft->write_u64 || cft->write_s64 ||
2648 cft->write_string || cft->trigger)
2649 mode |= S_IWUSR;
2650
2651 return mode;
2652}
2653
Tejun Heodb0416b2012-04-01 12:09:55 -07002654static int cgroup_add_file(struct cgroup *cgrp, struct cgroup_subsys *subsys,
2655 const struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002656{
Paul Menagebd89aab2007-10-18 23:40:44 -07002657 struct dentry *dir = cgrp->dentry;
Tejun Heo05ef1d72012-04-01 12:09:56 -07002658 struct cgroup *parent = __d_cgrp(dir);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002659 struct dentry *dentry;
Tejun Heo05ef1d72012-04-01 12:09:56 -07002660 struct cfent *cfe;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002661 int error;
Al Viroa5e7ed32011-07-26 01:55:55 -04002662 umode_t mode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002663 char name[MAX_CGROUP_TYPE_NAMELEN + MAX_CFTYPE_NAME + 2] = { 0 };
Tejun Heo8e3f6542012-04-01 12:09:55 -07002664
2665 /* does @cft->flags tell us to skip creation on @cgrp? */
2666 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgrp->parent)
2667 return 0;
2668 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgrp->parent)
2669 return 0;
2670
Paul Menagebd89aab2007-10-18 23:40:44 -07002671 if (subsys && !test_bit(ROOT_NOPREFIX, &cgrp->root->flags)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002672 strcpy(name, subsys->name);
2673 strcat(name, ".");
2674 }
2675 strcat(name, cft->name);
Tejun Heo05ef1d72012-04-01 12:09:56 -07002676
Paul Menageddbcc7e2007-10-18 23:39:30 -07002677 BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex));
Tejun Heo05ef1d72012-04-01 12:09:56 -07002678
2679 cfe = kzalloc(sizeof(*cfe), GFP_KERNEL);
2680 if (!cfe)
2681 return -ENOMEM;
2682
Paul Menageddbcc7e2007-10-18 23:39:30 -07002683 dentry = lookup_one_len(name, dir, strlen(name));
Tejun Heo05ef1d72012-04-01 12:09:56 -07002684 if (IS_ERR(dentry)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002685 error = PTR_ERR(dentry);
Tejun Heo05ef1d72012-04-01 12:09:56 -07002686 goto out;
2687 }
2688
2689 mode = cgroup_file_mode(cft);
2690 error = cgroup_create_file(dentry, mode | S_IFREG, cgrp->root->sb);
2691 if (!error) {
2692 cfe->type = (void *)cft;
2693 cfe->dentry = dentry;
2694 dentry->d_fsdata = cfe;
2695 list_add_tail(&cfe->node, &parent->files);
2696 cfe = NULL;
2697 }
2698 dput(dentry);
2699out:
2700 kfree(cfe);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002701 return error;
2702}
2703
Tejun Heo79578622012-04-01 12:09:56 -07002704static int cgroup_addrm_files(struct cgroup *cgrp, struct cgroup_subsys *subsys,
2705 const struct cftype cfts[], bool is_add)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002706{
Tejun Heodb0416b2012-04-01 12:09:55 -07002707 const struct cftype *cft;
2708 int err, ret = 0;
2709
2710 for (cft = cfts; cft->name[0] != '\0'; cft++) {
Tejun Heo79578622012-04-01 12:09:56 -07002711 if (is_add)
2712 err = cgroup_add_file(cgrp, subsys, cft);
2713 else
2714 err = cgroup_rm_file(cgrp, cft);
Tejun Heodb0416b2012-04-01 12:09:55 -07002715 if (err) {
Tejun Heo79578622012-04-01 12:09:56 -07002716 pr_warning("cgroup_addrm_files: failed to %s %s, err=%d\n",
2717 is_add ? "add" : "remove", cft->name, err);
Tejun Heodb0416b2012-04-01 12:09:55 -07002718 ret = err;
2719 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002720 }
Tejun Heodb0416b2012-04-01 12:09:55 -07002721 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002722}
2723
Tejun Heo8e3f6542012-04-01 12:09:55 -07002724static DEFINE_MUTEX(cgroup_cft_mutex);
2725
2726static void cgroup_cfts_prepare(void)
2727 __acquires(&cgroup_cft_mutex) __acquires(&cgroup_mutex)
2728{
2729 /*
2730 * Thanks to the entanglement with vfs inode locking, we can't walk
2731 * the existing cgroups under cgroup_mutex and create files.
2732 * Instead, we increment reference on all cgroups and build list of
2733 * them using @cgrp->cft_q_node. Grab cgroup_cft_mutex to ensure
2734 * exclusive access to the field.
2735 */
2736 mutex_lock(&cgroup_cft_mutex);
2737 mutex_lock(&cgroup_mutex);
2738}
2739
2740static void cgroup_cfts_commit(struct cgroup_subsys *ss,
Tejun Heo79578622012-04-01 12:09:56 -07002741 const struct cftype *cfts, bool is_add)
Tejun Heo8e3f6542012-04-01 12:09:55 -07002742 __releases(&cgroup_mutex) __releases(&cgroup_cft_mutex)
2743{
2744 LIST_HEAD(pending);
2745 struct cgroup *cgrp, *n;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002746
2747 /* %NULL @cfts indicates abort and don't bother if @ss isn't attached */
2748 if (cfts && ss->root != &rootnode) {
2749 list_for_each_entry(cgrp, &ss->root->allcg_list, allcg_node) {
2750 dget(cgrp->dentry);
2751 list_add_tail(&cgrp->cft_q_node, &pending);
2752 }
2753 }
2754
2755 mutex_unlock(&cgroup_mutex);
2756
2757 /*
2758 * All new cgroups will see @cfts update on @ss->cftsets. Add/rm
2759 * files for all cgroups which were created before.
2760 */
2761 list_for_each_entry_safe(cgrp, n, &pending, cft_q_node) {
2762 struct inode *inode = cgrp->dentry->d_inode;
2763
2764 mutex_lock(&inode->i_mutex);
2765 mutex_lock(&cgroup_mutex);
2766 if (!cgroup_is_removed(cgrp))
Tejun Heo79578622012-04-01 12:09:56 -07002767 cgroup_addrm_files(cgrp, ss, cfts, is_add);
Tejun Heo8e3f6542012-04-01 12:09:55 -07002768 mutex_unlock(&cgroup_mutex);
2769 mutex_unlock(&inode->i_mutex);
2770
2771 list_del_init(&cgrp->cft_q_node);
2772 dput(cgrp->dentry);
2773 }
2774
2775 mutex_unlock(&cgroup_cft_mutex);
2776}
2777
2778/**
2779 * cgroup_add_cftypes - add an array of cftypes to a subsystem
2780 * @ss: target cgroup subsystem
2781 * @cfts: zero-length name terminated array of cftypes
2782 *
2783 * Register @cfts to @ss. Files described by @cfts are created for all
2784 * existing cgroups to which @ss is attached and all future cgroups will
2785 * have them too. This function can be called anytime whether @ss is
2786 * attached or not.
2787 *
2788 * Returns 0 on successful registration, -errno on failure. Note that this
2789 * function currently returns 0 as long as @cfts registration is successful
2790 * even if some file creation attempts on existing cgroups fail.
2791 */
2792int cgroup_add_cftypes(struct cgroup_subsys *ss, const struct cftype *cfts)
2793{
2794 struct cftype_set *set;
2795
2796 set = kzalloc(sizeof(*set), GFP_KERNEL);
2797 if (!set)
2798 return -ENOMEM;
2799
2800 cgroup_cfts_prepare();
2801 set->cfts = cfts;
2802 list_add_tail(&set->node, &ss->cftsets);
Tejun Heo79578622012-04-01 12:09:56 -07002803 cgroup_cfts_commit(ss, cfts, true);
Tejun Heo8e3f6542012-04-01 12:09:55 -07002804
2805 return 0;
2806}
2807EXPORT_SYMBOL_GPL(cgroup_add_cftypes);
2808
Li Zefana043e3b2008-02-23 15:24:09 -08002809/**
Tejun Heo79578622012-04-01 12:09:56 -07002810 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
2811 * @ss: target cgroup subsystem
2812 * @cfts: zero-length name terminated array of cftypes
2813 *
2814 * Unregister @cfts from @ss. Files described by @cfts are removed from
2815 * all existing cgroups to which @ss is attached and all future cgroups
2816 * won't have them either. This function can be called anytime whether @ss
2817 * is attached or not.
2818 *
2819 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
2820 * registered with @ss.
2821 */
2822int cgroup_rm_cftypes(struct cgroup_subsys *ss, const struct cftype *cfts)
2823{
2824 struct cftype_set *set;
2825
2826 cgroup_cfts_prepare();
2827
2828 list_for_each_entry(set, &ss->cftsets, node) {
2829 if (set->cfts == cfts) {
2830 list_del_init(&set->node);
2831 cgroup_cfts_commit(ss, cfts, false);
2832 return 0;
2833 }
2834 }
2835
2836 cgroup_cfts_commit(ss, NULL, false);
2837 return -ENOENT;
2838}
2839
2840/**
Li Zefana043e3b2008-02-23 15:24:09 -08002841 * cgroup_task_count - count the number of tasks in a cgroup.
2842 * @cgrp: the cgroup in question
2843 *
2844 * Return the number of tasks in the cgroup.
2845 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002846int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002847{
2848 int count = 0;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07002849 struct cg_cgroup_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002850
Paul Menage817929e2007-10-18 23:39:36 -07002851 read_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07002852 list_for_each_entry(link, &cgrp->css_sets, cgrp_link_list) {
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07002853 count += atomic_read(&link->cg->refcount);
Paul Menage817929e2007-10-18 23:39:36 -07002854 }
2855 read_unlock(&css_set_lock);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002856 return count;
2857}
2858
2859/*
Paul Menage817929e2007-10-18 23:39:36 -07002860 * Advance a list_head iterator. The iterator should be positioned at
2861 * the start of a css_set
2862 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002863static void cgroup_advance_iter(struct cgroup *cgrp,
Paul Menage7717f7b2009-09-23 15:56:22 -07002864 struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002865{
2866 struct list_head *l = it->cg_link;
2867 struct cg_cgroup_link *link;
2868 struct css_set *cg;
2869
2870 /* Advance to the next non-empty css_set */
2871 do {
2872 l = l->next;
Paul Menagebd89aab2007-10-18 23:40:44 -07002873 if (l == &cgrp->css_sets) {
Paul Menage817929e2007-10-18 23:39:36 -07002874 it->cg_link = NULL;
2875 return;
2876 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002877 link = list_entry(l, struct cg_cgroup_link, cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07002878 cg = link->cg;
2879 } while (list_empty(&cg->tasks));
2880 it->cg_link = l;
2881 it->task = cg->tasks.next;
2882}
2883
Cliff Wickman31a7df02008-02-07 00:14:42 -08002884/*
2885 * To reduce the fork() overhead for systems that are not actually
2886 * using their cgroups capability, we don't maintain the lists running
2887 * through each css_set to its tasks until we see the list actually
2888 * used - in other words after the first call to cgroup_iter_start().
Cliff Wickman31a7df02008-02-07 00:14:42 -08002889 */
Adrian Bunk3df91fe2008-04-29 00:59:54 -07002890static void cgroup_enable_task_cg_lists(void)
Cliff Wickman31a7df02008-02-07 00:14:42 -08002891{
2892 struct task_struct *p, *g;
2893 write_lock(&css_set_lock);
2894 use_task_css_set_links = 1;
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01002895 /*
2896 * We need tasklist_lock because RCU is not safe against
2897 * while_each_thread(). Besides, a forking task that has passed
2898 * cgroup_post_fork() without seeing use_task_css_set_links = 1
2899 * is not guaranteed to have its child immediately visible in the
2900 * tasklist if we walk through it with RCU.
2901 */
2902 read_lock(&tasklist_lock);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002903 do_each_thread(g, p) {
2904 task_lock(p);
Li Zefan0e043882008-04-17 11:37:15 +08002905 /*
2906 * We should check if the process is exiting, otherwise
2907 * it will race with cgroup_exit() in that the list
2908 * entry won't be deleted though the process has exited.
2909 */
2910 if (!(p->flags & PF_EXITING) && list_empty(&p->cg_list))
Cliff Wickman31a7df02008-02-07 00:14:42 -08002911 list_add(&p->cg_list, &p->cgroups->tasks);
2912 task_unlock(p);
2913 } while_each_thread(g, p);
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01002914 read_unlock(&tasklist_lock);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002915 write_unlock(&css_set_lock);
2916}
2917
Paul Menagebd89aab2007-10-18 23:40:44 -07002918void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it)
Kirill A. Shutemovc6ca5752011-12-27 07:46:26 +02002919 __acquires(css_set_lock)
Paul Menage817929e2007-10-18 23:39:36 -07002920{
2921 /*
2922 * The first time anyone tries to iterate across a cgroup,
2923 * we need to enable the list linking each css_set to its
2924 * tasks, and fix up all existing tasks.
2925 */
Cliff Wickman31a7df02008-02-07 00:14:42 -08002926 if (!use_task_css_set_links)
2927 cgroup_enable_task_cg_lists();
2928
Paul Menage817929e2007-10-18 23:39:36 -07002929 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07002930 it->cg_link = &cgrp->css_sets;
2931 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07002932}
2933
Paul Menagebd89aab2007-10-18 23:40:44 -07002934struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -07002935 struct cgroup_iter *it)
2936{
2937 struct task_struct *res;
2938 struct list_head *l = it->task;
Lai Jiangshan2019f632009-01-07 18:07:36 -08002939 struct cg_cgroup_link *link;
Paul Menage817929e2007-10-18 23:39:36 -07002940
2941 /* If the iterator cg is NULL, we have no tasks */
2942 if (!it->cg_link)
2943 return NULL;
2944 res = list_entry(l, struct task_struct, cg_list);
2945 /* Advance iterator to find next entry */
2946 l = l->next;
Lai Jiangshan2019f632009-01-07 18:07:36 -08002947 link = list_entry(it->cg_link, struct cg_cgroup_link, cgrp_link_list);
2948 if (l == &link->cg->tasks) {
Paul Menage817929e2007-10-18 23:39:36 -07002949 /* We reached the end of this task list - move on to
2950 * the next cg_cgroup_link */
Paul Menagebd89aab2007-10-18 23:40:44 -07002951 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07002952 } else {
2953 it->task = l;
2954 }
2955 return res;
2956}
2957
Paul Menagebd89aab2007-10-18 23:40:44 -07002958void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it)
Kirill A. Shutemovc6ca5752011-12-27 07:46:26 +02002959 __releases(css_set_lock)
Paul Menage817929e2007-10-18 23:39:36 -07002960{
2961 read_unlock(&css_set_lock);
2962}
2963
Cliff Wickman31a7df02008-02-07 00:14:42 -08002964static inline int started_after_time(struct task_struct *t1,
2965 struct timespec *time,
2966 struct task_struct *t2)
2967{
2968 int start_diff = timespec_compare(&t1->start_time, time);
2969 if (start_diff > 0) {
2970 return 1;
2971 } else if (start_diff < 0) {
2972 return 0;
2973 } else {
2974 /*
2975 * Arbitrarily, if two processes started at the same
2976 * time, we'll say that the lower pointer value
2977 * started first. Note that t2 may have exited by now
2978 * so this may not be a valid pointer any longer, but
2979 * that's fine - it still serves to distinguish
2980 * between two tasks started (effectively) simultaneously.
2981 */
2982 return t1 > t2;
2983 }
2984}
2985
2986/*
2987 * This function is a callback from heap_insert() and is used to order
2988 * the heap.
2989 * In this case we order the heap in descending task start time.
2990 */
2991static inline int started_after(void *p1, void *p2)
2992{
2993 struct task_struct *t1 = p1;
2994 struct task_struct *t2 = p2;
2995 return started_after_time(t1, &t2->start_time, t2);
2996}
2997
2998/**
2999 * cgroup_scan_tasks - iterate though all the tasks in a cgroup
3000 * @scan: struct cgroup_scanner containing arguments for the scan
3001 *
3002 * Arguments include pointers to callback functions test_task() and
3003 * process_task().
3004 * Iterate through all the tasks in a cgroup, calling test_task() for each,
3005 * and if it returns true, call process_task() for it also.
3006 * The test_task pointer may be NULL, meaning always true (select all tasks).
3007 * Effectively duplicates cgroup_iter_{start,next,end}()
3008 * but does not lock css_set_lock for the call to process_task().
3009 * The struct cgroup_scanner may be embedded in any structure of the caller's
3010 * creation.
3011 * It is guaranteed that process_task() will act on every task that
3012 * is a member of the cgroup for the duration of this call. This
3013 * function may or may not call process_task() for tasks that exit
3014 * or move to a different cgroup during the call, or are forked or
3015 * move into the cgroup during the call.
3016 *
3017 * Note that test_task() may be called with locks held, and may in some
3018 * situations be called multiple times for the same task, so it should
3019 * be cheap.
3020 * If the heap pointer in the struct cgroup_scanner is non-NULL, a heap has been
3021 * pre-allocated and will be used for heap operations (and its "gt" member will
3022 * be overwritten), else a temporary heap will be used (allocation of which
3023 * may cause this function to fail).
3024 */
3025int cgroup_scan_tasks(struct cgroup_scanner *scan)
3026{
3027 int retval, i;
3028 struct cgroup_iter it;
3029 struct task_struct *p, *dropped;
3030 /* Never dereference latest_task, since it's not refcounted */
3031 struct task_struct *latest_task = NULL;
3032 struct ptr_heap tmp_heap;
3033 struct ptr_heap *heap;
3034 struct timespec latest_time = { 0, 0 };
3035
3036 if (scan->heap) {
3037 /* The caller supplied our heap and pre-allocated its memory */
3038 heap = scan->heap;
3039 heap->gt = &started_after;
3040 } else {
3041 /* We need to allocate our own heap memory */
3042 heap = &tmp_heap;
3043 retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after);
3044 if (retval)
3045 /* cannot allocate the heap */
3046 return retval;
3047 }
3048
3049 again:
3050 /*
3051 * Scan tasks in the cgroup, using the scanner's "test_task" callback
3052 * to determine which are of interest, and using the scanner's
3053 * "process_task" callback to process any of them that need an update.
3054 * Since we don't want to hold any locks during the task updates,
3055 * gather tasks to be processed in a heap structure.
3056 * The heap is sorted by descending task start time.
3057 * If the statically-sized heap fills up, we overflow tasks that
3058 * started later, and in future iterations only consider tasks that
3059 * started after the latest task in the previous pass. This
3060 * guarantees forward progress and that we don't miss any tasks.
3061 */
3062 heap->size = 0;
3063 cgroup_iter_start(scan->cg, &it);
3064 while ((p = cgroup_iter_next(scan->cg, &it))) {
3065 /*
3066 * Only affect tasks that qualify per the caller's callback,
3067 * if he provided one
3068 */
3069 if (scan->test_task && !scan->test_task(p, scan))
3070 continue;
3071 /*
3072 * Only process tasks that started after the last task
3073 * we processed
3074 */
3075 if (!started_after_time(p, &latest_time, latest_task))
3076 continue;
3077 dropped = heap_insert(heap, p);
3078 if (dropped == NULL) {
3079 /*
3080 * The new task was inserted; the heap wasn't
3081 * previously full
3082 */
3083 get_task_struct(p);
3084 } else if (dropped != p) {
3085 /*
3086 * The new task was inserted, and pushed out a
3087 * different task
3088 */
3089 get_task_struct(p);
3090 put_task_struct(dropped);
3091 }
3092 /*
3093 * Else the new task was newer than anything already in
3094 * the heap and wasn't inserted
3095 */
3096 }
3097 cgroup_iter_end(scan->cg, &it);
3098
3099 if (heap->size) {
3100 for (i = 0; i < heap->size; i++) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07003101 struct task_struct *q = heap->ptrs[i];
Cliff Wickman31a7df02008-02-07 00:14:42 -08003102 if (i == 0) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07003103 latest_time = q->start_time;
3104 latest_task = q;
Cliff Wickman31a7df02008-02-07 00:14:42 -08003105 }
3106 /* Process the task per the caller's callback */
Paul Jackson4fe91d52008-04-29 00:59:55 -07003107 scan->process_task(q, scan);
3108 put_task_struct(q);
Cliff Wickman31a7df02008-02-07 00:14:42 -08003109 }
3110 /*
3111 * If we had to process any tasks at all, scan again
3112 * in case some of them were in the middle of forking
3113 * children that didn't get processed.
3114 * Not the most efficient way to do it, but it avoids
3115 * having to take callback_mutex in the fork path
3116 */
3117 goto again;
3118 }
3119 if (heap == &tmp_heap)
3120 heap_free(&tmp_heap);
3121 return 0;
3122}
3123
Paul Menage817929e2007-10-18 23:39:36 -07003124/*
Ben Blum102a7752009-09-23 15:56:26 -07003125 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003126 *
3127 * Reading this file can return large amounts of data if a cgroup has
3128 * *lots* of attached tasks. So it may need several calls to read(),
3129 * but we cannot guarantee that the information we produce is correct
3130 * unless we produce it entirely atomically.
3131 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07003132 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003133
Li Zefan24528252012-01-20 11:58:43 +08003134/* which pidlist file are we talking about? */
3135enum cgroup_filetype {
3136 CGROUP_FILE_PROCS,
3137 CGROUP_FILE_TASKS,
3138};
3139
3140/*
3141 * A pidlist is a list of pids that virtually represents the contents of one
3142 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
3143 * a pair (one each for procs, tasks) for each pid namespace that's relevant
3144 * to the cgroup.
3145 */
3146struct cgroup_pidlist {
3147 /*
3148 * used to find which pidlist is wanted. doesn't change as long as
3149 * this particular list stays in the list.
3150 */
3151 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
3152 /* array of xids */
3153 pid_t *list;
3154 /* how many elements the above list has */
3155 int length;
3156 /* how many files are using the current array */
3157 int use_count;
3158 /* each of these stored in a list by its cgroup */
3159 struct list_head links;
3160 /* pointer to the cgroup we belong to, for list removal purposes */
3161 struct cgroup *owner;
3162 /* protects the other fields */
3163 struct rw_semaphore mutex;
3164};
3165
Paul Menagebbcb81d2007-10-18 23:39:32 -07003166/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07003167 * The following two functions "fix" the issue where there are more pids
3168 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
3169 * TODO: replace with a kernel-wide solution to this problem
3170 */
3171#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
3172static void *pidlist_allocate(int count)
3173{
3174 if (PIDLIST_TOO_LARGE(count))
3175 return vmalloc(count * sizeof(pid_t));
3176 else
3177 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
3178}
3179static void pidlist_free(void *p)
3180{
3181 if (is_vmalloc_addr(p))
3182 vfree(p);
3183 else
3184 kfree(p);
3185}
3186static void *pidlist_resize(void *p, int newcount)
3187{
3188 void *newlist;
3189 /* note: if new alloc fails, old p will still be valid either way */
3190 if (is_vmalloc_addr(p)) {
3191 newlist = vmalloc(newcount * sizeof(pid_t));
3192 if (!newlist)
3193 return NULL;
3194 memcpy(newlist, p, newcount * sizeof(pid_t));
3195 vfree(p);
3196 } else {
3197 newlist = krealloc(p, newcount * sizeof(pid_t), GFP_KERNEL);
3198 }
3199 return newlist;
3200}
3201
3202/*
Ben Blum102a7752009-09-23 15:56:26 -07003203 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
3204 * If the new stripped list is sufficiently smaller and there's enough memory
3205 * to allocate a new buffer, will let go of the unneeded memory. Returns the
3206 * number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003207 */
Ben Blum102a7752009-09-23 15:56:26 -07003208/* is the size difference enough that we should re-allocate the array? */
3209#define PIDLIST_REALLOC_DIFFERENCE(old, new) ((old) - PAGE_SIZE >= (new))
3210static int pidlist_uniq(pid_t **p, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003211{
Ben Blum102a7752009-09-23 15:56:26 -07003212 int src, dest = 1;
3213 pid_t *list = *p;
3214 pid_t *newlist;
3215
3216 /*
3217 * we presume the 0th element is unique, so i starts at 1. trivial
3218 * edge cases first; no work needs to be done for either
3219 */
3220 if (length == 0 || length == 1)
3221 return length;
3222 /* src and dest walk down the list; dest counts unique elements */
3223 for (src = 1; src < length; src++) {
3224 /* find next unique element */
3225 while (list[src] == list[src-1]) {
3226 src++;
3227 if (src == length)
3228 goto after;
3229 }
3230 /* dest always points to where the next unique element goes */
3231 list[dest] = list[src];
3232 dest++;
3233 }
3234after:
3235 /*
3236 * if the length difference is large enough, we want to allocate a
3237 * smaller buffer to save memory. if this fails due to out of memory,
3238 * we'll just stay with what we've got.
3239 */
3240 if (PIDLIST_REALLOC_DIFFERENCE(length, dest)) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07003241 newlist = pidlist_resize(list, dest);
Ben Blum102a7752009-09-23 15:56:26 -07003242 if (newlist)
3243 *p = newlist;
3244 }
3245 return dest;
3246}
3247
3248static int cmppid(const void *a, const void *b)
3249{
3250 return *(pid_t *)a - *(pid_t *)b;
3251}
3252
3253/*
Ben Blum72a8cb32009-09-23 15:56:27 -07003254 * find the appropriate pidlist for our purpose (given procs vs tasks)
3255 * returns with the lock on that pidlist already held, and takes care
3256 * of the use count, or returns NULL with no locks held if we're out of
3257 * memory.
3258 */
3259static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
3260 enum cgroup_filetype type)
3261{
3262 struct cgroup_pidlist *l;
3263 /* don't need task_nsproxy() if we're looking at ourself */
Li Zefanb70cc5f2010-03-10 15:22:12 -08003264 struct pid_namespace *ns = current->nsproxy->pid_ns;
3265
Ben Blum72a8cb32009-09-23 15:56:27 -07003266 /*
3267 * We can't drop the pidlist_mutex before taking the l->mutex in case
3268 * the last ref-holder is trying to remove l from the list at the same
3269 * time. Holding the pidlist_mutex precludes somebody taking whichever
3270 * list we find out from under us - compare release_pid_array().
3271 */
3272 mutex_lock(&cgrp->pidlist_mutex);
3273 list_for_each_entry(l, &cgrp->pidlists, links) {
3274 if (l->key.type == type && l->key.ns == ns) {
Ben Blum72a8cb32009-09-23 15:56:27 -07003275 /* make sure l doesn't vanish out from under us */
3276 down_write(&l->mutex);
3277 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003278 return l;
3279 }
3280 }
3281 /* entry not found; create a new one */
3282 l = kmalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
3283 if (!l) {
3284 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003285 return l;
3286 }
3287 init_rwsem(&l->mutex);
3288 down_write(&l->mutex);
3289 l->key.type = type;
Li Zefanb70cc5f2010-03-10 15:22:12 -08003290 l->key.ns = get_pid_ns(ns);
Ben Blum72a8cb32009-09-23 15:56:27 -07003291 l->use_count = 0; /* don't increment here */
3292 l->list = NULL;
3293 l->owner = cgrp;
3294 list_add(&l->links, &cgrp->pidlists);
3295 mutex_unlock(&cgrp->pidlist_mutex);
3296 return l;
3297}
3298
3299/*
Ben Blum102a7752009-09-23 15:56:26 -07003300 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
3301 */
Ben Blum72a8cb32009-09-23 15:56:27 -07003302static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
3303 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07003304{
3305 pid_t *array;
3306 int length;
3307 int pid, n = 0; /* used for populating the array */
Paul Menage817929e2007-10-18 23:39:36 -07003308 struct cgroup_iter it;
3309 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07003310 struct cgroup_pidlist *l;
3311
3312 /*
3313 * If cgroup gets more users after we read count, we won't have
3314 * enough space - tough. This race is indistinguishable to the
3315 * caller from the case that the additional cgroup users didn't
3316 * show up until sometime later on.
3317 */
3318 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003319 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07003320 if (!array)
3321 return -ENOMEM;
3322 /* now, populate the array */
Paul Menagebd89aab2007-10-18 23:40:44 -07003323 cgroup_iter_start(cgrp, &it);
3324 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Ben Blum102a7752009-09-23 15:56:26 -07003325 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07003326 break;
Ben Blum102a7752009-09-23 15:56:26 -07003327 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07003328 if (type == CGROUP_FILE_PROCS)
3329 pid = task_tgid_vnr(tsk);
3330 else
3331 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07003332 if (pid > 0) /* make sure to only use valid results */
3333 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07003334 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003335 cgroup_iter_end(cgrp, &it);
Ben Blum102a7752009-09-23 15:56:26 -07003336 length = n;
3337 /* now sort & (if procs) strip out duplicates */
3338 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07003339 if (type == CGROUP_FILE_PROCS)
Ben Blum102a7752009-09-23 15:56:26 -07003340 length = pidlist_uniq(&array, length);
Ben Blum72a8cb32009-09-23 15:56:27 -07003341 l = cgroup_pidlist_find(cgrp, type);
3342 if (!l) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07003343 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07003344 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07003345 }
Ben Blum72a8cb32009-09-23 15:56:27 -07003346 /* store array, freeing old if necessary - lock already held */
Ben Blumd1d9fd32009-09-23 15:56:28 -07003347 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07003348 l->list = array;
3349 l->length = length;
3350 l->use_count++;
3351 up_write(&l->mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003352 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07003353 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003354}
3355
Balbir Singh846c7bb2007-10-18 23:39:44 -07003356/**
Li Zefana043e3b2008-02-23 15:24:09 -08003357 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07003358 * @stats: cgroupstats to fill information into
3359 * @dentry: A dentry entry belonging to the cgroup for which stats have
3360 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08003361 *
3362 * Build and fill cgroupstats so that taskstats can export it to user
3363 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003364 */
3365int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
3366{
3367 int ret = -EINVAL;
Paul Menagebd89aab2007-10-18 23:40:44 -07003368 struct cgroup *cgrp;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003369 struct cgroup_iter it;
3370 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08003371
Balbir Singh846c7bb2007-10-18 23:39:44 -07003372 /*
Li Zefan33d283b2008-11-19 15:36:48 -08003373 * Validate dentry by checking the superblock operations,
3374 * and make sure it's a directory.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003375 */
Li Zefan33d283b2008-11-19 15:36:48 -08003376 if (dentry->d_sb->s_op != &cgroup_ops ||
3377 !S_ISDIR(dentry->d_inode->i_mode))
Balbir Singh846c7bb2007-10-18 23:39:44 -07003378 goto err;
3379
3380 ret = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07003381 cgrp = dentry->d_fsdata;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003382
Paul Menagebd89aab2007-10-18 23:40:44 -07003383 cgroup_iter_start(cgrp, &it);
3384 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07003385 switch (tsk->state) {
3386 case TASK_RUNNING:
3387 stats->nr_running++;
3388 break;
3389 case TASK_INTERRUPTIBLE:
3390 stats->nr_sleeping++;
3391 break;
3392 case TASK_UNINTERRUPTIBLE:
3393 stats->nr_uninterruptible++;
3394 break;
3395 case TASK_STOPPED:
3396 stats->nr_stopped++;
3397 break;
3398 default:
3399 if (delayacct_is_task_waiting_on_io(tsk))
3400 stats->nr_io_wait++;
3401 break;
3402 }
3403 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003404 cgroup_iter_end(cgrp, &it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07003405
Balbir Singh846c7bb2007-10-18 23:39:44 -07003406err:
3407 return ret;
3408}
3409
Paul Menage8f3ff202009-09-23 15:56:25 -07003410
Paul Menagecc31edc2008-10-18 20:28:04 -07003411/*
Ben Blum102a7752009-09-23 15:56:26 -07003412 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07003413 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07003414 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07003415 */
3416
Ben Blum102a7752009-09-23 15:56:26 -07003417static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003418{
3419 /*
3420 * Initially we receive a position value that corresponds to
3421 * one more than the last pid shown (or 0 on the first call or
3422 * after a seek to the start). Use a binary-search to find the
3423 * next pid to display, if any
3424 */
Ben Blum102a7752009-09-23 15:56:26 -07003425 struct cgroup_pidlist *l = s->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07003426 int index = 0, pid = *pos;
3427 int *iter;
3428
Ben Blum102a7752009-09-23 15:56:26 -07003429 down_read(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003430 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07003431 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11003432
Paul Menagecc31edc2008-10-18 20:28:04 -07003433 while (index < end) {
3434 int mid = (index + end) / 2;
Ben Blum102a7752009-09-23 15:56:26 -07003435 if (l->list[mid] == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07003436 index = mid;
3437 break;
Ben Blum102a7752009-09-23 15:56:26 -07003438 } else if (l->list[mid] <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07003439 index = mid + 1;
3440 else
3441 end = mid;
3442 }
3443 }
3444 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07003445 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07003446 return NULL;
3447 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07003448 iter = l->list + index;
Paul Menagecc31edc2008-10-18 20:28:04 -07003449 *pos = *iter;
3450 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003451}
3452
Ben Blum102a7752009-09-23 15:56:26 -07003453static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003454{
Ben Blum102a7752009-09-23 15:56:26 -07003455 struct cgroup_pidlist *l = s->private;
3456 up_read(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003457}
3458
Ben Blum102a7752009-09-23 15:56:26 -07003459static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003460{
Ben Blum102a7752009-09-23 15:56:26 -07003461 struct cgroup_pidlist *l = s->private;
3462 pid_t *p = v;
3463 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07003464 /*
3465 * Advance to the next pid in the array. If this goes off the
3466 * end, we're done
3467 */
3468 p++;
3469 if (p >= end) {
3470 return NULL;
3471 } else {
3472 *pos = *p;
3473 return p;
3474 }
3475}
3476
Ben Blum102a7752009-09-23 15:56:26 -07003477static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003478{
3479 return seq_printf(s, "%d\n", *(int *)v);
3480}
3481
Ben Blum102a7752009-09-23 15:56:26 -07003482/*
3483 * seq_operations functions for iterating on pidlists through seq_file -
3484 * independent of whether it's tasks or procs
3485 */
3486static const struct seq_operations cgroup_pidlist_seq_operations = {
3487 .start = cgroup_pidlist_start,
3488 .stop = cgroup_pidlist_stop,
3489 .next = cgroup_pidlist_next,
3490 .show = cgroup_pidlist_show,
Paul Menagecc31edc2008-10-18 20:28:04 -07003491};
3492
Ben Blum102a7752009-09-23 15:56:26 -07003493static void cgroup_release_pid_array(struct cgroup_pidlist *l)
Paul Menagecc31edc2008-10-18 20:28:04 -07003494{
Ben Blum72a8cb32009-09-23 15:56:27 -07003495 /*
3496 * the case where we're the last user of this particular pidlist will
3497 * have us remove it from the cgroup's list, which entails taking the
3498 * mutex. since in pidlist_find the pidlist->lock depends on cgroup->
3499 * pidlist_mutex, we have to take pidlist_mutex first.
3500 */
3501 mutex_lock(&l->owner->pidlist_mutex);
Ben Blum102a7752009-09-23 15:56:26 -07003502 down_write(&l->mutex);
3503 BUG_ON(!l->use_count);
3504 if (!--l->use_count) {
Ben Blum72a8cb32009-09-23 15:56:27 -07003505 /* we're the last user if refcount is 0; remove and free */
3506 list_del(&l->links);
3507 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003508 pidlist_free(l->list);
Ben Blum72a8cb32009-09-23 15:56:27 -07003509 put_pid_ns(l->key.ns);
3510 up_write(&l->mutex);
3511 kfree(l);
3512 return;
Paul Menagecc31edc2008-10-18 20:28:04 -07003513 }
Ben Blum72a8cb32009-09-23 15:56:27 -07003514 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blum102a7752009-09-23 15:56:26 -07003515 up_write(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003516}
3517
Ben Blum102a7752009-09-23 15:56:26 -07003518static int cgroup_pidlist_release(struct inode *inode, struct file *file)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003519{
Ben Blum102a7752009-09-23 15:56:26 -07003520 struct cgroup_pidlist *l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003521 if (!(file->f_mode & FMODE_READ))
3522 return 0;
Ben Blum102a7752009-09-23 15:56:26 -07003523 /*
3524 * the seq_file will only be initialized if the file was opened for
3525 * reading; hence we check if it's not null only in that case.
3526 */
3527 l = ((struct seq_file *)file->private_data)->private;
3528 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07003529 return seq_release(inode, file);
3530}
3531
Ben Blum102a7752009-09-23 15:56:26 -07003532static const struct file_operations cgroup_pidlist_operations = {
Paul Menagecc31edc2008-10-18 20:28:04 -07003533 .read = seq_read,
3534 .llseek = seq_lseek,
3535 .write = cgroup_file_write,
Ben Blum102a7752009-09-23 15:56:26 -07003536 .release = cgroup_pidlist_release,
Paul Menagecc31edc2008-10-18 20:28:04 -07003537};
3538
3539/*
Ben Blum102a7752009-09-23 15:56:26 -07003540 * The following functions handle opens on a file that displays a pidlist
3541 * (tasks or procs). Prepare an array of the process/thread IDs of whoever's
3542 * in the cgroup.
Paul Menagecc31edc2008-10-18 20:28:04 -07003543 */
Ben Blum102a7752009-09-23 15:56:26 -07003544/* helper function for the two below it */
Ben Blum72a8cb32009-09-23 15:56:27 -07003545static int cgroup_pidlist_open(struct file *file, enum cgroup_filetype type)
Paul Menagecc31edc2008-10-18 20:28:04 -07003546{
3547 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Ben Blum72a8cb32009-09-23 15:56:27 -07003548 struct cgroup_pidlist *l;
Paul Menagecc31edc2008-10-18 20:28:04 -07003549 int retval;
3550
3551 /* Nothing to do for write-only files */
3552 if (!(file->f_mode & FMODE_READ))
3553 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003554
Ben Blum102a7752009-09-23 15:56:26 -07003555 /* have the array populated */
Ben Blum72a8cb32009-09-23 15:56:27 -07003556 retval = pidlist_array_load(cgrp, type, &l);
Ben Blum102a7752009-09-23 15:56:26 -07003557 if (retval)
3558 return retval;
3559 /* configure file information */
3560 file->f_op = &cgroup_pidlist_operations;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003561
Ben Blum102a7752009-09-23 15:56:26 -07003562 retval = seq_open(file, &cgroup_pidlist_seq_operations);
Paul Menagecc31edc2008-10-18 20:28:04 -07003563 if (retval) {
Ben Blum102a7752009-09-23 15:56:26 -07003564 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07003565 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003566 }
Ben Blum102a7752009-09-23 15:56:26 -07003567 ((struct seq_file *)file->private_data)->private = l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003568 return 0;
3569}
Ben Blum102a7752009-09-23 15:56:26 -07003570static int cgroup_tasks_open(struct inode *unused, struct file *file)
3571{
Ben Blum72a8cb32009-09-23 15:56:27 -07003572 return cgroup_pidlist_open(file, CGROUP_FILE_TASKS);
Ben Blum102a7752009-09-23 15:56:26 -07003573}
3574static int cgroup_procs_open(struct inode *unused, struct file *file)
3575{
Ben Blum72a8cb32009-09-23 15:56:27 -07003576 return cgroup_pidlist_open(file, CGROUP_FILE_PROCS);
Ben Blum102a7752009-09-23 15:56:26 -07003577}
Paul Menagebbcb81d2007-10-18 23:39:32 -07003578
Paul Menagebd89aab2007-10-18 23:40:44 -07003579static u64 cgroup_read_notify_on_release(struct cgroup *cgrp,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003580 struct cftype *cft)
3581{
Paul Menagebd89aab2007-10-18 23:40:44 -07003582 return notify_on_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003583}
3584
Paul Menage6379c102008-07-25 01:47:01 -07003585static int cgroup_write_notify_on_release(struct cgroup *cgrp,
3586 struct cftype *cft,
3587 u64 val)
3588{
3589 clear_bit(CGRP_RELEASABLE, &cgrp->flags);
3590 if (val)
3591 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3592 else
3593 clear_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3594 return 0;
3595}
3596
Paul Menagebbcb81d2007-10-18 23:39:32 -07003597/*
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003598 * Unregister event and free resources.
3599 *
3600 * Gets called from workqueue.
3601 */
3602static void cgroup_event_remove(struct work_struct *work)
3603{
3604 struct cgroup_event *event = container_of(work, struct cgroup_event,
3605 remove);
3606 struct cgroup *cgrp = event->cgrp;
3607
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003608 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3609
3610 eventfd_ctx_put(event->eventfd);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003611 kfree(event);
Kirill A. Shutemova0a4db52010-03-10 15:22:34 -08003612 dput(cgrp->dentry);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003613}
3614
3615/*
3616 * Gets called on POLLHUP on eventfd when user closes it.
3617 *
3618 * Called with wqh->lock held and interrupts disabled.
3619 */
3620static int cgroup_event_wake(wait_queue_t *wait, unsigned mode,
3621 int sync, void *key)
3622{
3623 struct cgroup_event *event = container_of(wait,
3624 struct cgroup_event, wait);
3625 struct cgroup *cgrp = event->cgrp;
3626 unsigned long flags = (unsigned long)key;
3627
3628 if (flags & POLLHUP) {
Changli Gaoa93d2f12010-05-07 14:33:26 +08003629 __remove_wait_queue(event->wqh, &event->wait);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003630 spin_lock(&cgrp->event_list_lock);
3631 list_del(&event->list);
3632 spin_unlock(&cgrp->event_list_lock);
3633 /*
3634 * We are in atomic context, but cgroup_event_remove() may
3635 * sleep, so we have to call it in workqueue.
3636 */
3637 schedule_work(&event->remove);
3638 }
3639
3640 return 0;
3641}
3642
3643static void cgroup_event_ptable_queue_proc(struct file *file,
3644 wait_queue_head_t *wqh, poll_table *pt)
3645{
3646 struct cgroup_event *event = container_of(pt,
3647 struct cgroup_event, pt);
3648
3649 event->wqh = wqh;
3650 add_wait_queue(wqh, &event->wait);
3651}
3652
3653/*
3654 * Parse input and register new cgroup event handler.
3655 *
3656 * Input must be in format '<event_fd> <control_fd> <args>'.
3657 * Interpretation of args is defined by control file implementation.
3658 */
3659static int cgroup_write_event_control(struct cgroup *cgrp, struct cftype *cft,
3660 const char *buffer)
3661{
3662 struct cgroup_event *event = NULL;
3663 unsigned int efd, cfd;
3664 struct file *efile = NULL;
3665 struct file *cfile = NULL;
3666 char *endp;
3667 int ret;
3668
3669 efd = simple_strtoul(buffer, &endp, 10);
3670 if (*endp != ' ')
3671 return -EINVAL;
3672 buffer = endp + 1;
3673
3674 cfd = simple_strtoul(buffer, &endp, 10);
3675 if ((*endp != ' ') && (*endp != '\0'))
3676 return -EINVAL;
3677 buffer = endp + 1;
3678
3679 event = kzalloc(sizeof(*event), GFP_KERNEL);
3680 if (!event)
3681 return -ENOMEM;
3682 event->cgrp = cgrp;
3683 INIT_LIST_HEAD(&event->list);
3684 init_poll_funcptr(&event->pt, cgroup_event_ptable_queue_proc);
3685 init_waitqueue_func_entry(&event->wait, cgroup_event_wake);
3686 INIT_WORK(&event->remove, cgroup_event_remove);
3687
3688 efile = eventfd_fget(efd);
3689 if (IS_ERR(efile)) {
3690 ret = PTR_ERR(efile);
3691 goto fail;
3692 }
3693
3694 event->eventfd = eventfd_ctx_fileget(efile);
3695 if (IS_ERR(event->eventfd)) {
3696 ret = PTR_ERR(event->eventfd);
3697 goto fail;
3698 }
3699
3700 cfile = fget(cfd);
3701 if (!cfile) {
3702 ret = -EBADF;
3703 goto fail;
3704 }
3705
3706 /* the process need read permission on control file */
Al Viro3bfa7842011-06-19 12:55:10 -04003707 /* AV: shouldn't we check that it's been opened for read instead? */
3708 ret = inode_permission(cfile->f_path.dentry->d_inode, MAY_READ);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003709 if (ret < 0)
3710 goto fail;
3711
3712 event->cft = __file_cft(cfile);
3713 if (IS_ERR(event->cft)) {
3714 ret = PTR_ERR(event->cft);
3715 goto fail;
3716 }
3717
3718 if (!event->cft->register_event || !event->cft->unregister_event) {
3719 ret = -EINVAL;
3720 goto fail;
3721 }
3722
3723 ret = event->cft->register_event(cgrp, event->cft,
3724 event->eventfd, buffer);
3725 if (ret)
3726 goto fail;
3727
3728 if (efile->f_op->poll(efile, &event->pt) & POLLHUP) {
3729 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3730 ret = 0;
3731 goto fail;
3732 }
3733
Kirill A. Shutemova0a4db52010-03-10 15:22:34 -08003734 /*
3735 * Events should be removed after rmdir of cgroup directory, but before
3736 * destroying subsystem state objects. Let's take reference to cgroup
3737 * directory dentry to do that.
3738 */
3739 dget(cgrp->dentry);
3740
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003741 spin_lock(&cgrp->event_list_lock);
3742 list_add(&event->list, &cgrp->event_list);
3743 spin_unlock(&cgrp->event_list_lock);
3744
3745 fput(cfile);
3746 fput(efile);
3747
3748 return 0;
3749
3750fail:
3751 if (cfile)
3752 fput(cfile);
3753
3754 if (event && event->eventfd && !IS_ERR(event->eventfd))
3755 eventfd_ctx_put(event->eventfd);
3756
3757 if (!IS_ERR_OR_NULL(efile))
3758 fput(efile);
3759
3760 kfree(event);
3761
3762 return ret;
3763}
3764
Daniel Lezcano97978e62010-10-27 15:33:35 -07003765static u64 cgroup_clone_children_read(struct cgroup *cgrp,
3766 struct cftype *cft)
3767{
3768 return clone_children(cgrp);
3769}
3770
3771static int cgroup_clone_children_write(struct cgroup *cgrp,
3772 struct cftype *cft,
3773 u64 val)
3774{
3775 if (val)
3776 set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3777 else
3778 clear_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3779 return 0;
3780}
3781
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003782/*
Paul Menagebbcb81d2007-10-18 23:39:32 -07003783 * for the common functions, 'private' gives the type of file
3784 */
Ben Blum102a7752009-09-23 15:56:26 -07003785/* for hysterical raisins, we can't put this on the older files */
3786#define CGROUP_FILE_GENERIC_PREFIX "cgroup."
Paul Menage81a6a5c2007-10-18 23:39:38 -07003787static struct cftype files[] = {
3788 {
3789 .name = "tasks",
3790 .open = cgroup_tasks_open,
Paul Menageaf351022008-07-25 01:47:01 -07003791 .write_u64 = cgroup_tasks_write,
Ben Blum102a7752009-09-23 15:56:26 -07003792 .release = cgroup_pidlist_release,
Li Zefan099fca32009-04-02 16:57:29 -07003793 .mode = S_IRUGO | S_IWUSR,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003794 },
Ben Blum102a7752009-09-23 15:56:26 -07003795 {
3796 .name = CGROUP_FILE_GENERIC_PREFIX "procs",
3797 .open = cgroup_procs_open,
Ben Blum74a11662011-05-26 16:25:20 -07003798 .write_u64 = cgroup_procs_write,
Ben Blum102a7752009-09-23 15:56:26 -07003799 .release = cgroup_pidlist_release,
Ben Blum74a11662011-05-26 16:25:20 -07003800 .mode = S_IRUGO | S_IWUSR,
Ben Blum102a7752009-09-23 15:56:26 -07003801 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003802 {
3803 .name = "notify_on_release",
Paul Menagef4c753b2008-04-29 00:59:56 -07003804 .read_u64 = cgroup_read_notify_on_release,
Paul Menage6379c102008-07-25 01:47:01 -07003805 .write_u64 = cgroup_write_notify_on_release,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003806 },
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003807 {
3808 .name = CGROUP_FILE_GENERIC_PREFIX "event_control",
3809 .write_string = cgroup_write_event_control,
3810 .mode = S_IWUGO,
3811 },
Daniel Lezcano97978e62010-10-27 15:33:35 -07003812 {
3813 .name = "cgroup.clone_children",
3814 .read_u64 = cgroup_clone_children_read,
3815 .write_u64 = cgroup_clone_children_write,
3816 },
Tejun Heo6e6ff252012-04-01 12:09:55 -07003817 {
3818 .name = "release_agent",
3819 .flags = CFTYPE_ONLY_ON_ROOT,
3820 .read_seq_string = cgroup_release_agent_show,
3821 .write_string = cgroup_release_agent_write,
3822 .max_write_len = PATH_MAX,
3823 },
Tejun Heodb0416b2012-04-01 12:09:55 -07003824 { } /* terminate */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003825};
3826
Paul Menagebd89aab2007-10-18 23:40:44 -07003827static int cgroup_populate_dir(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003828{
3829 int err;
3830 struct cgroup_subsys *ss;
3831
Tejun Heo79578622012-04-01 12:09:56 -07003832 err = cgroup_addrm_files(cgrp, NULL, files, true);
Paul Menagebbcb81d2007-10-18 23:39:32 -07003833 if (err < 0)
3834 return err;
3835
Tejun Heo8e3f6542012-04-01 12:09:55 -07003836 /* process cftsets of each subsystem */
Paul Menagebd89aab2007-10-18 23:40:44 -07003837 for_each_subsys(cgrp->root, ss) {
Tejun Heo8e3f6542012-04-01 12:09:55 -07003838 struct cftype_set *set;
3839
Paul Menagebd89aab2007-10-18 23:40:44 -07003840 if (ss->populate && (err = ss->populate(ss, cgrp)) < 0)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003841 return err;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003842
Tejun Heodb0416b2012-04-01 12:09:55 -07003843 list_for_each_entry(set, &ss->cftsets, node)
Tejun Heo79578622012-04-01 12:09:56 -07003844 cgroup_addrm_files(cgrp, ss, set->cfts, true);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003845 }
Tejun Heo8e3f6542012-04-01 12:09:55 -07003846
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003847 /* This cgroup is ready now */
3848 for_each_subsys(cgrp->root, ss) {
3849 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3850 /*
3851 * Update id->css pointer and make this css visible from
3852 * CSS ID functions. This pointer will be dereferened
3853 * from RCU-read-side without locks.
3854 */
3855 if (css->id)
3856 rcu_assign_pointer(css->id->css, css);
3857 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003858
3859 return 0;
3860}
3861
3862static void init_cgroup_css(struct cgroup_subsys_state *css,
3863 struct cgroup_subsys *ss,
Paul Menagebd89aab2007-10-18 23:40:44 -07003864 struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003865{
Paul Menagebd89aab2007-10-18 23:40:44 -07003866 css->cgroup = cgrp;
Paul Menagee7c5ec92009-01-07 18:08:38 -08003867 atomic_set(&css->refcnt, 1);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003868 css->flags = 0;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003869 css->id = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07003870 if (cgrp == dummytop)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003871 set_bit(CSS_ROOT, &css->flags);
Paul Menagebd89aab2007-10-18 23:40:44 -07003872 BUG_ON(cgrp->subsys[ss->subsys_id]);
3873 cgrp->subsys[ss->subsys_id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003874}
3875
Paul Menage999cd8a2009-01-07 18:08:36 -08003876static void cgroup_lock_hierarchy(struct cgroupfs_root *root)
3877{
3878 /* We need to take each hierarchy_mutex in a consistent order */
3879 int i;
3880
Ben Blumaae8aab2010-03-10 15:22:07 -08003881 /*
3882 * No worry about a race with rebind_subsystems that might mess up the
3883 * locking order, since both parties are under cgroup_mutex.
3884 */
Paul Menage999cd8a2009-01-07 18:08:36 -08003885 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3886 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08003887 if (ss == NULL)
3888 continue;
Paul Menage999cd8a2009-01-07 18:08:36 -08003889 if (ss->root == root)
Li Zefancfebe562009-02-11 13:04:36 -08003890 mutex_lock(&ss->hierarchy_mutex);
Paul Menage999cd8a2009-01-07 18:08:36 -08003891 }
3892}
3893
3894static void cgroup_unlock_hierarchy(struct cgroupfs_root *root)
3895{
3896 int i;
3897
3898 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3899 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08003900 if (ss == NULL)
3901 continue;
Paul Menage999cd8a2009-01-07 18:08:36 -08003902 if (ss->root == root)
3903 mutex_unlock(&ss->hierarchy_mutex);
3904 }
3905}
3906
Paul Menageddbcc7e2007-10-18 23:39:30 -07003907/*
Li Zefana043e3b2008-02-23 15:24:09 -08003908 * cgroup_create - create a cgroup
3909 * @parent: cgroup that will be parent of the new cgroup
3910 * @dentry: dentry of the new cgroup
3911 * @mode: mode to set on new inode
Paul Menageddbcc7e2007-10-18 23:39:30 -07003912 *
Li Zefana043e3b2008-02-23 15:24:09 -08003913 * Must be called with the mutex on the parent inode held
Paul Menageddbcc7e2007-10-18 23:39:30 -07003914 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07003915static long cgroup_create(struct cgroup *parent, struct dentry *dentry,
Al Viroa5e7ed32011-07-26 01:55:55 -04003916 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003917{
Paul Menagebd89aab2007-10-18 23:40:44 -07003918 struct cgroup *cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003919 struct cgroupfs_root *root = parent->root;
3920 int err = 0;
3921 struct cgroup_subsys *ss;
3922 struct super_block *sb = root->sb;
3923
Paul Menagebd89aab2007-10-18 23:40:44 -07003924 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
3925 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003926 return -ENOMEM;
3927
3928 /* Grab a reference on the superblock so the hierarchy doesn't
3929 * get deleted on unmount if there are child cgroups. This
3930 * can be done outside cgroup_mutex, since the sb can't
3931 * disappear while someone has an open control file on the
3932 * fs */
3933 atomic_inc(&sb->s_active);
3934
3935 mutex_lock(&cgroup_mutex);
3936
Paul Menagecc31edc2008-10-18 20:28:04 -07003937 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003938
Paul Menagebd89aab2007-10-18 23:40:44 -07003939 cgrp->parent = parent;
3940 cgrp->root = parent->root;
3941 cgrp->top_cgroup = parent->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003942
Li Zefanb6abdb02008-03-04 14:28:19 -08003943 if (notify_on_release(parent))
3944 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3945
Daniel Lezcano97978e62010-10-27 15:33:35 -07003946 if (clone_children(parent))
3947 set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3948
Paul Menageddbcc7e2007-10-18 23:39:30 -07003949 for_each_subsys(root, ss) {
Li Zefan761b3ef2012-01-31 13:47:36 +08003950 struct cgroup_subsys_state *css = ss->create(cgrp);
Li Zefan4528fd02010-02-02 13:44:10 -08003951
Paul Menageddbcc7e2007-10-18 23:39:30 -07003952 if (IS_ERR(css)) {
3953 err = PTR_ERR(css);
3954 goto err_destroy;
3955 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003956 init_cgroup_css(css, ss, cgrp);
Li Zefan4528fd02010-02-02 13:44:10 -08003957 if (ss->use_id) {
3958 err = alloc_css_id(ss, parent, cgrp);
3959 if (err)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003960 goto err_destroy;
Li Zefan4528fd02010-02-02 13:44:10 -08003961 }
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003962 /* At error, ->destroy() callback has to free assigned ID. */
Daniel Lezcano97978e62010-10-27 15:33:35 -07003963 if (clone_children(parent) && ss->post_clone)
Li Zefan761b3ef2012-01-31 13:47:36 +08003964 ss->post_clone(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003965 }
3966
Paul Menage999cd8a2009-01-07 18:08:36 -08003967 cgroup_lock_hierarchy(root);
Paul Menagebd89aab2007-10-18 23:40:44 -07003968 list_add(&cgrp->sibling, &cgrp->parent->children);
Paul Menage999cd8a2009-01-07 18:08:36 -08003969 cgroup_unlock_hierarchy(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003970 root->number_of_cgroups++;
3971
Paul Menagebd89aab2007-10-18 23:40:44 -07003972 err = cgroup_create_dir(cgrp, dentry, mode);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003973 if (err < 0)
3974 goto err_remove;
3975
3976 /* The cgroup directory was pre-locked for us */
Paul Menagebd89aab2007-10-18 23:40:44 -07003977 BUG_ON(!mutex_is_locked(&cgrp->dentry->d_inode->i_mutex));
Paul Menageddbcc7e2007-10-18 23:39:30 -07003978
Tejun Heob0ca5a82012-04-01 12:09:54 -07003979 list_add_tail(&cgrp->allcg_node, &root->allcg_list);
3980
Paul Menagebd89aab2007-10-18 23:40:44 -07003981 err = cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003982 /* If err < 0, we have a half-filled directory - oh well ;) */
3983
3984 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07003985 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003986
3987 return 0;
3988
3989 err_remove:
3990
KAMEZAWA Hiroyukibaef99a2009-01-29 14:25:10 -08003991 cgroup_lock_hierarchy(root);
Paul Menagebd89aab2007-10-18 23:40:44 -07003992 list_del(&cgrp->sibling);
KAMEZAWA Hiroyukibaef99a2009-01-29 14:25:10 -08003993 cgroup_unlock_hierarchy(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003994 root->number_of_cgroups--;
3995
3996 err_destroy:
3997
3998 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07003999 if (cgrp->subsys[ss->subsys_id])
Li Zefan761b3ef2012-01-31 13:47:36 +08004000 ss->destroy(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004001 }
4002
4003 mutex_unlock(&cgroup_mutex);
4004
4005 /* Release the reference count that we took on the superblock */
4006 deactivate_super(sb);
4007
Paul Menagebd89aab2007-10-18 23:40:44 -07004008 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004009 return err;
4010}
4011
Al Viro18bb1db2011-07-26 01:41:39 -04004012static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004013{
4014 struct cgroup *c_parent = dentry->d_parent->d_fsdata;
4015
4016 /* the vfs holds inode->i_mutex already */
4017 return cgroup_create(c_parent, dentry, mode | S_IFDIR);
4018}
4019
Tejun Heo28b4c272012-04-01 12:09:56 -07004020/*
4021 * Check the reference count on each subsystem. Since we already
4022 * established that there are no tasks in the cgroup, if the css refcount
4023 * is also 1, then there should be no outstanding references, so the
4024 * subsystem is safe to destroy. We scan across all subsystems rather than
4025 * using the per-hierarchy linked list of mounted subsystems since we can
4026 * be called via check_for_release() with no synchronization other than
4027 * RCU, and the subsystem linked list isn't RCU-safe.
4028 */
Li Zefan55b6fd02008-07-29 22:33:20 -07004029static int cgroup_has_css_refs(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004030{
Paul Menage81a6a5c2007-10-18 23:39:38 -07004031 int i;
Tejun Heo28b4c272012-04-01 12:09:56 -07004032
Ben Blumaae8aab2010-03-10 15:22:07 -08004033 /*
4034 * We won't need to lock the subsys array, because the subsystems
4035 * we're concerned about aren't going anywhere since our cgroup root
4036 * has a reference on them.
4037 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004038 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
4039 struct cgroup_subsys *ss = subsys[i];
4040 struct cgroup_subsys_state *css;
Tejun Heo28b4c272012-04-01 12:09:56 -07004041
Ben Blumaae8aab2010-03-10 15:22:07 -08004042 /* Skip subsystems not present or not in this hierarchy */
4043 if (ss == NULL || ss->root != cgrp->root)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004044 continue;
Tejun Heo28b4c272012-04-01 12:09:56 -07004045
Paul Menagebd89aab2007-10-18 23:40:44 -07004046 css = cgrp->subsys[ss->subsys_id];
Tejun Heo28b4c272012-04-01 12:09:56 -07004047 /*
4048 * When called from check_for_release() it's possible
Paul Menage81a6a5c2007-10-18 23:39:38 -07004049 * that by this point the cgroup has been removed
4050 * and the css deleted. But a false-positive doesn't
4051 * matter, since it can only happen if the cgroup
4052 * has been deleted and hence no longer needs the
Tejun Heo28b4c272012-04-01 12:09:56 -07004053 * release agent to be called anyway.
4054 */
4055 if (css && css_refcnt(css) > 1)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004056 return 1;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004057 }
4058 return 0;
4059}
4060
Paul Menagee7c5ec92009-01-07 18:08:38 -08004061/*
4062 * Atomically mark all (or else none) of the cgroup's CSS objects as
4063 * CSS_REMOVED. Return true on success, or false if the cgroup has
4064 * busy subsystems. Call with cgroup_mutex held
4065 */
4066
4067static int cgroup_clear_css_refs(struct cgroup *cgrp)
4068{
4069 struct cgroup_subsys *ss;
4070 unsigned long flags;
4071 bool failed = false;
Tejun Heo28b4c272012-04-01 12:09:56 -07004072
Paul Menagee7c5ec92009-01-07 18:08:38 -08004073 local_irq_save(flags);
Tejun Heo28b4c272012-04-01 12:09:56 -07004074
4075 /*
4076 * Block new css_tryget() by deactivating refcnt. If all refcnts
4077 * were 1 at the moment of deactivation, we succeeded.
4078 */
Paul Menagee7c5ec92009-01-07 18:08:38 -08004079 for_each_subsys(cgrp->root, ss) {
4080 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
Tejun Heo28b4c272012-04-01 12:09:56 -07004081
4082 WARN_ON(atomic_read(&css->refcnt) < 0);
4083 atomic_add(CSS_DEACT_BIAS, &css->refcnt);
4084 failed |= css_refcnt(css) != 1;
Paul Menagee7c5ec92009-01-07 18:08:38 -08004085 }
Tejun Heo28b4c272012-04-01 12:09:56 -07004086
4087 /*
4088 * If succeeded, set REMOVED and put all the base refs; otherwise,
4089 * restore refcnts to positive values. Either way, all in-progress
4090 * css_tryget() will be released.
4091 */
Paul Menagee7c5ec92009-01-07 18:08:38 -08004092 for_each_subsys(cgrp->root, ss) {
4093 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
Tejun Heo28b4c272012-04-01 12:09:56 -07004094
4095 if (!failed) {
Paul Menagee7c5ec92009-01-07 18:08:38 -08004096 set_bit(CSS_REMOVED, &css->flags);
Tejun Heo28b4c272012-04-01 12:09:56 -07004097 css_put(css);
4098 } else {
4099 atomic_sub(CSS_DEACT_BIAS, &css->refcnt);
Paul Menagee7c5ec92009-01-07 18:08:38 -08004100 }
4101 }
Tejun Heo28b4c272012-04-01 12:09:56 -07004102
Paul Menagee7c5ec92009-01-07 18:08:38 -08004103 local_irq_restore(flags);
4104 return !failed;
4105}
4106
Paul Menageddbcc7e2007-10-18 23:39:30 -07004107static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry)
4108{
Paul Menagebd89aab2007-10-18 23:40:44 -07004109 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004110 struct dentry *d;
4111 struct cgroup *parent;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004112 DEFINE_WAIT(wait);
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08004113 struct cgroup_event *event, *tmp;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004114 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004115
4116 /* the vfs holds both inode->i_mutex already */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004117again:
Paul Menageddbcc7e2007-10-18 23:39:30 -07004118 mutex_lock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07004119 if (atomic_read(&cgrp->count) != 0) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004120 mutex_unlock(&cgroup_mutex);
4121 return -EBUSY;
4122 }
Paul Menagebd89aab2007-10-18 23:40:44 -07004123 if (!list_empty(&cgrp->children)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004124 mutex_unlock(&cgroup_mutex);
4125 return -EBUSY;
4126 }
KAMEZAWA Hiroyuki3fa59df2008-11-19 15:36:34 -08004127 mutex_unlock(&cgroup_mutex);
Li Zefana043e3b2008-02-23 15:24:09 -08004128
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08004129 /*
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004130 * In general, subsystem has no css->refcnt after pre_destroy(). But
4131 * in racy cases, subsystem may have to get css->refcnt after
4132 * pre_destroy() and it makes rmdir return with -EBUSY. This sometimes
4133 * make rmdir return -EBUSY too often. To avoid that, we use waitqueue
4134 * for cgroup's rmdir. CGRP_WAIT_ON_RMDIR is for synchronizing rmdir
4135 * and subsystem's reference count handling. Please see css_get/put
4136 * and css_tryget() and cgroup_wakeup_rmdir_waiter() implementation.
4137 */
4138 set_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
4139
4140 /*
Li Zefana043e3b2008-02-23 15:24:09 -08004141 * Call pre_destroy handlers of subsys. Notify subsystems
4142 * that rmdir() request comes.
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08004143 */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004144 ret = cgroup_call_pre_destroy(cgrp);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004145 if (ret) {
4146 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004147 return ret;
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004148 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004149
KAMEZAWA Hiroyuki3fa59df2008-11-19 15:36:34 -08004150 mutex_lock(&cgroup_mutex);
4151 parent = cgrp->parent;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004152 if (atomic_read(&cgrp->count) || !list_empty(&cgrp->children)) {
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004153 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004154 mutex_unlock(&cgroup_mutex);
4155 return -EBUSY;
4156 }
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004157 prepare_to_wait(&cgroup_rmdir_waitq, &wait, TASK_INTERRUPTIBLE);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004158 if (!cgroup_clear_css_refs(cgrp)) {
4159 mutex_unlock(&cgroup_mutex);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004160 /*
4161 * Because someone may call cgroup_wakeup_rmdir_waiter() before
4162 * prepare_to_wait(), we need to check this flag.
4163 */
4164 if (test_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags))
4165 schedule();
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004166 finish_wait(&cgroup_rmdir_waitq, &wait);
4167 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
4168 if (signal_pending(current))
4169 return -EINTR;
4170 goto again;
4171 }
4172 /* NO css_tryget() can success after here. */
4173 finish_wait(&cgroup_rmdir_waitq, &wait);
4174 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004175
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004176 raw_spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07004177 set_bit(CGRP_REMOVED, &cgrp->flags);
4178 if (!list_empty(&cgrp->release_list))
Phil Carmody8d258792011-03-22 16:30:13 -07004179 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004180 raw_spin_unlock(&release_list_lock);
Paul Menage999cd8a2009-01-07 18:08:36 -08004181
4182 cgroup_lock_hierarchy(cgrp->root);
4183 /* delete this cgroup from parent->children */
Phil Carmody8d258792011-03-22 16:30:13 -07004184 list_del_init(&cgrp->sibling);
Paul Menage999cd8a2009-01-07 18:08:36 -08004185 cgroup_unlock_hierarchy(cgrp->root);
4186
Tejun Heob0ca5a82012-04-01 12:09:54 -07004187 list_del_init(&cgrp->allcg_node);
4188
Paul Menagebd89aab2007-10-18 23:40:44 -07004189 d = dget(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004190
4191 cgroup_d_remove_dir(d);
4192 dput(d);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004193
Paul Menagebd89aab2007-10-18 23:40:44 -07004194 set_bit(CGRP_RELEASABLE, &parent->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004195 check_for_release(parent);
4196
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08004197 /*
4198 * Unregister events and notify userspace.
4199 * Notify userspace about cgroup removing only after rmdir of cgroup
4200 * directory to avoid race between userspace and kernelspace
4201 */
4202 spin_lock(&cgrp->event_list_lock);
4203 list_for_each_entry_safe(event, tmp, &cgrp->event_list, list) {
4204 list_del(&event->list);
4205 remove_wait_queue(event->wqh, &event->wait);
4206 eventfd_signal(event->eventfd, 1);
4207 schedule_work(&event->remove);
4208 }
4209 spin_unlock(&cgrp->event_list_lock);
4210
Paul Menageddbcc7e2007-10-18 23:39:30 -07004211 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004212 return 0;
4213}
4214
Tejun Heo8e3f6542012-04-01 12:09:55 -07004215static void __init_or_module cgroup_init_cftsets(struct cgroup_subsys *ss)
4216{
4217 INIT_LIST_HEAD(&ss->cftsets);
4218
4219 /*
4220 * base_cftset is embedded in subsys itself, no need to worry about
4221 * deregistration.
4222 */
4223 if (ss->base_cftypes) {
4224 ss->base_cftset.cfts = ss->base_cftypes;
4225 list_add_tail(&ss->base_cftset.node, &ss->cftsets);
4226 }
4227}
4228
Li Zefan06a11922008-04-29 01:00:07 -07004229static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004230{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004231 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08004232
4233 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004234
Tejun Heo8e3f6542012-04-01 12:09:55 -07004235 /* init base cftset */
4236 cgroup_init_cftsets(ss);
4237
Paul Menageddbcc7e2007-10-18 23:39:30 -07004238 /* Create the top cgroup state for this subsystem */
Li Zefan33a68ac2009-01-07 18:07:42 -08004239 list_add(&ss->sibling, &rootnode.subsys_list);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004240 ss->root = &rootnode;
Li Zefan761b3ef2012-01-31 13:47:36 +08004241 css = ss->create(dummytop);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004242 /* We don't handle early failures gracefully */
4243 BUG_ON(IS_ERR(css));
4244 init_cgroup_css(css, ss, dummytop);
4245
Li Zefane8d55fd2008-04-29 01:00:13 -07004246 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07004247 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07004248 * newly registered, all tasks and hence the
4249 * init_css_set is in the subsystem's top cgroup. */
4250 init_css_set.subsys[ss->subsys_id] = dummytop->subsys[ss->subsys_id];
Paul Menageddbcc7e2007-10-18 23:39:30 -07004251
4252 need_forkexit_callback |= ss->fork || ss->exit;
4253
Li Zefane8d55fd2008-04-29 01:00:13 -07004254 /* At system boot, before all subsystems have been
4255 * registered, no tasks have been forked, so we don't
4256 * need to invoke fork callbacks here. */
4257 BUG_ON(!list_empty(&init_task.tasks));
4258
Paul Menage999cd8a2009-01-07 18:08:36 -08004259 mutex_init(&ss->hierarchy_mutex);
Li Zefancfebe562009-02-11 13:04:36 -08004260 lockdep_set_class(&ss->hierarchy_mutex, &ss->subsys_key);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004261 ss->active = 1;
Ben Blume6a11052010-03-10 15:22:09 -08004262
4263 /* this function shouldn't be used with modular subsystems, since they
4264 * need to register a subsys_id, among other things */
4265 BUG_ON(ss->module);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004266}
4267
4268/**
Ben Blume6a11052010-03-10 15:22:09 -08004269 * cgroup_load_subsys: load and register a modular subsystem at runtime
4270 * @ss: the subsystem to load
4271 *
4272 * This function should be called in a modular subsystem's initcall. If the
Thomas Weber88393162010-03-16 11:47:56 +01004273 * subsystem is built as a module, it will be assigned a new subsys_id and set
Ben Blume6a11052010-03-10 15:22:09 -08004274 * up for use. If the subsystem is built-in anyway, work is delegated to the
4275 * simpler cgroup_init_subsys.
4276 */
4277int __init_or_module cgroup_load_subsys(struct cgroup_subsys *ss)
4278{
4279 int i;
4280 struct cgroup_subsys_state *css;
4281
4282 /* check name and function validity */
4283 if (ss->name == NULL || strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN ||
4284 ss->create == NULL || ss->destroy == NULL)
4285 return -EINVAL;
4286
4287 /*
4288 * we don't support callbacks in modular subsystems. this check is
4289 * before the ss->module check for consistency; a subsystem that could
4290 * be a module should still have no callbacks even if the user isn't
4291 * compiling it as one.
4292 */
4293 if (ss->fork || ss->exit)
4294 return -EINVAL;
4295
4296 /*
4297 * an optionally modular subsystem is built-in: we want to do nothing,
4298 * since cgroup_init_subsys will have already taken care of it.
4299 */
4300 if (ss->module == NULL) {
4301 /* a few sanity checks */
4302 BUG_ON(ss->subsys_id >= CGROUP_BUILTIN_SUBSYS_COUNT);
4303 BUG_ON(subsys[ss->subsys_id] != ss);
4304 return 0;
4305 }
4306
Tejun Heo8e3f6542012-04-01 12:09:55 -07004307 /* init base cftset */
4308 cgroup_init_cftsets(ss);
4309
Ben Blume6a11052010-03-10 15:22:09 -08004310 /*
4311 * need to register a subsys id before anything else - for example,
4312 * init_cgroup_css needs it.
4313 */
4314 mutex_lock(&cgroup_mutex);
4315 /* find the first empty slot in the array */
4316 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
4317 if (subsys[i] == NULL)
4318 break;
4319 }
4320 if (i == CGROUP_SUBSYS_COUNT) {
4321 /* maximum number of subsystems already registered! */
4322 mutex_unlock(&cgroup_mutex);
4323 return -EBUSY;
4324 }
4325 /* assign ourselves the subsys_id */
4326 ss->subsys_id = i;
4327 subsys[i] = ss;
4328
4329 /*
4330 * no ss->create seems to need anything important in the ss struct, so
4331 * this can happen first (i.e. before the rootnode attachment).
4332 */
Li Zefan761b3ef2012-01-31 13:47:36 +08004333 css = ss->create(dummytop);
Ben Blume6a11052010-03-10 15:22:09 -08004334 if (IS_ERR(css)) {
4335 /* failure case - need to deassign the subsys[] slot. */
4336 subsys[i] = NULL;
4337 mutex_unlock(&cgroup_mutex);
4338 return PTR_ERR(css);
4339 }
4340
4341 list_add(&ss->sibling, &rootnode.subsys_list);
4342 ss->root = &rootnode;
4343
4344 /* our new subsystem will be attached to the dummy hierarchy. */
4345 init_cgroup_css(css, ss, dummytop);
4346 /* init_idr must be after init_cgroup_css because it sets css->id. */
4347 if (ss->use_id) {
4348 int ret = cgroup_init_idr(ss, css);
4349 if (ret) {
4350 dummytop->subsys[ss->subsys_id] = NULL;
Li Zefan761b3ef2012-01-31 13:47:36 +08004351 ss->destroy(dummytop);
Ben Blume6a11052010-03-10 15:22:09 -08004352 subsys[i] = NULL;
4353 mutex_unlock(&cgroup_mutex);
4354 return ret;
4355 }
4356 }
4357
4358 /*
4359 * Now we need to entangle the css into the existing css_sets. unlike
4360 * in cgroup_init_subsys, there are now multiple css_sets, so each one
4361 * will need a new pointer to it; done by iterating the css_set_table.
4362 * furthermore, modifying the existing css_sets will corrupt the hash
4363 * table state, so each changed css_set will need its hash recomputed.
4364 * this is all done under the css_set_lock.
4365 */
4366 write_lock(&css_set_lock);
4367 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
4368 struct css_set *cg;
4369 struct hlist_node *node, *tmp;
4370 struct hlist_head *bucket = &css_set_table[i], *new_bucket;
4371
4372 hlist_for_each_entry_safe(cg, node, tmp, bucket, hlist) {
4373 /* skip entries that we already rehashed */
4374 if (cg->subsys[ss->subsys_id])
4375 continue;
4376 /* remove existing entry */
4377 hlist_del(&cg->hlist);
4378 /* set new value */
4379 cg->subsys[ss->subsys_id] = css;
4380 /* recompute hash and restore entry */
4381 new_bucket = css_set_hash(cg->subsys);
4382 hlist_add_head(&cg->hlist, new_bucket);
4383 }
4384 }
4385 write_unlock(&css_set_lock);
4386
4387 mutex_init(&ss->hierarchy_mutex);
4388 lockdep_set_class(&ss->hierarchy_mutex, &ss->subsys_key);
4389 ss->active = 1;
4390
Ben Blume6a11052010-03-10 15:22:09 -08004391 /* success! */
4392 mutex_unlock(&cgroup_mutex);
4393 return 0;
4394}
4395EXPORT_SYMBOL_GPL(cgroup_load_subsys);
4396
4397/**
Ben Blumcf5d5942010-03-10 15:22:09 -08004398 * cgroup_unload_subsys: unload a modular subsystem
4399 * @ss: the subsystem to unload
4400 *
4401 * This function should be called in a modular subsystem's exitcall. When this
4402 * function is invoked, the refcount on the subsystem's module will be 0, so
4403 * the subsystem will not be attached to any hierarchy.
4404 */
4405void cgroup_unload_subsys(struct cgroup_subsys *ss)
4406{
4407 struct cg_cgroup_link *link;
4408 struct hlist_head *hhead;
4409
4410 BUG_ON(ss->module == NULL);
4411
4412 /*
4413 * we shouldn't be called if the subsystem is in use, and the use of
4414 * try_module_get in parse_cgroupfs_options should ensure that it
4415 * doesn't start being used while we're killing it off.
4416 */
4417 BUG_ON(ss->root != &rootnode);
4418
4419 mutex_lock(&cgroup_mutex);
4420 /* deassign the subsys_id */
4421 BUG_ON(ss->subsys_id < CGROUP_BUILTIN_SUBSYS_COUNT);
4422 subsys[ss->subsys_id] = NULL;
4423
4424 /* remove subsystem from rootnode's list of subsystems */
Phil Carmody8d258792011-03-22 16:30:13 -07004425 list_del_init(&ss->sibling);
Ben Blumcf5d5942010-03-10 15:22:09 -08004426
4427 /*
4428 * disentangle the css from all css_sets attached to the dummytop. as
4429 * in loading, we need to pay our respects to the hashtable gods.
4430 */
4431 write_lock(&css_set_lock);
4432 list_for_each_entry(link, &dummytop->css_sets, cgrp_link_list) {
4433 struct css_set *cg = link->cg;
4434
4435 hlist_del(&cg->hlist);
4436 BUG_ON(!cg->subsys[ss->subsys_id]);
4437 cg->subsys[ss->subsys_id] = NULL;
4438 hhead = css_set_hash(cg->subsys);
4439 hlist_add_head(&cg->hlist, hhead);
4440 }
4441 write_unlock(&css_set_lock);
4442
4443 /*
4444 * remove subsystem's css from the dummytop and free it - need to free
4445 * before marking as null because ss->destroy needs the cgrp->subsys
4446 * pointer to find their state. note that this also takes care of
4447 * freeing the css_id.
4448 */
Li Zefan761b3ef2012-01-31 13:47:36 +08004449 ss->destroy(dummytop);
Ben Blumcf5d5942010-03-10 15:22:09 -08004450 dummytop->subsys[ss->subsys_id] = NULL;
4451
4452 mutex_unlock(&cgroup_mutex);
4453}
4454EXPORT_SYMBOL_GPL(cgroup_unload_subsys);
4455
4456/**
Li Zefana043e3b2008-02-23 15:24:09 -08004457 * cgroup_init_early - cgroup initialization at system boot
4458 *
4459 * Initialize cgroups at system boot, and initialize any
4460 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004461 */
4462int __init cgroup_init_early(void)
4463{
4464 int i;
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07004465 atomic_set(&init_css_set.refcount, 1);
Paul Menage817929e2007-10-18 23:39:36 -07004466 INIT_LIST_HEAD(&init_css_set.cg_links);
4467 INIT_LIST_HEAD(&init_css_set.tasks);
Li Zefan472b1052008-04-29 01:00:11 -07004468 INIT_HLIST_NODE(&init_css_set.hlist);
Paul Menage817929e2007-10-18 23:39:36 -07004469 css_set_count = 1;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004470 init_cgroup_root(&rootnode);
Paul Menage817929e2007-10-18 23:39:36 -07004471 root_count = 1;
4472 init_task.cgroups = &init_css_set;
4473
4474 init_css_set_link.cg = &init_css_set;
Paul Menage7717f7b2009-09-23 15:56:22 -07004475 init_css_set_link.cgrp = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -07004476 list_add(&init_css_set_link.cgrp_link_list,
Paul Menage817929e2007-10-18 23:39:36 -07004477 &rootnode.top_cgroup.css_sets);
4478 list_add(&init_css_set_link.cg_link_list,
4479 &init_css_set.cg_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004480
Li Zefan472b1052008-04-29 01:00:11 -07004481 for (i = 0; i < CSS_SET_TABLE_SIZE; i++)
4482 INIT_HLIST_HEAD(&css_set_table[i]);
4483
Ben Blumaae8aab2010-03-10 15:22:07 -08004484 /* at bootup time, we don't worry about modular subsystems */
4485 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004486 struct cgroup_subsys *ss = subsys[i];
4487
4488 BUG_ON(!ss->name);
4489 BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN);
4490 BUG_ON(!ss->create);
4491 BUG_ON(!ss->destroy);
4492 if (ss->subsys_id != i) {
Diego Callejacfe36bd2007-11-14 16:58:54 -08004493 printk(KERN_ERR "cgroup: Subsys %s id == %d\n",
Paul Menageddbcc7e2007-10-18 23:39:30 -07004494 ss->name, ss->subsys_id);
4495 BUG();
4496 }
4497
4498 if (ss->early_init)
4499 cgroup_init_subsys(ss);
4500 }
4501 return 0;
4502}
4503
4504/**
Li Zefana043e3b2008-02-23 15:24:09 -08004505 * cgroup_init - cgroup initialization
4506 *
4507 * Register cgroup filesystem and /proc file, and initialize
4508 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004509 */
4510int __init cgroup_init(void)
4511{
4512 int err;
4513 int i;
Li Zefan472b1052008-04-29 01:00:11 -07004514 struct hlist_head *hhead;
Paul Menagea4243162007-10-18 23:39:35 -07004515
4516 err = bdi_init(&cgroup_backing_dev_info);
4517 if (err)
4518 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004519
Ben Blumaae8aab2010-03-10 15:22:07 -08004520 /* at bootup time, we don't worry about modular subsystems */
4521 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004522 struct cgroup_subsys *ss = subsys[i];
4523 if (!ss->early_init)
4524 cgroup_init_subsys(ss);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004525 if (ss->use_id)
Ben Blume6a11052010-03-10 15:22:09 -08004526 cgroup_init_idr(ss, init_css_set.subsys[ss->subsys_id]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004527 }
4528
Li Zefan472b1052008-04-29 01:00:11 -07004529 /* Add init_css_set to the hash table */
4530 hhead = css_set_hash(init_css_set.subsys);
4531 hlist_add_head(&init_css_set.hlist, hhead);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004532 BUG_ON(!init_root_id(&rootnode));
Greg KH676db4a2010-08-05 13:53:35 -07004533
4534 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
4535 if (!cgroup_kobj) {
4536 err = -ENOMEM;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004537 goto out;
Greg KH676db4a2010-08-05 13:53:35 -07004538 }
4539
4540 err = register_filesystem(&cgroup_fs_type);
4541 if (err < 0) {
4542 kobject_put(cgroup_kobj);
4543 goto out;
4544 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004545
Li Zefan46ae2202008-04-29 01:00:08 -07004546 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Paul Menagea4243162007-10-18 23:39:35 -07004547
Paul Menageddbcc7e2007-10-18 23:39:30 -07004548out:
Paul Menagea4243162007-10-18 23:39:35 -07004549 if (err)
4550 bdi_destroy(&cgroup_backing_dev_info);
4551
Paul Menageddbcc7e2007-10-18 23:39:30 -07004552 return err;
4553}
Paul Menageb4f48b62007-10-18 23:39:33 -07004554
Paul Menagea4243162007-10-18 23:39:35 -07004555/*
4556 * proc_cgroup_show()
4557 * - Print task's cgroup paths into seq_file, one line for each hierarchy
4558 * - Used for /proc/<pid>/cgroup.
4559 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
4560 * doesn't really matter if tsk->cgroup changes after we read it,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004561 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
Paul Menagea4243162007-10-18 23:39:35 -07004562 * anyway. No need to check that tsk->cgroup != NULL, thanks to
4563 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
4564 * cgroup to top_cgroup.
4565 */
4566
4567/* TODO: Use a proper seq_file iterator */
4568static int proc_cgroup_show(struct seq_file *m, void *v)
4569{
4570 struct pid *pid;
4571 struct task_struct *tsk;
4572 char *buf;
4573 int retval;
4574 struct cgroupfs_root *root;
4575
4576 retval = -ENOMEM;
4577 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
4578 if (!buf)
4579 goto out;
4580
4581 retval = -ESRCH;
4582 pid = m->private;
4583 tsk = get_pid_task(pid, PIDTYPE_PID);
4584 if (!tsk)
4585 goto out_free;
4586
4587 retval = 0;
4588
4589 mutex_lock(&cgroup_mutex);
4590
Li Zefane5f6a862009-01-07 18:07:41 -08004591 for_each_active_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07004592 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07004593 struct cgroup *cgrp;
Paul Menagea4243162007-10-18 23:39:35 -07004594 int count = 0;
4595
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004596 seq_printf(m, "%d:", root->hierarchy_id);
Paul Menagea4243162007-10-18 23:39:35 -07004597 for_each_subsys(root, ss)
4598 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07004599 if (strlen(root->name))
4600 seq_printf(m, "%sname=%s", count ? "," : "",
4601 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07004602 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07004603 cgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07004604 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
Paul Menagea4243162007-10-18 23:39:35 -07004605 if (retval < 0)
4606 goto out_unlock;
4607 seq_puts(m, buf);
4608 seq_putc(m, '\n');
4609 }
4610
4611out_unlock:
4612 mutex_unlock(&cgroup_mutex);
4613 put_task_struct(tsk);
4614out_free:
4615 kfree(buf);
4616out:
4617 return retval;
4618}
4619
4620static int cgroup_open(struct inode *inode, struct file *file)
4621{
4622 struct pid *pid = PROC_I(inode)->pid;
4623 return single_open(file, proc_cgroup_show, pid);
4624}
4625
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004626const struct file_operations proc_cgroup_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004627 .open = cgroup_open,
4628 .read = seq_read,
4629 .llseek = seq_lseek,
4630 .release = single_release,
4631};
4632
4633/* Display information about each subsystem and each hierarchy */
4634static int proc_cgroupstats_show(struct seq_file *m, void *v)
4635{
4636 int i;
Paul Menagea4243162007-10-18 23:39:35 -07004637
Paul Menage8bab8dd2008-04-04 14:29:57 -07004638 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08004639 /*
4640 * ideally we don't want subsystems moving around while we do this.
4641 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
4642 * subsys/hierarchy state.
4643 */
Paul Menagea4243162007-10-18 23:39:35 -07004644 mutex_lock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07004645 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
4646 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08004647 if (ss == NULL)
4648 continue;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004649 seq_printf(m, "%s\t%d\t%d\t%d\n",
4650 ss->name, ss->root->hierarchy_id,
Paul Menage8bab8dd2008-04-04 14:29:57 -07004651 ss->root->number_of_cgroups, !ss->disabled);
Paul Menagea4243162007-10-18 23:39:35 -07004652 }
4653 mutex_unlock(&cgroup_mutex);
4654 return 0;
4655}
4656
4657static int cgroupstats_open(struct inode *inode, struct file *file)
4658{
Al Viro9dce07f2008-03-29 03:07:28 +00004659 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07004660}
4661
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004662static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004663 .open = cgroupstats_open,
4664 .read = seq_read,
4665 .llseek = seq_lseek,
4666 .release = single_release,
4667};
4668
Paul Menageb4f48b62007-10-18 23:39:33 -07004669/**
4670 * cgroup_fork - attach newly forked task to its parents cgroup.
Li Zefana043e3b2008-02-23 15:24:09 -08004671 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07004672 *
4673 * Description: A task inherits its parent's cgroup at fork().
4674 *
4675 * A pointer to the shared css_set was automatically copied in
4676 * fork.c by dup_task_struct(). However, we ignore that copy, since
Frederic Weisbecker7e381b0e2011-12-21 20:03:19 +01004677 * it was not made under the protection of RCU, cgroup_mutex or
4678 * threadgroup_change_begin(), so it might no longer be a valid
4679 * cgroup pointer. cgroup_attach_task() might have already changed
4680 * current->cgroups, allowing the previously referenced cgroup
4681 * group to be removed and freed.
4682 *
4683 * Outside the pointer validity we also need to process the css_set
4684 * inheritance between threadgoup_change_begin() and
4685 * threadgoup_change_end(), this way there is no leak in any process
4686 * wide migration performed by cgroup_attach_proc() that could otherwise
4687 * miss a thread because it is too early or too late in the fork stage.
Paul Menageb4f48b62007-10-18 23:39:33 -07004688 *
4689 * At the point that cgroup_fork() is called, 'current' is the parent
4690 * task, and the passed argument 'child' points to the child task.
4691 */
4692void cgroup_fork(struct task_struct *child)
4693{
Frederic Weisbecker7e381b0e2011-12-21 20:03:19 +01004694 /*
4695 * We don't need to task_lock() current because current->cgroups
4696 * can't be changed concurrently here. The parent obviously hasn't
4697 * exited and called cgroup_exit(), and we are synchronized against
4698 * cgroup migration through threadgroup_change_begin().
4699 */
Paul Menage817929e2007-10-18 23:39:36 -07004700 child->cgroups = current->cgroups;
4701 get_css_set(child->cgroups);
Paul Menage817929e2007-10-18 23:39:36 -07004702 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07004703}
4704
4705/**
Li Zefana043e3b2008-02-23 15:24:09 -08004706 * cgroup_fork_callbacks - run fork callbacks
4707 * @child: the new task
4708 *
4709 * Called on a new task very soon before adding it to the
4710 * tasklist. No need to take any locks since no-one can
4711 * be operating on this task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004712 */
4713void cgroup_fork_callbacks(struct task_struct *child)
4714{
4715 if (need_forkexit_callback) {
4716 int i;
Ben Blumaae8aab2010-03-10 15:22:07 -08004717 /*
4718 * forkexit callbacks are only supported for builtin
4719 * subsystems, and the builtin section of the subsys array is
4720 * immutable, so we don't need to lock the subsys array here.
4721 */
4722 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageb4f48b62007-10-18 23:39:33 -07004723 struct cgroup_subsys *ss = subsys[i];
4724 if (ss->fork)
Li Zefan761b3ef2012-01-31 13:47:36 +08004725 ss->fork(child);
Paul Menageb4f48b62007-10-18 23:39:33 -07004726 }
4727 }
4728}
4729
4730/**
Li Zefana043e3b2008-02-23 15:24:09 -08004731 * cgroup_post_fork - called on a new task after adding it to the task list
4732 * @child: the task in question
4733 *
4734 * Adds the task to the list running through its css_set if necessary.
4735 * Has to be after the task is visible on the task list in case we race
4736 * with the first call to cgroup_iter_start() - to guarantee that the
4737 * new task ends up on its list.
4738 */
Paul Menage817929e2007-10-18 23:39:36 -07004739void cgroup_post_fork(struct task_struct *child)
4740{
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01004741 /*
4742 * use_task_css_set_links is set to 1 before we walk the tasklist
4743 * under the tasklist_lock and we read it here after we added the child
4744 * to the tasklist under the tasklist_lock as well. If the child wasn't
4745 * yet in the tasklist when we walked through it from
4746 * cgroup_enable_task_cg_lists(), then use_task_css_set_links value
4747 * should be visible now due to the paired locking and barriers implied
4748 * by LOCK/UNLOCK: it is written before the tasklist_lock unlock
4749 * in cgroup_enable_task_cg_lists() and read here after the tasklist_lock
4750 * lock on fork.
4751 */
Paul Menage817929e2007-10-18 23:39:36 -07004752 if (use_task_css_set_links) {
4753 write_lock(&css_set_lock);
Frederic Weisbecker7e3aa302011-12-23 04:25:23 +01004754 if (list_empty(&child->cg_list)) {
4755 /*
4756 * It's safe to use child->cgroups without task_lock()
4757 * here because we are protected through
4758 * threadgroup_change_begin() against concurrent
4759 * css_set change in cgroup_task_migrate(). Also
4760 * the task can't exit at that point until
4761 * wake_up_new_task() is called, so we are protected
4762 * against cgroup_exit() setting child->cgroup to
4763 * init_css_set.
4764 */
Paul Menage817929e2007-10-18 23:39:36 -07004765 list_add(&child->cg_list, &child->cgroups->tasks);
Frederic Weisbecker7e3aa302011-12-23 04:25:23 +01004766 }
Paul Menage817929e2007-10-18 23:39:36 -07004767 write_unlock(&css_set_lock);
4768 }
4769}
4770/**
Paul Menageb4f48b62007-10-18 23:39:33 -07004771 * cgroup_exit - detach cgroup from exiting task
4772 * @tsk: pointer to task_struct of exiting process
Li Zefana043e3b2008-02-23 15:24:09 -08004773 * @run_callback: run exit callbacks?
Paul Menageb4f48b62007-10-18 23:39:33 -07004774 *
4775 * Description: Detach cgroup from @tsk and release it.
4776 *
4777 * Note that cgroups marked notify_on_release force every task in
4778 * them to take the global cgroup_mutex mutex when exiting.
4779 * This could impact scaling on very large systems. Be reluctant to
4780 * use notify_on_release cgroups where very high task exit scaling
4781 * is required on large systems.
4782 *
4783 * the_top_cgroup_hack:
4784 *
4785 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
4786 *
4787 * We call cgroup_exit() while the task is still competent to
4788 * handle notify_on_release(), then leave the task attached to the
4789 * root cgroup in each hierarchy for the remainder of its exit.
4790 *
4791 * To do this properly, we would increment the reference count on
4792 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
4793 * code we would add a second cgroup function call, to drop that
4794 * reference. This would just create an unnecessary hot spot on
4795 * the top_cgroup reference count, to no avail.
4796 *
4797 * Normally, holding a reference to a cgroup without bumping its
4798 * count is unsafe. The cgroup could go away, or someone could
4799 * attach us to a different cgroup, decrementing the count on
4800 * the first cgroup that we never incremented. But in this case,
4801 * top_cgroup isn't going away, and either task has PF_EXITING set,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004802 * which wards off any cgroup_attach_task() attempts, or task is a failed
4803 * fork, never visible to cgroup_attach_task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004804 */
4805void cgroup_exit(struct task_struct *tsk, int run_callbacks)
4806{
Paul Menage817929e2007-10-18 23:39:36 -07004807 struct css_set *cg;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004808 int i;
Paul Menage817929e2007-10-18 23:39:36 -07004809
4810 /*
4811 * Unlink from the css_set task list if necessary.
4812 * Optimistically check cg_list before taking
4813 * css_set_lock
4814 */
4815 if (!list_empty(&tsk->cg_list)) {
4816 write_lock(&css_set_lock);
4817 if (!list_empty(&tsk->cg_list))
Phil Carmody8d258792011-03-22 16:30:13 -07004818 list_del_init(&tsk->cg_list);
Paul Menage817929e2007-10-18 23:39:36 -07004819 write_unlock(&css_set_lock);
4820 }
4821
Paul Menageb4f48b62007-10-18 23:39:33 -07004822 /* Reassign the task to the init_css_set. */
4823 task_lock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07004824 cg = tsk->cgroups;
4825 tsk->cgroups = &init_css_set;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004826
4827 if (run_callbacks && need_forkexit_callback) {
4828 /*
4829 * modular subsystems can't use callbacks, so no need to lock
4830 * the subsys array
4831 */
4832 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
4833 struct cgroup_subsys *ss = subsys[i];
4834 if (ss->exit) {
4835 struct cgroup *old_cgrp =
4836 rcu_dereference_raw(cg->subsys[i])->cgroup;
4837 struct cgroup *cgrp = task_cgroup(tsk, i);
Li Zefan761b3ef2012-01-31 13:47:36 +08004838 ss->exit(cgrp, old_cgrp, tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004839 }
4840 }
4841 }
Paul Menageb4f48b62007-10-18 23:39:33 -07004842 task_unlock(tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004843
Paul Menage817929e2007-10-18 23:39:36 -07004844 if (cg)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004845 put_css_set_taskexit(cg);
Paul Menageb4f48b62007-10-18 23:39:33 -07004846}
Paul Menage697f4162007-10-18 23:39:34 -07004847
4848/**
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004849 * cgroup_is_descendant - see if @cgrp is a descendant of @task's cgrp
Li Zefana043e3b2008-02-23 15:24:09 -08004850 * @cgrp: the cgroup in question
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004851 * @task: the task in question
Li Zefana043e3b2008-02-23 15:24:09 -08004852 *
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004853 * See if @cgrp is a descendant of @task's cgroup in the appropriate
4854 * hierarchy.
Paul Menage697f4162007-10-18 23:39:34 -07004855 *
4856 * If we are sending in dummytop, then presumably we are creating
4857 * the top cgroup in the subsystem.
4858 *
4859 * Called only by the ns (nsproxy) cgroup.
4860 */
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004861int cgroup_is_descendant(const struct cgroup *cgrp, struct task_struct *task)
Paul Menage697f4162007-10-18 23:39:34 -07004862{
4863 int ret;
4864 struct cgroup *target;
Paul Menage697f4162007-10-18 23:39:34 -07004865
Paul Menagebd89aab2007-10-18 23:40:44 -07004866 if (cgrp == dummytop)
Paul Menage697f4162007-10-18 23:39:34 -07004867 return 1;
4868
Paul Menage7717f7b2009-09-23 15:56:22 -07004869 target = task_cgroup_from_root(task, cgrp->root);
Paul Menagebd89aab2007-10-18 23:40:44 -07004870 while (cgrp != target && cgrp!= cgrp->top_cgroup)
4871 cgrp = cgrp->parent;
4872 ret = (cgrp == target);
Paul Menage697f4162007-10-18 23:39:34 -07004873 return ret;
4874}
Paul Menage81a6a5c2007-10-18 23:39:38 -07004875
Paul Menagebd89aab2007-10-18 23:40:44 -07004876static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004877{
4878 /* All of these checks rely on RCU to keep the cgroup
4879 * structure alive */
Paul Menagebd89aab2007-10-18 23:40:44 -07004880 if (cgroup_is_releasable(cgrp) && !atomic_read(&cgrp->count)
4881 && list_empty(&cgrp->children) && !cgroup_has_css_refs(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004882 /* Control Group is currently removeable. If it's not
4883 * already queued for a userspace notification, queue
4884 * it now */
4885 int need_schedule_work = 0;
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004886 raw_spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07004887 if (!cgroup_is_removed(cgrp) &&
4888 list_empty(&cgrp->release_list)) {
4889 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004890 need_schedule_work = 1;
4891 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004892 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004893 if (need_schedule_work)
4894 schedule_work(&release_agent_work);
4895 }
4896}
4897
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -08004898/* Caller must verify that the css is not for root cgroup */
Tejun Heo28b4c272012-04-01 12:09:56 -07004899bool __css_tryget(struct cgroup_subsys_state *css)
4900{
4901 do {
4902 int v = css_refcnt(css);
4903
4904 if (atomic_cmpxchg(&css->refcnt, v, v + 1) == v)
4905 return true;
4906 cpu_relax();
4907 } while (!test_bit(CSS_REMOVED, &css->flags));
4908
4909 return false;
4910}
4911EXPORT_SYMBOL_GPL(__css_tryget);
4912
4913/* Caller must verify that the css is not for root cgroup */
4914void __css_put(struct cgroup_subsys_state *css)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004915{
Paul Menagebd89aab2007-10-18 23:40:44 -07004916 struct cgroup *cgrp = css->cgroup;
Tejun Heo28b4c272012-04-01 12:09:56 -07004917
Paul Menage81a6a5c2007-10-18 23:39:38 -07004918 rcu_read_lock();
Tejun Heo28b4c272012-04-01 12:09:56 -07004919 atomic_dec(&css->refcnt);
4920 if (css_refcnt(css) == 1) {
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004921 if (notify_on_release(cgrp)) {
4922 set_bit(CGRP_RELEASABLE, &cgrp->flags);
4923 check_for_release(cgrp);
4924 }
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004925 cgroup_wakeup_rmdir_waiter(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004926 }
4927 rcu_read_unlock();
4928}
Ben Blum67523c42010-03-10 15:22:11 -08004929EXPORT_SYMBOL_GPL(__css_put);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004930
4931/*
4932 * Notify userspace when a cgroup is released, by running the
4933 * configured release agent with the name of the cgroup (path
4934 * relative to the root of cgroup file system) as the argument.
4935 *
4936 * Most likely, this user command will try to rmdir this cgroup.
4937 *
4938 * This races with the possibility that some other task will be
4939 * attached to this cgroup before it is removed, or that some other
4940 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
4941 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
4942 * unused, and this cgroup will be reprieved from its death sentence,
4943 * to continue to serve a useful existence. Next time it's released,
4944 * we will get notified again, if it still has 'notify_on_release' set.
4945 *
4946 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
4947 * means only wait until the task is successfully execve()'d. The
4948 * separate release agent task is forked by call_usermodehelper(),
4949 * then control in this thread returns here, without waiting for the
4950 * release agent task. We don't bother to wait because the caller of
4951 * this routine has no use for the exit status of the release agent
4952 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07004953 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004954static void cgroup_release_agent(struct work_struct *work)
4955{
4956 BUG_ON(work != &release_agent_work);
4957 mutex_lock(&cgroup_mutex);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004958 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004959 while (!list_empty(&release_list)) {
4960 char *argv[3], *envp[3];
4961 int i;
Paul Menagee788e062008-07-25 01:46:59 -07004962 char *pathbuf = NULL, *agentbuf = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07004963 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07004964 struct cgroup,
4965 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07004966 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004967 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004968 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paul Menagee788e062008-07-25 01:46:59 -07004969 if (!pathbuf)
4970 goto continue_free;
4971 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0)
4972 goto continue_free;
4973 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
4974 if (!agentbuf)
4975 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004976
4977 i = 0;
Paul Menagee788e062008-07-25 01:46:59 -07004978 argv[i++] = agentbuf;
4979 argv[i++] = pathbuf;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004980 argv[i] = NULL;
4981
4982 i = 0;
4983 /* minimal command environment */
4984 envp[i++] = "HOME=/";
4985 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
4986 envp[i] = NULL;
4987
4988 /* Drop the lock while we invoke the usermode helper,
4989 * since the exec could involve hitting disk and hence
4990 * be a slow process */
4991 mutex_unlock(&cgroup_mutex);
4992 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004993 mutex_lock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07004994 continue_free:
4995 kfree(pathbuf);
4996 kfree(agentbuf);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004997 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004998 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004999 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005000 mutex_unlock(&cgroup_mutex);
5001}
Paul Menage8bab8dd2008-04-04 14:29:57 -07005002
5003static int __init cgroup_disable(char *str)
5004{
5005 int i;
5006 char *token;
5007
5008 while ((token = strsep(&str, ",")) != NULL) {
5009 if (!*token)
5010 continue;
Ben Blumaae8aab2010-03-10 15:22:07 -08005011 /*
5012 * cgroup_disable, being at boot time, can't know about module
5013 * subsystems, so we don't worry about them.
5014 */
5015 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07005016 struct cgroup_subsys *ss = subsys[i];
5017
5018 if (!strcmp(token, ss->name)) {
5019 ss->disabled = 1;
5020 printk(KERN_INFO "Disabling %s control group"
5021 " subsystem\n", ss->name);
5022 break;
5023 }
5024 }
5025 }
5026 return 1;
5027}
5028__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005029
5030/*
5031 * Functons for CSS ID.
5032 */
5033
5034/*
5035 *To get ID other than 0, this should be called when !cgroup_is_removed().
5036 */
5037unsigned short css_id(struct cgroup_subsys_state *css)
5038{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07005039 struct css_id *cssid;
5040
5041 /*
5042 * This css_id() can return correct value when somone has refcnt
5043 * on this or this is under rcu_read_lock(). Once css->id is allocated,
5044 * it's unchanged until freed.
5045 */
Tejun Heo28b4c272012-04-01 12:09:56 -07005046 cssid = rcu_dereference_check(css->id, css_refcnt(css));
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005047
5048 if (cssid)
5049 return cssid->id;
5050 return 0;
5051}
Ben Blum67523c42010-03-10 15:22:11 -08005052EXPORT_SYMBOL_GPL(css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005053
5054unsigned short css_depth(struct cgroup_subsys_state *css)
5055{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07005056 struct css_id *cssid;
5057
Tejun Heo28b4c272012-04-01 12:09:56 -07005058 cssid = rcu_dereference_check(css->id, css_refcnt(css));
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005059
5060 if (cssid)
5061 return cssid->depth;
5062 return 0;
5063}
Ben Blum67523c42010-03-10 15:22:11 -08005064EXPORT_SYMBOL_GPL(css_depth);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005065
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07005066/**
5067 * css_is_ancestor - test "root" css is an ancestor of "child"
5068 * @child: the css to be tested.
5069 * @root: the css supporsed to be an ancestor of the child.
5070 *
5071 * Returns true if "root" is an ancestor of "child" in its hierarchy. Because
5072 * this function reads css->id, this use rcu_dereference() and rcu_read_lock().
5073 * But, considering usual usage, the csses should be valid objects after test.
5074 * Assuming that the caller will do some action to the child if this returns
5075 * returns true, the caller must take "child";s reference count.
5076 * If "child" is valid object and this returns true, "root" is valid, too.
5077 */
5078
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005079bool css_is_ancestor(struct cgroup_subsys_state *child,
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07005080 const struct cgroup_subsys_state *root)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005081{
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07005082 struct css_id *child_id;
5083 struct css_id *root_id;
5084 bool ret = true;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005085
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07005086 rcu_read_lock();
5087 child_id = rcu_dereference(child->id);
5088 root_id = rcu_dereference(root->id);
5089 if (!child_id
5090 || !root_id
5091 || (child_id->depth < root_id->depth)
5092 || (child_id->stack[root_id->depth] != root_id->id))
5093 ret = false;
5094 rcu_read_unlock();
5095 return ret;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005096}
5097
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005098void free_css_id(struct cgroup_subsys *ss, struct cgroup_subsys_state *css)
5099{
5100 struct css_id *id = css->id;
5101 /* When this is called before css_id initialization, id can be NULL */
5102 if (!id)
5103 return;
5104
5105 BUG_ON(!ss->use_id);
5106
5107 rcu_assign_pointer(id->css, NULL);
5108 rcu_assign_pointer(css->id, NULL);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005109 spin_lock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005110 idr_remove(&ss->idr, id->id);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005111 spin_unlock(&ss->id_lock);
Lai Jiangshan025cea92011-03-15 17:56:10 +08005112 kfree_rcu(id, rcu_head);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005113}
Ben Blum67523c42010-03-10 15:22:11 -08005114EXPORT_SYMBOL_GPL(free_css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005115
5116/*
5117 * This is called by init or create(). Then, calls to this function are
5118 * always serialized (By cgroup_mutex() at create()).
5119 */
5120
5121static struct css_id *get_new_cssid(struct cgroup_subsys *ss, int depth)
5122{
5123 struct css_id *newid;
5124 int myid, error, size;
5125
5126 BUG_ON(!ss->use_id);
5127
5128 size = sizeof(*newid) + sizeof(unsigned short) * (depth + 1);
5129 newid = kzalloc(size, GFP_KERNEL);
5130 if (!newid)
5131 return ERR_PTR(-ENOMEM);
5132 /* get id */
5133 if (unlikely(!idr_pre_get(&ss->idr, GFP_KERNEL))) {
5134 error = -ENOMEM;
5135 goto err_out;
5136 }
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005137 spin_lock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005138 /* Don't use 0. allocates an ID of 1-65535 */
5139 error = idr_get_new_above(&ss->idr, newid, 1, &myid);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005140 spin_unlock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005141
5142 /* Returns error when there are no free spaces for new ID.*/
5143 if (error) {
5144 error = -ENOSPC;
5145 goto err_out;
5146 }
5147 if (myid > CSS_ID_MAX)
5148 goto remove_idr;
5149
5150 newid->id = myid;
5151 newid->depth = depth;
5152 return newid;
5153remove_idr:
5154 error = -ENOSPC;
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005155 spin_lock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005156 idr_remove(&ss->idr, myid);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005157 spin_unlock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005158err_out:
5159 kfree(newid);
5160 return ERR_PTR(error);
5161
5162}
5163
Ben Blume6a11052010-03-10 15:22:09 -08005164static int __init_or_module cgroup_init_idr(struct cgroup_subsys *ss,
5165 struct cgroup_subsys_state *rootcss)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005166{
5167 struct css_id *newid;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005168
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005169 spin_lock_init(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005170 idr_init(&ss->idr);
5171
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005172 newid = get_new_cssid(ss, 0);
5173 if (IS_ERR(newid))
5174 return PTR_ERR(newid);
5175
5176 newid->stack[0] = newid->id;
5177 newid->css = rootcss;
5178 rootcss->id = newid;
5179 return 0;
5180}
5181
5182static int alloc_css_id(struct cgroup_subsys *ss, struct cgroup *parent,
5183 struct cgroup *child)
5184{
5185 int subsys_id, i, depth = 0;
5186 struct cgroup_subsys_state *parent_css, *child_css;
Li Zefanfae9c792010-04-22 17:30:00 +08005187 struct css_id *child_id, *parent_id;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005188
5189 subsys_id = ss->subsys_id;
5190 parent_css = parent->subsys[subsys_id];
5191 child_css = child->subsys[subsys_id];
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005192 parent_id = parent_css->id;
Greg Thelen94b3dd02010-06-04 14:15:03 -07005193 depth = parent_id->depth + 1;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005194
5195 child_id = get_new_cssid(ss, depth);
5196 if (IS_ERR(child_id))
5197 return PTR_ERR(child_id);
5198
5199 for (i = 0; i < depth; i++)
5200 child_id->stack[i] = parent_id->stack[i];
5201 child_id->stack[depth] = child_id->id;
5202 /*
5203 * child_id->css pointer will be set after this cgroup is available
5204 * see cgroup_populate_dir()
5205 */
5206 rcu_assign_pointer(child_css->id, child_id);
5207
5208 return 0;
5209}
5210
5211/**
5212 * css_lookup - lookup css by id
5213 * @ss: cgroup subsys to be looked into.
5214 * @id: the id
5215 *
5216 * Returns pointer to cgroup_subsys_state if there is valid one with id.
5217 * NULL if not. Should be called under rcu_read_lock()
5218 */
5219struct cgroup_subsys_state *css_lookup(struct cgroup_subsys *ss, int id)
5220{
5221 struct css_id *cssid = NULL;
5222
5223 BUG_ON(!ss->use_id);
5224 cssid = idr_find(&ss->idr, id);
5225
5226 if (unlikely(!cssid))
5227 return NULL;
5228
5229 return rcu_dereference(cssid->css);
5230}
Ben Blum67523c42010-03-10 15:22:11 -08005231EXPORT_SYMBOL_GPL(css_lookup);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005232
5233/**
5234 * css_get_next - lookup next cgroup under specified hierarchy.
5235 * @ss: pointer to subsystem
5236 * @id: current position of iteration.
5237 * @root: pointer to css. search tree under this.
5238 * @foundid: position of found object.
5239 *
5240 * Search next css under the specified hierarchy of rootid. Calling under
5241 * rcu_read_lock() is necessary. Returns NULL if it reaches the end.
5242 */
5243struct cgroup_subsys_state *
5244css_get_next(struct cgroup_subsys *ss, int id,
5245 struct cgroup_subsys_state *root, int *foundid)
5246{
5247 struct cgroup_subsys_state *ret = NULL;
5248 struct css_id *tmp;
5249 int tmpid;
5250 int rootid = css_id(root);
5251 int depth = css_depth(root);
5252
5253 if (!rootid)
5254 return NULL;
5255
5256 BUG_ON(!ss->use_id);
Hugh Dickinsca464d62012-03-21 16:34:21 -07005257 WARN_ON_ONCE(!rcu_read_lock_held());
5258
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005259 /* fill start point for scan */
5260 tmpid = id;
5261 while (1) {
5262 /*
5263 * scan next entry from bitmap(tree), tmpid is updated after
5264 * idr_get_next().
5265 */
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005266 tmp = idr_get_next(&ss->idr, &tmpid);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005267 if (!tmp)
5268 break;
5269 if (tmp->depth >= depth && tmp->stack[depth] == rootid) {
5270 ret = rcu_dereference(tmp->css);
5271 if (ret) {
5272 *foundid = tmpid;
5273 break;
5274 }
5275 }
5276 /* continue to scan from next id */
5277 tmpid = tmpid + 1;
5278 }
5279 return ret;
5280}
5281
Stephane Eraniane5d13672011-02-14 11:20:01 +02005282/*
5283 * get corresponding css from file open on cgroupfs directory
5284 */
5285struct cgroup_subsys_state *cgroup_css_from_dir(struct file *f, int id)
5286{
5287 struct cgroup *cgrp;
5288 struct inode *inode;
5289 struct cgroup_subsys_state *css;
5290
5291 inode = f->f_dentry->d_inode;
5292 /* check in cgroup filesystem dir */
5293 if (inode->i_op != &cgroup_dir_inode_operations)
5294 return ERR_PTR(-EBADF);
5295
5296 if (id < 0 || id >= CGROUP_SUBSYS_COUNT)
5297 return ERR_PTR(-EINVAL);
5298
5299 /* get cgroup */
5300 cgrp = __d_cgrp(f->f_dentry);
5301 css = cgrp->subsys[id];
5302 return css ? css : ERR_PTR(-ENOENT);
5303}
5304
Paul Menagefe693432009-09-23 15:56:20 -07005305#ifdef CONFIG_CGROUP_DEBUG
Li Zefan761b3ef2012-01-31 13:47:36 +08005306static struct cgroup_subsys_state *debug_create(struct cgroup *cont)
Paul Menagefe693432009-09-23 15:56:20 -07005307{
5308 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
5309
5310 if (!css)
5311 return ERR_PTR(-ENOMEM);
5312
5313 return css;
5314}
5315
Li Zefan761b3ef2012-01-31 13:47:36 +08005316static void debug_destroy(struct cgroup *cont)
Paul Menagefe693432009-09-23 15:56:20 -07005317{
5318 kfree(cont->subsys[debug_subsys_id]);
5319}
5320
5321static u64 cgroup_refcount_read(struct cgroup *cont, struct cftype *cft)
5322{
5323 return atomic_read(&cont->count);
5324}
5325
5326static u64 debug_taskcount_read(struct cgroup *cont, struct cftype *cft)
5327{
5328 return cgroup_task_count(cont);
5329}
5330
5331static u64 current_css_set_read(struct cgroup *cont, struct cftype *cft)
5332{
5333 return (u64)(unsigned long)current->cgroups;
5334}
5335
5336static u64 current_css_set_refcount_read(struct cgroup *cont,
5337 struct cftype *cft)
5338{
5339 u64 count;
5340
5341 rcu_read_lock();
5342 count = atomic_read(&current->cgroups->refcount);
5343 rcu_read_unlock();
5344 return count;
5345}
5346
Paul Menage7717f7b2009-09-23 15:56:22 -07005347static int current_css_set_cg_links_read(struct cgroup *cont,
5348 struct cftype *cft,
5349 struct seq_file *seq)
5350{
5351 struct cg_cgroup_link *link;
5352 struct css_set *cg;
5353
5354 read_lock(&css_set_lock);
5355 rcu_read_lock();
5356 cg = rcu_dereference(current->cgroups);
5357 list_for_each_entry(link, &cg->cg_links, cg_link_list) {
5358 struct cgroup *c = link->cgrp;
5359 const char *name;
5360
5361 if (c->dentry)
5362 name = c->dentry->d_name.name;
5363 else
5364 name = "?";
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005365 seq_printf(seq, "Root %d group %s\n",
5366 c->root->hierarchy_id, name);
Paul Menage7717f7b2009-09-23 15:56:22 -07005367 }
5368 rcu_read_unlock();
5369 read_unlock(&css_set_lock);
5370 return 0;
5371}
5372
5373#define MAX_TASKS_SHOWN_PER_CSS 25
5374static int cgroup_css_links_read(struct cgroup *cont,
5375 struct cftype *cft,
5376 struct seq_file *seq)
5377{
5378 struct cg_cgroup_link *link;
5379
5380 read_lock(&css_set_lock);
5381 list_for_each_entry(link, &cont->css_sets, cgrp_link_list) {
5382 struct css_set *cg = link->cg;
5383 struct task_struct *task;
5384 int count = 0;
5385 seq_printf(seq, "css_set %p\n", cg);
5386 list_for_each_entry(task, &cg->tasks, cg_list) {
5387 if (count++ > MAX_TASKS_SHOWN_PER_CSS) {
5388 seq_puts(seq, " ...\n");
5389 break;
5390 } else {
5391 seq_printf(seq, " task %d\n",
5392 task_pid_vnr(task));
5393 }
5394 }
5395 }
5396 read_unlock(&css_set_lock);
5397 return 0;
5398}
5399
Paul Menagefe693432009-09-23 15:56:20 -07005400static u64 releasable_read(struct cgroup *cgrp, struct cftype *cft)
5401{
5402 return test_bit(CGRP_RELEASABLE, &cgrp->flags);
5403}
5404
5405static struct cftype debug_files[] = {
5406 {
5407 .name = "cgroup_refcount",
5408 .read_u64 = cgroup_refcount_read,
5409 },
5410 {
5411 .name = "taskcount",
5412 .read_u64 = debug_taskcount_read,
5413 },
5414
5415 {
5416 .name = "current_css_set",
5417 .read_u64 = current_css_set_read,
5418 },
5419
5420 {
5421 .name = "current_css_set_refcount",
5422 .read_u64 = current_css_set_refcount_read,
5423 },
5424
5425 {
Paul Menage7717f7b2009-09-23 15:56:22 -07005426 .name = "current_css_set_cg_links",
5427 .read_seq_string = current_css_set_cg_links_read,
5428 },
5429
5430 {
5431 .name = "cgroup_css_links",
5432 .read_seq_string = cgroup_css_links_read,
5433 },
5434
5435 {
Paul Menagefe693432009-09-23 15:56:20 -07005436 .name = "releasable",
5437 .read_u64 = releasable_read,
5438 },
Paul Menagefe693432009-09-23 15:56:20 -07005439
Tejun Heo4baf6e32012-04-01 12:09:55 -07005440 { } /* terminate */
5441};
Paul Menagefe693432009-09-23 15:56:20 -07005442
5443struct cgroup_subsys debug_subsys = {
5444 .name = "debug",
5445 .create = debug_create,
5446 .destroy = debug_destroy,
Paul Menagefe693432009-09-23 15:56:20 -07005447 .subsys_id = debug_subsys_id,
Tejun Heo4baf6e32012-04-01 12:09:55 -07005448 .base_cftypes = debug_files,
Paul Menagefe693432009-09-23 15:56:20 -07005449};
5450#endif /* CONFIG_CGROUP_DEBUG */