blob: 2ed5968a04e774f230d26f5a5d8e3750f3001ab6 [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 */
Mike Galbraithc4c27fb2012-04-21 09:13:46 +020063#include <linux/kthread.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070064
Arun Sharma600634972011-07-26 16:09:06 -070065#include <linux/atomic.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070066
Tejun Heo28b4c272012-04-01 12:09:56 -070067/* css deactivation bias, makes css->refcnt negative to deny new trygets */
68#define CSS_DEACT_BIAS INT_MIN
69
Tejun Heoe25e2cb2011-12-12 18:12:21 -080070/*
71 * cgroup_mutex is the master lock. Any modification to cgroup or its
72 * hierarchy must be performed while holding it.
73 *
74 * cgroup_root_mutex nests inside cgroup_mutex and should be held to modify
75 * cgroupfs_root of any cgroup hierarchy - subsys list, flags,
76 * release_agent_path and so on. Modifying requires both cgroup_mutex and
77 * cgroup_root_mutex. Readers can acquire either of the two. This is to
78 * break the following locking order cycle.
79 *
80 * A. cgroup_mutex -> cred_guard_mutex -> s_type->i_mutex_key -> namespace_sem
81 * B. namespace_sem -> cgroup_mutex
82 *
83 * B happens only through cgroup_show_options() and using cgroup_root_mutex
84 * breaks it.
85 */
Paul Menage81a6a5c2007-10-18 23:39:38 -070086static DEFINE_MUTEX(cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -080087static DEFINE_MUTEX(cgroup_root_mutex);
Paul Menage81a6a5c2007-10-18 23:39:38 -070088
Ben Blumaae8aab2010-03-10 15:22:07 -080089/*
90 * Generate an array of cgroup subsystem pointers. At boot time, this is
Daniel Wagnerbe45c902012-09-13 09:50:55 +020091 * populated with the built in subsystems, and modular subsystems are
Ben Blumaae8aab2010-03-10 15:22:07 -080092 * registered after that. The mutable section of this array is protected by
93 * cgroup_mutex.
94 */
Daniel Wagner80f4c872012-09-12 16:12:06 +020095#define SUBSYS(_x) [_x ## _subsys_id] = &_x ## _subsys,
Daniel Wagner5fc0b022012-09-12 16:12:05 +020096#define IS_SUBSYS_ENABLED(option) IS_BUILTIN(option)
Ben Blumaae8aab2010-03-10 15:22:07 -080097static struct cgroup_subsys *subsys[CGROUP_SUBSYS_COUNT] = {
Paul Menageddbcc7e2007-10-18 23:39:30 -070098#include <linux/cgroup_subsys.h>
99};
100
Paul Menagec6d57f32009-09-23 15:56:19 -0700101#define MAX_CGROUP_ROOT_NAMELEN 64
102
Paul Menageddbcc7e2007-10-18 23:39:30 -0700103/*
104 * A cgroupfs_root represents the root of a cgroup hierarchy,
105 * and may be associated with a superblock to form an active
106 * hierarchy
107 */
108struct cgroupfs_root {
109 struct super_block *sb;
110
111 /*
112 * The bitmask of subsystems intended to be attached to this
113 * hierarchy
114 */
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -0400115 unsigned long subsys_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700116
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700117 /* Unique id for this hierarchy. */
118 int hierarchy_id;
119
Paul Menageddbcc7e2007-10-18 23:39:30 -0700120 /* The bitmask of subsystems currently attached to this hierarchy */
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -0400121 unsigned long actual_subsys_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700122
123 /* A list running through the attached subsystems */
124 struct list_head subsys_list;
125
126 /* The root cgroup for this hierarchy */
127 struct cgroup top_cgroup;
128
129 /* Tracks how many cgroups are currently defined in hierarchy.*/
130 int number_of_cgroups;
131
Li Zefane5f6a862009-01-07 18:07:41 -0800132 /* A list running through the active hierarchies */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700133 struct list_head root_list;
134
Tejun Heob0ca5a82012-04-01 12:09:54 -0700135 /* All cgroups on this root, cgroup_mutex protected */
136 struct list_head allcg_list;
137
Paul Menageddbcc7e2007-10-18 23:39:30 -0700138 /* Hierarchy-specific flags */
139 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700140
Paul Menagee788e062008-07-25 01:46:59 -0700141 /* The path to use for release notifications. */
Paul Menage81a6a5c2007-10-18 23:39:38 -0700142 char release_agent_path[PATH_MAX];
Paul Menagec6d57f32009-09-23 15:56:19 -0700143
144 /* The name for this hierarchy - may be empty */
145 char name[MAX_CGROUP_ROOT_NAMELEN];
Paul Menageddbcc7e2007-10-18 23:39:30 -0700146};
147
Paul Menageddbcc7e2007-10-18 23:39:30 -0700148/*
149 * The "rootnode" hierarchy is the "dummy hierarchy", reserved for the
150 * subsystems that are otherwise unattached - it never has more than a
151 * single cgroup, and all tasks are part of that cgroup.
152 */
153static struct cgroupfs_root rootnode;
154
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700155/*
Tejun Heo05ef1d72012-04-01 12:09:56 -0700156 * cgroupfs file entry, pointed to from leaf dentry->d_fsdata.
157 */
158struct cfent {
159 struct list_head node;
160 struct dentry *dentry;
161 struct cftype *type;
162};
163
164/*
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700165 * CSS ID -- ID per subsys's Cgroup Subsys State(CSS). used only when
166 * cgroup_subsys->use_id != 0.
167 */
168#define CSS_ID_MAX (65535)
169struct css_id {
170 /*
171 * The css to which this ID points. This pointer is set to valid value
172 * after cgroup is populated. If cgroup is removed, this will be NULL.
173 * This pointer is expected to be RCU-safe because destroy()
Tejun Heoe9316082012-11-05 09:16:58 -0800174 * is called after synchronize_rcu(). But for safe use, css_tryget()
175 * should be used for avoiding race.
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700176 */
Arnd Bergmann2c392b82010-02-24 19:41:39 +0100177 struct cgroup_subsys_state __rcu *css;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700178 /*
179 * ID of this css.
180 */
181 unsigned short id;
182 /*
183 * Depth in hierarchy which this ID belongs to.
184 */
185 unsigned short depth;
186 /*
187 * ID is freed by RCU. (and lookup routine is RCU safe.)
188 */
189 struct rcu_head rcu_head;
190 /*
191 * Hierarchy of CSS ID belongs to.
192 */
193 unsigned short stack[0]; /* Array of Length (depth+1) */
194};
195
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800196/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300197 * cgroup_event represents events which userspace want to receive.
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800198 */
199struct cgroup_event {
200 /*
201 * Cgroup which the event belongs to.
202 */
203 struct cgroup *cgrp;
204 /*
205 * Control file which the event associated.
206 */
207 struct cftype *cft;
208 /*
209 * eventfd to signal userspace about the event.
210 */
211 struct eventfd_ctx *eventfd;
212 /*
213 * Each of these stored in a list by the cgroup.
214 */
215 struct list_head list;
216 /*
217 * All fields below needed to unregister event when
218 * userspace closes eventfd.
219 */
220 poll_table pt;
221 wait_queue_head_t *wqh;
222 wait_queue_t wait;
223 struct work_struct remove;
224};
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700225
Paul Menageddbcc7e2007-10-18 23:39:30 -0700226/* The list of hierarchy roots */
227
228static LIST_HEAD(roots);
Paul Menage817929e2007-10-18 23:39:36 -0700229static int root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700230
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700231static DEFINE_IDA(hierarchy_ida);
232static int next_hierarchy_id;
233static DEFINE_SPINLOCK(hierarchy_id_lock);
234
Paul Menageddbcc7e2007-10-18 23:39:30 -0700235/* dummytop is a shorthand for the dummy hierarchy's top cgroup */
236#define dummytop (&rootnode.top_cgroup)
237
238/* This flag indicates whether tasks in the fork and exit paths should
Li Zefana043e3b2008-02-23 15:24:09 -0800239 * check for fork/exit handlers to call. This avoids us having to do
240 * extra work in the fork/exit path if none of the subsystems need to
241 * be called.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700242 */
Li Zefan8947f9d2008-07-25 01:46:56 -0700243static int need_forkexit_callback __read_mostly;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700244
Paul E. McKenneyd11c5632010-02-22 17:04:50 -0800245#ifdef CONFIG_PROVE_LOCKING
246int cgroup_lock_is_held(void)
247{
248 return lockdep_is_held(&cgroup_mutex);
249}
250#else /* #ifdef CONFIG_PROVE_LOCKING */
251int cgroup_lock_is_held(void)
252{
253 return mutex_is_locked(&cgroup_mutex);
254}
255#endif /* #else #ifdef CONFIG_PROVE_LOCKING */
256
257EXPORT_SYMBOL_GPL(cgroup_lock_is_held);
258
Salman Qazi8e3bbf42012-06-14 14:55:30 -0700259static int css_unbias_refcnt(int refcnt)
260{
261 return refcnt >= 0 ? refcnt : refcnt - CSS_DEACT_BIAS;
262}
263
Tejun Heo28b4c272012-04-01 12:09:56 -0700264/* the current nr of refs, always >= 0 whether @css is deactivated or not */
265static int css_refcnt(struct cgroup_subsys_state *css)
266{
267 int v = atomic_read(&css->refcnt);
268
Salman Qazi8e3bbf42012-06-14 14:55:30 -0700269 return css_unbias_refcnt(v);
Tejun Heo28b4c272012-04-01 12:09:56 -0700270}
271
Paul Menageddbcc7e2007-10-18 23:39:30 -0700272/* convenient tests for these bits */
Paul Menagebd89aab2007-10-18 23:40:44 -0700273inline int cgroup_is_removed(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700274{
Paul Menagebd89aab2007-10-18 23:40:44 -0700275 return test_bit(CGRP_REMOVED, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700276}
277
278/* bits in struct cgroupfs_root flags field */
279enum {
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -0400280 ROOT_NOPREFIX, /* mounted subsystems have no named prefix */
281 ROOT_XATTR, /* supports extended attributes */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700282};
283
Adrian Bunke9685a02008-02-07 00:13:46 -0800284static int cgroup_is_releasable(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700285{
286 const int bits =
Paul Menagebd89aab2007-10-18 23:40:44 -0700287 (1 << CGRP_RELEASABLE) |
288 (1 << CGRP_NOTIFY_ON_RELEASE);
289 return (cgrp->flags & bits) == bits;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700290}
291
Adrian Bunke9685a02008-02-07 00:13:46 -0800292static int notify_on_release(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700293{
Paul Menagebd89aab2007-10-18 23:40:44 -0700294 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700295}
296
Daniel Lezcano97978e62010-10-27 15:33:35 -0700297static int clone_children(const struct cgroup *cgrp)
298{
299 return test_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
300}
301
Paul Menageddbcc7e2007-10-18 23:39:30 -0700302/*
303 * for_each_subsys() allows you to iterate on each subsystem attached to
304 * an active hierarchy
305 */
306#define for_each_subsys(_root, _ss) \
307list_for_each_entry(_ss, &_root->subsys_list, sibling)
308
Li Zefane5f6a862009-01-07 18:07:41 -0800309/* for_each_active_root() allows you to iterate across the active hierarchies */
310#define for_each_active_root(_root) \
Paul Menageddbcc7e2007-10-18 23:39:30 -0700311list_for_each_entry(_root, &roots, root_list)
312
Tejun Heof6ea9372012-04-01 12:09:55 -0700313static inline struct cgroup *__d_cgrp(struct dentry *dentry)
314{
315 return dentry->d_fsdata;
316}
317
Tejun Heo05ef1d72012-04-01 12:09:56 -0700318static inline struct cfent *__d_cfe(struct dentry *dentry)
Tejun Heof6ea9372012-04-01 12:09:55 -0700319{
320 return dentry->d_fsdata;
321}
322
Tejun Heo05ef1d72012-04-01 12:09:56 -0700323static inline struct cftype *__d_cft(struct dentry *dentry)
324{
325 return __d_cfe(dentry)->type;
326}
327
Paul Menage81a6a5c2007-10-18 23:39:38 -0700328/* the list of cgroups eligible for automatic release. Protected by
329 * release_list_lock */
330static LIST_HEAD(release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +0200331static DEFINE_RAW_SPINLOCK(release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700332static void cgroup_release_agent(struct work_struct *work);
333static DECLARE_WORK(release_agent_work, cgroup_release_agent);
Paul Menagebd89aab2007-10-18 23:40:44 -0700334static void check_for_release(struct cgroup *cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700335
Paul Menage817929e2007-10-18 23:39:36 -0700336/* Link structure for associating css_set objects with cgroups */
337struct cg_cgroup_link {
338 /*
339 * List running through cg_cgroup_links associated with a
340 * cgroup, anchored on cgroup->css_sets
341 */
Paul Menagebd89aab2007-10-18 23:40:44 -0700342 struct list_head cgrp_link_list;
Paul Menage7717f7b2009-09-23 15:56:22 -0700343 struct cgroup *cgrp;
Paul Menage817929e2007-10-18 23:39:36 -0700344 /*
345 * List running through cg_cgroup_links pointing at a
346 * single css_set object, anchored on css_set->cg_links
347 */
348 struct list_head cg_link_list;
349 struct css_set *cg;
350};
351
352/* The default css_set - used by init and its children prior to any
353 * hierarchies being mounted. It contains a pointer to the root state
354 * for each subsystem. Also used to anchor the list of css_sets. Not
355 * reference-counted, to improve performance when child cgroups
356 * haven't been created.
357 */
358
359static struct css_set init_css_set;
360static struct cg_cgroup_link init_css_set_link;
361
Ben Blume6a11052010-03-10 15:22:09 -0800362static int cgroup_init_idr(struct cgroup_subsys *ss,
363 struct cgroup_subsys_state *css);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700364
Paul Menage817929e2007-10-18 23:39:36 -0700365/* css_set_lock protects the list of css_set objects, and the
366 * chain of tasks off each css_set. Nests outside task->alloc_lock
367 * due to cgroup_iter_start() */
368static DEFINE_RWLOCK(css_set_lock);
369static int css_set_count;
370
Paul Menage7717f7b2009-09-23 15:56:22 -0700371/*
372 * hash table for cgroup groups. This improves the performance to find
373 * an existing css_set. This hash doesn't (currently) take into
374 * account cgroups in empty hierarchies.
375 */
Li Zefan472b1052008-04-29 01:00:11 -0700376#define CSS_SET_HASH_BITS 7
377#define CSS_SET_TABLE_SIZE (1 << CSS_SET_HASH_BITS)
378static struct hlist_head css_set_table[CSS_SET_TABLE_SIZE];
379
380static struct hlist_head *css_set_hash(struct cgroup_subsys_state *css[])
381{
382 int i;
383 int index;
384 unsigned long tmp = 0UL;
385
386 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++)
387 tmp += (unsigned long)css[i];
388 tmp = (tmp >> 16) ^ tmp;
389
390 index = hash_long(tmp, CSS_SET_HASH_BITS);
391
392 return &css_set_table[index];
393}
394
Paul Menage817929e2007-10-18 23:39:36 -0700395/* We don't maintain the lists running through each css_set to its
396 * task until after the first call to cgroup_iter_start(). This
397 * reduces the fork()/exit() overhead for people who have cgroups
398 * compiled into their kernel but not actually in use */
Li Zefan8947f9d2008-07-25 01:46:56 -0700399static int use_task_css_set_links __read_mostly;
Paul Menage817929e2007-10-18 23:39:36 -0700400
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700401static void __put_css_set(struct css_set *cg, int taskexit)
Paul Menageb4f48b62007-10-18 23:39:33 -0700402{
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700403 struct cg_cgroup_link *link;
404 struct cg_cgroup_link *saved_link;
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700405 /*
406 * Ensure that the refcount doesn't hit zero while any readers
407 * can see it. Similar to atomic_dec_and_lock(), but for an
408 * rwlock
409 */
410 if (atomic_add_unless(&cg->refcount, -1, 1))
411 return;
412 write_lock(&css_set_lock);
413 if (!atomic_dec_and_test(&cg->refcount)) {
414 write_unlock(&css_set_lock);
415 return;
416 }
Paul Menage81a6a5c2007-10-18 23:39:38 -0700417
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700418 /* This css_set is dead. unlink it and release cgroup refcounts */
419 hlist_del(&cg->hlist);
420 css_set_count--;
421
422 list_for_each_entry_safe(link, saved_link, &cg->cg_links,
423 cg_link_list) {
424 struct cgroup *cgrp = link->cgrp;
425 list_del(&link->cg_link_list);
426 list_del(&link->cgrp_link_list);
Paul Menagebd89aab2007-10-18 23:40:44 -0700427 if (atomic_dec_and_test(&cgrp->count) &&
428 notify_on_release(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -0700429 if (taskexit)
Paul Menagebd89aab2007-10-18 23:40:44 -0700430 set_bit(CGRP_RELEASABLE, &cgrp->flags);
431 check_for_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700432 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700433
434 kfree(link);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700435 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700436
437 write_unlock(&css_set_lock);
Lai Jiangshan30088ad2011-03-15 17:53:46 +0800438 kfree_rcu(cg, rcu_head);
Paul Menage817929e2007-10-18 23:39:36 -0700439}
440
441/*
442 * refcounted get/put for css_set objects
443 */
444static inline void get_css_set(struct css_set *cg)
445{
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700446 atomic_inc(&cg->refcount);
Paul Menage817929e2007-10-18 23:39:36 -0700447}
448
449static inline void put_css_set(struct css_set *cg)
450{
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700451 __put_css_set(cg, 0);
Paul Menage817929e2007-10-18 23:39:36 -0700452}
453
Paul Menage81a6a5c2007-10-18 23:39:38 -0700454static inline void put_css_set_taskexit(struct css_set *cg)
455{
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700456 __put_css_set(cg, 1);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700457}
458
Paul Menage817929e2007-10-18 23:39:36 -0700459/*
Paul Menage7717f7b2009-09-23 15:56:22 -0700460 * compare_css_sets - helper function for find_existing_css_set().
461 * @cg: candidate css_set being tested
462 * @old_cg: existing css_set for a task
463 * @new_cgrp: cgroup that's being entered by the task
464 * @template: desired set of css pointers in css_set (pre-calculated)
465 *
466 * Returns true if "cg" matches "old_cg" except for the hierarchy
467 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
468 */
469static bool compare_css_sets(struct css_set *cg,
470 struct css_set *old_cg,
471 struct cgroup *new_cgrp,
472 struct cgroup_subsys_state *template[])
473{
474 struct list_head *l1, *l2;
475
476 if (memcmp(template, cg->subsys, sizeof(cg->subsys))) {
477 /* Not all subsystems matched */
478 return false;
479 }
480
481 /*
482 * Compare cgroup pointers in order to distinguish between
483 * different cgroups in heirarchies with no subsystems. We
484 * could get by with just this check alone (and skip the
485 * memcmp above) but on most setups the memcmp check will
486 * avoid the need for this more expensive check on almost all
487 * candidates.
488 */
489
490 l1 = &cg->cg_links;
491 l2 = &old_cg->cg_links;
492 while (1) {
493 struct cg_cgroup_link *cgl1, *cgl2;
494 struct cgroup *cg1, *cg2;
495
496 l1 = l1->next;
497 l2 = l2->next;
498 /* See if we reached the end - both lists are equal length. */
499 if (l1 == &cg->cg_links) {
500 BUG_ON(l2 != &old_cg->cg_links);
501 break;
502 } else {
503 BUG_ON(l2 == &old_cg->cg_links);
504 }
505 /* Locate the cgroups associated with these links. */
506 cgl1 = list_entry(l1, struct cg_cgroup_link, cg_link_list);
507 cgl2 = list_entry(l2, struct cg_cgroup_link, cg_link_list);
508 cg1 = cgl1->cgrp;
509 cg2 = cgl2->cgrp;
510 /* Hierarchies should be linked in the same order. */
511 BUG_ON(cg1->root != cg2->root);
512
513 /*
514 * If this hierarchy is the hierarchy of the cgroup
515 * that's changing, then we need to check that this
516 * css_set points to the new cgroup; if it's any other
517 * hierarchy, then this css_set should point to the
518 * same cgroup as the old css_set.
519 */
520 if (cg1->root == new_cgrp->root) {
521 if (cg1 != new_cgrp)
522 return false;
523 } else {
524 if (cg1 != cg2)
525 return false;
526 }
527 }
528 return true;
529}
530
531/*
Paul Menage817929e2007-10-18 23:39:36 -0700532 * find_existing_css_set() is a helper for
533 * find_css_set(), and checks to see whether an existing
Li Zefan472b1052008-04-29 01:00:11 -0700534 * css_set is suitable.
Paul Menage817929e2007-10-18 23:39:36 -0700535 *
536 * oldcg: the cgroup group that we're using before the cgroup
537 * transition
538 *
Paul Menagebd89aab2007-10-18 23:40:44 -0700539 * cgrp: the cgroup that we're moving into
Paul Menage817929e2007-10-18 23:39:36 -0700540 *
541 * template: location in which to build the desired set of subsystem
542 * state objects for the new cgroup group
543 */
Paul Menage817929e2007-10-18 23:39:36 -0700544static struct css_set *find_existing_css_set(
545 struct css_set *oldcg,
Paul Menagebd89aab2007-10-18 23:40:44 -0700546 struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -0700547 struct cgroup_subsys_state *template[])
548{
549 int i;
Paul Menagebd89aab2007-10-18 23:40:44 -0700550 struct cgroupfs_root *root = cgrp->root;
Li Zefan472b1052008-04-29 01:00:11 -0700551 struct hlist_head *hhead;
552 struct hlist_node *node;
553 struct css_set *cg;
Paul Menage817929e2007-10-18 23:39:36 -0700554
Ben Blumaae8aab2010-03-10 15:22:07 -0800555 /*
556 * Build the set of subsystem state objects that we want to see in the
557 * new css_set. while subsystems can change globally, the entries here
558 * won't change, so no need for locking.
559 */
Paul Menage817929e2007-10-18 23:39:36 -0700560 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -0400561 if (root->subsys_mask & (1UL << i)) {
Paul Menage817929e2007-10-18 23:39:36 -0700562 /* Subsystem is in this hierarchy. So we want
563 * the subsystem state from the new
564 * cgroup */
Paul Menagebd89aab2007-10-18 23:40:44 -0700565 template[i] = cgrp->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700566 } else {
567 /* Subsystem is not in this hierarchy, so we
568 * don't want to change the subsystem state */
569 template[i] = oldcg->subsys[i];
570 }
571 }
572
Li Zefan472b1052008-04-29 01:00:11 -0700573 hhead = css_set_hash(template);
574 hlist_for_each_entry(cg, node, hhead, hlist) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700575 if (!compare_css_sets(cg, oldcg, cgrp, template))
576 continue;
577
578 /* This css_set matches what we need */
579 return cg;
Li Zefan472b1052008-04-29 01:00:11 -0700580 }
Paul Menage817929e2007-10-18 23:39:36 -0700581
582 /* No existing cgroup group matched */
583 return NULL;
584}
585
Paul Menage817929e2007-10-18 23:39:36 -0700586static void free_cg_links(struct list_head *tmp)
587{
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700588 struct cg_cgroup_link *link;
589 struct cg_cgroup_link *saved_link;
590
591 list_for_each_entry_safe(link, saved_link, tmp, cgrp_link_list) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700592 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -0700593 kfree(link);
594 }
595}
596
597/*
Li Zefan36553432008-07-29 22:33:19 -0700598 * allocate_cg_links() allocates "count" cg_cgroup_link structures
599 * and chains them on tmp through their cgrp_link_list fields. Returns 0 on
600 * success or a negative error
601 */
602static int allocate_cg_links(int count, struct list_head *tmp)
603{
604 struct cg_cgroup_link *link;
605 int i;
606 INIT_LIST_HEAD(tmp);
607 for (i = 0; i < count; i++) {
608 link = kmalloc(sizeof(*link), GFP_KERNEL);
609 if (!link) {
610 free_cg_links(tmp);
611 return -ENOMEM;
612 }
613 list_add(&link->cgrp_link_list, tmp);
614 }
615 return 0;
616}
617
Li Zefanc12f65d2009-01-07 18:07:42 -0800618/**
619 * link_css_set - a helper function to link a css_set to a cgroup
620 * @tmp_cg_links: cg_cgroup_link objects allocated by allocate_cg_links()
621 * @cg: the css_set to be linked
622 * @cgrp: the destination cgroup
623 */
624static void link_css_set(struct list_head *tmp_cg_links,
625 struct css_set *cg, struct cgroup *cgrp)
626{
627 struct cg_cgroup_link *link;
628
629 BUG_ON(list_empty(tmp_cg_links));
630 link = list_first_entry(tmp_cg_links, struct cg_cgroup_link,
631 cgrp_link_list);
632 link->cg = cg;
Paul Menage7717f7b2009-09-23 15:56:22 -0700633 link->cgrp = cgrp;
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700634 atomic_inc(&cgrp->count);
Li Zefanc12f65d2009-01-07 18:07:42 -0800635 list_move(&link->cgrp_link_list, &cgrp->css_sets);
Paul Menage7717f7b2009-09-23 15:56:22 -0700636 /*
637 * Always add links to the tail of the list so that the list
638 * is sorted by order of hierarchy creation
639 */
640 list_add_tail(&link->cg_link_list, &cg->cg_links);
Li Zefanc12f65d2009-01-07 18:07:42 -0800641}
642
Li Zefan36553432008-07-29 22:33:19 -0700643/*
Paul Menage817929e2007-10-18 23:39:36 -0700644 * find_css_set() takes an existing cgroup group and a
645 * cgroup object, and returns a css_set object that's
646 * equivalent to the old group, but with the given cgroup
647 * substituted into the appropriate hierarchy. Must be called with
648 * cgroup_mutex held
649 */
Paul Menage817929e2007-10-18 23:39:36 -0700650static struct css_set *find_css_set(
Paul Menagebd89aab2007-10-18 23:40:44 -0700651 struct css_set *oldcg, struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700652{
653 struct css_set *res;
654 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT];
Paul Menage817929e2007-10-18 23:39:36 -0700655
656 struct list_head tmp_cg_links;
Paul Menage817929e2007-10-18 23:39:36 -0700657
Li Zefan472b1052008-04-29 01:00:11 -0700658 struct hlist_head *hhead;
Paul Menage7717f7b2009-09-23 15:56:22 -0700659 struct cg_cgroup_link *link;
Li Zefan472b1052008-04-29 01:00:11 -0700660
Paul Menage817929e2007-10-18 23:39:36 -0700661 /* First see if we already have a cgroup group that matches
662 * the desired set */
Li Zefan7e9abd82008-07-25 01:46:54 -0700663 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -0700664 res = find_existing_css_set(oldcg, cgrp, template);
Paul Menage817929e2007-10-18 23:39:36 -0700665 if (res)
666 get_css_set(res);
Li Zefan7e9abd82008-07-25 01:46:54 -0700667 read_unlock(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -0700668
669 if (res)
670 return res;
671
672 res = kmalloc(sizeof(*res), GFP_KERNEL);
673 if (!res)
674 return NULL;
675
676 /* Allocate all the cg_cgroup_link objects that we'll need */
677 if (allocate_cg_links(root_count, &tmp_cg_links) < 0) {
678 kfree(res);
679 return NULL;
680 }
681
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700682 atomic_set(&res->refcount, 1);
Paul Menage817929e2007-10-18 23:39:36 -0700683 INIT_LIST_HEAD(&res->cg_links);
684 INIT_LIST_HEAD(&res->tasks);
Li Zefan472b1052008-04-29 01:00:11 -0700685 INIT_HLIST_NODE(&res->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700686
687 /* Copy the set of subsystem state objects generated in
688 * find_existing_css_set() */
689 memcpy(res->subsys, template, sizeof(res->subsys));
690
691 write_lock(&css_set_lock);
692 /* Add reference counts and links from the new css_set. */
Paul Menage7717f7b2009-09-23 15:56:22 -0700693 list_for_each_entry(link, &oldcg->cg_links, cg_link_list) {
694 struct cgroup *c = link->cgrp;
695 if (c->root == cgrp->root)
696 c = cgrp;
697 link_css_set(&tmp_cg_links, res, c);
698 }
Paul Menage817929e2007-10-18 23:39:36 -0700699
700 BUG_ON(!list_empty(&tmp_cg_links));
701
Paul Menage817929e2007-10-18 23:39:36 -0700702 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -0700703
704 /* Add this cgroup group to the hash table */
705 hhead = css_set_hash(res->subsys);
706 hlist_add_head(&res->hlist, hhead);
707
Paul Menage817929e2007-10-18 23:39:36 -0700708 write_unlock(&css_set_lock);
709
710 return res;
Paul Menageb4f48b62007-10-18 23:39:33 -0700711}
712
Paul Menageddbcc7e2007-10-18 23:39:30 -0700713/*
Paul Menage7717f7b2009-09-23 15:56:22 -0700714 * Return the cgroup for "task" from the given hierarchy. Must be
715 * called with cgroup_mutex held.
716 */
717static struct cgroup *task_cgroup_from_root(struct task_struct *task,
718 struct cgroupfs_root *root)
719{
720 struct css_set *css;
721 struct cgroup *res = NULL;
722
723 BUG_ON(!mutex_is_locked(&cgroup_mutex));
724 read_lock(&css_set_lock);
725 /*
726 * No need to lock the task - since we hold cgroup_mutex the
727 * task can't change groups, so the only thing that can happen
728 * is that it exits and its css is set back to init_css_set.
729 */
730 css = task->cgroups;
731 if (css == &init_css_set) {
732 res = &root->top_cgroup;
733 } else {
734 struct cg_cgroup_link *link;
735 list_for_each_entry(link, &css->cg_links, cg_link_list) {
736 struct cgroup *c = link->cgrp;
737 if (c->root == root) {
738 res = c;
739 break;
740 }
741 }
742 }
743 read_unlock(&css_set_lock);
744 BUG_ON(!res);
745 return res;
746}
747
748/*
Paul Menageddbcc7e2007-10-18 23:39:30 -0700749 * There is one global cgroup mutex. We also require taking
750 * task_lock() when dereferencing a task's cgroup subsys pointers.
751 * See "The task_lock() exception", at the end of this comment.
752 *
753 * A task must hold cgroup_mutex to modify cgroups.
754 *
755 * Any task can increment and decrement the count field without lock.
756 * So in general, code holding cgroup_mutex can't rely on the count
757 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -0800758 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -0700759 * means that no tasks are currently attached, therefore there is no
760 * way a task attached to that cgroup can fork (the other way to
761 * increment the count). So code holding cgroup_mutex can safely
762 * assume that if the count is zero, it will stay zero. Similarly, if
763 * a task holds cgroup_mutex on a cgroup with zero count, it
764 * knows that the cgroup won't be removed, as cgroup_rmdir()
765 * needs that mutex.
766 *
Paul Menageddbcc7e2007-10-18 23:39:30 -0700767 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
768 * (usually) take cgroup_mutex. These are the two most performance
769 * critical pieces of code here. The exception occurs on cgroup_exit(),
770 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
771 * is taken, and if the cgroup count is zero, a usermode call made
Li Zefana043e3b2008-02-23 15:24:09 -0800772 * to the release agent with the name of the cgroup (path relative to
773 * the root of cgroup file system) as the argument.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700774 *
775 * A cgroup can only be deleted if both its 'count' of using tasks
776 * is zero, and its list of 'children' cgroups is empty. Since all
777 * tasks in the system use _some_ cgroup, and since there is always at
778 * least one task in the system (init, pid == 1), therefore, top_cgroup
779 * always has either children cgroups and/or using tasks. So we don't
780 * need a special hack to ensure that top_cgroup cannot be deleted.
781 *
782 * The task_lock() exception
783 *
784 * The need for this exception arises from the action of
Cliff Wickman956db3c2008-02-07 00:14:43 -0800785 * cgroup_attach_task(), which overwrites one tasks cgroup pointer with
Li Zefana043e3b2008-02-23 15:24:09 -0800786 * another. It does so using cgroup_mutex, however there are
Paul Menageddbcc7e2007-10-18 23:39:30 -0700787 * several performance critical places that need to reference
788 * task->cgroup without the expense of grabbing a system global
789 * mutex. Therefore except as noted below, when dereferencing or, as
Cliff Wickman956db3c2008-02-07 00:14:43 -0800790 * in cgroup_attach_task(), modifying a task'ss cgroup pointer we use
Paul Menageddbcc7e2007-10-18 23:39:30 -0700791 * task_lock(), which acts on a spinlock (task->alloc_lock) already in
792 * the task_struct routinely used for such matters.
793 *
794 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -0800795 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700796 */
797
Paul Menageddbcc7e2007-10-18 23:39:30 -0700798/**
799 * cgroup_lock - lock out any changes to cgroup structures
800 *
801 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700802void cgroup_lock(void)
803{
804 mutex_lock(&cgroup_mutex);
805}
Ben Blum67523c42010-03-10 15:22:11 -0800806EXPORT_SYMBOL_GPL(cgroup_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700807
808/**
809 * cgroup_unlock - release lock on cgroup changes
810 *
811 * Undo the lock taken in a previous cgroup_lock() call.
812 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700813void cgroup_unlock(void)
814{
815 mutex_unlock(&cgroup_mutex);
816}
Ben Blum67523c42010-03-10 15:22:11 -0800817EXPORT_SYMBOL_GPL(cgroup_unlock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700818
819/*
820 * A couple of forward declarations required, due to cyclic reference loop:
821 * cgroup_mkdir -> cgroup_create -> cgroup_populate_dir ->
822 * cgroup_add_file -> cgroup_create_file -> cgroup_dir_inode_operations
823 * -> cgroup_mkdir.
824 */
825
Al Viro18bb1db2011-07-26 01:41:39 -0400826static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode);
Al Viro00cd8dd2012-06-10 17:13:09 -0400827static struct dentry *cgroup_lookup(struct inode *, struct dentry *, unsigned int);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700828static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry);
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400829static int cgroup_populate_dir(struct cgroup *cgrp, bool base_files,
830 unsigned long subsys_mask);
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -0700831static const struct inode_operations cgroup_dir_inode_operations;
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700832static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -0700833
834static struct backing_dev_info cgroup_backing_dev_info = {
Jens Axboed9938312009-06-12 14:45:52 +0200835 .name = "cgroup",
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700836 .capabilities = BDI_CAP_NO_ACCT_AND_WRITEBACK,
Paul Menagea4243162007-10-18 23:39:35 -0700837};
Paul Menageddbcc7e2007-10-18 23:39:30 -0700838
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700839static int alloc_css_id(struct cgroup_subsys *ss,
840 struct cgroup *parent, struct cgroup *child);
841
Al Viroa5e7ed32011-07-26 01:55:55 -0400842static struct inode *cgroup_new_inode(umode_t mode, struct super_block *sb)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700843{
844 struct inode *inode = new_inode(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700845
846 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400847 inode->i_ino = get_next_ino();
Paul Menageddbcc7e2007-10-18 23:39:30 -0700848 inode->i_mode = mode;
David Howells76aac0e2008-11-14 10:39:12 +1100849 inode->i_uid = current_fsuid();
850 inode->i_gid = current_fsgid();
Paul Menageddbcc7e2007-10-18 23:39:30 -0700851 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
852 inode->i_mapping->backing_dev_info = &cgroup_backing_dev_info;
853 }
854 return inode;
855}
856
857static void cgroup_diput(struct dentry *dentry, struct inode *inode)
858{
859 /* is dentry a directory ? if so, kfree() associated cgroup */
860 if (S_ISDIR(inode->i_mode)) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700861 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800862 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -0700863 BUG_ON(!(cgroup_is_removed(cgrp)));
Paul Menage81a6a5c2007-10-18 23:39:38 -0700864 /* It's possible for external users to be holding css
865 * reference counts on a cgroup; css_put() needs to
866 * be able to access the cgroup after decrementing
867 * the reference count in order to know if it needs to
868 * queue the cgroup to be handled by the release
869 * agent */
870 synchronize_rcu();
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800871
872 mutex_lock(&cgroup_mutex);
873 /*
874 * Release the subsystem state objects.
875 */
Li Zefan75139b82009-01-07 18:07:33 -0800876 for_each_subsys(cgrp->root, ss)
Li Zefan761b3ef2012-01-31 13:47:36 +0800877 ss->destroy(cgrp);
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800878
879 cgrp->root->number_of_cgroups--;
880 mutex_unlock(&cgroup_mutex);
881
Paul Menagea47295e2009-01-07 18:07:44 -0800882 /*
Tejun Heo7db5b3c2012-07-07 15:55:47 -0700883 * Drop the active superblock reference that we took when we
884 * created the cgroup
Paul Menagea47295e2009-01-07 18:07:44 -0800885 */
Tejun Heo7db5b3c2012-07-07 15:55:47 -0700886 deactivate_super(cgrp->root->sb);
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800887
Ben Blum72a8cb32009-09-23 15:56:27 -0700888 /*
889 * if we're getting rid of the cgroup, refcount should ensure
890 * that there are no pidlists left.
891 */
892 BUG_ON(!list_empty(&cgrp->pidlists));
893
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -0400894 simple_xattrs_free(&cgrp->xattrs);
895
Lai Jiangshanf2da1c42011-03-15 17:55:16 +0800896 kfree_rcu(cgrp, rcu_head);
Tejun Heo05ef1d72012-04-01 12:09:56 -0700897 } else {
898 struct cfent *cfe = __d_cfe(dentry);
899 struct cgroup *cgrp = dentry->d_parent->d_fsdata;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -0400900 struct cftype *cft = cfe->type;
Tejun Heo05ef1d72012-04-01 12:09:56 -0700901
902 WARN_ONCE(!list_empty(&cfe->node) &&
903 cgrp != &cgrp->root->top_cgroup,
904 "cfe still linked for %s\n", cfe->type->name);
905 kfree(cfe);
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -0400906 simple_xattrs_free(&cft->xattrs);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700907 }
908 iput(inode);
909}
910
Al Viroc72a04e2011-01-14 05:31:45 +0000911static int cgroup_delete(const struct dentry *d)
912{
913 return 1;
914}
915
Paul Menageddbcc7e2007-10-18 23:39:30 -0700916static void remove_dir(struct dentry *d)
917{
918 struct dentry *parent = dget(d->d_parent);
919
920 d_delete(d);
921 simple_rmdir(parent->d_inode, d);
922 dput(parent);
923}
924
Tejun Heo05ef1d72012-04-01 12:09:56 -0700925static int cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700926{
Tejun Heo05ef1d72012-04-01 12:09:56 -0700927 struct cfent *cfe;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700928
Tejun Heo05ef1d72012-04-01 12:09:56 -0700929 lockdep_assert_held(&cgrp->dentry->d_inode->i_mutex);
930 lockdep_assert_held(&cgroup_mutex);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100931
Tejun Heo05ef1d72012-04-01 12:09:56 -0700932 list_for_each_entry(cfe, &cgrp->files, node) {
933 struct dentry *d = cfe->dentry;
934
935 if (cft && cfe->type != cft)
936 continue;
937
938 dget(d);
939 d_delete(d);
Tejun Heoce27e312012-07-03 10:38:06 -0700940 simple_unlink(cgrp->dentry->d_inode, d);
Tejun Heo05ef1d72012-04-01 12:09:56 -0700941 list_del_init(&cfe->node);
942 dput(d);
943
944 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700945 }
Tejun Heo05ef1d72012-04-01 12:09:56 -0700946 return -ENOENT;
947}
948
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400949/**
950 * cgroup_clear_directory - selective removal of base and subsystem files
951 * @dir: directory containing the files
952 * @base_files: true if the base files should be removed
953 * @subsys_mask: mask of the subsystem ids whose files should be removed
954 */
955static void cgroup_clear_directory(struct dentry *dir, bool base_files,
956 unsigned long subsys_mask)
Tejun Heo05ef1d72012-04-01 12:09:56 -0700957{
958 struct cgroup *cgrp = __d_cgrp(dir);
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400959 struct cgroup_subsys *ss;
Tejun Heo05ef1d72012-04-01 12:09:56 -0700960
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400961 for_each_subsys(cgrp->root, ss) {
962 struct cftype_set *set;
963 if (!test_bit(ss->subsys_id, &subsys_mask))
964 continue;
965 list_for_each_entry(set, &ss->cftsets, node)
966 cgroup_rm_file(cgrp, set->cfts);
967 }
968 if (base_files) {
969 while (!list_empty(&cgrp->files))
970 cgroup_rm_file(cgrp, NULL);
971 }
Paul Menageddbcc7e2007-10-18 23:39:30 -0700972}
973
974/*
975 * NOTE : the dentry must have been dget()'ed
976 */
977static void cgroup_d_remove_dir(struct dentry *dentry)
978{
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100979 struct dentry *parent;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400980 struct cgroupfs_root *root = dentry->d_sb->s_fs_info;
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100981
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -0400982 cgroup_clear_directory(dentry, true, root->subsys_mask);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700983
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100984 parent = dentry->d_parent;
985 spin_lock(&parent->d_lock);
Li Zefan3ec762a2011-01-14 11:34:34 +0800986 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700987 list_del_init(&dentry->d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100988 spin_unlock(&dentry->d_lock);
989 spin_unlock(&parent->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700990 remove_dir(dentry);
991}
992
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700993/*
Ben Blumcf5d5942010-03-10 15:22:09 -0800994 * Call with cgroup_mutex held. Drops reference counts on modules, including
995 * any duplicate ones that parse_cgroupfs_options took. If this function
996 * returns an error, no reference counts are touched.
Ben Blumaae8aab2010-03-10 15:22:07 -0800997 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700998static int rebind_subsystems(struct cgroupfs_root *root,
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -0400999 unsigned long final_subsys_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001000{
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001001 unsigned long added_mask, removed_mask;
Paul Menagebd89aab2007-10-18 23:40:44 -07001002 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001003 int i;
1004
Ben Blumaae8aab2010-03-10 15:22:07 -08001005 BUG_ON(!mutex_is_locked(&cgroup_mutex));
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001006 BUG_ON(!mutex_is_locked(&cgroup_root_mutex));
Ben Blumaae8aab2010-03-10 15:22:07 -08001007
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001008 removed_mask = root->actual_subsys_mask & ~final_subsys_mask;
1009 added_mask = final_subsys_mask & ~root->actual_subsys_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001010 /* Check that any added subsystems are currently free */
1011 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Li Zefan8d53d552008-02-23 15:24:11 -08001012 unsigned long bit = 1UL << i;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001013 struct cgroup_subsys *ss = subsys[i];
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001014 if (!(bit & added_mask))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001015 continue;
Ben Blumaae8aab2010-03-10 15:22:07 -08001016 /*
1017 * Nobody should tell us to do a subsys that doesn't exist:
1018 * parse_cgroupfs_options should catch that case and refcounts
1019 * ensure that subsystems won't disappear once selected.
1020 */
1021 BUG_ON(ss == NULL);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001022 if (ss->root != &rootnode) {
1023 /* Subsystem isn't free */
1024 return -EBUSY;
1025 }
1026 }
1027
1028 /* Currently we don't handle adding/removing subsystems when
1029 * any child cgroups exist. This is theoretically supportable
1030 * but involves complex error handling, so it's being left until
1031 * later */
Paul Menage307257c2008-12-15 13:54:22 -08001032 if (root->number_of_cgroups > 1)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001033 return -EBUSY;
1034
1035 /* Process each subsystem */
1036 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1037 struct cgroup_subsys *ss = subsys[i];
1038 unsigned long bit = 1UL << i;
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001039 if (bit & added_mask) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001040 /* We're binding this subsystem to this hierarchy */
Ben Blumaae8aab2010-03-10 15:22:07 -08001041 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001042 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001043 BUG_ON(!dummytop->subsys[i]);
1044 BUG_ON(dummytop->subsys[i]->cgroup != dummytop);
Paul Menagebd89aab2007-10-18 23:40:44 -07001045 cgrp->subsys[i] = dummytop->subsys[i];
1046 cgrp->subsys[i]->cgroup = cgrp;
Li Zefan33a68ac2009-01-07 18:07:42 -08001047 list_move(&ss->sibling, &root->subsys_list);
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001048 ss->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001049 if (ss->bind)
Li Zefan761b3ef2012-01-31 13:47:36 +08001050 ss->bind(cgrp);
Ben Blumcf5d5942010-03-10 15:22:09 -08001051 /* refcount was already taken, and we're keeping it */
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001052 } else if (bit & removed_mask) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001053 /* We're removing this subsystem */
Ben Blumaae8aab2010-03-10 15:22:07 -08001054 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001055 BUG_ON(cgrp->subsys[i] != dummytop->subsys[i]);
1056 BUG_ON(cgrp->subsys[i]->cgroup != cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001057 if (ss->bind)
Li Zefan761b3ef2012-01-31 13:47:36 +08001058 ss->bind(dummytop);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001059 dummytop->subsys[i]->cgroup = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -07001060 cgrp->subsys[i] = NULL;
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001061 subsys[i]->root = &rootnode;
Li Zefan33a68ac2009-01-07 18:07:42 -08001062 list_move(&ss->sibling, &rootnode.subsys_list);
Ben Blumcf5d5942010-03-10 15:22:09 -08001063 /* subsystem is now free - drop reference on module */
1064 module_put(ss->module);
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001065 } else if (bit & final_subsys_mask) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001066 /* Subsystem state should already exist */
Ben Blumaae8aab2010-03-10 15:22:07 -08001067 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001068 BUG_ON(!cgrp->subsys[i]);
Ben Blumcf5d5942010-03-10 15:22:09 -08001069 /*
1070 * a refcount was taken, but we already had one, so
1071 * drop the extra reference.
1072 */
1073 module_put(ss->module);
1074#ifdef CONFIG_MODULE_UNLOAD
1075 BUG_ON(ss->module && !module_refcount(ss->module));
1076#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001077 } else {
1078 /* Subsystem state shouldn't exist */
Paul Menagebd89aab2007-10-18 23:40:44 -07001079 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001080 }
1081 }
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001082 root->subsys_mask = root->actual_subsys_mask = final_subsys_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001083 synchronize_rcu();
1084
1085 return 0;
1086}
1087
Al Viro34c80b12011-12-08 21:32:45 -05001088static int cgroup_show_options(struct seq_file *seq, struct dentry *dentry)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001089{
Al Viro34c80b12011-12-08 21:32:45 -05001090 struct cgroupfs_root *root = dentry->d_sb->s_fs_info;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001091 struct cgroup_subsys *ss;
1092
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001093 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001094 for_each_subsys(root, ss)
1095 seq_printf(seq, ",%s", ss->name);
1096 if (test_bit(ROOT_NOPREFIX, &root->flags))
1097 seq_puts(seq, ",noprefix");
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001098 if (test_bit(ROOT_XATTR, &root->flags))
1099 seq_puts(seq, ",xattr");
Paul Menage81a6a5c2007-10-18 23:39:38 -07001100 if (strlen(root->release_agent_path))
1101 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Daniel Lezcano97978e62010-10-27 15:33:35 -07001102 if (clone_children(&root->top_cgroup))
1103 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001104 if (strlen(root->name))
1105 seq_printf(seq, ",name=%s", root->name);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001106 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001107 return 0;
1108}
1109
1110struct cgroup_sb_opts {
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001111 unsigned long subsys_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001112 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001113 char *release_agent;
Daniel Lezcano97978e62010-10-27 15:33:35 -07001114 bool clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001115 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001116 /* User explicitly requested empty subsystem */
1117 bool none;
Paul Menagec6d57f32009-09-23 15:56:19 -07001118
1119 struct cgroupfs_root *new_root;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001120
Paul Menageddbcc7e2007-10-18 23:39:30 -07001121};
1122
Ben Blumaae8aab2010-03-10 15:22:07 -08001123/*
1124 * Convert a hierarchy specifier into a bitmask of subsystems and flags. Call
Ben Blumcf5d5942010-03-10 15:22:09 -08001125 * with cgroup_mutex held to protect the subsys[] array. This function takes
1126 * refcounts on subsystems to be used, unless it returns error, in which case
1127 * no refcounts are taken.
Ben Blumaae8aab2010-03-10 15:22:07 -08001128 */
Ben Blumcf5d5942010-03-10 15:22:09 -08001129static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001130{
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001131 char *token, *o = data;
1132 bool all_ss = false, one_ss = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001133 unsigned long mask = (unsigned long)-1;
Ben Blumcf5d5942010-03-10 15:22:09 -08001134 int i;
1135 bool module_pin_failed = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001136
Ben Blumaae8aab2010-03-10 15:22:07 -08001137 BUG_ON(!mutex_is_locked(&cgroup_mutex));
1138
Li Zefanf9ab5b52009-06-17 16:26:33 -07001139#ifdef CONFIG_CPUSETS
1140 mask = ~(1UL << cpuset_subsys_id);
1141#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001142
Paul Menagec6d57f32009-09-23 15:56:19 -07001143 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001144
1145 while ((token = strsep(&o, ",")) != NULL) {
1146 if (!*token)
1147 return -EINVAL;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001148 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001149 /* Explicitly have no subsystems */
1150 opts->none = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001151 continue;
1152 }
1153 if (!strcmp(token, "all")) {
1154 /* Mutually exclusive option 'all' + subsystem name */
1155 if (one_ss)
1156 return -EINVAL;
1157 all_ss = true;
1158 continue;
1159 }
1160 if (!strcmp(token, "noprefix")) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001161 set_bit(ROOT_NOPREFIX, &opts->flags);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001162 continue;
1163 }
1164 if (!strcmp(token, "clone_children")) {
Daniel Lezcano97978e62010-10-27 15:33:35 -07001165 opts->clone_children = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001166 continue;
1167 }
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001168 if (!strcmp(token, "xattr")) {
1169 set_bit(ROOT_XATTR, &opts->flags);
1170 continue;
1171 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001172 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001173 /* Specifying two release agents is forbidden */
1174 if (opts->release_agent)
1175 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001176 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001177 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001178 if (!opts->release_agent)
1179 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001180 continue;
1181 }
1182 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001183 const char *name = token + 5;
1184 /* Can't specify an empty name */
1185 if (!strlen(name))
1186 return -EINVAL;
1187 /* Must match [\w.-]+ */
1188 for (i = 0; i < strlen(name); i++) {
1189 char c = name[i];
1190 if (isalnum(c))
1191 continue;
1192 if ((c == '.') || (c == '-') || (c == '_'))
1193 continue;
1194 return -EINVAL;
1195 }
1196 /* Specifying two names is forbidden */
1197 if (opts->name)
1198 return -EINVAL;
1199 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001200 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001201 GFP_KERNEL);
1202 if (!opts->name)
1203 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001204
1205 continue;
1206 }
1207
1208 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1209 struct cgroup_subsys *ss = subsys[i];
1210 if (ss == NULL)
1211 continue;
1212 if (strcmp(token, ss->name))
1213 continue;
1214 if (ss->disabled)
1215 continue;
1216
1217 /* Mutually exclusive option 'all' + subsystem name */
1218 if (all_ss)
1219 return -EINVAL;
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001220 set_bit(i, &opts->subsys_mask);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001221 one_ss = true;
1222
1223 break;
1224 }
1225 if (i == CGROUP_SUBSYS_COUNT)
1226 return -ENOENT;
1227 }
1228
1229 /*
1230 * If the 'all' option was specified select all the subsystems,
Li Zefan0d19ea82011-12-27 14:25:55 +08001231 * otherwise if 'none', 'name=' and a subsystem name options
1232 * were not specified, let's default to 'all'
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001233 */
Li Zefan0d19ea82011-12-27 14:25:55 +08001234 if (all_ss || (!one_ss && !opts->none && !opts->name)) {
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001235 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1236 struct cgroup_subsys *ss = subsys[i];
1237 if (ss == NULL)
1238 continue;
1239 if (ss->disabled)
1240 continue;
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001241 set_bit(i, &opts->subsys_mask);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001242 }
1243 }
1244
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001245 /* Consistency checks */
1246
Li Zefanf9ab5b52009-06-17 16:26:33 -07001247 /*
1248 * Option noprefix was introduced just for backward compatibility
1249 * with the old cpuset, so we allow noprefix only if mounting just
1250 * the cpuset subsystem.
1251 */
1252 if (test_bit(ROOT_NOPREFIX, &opts->flags) &&
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001253 (opts->subsys_mask & mask))
Li Zefanf9ab5b52009-06-17 16:26:33 -07001254 return -EINVAL;
1255
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001256
1257 /* Can't specify "none" and some subsystems */
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001258 if (opts->subsys_mask && opts->none)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001259 return -EINVAL;
1260
1261 /*
1262 * We either have to specify by name or by subsystems. (So all
1263 * empty hierarchies must have a name).
1264 */
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001265 if (!opts->subsys_mask && !opts->name)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001266 return -EINVAL;
1267
Ben Blumcf5d5942010-03-10 15:22:09 -08001268 /*
1269 * Grab references on all the modules we'll need, so the subsystems
1270 * don't dance around before rebind_subsystems attaches them. This may
1271 * take duplicate reference counts on a subsystem that's already used,
1272 * but rebind_subsystems handles this case.
1273 */
Daniel Wagnerbe45c902012-09-13 09:50:55 +02001274 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Ben Blumcf5d5942010-03-10 15:22:09 -08001275 unsigned long bit = 1UL << i;
1276
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001277 if (!(bit & opts->subsys_mask))
Ben Blumcf5d5942010-03-10 15:22:09 -08001278 continue;
1279 if (!try_module_get(subsys[i]->module)) {
1280 module_pin_failed = true;
1281 break;
1282 }
1283 }
1284 if (module_pin_failed) {
1285 /*
1286 * oops, one of the modules was going away. this means that we
1287 * raced with a module_delete call, and to the user this is
1288 * essentially a "subsystem doesn't exist" case.
1289 */
Daniel Wagnerbe45c902012-09-13 09:50:55 +02001290 for (i--; i >= 0; i--) {
Ben Blumcf5d5942010-03-10 15:22:09 -08001291 /* drop refcounts only on the ones we took */
1292 unsigned long bit = 1UL << i;
1293
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001294 if (!(bit & opts->subsys_mask))
Ben Blumcf5d5942010-03-10 15:22:09 -08001295 continue;
1296 module_put(subsys[i]->module);
1297 }
1298 return -ENOENT;
1299 }
1300
Paul Menageddbcc7e2007-10-18 23:39:30 -07001301 return 0;
1302}
1303
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001304static void drop_parsed_module_refcounts(unsigned long subsys_mask)
Ben Blumcf5d5942010-03-10 15:22:09 -08001305{
1306 int i;
Daniel Wagnerbe45c902012-09-13 09:50:55 +02001307 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Ben Blumcf5d5942010-03-10 15:22:09 -08001308 unsigned long bit = 1UL << i;
1309
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001310 if (!(bit & subsys_mask))
Ben Blumcf5d5942010-03-10 15:22:09 -08001311 continue;
1312 module_put(subsys[i]->module);
1313 }
1314}
1315
Paul Menageddbcc7e2007-10-18 23:39:30 -07001316static int cgroup_remount(struct super_block *sb, int *flags, char *data)
1317{
1318 int ret = 0;
1319 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001320 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001321 struct cgroup_sb_opts opts;
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001322 unsigned long added_mask, removed_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001323
Paul Menagebd89aab2007-10-18 23:40:44 -07001324 mutex_lock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001325 mutex_lock(&cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001326 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001327
1328 /* See what subsystems are wanted */
1329 ret = parse_cgroupfs_options(data, &opts);
1330 if (ret)
1331 goto out_unlock;
1332
Tejun Heo8b5a5a92012-04-01 12:09:54 -07001333 /* See feature-removal-schedule.txt */
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001334 if (opts.subsys_mask != root->actual_subsys_mask || opts.release_agent)
Tejun Heo8b5a5a92012-04-01 12:09:54 -07001335 pr_warning("cgroup: option changes via remount are deprecated (pid=%d comm=%s)\n",
1336 task_tgid_nr(current), current->comm);
1337
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001338 added_mask = opts.subsys_mask & ~root->subsys_mask;
1339 removed_mask = root->subsys_mask & ~opts.subsys_mask;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001340
Ben Blumcf5d5942010-03-10 15:22:09 -08001341 /* Don't allow flags or name to change at remount */
1342 if (opts.flags != root->flags ||
1343 (opts.name && strcmp(opts.name, root->name))) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001344 ret = -EINVAL;
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001345 drop_parsed_module_refcounts(opts.subsys_mask);
Paul Menagec6d57f32009-09-23 15:56:19 -07001346 goto out_unlock;
1347 }
1348
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001349 ret = rebind_subsystems(root, opts.subsys_mask);
Ben Blumcf5d5942010-03-10 15:22:09 -08001350 if (ret) {
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001351 drop_parsed_module_refcounts(opts.subsys_mask);
Li Zefan0670e082009-04-02 16:57:30 -07001352 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001353 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001354
Tejun Heoff4c8d52012-04-01 12:09:54 -07001355 /* clear out any existing files and repopulate subsystem files */
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001356 cgroup_clear_directory(cgrp->dentry, false, removed_mask);
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001357 /* re-populate subsystem files */
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001358 cgroup_populate_dir(cgrp, false, added_mask);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001359
Paul Menage81a6a5c2007-10-18 23:39:38 -07001360 if (opts.release_agent)
1361 strcpy(root->release_agent_path, opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001362 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001363 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001364 kfree(opts.name);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001365 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001366 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07001367 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001368 return ret;
1369}
1370
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001371static const struct super_operations cgroup_ops = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001372 .statfs = simple_statfs,
1373 .drop_inode = generic_delete_inode,
1374 .show_options = cgroup_show_options,
1375 .remount_fs = cgroup_remount,
1376};
1377
Paul Menagecc31edc2008-10-18 20:28:04 -07001378static void init_cgroup_housekeeping(struct cgroup *cgrp)
1379{
1380 INIT_LIST_HEAD(&cgrp->sibling);
1381 INIT_LIST_HEAD(&cgrp->children);
Tejun Heo05ef1d72012-04-01 12:09:56 -07001382 INIT_LIST_HEAD(&cgrp->files);
Paul Menagecc31edc2008-10-18 20:28:04 -07001383 INIT_LIST_HEAD(&cgrp->css_sets);
1384 INIT_LIST_HEAD(&cgrp->release_list);
Ben Blum72a8cb32009-09-23 15:56:27 -07001385 INIT_LIST_HEAD(&cgrp->pidlists);
1386 mutex_init(&cgrp->pidlist_mutex);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08001387 INIT_LIST_HEAD(&cgrp->event_list);
1388 spin_lock_init(&cgrp->event_list_lock);
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001389 simple_xattrs_init(&cgrp->xattrs);
Paul Menagecc31edc2008-10-18 20:28:04 -07001390}
Paul Menagec6d57f32009-09-23 15:56:19 -07001391
Paul Menageddbcc7e2007-10-18 23:39:30 -07001392static void init_cgroup_root(struct cgroupfs_root *root)
1393{
Paul Menagebd89aab2007-10-18 23:40:44 -07001394 struct cgroup *cgrp = &root->top_cgroup;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001395
Paul Menageddbcc7e2007-10-18 23:39:30 -07001396 INIT_LIST_HEAD(&root->subsys_list);
1397 INIT_LIST_HEAD(&root->root_list);
Tejun Heob0ca5a82012-04-01 12:09:54 -07001398 INIT_LIST_HEAD(&root->allcg_list);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001399 root->number_of_cgroups = 1;
Paul Menagebd89aab2007-10-18 23:40:44 -07001400 cgrp->root = root;
1401 cgrp->top_cgroup = cgrp;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001402 list_add_tail(&cgrp->allcg_node, &root->allcg_list);
Paul Menagecc31edc2008-10-18 20:28:04 -07001403 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001404}
1405
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001406static bool init_root_id(struct cgroupfs_root *root)
1407{
1408 int ret = 0;
1409
1410 do {
1411 if (!ida_pre_get(&hierarchy_ida, GFP_KERNEL))
1412 return false;
1413 spin_lock(&hierarchy_id_lock);
1414 /* Try to allocate the next unused ID */
1415 ret = ida_get_new_above(&hierarchy_ida, next_hierarchy_id,
1416 &root->hierarchy_id);
1417 if (ret == -ENOSPC)
1418 /* Try again starting from 0 */
1419 ret = ida_get_new(&hierarchy_ida, &root->hierarchy_id);
1420 if (!ret) {
1421 next_hierarchy_id = root->hierarchy_id + 1;
1422 } else if (ret != -EAGAIN) {
1423 /* Can only get here if the 31-bit IDR is full ... */
1424 BUG_ON(ret);
1425 }
1426 spin_unlock(&hierarchy_id_lock);
1427 } while (ret);
1428 return true;
1429}
1430
Paul Menageddbcc7e2007-10-18 23:39:30 -07001431static int cgroup_test_super(struct super_block *sb, void *data)
1432{
Paul Menagec6d57f32009-09-23 15:56:19 -07001433 struct cgroup_sb_opts *opts = data;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001434 struct cgroupfs_root *root = sb->s_fs_info;
1435
Paul Menagec6d57f32009-09-23 15:56:19 -07001436 /* If we asked for a name then it must match */
1437 if (opts->name && strcmp(opts->name, root->name))
1438 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001439
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001440 /*
1441 * If we asked for subsystems (or explicitly for no
1442 * subsystems) then they must match
1443 */
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001444 if ((opts->subsys_mask || opts->none)
1445 && (opts->subsys_mask != root->subsys_mask))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001446 return 0;
1447
1448 return 1;
1449}
1450
Paul Menagec6d57f32009-09-23 15:56:19 -07001451static struct cgroupfs_root *cgroup_root_from_opts(struct cgroup_sb_opts *opts)
1452{
1453 struct cgroupfs_root *root;
1454
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001455 if (!opts->subsys_mask && !opts->none)
Paul Menagec6d57f32009-09-23 15:56:19 -07001456 return NULL;
1457
1458 root = kzalloc(sizeof(*root), GFP_KERNEL);
1459 if (!root)
1460 return ERR_PTR(-ENOMEM);
1461
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001462 if (!init_root_id(root)) {
1463 kfree(root);
1464 return ERR_PTR(-ENOMEM);
1465 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001466 init_cgroup_root(root);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001467
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001468 root->subsys_mask = opts->subsys_mask;
Paul Menagec6d57f32009-09-23 15:56:19 -07001469 root->flags = opts->flags;
1470 if (opts->release_agent)
1471 strcpy(root->release_agent_path, opts->release_agent);
1472 if (opts->name)
1473 strcpy(root->name, opts->name);
Daniel Lezcano97978e62010-10-27 15:33:35 -07001474 if (opts->clone_children)
1475 set_bit(CGRP_CLONE_CHILDREN, &root->top_cgroup.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001476 return root;
1477}
1478
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001479static void cgroup_drop_root(struct cgroupfs_root *root)
1480{
1481 if (!root)
1482 return;
1483
1484 BUG_ON(!root->hierarchy_id);
1485 spin_lock(&hierarchy_id_lock);
1486 ida_remove(&hierarchy_ida, root->hierarchy_id);
1487 spin_unlock(&hierarchy_id_lock);
1488 kfree(root);
1489}
1490
Paul Menageddbcc7e2007-10-18 23:39:30 -07001491static int cgroup_set_super(struct super_block *sb, void *data)
1492{
1493 int ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001494 struct cgroup_sb_opts *opts = data;
1495
1496 /* If we don't have a new root, we can't set up a new sb */
1497 if (!opts->new_root)
1498 return -EINVAL;
1499
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001500 BUG_ON(!opts->subsys_mask && !opts->none);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001501
1502 ret = set_anon_super(sb, NULL);
1503 if (ret)
1504 return ret;
1505
Paul Menagec6d57f32009-09-23 15:56:19 -07001506 sb->s_fs_info = opts->new_root;
1507 opts->new_root->sb = sb;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001508
1509 sb->s_blocksize = PAGE_CACHE_SIZE;
1510 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
1511 sb->s_magic = CGROUP_SUPER_MAGIC;
1512 sb->s_op = &cgroup_ops;
1513
1514 return 0;
1515}
1516
1517static int cgroup_get_rootdir(struct super_block *sb)
1518{
Al Viro0df6a632010-12-21 13:29:29 -05001519 static const struct dentry_operations cgroup_dops = {
1520 .d_iput = cgroup_diput,
Al Viroc72a04e2011-01-14 05:31:45 +00001521 .d_delete = cgroup_delete,
Al Viro0df6a632010-12-21 13:29:29 -05001522 };
1523
Paul Menageddbcc7e2007-10-18 23:39:30 -07001524 struct inode *inode =
1525 cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001526
1527 if (!inode)
1528 return -ENOMEM;
1529
Paul Menageddbcc7e2007-10-18 23:39:30 -07001530 inode->i_fop = &simple_dir_operations;
1531 inode->i_op = &cgroup_dir_inode_operations;
1532 /* directories start off with i_nlink == 2 (for "." entry) */
1533 inc_nlink(inode);
Al Viro48fde702012-01-08 22:15:13 -05001534 sb->s_root = d_make_root(inode);
1535 if (!sb->s_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001536 return -ENOMEM;
Al Viro0df6a632010-12-21 13:29:29 -05001537 /* for everything else we want ->d_op set */
1538 sb->s_d_op = &cgroup_dops;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001539 return 0;
1540}
1541
Al Virof7e83572010-07-26 13:23:11 +04001542static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001543 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001544 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001545{
1546 struct cgroup_sb_opts opts;
Paul Menagec6d57f32009-09-23 15:56:19 -07001547 struct cgroupfs_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001548 int ret = 0;
1549 struct super_block *sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001550 struct cgroupfs_root *new_root;
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001551 struct inode *inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001552
1553 /* First find the desired set of subsystems */
Ben Blumaae8aab2010-03-10 15:22:07 -08001554 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001555 ret = parse_cgroupfs_options(data, &opts);
Ben Blumaae8aab2010-03-10 15:22:07 -08001556 mutex_unlock(&cgroup_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001557 if (ret)
1558 goto out_err;
1559
1560 /*
1561 * Allocate a new cgroup root. We may not need it if we're
1562 * reusing an existing hierarchy.
1563 */
1564 new_root = cgroup_root_from_opts(&opts);
1565 if (IS_ERR(new_root)) {
1566 ret = PTR_ERR(new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001567 goto drop_modules;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001568 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001569 opts.new_root = new_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001570
Paul Menagec6d57f32009-09-23 15:56:19 -07001571 /* Locate an existing or new sb for this hierarchy */
David Howells9249e172012-06-25 12:55:37 +01001572 sb = sget(fs_type, cgroup_test_super, cgroup_set_super, 0, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001573 if (IS_ERR(sb)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001574 ret = PTR_ERR(sb);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001575 cgroup_drop_root(opts.new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001576 goto drop_modules;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001577 }
1578
Paul Menagec6d57f32009-09-23 15:56:19 -07001579 root = sb->s_fs_info;
1580 BUG_ON(!root);
1581 if (root == opts.new_root) {
1582 /* We used the new root structure, so this is a new hierarchy */
1583 struct list_head tmp_cg_links;
Li Zefanc12f65d2009-01-07 18:07:42 -08001584 struct cgroup *root_cgrp = &root->top_cgroup;
Paul Menagec6d57f32009-09-23 15:56:19 -07001585 struct cgroupfs_root *existing_root;
eparis@redhat2ce97382011-06-02 21:20:51 +10001586 const struct cred *cred;
Li Zefan28fd5df2008-04-29 01:00:13 -07001587 int i;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001588
1589 BUG_ON(sb->s_root != NULL);
1590
1591 ret = cgroup_get_rootdir(sb);
1592 if (ret)
1593 goto drop_new_super;
Paul Menage817929e2007-10-18 23:39:36 -07001594 inode = sb->s_root->d_inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001595
Paul Menage817929e2007-10-18 23:39:36 -07001596 mutex_lock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001597 mutex_lock(&cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001598 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001599
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001600 /* Check for name clashes with existing mounts */
1601 ret = -EBUSY;
1602 if (strlen(root->name))
1603 for_each_active_root(existing_root)
1604 if (!strcmp(existing_root->name, root->name))
1605 goto unlock_drop;
Paul Menagec6d57f32009-09-23 15:56:19 -07001606
Paul Menage817929e2007-10-18 23:39:36 -07001607 /*
1608 * We're accessing css_set_count without locking
1609 * css_set_lock here, but that's OK - it can only be
1610 * increased by someone holding cgroup_lock, and
1611 * that's us. The worst that can happen is that we
1612 * have some link structures left over
1613 */
1614 ret = allocate_cg_links(css_set_count, &tmp_cg_links);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001615 if (ret)
1616 goto unlock_drop;
Paul Menage817929e2007-10-18 23:39:36 -07001617
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001618 ret = rebind_subsystems(root, root->subsys_mask);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001619 if (ret == -EBUSY) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001620 free_cg_links(&tmp_cg_links);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001621 goto unlock_drop;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001622 }
Ben Blumcf5d5942010-03-10 15:22:09 -08001623 /*
1624 * There must be no failure case after here, since rebinding
1625 * takes care of subsystems' refcounts, which are explicitly
1626 * dropped in the failure exit path.
1627 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001628
1629 /* EBUSY should be the only error here */
1630 BUG_ON(ret);
1631
1632 list_add(&root->root_list, &roots);
Paul Menage817929e2007-10-18 23:39:36 -07001633 root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001634
Li Zefanc12f65d2009-01-07 18:07:42 -08001635 sb->s_root->d_fsdata = root_cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001636 root->top_cgroup.dentry = sb->s_root;
1637
Paul Menage817929e2007-10-18 23:39:36 -07001638 /* Link the top cgroup in this hierarchy into all
1639 * the css_set objects */
1640 write_lock(&css_set_lock);
Li Zefan28fd5df2008-04-29 01:00:13 -07001641 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
1642 struct hlist_head *hhead = &css_set_table[i];
1643 struct hlist_node *node;
Paul Menage817929e2007-10-18 23:39:36 -07001644 struct css_set *cg;
Li Zefan28fd5df2008-04-29 01:00:13 -07001645
Li Zefanc12f65d2009-01-07 18:07:42 -08001646 hlist_for_each_entry(cg, node, hhead, hlist)
1647 link_css_set(&tmp_cg_links, cg, root_cgrp);
Li Zefan28fd5df2008-04-29 01:00:13 -07001648 }
Paul Menage817929e2007-10-18 23:39:36 -07001649 write_unlock(&css_set_lock);
1650
1651 free_cg_links(&tmp_cg_links);
1652
Li Zefanc12f65d2009-01-07 18:07:42 -08001653 BUG_ON(!list_empty(&root_cgrp->children));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001654 BUG_ON(root->number_of_cgroups != 1);
1655
eparis@redhat2ce97382011-06-02 21:20:51 +10001656 cred = override_creds(&init_cred);
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001657 cgroup_populate_dir(root_cgrp, true, root->subsys_mask);
eparis@redhat2ce97382011-06-02 21:20:51 +10001658 revert_creds(cred);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001659 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001660 mutex_unlock(&cgroup_mutex);
Xiaotian Feng34f77a92009-09-23 15:56:18 -07001661 mutex_unlock(&inode->i_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001662 } else {
1663 /*
1664 * We re-used an existing hierarchy - the new root (if
1665 * any) is not needed
1666 */
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001667 cgroup_drop_root(opts.new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001668 /* no subsys rebinding, so refcounts don't change */
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001669 drop_parsed_module_refcounts(opts.subsys_mask);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001670 }
1671
Paul Menagec6d57f32009-09-23 15:56:19 -07001672 kfree(opts.release_agent);
1673 kfree(opts.name);
Al Virof7e83572010-07-26 13:23:11 +04001674 return dget(sb->s_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001675
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001676 unlock_drop:
1677 mutex_unlock(&cgroup_root_mutex);
1678 mutex_unlock(&cgroup_mutex);
1679 mutex_unlock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001680 drop_new_super:
Al Viro6f5bbff2009-05-06 01:34:22 -04001681 deactivate_locked_super(sb);
Ben Blumcf5d5942010-03-10 15:22:09 -08001682 drop_modules:
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001683 drop_parsed_module_refcounts(opts.subsys_mask);
Paul Menagec6d57f32009-09-23 15:56:19 -07001684 out_err:
1685 kfree(opts.release_agent);
1686 kfree(opts.name);
Al Virof7e83572010-07-26 13:23:11 +04001687 return ERR_PTR(ret);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001688}
1689
1690static void cgroup_kill_sb(struct super_block *sb) {
1691 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001692 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001693 int ret;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001694 struct cg_cgroup_link *link;
1695 struct cg_cgroup_link *saved_link;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001696
1697 BUG_ON(!root);
1698
1699 BUG_ON(root->number_of_cgroups != 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001700 BUG_ON(!list_empty(&cgrp->children));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001701
1702 mutex_lock(&cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001703 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001704
1705 /* Rebind all subsystems back to the default hierarchy */
1706 ret = rebind_subsystems(root, 0);
1707 /* Shouldn't be able to fail ... */
1708 BUG_ON(ret);
1709
Paul Menage817929e2007-10-18 23:39:36 -07001710 /*
1711 * Release all the links from css_sets to this hierarchy's
1712 * root cgroup
1713 */
1714 write_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001715
1716 list_for_each_entry_safe(link, saved_link, &cgrp->css_sets,
1717 cgrp_link_list) {
Paul Menage817929e2007-10-18 23:39:36 -07001718 list_del(&link->cg_link_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07001719 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001720 kfree(link);
1721 }
1722 write_unlock(&css_set_lock);
1723
Paul Menage839ec542009-01-29 14:25:22 -08001724 if (!list_empty(&root->root_list)) {
1725 list_del(&root->root_list);
1726 root_count--;
1727 }
Li Zefane5f6a862009-01-07 18:07:41 -08001728
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001729 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001730 mutex_unlock(&cgroup_mutex);
1731
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001732 simple_xattrs_free(&cgrp->xattrs);
1733
Paul Menageddbcc7e2007-10-18 23:39:30 -07001734 kill_litter_super(sb);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001735 cgroup_drop_root(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001736}
1737
1738static struct file_system_type cgroup_fs_type = {
1739 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001740 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001741 .kill_sb = cgroup_kill_sb,
1742};
1743
Greg KH676db4a2010-08-05 13:53:35 -07001744static struct kobject *cgroup_kobj;
1745
Li Zefana043e3b2008-02-23 15:24:09 -08001746/**
1747 * cgroup_path - generate the path of a cgroup
1748 * @cgrp: the cgroup in question
1749 * @buf: the buffer to write the path into
1750 * @buflen: the length of the buffer
1751 *
Paul Menagea47295e2009-01-07 18:07:44 -08001752 * Called with cgroup_mutex held or else with an RCU-protected cgroup
1753 * reference. Writes path of cgroup into buf. Returns 0 on success,
1754 * -errno on error.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001755 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001756int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001757{
1758 char *start;
Li Zefan9a9686b2010-04-22 17:29:24 +08001759 struct dentry *dentry = rcu_dereference_check(cgrp->dentry,
Li Zefan9a9686b2010-04-22 17:29:24 +08001760 cgroup_lock_is_held());
Paul Menageddbcc7e2007-10-18 23:39:30 -07001761
Paul Menagea47295e2009-01-07 18:07:44 -08001762 if (!dentry || cgrp == dummytop) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001763 /*
1764 * Inactive subsystems have no dentry for their root
1765 * cgroup
1766 */
1767 strcpy(buf, "/");
1768 return 0;
1769 }
1770
Tao Ma316eb662012-11-08 21:36:38 +08001771 start = buf + buflen - 1;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001772
Tao Ma316eb662012-11-08 21:36:38 +08001773 *start = '\0';
Paul Menageddbcc7e2007-10-18 23:39:30 -07001774 for (;;) {
Paul Menagea47295e2009-01-07 18:07:44 -08001775 int len = dentry->d_name.len;
Li Zefan9a9686b2010-04-22 17:29:24 +08001776
Paul Menageddbcc7e2007-10-18 23:39:30 -07001777 if ((start -= len) < buf)
1778 return -ENAMETOOLONG;
Li Zefan9a9686b2010-04-22 17:29:24 +08001779 memcpy(start, dentry->d_name.name, len);
Paul Menagebd89aab2007-10-18 23:40:44 -07001780 cgrp = cgrp->parent;
1781 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001782 break;
Li Zefan9a9686b2010-04-22 17:29:24 +08001783
1784 dentry = rcu_dereference_check(cgrp->dentry,
Li Zefan9a9686b2010-04-22 17:29:24 +08001785 cgroup_lock_is_held());
Paul Menagebd89aab2007-10-18 23:40:44 -07001786 if (!cgrp->parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001787 continue;
1788 if (--start < buf)
1789 return -ENAMETOOLONG;
1790 *start = '/';
1791 }
1792 memmove(buf, start, buf + buflen - start);
1793 return 0;
1794}
Ben Blum67523c42010-03-10 15:22:11 -08001795EXPORT_SYMBOL_GPL(cgroup_path);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001796
Ben Blum74a11662011-05-26 16:25:20 -07001797/*
Tejun Heo2f7ee562011-12-12 18:12:21 -08001798 * Control Group taskset
1799 */
Tejun Heo134d3372011-12-12 18:12:21 -08001800struct task_and_cgroup {
1801 struct task_struct *task;
1802 struct cgroup *cgrp;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001803 struct css_set *cg;
Tejun Heo134d3372011-12-12 18:12:21 -08001804};
1805
Tejun Heo2f7ee562011-12-12 18:12:21 -08001806struct cgroup_taskset {
1807 struct task_and_cgroup single;
1808 struct flex_array *tc_array;
1809 int tc_array_len;
1810 int idx;
1811 struct cgroup *cur_cgrp;
1812};
1813
1814/**
1815 * cgroup_taskset_first - reset taskset and return the first task
1816 * @tset: taskset of interest
1817 *
1818 * @tset iteration is initialized and the first task is returned.
1819 */
1820struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
1821{
1822 if (tset->tc_array) {
1823 tset->idx = 0;
1824 return cgroup_taskset_next(tset);
1825 } else {
1826 tset->cur_cgrp = tset->single.cgrp;
1827 return tset->single.task;
1828 }
1829}
1830EXPORT_SYMBOL_GPL(cgroup_taskset_first);
1831
1832/**
1833 * cgroup_taskset_next - iterate to the next task in taskset
1834 * @tset: taskset of interest
1835 *
1836 * Return the next task in @tset. Iteration must have been initialized
1837 * with cgroup_taskset_first().
1838 */
1839struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
1840{
1841 struct task_and_cgroup *tc;
1842
1843 if (!tset->tc_array || tset->idx >= tset->tc_array_len)
1844 return NULL;
1845
1846 tc = flex_array_get(tset->tc_array, tset->idx++);
1847 tset->cur_cgrp = tc->cgrp;
1848 return tc->task;
1849}
1850EXPORT_SYMBOL_GPL(cgroup_taskset_next);
1851
1852/**
1853 * cgroup_taskset_cur_cgroup - return the matching cgroup for the current task
1854 * @tset: taskset of interest
1855 *
1856 * Return the cgroup for the current (last returned) task of @tset. This
1857 * function must be preceded by either cgroup_taskset_first() or
1858 * cgroup_taskset_next().
1859 */
1860struct cgroup *cgroup_taskset_cur_cgroup(struct cgroup_taskset *tset)
1861{
1862 return tset->cur_cgrp;
1863}
1864EXPORT_SYMBOL_GPL(cgroup_taskset_cur_cgroup);
1865
1866/**
1867 * cgroup_taskset_size - return the number of tasks in taskset
1868 * @tset: taskset of interest
1869 */
1870int cgroup_taskset_size(struct cgroup_taskset *tset)
1871{
1872 return tset->tc_array ? tset->tc_array_len : 1;
1873}
1874EXPORT_SYMBOL_GPL(cgroup_taskset_size);
1875
1876
Ben Blum74a11662011-05-26 16:25:20 -07001877/*
1878 * cgroup_task_migrate - move a task from one cgroup to another.
1879 *
1880 * 'guarantee' is set if the caller promises that a new css_set for the task
1881 * will already exist. If not set, this function might sleep, and can fail with
Tejun Heocd3d0952011-12-12 18:12:21 -08001882 * -ENOMEM. Must be called with cgroup_mutex and threadgroup locked.
Ben Blum74a11662011-05-26 16:25:20 -07001883 */
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001884static void cgroup_task_migrate(struct cgroup *cgrp, struct cgroup *oldcgrp,
1885 struct task_struct *tsk, struct css_set *newcg)
Ben Blum74a11662011-05-26 16:25:20 -07001886{
1887 struct css_set *oldcg;
Ben Blum74a11662011-05-26 16:25:20 -07001888
1889 /*
Mandeep Singh Baines026085e2011-12-21 20:18:35 -08001890 * We are synchronized through threadgroup_lock() against PF_EXITING
1891 * setting such that we can't race against cgroup_exit() changing the
1892 * css_set to init_css_set and dropping the old one.
Ben Blum74a11662011-05-26 16:25:20 -07001893 */
Frederic Weisbeckerc84cdf72011-12-21 20:03:18 +01001894 WARN_ON_ONCE(tsk->flags & PF_EXITING);
Ben Blum74a11662011-05-26 16:25:20 -07001895 oldcg = tsk->cgroups;
Ben Blum74a11662011-05-26 16:25:20 -07001896
Ben Blum74a11662011-05-26 16:25:20 -07001897 task_lock(tsk);
Ben Blum74a11662011-05-26 16:25:20 -07001898 rcu_assign_pointer(tsk->cgroups, newcg);
1899 task_unlock(tsk);
1900
1901 /* Update the css_set linked lists if we're using them */
1902 write_lock(&css_set_lock);
1903 if (!list_empty(&tsk->cg_list))
1904 list_move(&tsk->cg_list, &newcg->tasks);
1905 write_unlock(&css_set_lock);
1906
1907 /*
1908 * We just gained a reference on oldcg by taking it from the task. As
1909 * trading it for newcg is protected by cgroup_mutex, we're safe to drop
1910 * it here; it will be freed under RCU.
1911 */
Ben Blum74a11662011-05-26 16:25:20 -07001912 set_bit(CGRP_RELEASABLE, &oldcgrp->flags);
Daisuke Nishimura1f5320d2012-10-04 16:37:16 +09001913 put_css_set(oldcg);
Ben Blum74a11662011-05-26 16:25:20 -07001914}
1915
Li Zefana043e3b2008-02-23 15:24:09 -08001916/**
1917 * cgroup_attach_task - attach task 'tsk' to cgroup 'cgrp'
1918 * @cgrp: the cgroup the task is attaching to
1919 * @tsk: the task to be attached
Paul Menagebbcb81d2007-10-18 23:39:32 -07001920 *
Tejun Heocd3d0952011-12-12 18:12:21 -08001921 * Call with cgroup_mutex and threadgroup locked. May take task_lock of
1922 * @tsk during call.
Paul Menagebbcb81d2007-10-18 23:39:32 -07001923 */
Cliff Wickman956db3c2008-02-07 00:14:43 -08001924int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001925{
Tejun Heo8f121912012-03-29 22:03:33 -07001926 int retval = 0;
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001927 struct cgroup_subsys *ss, *failed_ss = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07001928 struct cgroup *oldcgrp;
Paul Menagebd89aab2007-10-18 23:40:44 -07001929 struct cgroupfs_root *root = cgrp->root;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001930 struct cgroup_taskset tset = { };
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001931 struct css_set *newcg;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001932
Tejun Heocd3d0952011-12-12 18:12:21 -08001933 /* @tsk either already exited or can't exit until the end */
1934 if (tsk->flags & PF_EXITING)
1935 return -ESRCH;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001936
1937 /* Nothing to do if the task is already in that cgroup */
Paul Menage7717f7b2009-09-23 15:56:22 -07001938 oldcgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07001939 if (cgrp == oldcgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001940 return 0;
1941
Tejun Heo2f7ee562011-12-12 18:12:21 -08001942 tset.single.task = tsk;
1943 tset.single.cgrp = oldcgrp;
1944
Paul Menagebbcb81d2007-10-18 23:39:32 -07001945 for_each_subsys(root, ss) {
1946 if (ss->can_attach) {
Li Zefan761b3ef2012-01-31 13:47:36 +08001947 retval = ss->can_attach(cgrp, &tset);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001948 if (retval) {
1949 /*
1950 * Remember on which subsystem the can_attach()
1951 * failed, so that we only call cancel_attach()
1952 * against the subsystems whose can_attach()
1953 * succeeded. (See below)
1954 */
1955 failed_ss = ss;
1956 goto out;
1957 }
Paul Menagebbcb81d2007-10-18 23:39:32 -07001958 }
1959 }
1960
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001961 newcg = find_css_set(tsk->cgroups, cgrp);
1962 if (!newcg) {
1963 retval = -ENOMEM;
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001964 goto out;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001965 }
1966
1967 cgroup_task_migrate(cgrp, oldcgrp, tsk, newcg);
Paul Menage817929e2007-10-18 23:39:36 -07001968
Paul Menagebbcb81d2007-10-18 23:39:32 -07001969 for_each_subsys(root, ss) {
Paul Jacksone18f6312008-02-07 00:13:44 -08001970 if (ss->attach)
Li Zefan761b3ef2012-01-31 13:47:36 +08001971 ss->attach(cgrp, &tset);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001972 }
Ben Blum74a11662011-05-26 16:25:20 -07001973
Paul Menagebbcb81d2007-10-18 23:39:32 -07001974 synchronize_rcu();
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001975out:
1976 if (retval) {
1977 for_each_subsys(root, ss) {
1978 if (ss == failed_ss)
1979 /*
1980 * This subsystem was the one that failed the
1981 * can_attach() check earlier, so we don't need
1982 * to call cancel_attach() against it or any
1983 * remaining subsystems.
1984 */
1985 break;
1986 if (ss->cancel_attach)
Li Zefan761b3ef2012-01-31 13:47:36 +08001987 ss->cancel_attach(cgrp, &tset);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001988 }
1989 }
1990 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001991}
1992
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001993/**
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001994 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
1995 * @from: attach to all cgroups of a given task
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001996 * @tsk: the task to be attached
1997 */
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001998int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001999{
2000 struct cgroupfs_root *root;
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02002001 int retval = 0;
2002
2003 cgroup_lock();
2004 for_each_active_root(root) {
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07002005 struct cgroup *from_cg = task_cgroup_from_root(from, root);
2006
2007 retval = cgroup_attach_task(from_cg, tsk);
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02002008 if (retval)
2009 break;
2010 }
2011 cgroup_unlock();
2012
2013 return retval;
2014}
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07002015EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02002016
Ben Blum74a11662011-05-26 16:25:20 -07002017/**
2018 * cgroup_attach_proc - attach all threads in a threadgroup to a cgroup
2019 * @cgrp: the cgroup to attach to
2020 * @leader: the threadgroup leader task_struct of the group to be attached
2021 *
Tejun Heo257058a2011-12-12 18:12:21 -08002022 * Call holding cgroup_mutex and the group_rwsem of the leader. Will take
2023 * task_lock of each thread in leader's threadgroup individually in turn.
Ben Blum74a11662011-05-26 16:25:20 -07002024 */
Kirill A. Shutemov1c6c3fa2011-12-27 07:46:25 +02002025static int cgroup_attach_proc(struct cgroup *cgrp, struct task_struct *leader)
Ben Blum74a11662011-05-26 16:25:20 -07002026{
2027 int retval, i, group_size;
2028 struct cgroup_subsys *ss, *failed_ss = NULL;
Ben Blum74a11662011-05-26 16:25:20 -07002029 /* guaranteed to be initialized later, but the compiler needs this */
Ben Blum74a11662011-05-26 16:25:20 -07002030 struct cgroupfs_root *root = cgrp->root;
2031 /* threadgroup list cursor and array */
2032 struct task_struct *tsk;
Tejun Heo134d3372011-12-12 18:12:21 -08002033 struct task_and_cgroup *tc;
Ben Blumd8466872011-05-26 16:25:21 -07002034 struct flex_array *group;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002035 struct cgroup_taskset tset = { };
Ben Blum74a11662011-05-26 16:25:20 -07002036
2037 /*
2038 * step 0: in order to do expensive, possibly blocking operations for
2039 * every thread, we cannot iterate the thread group list, since it needs
2040 * rcu or tasklist locked. instead, build an array of all threads in the
Tejun Heo257058a2011-12-12 18:12:21 -08002041 * group - group_rwsem prevents new threads from appearing, and if
2042 * threads exit, this will just be an over-estimate.
Ben Blum74a11662011-05-26 16:25:20 -07002043 */
2044 group_size = get_nr_threads(leader);
Ben Blumd8466872011-05-26 16:25:21 -07002045 /* flex_array supports very large thread-groups better than kmalloc. */
Tejun Heo134d3372011-12-12 18:12:21 -08002046 group = flex_array_alloc(sizeof(*tc), group_size, GFP_KERNEL);
Ben Blum74a11662011-05-26 16:25:20 -07002047 if (!group)
2048 return -ENOMEM;
Ben Blumd8466872011-05-26 16:25:21 -07002049 /* pre-allocate to guarantee space while iterating in rcu read-side. */
2050 retval = flex_array_prealloc(group, 0, group_size - 1, GFP_KERNEL);
2051 if (retval)
2052 goto out_free_group_list;
Ben Blum74a11662011-05-26 16:25:20 -07002053
Ben Blum74a11662011-05-26 16:25:20 -07002054 tsk = leader;
2055 i = 0;
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002056 /*
2057 * Prevent freeing of tasks while we take a snapshot. Tasks that are
2058 * already PF_EXITING could be freed from underneath us unless we
2059 * take an rcu_read_lock.
2060 */
2061 rcu_read_lock();
Ben Blum74a11662011-05-26 16:25:20 -07002062 do {
Tejun Heo134d3372011-12-12 18:12:21 -08002063 struct task_and_cgroup ent;
2064
Tejun Heocd3d0952011-12-12 18:12:21 -08002065 /* @tsk either already exited or can't exit until the end */
2066 if (tsk->flags & PF_EXITING)
2067 continue;
2068
Ben Blum74a11662011-05-26 16:25:20 -07002069 /* as per above, nr_threads may decrease, but not increase. */
2070 BUG_ON(i >= group_size);
Tejun Heo134d3372011-12-12 18:12:21 -08002071 ent.task = tsk;
2072 ent.cgrp = task_cgroup_from_root(tsk, root);
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08002073 /* nothing to do if this task is already in the cgroup */
2074 if (ent.cgrp == cgrp)
2075 continue;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002076 /*
2077 * saying GFP_ATOMIC has no effect here because we did prealloc
2078 * earlier, but it's good form to communicate our expectations.
2079 */
Tejun Heo134d3372011-12-12 18:12:21 -08002080 retval = flex_array_put(group, i, &ent, GFP_ATOMIC);
Ben Blumd8466872011-05-26 16:25:21 -07002081 BUG_ON(retval != 0);
Ben Blum74a11662011-05-26 16:25:20 -07002082 i++;
2083 } while_each_thread(leader, tsk);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002084 rcu_read_unlock();
Ben Blum74a11662011-05-26 16:25:20 -07002085 /* remember the number of threads in the array for later. */
2086 group_size = i;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002087 tset.tc_array = group;
2088 tset.tc_array_len = group_size;
Ben Blum74a11662011-05-26 16:25:20 -07002089
Tejun Heo134d3372011-12-12 18:12:21 -08002090 /* methods shouldn't be called if no task is actually migrating */
2091 retval = 0;
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08002092 if (!group_size)
Mandeep Singh Bainesb07ef772011-12-21 20:18:36 -08002093 goto out_free_group_list;
Tejun Heo134d3372011-12-12 18:12:21 -08002094
Ben Blum74a11662011-05-26 16:25:20 -07002095 /*
2096 * step 1: check that we can legitimately attach to the cgroup.
2097 */
2098 for_each_subsys(root, ss) {
2099 if (ss->can_attach) {
Li Zefan761b3ef2012-01-31 13:47:36 +08002100 retval = ss->can_attach(cgrp, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002101 if (retval) {
2102 failed_ss = ss;
2103 goto out_cancel_attach;
2104 }
2105 }
Ben Blum74a11662011-05-26 16:25:20 -07002106 }
2107
2108 /*
2109 * step 2: make sure css_sets exist for all threads to be migrated.
2110 * we use find_css_set, which allocates a new one if necessary.
2111 */
Ben Blum74a11662011-05-26 16:25:20 -07002112 for (i = 0; i < group_size; i++) {
Tejun Heo134d3372011-12-12 18:12:21 -08002113 tc = flex_array_get(group, i);
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002114 tc->cg = find_css_set(tc->task->cgroups, cgrp);
2115 if (!tc->cg) {
2116 retval = -ENOMEM;
2117 goto out_put_css_set_refs;
Ben Blum74a11662011-05-26 16:25:20 -07002118 }
2119 }
2120
2121 /*
Tejun Heo494c1672011-12-12 18:12:22 -08002122 * step 3: now that we're guaranteed success wrt the css_sets,
2123 * proceed to move all tasks to the new cgroup. There are no
2124 * failure cases after here, so this is the commit point.
Ben Blum74a11662011-05-26 16:25:20 -07002125 */
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 cgroup_task_migrate(cgrp, tc->cgrp, tc->task, tc->cg);
Ben Blum74a11662011-05-26 16:25:20 -07002129 }
2130 /* nothing is sensitive to fork() after this point. */
2131
2132 /*
Tejun Heo494c1672011-12-12 18:12:22 -08002133 * step 4: do subsystem attach callbacks.
Ben Blum74a11662011-05-26 16:25:20 -07002134 */
2135 for_each_subsys(root, ss) {
2136 if (ss->attach)
Li Zefan761b3ef2012-01-31 13:47:36 +08002137 ss->attach(cgrp, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002138 }
2139
2140 /*
2141 * step 5: success! and cleanup
2142 */
2143 synchronize_rcu();
Ben Blum74a11662011-05-26 16:25:20 -07002144 retval = 0;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002145out_put_css_set_refs:
2146 if (retval) {
2147 for (i = 0; i < group_size; i++) {
2148 tc = flex_array_get(group, i);
2149 if (!tc->cg)
2150 break;
2151 put_css_set(tc->cg);
2152 }
Ben Blum74a11662011-05-26 16:25:20 -07002153 }
2154out_cancel_attach:
Ben Blum74a11662011-05-26 16:25:20 -07002155 if (retval) {
2156 for_each_subsys(root, ss) {
Tejun Heo494c1672011-12-12 18:12:22 -08002157 if (ss == failed_ss)
Ben Blum74a11662011-05-26 16:25:20 -07002158 break;
Ben Blum74a11662011-05-26 16:25:20 -07002159 if (ss->cancel_attach)
Li Zefan761b3ef2012-01-31 13:47:36 +08002160 ss->cancel_attach(cgrp, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002161 }
2162 }
Ben Blum74a11662011-05-26 16:25:20 -07002163out_free_group_list:
Ben Blumd8466872011-05-26 16:25:21 -07002164 flex_array_free(group);
Ben Blum74a11662011-05-26 16:25:20 -07002165 return retval;
2166}
2167
2168/*
2169 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08002170 * function to attach either it or all tasks in its threadgroup. Will lock
2171 * cgroup_mutex and threadgroup; may take task_lock of task.
Ben Blum74a11662011-05-26 16:25:20 -07002172 */
2173static int attach_task_by_pid(struct cgroup *cgrp, u64 pid, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002174{
Paul Menagebbcb81d2007-10-18 23:39:32 -07002175 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11002176 const struct cred *cred = current_cred(), *tcred;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002177 int ret;
2178
Ben Blum74a11662011-05-26 16:25:20 -07002179 if (!cgroup_lock_live_group(cgrp))
2180 return -ENODEV;
2181
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002182retry_find_task:
2183 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002184 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002185 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07002186 if (!tsk) {
Paul Menagebbcb81d2007-10-18 23:39:32 -07002187 rcu_read_unlock();
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002188 ret= -ESRCH;
2189 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002190 }
Ben Blum74a11662011-05-26 16:25:20 -07002191 /*
2192 * even if we're attaching all tasks in the thread group, we
2193 * only need to check permissions on one of them.
2194 */
David Howellsc69e8d92008-11-14 10:39:19 +11002195 tcred = __task_cred(tsk);
Eric W. Biederman14a590c2012-03-12 15:44:39 -07002196 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
2197 !uid_eq(cred->euid, tcred->uid) &&
2198 !uid_eq(cred->euid, tcred->suid)) {
David Howellsc69e8d92008-11-14 10:39:19 +11002199 rcu_read_unlock();
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002200 ret = -EACCES;
2201 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002202 }
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002203 } else
2204 tsk = current;
Tejun Heocd3d0952011-12-12 18:12:21 -08002205
2206 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002207 tsk = tsk->group_leader;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002208
2209 /*
2210 * Workqueue threads may acquire PF_THREAD_BOUND and become
2211 * trapped in a cpuset, or RT worker may be born in a cgroup
2212 * with no rt_runtime allocated. Just say no.
2213 */
2214 if (tsk == kthreadd_task || (tsk->flags & PF_THREAD_BOUND)) {
2215 ret = -EINVAL;
2216 rcu_read_unlock();
2217 goto out_unlock_cgroup;
2218 }
2219
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002220 get_task_struct(tsk);
2221 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08002222
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002223 threadgroup_lock(tsk);
2224 if (threadgroup) {
2225 if (!thread_group_leader(tsk)) {
2226 /*
2227 * a race with de_thread from another thread's exec()
2228 * may strip us of our leadership, if this happens,
2229 * there is no choice but to throw this task away and
2230 * try again; this is
2231 * "double-double-toil-and-trouble-check locking".
2232 */
2233 threadgroup_unlock(tsk);
2234 put_task_struct(tsk);
2235 goto retry_find_task;
2236 }
2237 ret = cgroup_attach_proc(cgrp, tsk);
2238 } else
2239 ret = cgroup_attach_task(cgrp, tsk);
Tejun Heocd3d0952011-12-12 18:12:21 -08002240 threadgroup_unlock(tsk);
2241
Paul Menagebbcb81d2007-10-18 23:39:32 -07002242 put_task_struct(tsk);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002243out_unlock_cgroup:
Ben Blum74a11662011-05-26 16:25:20 -07002244 cgroup_unlock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002245 return ret;
2246}
2247
Paul Menageaf351022008-07-25 01:47:01 -07002248static int cgroup_tasks_write(struct cgroup *cgrp, struct cftype *cft, u64 pid)
2249{
Ben Blum74a11662011-05-26 16:25:20 -07002250 return attach_task_by_pid(cgrp, pid, false);
2251}
2252
2253static int cgroup_procs_write(struct cgroup *cgrp, struct cftype *cft, u64 tgid)
2254{
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002255 return attach_task_by_pid(cgrp, tgid, true);
Paul Menageaf351022008-07-25 01:47:01 -07002256}
2257
Paul Menagee788e062008-07-25 01:46:59 -07002258/**
2259 * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive.
2260 * @cgrp: the cgroup to be checked for liveness
2261 *
Paul Menage84eea842008-07-25 01:47:00 -07002262 * On success, returns true; the lock should be later released with
2263 * cgroup_unlock(). On failure returns false with no lock held.
Paul Menagee788e062008-07-25 01:46:59 -07002264 */
Paul Menage84eea842008-07-25 01:47:00 -07002265bool cgroup_lock_live_group(struct cgroup *cgrp)
Paul Menagee788e062008-07-25 01:46:59 -07002266{
2267 mutex_lock(&cgroup_mutex);
2268 if (cgroup_is_removed(cgrp)) {
2269 mutex_unlock(&cgroup_mutex);
2270 return false;
2271 }
2272 return true;
2273}
Ben Blum67523c42010-03-10 15:22:11 -08002274EXPORT_SYMBOL_GPL(cgroup_lock_live_group);
Paul Menagee788e062008-07-25 01:46:59 -07002275
2276static int cgroup_release_agent_write(struct cgroup *cgrp, struct cftype *cft,
2277 const char *buffer)
2278{
2279 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
Evgeny Kuznetsovf4a25892010-10-27 15:33:37 -07002280 if (strlen(buffer) >= PATH_MAX)
2281 return -EINVAL;
Paul Menagee788e062008-07-25 01:46:59 -07002282 if (!cgroup_lock_live_group(cgrp))
2283 return -ENODEV;
Tejun Heoe25e2cb2011-12-12 18:12:21 -08002284 mutex_lock(&cgroup_root_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07002285 strcpy(cgrp->root->release_agent_path, buffer);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08002286 mutex_unlock(&cgroup_root_mutex);
Paul Menage84eea842008-07-25 01:47:00 -07002287 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07002288 return 0;
2289}
2290
2291static int cgroup_release_agent_show(struct cgroup *cgrp, struct cftype *cft,
2292 struct seq_file *seq)
2293{
2294 if (!cgroup_lock_live_group(cgrp))
2295 return -ENODEV;
2296 seq_puts(seq, cgrp->root->release_agent_path);
2297 seq_putc(seq, '\n');
Paul Menage84eea842008-07-25 01:47:00 -07002298 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07002299 return 0;
2300}
2301
Paul Menage84eea842008-07-25 01:47:00 -07002302/* A buffer size big enough for numbers or short strings */
2303#define CGROUP_LOCAL_BUFFER_SIZE 64
2304
Paul Menagee73d2c62008-04-29 01:00:06 -07002305static ssize_t cgroup_write_X64(struct cgroup *cgrp, struct cftype *cft,
Paul Menagef4c753b2008-04-29 00:59:56 -07002306 struct file *file,
2307 const char __user *userbuf,
2308 size_t nbytes, loff_t *unused_ppos)
Paul Menage355e0c42007-10-18 23:39:33 -07002309{
Paul Menage84eea842008-07-25 01:47:00 -07002310 char buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menage355e0c42007-10-18 23:39:33 -07002311 int retval = 0;
Paul Menage355e0c42007-10-18 23:39:33 -07002312 char *end;
2313
2314 if (!nbytes)
2315 return -EINVAL;
2316 if (nbytes >= sizeof(buffer))
2317 return -E2BIG;
2318 if (copy_from_user(buffer, userbuf, nbytes))
2319 return -EFAULT;
2320
2321 buffer[nbytes] = 0; /* nul-terminate */
Paul Menagee73d2c62008-04-29 01:00:06 -07002322 if (cft->write_u64) {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002323 u64 val = simple_strtoull(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07002324 if (*end)
2325 return -EINVAL;
2326 retval = cft->write_u64(cgrp, cft, val);
2327 } else {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002328 s64 val = simple_strtoll(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07002329 if (*end)
2330 return -EINVAL;
2331 retval = cft->write_s64(cgrp, cft, val);
2332 }
Paul Menage355e0c42007-10-18 23:39:33 -07002333 if (!retval)
2334 retval = nbytes;
2335 return retval;
2336}
2337
Paul Menagedb3b1492008-07-25 01:46:58 -07002338static ssize_t cgroup_write_string(struct cgroup *cgrp, struct cftype *cft,
2339 struct file *file,
2340 const char __user *userbuf,
2341 size_t nbytes, loff_t *unused_ppos)
2342{
Paul Menage84eea842008-07-25 01:47:00 -07002343 char local_buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagedb3b1492008-07-25 01:46:58 -07002344 int retval = 0;
2345 size_t max_bytes = cft->max_write_len;
2346 char *buffer = local_buffer;
2347
2348 if (!max_bytes)
2349 max_bytes = sizeof(local_buffer) - 1;
2350 if (nbytes >= max_bytes)
2351 return -E2BIG;
2352 /* Allocate a dynamic buffer if we need one */
2353 if (nbytes >= sizeof(local_buffer)) {
2354 buffer = kmalloc(nbytes + 1, GFP_KERNEL);
2355 if (buffer == NULL)
2356 return -ENOMEM;
2357 }
Li Zefan5a3eb9f2008-07-29 22:33:18 -07002358 if (nbytes && copy_from_user(buffer, userbuf, nbytes)) {
2359 retval = -EFAULT;
2360 goto out;
2361 }
Paul Menagedb3b1492008-07-25 01:46:58 -07002362
2363 buffer[nbytes] = 0; /* nul-terminate */
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002364 retval = cft->write_string(cgrp, cft, strstrip(buffer));
Paul Menagedb3b1492008-07-25 01:46:58 -07002365 if (!retval)
2366 retval = nbytes;
Li Zefan5a3eb9f2008-07-29 22:33:18 -07002367out:
Paul Menagedb3b1492008-07-25 01:46:58 -07002368 if (buffer != local_buffer)
2369 kfree(buffer);
2370 return retval;
2371}
2372
Paul Menageddbcc7e2007-10-18 23:39:30 -07002373static ssize_t cgroup_file_write(struct file *file, const char __user *buf,
2374 size_t nbytes, loff_t *ppos)
2375{
2376 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07002377 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002378
Li Zefan75139b82009-01-07 18:07:33 -08002379 if (cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07002380 return -ENODEV;
Paul Menage355e0c42007-10-18 23:39:33 -07002381 if (cft->write)
Paul Menagebd89aab2007-10-18 23:40:44 -07002382 return cft->write(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002383 if (cft->write_u64 || cft->write_s64)
2384 return cgroup_write_X64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagedb3b1492008-07-25 01:46:58 -07002385 if (cft->write_string)
2386 return cgroup_write_string(cgrp, cft, file, buf, nbytes, ppos);
Pavel Emelyanovd447ea22008-04-29 01:00:08 -07002387 if (cft->trigger) {
2388 int ret = cft->trigger(cgrp, (unsigned int)cft->private);
2389 return ret ? ret : nbytes;
2390 }
Paul Menage355e0c42007-10-18 23:39:33 -07002391 return -EINVAL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002392}
2393
Paul Menagef4c753b2008-04-29 00:59:56 -07002394static ssize_t cgroup_read_u64(struct cgroup *cgrp, struct cftype *cft,
2395 struct file *file,
2396 char __user *buf, size_t nbytes,
2397 loff_t *ppos)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002398{
Paul Menage84eea842008-07-25 01:47:00 -07002399 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagef4c753b2008-04-29 00:59:56 -07002400 u64 val = cft->read_u64(cgrp, cft);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002401 int len = sprintf(tmp, "%llu\n", (unsigned long long) val);
2402
2403 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2404}
2405
Paul Menagee73d2c62008-04-29 01:00:06 -07002406static ssize_t cgroup_read_s64(struct cgroup *cgrp, struct cftype *cft,
2407 struct file *file,
2408 char __user *buf, size_t nbytes,
2409 loff_t *ppos)
2410{
Paul Menage84eea842008-07-25 01:47:00 -07002411 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagee73d2c62008-04-29 01:00:06 -07002412 s64 val = cft->read_s64(cgrp, cft);
2413 int len = sprintf(tmp, "%lld\n", (long long) val);
2414
2415 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2416}
2417
Paul Menageddbcc7e2007-10-18 23:39:30 -07002418static ssize_t cgroup_file_read(struct file *file, char __user *buf,
2419 size_t nbytes, loff_t *ppos)
2420{
2421 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07002422 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002423
Li Zefan75139b82009-01-07 18:07:33 -08002424 if (cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07002425 return -ENODEV;
2426
2427 if (cft->read)
Paul Menagebd89aab2007-10-18 23:40:44 -07002428 return cft->read(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagef4c753b2008-04-29 00:59:56 -07002429 if (cft->read_u64)
2430 return cgroup_read_u64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002431 if (cft->read_s64)
2432 return cgroup_read_s64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002433 return -EINVAL;
2434}
2435
Paul Menage91796562008-04-29 01:00:01 -07002436/*
2437 * seqfile ops/methods for returning structured data. Currently just
2438 * supports string->u64 maps, but can be extended in future.
2439 */
2440
2441struct cgroup_seqfile_state {
2442 struct cftype *cft;
2443 struct cgroup *cgroup;
2444};
2445
2446static int cgroup_map_add(struct cgroup_map_cb *cb, const char *key, u64 value)
2447{
2448 struct seq_file *sf = cb->state;
2449 return seq_printf(sf, "%s %llu\n", key, (unsigned long long)value);
2450}
2451
2452static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2453{
2454 struct cgroup_seqfile_state *state = m->private;
2455 struct cftype *cft = state->cft;
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002456 if (cft->read_map) {
2457 struct cgroup_map_cb cb = {
2458 .fill = cgroup_map_add,
2459 .state = m,
2460 };
2461 return cft->read_map(state->cgroup, cft, &cb);
2462 }
2463 return cft->read_seq_string(state->cgroup, cft, m);
Paul Menage91796562008-04-29 01:00:01 -07002464}
2465
Adrian Bunk96930a62008-07-25 19:46:21 -07002466static int cgroup_seqfile_release(struct inode *inode, struct file *file)
Paul Menage91796562008-04-29 01:00:01 -07002467{
2468 struct seq_file *seq = file->private_data;
2469 kfree(seq->private);
2470 return single_release(inode, file);
2471}
2472
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002473static const struct file_operations cgroup_seqfile_operations = {
Paul Menage91796562008-04-29 01:00:01 -07002474 .read = seq_read,
Paul Menagee788e062008-07-25 01:46:59 -07002475 .write = cgroup_file_write,
Paul Menage91796562008-04-29 01:00:01 -07002476 .llseek = seq_lseek,
2477 .release = cgroup_seqfile_release,
2478};
2479
Paul Menageddbcc7e2007-10-18 23:39:30 -07002480static int cgroup_file_open(struct inode *inode, struct file *file)
2481{
2482 int err;
2483 struct cftype *cft;
2484
2485 err = generic_file_open(inode, file);
2486 if (err)
2487 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002488 cft = __d_cft(file->f_dentry);
Li Zefan75139b82009-01-07 18:07:33 -08002489
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002490 if (cft->read_map || cft->read_seq_string) {
Paul Menage91796562008-04-29 01:00:01 -07002491 struct cgroup_seqfile_state *state =
2492 kzalloc(sizeof(*state), GFP_USER);
2493 if (!state)
2494 return -ENOMEM;
2495 state->cft = cft;
2496 state->cgroup = __d_cgrp(file->f_dentry->d_parent);
2497 file->f_op = &cgroup_seqfile_operations;
2498 err = single_open(file, cgroup_seqfile_show, state);
2499 if (err < 0)
2500 kfree(state);
2501 } else if (cft->open)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002502 err = cft->open(inode, file);
2503 else
2504 err = 0;
2505
2506 return err;
2507}
2508
2509static int cgroup_file_release(struct inode *inode, struct file *file)
2510{
2511 struct cftype *cft = __d_cft(file->f_dentry);
2512 if (cft->release)
2513 return cft->release(inode, file);
2514 return 0;
2515}
2516
2517/*
2518 * cgroup_rename - Only allow simple rename of directories in place.
2519 */
2520static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry,
2521 struct inode *new_dir, struct dentry *new_dentry)
2522{
2523 if (!S_ISDIR(old_dentry->d_inode->i_mode))
2524 return -ENOTDIR;
2525 if (new_dentry->d_inode)
2526 return -EEXIST;
2527 if (old_dir != new_dir)
2528 return -EIO;
2529 return simple_rename(old_dir, old_dentry, new_dir, new_dentry);
2530}
2531
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002532static struct simple_xattrs *__d_xattrs(struct dentry *dentry)
2533{
2534 if (S_ISDIR(dentry->d_inode->i_mode))
2535 return &__d_cgrp(dentry)->xattrs;
2536 else
2537 return &__d_cft(dentry)->xattrs;
2538}
2539
2540static inline int xattr_enabled(struct dentry *dentry)
2541{
2542 struct cgroupfs_root *root = dentry->d_sb->s_fs_info;
2543 return test_bit(ROOT_XATTR, &root->flags);
2544}
2545
2546static bool is_valid_xattr(const char *name)
2547{
2548 if (!strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN) ||
2549 !strncmp(name, XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN))
2550 return true;
2551 return false;
2552}
2553
2554static int cgroup_setxattr(struct dentry *dentry, const char *name,
2555 const void *val, size_t size, int flags)
2556{
2557 if (!xattr_enabled(dentry))
2558 return -EOPNOTSUPP;
2559 if (!is_valid_xattr(name))
2560 return -EINVAL;
2561 return simple_xattr_set(__d_xattrs(dentry), name, val, size, flags);
2562}
2563
2564static int cgroup_removexattr(struct dentry *dentry, const char *name)
2565{
2566 if (!xattr_enabled(dentry))
2567 return -EOPNOTSUPP;
2568 if (!is_valid_xattr(name))
2569 return -EINVAL;
2570 return simple_xattr_remove(__d_xattrs(dentry), name);
2571}
2572
2573static ssize_t cgroup_getxattr(struct dentry *dentry, const char *name,
2574 void *buf, size_t size)
2575{
2576 if (!xattr_enabled(dentry))
2577 return -EOPNOTSUPP;
2578 if (!is_valid_xattr(name))
2579 return -EINVAL;
2580 return simple_xattr_get(__d_xattrs(dentry), name, buf, size);
2581}
2582
2583static ssize_t cgroup_listxattr(struct dentry *dentry, char *buf, size_t size)
2584{
2585 if (!xattr_enabled(dentry))
2586 return -EOPNOTSUPP;
2587 return simple_xattr_list(__d_xattrs(dentry), buf, size);
2588}
2589
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002590static const struct file_operations cgroup_file_operations = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002591 .read = cgroup_file_read,
2592 .write = cgroup_file_write,
2593 .llseek = generic_file_llseek,
2594 .open = cgroup_file_open,
2595 .release = cgroup_file_release,
2596};
2597
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002598static const struct inode_operations cgroup_file_inode_operations = {
2599 .setxattr = cgroup_setxattr,
2600 .getxattr = cgroup_getxattr,
2601 .listxattr = cgroup_listxattr,
2602 .removexattr = cgroup_removexattr,
2603};
2604
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07002605static const struct inode_operations cgroup_dir_inode_operations = {
Al Viroc72a04e2011-01-14 05:31:45 +00002606 .lookup = cgroup_lookup,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002607 .mkdir = cgroup_mkdir,
2608 .rmdir = cgroup_rmdir,
2609 .rename = cgroup_rename,
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002610 .setxattr = cgroup_setxattr,
2611 .getxattr = cgroup_getxattr,
2612 .listxattr = cgroup_listxattr,
2613 .removexattr = cgroup_removexattr,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002614};
2615
Al Viro00cd8dd2012-06-10 17:13:09 -04002616static struct dentry *cgroup_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
Al Viroc72a04e2011-01-14 05:31:45 +00002617{
2618 if (dentry->d_name.len > NAME_MAX)
2619 return ERR_PTR(-ENAMETOOLONG);
2620 d_add(dentry, NULL);
2621 return NULL;
2622}
2623
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08002624/*
2625 * Check if a file is a control file
2626 */
2627static inline struct cftype *__file_cft(struct file *file)
2628{
2629 if (file->f_dentry->d_inode->i_fop != &cgroup_file_operations)
2630 return ERR_PTR(-EINVAL);
2631 return __d_cft(file->f_dentry);
2632}
2633
Al Viroa5e7ed32011-07-26 01:55:55 -04002634static int cgroup_create_file(struct dentry *dentry, umode_t mode,
Nick Piggin5adcee12011-01-07 17:49:20 +11002635 struct super_block *sb)
2636{
Paul Menageddbcc7e2007-10-18 23:39:30 -07002637 struct inode *inode;
2638
2639 if (!dentry)
2640 return -ENOENT;
2641 if (dentry->d_inode)
2642 return -EEXIST;
2643
2644 inode = cgroup_new_inode(mode, sb);
2645 if (!inode)
2646 return -ENOMEM;
2647
2648 if (S_ISDIR(mode)) {
2649 inode->i_op = &cgroup_dir_inode_operations;
2650 inode->i_fop = &simple_dir_operations;
2651
2652 /* start off with i_nlink == 2 (for "." entry) */
2653 inc_nlink(inode);
2654
2655 /* start with the directory inode held, so that we can
2656 * populate it without racing with another mkdir */
Paul Menage817929e2007-10-18 23:39:36 -07002657 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002658 } else if (S_ISREG(mode)) {
2659 inode->i_size = 0;
2660 inode->i_fop = &cgroup_file_operations;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002661 inode->i_op = &cgroup_file_inode_operations;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002662 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002663 d_instantiate(dentry, inode);
2664 dget(dentry); /* Extra count - pin the dentry in core */
2665 return 0;
2666}
2667
2668/*
Li Zefana043e3b2008-02-23 15:24:09 -08002669 * cgroup_create_dir - create a directory for an object.
2670 * @cgrp: the cgroup we create the directory for. It must have a valid
2671 * ->parent field. And we are going to fill its ->dentry field.
2672 * @dentry: dentry of the new cgroup
2673 * @mode: mode to set on new directory.
Paul Menageddbcc7e2007-10-18 23:39:30 -07002674 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002675static int cgroup_create_dir(struct cgroup *cgrp, struct dentry *dentry,
Al Viroa5e7ed32011-07-26 01:55:55 -04002676 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002677{
2678 struct dentry *parent;
2679 int error = 0;
2680
Paul Menagebd89aab2007-10-18 23:40:44 -07002681 parent = cgrp->parent->dentry;
2682 error = cgroup_create_file(dentry, S_IFDIR | mode, cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002683 if (!error) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002684 dentry->d_fsdata = cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002685 inc_nlink(parent->d_inode);
Paul Menagea47295e2009-01-07 18:07:44 -08002686 rcu_assign_pointer(cgrp->dentry, dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002687 dget(dentry);
2688 }
2689 dput(dentry);
2690
2691 return error;
2692}
2693
Li Zefan099fca32009-04-02 16:57:29 -07002694/**
2695 * cgroup_file_mode - deduce file mode of a control file
2696 * @cft: the control file in question
2697 *
2698 * returns cft->mode if ->mode is not 0
2699 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
2700 * returns S_IRUGO if it has only a read handler
2701 * returns S_IWUSR if it has only a write hander
2702 */
Al Viroa5e7ed32011-07-26 01:55:55 -04002703static umode_t cgroup_file_mode(const struct cftype *cft)
Li Zefan099fca32009-04-02 16:57:29 -07002704{
Al Viroa5e7ed32011-07-26 01:55:55 -04002705 umode_t mode = 0;
Li Zefan099fca32009-04-02 16:57:29 -07002706
2707 if (cft->mode)
2708 return cft->mode;
2709
2710 if (cft->read || cft->read_u64 || cft->read_s64 ||
2711 cft->read_map || cft->read_seq_string)
2712 mode |= S_IRUGO;
2713
2714 if (cft->write || cft->write_u64 || cft->write_s64 ||
2715 cft->write_string || cft->trigger)
2716 mode |= S_IWUSR;
2717
2718 return mode;
2719}
2720
Tejun Heodb0416b2012-04-01 12:09:55 -07002721static int cgroup_add_file(struct cgroup *cgrp, struct cgroup_subsys *subsys,
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002722 struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002723{
Paul Menagebd89aab2007-10-18 23:40:44 -07002724 struct dentry *dir = cgrp->dentry;
Tejun Heo05ef1d72012-04-01 12:09:56 -07002725 struct cgroup *parent = __d_cgrp(dir);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002726 struct dentry *dentry;
Tejun Heo05ef1d72012-04-01 12:09:56 -07002727 struct cfent *cfe;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002728 int error;
Al Viroa5e7ed32011-07-26 01:55:55 -04002729 umode_t mode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002730 char name[MAX_CGROUP_TYPE_NAMELEN + MAX_CFTYPE_NAME + 2] = { 0 };
Tejun Heo8e3f6542012-04-01 12:09:55 -07002731
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002732 simple_xattrs_init(&cft->xattrs);
2733
Tejun Heo8e3f6542012-04-01 12:09:55 -07002734 /* does @cft->flags tell us to skip creation on @cgrp? */
2735 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgrp->parent)
2736 return 0;
2737 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgrp->parent)
2738 return 0;
2739
Paul Menagebd89aab2007-10-18 23:40:44 -07002740 if (subsys && !test_bit(ROOT_NOPREFIX, &cgrp->root->flags)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002741 strcpy(name, subsys->name);
2742 strcat(name, ".");
2743 }
2744 strcat(name, cft->name);
Tejun Heo05ef1d72012-04-01 12:09:56 -07002745
Paul Menageddbcc7e2007-10-18 23:39:30 -07002746 BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex));
Tejun Heo05ef1d72012-04-01 12:09:56 -07002747
2748 cfe = kzalloc(sizeof(*cfe), GFP_KERNEL);
2749 if (!cfe)
2750 return -ENOMEM;
2751
Paul Menageddbcc7e2007-10-18 23:39:30 -07002752 dentry = lookup_one_len(name, dir, strlen(name));
Tejun Heo05ef1d72012-04-01 12:09:56 -07002753 if (IS_ERR(dentry)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002754 error = PTR_ERR(dentry);
Tejun Heo05ef1d72012-04-01 12:09:56 -07002755 goto out;
2756 }
2757
2758 mode = cgroup_file_mode(cft);
2759 error = cgroup_create_file(dentry, mode | S_IFREG, cgrp->root->sb);
2760 if (!error) {
2761 cfe->type = (void *)cft;
2762 cfe->dentry = dentry;
2763 dentry->d_fsdata = cfe;
2764 list_add_tail(&cfe->node, &parent->files);
2765 cfe = NULL;
2766 }
2767 dput(dentry);
2768out:
2769 kfree(cfe);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002770 return error;
2771}
2772
Tejun Heo79578622012-04-01 12:09:56 -07002773static int cgroup_addrm_files(struct cgroup *cgrp, struct cgroup_subsys *subsys,
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002774 struct cftype cfts[], bool is_add)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002775{
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002776 struct cftype *cft;
Tejun Heodb0416b2012-04-01 12:09:55 -07002777 int err, ret = 0;
2778
2779 for (cft = cfts; cft->name[0] != '\0'; cft++) {
Tejun Heo79578622012-04-01 12:09:56 -07002780 if (is_add)
2781 err = cgroup_add_file(cgrp, subsys, cft);
2782 else
2783 err = cgroup_rm_file(cgrp, cft);
Tejun Heodb0416b2012-04-01 12:09:55 -07002784 if (err) {
Tejun Heo79578622012-04-01 12:09:56 -07002785 pr_warning("cgroup_addrm_files: failed to %s %s, err=%d\n",
2786 is_add ? "add" : "remove", cft->name, err);
Tejun Heodb0416b2012-04-01 12:09:55 -07002787 ret = err;
2788 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002789 }
Tejun Heodb0416b2012-04-01 12:09:55 -07002790 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002791}
2792
Tejun Heo8e3f6542012-04-01 12:09:55 -07002793static DEFINE_MUTEX(cgroup_cft_mutex);
2794
2795static void cgroup_cfts_prepare(void)
2796 __acquires(&cgroup_cft_mutex) __acquires(&cgroup_mutex)
2797{
2798 /*
2799 * Thanks to the entanglement with vfs inode locking, we can't walk
2800 * the existing cgroups under cgroup_mutex and create files.
2801 * Instead, we increment reference on all cgroups and build list of
2802 * them using @cgrp->cft_q_node. Grab cgroup_cft_mutex to ensure
2803 * exclusive access to the field.
2804 */
2805 mutex_lock(&cgroup_cft_mutex);
2806 mutex_lock(&cgroup_mutex);
2807}
2808
2809static void cgroup_cfts_commit(struct cgroup_subsys *ss,
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002810 struct cftype *cfts, bool is_add)
Tejun Heo8e3f6542012-04-01 12:09:55 -07002811 __releases(&cgroup_mutex) __releases(&cgroup_cft_mutex)
2812{
2813 LIST_HEAD(pending);
2814 struct cgroup *cgrp, *n;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002815
2816 /* %NULL @cfts indicates abort and don't bother if @ss isn't attached */
2817 if (cfts && ss->root != &rootnode) {
2818 list_for_each_entry(cgrp, &ss->root->allcg_list, allcg_node) {
2819 dget(cgrp->dentry);
2820 list_add_tail(&cgrp->cft_q_node, &pending);
2821 }
2822 }
2823
2824 mutex_unlock(&cgroup_mutex);
2825
2826 /*
2827 * All new cgroups will see @cfts update on @ss->cftsets. Add/rm
2828 * files for all cgroups which were created before.
2829 */
2830 list_for_each_entry_safe(cgrp, n, &pending, cft_q_node) {
2831 struct inode *inode = cgrp->dentry->d_inode;
2832
2833 mutex_lock(&inode->i_mutex);
2834 mutex_lock(&cgroup_mutex);
2835 if (!cgroup_is_removed(cgrp))
Tejun Heo79578622012-04-01 12:09:56 -07002836 cgroup_addrm_files(cgrp, ss, cfts, is_add);
Tejun Heo8e3f6542012-04-01 12:09:55 -07002837 mutex_unlock(&cgroup_mutex);
2838 mutex_unlock(&inode->i_mutex);
2839
2840 list_del_init(&cgrp->cft_q_node);
2841 dput(cgrp->dentry);
2842 }
2843
2844 mutex_unlock(&cgroup_cft_mutex);
2845}
2846
2847/**
2848 * cgroup_add_cftypes - add an array of cftypes to a subsystem
2849 * @ss: target cgroup subsystem
2850 * @cfts: zero-length name terminated array of cftypes
2851 *
2852 * Register @cfts to @ss. Files described by @cfts are created for all
2853 * existing cgroups to which @ss is attached and all future cgroups will
2854 * have them too. This function can be called anytime whether @ss is
2855 * attached or not.
2856 *
2857 * Returns 0 on successful registration, -errno on failure. Note that this
2858 * function currently returns 0 as long as @cfts registration is successful
2859 * even if some file creation attempts on existing cgroups fail.
2860 */
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002861int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo8e3f6542012-04-01 12:09:55 -07002862{
2863 struct cftype_set *set;
2864
2865 set = kzalloc(sizeof(*set), GFP_KERNEL);
2866 if (!set)
2867 return -ENOMEM;
2868
2869 cgroup_cfts_prepare();
2870 set->cfts = cfts;
2871 list_add_tail(&set->node, &ss->cftsets);
Tejun Heo79578622012-04-01 12:09:56 -07002872 cgroup_cfts_commit(ss, cfts, true);
Tejun Heo8e3f6542012-04-01 12:09:55 -07002873
2874 return 0;
2875}
2876EXPORT_SYMBOL_GPL(cgroup_add_cftypes);
2877
Li Zefana043e3b2008-02-23 15:24:09 -08002878/**
Tejun Heo79578622012-04-01 12:09:56 -07002879 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
2880 * @ss: target cgroup subsystem
2881 * @cfts: zero-length name terminated array of cftypes
2882 *
2883 * Unregister @cfts from @ss. Files described by @cfts are removed from
2884 * all existing cgroups to which @ss is attached and all future cgroups
2885 * won't have them either. This function can be called anytime whether @ss
2886 * is attached or not.
2887 *
2888 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
2889 * registered with @ss.
2890 */
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002891int cgroup_rm_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo79578622012-04-01 12:09:56 -07002892{
2893 struct cftype_set *set;
2894
2895 cgroup_cfts_prepare();
2896
2897 list_for_each_entry(set, &ss->cftsets, node) {
2898 if (set->cfts == cfts) {
2899 list_del_init(&set->node);
2900 cgroup_cfts_commit(ss, cfts, false);
2901 return 0;
2902 }
2903 }
2904
2905 cgroup_cfts_commit(ss, NULL, false);
2906 return -ENOENT;
2907}
2908
2909/**
Li Zefana043e3b2008-02-23 15:24:09 -08002910 * cgroup_task_count - count the number of tasks in a cgroup.
2911 * @cgrp: the cgroup in question
2912 *
2913 * Return the number of tasks in the cgroup.
2914 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002915int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002916{
2917 int count = 0;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07002918 struct cg_cgroup_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002919
Paul Menage817929e2007-10-18 23:39:36 -07002920 read_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07002921 list_for_each_entry(link, &cgrp->css_sets, cgrp_link_list) {
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07002922 count += atomic_read(&link->cg->refcount);
Paul Menage817929e2007-10-18 23:39:36 -07002923 }
2924 read_unlock(&css_set_lock);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002925 return count;
2926}
2927
2928/*
Paul Menage817929e2007-10-18 23:39:36 -07002929 * Advance a list_head iterator. The iterator should be positioned at
2930 * the start of a css_set
2931 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002932static void cgroup_advance_iter(struct cgroup *cgrp,
Paul Menage7717f7b2009-09-23 15:56:22 -07002933 struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002934{
2935 struct list_head *l = it->cg_link;
2936 struct cg_cgroup_link *link;
2937 struct css_set *cg;
2938
2939 /* Advance to the next non-empty css_set */
2940 do {
2941 l = l->next;
Paul Menagebd89aab2007-10-18 23:40:44 -07002942 if (l == &cgrp->css_sets) {
Paul Menage817929e2007-10-18 23:39:36 -07002943 it->cg_link = NULL;
2944 return;
2945 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002946 link = list_entry(l, struct cg_cgroup_link, cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07002947 cg = link->cg;
2948 } while (list_empty(&cg->tasks));
2949 it->cg_link = l;
2950 it->task = cg->tasks.next;
2951}
2952
Cliff Wickman31a7df02008-02-07 00:14:42 -08002953/*
2954 * To reduce the fork() overhead for systems that are not actually
2955 * using their cgroups capability, we don't maintain the lists running
2956 * through each css_set to its tasks until we see the list actually
2957 * used - in other words after the first call to cgroup_iter_start().
Cliff Wickman31a7df02008-02-07 00:14:42 -08002958 */
Adrian Bunk3df91fe2008-04-29 00:59:54 -07002959static void cgroup_enable_task_cg_lists(void)
Cliff Wickman31a7df02008-02-07 00:14:42 -08002960{
2961 struct task_struct *p, *g;
2962 write_lock(&css_set_lock);
2963 use_task_css_set_links = 1;
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01002964 /*
2965 * We need tasklist_lock because RCU is not safe against
2966 * while_each_thread(). Besides, a forking task that has passed
2967 * cgroup_post_fork() without seeing use_task_css_set_links = 1
2968 * is not guaranteed to have its child immediately visible in the
2969 * tasklist if we walk through it with RCU.
2970 */
2971 read_lock(&tasklist_lock);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002972 do_each_thread(g, p) {
2973 task_lock(p);
Li Zefan0e043882008-04-17 11:37:15 +08002974 /*
2975 * We should check if the process is exiting, otherwise
2976 * it will race with cgroup_exit() in that the list
2977 * entry won't be deleted though the process has exited.
2978 */
2979 if (!(p->flags & PF_EXITING) && list_empty(&p->cg_list))
Cliff Wickman31a7df02008-02-07 00:14:42 -08002980 list_add(&p->cg_list, &p->cgroups->tasks);
2981 task_unlock(p);
2982 } while_each_thread(g, p);
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01002983 read_unlock(&tasklist_lock);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002984 write_unlock(&css_set_lock);
2985}
2986
Paul Menagebd89aab2007-10-18 23:40:44 -07002987void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it)
Kirill A. Shutemovc6ca5752011-12-27 07:46:26 +02002988 __acquires(css_set_lock)
Paul Menage817929e2007-10-18 23:39:36 -07002989{
2990 /*
2991 * The first time anyone tries to iterate across a cgroup,
2992 * we need to enable the list linking each css_set to its
2993 * tasks, and fix up all existing tasks.
2994 */
Cliff Wickman31a7df02008-02-07 00:14:42 -08002995 if (!use_task_css_set_links)
2996 cgroup_enable_task_cg_lists();
2997
Paul Menage817929e2007-10-18 23:39:36 -07002998 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07002999 it->cg_link = &cgrp->css_sets;
3000 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07003001}
3002
Paul Menagebd89aab2007-10-18 23:40:44 -07003003struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -07003004 struct cgroup_iter *it)
3005{
3006 struct task_struct *res;
3007 struct list_head *l = it->task;
Lai Jiangshan2019f632009-01-07 18:07:36 -08003008 struct cg_cgroup_link *link;
Paul Menage817929e2007-10-18 23:39:36 -07003009
3010 /* If the iterator cg is NULL, we have no tasks */
3011 if (!it->cg_link)
3012 return NULL;
3013 res = list_entry(l, struct task_struct, cg_list);
3014 /* Advance iterator to find next entry */
3015 l = l->next;
Lai Jiangshan2019f632009-01-07 18:07:36 -08003016 link = list_entry(it->cg_link, struct cg_cgroup_link, cgrp_link_list);
3017 if (l == &link->cg->tasks) {
Paul Menage817929e2007-10-18 23:39:36 -07003018 /* We reached the end of this task list - move on to
3019 * the next cg_cgroup_link */
Paul Menagebd89aab2007-10-18 23:40:44 -07003020 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07003021 } else {
3022 it->task = l;
3023 }
3024 return res;
3025}
3026
Paul Menagebd89aab2007-10-18 23:40:44 -07003027void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it)
Kirill A. Shutemovc6ca5752011-12-27 07:46:26 +02003028 __releases(css_set_lock)
Paul Menage817929e2007-10-18 23:39:36 -07003029{
3030 read_unlock(&css_set_lock);
3031}
3032
Cliff Wickman31a7df02008-02-07 00:14:42 -08003033static inline int started_after_time(struct task_struct *t1,
3034 struct timespec *time,
3035 struct task_struct *t2)
3036{
3037 int start_diff = timespec_compare(&t1->start_time, time);
3038 if (start_diff > 0) {
3039 return 1;
3040 } else if (start_diff < 0) {
3041 return 0;
3042 } else {
3043 /*
3044 * Arbitrarily, if two processes started at the same
3045 * time, we'll say that the lower pointer value
3046 * started first. Note that t2 may have exited by now
3047 * so this may not be a valid pointer any longer, but
3048 * that's fine - it still serves to distinguish
3049 * between two tasks started (effectively) simultaneously.
3050 */
3051 return t1 > t2;
3052 }
3053}
3054
3055/*
3056 * This function is a callback from heap_insert() and is used to order
3057 * the heap.
3058 * In this case we order the heap in descending task start time.
3059 */
3060static inline int started_after(void *p1, void *p2)
3061{
3062 struct task_struct *t1 = p1;
3063 struct task_struct *t2 = p2;
3064 return started_after_time(t1, &t2->start_time, t2);
3065}
3066
3067/**
3068 * cgroup_scan_tasks - iterate though all the tasks in a cgroup
3069 * @scan: struct cgroup_scanner containing arguments for the scan
3070 *
3071 * Arguments include pointers to callback functions test_task() and
3072 * process_task().
3073 * Iterate through all the tasks in a cgroup, calling test_task() for each,
3074 * and if it returns true, call process_task() for it also.
3075 * The test_task pointer may be NULL, meaning always true (select all tasks).
3076 * Effectively duplicates cgroup_iter_{start,next,end}()
3077 * but does not lock css_set_lock for the call to process_task().
3078 * The struct cgroup_scanner may be embedded in any structure of the caller's
3079 * creation.
3080 * It is guaranteed that process_task() will act on every task that
3081 * is a member of the cgroup for the duration of this call. This
3082 * function may or may not call process_task() for tasks that exit
3083 * or move to a different cgroup during the call, or are forked or
3084 * move into the cgroup during the call.
3085 *
3086 * Note that test_task() may be called with locks held, and may in some
3087 * situations be called multiple times for the same task, so it should
3088 * be cheap.
3089 * If the heap pointer in the struct cgroup_scanner is non-NULL, a heap has been
3090 * pre-allocated and will be used for heap operations (and its "gt" member will
3091 * be overwritten), else a temporary heap will be used (allocation of which
3092 * may cause this function to fail).
3093 */
3094int cgroup_scan_tasks(struct cgroup_scanner *scan)
3095{
3096 int retval, i;
3097 struct cgroup_iter it;
3098 struct task_struct *p, *dropped;
3099 /* Never dereference latest_task, since it's not refcounted */
3100 struct task_struct *latest_task = NULL;
3101 struct ptr_heap tmp_heap;
3102 struct ptr_heap *heap;
3103 struct timespec latest_time = { 0, 0 };
3104
3105 if (scan->heap) {
3106 /* The caller supplied our heap and pre-allocated its memory */
3107 heap = scan->heap;
3108 heap->gt = &started_after;
3109 } else {
3110 /* We need to allocate our own heap memory */
3111 heap = &tmp_heap;
3112 retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after);
3113 if (retval)
3114 /* cannot allocate the heap */
3115 return retval;
3116 }
3117
3118 again:
3119 /*
3120 * Scan tasks in the cgroup, using the scanner's "test_task" callback
3121 * to determine which are of interest, and using the scanner's
3122 * "process_task" callback to process any of them that need an update.
3123 * Since we don't want to hold any locks during the task updates,
3124 * gather tasks to be processed in a heap structure.
3125 * The heap is sorted by descending task start time.
3126 * If the statically-sized heap fills up, we overflow tasks that
3127 * started later, and in future iterations only consider tasks that
3128 * started after the latest task in the previous pass. This
3129 * guarantees forward progress and that we don't miss any tasks.
3130 */
3131 heap->size = 0;
3132 cgroup_iter_start(scan->cg, &it);
3133 while ((p = cgroup_iter_next(scan->cg, &it))) {
3134 /*
3135 * Only affect tasks that qualify per the caller's callback,
3136 * if he provided one
3137 */
3138 if (scan->test_task && !scan->test_task(p, scan))
3139 continue;
3140 /*
3141 * Only process tasks that started after the last task
3142 * we processed
3143 */
3144 if (!started_after_time(p, &latest_time, latest_task))
3145 continue;
3146 dropped = heap_insert(heap, p);
3147 if (dropped == NULL) {
3148 /*
3149 * The new task was inserted; the heap wasn't
3150 * previously full
3151 */
3152 get_task_struct(p);
3153 } else if (dropped != p) {
3154 /*
3155 * The new task was inserted, and pushed out a
3156 * different task
3157 */
3158 get_task_struct(p);
3159 put_task_struct(dropped);
3160 }
3161 /*
3162 * Else the new task was newer than anything already in
3163 * the heap and wasn't inserted
3164 */
3165 }
3166 cgroup_iter_end(scan->cg, &it);
3167
3168 if (heap->size) {
3169 for (i = 0; i < heap->size; i++) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07003170 struct task_struct *q = heap->ptrs[i];
Cliff Wickman31a7df02008-02-07 00:14:42 -08003171 if (i == 0) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07003172 latest_time = q->start_time;
3173 latest_task = q;
Cliff Wickman31a7df02008-02-07 00:14:42 -08003174 }
3175 /* Process the task per the caller's callback */
Paul Jackson4fe91d52008-04-29 00:59:55 -07003176 scan->process_task(q, scan);
3177 put_task_struct(q);
Cliff Wickman31a7df02008-02-07 00:14:42 -08003178 }
3179 /*
3180 * If we had to process any tasks at all, scan again
3181 * in case some of them were in the middle of forking
3182 * children that didn't get processed.
3183 * Not the most efficient way to do it, but it avoids
3184 * having to take callback_mutex in the fork path
3185 */
3186 goto again;
3187 }
3188 if (heap == &tmp_heap)
3189 heap_free(&tmp_heap);
3190 return 0;
3191}
3192
Paul Menage817929e2007-10-18 23:39:36 -07003193/*
Ben Blum102a7752009-09-23 15:56:26 -07003194 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003195 *
3196 * Reading this file can return large amounts of data if a cgroup has
3197 * *lots* of attached tasks. So it may need several calls to read(),
3198 * but we cannot guarantee that the information we produce is correct
3199 * unless we produce it entirely atomically.
3200 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07003201 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003202
Li Zefan24528252012-01-20 11:58:43 +08003203/* which pidlist file are we talking about? */
3204enum cgroup_filetype {
3205 CGROUP_FILE_PROCS,
3206 CGROUP_FILE_TASKS,
3207};
3208
3209/*
3210 * A pidlist is a list of pids that virtually represents the contents of one
3211 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
3212 * a pair (one each for procs, tasks) for each pid namespace that's relevant
3213 * to the cgroup.
3214 */
3215struct cgroup_pidlist {
3216 /*
3217 * used to find which pidlist is wanted. doesn't change as long as
3218 * this particular list stays in the list.
3219 */
3220 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
3221 /* array of xids */
3222 pid_t *list;
3223 /* how many elements the above list has */
3224 int length;
3225 /* how many files are using the current array */
3226 int use_count;
3227 /* each of these stored in a list by its cgroup */
3228 struct list_head links;
3229 /* pointer to the cgroup we belong to, for list removal purposes */
3230 struct cgroup *owner;
3231 /* protects the other fields */
3232 struct rw_semaphore mutex;
3233};
3234
Paul Menagebbcb81d2007-10-18 23:39:32 -07003235/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07003236 * The following two functions "fix" the issue where there are more pids
3237 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
3238 * TODO: replace with a kernel-wide solution to this problem
3239 */
3240#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
3241static void *pidlist_allocate(int count)
3242{
3243 if (PIDLIST_TOO_LARGE(count))
3244 return vmalloc(count * sizeof(pid_t));
3245 else
3246 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
3247}
3248static void pidlist_free(void *p)
3249{
3250 if (is_vmalloc_addr(p))
3251 vfree(p);
3252 else
3253 kfree(p);
3254}
3255static void *pidlist_resize(void *p, int newcount)
3256{
3257 void *newlist;
3258 /* note: if new alloc fails, old p will still be valid either way */
3259 if (is_vmalloc_addr(p)) {
3260 newlist = vmalloc(newcount * sizeof(pid_t));
3261 if (!newlist)
3262 return NULL;
3263 memcpy(newlist, p, newcount * sizeof(pid_t));
3264 vfree(p);
3265 } else {
3266 newlist = krealloc(p, newcount * sizeof(pid_t), GFP_KERNEL);
3267 }
3268 return newlist;
3269}
3270
3271/*
Ben Blum102a7752009-09-23 15:56:26 -07003272 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
3273 * If the new stripped list is sufficiently smaller and there's enough memory
3274 * to allocate a new buffer, will let go of the unneeded memory. Returns the
3275 * number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003276 */
Ben Blum102a7752009-09-23 15:56:26 -07003277/* is the size difference enough that we should re-allocate the array? */
3278#define PIDLIST_REALLOC_DIFFERENCE(old, new) ((old) - PAGE_SIZE >= (new))
3279static int pidlist_uniq(pid_t **p, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003280{
Ben Blum102a7752009-09-23 15:56:26 -07003281 int src, dest = 1;
3282 pid_t *list = *p;
3283 pid_t *newlist;
3284
3285 /*
3286 * we presume the 0th element is unique, so i starts at 1. trivial
3287 * edge cases first; no work needs to be done for either
3288 */
3289 if (length == 0 || length == 1)
3290 return length;
3291 /* src and dest walk down the list; dest counts unique elements */
3292 for (src = 1; src < length; src++) {
3293 /* find next unique element */
3294 while (list[src] == list[src-1]) {
3295 src++;
3296 if (src == length)
3297 goto after;
3298 }
3299 /* dest always points to where the next unique element goes */
3300 list[dest] = list[src];
3301 dest++;
3302 }
3303after:
3304 /*
3305 * if the length difference is large enough, we want to allocate a
3306 * smaller buffer to save memory. if this fails due to out of memory,
3307 * we'll just stay with what we've got.
3308 */
3309 if (PIDLIST_REALLOC_DIFFERENCE(length, dest)) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07003310 newlist = pidlist_resize(list, dest);
Ben Blum102a7752009-09-23 15:56:26 -07003311 if (newlist)
3312 *p = newlist;
3313 }
3314 return dest;
3315}
3316
3317static int cmppid(const void *a, const void *b)
3318{
3319 return *(pid_t *)a - *(pid_t *)b;
3320}
3321
3322/*
Ben Blum72a8cb32009-09-23 15:56:27 -07003323 * find the appropriate pidlist for our purpose (given procs vs tasks)
3324 * returns with the lock on that pidlist already held, and takes care
3325 * of the use count, or returns NULL with no locks held if we're out of
3326 * memory.
3327 */
3328static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
3329 enum cgroup_filetype type)
3330{
3331 struct cgroup_pidlist *l;
3332 /* don't need task_nsproxy() if we're looking at ourself */
Li Zefanb70cc5f2010-03-10 15:22:12 -08003333 struct pid_namespace *ns = current->nsproxy->pid_ns;
3334
Ben Blum72a8cb32009-09-23 15:56:27 -07003335 /*
3336 * We can't drop the pidlist_mutex before taking the l->mutex in case
3337 * the last ref-holder is trying to remove l from the list at the same
3338 * time. Holding the pidlist_mutex precludes somebody taking whichever
3339 * list we find out from under us - compare release_pid_array().
3340 */
3341 mutex_lock(&cgrp->pidlist_mutex);
3342 list_for_each_entry(l, &cgrp->pidlists, links) {
3343 if (l->key.type == type && l->key.ns == ns) {
Ben Blum72a8cb32009-09-23 15:56:27 -07003344 /* make sure l doesn't vanish out from under us */
3345 down_write(&l->mutex);
3346 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003347 return l;
3348 }
3349 }
3350 /* entry not found; create a new one */
3351 l = kmalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
3352 if (!l) {
3353 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003354 return l;
3355 }
3356 init_rwsem(&l->mutex);
3357 down_write(&l->mutex);
3358 l->key.type = type;
Li Zefanb70cc5f2010-03-10 15:22:12 -08003359 l->key.ns = get_pid_ns(ns);
Ben Blum72a8cb32009-09-23 15:56:27 -07003360 l->use_count = 0; /* don't increment here */
3361 l->list = NULL;
3362 l->owner = cgrp;
3363 list_add(&l->links, &cgrp->pidlists);
3364 mutex_unlock(&cgrp->pidlist_mutex);
3365 return l;
3366}
3367
3368/*
Ben Blum102a7752009-09-23 15:56:26 -07003369 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
3370 */
Ben Blum72a8cb32009-09-23 15:56:27 -07003371static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
3372 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07003373{
3374 pid_t *array;
3375 int length;
3376 int pid, n = 0; /* used for populating the array */
Paul Menage817929e2007-10-18 23:39:36 -07003377 struct cgroup_iter it;
3378 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07003379 struct cgroup_pidlist *l;
3380
3381 /*
3382 * If cgroup gets more users after we read count, we won't have
3383 * enough space - tough. This race is indistinguishable to the
3384 * caller from the case that the additional cgroup users didn't
3385 * show up until sometime later on.
3386 */
3387 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003388 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07003389 if (!array)
3390 return -ENOMEM;
3391 /* now, populate the array */
Paul Menagebd89aab2007-10-18 23:40:44 -07003392 cgroup_iter_start(cgrp, &it);
3393 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Ben Blum102a7752009-09-23 15:56:26 -07003394 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07003395 break;
Ben Blum102a7752009-09-23 15:56:26 -07003396 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07003397 if (type == CGROUP_FILE_PROCS)
3398 pid = task_tgid_vnr(tsk);
3399 else
3400 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07003401 if (pid > 0) /* make sure to only use valid results */
3402 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07003403 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003404 cgroup_iter_end(cgrp, &it);
Ben Blum102a7752009-09-23 15:56:26 -07003405 length = n;
3406 /* now sort & (if procs) strip out duplicates */
3407 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07003408 if (type == CGROUP_FILE_PROCS)
Ben Blum102a7752009-09-23 15:56:26 -07003409 length = pidlist_uniq(&array, length);
Ben Blum72a8cb32009-09-23 15:56:27 -07003410 l = cgroup_pidlist_find(cgrp, type);
3411 if (!l) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07003412 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07003413 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07003414 }
Ben Blum72a8cb32009-09-23 15:56:27 -07003415 /* store array, freeing old if necessary - lock already held */
Ben Blumd1d9fd32009-09-23 15:56:28 -07003416 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07003417 l->list = array;
3418 l->length = length;
3419 l->use_count++;
3420 up_write(&l->mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003421 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07003422 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003423}
3424
Balbir Singh846c7bb2007-10-18 23:39:44 -07003425/**
Li Zefana043e3b2008-02-23 15:24:09 -08003426 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07003427 * @stats: cgroupstats to fill information into
3428 * @dentry: A dentry entry belonging to the cgroup for which stats have
3429 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08003430 *
3431 * Build and fill cgroupstats so that taskstats can export it to user
3432 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003433 */
3434int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
3435{
3436 int ret = -EINVAL;
Paul Menagebd89aab2007-10-18 23:40:44 -07003437 struct cgroup *cgrp;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003438 struct cgroup_iter it;
3439 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08003440
Balbir Singh846c7bb2007-10-18 23:39:44 -07003441 /*
Li Zefan33d283b2008-11-19 15:36:48 -08003442 * Validate dentry by checking the superblock operations,
3443 * and make sure it's a directory.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003444 */
Li Zefan33d283b2008-11-19 15:36:48 -08003445 if (dentry->d_sb->s_op != &cgroup_ops ||
3446 !S_ISDIR(dentry->d_inode->i_mode))
Balbir Singh846c7bb2007-10-18 23:39:44 -07003447 goto err;
3448
3449 ret = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07003450 cgrp = dentry->d_fsdata;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003451
Paul Menagebd89aab2007-10-18 23:40:44 -07003452 cgroup_iter_start(cgrp, &it);
3453 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07003454 switch (tsk->state) {
3455 case TASK_RUNNING:
3456 stats->nr_running++;
3457 break;
3458 case TASK_INTERRUPTIBLE:
3459 stats->nr_sleeping++;
3460 break;
3461 case TASK_UNINTERRUPTIBLE:
3462 stats->nr_uninterruptible++;
3463 break;
3464 case TASK_STOPPED:
3465 stats->nr_stopped++;
3466 break;
3467 default:
3468 if (delayacct_is_task_waiting_on_io(tsk))
3469 stats->nr_io_wait++;
3470 break;
3471 }
3472 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003473 cgroup_iter_end(cgrp, &it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07003474
Balbir Singh846c7bb2007-10-18 23:39:44 -07003475err:
3476 return ret;
3477}
3478
Paul Menage8f3ff202009-09-23 15:56:25 -07003479
Paul Menagecc31edc2008-10-18 20:28:04 -07003480/*
Ben Blum102a7752009-09-23 15:56:26 -07003481 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07003482 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07003483 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07003484 */
3485
Ben Blum102a7752009-09-23 15:56:26 -07003486static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003487{
3488 /*
3489 * Initially we receive a position value that corresponds to
3490 * one more than the last pid shown (or 0 on the first call or
3491 * after a seek to the start). Use a binary-search to find the
3492 * next pid to display, if any
3493 */
Ben Blum102a7752009-09-23 15:56:26 -07003494 struct cgroup_pidlist *l = s->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07003495 int index = 0, pid = *pos;
3496 int *iter;
3497
Ben Blum102a7752009-09-23 15:56:26 -07003498 down_read(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003499 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07003500 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11003501
Paul Menagecc31edc2008-10-18 20:28:04 -07003502 while (index < end) {
3503 int mid = (index + end) / 2;
Ben Blum102a7752009-09-23 15:56:26 -07003504 if (l->list[mid] == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07003505 index = mid;
3506 break;
Ben Blum102a7752009-09-23 15:56:26 -07003507 } else if (l->list[mid] <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07003508 index = mid + 1;
3509 else
3510 end = mid;
3511 }
3512 }
3513 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07003514 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07003515 return NULL;
3516 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07003517 iter = l->list + index;
Paul Menagecc31edc2008-10-18 20:28:04 -07003518 *pos = *iter;
3519 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003520}
3521
Ben Blum102a7752009-09-23 15:56:26 -07003522static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003523{
Ben Blum102a7752009-09-23 15:56:26 -07003524 struct cgroup_pidlist *l = s->private;
3525 up_read(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003526}
3527
Ben Blum102a7752009-09-23 15:56:26 -07003528static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003529{
Ben Blum102a7752009-09-23 15:56:26 -07003530 struct cgroup_pidlist *l = s->private;
3531 pid_t *p = v;
3532 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07003533 /*
3534 * Advance to the next pid in the array. If this goes off the
3535 * end, we're done
3536 */
3537 p++;
3538 if (p >= end) {
3539 return NULL;
3540 } else {
3541 *pos = *p;
3542 return p;
3543 }
3544}
3545
Ben Blum102a7752009-09-23 15:56:26 -07003546static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003547{
3548 return seq_printf(s, "%d\n", *(int *)v);
3549}
3550
Ben Blum102a7752009-09-23 15:56:26 -07003551/*
3552 * seq_operations functions for iterating on pidlists through seq_file -
3553 * independent of whether it's tasks or procs
3554 */
3555static const struct seq_operations cgroup_pidlist_seq_operations = {
3556 .start = cgroup_pidlist_start,
3557 .stop = cgroup_pidlist_stop,
3558 .next = cgroup_pidlist_next,
3559 .show = cgroup_pidlist_show,
Paul Menagecc31edc2008-10-18 20:28:04 -07003560};
3561
Ben Blum102a7752009-09-23 15:56:26 -07003562static void cgroup_release_pid_array(struct cgroup_pidlist *l)
Paul Menagecc31edc2008-10-18 20:28:04 -07003563{
Ben Blum72a8cb32009-09-23 15:56:27 -07003564 /*
3565 * the case where we're the last user of this particular pidlist will
3566 * have us remove it from the cgroup's list, which entails taking the
3567 * mutex. since in pidlist_find the pidlist->lock depends on cgroup->
3568 * pidlist_mutex, we have to take pidlist_mutex first.
3569 */
3570 mutex_lock(&l->owner->pidlist_mutex);
Ben Blum102a7752009-09-23 15:56:26 -07003571 down_write(&l->mutex);
3572 BUG_ON(!l->use_count);
3573 if (!--l->use_count) {
Ben Blum72a8cb32009-09-23 15:56:27 -07003574 /* we're the last user if refcount is 0; remove and free */
3575 list_del(&l->links);
3576 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003577 pidlist_free(l->list);
Ben Blum72a8cb32009-09-23 15:56:27 -07003578 put_pid_ns(l->key.ns);
3579 up_write(&l->mutex);
3580 kfree(l);
3581 return;
Paul Menagecc31edc2008-10-18 20:28:04 -07003582 }
Ben Blum72a8cb32009-09-23 15:56:27 -07003583 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blum102a7752009-09-23 15:56:26 -07003584 up_write(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003585}
3586
Ben Blum102a7752009-09-23 15:56:26 -07003587static int cgroup_pidlist_release(struct inode *inode, struct file *file)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003588{
Ben Blum102a7752009-09-23 15:56:26 -07003589 struct cgroup_pidlist *l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003590 if (!(file->f_mode & FMODE_READ))
3591 return 0;
Ben Blum102a7752009-09-23 15:56:26 -07003592 /*
3593 * the seq_file will only be initialized if the file was opened for
3594 * reading; hence we check if it's not null only in that case.
3595 */
3596 l = ((struct seq_file *)file->private_data)->private;
3597 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07003598 return seq_release(inode, file);
3599}
3600
Ben Blum102a7752009-09-23 15:56:26 -07003601static const struct file_operations cgroup_pidlist_operations = {
Paul Menagecc31edc2008-10-18 20:28:04 -07003602 .read = seq_read,
3603 .llseek = seq_lseek,
3604 .write = cgroup_file_write,
Ben Blum102a7752009-09-23 15:56:26 -07003605 .release = cgroup_pidlist_release,
Paul Menagecc31edc2008-10-18 20:28:04 -07003606};
3607
3608/*
Ben Blum102a7752009-09-23 15:56:26 -07003609 * The following functions handle opens on a file that displays a pidlist
3610 * (tasks or procs). Prepare an array of the process/thread IDs of whoever's
3611 * in the cgroup.
Paul Menagecc31edc2008-10-18 20:28:04 -07003612 */
Ben Blum102a7752009-09-23 15:56:26 -07003613/* helper function for the two below it */
Ben Blum72a8cb32009-09-23 15:56:27 -07003614static int cgroup_pidlist_open(struct file *file, enum cgroup_filetype type)
Paul Menagecc31edc2008-10-18 20:28:04 -07003615{
3616 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Ben Blum72a8cb32009-09-23 15:56:27 -07003617 struct cgroup_pidlist *l;
Paul Menagecc31edc2008-10-18 20:28:04 -07003618 int retval;
3619
3620 /* Nothing to do for write-only files */
3621 if (!(file->f_mode & FMODE_READ))
3622 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003623
Ben Blum102a7752009-09-23 15:56:26 -07003624 /* have the array populated */
Ben Blum72a8cb32009-09-23 15:56:27 -07003625 retval = pidlist_array_load(cgrp, type, &l);
Ben Blum102a7752009-09-23 15:56:26 -07003626 if (retval)
3627 return retval;
3628 /* configure file information */
3629 file->f_op = &cgroup_pidlist_operations;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003630
Ben Blum102a7752009-09-23 15:56:26 -07003631 retval = seq_open(file, &cgroup_pidlist_seq_operations);
Paul Menagecc31edc2008-10-18 20:28:04 -07003632 if (retval) {
Ben Blum102a7752009-09-23 15:56:26 -07003633 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07003634 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003635 }
Ben Blum102a7752009-09-23 15:56:26 -07003636 ((struct seq_file *)file->private_data)->private = l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003637 return 0;
3638}
Ben Blum102a7752009-09-23 15:56:26 -07003639static int cgroup_tasks_open(struct inode *unused, struct file *file)
3640{
Ben Blum72a8cb32009-09-23 15:56:27 -07003641 return cgroup_pidlist_open(file, CGROUP_FILE_TASKS);
Ben Blum102a7752009-09-23 15:56:26 -07003642}
3643static int cgroup_procs_open(struct inode *unused, struct file *file)
3644{
Ben Blum72a8cb32009-09-23 15:56:27 -07003645 return cgroup_pidlist_open(file, CGROUP_FILE_PROCS);
Ben Blum102a7752009-09-23 15:56:26 -07003646}
Paul Menagebbcb81d2007-10-18 23:39:32 -07003647
Paul Menagebd89aab2007-10-18 23:40:44 -07003648static u64 cgroup_read_notify_on_release(struct cgroup *cgrp,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003649 struct cftype *cft)
3650{
Paul Menagebd89aab2007-10-18 23:40:44 -07003651 return notify_on_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003652}
3653
Paul Menage6379c102008-07-25 01:47:01 -07003654static int cgroup_write_notify_on_release(struct cgroup *cgrp,
3655 struct cftype *cft,
3656 u64 val)
3657{
3658 clear_bit(CGRP_RELEASABLE, &cgrp->flags);
3659 if (val)
3660 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3661 else
3662 clear_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3663 return 0;
3664}
3665
Paul Menagebbcb81d2007-10-18 23:39:32 -07003666/*
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003667 * Unregister event and free resources.
3668 *
3669 * Gets called from workqueue.
3670 */
3671static void cgroup_event_remove(struct work_struct *work)
3672{
3673 struct cgroup_event *event = container_of(work, struct cgroup_event,
3674 remove);
3675 struct cgroup *cgrp = event->cgrp;
3676
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003677 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3678
3679 eventfd_ctx_put(event->eventfd);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003680 kfree(event);
Kirill A. Shutemova0a4db52010-03-10 15:22:34 -08003681 dput(cgrp->dentry);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003682}
3683
3684/*
3685 * Gets called on POLLHUP on eventfd when user closes it.
3686 *
3687 * Called with wqh->lock held and interrupts disabled.
3688 */
3689static int cgroup_event_wake(wait_queue_t *wait, unsigned mode,
3690 int sync, void *key)
3691{
3692 struct cgroup_event *event = container_of(wait,
3693 struct cgroup_event, wait);
3694 struct cgroup *cgrp = event->cgrp;
3695 unsigned long flags = (unsigned long)key;
3696
3697 if (flags & POLLHUP) {
Changli Gaoa93d2f12010-05-07 14:33:26 +08003698 __remove_wait_queue(event->wqh, &event->wait);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003699 spin_lock(&cgrp->event_list_lock);
3700 list_del(&event->list);
3701 spin_unlock(&cgrp->event_list_lock);
3702 /*
3703 * We are in atomic context, but cgroup_event_remove() may
3704 * sleep, so we have to call it in workqueue.
3705 */
3706 schedule_work(&event->remove);
3707 }
3708
3709 return 0;
3710}
3711
3712static void cgroup_event_ptable_queue_proc(struct file *file,
3713 wait_queue_head_t *wqh, poll_table *pt)
3714{
3715 struct cgroup_event *event = container_of(pt,
3716 struct cgroup_event, pt);
3717
3718 event->wqh = wqh;
3719 add_wait_queue(wqh, &event->wait);
3720}
3721
3722/*
3723 * Parse input and register new cgroup event handler.
3724 *
3725 * Input must be in format '<event_fd> <control_fd> <args>'.
3726 * Interpretation of args is defined by control file implementation.
3727 */
3728static int cgroup_write_event_control(struct cgroup *cgrp, struct cftype *cft,
3729 const char *buffer)
3730{
3731 struct cgroup_event *event = NULL;
3732 unsigned int efd, cfd;
3733 struct file *efile = NULL;
3734 struct file *cfile = NULL;
3735 char *endp;
3736 int ret;
3737
3738 efd = simple_strtoul(buffer, &endp, 10);
3739 if (*endp != ' ')
3740 return -EINVAL;
3741 buffer = endp + 1;
3742
3743 cfd = simple_strtoul(buffer, &endp, 10);
3744 if ((*endp != ' ') && (*endp != '\0'))
3745 return -EINVAL;
3746 buffer = endp + 1;
3747
3748 event = kzalloc(sizeof(*event), GFP_KERNEL);
3749 if (!event)
3750 return -ENOMEM;
3751 event->cgrp = cgrp;
3752 INIT_LIST_HEAD(&event->list);
3753 init_poll_funcptr(&event->pt, cgroup_event_ptable_queue_proc);
3754 init_waitqueue_func_entry(&event->wait, cgroup_event_wake);
3755 INIT_WORK(&event->remove, cgroup_event_remove);
3756
3757 efile = eventfd_fget(efd);
3758 if (IS_ERR(efile)) {
3759 ret = PTR_ERR(efile);
3760 goto fail;
3761 }
3762
3763 event->eventfd = eventfd_ctx_fileget(efile);
3764 if (IS_ERR(event->eventfd)) {
3765 ret = PTR_ERR(event->eventfd);
3766 goto fail;
3767 }
3768
3769 cfile = fget(cfd);
3770 if (!cfile) {
3771 ret = -EBADF;
3772 goto fail;
3773 }
3774
3775 /* the process need read permission on control file */
Al Viro3bfa7842011-06-19 12:55:10 -04003776 /* AV: shouldn't we check that it's been opened for read instead? */
3777 ret = inode_permission(cfile->f_path.dentry->d_inode, MAY_READ);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003778 if (ret < 0)
3779 goto fail;
3780
3781 event->cft = __file_cft(cfile);
3782 if (IS_ERR(event->cft)) {
3783 ret = PTR_ERR(event->cft);
3784 goto fail;
3785 }
3786
3787 if (!event->cft->register_event || !event->cft->unregister_event) {
3788 ret = -EINVAL;
3789 goto fail;
3790 }
3791
3792 ret = event->cft->register_event(cgrp, event->cft,
3793 event->eventfd, buffer);
3794 if (ret)
3795 goto fail;
3796
3797 if (efile->f_op->poll(efile, &event->pt) & POLLHUP) {
3798 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3799 ret = 0;
3800 goto fail;
3801 }
3802
Kirill A. Shutemova0a4db52010-03-10 15:22:34 -08003803 /*
3804 * Events should be removed after rmdir of cgroup directory, but before
3805 * destroying subsystem state objects. Let's take reference to cgroup
3806 * directory dentry to do that.
3807 */
3808 dget(cgrp->dentry);
3809
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003810 spin_lock(&cgrp->event_list_lock);
3811 list_add(&event->list, &cgrp->event_list);
3812 spin_unlock(&cgrp->event_list_lock);
3813
3814 fput(cfile);
3815 fput(efile);
3816
3817 return 0;
3818
3819fail:
3820 if (cfile)
3821 fput(cfile);
3822
3823 if (event && event->eventfd && !IS_ERR(event->eventfd))
3824 eventfd_ctx_put(event->eventfd);
3825
3826 if (!IS_ERR_OR_NULL(efile))
3827 fput(efile);
3828
3829 kfree(event);
3830
3831 return ret;
3832}
3833
Daniel Lezcano97978e62010-10-27 15:33:35 -07003834static u64 cgroup_clone_children_read(struct cgroup *cgrp,
3835 struct cftype *cft)
3836{
3837 return clone_children(cgrp);
3838}
3839
3840static int cgroup_clone_children_write(struct cgroup *cgrp,
3841 struct cftype *cft,
3842 u64 val)
3843{
3844 if (val)
3845 set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3846 else
3847 clear_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3848 return 0;
3849}
3850
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003851/*
Paul Menagebbcb81d2007-10-18 23:39:32 -07003852 * for the common functions, 'private' gives the type of file
3853 */
Ben Blum102a7752009-09-23 15:56:26 -07003854/* for hysterical raisins, we can't put this on the older files */
3855#define CGROUP_FILE_GENERIC_PREFIX "cgroup."
Paul Menage81a6a5c2007-10-18 23:39:38 -07003856static struct cftype files[] = {
3857 {
3858 .name = "tasks",
3859 .open = cgroup_tasks_open,
Paul Menageaf351022008-07-25 01:47:01 -07003860 .write_u64 = cgroup_tasks_write,
Ben Blum102a7752009-09-23 15:56:26 -07003861 .release = cgroup_pidlist_release,
Li Zefan099fca32009-04-02 16:57:29 -07003862 .mode = S_IRUGO | S_IWUSR,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003863 },
Ben Blum102a7752009-09-23 15:56:26 -07003864 {
3865 .name = CGROUP_FILE_GENERIC_PREFIX "procs",
3866 .open = cgroup_procs_open,
Ben Blum74a11662011-05-26 16:25:20 -07003867 .write_u64 = cgroup_procs_write,
Ben Blum102a7752009-09-23 15:56:26 -07003868 .release = cgroup_pidlist_release,
Ben Blum74a11662011-05-26 16:25:20 -07003869 .mode = S_IRUGO | S_IWUSR,
Ben Blum102a7752009-09-23 15:56:26 -07003870 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003871 {
3872 .name = "notify_on_release",
Paul Menagef4c753b2008-04-29 00:59:56 -07003873 .read_u64 = cgroup_read_notify_on_release,
Paul Menage6379c102008-07-25 01:47:01 -07003874 .write_u64 = cgroup_write_notify_on_release,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003875 },
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003876 {
3877 .name = CGROUP_FILE_GENERIC_PREFIX "event_control",
3878 .write_string = cgroup_write_event_control,
3879 .mode = S_IWUGO,
3880 },
Daniel Lezcano97978e62010-10-27 15:33:35 -07003881 {
3882 .name = "cgroup.clone_children",
3883 .read_u64 = cgroup_clone_children_read,
3884 .write_u64 = cgroup_clone_children_write,
3885 },
Tejun Heo6e6ff252012-04-01 12:09:55 -07003886 {
3887 .name = "release_agent",
3888 .flags = CFTYPE_ONLY_ON_ROOT,
3889 .read_seq_string = cgroup_release_agent_show,
3890 .write_string = cgroup_release_agent_write,
3891 .max_write_len = PATH_MAX,
3892 },
Tejun Heodb0416b2012-04-01 12:09:55 -07003893 { } /* terminate */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003894};
3895
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003896/**
3897 * cgroup_populate_dir - selectively creation of files in a directory
3898 * @cgrp: target cgroup
3899 * @base_files: true if the base files should be added
3900 * @subsys_mask: mask of the subsystem ids whose files should be added
3901 */
3902static int cgroup_populate_dir(struct cgroup *cgrp, bool base_files,
3903 unsigned long subsys_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003904{
3905 int err;
3906 struct cgroup_subsys *ss;
3907
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003908 if (base_files) {
3909 err = cgroup_addrm_files(cgrp, NULL, files, true);
3910 if (err < 0)
3911 return err;
3912 }
Paul Menagebbcb81d2007-10-18 23:39:32 -07003913
Tejun Heo8e3f6542012-04-01 12:09:55 -07003914 /* process cftsets of each subsystem */
Paul Menagebd89aab2007-10-18 23:40:44 -07003915 for_each_subsys(cgrp->root, ss) {
Tejun Heo8e3f6542012-04-01 12:09:55 -07003916 struct cftype_set *set;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003917 if (!test_bit(ss->subsys_id, &subsys_mask))
3918 continue;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003919
Tejun Heodb0416b2012-04-01 12:09:55 -07003920 list_for_each_entry(set, &ss->cftsets, node)
Tejun Heo79578622012-04-01 12:09:56 -07003921 cgroup_addrm_files(cgrp, ss, set->cfts, true);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003922 }
Tejun Heo8e3f6542012-04-01 12:09:55 -07003923
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003924 /* This cgroup is ready now */
3925 for_each_subsys(cgrp->root, ss) {
3926 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3927 /*
3928 * Update id->css pointer and make this css visible from
3929 * CSS ID functions. This pointer will be dereferened
3930 * from RCU-read-side without locks.
3931 */
3932 if (css->id)
3933 rcu_assign_pointer(css->id->css, css);
3934 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003935
3936 return 0;
3937}
3938
Tejun Heo48ddbe12012-04-01 12:09:56 -07003939static void css_dput_fn(struct work_struct *work)
3940{
3941 struct cgroup_subsys_state *css =
3942 container_of(work, struct cgroup_subsys_state, dput_work);
Tejun Heo5db9a4d2012-07-07 16:08:18 -07003943 struct dentry *dentry = css->cgroup->dentry;
3944 struct super_block *sb = dentry->d_sb;
Tejun Heo48ddbe12012-04-01 12:09:56 -07003945
Tejun Heo5db9a4d2012-07-07 16:08:18 -07003946 atomic_inc(&sb->s_active);
3947 dput(dentry);
3948 deactivate_super(sb);
Tejun Heo48ddbe12012-04-01 12:09:56 -07003949}
3950
Paul Menageddbcc7e2007-10-18 23:39:30 -07003951static void init_cgroup_css(struct cgroup_subsys_state *css,
3952 struct cgroup_subsys *ss,
Paul Menagebd89aab2007-10-18 23:40:44 -07003953 struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003954{
Paul Menagebd89aab2007-10-18 23:40:44 -07003955 css->cgroup = cgrp;
Paul Menagee7c5ec92009-01-07 18:08:38 -08003956 atomic_set(&css->refcnt, 1);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003957 css->flags = 0;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003958 css->id = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07003959 if (cgrp == dummytop)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003960 set_bit(CSS_ROOT, &css->flags);
Paul Menagebd89aab2007-10-18 23:40:44 -07003961 BUG_ON(cgrp->subsys[ss->subsys_id]);
3962 cgrp->subsys[ss->subsys_id] = css;
Tejun Heo48ddbe12012-04-01 12:09:56 -07003963
3964 /*
Tejun Heoed9577932012-11-05 09:16:58 -08003965 * css holds an extra ref to @cgrp->dentry which is put on the last
3966 * css_put(). dput() requires process context, which css_put() may
3967 * be called without. @css->dput_work will be used to invoke
3968 * dput() asynchronously from css_put().
Tejun Heo48ddbe12012-04-01 12:09:56 -07003969 */
3970 INIT_WORK(&css->dput_work, css_dput_fn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003971}
3972
3973/*
Li Zefana043e3b2008-02-23 15:24:09 -08003974 * cgroup_create - create a cgroup
3975 * @parent: cgroup that will be parent of the new cgroup
3976 * @dentry: dentry of the new cgroup
3977 * @mode: mode to set on new inode
Paul Menageddbcc7e2007-10-18 23:39:30 -07003978 *
Li Zefana043e3b2008-02-23 15:24:09 -08003979 * Must be called with the mutex on the parent inode held
Paul Menageddbcc7e2007-10-18 23:39:30 -07003980 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07003981static long cgroup_create(struct cgroup *parent, struct dentry *dentry,
Al Viroa5e7ed32011-07-26 01:55:55 -04003982 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003983{
Paul Menagebd89aab2007-10-18 23:40:44 -07003984 struct cgroup *cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003985 struct cgroupfs_root *root = parent->root;
3986 int err = 0;
3987 struct cgroup_subsys *ss;
3988 struct super_block *sb = root->sb;
3989
Paul Menagebd89aab2007-10-18 23:40:44 -07003990 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
3991 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003992 return -ENOMEM;
3993
Tejun Heo976c06b2012-11-05 09:16:59 -08003994 /*
3995 * Only live parents can have children. Note that the liveliness
3996 * check isn't strictly necessary because cgroup_mkdir() and
3997 * cgroup_rmdir() are fully synchronized by i_mutex; however, do it
3998 * anyway so that locking is contained inside cgroup proper and we
3999 * don't get nasty surprises if we ever grow another caller.
4000 */
4001 if (!cgroup_lock_live_group(parent)) {
4002 err = -ENODEV;
4003 goto err_free;
4004 }
4005
Paul Menageddbcc7e2007-10-18 23:39:30 -07004006 /* Grab a reference on the superblock so the hierarchy doesn't
4007 * get deleted on unmount if there are child cgroups. This
4008 * can be done outside cgroup_mutex, since the sb can't
4009 * disappear while someone has an open control file on the
4010 * fs */
4011 atomic_inc(&sb->s_active);
4012
Paul Menagecc31edc2008-10-18 20:28:04 -07004013 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004014
Paul Menagebd89aab2007-10-18 23:40:44 -07004015 cgrp->parent = parent;
4016 cgrp->root = parent->root;
4017 cgrp->top_cgroup = parent->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004018
Li Zefanb6abdb02008-03-04 14:28:19 -08004019 if (notify_on_release(parent))
4020 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
4021
Daniel Lezcano97978e62010-10-27 15:33:35 -07004022 if (clone_children(parent))
4023 set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
4024
Paul Menageddbcc7e2007-10-18 23:39:30 -07004025 for_each_subsys(root, ss) {
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07004026 struct cgroup_subsys_state *css;
Li Zefan4528fd02010-02-02 13:44:10 -08004027
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07004028 css = ss->create(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004029 if (IS_ERR(css)) {
4030 err = PTR_ERR(css);
4031 goto err_destroy;
4032 }
Paul Menagebd89aab2007-10-18 23:40:44 -07004033 init_cgroup_css(css, ss, cgrp);
Li Zefan4528fd02010-02-02 13:44:10 -08004034 if (ss->use_id) {
4035 err = alloc_css_id(ss, parent, cgrp);
4036 if (err)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004037 goto err_destroy;
Li Zefan4528fd02010-02-02 13:44:10 -08004038 }
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004039 /* At error, ->destroy() callback has to free assigned ID. */
Daniel Lezcano97978e62010-10-27 15:33:35 -07004040 if (clone_children(parent) && ss->post_clone)
Li Zefan761b3ef2012-01-31 13:47:36 +08004041 ss->post_clone(cgrp);
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07004042
4043 if (ss->broken_hierarchy && !ss->warned_broken_hierarchy &&
4044 parent->parent) {
4045 pr_warning("cgroup: %s (%d) created nested cgroup for controller \"%s\" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.\n",
4046 current->comm, current->pid, ss->name);
4047 if (!strcmp(ss->name, "memory"))
4048 pr_warning("cgroup: \"memory\" requires setting use_hierarchy to 1 on the root.\n");
4049 ss->warned_broken_hierarchy = true;
4050 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004051 }
4052
Tejun Heoeb6fd502012-11-09 09:12:29 -08004053 list_add_tail_rcu(&cgrp->sibling, &cgrp->parent->children);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004054 root->number_of_cgroups++;
4055
Paul Menagebd89aab2007-10-18 23:40:44 -07004056 err = cgroup_create_dir(cgrp, dentry, mode);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004057 if (err < 0)
4058 goto err_remove;
4059
Tejun Heoa8638032012-11-09 09:12:29 -08004060 for_each_subsys(root, ss) {
4061 /* each css holds a ref to the cgroup's dentry */
Tejun Heoed9577932012-11-05 09:16:58 -08004062 dget(dentry);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004063
Tejun Heoa8638032012-11-09 09:12:29 -08004064 /* creation succeeded, notify subsystems */
4065 if (ss->post_create)
4066 ss->post_create(cgrp);
4067 }
4068
Paul Menageddbcc7e2007-10-18 23:39:30 -07004069 /* The cgroup directory was pre-locked for us */
Paul Menagebd89aab2007-10-18 23:40:44 -07004070 BUG_ON(!mutex_is_locked(&cgrp->dentry->d_inode->i_mutex));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004071
Tejun Heob0ca5a82012-04-01 12:09:54 -07004072 list_add_tail(&cgrp->allcg_node, &root->allcg_list);
4073
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04004074 err = cgroup_populate_dir(cgrp, true, root->subsys_mask);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004075 /* If err < 0, we have a half-filled directory - oh well ;) */
4076
4077 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07004078 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004079
4080 return 0;
4081
4082 err_remove:
4083
Tejun Heoeb6fd502012-11-09 09:12:29 -08004084 list_del_rcu(&cgrp->sibling);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004085 root->number_of_cgroups--;
4086
4087 err_destroy:
4088
4089 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07004090 if (cgrp->subsys[ss->subsys_id])
Li Zefan761b3ef2012-01-31 13:47:36 +08004091 ss->destroy(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004092 }
4093
4094 mutex_unlock(&cgroup_mutex);
4095
4096 /* Release the reference count that we took on the superblock */
4097 deactivate_super(sb);
Tejun Heo976c06b2012-11-05 09:16:59 -08004098err_free:
Paul Menagebd89aab2007-10-18 23:40:44 -07004099 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004100 return err;
4101}
4102
Al Viro18bb1db2011-07-26 01:41:39 -04004103static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004104{
4105 struct cgroup *c_parent = dentry->d_parent->d_fsdata;
4106
4107 /* the vfs holds inode->i_mutex already */
4108 return cgroup_create(c_parent, dentry, mode | S_IFDIR);
4109}
4110
Tejun Heo28b4c272012-04-01 12:09:56 -07004111/*
4112 * Check the reference count on each subsystem. Since we already
4113 * established that there are no tasks in the cgroup, if the css refcount
4114 * is also 1, then there should be no outstanding references, so the
4115 * subsystem is safe to destroy. We scan across all subsystems rather than
4116 * using the per-hierarchy linked list of mounted subsystems since we can
4117 * be called via check_for_release() with no synchronization other than
4118 * RCU, and the subsystem linked list isn't RCU-safe.
4119 */
Li Zefan55b6fd02008-07-29 22:33:20 -07004120static int cgroup_has_css_refs(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004121{
Paul Menage81a6a5c2007-10-18 23:39:38 -07004122 int i;
Tejun Heo28b4c272012-04-01 12:09:56 -07004123
Ben Blumaae8aab2010-03-10 15:22:07 -08004124 /*
4125 * We won't need to lock the subsys array, because the subsystems
4126 * we're concerned about aren't going anywhere since our cgroup root
4127 * has a reference on them.
4128 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004129 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
4130 struct cgroup_subsys *ss = subsys[i];
4131 struct cgroup_subsys_state *css;
Tejun Heo28b4c272012-04-01 12:09:56 -07004132
Ben Blumaae8aab2010-03-10 15:22:07 -08004133 /* Skip subsystems not present or not in this hierarchy */
4134 if (ss == NULL || ss->root != cgrp->root)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004135 continue;
Tejun Heo28b4c272012-04-01 12:09:56 -07004136
Paul Menagebd89aab2007-10-18 23:40:44 -07004137 css = cgrp->subsys[ss->subsys_id];
Tejun Heo28b4c272012-04-01 12:09:56 -07004138 /*
4139 * When called from check_for_release() it's possible
Paul Menage81a6a5c2007-10-18 23:39:38 -07004140 * that by this point the cgroup has been removed
4141 * and the css deleted. But a false-positive doesn't
4142 * matter, since it can only happen if the cgroup
4143 * has been deleted and hence no longer needs the
Tejun Heo28b4c272012-04-01 12:09:56 -07004144 * release agent to be called anyway.
4145 */
4146 if (css && css_refcnt(css) > 1)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004147 return 1;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004148 }
4149 return 0;
4150}
4151
Paul Menageddbcc7e2007-10-18 23:39:30 -07004152static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry)
4153{
Paul Menagebd89aab2007-10-18 23:40:44 -07004154 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004155 struct dentry *d;
4156 struct cgroup *parent;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004157 DEFINE_WAIT(wait);
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08004158 struct cgroup_event *event, *tmp;
Tejun Heoed9577932012-11-05 09:16:58 -08004159 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004160
4161 /* the vfs holds both inode->i_mutex already */
KAMEZAWA Hiroyuki3fa59df2008-11-19 15:36:34 -08004162 mutex_lock(&cgroup_mutex);
4163 parent = cgrp->parent;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004164 if (atomic_read(&cgrp->count) || !list_empty(&cgrp->children)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004165 mutex_unlock(&cgroup_mutex);
4166 return -EBUSY;
4167 }
Tejun Heoed9577932012-11-05 09:16:58 -08004168
Tejun Heo1a90dd52012-11-05 09:16:59 -08004169 /*
4170 * Block new css_tryget() by deactivating refcnt and mark @cgrp
4171 * removed. This makes future css_tryget() and child creation
4172 * attempts fail thus maintaining the removal conditions verified
4173 * above.
4174 */
Tejun Heoed9577932012-11-05 09:16:58 -08004175 for_each_subsys(cgrp->root, ss) {
4176 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
4177
4178 WARN_ON(atomic_read(&css->refcnt) < 0);
4179 atomic_add(CSS_DEACT_BIAS, &css->refcnt);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004180 }
Tejun Heo1a90dd52012-11-05 09:16:59 -08004181 set_bit(CGRP_REMOVED, &cgrp->flags);
4182
4183 /*
4184 * Tell subsystems to initate destruction. pre_destroy() should be
4185 * called with cgroup_mutex unlocked. See 3fa59dfbc3 ("cgroup: fix
4186 * potential deadlock in pre_destroy") for details.
4187 */
4188 mutex_unlock(&cgroup_mutex);
4189 for_each_subsys(cgrp->root, ss)
4190 if (ss->pre_destroy)
Tejun Heobcf6de12012-11-05 09:16:59 -08004191 ss->pre_destroy(cgrp);
Tejun Heo1a90dd52012-11-05 09:16:59 -08004192 mutex_lock(&cgroup_mutex);
Tejun Heoed9577932012-11-05 09:16:58 -08004193
4194 /*
Tejun Heoed9577932012-11-05 09:16:58 -08004195 * Put all the base refs. Each css holds an extra reference to the
4196 * cgroup's dentry and cgroup removal proceeds regardless of css
4197 * refs. On the last put of each css, whenever that may be, the
4198 * extra dentry ref is put so that dentry destruction happens only
4199 * after all css's are released.
4200 */
Tejun Heoe9316082012-11-05 09:16:58 -08004201 for_each_subsys(cgrp->root, ss)
4202 css_put(cgrp->subsys[ss->subsys_id]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004203
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004204 raw_spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07004205 if (!list_empty(&cgrp->release_list))
Phil Carmody8d258792011-03-22 16:30:13 -07004206 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004207 raw_spin_unlock(&release_list_lock);
Paul Menage999cd8a2009-01-07 18:08:36 -08004208
Paul Menage999cd8a2009-01-07 18:08:36 -08004209 /* delete this cgroup from parent->children */
Tejun Heoeb6fd502012-11-09 09:12:29 -08004210 list_del_rcu(&cgrp->sibling);
Paul Menage999cd8a2009-01-07 18:08:36 -08004211
Tejun Heob0ca5a82012-04-01 12:09:54 -07004212 list_del_init(&cgrp->allcg_node);
4213
Paul Menagebd89aab2007-10-18 23:40:44 -07004214 d = dget(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004215
4216 cgroup_d_remove_dir(d);
4217 dput(d);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004218
Paul Menagebd89aab2007-10-18 23:40:44 -07004219 set_bit(CGRP_RELEASABLE, &parent->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004220 check_for_release(parent);
4221
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08004222 /*
4223 * Unregister events and notify userspace.
4224 * Notify userspace about cgroup removing only after rmdir of cgroup
4225 * directory to avoid race between userspace and kernelspace
4226 */
4227 spin_lock(&cgrp->event_list_lock);
4228 list_for_each_entry_safe(event, tmp, &cgrp->event_list, list) {
4229 list_del(&event->list);
4230 remove_wait_queue(event->wqh, &event->wait);
4231 eventfd_signal(event->eventfd, 1);
4232 schedule_work(&event->remove);
4233 }
4234 spin_unlock(&cgrp->event_list_lock);
4235
Paul Menageddbcc7e2007-10-18 23:39:30 -07004236 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004237 return 0;
4238}
4239
Tejun Heo8e3f6542012-04-01 12:09:55 -07004240static void __init_or_module cgroup_init_cftsets(struct cgroup_subsys *ss)
4241{
4242 INIT_LIST_HEAD(&ss->cftsets);
4243
4244 /*
4245 * base_cftset is embedded in subsys itself, no need to worry about
4246 * deregistration.
4247 */
4248 if (ss->base_cftypes) {
4249 ss->base_cftset.cfts = ss->base_cftypes;
4250 list_add_tail(&ss->base_cftset.node, &ss->cftsets);
4251 }
4252}
4253
Li Zefan06a11922008-04-29 01:00:07 -07004254static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004255{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004256 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08004257
4258 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004259
Tejun Heo8e3f6542012-04-01 12:09:55 -07004260 /* init base cftset */
4261 cgroup_init_cftsets(ss);
4262
Paul Menageddbcc7e2007-10-18 23:39:30 -07004263 /* Create the top cgroup state for this subsystem */
Li Zefan33a68ac2009-01-07 18:07:42 -08004264 list_add(&ss->sibling, &rootnode.subsys_list);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004265 ss->root = &rootnode;
Li Zefan761b3ef2012-01-31 13:47:36 +08004266 css = ss->create(dummytop);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004267 /* We don't handle early failures gracefully */
4268 BUG_ON(IS_ERR(css));
4269 init_cgroup_css(css, ss, dummytop);
4270
Li Zefane8d55fd2008-04-29 01:00:13 -07004271 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07004272 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07004273 * newly registered, all tasks and hence the
4274 * init_css_set is in the subsystem's top cgroup. */
4275 init_css_set.subsys[ss->subsys_id] = dummytop->subsys[ss->subsys_id];
Paul Menageddbcc7e2007-10-18 23:39:30 -07004276
4277 need_forkexit_callback |= ss->fork || ss->exit;
4278
Li Zefane8d55fd2008-04-29 01:00:13 -07004279 /* At system boot, before all subsystems have been
4280 * registered, no tasks have been forked, so we don't
4281 * need to invoke fork callbacks here. */
4282 BUG_ON(!list_empty(&init_task.tasks));
4283
Paul Menageddbcc7e2007-10-18 23:39:30 -07004284 ss->active = 1;
Ben Blume6a11052010-03-10 15:22:09 -08004285
Tejun Heoa8638032012-11-09 09:12:29 -08004286 if (ss->post_create)
4287 ss->post_create(&ss->root->top_cgroup);
4288
Ben Blume6a11052010-03-10 15:22:09 -08004289 /* this function shouldn't be used with modular subsystems, since they
4290 * need to register a subsys_id, among other things */
4291 BUG_ON(ss->module);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004292}
4293
4294/**
Ben Blume6a11052010-03-10 15:22:09 -08004295 * cgroup_load_subsys: load and register a modular subsystem at runtime
4296 * @ss: the subsystem to load
4297 *
4298 * This function should be called in a modular subsystem's initcall. If the
Thomas Weber88393162010-03-16 11:47:56 +01004299 * subsystem is built as a module, it will be assigned a new subsys_id and set
Ben Blume6a11052010-03-10 15:22:09 -08004300 * up for use. If the subsystem is built-in anyway, work is delegated to the
4301 * simpler cgroup_init_subsys.
4302 */
4303int __init_or_module cgroup_load_subsys(struct cgroup_subsys *ss)
4304{
4305 int i;
4306 struct cgroup_subsys_state *css;
4307
4308 /* check name and function validity */
4309 if (ss->name == NULL || strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN ||
4310 ss->create == NULL || ss->destroy == NULL)
4311 return -EINVAL;
4312
4313 /*
4314 * we don't support callbacks in modular subsystems. this check is
4315 * before the ss->module check for consistency; a subsystem that could
4316 * be a module should still have no callbacks even if the user isn't
4317 * compiling it as one.
4318 */
4319 if (ss->fork || ss->exit)
4320 return -EINVAL;
4321
4322 /*
4323 * an optionally modular subsystem is built-in: we want to do nothing,
4324 * since cgroup_init_subsys will have already taken care of it.
4325 */
4326 if (ss->module == NULL) {
Daniel Wagnerbe45c902012-09-13 09:50:55 +02004327 /* a sanity check */
Ben Blume6a11052010-03-10 15:22:09 -08004328 BUG_ON(subsys[ss->subsys_id] != ss);
4329 return 0;
4330 }
4331
Tejun Heo8e3f6542012-04-01 12:09:55 -07004332 /* init base cftset */
4333 cgroup_init_cftsets(ss);
4334
Ben Blume6a11052010-03-10 15:22:09 -08004335 mutex_lock(&cgroup_mutex);
Daniel Wagner8a8e04d2012-09-12 16:12:07 +02004336 subsys[ss->subsys_id] = ss;
Ben Blume6a11052010-03-10 15:22:09 -08004337
4338 /*
4339 * no ss->create seems to need anything important in the ss struct, so
4340 * this can happen first (i.e. before the rootnode attachment).
4341 */
Li Zefan761b3ef2012-01-31 13:47:36 +08004342 css = ss->create(dummytop);
Ben Blume6a11052010-03-10 15:22:09 -08004343 if (IS_ERR(css)) {
4344 /* failure case - need to deassign the subsys[] slot. */
Daniel Wagner8a8e04d2012-09-12 16:12:07 +02004345 subsys[ss->subsys_id] = NULL;
Ben Blume6a11052010-03-10 15:22:09 -08004346 mutex_unlock(&cgroup_mutex);
4347 return PTR_ERR(css);
4348 }
4349
4350 list_add(&ss->sibling, &rootnode.subsys_list);
4351 ss->root = &rootnode;
4352
4353 /* our new subsystem will be attached to the dummy hierarchy. */
4354 init_cgroup_css(css, ss, dummytop);
4355 /* init_idr must be after init_cgroup_css because it sets css->id. */
4356 if (ss->use_id) {
4357 int ret = cgroup_init_idr(ss, css);
4358 if (ret) {
4359 dummytop->subsys[ss->subsys_id] = NULL;
Li Zefan761b3ef2012-01-31 13:47:36 +08004360 ss->destroy(dummytop);
Daniel Wagner8a8e04d2012-09-12 16:12:07 +02004361 subsys[ss->subsys_id] = NULL;
Ben Blume6a11052010-03-10 15:22:09 -08004362 mutex_unlock(&cgroup_mutex);
4363 return ret;
4364 }
4365 }
4366
4367 /*
4368 * Now we need to entangle the css into the existing css_sets. unlike
4369 * in cgroup_init_subsys, there are now multiple css_sets, so each one
4370 * will need a new pointer to it; done by iterating the css_set_table.
4371 * furthermore, modifying the existing css_sets will corrupt the hash
4372 * table state, so each changed css_set will need its hash recomputed.
4373 * this is all done under the css_set_lock.
4374 */
4375 write_lock(&css_set_lock);
4376 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
4377 struct css_set *cg;
4378 struct hlist_node *node, *tmp;
4379 struct hlist_head *bucket = &css_set_table[i], *new_bucket;
4380
4381 hlist_for_each_entry_safe(cg, node, tmp, bucket, hlist) {
4382 /* skip entries that we already rehashed */
4383 if (cg->subsys[ss->subsys_id])
4384 continue;
4385 /* remove existing entry */
4386 hlist_del(&cg->hlist);
4387 /* set new value */
4388 cg->subsys[ss->subsys_id] = css;
4389 /* recompute hash and restore entry */
4390 new_bucket = css_set_hash(cg->subsys);
4391 hlist_add_head(&cg->hlist, new_bucket);
4392 }
4393 }
4394 write_unlock(&css_set_lock);
4395
Ben Blume6a11052010-03-10 15:22:09 -08004396 ss->active = 1;
4397
Tejun Heoa8638032012-11-09 09:12:29 -08004398 if (ss->post_create)
4399 ss->post_create(&ss->root->top_cgroup);
4400
Ben Blume6a11052010-03-10 15:22:09 -08004401 /* success! */
4402 mutex_unlock(&cgroup_mutex);
4403 return 0;
4404}
4405EXPORT_SYMBOL_GPL(cgroup_load_subsys);
4406
4407/**
Ben Blumcf5d5942010-03-10 15:22:09 -08004408 * cgroup_unload_subsys: unload a modular subsystem
4409 * @ss: the subsystem to unload
4410 *
4411 * This function should be called in a modular subsystem's exitcall. When this
4412 * function is invoked, the refcount on the subsystem's module will be 0, so
4413 * the subsystem will not be attached to any hierarchy.
4414 */
4415void cgroup_unload_subsys(struct cgroup_subsys *ss)
4416{
4417 struct cg_cgroup_link *link;
4418 struct hlist_head *hhead;
4419
4420 BUG_ON(ss->module == NULL);
4421
4422 /*
4423 * we shouldn't be called if the subsystem is in use, and the use of
4424 * try_module_get in parse_cgroupfs_options should ensure that it
4425 * doesn't start being used while we're killing it off.
4426 */
4427 BUG_ON(ss->root != &rootnode);
4428
4429 mutex_lock(&cgroup_mutex);
4430 /* deassign the subsys_id */
Ben Blumcf5d5942010-03-10 15:22:09 -08004431 subsys[ss->subsys_id] = NULL;
4432
4433 /* remove subsystem from rootnode's list of subsystems */
Phil Carmody8d258792011-03-22 16:30:13 -07004434 list_del_init(&ss->sibling);
Ben Blumcf5d5942010-03-10 15:22:09 -08004435
4436 /*
4437 * disentangle the css from all css_sets attached to the dummytop. as
4438 * in loading, we need to pay our respects to the hashtable gods.
4439 */
4440 write_lock(&css_set_lock);
4441 list_for_each_entry(link, &dummytop->css_sets, cgrp_link_list) {
4442 struct css_set *cg = link->cg;
4443
4444 hlist_del(&cg->hlist);
4445 BUG_ON(!cg->subsys[ss->subsys_id]);
4446 cg->subsys[ss->subsys_id] = NULL;
4447 hhead = css_set_hash(cg->subsys);
4448 hlist_add_head(&cg->hlist, hhead);
4449 }
4450 write_unlock(&css_set_lock);
4451
4452 /*
4453 * remove subsystem's css from the dummytop and free it - need to free
4454 * before marking as null because ss->destroy needs the cgrp->subsys
4455 * pointer to find their state. note that this also takes care of
4456 * freeing the css_id.
4457 */
Li Zefan761b3ef2012-01-31 13:47:36 +08004458 ss->destroy(dummytop);
Ben Blumcf5d5942010-03-10 15:22:09 -08004459 dummytop->subsys[ss->subsys_id] = NULL;
4460
4461 mutex_unlock(&cgroup_mutex);
4462}
4463EXPORT_SYMBOL_GPL(cgroup_unload_subsys);
4464
4465/**
Li Zefana043e3b2008-02-23 15:24:09 -08004466 * cgroup_init_early - cgroup initialization at system boot
4467 *
4468 * Initialize cgroups at system boot, and initialize any
4469 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004470 */
4471int __init cgroup_init_early(void)
4472{
4473 int i;
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07004474 atomic_set(&init_css_set.refcount, 1);
Paul Menage817929e2007-10-18 23:39:36 -07004475 INIT_LIST_HEAD(&init_css_set.cg_links);
4476 INIT_LIST_HEAD(&init_css_set.tasks);
Li Zefan472b1052008-04-29 01:00:11 -07004477 INIT_HLIST_NODE(&init_css_set.hlist);
Paul Menage817929e2007-10-18 23:39:36 -07004478 css_set_count = 1;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004479 init_cgroup_root(&rootnode);
Paul Menage817929e2007-10-18 23:39:36 -07004480 root_count = 1;
4481 init_task.cgroups = &init_css_set;
4482
4483 init_css_set_link.cg = &init_css_set;
Paul Menage7717f7b2009-09-23 15:56:22 -07004484 init_css_set_link.cgrp = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -07004485 list_add(&init_css_set_link.cgrp_link_list,
Paul Menage817929e2007-10-18 23:39:36 -07004486 &rootnode.top_cgroup.css_sets);
4487 list_add(&init_css_set_link.cg_link_list,
4488 &init_css_set.cg_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004489
Li Zefan472b1052008-04-29 01:00:11 -07004490 for (i = 0; i < CSS_SET_TABLE_SIZE; i++)
4491 INIT_HLIST_HEAD(&css_set_table[i]);
4492
Daniel Wagnerbe45c902012-09-13 09:50:55 +02004493 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004494 struct cgroup_subsys *ss = subsys[i];
4495
Daniel Wagnerbe45c902012-09-13 09:50:55 +02004496 /* at bootup time, we don't worry about modular subsystems */
4497 if (!ss || ss->module)
4498 continue;
4499
Paul Menageddbcc7e2007-10-18 23:39:30 -07004500 BUG_ON(!ss->name);
4501 BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN);
4502 BUG_ON(!ss->create);
4503 BUG_ON(!ss->destroy);
4504 if (ss->subsys_id != i) {
Diego Callejacfe36bd2007-11-14 16:58:54 -08004505 printk(KERN_ERR "cgroup: Subsys %s id == %d\n",
Paul Menageddbcc7e2007-10-18 23:39:30 -07004506 ss->name, ss->subsys_id);
4507 BUG();
4508 }
4509
4510 if (ss->early_init)
4511 cgroup_init_subsys(ss);
4512 }
4513 return 0;
4514}
4515
4516/**
Li Zefana043e3b2008-02-23 15:24:09 -08004517 * cgroup_init - cgroup initialization
4518 *
4519 * Register cgroup filesystem and /proc file, and initialize
4520 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004521 */
4522int __init cgroup_init(void)
4523{
4524 int err;
4525 int i;
Li Zefan472b1052008-04-29 01:00:11 -07004526 struct hlist_head *hhead;
Paul Menagea4243162007-10-18 23:39:35 -07004527
4528 err = bdi_init(&cgroup_backing_dev_info);
4529 if (err)
4530 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004531
Daniel Wagnerbe45c902012-09-13 09:50:55 +02004532 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004533 struct cgroup_subsys *ss = subsys[i];
Daniel Wagnerbe45c902012-09-13 09:50:55 +02004534
4535 /* at bootup time, we don't worry about modular subsystems */
4536 if (!ss || ss->module)
4537 continue;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004538 if (!ss->early_init)
4539 cgroup_init_subsys(ss);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004540 if (ss->use_id)
Ben Blume6a11052010-03-10 15:22:09 -08004541 cgroup_init_idr(ss, init_css_set.subsys[ss->subsys_id]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004542 }
4543
Li Zefan472b1052008-04-29 01:00:11 -07004544 /* Add init_css_set to the hash table */
4545 hhead = css_set_hash(init_css_set.subsys);
4546 hlist_add_head(&init_css_set.hlist, hhead);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004547 BUG_ON(!init_root_id(&rootnode));
Greg KH676db4a2010-08-05 13:53:35 -07004548
4549 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
4550 if (!cgroup_kobj) {
4551 err = -ENOMEM;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004552 goto out;
Greg KH676db4a2010-08-05 13:53:35 -07004553 }
4554
4555 err = register_filesystem(&cgroup_fs_type);
4556 if (err < 0) {
4557 kobject_put(cgroup_kobj);
4558 goto out;
4559 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004560
Li Zefan46ae2202008-04-29 01:00:08 -07004561 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Paul Menagea4243162007-10-18 23:39:35 -07004562
Paul Menageddbcc7e2007-10-18 23:39:30 -07004563out:
Paul Menagea4243162007-10-18 23:39:35 -07004564 if (err)
4565 bdi_destroy(&cgroup_backing_dev_info);
4566
Paul Menageddbcc7e2007-10-18 23:39:30 -07004567 return err;
4568}
Paul Menageb4f48b62007-10-18 23:39:33 -07004569
Paul Menagea4243162007-10-18 23:39:35 -07004570/*
4571 * proc_cgroup_show()
4572 * - Print task's cgroup paths into seq_file, one line for each hierarchy
4573 * - Used for /proc/<pid>/cgroup.
4574 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
4575 * doesn't really matter if tsk->cgroup changes after we read it,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004576 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
Paul Menagea4243162007-10-18 23:39:35 -07004577 * anyway. No need to check that tsk->cgroup != NULL, thanks to
4578 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
4579 * cgroup to top_cgroup.
4580 */
4581
4582/* TODO: Use a proper seq_file iterator */
4583static int proc_cgroup_show(struct seq_file *m, void *v)
4584{
4585 struct pid *pid;
4586 struct task_struct *tsk;
4587 char *buf;
4588 int retval;
4589 struct cgroupfs_root *root;
4590
4591 retval = -ENOMEM;
4592 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
4593 if (!buf)
4594 goto out;
4595
4596 retval = -ESRCH;
4597 pid = m->private;
4598 tsk = get_pid_task(pid, PIDTYPE_PID);
4599 if (!tsk)
4600 goto out_free;
4601
4602 retval = 0;
4603
4604 mutex_lock(&cgroup_mutex);
4605
Li Zefane5f6a862009-01-07 18:07:41 -08004606 for_each_active_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07004607 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07004608 struct cgroup *cgrp;
Paul Menagea4243162007-10-18 23:39:35 -07004609 int count = 0;
4610
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004611 seq_printf(m, "%d:", root->hierarchy_id);
Paul Menagea4243162007-10-18 23:39:35 -07004612 for_each_subsys(root, ss)
4613 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07004614 if (strlen(root->name))
4615 seq_printf(m, "%sname=%s", count ? "," : "",
4616 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07004617 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07004618 cgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07004619 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
Paul Menagea4243162007-10-18 23:39:35 -07004620 if (retval < 0)
4621 goto out_unlock;
4622 seq_puts(m, buf);
4623 seq_putc(m, '\n');
4624 }
4625
4626out_unlock:
4627 mutex_unlock(&cgroup_mutex);
4628 put_task_struct(tsk);
4629out_free:
4630 kfree(buf);
4631out:
4632 return retval;
4633}
4634
4635static int cgroup_open(struct inode *inode, struct file *file)
4636{
4637 struct pid *pid = PROC_I(inode)->pid;
4638 return single_open(file, proc_cgroup_show, pid);
4639}
4640
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004641const struct file_operations proc_cgroup_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004642 .open = cgroup_open,
4643 .read = seq_read,
4644 .llseek = seq_lseek,
4645 .release = single_release,
4646};
4647
4648/* Display information about each subsystem and each hierarchy */
4649static int proc_cgroupstats_show(struct seq_file *m, void *v)
4650{
4651 int i;
Paul Menagea4243162007-10-18 23:39:35 -07004652
Paul Menage8bab8dd2008-04-04 14:29:57 -07004653 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08004654 /*
4655 * ideally we don't want subsystems moving around while we do this.
4656 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
4657 * subsys/hierarchy state.
4658 */
Paul Menagea4243162007-10-18 23:39:35 -07004659 mutex_lock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07004660 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
4661 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08004662 if (ss == NULL)
4663 continue;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004664 seq_printf(m, "%s\t%d\t%d\t%d\n",
4665 ss->name, ss->root->hierarchy_id,
Paul Menage8bab8dd2008-04-04 14:29:57 -07004666 ss->root->number_of_cgroups, !ss->disabled);
Paul Menagea4243162007-10-18 23:39:35 -07004667 }
4668 mutex_unlock(&cgroup_mutex);
4669 return 0;
4670}
4671
4672static int cgroupstats_open(struct inode *inode, struct file *file)
4673{
Al Viro9dce07f2008-03-29 03:07:28 +00004674 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07004675}
4676
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004677static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004678 .open = cgroupstats_open,
4679 .read = seq_read,
4680 .llseek = seq_lseek,
4681 .release = single_release,
4682};
4683
Paul Menageb4f48b62007-10-18 23:39:33 -07004684/**
4685 * cgroup_fork - attach newly forked task to its parents cgroup.
Li Zefana043e3b2008-02-23 15:24:09 -08004686 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07004687 *
4688 * Description: A task inherits its parent's cgroup at fork().
4689 *
4690 * A pointer to the shared css_set was automatically copied in
4691 * fork.c by dup_task_struct(). However, we ignore that copy, since
Tejun Heo9bb71302012-10-18 17:52:07 -07004692 * it was not made under the protection of RCU or cgroup_mutex, so
4693 * might no longer be a valid cgroup pointer. cgroup_attach_task() might
4694 * have already changed current->cgroups, allowing the previously
4695 * referenced cgroup group to be removed and freed.
Paul Menageb4f48b62007-10-18 23:39:33 -07004696 *
4697 * At the point that cgroup_fork() is called, 'current' is the parent
4698 * task, and the passed argument 'child' points to the child task.
4699 */
4700void cgroup_fork(struct task_struct *child)
4701{
Tejun Heo9bb71302012-10-18 17:52:07 -07004702 task_lock(current);
Paul Menage817929e2007-10-18 23:39:36 -07004703 child->cgroups = current->cgroups;
4704 get_css_set(child->cgroups);
Tejun Heo9bb71302012-10-18 17:52:07 -07004705 task_unlock(current);
Paul Menage817929e2007-10-18 23:39:36 -07004706 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07004707}
4708
4709/**
Li Zefana043e3b2008-02-23 15:24:09 -08004710 * cgroup_post_fork - called on a new task after adding it to the task list
4711 * @child: the task in question
4712 *
Tejun Heo5edee612012-10-16 15:03:14 -07004713 * Adds the task to the list running through its css_set if necessary and
4714 * call the subsystem fork() callbacks. Has to be after the task is
4715 * visible on the task list in case we race with the first call to
4716 * cgroup_iter_start() - to guarantee that the new task ends up on its
4717 * list.
Li Zefana043e3b2008-02-23 15:24:09 -08004718 */
Paul Menage817929e2007-10-18 23:39:36 -07004719void cgroup_post_fork(struct task_struct *child)
4720{
Tejun Heo5edee612012-10-16 15:03:14 -07004721 int i;
4722
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01004723 /*
4724 * use_task_css_set_links is set to 1 before we walk the tasklist
4725 * under the tasklist_lock and we read it here after we added the child
4726 * to the tasklist under the tasklist_lock as well. If the child wasn't
4727 * yet in the tasklist when we walked through it from
4728 * cgroup_enable_task_cg_lists(), then use_task_css_set_links value
4729 * should be visible now due to the paired locking and barriers implied
4730 * by LOCK/UNLOCK: it is written before the tasklist_lock unlock
4731 * in cgroup_enable_task_cg_lists() and read here after the tasklist_lock
4732 * lock on fork.
4733 */
Paul Menage817929e2007-10-18 23:39:36 -07004734 if (use_task_css_set_links) {
4735 write_lock(&css_set_lock);
Tejun Heod8783832012-10-18 17:40:30 -07004736 task_lock(child);
4737 if (list_empty(&child->cg_list))
Paul Menage817929e2007-10-18 23:39:36 -07004738 list_add(&child->cg_list, &child->cgroups->tasks);
Tejun Heod8783832012-10-18 17:40:30 -07004739 task_unlock(child);
Paul Menage817929e2007-10-18 23:39:36 -07004740 write_unlock(&css_set_lock);
4741 }
Tejun Heo5edee612012-10-16 15:03:14 -07004742
4743 /*
4744 * Call ss->fork(). This must happen after @child is linked on
4745 * css_set; otherwise, @child might change state between ->fork()
4746 * and addition to css_set.
4747 */
4748 if (need_forkexit_callback) {
4749 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
4750 struct cgroup_subsys *ss = subsys[i];
4751
4752 /*
4753 * fork/exit callbacks are supported only for
4754 * builtin subsystems and we don't need further
4755 * synchronization as they never go away.
4756 */
4757 if (!ss || ss->module)
4758 continue;
4759
4760 if (ss->fork)
4761 ss->fork(child);
4762 }
4763 }
Paul Menage817929e2007-10-18 23:39:36 -07004764}
Tejun Heo5edee612012-10-16 15:03:14 -07004765
Paul Menage817929e2007-10-18 23:39:36 -07004766/**
Paul Menageb4f48b62007-10-18 23:39:33 -07004767 * cgroup_exit - detach cgroup from exiting task
4768 * @tsk: pointer to task_struct of exiting process
Li Zefana043e3b2008-02-23 15:24:09 -08004769 * @run_callback: run exit callbacks?
Paul Menageb4f48b62007-10-18 23:39:33 -07004770 *
4771 * Description: Detach cgroup from @tsk and release it.
4772 *
4773 * Note that cgroups marked notify_on_release force every task in
4774 * them to take the global cgroup_mutex mutex when exiting.
4775 * This could impact scaling on very large systems. Be reluctant to
4776 * use notify_on_release cgroups where very high task exit scaling
4777 * is required on large systems.
4778 *
4779 * the_top_cgroup_hack:
4780 *
4781 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
4782 *
4783 * We call cgroup_exit() while the task is still competent to
4784 * handle notify_on_release(), then leave the task attached to the
4785 * root cgroup in each hierarchy for the remainder of its exit.
4786 *
4787 * To do this properly, we would increment the reference count on
4788 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
4789 * code we would add a second cgroup function call, to drop that
4790 * reference. This would just create an unnecessary hot spot on
4791 * the top_cgroup reference count, to no avail.
4792 *
4793 * Normally, holding a reference to a cgroup without bumping its
4794 * count is unsafe. The cgroup could go away, or someone could
4795 * attach us to a different cgroup, decrementing the count on
4796 * the first cgroup that we never incremented. But in this case,
4797 * top_cgroup isn't going away, and either task has PF_EXITING set,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004798 * which wards off any cgroup_attach_task() attempts, or task is a failed
4799 * fork, never visible to cgroup_attach_task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004800 */
4801void cgroup_exit(struct task_struct *tsk, int run_callbacks)
4802{
Paul Menage817929e2007-10-18 23:39:36 -07004803 struct css_set *cg;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004804 int i;
Paul Menage817929e2007-10-18 23:39:36 -07004805
4806 /*
4807 * Unlink from the css_set task list if necessary.
4808 * Optimistically check cg_list before taking
4809 * css_set_lock
4810 */
4811 if (!list_empty(&tsk->cg_list)) {
4812 write_lock(&css_set_lock);
4813 if (!list_empty(&tsk->cg_list))
Phil Carmody8d258792011-03-22 16:30:13 -07004814 list_del_init(&tsk->cg_list);
Paul Menage817929e2007-10-18 23:39:36 -07004815 write_unlock(&css_set_lock);
4816 }
4817
Paul Menageb4f48b62007-10-18 23:39:33 -07004818 /* Reassign the task to the init_css_set. */
4819 task_lock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07004820 cg = tsk->cgroups;
4821 tsk->cgroups = &init_css_set;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004822
4823 if (run_callbacks && need_forkexit_callback) {
Daniel Wagnerbe45c902012-09-13 09:50:55 +02004824 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004825 struct cgroup_subsys *ss = subsys[i];
Daniel Wagnerbe45c902012-09-13 09:50:55 +02004826
4827 /* modular subsystems can't use callbacks */
4828 if (!ss || ss->module)
4829 continue;
4830
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004831 if (ss->exit) {
4832 struct cgroup *old_cgrp =
4833 rcu_dereference_raw(cg->subsys[i])->cgroup;
4834 struct cgroup *cgrp = task_cgroup(tsk, i);
Li Zefan761b3ef2012-01-31 13:47:36 +08004835 ss->exit(cgrp, old_cgrp, tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004836 }
4837 }
4838 }
Paul Menageb4f48b62007-10-18 23:39:33 -07004839 task_unlock(tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004840
Paul Menage817929e2007-10-18 23:39:36 -07004841 if (cg)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004842 put_css_set_taskexit(cg);
Paul Menageb4f48b62007-10-18 23:39:33 -07004843}
Paul Menage697f4162007-10-18 23:39:34 -07004844
4845/**
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004846 * cgroup_is_descendant - see if @cgrp is a descendant of @task's cgrp
Li Zefana043e3b2008-02-23 15:24:09 -08004847 * @cgrp: the cgroup in question
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004848 * @task: the task in question
Li Zefana043e3b2008-02-23 15:24:09 -08004849 *
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004850 * See if @cgrp is a descendant of @task's cgroup in the appropriate
4851 * hierarchy.
Paul Menage697f4162007-10-18 23:39:34 -07004852 *
4853 * If we are sending in dummytop, then presumably we are creating
4854 * the top cgroup in the subsystem.
4855 *
4856 * Called only by the ns (nsproxy) cgroup.
4857 */
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004858int cgroup_is_descendant(const struct cgroup *cgrp, struct task_struct *task)
Paul Menage697f4162007-10-18 23:39:34 -07004859{
4860 int ret;
4861 struct cgroup *target;
Paul Menage697f4162007-10-18 23:39:34 -07004862
Paul Menagebd89aab2007-10-18 23:40:44 -07004863 if (cgrp == dummytop)
Paul Menage697f4162007-10-18 23:39:34 -07004864 return 1;
4865
Paul Menage7717f7b2009-09-23 15:56:22 -07004866 target = task_cgroup_from_root(task, cgrp->root);
Paul Menagebd89aab2007-10-18 23:40:44 -07004867 while (cgrp != target && cgrp!= cgrp->top_cgroup)
4868 cgrp = cgrp->parent;
4869 ret = (cgrp == target);
Paul Menage697f4162007-10-18 23:39:34 -07004870 return ret;
4871}
Paul Menage81a6a5c2007-10-18 23:39:38 -07004872
Paul Menagebd89aab2007-10-18 23:40:44 -07004873static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004874{
4875 /* All of these checks rely on RCU to keep the cgroup
4876 * structure alive */
Paul Menagebd89aab2007-10-18 23:40:44 -07004877 if (cgroup_is_releasable(cgrp) && !atomic_read(&cgrp->count)
4878 && list_empty(&cgrp->children) && !cgroup_has_css_refs(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004879 /* Control Group is currently removeable. If it's not
4880 * already queued for a userspace notification, queue
4881 * it now */
4882 int need_schedule_work = 0;
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004883 raw_spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07004884 if (!cgroup_is_removed(cgrp) &&
4885 list_empty(&cgrp->release_list)) {
4886 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004887 need_schedule_work = 1;
4888 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004889 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004890 if (need_schedule_work)
4891 schedule_work(&release_agent_work);
4892 }
4893}
4894
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -08004895/* Caller must verify that the css is not for root cgroup */
Tejun Heo28b4c272012-04-01 12:09:56 -07004896bool __css_tryget(struct cgroup_subsys_state *css)
4897{
Tejun Heoe9316082012-11-05 09:16:58 -08004898 while (true) {
4899 int t, v;
Tejun Heo28b4c272012-04-01 12:09:56 -07004900
Tejun Heoe9316082012-11-05 09:16:58 -08004901 v = css_refcnt(css);
4902 t = atomic_cmpxchg(&css->refcnt, v, v + 1);
4903 if (likely(t == v))
Tejun Heo28b4c272012-04-01 12:09:56 -07004904 return true;
Tejun Heoe9316082012-11-05 09:16:58 -08004905 else if (t < 0)
4906 return false;
Tejun Heo28b4c272012-04-01 12:09:56 -07004907 cpu_relax();
Tejun Heoe9316082012-11-05 09:16:58 -08004908 }
Tejun Heo28b4c272012-04-01 12:09:56 -07004909}
4910EXPORT_SYMBOL_GPL(__css_tryget);
4911
4912/* Caller must verify that the css is not for root cgroup */
4913void __css_put(struct cgroup_subsys_state *css)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004914{
Paul Menagebd89aab2007-10-18 23:40:44 -07004915 struct cgroup *cgrp = css->cgroup;
Salman Qazi8e3bbf42012-06-14 14:55:30 -07004916 int v;
Tejun Heo28b4c272012-04-01 12:09:56 -07004917
Paul Menage81a6a5c2007-10-18 23:39:38 -07004918 rcu_read_lock();
Salman Qazi8e3bbf42012-06-14 14:55:30 -07004919 v = css_unbias_refcnt(atomic_dec_return(&css->refcnt));
4920
4921 switch (v) {
Tejun Heo48ddbe12012-04-01 12:09:56 -07004922 case 1:
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004923 if (notify_on_release(cgrp)) {
4924 set_bit(CGRP_RELEASABLE, &cgrp->flags);
4925 check_for_release(cgrp);
4926 }
Tejun Heo48ddbe12012-04-01 12:09:56 -07004927 break;
4928 case 0:
Tejun Heoed9577932012-11-05 09:16:58 -08004929 schedule_work(&css->dput_work);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004930 break;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004931 }
4932 rcu_read_unlock();
4933}
Ben Blum67523c42010-03-10 15:22:11 -08004934EXPORT_SYMBOL_GPL(__css_put);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004935
4936/*
4937 * Notify userspace when a cgroup is released, by running the
4938 * configured release agent with the name of the cgroup (path
4939 * relative to the root of cgroup file system) as the argument.
4940 *
4941 * Most likely, this user command will try to rmdir this cgroup.
4942 *
4943 * This races with the possibility that some other task will be
4944 * attached to this cgroup before it is removed, or that some other
4945 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
4946 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
4947 * unused, and this cgroup will be reprieved from its death sentence,
4948 * to continue to serve a useful existence. Next time it's released,
4949 * we will get notified again, if it still has 'notify_on_release' set.
4950 *
4951 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
4952 * means only wait until the task is successfully execve()'d. The
4953 * separate release agent task is forked by call_usermodehelper(),
4954 * then control in this thread returns here, without waiting for the
4955 * release agent task. We don't bother to wait because the caller of
4956 * this routine has no use for the exit status of the release agent
4957 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07004958 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004959static void cgroup_release_agent(struct work_struct *work)
4960{
4961 BUG_ON(work != &release_agent_work);
4962 mutex_lock(&cgroup_mutex);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004963 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004964 while (!list_empty(&release_list)) {
4965 char *argv[3], *envp[3];
4966 int i;
Paul Menagee788e062008-07-25 01:46:59 -07004967 char *pathbuf = NULL, *agentbuf = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07004968 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07004969 struct cgroup,
4970 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07004971 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004972 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004973 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paul Menagee788e062008-07-25 01:46:59 -07004974 if (!pathbuf)
4975 goto continue_free;
4976 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0)
4977 goto continue_free;
4978 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
4979 if (!agentbuf)
4980 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004981
4982 i = 0;
Paul Menagee788e062008-07-25 01:46:59 -07004983 argv[i++] = agentbuf;
4984 argv[i++] = pathbuf;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004985 argv[i] = NULL;
4986
4987 i = 0;
4988 /* minimal command environment */
4989 envp[i++] = "HOME=/";
4990 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
4991 envp[i] = NULL;
4992
4993 /* Drop the lock while we invoke the usermode helper,
4994 * since the exec could involve hitting disk and hence
4995 * be a slow process */
4996 mutex_unlock(&cgroup_mutex);
4997 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004998 mutex_lock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07004999 continue_free:
5000 kfree(pathbuf);
5001 kfree(agentbuf);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005002 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005003 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005004 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005005 mutex_unlock(&cgroup_mutex);
5006}
Paul Menage8bab8dd2008-04-04 14:29:57 -07005007
5008static int __init cgroup_disable(char *str)
5009{
5010 int i;
5011 char *token;
5012
5013 while ((token = strsep(&str, ",")) != NULL) {
5014 if (!*token)
5015 continue;
Daniel Wagnerbe45c902012-09-13 09:50:55 +02005016 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07005017 struct cgroup_subsys *ss = subsys[i];
5018
Daniel Wagnerbe45c902012-09-13 09:50:55 +02005019 /*
5020 * cgroup_disable, being at boot time, can't
5021 * know about module subsystems, so we don't
5022 * worry about them.
5023 */
5024 if (!ss || ss->module)
5025 continue;
5026
Paul Menage8bab8dd2008-04-04 14:29:57 -07005027 if (!strcmp(token, ss->name)) {
5028 ss->disabled = 1;
5029 printk(KERN_INFO "Disabling %s control group"
5030 " subsystem\n", ss->name);
5031 break;
5032 }
5033 }
5034 }
5035 return 1;
5036}
5037__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005038
5039/*
5040 * Functons for CSS ID.
5041 */
5042
5043/*
5044 *To get ID other than 0, this should be called when !cgroup_is_removed().
5045 */
5046unsigned short css_id(struct cgroup_subsys_state *css)
5047{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07005048 struct css_id *cssid;
5049
5050 /*
5051 * This css_id() can return correct value when somone has refcnt
5052 * on this or this is under rcu_read_lock(). Once css->id is allocated,
5053 * it's unchanged until freed.
5054 */
Tejun Heo28b4c272012-04-01 12:09:56 -07005055 cssid = rcu_dereference_check(css->id, css_refcnt(css));
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005056
5057 if (cssid)
5058 return cssid->id;
5059 return 0;
5060}
Ben Blum67523c42010-03-10 15:22:11 -08005061EXPORT_SYMBOL_GPL(css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005062
5063unsigned short css_depth(struct cgroup_subsys_state *css)
5064{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07005065 struct css_id *cssid;
5066
Tejun Heo28b4c272012-04-01 12:09:56 -07005067 cssid = rcu_dereference_check(css->id, css_refcnt(css));
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005068
5069 if (cssid)
5070 return cssid->depth;
5071 return 0;
5072}
Ben Blum67523c42010-03-10 15:22:11 -08005073EXPORT_SYMBOL_GPL(css_depth);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005074
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07005075/**
5076 * css_is_ancestor - test "root" css is an ancestor of "child"
5077 * @child: the css to be tested.
5078 * @root: the css supporsed to be an ancestor of the child.
5079 *
5080 * Returns true if "root" is an ancestor of "child" in its hierarchy. Because
Johannes Weiner91c637342012-05-29 15:06:24 -07005081 * this function reads css->id, the caller must hold rcu_read_lock().
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07005082 * But, considering usual usage, the csses should be valid objects after test.
5083 * Assuming that the caller will do some action to the child if this returns
5084 * returns true, the caller must take "child";s reference count.
5085 * If "child" is valid object and this returns true, "root" is valid, too.
5086 */
5087
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005088bool css_is_ancestor(struct cgroup_subsys_state *child,
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07005089 const struct cgroup_subsys_state *root)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005090{
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07005091 struct css_id *child_id;
5092 struct css_id *root_id;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005093
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07005094 child_id = rcu_dereference(child->id);
Johannes Weiner91c637342012-05-29 15:06:24 -07005095 if (!child_id)
5096 return false;
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07005097 root_id = rcu_dereference(root->id);
Johannes Weiner91c637342012-05-29 15:06:24 -07005098 if (!root_id)
5099 return false;
5100 if (child_id->depth < root_id->depth)
5101 return false;
5102 if (child_id->stack[root_id->depth] != root_id->id)
5103 return false;
5104 return true;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005105}
5106
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005107void free_css_id(struct cgroup_subsys *ss, struct cgroup_subsys_state *css)
5108{
5109 struct css_id *id = css->id;
5110 /* When this is called before css_id initialization, id can be NULL */
5111 if (!id)
5112 return;
5113
5114 BUG_ON(!ss->use_id);
5115
5116 rcu_assign_pointer(id->css, NULL);
5117 rcu_assign_pointer(css->id, NULL);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005118 spin_lock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005119 idr_remove(&ss->idr, id->id);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005120 spin_unlock(&ss->id_lock);
Lai Jiangshan025cea92011-03-15 17:56:10 +08005121 kfree_rcu(id, rcu_head);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005122}
Ben Blum67523c42010-03-10 15:22:11 -08005123EXPORT_SYMBOL_GPL(free_css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005124
5125/*
5126 * This is called by init or create(). Then, calls to this function are
5127 * always serialized (By cgroup_mutex() at create()).
5128 */
5129
5130static struct css_id *get_new_cssid(struct cgroup_subsys *ss, int depth)
5131{
5132 struct css_id *newid;
5133 int myid, error, size;
5134
5135 BUG_ON(!ss->use_id);
5136
5137 size = sizeof(*newid) + sizeof(unsigned short) * (depth + 1);
5138 newid = kzalloc(size, GFP_KERNEL);
5139 if (!newid)
5140 return ERR_PTR(-ENOMEM);
5141 /* get id */
5142 if (unlikely(!idr_pre_get(&ss->idr, GFP_KERNEL))) {
5143 error = -ENOMEM;
5144 goto err_out;
5145 }
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005146 spin_lock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005147 /* Don't use 0. allocates an ID of 1-65535 */
5148 error = idr_get_new_above(&ss->idr, newid, 1, &myid);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005149 spin_unlock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005150
5151 /* Returns error when there are no free spaces for new ID.*/
5152 if (error) {
5153 error = -ENOSPC;
5154 goto err_out;
5155 }
5156 if (myid > CSS_ID_MAX)
5157 goto remove_idr;
5158
5159 newid->id = myid;
5160 newid->depth = depth;
5161 return newid;
5162remove_idr:
5163 error = -ENOSPC;
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005164 spin_lock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005165 idr_remove(&ss->idr, myid);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005166 spin_unlock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005167err_out:
5168 kfree(newid);
5169 return ERR_PTR(error);
5170
5171}
5172
Ben Blume6a11052010-03-10 15:22:09 -08005173static int __init_or_module cgroup_init_idr(struct cgroup_subsys *ss,
5174 struct cgroup_subsys_state *rootcss)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005175{
5176 struct css_id *newid;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005177
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005178 spin_lock_init(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005179 idr_init(&ss->idr);
5180
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005181 newid = get_new_cssid(ss, 0);
5182 if (IS_ERR(newid))
5183 return PTR_ERR(newid);
5184
5185 newid->stack[0] = newid->id;
5186 newid->css = rootcss;
5187 rootcss->id = newid;
5188 return 0;
5189}
5190
5191static int alloc_css_id(struct cgroup_subsys *ss, struct cgroup *parent,
5192 struct cgroup *child)
5193{
5194 int subsys_id, i, depth = 0;
5195 struct cgroup_subsys_state *parent_css, *child_css;
Li Zefanfae9c792010-04-22 17:30:00 +08005196 struct css_id *child_id, *parent_id;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005197
5198 subsys_id = ss->subsys_id;
5199 parent_css = parent->subsys[subsys_id];
5200 child_css = child->subsys[subsys_id];
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005201 parent_id = parent_css->id;
Greg Thelen94b3dd02010-06-04 14:15:03 -07005202 depth = parent_id->depth + 1;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005203
5204 child_id = get_new_cssid(ss, depth);
5205 if (IS_ERR(child_id))
5206 return PTR_ERR(child_id);
5207
5208 for (i = 0; i < depth; i++)
5209 child_id->stack[i] = parent_id->stack[i];
5210 child_id->stack[depth] = child_id->id;
5211 /*
5212 * child_id->css pointer will be set after this cgroup is available
5213 * see cgroup_populate_dir()
5214 */
5215 rcu_assign_pointer(child_css->id, child_id);
5216
5217 return 0;
5218}
5219
5220/**
5221 * css_lookup - lookup css by id
5222 * @ss: cgroup subsys to be looked into.
5223 * @id: the id
5224 *
5225 * Returns pointer to cgroup_subsys_state if there is valid one with id.
5226 * NULL if not. Should be called under rcu_read_lock()
5227 */
5228struct cgroup_subsys_state *css_lookup(struct cgroup_subsys *ss, int id)
5229{
5230 struct css_id *cssid = NULL;
5231
5232 BUG_ON(!ss->use_id);
5233 cssid = idr_find(&ss->idr, id);
5234
5235 if (unlikely(!cssid))
5236 return NULL;
5237
5238 return rcu_dereference(cssid->css);
5239}
Ben Blum67523c42010-03-10 15:22:11 -08005240EXPORT_SYMBOL_GPL(css_lookup);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005241
5242/**
5243 * css_get_next - lookup next cgroup under specified hierarchy.
5244 * @ss: pointer to subsystem
5245 * @id: current position of iteration.
5246 * @root: pointer to css. search tree under this.
5247 * @foundid: position of found object.
5248 *
5249 * Search next css under the specified hierarchy of rootid. Calling under
5250 * rcu_read_lock() is necessary. Returns NULL if it reaches the end.
5251 */
5252struct cgroup_subsys_state *
5253css_get_next(struct cgroup_subsys *ss, int id,
5254 struct cgroup_subsys_state *root, int *foundid)
5255{
5256 struct cgroup_subsys_state *ret = NULL;
5257 struct css_id *tmp;
5258 int tmpid;
5259 int rootid = css_id(root);
5260 int depth = css_depth(root);
5261
5262 if (!rootid)
5263 return NULL;
5264
5265 BUG_ON(!ss->use_id);
Hugh Dickinsca464d62012-03-21 16:34:21 -07005266 WARN_ON_ONCE(!rcu_read_lock_held());
5267
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005268 /* fill start point for scan */
5269 tmpid = id;
5270 while (1) {
5271 /*
5272 * scan next entry from bitmap(tree), tmpid is updated after
5273 * idr_get_next().
5274 */
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005275 tmp = idr_get_next(&ss->idr, &tmpid);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005276 if (!tmp)
5277 break;
5278 if (tmp->depth >= depth && tmp->stack[depth] == rootid) {
5279 ret = rcu_dereference(tmp->css);
5280 if (ret) {
5281 *foundid = tmpid;
5282 break;
5283 }
5284 }
5285 /* continue to scan from next id */
5286 tmpid = tmpid + 1;
5287 }
5288 return ret;
5289}
5290
Stephane Eraniane5d13672011-02-14 11:20:01 +02005291/*
5292 * get corresponding css from file open on cgroupfs directory
5293 */
5294struct cgroup_subsys_state *cgroup_css_from_dir(struct file *f, int id)
5295{
5296 struct cgroup *cgrp;
5297 struct inode *inode;
5298 struct cgroup_subsys_state *css;
5299
5300 inode = f->f_dentry->d_inode;
5301 /* check in cgroup filesystem dir */
5302 if (inode->i_op != &cgroup_dir_inode_operations)
5303 return ERR_PTR(-EBADF);
5304
5305 if (id < 0 || id >= CGROUP_SUBSYS_COUNT)
5306 return ERR_PTR(-EINVAL);
5307
5308 /* get cgroup */
5309 cgrp = __d_cgrp(f->f_dentry);
5310 css = cgrp->subsys[id];
5311 return css ? css : ERR_PTR(-ENOENT);
5312}
5313
Paul Menagefe693432009-09-23 15:56:20 -07005314#ifdef CONFIG_CGROUP_DEBUG
Li Zefan761b3ef2012-01-31 13:47:36 +08005315static struct cgroup_subsys_state *debug_create(struct cgroup *cont)
Paul Menagefe693432009-09-23 15:56:20 -07005316{
5317 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
5318
5319 if (!css)
5320 return ERR_PTR(-ENOMEM);
5321
5322 return css;
5323}
5324
Li Zefan761b3ef2012-01-31 13:47:36 +08005325static void debug_destroy(struct cgroup *cont)
Paul Menagefe693432009-09-23 15:56:20 -07005326{
5327 kfree(cont->subsys[debug_subsys_id]);
5328}
5329
5330static u64 cgroup_refcount_read(struct cgroup *cont, struct cftype *cft)
5331{
5332 return atomic_read(&cont->count);
5333}
5334
5335static u64 debug_taskcount_read(struct cgroup *cont, struct cftype *cft)
5336{
5337 return cgroup_task_count(cont);
5338}
5339
5340static u64 current_css_set_read(struct cgroup *cont, struct cftype *cft)
5341{
5342 return (u64)(unsigned long)current->cgroups;
5343}
5344
5345static u64 current_css_set_refcount_read(struct cgroup *cont,
5346 struct cftype *cft)
5347{
5348 u64 count;
5349
5350 rcu_read_lock();
5351 count = atomic_read(&current->cgroups->refcount);
5352 rcu_read_unlock();
5353 return count;
5354}
5355
Paul Menage7717f7b2009-09-23 15:56:22 -07005356static int current_css_set_cg_links_read(struct cgroup *cont,
5357 struct cftype *cft,
5358 struct seq_file *seq)
5359{
5360 struct cg_cgroup_link *link;
5361 struct css_set *cg;
5362
5363 read_lock(&css_set_lock);
5364 rcu_read_lock();
5365 cg = rcu_dereference(current->cgroups);
5366 list_for_each_entry(link, &cg->cg_links, cg_link_list) {
5367 struct cgroup *c = link->cgrp;
5368 const char *name;
5369
5370 if (c->dentry)
5371 name = c->dentry->d_name.name;
5372 else
5373 name = "?";
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005374 seq_printf(seq, "Root %d group %s\n",
5375 c->root->hierarchy_id, name);
Paul Menage7717f7b2009-09-23 15:56:22 -07005376 }
5377 rcu_read_unlock();
5378 read_unlock(&css_set_lock);
5379 return 0;
5380}
5381
5382#define MAX_TASKS_SHOWN_PER_CSS 25
5383static int cgroup_css_links_read(struct cgroup *cont,
5384 struct cftype *cft,
5385 struct seq_file *seq)
5386{
5387 struct cg_cgroup_link *link;
5388
5389 read_lock(&css_set_lock);
5390 list_for_each_entry(link, &cont->css_sets, cgrp_link_list) {
5391 struct css_set *cg = link->cg;
5392 struct task_struct *task;
5393 int count = 0;
5394 seq_printf(seq, "css_set %p\n", cg);
5395 list_for_each_entry(task, &cg->tasks, cg_list) {
5396 if (count++ > MAX_TASKS_SHOWN_PER_CSS) {
5397 seq_puts(seq, " ...\n");
5398 break;
5399 } else {
5400 seq_printf(seq, " task %d\n",
5401 task_pid_vnr(task));
5402 }
5403 }
5404 }
5405 read_unlock(&css_set_lock);
5406 return 0;
5407}
5408
Paul Menagefe693432009-09-23 15:56:20 -07005409static u64 releasable_read(struct cgroup *cgrp, struct cftype *cft)
5410{
5411 return test_bit(CGRP_RELEASABLE, &cgrp->flags);
5412}
5413
5414static struct cftype debug_files[] = {
5415 {
5416 .name = "cgroup_refcount",
5417 .read_u64 = cgroup_refcount_read,
5418 },
5419 {
5420 .name = "taskcount",
5421 .read_u64 = debug_taskcount_read,
5422 },
5423
5424 {
5425 .name = "current_css_set",
5426 .read_u64 = current_css_set_read,
5427 },
5428
5429 {
5430 .name = "current_css_set_refcount",
5431 .read_u64 = current_css_set_refcount_read,
5432 },
5433
5434 {
Paul Menage7717f7b2009-09-23 15:56:22 -07005435 .name = "current_css_set_cg_links",
5436 .read_seq_string = current_css_set_cg_links_read,
5437 },
5438
5439 {
5440 .name = "cgroup_css_links",
5441 .read_seq_string = cgroup_css_links_read,
5442 },
5443
5444 {
Paul Menagefe693432009-09-23 15:56:20 -07005445 .name = "releasable",
5446 .read_u64 = releasable_read,
5447 },
Paul Menagefe693432009-09-23 15:56:20 -07005448
Tejun Heo4baf6e32012-04-01 12:09:55 -07005449 { } /* terminate */
5450};
Paul Menagefe693432009-09-23 15:56:20 -07005451
5452struct cgroup_subsys debug_subsys = {
5453 .name = "debug",
5454 .create = debug_create,
5455 .destroy = debug_destroy,
Paul Menagefe693432009-09-23 15:56:20 -07005456 .subsys_id = debug_subsys_id,
Tejun Heo4baf6e32012-04-01 12:09:55 -07005457 .base_cftypes = debug_files,
Paul Menagefe693432009-09-23 15:56:20 -07005458};
5459#endif /* CONFIG_CGROUP_DEBUG */