blob: 2bfc78f531b66ab764d07b303990216620216747 [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()
174 * is called after synchronize_rcu(). But for safe use, css_is_removed()
175 * css_tryget() should be used for avoiding race.
176 */
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
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800857/*
858 * Call subsys's pre_destroy handler.
859 * This is called before css refcnt check.
860 */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700861static int cgroup_call_pre_destroy(struct cgroup *cgrp)
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800862{
863 struct cgroup_subsys *ss;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700864 int ret = 0;
865
Tejun Heo48ddbe12012-04-01 12:09:56 -0700866 for_each_subsys(cgrp->root, ss) {
867 if (!ss->pre_destroy)
868 continue;
869
870 ret = ss->pre_destroy(cgrp);
871 if (ret) {
872 /* ->pre_destroy() failure is being deprecated */
873 WARN_ON_ONCE(!ss->__DEPRECATED_clear_css_refs);
874 break;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700875 }
Tejun Heo48ddbe12012-04-01 12:09:56 -0700876 }
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800877
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700878 return ret;
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800879}
880
Paul Menageddbcc7e2007-10-18 23:39:30 -0700881static void cgroup_diput(struct dentry *dentry, struct inode *inode)
882{
883 /* is dentry a directory ? if so, kfree() associated cgroup */
884 if (S_ISDIR(inode->i_mode)) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700885 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800886 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -0700887 BUG_ON(!(cgroup_is_removed(cgrp)));
Paul Menage81a6a5c2007-10-18 23:39:38 -0700888 /* It's possible for external users to be holding css
889 * reference counts on a cgroup; css_put() needs to
890 * be able to access the cgroup after decrementing
891 * the reference count in order to know if it needs to
892 * queue the cgroup to be handled by the release
893 * agent */
894 synchronize_rcu();
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800895
896 mutex_lock(&cgroup_mutex);
897 /*
898 * Release the subsystem state objects.
899 */
Li Zefan75139b82009-01-07 18:07:33 -0800900 for_each_subsys(cgrp->root, ss)
Li Zefan761b3ef2012-01-31 13:47:36 +0800901 ss->destroy(cgrp);
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800902
903 cgrp->root->number_of_cgroups--;
904 mutex_unlock(&cgroup_mutex);
905
Paul Menagea47295e2009-01-07 18:07:44 -0800906 /*
Tejun Heo7db5b3c2012-07-07 15:55:47 -0700907 * Drop the active superblock reference that we took when we
908 * created the cgroup
Paul Menagea47295e2009-01-07 18:07:44 -0800909 */
Tejun Heo7db5b3c2012-07-07 15:55:47 -0700910 deactivate_super(cgrp->root->sb);
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800911
Ben Blum72a8cb32009-09-23 15:56:27 -0700912 /*
913 * if we're getting rid of the cgroup, refcount should ensure
914 * that there are no pidlists left.
915 */
916 BUG_ON(!list_empty(&cgrp->pidlists));
917
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -0400918 simple_xattrs_free(&cgrp->xattrs);
919
Lai Jiangshanf2da1c42011-03-15 17:55:16 +0800920 kfree_rcu(cgrp, rcu_head);
Tejun Heo05ef1d72012-04-01 12:09:56 -0700921 } else {
922 struct cfent *cfe = __d_cfe(dentry);
923 struct cgroup *cgrp = dentry->d_parent->d_fsdata;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -0400924 struct cftype *cft = cfe->type;
Tejun Heo05ef1d72012-04-01 12:09:56 -0700925
926 WARN_ONCE(!list_empty(&cfe->node) &&
927 cgrp != &cgrp->root->top_cgroup,
928 "cfe still linked for %s\n", cfe->type->name);
929 kfree(cfe);
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -0400930 simple_xattrs_free(&cft->xattrs);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700931 }
932 iput(inode);
933}
934
Al Viroc72a04e2011-01-14 05:31:45 +0000935static int cgroup_delete(const struct dentry *d)
936{
937 return 1;
938}
939
Paul Menageddbcc7e2007-10-18 23:39:30 -0700940static void remove_dir(struct dentry *d)
941{
942 struct dentry *parent = dget(d->d_parent);
943
944 d_delete(d);
945 simple_rmdir(parent->d_inode, d);
946 dput(parent);
947}
948
Tejun Heo05ef1d72012-04-01 12:09:56 -0700949static int cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700950{
Tejun Heo05ef1d72012-04-01 12:09:56 -0700951 struct cfent *cfe;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700952
Tejun Heo05ef1d72012-04-01 12:09:56 -0700953 lockdep_assert_held(&cgrp->dentry->d_inode->i_mutex);
954 lockdep_assert_held(&cgroup_mutex);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100955
Tejun Heo05ef1d72012-04-01 12:09:56 -0700956 list_for_each_entry(cfe, &cgrp->files, node) {
957 struct dentry *d = cfe->dentry;
958
959 if (cft && cfe->type != cft)
960 continue;
961
962 dget(d);
963 d_delete(d);
Tejun Heoce27e312012-07-03 10:38:06 -0700964 simple_unlink(cgrp->dentry->d_inode, d);
Tejun Heo05ef1d72012-04-01 12:09:56 -0700965 list_del_init(&cfe->node);
966 dput(d);
967
968 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700969 }
Tejun Heo05ef1d72012-04-01 12:09:56 -0700970 return -ENOENT;
971}
972
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400973/**
974 * cgroup_clear_directory - selective removal of base and subsystem files
975 * @dir: directory containing the files
976 * @base_files: true if the base files should be removed
977 * @subsys_mask: mask of the subsystem ids whose files should be removed
978 */
979static void cgroup_clear_directory(struct dentry *dir, bool base_files,
980 unsigned long subsys_mask)
Tejun Heo05ef1d72012-04-01 12:09:56 -0700981{
982 struct cgroup *cgrp = __d_cgrp(dir);
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400983 struct cgroup_subsys *ss;
Tejun Heo05ef1d72012-04-01 12:09:56 -0700984
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400985 for_each_subsys(cgrp->root, ss) {
986 struct cftype_set *set;
987 if (!test_bit(ss->subsys_id, &subsys_mask))
988 continue;
989 list_for_each_entry(set, &ss->cftsets, node)
990 cgroup_rm_file(cgrp, set->cfts);
991 }
992 if (base_files) {
993 while (!list_empty(&cgrp->files))
994 cgroup_rm_file(cgrp, NULL);
995 }
Paul Menageddbcc7e2007-10-18 23:39:30 -0700996}
997
998/*
999 * NOTE : the dentry must have been dget()'ed
1000 */
1001static void cgroup_d_remove_dir(struct dentry *dentry)
1002{
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001003 struct dentry *parent;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001004 struct cgroupfs_root *root = dentry->d_sb->s_fs_info;
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001005
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001006 cgroup_clear_directory(dentry, true, root->subsys_mask);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001007
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001008 parent = dentry->d_parent;
1009 spin_lock(&parent->d_lock);
Li Zefan3ec762a2011-01-14 11:34:34 +08001010 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001011 list_del_init(&dentry->d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +11001012 spin_unlock(&dentry->d_lock);
1013 spin_unlock(&parent->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001014 remove_dir(dentry);
1015}
1016
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07001017/*
1018 * A queue for waiters to do rmdir() cgroup. A tasks will sleep when
1019 * cgroup->count == 0 && list_empty(&cgroup->children) && subsys has some
1020 * reference to css->refcnt. In general, this refcnt is expected to goes down
1021 * to zero, soon.
1022 *
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07001023 * CGRP_WAIT_ON_RMDIR flag is set under cgroup's inode->i_mutex;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07001024 */
Kirill A. Shutemov1c6c3fa2011-12-27 07:46:25 +02001025static DECLARE_WAIT_QUEUE_HEAD(cgroup_rmdir_waitq);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07001026
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07001027static void cgroup_wakeup_rmdir_waiter(struct cgroup *cgrp)
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07001028{
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07001029 if (unlikely(test_and_clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags)))
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07001030 wake_up_all(&cgroup_rmdir_waitq);
1031}
1032
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07001033void cgroup_exclude_rmdir(struct cgroup_subsys_state *css)
1034{
1035 css_get(css);
1036}
1037
1038void cgroup_release_and_wakeup_rmdir(struct cgroup_subsys_state *css)
1039{
1040 cgroup_wakeup_rmdir_waiter(css->cgroup);
1041 css_put(css);
1042}
1043
Ben Blumaae8aab2010-03-10 15:22:07 -08001044/*
Ben Blumcf5d5942010-03-10 15:22:09 -08001045 * Call with cgroup_mutex held. Drops reference counts on modules, including
1046 * any duplicate ones that parse_cgroupfs_options took. If this function
1047 * returns an error, no reference counts are touched.
Ben Blumaae8aab2010-03-10 15:22:07 -08001048 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001049static int rebind_subsystems(struct cgroupfs_root *root,
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001050 unsigned long final_subsys_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001051{
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001052 unsigned long added_mask, removed_mask;
Paul Menagebd89aab2007-10-18 23:40:44 -07001053 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001054 int i;
1055
Ben Blumaae8aab2010-03-10 15:22:07 -08001056 BUG_ON(!mutex_is_locked(&cgroup_mutex));
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001057 BUG_ON(!mutex_is_locked(&cgroup_root_mutex));
Ben Blumaae8aab2010-03-10 15:22:07 -08001058
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001059 removed_mask = root->actual_subsys_mask & ~final_subsys_mask;
1060 added_mask = final_subsys_mask & ~root->actual_subsys_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001061 /* Check that any added subsystems are currently free */
1062 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Li Zefan8d53d552008-02-23 15:24:11 -08001063 unsigned long bit = 1UL << i;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001064 struct cgroup_subsys *ss = subsys[i];
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001065 if (!(bit & added_mask))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001066 continue;
Ben Blumaae8aab2010-03-10 15:22:07 -08001067 /*
1068 * Nobody should tell us to do a subsys that doesn't exist:
1069 * parse_cgroupfs_options should catch that case and refcounts
1070 * ensure that subsystems won't disappear once selected.
1071 */
1072 BUG_ON(ss == NULL);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001073 if (ss->root != &rootnode) {
1074 /* Subsystem isn't free */
1075 return -EBUSY;
1076 }
1077 }
1078
1079 /* Currently we don't handle adding/removing subsystems when
1080 * any child cgroups exist. This is theoretically supportable
1081 * but involves complex error handling, so it's being left until
1082 * later */
Paul Menage307257c2008-12-15 13:54:22 -08001083 if (root->number_of_cgroups > 1)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001084 return -EBUSY;
1085
1086 /* Process each subsystem */
1087 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1088 struct cgroup_subsys *ss = subsys[i];
1089 unsigned long bit = 1UL << i;
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001090 if (bit & added_mask) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001091 /* We're binding this subsystem to this hierarchy */
Ben Blumaae8aab2010-03-10 15:22:07 -08001092 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001093 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001094 BUG_ON(!dummytop->subsys[i]);
1095 BUG_ON(dummytop->subsys[i]->cgroup != dummytop);
Paul Menagebd89aab2007-10-18 23:40:44 -07001096 cgrp->subsys[i] = dummytop->subsys[i];
1097 cgrp->subsys[i]->cgroup = cgrp;
Li Zefan33a68ac2009-01-07 18:07:42 -08001098 list_move(&ss->sibling, &root->subsys_list);
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001099 ss->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001100 if (ss->bind)
Li Zefan761b3ef2012-01-31 13:47:36 +08001101 ss->bind(cgrp);
Ben Blumcf5d5942010-03-10 15:22:09 -08001102 /* refcount was already taken, and we're keeping it */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001103 } else if (bit & removed_mask) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001104 /* We're removing this subsystem */
Ben Blumaae8aab2010-03-10 15:22:07 -08001105 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001106 BUG_ON(cgrp->subsys[i] != dummytop->subsys[i]);
1107 BUG_ON(cgrp->subsys[i]->cgroup != cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001108 if (ss->bind)
Li Zefan761b3ef2012-01-31 13:47:36 +08001109 ss->bind(dummytop);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001110 dummytop->subsys[i]->cgroup = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -07001111 cgrp->subsys[i] = NULL;
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001112 subsys[i]->root = &rootnode;
Li Zefan33a68ac2009-01-07 18:07:42 -08001113 list_move(&ss->sibling, &rootnode.subsys_list);
Ben Blumcf5d5942010-03-10 15:22:09 -08001114 /* subsystem is now free - drop reference on module */
1115 module_put(ss->module);
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001116 } else if (bit & final_subsys_mask) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001117 /* Subsystem state should already exist */
Ben Blumaae8aab2010-03-10 15:22:07 -08001118 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001119 BUG_ON(!cgrp->subsys[i]);
Ben Blumcf5d5942010-03-10 15:22:09 -08001120 /*
1121 * a refcount was taken, but we already had one, so
1122 * drop the extra reference.
1123 */
1124 module_put(ss->module);
1125#ifdef CONFIG_MODULE_UNLOAD
1126 BUG_ON(ss->module && !module_refcount(ss->module));
1127#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001128 } else {
1129 /* Subsystem state shouldn't exist */
Paul Menagebd89aab2007-10-18 23:40:44 -07001130 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001131 }
1132 }
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001133 root->subsys_mask = root->actual_subsys_mask = final_subsys_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001134 synchronize_rcu();
1135
1136 return 0;
1137}
1138
Al Viro34c80b12011-12-08 21:32:45 -05001139static int cgroup_show_options(struct seq_file *seq, struct dentry *dentry)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001140{
Al Viro34c80b12011-12-08 21:32:45 -05001141 struct cgroupfs_root *root = dentry->d_sb->s_fs_info;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001142 struct cgroup_subsys *ss;
1143
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001144 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001145 for_each_subsys(root, ss)
1146 seq_printf(seq, ",%s", ss->name);
1147 if (test_bit(ROOT_NOPREFIX, &root->flags))
1148 seq_puts(seq, ",noprefix");
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001149 if (test_bit(ROOT_XATTR, &root->flags))
1150 seq_puts(seq, ",xattr");
Paul Menage81a6a5c2007-10-18 23:39:38 -07001151 if (strlen(root->release_agent_path))
1152 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Daniel Lezcano97978e62010-10-27 15:33:35 -07001153 if (clone_children(&root->top_cgroup))
1154 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001155 if (strlen(root->name))
1156 seq_printf(seq, ",name=%s", root->name);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001157 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001158 return 0;
1159}
1160
1161struct cgroup_sb_opts {
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001162 unsigned long subsys_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001163 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001164 char *release_agent;
Daniel Lezcano97978e62010-10-27 15:33:35 -07001165 bool clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001166 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001167 /* User explicitly requested empty subsystem */
1168 bool none;
Paul Menagec6d57f32009-09-23 15:56:19 -07001169
1170 struct cgroupfs_root *new_root;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001171
Paul Menageddbcc7e2007-10-18 23:39:30 -07001172};
1173
Ben Blumaae8aab2010-03-10 15:22:07 -08001174/*
1175 * Convert a hierarchy specifier into a bitmask of subsystems and flags. Call
Ben Blumcf5d5942010-03-10 15:22:09 -08001176 * with cgroup_mutex held to protect the subsys[] array. This function takes
1177 * refcounts on subsystems to be used, unless it returns error, in which case
1178 * no refcounts are taken.
Ben Blumaae8aab2010-03-10 15:22:07 -08001179 */
Ben Blumcf5d5942010-03-10 15:22:09 -08001180static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001181{
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001182 char *token, *o = data;
1183 bool all_ss = false, one_ss = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001184 unsigned long mask = (unsigned long)-1;
Ben Blumcf5d5942010-03-10 15:22:09 -08001185 int i;
1186 bool module_pin_failed = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001187
Ben Blumaae8aab2010-03-10 15:22:07 -08001188 BUG_ON(!mutex_is_locked(&cgroup_mutex));
1189
Li Zefanf9ab5b52009-06-17 16:26:33 -07001190#ifdef CONFIG_CPUSETS
1191 mask = ~(1UL << cpuset_subsys_id);
1192#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001193
Paul Menagec6d57f32009-09-23 15:56:19 -07001194 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001195
1196 while ((token = strsep(&o, ",")) != NULL) {
1197 if (!*token)
1198 return -EINVAL;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001199 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001200 /* Explicitly have no subsystems */
1201 opts->none = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001202 continue;
1203 }
1204 if (!strcmp(token, "all")) {
1205 /* Mutually exclusive option 'all' + subsystem name */
1206 if (one_ss)
1207 return -EINVAL;
1208 all_ss = true;
1209 continue;
1210 }
1211 if (!strcmp(token, "noprefix")) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001212 set_bit(ROOT_NOPREFIX, &opts->flags);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001213 continue;
1214 }
1215 if (!strcmp(token, "clone_children")) {
Daniel Lezcano97978e62010-10-27 15:33:35 -07001216 opts->clone_children = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001217 continue;
1218 }
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001219 if (!strcmp(token, "xattr")) {
1220 set_bit(ROOT_XATTR, &opts->flags);
1221 continue;
1222 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001223 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001224 /* Specifying two release agents is forbidden */
1225 if (opts->release_agent)
1226 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001227 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001228 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001229 if (!opts->release_agent)
1230 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001231 continue;
1232 }
1233 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001234 const char *name = token + 5;
1235 /* Can't specify an empty name */
1236 if (!strlen(name))
1237 return -EINVAL;
1238 /* Must match [\w.-]+ */
1239 for (i = 0; i < strlen(name); i++) {
1240 char c = name[i];
1241 if (isalnum(c))
1242 continue;
1243 if ((c == '.') || (c == '-') || (c == '_'))
1244 continue;
1245 return -EINVAL;
1246 }
1247 /* Specifying two names is forbidden */
1248 if (opts->name)
1249 return -EINVAL;
1250 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001251 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001252 GFP_KERNEL);
1253 if (!opts->name)
1254 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001255
1256 continue;
1257 }
1258
1259 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1260 struct cgroup_subsys *ss = subsys[i];
1261 if (ss == NULL)
1262 continue;
1263 if (strcmp(token, ss->name))
1264 continue;
1265 if (ss->disabled)
1266 continue;
1267
1268 /* Mutually exclusive option 'all' + subsystem name */
1269 if (all_ss)
1270 return -EINVAL;
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001271 set_bit(i, &opts->subsys_mask);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001272 one_ss = true;
1273
1274 break;
1275 }
1276 if (i == CGROUP_SUBSYS_COUNT)
1277 return -ENOENT;
1278 }
1279
1280 /*
1281 * If the 'all' option was specified select all the subsystems,
Li Zefan0d19ea82011-12-27 14:25:55 +08001282 * otherwise if 'none', 'name=' and a subsystem name options
1283 * were not specified, let's default to 'all'
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001284 */
Li Zefan0d19ea82011-12-27 14:25:55 +08001285 if (all_ss || (!one_ss && !opts->none && !opts->name)) {
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001286 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1287 struct cgroup_subsys *ss = subsys[i];
1288 if (ss == NULL)
1289 continue;
1290 if (ss->disabled)
1291 continue;
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001292 set_bit(i, &opts->subsys_mask);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001293 }
1294 }
1295
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001296 /* Consistency checks */
1297
Li Zefanf9ab5b52009-06-17 16:26:33 -07001298 /*
1299 * Option noprefix was introduced just for backward compatibility
1300 * with the old cpuset, so we allow noprefix only if mounting just
1301 * the cpuset subsystem.
1302 */
1303 if (test_bit(ROOT_NOPREFIX, &opts->flags) &&
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001304 (opts->subsys_mask & mask))
Li Zefanf9ab5b52009-06-17 16:26:33 -07001305 return -EINVAL;
1306
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001307
1308 /* Can't specify "none" and some subsystems */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001309 if (opts->subsys_mask && opts->none)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001310 return -EINVAL;
1311
1312 /*
1313 * We either have to specify by name or by subsystems. (So all
1314 * empty hierarchies must have a name).
1315 */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001316 if (!opts->subsys_mask && !opts->name)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001317 return -EINVAL;
1318
Ben Blumcf5d5942010-03-10 15:22:09 -08001319 /*
1320 * Grab references on all the modules we'll need, so the subsystems
1321 * don't dance around before rebind_subsystems attaches them. This may
1322 * take duplicate reference counts on a subsystem that's already used,
1323 * but rebind_subsystems handles this case.
1324 */
Daniel Wagnerbe45c902012-09-13 09:50:55 +02001325 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Ben Blumcf5d5942010-03-10 15:22:09 -08001326 unsigned long bit = 1UL << i;
1327
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001328 if (!(bit & opts->subsys_mask))
Ben Blumcf5d5942010-03-10 15:22:09 -08001329 continue;
1330 if (!try_module_get(subsys[i]->module)) {
1331 module_pin_failed = true;
1332 break;
1333 }
1334 }
1335 if (module_pin_failed) {
1336 /*
1337 * oops, one of the modules was going away. this means that we
1338 * raced with a module_delete call, and to the user this is
1339 * essentially a "subsystem doesn't exist" case.
1340 */
Daniel Wagnerbe45c902012-09-13 09:50:55 +02001341 for (i--; i >= 0; i--) {
Ben Blumcf5d5942010-03-10 15:22:09 -08001342 /* drop refcounts only on the ones we took */
1343 unsigned long bit = 1UL << i;
1344
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001345 if (!(bit & opts->subsys_mask))
Ben Blumcf5d5942010-03-10 15:22:09 -08001346 continue;
1347 module_put(subsys[i]->module);
1348 }
1349 return -ENOENT;
1350 }
1351
Paul Menageddbcc7e2007-10-18 23:39:30 -07001352 return 0;
1353}
1354
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001355static void drop_parsed_module_refcounts(unsigned long subsys_mask)
Ben Blumcf5d5942010-03-10 15:22:09 -08001356{
1357 int i;
Daniel Wagnerbe45c902012-09-13 09:50:55 +02001358 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Ben Blumcf5d5942010-03-10 15:22:09 -08001359 unsigned long bit = 1UL << i;
1360
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001361 if (!(bit & subsys_mask))
Ben Blumcf5d5942010-03-10 15:22:09 -08001362 continue;
1363 module_put(subsys[i]->module);
1364 }
1365}
1366
Paul Menageddbcc7e2007-10-18 23:39:30 -07001367static int cgroup_remount(struct super_block *sb, int *flags, char *data)
1368{
1369 int ret = 0;
1370 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001371 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001372 struct cgroup_sb_opts opts;
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001373 unsigned long added_mask, removed_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001374
Paul Menagebd89aab2007-10-18 23:40:44 -07001375 mutex_lock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001376 mutex_lock(&cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001377 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001378
1379 /* See what subsystems are wanted */
1380 ret = parse_cgroupfs_options(data, &opts);
1381 if (ret)
1382 goto out_unlock;
1383
Tejun Heo8b5a5a92012-04-01 12:09:54 -07001384 /* See feature-removal-schedule.txt */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001385 if (opts.subsys_mask != root->actual_subsys_mask || opts.release_agent)
Tejun Heo8b5a5a92012-04-01 12:09:54 -07001386 pr_warning("cgroup: option changes via remount are deprecated (pid=%d comm=%s)\n",
1387 task_tgid_nr(current), current->comm);
1388
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001389 added_mask = opts.subsys_mask & ~root->subsys_mask;
1390 removed_mask = root->subsys_mask & ~opts.subsys_mask;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001391
Ben Blumcf5d5942010-03-10 15:22:09 -08001392 /* Don't allow flags or name to change at remount */
1393 if (opts.flags != root->flags ||
1394 (opts.name && strcmp(opts.name, root->name))) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001395 ret = -EINVAL;
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001396 drop_parsed_module_refcounts(opts.subsys_mask);
Paul Menagec6d57f32009-09-23 15:56:19 -07001397 goto out_unlock;
1398 }
1399
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001400 ret = rebind_subsystems(root, opts.subsys_mask);
Ben Blumcf5d5942010-03-10 15:22:09 -08001401 if (ret) {
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001402 drop_parsed_module_refcounts(opts.subsys_mask);
Li Zefan0670e082009-04-02 16:57:30 -07001403 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001404 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001405
Tejun Heoff4c8d52012-04-01 12:09:54 -07001406 /* clear out any existing files and repopulate subsystem files */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001407 cgroup_clear_directory(cgrp->dentry, false, removed_mask);
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001408 /* re-populate subsystem files */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001409 cgroup_populate_dir(cgrp, false, added_mask);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001410
Paul Menage81a6a5c2007-10-18 23:39:38 -07001411 if (opts.release_agent)
1412 strcpy(root->release_agent_path, opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001413 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001414 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001415 kfree(opts.name);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001416 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001417 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07001418 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001419 return ret;
1420}
1421
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001422static const struct super_operations cgroup_ops = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001423 .statfs = simple_statfs,
1424 .drop_inode = generic_delete_inode,
1425 .show_options = cgroup_show_options,
1426 .remount_fs = cgroup_remount,
1427};
1428
Paul Menagecc31edc2008-10-18 20:28:04 -07001429static void init_cgroup_housekeeping(struct cgroup *cgrp)
1430{
1431 INIT_LIST_HEAD(&cgrp->sibling);
1432 INIT_LIST_HEAD(&cgrp->children);
Tejun Heo05ef1d72012-04-01 12:09:56 -07001433 INIT_LIST_HEAD(&cgrp->files);
Paul Menagecc31edc2008-10-18 20:28:04 -07001434 INIT_LIST_HEAD(&cgrp->css_sets);
1435 INIT_LIST_HEAD(&cgrp->release_list);
Ben Blum72a8cb32009-09-23 15:56:27 -07001436 INIT_LIST_HEAD(&cgrp->pidlists);
1437 mutex_init(&cgrp->pidlist_mutex);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08001438 INIT_LIST_HEAD(&cgrp->event_list);
1439 spin_lock_init(&cgrp->event_list_lock);
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001440 simple_xattrs_init(&cgrp->xattrs);
Paul Menagecc31edc2008-10-18 20:28:04 -07001441}
Paul Menagec6d57f32009-09-23 15:56:19 -07001442
Paul Menageddbcc7e2007-10-18 23:39:30 -07001443static void init_cgroup_root(struct cgroupfs_root *root)
1444{
Paul Menagebd89aab2007-10-18 23:40:44 -07001445 struct cgroup *cgrp = &root->top_cgroup;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001446
Paul Menageddbcc7e2007-10-18 23:39:30 -07001447 INIT_LIST_HEAD(&root->subsys_list);
1448 INIT_LIST_HEAD(&root->root_list);
Tejun Heob0ca5a82012-04-01 12:09:54 -07001449 INIT_LIST_HEAD(&root->allcg_list);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001450 root->number_of_cgroups = 1;
Paul Menagebd89aab2007-10-18 23:40:44 -07001451 cgrp->root = root;
1452 cgrp->top_cgroup = cgrp;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001453 list_add_tail(&cgrp->allcg_node, &root->allcg_list);
Paul Menagecc31edc2008-10-18 20:28:04 -07001454 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001455}
1456
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001457static bool init_root_id(struct cgroupfs_root *root)
1458{
1459 int ret = 0;
1460
1461 do {
1462 if (!ida_pre_get(&hierarchy_ida, GFP_KERNEL))
1463 return false;
1464 spin_lock(&hierarchy_id_lock);
1465 /* Try to allocate the next unused ID */
1466 ret = ida_get_new_above(&hierarchy_ida, next_hierarchy_id,
1467 &root->hierarchy_id);
1468 if (ret == -ENOSPC)
1469 /* Try again starting from 0 */
1470 ret = ida_get_new(&hierarchy_ida, &root->hierarchy_id);
1471 if (!ret) {
1472 next_hierarchy_id = root->hierarchy_id + 1;
1473 } else if (ret != -EAGAIN) {
1474 /* Can only get here if the 31-bit IDR is full ... */
1475 BUG_ON(ret);
1476 }
1477 spin_unlock(&hierarchy_id_lock);
1478 } while (ret);
1479 return true;
1480}
1481
Paul Menageddbcc7e2007-10-18 23:39:30 -07001482static int cgroup_test_super(struct super_block *sb, void *data)
1483{
Paul Menagec6d57f32009-09-23 15:56:19 -07001484 struct cgroup_sb_opts *opts = data;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001485 struct cgroupfs_root *root = sb->s_fs_info;
1486
Paul Menagec6d57f32009-09-23 15:56:19 -07001487 /* If we asked for a name then it must match */
1488 if (opts->name && strcmp(opts->name, root->name))
1489 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001490
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001491 /*
1492 * If we asked for subsystems (or explicitly for no
1493 * subsystems) then they must match
1494 */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001495 if ((opts->subsys_mask || opts->none)
1496 && (opts->subsys_mask != root->subsys_mask))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001497 return 0;
1498
1499 return 1;
1500}
1501
Paul Menagec6d57f32009-09-23 15:56:19 -07001502static struct cgroupfs_root *cgroup_root_from_opts(struct cgroup_sb_opts *opts)
1503{
1504 struct cgroupfs_root *root;
1505
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001506 if (!opts->subsys_mask && !opts->none)
Paul Menagec6d57f32009-09-23 15:56:19 -07001507 return NULL;
1508
1509 root = kzalloc(sizeof(*root), GFP_KERNEL);
1510 if (!root)
1511 return ERR_PTR(-ENOMEM);
1512
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001513 if (!init_root_id(root)) {
1514 kfree(root);
1515 return ERR_PTR(-ENOMEM);
1516 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001517 init_cgroup_root(root);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001518
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001519 root->subsys_mask = opts->subsys_mask;
Paul Menagec6d57f32009-09-23 15:56:19 -07001520 root->flags = opts->flags;
1521 if (opts->release_agent)
1522 strcpy(root->release_agent_path, opts->release_agent);
1523 if (opts->name)
1524 strcpy(root->name, opts->name);
Daniel Lezcano97978e62010-10-27 15:33:35 -07001525 if (opts->clone_children)
1526 set_bit(CGRP_CLONE_CHILDREN, &root->top_cgroup.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001527 return root;
1528}
1529
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001530static void cgroup_drop_root(struct cgroupfs_root *root)
1531{
1532 if (!root)
1533 return;
1534
1535 BUG_ON(!root->hierarchy_id);
1536 spin_lock(&hierarchy_id_lock);
1537 ida_remove(&hierarchy_ida, root->hierarchy_id);
1538 spin_unlock(&hierarchy_id_lock);
1539 kfree(root);
1540}
1541
Paul Menageddbcc7e2007-10-18 23:39:30 -07001542static int cgroup_set_super(struct super_block *sb, void *data)
1543{
1544 int ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001545 struct cgroup_sb_opts *opts = data;
1546
1547 /* If we don't have a new root, we can't set up a new sb */
1548 if (!opts->new_root)
1549 return -EINVAL;
1550
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001551 BUG_ON(!opts->subsys_mask && !opts->none);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001552
1553 ret = set_anon_super(sb, NULL);
1554 if (ret)
1555 return ret;
1556
Paul Menagec6d57f32009-09-23 15:56:19 -07001557 sb->s_fs_info = opts->new_root;
1558 opts->new_root->sb = sb;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001559
1560 sb->s_blocksize = PAGE_CACHE_SIZE;
1561 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
1562 sb->s_magic = CGROUP_SUPER_MAGIC;
1563 sb->s_op = &cgroup_ops;
1564
1565 return 0;
1566}
1567
1568static int cgroup_get_rootdir(struct super_block *sb)
1569{
Al Viro0df6a632010-12-21 13:29:29 -05001570 static const struct dentry_operations cgroup_dops = {
1571 .d_iput = cgroup_diput,
Al Viroc72a04e2011-01-14 05:31:45 +00001572 .d_delete = cgroup_delete,
Al Viro0df6a632010-12-21 13:29:29 -05001573 };
1574
Paul Menageddbcc7e2007-10-18 23:39:30 -07001575 struct inode *inode =
1576 cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001577
1578 if (!inode)
1579 return -ENOMEM;
1580
Paul Menageddbcc7e2007-10-18 23:39:30 -07001581 inode->i_fop = &simple_dir_operations;
1582 inode->i_op = &cgroup_dir_inode_operations;
1583 /* directories start off with i_nlink == 2 (for "." entry) */
1584 inc_nlink(inode);
Al Viro48fde702012-01-08 22:15:13 -05001585 sb->s_root = d_make_root(inode);
1586 if (!sb->s_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001587 return -ENOMEM;
Al Viro0df6a632010-12-21 13:29:29 -05001588 /* for everything else we want ->d_op set */
1589 sb->s_d_op = &cgroup_dops;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001590 return 0;
1591}
1592
Al Virof7e83572010-07-26 13:23:11 +04001593static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001594 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001595 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001596{
1597 struct cgroup_sb_opts opts;
Paul Menagec6d57f32009-09-23 15:56:19 -07001598 struct cgroupfs_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001599 int ret = 0;
1600 struct super_block *sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001601 struct cgroupfs_root *new_root;
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001602 struct inode *inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001603
1604 /* First find the desired set of subsystems */
Ben Blumaae8aab2010-03-10 15:22:07 -08001605 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001606 ret = parse_cgroupfs_options(data, &opts);
Ben Blumaae8aab2010-03-10 15:22:07 -08001607 mutex_unlock(&cgroup_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001608 if (ret)
1609 goto out_err;
1610
1611 /*
1612 * Allocate a new cgroup root. We may not need it if we're
1613 * reusing an existing hierarchy.
1614 */
1615 new_root = cgroup_root_from_opts(&opts);
1616 if (IS_ERR(new_root)) {
1617 ret = PTR_ERR(new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001618 goto drop_modules;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001619 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001620 opts.new_root = new_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001621
Paul Menagec6d57f32009-09-23 15:56:19 -07001622 /* Locate an existing or new sb for this hierarchy */
David Howells9249e172012-06-25 12:55:37 +01001623 sb = sget(fs_type, cgroup_test_super, cgroup_set_super, 0, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001624 if (IS_ERR(sb)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001625 ret = PTR_ERR(sb);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001626 cgroup_drop_root(opts.new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001627 goto drop_modules;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001628 }
1629
Paul Menagec6d57f32009-09-23 15:56:19 -07001630 root = sb->s_fs_info;
1631 BUG_ON(!root);
1632 if (root == opts.new_root) {
1633 /* We used the new root structure, so this is a new hierarchy */
1634 struct list_head tmp_cg_links;
Li Zefanc12f65d2009-01-07 18:07:42 -08001635 struct cgroup *root_cgrp = &root->top_cgroup;
Paul Menagec6d57f32009-09-23 15:56:19 -07001636 struct cgroupfs_root *existing_root;
eparis@redhat2ce97382011-06-02 21:20:51 +10001637 const struct cred *cred;
Li Zefan28fd5df2008-04-29 01:00:13 -07001638 int i;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001639
1640 BUG_ON(sb->s_root != NULL);
1641
1642 ret = cgroup_get_rootdir(sb);
1643 if (ret)
1644 goto drop_new_super;
Paul Menage817929e2007-10-18 23:39:36 -07001645 inode = sb->s_root->d_inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001646
Paul Menage817929e2007-10-18 23:39:36 -07001647 mutex_lock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001648 mutex_lock(&cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001649 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001650
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001651 /* Check for name clashes with existing mounts */
1652 ret = -EBUSY;
1653 if (strlen(root->name))
1654 for_each_active_root(existing_root)
1655 if (!strcmp(existing_root->name, root->name))
1656 goto unlock_drop;
Paul Menagec6d57f32009-09-23 15:56:19 -07001657
Paul Menage817929e2007-10-18 23:39:36 -07001658 /*
1659 * We're accessing css_set_count without locking
1660 * css_set_lock here, but that's OK - it can only be
1661 * increased by someone holding cgroup_lock, and
1662 * that's us. The worst that can happen is that we
1663 * have some link structures left over
1664 */
1665 ret = allocate_cg_links(css_set_count, &tmp_cg_links);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001666 if (ret)
1667 goto unlock_drop;
Paul Menage817929e2007-10-18 23:39:36 -07001668
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001669 ret = rebind_subsystems(root, root->subsys_mask);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001670 if (ret == -EBUSY) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001671 free_cg_links(&tmp_cg_links);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001672 goto unlock_drop;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001673 }
Ben Blumcf5d5942010-03-10 15:22:09 -08001674 /*
1675 * There must be no failure case after here, since rebinding
1676 * takes care of subsystems' refcounts, which are explicitly
1677 * dropped in the failure exit path.
1678 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001679
1680 /* EBUSY should be the only error here */
1681 BUG_ON(ret);
1682
1683 list_add(&root->root_list, &roots);
Paul Menage817929e2007-10-18 23:39:36 -07001684 root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001685
Li Zefanc12f65d2009-01-07 18:07:42 -08001686 sb->s_root->d_fsdata = root_cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001687 root->top_cgroup.dentry = sb->s_root;
1688
Paul Menage817929e2007-10-18 23:39:36 -07001689 /* Link the top cgroup in this hierarchy into all
1690 * the css_set objects */
1691 write_lock(&css_set_lock);
Li Zefan28fd5df2008-04-29 01:00:13 -07001692 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
1693 struct hlist_head *hhead = &css_set_table[i];
1694 struct hlist_node *node;
Paul Menage817929e2007-10-18 23:39:36 -07001695 struct css_set *cg;
Li Zefan28fd5df2008-04-29 01:00:13 -07001696
Li Zefanc12f65d2009-01-07 18:07:42 -08001697 hlist_for_each_entry(cg, node, hhead, hlist)
1698 link_css_set(&tmp_cg_links, cg, root_cgrp);
Li Zefan28fd5df2008-04-29 01:00:13 -07001699 }
Paul Menage817929e2007-10-18 23:39:36 -07001700 write_unlock(&css_set_lock);
1701
1702 free_cg_links(&tmp_cg_links);
1703
Li Zefanc12f65d2009-01-07 18:07:42 -08001704 BUG_ON(!list_empty(&root_cgrp->sibling));
1705 BUG_ON(!list_empty(&root_cgrp->children));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001706 BUG_ON(root->number_of_cgroups != 1);
1707
eparis@redhat2ce97382011-06-02 21:20:51 +10001708 cred = override_creds(&init_cred);
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001709 cgroup_populate_dir(root_cgrp, true, root->subsys_mask);
eparis@redhat2ce97382011-06-02 21:20:51 +10001710 revert_creds(cred);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001711 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001712 mutex_unlock(&cgroup_mutex);
Xiaotian Feng34f77a92009-09-23 15:56:18 -07001713 mutex_unlock(&inode->i_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001714 } else {
1715 /*
1716 * We re-used an existing hierarchy - the new root (if
1717 * any) is not needed
1718 */
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001719 cgroup_drop_root(opts.new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001720 /* no subsys rebinding, so refcounts don't change */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001721 drop_parsed_module_refcounts(opts.subsys_mask);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001722 }
1723
Paul Menagec6d57f32009-09-23 15:56:19 -07001724 kfree(opts.release_agent);
1725 kfree(opts.name);
Al Virof7e83572010-07-26 13:23:11 +04001726 return dget(sb->s_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001727
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001728 unlock_drop:
1729 mutex_unlock(&cgroup_root_mutex);
1730 mutex_unlock(&cgroup_mutex);
1731 mutex_unlock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001732 drop_new_super:
Al Viro6f5bbff2009-05-06 01:34:22 -04001733 deactivate_locked_super(sb);
Ben Blumcf5d5942010-03-10 15:22:09 -08001734 drop_modules:
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001735 drop_parsed_module_refcounts(opts.subsys_mask);
Paul Menagec6d57f32009-09-23 15:56:19 -07001736 out_err:
1737 kfree(opts.release_agent);
1738 kfree(opts.name);
Al Virof7e83572010-07-26 13:23:11 +04001739 return ERR_PTR(ret);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001740}
1741
1742static void cgroup_kill_sb(struct super_block *sb) {
1743 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001744 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001745 int ret;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001746 struct cg_cgroup_link *link;
1747 struct cg_cgroup_link *saved_link;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001748
1749 BUG_ON(!root);
1750
1751 BUG_ON(root->number_of_cgroups != 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001752 BUG_ON(!list_empty(&cgrp->children));
1753 BUG_ON(!list_empty(&cgrp->sibling));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001754
1755 mutex_lock(&cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001756 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001757
1758 /* Rebind all subsystems back to the default hierarchy */
1759 ret = rebind_subsystems(root, 0);
1760 /* Shouldn't be able to fail ... */
1761 BUG_ON(ret);
1762
Paul Menage817929e2007-10-18 23:39:36 -07001763 /*
1764 * Release all the links from css_sets to this hierarchy's
1765 * root cgroup
1766 */
1767 write_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001768
1769 list_for_each_entry_safe(link, saved_link, &cgrp->css_sets,
1770 cgrp_link_list) {
Paul Menage817929e2007-10-18 23:39:36 -07001771 list_del(&link->cg_link_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07001772 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001773 kfree(link);
1774 }
1775 write_unlock(&css_set_lock);
1776
Paul Menage839ec542009-01-29 14:25:22 -08001777 if (!list_empty(&root->root_list)) {
1778 list_del(&root->root_list);
1779 root_count--;
1780 }
Li Zefane5f6a862009-01-07 18:07:41 -08001781
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001782 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001783 mutex_unlock(&cgroup_mutex);
1784
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001785 simple_xattrs_free(&cgrp->xattrs);
1786
Paul Menageddbcc7e2007-10-18 23:39:30 -07001787 kill_litter_super(sb);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001788 cgroup_drop_root(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001789}
1790
1791static struct file_system_type cgroup_fs_type = {
1792 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001793 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001794 .kill_sb = cgroup_kill_sb,
1795};
1796
Greg KH676db4a2010-08-05 13:53:35 -07001797static struct kobject *cgroup_kobj;
1798
Li Zefana043e3b2008-02-23 15:24:09 -08001799/**
1800 * cgroup_path - generate the path of a cgroup
1801 * @cgrp: the cgroup in question
1802 * @buf: the buffer to write the path into
1803 * @buflen: the length of the buffer
1804 *
Paul Menagea47295e2009-01-07 18:07:44 -08001805 * Called with cgroup_mutex held or else with an RCU-protected cgroup
1806 * reference. Writes path of cgroup into buf. Returns 0 on success,
1807 * -errno on error.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001808 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001809int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001810{
1811 char *start;
Li Zefan9a9686b2010-04-22 17:29:24 +08001812 struct dentry *dentry = rcu_dereference_check(cgrp->dentry,
Li Zefan9a9686b2010-04-22 17:29:24 +08001813 cgroup_lock_is_held());
Paul Menageddbcc7e2007-10-18 23:39:30 -07001814
Paul Menagea47295e2009-01-07 18:07:44 -08001815 if (!dentry || cgrp == dummytop) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001816 /*
1817 * Inactive subsystems have no dentry for their root
1818 * cgroup
1819 */
1820 strcpy(buf, "/");
1821 return 0;
1822 }
1823
1824 start = buf + buflen;
1825
1826 *--start = '\0';
1827 for (;;) {
Paul Menagea47295e2009-01-07 18:07:44 -08001828 int len = dentry->d_name.len;
Li Zefan9a9686b2010-04-22 17:29:24 +08001829
Paul Menageddbcc7e2007-10-18 23:39:30 -07001830 if ((start -= len) < buf)
1831 return -ENAMETOOLONG;
Li Zefan9a9686b2010-04-22 17:29:24 +08001832 memcpy(start, dentry->d_name.name, len);
Paul Menagebd89aab2007-10-18 23:40:44 -07001833 cgrp = cgrp->parent;
1834 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001835 break;
Li Zefan9a9686b2010-04-22 17:29:24 +08001836
1837 dentry = rcu_dereference_check(cgrp->dentry,
Li Zefan9a9686b2010-04-22 17:29:24 +08001838 cgroup_lock_is_held());
Paul Menagebd89aab2007-10-18 23:40:44 -07001839 if (!cgrp->parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001840 continue;
1841 if (--start < buf)
1842 return -ENAMETOOLONG;
1843 *start = '/';
1844 }
1845 memmove(buf, start, buf + buflen - start);
1846 return 0;
1847}
Ben Blum67523c42010-03-10 15:22:11 -08001848EXPORT_SYMBOL_GPL(cgroup_path);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001849
Ben Blum74a11662011-05-26 16:25:20 -07001850/*
Tejun Heo2f7ee562011-12-12 18:12:21 -08001851 * Control Group taskset
1852 */
Tejun Heo134d3372011-12-12 18:12:21 -08001853struct task_and_cgroup {
1854 struct task_struct *task;
1855 struct cgroup *cgrp;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001856 struct css_set *cg;
Tejun Heo134d3372011-12-12 18:12:21 -08001857};
1858
Tejun Heo2f7ee562011-12-12 18:12:21 -08001859struct cgroup_taskset {
1860 struct task_and_cgroup single;
1861 struct flex_array *tc_array;
1862 int tc_array_len;
1863 int idx;
1864 struct cgroup *cur_cgrp;
1865};
1866
1867/**
1868 * cgroup_taskset_first - reset taskset and return the first task
1869 * @tset: taskset of interest
1870 *
1871 * @tset iteration is initialized and the first task is returned.
1872 */
1873struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
1874{
1875 if (tset->tc_array) {
1876 tset->idx = 0;
1877 return cgroup_taskset_next(tset);
1878 } else {
1879 tset->cur_cgrp = tset->single.cgrp;
1880 return tset->single.task;
1881 }
1882}
1883EXPORT_SYMBOL_GPL(cgroup_taskset_first);
1884
1885/**
1886 * cgroup_taskset_next - iterate to the next task in taskset
1887 * @tset: taskset of interest
1888 *
1889 * Return the next task in @tset. Iteration must have been initialized
1890 * with cgroup_taskset_first().
1891 */
1892struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
1893{
1894 struct task_and_cgroup *tc;
1895
1896 if (!tset->tc_array || tset->idx >= tset->tc_array_len)
1897 return NULL;
1898
1899 tc = flex_array_get(tset->tc_array, tset->idx++);
1900 tset->cur_cgrp = tc->cgrp;
1901 return tc->task;
1902}
1903EXPORT_SYMBOL_GPL(cgroup_taskset_next);
1904
1905/**
1906 * cgroup_taskset_cur_cgroup - return the matching cgroup for the current task
1907 * @tset: taskset of interest
1908 *
1909 * Return the cgroup for the current (last returned) task of @tset. This
1910 * function must be preceded by either cgroup_taskset_first() or
1911 * cgroup_taskset_next().
1912 */
1913struct cgroup *cgroup_taskset_cur_cgroup(struct cgroup_taskset *tset)
1914{
1915 return tset->cur_cgrp;
1916}
1917EXPORT_SYMBOL_GPL(cgroup_taskset_cur_cgroup);
1918
1919/**
1920 * cgroup_taskset_size - return the number of tasks in taskset
1921 * @tset: taskset of interest
1922 */
1923int cgroup_taskset_size(struct cgroup_taskset *tset)
1924{
1925 return tset->tc_array ? tset->tc_array_len : 1;
1926}
1927EXPORT_SYMBOL_GPL(cgroup_taskset_size);
1928
1929
Ben Blum74a11662011-05-26 16:25:20 -07001930/*
1931 * cgroup_task_migrate - move a task from one cgroup to another.
1932 *
1933 * 'guarantee' is set if the caller promises that a new css_set for the task
1934 * will already exist. If not set, this function might sleep, and can fail with
Tejun Heocd3d0952011-12-12 18:12:21 -08001935 * -ENOMEM. Must be called with cgroup_mutex and threadgroup locked.
Ben Blum74a11662011-05-26 16:25:20 -07001936 */
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001937static void cgroup_task_migrate(struct cgroup *cgrp, struct cgroup *oldcgrp,
1938 struct task_struct *tsk, struct css_set *newcg)
Ben Blum74a11662011-05-26 16:25:20 -07001939{
1940 struct css_set *oldcg;
Ben Blum74a11662011-05-26 16:25:20 -07001941
1942 /*
Mandeep Singh Baines026085e2011-12-21 20:18:35 -08001943 * We are synchronized through threadgroup_lock() against PF_EXITING
1944 * setting such that we can't race against cgroup_exit() changing the
1945 * css_set to init_css_set and dropping the old one.
Ben Blum74a11662011-05-26 16:25:20 -07001946 */
Frederic Weisbeckerc84cdf72011-12-21 20:03:18 +01001947 WARN_ON_ONCE(tsk->flags & PF_EXITING);
Ben Blum74a11662011-05-26 16:25:20 -07001948 oldcg = tsk->cgroups;
Ben Blum74a11662011-05-26 16:25:20 -07001949
Ben Blum74a11662011-05-26 16:25:20 -07001950 task_lock(tsk);
Ben Blum74a11662011-05-26 16:25:20 -07001951 rcu_assign_pointer(tsk->cgroups, newcg);
1952 task_unlock(tsk);
1953
1954 /* Update the css_set linked lists if we're using them */
1955 write_lock(&css_set_lock);
1956 if (!list_empty(&tsk->cg_list))
1957 list_move(&tsk->cg_list, &newcg->tasks);
1958 write_unlock(&css_set_lock);
1959
1960 /*
1961 * We just gained a reference on oldcg by taking it from the task. As
1962 * trading it for newcg is protected by cgroup_mutex, we're safe to drop
1963 * it here; it will be freed under RCU.
1964 */
1965 put_css_set(oldcg);
1966
1967 set_bit(CGRP_RELEASABLE, &oldcgrp->flags);
Ben Blum74a11662011-05-26 16:25:20 -07001968}
1969
Li Zefana043e3b2008-02-23 15:24:09 -08001970/**
1971 * cgroup_attach_task - attach task 'tsk' to cgroup 'cgrp'
1972 * @cgrp: the cgroup the task is attaching to
1973 * @tsk: the task to be attached
Paul Menagebbcb81d2007-10-18 23:39:32 -07001974 *
Tejun Heocd3d0952011-12-12 18:12:21 -08001975 * Call with cgroup_mutex and threadgroup locked. May take task_lock of
1976 * @tsk during call.
Paul Menagebbcb81d2007-10-18 23:39:32 -07001977 */
Cliff Wickman956db3c2008-02-07 00:14:43 -08001978int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001979{
Tejun Heo8f121912012-03-29 22:03:33 -07001980 int retval = 0;
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001981 struct cgroup_subsys *ss, *failed_ss = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07001982 struct cgroup *oldcgrp;
Paul Menagebd89aab2007-10-18 23:40:44 -07001983 struct cgroupfs_root *root = cgrp->root;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001984 struct cgroup_taskset tset = { };
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001985 struct css_set *newcg;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001986
Tejun Heocd3d0952011-12-12 18:12:21 -08001987 /* @tsk either already exited or can't exit until the end */
1988 if (tsk->flags & PF_EXITING)
1989 return -ESRCH;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001990
1991 /* Nothing to do if the task is already in that cgroup */
Paul Menage7717f7b2009-09-23 15:56:22 -07001992 oldcgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07001993 if (cgrp == oldcgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001994 return 0;
1995
Tejun Heo2f7ee562011-12-12 18:12:21 -08001996 tset.single.task = tsk;
1997 tset.single.cgrp = oldcgrp;
1998
Paul Menagebbcb81d2007-10-18 23:39:32 -07001999 for_each_subsys(root, ss) {
2000 if (ss->can_attach) {
Li Zefan761b3ef2012-01-31 13:47:36 +08002001 retval = ss->can_attach(cgrp, &tset);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08002002 if (retval) {
2003 /*
2004 * Remember on which subsystem the can_attach()
2005 * failed, so that we only call cancel_attach()
2006 * against the subsystems whose can_attach()
2007 * succeeded. (See below)
2008 */
2009 failed_ss = ss;
2010 goto out;
2011 }
Paul Menagebbcb81d2007-10-18 23:39:32 -07002012 }
2013 }
2014
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002015 newcg = find_css_set(tsk->cgroups, cgrp);
2016 if (!newcg) {
2017 retval = -ENOMEM;
Daisuke Nishimura2468c722010-03-10 15:22:03 -08002018 goto out;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002019 }
2020
2021 cgroup_task_migrate(cgrp, oldcgrp, tsk, newcg);
Paul Menage817929e2007-10-18 23:39:36 -07002022
Paul Menagebbcb81d2007-10-18 23:39:32 -07002023 for_each_subsys(root, ss) {
Paul Jacksone18f6312008-02-07 00:13:44 -08002024 if (ss->attach)
Li Zefan761b3ef2012-01-31 13:47:36 +08002025 ss->attach(cgrp, &tset);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002026 }
Ben Blum74a11662011-05-26 16:25:20 -07002027
Paul Menagebbcb81d2007-10-18 23:39:32 -07002028 synchronize_rcu();
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07002029
2030 /*
2031 * wake up rmdir() waiter. the rmdir should fail since the cgroup
2032 * is no longer empty.
2033 */
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07002034 cgroup_wakeup_rmdir_waiter(cgrp);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08002035out:
2036 if (retval) {
2037 for_each_subsys(root, ss) {
2038 if (ss == failed_ss)
2039 /*
2040 * This subsystem was the one that failed the
2041 * can_attach() check earlier, so we don't need
2042 * to call cancel_attach() against it or any
2043 * remaining subsystems.
2044 */
2045 break;
2046 if (ss->cancel_attach)
Li Zefan761b3ef2012-01-31 13:47:36 +08002047 ss->cancel_attach(cgrp, &tset);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08002048 }
2049 }
2050 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002051}
2052
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02002053/**
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07002054 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
2055 * @from: attach to all cgroups of a given task
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02002056 * @tsk: the task to be attached
2057 */
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07002058int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02002059{
2060 struct cgroupfs_root *root;
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02002061 int retval = 0;
2062
2063 cgroup_lock();
2064 for_each_active_root(root) {
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07002065 struct cgroup *from_cg = task_cgroup_from_root(from, root);
2066
2067 retval = cgroup_attach_task(from_cg, tsk);
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02002068 if (retval)
2069 break;
2070 }
2071 cgroup_unlock();
2072
2073 return retval;
2074}
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07002075EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02002076
Ben Blum74a11662011-05-26 16:25:20 -07002077/**
2078 * cgroup_attach_proc - attach all threads in a threadgroup to a cgroup
2079 * @cgrp: the cgroup to attach to
2080 * @leader: the threadgroup leader task_struct of the group to be attached
2081 *
Tejun Heo257058a2011-12-12 18:12:21 -08002082 * Call holding cgroup_mutex and the group_rwsem of the leader. Will take
2083 * task_lock of each thread in leader's threadgroup individually in turn.
Ben Blum74a11662011-05-26 16:25:20 -07002084 */
Kirill A. Shutemov1c6c3fa2011-12-27 07:46:25 +02002085static int cgroup_attach_proc(struct cgroup *cgrp, struct task_struct *leader)
Ben Blum74a11662011-05-26 16:25:20 -07002086{
2087 int retval, i, group_size;
2088 struct cgroup_subsys *ss, *failed_ss = NULL;
Ben Blum74a11662011-05-26 16:25:20 -07002089 /* guaranteed to be initialized later, but the compiler needs this */
Ben Blum74a11662011-05-26 16:25:20 -07002090 struct cgroupfs_root *root = cgrp->root;
2091 /* threadgroup list cursor and array */
2092 struct task_struct *tsk;
Tejun Heo134d3372011-12-12 18:12:21 -08002093 struct task_and_cgroup *tc;
Ben Blumd8466872011-05-26 16:25:21 -07002094 struct flex_array *group;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002095 struct cgroup_taskset tset = { };
Ben Blum74a11662011-05-26 16:25:20 -07002096
2097 /*
2098 * step 0: in order to do expensive, possibly blocking operations for
2099 * every thread, we cannot iterate the thread group list, since it needs
2100 * rcu or tasklist locked. instead, build an array of all threads in the
Tejun Heo257058a2011-12-12 18:12:21 -08002101 * group - group_rwsem prevents new threads from appearing, and if
2102 * threads exit, this will just be an over-estimate.
Ben Blum74a11662011-05-26 16:25:20 -07002103 */
2104 group_size = get_nr_threads(leader);
Ben Blumd8466872011-05-26 16:25:21 -07002105 /* flex_array supports very large thread-groups better than kmalloc. */
Tejun Heo134d3372011-12-12 18:12:21 -08002106 group = flex_array_alloc(sizeof(*tc), group_size, GFP_KERNEL);
Ben Blum74a11662011-05-26 16:25:20 -07002107 if (!group)
2108 return -ENOMEM;
Ben Blumd8466872011-05-26 16:25:21 -07002109 /* pre-allocate to guarantee space while iterating in rcu read-side. */
2110 retval = flex_array_prealloc(group, 0, group_size - 1, GFP_KERNEL);
2111 if (retval)
2112 goto out_free_group_list;
Ben Blum74a11662011-05-26 16:25:20 -07002113
Ben Blum74a11662011-05-26 16:25:20 -07002114 tsk = leader;
2115 i = 0;
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002116 /*
2117 * Prevent freeing of tasks while we take a snapshot. Tasks that are
2118 * already PF_EXITING could be freed from underneath us unless we
2119 * take an rcu_read_lock.
2120 */
2121 rcu_read_lock();
Ben Blum74a11662011-05-26 16:25:20 -07002122 do {
Tejun Heo134d3372011-12-12 18:12:21 -08002123 struct task_and_cgroup ent;
2124
Tejun Heocd3d0952011-12-12 18:12:21 -08002125 /* @tsk either already exited or can't exit until the end */
2126 if (tsk->flags & PF_EXITING)
2127 continue;
2128
Ben Blum74a11662011-05-26 16:25:20 -07002129 /* as per above, nr_threads may decrease, but not increase. */
2130 BUG_ON(i >= group_size);
Tejun Heo134d3372011-12-12 18:12:21 -08002131 ent.task = tsk;
2132 ent.cgrp = task_cgroup_from_root(tsk, root);
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08002133 /* nothing to do if this task is already in the cgroup */
2134 if (ent.cgrp == cgrp)
2135 continue;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002136 /*
2137 * saying GFP_ATOMIC has no effect here because we did prealloc
2138 * earlier, but it's good form to communicate our expectations.
2139 */
Tejun Heo134d3372011-12-12 18:12:21 -08002140 retval = flex_array_put(group, i, &ent, GFP_ATOMIC);
Ben Blumd8466872011-05-26 16:25:21 -07002141 BUG_ON(retval != 0);
Ben Blum74a11662011-05-26 16:25:20 -07002142 i++;
2143 } while_each_thread(leader, tsk);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002144 rcu_read_unlock();
Ben Blum74a11662011-05-26 16:25:20 -07002145 /* remember the number of threads in the array for later. */
2146 group_size = i;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002147 tset.tc_array = group;
2148 tset.tc_array_len = group_size;
Ben Blum74a11662011-05-26 16:25:20 -07002149
Tejun Heo134d3372011-12-12 18:12:21 -08002150 /* methods shouldn't be called if no task is actually migrating */
2151 retval = 0;
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08002152 if (!group_size)
Mandeep Singh Bainesb07ef772011-12-21 20:18:36 -08002153 goto out_free_group_list;
Tejun Heo134d3372011-12-12 18:12:21 -08002154
Ben Blum74a11662011-05-26 16:25:20 -07002155 /*
2156 * step 1: check that we can legitimately attach to the cgroup.
2157 */
2158 for_each_subsys(root, ss) {
2159 if (ss->can_attach) {
Li Zefan761b3ef2012-01-31 13:47:36 +08002160 retval = ss->can_attach(cgrp, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002161 if (retval) {
2162 failed_ss = ss;
2163 goto out_cancel_attach;
2164 }
2165 }
Ben Blum74a11662011-05-26 16:25:20 -07002166 }
2167
2168 /*
2169 * step 2: make sure css_sets exist for all threads to be migrated.
2170 * we use find_css_set, which allocates a new one if necessary.
2171 */
Ben Blum74a11662011-05-26 16:25:20 -07002172 for (i = 0; i < group_size; i++) {
Tejun Heo134d3372011-12-12 18:12:21 -08002173 tc = flex_array_get(group, i);
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002174 tc->cg = find_css_set(tc->task->cgroups, cgrp);
2175 if (!tc->cg) {
2176 retval = -ENOMEM;
2177 goto out_put_css_set_refs;
Ben Blum74a11662011-05-26 16:25:20 -07002178 }
2179 }
2180
2181 /*
Tejun Heo494c1672011-12-12 18:12:22 -08002182 * step 3: now that we're guaranteed success wrt the css_sets,
2183 * proceed to move all tasks to the new cgroup. There are no
2184 * failure cases after here, so this is the commit point.
Ben Blum74a11662011-05-26 16:25:20 -07002185 */
Ben Blum74a11662011-05-26 16:25:20 -07002186 for (i = 0; i < group_size; i++) {
Tejun Heo134d3372011-12-12 18:12:21 -08002187 tc = flex_array_get(group, i);
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002188 cgroup_task_migrate(cgrp, tc->cgrp, tc->task, tc->cg);
Ben Blum74a11662011-05-26 16:25:20 -07002189 }
2190 /* nothing is sensitive to fork() after this point. */
2191
2192 /*
Tejun Heo494c1672011-12-12 18:12:22 -08002193 * step 4: do subsystem attach callbacks.
Ben Blum74a11662011-05-26 16:25:20 -07002194 */
2195 for_each_subsys(root, ss) {
2196 if (ss->attach)
Li Zefan761b3ef2012-01-31 13:47:36 +08002197 ss->attach(cgrp, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002198 }
2199
2200 /*
2201 * step 5: success! and cleanup
2202 */
2203 synchronize_rcu();
2204 cgroup_wakeup_rmdir_waiter(cgrp);
2205 retval = 0;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002206out_put_css_set_refs:
2207 if (retval) {
2208 for (i = 0; i < group_size; i++) {
2209 tc = flex_array_get(group, i);
2210 if (!tc->cg)
2211 break;
2212 put_css_set(tc->cg);
2213 }
Ben Blum74a11662011-05-26 16:25:20 -07002214 }
2215out_cancel_attach:
Ben Blum74a11662011-05-26 16:25:20 -07002216 if (retval) {
2217 for_each_subsys(root, ss) {
Tejun Heo494c1672011-12-12 18:12:22 -08002218 if (ss == failed_ss)
Ben Blum74a11662011-05-26 16:25:20 -07002219 break;
Ben Blum74a11662011-05-26 16:25:20 -07002220 if (ss->cancel_attach)
Li Zefan761b3ef2012-01-31 13:47:36 +08002221 ss->cancel_attach(cgrp, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002222 }
2223 }
Ben Blum74a11662011-05-26 16:25:20 -07002224out_free_group_list:
Ben Blumd8466872011-05-26 16:25:21 -07002225 flex_array_free(group);
Ben Blum74a11662011-05-26 16:25:20 -07002226 return retval;
2227}
2228
2229/*
2230 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08002231 * function to attach either it or all tasks in its threadgroup. Will lock
2232 * cgroup_mutex and threadgroup; may take task_lock of task.
Ben Blum74a11662011-05-26 16:25:20 -07002233 */
2234static int attach_task_by_pid(struct cgroup *cgrp, u64 pid, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002235{
Paul Menagebbcb81d2007-10-18 23:39:32 -07002236 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11002237 const struct cred *cred = current_cred(), *tcred;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002238 int ret;
2239
Ben Blum74a11662011-05-26 16:25:20 -07002240 if (!cgroup_lock_live_group(cgrp))
2241 return -ENODEV;
2242
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002243retry_find_task:
2244 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002245 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002246 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07002247 if (!tsk) {
Paul Menagebbcb81d2007-10-18 23:39:32 -07002248 rcu_read_unlock();
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002249 ret= -ESRCH;
2250 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002251 }
Ben Blum74a11662011-05-26 16:25:20 -07002252 /*
2253 * even if we're attaching all tasks in the thread group, we
2254 * only need to check permissions on one of them.
2255 */
David Howellsc69e8d92008-11-14 10:39:19 +11002256 tcred = __task_cred(tsk);
Eric W. Biederman14a590c2012-03-12 15:44:39 -07002257 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
2258 !uid_eq(cred->euid, tcred->uid) &&
2259 !uid_eq(cred->euid, tcred->suid)) {
David Howellsc69e8d92008-11-14 10:39:19 +11002260 rcu_read_unlock();
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002261 ret = -EACCES;
2262 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002263 }
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002264 } else
2265 tsk = current;
Tejun Heocd3d0952011-12-12 18:12:21 -08002266
2267 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002268 tsk = tsk->group_leader;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002269
2270 /*
2271 * Workqueue threads may acquire PF_THREAD_BOUND and become
2272 * trapped in a cpuset, or RT worker may be born in a cgroup
2273 * with no rt_runtime allocated. Just say no.
2274 */
2275 if (tsk == kthreadd_task || (tsk->flags & PF_THREAD_BOUND)) {
2276 ret = -EINVAL;
2277 rcu_read_unlock();
2278 goto out_unlock_cgroup;
2279 }
2280
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002281 get_task_struct(tsk);
2282 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08002283
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002284 threadgroup_lock(tsk);
2285 if (threadgroup) {
2286 if (!thread_group_leader(tsk)) {
2287 /*
2288 * a race with de_thread from another thread's exec()
2289 * may strip us of our leadership, if this happens,
2290 * there is no choice but to throw this task away and
2291 * try again; this is
2292 * "double-double-toil-and-trouble-check locking".
2293 */
2294 threadgroup_unlock(tsk);
2295 put_task_struct(tsk);
2296 goto retry_find_task;
2297 }
2298 ret = cgroup_attach_proc(cgrp, tsk);
2299 } else
2300 ret = cgroup_attach_task(cgrp, tsk);
Tejun Heocd3d0952011-12-12 18:12:21 -08002301 threadgroup_unlock(tsk);
2302
Paul Menagebbcb81d2007-10-18 23:39:32 -07002303 put_task_struct(tsk);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002304out_unlock_cgroup:
Ben Blum74a11662011-05-26 16:25:20 -07002305 cgroup_unlock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002306 return ret;
2307}
2308
Paul Menageaf351022008-07-25 01:47:01 -07002309static int cgroup_tasks_write(struct cgroup *cgrp, struct cftype *cft, u64 pid)
2310{
Ben Blum74a11662011-05-26 16:25:20 -07002311 return attach_task_by_pid(cgrp, pid, false);
2312}
2313
2314static int cgroup_procs_write(struct cgroup *cgrp, struct cftype *cft, u64 tgid)
2315{
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002316 return attach_task_by_pid(cgrp, tgid, true);
Paul Menageaf351022008-07-25 01:47:01 -07002317}
2318
Paul Menagee788e062008-07-25 01:46:59 -07002319/**
2320 * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive.
2321 * @cgrp: the cgroup to be checked for liveness
2322 *
Paul Menage84eea842008-07-25 01:47:00 -07002323 * On success, returns true; the lock should be later released with
2324 * cgroup_unlock(). On failure returns false with no lock held.
Paul Menagee788e062008-07-25 01:46:59 -07002325 */
Paul Menage84eea842008-07-25 01:47:00 -07002326bool cgroup_lock_live_group(struct cgroup *cgrp)
Paul Menagee788e062008-07-25 01:46:59 -07002327{
2328 mutex_lock(&cgroup_mutex);
2329 if (cgroup_is_removed(cgrp)) {
2330 mutex_unlock(&cgroup_mutex);
2331 return false;
2332 }
2333 return true;
2334}
Ben Blum67523c42010-03-10 15:22:11 -08002335EXPORT_SYMBOL_GPL(cgroup_lock_live_group);
Paul Menagee788e062008-07-25 01:46:59 -07002336
2337static int cgroup_release_agent_write(struct cgroup *cgrp, struct cftype *cft,
2338 const char *buffer)
2339{
2340 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
Evgeny Kuznetsovf4a25892010-10-27 15:33:37 -07002341 if (strlen(buffer) >= PATH_MAX)
2342 return -EINVAL;
Paul Menagee788e062008-07-25 01:46:59 -07002343 if (!cgroup_lock_live_group(cgrp))
2344 return -ENODEV;
Tejun Heoe25e2cb2011-12-12 18:12:21 -08002345 mutex_lock(&cgroup_root_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07002346 strcpy(cgrp->root->release_agent_path, buffer);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08002347 mutex_unlock(&cgroup_root_mutex);
Paul Menage84eea842008-07-25 01:47:00 -07002348 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07002349 return 0;
2350}
2351
2352static int cgroup_release_agent_show(struct cgroup *cgrp, struct cftype *cft,
2353 struct seq_file *seq)
2354{
2355 if (!cgroup_lock_live_group(cgrp))
2356 return -ENODEV;
2357 seq_puts(seq, cgrp->root->release_agent_path);
2358 seq_putc(seq, '\n');
Paul Menage84eea842008-07-25 01:47:00 -07002359 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07002360 return 0;
2361}
2362
Paul Menage84eea842008-07-25 01:47:00 -07002363/* A buffer size big enough for numbers or short strings */
2364#define CGROUP_LOCAL_BUFFER_SIZE 64
2365
Paul Menagee73d2c62008-04-29 01:00:06 -07002366static ssize_t cgroup_write_X64(struct cgroup *cgrp, struct cftype *cft,
Paul Menagef4c753b2008-04-29 00:59:56 -07002367 struct file *file,
2368 const char __user *userbuf,
2369 size_t nbytes, loff_t *unused_ppos)
Paul Menage355e0c42007-10-18 23:39:33 -07002370{
Paul Menage84eea842008-07-25 01:47:00 -07002371 char buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menage355e0c42007-10-18 23:39:33 -07002372 int retval = 0;
Paul Menage355e0c42007-10-18 23:39:33 -07002373 char *end;
2374
2375 if (!nbytes)
2376 return -EINVAL;
2377 if (nbytes >= sizeof(buffer))
2378 return -E2BIG;
2379 if (copy_from_user(buffer, userbuf, nbytes))
2380 return -EFAULT;
2381
2382 buffer[nbytes] = 0; /* nul-terminate */
Paul Menagee73d2c62008-04-29 01:00:06 -07002383 if (cft->write_u64) {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002384 u64 val = simple_strtoull(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07002385 if (*end)
2386 return -EINVAL;
2387 retval = cft->write_u64(cgrp, cft, val);
2388 } else {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002389 s64 val = simple_strtoll(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07002390 if (*end)
2391 return -EINVAL;
2392 retval = cft->write_s64(cgrp, cft, val);
2393 }
Paul Menage355e0c42007-10-18 23:39:33 -07002394 if (!retval)
2395 retval = nbytes;
2396 return retval;
2397}
2398
Paul Menagedb3b1492008-07-25 01:46:58 -07002399static ssize_t cgroup_write_string(struct cgroup *cgrp, struct cftype *cft,
2400 struct file *file,
2401 const char __user *userbuf,
2402 size_t nbytes, loff_t *unused_ppos)
2403{
Paul Menage84eea842008-07-25 01:47:00 -07002404 char local_buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagedb3b1492008-07-25 01:46:58 -07002405 int retval = 0;
2406 size_t max_bytes = cft->max_write_len;
2407 char *buffer = local_buffer;
2408
2409 if (!max_bytes)
2410 max_bytes = sizeof(local_buffer) - 1;
2411 if (nbytes >= max_bytes)
2412 return -E2BIG;
2413 /* Allocate a dynamic buffer if we need one */
2414 if (nbytes >= sizeof(local_buffer)) {
2415 buffer = kmalloc(nbytes + 1, GFP_KERNEL);
2416 if (buffer == NULL)
2417 return -ENOMEM;
2418 }
Li Zefan5a3eb9f2008-07-29 22:33:18 -07002419 if (nbytes && copy_from_user(buffer, userbuf, nbytes)) {
2420 retval = -EFAULT;
2421 goto out;
2422 }
Paul Menagedb3b1492008-07-25 01:46:58 -07002423
2424 buffer[nbytes] = 0; /* nul-terminate */
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002425 retval = cft->write_string(cgrp, cft, strstrip(buffer));
Paul Menagedb3b1492008-07-25 01:46:58 -07002426 if (!retval)
2427 retval = nbytes;
Li Zefan5a3eb9f2008-07-29 22:33:18 -07002428out:
Paul Menagedb3b1492008-07-25 01:46:58 -07002429 if (buffer != local_buffer)
2430 kfree(buffer);
2431 return retval;
2432}
2433
Paul Menageddbcc7e2007-10-18 23:39:30 -07002434static ssize_t cgroup_file_write(struct file *file, const char __user *buf,
2435 size_t nbytes, loff_t *ppos)
2436{
2437 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07002438 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002439
Li Zefan75139b82009-01-07 18:07:33 -08002440 if (cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07002441 return -ENODEV;
Paul Menage355e0c42007-10-18 23:39:33 -07002442 if (cft->write)
Paul Menagebd89aab2007-10-18 23:40:44 -07002443 return cft->write(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002444 if (cft->write_u64 || cft->write_s64)
2445 return cgroup_write_X64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagedb3b1492008-07-25 01:46:58 -07002446 if (cft->write_string)
2447 return cgroup_write_string(cgrp, cft, file, buf, nbytes, ppos);
Pavel Emelyanovd447ea22008-04-29 01:00:08 -07002448 if (cft->trigger) {
2449 int ret = cft->trigger(cgrp, (unsigned int)cft->private);
2450 return ret ? ret : nbytes;
2451 }
Paul Menage355e0c42007-10-18 23:39:33 -07002452 return -EINVAL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002453}
2454
Paul Menagef4c753b2008-04-29 00:59:56 -07002455static ssize_t cgroup_read_u64(struct cgroup *cgrp, struct cftype *cft,
2456 struct file *file,
2457 char __user *buf, size_t nbytes,
2458 loff_t *ppos)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002459{
Paul Menage84eea842008-07-25 01:47:00 -07002460 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagef4c753b2008-04-29 00:59:56 -07002461 u64 val = cft->read_u64(cgrp, cft);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002462 int len = sprintf(tmp, "%llu\n", (unsigned long long) val);
2463
2464 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2465}
2466
Paul Menagee73d2c62008-04-29 01:00:06 -07002467static ssize_t cgroup_read_s64(struct cgroup *cgrp, struct cftype *cft,
2468 struct file *file,
2469 char __user *buf, size_t nbytes,
2470 loff_t *ppos)
2471{
Paul Menage84eea842008-07-25 01:47:00 -07002472 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagee73d2c62008-04-29 01:00:06 -07002473 s64 val = cft->read_s64(cgrp, cft);
2474 int len = sprintf(tmp, "%lld\n", (long long) val);
2475
2476 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2477}
2478
Paul Menageddbcc7e2007-10-18 23:39:30 -07002479static ssize_t cgroup_file_read(struct file *file, char __user *buf,
2480 size_t nbytes, loff_t *ppos)
2481{
2482 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07002483 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002484
Li Zefan75139b82009-01-07 18:07:33 -08002485 if (cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07002486 return -ENODEV;
2487
2488 if (cft->read)
Paul Menagebd89aab2007-10-18 23:40:44 -07002489 return cft->read(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagef4c753b2008-04-29 00:59:56 -07002490 if (cft->read_u64)
2491 return cgroup_read_u64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002492 if (cft->read_s64)
2493 return cgroup_read_s64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002494 return -EINVAL;
2495}
2496
Paul Menage91796562008-04-29 01:00:01 -07002497/*
2498 * seqfile ops/methods for returning structured data. Currently just
2499 * supports string->u64 maps, but can be extended in future.
2500 */
2501
2502struct cgroup_seqfile_state {
2503 struct cftype *cft;
2504 struct cgroup *cgroup;
2505};
2506
2507static int cgroup_map_add(struct cgroup_map_cb *cb, const char *key, u64 value)
2508{
2509 struct seq_file *sf = cb->state;
2510 return seq_printf(sf, "%s %llu\n", key, (unsigned long long)value);
2511}
2512
2513static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2514{
2515 struct cgroup_seqfile_state *state = m->private;
2516 struct cftype *cft = state->cft;
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002517 if (cft->read_map) {
2518 struct cgroup_map_cb cb = {
2519 .fill = cgroup_map_add,
2520 .state = m,
2521 };
2522 return cft->read_map(state->cgroup, cft, &cb);
2523 }
2524 return cft->read_seq_string(state->cgroup, cft, m);
Paul Menage91796562008-04-29 01:00:01 -07002525}
2526
Adrian Bunk96930a62008-07-25 19:46:21 -07002527static int cgroup_seqfile_release(struct inode *inode, struct file *file)
Paul Menage91796562008-04-29 01:00:01 -07002528{
2529 struct seq_file *seq = file->private_data;
2530 kfree(seq->private);
2531 return single_release(inode, file);
2532}
2533
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002534static const struct file_operations cgroup_seqfile_operations = {
Paul Menage91796562008-04-29 01:00:01 -07002535 .read = seq_read,
Paul Menagee788e062008-07-25 01:46:59 -07002536 .write = cgroup_file_write,
Paul Menage91796562008-04-29 01:00:01 -07002537 .llseek = seq_lseek,
2538 .release = cgroup_seqfile_release,
2539};
2540
Paul Menageddbcc7e2007-10-18 23:39:30 -07002541static int cgroup_file_open(struct inode *inode, struct file *file)
2542{
2543 int err;
2544 struct cftype *cft;
2545
2546 err = generic_file_open(inode, file);
2547 if (err)
2548 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002549 cft = __d_cft(file->f_dentry);
Li Zefan75139b82009-01-07 18:07:33 -08002550
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002551 if (cft->read_map || cft->read_seq_string) {
Paul Menage91796562008-04-29 01:00:01 -07002552 struct cgroup_seqfile_state *state =
2553 kzalloc(sizeof(*state), GFP_USER);
2554 if (!state)
2555 return -ENOMEM;
2556 state->cft = cft;
2557 state->cgroup = __d_cgrp(file->f_dentry->d_parent);
2558 file->f_op = &cgroup_seqfile_operations;
2559 err = single_open(file, cgroup_seqfile_show, state);
2560 if (err < 0)
2561 kfree(state);
2562 } else if (cft->open)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002563 err = cft->open(inode, file);
2564 else
2565 err = 0;
2566
2567 return err;
2568}
2569
2570static int cgroup_file_release(struct inode *inode, struct file *file)
2571{
2572 struct cftype *cft = __d_cft(file->f_dentry);
2573 if (cft->release)
2574 return cft->release(inode, file);
2575 return 0;
2576}
2577
2578/*
2579 * cgroup_rename - Only allow simple rename of directories in place.
2580 */
2581static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry,
2582 struct inode *new_dir, struct dentry *new_dentry)
2583{
2584 if (!S_ISDIR(old_dentry->d_inode->i_mode))
2585 return -ENOTDIR;
2586 if (new_dentry->d_inode)
2587 return -EEXIST;
2588 if (old_dir != new_dir)
2589 return -EIO;
2590 return simple_rename(old_dir, old_dentry, new_dir, new_dentry);
2591}
2592
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002593static struct simple_xattrs *__d_xattrs(struct dentry *dentry)
2594{
2595 if (S_ISDIR(dentry->d_inode->i_mode))
2596 return &__d_cgrp(dentry)->xattrs;
2597 else
2598 return &__d_cft(dentry)->xattrs;
2599}
2600
2601static inline int xattr_enabled(struct dentry *dentry)
2602{
2603 struct cgroupfs_root *root = dentry->d_sb->s_fs_info;
2604 return test_bit(ROOT_XATTR, &root->flags);
2605}
2606
2607static bool is_valid_xattr(const char *name)
2608{
2609 if (!strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN) ||
2610 !strncmp(name, XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN))
2611 return true;
2612 return false;
2613}
2614
2615static int cgroup_setxattr(struct dentry *dentry, const char *name,
2616 const void *val, size_t size, int flags)
2617{
2618 if (!xattr_enabled(dentry))
2619 return -EOPNOTSUPP;
2620 if (!is_valid_xattr(name))
2621 return -EINVAL;
2622 return simple_xattr_set(__d_xattrs(dentry), name, val, size, flags);
2623}
2624
2625static int cgroup_removexattr(struct dentry *dentry, const char *name)
2626{
2627 if (!xattr_enabled(dentry))
2628 return -EOPNOTSUPP;
2629 if (!is_valid_xattr(name))
2630 return -EINVAL;
2631 return simple_xattr_remove(__d_xattrs(dentry), name);
2632}
2633
2634static ssize_t cgroup_getxattr(struct dentry *dentry, const char *name,
2635 void *buf, size_t size)
2636{
2637 if (!xattr_enabled(dentry))
2638 return -EOPNOTSUPP;
2639 if (!is_valid_xattr(name))
2640 return -EINVAL;
2641 return simple_xattr_get(__d_xattrs(dentry), name, buf, size);
2642}
2643
2644static ssize_t cgroup_listxattr(struct dentry *dentry, char *buf, size_t size)
2645{
2646 if (!xattr_enabled(dentry))
2647 return -EOPNOTSUPP;
2648 return simple_xattr_list(__d_xattrs(dentry), buf, size);
2649}
2650
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002651static const struct file_operations cgroup_file_operations = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002652 .read = cgroup_file_read,
2653 .write = cgroup_file_write,
2654 .llseek = generic_file_llseek,
2655 .open = cgroup_file_open,
2656 .release = cgroup_file_release,
2657};
2658
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002659static const struct inode_operations cgroup_file_inode_operations = {
2660 .setxattr = cgroup_setxattr,
2661 .getxattr = cgroup_getxattr,
2662 .listxattr = cgroup_listxattr,
2663 .removexattr = cgroup_removexattr,
2664};
2665
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07002666static const struct inode_operations cgroup_dir_inode_operations = {
Al Viroc72a04e2011-01-14 05:31:45 +00002667 .lookup = cgroup_lookup,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002668 .mkdir = cgroup_mkdir,
2669 .rmdir = cgroup_rmdir,
2670 .rename = cgroup_rename,
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002671 .setxattr = cgroup_setxattr,
2672 .getxattr = cgroup_getxattr,
2673 .listxattr = cgroup_listxattr,
2674 .removexattr = cgroup_removexattr,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002675};
2676
Al Viro00cd8dd2012-06-10 17:13:09 -04002677static struct dentry *cgroup_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
Al Viroc72a04e2011-01-14 05:31:45 +00002678{
2679 if (dentry->d_name.len > NAME_MAX)
2680 return ERR_PTR(-ENAMETOOLONG);
2681 d_add(dentry, NULL);
2682 return NULL;
2683}
2684
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08002685/*
2686 * Check if a file is a control file
2687 */
2688static inline struct cftype *__file_cft(struct file *file)
2689{
2690 if (file->f_dentry->d_inode->i_fop != &cgroup_file_operations)
2691 return ERR_PTR(-EINVAL);
2692 return __d_cft(file->f_dentry);
2693}
2694
Al Viroa5e7ed32011-07-26 01:55:55 -04002695static int cgroup_create_file(struct dentry *dentry, umode_t mode,
Nick Piggin5adcee12011-01-07 17:49:20 +11002696 struct super_block *sb)
2697{
Paul Menageddbcc7e2007-10-18 23:39:30 -07002698 struct inode *inode;
2699
2700 if (!dentry)
2701 return -ENOENT;
2702 if (dentry->d_inode)
2703 return -EEXIST;
2704
2705 inode = cgroup_new_inode(mode, sb);
2706 if (!inode)
2707 return -ENOMEM;
2708
2709 if (S_ISDIR(mode)) {
2710 inode->i_op = &cgroup_dir_inode_operations;
2711 inode->i_fop = &simple_dir_operations;
2712
2713 /* start off with i_nlink == 2 (for "." entry) */
2714 inc_nlink(inode);
2715
2716 /* start with the directory inode held, so that we can
2717 * populate it without racing with another mkdir */
Paul Menage817929e2007-10-18 23:39:36 -07002718 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002719 } else if (S_ISREG(mode)) {
2720 inode->i_size = 0;
2721 inode->i_fop = &cgroup_file_operations;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002722 inode->i_op = &cgroup_file_inode_operations;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002723 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002724 d_instantiate(dentry, inode);
2725 dget(dentry); /* Extra count - pin the dentry in core */
2726 return 0;
2727}
2728
2729/*
Li Zefana043e3b2008-02-23 15:24:09 -08002730 * cgroup_create_dir - create a directory for an object.
2731 * @cgrp: the cgroup we create the directory for. It must have a valid
2732 * ->parent field. And we are going to fill its ->dentry field.
2733 * @dentry: dentry of the new cgroup
2734 * @mode: mode to set on new directory.
Paul Menageddbcc7e2007-10-18 23:39:30 -07002735 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002736static int cgroup_create_dir(struct cgroup *cgrp, struct dentry *dentry,
Al Viroa5e7ed32011-07-26 01:55:55 -04002737 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002738{
2739 struct dentry *parent;
2740 int error = 0;
2741
Paul Menagebd89aab2007-10-18 23:40:44 -07002742 parent = cgrp->parent->dentry;
2743 error = cgroup_create_file(dentry, S_IFDIR | mode, cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002744 if (!error) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002745 dentry->d_fsdata = cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002746 inc_nlink(parent->d_inode);
Paul Menagea47295e2009-01-07 18:07:44 -08002747 rcu_assign_pointer(cgrp->dentry, dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002748 dget(dentry);
2749 }
2750 dput(dentry);
2751
2752 return error;
2753}
2754
Li Zefan099fca32009-04-02 16:57:29 -07002755/**
2756 * cgroup_file_mode - deduce file mode of a control file
2757 * @cft: the control file in question
2758 *
2759 * returns cft->mode if ->mode is not 0
2760 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
2761 * returns S_IRUGO if it has only a read handler
2762 * returns S_IWUSR if it has only a write hander
2763 */
Al Viroa5e7ed32011-07-26 01:55:55 -04002764static umode_t cgroup_file_mode(const struct cftype *cft)
Li Zefan099fca32009-04-02 16:57:29 -07002765{
Al Viroa5e7ed32011-07-26 01:55:55 -04002766 umode_t mode = 0;
Li Zefan099fca32009-04-02 16:57:29 -07002767
2768 if (cft->mode)
2769 return cft->mode;
2770
2771 if (cft->read || cft->read_u64 || cft->read_s64 ||
2772 cft->read_map || cft->read_seq_string)
2773 mode |= S_IRUGO;
2774
2775 if (cft->write || cft->write_u64 || cft->write_s64 ||
2776 cft->write_string || cft->trigger)
2777 mode |= S_IWUSR;
2778
2779 return mode;
2780}
2781
Tejun Heodb0416b2012-04-01 12:09:55 -07002782static int cgroup_add_file(struct cgroup *cgrp, struct cgroup_subsys *subsys,
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002783 struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002784{
Paul Menagebd89aab2007-10-18 23:40:44 -07002785 struct dentry *dir = cgrp->dentry;
Tejun Heo05ef1d72012-04-01 12:09:56 -07002786 struct cgroup *parent = __d_cgrp(dir);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002787 struct dentry *dentry;
Tejun Heo05ef1d72012-04-01 12:09:56 -07002788 struct cfent *cfe;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002789 int error;
Al Viroa5e7ed32011-07-26 01:55:55 -04002790 umode_t mode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002791 char name[MAX_CGROUP_TYPE_NAMELEN + MAX_CFTYPE_NAME + 2] = { 0 };
Tejun Heo8e3f6542012-04-01 12:09:55 -07002792
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002793 simple_xattrs_init(&cft->xattrs);
2794
Tejun Heo8e3f6542012-04-01 12:09:55 -07002795 /* does @cft->flags tell us to skip creation on @cgrp? */
2796 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgrp->parent)
2797 return 0;
2798 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgrp->parent)
2799 return 0;
2800
Paul Menagebd89aab2007-10-18 23:40:44 -07002801 if (subsys && !test_bit(ROOT_NOPREFIX, &cgrp->root->flags)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002802 strcpy(name, subsys->name);
2803 strcat(name, ".");
2804 }
2805 strcat(name, cft->name);
Tejun Heo05ef1d72012-04-01 12:09:56 -07002806
Paul Menageddbcc7e2007-10-18 23:39:30 -07002807 BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex));
Tejun Heo05ef1d72012-04-01 12:09:56 -07002808
2809 cfe = kzalloc(sizeof(*cfe), GFP_KERNEL);
2810 if (!cfe)
2811 return -ENOMEM;
2812
Paul Menageddbcc7e2007-10-18 23:39:30 -07002813 dentry = lookup_one_len(name, dir, strlen(name));
Tejun Heo05ef1d72012-04-01 12:09:56 -07002814 if (IS_ERR(dentry)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002815 error = PTR_ERR(dentry);
Tejun Heo05ef1d72012-04-01 12:09:56 -07002816 goto out;
2817 }
2818
2819 mode = cgroup_file_mode(cft);
2820 error = cgroup_create_file(dentry, mode | S_IFREG, cgrp->root->sb);
2821 if (!error) {
2822 cfe->type = (void *)cft;
2823 cfe->dentry = dentry;
2824 dentry->d_fsdata = cfe;
2825 list_add_tail(&cfe->node, &parent->files);
2826 cfe = NULL;
2827 }
2828 dput(dentry);
2829out:
2830 kfree(cfe);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002831 return error;
2832}
2833
Tejun Heo79578622012-04-01 12:09:56 -07002834static int cgroup_addrm_files(struct cgroup *cgrp, struct cgroup_subsys *subsys,
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002835 struct cftype cfts[], bool is_add)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002836{
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002837 struct cftype *cft;
Tejun Heodb0416b2012-04-01 12:09:55 -07002838 int err, ret = 0;
2839
2840 for (cft = cfts; cft->name[0] != '\0'; cft++) {
Tejun Heo79578622012-04-01 12:09:56 -07002841 if (is_add)
2842 err = cgroup_add_file(cgrp, subsys, cft);
2843 else
2844 err = cgroup_rm_file(cgrp, cft);
Tejun Heodb0416b2012-04-01 12:09:55 -07002845 if (err) {
Tejun Heo79578622012-04-01 12:09:56 -07002846 pr_warning("cgroup_addrm_files: failed to %s %s, err=%d\n",
2847 is_add ? "add" : "remove", cft->name, err);
Tejun Heodb0416b2012-04-01 12:09:55 -07002848 ret = err;
2849 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002850 }
Tejun Heodb0416b2012-04-01 12:09:55 -07002851 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002852}
2853
Tejun Heo8e3f6542012-04-01 12:09:55 -07002854static DEFINE_MUTEX(cgroup_cft_mutex);
2855
2856static void cgroup_cfts_prepare(void)
2857 __acquires(&cgroup_cft_mutex) __acquires(&cgroup_mutex)
2858{
2859 /*
2860 * Thanks to the entanglement with vfs inode locking, we can't walk
2861 * the existing cgroups under cgroup_mutex and create files.
2862 * Instead, we increment reference on all cgroups and build list of
2863 * them using @cgrp->cft_q_node. Grab cgroup_cft_mutex to ensure
2864 * exclusive access to the field.
2865 */
2866 mutex_lock(&cgroup_cft_mutex);
2867 mutex_lock(&cgroup_mutex);
2868}
2869
2870static void cgroup_cfts_commit(struct cgroup_subsys *ss,
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002871 struct cftype *cfts, bool is_add)
Tejun Heo8e3f6542012-04-01 12:09:55 -07002872 __releases(&cgroup_mutex) __releases(&cgroup_cft_mutex)
2873{
2874 LIST_HEAD(pending);
2875 struct cgroup *cgrp, *n;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002876
2877 /* %NULL @cfts indicates abort and don't bother if @ss isn't attached */
2878 if (cfts && ss->root != &rootnode) {
2879 list_for_each_entry(cgrp, &ss->root->allcg_list, allcg_node) {
2880 dget(cgrp->dentry);
2881 list_add_tail(&cgrp->cft_q_node, &pending);
2882 }
2883 }
2884
2885 mutex_unlock(&cgroup_mutex);
2886
2887 /*
2888 * All new cgroups will see @cfts update on @ss->cftsets. Add/rm
2889 * files for all cgroups which were created before.
2890 */
2891 list_for_each_entry_safe(cgrp, n, &pending, cft_q_node) {
2892 struct inode *inode = cgrp->dentry->d_inode;
2893
2894 mutex_lock(&inode->i_mutex);
2895 mutex_lock(&cgroup_mutex);
2896 if (!cgroup_is_removed(cgrp))
Tejun Heo79578622012-04-01 12:09:56 -07002897 cgroup_addrm_files(cgrp, ss, cfts, is_add);
Tejun Heo8e3f6542012-04-01 12:09:55 -07002898 mutex_unlock(&cgroup_mutex);
2899 mutex_unlock(&inode->i_mutex);
2900
2901 list_del_init(&cgrp->cft_q_node);
2902 dput(cgrp->dentry);
2903 }
2904
2905 mutex_unlock(&cgroup_cft_mutex);
2906}
2907
2908/**
2909 * cgroup_add_cftypes - add an array of cftypes to a subsystem
2910 * @ss: target cgroup subsystem
2911 * @cfts: zero-length name terminated array of cftypes
2912 *
2913 * Register @cfts to @ss. Files described by @cfts are created for all
2914 * existing cgroups to which @ss is attached and all future cgroups will
2915 * have them too. This function can be called anytime whether @ss is
2916 * attached or not.
2917 *
2918 * Returns 0 on successful registration, -errno on failure. Note that this
2919 * function currently returns 0 as long as @cfts registration is successful
2920 * even if some file creation attempts on existing cgroups fail.
2921 */
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002922int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo8e3f6542012-04-01 12:09:55 -07002923{
2924 struct cftype_set *set;
2925
2926 set = kzalloc(sizeof(*set), GFP_KERNEL);
2927 if (!set)
2928 return -ENOMEM;
2929
2930 cgroup_cfts_prepare();
2931 set->cfts = cfts;
2932 list_add_tail(&set->node, &ss->cftsets);
Tejun Heo79578622012-04-01 12:09:56 -07002933 cgroup_cfts_commit(ss, cfts, true);
Tejun Heo8e3f6542012-04-01 12:09:55 -07002934
2935 return 0;
2936}
2937EXPORT_SYMBOL_GPL(cgroup_add_cftypes);
2938
Li Zefana043e3b2008-02-23 15:24:09 -08002939/**
Tejun Heo79578622012-04-01 12:09:56 -07002940 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
2941 * @ss: target cgroup subsystem
2942 * @cfts: zero-length name terminated array of cftypes
2943 *
2944 * Unregister @cfts from @ss. Files described by @cfts are removed from
2945 * all existing cgroups to which @ss is attached and all future cgroups
2946 * won't have them either. This function can be called anytime whether @ss
2947 * is attached or not.
2948 *
2949 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
2950 * registered with @ss.
2951 */
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002952int cgroup_rm_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo79578622012-04-01 12:09:56 -07002953{
2954 struct cftype_set *set;
2955
2956 cgroup_cfts_prepare();
2957
2958 list_for_each_entry(set, &ss->cftsets, node) {
2959 if (set->cfts == cfts) {
2960 list_del_init(&set->node);
2961 cgroup_cfts_commit(ss, cfts, false);
2962 return 0;
2963 }
2964 }
2965
2966 cgroup_cfts_commit(ss, NULL, false);
2967 return -ENOENT;
2968}
2969
2970/**
Li Zefana043e3b2008-02-23 15:24:09 -08002971 * cgroup_task_count - count the number of tasks in a cgroup.
2972 * @cgrp: the cgroup in question
2973 *
2974 * Return the number of tasks in the cgroup.
2975 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002976int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002977{
2978 int count = 0;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07002979 struct cg_cgroup_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002980
Paul Menage817929e2007-10-18 23:39:36 -07002981 read_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07002982 list_for_each_entry(link, &cgrp->css_sets, cgrp_link_list) {
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07002983 count += atomic_read(&link->cg->refcount);
Paul Menage817929e2007-10-18 23:39:36 -07002984 }
2985 read_unlock(&css_set_lock);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002986 return count;
2987}
2988
2989/*
Paul Menage817929e2007-10-18 23:39:36 -07002990 * Advance a list_head iterator. The iterator should be positioned at
2991 * the start of a css_set
2992 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002993static void cgroup_advance_iter(struct cgroup *cgrp,
Paul Menage7717f7b2009-09-23 15:56:22 -07002994 struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002995{
2996 struct list_head *l = it->cg_link;
2997 struct cg_cgroup_link *link;
2998 struct css_set *cg;
2999
3000 /* Advance to the next non-empty css_set */
3001 do {
3002 l = l->next;
Paul Menagebd89aab2007-10-18 23:40:44 -07003003 if (l == &cgrp->css_sets) {
Paul Menage817929e2007-10-18 23:39:36 -07003004 it->cg_link = NULL;
3005 return;
3006 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003007 link = list_entry(l, struct cg_cgroup_link, cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07003008 cg = link->cg;
3009 } while (list_empty(&cg->tasks));
3010 it->cg_link = l;
3011 it->task = cg->tasks.next;
3012}
3013
Cliff Wickman31a7df02008-02-07 00:14:42 -08003014/*
3015 * To reduce the fork() overhead for systems that are not actually
3016 * using their cgroups capability, we don't maintain the lists running
3017 * through each css_set to its tasks until we see the list actually
3018 * used - in other words after the first call to cgroup_iter_start().
Cliff Wickman31a7df02008-02-07 00:14:42 -08003019 */
Adrian Bunk3df91fe2008-04-29 00:59:54 -07003020static void cgroup_enable_task_cg_lists(void)
Cliff Wickman31a7df02008-02-07 00:14:42 -08003021{
3022 struct task_struct *p, *g;
3023 write_lock(&css_set_lock);
3024 use_task_css_set_links = 1;
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01003025 /*
3026 * We need tasklist_lock because RCU is not safe against
3027 * while_each_thread(). Besides, a forking task that has passed
3028 * cgroup_post_fork() without seeing use_task_css_set_links = 1
3029 * is not guaranteed to have its child immediately visible in the
3030 * tasklist if we walk through it with RCU.
3031 */
3032 read_lock(&tasklist_lock);
Cliff Wickman31a7df02008-02-07 00:14:42 -08003033 do_each_thread(g, p) {
3034 task_lock(p);
Li Zefan0e043882008-04-17 11:37:15 +08003035 /*
3036 * We should check if the process is exiting, otherwise
3037 * it will race with cgroup_exit() in that the list
3038 * entry won't be deleted though the process has exited.
3039 */
3040 if (!(p->flags & PF_EXITING) && list_empty(&p->cg_list))
Cliff Wickman31a7df02008-02-07 00:14:42 -08003041 list_add(&p->cg_list, &p->cgroups->tasks);
3042 task_unlock(p);
3043 } while_each_thread(g, p);
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01003044 read_unlock(&tasklist_lock);
Cliff Wickman31a7df02008-02-07 00:14:42 -08003045 write_unlock(&css_set_lock);
3046}
3047
Paul Menagebd89aab2007-10-18 23:40:44 -07003048void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it)
Kirill A. Shutemovc6ca5752011-12-27 07:46:26 +02003049 __acquires(css_set_lock)
Paul Menage817929e2007-10-18 23:39:36 -07003050{
3051 /*
3052 * The first time anyone tries to iterate across a cgroup,
3053 * we need to enable the list linking each css_set to its
3054 * tasks, and fix up all existing tasks.
3055 */
Cliff Wickman31a7df02008-02-07 00:14:42 -08003056 if (!use_task_css_set_links)
3057 cgroup_enable_task_cg_lists();
3058
Paul Menage817929e2007-10-18 23:39:36 -07003059 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07003060 it->cg_link = &cgrp->css_sets;
3061 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07003062}
3063
Paul Menagebd89aab2007-10-18 23:40:44 -07003064struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -07003065 struct cgroup_iter *it)
3066{
3067 struct task_struct *res;
3068 struct list_head *l = it->task;
Lai Jiangshan2019f632009-01-07 18:07:36 -08003069 struct cg_cgroup_link *link;
Paul Menage817929e2007-10-18 23:39:36 -07003070
3071 /* If the iterator cg is NULL, we have no tasks */
3072 if (!it->cg_link)
3073 return NULL;
3074 res = list_entry(l, struct task_struct, cg_list);
3075 /* Advance iterator to find next entry */
3076 l = l->next;
Lai Jiangshan2019f632009-01-07 18:07:36 -08003077 link = list_entry(it->cg_link, struct cg_cgroup_link, cgrp_link_list);
3078 if (l == &link->cg->tasks) {
Paul Menage817929e2007-10-18 23:39:36 -07003079 /* We reached the end of this task list - move on to
3080 * the next cg_cgroup_link */
Paul Menagebd89aab2007-10-18 23:40:44 -07003081 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07003082 } else {
3083 it->task = l;
3084 }
3085 return res;
3086}
3087
Paul Menagebd89aab2007-10-18 23:40:44 -07003088void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it)
Kirill A. Shutemovc6ca5752011-12-27 07:46:26 +02003089 __releases(css_set_lock)
Paul Menage817929e2007-10-18 23:39:36 -07003090{
3091 read_unlock(&css_set_lock);
3092}
3093
Cliff Wickman31a7df02008-02-07 00:14:42 -08003094static inline int started_after_time(struct task_struct *t1,
3095 struct timespec *time,
3096 struct task_struct *t2)
3097{
3098 int start_diff = timespec_compare(&t1->start_time, time);
3099 if (start_diff > 0) {
3100 return 1;
3101 } else if (start_diff < 0) {
3102 return 0;
3103 } else {
3104 /*
3105 * Arbitrarily, if two processes started at the same
3106 * time, we'll say that the lower pointer value
3107 * started first. Note that t2 may have exited by now
3108 * so this may not be a valid pointer any longer, but
3109 * that's fine - it still serves to distinguish
3110 * between two tasks started (effectively) simultaneously.
3111 */
3112 return t1 > t2;
3113 }
3114}
3115
3116/*
3117 * This function is a callback from heap_insert() and is used to order
3118 * the heap.
3119 * In this case we order the heap in descending task start time.
3120 */
3121static inline int started_after(void *p1, void *p2)
3122{
3123 struct task_struct *t1 = p1;
3124 struct task_struct *t2 = p2;
3125 return started_after_time(t1, &t2->start_time, t2);
3126}
3127
3128/**
3129 * cgroup_scan_tasks - iterate though all the tasks in a cgroup
3130 * @scan: struct cgroup_scanner containing arguments for the scan
3131 *
3132 * Arguments include pointers to callback functions test_task() and
3133 * process_task().
3134 * Iterate through all the tasks in a cgroup, calling test_task() for each,
3135 * and if it returns true, call process_task() for it also.
3136 * The test_task pointer may be NULL, meaning always true (select all tasks).
3137 * Effectively duplicates cgroup_iter_{start,next,end}()
3138 * but does not lock css_set_lock for the call to process_task().
3139 * The struct cgroup_scanner may be embedded in any structure of the caller's
3140 * creation.
3141 * It is guaranteed that process_task() will act on every task that
3142 * is a member of the cgroup for the duration of this call. This
3143 * function may or may not call process_task() for tasks that exit
3144 * or move to a different cgroup during the call, or are forked or
3145 * move into the cgroup during the call.
3146 *
3147 * Note that test_task() may be called with locks held, and may in some
3148 * situations be called multiple times for the same task, so it should
3149 * be cheap.
3150 * If the heap pointer in the struct cgroup_scanner is non-NULL, a heap has been
3151 * pre-allocated and will be used for heap operations (and its "gt" member will
3152 * be overwritten), else a temporary heap will be used (allocation of which
3153 * may cause this function to fail).
3154 */
3155int cgroup_scan_tasks(struct cgroup_scanner *scan)
3156{
3157 int retval, i;
3158 struct cgroup_iter it;
3159 struct task_struct *p, *dropped;
3160 /* Never dereference latest_task, since it's not refcounted */
3161 struct task_struct *latest_task = NULL;
3162 struct ptr_heap tmp_heap;
3163 struct ptr_heap *heap;
3164 struct timespec latest_time = { 0, 0 };
3165
3166 if (scan->heap) {
3167 /* The caller supplied our heap and pre-allocated its memory */
3168 heap = scan->heap;
3169 heap->gt = &started_after;
3170 } else {
3171 /* We need to allocate our own heap memory */
3172 heap = &tmp_heap;
3173 retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after);
3174 if (retval)
3175 /* cannot allocate the heap */
3176 return retval;
3177 }
3178
3179 again:
3180 /*
3181 * Scan tasks in the cgroup, using the scanner's "test_task" callback
3182 * to determine which are of interest, and using the scanner's
3183 * "process_task" callback to process any of them that need an update.
3184 * Since we don't want to hold any locks during the task updates,
3185 * gather tasks to be processed in a heap structure.
3186 * The heap is sorted by descending task start time.
3187 * If the statically-sized heap fills up, we overflow tasks that
3188 * started later, and in future iterations only consider tasks that
3189 * started after the latest task in the previous pass. This
3190 * guarantees forward progress and that we don't miss any tasks.
3191 */
3192 heap->size = 0;
3193 cgroup_iter_start(scan->cg, &it);
3194 while ((p = cgroup_iter_next(scan->cg, &it))) {
3195 /*
3196 * Only affect tasks that qualify per the caller's callback,
3197 * if he provided one
3198 */
3199 if (scan->test_task && !scan->test_task(p, scan))
3200 continue;
3201 /*
3202 * Only process tasks that started after the last task
3203 * we processed
3204 */
3205 if (!started_after_time(p, &latest_time, latest_task))
3206 continue;
3207 dropped = heap_insert(heap, p);
3208 if (dropped == NULL) {
3209 /*
3210 * The new task was inserted; the heap wasn't
3211 * previously full
3212 */
3213 get_task_struct(p);
3214 } else if (dropped != p) {
3215 /*
3216 * The new task was inserted, and pushed out a
3217 * different task
3218 */
3219 get_task_struct(p);
3220 put_task_struct(dropped);
3221 }
3222 /*
3223 * Else the new task was newer than anything already in
3224 * the heap and wasn't inserted
3225 */
3226 }
3227 cgroup_iter_end(scan->cg, &it);
3228
3229 if (heap->size) {
3230 for (i = 0; i < heap->size; i++) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07003231 struct task_struct *q = heap->ptrs[i];
Cliff Wickman31a7df02008-02-07 00:14:42 -08003232 if (i == 0) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07003233 latest_time = q->start_time;
3234 latest_task = q;
Cliff Wickman31a7df02008-02-07 00:14:42 -08003235 }
3236 /* Process the task per the caller's callback */
Paul Jackson4fe91d52008-04-29 00:59:55 -07003237 scan->process_task(q, scan);
3238 put_task_struct(q);
Cliff Wickman31a7df02008-02-07 00:14:42 -08003239 }
3240 /*
3241 * If we had to process any tasks at all, scan again
3242 * in case some of them were in the middle of forking
3243 * children that didn't get processed.
3244 * Not the most efficient way to do it, but it avoids
3245 * having to take callback_mutex in the fork path
3246 */
3247 goto again;
3248 }
3249 if (heap == &tmp_heap)
3250 heap_free(&tmp_heap);
3251 return 0;
3252}
3253
Paul Menage817929e2007-10-18 23:39:36 -07003254/*
Ben Blum102a7752009-09-23 15:56:26 -07003255 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003256 *
3257 * Reading this file can return large amounts of data if a cgroup has
3258 * *lots* of attached tasks. So it may need several calls to read(),
3259 * but we cannot guarantee that the information we produce is correct
3260 * unless we produce it entirely atomically.
3261 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07003262 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003263
Li Zefan24528252012-01-20 11:58:43 +08003264/* which pidlist file are we talking about? */
3265enum cgroup_filetype {
3266 CGROUP_FILE_PROCS,
3267 CGROUP_FILE_TASKS,
3268};
3269
3270/*
3271 * A pidlist is a list of pids that virtually represents the contents of one
3272 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
3273 * a pair (one each for procs, tasks) for each pid namespace that's relevant
3274 * to the cgroup.
3275 */
3276struct cgroup_pidlist {
3277 /*
3278 * used to find which pidlist is wanted. doesn't change as long as
3279 * this particular list stays in the list.
3280 */
3281 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
3282 /* array of xids */
3283 pid_t *list;
3284 /* how many elements the above list has */
3285 int length;
3286 /* how many files are using the current array */
3287 int use_count;
3288 /* each of these stored in a list by its cgroup */
3289 struct list_head links;
3290 /* pointer to the cgroup we belong to, for list removal purposes */
3291 struct cgroup *owner;
3292 /* protects the other fields */
3293 struct rw_semaphore mutex;
3294};
3295
Paul Menagebbcb81d2007-10-18 23:39:32 -07003296/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07003297 * The following two functions "fix" the issue where there are more pids
3298 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
3299 * TODO: replace with a kernel-wide solution to this problem
3300 */
3301#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
3302static void *pidlist_allocate(int count)
3303{
3304 if (PIDLIST_TOO_LARGE(count))
3305 return vmalloc(count * sizeof(pid_t));
3306 else
3307 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
3308}
3309static void pidlist_free(void *p)
3310{
3311 if (is_vmalloc_addr(p))
3312 vfree(p);
3313 else
3314 kfree(p);
3315}
3316static void *pidlist_resize(void *p, int newcount)
3317{
3318 void *newlist;
3319 /* note: if new alloc fails, old p will still be valid either way */
3320 if (is_vmalloc_addr(p)) {
3321 newlist = vmalloc(newcount * sizeof(pid_t));
3322 if (!newlist)
3323 return NULL;
3324 memcpy(newlist, p, newcount * sizeof(pid_t));
3325 vfree(p);
3326 } else {
3327 newlist = krealloc(p, newcount * sizeof(pid_t), GFP_KERNEL);
3328 }
3329 return newlist;
3330}
3331
3332/*
Ben Blum102a7752009-09-23 15:56:26 -07003333 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
3334 * If the new stripped list is sufficiently smaller and there's enough memory
3335 * to allocate a new buffer, will let go of the unneeded memory. Returns the
3336 * number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003337 */
Ben Blum102a7752009-09-23 15:56:26 -07003338/* is the size difference enough that we should re-allocate the array? */
3339#define PIDLIST_REALLOC_DIFFERENCE(old, new) ((old) - PAGE_SIZE >= (new))
3340static int pidlist_uniq(pid_t **p, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003341{
Ben Blum102a7752009-09-23 15:56:26 -07003342 int src, dest = 1;
3343 pid_t *list = *p;
3344 pid_t *newlist;
3345
3346 /*
3347 * we presume the 0th element is unique, so i starts at 1. trivial
3348 * edge cases first; no work needs to be done for either
3349 */
3350 if (length == 0 || length == 1)
3351 return length;
3352 /* src and dest walk down the list; dest counts unique elements */
3353 for (src = 1; src < length; src++) {
3354 /* find next unique element */
3355 while (list[src] == list[src-1]) {
3356 src++;
3357 if (src == length)
3358 goto after;
3359 }
3360 /* dest always points to where the next unique element goes */
3361 list[dest] = list[src];
3362 dest++;
3363 }
3364after:
3365 /*
3366 * if the length difference is large enough, we want to allocate a
3367 * smaller buffer to save memory. if this fails due to out of memory,
3368 * we'll just stay with what we've got.
3369 */
3370 if (PIDLIST_REALLOC_DIFFERENCE(length, dest)) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07003371 newlist = pidlist_resize(list, dest);
Ben Blum102a7752009-09-23 15:56:26 -07003372 if (newlist)
3373 *p = newlist;
3374 }
3375 return dest;
3376}
3377
3378static int cmppid(const void *a, const void *b)
3379{
3380 return *(pid_t *)a - *(pid_t *)b;
3381}
3382
3383/*
Ben Blum72a8cb32009-09-23 15:56:27 -07003384 * find the appropriate pidlist for our purpose (given procs vs tasks)
3385 * returns with the lock on that pidlist already held, and takes care
3386 * of the use count, or returns NULL with no locks held if we're out of
3387 * memory.
3388 */
3389static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
3390 enum cgroup_filetype type)
3391{
3392 struct cgroup_pidlist *l;
3393 /* don't need task_nsproxy() if we're looking at ourself */
Li Zefanb70cc5f2010-03-10 15:22:12 -08003394 struct pid_namespace *ns = current->nsproxy->pid_ns;
3395
Ben Blum72a8cb32009-09-23 15:56:27 -07003396 /*
3397 * We can't drop the pidlist_mutex before taking the l->mutex in case
3398 * the last ref-holder is trying to remove l from the list at the same
3399 * time. Holding the pidlist_mutex precludes somebody taking whichever
3400 * list we find out from under us - compare release_pid_array().
3401 */
3402 mutex_lock(&cgrp->pidlist_mutex);
3403 list_for_each_entry(l, &cgrp->pidlists, links) {
3404 if (l->key.type == type && l->key.ns == ns) {
Ben Blum72a8cb32009-09-23 15:56:27 -07003405 /* make sure l doesn't vanish out from under us */
3406 down_write(&l->mutex);
3407 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003408 return l;
3409 }
3410 }
3411 /* entry not found; create a new one */
3412 l = kmalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
3413 if (!l) {
3414 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003415 return l;
3416 }
3417 init_rwsem(&l->mutex);
3418 down_write(&l->mutex);
3419 l->key.type = type;
Li Zefanb70cc5f2010-03-10 15:22:12 -08003420 l->key.ns = get_pid_ns(ns);
Ben Blum72a8cb32009-09-23 15:56:27 -07003421 l->use_count = 0; /* don't increment here */
3422 l->list = NULL;
3423 l->owner = cgrp;
3424 list_add(&l->links, &cgrp->pidlists);
3425 mutex_unlock(&cgrp->pidlist_mutex);
3426 return l;
3427}
3428
3429/*
Ben Blum102a7752009-09-23 15:56:26 -07003430 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
3431 */
Ben Blum72a8cb32009-09-23 15:56:27 -07003432static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
3433 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07003434{
3435 pid_t *array;
3436 int length;
3437 int pid, n = 0; /* used for populating the array */
Paul Menage817929e2007-10-18 23:39:36 -07003438 struct cgroup_iter it;
3439 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07003440 struct cgroup_pidlist *l;
3441
3442 /*
3443 * If cgroup gets more users after we read count, we won't have
3444 * enough space - tough. This race is indistinguishable to the
3445 * caller from the case that the additional cgroup users didn't
3446 * show up until sometime later on.
3447 */
3448 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003449 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07003450 if (!array)
3451 return -ENOMEM;
3452 /* now, populate the array */
Paul Menagebd89aab2007-10-18 23:40:44 -07003453 cgroup_iter_start(cgrp, &it);
3454 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Ben Blum102a7752009-09-23 15:56:26 -07003455 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07003456 break;
Ben Blum102a7752009-09-23 15:56:26 -07003457 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07003458 if (type == CGROUP_FILE_PROCS)
3459 pid = task_tgid_vnr(tsk);
3460 else
3461 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07003462 if (pid > 0) /* make sure to only use valid results */
3463 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07003464 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003465 cgroup_iter_end(cgrp, &it);
Ben Blum102a7752009-09-23 15:56:26 -07003466 length = n;
3467 /* now sort & (if procs) strip out duplicates */
3468 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07003469 if (type == CGROUP_FILE_PROCS)
Ben Blum102a7752009-09-23 15:56:26 -07003470 length = pidlist_uniq(&array, length);
Ben Blum72a8cb32009-09-23 15:56:27 -07003471 l = cgroup_pidlist_find(cgrp, type);
3472 if (!l) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07003473 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07003474 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07003475 }
Ben Blum72a8cb32009-09-23 15:56:27 -07003476 /* store array, freeing old if necessary - lock already held */
Ben Blumd1d9fd32009-09-23 15:56:28 -07003477 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07003478 l->list = array;
3479 l->length = length;
3480 l->use_count++;
3481 up_write(&l->mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003482 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07003483 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003484}
3485
Balbir Singh846c7bb2007-10-18 23:39:44 -07003486/**
Li Zefana043e3b2008-02-23 15:24:09 -08003487 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07003488 * @stats: cgroupstats to fill information into
3489 * @dentry: A dentry entry belonging to the cgroup for which stats have
3490 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08003491 *
3492 * Build and fill cgroupstats so that taskstats can export it to user
3493 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003494 */
3495int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
3496{
3497 int ret = -EINVAL;
Paul Menagebd89aab2007-10-18 23:40:44 -07003498 struct cgroup *cgrp;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003499 struct cgroup_iter it;
3500 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08003501
Balbir Singh846c7bb2007-10-18 23:39:44 -07003502 /*
Li Zefan33d283b2008-11-19 15:36:48 -08003503 * Validate dentry by checking the superblock operations,
3504 * and make sure it's a directory.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003505 */
Li Zefan33d283b2008-11-19 15:36:48 -08003506 if (dentry->d_sb->s_op != &cgroup_ops ||
3507 !S_ISDIR(dentry->d_inode->i_mode))
Balbir Singh846c7bb2007-10-18 23:39:44 -07003508 goto err;
3509
3510 ret = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07003511 cgrp = dentry->d_fsdata;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003512
Paul Menagebd89aab2007-10-18 23:40:44 -07003513 cgroup_iter_start(cgrp, &it);
3514 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07003515 switch (tsk->state) {
3516 case TASK_RUNNING:
3517 stats->nr_running++;
3518 break;
3519 case TASK_INTERRUPTIBLE:
3520 stats->nr_sleeping++;
3521 break;
3522 case TASK_UNINTERRUPTIBLE:
3523 stats->nr_uninterruptible++;
3524 break;
3525 case TASK_STOPPED:
3526 stats->nr_stopped++;
3527 break;
3528 default:
3529 if (delayacct_is_task_waiting_on_io(tsk))
3530 stats->nr_io_wait++;
3531 break;
3532 }
3533 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003534 cgroup_iter_end(cgrp, &it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07003535
Balbir Singh846c7bb2007-10-18 23:39:44 -07003536err:
3537 return ret;
3538}
3539
Paul Menage8f3ff202009-09-23 15:56:25 -07003540
Paul Menagecc31edc2008-10-18 20:28:04 -07003541/*
Ben Blum102a7752009-09-23 15:56:26 -07003542 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07003543 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07003544 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07003545 */
3546
Ben Blum102a7752009-09-23 15:56:26 -07003547static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003548{
3549 /*
3550 * Initially we receive a position value that corresponds to
3551 * one more than the last pid shown (or 0 on the first call or
3552 * after a seek to the start). Use a binary-search to find the
3553 * next pid to display, if any
3554 */
Ben Blum102a7752009-09-23 15:56:26 -07003555 struct cgroup_pidlist *l = s->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07003556 int index = 0, pid = *pos;
3557 int *iter;
3558
Ben Blum102a7752009-09-23 15:56:26 -07003559 down_read(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003560 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07003561 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11003562
Paul Menagecc31edc2008-10-18 20:28:04 -07003563 while (index < end) {
3564 int mid = (index + end) / 2;
Ben Blum102a7752009-09-23 15:56:26 -07003565 if (l->list[mid] == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07003566 index = mid;
3567 break;
Ben Blum102a7752009-09-23 15:56:26 -07003568 } else if (l->list[mid] <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07003569 index = mid + 1;
3570 else
3571 end = mid;
3572 }
3573 }
3574 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07003575 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07003576 return NULL;
3577 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07003578 iter = l->list + index;
Paul Menagecc31edc2008-10-18 20:28:04 -07003579 *pos = *iter;
3580 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003581}
3582
Ben Blum102a7752009-09-23 15:56:26 -07003583static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003584{
Ben Blum102a7752009-09-23 15:56:26 -07003585 struct cgroup_pidlist *l = s->private;
3586 up_read(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003587}
3588
Ben Blum102a7752009-09-23 15:56:26 -07003589static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003590{
Ben Blum102a7752009-09-23 15:56:26 -07003591 struct cgroup_pidlist *l = s->private;
3592 pid_t *p = v;
3593 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07003594 /*
3595 * Advance to the next pid in the array. If this goes off the
3596 * end, we're done
3597 */
3598 p++;
3599 if (p >= end) {
3600 return NULL;
3601 } else {
3602 *pos = *p;
3603 return p;
3604 }
3605}
3606
Ben Blum102a7752009-09-23 15:56:26 -07003607static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003608{
3609 return seq_printf(s, "%d\n", *(int *)v);
3610}
3611
Ben Blum102a7752009-09-23 15:56:26 -07003612/*
3613 * seq_operations functions for iterating on pidlists through seq_file -
3614 * independent of whether it's tasks or procs
3615 */
3616static const struct seq_operations cgroup_pidlist_seq_operations = {
3617 .start = cgroup_pidlist_start,
3618 .stop = cgroup_pidlist_stop,
3619 .next = cgroup_pidlist_next,
3620 .show = cgroup_pidlist_show,
Paul Menagecc31edc2008-10-18 20:28:04 -07003621};
3622
Ben Blum102a7752009-09-23 15:56:26 -07003623static void cgroup_release_pid_array(struct cgroup_pidlist *l)
Paul Menagecc31edc2008-10-18 20:28:04 -07003624{
Ben Blum72a8cb32009-09-23 15:56:27 -07003625 /*
3626 * the case where we're the last user of this particular pidlist will
3627 * have us remove it from the cgroup's list, which entails taking the
3628 * mutex. since in pidlist_find the pidlist->lock depends on cgroup->
3629 * pidlist_mutex, we have to take pidlist_mutex first.
3630 */
3631 mutex_lock(&l->owner->pidlist_mutex);
Ben Blum102a7752009-09-23 15:56:26 -07003632 down_write(&l->mutex);
3633 BUG_ON(!l->use_count);
3634 if (!--l->use_count) {
Ben Blum72a8cb32009-09-23 15:56:27 -07003635 /* we're the last user if refcount is 0; remove and free */
3636 list_del(&l->links);
3637 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003638 pidlist_free(l->list);
Ben Blum72a8cb32009-09-23 15:56:27 -07003639 put_pid_ns(l->key.ns);
3640 up_write(&l->mutex);
3641 kfree(l);
3642 return;
Paul Menagecc31edc2008-10-18 20:28:04 -07003643 }
Ben Blum72a8cb32009-09-23 15:56:27 -07003644 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blum102a7752009-09-23 15:56:26 -07003645 up_write(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003646}
3647
Ben Blum102a7752009-09-23 15:56:26 -07003648static int cgroup_pidlist_release(struct inode *inode, struct file *file)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003649{
Ben Blum102a7752009-09-23 15:56:26 -07003650 struct cgroup_pidlist *l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003651 if (!(file->f_mode & FMODE_READ))
3652 return 0;
Ben Blum102a7752009-09-23 15:56:26 -07003653 /*
3654 * the seq_file will only be initialized if the file was opened for
3655 * reading; hence we check if it's not null only in that case.
3656 */
3657 l = ((struct seq_file *)file->private_data)->private;
3658 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07003659 return seq_release(inode, file);
3660}
3661
Ben Blum102a7752009-09-23 15:56:26 -07003662static const struct file_operations cgroup_pidlist_operations = {
Paul Menagecc31edc2008-10-18 20:28:04 -07003663 .read = seq_read,
3664 .llseek = seq_lseek,
3665 .write = cgroup_file_write,
Ben Blum102a7752009-09-23 15:56:26 -07003666 .release = cgroup_pidlist_release,
Paul Menagecc31edc2008-10-18 20:28:04 -07003667};
3668
3669/*
Ben Blum102a7752009-09-23 15:56:26 -07003670 * The following functions handle opens on a file that displays a pidlist
3671 * (tasks or procs). Prepare an array of the process/thread IDs of whoever's
3672 * in the cgroup.
Paul Menagecc31edc2008-10-18 20:28:04 -07003673 */
Ben Blum102a7752009-09-23 15:56:26 -07003674/* helper function for the two below it */
Ben Blum72a8cb32009-09-23 15:56:27 -07003675static int cgroup_pidlist_open(struct file *file, enum cgroup_filetype type)
Paul Menagecc31edc2008-10-18 20:28:04 -07003676{
3677 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Ben Blum72a8cb32009-09-23 15:56:27 -07003678 struct cgroup_pidlist *l;
Paul Menagecc31edc2008-10-18 20:28:04 -07003679 int retval;
3680
3681 /* Nothing to do for write-only files */
3682 if (!(file->f_mode & FMODE_READ))
3683 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003684
Ben Blum102a7752009-09-23 15:56:26 -07003685 /* have the array populated */
Ben Blum72a8cb32009-09-23 15:56:27 -07003686 retval = pidlist_array_load(cgrp, type, &l);
Ben Blum102a7752009-09-23 15:56:26 -07003687 if (retval)
3688 return retval;
3689 /* configure file information */
3690 file->f_op = &cgroup_pidlist_operations;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003691
Ben Blum102a7752009-09-23 15:56:26 -07003692 retval = seq_open(file, &cgroup_pidlist_seq_operations);
Paul Menagecc31edc2008-10-18 20:28:04 -07003693 if (retval) {
Ben Blum102a7752009-09-23 15:56:26 -07003694 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07003695 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003696 }
Ben Blum102a7752009-09-23 15:56:26 -07003697 ((struct seq_file *)file->private_data)->private = l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003698 return 0;
3699}
Ben Blum102a7752009-09-23 15:56:26 -07003700static int cgroup_tasks_open(struct inode *unused, struct file *file)
3701{
Ben Blum72a8cb32009-09-23 15:56:27 -07003702 return cgroup_pidlist_open(file, CGROUP_FILE_TASKS);
Ben Blum102a7752009-09-23 15:56:26 -07003703}
3704static int cgroup_procs_open(struct inode *unused, struct file *file)
3705{
Ben Blum72a8cb32009-09-23 15:56:27 -07003706 return cgroup_pidlist_open(file, CGROUP_FILE_PROCS);
Ben Blum102a7752009-09-23 15:56:26 -07003707}
Paul Menagebbcb81d2007-10-18 23:39:32 -07003708
Paul Menagebd89aab2007-10-18 23:40:44 -07003709static u64 cgroup_read_notify_on_release(struct cgroup *cgrp,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003710 struct cftype *cft)
3711{
Paul Menagebd89aab2007-10-18 23:40:44 -07003712 return notify_on_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003713}
3714
Paul Menage6379c102008-07-25 01:47:01 -07003715static int cgroup_write_notify_on_release(struct cgroup *cgrp,
3716 struct cftype *cft,
3717 u64 val)
3718{
3719 clear_bit(CGRP_RELEASABLE, &cgrp->flags);
3720 if (val)
3721 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3722 else
3723 clear_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3724 return 0;
3725}
3726
Paul Menagebbcb81d2007-10-18 23:39:32 -07003727/*
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003728 * Unregister event and free resources.
3729 *
3730 * Gets called from workqueue.
3731 */
3732static void cgroup_event_remove(struct work_struct *work)
3733{
3734 struct cgroup_event *event = container_of(work, struct cgroup_event,
3735 remove);
3736 struct cgroup *cgrp = event->cgrp;
3737
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003738 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3739
3740 eventfd_ctx_put(event->eventfd);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003741 kfree(event);
Kirill A. Shutemova0a4db52010-03-10 15:22:34 -08003742 dput(cgrp->dentry);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003743}
3744
3745/*
3746 * Gets called on POLLHUP on eventfd when user closes it.
3747 *
3748 * Called with wqh->lock held and interrupts disabled.
3749 */
3750static int cgroup_event_wake(wait_queue_t *wait, unsigned mode,
3751 int sync, void *key)
3752{
3753 struct cgroup_event *event = container_of(wait,
3754 struct cgroup_event, wait);
3755 struct cgroup *cgrp = event->cgrp;
3756 unsigned long flags = (unsigned long)key;
3757
3758 if (flags & POLLHUP) {
Changli Gaoa93d2f12010-05-07 14:33:26 +08003759 __remove_wait_queue(event->wqh, &event->wait);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003760 spin_lock(&cgrp->event_list_lock);
3761 list_del(&event->list);
3762 spin_unlock(&cgrp->event_list_lock);
3763 /*
3764 * We are in atomic context, but cgroup_event_remove() may
3765 * sleep, so we have to call it in workqueue.
3766 */
3767 schedule_work(&event->remove);
3768 }
3769
3770 return 0;
3771}
3772
3773static void cgroup_event_ptable_queue_proc(struct file *file,
3774 wait_queue_head_t *wqh, poll_table *pt)
3775{
3776 struct cgroup_event *event = container_of(pt,
3777 struct cgroup_event, pt);
3778
3779 event->wqh = wqh;
3780 add_wait_queue(wqh, &event->wait);
3781}
3782
3783/*
3784 * Parse input and register new cgroup event handler.
3785 *
3786 * Input must be in format '<event_fd> <control_fd> <args>'.
3787 * Interpretation of args is defined by control file implementation.
3788 */
3789static int cgroup_write_event_control(struct cgroup *cgrp, struct cftype *cft,
3790 const char *buffer)
3791{
3792 struct cgroup_event *event = NULL;
3793 unsigned int efd, cfd;
3794 struct file *efile = NULL;
3795 struct file *cfile = NULL;
3796 char *endp;
3797 int ret;
3798
3799 efd = simple_strtoul(buffer, &endp, 10);
3800 if (*endp != ' ')
3801 return -EINVAL;
3802 buffer = endp + 1;
3803
3804 cfd = simple_strtoul(buffer, &endp, 10);
3805 if ((*endp != ' ') && (*endp != '\0'))
3806 return -EINVAL;
3807 buffer = endp + 1;
3808
3809 event = kzalloc(sizeof(*event), GFP_KERNEL);
3810 if (!event)
3811 return -ENOMEM;
3812 event->cgrp = cgrp;
3813 INIT_LIST_HEAD(&event->list);
3814 init_poll_funcptr(&event->pt, cgroup_event_ptable_queue_proc);
3815 init_waitqueue_func_entry(&event->wait, cgroup_event_wake);
3816 INIT_WORK(&event->remove, cgroup_event_remove);
3817
3818 efile = eventfd_fget(efd);
3819 if (IS_ERR(efile)) {
3820 ret = PTR_ERR(efile);
3821 goto fail;
3822 }
3823
3824 event->eventfd = eventfd_ctx_fileget(efile);
3825 if (IS_ERR(event->eventfd)) {
3826 ret = PTR_ERR(event->eventfd);
3827 goto fail;
3828 }
3829
3830 cfile = fget(cfd);
3831 if (!cfile) {
3832 ret = -EBADF;
3833 goto fail;
3834 }
3835
3836 /* the process need read permission on control file */
Al Viro3bfa7842011-06-19 12:55:10 -04003837 /* AV: shouldn't we check that it's been opened for read instead? */
3838 ret = inode_permission(cfile->f_path.dentry->d_inode, MAY_READ);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003839 if (ret < 0)
3840 goto fail;
3841
3842 event->cft = __file_cft(cfile);
3843 if (IS_ERR(event->cft)) {
3844 ret = PTR_ERR(event->cft);
3845 goto fail;
3846 }
3847
3848 if (!event->cft->register_event || !event->cft->unregister_event) {
3849 ret = -EINVAL;
3850 goto fail;
3851 }
3852
3853 ret = event->cft->register_event(cgrp, event->cft,
3854 event->eventfd, buffer);
3855 if (ret)
3856 goto fail;
3857
3858 if (efile->f_op->poll(efile, &event->pt) & POLLHUP) {
3859 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3860 ret = 0;
3861 goto fail;
3862 }
3863
Kirill A. Shutemova0a4db52010-03-10 15:22:34 -08003864 /*
3865 * Events should be removed after rmdir of cgroup directory, but before
3866 * destroying subsystem state objects. Let's take reference to cgroup
3867 * directory dentry to do that.
3868 */
3869 dget(cgrp->dentry);
3870
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003871 spin_lock(&cgrp->event_list_lock);
3872 list_add(&event->list, &cgrp->event_list);
3873 spin_unlock(&cgrp->event_list_lock);
3874
3875 fput(cfile);
3876 fput(efile);
3877
3878 return 0;
3879
3880fail:
3881 if (cfile)
3882 fput(cfile);
3883
3884 if (event && event->eventfd && !IS_ERR(event->eventfd))
3885 eventfd_ctx_put(event->eventfd);
3886
3887 if (!IS_ERR_OR_NULL(efile))
3888 fput(efile);
3889
3890 kfree(event);
3891
3892 return ret;
3893}
3894
Daniel Lezcano97978e62010-10-27 15:33:35 -07003895static u64 cgroup_clone_children_read(struct cgroup *cgrp,
3896 struct cftype *cft)
3897{
3898 return clone_children(cgrp);
3899}
3900
3901static int cgroup_clone_children_write(struct cgroup *cgrp,
3902 struct cftype *cft,
3903 u64 val)
3904{
3905 if (val)
3906 set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3907 else
3908 clear_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3909 return 0;
3910}
3911
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003912/*
Paul Menagebbcb81d2007-10-18 23:39:32 -07003913 * for the common functions, 'private' gives the type of file
3914 */
Ben Blum102a7752009-09-23 15:56:26 -07003915/* for hysterical raisins, we can't put this on the older files */
3916#define CGROUP_FILE_GENERIC_PREFIX "cgroup."
Paul Menage81a6a5c2007-10-18 23:39:38 -07003917static struct cftype files[] = {
3918 {
3919 .name = "tasks",
3920 .open = cgroup_tasks_open,
Paul Menageaf351022008-07-25 01:47:01 -07003921 .write_u64 = cgroup_tasks_write,
Ben Blum102a7752009-09-23 15:56:26 -07003922 .release = cgroup_pidlist_release,
Li Zefan099fca32009-04-02 16:57:29 -07003923 .mode = S_IRUGO | S_IWUSR,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003924 },
Ben Blum102a7752009-09-23 15:56:26 -07003925 {
3926 .name = CGROUP_FILE_GENERIC_PREFIX "procs",
3927 .open = cgroup_procs_open,
Ben Blum74a11662011-05-26 16:25:20 -07003928 .write_u64 = cgroup_procs_write,
Ben Blum102a7752009-09-23 15:56:26 -07003929 .release = cgroup_pidlist_release,
Ben Blum74a11662011-05-26 16:25:20 -07003930 .mode = S_IRUGO | S_IWUSR,
Ben Blum102a7752009-09-23 15:56:26 -07003931 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003932 {
3933 .name = "notify_on_release",
Paul Menagef4c753b2008-04-29 00:59:56 -07003934 .read_u64 = cgroup_read_notify_on_release,
Paul Menage6379c102008-07-25 01:47:01 -07003935 .write_u64 = cgroup_write_notify_on_release,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003936 },
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003937 {
3938 .name = CGROUP_FILE_GENERIC_PREFIX "event_control",
3939 .write_string = cgroup_write_event_control,
3940 .mode = S_IWUGO,
3941 },
Daniel Lezcano97978e62010-10-27 15:33:35 -07003942 {
3943 .name = "cgroup.clone_children",
3944 .read_u64 = cgroup_clone_children_read,
3945 .write_u64 = cgroup_clone_children_write,
3946 },
Tejun Heo6e6ff252012-04-01 12:09:55 -07003947 {
3948 .name = "release_agent",
3949 .flags = CFTYPE_ONLY_ON_ROOT,
3950 .read_seq_string = cgroup_release_agent_show,
3951 .write_string = cgroup_release_agent_write,
3952 .max_write_len = PATH_MAX,
3953 },
Tejun Heodb0416b2012-04-01 12:09:55 -07003954 { } /* terminate */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003955};
3956
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003957/**
3958 * cgroup_populate_dir - selectively creation of files in a directory
3959 * @cgrp: target cgroup
3960 * @base_files: true if the base files should be added
3961 * @subsys_mask: mask of the subsystem ids whose files should be added
3962 */
3963static int cgroup_populate_dir(struct cgroup *cgrp, bool base_files,
3964 unsigned long subsys_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003965{
3966 int err;
3967 struct cgroup_subsys *ss;
3968
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003969 if (base_files) {
3970 err = cgroup_addrm_files(cgrp, NULL, files, true);
3971 if (err < 0)
3972 return err;
3973 }
Paul Menagebbcb81d2007-10-18 23:39:32 -07003974
Tejun Heo8e3f6542012-04-01 12:09:55 -07003975 /* process cftsets of each subsystem */
Paul Menagebd89aab2007-10-18 23:40:44 -07003976 for_each_subsys(cgrp->root, ss) {
Tejun Heo8e3f6542012-04-01 12:09:55 -07003977 struct cftype_set *set;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003978 if (!test_bit(ss->subsys_id, &subsys_mask))
3979 continue;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003980
Tejun Heodb0416b2012-04-01 12:09:55 -07003981 list_for_each_entry(set, &ss->cftsets, node)
Tejun Heo79578622012-04-01 12:09:56 -07003982 cgroup_addrm_files(cgrp, ss, set->cfts, true);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003983 }
Tejun Heo8e3f6542012-04-01 12:09:55 -07003984
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003985 /* This cgroup is ready now */
3986 for_each_subsys(cgrp->root, ss) {
3987 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3988 /*
3989 * Update id->css pointer and make this css visible from
3990 * CSS ID functions. This pointer will be dereferened
3991 * from RCU-read-side without locks.
3992 */
3993 if (css->id)
3994 rcu_assign_pointer(css->id->css, css);
3995 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003996
3997 return 0;
3998}
3999
Tejun Heo48ddbe12012-04-01 12:09:56 -07004000static void css_dput_fn(struct work_struct *work)
4001{
4002 struct cgroup_subsys_state *css =
4003 container_of(work, struct cgroup_subsys_state, dput_work);
Tejun Heo5db9a4d2012-07-07 16:08:18 -07004004 struct dentry *dentry = css->cgroup->dentry;
4005 struct super_block *sb = dentry->d_sb;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004006
Tejun Heo5db9a4d2012-07-07 16:08:18 -07004007 atomic_inc(&sb->s_active);
4008 dput(dentry);
4009 deactivate_super(sb);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004010}
4011
Paul Menageddbcc7e2007-10-18 23:39:30 -07004012static void init_cgroup_css(struct cgroup_subsys_state *css,
4013 struct cgroup_subsys *ss,
Paul Menagebd89aab2007-10-18 23:40:44 -07004014 struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004015{
Paul Menagebd89aab2007-10-18 23:40:44 -07004016 css->cgroup = cgrp;
Paul Menagee7c5ec92009-01-07 18:08:38 -08004017 atomic_set(&css->refcnt, 1);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004018 css->flags = 0;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004019 css->id = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07004020 if (cgrp == dummytop)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004021 set_bit(CSS_ROOT, &css->flags);
Paul Menagebd89aab2007-10-18 23:40:44 -07004022 BUG_ON(cgrp->subsys[ss->subsys_id]);
4023 cgrp->subsys[ss->subsys_id] = css;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004024
4025 /*
4026 * If !clear_css_refs, css holds an extra ref to @cgrp->dentry
4027 * which is put on the last css_put(). dput() requires process
4028 * context, which css_put() may be called without. @css->dput_work
4029 * will be used to invoke dput() asynchronously from css_put().
4030 */
4031 INIT_WORK(&css->dput_work, css_dput_fn);
4032 if (ss->__DEPRECATED_clear_css_refs)
4033 set_bit(CSS_CLEAR_CSS_REFS, &css->flags);
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
4057 /* Grab a reference on the superblock so the hierarchy doesn't
4058 * get deleted on unmount if there are child cgroups. This
4059 * can be done outside cgroup_mutex, since the sb can't
4060 * disappear while someone has an open control file on the
4061 * fs */
4062 atomic_inc(&sb->s_active);
4063
4064 mutex_lock(&cgroup_mutex);
4065
Paul Menagecc31edc2008-10-18 20:28:04 -07004066 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004067
Paul Menagebd89aab2007-10-18 23:40:44 -07004068 cgrp->parent = parent;
4069 cgrp->root = parent->root;
4070 cgrp->top_cgroup = parent->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004071
Li Zefanb6abdb02008-03-04 14:28:19 -08004072 if (notify_on_release(parent))
4073 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
4074
Daniel Lezcano97978e62010-10-27 15:33:35 -07004075 if (clone_children(parent))
4076 set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
4077
Paul Menageddbcc7e2007-10-18 23:39:30 -07004078 for_each_subsys(root, ss) {
Li Zefan761b3ef2012-01-31 13:47:36 +08004079 struct cgroup_subsys_state *css = ss->create(cgrp);
Li Zefan4528fd02010-02-02 13:44:10 -08004080
Paul Menageddbcc7e2007-10-18 23:39:30 -07004081 if (IS_ERR(css)) {
4082 err = PTR_ERR(css);
4083 goto err_destroy;
4084 }
Paul Menagebd89aab2007-10-18 23:40:44 -07004085 init_cgroup_css(css, ss, cgrp);
Li Zefan4528fd02010-02-02 13:44:10 -08004086 if (ss->use_id) {
4087 err = alloc_css_id(ss, parent, cgrp);
4088 if (err)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004089 goto err_destroy;
Li Zefan4528fd02010-02-02 13:44:10 -08004090 }
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004091 /* At error, ->destroy() callback has to free assigned ID. */
Daniel Lezcano97978e62010-10-27 15:33:35 -07004092 if (clone_children(parent) && ss->post_clone)
Li Zefan761b3ef2012-01-31 13:47:36 +08004093 ss->post_clone(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004094 }
4095
Paul Menagebd89aab2007-10-18 23:40:44 -07004096 list_add(&cgrp->sibling, &cgrp->parent->children);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004097 root->number_of_cgroups++;
4098
Paul Menagebd89aab2007-10-18 23:40:44 -07004099 err = cgroup_create_dir(cgrp, dentry, mode);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004100 if (err < 0)
4101 goto err_remove;
4102
Tejun Heo48ddbe12012-04-01 12:09:56 -07004103 /* If !clear_css_refs, each css holds a ref to the cgroup's dentry */
4104 for_each_subsys(root, ss)
4105 if (!ss->__DEPRECATED_clear_css_refs)
4106 dget(dentry);
4107
Paul Menageddbcc7e2007-10-18 23:39:30 -07004108 /* The cgroup directory was pre-locked for us */
Paul Menagebd89aab2007-10-18 23:40:44 -07004109 BUG_ON(!mutex_is_locked(&cgrp->dentry->d_inode->i_mutex));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004110
Tejun Heob0ca5a82012-04-01 12:09:54 -07004111 list_add_tail(&cgrp->allcg_node, &root->allcg_list);
4112
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04004113 err = cgroup_populate_dir(cgrp, true, root->subsys_mask);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004114 /* If err < 0, we have a half-filled directory - oh well ;) */
4115
4116 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07004117 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004118
4119 return 0;
4120
4121 err_remove:
4122
Paul Menagebd89aab2007-10-18 23:40:44 -07004123 list_del(&cgrp->sibling);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004124 root->number_of_cgroups--;
4125
4126 err_destroy:
4127
4128 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07004129 if (cgrp->subsys[ss->subsys_id])
Li Zefan761b3ef2012-01-31 13:47:36 +08004130 ss->destroy(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004131 }
4132
4133 mutex_unlock(&cgroup_mutex);
4134
4135 /* Release the reference count that we took on the superblock */
4136 deactivate_super(sb);
4137
Paul Menagebd89aab2007-10-18 23:40:44 -07004138 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004139 return err;
4140}
4141
Al Viro18bb1db2011-07-26 01:41:39 -04004142static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004143{
4144 struct cgroup *c_parent = dentry->d_parent->d_fsdata;
4145
4146 /* the vfs holds inode->i_mutex already */
4147 return cgroup_create(c_parent, dentry, mode | S_IFDIR);
4148}
4149
Tejun Heo28b4c272012-04-01 12:09:56 -07004150/*
4151 * Check the reference count on each subsystem. Since we already
4152 * established that there are no tasks in the cgroup, if the css refcount
4153 * is also 1, then there should be no outstanding references, so the
4154 * subsystem is safe to destroy. We scan across all subsystems rather than
4155 * using the per-hierarchy linked list of mounted subsystems since we can
4156 * be called via check_for_release() with no synchronization other than
4157 * RCU, and the subsystem linked list isn't RCU-safe.
4158 */
Li Zefan55b6fd02008-07-29 22:33:20 -07004159static int cgroup_has_css_refs(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004160{
Paul Menage81a6a5c2007-10-18 23:39:38 -07004161 int i;
Tejun Heo28b4c272012-04-01 12:09:56 -07004162
Ben Blumaae8aab2010-03-10 15:22:07 -08004163 /*
4164 * We won't need to lock the subsys array, because the subsystems
4165 * we're concerned about aren't going anywhere since our cgroup root
4166 * has a reference on them.
4167 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004168 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
4169 struct cgroup_subsys *ss = subsys[i];
4170 struct cgroup_subsys_state *css;
Tejun Heo28b4c272012-04-01 12:09:56 -07004171
Ben Blumaae8aab2010-03-10 15:22:07 -08004172 /* Skip subsystems not present or not in this hierarchy */
4173 if (ss == NULL || ss->root != cgrp->root)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004174 continue;
Tejun Heo28b4c272012-04-01 12:09:56 -07004175
Paul Menagebd89aab2007-10-18 23:40:44 -07004176 css = cgrp->subsys[ss->subsys_id];
Tejun Heo28b4c272012-04-01 12:09:56 -07004177 /*
4178 * When called from check_for_release() it's possible
Paul Menage81a6a5c2007-10-18 23:39:38 -07004179 * that by this point the cgroup has been removed
4180 * and the css deleted. But a false-positive doesn't
4181 * matter, since it can only happen if the cgroup
4182 * has been deleted and hence no longer needs the
Tejun Heo28b4c272012-04-01 12:09:56 -07004183 * release agent to be called anyway.
4184 */
4185 if (css && css_refcnt(css) > 1)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004186 return 1;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004187 }
4188 return 0;
4189}
4190
Paul Menagee7c5ec92009-01-07 18:08:38 -08004191/*
4192 * Atomically mark all (or else none) of the cgroup's CSS objects as
4193 * CSS_REMOVED. Return true on success, or false if the cgroup has
4194 * busy subsystems. Call with cgroup_mutex held
Tejun Heo48ddbe12012-04-01 12:09:56 -07004195 *
4196 * Depending on whether a subsys has __DEPRECATED_clear_css_refs set or
4197 * not, cgroup removal behaves differently.
4198 *
4199 * If clear is set, css refcnt for the subsystem should be zero before
4200 * cgroup removal can be committed. This is implemented by
4201 * CGRP_WAIT_ON_RMDIR and retry logic around ->pre_destroy(), which may be
4202 * called multiple times until all css refcnts reach zero and is allowed to
4203 * veto removal on any invocation. This behavior is deprecated and will be
4204 * removed as soon as the existing user (memcg) is updated.
4205 *
4206 * If clear is not set, each css holds an extra reference to the cgroup's
4207 * dentry and cgroup removal proceeds regardless of css refs.
4208 * ->pre_destroy() will be called at least once and is not allowed to fail.
4209 * On the last put of each css, whenever that may be, the extra dentry ref
4210 * is put so that dentry destruction happens only after all css's are
4211 * released.
Paul Menagee7c5ec92009-01-07 18:08:38 -08004212 */
Paul Menagee7c5ec92009-01-07 18:08:38 -08004213static int cgroup_clear_css_refs(struct cgroup *cgrp)
4214{
4215 struct cgroup_subsys *ss;
4216 unsigned long flags;
4217 bool failed = false;
Tejun Heo28b4c272012-04-01 12:09:56 -07004218
Paul Menagee7c5ec92009-01-07 18:08:38 -08004219 local_irq_save(flags);
Tejun Heo28b4c272012-04-01 12:09:56 -07004220
4221 /*
4222 * Block new css_tryget() by deactivating refcnt. If all refcnts
Tejun Heo48ddbe12012-04-01 12:09:56 -07004223 * for subsystems w/ clear_css_refs set were 1 at the moment of
4224 * deactivation, we succeeded.
Tejun Heo28b4c272012-04-01 12:09:56 -07004225 */
Paul Menagee7c5ec92009-01-07 18:08:38 -08004226 for_each_subsys(cgrp->root, ss) {
4227 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
Tejun Heo28b4c272012-04-01 12:09:56 -07004228
4229 WARN_ON(atomic_read(&css->refcnt) < 0);
4230 atomic_add(CSS_DEACT_BIAS, &css->refcnt);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004231
4232 if (ss->__DEPRECATED_clear_css_refs)
4233 failed |= css_refcnt(css) != 1;
Paul Menagee7c5ec92009-01-07 18:08:38 -08004234 }
Tejun Heo28b4c272012-04-01 12:09:56 -07004235
4236 /*
4237 * If succeeded, set REMOVED and put all the base refs; otherwise,
4238 * restore refcnts to positive values. Either way, all in-progress
4239 * css_tryget() will be released.
4240 */
Paul Menagee7c5ec92009-01-07 18:08:38 -08004241 for_each_subsys(cgrp->root, ss) {
4242 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
Tejun Heo28b4c272012-04-01 12:09:56 -07004243
4244 if (!failed) {
Paul Menagee7c5ec92009-01-07 18:08:38 -08004245 set_bit(CSS_REMOVED, &css->flags);
Tejun Heo28b4c272012-04-01 12:09:56 -07004246 css_put(css);
4247 } else {
4248 atomic_sub(CSS_DEACT_BIAS, &css->refcnt);
Paul Menagee7c5ec92009-01-07 18:08:38 -08004249 }
4250 }
Tejun Heo28b4c272012-04-01 12:09:56 -07004251
Paul Menagee7c5ec92009-01-07 18:08:38 -08004252 local_irq_restore(flags);
4253 return !failed;
4254}
4255
Paul Menageddbcc7e2007-10-18 23:39:30 -07004256static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry)
4257{
Paul Menagebd89aab2007-10-18 23:40:44 -07004258 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004259 struct dentry *d;
4260 struct cgroup *parent;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004261 DEFINE_WAIT(wait);
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08004262 struct cgroup_event *event, *tmp;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004263 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004264
4265 /* the vfs holds both inode->i_mutex already */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004266again:
Paul Menageddbcc7e2007-10-18 23:39:30 -07004267 mutex_lock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07004268 if (atomic_read(&cgrp->count) != 0) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004269 mutex_unlock(&cgroup_mutex);
4270 return -EBUSY;
4271 }
Paul Menagebd89aab2007-10-18 23:40:44 -07004272 if (!list_empty(&cgrp->children)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004273 mutex_unlock(&cgroup_mutex);
4274 return -EBUSY;
4275 }
KAMEZAWA Hiroyuki3fa59df2008-11-19 15:36:34 -08004276 mutex_unlock(&cgroup_mutex);
Li Zefana043e3b2008-02-23 15:24:09 -08004277
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08004278 /*
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004279 * In general, subsystem has no css->refcnt after pre_destroy(). But
4280 * in racy cases, subsystem may have to get css->refcnt after
4281 * pre_destroy() and it makes rmdir return with -EBUSY. This sometimes
4282 * make rmdir return -EBUSY too often. To avoid that, we use waitqueue
4283 * for cgroup's rmdir. CGRP_WAIT_ON_RMDIR is for synchronizing rmdir
4284 * and subsystem's reference count handling. Please see css_get/put
4285 * and css_tryget() and cgroup_wakeup_rmdir_waiter() implementation.
4286 */
4287 set_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
4288
4289 /*
Li Zefana043e3b2008-02-23 15:24:09 -08004290 * Call pre_destroy handlers of subsys. Notify subsystems
4291 * that rmdir() request comes.
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08004292 */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004293 ret = cgroup_call_pre_destroy(cgrp);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004294 if (ret) {
4295 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004296 return ret;
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004297 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004298
KAMEZAWA Hiroyuki3fa59df2008-11-19 15:36:34 -08004299 mutex_lock(&cgroup_mutex);
4300 parent = cgrp->parent;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004301 if (atomic_read(&cgrp->count) || !list_empty(&cgrp->children)) {
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004302 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004303 mutex_unlock(&cgroup_mutex);
4304 return -EBUSY;
4305 }
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004306 prepare_to_wait(&cgroup_rmdir_waitq, &wait, TASK_INTERRUPTIBLE);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004307 if (!cgroup_clear_css_refs(cgrp)) {
4308 mutex_unlock(&cgroup_mutex);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004309 /*
4310 * Because someone may call cgroup_wakeup_rmdir_waiter() before
4311 * prepare_to_wait(), we need to check this flag.
4312 */
4313 if (test_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags))
4314 schedule();
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004315 finish_wait(&cgroup_rmdir_waitq, &wait);
4316 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
4317 if (signal_pending(current))
4318 return -EINTR;
4319 goto again;
4320 }
4321 /* NO css_tryget() can success after here. */
4322 finish_wait(&cgroup_rmdir_waitq, &wait);
4323 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004324
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004325 raw_spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07004326 set_bit(CGRP_REMOVED, &cgrp->flags);
4327 if (!list_empty(&cgrp->release_list))
Phil Carmody8d258792011-03-22 16:30:13 -07004328 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004329 raw_spin_unlock(&release_list_lock);
Paul Menage999cd8a2009-01-07 18:08:36 -08004330
Paul Menage999cd8a2009-01-07 18:08:36 -08004331 /* delete this cgroup from parent->children */
Phil Carmody8d258792011-03-22 16:30:13 -07004332 list_del_init(&cgrp->sibling);
Paul Menage999cd8a2009-01-07 18:08:36 -08004333
Tejun Heob0ca5a82012-04-01 12:09:54 -07004334 list_del_init(&cgrp->allcg_node);
4335
Paul Menagebd89aab2007-10-18 23:40:44 -07004336 d = dget(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004337
4338 cgroup_d_remove_dir(d);
4339 dput(d);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004340
Paul Menagebd89aab2007-10-18 23:40:44 -07004341 set_bit(CGRP_RELEASABLE, &parent->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004342 check_for_release(parent);
4343
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08004344 /*
4345 * Unregister events and notify userspace.
4346 * Notify userspace about cgroup removing only after rmdir of cgroup
4347 * directory to avoid race between userspace and kernelspace
4348 */
4349 spin_lock(&cgrp->event_list_lock);
4350 list_for_each_entry_safe(event, tmp, &cgrp->event_list, list) {
4351 list_del(&event->list);
4352 remove_wait_queue(event->wqh, &event->wait);
4353 eventfd_signal(event->eventfd, 1);
4354 schedule_work(&event->remove);
4355 }
4356 spin_unlock(&cgrp->event_list_lock);
4357
Paul Menageddbcc7e2007-10-18 23:39:30 -07004358 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004359 return 0;
4360}
4361
Tejun Heo8e3f6542012-04-01 12:09:55 -07004362static void __init_or_module cgroup_init_cftsets(struct cgroup_subsys *ss)
4363{
4364 INIT_LIST_HEAD(&ss->cftsets);
4365
4366 /*
4367 * base_cftset is embedded in subsys itself, no need to worry about
4368 * deregistration.
4369 */
4370 if (ss->base_cftypes) {
4371 ss->base_cftset.cfts = ss->base_cftypes;
4372 list_add_tail(&ss->base_cftset.node, &ss->cftsets);
4373 }
4374}
4375
Li Zefan06a11922008-04-29 01:00:07 -07004376static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004377{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004378 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08004379
4380 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004381
Tejun Heo8e3f6542012-04-01 12:09:55 -07004382 /* init base cftset */
4383 cgroup_init_cftsets(ss);
4384
Paul Menageddbcc7e2007-10-18 23:39:30 -07004385 /* Create the top cgroup state for this subsystem */
Li Zefan33a68ac2009-01-07 18:07:42 -08004386 list_add(&ss->sibling, &rootnode.subsys_list);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004387 ss->root = &rootnode;
Li Zefan761b3ef2012-01-31 13:47:36 +08004388 css = ss->create(dummytop);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004389 /* We don't handle early failures gracefully */
4390 BUG_ON(IS_ERR(css));
4391 init_cgroup_css(css, ss, dummytop);
4392
Li Zefane8d55fd2008-04-29 01:00:13 -07004393 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07004394 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07004395 * newly registered, all tasks and hence the
4396 * init_css_set is in the subsystem's top cgroup. */
4397 init_css_set.subsys[ss->subsys_id] = dummytop->subsys[ss->subsys_id];
Paul Menageddbcc7e2007-10-18 23:39:30 -07004398
4399 need_forkexit_callback |= ss->fork || ss->exit;
4400
Li Zefane8d55fd2008-04-29 01:00:13 -07004401 /* At system boot, before all subsystems have been
4402 * registered, no tasks have been forked, so we don't
4403 * need to invoke fork callbacks here. */
4404 BUG_ON(!list_empty(&init_task.tasks));
4405
Paul Menageddbcc7e2007-10-18 23:39:30 -07004406 ss->active = 1;
Ben Blume6a11052010-03-10 15:22:09 -08004407
4408 /* this function shouldn't be used with modular subsystems, since they
4409 * need to register a subsys_id, among other things */
4410 BUG_ON(ss->module);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004411}
4412
4413/**
Ben Blume6a11052010-03-10 15:22:09 -08004414 * cgroup_load_subsys: load and register a modular subsystem at runtime
4415 * @ss: the subsystem to load
4416 *
4417 * This function should be called in a modular subsystem's initcall. If the
Thomas Weber88393162010-03-16 11:47:56 +01004418 * subsystem is built as a module, it will be assigned a new subsys_id and set
Ben Blume6a11052010-03-10 15:22:09 -08004419 * up for use. If the subsystem is built-in anyway, work is delegated to the
4420 * simpler cgroup_init_subsys.
4421 */
4422int __init_or_module cgroup_load_subsys(struct cgroup_subsys *ss)
4423{
4424 int i;
4425 struct cgroup_subsys_state *css;
4426
4427 /* check name and function validity */
4428 if (ss->name == NULL || strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN ||
4429 ss->create == NULL || ss->destroy == NULL)
4430 return -EINVAL;
4431
4432 /*
4433 * we don't support callbacks in modular subsystems. this check is
4434 * before the ss->module check for consistency; a subsystem that could
4435 * be a module should still have no callbacks even if the user isn't
4436 * compiling it as one.
4437 */
4438 if (ss->fork || ss->exit)
4439 return -EINVAL;
4440
4441 /*
4442 * an optionally modular subsystem is built-in: we want to do nothing,
4443 * since cgroup_init_subsys will have already taken care of it.
4444 */
4445 if (ss->module == NULL) {
Daniel Wagnerbe45c902012-09-13 09:50:55 +02004446 /* a sanity check */
Ben Blume6a11052010-03-10 15:22:09 -08004447 BUG_ON(subsys[ss->subsys_id] != ss);
4448 return 0;
4449 }
4450
Tejun Heo8e3f6542012-04-01 12:09:55 -07004451 /* init base cftset */
4452 cgroup_init_cftsets(ss);
4453
Ben Blume6a11052010-03-10 15:22:09 -08004454 /*
4455 * need to register a subsys id before anything else - for example,
4456 * init_cgroup_css needs it.
4457 */
4458 mutex_lock(&cgroup_mutex);
4459 /* find the first empty slot in the array */
Daniel Wagnerbe45c902012-09-13 09:50:55 +02004460 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Ben Blume6a11052010-03-10 15:22:09 -08004461 if (subsys[i] == NULL)
4462 break;
4463 }
4464 if (i == CGROUP_SUBSYS_COUNT) {
4465 /* maximum number of subsystems already registered! */
4466 mutex_unlock(&cgroup_mutex);
4467 return -EBUSY;
4468 }
4469 /* assign ourselves the subsys_id */
4470 ss->subsys_id = i;
4471 subsys[i] = ss;
4472
4473 /*
4474 * no ss->create seems to need anything important in the ss struct, so
4475 * this can happen first (i.e. before the rootnode attachment).
4476 */
Li Zefan761b3ef2012-01-31 13:47:36 +08004477 css = ss->create(dummytop);
Ben Blume6a11052010-03-10 15:22:09 -08004478 if (IS_ERR(css)) {
4479 /* failure case - need to deassign the subsys[] slot. */
4480 subsys[i] = NULL;
4481 mutex_unlock(&cgroup_mutex);
4482 return PTR_ERR(css);
4483 }
4484
4485 list_add(&ss->sibling, &rootnode.subsys_list);
4486 ss->root = &rootnode;
4487
4488 /* our new subsystem will be attached to the dummy hierarchy. */
4489 init_cgroup_css(css, ss, dummytop);
4490 /* init_idr must be after init_cgroup_css because it sets css->id. */
4491 if (ss->use_id) {
4492 int ret = cgroup_init_idr(ss, css);
4493 if (ret) {
4494 dummytop->subsys[ss->subsys_id] = NULL;
Li Zefan761b3ef2012-01-31 13:47:36 +08004495 ss->destroy(dummytop);
Ben Blume6a11052010-03-10 15:22:09 -08004496 subsys[i] = NULL;
4497 mutex_unlock(&cgroup_mutex);
4498 return ret;
4499 }
4500 }
4501
4502 /*
4503 * Now we need to entangle the css into the existing css_sets. unlike
4504 * in cgroup_init_subsys, there are now multiple css_sets, so each one
4505 * will need a new pointer to it; done by iterating the css_set_table.
4506 * furthermore, modifying the existing css_sets will corrupt the hash
4507 * table state, so each changed css_set will need its hash recomputed.
4508 * this is all done under the css_set_lock.
4509 */
4510 write_lock(&css_set_lock);
4511 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
4512 struct css_set *cg;
4513 struct hlist_node *node, *tmp;
4514 struct hlist_head *bucket = &css_set_table[i], *new_bucket;
4515
4516 hlist_for_each_entry_safe(cg, node, tmp, bucket, hlist) {
4517 /* skip entries that we already rehashed */
4518 if (cg->subsys[ss->subsys_id])
4519 continue;
4520 /* remove existing entry */
4521 hlist_del(&cg->hlist);
4522 /* set new value */
4523 cg->subsys[ss->subsys_id] = css;
4524 /* recompute hash and restore entry */
4525 new_bucket = css_set_hash(cg->subsys);
4526 hlist_add_head(&cg->hlist, new_bucket);
4527 }
4528 }
4529 write_unlock(&css_set_lock);
4530
Ben Blume6a11052010-03-10 15:22:09 -08004531 ss->active = 1;
4532
Ben Blume6a11052010-03-10 15:22:09 -08004533 /* success! */
4534 mutex_unlock(&cgroup_mutex);
4535 return 0;
4536}
4537EXPORT_SYMBOL_GPL(cgroup_load_subsys);
4538
4539/**
Ben Blumcf5d5942010-03-10 15:22:09 -08004540 * cgroup_unload_subsys: unload a modular subsystem
4541 * @ss: the subsystem to unload
4542 *
4543 * This function should be called in a modular subsystem's exitcall. When this
4544 * function is invoked, the refcount on the subsystem's module will be 0, so
4545 * the subsystem will not be attached to any hierarchy.
4546 */
4547void cgroup_unload_subsys(struct cgroup_subsys *ss)
4548{
4549 struct cg_cgroup_link *link;
4550 struct hlist_head *hhead;
4551
4552 BUG_ON(ss->module == NULL);
4553
4554 /*
4555 * we shouldn't be called if the subsystem is in use, and the use of
4556 * try_module_get in parse_cgroupfs_options should ensure that it
4557 * doesn't start being used while we're killing it off.
4558 */
4559 BUG_ON(ss->root != &rootnode);
4560
4561 mutex_lock(&cgroup_mutex);
4562 /* deassign the subsys_id */
Ben Blumcf5d5942010-03-10 15:22:09 -08004563 subsys[ss->subsys_id] = NULL;
4564
4565 /* remove subsystem from rootnode's list of subsystems */
Phil Carmody8d258792011-03-22 16:30:13 -07004566 list_del_init(&ss->sibling);
Ben Blumcf5d5942010-03-10 15:22:09 -08004567
4568 /*
4569 * disentangle the css from all css_sets attached to the dummytop. as
4570 * in loading, we need to pay our respects to the hashtable gods.
4571 */
4572 write_lock(&css_set_lock);
4573 list_for_each_entry(link, &dummytop->css_sets, cgrp_link_list) {
4574 struct css_set *cg = link->cg;
4575
4576 hlist_del(&cg->hlist);
4577 BUG_ON(!cg->subsys[ss->subsys_id]);
4578 cg->subsys[ss->subsys_id] = NULL;
4579 hhead = css_set_hash(cg->subsys);
4580 hlist_add_head(&cg->hlist, hhead);
4581 }
4582 write_unlock(&css_set_lock);
4583
4584 /*
4585 * remove subsystem's css from the dummytop and free it - need to free
4586 * before marking as null because ss->destroy needs the cgrp->subsys
4587 * pointer to find their state. note that this also takes care of
4588 * freeing the css_id.
4589 */
Li Zefan761b3ef2012-01-31 13:47:36 +08004590 ss->destroy(dummytop);
Ben Blumcf5d5942010-03-10 15:22:09 -08004591 dummytop->subsys[ss->subsys_id] = NULL;
4592
4593 mutex_unlock(&cgroup_mutex);
4594}
4595EXPORT_SYMBOL_GPL(cgroup_unload_subsys);
4596
4597/**
Li Zefana043e3b2008-02-23 15:24:09 -08004598 * cgroup_init_early - cgroup initialization at system boot
4599 *
4600 * Initialize cgroups at system boot, and initialize any
4601 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004602 */
4603int __init cgroup_init_early(void)
4604{
4605 int i;
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07004606 atomic_set(&init_css_set.refcount, 1);
Paul Menage817929e2007-10-18 23:39:36 -07004607 INIT_LIST_HEAD(&init_css_set.cg_links);
4608 INIT_LIST_HEAD(&init_css_set.tasks);
Li Zefan472b1052008-04-29 01:00:11 -07004609 INIT_HLIST_NODE(&init_css_set.hlist);
Paul Menage817929e2007-10-18 23:39:36 -07004610 css_set_count = 1;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004611 init_cgroup_root(&rootnode);
Paul Menage817929e2007-10-18 23:39:36 -07004612 root_count = 1;
4613 init_task.cgroups = &init_css_set;
4614
4615 init_css_set_link.cg = &init_css_set;
Paul Menage7717f7b2009-09-23 15:56:22 -07004616 init_css_set_link.cgrp = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -07004617 list_add(&init_css_set_link.cgrp_link_list,
Paul Menage817929e2007-10-18 23:39:36 -07004618 &rootnode.top_cgroup.css_sets);
4619 list_add(&init_css_set_link.cg_link_list,
4620 &init_css_set.cg_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004621
Li Zefan472b1052008-04-29 01:00:11 -07004622 for (i = 0; i < CSS_SET_TABLE_SIZE; i++)
4623 INIT_HLIST_HEAD(&css_set_table[i]);
4624
Daniel Wagnerbe45c902012-09-13 09:50:55 +02004625 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004626 struct cgroup_subsys *ss = subsys[i];
4627
Daniel Wagnerbe45c902012-09-13 09:50:55 +02004628 /* at bootup time, we don't worry about modular subsystems */
4629 if (!ss || ss->module)
4630 continue;
4631
Paul Menageddbcc7e2007-10-18 23:39:30 -07004632 BUG_ON(!ss->name);
4633 BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN);
4634 BUG_ON(!ss->create);
4635 BUG_ON(!ss->destroy);
4636 if (ss->subsys_id != i) {
Diego Callejacfe36bd2007-11-14 16:58:54 -08004637 printk(KERN_ERR "cgroup: Subsys %s id == %d\n",
Paul Menageddbcc7e2007-10-18 23:39:30 -07004638 ss->name, ss->subsys_id);
4639 BUG();
4640 }
4641
4642 if (ss->early_init)
4643 cgroup_init_subsys(ss);
4644 }
4645 return 0;
4646}
4647
4648/**
Li Zefana043e3b2008-02-23 15:24:09 -08004649 * cgroup_init - cgroup initialization
4650 *
4651 * Register cgroup filesystem and /proc file, and initialize
4652 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004653 */
4654int __init cgroup_init(void)
4655{
4656 int err;
4657 int i;
Li Zefan472b1052008-04-29 01:00:11 -07004658 struct hlist_head *hhead;
Paul Menagea4243162007-10-18 23:39:35 -07004659
4660 err = bdi_init(&cgroup_backing_dev_info);
4661 if (err)
4662 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004663
Daniel Wagnerbe45c902012-09-13 09:50:55 +02004664 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004665 struct cgroup_subsys *ss = subsys[i];
Daniel Wagnerbe45c902012-09-13 09:50:55 +02004666
4667 /* at bootup time, we don't worry about modular subsystems */
4668 if (!ss || ss->module)
4669 continue;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004670 if (!ss->early_init)
4671 cgroup_init_subsys(ss);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004672 if (ss->use_id)
Ben Blume6a11052010-03-10 15:22:09 -08004673 cgroup_init_idr(ss, init_css_set.subsys[ss->subsys_id]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004674 }
4675
Li Zefan472b1052008-04-29 01:00:11 -07004676 /* Add init_css_set to the hash table */
4677 hhead = css_set_hash(init_css_set.subsys);
4678 hlist_add_head(&init_css_set.hlist, hhead);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004679 BUG_ON(!init_root_id(&rootnode));
Greg KH676db4a2010-08-05 13:53:35 -07004680
4681 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
4682 if (!cgroup_kobj) {
4683 err = -ENOMEM;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004684 goto out;
Greg KH676db4a2010-08-05 13:53:35 -07004685 }
4686
4687 err = register_filesystem(&cgroup_fs_type);
4688 if (err < 0) {
4689 kobject_put(cgroup_kobj);
4690 goto out;
4691 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004692
Li Zefan46ae2202008-04-29 01:00:08 -07004693 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Paul Menagea4243162007-10-18 23:39:35 -07004694
Paul Menageddbcc7e2007-10-18 23:39:30 -07004695out:
Paul Menagea4243162007-10-18 23:39:35 -07004696 if (err)
4697 bdi_destroy(&cgroup_backing_dev_info);
4698
Paul Menageddbcc7e2007-10-18 23:39:30 -07004699 return err;
4700}
Paul Menageb4f48b62007-10-18 23:39:33 -07004701
Paul Menagea4243162007-10-18 23:39:35 -07004702/*
4703 * proc_cgroup_show()
4704 * - Print task's cgroup paths into seq_file, one line for each hierarchy
4705 * - Used for /proc/<pid>/cgroup.
4706 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
4707 * doesn't really matter if tsk->cgroup changes after we read it,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004708 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
Paul Menagea4243162007-10-18 23:39:35 -07004709 * anyway. No need to check that tsk->cgroup != NULL, thanks to
4710 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
4711 * cgroup to top_cgroup.
4712 */
4713
4714/* TODO: Use a proper seq_file iterator */
4715static int proc_cgroup_show(struct seq_file *m, void *v)
4716{
4717 struct pid *pid;
4718 struct task_struct *tsk;
4719 char *buf;
4720 int retval;
4721 struct cgroupfs_root *root;
4722
4723 retval = -ENOMEM;
4724 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
4725 if (!buf)
4726 goto out;
4727
4728 retval = -ESRCH;
4729 pid = m->private;
4730 tsk = get_pid_task(pid, PIDTYPE_PID);
4731 if (!tsk)
4732 goto out_free;
4733
4734 retval = 0;
4735
4736 mutex_lock(&cgroup_mutex);
4737
Li Zefane5f6a862009-01-07 18:07:41 -08004738 for_each_active_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07004739 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07004740 struct cgroup *cgrp;
Paul Menagea4243162007-10-18 23:39:35 -07004741 int count = 0;
4742
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004743 seq_printf(m, "%d:", root->hierarchy_id);
Paul Menagea4243162007-10-18 23:39:35 -07004744 for_each_subsys(root, ss)
4745 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07004746 if (strlen(root->name))
4747 seq_printf(m, "%sname=%s", count ? "," : "",
4748 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07004749 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07004750 cgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07004751 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
Paul Menagea4243162007-10-18 23:39:35 -07004752 if (retval < 0)
4753 goto out_unlock;
4754 seq_puts(m, buf);
4755 seq_putc(m, '\n');
4756 }
4757
4758out_unlock:
4759 mutex_unlock(&cgroup_mutex);
4760 put_task_struct(tsk);
4761out_free:
4762 kfree(buf);
4763out:
4764 return retval;
4765}
4766
4767static int cgroup_open(struct inode *inode, struct file *file)
4768{
4769 struct pid *pid = PROC_I(inode)->pid;
4770 return single_open(file, proc_cgroup_show, pid);
4771}
4772
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004773const struct file_operations proc_cgroup_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004774 .open = cgroup_open,
4775 .read = seq_read,
4776 .llseek = seq_lseek,
4777 .release = single_release,
4778};
4779
4780/* Display information about each subsystem and each hierarchy */
4781static int proc_cgroupstats_show(struct seq_file *m, void *v)
4782{
4783 int i;
Paul Menagea4243162007-10-18 23:39:35 -07004784
Paul Menage8bab8dd2008-04-04 14:29:57 -07004785 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08004786 /*
4787 * ideally we don't want subsystems moving around while we do this.
4788 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
4789 * subsys/hierarchy state.
4790 */
Paul Menagea4243162007-10-18 23:39:35 -07004791 mutex_lock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07004792 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
4793 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08004794 if (ss == NULL)
4795 continue;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004796 seq_printf(m, "%s\t%d\t%d\t%d\n",
4797 ss->name, ss->root->hierarchy_id,
Paul Menage8bab8dd2008-04-04 14:29:57 -07004798 ss->root->number_of_cgroups, !ss->disabled);
Paul Menagea4243162007-10-18 23:39:35 -07004799 }
4800 mutex_unlock(&cgroup_mutex);
4801 return 0;
4802}
4803
4804static int cgroupstats_open(struct inode *inode, struct file *file)
4805{
Al Viro9dce07f2008-03-29 03:07:28 +00004806 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07004807}
4808
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004809static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004810 .open = cgroupstats_open,
4811 .read = seq_read,
4812 .llseek = seq_lseek,
4813 .release = single_release,
4814};
4815
Paul Menageb4f48b62007-10-18 23:39:33 -07004816/**
4817 * cgroup_fork - attach newly forked task to its parents cgroup.
Li Zefana043e3b2008-02-23 15:24:09 -08004818 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07004819 *
4820 * Description: A task inherits its parent's cgroup at fork().
4821 *
4822 * A pointer to the shared css_set was automatically copied in
4823 * fork.c by dup_task_struct(). However, we ignore that copy, since
Frederic Weisbecker7e381b0e2011-12-21 20:03:19 +01004824 * it was not made under the protection of RCU, cgroup_mutex or
4825 * threadgroup_change_begin(), so it might no longer be a valid
4826 * cgroup pointer. cgroup_attach_task() might have already changed
4827 * current->cgroups, allowing the previously referenced cgroup
4828 * group to be removed and freed.
4829 *
4830 * Outside the pointer validity we also need to process the css_set
4831 * inheritance between threadgoup_change_begin() and
4832 * threadgoup_change_end(), this way there is no leak in any process
4833 * wide migration performed by cgroup_attach_proc() that could otherwise
4834 * miss a thread because it is too early or too late in the fork stage.
Paul Menageb4f48b62007-10-18 23:39:33 -07004835 *
4836 * At the point that cgroup_fork() is called, 'current' is the parent
4837 * task, and the passed argument 'child' points to the child task.
4838 */
4839void cgroup_fork(struct task_struct *child)
4840{
Frederic Weisbecker7e381b0e2011-12-21 20:03:19 +01004841 /*
4842 * We don't need to task_lock() current because current->cgroups
4843 * can't be changed concurrently here. The parent obviously hasn't
4844 * exited and called cgroup_exit(), and we are synchronized against
4845 * cgroup migration through threadgroup_change_begin().
4846 */
Paul Menage817929e2007-10-18 23:39:36 -07004847 child->cgroups = current->cgroups;
4848 get_css_set(child->cgroups);
Paul Menage817929e2007-10-18 23:39:36 -07004849 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07004850}
4851
4852/**
Li Zefana043e3b2008-02-23 15:24:09 -08004853 * cgroup_fork_callbacks - run fork callbacks
4854 * @child: the new task
4855 *
4856 * Called on a new task very soon before adding it to the
4857 * tasklist. No need to take any locks since no-one can
4858 * be operating on this task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004859 */
4860void cgroup_fork_callbacks(struct task_struct *child)
4861{
4862 if (need_forkexit_callback) {
4863 int i;
Daniel Wagnerbe45c902012-09-13 09:50:55 +02004864 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Paul Menageb4f48b62007-10-18 23:39:33 -07004865 struct cgroup_subsys *ss = subsys[i];
Daniel Wagnerbe45c902012-09-13 09:50:55 +02004866
4867 /*
4868 * forkexit callbacks are only supported for
4869 * builtin subsystems.
4870 */
4871 if (!ss || ss->module)
4872 continue;
4873
Paul Menageb4f48b62007-10-18 23:39:33 -07004874 if (ss->fork)
Li Zefan761b3ef2012-01-31 13:47:36 +08004875 ss->fork(child);
Paul Menageb4f48b62007-10-18 23:39:33 -07004876 }
4877 }
4878}
4879
4880/**
Li Zefana043e3b2008-02-23 15:24:09 -08004881 * cgroup_post_fork - called on a new task after adding it to the task list
4882 * @child: the task in question
4883 *
4884 * Adds the task to the list running through its css_set if necessary.
4885 * Has to be after the task is visible on the task list in case we race
4886 * with the first call to cgroup_iter_start() - to guarantee that the
4887 * new task ends up on its list.
4888 */
Paul Menage817929e2007-10-18 23:39:36 -07004889void cgroup_post_fork(struct task_struct *child)
4890{
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01004891 /*
4892 * use_task_css_set_links is set to 1 before we walk the tasklist
4893 * under the tasklist_lock and we read it here after we added the child
4894 * to the tasklist under the tasklist_lock as well. If the child wasn't
4895 * yet in the tasklist when we walked through it from
4896 * cgroup_enable_task_cg_lists(), then use_task_css_set_links value
4897 * should be visible now due to the paired locking and barriers implied
4898 * by LOCK/UNLOCK: it is written before the tasklist_lock unlock
4899 * in cgroup_enable_task_cg_lists() and read here after the tasklist_lock
4900 * lock on fork.
4901 */
Paul Menage817929e2007-10-18 23:39:36 -07004902 if (use_task_css_set_links) {
4903 write_lock(&css_set_lock);
Frederic Weisbecker7e3aa302011-12-23 04:25:23 +01004904 if (list_empty(&child->cg_list)) {
4905 /*
4906 * It's safe to use child->cgroups without task_lock()
4907 * here because we are protected through
4908 * threadgroup_change_begin() against concurrent
4909 * css_set change in cgroup_task_migrate(). Also
4910 * the task can't exit at that point until
4911 * wake_up_new_task() is called, so we are protected
4912 * against cgroup_exit() setting child->cgroup to
4913 * init_css_set.
4914 */
Paul Menage817929e2007-10-18 23:39:36 -07004915 list_add(&child->cg_list, &child->cgroups->tasks);
Frederic Weisbecker7e3aa302011-12-23 04:25:23 +01004916 }
Paul Menage817929e2007-10-18 23:39:36 -07004917 write_unlock(&css_set_lock);
4918 }
4919}
4920/**
Paul Menageb4f48b62007-10-18 23:39:33 -07004921 * cgroup_exit - detach cgroup from exiting task
4922 * @tsk: pointer to task_struct of exiting process
Li Zefana043e3b2008-02-23 15:24:09 -08004923 * @run_callback: run exit callbacks?
Paul Menageb4f48b62007-10-18 23:39:33 -07004924 *
4925 * Description: Detach cgroup from @tsk and release it.
4926 *
4927 * Note that cgroups marked notify_on_release force every task in
4928 * them to take the global cgroup_mutex mutex when exiting.
4929 * This could impact scaling on very large systems. Be reluctant to
4930 * use notify_on_release cgroups where very high task exit scaling
4931 * is required on large systems.
4932 *
4933 * the_top_cgroup_hack:
4934 *
4935 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
4936 *
4937 * We call cgroup_exit() while the task is still competent to
4938 * handle notify_on_release(), then leave the task attached to the
4939 * root cgroup in each hierarchy for the remainder of its exit.
4940 *
4941 * To do this properly, we would increment the reference count on
4942 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
4943 * code we would add a second cgroup function call, to drop that
4944 * reference. This would just create an unnecessary hot spot on
4945 * the top_cgroup reference count, to no avail.
4946 *
4947 * Normally, holding a reference to a cgroup without bumping its
4948 * count is unsafe. The cgroup could go away, or someone could
4949 * attach us to a different cgroup, decrementing the count on
4950 * the first cgroup that we never incremented. But in this case,
4951 * top_cgroup isn't going away, and either task has PF_EXITING set,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004952 * which wards off any cgroup_attach_task() attempts, or task is a failed
4953 * fork, never visible to cgroup_attach_task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004954 */
4955void cgroup_exit(struct task_struct *tsk, int run_callbacks)
4956{
Paul Menage817929e2007-10-18 23:39:36 -07004957 struct css_set *cg;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004958 int i;
Paul Menage817929e2007-10-18 23:39:36 -07004959
4960 /*
4961 * Unlink from the css_set task list if necessary.
4962 * Optimistically check cg_list before taking
4963 * css_set_lock
4964 */
4965 if (!list_empty(&tsk->cg_list)) {
4966 write_lock(&css_set_lock);
4967 if (!list_empty(&tsk->cg_list))
Phil Carmody8d258792011-03-22 16:30:13 -07004968 list_del_init(&tsk->cg_list);
Paul Menage817929e2007-10-18 23:39:36 -07004969 write_unlock(&css_set_lock);
4970 }
4971
Paul Menageb4f48b62007-10-18 23:39:33 -07004972 /* Reassign the task to the init_css_set. */
4973 task_lock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07004974 cg = tsk->cgroups;
4975 tsk->cgroups = &init_css_set;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004976
4977 if (run_callbacks && need_forkexit_callback) {
Daniel Wagnerbe45c902012-09-13 09:50:55 +02004978 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004979 struct cgroup_subsys *ss = subsys[i];
Daniel Wagnerbe45c902012-09-13 09:50:55 +02004980
4981 /* modular subsystems can't use callbacks */
4982 if (!ss || ss->module)
4983 continue;
4984
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004985 if (ss->exit) {
4986 struct cgroup *old_cgrp =
4987 rcu_dereference_raw(cg->subsys[i])->cgroup;
4988 struct cgroup *cgrp = task_cgroup(tsk, i);
Li Zefan761b3ef2012-01-31 13:47:36 +08004989 ss->exit(cgrp, old_cgrp, tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004990 }
4991 }
4992 }
Paul Menageb4f48b62007-10-18 23:39:33 -07004993 task_unlock(tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004994
Paul Menage817929e2007-10-18 23:39:36 -07004995 if (cg)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004996 put_css_set_taskexit(cg);
Paul Menageb4f48b62007-10-18 23:39:33 -07004997}
Paul Menage697f4162007-10-18 23:39:34 -07004998
4999/**
Grzegorz Nosek313e9242009-04-02 16:57:23 -07005000 * cgroup_is_descendant - see if @cgrp is a descendant of @task's cgrp
Li Zefana043e3b2008-02-23 15:24:09 -08005001 * @cgrp: the cgroup in question
Grzegorz Nosek313e9242009-04-02 16:57:23 -07005002 * @task: the task in question
Li Zefana043e3b2008-02-23 15:24:09 -08005003 *
Grzegorz Nosek313e9242009-04-02 16:57:23 -07005004 * See if @cgrp is a descendant of @task's cgroup in the appropriate
5005 * hierarchy.
Paul Menage697f4162007-10-18 23:39:34 -07005006 *
5007 * If we are sending in dummytop, then presumably we are creating
5008 * the top cgroup in the subsystem.
5009 *
5010 * Called only by the ns (nsproxy) cgroup.
5011 */
Grzegorz Nosek313e9242009-04-02 16:57:23 -07005012int cgroup_is_descendant(const struct cgroup *cgrp, struct task_struct *task)
Paul Menage697f4162007-10-18 23:39:34 -07005013{
5014 int ret;
5015 struct cgroup *target;
Paul Menage697f4162007-10-18 23:39:34 -07005016
Paul Menagebd89aab2007-10-18 23:40:44 -07005017 if (cgrp == dummytop)
Paul Menage697f4162007-10-18 23:39:34 -07005018 return 1;
5019
Paul Menage7717f7b2009-09-23 15:56:22 -07005020 target = task_cgroup_from_root(task, cgrp->root);
Paul Menagebd89aab2007-10-18 23:40:44 -07005021 while (cgrp != target && cgrp!= cgrp->top_cgroup)
5022 cgrp = cgrp->parent;
5023 ret = (cgrp == target);
Paul Menage697f4162007-10-18 23:39:34 -07005024 return ret;
5025}
Paul Menage81a6a5c2007-10-18 23:39:38 -07005026
Paul Menagebd89aab2007-10-18 23:40:44 -07005027static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07005028{
5029 /* All of these checks rely on RCU to keep the cgroup
5030 * structure alive */
Paul Menagebd89aab2007-10-18 23:40:44 -07005031 if (cgroup_is_releasable(cgrp) && !atomic_read(&cgrp->count)
5032 && list_empty(&cgrp->children) && !cgroup_has_css_refs(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07005033 /* Control Group is currently removeable. If it's not
5034 * already queued for a userspace notification, queue
5035 * it now */
5036 int need_schedule_work = 0;
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005037 raw_spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07005038 if (!cgroup_is_removed(cgrp) &&
5039 list_empty(&cgrp->release_list)) {
5040 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005041 need_schedule_work = 1;
5042 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005043 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005044 if (need_schedule_work)
5045 schedule_work(&release_agent_work);
5046 }
5047}
5048
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -08005049/* Caller must verify that the css is not for root cgroup */
Tejun Heo28b4c272012-04-01 12:09:56 -07005050bool __css_tryget(struct cgroup_subsys_state *css)
5051{
5052 do {
5053 int v = css_refcnt(css);
5054
5055 if (atomic_cmpxchg(&css->refcnt, v, v + 1) == v)
5056 return true;
5057 cpu_relax();
5058 } while (!test_bit(CSS_REMOVED, &css->flags));
5059
5060 return false;
5061}
5062EXPORT_SYMBOL_GPL(__css_tryget);
5063
5064/* Caller must verify that the css is not for root cgroup */
5065void __css_put(struct cgroup_subsys_state *css)
Paul Menage81a6a5c2007-10-18 23:39:38 -07005066{
Paul Menagebd89aab2007-10-18 23:40:44 -07005067 struct cgroup *cgrp = css->cgroup;
Salman Qazi8e3bbf42012-06-14 14:55:30 -07005068 int v;
Tejun Heo28b4c272012-04-01 12:09:56 -07005069
Paul Menage81a6a5c2007-10-18 23:39:38 -07005070 rcu_read_lock();
Salman Qazi8e3bbf42012-06-14 14:55:30 -07005071 v = css_unbias_refcnt(atomic_dec_return(&css->refcnt));
5072
5073 switch (v) {
Tejun Heo48ddbe12012-04-01 12:09:56 -07005074 case 1:
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07005075 if (notify_on_release(cgrp)) {
5076 set_bit(CGRP_RELEASABLE, &cgrp->flags);
5077 check_for_release(cgrp);
5078 }
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07005079 cgroup_wakeup_rmdir_waiter(cgrp);
Tejun Heo48ddbe12012-04-01 12:09:56 -07005080 break;
5081 case 0:
5082 if (!test_bit(CSS_CLEAR_CSS_REFS, &css->flags))
5083 schedule_work(&css->dput_work);
5084 break;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005085 }
5086 rcu_read_unlock();
5087}
Ben Blum67523c42010-03-10 15:22:11 -08005088EXPORT_SYMBOL_GPL(__css_put);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005089
5090/*
5091 * Notify userspace when a cgroup is released, by running the
5092 * configured release agent with the name of the cgroup (path
5093 * relative to the root of cgroup file system) as the argument.
5094 *
5095 * Most likely, this user command will try to rmdir this cgroup.
5096 *
5097 * This races with the possibility that some other task will be
5098 * attached to this cgroup before it is removed, or that some other
5099 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
5100 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
5101 * unused, and this cgroup will be reprieved from its death sentence,
5102 * to continue to serve a useful existence. Next time it's released,
5103 * we will get notified again, if it still has 'notify_on_release' set.
5104 *
5105 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
5106 * means only wait until the task is successfully execve()'d. The
5107 * separate release agent task is forked by call_usermodehelper(),
5108 * then control in this thread returns here, without waiting for the
5109 * release agent task. We don't bother to wait because the caller of
5110 * this routine has no use for the exit status of the release agent
5111 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07005112 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07005113static void cgroup_release_agent(struct work_struct *work)
5114{
5115 BUG_ON(work != &release_agent_work);
5116 mutex_lock(&cgroup_mutex);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005117 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005118 while (!list_empty(&release_list)) {
5119 char *argv[3], *envp[3];
5120 int i;
Paul Menagee788e062008-07-25 01:46:59 -07005121 char *pathbuf = NULL, *agentbuf = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07005122 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07005123 struct cgroup,
5124 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07005125 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005126 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005127 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paul Menagee788e062008-07-25 01:46:59 -07005128 if (!pathbuf)
5129 goto continue_free;
5130 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0)
5131 goto continue_free;
5132 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
5133 if (!agentbuf)
5134 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005135
5136 i = 0;
Paul Menagee788e062008-07-25 01:46:59 -07005137 argv[i++] = agentbuf;
5138 argv[i++] = pathbuf;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005139 argv[i] = NULL;
5140
5141 i = 0;
5142 /* minimal command environment */
5143 envp[i++] = "HOME=/";
5144 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
5145 envp[i] = NULL;
5146
5147 /* Drop the lock while we invoke the usermode helper,
5148 * since the exec could involve hitting disk and hence
5149 * be a slow process */
5150 mutex_unlock(&cgroup_mutex);
5151 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005152 mutex_lock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07005153 continue_free:
5154 kfree(pathbuf);
5155 kfree(agentbuf);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005156 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005157 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005158 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005159 mutex_unlock(&cgroup_mutex);
5160}
Paul Menage8bab8dd2008-04-04 14:29:57 -07005161
5162static int __init cgroup_disable(char *str)
5163{
5164 int i;
5165 char *token;
5166
5167 while ((token = strsep(&str, ",")) != NULL) {
5168 if (!*token)
5169 continue;
Daniel Wagnerbe45c902012-09-13 09:50:55 +02005170 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07005171 struct cgroup_subsys *ss = subsys[i];
5172
Daniel Wagnerbe45c902012-09-13 09:50:55 +02005173 /*
5174 * cgroup_disable, being at boot time, can't
5175 * know about module subsystems, so we don't
5176 * worry about them.
5177 */
5178 if (!ss || ss->module)
5179 continue;
5180
Paul Menage8bab8dd2008-04-04 14:29:57 -07005181 if (!strcmp(token, ss->name)) {
5182 ss->disabled = 1;
5183 printk(KERN_INFO "Disabling %s control group"
5184 " subsystem\n", ss->name);
5185 break;
5186 }
5187 }
5188 }
5189 return 1;
5190}
5191__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005192
5193/*
5194 * Functons for CSS ID.
5195 */
5196
5197/*
5198 *To get ID other than 0, this should be called when !cgroup_is_removed().
5199 */
5200unsigned short css_id(struct cgroup_subsys_state *css)
5201{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07005202 struct css_id *cssid;
5203
5204 /*
5205 * This css_id() can return correct value when somone has refcnt
5206 * on this or this is under rcu_read_lock(). Once css->id is allocated,
5207 * it's unchanged until freed.
5208 */
Tejun Heo28b4c272012-04-01 12:09:56 -07005209 cssid = rcu_dereference_check(css->id, css_refcnt(css));
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005210
5211 if (cssid)
5212 return cssid->id;
5213 return 0;
5214}
Ben Blum67523c42010-03-10 15:22:11 -08005215EXPORT_SYMBOL_GPL(css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005216
5217unsigned short css_depth(struct cgroup_subsys_state *css)
5218{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07005219 struct css_id *cssid;
5220
Tejun Heo28b4c272012-04-01 12:09:56 -07005221 cssid = rcu_dereference_check(css->id, css_refcnt(css));
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005222
5223 if (cssid)
5224 return cssid->depth;
5225 return 0;
5226}
Ben Blum67523c42010-03-10 15:22:11 -08005227EXPORT_SYMBOL_GPL(css_depth);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005228
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07005229/**
5230 * css_is_ancestor - test "root" css is an ancestor of "child"
5231 * @child: the css to be tested.
5232 * @root: the css supporsed to be an ancestor of the child.
5233 *
5234 * Returns true if "root" is an ancestor of "child" in its hierarchy. Because
Johannes Weiner91c637342012-05-29 15:06:24 -07005235 * this function reads css->id, the caller must hold rcu_read_lock().
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07005236 * But, considering usual usage, the csses should be valid objects after test.
5237 * Assuming that the caller will do some action to the child if this returns
5238 * returns true, the caller must take "child";s reference count.
5239 * If "child" is valid object and this returns true, "root" is valid, too.
5240 */
5241
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005242bool css_is_ancestor(struct cgroup_subsys_state *child,
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07005243 const struct cgroup_subsys_state *root)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005244{
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07005245 struct css_id *child_id;
5246 struct css_id *root_id;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005247
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07005248 child_id = rcu_dereference(child->id);
Johannes Weiner91c637342012-05-29 15:06:24 -07005249 if (!child_id)
5250 return false;
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07005251 root_id = rcu_dereference(root->id);
Johannes Weiner91c637342012-05-29 15:06:24 -07005252 if (!root_id)
5253 return false;
5254 if (child_id->depth < root_id->depth)
5255 return false;
5256 if (child_id->stack[root_id->depth] != root_id->id)
5257 return false;
5258 return true;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005259}
5260
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005261void free_css_id(struct cgroup_subsys *ss, struct cgroup_subsys_state *css)
5262{
5263 struct css_id *id = css->id;
5264 /* When this is called before css_id initialization, id can be NULL */
5265 if (!id)
5266 return;
5267
5268 BUG_ON(!ss->use_id);
5269
5270 rcu_assign_pointer(id->css, NULL);
5271 rcu_assign_pointer(css->id, NULL);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005272 spin_lock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005273 idr_remove(&ss->idr, id->id);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005274 spin_unlock(&ss->id_lock);
Lai Jiangshan025cea92011-03-15 17:56:10 +08005275 kfree_rcu(id, rcu_head);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005276}
Ben Blum67523c42010-03-10 15:22:11 -08005277EXPORT_SYMBOL_GPL(free_css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005278
5279/*
5280 * This is called by init or create(). Then, calls to this function are
5281 * always serialized (By cgroup_mutex() at create()).
5282 */
5283
5284static struct css_id *get_new_cssid(struct cgroup_subsys *ss, int depth)
5285{
5286 struct css_id *newid;
5287 int myid, error, size;
5288
5289 BUG_ON(!ss->use_id);
5290
5291 size = sizeof(*newid) + sizeof(unsigned short) * (depth + 1);
5292 newid = kzalloc(size, GFP_KERNEL);
5293 if (!newid)
5294 return ERR_PTR(-ENOMEM);
5295 /* get id */
5296 if (unlikely(!idr_pre_get(&ss->idr, GFP_KERNEL))) {
5297 error = -ENOMEM;
5298 goto err_out;
5299 }
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005300 spin_lock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005301 /* Don't use 0. allocates an ID of 1-65535 */
5302 error = idr_get_new_above(&ss->idr, newid, 1, &myid);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005303 spin_unlock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005304
5305 /* Returns error when there are no free spaces for new ID.*/
5306 if (error) {
5307 error = -ENOSPC;
5308 goto err_out;
5309 }
5310 if (myid > CSS_ID_MAX)
5311 goto remove_idr;
5312
5313 newid->id = myid;
5314 newid->depth = depth;
5315 return newid;
5316remove_idr:
5317 error = -ENOSPC;
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005318 spin_lock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005319 idr_remove(&ss->idr, myid);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005320 spin_unlock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005321err_out:
5322 kfree(newid);
5323 return ERR_PTR(error);
5324
5325}
5326
Ben Blume6a11052010-03-10 15:22:09 -08005327static int __init_or_module cgroup_init_idr(struct cgroup_subsys *ss,
5328 struct cgroup_subsys_state *rootcss)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005329{
5330 struct css_id *newid;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005331
Hugh Dickins42aee6c2012-03-21 16:34:21 -07005332 spin_lock_init(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005333 idr_init(&ss->idr);
5334
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005335 newid = get_new_cssid(ss, 0);
5336 if (IS_ERR(newid))
5337 return PTR_ERR(newid);
5338
5339 newid->stack[0] = newid->id;
5340 newid->css = rootcss;
5341 rootcss->id = newid;
5342 return 0;
5343}
5344
5345static int alloc_css_id(struct cgroup_subsys *ss, struct cgroup *parent,
5346 struct cgroup *child)
5347{
5348 int subsys_id, i, depth = 0;
5349 struct cgroup_subsys_state *parent_css, *child_css;
Li Zefanfae9c792010-04-22 17:30:00 +08005350 struct css_id *child_id, *parent_id;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005351
5352 subsys_id = ss->subsys_id;
5353 parent_css = parent->subsys[subsys_id];
5354 child_css = child->subsys[subsys_id];
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005355 parent_id = parent_css->id;
Greg Thelen94b3dd02010-06-04 14:15:03 -07005356 depth = parent_id->depth + 1;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005357
5358 child_id = get_new_cssid(ss, depth);
5359 if (IS_ERR(child_id))
5360 return PTR_ERR(child_id);
5361
5362 for (i = 0; i < depth; i++)
5363 child_id->stack[i] = parent_id->stack[i];
5364 child_id->stack[depth] = child_id->id;
5365 /*
5366 * child_id->css pointer will be set after this cgroup is available
5367 * see cgroup_populate_dir()
5368 */
5369 rcu_assign_pointer(child_css->id, child_id);
5370
5371 return 0;
5372}
5373
5374/**
5375 * css_lookup - lookup css by id
5376 * @ss: cgroup subsys to be looked into.
5377 * @id: the id
5378 *
5379 * Returns pointer to cgroup_subsys_state if there is valid one with id.
5380 * NULL if not. Should be called under rcu_read_lock()
5381 */
5382struct cgroup_subsys_state *css_lookup(struct cgroup_subsys *ss, int id)
5383{
5384 struct css_id *cssid = NULL;
5385
5386 BUG_ON(!ss->use_id);
5387 cssid = idr_find(&ss->idr, id);
5388
5389 if (unlikely(!cssid))
5390 return NULL;
5391
5392 return rcu_dereference(cssid->css);
5393}
Ben Blum67523c42010-03-10 15:22:11 -08005394EXPORT_SYMBOL_GPL(css_lookup);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005395
5396/**
5397 * css_get_next - lookup next cgroup under specified hierarchy.
5398 * @ss: pointer to subsystem
5399 * @id: current position of iteration.
5400 * @root: pointer to css. search tree under this.
5401 * @foundid: position of found object.
5402 *
5403 * Search next css under the specified hierarchy of rootid. Calling under
5404 * rcu_read_lock() is necessary. Returns NULL if it reaches the end.
5405 */
5406struct cgroup_subsys_state *
5407css_get_next(struct cgroup_subsys *ss, int id,
5408 struct cgroup_subsys_state *root, int *foundid)
5409{
5410 struct cgroup_subsys_state *ret = NULL;
5411 struct css_id *tmp;
5412 int tmpid;
5413 int rootid = css_id(root);
5414 int depth = css_depth(root);
5415
5416 if (!rootid)
5417 return NULL;
5418
5419 BUG_ON(!ss->use_id);
Hugh Dickinsca464d62012-03-21 16:34:21 -07005420 WARN_ON_ONCE(!rcu_read_lock_held());
5421
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005422 /* fill start point for scan */
5423 tmpid = id;
5424 while (1) {
5425 /*
5426 * scan next entry from bitmap(tree), tmpid is updated after
5427 * idr_get_next().
5428 */
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005429 tmp = idr_get_next(&ss->idr, &tmpid);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005430 if (!tmp)
5431 break;
5432 if (tmp->depth >= depth && tmp->stack[depth] == rootid) {
5433 ret = rcu_dereference(tmp->css);
5434 if (ret) {
5435 *foundid = tmpid;
5436 break;
5437 }
5438 }
5439 /* continue to scan from next id */
5440 tmpid = tmpid + 1;
5441 }
5442 return ret;
5443}
5444
Stephane Eraniane5d13672011-02-14 11:20:01 +02005445/*
5446 * get corresponding css from file open on cgroupfs directory
5447 */
5448struct cgroup_subsys_state *cgroup_css_from_dir(struct file *f, int id)
5449{
5450 struct cgroup *cgrp;
5451 struct inode *inode;
5452 struct cgroup_subsys_state *css;
5453
5454 inode = f->f_dentry->d_inode;
5455 /* check in cgroup filesystem dir */
5456 if (inode->i_op != &cgroup_dir_inode_operations)
5457 return ERR_PTR(-EBADF);
5458
5459 if (id < 0 || id >= CGROUP_SUBSYS_COUNT)
5460 return ERR_PTR(-EINVAL);
5461
5462 /* get cgroup */
5463 cgrp = __d_cgrp(f->f_dentry);
5464 css = cgrp->subsys[id];
5465 return css ? css : ERR_PTR(-ENOENT);
5466}
5467
Paul Menagefe693432009-09-23 15:56:20 -07005468#ifdef CONFIG_CGROUP_DEBUG
Li Zefan761b3ef2012-01-31 13:47:36 +08005469static struct cgroup_subsys_state *debug_create(struct cgroup *cont)
Paul Menagefe693432009-09-23 15:56:20 -07005470{
5471 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
5472
5473 if (!css)
5474 return ERR_PTR(-ENOMEM);
5475
5476 return css;
5477}
5478
Li Zefan761b3ef2012-01-31 13:47:36 +08005479static void debug_destroy(struct cgroup *cont)
Paul Menagefe693432009-09-23 15:56:20 -07005480{
5481 kfree(cont->subsys[debug_subsys_id]);
5482}
5483
5484static u64 cgroup_refcount_read(struct cgroup *cont, struct cftype *cft)
5485{
5486 return atomic_read(&cont->count);
5487}
5488
5489static u64 debug_taskcount_read(struct cgroup *cont, struct cftype *cft)
5490{
5491 return cgroup_task_count(cont);
5492}
5493
5494static u64 current_css_set_read(struct cgroup *cont, struct cftype *cft)
5495{
5496 return (u64)(unsigned long)current->cgroups;
5497}
5498
5499static u64 current_css_set_refcount_read(struct cgroup *cont,
5500 struct cftype *cft)
5501{
5502 u64 count;
5503
5504 rcu_read_lock();
5505 count = atomic_read(&current->cgroups->refcount);
5506 rcu_read_unlock();
5507 return count;
5508}
5509
Paul Menage7717f7b2009-09-23 15:56:22 -07005510static int current_css_set_cg_links_read(struct cgroup *cont,
5511 struct cftype *cft,
5512 struct seq_file *seq)
5513{
5514 struct cg_cgroup_link *link;
5515 struct css_set *cg;
5516
5517 read_lock(&css_set_lock);
5518 rcu_read_lock();
5519 cg = rcu_dereference(current->cgroups);
5520 list_for_each_entry(link, &cg->cg_links, cg_link_list) {
5521 struct cgroup *c = link->cgrp;
5522 const char *name;
5523
5524 if (c->dentry)
5525 name = c->dentry->d_name.name;
5526 else
5527 name = "?";
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005528 seq_printf(seq, "Root %d group %s\n",
5529 c->root->hierarchy_id, name);
Paul Menage7717f7b2009-09-23 15:56:22 -07005530 }
5531 rcu_read_unlock();
5532 read_unlock(&css_set_lock);
5533 return 0;
5534}
5535
5536#define MAX_TASKS_SHOWN_PER_CSS 25
5537static int cgroup_css_links_read(struct cgroup *cont,
5538 struct cftype *cft,
5539 struct seq_file *seq)
5540{
5541 struct cg_cgroup_link *link;
5542
5543 read_lock(&css_set_lock);
5544 list_for_each_entry(link, &cont->css_sets, cgrp_link_list) {
5545 struct css_set *cg = link->cg;
5546 struct task_struct *task;
5547 int count = 0;
5548 seq_printf(seq, "css_set %p\n", cg);
5549 list_for_each_entry(task, &cg->tasks, cg_list) {
5550 if (count++ > MAX_TASKS_SHOWN_PER_CSS) {
5551 seq_puts(seq, " ...\n");
5552 break;
5553 } else {
5554 seq_printf(seq, " task %d\n",
5555 task_pid_vnr(task));
5556 }
5557 }
5558 }
5559 read_unlock(&css_set_lock);
5560 return 0;
5561}
5562
Paul Menagefe693432009-09-23 15:56:20 -07005563static u64 releasable_read(struct cgroup *cgrp, struct cftype *cft)
5564{
5565 return test_bit(CGRP_RELEASABLE, &cgrp->flags);
5566}
5567
5568static struct cftype debug_files[] = {
5569 {
5570 .name = "cgroup_refcount",
5571 .read_u64 = cgroup_refcount_read,
5572 },
5573 {
5574 .name = "taskcount",
5575 .read_u64 = debug_taskcount_read,
5576 },
5577
5578 {
5579 .name = "current_css_set",
5580 .read_u64 = current_css_set_read,
5581 },
5582
5583 {
5584 .name = "current_css_set_refcount",
5585 .read_u64 = current_css_set_refcount_read,
5586 },
5587
5588 {
Paul Menage7717f7b2009-09-23 15:56:22 -07005589 .name = "current_css_set_cg_links",
5590 .read_seq_string = current_css_set_cg_links_read,
5591 },
5592
5593 {
5594 .name = "cgroup_css_links",
5595 .read_seq_string = cgroup_css_links_read,
5596 },
5597
5598 {
Paul Menagefe693432009-09-23 15:56:20 -07005599 .name = "releasable",
5600 .read_u64 = releasable_read,
5601 },
Paul Menagefe693432009-09-23 15:56:20 -07005602
Tejun Heo4baf6e32012-04-01 12:09:55 -07005603 { } /* terminate */
5604};
Paul Menagefe693432009-09-23 15:56:20 -07005605
5606struct cgroup_subsys debug_subsys = {
5607 .name = "debug",
5608 .create = debug_create,
5609 .destroy = debug_destroy,
Paul Menagefe693432009-09-23 15:56:20 -07005610 .subsys_id = debug_subsys_id,
Tejun Heo4baf6e32012-04-01 12:09:55 -07005611 .base_cftypes = debug_files,
Paul Menagefe693432009-09-23 15:56:20 -07005612};
5613#endif /* CONFIG_CGROUP_DEBUG */