blob: 09751657abdc17f235675c187d925afdd7da9bc2 [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 Rozanskia1a71b452012-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 Rozanskia1a71b452012-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 Rozanskia1a71b452012-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 Rozanskia1a71b452012-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 Rozanskia1a71b452012-08-23 16:53:31 -0400999 unsigned long final_subsys_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001000{
Aristeu Rozanskia1a71b452012-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 Rozanskia1a71b452012-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 Rozanskia1a71b452012-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 Rozanskia1a71b452012-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 Rozanskia1a71b452012-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 Rozanskia1a71b452012-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 Rozanskia1a71b452012-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 Rozanskia1a71b452012-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 Rozanskia1a71b452012-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 Rozanskia1a71b452012-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 Rozanskia1a71b452012-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 Rozanskia1a71b452012-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 Rozanskia1a71b452012-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 Rozanskia1a71b452012-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 Rozanskia1a71b452012-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 Rozanskia1a71b452012-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 Rozanskia1a71b452012-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 Rozanskia1a71b452012-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 Rozanskia1a71b452012-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 Rozanskia1a71b452012-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 Rozanskia1a71b452012-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 Rozanskia1a71b452012-08-23 16:53:31 -04001349 ret = rebind_subsystems(root, opts.subsys_mask);
Ben Blumcf5d5942010-03-10 15:22:09 -08001350 if (ret) {
Aristeu Rozanskia1a71b452012-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 Rozanskia1a71b452012-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 Rozanskia1a71b452012-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);
Tejun Heo22430762012-11-19 08:13:35 -08001384 INIT_LIST_HEAD(&cgrp->allcg_node);
Paul Menagecc31edc2008-10-18 20:28:04 -07001385 INIT_LIST_HEAD(&cgrp->release_list);
Ben Blum72a8cb32009-09-23 15:56:27 -07001386 INIT_LIST_HEAD(&cgrp->pidlists);
1387 mutex_init(&cgrp->pidlist_mutex);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08001388 INIT_LIST_HEAD(&cgrp->event_list);
1389 spin_lock_init(&cgrp->event_list_lock);
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001390 simple_xattrs_init(&cgrp->xattrs);
Paul Menagecc31edc2008-10-18 20:28:04 -07001391}
Paul Menagec6d57f32009-09-23 15:56:19 -07001392
Paul Menageddbcc7e2007-10-18 23:39:30 -07001393static void init_cgroup_root(struct cgroupfs_root *root)
1394{
Paul Menagebd89aab2007-10-18 23:40:44 -07001395 struct cgroup *cgrp = &root->top_cgroup;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001396
Paul Menageddbcc7e2007-10-18 23:39:30 -07001397 INIT_LIST_HEAD(&root->subsys_list);
1398 INIT_LIST_HEAD(&root->root_list);
Tejun Heob0ca5a82012-04-01 12:09:54 -07001399 INIT_LIST_HEAD(&root->allcg_list);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001400 root->number_of_cgroups = 1;
Paul Menagebd89aab2007-10-18 23:40:44 -07001401 cgrp->root = root;
1402 cgrp->top_cgroup = cgrp;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001403 list_add_tail(&cgrp->allcg_node, &root->allcg_list);
Paul Menagecc31edc2008-10-18 20:28:04 -07001404 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001405}
1406
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001407static bool init_root_id(struct cgroupfs_root *root)
1408{
1409 int ret = 0;
1410
1411 do {
1412 if (!ida_pre_get(&hierarchy_ida, GFP_KERNEL))
1413 return false;
1414 spin_lock(&hierarchy_id_lock);
1415 /* Try to allocate the next unused ID */
1416 ret = ida_get_new_above(&hierarchy_ida, next_hierarchy_id,
1417 &root->hierarchy_id);
1418 if (ret == -ENOSPC)
1419 /* Try again starting from 0 */
1420 ret = ida_get_new(&hierarchy_ida, &root->hierarchy_id);
1421 if (!ret) {
1422 next_hierarchy_id = root->hierarchy_id + 1;
1423 } else if (ret != -EAGAIN) {
1424 /* Can only get here if the 31-bit IDR is full ... */
1425 BUG_ON(ret);
1426 }
1427 spin_unlock(&hierarchy_id_lock);
1428 } while (ret);
1429 return true;
1430}
1431
Paul Menageddbcc7e2007-10-18 23:39:30 -07001432static int cgroup_test_super(struct super_block *sb, void *data)
1433{
Paul Menagec6d57f32009-09-23 15:56:19 -07001434 struct cgroup_sb_opts *opts = data;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001435 struct cgroupfs_root *root = sb->s_fs_info;
1436
Paul Menagec6d57f32009-09-23 15:56:19 -07001437 /* If we asked for a name then it must match */
1438 if (opts->name && strcmp(opts->name, root->name))
1439 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001440
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001441 /*
1442 * If we asked for subsystems (or explicitly for no
1443 * subsystems) then they must match
1444 */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001445 if ((opts->subsys_mask || opts->none)
1446 && (opts->subsys_mask != root->subsys_mask))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001447 return 0;
1448
1449 return 1;
1450}
1451
Paul Menagec6d57f32009-09-23 15:56:19 -07001452static struct cgroupfs_root *cgroup_root_from_opts(struct cgroup_sb_opts *opts)
1453{
1454 struct cgroupfs_root *root;
1455
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001456 if (!opts->subsys_mask && !opts->none)
Paul Menagec6d57f32009-09-23 15:56:19 -07001457 return NULL;
1458
1459 root = kzalloc(sizeof(*root), GFP_KERNEL);
1460 if (!root)
1461 return ERR_PTR(-ENOMEM);
1462
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001463 if (!init_root_id(root)) {
1464 kfree(root);
1465 return ERR_PTR(-ENOMEM);
1466 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001467 init_cgroup_root(root);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001468
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001469 root->subsys_mask = opts->subsys_mask;
Paul Menagec6d57f32009-09-23 15:56:19 -07001470 root->flags = opts->flags;
1471 if (opts->release_agent)
1472 strcpy(root->release_agent_path, opts->release_agent);
1473 if (opts->name)
1474 strcpy(root->name, opts->name);
Daniel Lezcano97978e62010-10-27 15:33:35 -07001475 if (opts->clone_children)
1476 set_bit(CGRP_CLONE_CHILDREN, &root->top_cgroup.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001477 return root;
1478}
1479
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001480static void cgroup_drop_root(struct cgroupfs_root *root)
1481{
1482 if (!root)
1483 return;
1484
1485 BUG_ON(!root->hierarchy_id);
1486 spin_lock(&hierarchy_id_lock);
1487 ida_remove(&hierarchy_ida, root->hierarchy_id);
1488 spin_unlock(&hierarchy_id_lock);
1489 kfree(root);
1490}
1491
Paul Menageddbcc7e2007-10-18 23:39:30 -07001492static int cgroup_set_super(struct super_block *sb, void *data)
1493{
1494 int ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001495 struct cgroup_sb_opts *opts = data;
1496
1497 /* If we don't have a new root, we can't set up a new sb */
1498 if (!opts->new_root)
1499 return -EINVAL;
1500
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001501 BUG_ON(!opts->subsys_mask && !opts->none);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001502
1503 ret = set_anon_super(sb, NULL);
1504 if (ret)
1505 return ret;
1506
Paul Menagec6d57f32009-09-23 15:56:19 -07001507 sb->s_fs_info = opts->new_root;
1508 opts->new_root->sb = sb;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001509
1510 sb->s_blocksize = PAGE_CACHE_SIZE;
1511 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
1512 sb->s_magic = CGROUP_SUPER_MAGIC;
1513 sb->s_op = &cgroup_ops;
1514
1515 return 0;
1516}
1517
1518static int cgroup_get_rootdir(struct super_block *sb)
1519{
Al Viro0df6a632010-12-21 13:29:29 -05001520 static const struct dentry_operations cgroup_dops = {
1521 .d_iput = cgroup_diput,
Al Viroc72a04e2011-01-14 05:31:45 +00001522 .d_delete = cgroup_delete,
Al Viro0df6a632010-12-21 13:29:29 -05001523 };
1524
Paul Menageddbcc7e2007-10-18 23:39:30 -07001525 struct inode *inode =
1526 cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001527
1528 if (!inode)
1529 return -ENOMEM;
1530
Paul Menageddbcc7e2007-10-18 23:39:30 -07001531 inode->i_fop = &simple_dir_operations;
1532 inode->i_op = &cgroup_dir_inode_operations;
1533 /* directories start off with i_nlink == 2 (for "." entry) */
1534 inc_nlink(inode);
Al Viro48fde702012-01-08 22:15:13 -05001535 sb->s_root = d_make_root(inode);
1536 if (!sb->s_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001537 return -ENOMEM;
Al Viro0df6a632010-12-21 13:29:29 -05001538 /* for everything else we want ->d_op set */
1539 sb->s_d_op = &cgroup_dops;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001540 return 0;
1541}
1542
Al Virof7e83572010-07-26 13:23:11 +04001543static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001544 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001545 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001546{
1547 struct cgroup_sb_opts opts;
Paul Menagec6d57f32009-09-23 15:56:19 -07001548 struct cgroupfs_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001549 int ret = 0;
1550 struct super_block *sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001551 struct cgroupfs_root *new_root;
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001552 struct inode *inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001553
1554 /* First find the desired set of subsystems */
Ben Blumaae8aab2010-03-10 15:22:07 -08001555 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001556 ret = parse_cgroupfs_options(data, &opts);
Ben Blumaae8aab2010-03-10 15:22:07 -08001557 mutex_unlock(&cgroup_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001558 if (ret)
1559 goto out_err;
1560
1561 /*
1562 * Allocate a new cgroup root. We may not need it if we're
1563 * reusing an existing hierarchy.
1564 */
1565 new_root = cgroup_root_from_opts(&opts);
1566 if (IS_ERR(new_root)) {
1567 ret = PTR_ERR(new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001568 goto drop_modules;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001569 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001570 opts.new_root = new_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001571
Paul Menagec6d57f32009-09-23 15:56:19 -07001572 /* Locate an existing or new sb for this hierarchy */
David Howells9249e172012-06-25 12:55:37 +01001573 sb = sget(fs_type, cgroup_test_super, cgroup_set_super, 0, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001574 if (IS_ERR(sb)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001575 ret = PTR_ERR(sb);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001576 cgroup_drop_root(opts.new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001577 goto drop_modules;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001578 }
1579
Paul Menagec6d57f32009-09-23 15:56:19 -07001580 root = sb->s_fs_info;
1581 BUG_ON(!root);
1582 if (root == opts.new_root) {
1583 /* We used the new root structure, so this is a new hierarchy */
1584 struct list_head tmp_cg_links;
Li Zefanc12f65d2009-01-07 18:07:42 -08001585 struct cgroup *root_cgrp = &root->top_cgroup;
Paul Menagec6d57f32009-09-23 15:56:19 -07001586 struct cgroupfs_root *existing_root;
eparis@redhat2ce97382011-06-02 21:20:51 +10001587 const struct cred *cred;
Li Zefan28fd5df2008-04-29 01:00:13 -07001588 int i;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001589
1590 BUG_ON(sb->s_root != NULL);
1591
1592 ret = cgroup_get_rootdir(sb);
1593 if (ret)
1594 goto drop_new_super;
Paul Menage817929e2007-10-18 23:39:36 -07001595 inode = sb->s_root->d_inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001596
Paul Menage817929e2007-10-18 23:39:36 -07001597 mutex_lock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001598 mutex_lock(&cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001599 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001600
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001601 /* Check for name clashes with existing mounts */
1602 ret = -EBUSY;
1603 if (strlen(root->name))
1604 for_each_active_root(existing_root)
1605 if (!strcmp(existing_root->name, root->name))
1606 goto unlock_drop;
Paul Menagec6d57f32009-09-23 15:56:19 -07001607
Paul Menage817929e2007-10-18 23:39:36 -07001608 /*
1609 * We're accessing css_set_count without locking
1610 * css_set_lock here, but that's OK - it can only be
1611 * increased by someone holding cgroup_lock, and
1612 * that's us. The worst that can happen is that we
1613 * have some link structures left over
1614 */
1615 ret = allocate_cg_links(css_set_count, &tmp_cg_links);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001616 if (ret)
1617 goto unlock_drop;
Paul Menage817929e2007-10-18 23:39:36 -07001618
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001619 ret = rebind_subsystems(root, root->subsys_mask);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001620 if (ret == -EBUSY) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001621 free_cg_links(&tmp_cg_links);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001622 goto unlock_drop;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001623 }
Ben Blumcf5d5942010-03-10 15:22:09 -08001624 /*
1625 * There must be no failure case after here, since rebinding
1626 * takes care of subsystems' refcounts, which are explicitly
1627 * dropped in the failure exit path.
1628 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001629
1630 /* EBUSY should be the only error here */
1631 BUG_ON(ret);
1632
1633 list_add(&root->root_list, &roots);
Paul Menage817929e2007-10-18 23:39:36 -07001634 root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001635
Li Zefanc12f65d2009-01-07 18:07:42 -08001636 sb->s_root->d_fsdata = root_cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001637 root->top_cgroup.dentry = sb->s_root;
1638
Paul Menage817929e2007-10-18 23:39:36 -07001639 /* Link the top cgroup in this hierarchy into all
1640 * the css_set objects */
1641 write_lock(&css_set_lock);
Li Zefan28fd5df2008-04-29 01:00:13 -07001642 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
1643 struct hlist_head *hhead = &css_set_table[i];
1644 struct hlist_node *node;
Paul Menage817929e2007-10-18 23:39:36 -07001645 struct css_set *cg;
Li Zefan28fd5df2008-04-29 01:00:13 -07001646
Li Zefanc12f65d2009-01-07 18:07:42 -08001647 hlist_for_each_entry(cg, node, hhead, hlist)
1648 link_css_set(&tmp_cg_links, cg, root_cgrp);
Li Zefan28fd5df2008-04-29 01:00:13 -07001649 }
Paul Menage817929e2007-10-18 23:39:36 -07001650 write_unlock(&css_set_lock);
1651
1652 free_cg_links(&tmp_cg_links);
1653
Li Zefanc12f65d2009-01-07 18:07:42 -08001654 BUG_ON(!list_empty(&root_cgrp->children));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001655 BUG_ON(root->number_of_cgroups != 1);
1656
eparis@redhat2ce97382011-06-02 21:20:51 +10001657 cred = override_creds(&init_cred);
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001658 cgroup_populate_dir(root_cgrp, true, root->subsys_mask);
eparis@redhat2ce97382011-06-02 21:20:51 +10001659 revert_creds(cred);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001660 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001661 mutex_unlock(&cgroup_mutex);
Xiaotian Feng34f77a92009-09-23 15:56:18 -07001662 mutex_unlock(&inode->i_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001663 } else {
1664 /*
1665 * We re-used an existing hierarchy - the new root (if
1666 * any) is not needed
1667 */
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001668 cgroup_drop_root(opts.new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001669 /* no subsys rebinding, so refcounts don't change */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001670 drop_parsed_module_refcounts(opts.subsys_mask);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001671 }
1672
Paul Menagec6d57f32009-09-23 15:56:19 -07001673 kfree(opts.release_agent);
1674 kfree(opts.name);
Al Virof7e83572010-07-26 13:23:11 +04001675 return dget(sb->s_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001676
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001677 unlock_drop:
1678 mutex_unlock(&cgroup_root_mutex);
1679 mutex_unlock(&cgroup_mutex);
1680 mutex_unlock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001681 drop_new_super:
Al Viro6f5bbff2009-05-06 01:34:22 -04001682 deactivate_locked_super(sb);
Ben Blumcf5d5942010-03-10 15:22:09 -08001683 drop_modules:
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001684 drop_parsed_module_refcounts(opts.subsys_mask);
Paul Menagec6d57f32009-09-23 15:56:19 -07001685 out_err:
1686 kfree(opts.release_agent);
1687 kfree(opts.name);
Al Virof7e83572010-07-26 13:23:11 +04001688 return ERR_PTR(ret);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001689}
1690
1691static void cgroup_kill_sb(struct super_block *sb) {
1692 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001693 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001694 int ret;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001695 struct cg_cgroup_link *link;
1696 struct cg_cgroup_link *saved_link;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001697
1698 BUG_ON(!root);
1699
1700 BUG_ON(root->number_of_cgroups != 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001701 BUG_ON(!list_empty(&cgrp->children));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001702
1703 mutex_lock(&cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001704 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001705
1706 /* Rebind all subsystems back to the default hierarchy */
1707 ret = rebind_subsystems(root, 0);
1708 /* Shouldn't be able to fail ... */
1709 BUG_ON(ret);
1710
Paul Menage817929e2007-10-18 23:39:36 -07001711 /*
1712 * Release all the links from css_sets to this hierarchy's
1713 * root cgroup
1714 */
1715 write_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001716
1717 list_for_each_entry_safe(link, saved_link, &cgrp->css_sets,
1718 cgrp_link_list) {
Paul Menage817929e2007-10-18 23:39:36 -07001719 list_del(&link->cg_link_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07001720 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001721 kfree(link);
1722 }
1723 write_unlock(&css_set_lock);
1724
Paul Menage839ec542009-01-29 14:25:22 -08001725 if (!list_empty(&root->root_list)) {
1726 list_del(&root->root_list);
1727 root_count--;
1728 }
Li Zefane5f6a862009-01-07 18:07:41 -08001729
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001730 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001731 mutex_unlock(&cgroup_mutex);
1732
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001733 simple_xattrs_free(&cgrp->xattrs);
1734
Paul Menageddbcc7e2007-10-18 23:39:30 -07001735 kill_litter_super(sb);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001736 cgroup_drop_root(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001737}
1738
1739static struct file_system_type cgroup_fs_type = {
1740 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001741 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001742 .kill_sb = cgroup_kill_sb,
1743};
1744
Greg KH676db4a2010-08-05 13:53:35 -07001745static struct kobject *cgroup_kobj;
1746
Li Zefana043e3b2008-02-23 15:24:09 -08001747/**
1748 * cgroup_path - generate the path of a cgroup
1749 * @cgrp: the cgroup in question
1750 * @buf: the buffer to write the path into
1751 * @buflen: the length of the buffer
1752 *
Paul Menagea47295e2009-01-07 18:07:44 -08001753 * Called with cgroup_mutex held or else with an RCU-protected cgroup
1754 * reference. Writes path of cgroup into buf. Returns 0 on success,
1755 * -errno on error.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001756 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001757int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001758{
Tejun Heofebfcef2012-11-19 08:13:36 -08001759 struct dentry *dentry = cgrp->dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001760 char *start;
Tejun Heofebfcef2012-11-19 08:13:36 -08001761
1762 rcu_lockdep_assert(rcu_read_lock_held() || cgroup_lock_is_held(),
1763 "cgroup_path() called without proper locking");
Paul Menageddbcc7e2007-10-18 23:39:30 -07001764
Paul Menagea47295e2009-01-07 18:07:44 -08001765 if (!dentry || cgrp == dummytop) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001766 /*
1767 * Inactive subsystems have no dentry for their root
1768 * cgroup
1769 */
1770 strcpy(buf, "/");
1771 return 0;
1772 }
1773
Tao Ma316eb662012-11-08 21:36:38 +08001774 start = buf + buflen - 1;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001775
Tao Ma316eb662012-11-08 21:36:38 +08001776 *start = '\0';
Paul Menageddbcc7e2007-10-18 23:39:30 -07001777 for (;;) {
Paul Menagea47295e2009-01-07 18:07:44 -08001778 int len = dentry->d_name.len;
Li Zefan9a9686b2010-04-22 17:29:24 +08001779
Paul Menageddbcc7e2007-10-18 23:39:30 -07001780 if ((start -= len) < buf)
1781 return -ENAMETOOLONG;
Li Zefan9a9686b2010-04-22 17:29:24 +08001782 memcpy(start, dentry->d_name.name, len);
Paul Menagebd89aab2007-10-18 23:40:44 -07001783 cgrp = cgrp->parent;
1784 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001785 break;
Li Zefan9a9686b2010-04-22 17:29:24 +08001786
Tejun Heofebfcef2012-11-19 08:13:36 -08001787 dentry = cgrp->dentry;
Paul Menagebd89aab2007-10-18 23:40:44 -07001788 if (!cgrp->parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001789 continue;
1790 if (--start < buf)
1791 return -ENAMETOOLONG;
1792 *start = '/';
1793 }
1794 memmove(buf, start, buf + buflen - start);
1795 return 0;
1796}
Ben Blum67523c42010-03-10 15:22:11 -08001797EXPORT_SYMBOL_GPL(cgroup_path);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001798
Ben Blum74a11662011-05-26 16:25:20 -07001799/*
Tejun Heo2f7ee562011-12-12 18:12:21 -08001800 * Control Group taskset
1801 */
Tejun Heo134d3372011-12-12 18:12:21 -08001802struct task_and_cgroup {
1803 struct task_struct *task;
1804 struct cgroup *cgrp;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001805 struct css_set *cg;
Tejun Heo134d3372011-12-12 18:12:21 -08001806};
1807
Tejun Heo2f7ee562011-12-12 18:12:21 -08001808struct cgroup_taskset {
1809 struct task_and_cgroup single;
1810 struct flex_array *tc_array;
1811 int tc_array_len;
1812 int idx;
1813 struct cgroup *cur_cgrp;
1814};
1815
1816/**
1817 * cgroup_taskset_first - reset taskset and return the first task
1818 * @tset: taskset of interest
1819 *
1820 * @tset iteration is initialized and the first task is returned.
1821 */
1822struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
1823{
1824 if (tset->tc_array) {
1825 tset->idx = 0;
1826 return cgroup_taskset_next(tset);
1827 } else {
1828 tset->cur_cgrp = tset->single.cgrp;
1829 return tset->single.task;
1830 }
1831}
1832EXPORT_SYMBOL_GPL(cgroup_taskset_first);
1833
1834/**
1835 * cgroup_taskset_next - iterate to the next task in taskset
1836 * @tset: taskset of interest
1837 *
1838 * Return the next task in @tset. Iteration must have been initialized
1839 * with cgroup_taskset_first().
1840 */
1841struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
1842{
1843 struct task_and_cgroup *tc;
1844
1845 if (!tset->tc_array || tset->idx >= tset->tc_array_len)
1846 return NULL;
1847
1848 tc = flex_array_get(tset->tc_array, tset->idx++);
1849 tset->cur_cgrp = tc->cgrp;
1850 return tc->task;
1851}
1852EXPORT_SYMBOL_GPL(cgroup_taskset_next);
1853
1854/**
1855 * cgroup_taskset_cur_cgroup - return the matching cgroup for the current task
1856 * @tset: taskset of interest
1857 *
1858 * Return the cgroup for the current (last returned) task of @tset. This
1859 * function must be preceded by either cgroup_taskset_first() or
1860 * cgroup_taskset_next().
1861 */
1862struct cgroup *cgroup_taskset_cur_cgroup(struct cgroup_taskset *tset)
1863{
1864 return tset->cur_cgrp;
1865}
1866EXPORT_SYMBOL_GPL(cgroup_taskset_cur_cgroup);
1867
1868/**
1869 * cgroup_taskset_size - return the number of tasks in taskset
1870 * @tset: taskset of interest
1871 */
1872int cgroup_taskset_size(struct cgroup_taskset *tset)
1873{
1874 return tset->tc_array ? tset->tc_array_len : 1;
1875}
1876EXPORT_SYMBOL_GPL(cgroup_taskset_size);
1877
1878
Ben Blum74a11662011-05-26 16:25:20 -07001879/*
1880 * cgroup_task_migrate - move a task from one cgroup to another.
1881 *
1882 * 'guarantee' is set if the caller promises that a new css_set for the task
1883 * will already exist. If not set, this function might sleep, and can fail with
Tejun Heocd3d0952011-12-12 18:12:21 -08001884 * -ENOMEM. Must be called with cgroup_mutex and threadgroup locked.
Ben Blum74a11662011-05-26 16:25:20 -07001885 */
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001886static void cgroup_task_migrate(struct cgroup *cgrp, struct cgroup *oldcgrp,
1887 struct task_struct *tsk, struct css_set *newcg)
Ben Blum74a11662011-05-26 16:25:20 -07001888{
1889 struct css_set *oldcg;
Ben Blum74a11662011-05-26 16:25:20 -07001890
1891 /*
Mandeep Singh Baines026085e2011-12-21 20:18:35 -08001892 * We are synchronized through threadgroup_lock() against PF_EXITING
1893 * setting such that we can't race against cgroup_exit() changing the
1894 * css_set to init_css_set and dropping the old one.
Ben Blum74a11662011-05-26 16:25:20 -07001895 */
Frederic Weisbeckerc84cdf72011-12-21 20:03:18 +01001896 WARN_ON_ONCE(tsk->flags & PF_EXITING);
Ben Blum74a11662011-05-26 16:25:20 -07001897 oldcg = tsk->cgroups;
Ben Blum74a11662011-05-26 16:25:20 -07001898
Ben Blum74a11662011-05-26 16:25:20 -07001899 task_lock(tsk);
Ben Blum74a11662011-05-26 16:25:20 -07001900 rcu_assign_pointer(tsk->cgroups, newcg);
1901 task_unlock(tsk);
1902
1903 /* Update the css_set linked lists if we're using them */
1904 write_lock(&css_set_lock);
1905 if (!list_empty(&tsk->cg_list))
1906 list_move(&tsk->cg_list, &newcg->tasks);
1907 write_unlock(&css_set_lock);
1908
1909 /*
1910 * We just gained a reference on oldcg by taking it from the task. As
1911 * trading it for newcg is protected by cgroup_mutex, we're safe to drop
1912 * it here; it will be freed under RCU.
1913 */
Ben Blum74a11662011-05-26 16:25:20 -07001914 set_bit(CGRP_RELEASABLE, &oldcgrp->flags);
Daisuke Nishimura1f5320d2012-10-04 16:37:16 +09001915 put_css_set(oldcg);
Ben Blum74a11662011-05-26 16:25:20 -07001916}
1917
Li Zefana043e3b2008-02-23 15:24:09 -08001918/**
1919 * cgroup_attach_task - attach task 'tsk' to cgroup 'cgrp'
1920 * @cgrp: the cgroup the task is attaching to
1921 * @tsk: the task to be attached
Paul Menagebbcb81d2007-10-18 23:39:32 -07001922 *
Tejun Heocd3d0952011-12-12 18:12:21 -08001923 * Call with cgroup_mutex and threadgroup locked. May take task_lock of
1924 * @tsk during call.
Paul Menagebbcb81d2007-10-18 23:39:32 -07001925 */
Cliff Wickman956db3c2008-02-07 00:14:43 -08001926int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001927{
Tejun Heo8f121912012-03-29 22:03:33 -07001928 int retval = 0;
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001929 struct cgroup_subsys *ss, *failed_ss = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07001930 struct cgroup *oldcgrp;
Paul Menagebd89aab2007-10-18 23:40:44 -07001931 struct cgroupfs_root *root = cgrp->root;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001932 struct cgroup_taskset tset = { };
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001933 struct css_set *newcg;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001934
Tejun Heocd3d0952011-12-12 18:12:21 -08001935 /* @tsk either already exited or can't exit until the end */
1936 if (tsk->flags & PF_EXITING)
1937 return -ESRCH;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001938
1939 /* Nothing to do if the task is already in that cgroup */
Paul Menage7717f7b2009-09-23 15:56:22 -07001940 oldcgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07001941 if (cgrp == oldcgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001942 return 0;
1943
Tejun Heo2f7ee562011-12-12 18:12:21 -08001944 tset.single.task = tsk;
1945 tset.single.cgrp = oldcgrp;
1946
Paul Menagebbcb81d2007-10-18 23:39:32 -07001947 for_each_subsys(root, ss) {
1948 if (ss->can_attach) {
Li Zefan761b3ef2012-01-31 13:47:36 +08001949 retval = ss->can_attach(cgrp, &tset);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001950 if (retval) {
1951 /*
1952 * Remember on which subsystem the can_attach()
1953 * failed, so that we only call cancel_attach()
1954 * against the subsystems whose can_attach()
1955 * succeeded. (See below)
1956 */
1957 failed_ss = ss;
1958 goto out;
1959 }
Paul Menagebbcb81d2007-10-18 23:39:32 -07001960 }
1961 }
1962
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001963 newcg = find_css_set(tsk->cgroups, cgrp);
1964 if (!newcg) {
1965 retval = -ENOMEM;
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001966 goto out;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001967 }
1968
1969 cgroup_task_migrate(cgrp, oldcgrp, tsk, newcg);
Paul Menage817929e2007-10-18 23:39:36 -07001970
Paul Menagebbcb81d2007-10-18 23:39:32 -07001971 for_each_subsys(root, ss) {
Paul Jacksone18f6312008-02-07 00:13:44 -08001972 if (ss->attach)
Li Zefan761b3ef2012-01-31 13:47:36 +08001973 ss->attach(cgrp, &tset);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001974 }
Ben Blum74a11662011-05-26 16:25:20 -07001975
Paul Menagebbcb81d2007-10-18 23:39:32 -07001976 synchronize_rcu();
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001977out:
1978 if (retval) {
1979 for_each_subsys(root, ss) {
1980 if (ss == failed_ss)
1981 /*
1982 * This subsystem was the one that failed the
1983 * can_attach() check earlier, so we don't need
1984 * to call cancel_attach() against it or any
1985 * remaining subsystems.
1986 */
1987 break;
1988 if (ss->cancel_attach)
Li Zefan761b3ef2012-01-31 13:47:36 +08001989 ss->cancel_attach(cgrp, &tset);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001990 }
1991 }
1992 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001993}
1994
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001995/**
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001996 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
1997 * @from: attach to all cgroups of a given task
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001998 * @tsk: the task to be attached
1999 */
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07002000int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02002001{
2002 struct cgroupfs_root *root;
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02002003 int retval = 0;
2004
2005 cgroup_lock();
2006 for_each_active_root(root) {
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07002007 struct cgroup *from_cg = task_cgroup_from_root(from, root);
2008
2009 retval = cgroup_attach_task(from_cg, tsk);
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02002010 if (retval)
2011 break;
2012 }
2013 cgroup_unlock();
2014
2015 return retval;
2016}
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07002017EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02002018
Ben Blum74a11662011-05-26 16:25:20 -07002019/**
2020 * cgroup_attach_proc - attach all threads in a threadgroup to a cgroup
2021 * @cgrp: the cgroup to attach to
2022 * @leader: the threadgroup leader task_struct of the group to be attached
2023 *
Tejun Heo257058a2011-12-12 18:12:21 -08002024 * Call holding cgroup_mutex and the group_rwsem of the leader. Will take
2025 * task_lock of each thread in leader's threadgroup individually in turn.
Ben Blum74a11662011-05-26 16:25:20 -07002026 */
Kirill A. Shutemov1c6c3fa2011-12-27 07:46:25 +02002027static int cgroup_attach_proc(struct cgroup *cgrp, struct task_struct *leader)
Ben Blum74a11662011-05-26 16:25:20 -07002028{
2029 int retval, i, group_size;
2030 struct cgroup_subsys *ss, *failed_ss = NULL;
Ben Blum74a11662011-05-26 16:25:20 -07002031 /* guaranteed to be initialized later, but the compiler needs this */
Ben Blum74a11662011-05-26 16:25:20 -07002032 struct cgroupfs_root *root = cgrp->root;
2033 /* threadgroup list cursor and array */
2034 struct task_struct *tsk;
Tejun Heo134d3372011-12-12 18:12:21 -08002035 struct task_and_cgroup *tc;
Ben Blumd8466872011-05-26 16:25:21 -07002036 struct flex_array *group;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002037 struct cgroup_taskset tset = { };
Ben Blum74a11662011-05-26 16:25:20 -07002038
2039 /*
2040 * step 0: in order to do expensive, possibly blocking operations for
2041 * every thread, we cannot iterate the thread group list, since it needs
2042 * rcu or tasklist locked. instead, build an array of all threads in the
Tejun Heo257058a2011-12-12 18:12:21 -08002043 * group - group_rwsem prevents new threads from appearing, and if
2044 * threads exit, this will just be an over-estimate.
Ben Blum74a11662011-05-26 16:25:20 -07002045 */
2046 group_size = get_nr_threads(leader);
Ben Blumd8466872011-05-26 16:25:21 -07002047 /* flex_array supports very large thread-groups better than kmalloc. */
Tejun Heo134d3372011-12-12 18:12:21 -08002048 group = flex_array_alloc(sizeof(*tc), group_size, GFP_KERNEL);
Ben Blum74a11662011-05-26 16:25:20 -07002049 if (!group)
2050 return -ENOMEM;
Ben Blumd8466872011-05-26 16:25:21 -07002051 /* pre-allocate to guarantee space while iterating in rcu read-side. */
2052 retval = flex_array_prealloc(group, 0, group_size - 1, GFP_KERNEL);
2053 if (retval)
2054 goto out_free_group_list;
Ben Blum74a11662011-05-26 16:25:20 -07002055
Ben Blum74a11662011-05-26 16:25:20 -07002056 tsk = leader;
2057 i = 0;
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002058 /*
2059 * Prevent freeing of tasks while we take a snapshot. Tasks that are
2060 * already PF_EXITING could be freed from underneath us unless we
2061 * take an rcu_read_lock.
2062 */
2063 rcu_read_lock();
Ben Blum74a11662011-05-26 16:25:20 -07002064 do {
Tejun Heo134d3372011-12-12 18:12:21 -08002065 struct task_and_cgroup ent;
2066
Tejun Heocd3d0952011-12-12 18:12:21 -08002067 /* @tsk either already exited or can't exit until the end */
2068 if (tsk->flags & PF_EXITING)
2069 continue;
2070
Ben Blum74a11662011-05-26 16:25:20 -07002071 /* as per above, nr_threads may decrease, but not increase. */
2072 BUG_ON(i >= group_size);
Tejun Heo134d3372011-12-12 18:12:21 -08002073 ent.task = tsk;
2074 ent.cgrp = task_cgroup_from_root(tsk, root);
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08002075 /* nothing to do if this task is already in the cgroup */
2076 if (ent.cgrp == cgrp)
2077 continue;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002078 /*
2079 * saying GFP_ATOMIC has no effect here because we did prealloc
2080 * earlier, but it's good form to communicate our expectations.
2081 */
Tejun Heo134d3372011-12-12 18:12:21 -08002082 retval = flex_array_put(group, i, &ent, GFP_ATOMIC);
Ben Blumd8466872011-05-26 16:25:21 -07002083 BUG_ON(retval != 0);
Ben Blum74a11662011-05-26 16:25:20 -07002084 i++;
2085 } while_each_thread(leader, tsk);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002086 rcu_read_unlock();
Ben Blum74a11662011-05-26 16:25:20 -07002087 /* remember the number of threads in the array for later. */
2088 group_size = i;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002089 tset.tc_array = group;
2090 tset.tc_array_len = group_size;
Ben Blum74a11662011-05-26 16:25:20 -07002091
Tejun Heo134d3372011-12-12 18:12:21 -08002092 /* methods shouldn't be called if no task is actually migrating */
2093 retval = 0;
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08002094 if (!group_size)
Mandeep Singh Bainesb07ef772011-12-21 20:18:36 -08002095 goto out_free_group_list;
Tejun Heo134d3372011-12-12 18:12:21 -08002096
Ben Blum74a11662011-05-26 16:25:20 -07002097 /*
2098 * step 1: check that we can legitimately attach to the cgroup.
2099 */
2100 for_each_subsys(root, ss) {
2101 if (ss->can_attach) {
Li Zefan761b3ef2012-01-31 13:47:36 +08002102 retval = ss->can_attach(cgrp, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002103 if (retval) {
2104 failed_ss = ss;
2105 goto out_cancel_attach;
2106 }
2107 }
Ben Blum74a11662011-05-26 16:25:20 -07002108 }
2109
2110 /*
2111 * step 2: make sure css_sets exist for all threads to be migrated.
2112 * we use find_css_set, which allocates a new one if necessary.
2113 */
Ben Blum74a11662011-05-26 16:25:20 -07002114 for (i = 0; i < group_size; i++) {
Tejun Heo134d3372011-12-12 18:12:21 -08002115 tc = flex_array_get(group, i);
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002116 tc->cg = find_css_set(tc->task->cgroups, cgrp);
2117 if (!tc->cg) {
2118 retval = -ENOMEM;
2119 goto out_put_css_set_refs;
Ben Blum74a11662011-05-26 16:25:20 -07002120 }
2121 }
2122
2123 /*
Tejun Heo494c1672011-12-12 18:12:22 -08002124 * step 3: now that we're guaranteed success wrt the css_sets,
2125 * proceed to move all tasks to the new cgroup. There are no
2126 * failure cases after here, so this is the commit point.
Ben Blum74a11662011-05-26 16:25:20 -07002127 */
Ben Blum74a11662011-05-26 16:25:20 -07002128 for (i = 0; i < group_size; i++) {
Tejun Heo134d3372011-12-12 18:12:21 -08002129 tc = flex_array_get(group, i);
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002130 cgroup_task_migrate(cgrp, tc->cgrp, tc->task, tc->cg);
Ben Blum74a11662011-05-26 16:25:20 -07002131 }
2132 /* nothing is sensitive to fork() after this point. */
2133
2134 /*
Tejun Heo494c1672011-12-12 18:12:22 -08002135 * step 4: do subsystem attach callbacks.
Ben Blum74a11662011-05-26 16:25:20 -07002136 */
2137 for_each_subsys(root, ss) {
2138 if (ss->attach)
Li Zefan761b3ef2012-01-31 13:47:36 +08002139 ss->attach(cgrp, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002140 }
2141
2142 /*
2143 * step 5: success! and cleanup
2144 */
2145 synchronize_rcu();
Ben Blum74a11662011-05-26 16:25:20 -07002146 retval = 0;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002147out_put_css_set_refs:
2148 if (retval) {
2149 for (i = 0; i < group_size; i++) {
2150 tc = flex_array_get(group, i);
2151 if (!tc->cg)
2152 break;
2153 put_css_set(tc->cg);
2154 }
Ben Blum74a11662011-05-26 16:25:20 -07002155 }
2156out_cancel_attach:
Ben Blum74a11662011-05-26 16:25:20 -07002157 if (retval) {
2158 for_each_subsys(root, ss) {
Tejun Heo494c1672011-12-12 18:12:22 -08002159 if (ss == failed_ss)
Ben Blum74a11662011-05-26 16:25:20 -07002160 break;
Ben Blum74a11662011-05-26 16:25:20 -07002161 if (ss->cancel_attach)
Li Zefan761b3ef2012-01-31 13:47:36 +08002162 ss->cancel_attach(cgrp, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002163 }
2164 }
Ben Blum74a11662011-05-26 16:25:20 -07002165out_free_group_list:
Ben Blumd8466872011-05-26 16:25:21 -07002166 flex_array_free(group);
Ben Blum74a11662011-05-26 16:25:20 -07002167 return retval;
2168}
2169
2170/*
2171 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08002172 * function to attach either it or all tasks in its threadgroup. Will lock
2173 * cgroup_mutex and threadgroup; may take task_lock of task.
Ben Blum74a11662011-05-26 16:25:20 -07002174 */
2175static int attach_task_by_pid(struct cgroup *cgrp, u64 pid, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002176{
Paul Menagebbcb81d2007-10-18 23:39:32 -07002177 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11002178 const struct cred *cred = current_cred(), *tcred;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002179 int ret;
2180
Ben Blum74a11662011-05-26 16:25:20 -07002181 if (!cgroup_lock_live_group(cgrp))
2182 return -ENODEV;
2183
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002184retry_find_task:
2185 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002186 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002187 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07002188 if (!tsk) {
Paul Menagebbcb81d2007-10-18 23:39:32 -07002189 rcu_read_unlock();
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002190 ret= -ESRCH;
2191 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002192 }
Ben Blum74a11662011-05-26 16:25:20 -07002193 /*
2194 * even if we're attaching all tasks in the thread group, we
2195 * only need to check permissions on one of them.
2196 */
David Howellsc69e8d92008-11-14 10:39:19 +11002197 tcred = __task_cred(tsk);
Eric W. Biederman14a590c2012-03-12 15:44:39 -07002198 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
2199 !uid_eq(cred->euid, tcred->uid) &&
2200 !uid_eq(cred->euid, tcred->suid)) {
David Howellsc69e8d92008-11-14 10:39:19 +11002201 rcu_read_unlock();
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002202 ret = -EACCES;
2203 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002204 }
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002205 } else
2206 tsk = current;
Tejun Heocd3d0952011-12-12 18:12:21 -08002207
2208 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002209 tsk = tsk->group_leader;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002210
2211 /*
2212 * Workqueue threads may acquire PF_THREAD_BOUND and become
2213 * trapped in a cpuset, or RT worker may be born in a cgroup
2214 * with no rt_runtime allocated. Just say no.
2215 */
2216 if (tsk == kthreadd_task || (tsk->flags & PF_THREAD_BOUND)) {
2217 ret = -EINVAL;
2218 rcu_read_unlock();
2219 goto out_unlock_cgroup;
2220 }
2221
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002222 get_task_struct(tsk);
2223 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08002224
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002225 threadgroup_lock(tsk);
2226 if (threadgroup) {
2227 if (!thread_group_leader(tsk)) {
2228 /*
2229 * a race with de_thread from another thread's exec()
2230 * may strip us of our leadership, if this happens,
2231 * there is no choice but to throw this task away and
2232 * try again; this is
2233 * "double-double-toil-and-trouble-check locking".
2234 */
2235 threadgroup_unlock(tsk);
2236 put_task_struct(tsk);
2237 goto retry_find_task;
2238 }
2239 ret = cgroup_attach_proc(cgrp, tsk);
2240 } else
2241 ret = cgroup_attach_task(cgrp, tsk);
Tejun Heocd3d0952011-12-12 18:12:21 -08002242 threadgroup_unlock(tsk);
2243
Paul Menagebbcb81d2007-10-18 23:39:32 -07002244 put_task_struct(tsk);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002245out_unlock_cgroup:
Ben Blum74a11662011-05-26 16:25:20 -07002246 cgroup_unlock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002247 return ret;
2248}
2249
Paul Menageaf351022008-07-25 01:47:01 -07002250static int cgroup_tasks_write(struct cgroup *cgrp, struct cftype *cft, u64 pid)
2251{
Ben Blum74a11662011-05-26 16:25:20 -07002252 return attach_task_by_pid(cgrp, pid, false);
2253}
2254
2255static int cgroup_procs_write(struct cgroup *cgrp, struct cftype *cft, u64 tgid)
2256{
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002257 return attach_task_by_pid(cgrp, tgid, true);
Paul Menageaf351022008-07-25 01:47:01 -07002258}
2259
Paul Menagee788e062008-07-25 01:46:59 -07002260/**
2261 * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive.
2262 * @cgrp: the cgroup to be checked for liveness
2263 *
Paul Menage84eea842008-07-25 01:47:00 -07002264 * On success, returns true; the lock should be later released with
2265 * cgroup_unlock(). On failure returns false with no lock held.
Paul Menagee788e062008-07-25 01:46:59 -07002266 */
Paul Menage84eea842008-07-25 01:47:00 -07002267bool cgroup_lock_live_group(struct cgroup *cgrp)
Paul Menagee788e062008-07-25 01:46:59 -07002268{
2269 mutex_lock(&cgroup_mutex);
2270 if (cgroup_is_removed(cgrp)) {
2271 mutex_unlock(&cgroup_mutex);
2272 return false;
2273 }
2274 return true;
2275}
Ben Blum67523c42010-03-10 15:22:11 -08002276EXPORT_SYMBOL_GPL(cgroup_lock_live_group);
Paul Menagee788e062008-07-25 01:46:59 -07002277
2278static int cgroup_release_agent_write(struct cgroup *cgrp, struct cftype *cft,
2279 const char *buffer)
2280{
2281 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
Evgeny Kuznetsovf4a25892010-10-27 15:33:37 -07002282 if (strlen(buffer) >= PATH_MAX)
2283 return -EINVAL;
Paul Menagee788e062008-07-25 01:46:59 -07002284 if (!cgroup_lock_live_group(cgrp))
2285 return -ENODEV;
Tejun Heoe25e2cb2011-12-12 18:12:21 -08002286 mutex_lock(&cgroup_root_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07002287 strcpy(cgrp->root->release_agent_path, buffer);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08002288 mutex_unlock(&cgroup_root_mutex);
Paul Menage84eea842008-07-25 01:47:00 -07002289 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07002290 return 0;
2291}
2292
2293static int cgroup_release_agent_show(struct cgroup *cgrp, struct cftype *cft,
2294 struct seq_file *seq)
2295{
2296 if (!cgroup_lock_live_group(cgrp))
2297 return -ENODEV;
2298 seq_puts(seq, cgrp->root->release_agent_path);
2299 seq_putc(seq, '\n');
Paul Menage84eea842008-07-25 01:47:00 -07002300 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07002301 return 0;
2302}
2303
Paul Menage84eea842008-07-25 01:47:00 -07002304/* A buffer size big enough for numbers or short strings */
2305#define CGROUP_LOCAL_BUFFER_SIZE 64
2306
Paul Menagee73d2c62008-04-29 01:00:06 -07002307static ssize_t cgroup_write_X64(struct cgroup *cgrp, struct cftype *cft,
Paul Menagef4c753b2008-04-29 00:59:56 -07002308 struct file *file,
2309 const char __user *userbuf,
2310 size_t nbytes, loff_t *unused_ppos)
Paul Menage355e0c42007-10-18 23:39:33 -07002311{
Paul Menage84eea842008-07-25 01:47:00 -07002312 char buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menage355e0c42007-10-18 23:39:33 -07002313 int retval = 0;
Paul Menage355e0c42007-10-18 23:39:33 -07002314 char *end;
2315
2316 if (!nbytes)
2317 return -EINVAL;
2318 if (nbytes >= sizeof(buffer))
2319 return -E2BIG;
2320 if (copy_from_user(buffer, userbuf, nbytes))
2321 return -EFAULT;
2322
2323 buffer[nbytes] = 0; /* nul-terminate */
Paul Menagee73d2c62008-04-29 01:00:06 -07002324 if (cft->write_u64) {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002325 u64 val = simple_strtoull(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07002326 if (*end)
2327 return -EINVAL;
2328 retval = cft->write_u64(cgrp, cft, val);
2329 } else {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002330 s64 val = simple_strtoll(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07002331 if (*end)
2332 return -EINVAL;
2333 retval = cft->write_s64(cgrp, cft, val);
2334 }
Paul Menage355e0c42007-10-18 23:39:33 -07002335 if (!retval)
2336 retval = nbytes;
2337 return retval;
2338}
2339
Paul Menagedb3b1492008-07-25 01:46:58 -07002340static ssize_t cgroup_write_string(struct cgroup *cgrp, struct cftype *cft,
2341 struct file *file,
2342 const char __user *userbuf,
2343 size_t nbytes, loff_t *unused_ppos)
2344{
Paul Menage84eea842008-07-25 01:47:00 -07002345 char local_buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagedb3b1492008-07-25 01:46:58 -07002346 int retval = 0;
2347 size_t max_bytes = cft->max_write_len;
2348 char *buffer = local_buffer;
2349
2350 if (!max_bytes)
2351 max_bytes = sizeof(local_buffer) - 1;
2352 if (nbytes >= max_bytes)
2353 return -E2BIG;
2354 /* Allocate a dynamic buffer if we need one */
2355 if (nbytes >= sizeof(local_buffer)) {
2356 buffer = kmalloc(nbytes + 1, GFP_KERNEL);
2357 if (buffer == NULL)
2358 return -ENOMEM;
2359 }
Li Zefan5a3eb9f2008-07-29 22:33:18 -07002360 if (nbytes && copy_from_user(buffer, userbuf, nbytes)) {
2361 retval = -EFAULT;
2362 goto out;
2363 }
Paul Menagedb3b1492008-07-25 01:46:58 -07002364
2365 buffer[nbytes] = 0; /* nul-terminate */
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002366 retval = cft->write_string(cgrp, cft, strstrip(buffer));
Paul Menagedb3b1492008-07-25 01:46:58 -07002367 if (!retval)
2368 retval = nbytes;
Li Zefan5a3eb9f2008-07-29 22:33:18 -07002369out:
Paul Menagedb3b1492008-07-25 01:46:58 -07002370 if (buffer != local_buffer)
2371 kfree(buffer);
2372 return retval;
2373}
2374
Paul Menageddbcc7e2007-10-18 23:39:30 -07002375static ssize_t cgroup_file_write(struct file *file, const char __user *buf,
2376 size_t nbytes, loff_t *ppos)
2377{
2378 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07002379 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002380
Li Zefan75139b82009-01-07 18:07:33 -08002381 if (cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07002382 return -ENODEV;
Paul Menage355e0c42007-10-18 23:39:33 -07002383 if (cft->write)
Paul Menagebd89aab2007-10-18 23:40:44 -07002384 return cft->write(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002385 if (cft->write_u64 || cft->write_s64)
2386 return cgroup_write_X64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagedb3b1492008-07-25 01:46:58 -07002387 if (cft->write_string)
2388 return cgroup_write_string(cgrp, cft, file, buf, nbytes, ppos);
Pavel Emelyanovd447ea22008-04-29 01:00:08 -07002389 if (cft->trigger) {
2390 int ret = cft->trigger(cgrp, (unsigned int)cft->private);
2391 return ret ? ret : nbytes;
2392 }
Paul Menage355e0c42007-10-18 23:39:33 -07002393 return -EINVAL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002394}
2395
Paul Menagef4c753b2008-04-29 00:59:56 -07002396static ssize_t cgroup_read_u64(struct cgroup *cgrp, struct cftype *cft,
2397 struct file *file,
2398 char __user *buf, size_t nbytes,
2399 loff_t *ppos)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002400{
Paul Menage84eea842008-07-25 01:47:00 -07002401 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagef4c753b2008-04-29 00:59:56 -07002402 u64 val = cft->read_u64(cgrp, cft);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002403 int len = sprintf(tmp, "%llu\n", (unsigned long long) val);
2404
2405 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2406}
2407
Paul Menagee73d2c62008-04-29 01:00:06 -07002408static ssize_t cgroup_read_s64(struct cgroup *cgrp, struct cftype *cft,
2409 struct file *file,
2410 char __user *buf, size_t nbytes,
2411 loff_t *ppos)
2412{
Paul Menage84eea842008-07-25 01:47:00 -07002413 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagee73d2c62008-04-29 01:00:06 -07002414 s64 val = cft->read_s64(cgrp, cft);
2415 int len = sprintf(tmp, "%lld\n", (long long) val);
2416
2417 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2418}
2419
Paul Menageddbcc7e2007-10-18 23:39:30 -07002420static ssize_t cgroup_file_read(struct file *file, char __user *buf,
2421 size_t nbytes, loff_t *ppos)
2422{
2423 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07002424 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002425
Li Zefan75139b82009-01-07 18:07:33 -08002426 if (cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07002427 return -ENODEV;
2428
2429 if (cft->read)
Paul Menagebd89aab2007-10-18 23:40:44 -07002430 return cft->read(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagef4c753b2008-04-29 00:59:56 -07002431 if (cft->read_u64)
2432 return cgroup_read_u64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002433 if (cft->read_s64)
2434 return cgroup_read_s64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002435 return -EINVAL;
2436}
2437
Paul Menage91796562008-04-29 01:00:01 -07002438/*
2439 * seqfile ops/methods for returning structured data. Currently just
2440 * supports string->u64 maps, but can be extended in future.
2441 */
2442
2443struct cgroup_seqfile_state {
2444 struct cftype *cft;
2445 struct cgroup *cgroup;
2446};
2447
2448static int cgroup_map_add(struct cgroup_map_cb *cb, const char *key, u64 value)
2449{
2450 struct seq_file *sf = cb->state;
2451 return seq_printf(sf, "%s %llu\n", key, (unsigned long long)value);
2452}
2453
2454static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2455{
2456 struct cgroup_seqfile_state *state = m->private;
2457 struct cftype *cft = state->cft;
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002458 if (cft->read_map) {
2459 struct cgroup_map_cb cb = {
2460 .fill = cgroup_map_add,
2461 .state = m,
2462 };
2463 return cft->read_map(state->cgroup, cft, &cb);
2464 }
2465 return cft->read_seq_string(state->cgroup, cft, m);
Paul Menage91796562008-04-29 01:00:01 -07002466}
2467
Adrian Bunk96930a62008-07-25 19:46:21 -07002468static int cgroup_seqfile_release(struct inode *inode, struct file *file)
Paul Menage91796562008-04-29 01:00:01 -07002469{
2470 struct seq_file *seq = file->private_data;
2471 kfree(seq->private);
2472 return single_release(inode, file);
2473}
2474
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002475static const struct file_operations cgroup_seqfile_operations = {
Paul Menage91796562008-04-29 01:00:01 -07002476 .read = seq_read,
Paul Menagee788e062008-07-25 01:46:59 -07002477 .write = cgroup_file_write,
Paul Menage91796562008-04-29 01:00:01 -07002478 .llseek = seq_lseek,
2479 .release = cgroup_seqfile_release,
2480};
2481
Paul Menageddbcc7e2007-10-18 23:39:30 -07002482static int cgroup_file_open(struct inode *inode, struct file *file)
2483{
2484 int err;
2485 struct cftype *cft;
2486
2487 err = generic_file_open(inode, file);
2488 if (err)
2489 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002490 cft = __d_cft(file->f_dentry);
Li Zefan75139b82009-01-07 18:07:33 -08002491
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002492 if (cft->read_map || cft->read_seq_string) {
Paul Menage91796562008-04-29 01:00:01 -07002493 struct cgroup_seqfile_state *state =
2494 kzalloc(sizeof(*state), GFP_USER);
2495 if (!state)
2496 return -ENOMEM;
2497 state->cft = cft;
2498 state->cgroup = __d_cgrp(file->f_dentry->d_parent);
2499 file->f_op = &cgroup_seqfile_operations;
2500 err = single_open(file, cgroup_seqfile_show, state);
2501 if (err < 0)
2502 kfree(state);
2503 } else if (cft->open)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002504 err = cft->open(inode, file);
2505 else
2506 err = 0;
2507
2508 return err;
2509}
2510
2511static int cgroup_file_release(struct inode *inode, struct file *file)
2512{
2513 struct cftype *cft = __d_cft(file->f_dentry);
2514 if (cft->release)
2515 return cft->release(inode, file);
2516 return 0;
2517}
2518
2519/*
2520 * cgroup_rename - Only allow simple rename of directories in place.
2521 */
2522static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry,
2523 struct inode *new_dir, struct dentry *new_dentry)
2524{
2525 if (!S_ISDIR(old_dentry->d_inode->i_mode))
2526 return -ENOTDIR;
2527 if (new_dentry->d_inode)
2528 return -EEXIST;
2529 if (old_dir != new_dir)
2530 return -EIO;
2531 return simple_rename(old_dir, old_dentry, new_dir, new_dentry);
2532}
2533
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002534static struct simple_xattrs *__d_xattrs(struct dentry *dentry)
2535{
2536 if (S_ISDIR(dentry->d_inode->i_mode))
2537 return &__d_cgrp(dentry)->xattrs;
2538 else
2539 return &__d_cft(dentry)->xattrs;
2540}
2541
2542static inline int xattr_enabled(struct dentry *dentry)
2543{
2544 struct cgroupfs_root *root = dentry->d_sb->s_fs_info;
2545 return test_bit(ROOT_XATTR, &root->flags);
2546}
2547
2548static bool is_valid_xattr(const char *name)
2549{
2550 if (!strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN) ||
2551 !strncmp(name, XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN))
2552 return true;
2553 return false;
2554}
2555
2556static int cgroup_setxattr(struct dentry *dentry, const char *name,
2557 const void *val, size_t size, int flags)
2558{
2559 if (!xattr_enabled(dentry))
2560 return -EOPNOTSUPP;
2561 if (!is_valid_xattr(name))
2562 return -EINVAL;
2563 return simple_xattr_set(__d_xattrs(dentry), name, val, size, flags);
2564}
2565
2566static int cgroup_removexattr(struct dentry *dentry, const char *name)
2567{
2568 if (!xattr_enabled(dentry))
2569 return -EOPNOTSUPP;
2570 if (!is_valid_xattr(name))
2571 return -EINVAL;
2572 return simple_xattr_remove(__d_xattrs(dentry), name);
2573}
2574
2575static ssize_t cgroup_getxattr(struct dentry *dentry, const char *name,
2576 void *buf, size_t size)
2577{
2578 if (!xattr_enabled(dentry))
2579 return -EOPNOTSUPP;
2580 if (!is_valid_xattr(name))
2581 return -EINVAL;
2582 return simple_xattr_get(__d_xattrs(dentry), name, buf, size);
2583}
2584
2585static ssize_t cgroup_listxattr(struct dentry *dentry, char *buf, size_t size)
2586{
2587 if (!xattr_enabled(dentry))
2588 return -EOPNOTSUPP;
2589 return simple_xattr_list(__d_xattrs(dentry), buf, size);
2590}
2591
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002592static const struct file_operations cgroup_file_operations = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002593 .read = cgroup_file_read,
2594 .write = cgroup_file_write,
2595 .llseek = generic_file_llseek,
2596 .open = cgroup_file_open,
2597 .release = cgroup_file_release,
2598};
2599
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002600static const struct inode_operations cgroup_file_inode_operations = {
2601 .setxattr = cgroup_setxattr,
2602 .getxattr = cgroup_getxattr,
2603 .listxattr = cgroup_listxattr,
2604 .removexattr = cgroup_removexattr,
2605};
2606
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07002607static const struct inode_operations cgroup_dir_inode_operations = {
Al Viroc72a04e2011-01-14 05:31:45 +00002608 .lookup = cgroup_lookup,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002609 .mkdir = cgroup_mkdir,
2610 .rmdir = cgroup_rmdir,
2611 .rename = cgroup_rename,
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002612 .setxattr = cgroup_setxattr,
2613 .getxattr = cgroup_getxattr,
2614 .listxattr = cgroup_listxattr,
2615 .removexattr = cgroup_removexattr,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002616};
2617
Al Viro00cd8dd2012-06-10 17:13:09 -04002618static struct dentry *cgroup_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
Al Viroc72a04e2011-01-14 05:31:45 +00002619{
2620 if (dentry->d_name.len > NAME_MAX)
2621 return ERR_PTR(-ENAMETOOLONG);
2622 d_add(dentry, NULL);
2623 return NULL;
2624}
2625
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08002626/*
2627 * Check if a file is a control file
2628 */
2629static inline struct cftype *__file_cft(struct file *file)
2630{
2631 if (file->f_dentry->d_inode->i_fop != &cgroup_file_operations)
2632 return ERR_PTR(-EINVAL);
2633 return __d_cft(file->f_dentry);
2634}
2635
Al Viroa5e7ed32011-07-26 01:55:55 -04002636static int cgroup_create_file(struct dentry *dentry, umode_t mode,
Nick Piggin5adcee12011-01-07 17:49:20 +11002637 struct super_block *sb)
2638{
Paul Menageddbcc7e2007-10-18 23:39:30 -07002639 struct inode *inode;
2640
2641 if (!dentry)
2642 return -ENOENT;
2643 if (dentry->d_inode)
2644 return -EEXIST;
2645
2646 inode = cgroup_new_inode(mode, sb);
2647 if (!inode)
2648 return -ENOMEM;
2649
2650 if (S_ISDIR(mode)) {
2651 inode->i_op = &cgroup_dir_inode_operations;
2652 inode->i_fop = &simple_dir_operations;
2653
2654 /* start off with i_nlink == 2 (for "." entry) */
2655 inc_nlink(inode);
Tejun Heo28fd6f32012-11-19 08:13:36 -08002656 inc_nlink(dentry->d_parent->d_inode);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002657
2658 /* start with the directory inode held, so that we can
2659 * populate it without racing with another mkdir */
Paul Menage817929e2007-10-18 23:39:36 -07002660 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002661 } else if (S_ISREG(mode)) {
2662 inode->i_size = 0;
2663 inode->i_fop = &cgroup_file_operations;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002664 inode->i_op = &cgroup_file_inode_operations;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002665 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002666 d_instantiate(dentry, inode);
2667 dget(dentry); /* Extra count - pin the dentry in core */
2668 return 0;
2669}
2670
Li Zefan099fca32009-04-02 16:57:29 -07002671/**
2672 * cgroup_file_mode - deduce file mode of a control file
2673 * @cft: the control file in question
2674 *
2675 * returns cft->mode if ->mode is not 0
2676 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
2677 * returns S_IRUGO if it has only a read handler
2678 * returns S_IWUSR if it has only a write hander
2679 */
Al Viroa5e7ed32011-07-26 01:55:55 -04002680static umode_t cgroup_file_mode(const struct cftype *cft)
Li Zefan099fca32009-04-02 16:57:29 -07002681{
Al Viroa5e7ed32011-07-26 01:55:55 -04002682 umode_t mode = 0;
Li Zefan099fca32009-04-02 16:57:29 -07002683
2684 if (cft->mode)
2685 return cft->mode;
2686
2687 if (cft->read || cft->read_u64 || cft->read_s64 ||
2688 cft->read_map || cft->read_seq_string)
2689 mode |= S_IRUGO;
2690
2691 if (cft->write || cft->write_u64 || cft->write_s64 ||
2692 cft->write_string || cft->trigger)
2693 mode |= S_IWUSR;
2694
2695 return mode;
2696}
2697
Tejun Heodb0416b2012-04-01 12:09:55 -07002698static int cgroup_add_file(struct cgroup *cgrp, struct cgroup_subsys *subsys,
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002699 struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002700{
Paul Menagebd89aab2007-10-18 23:40:44 -07002701 struct dentry *dir = cgrp->dentry;
Tejun Heo05ef1d72012-04-01 12:09:56 -07002702 struct cgroup *parent = __d_cgrp(dir);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002703 struct dentry *dentry;
Tejun Heo05ef1d72012-04-01 12:09:56 -07002704 struct cfent *cfe;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002705 int error;
Al Viroa5e7ed32011-07-26 01:55:55 -04002706 umode_t mode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002707 char name[MAX_CGROUP_TYPE_NAMELEN + MAX_CFTYPE_NAME + 2] = { 0 };
Tejun Heo8e3f6542012-04-01 12:09:55 -07002708
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002709 simple_xattrs_init(&cft->xattrs);
2710
Tejun Heo8e3f6542012-04-01 12:09:55 -07002711 /* does @cft->flags tell us to skip creation on @cgrp? */
2712 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgrp->parent)
2713 return 0;
2714 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgrp->parent)
2715 return 0;
2716
Paul Menagebd89aab2007-10-18 23:40:44 -07002717 if (subsys && !test_bit(ROOT_NOPREFIX, &cgrp->root->flags)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002718 strcpy(name, subsys->name);
2719 strcat(name, ".");
2720 }
2721 strcat(name, cft->name);
Tejun Heo05ef1d72012-04-01 12:09:56 -07002722
Paul Menageddbcc7e2007-10-18 23:39:30 -07002723 BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex));
Tejun Heo05ef1d72012-04-01 12:09:56 -07002724
2725 cfe = kzalloc(sizeof(*cfe), GFP_KERNEL);
2726 if (!cfe)
2727 return -ENOMEM;
2728
Paul Menageddbcc7e2007-10-18 23:39:30 -07002729 dentry = lookup_one_len(name, dir, strlen(name));
Tejun Heo05ef1d72012-04-01 12:09:56 -07002730 if (IS_ERR(dentry)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002731 error = PTR_ERR(dentry);
Tejun Heo05ef1d72012-04-01 12:09:56 -07002732 goto out;
2733 }
2734
2735 mode = cgroup_file_mode(cft);
2736 error = cgroup_create_file(dentry, mode | S_IFREG, cgrp->root->sb);
2737 if (!error) {
2738 cfe->type = (void *)cft;
2739 cfe->dentry = dentry;
2740 dentry->d_fsdata = cfe;
2741 list_add_tail(&cfe->node, &parent->files);
2742 cfe = NULL;
2743 }
2744 dput(dentry);
2745out:
2746 kfree(cfe);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002747 return error;
2748}
2749
Tejun Heo79578622012-04-01 12:09:56 -07002750static int cgroup_addrm_files(struct cgroup *cgrp, struct cgroup_subsys *subsys,
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002751 struct cftype cfts[], bool is_add)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002752{
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002753 struct cftype *cft;
Tejun Heodb0416b2012-04-01 12:09:55 -07002754 int err, ret = 0;
2755
2756 for (cft = cfts; cft->name[0] != '\0'; cft++) {
Tejun Heo79578622012-04-01 12:09:56 -07002757 if (is_add)
2758 err = cgroup_add_file(cgrp, subsys, cft);
2759 else
2760 err = cgroup_rm_file(cgrp, cft);
Tejun Heodb0416b2012-04-01 12:09:55 -07002761 if (err) {
Tejun Heo79578622012-04-01 12:09:56 -07002762 pr_warning("cgroup_addrm_files: failed to %s %s, err=%d\n",
2763 is_add ? "add" : "remove", cft->name, err);
Tejun Heodb0416b2012-04-01 12:09:55 -07002764 ret = err;
2765 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002766 }
Tejun Heodb0416b2012-04-01 12:09:55 -07002767 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002768}
2769
Tejun Heo8e3f6542012-04-01 12:09:55 -07002770static DEFINE_MUTEX(cgroup_cft_mutex);
2771
2772static void cgroup_cfts_prepare(void)
2773 __acquires(&cgroup_cft_mutex) __acquires(&cgroup_mutex)
2774{
2775 /*
2776 * Thanks to the entanglement with vfs inode locking, we can't walk
2777 * the existing cgroups under cgroup_mutex and create files.
2778 * Instead, we increment reference on all cgroups and build list of
2779 * them using @cgrp->cft_q_node. Grab cgroup_cft_mutex to ensure
2780 * exclusive access to the field.
2781 */
2782 mutex_lock(&cgroup_cft_mutex);
2783 mutex_lock(&cgroup_mutex);
2784}
2785
2786static void cgroup_cfts_commit(struct cgroup_subsys *ss,
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002787 struct cftype *cfts, bool is_add)
Tejun Heo8e3f6542012-04-01 12:09:55 -07002788 __releases(&cgroup_mutex) __releases(&cgroup_cft_mutex)
2789{
2790 LIST_HEAD(pending);
2791 struct cgroup *cgrp, *n;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002792
2793 /* %NULL @cfts indicates abort and don't bother if @ss isn't attached */
2794 if (cfts && ss->root != &rootnode) {
2795 list_for_each_entry(cgrp, &ss->root->allcg_list, allcg_node) {
2796 dget(cgrp->dentry);
2797 list_add_tail(&cgrp->cft_q_node, &pending);
2798 }
2799 }
2800
2801 mutex_unlock(&cgroup_mutex);
2802
2803 /*
2804 * All new cgroups will see @cfts update on @ss->cftsets. Add/rm
2805 * files for all cgroups which were created before.
2806 */
2807 list_for_each_entry_safe(cgrp, n, &pending, cft_q_node) {
2808 struct inode *inode = cgrp->dentry->d_inode;
2809
2810 mutex_lock(&inode->i_mutex);
2811 mutex_lock(&cgroup_mutex);
2812 if (!cgroup_is_removed(cgrp))
Tejun Heo79578622012-04-01 12:09:56 -07002813 cgroup_addrm_files(cgrp, ss, cfts, is_add);
Tejun Heo8e3f6542012-04-01 12:09:55 -07002814 mutex_unlock(&cgroup_mutex);
2815 mutex_unlock(&inode->i_mutex);
2816
2817 list_del_init(&cgrp->cft_q_node);
2818 dput(cgrp->dentry);
2819 }
2820
2821 mutex_unlock(&cgroup_cft_mutex);
2822}
2823
2824/**
2825 * cgroup_add_cftypes - add an array of cftypes to a subsystem
2826 * @ss: target cgroup subsystem
2827 * @cfts: zero-length name terminated array of cftypes
2828 *
2829 * Register @cfts to @ss. Files described by @cfts are created for all
2830 * existing cgroups to which @ss is attached and all future cgroups will
2831 * have them too. This function can be called anytime whether @ss is
2832 * attached or not.
2833 *
2834 * Returns 0 on successful registration, -errno on failure. Note that this
2835 * function currently returns 0 as long as @cfts registration is successful
2836 * even if some file creation attempts on existing cgroups fail.
2837 */
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002838int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo8e3f6542012-04-01 12:09:55 -07002839{
2840 struct cftype_set *set;
2841
2842 set = kzalloc(sizeof(*set), GFP_KERNEL);
2843 if (!set)
2844 return -ENOMEM;
2845
2846 cgroup_cfts_prepare();
2847 set->cfts = cfts;
2848 list_add_tail(&set->node, &ss->cftsets);
Tejun Heo79578622012-04-01 12:09:56 -07002849 cgroup_cfts_commit(ss, cfts, true);
Tejun Heo8e3f6542012-04-01 12:09:55 -07002850
2851 return 0;
2852}
2853EXPORT_SYMBOL_GPL(cgroup_add_cftypes);
2854
Li Zefana043e3b2008-02-23 15:24:09 -08002855/**
Tejun Heo79578622012-04-01 12:09:56 -07002856 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
2857 * @ss: target cgroup subsystem
2858 * @cfts: zero-length name terminated array of cftypes
2859 *
2860 * Unregister @cfts from @ss. Files described by @cfts are removed from
2861 * all existing cgroups to which @ss is attached and all future cgroups
2862 * won't have them either. This function can be called anytime whether @ss
2863 * is attached or not.
2864 *
2865 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
2866 * registered with @ss.
2867 */
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002868int cgroup_rm_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo79578622012-04-01 12:09:56 -07002869{
2870 struct cftype_set *set;
2871
2872 cgroup_cfts_prepare();
2873
2874 list_for_each_entry(set, &ss->cftsets, node) {
2875 if (set->cfts == cfts) {
2876 list_del_init(&set->node);
2877 cgroup_cfts_commit(ss, cfts, false);
2878 return 0;
2879 }
2880 }
2881
2882 cgroup_cfts_commit(ss, NULL, false);
2883 return -ENOENT;
2884}
2885
2886/**
Li Zefana043e3b2008-02-23 15:24:09 -08002887 * cgroup_task_count - count the number of tasks in a cgroup.
2888 * @cgrp: the cgroup in question
2889 *
2890 * Return the number of tasks in the cgroup.
2891 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002892int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002893{
2894 int count = 0;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07002895 struct cg_cgroup_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002896
Paul Menage817929e2007-10-18 23:39:36 -07002897 read_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07002898 list_for_each_entry(link, &cgrp->css_sets, cgrp_link_list) {
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07002899 count += atomic_read(&link->cg->refcount);
Paul Menage817929e2007-10-18 23:39:36 -07002900 }
2901 read_unlock(&css_set_lock);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002902 return count;
2903}
2904
2905/*
Paul Menage817929e2007-10-18 23:39:36 -07002906 * Advance a list_head iterator. The iterator should be positioned at
2907 * the start of a css_set
2908 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002909static void cgroup_advance_iter(struct cgroup *cgrp,
Paul Menage7717f7b2009-09-23 15:56:22 -07002910 struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002911{
2912 struct list_head *l = it->cg_link;
2913 struct cg_cgroup_link *link;
2914 struct css_set *cg;
2915
2916 /* Advance to the next non-empty css_set */
2917 do {
2918 l = l->next;
Paul Menagebd89aab2007-10-18 23:40:44 -07002919 if (l == &cgrp->css_sets) {
Paul Menage817929e2007-10-18 23:39:36 -07002920 it->cg_link = NULL;
2921 return;
2922 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002923 link = list_entry(l, struct cg_cgroup_link, cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07002924 cg = link->cg;
2925 } while (list_empty(&cg->tasks));
2926 it->cg_link = l;
2927 it->task = cg->tasks.next;
2928}
2929
Cliff Wickman31a7df02008-02-07 00:14:42 -08002930/*
2931 * To reduce the fork() overhead for systems that are not actually
2932 * using their cgroups capability, we don't maintain the lists running
2933 * through each css_set to its tasks until we see the list actually
2934 * used - in other words after the first call to cgroup_iter_start().
Cliff Wickman31a7df02008-02-07 00:14:42 -08002935 */
Adrian Bunk3df91fe2008-04-29 00:59:54 -07002936static void cgroup_enable_task_cg_lists(void)
Cliff Wickman31a7df02008-02-07 00:14:42 -08002937{
2938 struct task_struct *p, *g;
2939 write_lock(&css_set_lock);
2940 use_task_css_set_links = 1;
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01002941 /*
2942 * We need tasklist_lock because RCU is not safe against
2943 * while_each_thread(). Besides, a forking task that has passed
2944 * cgroup_post_fork() without seeing use_task_css_set_links = 1
2945 * is not guaranteed to have its child immediately visible in the
2946 * tasklist if we walk through it with RCU.
2947 */
2948 read_lock(&tasklist_lock);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002949 do_each_thread(g, p) {
2950 task_lock(p);
Li Zefan0e043882008-04-17 11:37:15 +08002951 /*
2952 * We should check if the process is exiting, otherwise
2953 * it will race with cgroup_exit() in that the list
2954 * entry won't be deleted though the process has exited.
2955 */
2956 if (!(p->flags & PF_EXITING) && list_empty(&p->cg_list))
Cliff Wickman31a7df02008-02-07 00:14:42 -08002957 list_add(&p->cg_list, &p->cgroups->tasks);
2958 task_unlock(p);
2959 } while_each_thread(g, p);
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01002960 read_unlock(&tasklist_lock);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002961 write_unlock(&css_set_lock);
2962}
2963
Tejun Heo574bd9f2012-11-09 09:12:29 -08002964/**
2965 * cgroup_next_descendant_pre - find the next descendant for pre-order walk
2966 * @pos: the current position (%NULL to initiate traversal)
2967 * @cgroup: cgroup whose descendants to walk
2968 *
2969 * To be used by cgroup_for_each_descendant_pre(). Find the next
2970 * descendant to visit for pre-order traversal of @cgroup's descendants.
2971 */
2972struct cgroup *cgroup_next_descendant_pre(struct cgroup *pos,
2973 struct cgroup *cgroup)
2974{
2975 struct cgroup *next;
2976
2977 WARN_ON_ONCE(!rcu_read_lock_held());
2978
2979 /* if first iteration, pretend we just visited @cgroup */
2980 if (!pos) {
2981 if (list_empty(&cgroup->children))
2982 return NULL;
2983 pos = cgroup;
2984 }
2985
2986 /* visit the first child if exists */
2987 next = list_first_or_null_rcu(&pos->children, struct cgroup, sibling);
2988 if (next)
2989 return next;
2990
2991 /* no child, visit my or the closest ancestor's next sibling */
2992 do {
2993 next = list_entry_rcu(pos->sibling.next, struct cgroup,
2994 sibling);
2995 if (&next->sibling != &pos->parent->children)
2996 return next;
2997
2998 pos = pos->parent;
2999 } while (pos != cgroup);
3000
3001 return NULL;
3002}
3003EXPORT_SYMBOL_GPL(cgroup_next_descendant_pre);
3004
3005static struct cgroup *cgroup_leftmost_descendant(struct cgroup *pos)
3006{
3007 struct cgroup *last;
3008
3009 do {
3010 last = pos;
3011 pos = list_first_or_null_rcu(&pos->children, struct cgroup,
3012 sibling);
3013 } while (pos);
3014
3015 return last;
3016}
3017
3018/**
3019 * cgroup_next_descendant_post - find the next descendant for post-order walk
3020 * @pos: the current position (%NULL to initiate traversal)
3021 * @cgroup: cgroup whose descendants to walk
3022 *
3023 * To be used by cgroup_for_each_descendant_post(). Find the next
3024 * descendant to visit for post-order traversal of @cgroup's descendants.
3025 */
3026struct cgroup *cgroup_next_descendant_post(struct cgroup *pos,
3027 struct cgroup *cgroup)
3028{
3029 struct cgroup *next;
3030
3031 WARN_ON_ONCE(!rcu_read_lock_held());
3032
3033 /* if first iteration, visit the leftmost descendant */
3034 if (!pos) {
3035 next = cgroup_leftmost_descendant(cgroup);
3036 return next != cgroup ? next : NULL;
3037 }
3038
3039 /* if there's an unvisited sibling, visit its leftmost descendant */
3040 next = list_entry_rcu(pos->sibling.next, struct cgroup, sibling);
3041 if (&next->sibling != &pos->parent->children)
3042 return cgroup_leftmost_descendant(next);
3043
3044 /* no sibling left, visit parent */
3045 next = pos->parent;
3046 return next != cgroup ? next : NULL;
3047}
3048EXPORT_SYMBOL_GPL(cgroup_next_descendant_post);
3049
Paul Menagebd89aab2007-10-18 23:40:44 -07003050void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it)
Kirill A. Shutemovc6ca5752011-12-27 07:46:26 +02003051 __acquires(css_set_lock)
Paul Menage817929e2007-10-18 23:39:36 -07003052{
3053 /*
3054 * The first time anyone tries to iterate across a cgroup,
3055 * we need to enable the list linking each css_set to its
3056 * tasks, and fix up all existing tasks.
3057 */
Cliff Wickman31a7df02008-02-07 00:14:42 -08003058 if (!use_task_css_set_links)
3059 cgroup_enable_task_cg_lists();
3060
Paul Menage817929e2007-10-18 23:39:36 -07003061 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07003062 it->cg_link = &cgrp->css_sets;
3063 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07003064}
3065
Paul Menagebd89aab2007-10-18 23:40:44 -07003066struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -07003067 struct cgroup_iter *it)
3068{
3069 struct task_struct *res;
3070 struct list_head *l = it->task;
Lai Jiangshan2019f632009-01-07 18:07:36 -08003071 struct cg_cgroup_link *link;
Paul Menage817929e2007-10-18 23:39:36 -07003072
3073 /* If the iterator cg is NULL, we have no tasks */
3074 if (!it->cg_link)
3075 return NULL;
3076 res = list_entry(l, struct task_struct, cg_list);
3077 /* Advance iterator to find next entry */
3078 l = l->next;
Lai Jiangshan2019f632009-01-07 18:07:36 -08003079 link = list_entry(it->cg_link, struct cg_cgroup_link, cgrp_link_list);
3080 if (l == &link->cg->tasks) {
Paul Menage817929e2007-10-18 23:39:36 -07003081 /* We reached the end of this task list - move on to
3082 * the next cg_cgroup_link */
Paul Menagebd89aab2007-10-18 23:40:44 -07003083 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07003084 } else {
3085 it->task = l;
3086 }
3087 return res;
3088}
3089
Paul Menagebd89aab2007-10-18 23:40:44 -07003090void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it)
Kirill A. Shutemovc6ca5752011-12-27 07:46:26 +02003091 __releases(css_set_lock)
Paul Menage817929e2007-10-18 23:39:36 -07003092{
3093 read_unlock(&css_set_lock);
3094}
3095
Cliff Wickman31a7df02008-02-07 00:14:42 -08003096static inline int started_after_time(struct task_struct *t1,
3097 struct timespec *time,
3098 struct task_struct *t2)
3099{
3100 int start_diff = timespec_compare(&t1->start_time, time);
3101 if (start_diff > 0) {
3102 return 1;
3103 } else if (start_diff < 0) {
3104 return 0;
3105 } else {
3106 /*
3107 * Arbitrarily, if two processes started at the same
3108 * time, we'll say that the lower pointer value
3109 * started first. Note that t2 may have exited by now
3110 * so this may not be a valid pointer any longer, but
3111 * that's fine - it still serves to distinguish
3112 * between two tasks started (effectively) simultaneously.
3113 */
3114 return t1 > t2;
3115 }
3116}
3117
3118/*
3119 * This function is a callback from heap_insert() and is used to order
3120 * the heap.
3121 * In this case we order the heap in descending task start time.
3122 */
3123static inline int started_after(void *p1, void *p2)
3124{
3125 struct task_struct *t1 = p1;
3126 struct task_struct *t2 = p2;
3127 return started_after_time(t1, &t2->start_time, t2);
3128}
3129
3130/**
3131 * cgroup_scan_tasks - iterate though all the tasks in a cgroup
3132 * @scan: struct cgroup_scanner containing arguments for the scan
3133 *
3134 * Arguments include pointers to callback functions test_task() and
3135 * process_task().
3136 * Iterate through all the tasks in a cgroup, calling test_task() for each,
3137 * and if it returns true, call process_task() for it also.
3138 * The test_task pointer may be NULL, meaning always true (select all tasks).
3139 * Effectively duplicates cgroup_iter_{start,next,end}()
3140 * but does not lock css_set_lock for the call to process_task().
3141 * The struct cgroup_scanner may be embedded in any structure of the caller's
3142 * creation.
3143 * It is guaranteed that process_task() will act on every task that
3144 * is a member of the cgroup for the duration of this call. This
3145 * function may or may not call process_task() for tasks that exit
3146 * or move to a different cgroup during the call, or are forked or
3147 * move into the cgroup during the call.
3148 *
3149 * Note that test_task() may be called with locks held, and may in some
3150 * situations be called multiple times for the same task, so it should
3151 * be cheap.
3152 * If the heap pointer in the struct cgroup_scanner is non-NULL, a heap has been
3153 * pre-allocated and will be used for heap operations (and its "gt" member will
3154 * be overwritten), else a temporary heap will be used (allocation of which
3155 * may cause this function to fail).
3156 */
3157int cgroup_scan_tasks(struct cgroup_scanner *scan)
3158{
3159 int retval, i;
3160 struct cgroup_iter it;
3161 struct task_struct *p, *dropped;
3162 /* Never dereference latest_task, since it's not refcounted */
3163 struct task_struct *latest_task = NULL;
3164 struct ptr_heap tmp_heap;
3165 struct ptr_heap *heap;
3166 struct timespec latest_time = { 0, 0 };
3167
3168 if (scan->heap) {
3169 /* The caller supplied our heap and pre-allocated its memory */
3170 heap = scan->heap;
3171 heap->gt = &started_after;
3172 } else {
3173 /* We need to allocate our own heap memory */
3174 heap = &tmp_heap;
3175 retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after);
3176 if (retval)
3177 /* cannot allocate the heap */
3178 return retval;
3179 }
3180
3181 again:
3182 /*
3183 * Scan tasks in the cgroup, using the scanner's "test_task" callback
3184 * to determine which are of interest, and using the scanner's
3185 * "process_task" callback to process any of them that need an update.
3186 * Since we don't want to hold any locks during the task updates,
3187 * gather tasks to be processed in a heap structure.
3188 * The heap is sorted by descending task start time.
3189 * If the statically-sized heap fills up, we overflow tasks that
3190 * started later, and in future iterations only consider tasks that
3191 * started after the latest task in the previous pass. This
3192 * guarantees forward progress and that we don't miss any tasks.
3193 */
3194 heap->size = 0;
3195 cgroup_iter_start(scan->cg, &it);
3196 while ((p = cgroup_iter_next(scan->cg, &it))) {
3197 /*
3198 * Only affect tasks that qualify per the caller's callback,
3199 * if he provided one
3200 */
3201 if (scan->test_task && !scan->test_task(p, scan))
3202 continue;
3203 /*
3204 * Only process tasks that started after the last task
3205 * we processed
3206 */
3207 if (!started_after_time(p, &latest_time, latest_task))
3208 continue;
3209 dropped = heap_insert(heap, p);
3210 if (dropped == NULL) {
3211 /*
3212 * The new task was inserted; the heap wasn't
3213 * previously full
3214 */
3215 get_task_struct(p);
3216 } else if (dropped != p) {
3217 /*
3218 * The new task was inserted, and pushed out a
3219 * different task
3220 */
3221 get_task_struct(p);
3222 put_task_struct(dropped);
3223 }
3224 /*
3225 * Else the new task was newer than anything already in
3226 * the heap and wasn't inserted
3227 */
3228 }
3229 cgroup_iter_end(scan->cg, &it);
3230
3231 if (heap->size) {
3232 for (i = 0; i < heap->size; i++) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07003233 struct task_struct *q = heap->ptrs[i];
Cliff Wickman31a7df02008-02-07 00:14:42 -08003234 if (i == 0) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07003235 latest_time = q->start_time;
3236 latest_task = q;
Cliff Wickman31a7df02008-02-07 00:14:42 -08003237 }
3238 /* Process the task per the caller's callback */
Paul Jackson4fe91d52008-04-29 00:59:55 -07003239 scan->process_task(q, scan);
3240 put_task_struct(q);
Cliff Wickman31a7df02008-02-07 00:14:42 -08003241 }
3242 /*
3243 * If we had to process any tasks at all, scan again
3244 * in case some of them were in the middle of forking
3245 * children that didn't get processed.
3246 * Not the most efficient way to do it, but it avoids
3247 * having to take callback_mutex in the fork path
3248 */
3249 goto again;
3250 }
3251 if (heap == &tmp_heap)
3252 heap_free(&tmp_heap);
3253 return 0;
3254}
3255
Paul Menage817929e2007-10-18 23:39:36 -07003256/*
Ben Blum102a7752009-09-23 15:56:26 -07003257 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003258 *
3259 * Reading this file can return large amounts of data if a cgroup has
3260 * *lots* of attached tasks. So it may need several calls to read(),
3261 * but we cannot guarantee that the information we produce is correct
3262 * unless we produce it entirely atomically.
3263 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07003264 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003265
Li Zefan24528252012-01-20 11:58:43 +08003266/* which pidlist file are we talking about? */
3267enum cgroup_filetype {
3268 CGROUP_FILE_PROCS,
3269 CGROUP_FILE_TASKS,
3270};
3271
3272/*
3273 * A pidlist is a list of pids that virtually represents the contents of one
3274 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
3275 * a pair (one each for procs, tasks) for each pid namespace that's relevant
3276 * to the cgroup.
3277 */
3278struct cgroup_pidlist {
3279 /*
3280 * used to find which pidlist is wanted. doesn't change as long as
3281 * this particular list stays in the list.
3282 */
3283 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
3284 /* array of xids */
3285 pid_t *list;
3286 /* how many elements the above list has */
3287 int length;
3288 /* how many files are using the current array */
3289 int use_count;
3290 /* each of these stored in a list by its cgroup */
3291 struct list_head links;
3292 /* pointer to the cgroup we belong to, for list removal purposes */
3293 struct cgroup *owner;
3294 /* protects the other fields */
3295 struct rw_semaphore mutex;
3296};
3297
Paul Menagebbcb81d2007-10-18 23:39:32 -07003298/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07003299 * The following two functions "fix" the issue where there are more pids
3300 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
3301 * TODO: replace with a kernel-wide solution to this problem
3302 */
3303#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
3304static void *pidlist_allocate(int count)
3305{
3306 if (PIDLIST_TOO_LARGE(count))
3307 return vmalloc(count * sizeof(pid_t));
3308 else
3309 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
3310}
3311static void pidlist_free(void *p)
3312{
3313 if (is_vmalloc_addr(p))
3314 vfree(p);
3315 else
3316 kfree(p);
3317}
3318static void *pidlist_resize(void *p, int newcount)
3319{
3320 void *newlist;
3321 /* note: if new alloc fails, old p will still be valid either way */
3322 if (is_vmalloc_addr(p)) {
3323 newlist = vmalloc(newcount * sizeof(pid_t));
3324 if (!newlist)
3325 return NULL;
3326 memcpy(newlist, p, newcount * sizeof(pid_t));
3327 vfree(p);
3328 } else {
3329 newlist = krealloc(p, newcount * sizeof(pid_t), GFP_KERNEL);
3330 }
3331 return newlist;
3332}
3333
3334/*
Ben Blum102a7752009-09-23 15:56:26 -07003335 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
3336 * If the new stripped list is sufficiently smaller and there's enough memory
3337 * to allocate a new buffer, will let go of the unneeded memory. Returns the
3338 * number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003339 */
Ben Blum102a7752009-09-23 15:56:26 -07003340/* is the size difference enough that we should re-allocate the array? */
3341#define PIDLIST_REALLOC_DIFFERENCE(old, new) ((old) - PAGE_SIZE >= (new))
3342static int pidlist_uniq(pid_t **p, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003343{
Ben Blum102a7752009-09-23 15:56:26 -07003344 int src, dest = 1;
3345 pid_t *list = *p;
3346 pid_t *newlist;
3347
3348 /*
3349 * we presume the 0th element is unique, so i starts at 1. trivial
3350 * edge cases first; no work needs to be done for either
3351 */
3352 if (length == 0 || length == 1)
3353 return length;
3354 /* src and dest walk down the list; dest counts unique elements */
3355 for (src = 1; src < length; src++) {
3356 /* find next unique element */
3357 while (list[src] == list[src-1]) {
3358 src++;
3359 if (src == length)
3360 goto after;
3361 }
3362 /* dest always points to where the next unique element goes */
3363 list[dest] = list[src];
3364 dest++;
3365 }
3366after:
3367 /*
3368 * if the length difference is large enough, we want to allocate a
3369 * smaller buffer to save memory. if this fails due to out of memory,
3370 * we'll just stay with what we've got.
3371 */
3372 if (PIDLIST_REALLOC_DIFFERENCE(length, dest)) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07003373 newlist = pidlist_resize(list, dest);
Ben Blum102a7752009-09-23 15:56:26 -07003374 if (newlist)
3375 *p = newlist;
3376 }
3377 return dest;
3378}
3379
3380static int cmppid(const void *a, const void *b)
3381{
3382 return *(pid_t *)a - *(pid_t *)b;
3383}
3384
3385/*
Ben Blum72a8cb32009-09-23 15:56:27 -07003386 * find the appropriate pidlist for our purpose (given procs vs tasks)
3387 * returns with the lock on that pidlist already held, and takes care
3388 * of the use count, or returns NULL with no locks held if we're out of
3389 * memory.
3390 */
3391static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
3392 enum cgroup_filetype type)
3393{
3394 struct cgroup_pidlist *l;
3395 /* don't need task_nsproxy() if we're looking at ourself */
Li Zefanb70cc5f2010-03-10 15:22:12 -08003396 struct pid_namespace *ns = current->nsproxy->pid_ns;
3397
Ben Blum72a8cb32009-09-23 15:56:27 -07003398 /*
3399 * We can't drop the pidlist_mutex before taking the l->mutex in case
3400 * the last ref-holder is trying to remove l from the list at the same
3401 * time. Holding the pidlist_mutex precludes somebody taking whichever
3402 * list we find out from under us - compare release_pid_array().
3403 */
3404 mutex_lock(&cgrp->pidlist_mutex);
3405 list_for_each_entry(l, &cgrp->pidlists, links) {
3406 if (l->key.type == type && l->key.ns == ns) {
Ben Blum72a8cb32009-09-23 15:56:27 -07003407 /* make sure l doesn't vanish out from under us */
3408 down_write(&l->mutex);
3409 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003410 return l;
3411 }
3412 }
3413 /* entry not found; create a new one */
3414 l = kmalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
3415 if (!l) {
3416 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003417 return l;
3418 }
3419 init_rwsem(&l->mutex);
3420 down_write(&l->mutex);
3421 l->key.type = type;
Li Zefanb70cc5f2010-03-10 15:22:12 -08003422 l->key.ns = get_pid_ns(ns);
Ben Blum72a8cb32009-09-23 15:56:27 -07003423 l->use_count = 0; /* don't increment here */
3424 l->list = NULL;
3425 l->owner = cgrp;
3426 list_add(&l->links, &cgrp->pidlists);
3427 mutex_unlock(&cgrp->pidlist_mutex);
3428 return l;
3429}
3430
3431/*
Ben Blum102a7752009-09-23 15:56:26 -07003432 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
3433 */
Ben Blum72a8cb32009-09-23 15:56:27 -07003434static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
3435 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07003436{
3437 pid_t *array;
3438 int length;
3439 int pid, n = 0; /* used for populating the array */
Paul Menage817929e2007-10-18 23:39:36 -07003440 struct cgroup_iter it;
3441 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07003442 struct cgroup_pidlist *l;
3443
3444 /*
3445 * If cgroup gets more users after we read count, we won't have
3446 * enough space - tough. This race is indistinguishable to the
3447 * caller from the case that the additional cgroup users didn't
3448 * show up until sometime later on.
3449 */
3450 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003451 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07003452 if (!array)
3453 return -ENOMEM;
3454 /* now, populate the array */
Paul Menagebd89aab2007-10-18 23:40:44 -07003455 cgroup_iter_start(cgrp, &it);
3456 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Ben Blum102a7752009-09-23 15:56:26 -07003457 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07003458 break;
Ben Blum102a7752009-09-23 15:56:26 -07003459 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07003460 if (type == CGROUP_FILE_PROCS)
3461 pid = task_tgid_vnr(tsk);
3462 else
3463 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07003464 if (pid > 0) /* make sure to only use valid results */
3465 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07003466 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003467 cgroup_iter_end(cgrp, &it);
Ben Blum102a7752009-09-23 15:56:26 -07003468 length = n;
3469 /* now sort & (if procs) strip out duplicates */
3470 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07003471 if (type == CGROUP_FILE_PROCS)
Ben Blum102a7752009-09-23 15:56:26 -07003472 length = pidlist_uniq(&array, length);
Ben Blum72a8cb32009-09-23 15:56:27 -07003473 l = cgroup_pidlist_find(cgrp, type);
3474 if (!l) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07003475 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07003476 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07003477 }
Ben Blum72a8cb32009-09-23 15:56:27 -07003478 /* store array, freeing old if necessary - lock already held */
Ben Blumd1d9fd32009-09-23 15:56:28 -07003479 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07003480 l->list = array;
3481 l->length = length;
3482 l->use_count++;
3483 up_write(&l->mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003484 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07003485 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003486}
3487
Balbir Singh846c7bb2007-10-18 23:39:44 -07003488/**
Li Zefana043e3b2008-02-23 15:24:09 -08003489 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07003490 * @stats: cgroupstats to fill information into
3491 * @dentry: A dentry entry belonging to the cgroup for which stats have
3492 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08003493 *
3494 * Build and fill cgroupstats so that taskstats can export it to user
3495 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003496 */
3497int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
3498{
3499 int ret = -EINVAL;
Paul Menagebd89aab2007-10-18 23:40:44 -07003500 struct cgroup *cgrp;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003501 struct cgroup_iter it;
3502 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08003503
Balbir Singh846c7bb2007-10-18 23:39:44 -07003504 /*
Li Zefan33d283b2008-11-19 15:36:48 -08003505 * Validate dentry by checking the superblock operations,
3506 * and make sure it's a directory.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003507 */
Li Zefan33d283b2008-11-19 15:36:48 -08003508 if (dentry->d_sb->s_op != &cgroup_ops ||
3509 !S_ISDIR(dentry->d_inode->i_mode))
Balbir Singh846c7bb2007-10-18 23:39:44 -07003510 goto err;
3511
3512 ret = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07003513 cgrp = dentry->d_fsdata;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003514
Paul Menagebd89aab2007-10-18 23:40:44 -07003515 cgroup_iter_start(cgrp, &it);
3516 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07003517 switch (tsk->state) {
3518 case TASK_RUNNING:
3519 stats->nr_running++;
3520 break;
3521 case TASK_INTERRUPTIBLE:
3522 stats->nr_sleeping++;
3523 break;
3524 case TASK_UNINTERRUPTIBLE:
3525 stats->nr_uninterruptible++;
3526 break;
3527 case TASK_STOPPED:
3528 stats->nr_stopped++;
3529 break;
3530 default:
3531 if (delayacct_is_task_waiting_on_io(tsk))
3532 stats->nr_io_wait++;
3533 break;
3534 }
3535 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003536 cgroup_iter_end(cgrp, &it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07003537
Balbir Singh846c7bb2007-10-18 23:39:44 -07003538err:
3539 return ret;
3540}
3541
Paul Menage8f3ff202009-09-23 15:56:25 -07003542
Paul Menagecc31edc2008-10-18 20:28:04 -07003543/*
Ben Blum102a7752009-09-23 15:56:26 -07003544 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07003545 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07003546 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07003547 */
3548
Ben Blum102a7752009-09-23 15:56:26 -07003549static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003550{
3551 /*
3552 * Initially we receive a position value that corresponds to
3553 * one more than the last pid shown (or 0 on the first call or
3554 * after a seek to the start). Use a binary-search to find the
3555 * next pid to display, if any
3556 */
Ben Blum102a7752009-09-23 15:56:26 -07003557 struct cgroup_pidlist *l = s->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07003558 int index = 0, pid = *pos;
3559 int *iter;
3560
Ben Blum102a7752009-09-23 15:56:26 -07003561 down_read(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003562 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07003563 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11003564
Paul Menagecc31edc2008-10-18 20:28:04 -07003565 while (index < end) {
3566 int mid = (index + end) / 2;
Ben Blum102a7752009-09-23 15:56:26 -07003567 if (l->list[mid] == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07003568 index = mid;
3569 break;
Ben Blum102a7752009-09-23 15:56:26 -07003570 } else if (l->list[mid] <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07003571 index = mid + 1;
3572 else
3573 end = mid;
3574 }
3575 }
3576 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07003577 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07003578 return NULL;
3579 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07003580 iter = l->list + index;
Paul Menagecc31edc2008-10-18 20:28:04 -07003581 *pos = *iter;
3582 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003583}
3584
Ben Blum102a7752009-09-23 15:56:26 -07003585static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003586{
Ben Blum102a7752009-09-23 15:56:26 -07003587 struct cgroup_pidlist *l = s->private;
3588 up_read(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003589}
3590
Ben Blum102a7752009-09-23 15:56:26 -07003591static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003592{
Ben Blum102a7752009-09-23 15:56:26 -07003593 struct cgroup_pidlist *l = s->private;
3594 pid_t *p = v;
3595 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07003596 /*
3597 * Advance to the next pid in the array. If this goes off the
3598 * end, we're done
3599 */
3600 p++;
3601 if (p >= end) {
3602 return NULL;
3603 } else {
3604 *pos = *p;
3605 return p;
3606 }
3607}
3608
Ben Blum102a7752009-09-23 15:56:26 -07003609static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003610{
3611 return seq_printf(s, "%d\n", *(int *)v);
3612}
3613
Ben Blum102a7752009-09-23 15:56:26 -07003614/*
3615 * seq_operations functions for iterating on pidlists through seq_file -
3616 * independent of whether it's tasks or procs
3617 */
3618static const struct seq_operations cgroup_pidlist_seq_operations = {
3619 .start = cgroup_pidlist_start,
3620 .stop = cgroup_pidlist_stop,
3621 .next = cgroup_pidlist_next,
3622 .show = cgroup_pidlist_show,
Paul Menagecc31edc2008-10-18 20:28:04 -07003623};
3624
Ben Blum102a7752009-09-23 15:56:26 -07003625static void cgroup_release_pid_array(struct cgroup_pidlist *l)
Paul Menagecc31edc2008-10-18 20:28:04 -07003626{
Ben Blum72a8cb32009-09-23 15:56:27 -07003627 /*
3628 * the case where we're the last user of this particular pidlist will
3629 * have us remove it from the cgroup's list, which entails taking the
3630 * mutex. since in pidlist_find the pidlist->lock depends on cgroup->
3631 * pidlist_mutex, we have to take pidlist_mutex first.
3632 */
3633 mutex_lock(&l->owner->pidlist_mutex);
Ben Blum102a7752009-09-23 15:56:26 -07003634 down_write(&l->mutex);
3635 BUG_ON(!l->use_count);
3636 if (!--l->use_count) {
Ben Blum72a8cb32009-09-23 15:56:27 -07003637 /* we're the last user if refcount is 0; remove and free */
3638 list_del(&l->links);
3639 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003640 pidlist_free(l->list);
Ben Blum72a8cb32009-09-23 15:56:27 -07003641 put_pid_ns(l->key.ns);
3642 up_write(&l->mutex);
3643 kfree(l);
3644 return;
Paul Menagecc31edc2008-10-18 20:28:04 -07003645 }
Ben Blum72a8cb32009-09-23 15:56:27 -07003646 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blum102a7752009-09-23 15:56:26 -07003647 up_write(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003648}
3649
Ben Blum102a7752009-09-23 15:56:26 -07003650static int cgroup_pidlist_release(struct inode *inode, struct file *file)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003651{
Ben Blum102a7752009-09-23 15:56:26 -07003652 struct cgroup_pidlist *l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003653 if (!(file->f_mode & FMODE_READ))
3654 return 0;
Ben Blum102a7752009-09-23 15:56:26 -07003655 /*
3656 * the seq_file will only be initialized if the file was opened for
3657 * reading; hence we check if it's not null only in that case.
3658 */
3659 l = ((struct seq_file *)file->private_data)->private;
3660 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07003661 return seq_release(inode, file);
3662}
3663
Ben Blum102a7752009-09-23 15:56:26 -07003664static const struct file_operations cgroup_pidlist_operations = {
Paul Menagecc31edc2008-10-18 20:28:04 -07003665 .read = seq_read,
3666 .llseek = seq_lseek,
3667 .write = cgroup_file_write,
Ben Blum102a7752009-09-23 15:56:26 -07003668 .release = cgroup_pidlist_release,
Paul Menagecc31edc2008-10-18 20:28:04 -07003669};
3670
3671/*
Ben Blum102a7752009-09-23 15:56:26 -07003672 * The following functions handle opens on a file that displays a pidlist
3673 * (tasks or procs). Prepare an array of the process/thread IDs of whoever's
3674 * in the cgroup.
Paul Menagecc31edc2008-10-18 20:28:04 -07003675 */
Ben Blum102a7752009-09-23 15:56:26 -07003676/* helper function for the two below it */
Ben Blum72a8cb32009-09-23 15:56:27 -07003677static int cgroup_pidlist_open(struct file *file, enum cgroup_filetype type)
Paul Menagecc31edc2008-10-18 20:28:04 -07003678{
3679 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Ben Blum72a8cb32009-09-23 15:56:27 -07003680 struct cgroup_pidlist *l;
Paul Menagecc31edc2008-10-18 20:28:04 -07003681 int retval;
3682
3683 /* Nothing to do for write-only files */
3684 if (!(file->f_mode & FMODE_READ))
3685 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003686
Ben Blum102a7752009-09-23 15:56:26 -07003687 /* have the array populated */
Ben Blum72a8cb32009-09-23 15:56:27 -07003688 retval = pidlist_array_load(cgrp, type, &l);
Ben Blum102a7752009-09-23 15:56:26 -07003689 if (retval)
3690 return retval;
3691 /* configure file information */
3692 file->f_op = &cgroup_pidlist_operations;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003693
Ben Blum102a7752009-09-23 15:56:26 -07003694 retval = seq_open(file, &cgroup_pidlist_seq_operations);
Paul Menagecc31edc2008-10-18 20:28:04 -07003695 if (retval) {
Ben Blum102a7752009-09-23 15:56:26 -07003696 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07003697 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003698 }
Ben Blum102a7752009-09-23 15:56:26 -07003699 ((struct seq_file *)file->private_data)->private = l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003700 return 0;
3701}
Ben Blum102a7752009-09-23 15:56:26 -07003702static int cgroup_tasks_open(struct inode *unused, struct file *file)
3703{
Ben Blum72a8cb32009-09-23 15:56:27 -07003704 return cgroup_pidlist_open(file, CGROUP_FILE_TASKS);
Ben Blum102a7752009-09-23 15:56:26 -07003705}
3706static int cgroup_procs_open(struct inode *unused, struct file *file)
3707{
Ben Blum72a8cb32009-09-23 15:56:27 -07003708 return cgroup_pidlist_open(file, CGROUP_FILE_PROCS);
Ben Blum102a7752009-09-23 15:56:26 -07003709}
Paul Menagebbcb81d2007-10-18 23:39:32 -07003710
Paul Menagebd89aab2007-10-18 23:40:44 -07003711static u64 cgroup_read_notify_on_release(struct cgroup *cgrp,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003712 struct cftype *cft)
3713{
Paul Menagebd89aab2007-10-18 23:40:44 -07003714 return notify_on_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003715}
3716
Paul Menage6379c102008-07-25 01:47:01 -07003717static int cgroup_write_notify_on_release(struct cgroup *cgrp,
3718 struct cftype *cft,
3719 u64 val)
3720{
3721 clear_bit(CGRP_RELEASABLE, &cgrp->flags);
3722 if (val)
3723 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3724 else
3725 clear_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3726 return 0;
3727}
3728
Paul Menagebbcb81d2007-10-18 23:39:32 -07003729/*
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003730 * Unregister event and free resources.
3731 *
3732 * Gets called from workqueue.
3733 */
3734static void cgroup_event_remove(struct work_struct *work)
3735{
3736 struct cgroup_event *event = container_of(work, struct cgroup_event,
3737 remove);
3738 struct cgroup *cgrp = event->cgrp;
3739
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003740 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3741
3742 eventfd_ctx_put(event->eventfd);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003743 kfree(event);
Kirill A. Shutemova0a4db52010-03-10 15:22:34 -08003744 dput(cgrp->dentry);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003745}
3746
3747/*
3748 * Gets called on POLLHUP on eventfd when user closes it.
3749 *
3750 * Called with wqh->lock held and interrupts disabled.
3751 */
3752static int cgroup_event_wake(wait_queue_t *wait, unsigned mode,
3753 int sync, void *key)
3754{
3755 struct cgroup_event *event = container_of(wait,
3756 struct cgroup_event, wait);
3757 struct cgroup *cgrp = event->cgrp;
3758 unsigned long flags = (unsigned long)key;
3759
3760 if (flags & POLLHUP) {
Changli Gaoa93d2f12010-05-07 14:33:26 +08003761 __remove_wait_queue(event->wqh, &event->wait);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003762 spin_lock(&cgrp->event_list_lock);
3763 list_del(&event->list);
3764 spin_unlock(&cgrp->event_list_lock);
3765 /*
3766 * We are in atomic context, but cgroup_event_remove() may
3767 * sleep, so we have to call it in workqueue.
3768 */
3769 schedule_work(&event->remove);
3770 }
3771
3772 return 0;
3773}
3774
3775static void cgroup_event_ptable_queue_proc(struct file *file,
3776 wait_queue_head_t *wqh, poll_table *pt)
3777{
3778 struct cgroup_event *event = container_of(pt,
3779 struct cgroup_event, pt);
3780
3781 event->wqh = wqh;
3782 add_wait_queue(wqh, &event->wait);
3783}
3784
3785/*
3786 * Parse input and register new cgroup event handler.
3787 *
3788 * Input must be in format '<event_fd> <control_fd> <args>'.
3789 * Interpretation of args is defined by control file implementation.
3790 */
3791static int cgroup_write_event_control(struct cgroup *cgrp, struct cftype *cft,
3792 const char *buffer)
3793{
3794 struct cgroup_event *event = NULL;
3795 unsigned int efd, cfd;
3796 struct file *efile = NULL;
3797 struct file *cfile = NULL;
3798 char *endp;
3799 int ret;
3800
3801 efd = simple_strtoul(buffer, &endp, 10);
3802 if (*endp != ' ')
3803 return -EINVAL;
3804 buffer = endp + 1;
3805
3806 cfd = simple_strtoul(buffer, &endp, 10);
3807 if ((*endp != ' ') && (*endp != '\0'))
3808 return -EINVAL;
3809 buffer = endp + 1;
3810
3811 event = kzalloc(sizeof(*event), GFP_KERNEL);
3812 if (!event)
3813 return -ENOMEM;
3814 event->cgrp = cgrp;
3815 INIT_LIST_HEAD(&event->list);
3816 init_poll_funcptr(&event->pt, cgroup_event_ptable_queue_proc);
3817 init_waitqueue_func_entry(&event->wait, cgroup_event_wake);
3818 INIT_WORK(&event->remove, cgroup_event_remove);
3819
3820 efile = eventfd_fget(efd);
3821 if (IS_ERR(efile)) {
3822 ret = PTR_ERR(efile);
3823 goto fail;
3824 }
3825
3826 event->eventfd = eventfd_ctx_fileget(efile);
3827 if (IS_ERR(event->eventfd)) {
3828 ret = PTR_ERR(event->eventfd);
3829 goto fail;
3830 }
3831
3832 cfile = fget(cfd);
3833 if (!cfile) {
3834 ret = -EBADF;
3835 goto fail;
3836 }
3837
3838 /* the process need read permission on control file */
Al Viro3bfa7842011-06-19 12:55:10 -04003839 /* AV: shouldn't we check that it's been opened for read instead? */
3840 ret = inode_permission(cfile->f_path.dentry->d_inode, MAY_READ);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003841 if (ret < 0)
3842 goto fail;
3843
3844 event->cft = __file_cft(cfile);
3845 if (IS_ERR(event->cft)) {
3846 ret = PTR_ERR(event->cft);
3847 goto fail;
3848 }
3849
3850 if (!event->cft->register_event || !event->cft->unregister_event) {
3851 ret = -EINVAL;
3852 goto fail;
3853 }
3854
3855 ret = event->cft->register_event(cgrp, event->cft,
3856 event->eventfd, buffer);
3857 if (ret)
3858 goto fail;
3859
3860 if (efile->f_op->poll(efile, &event->pt) & POLLHUP) {
3861 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3862 ret = 0;
3863 goto fail;
3864 }
3865
Kirill A. Shutemova0a4db52010-03-10 15:22:34 -08003866 /*
3867 * Events should be removed after rmdir of cgroup directory, but before
3868 * destroying subsystem state objects. Let's take reference to cgroup
3869 * directory dentry to do that.
3870 */
3871 dget(cgrp->dentry);
3872
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003873 spin_lock(&cgrp->event_list_lock);
3874 list_add(&event->list, &cgrp->event_list);
3875 spin_unlock(&cgrp->event_list_lock);
3876
3877 fput(cfile);
3878 fput(efile);
3879
3880 return 0;
3881
3882fail:
3883 if (cfile)
3884 fput(cfile);
3885
3886 if (event && event->eventfd && !IS_ERR(event->eventfd))
3887 eventfd_ctx_put(event->eventfd);
3888
3889 if (!IS_ERR_OR_NULL(efile))
3890 fput(efile);
3891
3892 kfree(event);
3893
3894 return ret;
3895}
3896
Daniel Lezcano97978e62010-10-27 15:33:35 -07003897static u64 cgroup_clone_children_read(struct cgroup *cgrp,
3898 struct cftype *cft)
3899{
3900 return clone_children(cgrp);
3901}
3902
3903static int cgroup_clone_children_write(struct cgroup *cgrp,
3904 struct cftype *cft,
3905 u64 val)
3906{
3907 if (val)
3908 set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3909 else
3910 clear_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3911 return 0;
3912}
3913
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003914/*
Paul Menagebbcb81d2007-10-18 23:39:32 -07003915 * for the common functions, 'private' gives the type of file
3916 */
Ben Blum102a7752009-09-23 15:56:26 -07003917/* for hysterical raisins, we can't put this on the older files */
3918#define CGROUP_FILE_GENERIC_PREFIX "cgroup."
Paul Menage81a6a5c2007-10-18 23:39:38 -07003919static struct cftype files[] = {
3920 {
3921 .name = "tasks",
3922 .open = cgroup_tasks_open,
Paul Menageaf351022008-07-25 01:47:01 -07003923 .write_u64 = cgroup_tasks_write,
Ben Blum102a7752009-09-23 15:56:26 -07003924 .release = cgroup_pidlist_release,
Li Zefan099fca32009-04-02 16:57:29 -07003925 .mode = S_IRUGO | S_IWUSR,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003926 },
Ben Blum102a7752009-09-23 15:56:26 -07003927 {
3928 .name = CGROUP_FILE_GENERIC_PREFIX "procs",
3929 .open = cgroup_procs_open,
Ben Blum74a11662011-05-26 16:25:20 -07003930 .write_u64 = cgroup_procs_write,
Ben Blum102a7752009-09-23 15:56:26 -07003931 .release = cgroup_pidlist_release,
Ben Blum74a11662011-05-26 16:25:20 -07003932 .mode = S_IRUGO | S_IWUSR,
Ben Blum102a7752009-09-23 15:56:26 -07003933 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003934 {
3935 .name = "notify_on_release",
Paul Menagef4c753b2008-04-29 00:59:56 -07003936 .read_u64 = cgroup_read_notify_on_release,
Paul Menage6379c102008-07-25 01:47:01 -07003937 .write_u64 = cgroup_write_notify_on_release,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003938 },
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003939 {
3940 .name = CGROUP_FILE_GENERIC_PREFIX "event_control",
3941 .write_string = cgroup_write_event_control,
3942 .mode = S_IWUGO,
3943 },
Daniel Lezcano97978e62010-10-27 15:33:35 -07003944 {
3945 .name = "cgroup.clone_children",
3946 .read_u64 = cgroup_clone_children_read,
3947 .write_u64 = cgroup_clone_children_write,
3948 },
Tejun Heo6e6ff252012-04-01 12:09:55 -07003949 {
3950 .name = "release_agent",
3951 .flags = CFTYPE_ONLY_ON_ROOT,
3952 .read_seq_string = cgroup_release_agent_show,
3953 .write_string = cgroup_release_agent_write,
3954 .max_write_len = PATH_MAX,
3955 },
Tejun Heodb0416b2012-04-01 12:09:55 -07003956 { } /* terminate */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003957};
3958
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003959/**
3960 * cgroup_populate_dir - selectively creation of files in a directory
3961 * @cgrp: target cgroup
3962 * @base_files: true if the base files should be added
3963 * @subsys_mask: mask of the subsystem ids whose files should be added
3964 */
3965static int cgroup_populate_dir(struct cgroup *cgrp, bool base_files,
3966 unsigned long subsys_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003967{
3968 int err;
3969 struct cgroup_subsys *ss;
3970
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003971 if (base_files) {
3972 err = cgroup_addrm_files(cgrp, NULL, files, true);
3973 if (err < 0)
3974 return err;
3975 }
Paul Menagebbcb81d2007-10-18 23:39:32 -07003976
Tejun Heo8e3f6542012-04-01 12:09:55 -07003977 /* process cftsets of each subsystem */
Paul Menagebd89aab2007-10-18 23:40:44 -07003978 for_each_subsys(cgrp->root, ss) {
Tejun Heo8e3f6542012-04-01 12:09:55 -07003979 struct cftype_set *set;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003980 if (!test_bit(ss->subsys_id, &subsys_mask))
3981 continue;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003982
Tejun Heodb0416b2012-04-01 12:09:55 -07003983 list_for_each_entry(set, &ss->cftsets, node)
Tejun Heo79578622012-04-01 12:09:56 -07003984 cgroup_addrm_files(cgrp, ss, set->cfts, true);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003985 }
Tejun Heo8e3f6542012-04-01 12:09:55 -07003986
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003987 /* This cgroup is ready now */
3988 for_each_subsys(cgrp->root, ss) {
3989 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3990 /*
3991 * Update id->css pointer and make this css visible from
3992 * CSS ID functions. This pointer will be dereferened
3993 * from RCU-read-side without locks.
3994 */
3995 if (css->id)
3996 rcu_assign_pointer(css->id->css, css);
3997 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003998
3999 return 0;
4000}
4001
Tejun Heo48ddbe12012-04-01 12:09:56 -07004002static void css_dput_fn(struct work_struct *work)
4003{
4004 struct cgroup_subsys_state *css =
4005 container_of(work, struct cgroup_subsys_state, dput_work);
Tejun Heo5db9a4d2012-07-07 16:08:18 -07004006 struct dentry *dentry = css->cgroup->dentry;
4007 struct super_block *sb = dentry->d_sb;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004008
Tejun Heo5db9a4d2012-07-07 16:08:18 -07004009 atomic_inc(&sb->s_active);
4010 dput(dentry);
4011 deactivate_super(sb);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004012}
4013
Paul Menageddbcc7e2007-10-18 23:39:30 -07004014static void init_cgroup_css(struct cgroup_subsys_state *css,
4015 struct cgroup_subsys *ss,
Paul Menagebd89aab2007-10-18 23:40:44 -07004016 struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004017{
Paul Menagebd89aab2007-10-18 23:40:44 -07004018 css->cgroup = cgrp;
Paul Menagee7c5ec92009-01-07 18:08:38 -08004019 atomic_set(&css->refcnt, 1);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004020 css->flags = 0;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004021 css->id = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07004022 if (cgrp == dummytop)
Tejun Heo38b53ab2012-11-19 08:13:36 -08004023 css->flags |= CSS_ROOT;
Paul Menagebd89aab2007-10-18 23:40:44 -07004024 BUG_ON(cgrp->subsys[ss->subsys_id]);
4025 cgrp->subsys[ss->subsys_id] = css;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004026
4027 /*
Tejun Heoed9577932012-11-05 09:16:58 -08004028 * css holds an extra ref to @cgrp->dentry which is put on the last
4029 * css_put(). dput() requires process context, which css_put() may
4030 * be called without. @css->dput_work will be used to invoke
4031 * dput() asynchronously from css_put().
Tejun Heo48ddbe12012-04-01 12:09:56 -07004032 */
4033 INIT_WORK(&css->dput_work, css_dput_fn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004034}
4035
4036/*
Li Zefana043e3b2008-02-23 15:24:09 -08004037 * cgroup_create - create a cgroup
4038 * @parent: cgroup that will be parent of the new cgroup
4039 * @dentry: dentry of the new cgroup
4040 * @mode: mode to set on new inode
Paul Menageddbcc7e2007-10-18 23:39:30 -07004041 *
Li Zefana043e3b2008-02-23 15:24:09 -08004042 * Must be called with the mutex on the parent inode held
Paul Menageddbcc7e2007-10-18 23:39:30 -07004043 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07004044static long cgroup_create(struct cgroup *parent, struct dentry *dentry,
Al Viroa5e7ed32011-07-26 01:55:55 -04004045 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004046{
Paul Menagebd89aab2007-10-18 23:40:44 -07004047 struct cgroup *cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004048 struct cgroupfs_root *root = parent->root;
4049 int err = 0;
4050 struct cgroup_subsys *ss;
4051 struct super_block *sb = root->sb;
4052
Paul Menagebd89aab2007-10-18 23:40:44 -07004053 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
4054 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004055 return -ENOMEM;
4056
Tejun Heo976c06b2012-11-05 09:16:59 -08004057 /*
4058 * Only live parents can have children. Note that the liveliness
4059 * check isn't strictly necessary because cgroup_mkdir() and
4060 * cgroup_rmdir() are fully synchronized by i_mutex; however, do it
4061 * anyway so that locking is contained inside cgroup proper and we
4062 * don't get nasty surprises if we ever grow another caller.
4063 */
4064 if (!cgroup_lock_live_group(parent)) {
4065 err = -ENODEV;
4066 goto err_free;
4067 }
4068
Paul Menageddbcc7e2007-10-18 23:39:30 -07004069 /* Grab a reference on the superblock so the hierarchy doesn't
4070 * get deleted on unmount if there are child cgroups. This
4071 * can be done outside cgroup_mutex, since the sb can't
4072 * disappear while someone has an open control file on the
4073 * fs */
4074 atomic_inc(&sb->s_active);
4075
Paul Menagecc31edc2008-10-18 20:28:04 -07004076 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004077
Paul Menagebd89aab2007-10-18 23:40:44 -07004078 cgrp->parent = parent;
4079 cgrp->root = parent->root;
4080 cgrp->top_cgroup = parent->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004081
Li Zefanb6abdb02008-03-04 14:28:19 -08004082 if (notify_on_release(parent))
4083 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
4084
Daniel Lezcano97978e62010-10-27 15:33:35 -07004085 if (clone_children(parent))
4086 set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
4087
Paul Menageddbcc7e2007-10-18 23:39:30 -07004088 for_each_subsys(root, ss) {
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07004089 struct cgroup_subsys_state *css;
Li Zefan4528fd02010-02-02 13:44:10 -08004090
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07004091 css = ss->create(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004092 if (IS_ERR(css)) {
4093 err = PTR_ERR(css);
4094 goto err_destroy;
4095 }
Paul Menagebd89aab2007-10-18 23:40:44 -07004096 init_cgroup_css(css, ss, cgrp);
Li Zefan4528fd02010-02-02 13:44:10 -08004097 if (ss->use_id) {
4098 err = alloc_css_id(ss, parent, cgrp);
4099 if (err)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004100 goto err_destroy;
Li Zefan4528fd02010-02-02 13:44:10 -08004101 }
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004102 /* At error, ->destroy() callback has to free assigned ID. */
Daniel Lezcano97978e62010-10-27 15:33:35 -07004103 if (clone_children(parent) && ss->post_clone)
Li Zefan761b3ef2012-01-31 13:47:36 +08004104 ss->post_clone(cgrp);
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07004105
4106 if (ss->broken_hierarchy && !ss->warned_broken_hierarchy &&
4107 parent->parent) {
4108 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",
4109 current->comm, current->pid, ss->name);
4110 if (!strcmp(ss->name, "memory"))
4111 pr_warning("cgroup: \"memory\" requires setting use_hierarchy to 1 on the root.\n");
4112 ss->warned_broken_hierarchy = true;
4113 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004114 }
4115
Tejun Heo4e139af2012-11-19 08:13:36 -08004116 /*
4117 * Create directory. cgroup_create_file() returns with the new
4118 * directory locked on success so that it can be populated without
4119 * dropping cgroup_mutex.
4120 */
Tejun Heo28fd6f32012-11-19 08:13:36 -08004121 err = cgroup_create_file(dentry, S_IFDIR | mode, sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004122 if (err < 0)
Tejun Heo4e139af2012-11-19 08:13:36 -08004123 goto err_destroy;
4124 lockdep_assert_held(&dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004125
Tejun Heo4e139af2012-11-19 08:13:36 -08004126 /* allocation complete, commit to creation */
Tejun Heo28fd6f32012-11-19 08:13:36 -08004127 dentry->d_fsdata = cgrp;
Tejun Heofebfcef2012-11-19 08:13:36 -08004128 cgrp->dentry = dentry;
Tejun Heo4e139af2012-11-19 08:13:36 -08004129 list_add_tail(&cgrp->allcg_node, &root->allcg_list);
4130 list_add_tail_rcu(&cgrp->sibling, &cgrp->parent->children);
4131 root->number_of_cgroups++;
Tejun Heo28fd6f32012-11-19 08:13:36 -08004132
Tejun Heoa8638032012-11-09 09:12:29 -08004133 for_each_subsys(root, ss) {
4134 /* each css holds a ref to the cgroup's dentry */
Tejun Heoed9577932012-11-05 09:16:58 -08004135 dget(dentry);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004136
Tejun Heoa8638032012-11-09 09:12:29 -08004137 /* creation succeeded, notify subsystems */
4138 if (ss->post_create)
4139 ss->post_create(cgrp);
4140 }
4141
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04004142 err = cgroup_populate_dir(cgrp, true, root->subsys_mask);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004143 /* If err < 0, we have a half-filled directory - oh well ;) */
4144
4145 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07004146 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004147
4148 return 0;
4149
Tejun Heo4e139af2012-11-19 08:13:36 -08004150err_destroy:
Paul Menageddbcc7e2007-10-18 23:39:30 -07004151 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07004152 if (cgrp->subsys[ss->subsys_id])
Li Zefan761b3ef2012-01-31 13:47:36 +08004153 ss->destroy(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004154 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004155 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004156 /* Release the reference count that we took on the superblock */
4157 deactivate_super(sb);
Tejun Heo976c06b2012-11-05 09:16:59 -08004158err_free:
Paul Menagebd89aab2007-10-18 23:40:44 -07004159 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004160 return err;
4161}
4162
Al Viro18bb1db2011-07-26 01:41:39 -04004163static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004164{
4165 struct cgroup *c_parent = dentry->d_parent->d_fsdata;
4166
4167 /* the vfs holds inode->i_mutex already */
4168 return cgroup_create(c_parent, dentry, mode | S_IFDIR);
4169}
4170
Tejun Heo28b4c272012-04-01 12:09:56 -07004171/*
4172 * Check the reference count on each subsystem. Since we already
4173 * established that there are no tasks in the cgroup, if the css refcount
4174 * is also 1, then there should be no outstanding references, so the
4175 * subsystem is safe to destroy. We scan across all subsystems rather than
4176 * using the per-hierarchy linked list of mounted subsystems since we can
4177 * be called via check_for_release() with no synchronization other than
4178 * RCU, and the subsystem linked list isn't RCU-safe.
4179 */
Li Zefan55b6fd02008-07-29 22:33:20 -07004180static int cgroup_has_css_refs(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004181{
Paul Menage81a6a5c2007-10-18 23:39:38 -07004182 int i;
Tejun Heo28b4c272012-04-01 12:09:56 -07004183
Ben Blumaae8aab2010-03-10 15:22:07 -08004184 /*
4185 * We won't need to lock the subsys array, because the subsystems
4186 * we're concerned about aren't going anywhere since our cgroup root
4187 * has a reference on them.
4188 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004189 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
4190 struct cgroup_subsys *ss = subsys[i];
4191 struct cgroup_subsys_state *css;
Tejun Heo28b4c272012-04-01 12:09:56 -07004192
Ben Blumaae8aab2010-03-10 15:22:07 -08004193 /* Skip subsystems not present or not in this hierarchy */
4194 if (ss == NULL || ss->root != cgrp->root)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004195 continue;
Tejun Heo28b4c272012-04-01 12:09:56 -07004196
Paul Menagebd89aab2007-10-18 23:40:44 -07004197 css = cgrp->subsys[ss->subsys_id];
Tejun Heo28b4c272012-04-01 12:09:56 -07004198 /*
4199 * When called from check_for_release() it's possible
Paul Menage81a6a5c2007-10-18 23:39:38 -07004200 * that by this point the cgroup has been removed
4201 * and the css deleted. But a false-positive doesn't
4202 * matter, since it can only happen if the cgroup
4203 * has been deleted and hence no longer needs the
Tejun Heo28b4c272012-04-01 12:09:56 -07004204 * release agent to be called anyway.
4205 */
4206 if (css && css_refcnt(css) > 1)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004207 return 1;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004208 }
4209 return 0;
4210}
4211
Paul Menageddbcc7e2007-10-18 23:39:30 -07004212static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry)
4213{
Paul Menagebd89aab2007-10-18 23:40:44 -07004214 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004215 struct dentry *d;
4216 struct cgroup *parent;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004217 DEFINE_WAIT(wait);
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08004218 struct cgroup_event *event, *tmp;
Tejun Heoed9577932012-11-05 09:16:58 -08004219 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004220
4221 /* the vfs holds both inode->i_mutex already */
KAMEZAWA Hiroyuki3fa59df2008-11-19 15:36:34 -08004222 mutex_lock(&cgroup_mutex);
4223 parent = cgrp->parent;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004224 if (atomic_read(&cgrp->count) || !list_empty(&cgrp->children)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004225 mutex_unlock(&cgroup_mutex);
4226 return -EBUSY;
4227 }
Tejun Heoed9577932012-11-05 09:16:58 -08004228
Tejun Heo1a90dd52012-11-05 09:16:59 -08004229 /*
4230 * Block new css_tryget() by deactivating refcnt and mark @cgrp
4231 * removed. This makes future css_tryget() and child creation
4232 * attempts fail thus maintaining the removal conditions verified
4233 * above.
4234 */
Tejun Heoed9577932012-11-05 09:16:58 -08004235 for_each_subsys(cgrp->root, ss) {
4236 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
4237
4238 WARN_ON(atomic_read(&css->refcnt) < 0);
4239 atomic_add(CSS_DEACT_BIAS, &css->refcnt);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004240 }
Tejun Heo1a90dd52012-11-05 09:16:59 -08004241 set_bit(CGRP_REMOVED, &cgrp->flags);
4242
4243 /*
4244 * Tell subsystems to initate destruction. pre_destroy() should be
4245 * called with cgroup_mutex unlocked. See 3fa59dfbc3 ("cgroup: fix
4246 * potential deadlock in pre_destroy") for details.
4247 */
4248 mutex_unlock(&cgroup_mutex);
4249 for_each_subsys(cgrp->root, ss)
4250 if (ss->pre_destroy)
Tejun Heobcf6de12012-11-05 09:16:59 -08004251 ss->pre_destroy(cgrp);
Tejun Heo1a90dd52012-11-05 09:16:59 -08004252 mutex_lock(&cgroup_mutex);
Tejun Heoed9577932012-11-05 09:16:58 -08004253
4254 /*
Tejun Heoed9577932012-11-05 09:16:58 -08004255 * Put all the base refs. Each css holds an extra reference to the
4256 * cgroup's dentry and cgroup removal proceeds regardless of css
4257 * refs. On the last put of each css, whenever that may be, the
4258 * extra dentry ref is put so that dentry destruction happens only
4259 * after all css's are released.
4260 */
Tejun Heoe9316082012-11-05 09:16:58 -08004261 for_each_subsys(cgrp->root, ss)
4262 css_put(cgrp->subsys[ss->subsys_id]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004263
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004264 raw_spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07004265 if (!list_empty(&cgrp->release_list))
Phil Carmody8d258792011-03-22 16:30:13 -07004266 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004267 raw_spin_unlock(&release_list_lock);
Paul Menage999cd8a2009-01-07 18:08:36 -08004268
Paul Menage999cd8a2009-01-07 18:08:36 -08004269 /* delete this cgroup from parent->children */
Tejun Heoeb6fd502012-11-09 09:12:29 -08004270 list_del_rcu(&cgrp->sibling);
Paul Menage999cd8a2009-01-07 18:08:36 -08004271
Tejun Heob0ca5a82012-04-01 12:09:54 -07004272 list_del_init(&cgrp->allcg_node);
4273
Paul Menagebd89aab2007-10-18 23:40:44 -07004274 d = dget(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004275
4276 cgroup_d_remove_dir(d);
4277 dput(d);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004278
Paul Menagebd89aab2007-10-18 23:40:44 -07004279 set_bit(CGRP_RELEASABLE, &parent->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004280 check_for_release(parent);
4281
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08004282 /*
4283 * Unregister events and notify userspace.
4284 * Notify userspace about cgroup removing only after rmdir of cgroup
4285 * directory to avoid race between userspace and kernelspace
4286 */
4287 spin_lock(&cgrp->event_list_lock);
4288 list_for_each_entry_safe(event, tmp, &cgrp->event_list, list) {
4289 list_del(&event->list);
4290 remove_wait_queue(event->wqh, &event->wait);
4291 eventfd_signal(event->eventfd, 1);
4292 schedule_work(&event->remove);
4293 }
4294 spin_unlock(&cgrp->event_list_lock);
4295
Paul Menageddbcc7e2007-10-18 23:39:30 -07004296 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004297 return 0;
4298}
4299
Tejun Heo8e3f6542012-04-01 12:09:55 -07004300static void __init_or_module cgroup_init_cftsets(struct cgroup_subsys *ss)
4301{
4302 INIT_LIST_HEAD(&ss->cftsets);
4303
4304 /*
4305 * base_cftset is embedded in subsys itself, no need to worry about
4306 * deregistration.
4307 */
4308 if (ss->base_cftypes) {
4309 ss->base_cftset.cfts = ss->base_cftypes;
4310 list_add_tail(&ss->base_cftset.node, &ss->cftsets);
4311 }
4312}
4313
Li Zefan06a11922008-04-29 01:00:07 -07004314static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004315{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004316 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08004317
4318 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004319
Tejun Heo648bb562012-11-19 08:13:36 -08004320 mutex_lock(&cgroup_mutex);
4321
Tejun Heo8e3f6542012-04-01 12:09:55 -07004322 /* init base cftset */
4323 cgroup_init_cftsets(ss);
4324
Paul Menageddbcc7e2007-10-18 23:39:30 -07004325 /* Create the top cgroup state for this subsystem */
Li Zefan33a68ac2009-01-07 18:07:42 -08004326 list_add(&ss->sibling, &rootnode.subsys_list);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004327 ss->root = &rootnode;
Li Zefan761b3ef2012-01-31 13:47:36 +08004328 css = ss->create(dummytop);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004329 /* We don't handle early failures gracefully */
4330 BUG_ON(IS_ERR(css));
4331 init_cgroup_css(css, ss, dummytop);
4332
Li Zefane8d55fd2008-04-29 01:00:13 -07004333 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07004334 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07004335 * newly registered, all tasks and hence the
4336 * init_css_set is in the subsystem's top cgroup. */
Tejun Heob48c6a82012-11-19 08:13:36 -08004337 init_css_set.subsys[ss->subsys_id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004338
4339 need_forkexit_callback |= ss->fork || ss->exit;
4340
Li Zefane8d55fd2008-04-29 01:00:13 -07004341 /* At system boot, before all subsystems have been
4342 * registered, no tasks have been forked, so we don't
4343 * need to invoke fork callbacks here. */
4344 BUG_ON(!list_empty(&init_task.tasks));
4345
Paul Menageddbcc7e2007-10-18 23:39:30 -07004346 ss->active = 1;
Ben Blume6a11052010-03-10 15:22:09 -08004347
Tejun Heoa8638032012-11-09 09:12:29 -08004348 if (ss->post_create)
Tejun Heob48c6a82012-11-19 08:13:36 -08004349 ss->post_create(dummytop);
Tejun Heoa8638032012-11-09 09:12:29 -08004350
Tejun Heo648bb562012-11-19 08:13:36 -08004351 mutex_unlock(&cgroup_mutex);
4352
Ben Blume6a11052010-03-10 15:22:09 -08004353 /* this function shouldn't be used with modular subsystems, since they
4354 * need to register a subsys_id, among other things */
4355 BUG_ON(ss->module);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004356}
4357
4358/**
Ben Blume6a11052010-03-10 15:22:09 -08004359 * cgroup_load_subsys: load and register a modular subsystem at runtime
4360 * @ss: the subsystem to load
4361 *
4362 * This function should be called in a modular subsystem's initcall. If the
Thomas Weber88393162010-03-16 11:47:56 +01004363 * subsystem is built as a module, it will be assigned a new subsys_id and set
Ben Blume6a11052010-03-10 15:22:09 -08004364 * up for use. If the subsystem is built-in anyway, work is delegated to the
4365 * simpler cgroup_init_subsys.
4366 */
4367int __init_or_module cgroup_load_subsys(struct cgroup_subsys *ss)
4368{
4369 int i;
4370 struct cgroup_subsys_state *css;
4371
4372 /* check name and function validity */
4373 if (ss->name == NULL || strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN ||
4374 ss->create == NULL || ss->destroy == NULL)
4375 return -EINVAL;
4376
4377 /*
4378 * we don't support callbacks in modular subsystems. this check is
4379 * before the ss->module check for consistency; a subsystem that could
4380 * be a module should still have no callbacks even if the user isn't
4381 * compiling it as one.
4382 */
4383 if (ss->fork || ss->exit)
4384 return -EINVAL;
4385
4386 /*
4387 * an optionally modular subsystem is built-in: we want to do nothing,
4388 * since cgroup_init_subsys will have already taken care of it.
4389 */
4390 if (ss->module == NULL) {
Daniel Wagnerbe45c902012-09-13 09:50:55 +02004391 /* a sanity check */
Ben Blume6a11052010-03-10 15:22:09 -08004392 BUG_ON(subsys[ss->subsys_id] != ss);
4393 return 0;
4394 }
4395
Tejun Heo8e3f6542012-04-01 12:09:55 -07004396 /* init base cftset */
4397 cgroup_init_cftsets(ss);
4398
Ben Blume6a11052010-03-10 15:22:09 -08004399 mutex_lock(&cgroup_mutex);
Daniel Wagner8a8e04d2012-09-12 16:12:07 +02004400 subsys[ss->subsys_id] = ss;
Ben Blume6a11052010-03-10 15:22:09 -08004401
4402 /*
4403 * no ss->create seems to need anything important in the ss struct, so
4404 * this can happen first (i.e. before the rootnode attachment).
4405 */
Li Zefan761b3ef2012-01-31 13:47:36 +08004406 css = ss->create(dummytop);
Ben Blume6a11052010-03-10 15:22:09 -08004407 if (IS_ERR(css)) {
4408 /* failure case - need to deassign the subsys[] slot. */
Daniel Wagner8a8e04d2012-09-12 16:12:07 +02004409 subsys[ss->subsys_id] = NULL;
Ben Blume6a11052010-03-10 15:22:09 -08004410 mutex_unlock(&cgroup_mutex);
4411 return PTR_ERR(css);
4412 }
4413
4414 list_add(&ss->sibling, &rootnode.subsys_list);
4415 ss->root = &rootnode;
4416
4417 /* our new subsystem will be attached to the dummy hierarchy. */
4418 init_cgroup_css(css, ss, dummytop);
4419 /* init_idr must be after init_cgroup_css because it sets css->id. */
4420 if (ss->use_id) {
4421 int ret = cgroup_init_idr(ss, css);
4422 if (ret) {
4423 dummytop->subsys[ss->subsys_id] = NULL;
Li Zefan761b3ef2012-01-31 13:47:36 +08004424 ss->destroy(dummytop);
Daniel Wagner8a8e04d2012-09-12 16:12:07 +02004425 subsys[ss->subsys_id] = NULL;
Ben Blume6a11052010-03-10 15:22:09 -08004426 mutex_unlock(&cgroup_mutex);
4427 return ret;
4428 }
4429 }
4430
4431 /*
4432 * Now we need to entangle the css into the existing css_sets. unlike
4433 * in cgroup_init_subsys, there are now multiple css_sets, so each one
4434 * will need a new pointer to it; done by iterating the css_set_table.
4435 * furthermore, modifying the existing css_sets will corrupt the hash
4436 * table state, so each changed css_set will need its hash recomputed.
4437 * this is all done under the css_set_lock.
4438 */
4439 write_lock(&css_set_lock);
4440 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
4441 struct css_set *cg;
4442 struct hlist_node *node, *tmp;
4443 struct hlist_head *bucket = &css_set_table[i], *new_bucket;
4444
4445 hlist_for_each_entry_safe(cg, node, tmp, bucket, hlist) {
4446 /* skip entries that we already rehashed */
4447 if (cg->subsys[ss->subsys_id])
4448 continue;
4449 /* remove existing entry */
4450 hlist_del(&cg->hlist);
4451 /* set new value */
4452 cg->subsys[ss->subsys_id] = css;
4453 /* recompute hash and restore entry */
4454 new_bucket = css_set_hash(cg->subsys);
4455 hlist_add_head(&cg->hlist, new_bucket);
4456 }
4457 }
4458 write_unlock(&css_set_lock);
4459
Ben Blume6a11052010-03-10 15:22:09 -08004460 ss->active = 1;
4461
Tejun Heoa8638032012-11-09 09:12:29 -08004462 if (ss->post_create)
Tejun Heob48c6a82012-11-19 08:13:36 -08004463 ss->post_create(dummytop);
Tejun Heoa8638032012-11-09 09:12:29 -08004464
Ben Blume6a11052010-03-10 15:22:09 -08004465 /* success! */
4466 mutex_unlock(&cgroup_mutex);
4467 return 0;
4468}
4469EXPORT_SYMBOL_GPL(cgroup_load_subsys);
4470
4471/**
Ben Blumcf5d5942010-03-10 15:22:09 -08004472 * cgroup_unload_subsys: unload a modular subsystem
4473 * @ss: the subsystem to unload
4474 *
4475 * This function should be called in a modular subsystem's exitcall. When this
4476 * function is invoked, the refcount on the subsystem's module will be 0, so
4477 * the subsystem will not be attached to any hierarchy.
4478 */
4479void cgroup_unload_subsys(struct cgroup_subsys *ss)
4480{
4481 struct cg_cgroup_link *link;
4482 struct hlist_head *hhead;
4483
4484 BUG_ON(ss->module == NULL);
4485
4486 /*
4487 * we shouldn't be called if the subsystem is in use, and the use of
4488 * try_module_get in parse_cgroupfs_options should ensure that it
4489 * doesn't start being used while we're killing it off.
4490 */
4491 BUG_ON(ss->root != &rootnode);
4492
4493 mutex_lock(&cgroup_mutex);
4494 /* deassign the subsys_id */
Ben Blumcf5d5942010-03-10 15:22:09 -08004495 subsys[ss->subsys_id] = NULL;
4496
4497 /* remove subsystem from rootnode's list of subsystems */
Phil Carmody8d258792011-03-22 16:30:13 -07004498 list_del_init(&ss->sibling);
Ben Blumcf5d5942010-03-10 15:22:09 -08004499
4500 /*
4501 * disentangle the css from all css_sets attached to the dummytop. as
4502 * in loading, we need to pay our respects to the hashtable gods.
4503 */
4504 write_lock(&css_set_lock);
4505 list_for_each_entry(link, &dummytop->css_sets, cgrp_link_list) {
4506 struct css_set *cg = link->cg;
4507
4508 hlist_del(&cg->hlist);
4509 BUG_ON(!cg->subsys[ss->subsys_id]);
4510 cg->subsys[ss->subsys_id] = NULL;
4511 hhead = css_set_hash(cg->subsys);
4512 hlist_add_head(&cg->hlist, hhead);
4513 }
4514 write_unlock(&css_set_lock);
4515
4516 /*
4517 * remove subsystem's css from the dummytop and free it - need to free
4518 * before marking as null because ss->destroy needs the cgrp->subsys
4519 * pointer to find their state. note that this also takes care of
4520 * freeing the css_id.
4521 */
Li Zefan761b3ef2012-01-31 13:47:36 +08004522 ss->destroy(dummytop);
Ben Blumcf5d5942010-03-10 15:22:09 -08004523 dummytop->subsys[ss->subsys_id] = NULL;
4524
4525 mutex_unlock(&cgroup_mutex);
4526}
4527EXPORT_SYMBOL_GPL(cgroup_unload_subsys);
4528
4529/**
Li Zefana043e3b2008-02-23 15:24:09 -08004530 * cgroup_init_early - cgroup initialization at system boot
4531 *
4532 * Initialize cgroups at system boot, and initialize any
4533 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004534 */
4535int __init cgroup_init_early(void)
4536{
4537 int i;
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07004538 atomic_set(&init_css_set.refcount, 1);
Paul Menage817929e2007-10-18 23:39:36 -07004539 INIT_LIST_HEAD(&init_css_set.cg_links);
4540 INIT_LIST_HEAD(&init_css_set.tasks);
Li Zefan472b1052008-04-29 01:00:11 -07004541 INIT_HLIST_NODE(&init_css_set.hlist);
Paul Menage817929e2007-10-18 23:39:36 -07004542 css_set_count = 1;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004543 init_cgroup_root(&rootnode);
Paul Menage817929e2007-10-18 23:39:36 -07004544 root_count = 1;
4545 init_task.cgroups = &init_css_set;
4546
4547 init_css_set_link.cg = &init_css_set;
Paul Menage7717f7b2009-09-23 15:56:22 -07004548 init_css_set_link.cgrp = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -07004549 list_add(&init_css_set_link.cgrp_link_list,
Paul Menage817929e2007-10-18 23:39:36 -07004550 &rootnode.top_cgroup.css_sets);
4551 list_add(&init_css_set_link.cg_link_list,
4552 &init_css_set.cg_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004553
Li Zefan472b1052008-04-29 01:00:11 -07004554 for (i = 0; i < CSS_SET_TABLE_SIZE; i++)
4555 INIT_HLIST_HEAD(&css_set_table[i]);
4556
Daniel Wagnerbe45c902012-09-13 09:50:55 +02004557 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004558 struct cgroup_subsys *ss = subsys[i];
4559
Daniel Wagnerbe45c902012-09-13 09:50:55 +02004560 /* at bootup time, we don't worry about modular subsystems */
4561 if (!ss || ss->module)
4562 continue;
4563
Paul Menageddbcc7e2007-10-18 23:39:30 -07004564 BUG_ON(!ss->name);
4565 BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN);
4566 BUG_ON(!ss->create);
4567 BUG_ON(!ss->destroy);
4568 if (ss->subsys_id != i) {
Diego Callejacfe36bd2007-11-14 16:58:54 -08004569 printk(KERN_ERR "cgroup: Subsys %s id == %d\n",
Paul Menageddbcc7e2007-10-18 23:39:30 -07004570 ss->name, ss->subsys_id);
4571 BUG();
4572 }
4573
4574 if (ss->early_init)
4575 cgroup_init_subsys(ss);
4576 }
4577 return 0;
4578}
4579
4580/**
Li Zefana043e3b2008-02-23 15:24:09 -08004581 * cgroup_init - cgroup initialization
4582 *
4583 * Register cgroup filesystem and /proc file, and initialize
4584 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004585 */
4586int __init cgroup_init(void)
4587{
4588 int err;
4589 int i;
Li Zefan472b1052008-04-29 01:00:11 -07004590 struct hlist_head *hhead;
Paul Menagea4243162007-10-18 23:39:35 -07004591
4592 err = bdi_init(&cgroup_backing_dev_info);
4593 if (err)
4594 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004595
Daniel Wagnerbe45c902012-09-13 09:50:55 +02004596 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004597 struct cgroup_subsys *ss = subsys[i];
Daniel Wagnerbe45c902012-09-13 09:50:55 +02004598
4599 /* at bootup time, we don't worry about modular subsystems */
4600 if (!ss || ss->module)
4601 continue;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004602 if (!ss->early_init)
4603 cgroup_init_subsys(ss);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004604 if (ss->use_id)
Ben Blume6a11052010-03-10 15:22:09 -08004605 cgroup_init_idr(ss, init_css_set.subsys[ss->subsys_id]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004606 }
4607
Li Zefan472b1052008-04-29 01:00:11 -07004608 /* Add init_css_set to the hash table */
4609 hhead = css_set_hash(init_css_set.subsys);
4610 hlist_add_head(&init_css_set.hlist, hhead);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004611 BUG_ON(!init_root_id(&rootnode));
Greg KH676db4a2010-08-05 13:53:35 -07004612
4613 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
4614 if (!cgroup_kobj) {
4615 err = -ENOMEM;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004616 goto out;
Greg KH676db4a2010-08-05 13:53:35 -07004617 }
4618
4619 err = register_filesystem(&cgroup_fs_type);
4620 if (err < 0) {
4621 kobject_put(cgroup_kobj);
4622 goto out;
4623 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004624
Li Zefan46ae2202008-04-29 01:00:08 -07004625 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Paul Menagea4243162007-10-18 23:39:35 -07004626
Paul Menageddbcc7e2007-10-18 23:39:30 -07004627out:
Paul Menagea4243162007-10-18 23:39:35 -07004628 if (err)
4629 bdi_destroy(&cgroup_backing_dev_info);
4630
Paul Menageddbcc7e2007-10-18 23:39:30 -07004631 return err;
4632}
Paul Menageb4f48b62007-10-18 23:39:33 -07004633
Paul Menagea4243162007-10-18 23:39:35 -07004634/*
4635 * proc_cgroup_show()
4636 * - Print task's cgroup paths into seq_file, one line for each hierarchy
4637 * - Used for /proc/<pid>/cgroup.
4638 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
4639 * doesn't really matter if tsk->cgroup changes after we read it,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004640 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
Paul Menagea4243162007-10-18 23:39:35 -07004641 * anyway. No need to check that tsk->cgroup != NULL, thanks to
4642 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
4643 * cgroup to top_cgroup.
4644 */
4645
4646/* TODO: Use a proper seq_file iterator */
4647static int proc_cgroup_show(struct seq_file *m, void *v)
4648{
4649 struct pid *pid;
4650 struct task_struct *tsk;
4651 char *buf;
4652 int retval;
4653 struct cgroupfs_root *root;
4654
4655 retval = -ENOMEM;
4656 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
4657 if (!buf)
4658 goto out;
4659
4660 retval = -ESRCH;
4661 pid = m->private;
4662 tsk = get_pid_task(pid, PIDTYPE_PID);
4663 if (!tsk)
4664 goto out_free;
4665
4666 retval = 0;
4667
4668 mutex_lock(&cgroup_mutex);
4669
Li Zefane5f6a862009-01-07 18:07:41 -08004670 for_each_active_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07004671 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07004672 struct cgroup *cgrp;
Paul Menagea4243162007-10-18 23:39:35 -07004673 int count = 0;
4674
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004675 seq_printf(m, "%d:", root->hierarchy_id);
Paul Menagea4243162007-10-18 23:39:35 -07004676 for_each_subsys(root, ss)
4677 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07004678 if (strlen(root->name))
4679 seq_printf(m, "%sname=%s", count ? "," : "",
4680 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07004681 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07004682 cgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07004683 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
Paul Menagea4243162007-10-18 23:39:35 -07004684 if (retval < 0)
4685 goto out_unlock;
4686 seq_puts(m, buf);
4687 seq_putc(m, '\n');
4688 }
4689
4690out_unlock:
4691 mutex_unlock(&cgroup_mutex);
4692 put_task_struct(tsk);
4693out_free:
4694 kfree(buf);
4695out:
4696 return retval;
4697}
4698
4699static int cgroup_open(struct inode *inode, struct file *file)
4700{
4701 struct pid *pid = PROC_I(inode)->pid;
4702 return single_open(file, proc_cgroup_show, pid);
4703}
4704
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004705const struct file_operations proc_cgroup_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004706 .open = cgroup_open,
4707 .read = seq_read,
4708 .llseek = seq_lseek,
4709 .release = single_release,
4710};
4711
4712/* Display information about each subsystem and each hierarchy */
4713static int proc_cgroupstats_show(struct seq_file *m, void *v)
4714{
4715 int i;
Paul Menagea4243162007-10-18 23:39:35 -07004716
Paul Menage8bab8dd2008-04-04 14:29:57 -07004717 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08004718 /*
4719 * ideally we don't want subsystems moving around while we do this.
4720 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
4721 * subsys/hierarchy state.
4722 */
Paul Menagea4243162007-10-18 23:39:35 -07004723 mutex_lock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07004724 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
4725 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08004726 if (ss == NULL)
4727 continue;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004728 seq_printf(m, "%s\t%d\t%d\t%d\n",
4729 ss->name, ss->root->hierarchy_id,
Paul Menage8bab8dd2008-04-04 14:29:57 -07004730 ss->root->number_of_cgroups, !ss->disabled);
Paul Menagea4243162007-10-18 23:39:35 -07004731 }
4732 mutex_unlock(&cgroup_mutex);
4733 return 0;
4734}
4735
4736static int cgroupstats_open(struct inode *inode, struct file *file)
4737{
Al Viro9dce07f2008-03-29 03:07:28 +00004738 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07004739}
4740
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004741static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004742 .open = cgroupstats_open,
4743 .read = seq_read,
4744 .llseek = seq_lseek,
4745 .release = single_release,
4746};
4747
Paul Menageb4f48b62007-10-18 23:39:33 -07004748/**
4749 * cgroup_fork - attach newly forked task to its parents cgroup.
Li Zefana043e3b2008-02-23 15:24:09 -08004750 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07004751 *
4752 * Description: A task inherits its parent's cgroup at fork().
4753 *
4754 * A pointer to the shared css_set was automatically copied in
4755 * fork.c by dup_task_struct(). However, we ignore that copy, since
Tejun Heo9bb71302012-10-18 17:52:07 -07004756 * it was not made under the protection of RCU or cgroup_mutex, so
4757 * might no longer be a valid cgroup pointer. cgroup_attach_task() might
4758 * have already changed current->cgroups, allowing the previously
4759 * referenced cgroup group to be removed and freed.
Paul Menageb4f48b62007-10-18 23:39:33 -07004760 *
4761 * At the point that cgroup_fork() is called, 'current' is the parent
4762 * task, and the passed argument 'child' points to the child task.
4763 */
4764void cgroup_fork(struct task_struct *child)
4765{
Tejun Heo9bb71302012-10-18 17:52:07 -07004766 task_lock(current);
Paul Menage817929e2007-10-18 23:39:36 -07004767 child->cgroups = current->cgroups;
4768 get_css_set(child->cgroups);
Tejun Heo9bb71302012-10-18 17:52:07 -07004769 task_unlock(current);
Paul Menage817929e2007-10-18 23:39:36 -07004770 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07004771}
4772
4773/**
Li Zefana043e3b2008-02-23 15:24:09 -08004774 * cgroup_post_fork - called on a new task after adding it to the task list
4775 * @child: the task in question
4776 *
Tejun Heo5edee612012-10-16 15:03:14 -07004777 * Adds the task to the list running through its css_set if necessary and
4778 * call the subsystem fork() callbacks. Has to be after the task is
4779 * visible on the task list in case we race with the first call to
4780 * cgroup_iter_start() - to guarantee that the new task ends up on its
4781 * list.
Li Zefana043e3b2008-02-23 15:24:09 -08004782 */
Paul Menage817929e2007-10-18 23:39:36 -07004783void cgroup_post_fork(struct task_struct *child)
4784{
Tejun Heo5edee612012-10-16 15:03:14 -07004785 int i;
4786
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01004787 /*
4788 * use_task_css_set_links is set to 1 before we walk the tasklist
4789 * under the tasklist_lock and we read it here after we added the child
4790 * to the tasklist under the tasklist_lock as well. If the child wasn't
4791 * yet in the tasklist when we walked through it from
4792 * cgroup_enable_task_cg_lists(), then use_task_css_set_links value
4793 * should be visible now due to the paired locking and barriers implied
4794 * by LOCK/UNLOCK: it is written before the tasklist_lock unlock
4795 * in cgroup_enable_task_cg_lists() and read here after the tasklist_lock
4796 * lock on fork.
4797 */
Paul Menage817929e2007-10-18 23:39:36 -07004798 if (use_task_css_set_links) {
4799 write_lock(&css_set_lock);
Tejun Heod8783832012-10-18 17:40:30 -07004800 task_lock(child);
4801 if (list_empty(&child->cg_list))
Paul Menage817929e2007-10-18 23:39:36 -07004802 list_add(&child->cg_list, &child->cgroups->tasks);
Tejun Heod8783832012-10-18 17:40:30 -07004803 task_unlock(child);
Paul Menage817929e2007-10-18 23:39:36 -07004804 write_unlock(&css_set_lock);
4805 }
Tejun Heo5edee612012-10-16 15:03:14 -07004806
4807 /*
4808 * Call ss->fork(). This must happen after @child is linked on
4809 * css_set; otherwise, @child might change state between ->fork()
4810 * and addition to css_set.
4811 */
4812 if (need_forkexit_callback) {
4813 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
4814 struct cgroup_subsys *ss = subsys[i];
4815
4816 /*
4817 * fork/exit callbacks are supported only for
4818 * builtin subsystems and we don't need further
4819 * synchronization as they never go away.
4820 */
4821 if (!ss || ss->module)
4822 continue;
4823
4824 if (ss->fork)
4825 ss->fork(child);
4826 }
4827 }
Paul Menage817929e2007-10-18 23:39:36 -07004828}
Tejun Heo5edee612012-10-16 15:03:14 -07004829
Paul Menage817929e2007-10-18 23:39:36 -07004830/**
Paul Menageb4f48b62007-10-18 23:39:33 -07004831 * cgroup_exit - detach cgroup from exiting task
4832 * @tsk: pointer to task_struct of exiting process
Li Zefana043e3b2008-02-23 15:24:09 -08004833 * @run_callback: run exit callbacks?
Paul Menageb4f48b62007-10-18 23:39:33 -07004834 *
4835 * Description: Detach cgroup from @tsk and release it.
4836 *
4837 * Note that cgroups marked notify_on_release force every task in
4838 * them to take the global cgroup_mutex mutex when exiting.
4839 * This could impact scaling on very large systems. Be reluctant to
4840 * use notify_on_release cgroups where very high task exit scaling
4841 * is required on large systems.
4842 *
4843 * the_top_cgroup_hack:
4844 *
4845 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
4846 *
4847 * We call cgroup_exit() while the task is still competent to
4848 * handle notify_on_release(), then leave the task attached to the
4849 * root cgroup in each hierarchy for the remainder of its exit.
4850 *
4851 * To do this properly, we would increment the reference count on
4852 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
4853 * code we would add a second cgroup function call, to drop that
4854 * reference. This would just create an unnecessary hot spot on
4855 * the top_cgroup reference count, to no avail.
4856 *
4857 * Normally, holding a reference to a cgroup without bumping its
4858 * count is unsafe. The cgroup could go away, or someone could
4859 * attach us to a different cgroup, decrementing the count on
4860 * the first cgroup that we never incremented. But in this case,
4861 * top_cgroup isn't going away, and either task has PF_EXITING set,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004862 * which wards off any cgroup_attach_task() attempts, or task is a failed
4863 * fork, never visible to cgroup_attach_task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004864 */
4865void cgroup_exit(struct task_struct *tsk, int run_callbacks)
4866{
Paul Menage817929e2007-10-18 23:39:36 -07004867 struct css_set *cg;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004868 int i;
Paul Menage817929e2007-10-18 23:39:36 -07004869
4870 /*
4871 * Unlink from the css_set task list if necessary.
4872 * Optimistically check cg_list before taking
4873 * css_set_lock
4874 */
4875 if (!list_empty(&tsk->cg_list)) {
4876 write_lock(&css_set_lock);
4877 if (!list_empty(&tsk->cg_list))
Phil Carmody8d258792011-03-22 16:30:13 -07004878 list_del_init(&tsk->cg_list);
Paul Menage817929e2007-10-18 23:39:36 -07004879 write_unlock(&css_set_lock);
4880 }
4881
Paul Menageb4f48b62007-10-18 23:39:33 -07004882 /* Reassign the task to the init_css_set. */
4883 task_lock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07004884 cg = tsk->cgroups;
4885 tsk->cgroups = &init_css_set;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004886
4887 if (run_callbacks && need_forkexit_callback) {
Daniel Wagnerbe45c902012-09-13 09:50:55 +02004888 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004889 struct cgroup_subsys *ss = subsys[i];
Daniel Wagnerbe45c902012-09-13 09:50:55 +02004890
4891 /* modular subsystems can't use callbacks */
4892 if (!ss || ss->module)
4893 continue;
4894
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004895 if (ss->exit) {
4896 struct cgroup *old_cgrp =
4897 rcu_dereference_raw(cg->subsys[i])->cgroup;
4898 struct cgroup *cgrp = task_cgroup(tsk, i);
Li Zefan761b3ef2012-01-31 13:47:36 +08004899 ss->exit(cgrp, old_cgrp, tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004900 }
4901 }
4902 }
Paul Menageb4f48b62007-10-18 23:39:33 -07004903 task_unlock(tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004904
Paul Menage817929e2007-10-18 23:39:36 -07004905 if (cg)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004906 put_css_set_taskexit(cg);
Paul Menageb4f48b62007-10-18 23:39:33 -07004907}
Paul Menage697f4162007-10-18 23:39:34 -07004908
4909/**
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004910 * cgroup_is_descendant - see if @cgrp is a descendant of @task's cgrp
Li Zefana043e3b2008-02-23 15:24:09 -08004911 * @cgrp: the cgroup in question
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004912 * @task: the task in question
Li Zefana043e3b2008-02-23 15:24:09 -08004913 *
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004914 * See if @cgrp is a descendant of @task's cgroup in the appropriate
4915 * hierarchy.
Paul Menage697f4162007-10-18 23:39:34 -07004916 *
4917 * If we are sending in dummytop, then presumably we are creating
4918 * the top cgroup in the subsystem.
4919 *
4920 * Called only by the ns (nsproxy) cgroup.
4921 */
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004922int cgroup_is_descendant(const struct cgroup *cgrp, struct task_struct *task)
Paul Menage697f4162007-10-18 23:39:34 -07004923{
4924 int ret;
4925 struct cgroup *target;
Paul Menage697f4162007-10-18 23:39:34 -07004926
Paul Menagebd89aab2007-10-18 23:40:44 -07004927 if (cgrp == dummytop)
Paul Menage697f4162007-10-18 23:39:34 -07004928 return 1;
4929
Paul Menage7717f7b2009-09-23 15:56:22 -07004930 target = task_cgroup_from_root(task, cgrp->root);
Paul Menagebd89aab2007-10-18 23:40:44 -07004931 while (cgrp != target && cgrp!= cgrp->top_cgroup)
4932 cgrp = cgrp->parent;
4933 ret = (cgrp == target);
Paul Menage697f4162007-10-18 23:39:34 -07004934 return ret;
4935}
Paul Menage81a6a5c2007-10-18 23:39:38 -07004936
Paul Menagebd89aab2007-10-18 23:40:44 -07004937static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004938{
4939 /* All of these checks rely on RCU to keep the cgroup
4940 * structure alive */
Paul Menagebd89aab2007-10-18 23:40:44 -07004941 if (cgroup_is_releasable(cgrp) && !atomic_read(&cgrp->count)
4942 && list_empty(&cgrp->children) && !cgroup_has_css_refs(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004943 /* Control Group is currently removeable. If it's not
4944 * already queued for a userspace notification, queue
4945 * it now */
4946 int need_schedule_work = 0;
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004947 raw_spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07004948 if (!cgroup_is_removed(cgrp) &&
4949 list_empty(&cgrp->release_list)) {
4950 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004951 need_schedule_work = 1;
4952 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004953 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004954 if (need_schedule_work)
4955 schedule_work(&release_agent_work);
4956 }
4957}
4958
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -08004959/* Caller must verify that the css is not for root cgroup */
Tejun Heo28b4c272012-04-01 12:09:56 -07004960bool __css_tryget(struct cgroup_subsys_state *css)
4961{
Tejun Heoe9316082012-11-05 09:16:58 -08004962 while (true) {
4963 int t, v;
Tejun Heo28b4c272012-04-01 12:09:56 -07004964
Tejun Heoe9316082012-11-05 09:16:58 -08004965 v = css_refcnt(css);
4966 t = atomic_cmpxchg(&css->refcnt, v, v + 1);
4967 if (likely(t == v))
Tejun Heo28b4c272012-04-01 12:09:56 -07004968 return true;
Tejun Heoe9316082012-11-05 09:16:58 -08004969 else if (t < 0)
4970 return false;
Tejun Heo28b4c272012-04-01 12:09:56 -07004971 cpu_relax();
Tejun Heoe9316082012-11-05 09:16:58 -08004972 }
Tejun Heo28b4c272012-04-01 12:09:56 -07004973}
4974EXPORT_SYMBOL_GPL(__css_tryget);
4975
4976/* Caller must verify that the css is not for root cgroup */
4977void __css_put(struct cgroup_subsys_state *css)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004978{
Paul Menagebd89aab2007-10-18 23:40:44 -07004979 struct cgroup *cgrp = css->cgroup;
Salman Qazi8e3bbf42012-06-14 14:55:30 -07004980 int v;
Tejun Heo28b4c272012-04-01 12:09:56 -07004981
Paul Menage81a6a5c2007-10-18 23:39:38 -07004982 rcu_read_lock();
Salman Qazi8e3bbf42012-06-14 14:55:30 -07004983 v = css_unbias_refcnt(atomic_dec_return(&css->refcnt));
4984
4985 switch (v) {
Tejun Heo48ddbe12012-04-01 12:09:56 -07004986 case 1:
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004987 if (notify_on_release(cgrp)) {
4988 set_bit(CGRP_RELEASABLE, &cgrp->flags);
4989 check_for_release(cgrp);
4990 }
Tejun Heo48ddbe12012-04-01 12:09:56 -07004991 break;
4992 case 0:
Tejun Heoed9577932012-11-05 09:16:58 -08004993 schedule_work(&css->dput_work);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004994 break;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004995 }
4996 rcu_read_unlock();
4997}
Ben Blum67523c42010-03-10 15:22:11 -08004998EXPORT_SYMBOL_GPL(__css_put);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004999
5000/*
5001 * Notify userspace when a cgroup is released, by running the
5002 * configured release agent with the name of the cgroup (path
5003 * relative to the root of cgroup file system) as the argument.
5004 *
5005 * Most likely, this user command will try to rmdir this cgroup.
5006 *
5007 * This races with the possibility that some other task will be
5008 * attached to this cgroup before it is removed, or that some other
5009 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
5010 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
5011 * unused, and this cgroup will be reprieved from its death sentence,
5012 * to continue to serve a useful existence. Next time it's released,
5013 * we will get notified again, if it still has 'notify_on_release' set.
5014 *
5015 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
5016 * means only wait until the task is successfully execve()'d. The
5017 * separate release agent task is forked by call_usermodehelper(),
5018 * then control in this thread returns here, without waiting for the
5019 * release agent task. We don't bother to wait because the caller of
5020 * this routine has no use for the exit status of the release agent
5021 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07005022 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07005023static void cgroup_release_agent(struct work_struct *work)
5024{
5025 BUG_ON(work != &release_agent_work);
5026 mutex_lock(&cgroup_mutex);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005027 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005028 while (!list_empty(&release_list)) {
5029 char *argv[3], *envp[3];
5030 int i;
Paul Menagee788e062008-07-25 01:46:59 -07005031 char *pathbuf = NULL, *agentbuf = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07005032 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07005033 struct cgroup,
5034 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07005035 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005036 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005037 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paul Menagee788e062008-07-25 01:46:59 -07005038 if (!pathbuf)
5039 goto continue_free;
5040 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0)
5041 goto continue_free;
5042 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
5043 if (!agentbuf)
5044 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005045
5046 i = 0;
Paul Menagee788e062008-07-25 01:46:59 -07005047 argv[i++] = agentbuf;
5048 argv[i++] = pathbuf;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005049 argv[i] = NULL;
5050
5051 i = 0;
5052 /* minimal command environment */
5053 envp[i++] = "HOME=/";
5054 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
5055 envp[i] = NULL;
5056
5057 /* Drop the lock while we invoke the usermode helper,
5058 * since the exec could involve hitting disk and hence
5059 * be a slow process */
5060 mutex_unlock(&cgroup_mutex);
5061 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005062 mutex_lock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07005063 continue_free:
5064 kfree(pathbuf);
5065 kfree(agentbuf);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005066 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005067 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005068 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005069 mutex_unlock(&cgroup_mutex);
5070}
Paul Menage8bab8dd2008-04-04 14:29:57 -07005071
5072static int __init cgroup_disable(char *str)
5073{
5074 int i;
5075 char *token;
5076
5077 while ((token = strsep(&str, ",")) != NULL) {
5078 if (!*token)
5079 continue;
Daniel Wagnerbe45c902012-09-13 09:50:55 +02005080 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07005081 struct cgroup_subsys *ss = subsys[i];
5082
Daniel Wagnerbe45c902012-09-13 09:50:55 +02005083 /*
5084 * cgroup_disable, being at boot time, can't
5085 * know about module subsystems, so we don't
5086 * worry about them.
5087 */
5088 if (!ss || ss->module)
5089 continue;
5090
Paul Menage8bab8dd2008-04-04 14:29:57 -07005091 if (!strcmp(token, ss->name)) {
5092 ss->disabled = 1;
5093 printk(KERN_INFO "Disabling %s control group"
5094 " subsystem\n", ss->name);
5095 break;
5096 }
5097 }
5098 }
5099 return 1;
5100}
5101__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005102
5103/*
5104 * Functons for CSS ID.
5105 */
5106
5107/*
5108 *To get ID other than 0, this should be called when !cgroup_is_removed().
5109 */
5110unsigned short css_id(struct cgroup_subsys_state *css)
5111{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07005112 struct css_id *cssid;
5113
5114 /*
5115 * This css_id() can return correct value when somone has refcnt
5116 * on this or this is under rcu_read_lock(). Once css->id is allocated,
5117 * it's unchanged until freed.
5118 */
Tejun Heo28b4c272012-04-01 12:09:56 -07005119 cssid = rcu_dereference_check(css->id, css_refcnt(css));
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005120
5121 if (cssid)
5122 return cssid->id;
5123 return 0;
5124}
Ben Blum67523c42010-03-10 15:22:11 -08005125EXPORT_SYMBOL_GPL(css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005126
5127unsigned short css_depth(struct cgroup_subsys_state *css)
5128{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07005129 struct css_id *cssid;
5130
Tejun Heo28b4c272012-04-01 12:09:56 -07005131 cssid = rcu_dereference_check(css->id, css_refcnt(css));
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005132
5133 if (cssid)
5134 return cssid->depth;
5135 return 0;
5136}
Ben Blum67523c42010-03-10 15:22:11 -08005137EXPORT_SYMBOL_GPL(css_depth);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005138
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07005139/**
5140 * css_is_ancestor - test "root" css is an ancestor of "child"
5141 * @child: the css to be tested.
5142 * @root: the css supporsed to be an ancestor of the child.
5143 *
5144 * Returns true if "root" is an ancestor of "child" in its hierarchy. Because
Johannes Weiner91c637342012-05-29 15:06:24 -07005145 * this function reads css->id, the caller must hold rcu_read_lock().
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07005146 * But, considering usual usage, the csses should be valid objects after test.
5147 * Assuming that the caller will do some action to the child if this returns
5148 * returns true, the caller must take "child";s reference count.
5149 * If "child" is valid object and this returns true, "root" is valid, too.
5150 */
5151
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005152bool css_is_ancestor(struct cgroup_subsys_state *child,
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07005153 const struct cgroup_subsys_state *root)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005154{
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07005155 struct css_id *child_id;
5156 struct css_id *root_id;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005157
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07005158 child_id = rcu_dereference(child->id);
Johannes Weiner91c637342012-05-29 15:06:24 -07005159 if (!child_id)
5160 return false;
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07005161 root_id = rcu_dereference(root->id);
Johannes Weiner91c637342012-05-29 15:06:24 -07005162 if (!root_id)
5163 return false;
5164 if (child_id->depth < root_id->depth)
5165 return false;
5166 if (child_id->stack[root_id->depth] != root_id->id)
5167 return false;
5168 return true;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005169}
5170
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005171void free_css_id(struct cgroup_subsys *ss, struct cgroup_subsys_state *css)
5172{
5173 struct css_id *id = css->id;
5174 /* When this is called before css_id initialization, id can be NULL */
5175 if (!id)
5176 return;
5177
5178 BUG_ON(!ss->use_id);
5179
5180 rcu_assign_pointer(id->css, NULL);
5181 rcu_assign_pointer(css->id, NULL);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005182 spin_lock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005183 idr_remove(&ss->idr, id->id);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005184 spin_unlock(&ss->id_lock);
Lai Jiangshan025cea92011-03-15 17:56:10 +08005185 kfree_rcu(id, rcu_head);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005186}
Ben Blum67523c42010-03-10 15:22:11 -08005187EXPORT_SYMBOL_GPL(free_css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005188
5189/*
5190 * This is called by init or create(). Then, calls to this function are
5191 * always serialized (By cgroup_mutex() at create()).
5192 */
5193
5194static struct css_id *get_new_cssid(struct cgroup_subsys *ss, int depth)
5195{
5196 struct css_id *newid;
5197 int myid, error, size;
5198
5199 BUG_ON(!ss->use_id);
5200
5201 size = sizeof(*newid) + sizeof(unsigned short) * (depth + 1);
5202 newid = kzalloc(size, GFP_KERNEL);
5203 if (!newid)
5204 return ERR_PTR(-ENOMEM);
5205 /* get id */
5206 if (unlikely(!idr_pre_get(&ss->idr, GFP_KERNEL))) {
5207 error = -ENOMEM;
5208 goto err_out;
5209 }
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005210 spin_lock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005211 /* Don't use 0. allocates an ID of 1-65535 */
5212 error = idr_get_new_above(&ss->idr, newid, 1, &myid);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005213 spin_unlock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005214
5215 /* Returns error when there are no free spaces for new ID.*/
5216 if (error) {
5217 error = -ENOSPC;
5218 goto err_out;
5219 }
5220 if (myid > CSS_ID_MAX)
5221 goto remove_idr;
5222
5223 newid->id = myid;
5224 newid->depth = depth;
5225 return newid;
5226remove_idr:
5227 error = -ENOSPC;
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005228 spin_lock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005229 idr_remove(&ss->idr, myid);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005230 spin_unlock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005231err_out:
5232 kfree(newid);
5233 return ERR_PTR(error);
5234
5235}
5236
Ben Blume6a11052010-03-10 15:22:09 -08005237static int __init_or_module cgroup_init_idr(struct cgroup_subsys *ss,
5238 struct cgroup_subsys_state *rootcss)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005239{
5240 struct css_id *newid;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005241
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005242 spin_lock_init(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005243 idr_init(&ss->idr);
5244
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005245 newid = get_new_cssid(ss, 0);
5246 if (IS_ERR(newid))
5247 return PTR_ERR(newid);
5248
5249 newid->stack[0] = newid->id;
5250 newid->css = rootcss;
5251 rootcss->id = newid;
5252 return 0;
5253}
5254
5255static int alloc_css_id(struct cgroup_subsys *ss, struct cgroup *parent,
5256 struct cgroup *child)
5257{
5258 int subsys_id, i, depth = 0;
5259 struct cgroup_subsys_state *parent_css, *child_css;
Li Zefanfae9c792010-04-22 17:30:00 +08005260 struct css_id *child_id, *parent_id;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005261
5262 subsys_id = ss->subsys_id;
5263 parent_css = parent->subsys[subsys_id];
5264 child_css = child->subsys[subsys_id];
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005265 parent_id = parent_css->id;
Greg Thelen94b3dd02010-06-04 14:15:03 -07005266 depth = parent_id->depth + 1;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005267
5268 child_id = get_new_cssid(ss, depth);
5269 if (IS_ERR(child_id))
5270 return PTR_ERR(child_id);
5271
5272 for (i = 0; i < depth; i++)
5273 child_id->stack[i] = parent_id->stack[i];
5274 child_id->stack[depth] = child_id->id;
5275 /*
5276 * child_id->css pointer will be set after this cgroup is available
5277 * see cgroup_populate_dir()
5278 */
5279 rcu_assign_pointer(child_css->id, child_id);
5280
5281 return 0;
5282}
5283
5284/**
5285 * css_lookup - lookup css by id
5286 * @ss: cgroup subsys to be looked into.
5287 * @id: the id
5288 *
5289 * Returns pointer to cgroup_subsys_state if there is valid one with id.
5290 * NULL if not. Should be called under rcu_read_lock()
5291 */
5292struct cgroup_subsys_state *css_lookup(struct cgroup_subsys *ss, int id)
5293{
5294 struct css_id *cssid = NULL;
5295
5296 BUG_ON(!ss->use_id);
5297 cssid = idr_find(&ss->idr, id);
5298
5299 if (unlikely(!cssid))
5300 return NULL;
5301
5302 return rcu_dereference(cssid->css);
5303}
Ben Blum67523c42010-03-10 15:22:11 -08005304EXPORT_SYMBOL_GPL(css_lookup);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005305
5306/**
5307 * css_get_next - lookup next cgroup under specified hierarchy.
5308 * @ss: pointer to subsystem
5309 * @id: current position of iteration.
5310 * @root: pointer to css. search tree under this.
5311 * @foundid: position of found object.
5312 *
5313 * Search next css under the specified hierarchy of rootid. Calling under
5314 * rcu_read_lock() is necessary. Returns NULL if it reaches the end.
5315 */
5316struct cgroup_subsys_state *
5317css_get_next(struct cgroup_subsys *ss, int id,
5318 struct cgroup_subsys_state *root, int *foundid)
5319{
5320 struct cgroup_subsys_state *ret = NULL;
5321 struct css_id *tmp;
5322 int tmpid;
5323 int rootid = css_id(root);
5324 int depth = css_depth(root);
5325
5326 if (!rootid)
5327 return NULL;
5328
5329 BUG_ON(!ss->use_id);
Hugh Dickinsca464d62012-03-21 16:34:21 -07005330 WARN_ON_ONCE(!rcu_read_lock_held());
5331
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005332 /* fill start point for scan */
5333 tmpid = id;
5334 while (1) {
5335 /*
5336 * scan next entry from bitmap(tree), tmpid is updated after
5337 * idr_get_next().
5338 */
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005339 tmp = idr_get_next(&ss->idr, &tmpid);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005340 if (!tmp)
5341 break;
5342 if (tmp->depth >= depth && tmp->stack[depth] == rootid) {
5343 ret = rcu_dereference(tmp->css);
5344 if (ret) {
5345 *foundid = tmpid;
5346 break;
5347 }
5348 }
5349 /* continue to scan from next id */
5350 tmpid = tmpid + 1;
5351 }
5352 return ret;
5353}
5354
Stephane Eraniane5d13672011-02-14 11:20:01 +02005355/*
5356 * get corresponding css from file open on cgroupfs directory
5357 */
5358struct cgroup_subsys_state *cgroup_css_from_dir(struct file *f, int id)
5359{
5360 struct cgroup *cgrp;
5361 struct inode *inode;
5362 struct cgroup_subsys_state *css;
5363
5364 inode = f->f_dentry->d_inode;
5365 /* check in cgroup filesystem dir */
5366 if (inode->i_op != &cgroup_dir_inode_operations)
5367 return ERR_PTR(-EBADF);
5368
5369 if (id < 0 || id >= CGROUP_SUBSYS_COUNT)
5370 return ERR_PTR(-EINVAL);
5371
5372 /* get cgroup */
5373 cgrp = __d_cgrp(f->f_dentry);
5374 css = cgrp->subsys[id];
5375 return css ? css : ERR_PTR(-ENOENT);
5376}
5377
Paul Menagefe693432009-09-23 15:56:20 -07005378#ifdef CONFIG_CGROUP_DEBUG
Li Zefan761b3ef2012-01-31 13:47:36 +08005379static struct cgroup_subsys_state *debug_create(struct cgroup *cont)
Paul Menagefe693432009-09-23 15:56:20 -07005380{
5381 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
5382
5383 if (!css)
5384 return ERR_PTR(-ENOMEM);
5385
5386 return css;
5387}
5388
Li Zefan761b3ef2012-01-31 13:47:36 +08005389static void debug_destroy(struct cgroup *cont)
Paul Menagefe693432009-09-23 15:56:20 -07005390{
5391 kfree(cont->subsys[debug_subsys_id]);
5392}
5393
5394static u64 cgroup_refcount_read(struct cgroup *cont, struct cftype *cft)
5395{
5396 return atomic_read(&cont->count);
5397}
5398
5399static u64 debug_taskcount_read(struct cgroup *cont, struct cftype *cft)
5400{
5401 return cgroup_task_count(cont);
5402}
5403
5404static u64 current_css_set_read(struct cgroup *cont, struct cftype *cft)
5405{
5406 return (u64)(unsigned long)current->cgroups;
5407}
5408
5409static u64 current_css_set_refcount_read(struct cgroup *cont,
5410 struct cftype *cft)
5411{
5412 u64 count;
5413
5414 rcu_read_lock();
5415 count = atomic_read(&current->cgroups->refcount);
5416 rcu_read_unlock();
5417 return count;
5418}
5419
Paul Menage7717f7b2009-09-23 15:56:22 -07005420static int current_css_set_cg_links_read(struct cgroup *cont,
5421 struct cftype *cft,
5422 struct seq_file *seq)
5423{
5424 struct cg_cgroup_link *link;
5425 struct css_set *cg;
5426
5427 read_lock(&css_set_lock);
5428 rcu_read_lock();
5429 cg = rcu_dereference(current->cgroups);
5430 list_for_each_entry(link, &cg->cg_links, cg_link_list) {
5431 struct cgroup *c = link->cgrp;
5432 const char *name;
5433
5434 if (c->dentry)
5435 name = c->dentry->d_name.name;
5436 else
5437 name = "?";
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005438 seq_printf(seq, "Root %d group %s\n",
5439 c->root->hierarchy_id, name);
Paul Menage7717f7b2009-09-23 15:56:22 -07005440 }
5441 rcu_read_unlock();
5442 read_unlock(&css_set_lock);
5443 return 0;
5444}
5445
5446#define MAX_TASKS_SHOWN_PER_CSS 25
5447static int cgroup_css_links_read(struct cgroup *cont,
5448 struct cftype *cft,
5449 struct seq_file *seq)
5450{
5451 struct cg_cgroup_link *link;
5452
5453 read_lock(&css_set_lock);
5454 list_for_each_entry(link, &cont->css_sets, cgrp_link_list) {
5455 struct css_set *cg = link->cg;
5456 struct task_struct *task;
5457 int count = 0;
5458 seq_printf(seq, "css_set %p\n", cg);
5459 list_for_each_entry(task, &cg->tasks, cg_list) {
5460 if (count++ > MAX_TASKS_SHOWN_PER_CSS) {
5461 seq_puts(seq, " ...\n");
5462 break;
5463 } else {
5464 seq_printf(seq, " task %d\n",
5465 task_pid_vnr(task));
5466 }
5467 }
5468 }
5469 read_unlock(&css_set_lock);
5470 return 0;
5471}
5472
Paul Menagefe693432009-09-23 15:56:20 -07005473static u64 releasable_read(struct cgroup *cgrp, struct cftype *cft)
5474{
5475 return test_bit(CGRP_RELEASABLE, &cgrp->flags);
5476}
5477
5478static struct cftype debug_files[] = {
5479 {
5480 .name = "cgroup_refcount",
5481 .read_u64 = cgroup_refcount_read,
5482 },
5483 {
5484 .name = "taskcount",
5485 .read_u64 = debug_taskcount_read,
5486 },
5487
5488 {
5489 .name = "current_css_set",
5490 .read_u64 = current_css_set_read,
5491 },
5492
5493 {
5494 .name = "current_css_set_refcount",
5495 .read_u64 = current_css_set_refcount_read,
5496 },
5497
5498 {
Paul Menage7717f7b2009-09-23 15:56:22 -07005499 .name = "current_css_set_cg_links",
5500 .read_seq_string = current_css_set_cg_links_read,
5501 },
5502
5503 {
5504 .name = "cgroup_css_links",
5505 .read_seq_string = cgroup_css_links_read,
5506 },
5507
5508 {
Paul Menagefe693432009-09-23 15:56:20 -07005509 .name = "releasable",
5510 .read_u64 = releasable_read,
5511 },
Paul Menagefe693432009-09-23 15:56:20 -07005512
Tejun Heo4baf6e32012-04-01 12:09:55 -07005513 { } /* terminate */
5514};
Paul Menagefe693432009-09-23 15:56:20 -07005515
5516struct cgroup_subsys debug_subsys = {
5517 .name = "debug",
5518 .create = debug_create,
5519 .destroy = debug_destroy,
Paul Menagefe693432009-09-23 15:56:20 -07005520 .subsys_id = debug_subsys_id,
Tejun Heo4baf6e32012-04-01 12:09:55 -07005521 .base_cftypes = debug_files,
Paul Menagefe693432009-09-23 15:56:20 -07005522};
5523#endif /* CONFIG_CGROUP_DEBUG */