blob: 7c8f4f7d0c7152fe9d949790744352fff7e4a444 [file] [log] [blame]
Paul Menageddbcc7e2007-10-18 23:39:30 -07001/*
Paul Menageddbcc7e2007-10-18 23:39:30 -07002 * Generic process-grouping system.
3 *
4 * Based originally on the cpuset system, extracted by Paul Menage
5 * Copyright (C) 2006 Google, Inc
6 *
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08007 * Notifications support
8 * Copyright (C) 2009 Nokia Corporation
9 * Author: Kirill A. Shutemov
10 *
Paul Menageddbcc7e2007-10-18 23:39:30 -070011 * Copyright notices from the original cpuset code:
12 * --------------------------------------------------
13 * Copyright (C) 2003 BULL SA.
14 * Copyright (C) 2004-2006 Silicon Graphics, Inc.
15 *
16 * Portions derived from Patrick Mochel's sysfs code.
17 * sysfs is Copyright (c) 2001-3 Patrick Mochel
18 *
19 * 2003-10-10 Written by Simon Derr.
20 * 2003-10-22 Updates by Stephen Hemminger.
21 * 2004 May-July Rework by Paul Jackson.
22 * ---------------------------------------------------
23 *
24 * This file is subject to the terms and conditions of the GNU General Public
25 * License. See the file COPYING in the main directory of the Linux
26 * distribution for more details.
27 */
28
29#include <linux/cgroup.h>
eparis@redhat2ce97382011-06-02 21:20:51 +100030#include <linux/cred.h>
Paul Menagec6d57f32009-09-23 15:56:19 -070031#include <linux/ctype.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070032#include <linux/errno.h>
33#include <linux/fs.h>
eparis@redhat2ce97382011-06-02 21:20:51 +100034#include <linux/init_task.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070035#include <linux/kernel.h>
36#include <linux/list.h>
37#include <linux/mm.h>
38#include <linux/mutex.h>
39#include <linux/mount.h>
40#include <linux/pagemap.h>
Paul Menagea4243162007-10-18 23:39:35 -070041#include <linux/proc_fs.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070042#include <linux/rcupdate.h>
43#include <linux/sched.h>
Paul Menage817929e2007-10-18 23:39:36 -070044#include <linux/backing-dev.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070045#include <linux/seq_file.h>
46#include <linux/slab.h>
47#include <linux/magic.h>
48#include <linux/spinlock.h>
49#include <linux/string.h>
Paul Menagebbcb81d2007-10-18 23:39:32 -070050#include <linux/sort.h>
Paul Menage81a6a5c2007-10-18 23:39:38 -070051#include <linux/kmod.h>
Ben Blume6a11052010-03-10 15:22:09 -080052#include <linux/module.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070053#include <linux/delayacct.h>
54#include <linux/cgroupstats.h>
Li Zefan472b1052008-04-29 01:00:11 -070055#include <linux/hash.h>
Al Viro3f8206d2008-07-26 03:46:43 -040056#include <linux/namei.h>
Li Zefan096b7fe2009-07-29 15:04:04 -070057#include <linux/pid_namespace.h>
Paul Menage2c6ab6d2009-09-23 15:56:23 -070058#include <linux/idr.h>
Ben Blumd1d9fd32009-09-23 15:56:28 -070059#include <linux/vmalloc.h> /* TODO: replace with more sophisticated array */
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -080060#include <linux/eventfd.h>
61#include <linux/poll.h>
Ben Blumd8466872011-05-26 16:25:21 -070062#include <linux/flex_array.h> /* used in cgroup_attach_proc */
Balbir Singh846c7bb2007-10-18 23:39:44 -070063
Arun Sharma60063492011-07-26 16:09:06 -070064#include <linux/atomic.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070065
Tejun Heoe25e2cb2011-12-12 18:12:21 -080066/*
67 * cgroup_mutex is the master lock. Any modification to cgroup or its
68 * hierarchy must be performed while holding it.
69 *
70 * cgroup_root_mutex nests inside cgroup_mutex and should be held to modify
71 * cgroupfs_root of any cgroup hierarchy - subsys list, flags,
72 * release_agent_path and so on. Modifying requires both cgroup_mutex and
73 * cgroup_root_mutex. Readers can acquire either of the two. This is to
74 * break the following locking order cycle.
75 *
76 * A. cgroup_mutex -> cred_guard_mutex -> s_type->i_mutex_key -> namespace_sem
77 * B. namespace_sem -> cgroup_mutex
78 *
79 * B happens only through cgroup_show_options() and using cgroup_root_mutex
80 * breaks it.
81 */
Paul Menage81a6a5c2007-10-18 23:39:38 -070082static DEFINE_MUTEX(cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -080083static DEFINE_MUTEX(cgroup_root_mutex);
Paul Menage81a6a5c2007-10-18 23:39:38 -070084
Ben Blumaae8aab2010-03-10 15:22:07 -080085/*
86 * Generate an array of cgroup subsystem pointers. At boot time, this is
87 * populated up to CGROUP_BUILTIN_SUBSYS_COUNT, and modular subsystems are
88 * registered after that. The mutable section of this array is protected by
89 * cgroup_mutex.
90 */
Paul Menageddbcc7e2007-10-18 23:39:30 -070091#define SUBSYS(_x) &_x ## _subsys,
Ben Blumaae8aab2010-03-10 15:22:07 -080092static struct cgroup_subsys *subsys[CGROUP_SUBSYS_COUNT] = {
Paul Menageddbcc7e2007-10-18 23:39:30 -070093#include <linux/cgroup_subsys.h>
94};
95
Paul Menagec6d57f32009-09-23 15:56:19 -070096#define MAX_CGROUP_ROOT_NAMELEN 64
97
Paul Menageddbcc7e2007-10-18 23:39:30 -070098/*
99 * A cgroupfs_root represents the root of a cgroup hierarchy,
100 * and may be associated with a superblock to form an active
101 * hierarchy
102 */
103struct cgroupfs_root {
104 struct super_block *sb;
105
106 /*
107 * The bitmask of subsystems intended to be attached to this
108 * hierarchy
109 */
110 unsigned long subsys_bits;
111
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700112 /* Unique id for this hierarchy. */
113 int hierarchy_id;
114
Paul Menageddbcc7e2007-10-18 23:39:30 -0700115 /* The bitmask of subsystems currently attached to this hierarchy */
116 unsigned long actual_subsys_bits;
117
118 /* A list running through the attached subsystems */
119 struct list_head subsys_list;
120
121 /* The root cgroup for this hierarchy */
122 struct cgroup top_cgroup;
123
124 /* Tracks how many cgroups are currently defined in hierarchy.*/
125 int number_of_cgroups;
126
Li Zefane5f6a862009-01-07 18:07:41 -0800127 /* A list running through the active hierarchies */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700128 struct list_head root_list;
129
130 /* Hierarchy-specific flags */
131 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700132
Paul Menagee788e062008-07-25 01:46:59 -0700133 /* The path to use for release notifications. */
Paul Menage81a6a5c2007-10-18 23:39:38 -0700134 char release_agent_path[PATH_MAX];
Paul Menagec6d57f32009-09-23 15:56:19 -0700135
136 /* The name for this hierarchy - may be empty */
137 char name[MAX_CGROUP_ROOT_NAMELEN];
Paul Menageddbcc7e2007-10-18 23:39:30 -0700138};
139
Paul Menageddbcc7e2007-10-18 23:39:30 -0700140/*
141 * The "rootnode" hierarchy is the "dummy hierarchy", reserved for the
142 * subsystems that are otherwise unattached - it never has more than a
143 * single cgroup, and all tasks are part of that cgroup.
144 */
145static struct cgroupfs_root rootnode;
146
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700147/*
148 * CSS ID -- ID per subsys's Cgroup Subsys State(CSS). used only when
149 * cgroup_subsys->use_id != 0.
150 */
151#define CSS_ID_MAX (65535)
152struct css_id {
153 /*
154 * The css to which this ID points. This pointer is set to valid value
155 * after cgroup is populated. If cgroup is removed, this will be NULL.
156 * This pointer is expected to be RCU-safe because destroy()
157 * is called after synchronize_rcu(). But for safe use, css_is_removed()
158 * css_tryget() should be used for avoiding race.
159 */
Arnd Bergmann2c392b82010-02-24 19:41:39 +0100160 struct cgroup_subsys_state __rcu *css;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700161 /*
162 * ID of this css.
163 */
164 unsigned short id;
165 /*
166 * Depth in hierarchy which this ID belongs to.
167 */
168 unsigned short depth;
169 /*
170 * ID is freed by RCU. (and lookup routine is RCU safe.)
171 */
172 struct rcu_head rcu_head;
173 /*
174 * Hierarchy of CSS ID belongs to.
175 */
176 unsigned short stack[0]; /* Array of Length (depth+1) */
177};
178
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800179/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300180 * cgroup_event represents events which userspace want to receive.
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800181 */
182struct cgroup_event {
183 /*
184 * Cgroup which the event belongs to.
185 */
186 struct cgroup *cgrp;
187 /*
188 * Control file which the event associated.
189 */
190 struct cftype *cft;
191 /*
192 * eventfd to signal userspace about the event.
193 */
194 struct eventfd_ctx *eventfd;
195 /*
196 * Each of these stored in a list by the cgroup.
197 */
198 struct list_head list;
199 /*
200 * All fields below needed to unregister event when
201 * userspace closes eventfd.
202 */
203 poll_table pt;
204 wait_queue_head_t *wqh;
205 wait_queue_t wait;
206 struct work_struct remove;
207};
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700208
Paul Menageddbcc7e2007-10-18 23:39:30 -0700209/* The list of hierarchy roots */
210
211static LIST_HEAD(roots);
Paul Menage817929e2007-10-18 23:39:36 -0700212static int root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700213
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700214static DEFINE_IDA(hierarchy_ida);
215static int next_hierarchy_id;
216static DEFINE_SPINLOCK(hierarchy_id_lock);
217
Paul Menageddbcc7e2007-10-18 23:39:30 -0700218/* dummytop is a shorthand for the dummy hierarchy's top cgroup */
219#define dummytop (&rootnode.top_cgroup)
220
221/* This flag indicates whether tasks in the fork and exit paths should
Li Zefana043e3b2008-02-23 15:24:09 -0800222 * check for fork/exit handlers to call. This avoids us having to do
223 * extra work in the fork/exit path if none of the subsystems need to
224 * be called.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700225 */
Li Zefan8947f9d2008-07-25 01:46:56 -0700226static int need_forkexit_callback __read_mostly;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700227
Paul E. McKenneyd11c5632010-02-22 17:04:50 -0800228#ifdef CONFIG_PROVE_LOCKING
229int cgroup_lock_is_held(void)
230{
231 return lockdep_is_held(&cgroup_mutex);
232}
233#else /* #ifdef CONFIG_PROVE_LOCKING */
234int cgroup_lock_is_held(void)
235{
236 return mutex_is_locked(&cgroup_mutex);
237}
238#endif /* #else #ifdef CONFIG_PROVE_LOCKING */
239
240EXPORT_SYMBOL_GPL(cgroup_lock_is_held);
241
Paul Menageddbcc7e2007-10-18 23:39:30 -0700242/* convenient tests for these bits */
Paul Menagebd89aab2007-10-18 23:40:44 -0700243inline int cgroup_is_removed(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700244{
Paul Menagebd89aab2007-10-18 23:40:44 -0700245 return test_bit(CGRP_REMOVED, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700246}
247
248/* bits in struct cgroupfs_root flags field */
249enum {
250 ROOT_NOPREFIX, /* mounted subsystems have no named prefix */
251};
252
Adrian Bunke9685a02008-02-07 00:13:46 -0800253static int cgroup_is_releasable(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700254{
255 const int bits =
Paul Menagebd89aab2007-10-18 23:40:44 -0700256 (1 << CGRP_RELEASABLE) |
257 (1 << CGRP_NOTIFY_ON_RELEASE);
258 return (cgrp->flags & bits) == bits;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700259}
260
Adrian Bunke9685a02008-02-07 00:13:46 -0800261static int notify_on_release(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700262{
Paul Menagebd89aab2007-10-18 23:40:44 -0700263 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700264}
265
Daniel Lezcano97978e62010-10-27 15:33:35 -0700266static int clone_children(const struct cgroup *cgrp)
267{
268 return test_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
269}
270
Paul Menageddbcc7e2007-10-18 23:39:30 -0700271/*
272 * for_each_subsys() allows you to iterate on each subsystem attached to
273 * an active hierarchy
274 */
275#define for_each_subsys(_root, _ss) \
276list_for_each_entry(_ss, &_root->subsys_list, sibling)
277
Li Zefane5f6a862009-01-07 18:07:41 -0800278/* for_each_active_root() allows you to iterate across the active hierarchies */
279#define for_each_active_root(_root) \
Paul Menageddbcc7e2007-10-18 23:39:30 -0700280list_for_each_entry(_root, &roots, root_list)
281
Paul Menage81a6a5c2007-10-18 23:39:38 -0700282/* the list of cgroups eligible for automatic release. Protected by
283 * release_list_lock */
284static LIST_HEAD(release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +0200285static DEFINE_RAW_SPINLOCK(release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700286static void cgroup_release_agent(struct work_struct *work);
287static DECLARE_WORK(release_agent_work, cgroup_release_agent);
Paul Menagebd89aab2007-10-18 23:40:44 -0700288static void check_for_release(struct cgroup *cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700289
Paul Menage817929e2007-10-18 23:39:36 -0700290/* Link structure for associating css_set objects with cgroups */
291struct cg_cgroup_link {
292 /*
293 * List running through cg_cgroup_links associated with a
294 * cgroup, anchored on cgroup->css_sets
295 */
Paul Menagebd89aab2007-10-18 23:40:44 -0700296 struct list_head cgrp_link_list;
Paul Menage7717f7b2009-09-23 15:56:22 -0700297 struct cgroup *cgrp;
Paul Menage817929e2007-10-18 23:39:36 -0700298 /*
299 * List running through cg_cgroup_links pointing at a
300 * single css_set object, anchored on css_set->cg_links
301 */
302 struct list_head cg_link_list;
303 struct css_set *cg;
304};
305
306/* The default css_set - used by init and its children prior to any
307 * hierarchies being mounted. It contains a pointer to the root state
308 * for each subsystem. Also used to anchor the list of css_sets. Not
309 * reference-counted, to improve performance when child cgroups
310 * haven't been created.
311 */
312
313static struct css_set init_css_set;
314static struct cg_cgroup_link init_css_set_link;
315
Ben Blume6a11052010-03-10 15:22:09 -0800316static int cgroup_init_idr(struct cgroup_subsys *ss,
317 struct cgroup_subsys_state *css);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700318
Paul Menage817929e2007-10-18 23:39:36 -0700319/* css_set_lock protects the list of css_set objects, and the
320 * chain of tasks off each css_set. Nests outside task->alloc_lock
321 * due to cgroup_iter_start() */
322static DEFINE_RWLOCK(css_set_lock);
323static int css_set_count;
324
Paul Menage7717f7b2009-09-23 15:56:22 -0700325/*
326 * hash table for cgroup groups. This improves the performance to find
327 * an existing css_set. This hash doesn't (currently) take into
328 * account cgroups in empty hierarchies.
329 */
Li Zefan472b1052008-04-29 01:00:11 -0700330#define CSS_SET_HASH_BITS 7
331#define CSS_SET_TABLE_SIZE (1 << CSS_SET_HASH_BITS)
332static struct hlist_head css_set_table[CSS_SET_TABLE_SIZE];
333
334static struct hlist_head *css_set_hash(struct cgroup_subsys_state *css[])
335{
336 int i;
337 int index;
338 unsigned long tmp = 0UL;
339
340 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++)
341 tmp += (unsigned long)css[i];
342 tmp = (tmp >> 16) ^ tmp;
343
344 index = hash_long(tmp, CSS_SET_HASH_BITS);
345
346 return &css_set_table[index];
347}
348
Paul Menage817929e2007-10-18 23:39:36 -0700349/* We don't maintain the lists running through each css_set to its
350 * task until after the first call to cgroup_iter_start(). This
351 * reduces the fork()/exit() overhead for people who have cgroups
352 * compiled into their kernel but not actually in use */
Li Zefan8947f9d2008-07-25 01:46:56 -0700353static int use_task_css_set_links __read_mostly;
Paul Menage817929e2007-10-18 23:39:36 -0700354
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700355static void __put_css_set(struct css_set *cg, int taskexit)
Paul Menageb4f48b62007-10-18 23:39:33 -0700356{
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700357 struct cg_cgroup_link *link;
358 struct cg_cgroup_link *saved_link;
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700359 /*
360 * Ensure that the refcount doesn't hit zero while any readers
361 * can see it. Similar to atomic_dec_and_lock(), but for an
362 * rwlock
363 */
364 if (atomic_add_unless(&cg->refcount, -1, 1))
365 return;
366 write_lock(&css_set_lock);
367 if (!atomic_dec_and_test(&cg->refcount)) {
368 write_unlock(&css_set_lock);
369 return;
370 }
Paul Menage81a6a5c2007-10-18 23:39:38 -0700371
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700372 /* This css_set is dead. unlink it and release cgroup refcounts */
373 hlist_del(&cg->hlist);
374 css_set_count--;
375
376 list_for_each_entry_safe(link, saved_link, &cg->cg_links,
377 cg_link_list) {
378 struct cgroup *cgrp = link->cgrp;
379 list_del(&link->cg_link_list);
380 list_del(&link->cgrp_link_list);
Li Zefan916b6c62013-01-24 14:43:28 +0800381
382 /*
383 * We may not be holding cgroup_mutex, and if cgrp->count is
384 * dropped to 0 the cgroup can be destroyed at any time, hence
385 * rcu_read_lock is used to keep it alive.
386 */
387 rcu_read_lock();
Paul Menagebd89aab2007-10-18 23:40:44 -0700388 if (atomic_dec_and_test(&cgrp->count) &&
389 notify_on_release(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -0700390 if (taskexit)
Paul Menagebd89aab2007-10-18 23:40:44 -0700391 set_bit(CGRP_RELEASABLE, &cgrp->flags);
392 check_for_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700393 }
Li Zefan916b6c62013-01-24 14:43:28 +0800394 rcu_read_unlock();
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700395
396 kfree(link);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700397 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700398
399 write_unlock(&css_set_lock);
Lai Jiangshan30088ad2011-03-15 17:53:46 +0800400 kfree_rcu(cg, rcu_head);
Paul Menage817929e2007-10-18 23:39:36 -0700401}
402
403/*
404 * refcounted get/put for css_set objects
405 */
406static inline void get_css_set(struct css_set *cg)
407{
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700408 atomic_inc(&cg->refcount);
Paul Menage817929e2007-10-18 23:39:36 -0700409}
410
411static inline void put_css_set(struct css_set *cg)
412{
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700413 __put_css_set(cg, 0);
Paul Menage817929e2007-10-18 23:39:36 -0700414}
415
Paul Menage81a6a5c2007-10-18 23:39:38 -0700416static inline void put_css_set_taskexit(struct css_set *cg)
417{
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700418 __put_css_set(cg, 1);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700419}
420
Paul Menage817929e2007-10-18 23:39:36 -0700421/*
Paul Menage7717f7b2009-09-23 15:56:22 -0700422 * compare_css_sets - helper function for find_existing_css_set().
423 * @cg: candidate css_set being tested
424 * @old_cg: existing css_set for a task
425 * @new_cgrp: cgroup that's being entered by the task
426 * @template: desired set of css pointers in css_set (pre-calculated)
427 *
428 * Returns true if "cg" matches "old_cg" except for the hierarchy
429 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
430 */
431static bool compare_css_sets(struct css_set *cg,
432 struct css_set *old_cg,
433 struct cgroup *new_cgrp,
434 struct cgroup_subsys_state *template[])
435{
436 struct list_head *l1, *l2;
437
438 if (memcmp(template, cg->subsys, sizeof(cg->subsys))) {
439 /* Not all subsystems matched */
440 return false;
441 }
442
443 /*
444 * Compare cgroup pointers in order to distinguish between
445 * different cgroups in heirarchies with no subsystems. We
446 * could get by with just this check alone (and skip the
447 * memcmp above) but on most setups the memcmp check will
448 * avoid the need for this more expensive check on almost all
449 * candidates.
450 */
451
452 l1 = &cg->cg_links;
453 l2 = &old_cg->cg_links;
454 while (1) {
455 struct cg_cgroup_link *cgl1, *cgl2;
456 struct cgroup *cg1, *cg2;
457
458 l1 = l1->next;
459 l2 = l2->next;
460 /* See if we reached the end - both lists are equal length. */
461 if (l1 == &cg->cg_links) {
462 BUG_ON(l2 != &old_cg->cg_links);
463 break;
464 } else {
465 BUG_ON(l2 == &old_cg->cg_links);
466 }
467 /* Locate the cgroups associated with these links. */
468 cgl1 = list_entry(l1, struct cg_cgroup_link, cg_link_list);
469 cgl2 = list_entry(l2, struct cg_cgroup_link, cg_link_list);
470 cg1 = cgl1->cgrp;
471 cg2 = cgl2->cgrp;
472 /* Hierarchies should be linked in the same order. */
473 BUG_ON(cg1->root != cg2->root);
474
475 /*
476 * If this hierarchy is the hierarchy of the cgroup
477 * that's changing, then we need to check that this
478 * css_set points to the new cgroup; if it's any other
479 * hierarchy, then this css_set should point to the
480 * same cgroup as the old css_set.
481 */
482 if (cg1->root == new_cgrp->root) {
483 if (cg1 != new_cgrp)
484 return false;
485 } else {
486 if (cg1 != cg2)
487 return false;
488 }
489 }
490 return true;
491}
492
493/*
Paul Menage817929e2007-10-18 23:39:36 -0700494 * find_existing_css_set() is a helper for
495 * find_css_set(), and checks to see whether an existing
Li Zefan472b1052008-04-29 01:00:11 -0700496 * css_set is suitable.
Paul Menage817929e2007-10-18 23:39:36 -0700497 *
498 * oldcg: the cgroup group that we're using before the cgroup
499 * transition
500 *
Paul Menagebd89aab2007-10-18 23:40:44 -0700501 * cgrp: the cgroup that we're moving into
Paul Menage817929e2007-10-18 23:39:36 -0700502 *
503 * template: location in which to build the desired set of subsystem
504 * state objects for the new cgroup group
505 */
Paul Menage817929e2007-10-18 23:39:36 -0700506static struct css_set *find_existing_css_set(
507 struct css_set *oldcg,
Paul Menagebd89aab2007-10-18 23:40:44 -0700508 struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -0700509 struct cgroup_subsys_state *template[])
510{
511 int i;
Paul Menagebd89aab2007-10-18 23:40:44 -0700512 struct cgroupfs_root *root = cgrp->root;
Li Zefan472b1052008-04-29 01:00:11 -0700513 struct hlist_head *hhead;
514 struct hlist_node *node;
515 struct css_set *cg;
Paul Menage817929e2007-10-18 23:39:36 -0700516
Ben Blumaae8aab2010-03-10 15:22:07 -0800517 /*
518 * Build the set of subsystem state objects that we want to see in the
519 * new css_set. while subsystems can change globally, the entries here
520 * won't change, so no need for locking.
521 */
Paul Menage817929e2007-10-18 23:39:36 -0700522 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Li Zefan8d53d552008-02-23 15:24:11 -0800523 if (root->subsys_bits & (1UL << i)) {
Paul Menage817929e2007-10-18 23:39:36 -0700524 /* Subsystem is in this hierarchy. So we want
525 * the subsystem state from the new
526 * cgroup */
Paul Menagebd89aab2007-10-18 23:40:44 -0700527 template[i] = cgrp->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700528 } else {
529 /* Subsystem is not in this hierarchy, so we
530 * don't want to change the subsystem state */
531 template[i] = oldcg->subsys[i];
532 }
533 }
534
Li Zefan472b1052008-04-29 01:00:11 -0700535 hhead = css_set_hash(template);
536 hlist_for_each_entry(cg, node, hhead, hlist) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700537 if (!compare_css_sets(cg, oldcg, cgrp, template))
538 continue;
539
540 /* This css_set matches what we need */
541 return cg;
Li Zefan472b1052008-04-29 01:00:11 -0700542 }
Paul Menage817929e2007-10-18 23:39:36 -0700543
544 /* No existing cgroup group matched */
545 return NULL;
546}
547
Paul Menage817929e2007-10-18 23:39:36 -0700548static void free_cg_links(struct list_head *tmp)
549{
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700550 struct cg_cgroup_link *link;
551 struct cg_cgroup_link *saved_link;
552
553 list_for_each_entry_safe(link, saved_link, tmp, cgrp_link_list) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700554 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -0700555 kfree(link);
556 }
557}
558
559/*
Li Zefan36553432008-07-29 22:33:19 -0700560 * allocate_cg_links() allocates "count" cg_cgroup_link structures
561 * and chains them on tmp through their cgrp_link_list fields. Returns 0 on
562 * success or a negative error
563 */
564static int allocate_cg_links(int count, struct list_head *tmp)
565{
566 struct cg_cgroup_link *link;
567 int i;
568 INIT_LIST_HEAD(tmp);
569 for (i = 0; i < count; i++) {
570 link = kmalloc(sizeof(*link), GFP_KERNEL);
571 if (!link) {
572 free_cg_links(tmp);
573 return -ENOMEM;
574 }
575 list_add(&link->cgrp_link_list, tmp);
576 }
577 return 0;
578}
579
Li Zefanc12f65d2009-01-07 18:07:42 -0800580/**
581 * link_css_set - a helper function to link a css_set to a cgroup
582 * @tmp_cg_links: cg_cgroup_link objects allocated by allocate_cg_links()
583 * @cg: the css_set to be linked
584 * @cgrp: the destination cgroup
585 */
586static void link_css_set(struct list_head *tmp_cg_links,
587 struct css_set *cg, struct cgroup *cgrp)
588{
589 struct cg_cgroup_link *link;
590
591 BUG_ON(list_empty(tmp_cg_links));
592 link = list_first_entry(tmp_cg_links, struct cg_cgroup_link,
593 cgrp_link_list);
594 link->cg = cg;
Paul Menage7717f7b2009-09-23 15:56:22 -0700595 link->cgrp = cgrp;
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700596 atomic_inc(&cgrp->count);
Li Zefanc12f65d2009-01-07 18:07:42 -0800597 list_move(&link->cgrp_link_list, &cgrp->css_sets);
Paul Menage7717f7b2009-09-23 15:56:22 -0700598 /*
599 * Always add links to the tail of the list so that the list
600 * is sorted by order of hierarchy creation
601 */
602 list_add_tail(&link->cg_link_list, &cg->cg_links);
Li Zefanc12f65d2009-01-07 18:07:42 -0800603}
604
Li Zefan36553432008-07-29 22:33:19 -0700605/*
Paul Menage817929e2007-10-18 23:39:36 -0700606 * find_css_set() takes an existing cgroup group and a
607 * cgroup object, and returns a css_set object that's
608 * equivalent to the old group, but with the given cgroup
609 * substituted into the appropriate hierarchy. Must be called with
610 * cgroup_mutex held
611 */
Paul Menage817929e2007-10-18 23:39:36 -0700612static struct css_set *find_css_set(
Paul Menagebd89aab2007-10-18 23:40:44 -0700613 struct css_set *oldcg, struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700614{
615 struct css_set *res;
616 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT];
Paul Menage817929e2007-10-18 23:39:36 -0700617
618 struct list_head tmp_cg_links;
Paul Menage817929e2007-10-18 23:39:36 -0700619
Li Zefan472b1052008-04-29 01:00:11 -0700620 struct hlist_head *hhead;
Paul Menage7717f7b2009-09-23 15:56:22 -0700621 struct cg_cgroup_link *link;
Li Zefan472b1052008-04-29 01:00:11 -0700622
Paul Menage817929e2007-10-18 23:39:36 -0700623 /* First see if we already have a cgroup group that matches
624 * the desired set */
Li Zefan7e9abd82008-07-25 01:46:54 -0700625 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -0700626 res = find_existing_css_set(oldcg, cgrp, template);
Paul Menage817929e2007-10-18 23:39:36 -0700627 if (res)
628 get_css_set(res);
Li Zefan7e9abd82008-07-25 01:46:54 -0700629 read_unlock(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -0700630
631 if (res)
632 return res;
633
634 res = kmalloc(sizeof(*res), GFP_KERNEL);
635 if (!res)
636 return NULL;
637
638 /* Allocate all the cg_cgroup_link objects that we'll need */
639 if (allocate_cg_links(root_count, &tmp_cg_links) < 0) {
640 kfree(res);
641 return NULL;
642 }
643
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700644 atomic_set(&res->refcount, 1);
Paul Menage817929e2007-10-18 23:39:36 -0700645 INIT_LIST_HEAD(&res->cg_links);
646 INIT_LIST_HEAD(&res->tasks);
Li Zefan472b1052008-04-29 01:00:11 -0700647 INIT_HLIST_NODE(&res->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700648
649 /* Copy the set of subsystem state objects generated in
650 * find_existing_css_set() */
651 memcpy(res->subsys, template, sizeof(res->subsys));
652
653 write_lock(&css_set_lock);
654 /* Add reference counts and links from the new css_set. */
Paul Menage7717f7b2009-09-23 15:56:22 -0700655 list_for_each_entry(link, &oldcg->cg_links, cg_link_list) {
656 struct cgroup *c = link->cgrp;
657 if (c->root == cgrp->root)
658 c = cgrp;
659 link_css_set(&tmp_cg_links, res, c);
660 }
Paul Menage817929e2007-10-18 23:39:36 -0700661
662 BUG_ON(!list_empty(&tmp_cg_links));
663
Paul Menage817929e2007-10-18 23:39:36 -0700664 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -0700665
666 /* Add this cgroup group to the hash table */
667 hhead = css_set_hash(res->subsys);
668 hlist_add_head(&res->hlist, hhead);
669
Paul Menage817929e2007-10-18 23:39:36 -0700670 write_unlock(&css_set_lock);
671
672 return res;
Paul Menageb4f48b62007-10-18 23:39:33 -0700673}
674
Paul Menageddbcc7e2007-10-18 23:39:30 -0700675/*
Paul Menage7717f7b2009-09-23 15:56:22 -0700676 * Return the cgroup for "task" from the given hierarchy. Must be
677 * called with cgroup_mutex held.
678 */
679static struct cgroup *task_cgroup_from_root(struct task_struct *task,
680 struct cgroupfs_root *root)
681{
682 struct css_set *css;
683 struct cgroup *res = NULL;
684
685 BUG_ON(!mutex_is_locked(&cgroup_mutex));
686 read_lock(&css_set_lock);
687 /*
688 * No need to lock the task - since we hold cgroup_mutex the
689 * task can't change groups, so the only thing that can happen
690 * is that it exits and its css is set back to init_css_set.
691 */
692 css = task->cgroups;
693 if (css == &init_css_set) {
694 res = &root->top_cgroup;
695 } else {
696 struct cg_cgroup_link *link;
697 list_for_each_entry(link, &css->cg_links, cg_link_list) {
698 struct cgroup *c = link->cgrp;
699 if (c->root == root) {
700 res = c;
701 break;
702 }
703 }
704 }
705 read_unlock(&css_set_lock);
706 BUG_ON(!res);
707 return res;
708}
709
710/*
Paul Menageddbcc7e2007-10-18 23:39:30 -0700711 * There is one global cgroup mutex. We also require taking
712 * task_lock() when dereferencing a task's cgroup subsys pointers.
713 * See "The task_lock() exception", at the end of this comment.
714 *
715 * A task must hold cgroup_mutex to modify cgroups.
716 *
717 * Any task can increment and decrement the count field without lock.
718 * So in general, code holding cgroup_mutex can't rely on the count
719 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -0800720 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -0700721 * means that no tasks are currently attached, therefore there is no
722 * way a task attached to that cgroup can fork (the other way to
723 * increment the count). So code holding cgroup_mutex can safely
724 * assume that if the count is zero, it will stay zero. Similarly, if
725 * a task holds cgroup_mutex on a cgroup with zero count, it
726 * knows that the cgroup won't be removed, as cgroup_rmdir()
727 * needs that mutex.
728 *
Paul Menageddbcc7e2007-10-18 23:39:30 -0700729 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
730 * (usually) take cgroup_mutex. These are the two most performance
731 * critical pieces of code here. The exception occurs on cgroup_exit(),
732 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
733 * is taken, and if the cgroup count is zero, a usermode call made
Li Zefana043e3b2008-02-23 15:24:09 -0800734 * to the release agent with the name of the cgroup (path relative to
735 * the root of cgroup file system) as the argument.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700736 *
737 * A cgroup can only be deleted if both its 'count' of using tasks
738 * is zero, and its list of 'children' cgroups is empty. Since all
739 * tasks in the system use _some_ cgroup, and since there is always at
740 * least one task in the system (init, pid == 1), therefore, top_cgroup
741 * always has either children cgroups and/or using tasks. So we don't
742 * need a special hack to ensure that top_cgroup cannot be deleted.
743 *
744 * The task_lock() exception
745 *
746 * The need for this exception arises from the action of
Cliff Wickman956db3c2008-02-07 00:14:43 -0800747 * cgroup_attach_task(), which overwrites one tasks cgroup pointer with
Li Zefana043e3b2008-02-23 15:24:09 -0800748 * another. It does so using cgroup_mutex, however there are
Paul Menageddbcc7e2007-10-18 23:39:30 -0700749 * several performance critical places that need to reference
750 * task->cgroup without the expense of grabbing a system global
751 * mutex. Therefore except as noted below, when dereferencing or, as
Cliff Wickman956db3c2008-02-07 00:14:43 -0800752 * in cgroup_attach_task(), modifying a task'ss cgroup pointer we use
Paul Menageddbcc7e2007-10-18 23:39:30 -0700753 * task_lock(), which acts on a spinlock (task->alloc_lock) already in
754 * the task_struct routinely used for such matters.
755 *
756 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -0800757 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700758 */
759
Paul Menageddbcc7e2007-10-18 23:39:30 -0700760/**
761 * cgroup_lock - lock out any changes to cgroup structures
762 *
763 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700764void cgroup_lock(void)
765{
766 mutex_lock(&cgroup_mutex);
767}
Ben Blum67523c42010-03-10 15:22:11 -0800768EXPORT_SYMBOL_GPL(cgroup_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700769
770/**
771 * cgroup_unlock - release lock on cgroup changes
772 *
773 * Undo the lock taken in a previous cgroup_lock() call.
774 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700775void cgroup_unlock(void)
776{
777 mutex_unlock(&cgroup_mutex);
778}
Ben Blum67523c42010-03-10 15:22:11 -0800779EXPORT_SYMBOL_GPL(cgroup_unlock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700780
781/*
782 * A couple of forward declarations required, due to cyclic reference loop:
783 * cgroup_mkdir -> cgroup_create -> cgroup_populate_dir ->
784 * cgroup_add_file -> cgroup_create_file -> cgroup_dir_inode_operations
785 * -> cgroup_mkdir.
786 */
787
Al Viro18bb1db2011-07-26 01:41:39 -0400788static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode);
Al Viroc72a04e2011-01-14 05:31:45 +0000789static struct dentry *cgroup_lookup(struct inode *, struct dentry *, struct nameidata *);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700790static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -0700791static int cgroup_populate_dir(struct cgroup *cgrp);
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -0700792static const struct inode_operations cgroup_dir_inode_operations;
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700793static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -0700794
795static struct backing_dev_info cgroup_backing_dev_info = {
Jens Axboed9938312009-06-12 14:45:52 +0200796 .name = "cgroup",
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700797 .capabilities = BDI_CAP_NO_ACCT_AND_WRITEBACK,
Paul Menagea4243162007-10-18 23:39:35 -0700798};
Paul Menageddbcc7e2007-10-18 23:39:30 -0700799
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -0700800static int alloc_css_id(struct cgroup_subsys *ss,
801 struct cgroup *parent, struct cgroup *child);
802
Al Viroa5e7ed32011-07-26 01:55:55 -0400803static struct inode *cgroup_new_inode(umode_t mode, struct super_block *sb)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700804{
805 struct inode *inode = new_inode(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700806
807 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400808 inode->i_ino = get_next_ino();
Paul Menageddbcc7e2007-10-18 23:39:30 -0700809 inode->i_mode = mode;
David Howells76aac0e2008-11-14 10:39:12 +1100810 inode->i_uid = current_fsuid();
811 inode->i_gid = current_fsgid();
Paul Menageddbcc7e2007-10-18 23:39:30 -0700812 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
813 inode->i_mapping->backing_dev_info = &cgroup_backing_dev_info;
814 }
815 return inode;
816}
817
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800818/*
819 * Call subsys's pre_destroy handler.
820 * This is called before css refcnt check.
821 */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700822static int cgroup_call_pre_destroy(struct cgroup *cgrp)
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800823{
824 struct cgroup_subsys *ss;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700825 int ret = 0;
826
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800827 for_each_subsys(cgrp->root, ss)
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700828 if (ss->pre_destroy) {
Li Zefan761b3ef2012-01-31 13:47:36 +0800829 ret = ss->pre_destroy(cgrp);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700830 if (ret)
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -0800831 break;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700832 }
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -0800833
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700834 return ret;
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -0800835}
836
Paul Menageddbcc7e2007-10-18 23:39:30 -0700837static void cgroup_diput(struct dentry *dentry, struct inode *inode)
838{
839 /* is dentry a directory ? if so, kfree() associated cgroup */
840 if (S_ISDIR(inode->i_mode)) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700841 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800842 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -0700843 BUG_ON(!(cgroup_is_removed(cgrp)));
Paul Menage81a6a5c2007-10-18 23:39:38 -0700844 /* It's possible for external users to be holding css
845 * reference counts on a cgroup; css_put() needs to
846 * be able to access the cgroup after decrementing
847 * the reference count in order to know if it needs to
848 * queue the cgroup to be handled by the release
849 * agent */
850 synchronize_rcu();
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800851
852 mutex_lock(&cgroup_mutex);
853 /*
854 * Release the subsystem state objects.
855 */
Li Zefan75139b82009-01-07 18:07:33 -0800856 for_each_subsys(cgrp->root, ss)
Li Zefan761b3ef2012-01-31 13:47:36 +0800857 ss->destroy(cgrp);
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800858
859 cgrp->root->number_of_cgroups--;
860 mutex_unlock(&cgroup_mutex);
861
Paul Menagea47295e2009-01-07 18:07:44 -0800862 /*
863 * Drop the active superblock reference that we took when we
864 * created the cgroup
865 */
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800866 deactivate_super(cgrp->root->sb);
867
Ben Blum72a8cb32009-09-23 15:56:27 -0700868 /*
869 * if we're getting rid of the cgroup, refcount should ensure
870 * that there are no pidlists left.
871 */
872 BUG_ON(!list_empty(&cgrp->pidlists));
873
Lai Jiangshanf2da1c42011-03-15 17:55:16 +0800874 kfree_rcu(cgrp, rcu_head);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700875 }
876 iput(inode);
877}
878
Al Viroc72a04e2011-01-14 05:31:45 +0000879static int cgroup_delete(const struct dentry *d)
880{
881 return 1;
882}
883
Paul Menageddbcc7e2007-10-18 23:39:30 -0700884static void remove_dir(struct dentry *d)
885{
886 struct dentry *parent = dget(d->d_parent);
887
888 d_delete(d);
889 simple_rmdir(parent->d_inode, d);
890 dput(parent);
891}
892
893static void cgroup_clear_directory(struct dentry *dentry)
894{
895 struct list_head *node;
896
897 BUG_ON(!mutex_is_locked(&dentry->d_inode->i_mutex));
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100898 spin_lock(&dentry->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700899 node = dentry->d_subdirs.next;
900 while (node != &dentry->d_subdirs) {
901 struct dentry *d = list_entry(node, struct dentry, d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100902
903 spin_lock_nested(&d->d_lock, DENTRY_D_LOCK_NESTED);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700904 list_del_init(node);
905 if (d->d_inode) {
906 /* This should never be called on a cgroup
907 * directory with child cgroups */
908 BUG_ON(d->d_inode->i_mode & S_IFDIR);
Nick Piggindc0474b2011-01-07 17:49:43 +1100909 dget_dlock(d);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100910 spin_unlock(&d->d_lock);
911 spin_unlock(&dentry->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700912 d_delete(d);
913 simple_unlink(dentry->d_inode, d);
914 dput(d);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100915 spin_lock(&dentry->d_lock);
916 } else
917 spin_unlock(&d->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700918 node = dentry->d_subdirs.next;
919 }
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100920 spin_unlock(&dentry->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700921}
922
923/*
924 * NOTE : the dentry must have been dget()'ed
925 */
926static void cgroup_d_remove_dir(struct dentry *dentry)
927{
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100928 struct dentry *parent;
929
Paul Menageddbcc7e2007-10-18 23:39:30 -0700930 cgroup_clear_directory(dentry);
931
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100932 parent = dentry->d_parent;
933 spin_lock(&parent->d_lock);
Li Zefan3ec762a2011-01-14 11:34:34 +0800934 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700935 list_del_init(&dentry->d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100936 spin_unlock(&dentry->d_lock);
937 spin_unlock(&parent->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700938 remove_dir(dentry);
939}
940
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700941/*
942 * A queue for waiters to do rmdir() cgroup. A tasks will sleep when
943 * cgroup->count == 0 && list_empty(&cgroup->children) && subsys has some
944 * reference to css->refcnt. In general, this refcnt is expected to goes down
945 * to zero, soon.
946 *
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700947 * CGRP_WAIT_ON_RMDIR flag is set under cgroup's inode->i_mutex;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700948 */
Kirill A. Shutemov1c6c3fa2011-12-27 07:46:25 +0200949static DECLARE_WAIT_QUEUE_HEAD(cgroup_rmdir_waitq);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700950
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700951static void cgroup_wakeup_rmdir_waiter(struct cgroup *cgrp)
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700952{
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700953 if (unlikely(test_and_clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags)))
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700954 wake_up_all(&cgroup_rmdir_waitq);
955}
956
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -0700957void cgroup_exclude_rmdir(struct cgroup_subsys_state *css)
958{
959 css_get(css);
960}
961
962void cgroup_release_and_wakeup_rmdir(struct cgroup_subsys_state *css)
963{
964 cgroup_wakeup_rmdir_waiter(css->cgroup);
965 css_put(css);
966}
967
Ben Blumaae8aab2010-03-10 15:22:07 -0800968/*
Ben Blumcf5d5942010-03-10 15:22:09 -0800969 * Call with cgroup_mutex held. Drops reference counts on modules, including
970 * any duplicate ones that parse_cgroupfs_options took. If this function
971 * returns an error, no reference counts are touched.
Ben Blumaae8aab2010-03-10 15:22:07 -0800972 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700973static int rebind_subsystems(struct cgroupfs_root *root,
974 unsigned long final_bits)
975{
976 unsigned long added_bits, removed_bits;
Paul Menagebd89aab2007-10-18 23:40:44 -0700977 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700978 int i;
979
Ben Blumaae8aab2010-03-10 15:22:07 -0800980 BUG_ON(!mutex_is_locked(&cgroup_mutex));
Tejun Heoe25e2cb2011-12-12 18:12:21 -0800981 BUG_ON(!mutex_is_locked(&cgroup_root_mutex));
Ben Blumaae8aab2010-03-10 15:22:07 -0800982
Paul Menageddbcc7e2007-10-18 23:39:30 -0700983 removed_bits = root->actual_subsys_bits & ~final_bits;
984 added_bits = final_bits & ~root->actual_subsys_bits;
985 /* Check that any added subsystems are currently free */
986 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
Li Zefan8d53d552008-02-23 15:24:11 -0800987 unsigned long bit = 1UL << i;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700988 struct cgroup_subsys *ss = subsys[i];
989 if (!(bit & added_bits))
990 continue;
Ben Blumaae8aab2010-03-10 15:22:07 -0800991 /*
992 * Nobody should tell us to do a subsys that doesn't exist:
993 * parse_cgroupfs_options should catch that case and refcounts
994 * ensure that subsystems won't disappear once selected.
995 */
996 BUG_ON(ss == NULL);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700997 if (ss->root != &rootnode) {
998 /* Subsystem isn't free */
999 return -EBUSY;
1000 }
1001 }
1002
1003 /* Currently we don't handle adding/removing subsystems when
1004 * any child cgroups exist. This is theoretically supportable
1005 * but involves complex error handling, so it's being left until
1006 * later */
Paul Menage307257c2008-12-15 13:54:22 -08001007 if (root->number_of_cgroups > 1)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001008 return -EBUSY;
1009
1010 /* Process each subsystem */
1011 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1012 struct cgroup_subsys *ss = subsys[i];
1013 unsigned long bit = 1UL << i;
1014 if (bit & added_bits) {
1015 /* We're binding this subsystem to this hierarchy */
Ben Blumaae8aab2010-03-10 15:22:07 -08001016 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001017 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001018 BUG_ON(!dummytop->subsys[i]);
1019 BUG_ON(dummytop->subsys[i]->cgroup != dummytop);
Paul Menage999cd8a2009-01-07 18:08:36 -08001020 mutex_lock(&ss->hierarchy_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07001021 cgrp->subsys[i] = dummytop->subsys[i];
1022 cgrp->subsys[i]->cgroup = cgrp;
Li Zefan33a68ac2009-01-07 18:07:42 -08001023 list_move(&ss->sibling, &root->subsys_list);
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001024 ss->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001025 if (ss->bind)
Li Zefan761b3ef2012-01-31 13:47:36 +08001026 ss->bind(cgrp);
Paul Menage999cd8a2009-01-07 18:08:36 -08001027 mutex_unlock(&ss->hierarchy_mutex);
Ben Blumcf5d5942010-03-10 15:22:09 -08001028 /* refcount was already taken, and we're keeping it */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001029 } else if (bit & removed_bits) {
1030 /* We're removing this subsystem */
Ben Blumaae8aab2010-03-10 15:22:07 -08001031 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001032 BUG_ON(cgrp->subsys[i] != dummytop->subsys[i]);
1033 BUG_ON(cgrp->subsys[i]->cgroup != cgrp);
Paul Menage999cd8a2009-01-07 18:08:36 -08001034 mutex_lock(&ss->hierarchy_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001035 if (ss->bind)
Li Zefan761b3ef2012-01-31 13:47:36 +08001036 ss->bind(dummytop);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001037 dummytop->subsys[i]->cgroup = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -07001038 cgrp->subsys[i] = NULL;
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001039 subsys[i]->root = &rootnode;
Li Zefan33a68ac2009-01-07 18:07:42 -08001040 list_move(&ss->sibling, &rootnode.subsys_list);
Paul Menage999cd8a2009-01-07 18:08:36 -08001041 mutex_unlock(&ss->hierarchy_mutex);
Ben Blumcf5d5942010-03-10 15:22:09 -08001042 /* subsystem is now free - drop reference on module */
1043 module_put(ss->module);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001044 } else if (bit & final_bits) {
1045 /* Subsystem state should already exist */
Ben Blumaae8aab2010-03-10 15:22:07 -08001046 BUG_ON(ss == NULL);
Paul Menagebd89aab2007-10-18 23:40:44 -07001047 BUG_ON(!cgrp->subsys[i]);
Ben Blumcf5d5942010-03-10 15:22:09 -08001048 /*
1049 * a refcount was taken, but we already had one, so
1050 * drop the extra reference.
1051 */
1052 module_put(ss->module);
1053#ifdef CONFIG_MODULE_UNLOAD
1054 BUG_ON(ss->module && !module_refcount(ss->module));
1055#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001056 } else {
1057 /* Subsystem state shouldn't exist */
Paul Menagebd89aab2007-10-18 23:40:44 -07001058 BUG_ON(cgrp->subsys[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001059 }
1060 }
1061 root->subsys_bits = root->actual_subsys_bits = final_bits;
1062 synchronize_rcu();
1063
1064 return 0;
1065}
1066
Al Viro34c80b12011-12-08 21:32:45 -05001067static int cgroup_show_options(struct seq_file *seq, struct dentry *dentry)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001068{
Al Viro34c80b12011-12-08 21:32:45 -05001069 struct cgroupfs_root *root = dentry->d_sb->s_fs_info;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001070 struct cgroup_subsys *ss;
1071
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001072 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001073 for_each_subsys(root, ss)
1074 seq_printf(seq, ",%s", ss->name);
1075 if (test_bit(ROOT_NOPREFIX, &root->flags))
1076 seq_puts(seq, ",noprefix");
Paul Menage81a6a5c2007-10-18 23:39:38 -07001077 if (strlen(root->release_agent_path))
1078 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Daniel Lezcano97978e62010-10-27 15:33:35 -07001079 if (clone_children(&root->top_cgroup))
1080 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001081 if (strlen(root->name))
1082 seq_printf(seq, ",name=%s", root->name);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001083 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001084 return 0;
1085}
1086
1087struct cgroup_sb_opts {
1088 unsigned long subsys_bits;
1089 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001090 char *release_agent;
Daniel Lezcano97978e62010-10-27 15:33:35 -07001091 bool clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001092 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001093 /* User explicitly requested empty subsystem */
1094 bool none;
Paul Menagec6d57f32009-09-23 15:56:19 -07001095
1096 struct cgroupfs_root *new_root;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001097
Paul Menageddbcc7e2007-10-18 23:39:30 -07001098};
1099
Ben Blumaae8aab2010-03-10 15:22:07 -08001100/*
1101 * Convert a hierarchy specifier into a bitmask of subsystems and flags. Call
Ben Blumcf5d5942010-03-10 15:22:09 -08001102 * with cgroup_mutex held to protect the subsys[] array. This function takes
1103 * refcounts on subsystems to be used, unless it returns error, in which case
1104 * no refcounts are taken.
Ben Blumaae8aab2010-03-10 15:22:07 -08001105 */
Ben Blumcf5d5942010-03-10 15:22:09 -08001106static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001107{
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001108 char *token, *o = data;
1109 bool all_ss = false, one_ss = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001110 unsigned long mask = (unsigned long)-1;
Ben Blumcf5d5942010-03-10 15:22:09 -08001111 int i;
1112 bool module_pin_failed = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001113
Ben Blumaae8aab2010-03-10 15:22:07 -08001114 BUG_ON(!mutex_is_locked(&cgroup_mutex));
1115
Li Zefanf9ab5b52009-06-17 16:26:33 -07001116#ifdef CONFIG_CPUSETS
1117 mask = ~(1UL << cpuset_subsys_id);
1118#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001119
Paul Menagec6d57f32009-09-23 15:56:19 -07001120 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001121
1122 while ((token = strsep(&o, ",")) != NULL) {
1123 if (!*token)
1124 return -EINVAL;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001125 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001126 /* Explicitly have no subsystems */
1127 opts->none = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001128 continue;
1129 }
1130 if (!strcmp(token, "all")) {
1131 /* Mutually exclusive option 'all' + subsystem name */
1132 if (one_ss)
1133 return -EINVAL;
1134 all_ss = true;
1135 continue;
1136 }
1137 if (!strcmp(token, "noprefix")) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001138 set_bit(ROOT_NOPREFIX, &opts->flags);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001139 continue;
1140 }
1141 if (!strcmp(token, "clone_children")) {
Daniel Lezcano97978e62010-10-27 15:33:35 -07001142 opts->clone_children = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001143 continue;
1144 }
1145 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001146 /* Specifying two release agents is forbidden */
1147 if (opts->release_agent)
1148 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001149 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001150 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001151 if (!opts->release_agent)
1152 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001153 continue;
1154 }
1155 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001156 const char *name = token + 5;
1157 /* Can't specify an empty name */
1158 if (!strlen(name))
1159 return -EINVAL;
1160 /* Must match [\w.-]+ */
1161 for (i = 0; i < strlen(name); i++) {
1162 char c = name[i];
1163 if (isalnum(c))
1164 continue;
1165 if ((c == '.') || (c == '-') || (c == '_'))
1166 continue;
1167 return -EINVAL;
1168 }
1169 /* Specifying two names is forbidden */
1170 if (opts->name)
1171 return -EINVAL;
1172 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001173 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001174 GFP_KERNEL);
1175 if (!opts->name)
1176 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001177
1178 continue;
1179 }
1180
1181 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1182 struct cgroup_subsys *ss = subsys[i];
1183 if (ss == NULL)
1184 continue;
1185 if (strcmp(token, ss->name))
1186 continue;
1187 if (ss->disabled)
1188 continue;
1189
1190 /* Mutually exclusive option 'all' + subsystem name */
1191 if (all_ss)
1192 return -EINVAL;
1193 set_bit(i, &opts->subsys_bits);
1194 one_ss = true;
1195
1196 break;
1197 }
1198 if (i == CGROUP_SUBSYS_COUNT)
1199 return -ENOENT;
1200 }
1201
1202 /*
1203 * If the 'all' option was specified select all the subsystems,
Li Zefan0d19ea82011-12-27 14:25:55 +08001204 * otherwise if 'none', 'name=' and a subsystem name options
1205 * were not specified, let's default to 'all'
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001206 */
Li Zefan0d19ea82011-12-27 14:25:55 +08001207 if (all_ss || (!one_ss && !opts->none && !opts->name)) {
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001208 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
1209 struct cgroup_subsys *ss = subsys[i];
1210 if (ss == NULL)
1211 continue;
1212 if (ss->disabled)
1213 continue;
1214 set_bit(i, &opts->subsys_bits);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001215 }
1216 }
1217
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001218 /* Consistency checks */
1219
Li Zefanf9ab5b52009-06-17 16:26:33 -07001220 /*
1221 * Option noprefix was introduced just for backward compatibility
1222 * with the old cpuset, so we allow noprefix only if mounting just
1223 * the cpuset subsystem.
1224 */
1225 if (test_bit(ROOT_NOPREFIX, &opts->flags) &&
1226 (opts->subsys_bits & mask))
1227 return -EINVAL;
1228
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001229
1230 /* Can't specify "none" and some subsystems */
1231 if (opts->subsys_bits && opts->none)
1232 return -EINVAL;
1233
1234 /*
1235 * We either have to specify by name or by subsystems. (So all
1236 * empty hierarchies must have a name).
1237 */
Paul Menagec6d57f32009-09-23 15:56:19 -07001238 if (!opts->subsys_bits && !opts->name)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001239 return -EINVAL;
1240
Ben Blumcf5d5942010-03-10 15:22:09 -08001241 /*
1242 * Grab references on all the modules we'll need, so the subsystems
1243 * don't dance around before rebind_subsystems attaches them. This may
1244 * take duplicate reference counts on a subsystem that's already used,
1245 * but rebind_subsystems handles this case.
1246 */
1247 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
1248 unsigned long bit = 1UL << i;
1249
1250 if (!(bit & opts->subsys_bits))
1251 continue;
1252 if (!try_module_get(subsys[i]->module)) {
1253 module_pin_failed = true;
1254 break;
1255 }
1256 }
1257 if (module_pin_failed) {
1258 /*
1259 * oops, one of the modules was going away. this means that we
1260 * raced with a module_delete call, and to the user this is
1261 * essentially a "subsystem doesn't exist" case.
1262 */
1263 for (i--; i >= CGROUP_BUILTIN_SUBSYS_COUNT; i--) {
1264 /* drop refcounts only on the ones we took */
1265 unsigned long bit = 1UL << i;
1266
1267 if (!(bit & opts->subsys_bits))
1268 continue;
1269 module_put(subsys[i]->module);
1270 }
1271 return -ENOENT;
1272 }
1273
Paul Menageddbcc7e2007-10-18 23:39:30 -07001274 return 0;
1275}
1276
Ben Blumcf5d5942010-03-10 15:22:09 -08001277static void drop_parsed_module_refcounts(unsigned long subsys_bits)
1278{
1279 int i;
1280 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
1281 unsigned long bit = 1UL << i;
1282
1283 if (!(bit & subsys_bits))
1284 continue;
1285 module_put(subsys[i]->module);
1286 }
1287}
1288
Paul Menageddbcc7e2007-10-18 23:39:30 -07001289static int cgroup_remount(struct super_block *sb, int *flags, char *data)
1290{
1291 int ret = 0;
1292 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001293 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001294 struct cgroup_sb_opts opts;
1295
Paul Menagebd89aab2007-10-18 23:40:44 -07001296 mutex_lock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001297 mutex_lock(&cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001298 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001299
1300 /* See what subsystems are wanted */
1301 ret = parse_cgroupfs_options(data, &opts);
1302 if (ret)
1303 goto out_unlock;
1304
Ben Blumcf5d5942010-03-10 15:22:09 -08001305 /* Don't allow flags or name to change at remount */
1306 if (opts.flags != root->flags ||
1307 (opts.name && strcmp(opts.name, root->name))) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001308 ret = -EINVAL;
Ben Blumcf5d5942010-03-10 15:22:09 -08001309 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menagec6d57f32009-09-23 15:56:19 -07001310 goto out_unlock;
1311 }
1312
Paul Menageddbcc7e2007-10-18 23:39:30 -07001313 ret = rebind_subsystems(root, opts.subsys_bits);
Ben Blumcf5d5942010-03-10 15:22:09 -08001314 if (ret) {
1315 drop_parsed_module_refcounts(opts.subsys_bits);
Li Zefan0670e082009-04-02 16:57:30 -07001316 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001317 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001318
1319 /* (re)populate subsystem files */
Li Zefan0670e082009-04-02 16:57:30 -07001320 cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001321
Paul Menage81a6a5c2007-10-18 23:39:38 -07001322 if (opts.release_agent)
1323 strcpy(root->release_agent_path, opts.release_agent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001324 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001325 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001326 kfree(opts.name);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001327 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001328 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07001329 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001330 return ret;
1331}
1332
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001333static const struct super_operations cgroup_ops = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001334 .statfs = simple_statfs,
1335 .drop_inode = generic_delete_inode,
1336 .show_options = cgroup_show_options,
1337 .remount_fs = cgroup_remount,
1338};
1339
Paul Menagecc31edc2008-10-18 20:28:04 -07001340static void init_cgroup_housekeeping(struct cgroup *cgrp)
1341{
1342 INIT_LIST_HEAD(&cgrp->sibling);
1343 INIT_LIST_HEAD(&cgrp->children);
1344 INIT_LIST_HEAD(&cgrp->css_sets);
1345 INIT_LIST_HEAD(&cgrp->release_list);
Ben Blum72a8cb32009-09-23 15:56:27 -07001346 INIT_LIST_HEAD(&cgrp->pidlists);
1347 mutex_init(&cgrp->pidlist_mutex);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08001348 INIT_LIST_HEAD(&cgrp->event_list);
1349 spin_lock_init(&cgrp->event_list_lock);
Paul Menagecc31edc2008-10-18 20:28:04 -07001350}
Paul Menagec6d57f32009-09-23 15:56:19 -07001351
Paul Menageddbcc7e2007-10-18 23:39:30 -07001352static void init_cgroup_root(struct cgroupfs_root *root)
1353{
Paul Menagebd89aab2007-10-18 23:40:44 -07001354 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001355 INIT_LIST_HEAD(&root->subsys_list);
1356 INIT_LIST_HEAD(&root->root_list);
1357 root->number_of_cgroups = 1;
Paul Menagebd89aab2007-10-18 23:40:44 -07001358 cgrp->root = root;
1359 cgrp->top_cgroup = cgrp;
Paul Menagecc31edc2008-10-18 20:28:04 -07001360 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001361}
1362
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001363static bool init_root_id(struct cgroupfs_root *root)
1364{
1365 int ret = 0;
1366
1367 do {
1368 if (!ida_pre_get(&hierarchy_ida, GFP_KERNEL))
1369 return false;
1370 spin_lock(&hierarchy_id_lock);
1371 /* Try to allocate the next unused ID */
1372 ret = ida_get_new_above(&hierarchy_ida, next_hierarchy_id,
1373 &root->hierarchy_id);
1374 if (ret == -ENOSPC)
1375 /* Try again starting from 0 */
1376 ret = ida_get_new(&hierarchy_ida, &root->hierarchy_id);
1377 if (!ret) {
1378 next_hierarchy_id = root->hierarchy_id + 1;
1379 } else if (ret != -EAGAIN) {
1380 /* Can only get here if the 31-bit IDR is full ... */
1381 BUG_ON(ret);
1382 }
1383 spin_unlock(&hierarchy_id_lock);
1384 } while (ret);
1385 return true;
1386}
1387
Paul Menageddbcc7e2007-10-18 23:39:30 -07001388static int cgroup_test_super(struct super_block *sb, void *data)
1389{
Paul Menagec6d57f32009-09-23 15:56:19 -07001390 struct cgroup_sb_opts *opts = data;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001391 struct cgroupfs_root *root = sb->s_fs_info;
1392
Paul Menagec6d57f32009-09-23 15:56:19 -07001393 /* If we asked for a name then it must match */
1394 if (opts->name && strcmp(opts->name, root->name))
1395 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001396
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001397 /*
1398 * If we asked for subsystems (or explicitly for no
1399 * subsystems) then they must match
1400 */
1401 if ((opts->subsys_bits || opts->none)
1402 && (opts->subsys_bits != root->subsys_bits))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001403 return 0;
1404
1405 return 1;
1406}
1407
Paul Menagec6d57f32009-09-23 15:56:19 -07001408static struct cgroupfs_root *cgroup_root_from_opts(struct cgroup_sb_opts *opts)
1409{
1410 struct cgroupfs_root *root;
1411
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001412 if (!opts->subsys_bits && !opts->none)
Paul Menagec6d57f32009-09-23 15:56:19 -07001413 return NULL;
1414
1415 root = kzalloc(sizeof(*root), GFP_KERNEL);
1416 if (!root)
1417 return ERR_PTR(-ENOMEM);
1418
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001419 if (!init_root_id(root)) {
1420 kfree(root);
1421 return ERR_PTR(-ENOMEM);
1422 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001423 init_cgroup_root(root);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001424
Paul Menagec6d57f32009-09-23 15:56:19 -07001425 root->subsys_bits = opts->subsys_bits;
1426 root->flags = opts->flags;
1427 if (opts->release_agent)
1428 strcpy(root->release_agent_path, opts->release_agent);
1429 if (opts->name)
1430 strcpy(root->name, opts->name);
Daniel Lezcano97978e62010-10-27 15:33:35 -07001431 if (opts->clone_children)
1432 set_bit(CGRP_CLONE_CHILDREN, &root->top_cgroup.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001433 return root;
1434}
1435
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001436static void cgroup_drop_root(struct cgroupfs_root *root)
1437{
1438 if (!root)
1439 return;
1440
1441 BUG_ON(!root->hierarchy_id);
1442 spin_lock(&hierarchy_id_lock);
1443 ida_remove(&hierarchy_ida, root->hierarchy_id);
1444 spin_unlock(&hierarchy_id_lock);
1445 kfree(root);
1446}
1447
Paul Menageddbcc7e2007-10-18 23:39:30 -07001448static int cgroup_set_super(struct super_block *sb, void *data)
1449{
1450 int ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001451 struct cgroup_sb_opts *opts = data;
1452
1453 /* If we don't have a new root, we can't set up a new sb */
1454 if (!opts->new_root)
1455 return -EINVAL;
1456
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001457 BUG_ON(!opts->subsys_bits && !opts->none);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001458
1459 ret = set_anon_super(sb, NULL);
1460 if (ret)
1461 return ret;
1462
Paul Menagec6d57f32009-09-23 15:56:19 -07001463 sb->s_fs_info = opts->new_root;
1464 opts->new_root->sb = sb;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001465
1466 sb->s_blocksize = PAGE_CACHE_SIZE;
1467 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
1468 sb->s_magic = CGROUP_SUPER_MAGIC;
1469 sb->s_op = &cgroup_ops;
1470
1471 return 0;
1472}
1473
1474static int cgroup_get_rootdir(struct super_block *sb)
1475{
Al Viro0df6a632010-12-21 13:29:29 -05001476 static const struct dentry_operations cgroup_dops = {
1477 .d_iput = cgroup_diput,
Al Viroc72a04e2011-01-14 05:31:45 +00001478 .d_delete = cgroup_delete,
Al Viro0df6a632010-12-21 13:29:29 -05001479 };
1480
Paul Menageddbcc7e2007-10-18 23:39:30 -07001481 struct inode *inode =
1482 cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001483
1484 if (!inode)
1485 return -ENOMEM;
1486
Paul Menageddbcc7e2007-10-18 23:39:30 -07001487 inode->i_fop = &simple_dir_operations;
1488 inode->i_op = &cgroup_dir_inode_operations;
1489 /* directories start off with i_nlink == 2 (for "." entry) */
1490 inc_nlink(inode);
Al Viro48fde702012-01-08 22:15:13 -05001491 sb->s_root = d_make_root(inode);
1492 if (!sb->s_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001493 return -ENOMEM;
Al Viro0df6a632010-12-21 13:29:29 -05001494 /* for everything else we want ->d_op set */
1495 sb->s_d_op = &cgroup_dops;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001496 return 0;
1497}
1498
Al Virof7e83572010-07-26 13:23:11 +04001499static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001500 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001501 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001502{
1503 struct cgroup_sb_opts opts;
Paul Menagec6d57f32009-09-23 15:56:19 -07001504 struct cgroupfs_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001505 int ret = 0;
1506 struct super_block *sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001507 struct cgroupfs_root *new_root;
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001508 struct inode *inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001509
1510 /* First find the desired set of subsystems */
Ben Blumaae8aab2010-03-10 15:22:07 -08001511 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001512 ret = parse_cgroupfs_options(data, &opts);
Ben Blumaae8aab2010-03-10 15:22:07 -08001513 mutex_unlock(&cgroup_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001514 if (ret)
1515 goto out_err;
1516
1517 /*
1518 * Allocate a new cgroup root. We may not need it if we're
1519 * reusing an existing hierarchy.
1520 */
1521 new_root = cgroup_root_from_opts(&opts);
1522 if (IS_ERR(new_root)) {
1523 ret = PTR_ERR(new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001524 goto drop_modules;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001525 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001526 opts.new_root = new_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001527
Paul Menagec6d57f32009-09-23 15:56:19 -07001528 /* Locate an existing or new sb for this hierarchy */
1529 sb = sget(fs_type, cgroup_test_super, cgroup_set_super, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001530 if (IS_ERR(sb)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001531 ret = PTR_ERR(sb);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001532 cgroup_drop_root(opts.new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001533 goto drop_modules;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001534 }
1535
Paul Menagec6d57f32009-09-23 15:56:19 -07001536 root = sb->s_fs_info;
1537 BUG_ON(!root);
1538 if (root == opts.new_root) {
1539 /* We used the new root structure, so this is a new hierarchy */
1540 struct list_head tmp_cg_links;
Li Zefanc12f65d2009-01-07 18:07:42 -08001541 struct cgroup *root_cgrp = &root->top_cgroup;
Paul Menagec6d57f32009-09-23 15:56:19 -07001542 struct cgroupfs_root *existing_root;
eparis@redhat2ce97382011-06-02 21:20:51 +10001543 const struct cred *cred;
Li Zefan28fd5df2008-04-29 01:00:13 -07001544 int i;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001545
1546 BUG_ON(sb->s_root != NULL);
1547
1548 ret = cgroup_get_rootdir(sb);
1549 if (ret)
1550 goto drop_new_super;
Paul Menage817929e2007-10-18 23:39:36 -07001551 inode = sb->s_root->d_inode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001552
Paul Menage817929e2007-10-18 23:39:36 -07001553 mutex_lock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001554 mutex_lock(&cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001555 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001556
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001557 /* Check for name clashes with existing mounts */
1558 ret = -EBUSY;
1559 if (strlen(root->name))
1560 for_each_active_root(existing_root)
1561 if (!strcmp(existing_root->name, root->name))
1562 goto unlock_drop;
Paul Menagec6d57f32009-09-23 15:56:19 -07001563
Paul Menage817929e2007-10-18 23:39:36 -07001564 /*
1565 * We're accessing css_set_count without locking
1566 * css_set_lock here, but that's OK - it can only be
1567 * increased by someone holding cgroup_lock, and
1568 * that's us. The worst that can happen is that we
1569 * have some link structures left over
1570 */
1571 ret = allocate_cg_links(css_set_count, &tmp_cg_links);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001572 if (ret)
1573 goto unlock_drop;
Paul Menage817929e2007-10-18 23:39:36 -07001574
Paul Menageddbcc7e2007-10-18 23:39:30 -07001575 ret = rebind_subsystems(root, root->subsys_bits);
1576 if (ret == -EBUSY) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001577 free_cg_links(&tmp_cg_links);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001578 goto unlock_drop;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001579 }
Ben Blumcf5d5942010-03-10 15:22:09 -08001580 /*
1581 * There must be no failure case after here, since rebinding
1582 * takes care of subsystems' refcounts, which are explicitly
1583 * dropped in the failure exit path.
1584 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001585
1586 /* EBUSY should be the only error here */
1587 BUG_ON(ret);
1588
1589 list_add(&root->root_list, &roots);
Paul Menage817929e2007-10-18 23:39:36 -07001590 root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001591
Li Zefanc12f65d2009-01-07 18:07:42 -08001592 sb->s_root->d_fsdata = root_cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001593 root->top_cgroup.dentry = sb->s_root;
1594
Paul Menage817929e2007-10-18 23:39:36 -07001595 /* Link the top cgroup in this hierarchy into all
1596 * the css_set objects */
1597 write_lock(&css_set_lock);
Li Zefan28fd5df2008-04-29 01:00:13 -07001598 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
1599 struct hlist_head *hhead = &css_set_table[i];
1600 struct hlist_node *node;
Paul Menage817929e2007-10-18 23:39:36 -07001601 struct css_set *cg;
Li Zefan28fd5df2008-04-29 01:00:13 -07001602
Li Zefanc12f65d2009-01-07 18:07:42 -08001603 hlist_for_each_entry(cg, node, hhead, hlist)
1604 link_css_set(&tmp_cg_links, cg, root_cgrp);
Li Zefan28fd5df2008-04-29 01:00:13 -07001605 }
Paul Menage817929e2007-10-18 23:39:36 -07001606 write_unlock(&css_set_lock);
1607
1608 free_cg_links(&tmp_cg_links);
1609
Li Zefanc12f65d2009-01-07 18:07:42 -08001610 BUG_ON(!list_empty(&root_cgrp->sibling));
1611 BUG_ON(!list_empty(&root_cgrp->children));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001612 BUG_ON(root->number_of_cgroups != 1);
1613
eparis@redhat2ce97382011-06-02 21:20:51 +10001614 cred = override_creds(&init_cred);
Li Zefanc12f65d2009-01-07 18:07:42 -08001615 cgroup_populate_dir(root_cgrp);
eparis@redhat2ce97382011-06-02 21:20:51 +10001616 revert_creds(cred);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001617 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001618 mutex_unlock(&cgroup_mutex);
Xiaotian Feng34f77a92009-09-23 15:56:18 -07001619 mutex_unlock(&inode->i_mutex);
Paul Menagec6d57f32009-09-23 15:56:19 -07001620 } else {
1621 /*
1622 * We re-used an existing hierarchy - the new root (if
1623 * any) is not needed
1624 */
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001625 cgroup_drop_root(opts.new_root);
Ben Blumcf5d5942010-03-10 15:22:09 -08001626 /* no subsys rebinding, so refcounts don't change */
1627 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001628 }
1629
Paul Menagec6d57f32009-09-23 15:56:19 -07001630 kfree(opts.release_agent);
1631 kfree(opts.name);
Al Virof7e83572010-07-26 13:23:11 +04001632 return dget(sb->s_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001633
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001634 unlock_drop:
1635 mutex_unlock(&cgroup_root_mutex);
1636 mutex_unlock(&cgroup_mutex);
1637 mutex_unlock(&inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001638 drop_new_super:
Al Viro6f5bbff2009-05-06 01:34:22 -04001639 deactivate_locked_super(sb);
Ben Blumcf5d5942010-03-10 15:22:09 -08001640 drop_modules:
1641 drop_parsed_module_refcounts(opts.subsys_bits);
Paul Menagec6d57f32009-09-23 15:56:19 -07001642 out_err:
1643 kfree(opts.release_agent);
1644 kfree(opts.name);
Al Virof7e83572010-07-26 13:23:11 +04001645 return ERR_PTR(ret);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001646}
1647
1648static void cgroup_kill_sb(struct super_block *sb) {
1649 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001650 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001651 int ret;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001652 struct cg_cgroup_link *link;
1653 struct cg_cgroup_link *saved_link;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001654
1655 BUG_ON(!root);
1656
1657 BUG_ON(root->number_of_cgroups != 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001658 BUG_ON(!list_empty(&cgrp->children));
1659 BUG_ON(!list_empty(&cgrp->sibling));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001660
1661 mutex_lock(&cgroup_mutex);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001662 mutex_lock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001663
1664 /* Rebind all subsystems back to the default hierarchy */
1665 ret = rebind_subsystems(root, 0);
1666 /* Shouldn't be able to fail ... */
1667 BUG_ON(ret);
1668
Paul Menage817929e2007-10-18 23:39:36 -07001669 /*
1670 * Release all the links from css_sets to this hierarchy's
1671 * root cgroup
1672 */
1673 write_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001674
1675 list_for_each_entry_safe(link, saved_link, &cgrp->css_sets,
1676 cgrp_link_list) {
Paul Menage817929e2007-10-18 23:39:36 -07001677 list_del(&link->cg_link_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07001678 list_del(&link->cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07001679 kfree(link);
1680 }
1681 write_unlock(&css_set_lock);
1682
Paul Menage839ec542009-01-29 14:25:22 -08001683 if (!list_empty(&root->root_list)) {
1684 list_del(&root->root_list);
1685 root_count--;
1686 }
Li Zefane5f6a862009-01-07 18:07:41 -08001687
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001688 mutex_unlock(&cgroup_root_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001689 mutex_unlock(&cgroup_mutex);
1690
Paul Menageddbcc7e2007-10-18 23:39:30 -07001691 kill_litter_super(sb);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001692 cgroup_drop_root(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001693}
1694
1695static struct file_system_type cgroup_fs_type = {
1696 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001697 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001698 .kill_sb = cgroup_kill_sb,
1699};
1700
Greg KH676db4a2010-08-05 13:53:35 -07001701static struct kobject *cgroup_kobj;
1702
Paul Menagebd89aab2007-10-18 23:40:44 -07001703static inline struct cgroup *__d_cgrp(struct dentry *dentry)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001704{
1705 return dentry->d_fsdata;
1706}
1707
1708static inline struct cftype *__d_cft(struct dentry *dentry)
1709{
1710 return dentry->d_fsdata;
1711}
1712
Li Zefana043e3b2008-02-23 15:24:09 -08001713/**
1714 * cgroup_path - generate the path of a cgroup
1715 * @cgrp: the cgroup in question
1716 * @buf: the buffer to write the path into
1717 * @buflen: the length of the buffer
1718 *
Paul Menagea47295e2009-01-07 18:07:44 -08001719 * Called with cgroup_mutex held or else with an RCU-protected cgroup
1720 * reference. Writes path of cgroup into buf. Returns 0 on success,
1721 * -errno on error.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001722 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001723int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001724{
1725 char *start;
Li Zefan9a9686b2010-04-22 17:29:24 +08001726 struct dentry *dentry = rcu_dereference_check(cgrp->dentry,
Li Zefan9a9686b2010-04-22 17:29:24 +08001727 cgroup_lock_is_held());
Paul Menageddbcc7e2007-10-18 23:39:30 -07001728
Paul Menagea47295e2009-01-07 18:07:44 -08001729 if (!dentry || cgrp == dummytop) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001730 /*
1731 * Inactive subsystems have no dentry for their root
1732 * cgroup
1733 */
1734 strcpy(buf, "/");
1735 return 0;
1736 }
1737
1738 start = buf + buflen;
1739
1740 *--start = '\0';
1741 for (;;) {
Paul Menagea47295e2009-01-07 18:07:44 -08001742 int len = dentry->d_name.len;
Li Zefan9a9686b2010-04-22 17:29:24 +08001743
Paul Menageddbcc7e2007-10-18 23:39:30 -07001744 if ((start -= len) < buf)
1745 return -ENAMETOOLONG;
Li Zefan9a9686b2010-04-22 17:29:24 +08001746 memcpy(start, dentry->d_name.name, len);
Paul Menagebd89aab2007-10-18 23:40:44 -07001747 cgrp = cgrp->parent;
1748 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001749 break;
Li Zefan9a9686b2010-04-22 17:29:24 +08001750
1751 dentry = rcu_dereference_check(cgrp->dentry,
Li Zefan9a9686b2010-04-22 17:29:24 +08001752 cgroup_lock_is_held());
Paul Menagebd89aab2007-10-18 23:40:44 -07001753 if (!cgrp->parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001754 continue;
1755 if (--start < buf)
1756 return -ENAMETOOLONG;
1757 *start = '/';
1758 }
1759 memmove(buf, start, buf + buflen - start);
1760 return 0;
1761}
Ben Blum67523c42010-03-10 15:22:11 -08001762EXPORT_SYMBOL_GPL(cgroup_path);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001763
Ben Blum74a11662011-05-26 16:25:20 -07001764/*
Tejun Heo2f7ee562011-12-12 18:12:21 -08001765 * Control Group taskset
1766 */
Tejun Heo134d3372011-12-12 18:12:21 -08001767struct task_and_cgroup {
1768 struct task_struct *task;
1769 struct cgroup *cgrp;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001770 struct css_set *cg;
Tejun Heo134d3372011-12-12 18:12:21 -08001771};
1772
Tejun Heo2f7ee562011-12-12 18:12:21 -08001773struct cgroup_taskset {
1774 struct task_and_cgroup single;
1775 struct flex_array *tc_array;
1776 int tc_array_len;
1777 int idx;
1778 struct cgroup *cur_cgrp;
1779};
1780
1781/**
1782 * cgroup_taskset_first - reset taskset and return the first task
1783 * @tset: taskset of interest
1784 *
1785 * @tset iteration is initialized and the first task is returned.
1786 */
1787struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
1788{
1789 if (tset->tc_array) {
1790 tset->idx = 0;
1791 return cgroup_taskset_next(tset);
1792 } else {
1793 tset->cur_cgrp = tset->single.cgrp;
1794 return tset->single.task;
1795 }
1796}
1797EXPORT_SYMBOL_GPL(cgroup_taskset_first);
1798
1799/**
1800 * cgroup_taskset_next - iterate to the next task in taskset
1801 * @tset: taskset of interest
1802 *
1803 * Return the next task in @tset. Iteration must have been initialized
1804 * with cgroup_taskset_first().
1805 */
1806struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
1807{
1808 struct task_and_cgroup *tc;
1809
1810 if (!tset->tc_array || tset->idx >= tset->tc_array_len)
1811 return NULL;
1812
1813 tc = flex_array_get(tset->tc_array, tset->idx++);
1814 tset->cur_cgrp = tc->cgrp;
1815 return tc->task;
1816}
1817EXPORT_SYMBOL_GPL(cgroup_taskset_next);
1818
1819/**
1820 * cgroup_taskset_cur_cgroup - return the matching cgroup for the current task
1821 * @tset: taskset of interest
1822 *
1823 * Return the cgroup for the current (last returned) task of @tset. This
1824 * function must be preceded by either cgroup_taskset_first() or
1825 * cgroup_taskset_next().
1826 */
1827struct cgroup *cgroup_taskset_cur_cgroup(struct cgroup_taskset *tset)
1828{
1829 return tset->cur_cgrp;
1830}
1831EXPORT_SYMBOL_GPL(cgroup_taskset_cur_cgroup);
1832
1833/**
1834 * cgroup_taskset_size - return the number of tasks in taskset
1835 * @tset: taskset of interest
1836 */
1837int cgroup_taskset_size(struct cgroup_taskset *tset)
1838{
1839 return tset->tc_array ? tset->tc_array_len : 1;
1840}
1841EXPORT_SYMBOL_GPL(cgroup_taskset_size);
1842
1843
Ben Blum74a11662011-05-26 16:25:20 -07001844/*
1845 * cgroup_task_migrate - move a task from one cgroup to another.
1846 *
1847 * 'guarantee' is set if the caller promises that a new css_set for the task
1848 * will already exist. If not set, this function might sleep, and can fail with
Tejun Heocd3d0952011-12-12 18:12:21 -08001849 * -ENOMEM. Must be called with cgroup_mutex and threadgroup locked.
Ben Blum74a11662011-05-26 16:25:20 -07001850 */
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001851static void cgroup_task_migrate(struct cgroup *cgrp, struct cgroup *oldcgrp,
1852 struct task_struct *tsk, struct css_set *newcg)
Ben Blum74a11662011-05-26 16:25:20 -07001853{
1854 struct css_set *oldcg;
Ben Blum74a11662011-05-26 16:25:20 -07001855
1856 /*
Mandeep Singh Baines026085e2011-12-21 20:18:35 -08001857 * We are synchronized through threadgroup_lock() against PF_EXITING
1858 * setting such that we can't race against cgroup_exit() changing the
1859 * css_set to init_css_set and dropping the old one.
Ben Blum74a11662011-05-26 16:25:20 -07001860 */
Frederic Weisbeckerc84cdf72011-12-21 20:03:18 +01001861 WARN_ON_ONCE(tsk->flags & PF_EXITING);
Ben Blum74a11662011-05-26 16:25:20 -07001862 oldcg = tsk->cgroups;
Ben Blum74a11662011-05-26 16:25:20 -07001863
Ben Blum74a11662011-05-26 16:25:20 -07001864 task_lock(tsk);
Ben Blum74a11662011-05-26 16:25:20 -07001865 rcu_assign_pointer(tsk->cgroups, newcg);
1866 task_unlock(tsk);
1867
1868 /* Update the css_set linked lists if we're using them */
1869 write_lock(&css_set_lock);
1870 if (!list_empty(&tsk->cg_list))
1871 list_move(&tsk->cg_list, &newcg->tasks);
1872 write_unlock(&css_set_lock);
1873
1874 /*
1875 * We just gained a reference on oldcg by taking it from the task. As
1876 * trading it for newcg is protected by cgroup_mutex, we're safe to drop
1877 * it here; it will be freed under RCU.
1878 */
Ben Blum74a11662011-05-26 16:25:20 -07001879 set_bit(CGRP_RELEASABLE, &oldcgrp->flags);
Daisuke Nishimura9a55fef2012-10-04 16:37:16 +09001880 put_css_set(oldcg);
Ben Blum74a11662011-05-26 16:25:20 -07001881}
1882
Li Zefana043e3b2008-02-23 15:24:09 -08001883/**
1884 * cgroup_attach_task - attach task 'tsk' to cgroup 'cgrp'
1885 * @cgrp: the cgroup the task is attaching to
1886 * @tsk: the task to be attached
Paul Menagebbcb81d2007-10-18 23:39:32 -07001887 *
Tejun Heocd3d0952011-12-12 18:12:21 -08001888 * Call with cgroup_mutex and threadgroup locked. May take task_lock of
1889 * @tsk during call.
Paul Menagebbcb81d2007-10-18 23:39:32 -07001890 */
Cliff Wickman956db3c2008-02-07 00:14:43 -08001891int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001892{
Tejun Heo8f121912012-03-29 22:03:33 -07001893 int retval = 0;
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001894 struct cgroup_subsys *ss, *failed_ss = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07001895 struct cgroup *oldcgrp;
Paul Menagebd89aab2007-10-18 23:40:44 -07001896 struct cgroupfs_root *root = cgrp->root;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001897 struct cgroup_taskset tset = { };
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001898 struct css_set *newcg;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001899
Tejun Heocd3d0952011-12-12 18:12:21 -08001900 /* @tsk either already exited or can't exit until the end */
1901 if (tsk->flags & PF_EXITING)
1902 return -ESRCH;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001903
1904 /* Nothing to do if the task is already in that cgroup */
Paul Menage7717f7b2009-09-23 15:56:22 -07001905 oldcgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07001906 if (cgrp == oldcgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07001907 return 0;
1908
Tejun Heo2f7ee562011-12-12 18:12:21 -08001909 tset.single.task = tsk;
1910 tset.single.cgrp = oldcgrp;
1911
Paul Menagebbcb81d2007-10-18 23:39:32 -07001912 for_each_subsys(root, ss) {
1913 if (ss->can_attach) {
Li Zefan761b3ef2012-01-31 13:47:36 +08001914 retval = ss->can_attach(cgrp, &tset);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001915 if (retval) {
1916 /*
1917 * Remember on which subsystem the can_attach()
1918 * failed, so that we only call cancel_attach()
1919 * against the subsystems whose can_attach()
1920 * succeeded. (See below)
1921 */
1922 failed_ss = ss;
1923 goto out;
1924 }
Paul Menagebbcb81d2007-10-18 23:39:32 -07001925 }
1926 }
1927
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001928 newcg = find_css_set(tsk->cgroups, cgrp);
1929 if (!newcg) {
1930 retval = -ENOMEM;
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001931 goto out;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08001932 }
1933
1934 cgroup_task_migrate(cgrp, oldcgrp, tsk, newcg);
Paul Menage817929e2007-10-18 23:39:36 -07001935
Paul Menagebbcb81d2007-10-18 23:39:32 -07001936 for_each_subsys(root, ss) {
Paul Jacksone18f6312008-02-07 00:13:44 -08001937 if (ss->attach)
Li Zefan761b3ef2012-01-31 13:47:36 +08001938 ss->attach(cgrp, &tset);
Paul Menagebbcb81d2007-10-18 23:39:32 -07001939 }
Ben Blum74a11662011-05-26 16:25:20 -07001940
Paul Menagebbcb81d2007-10-18 23:39:32 -07001941 synchronize_rcu();
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07001942
1943 /*
1944 * wake up rmdir() waiter. the rmdir should fail since the cgroup
1945 * is no longer empty.
1946 */
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07001947 cgroup_wakeup_rmdir_waiter(cgrp);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001948out:
1949 if (retval) {
1950 for_each_subsys(root, ss) {
1951 if (ss == failed_ss)
1952 /*
1953 * This subsystem was the one that failed the
1954 * can_attach() check earlier, so we don't need
1955 * to call cancel_attach() against it or any
1956 * remaining subsystems.
1957 */
1958 break;
1959 if (ss->cancel_attach)
Li Zefan761b3ef2012-01-31 13:47:36 +08001960 ss->cancel_attach(cgrp, &tset);
Daisuke Nishimura2468c722010-03-10 15:22:03 -08001961 }
1962 }
1963 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07001964}
1965
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001966/**
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001967 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
1968 * @from: attach to all cgroups of a given task
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001969 * @tsk: the task to be attached
1970 */
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001971int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001972{
1973 struct cgroupfs_root *root;
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001974 int retval = 0;
1975
1976 cgroup_lock();
1977 for_each_active_root(root) {
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001978 struct cgroup *from_cg = task_cgroup_from_root(from, root);
1979
1980 retval = cgroup_attach_task(from_cg, tsk);
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001981 if (retval)
1982 break;
1983 }
1984 cgroup_unlock();
1985
1986 return retval;
1987}
Michael S. Tsirkin31583bb2010-09-09 16:37:37 -07001988EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
Sridhar Samudralad7926ee2010-05-30 22:24:39 +02001989
Ben Blum74a11662011-05-26 16:25:20 -07001990/**
1991 * cgroup_attach_proc - attach all threads in a threadgroup to a cgroup
1992 * @cgrp: the cgroup to attach to
1993 * @leader: the threadgroup leader task_struct of the group to be attached
1994 *
Tejun Heo257058a2011-12-12 18:12:21 -08001995 * Call holding cgroup_mutex and the group_rwsem of the leader. Will take
1996 * task_lock of each thread in leader's threadgroup individually in turn.
Ben Blum74a11662011-05-26 16:25:20 -07001997 */
Kirill A. Shutemov1c6c3fa2011-12-27 07:46:25 +02001998static int cgroup_attach_proc(struct cgroup *cgrp, struct task_struct *leader)
Ben Blum74a11662011-05-26 16:25:20 -07001999{
2000 int retval, i, group_size;
2001 struct cgroup_subsys *ss, *failed_ss = NULL;
Ben Blum74a11662011-05-26 16:25:20 -07002002 /* guaranteed to be initialized later, but the compiler needs this */
Ben Blum74a11662011-05-26 16:25:20 -07002003 struct cgroupfs_root *root = cgrp->root;
2004 /* threadgroup list cursor and array */
2005 struct task_struct *tsk;
Tejun Heo134d3372011-12-12 18:12:21 -08002006 struct task_and_cgroup *tc;
Ben Blumd8466872011-05-26 16:25:21 -07002007 struct flex_array *group;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002008 struct cgroup_taskset tset = { };
Ben Blum74a11662011-05-26 16:25:20 -07002009
2010 /*
2011 * step 0: in order to do expensive, possibly blocking operations for
2012 * every thread, we cannot iterate the thread group list, since it needs
2013 * rcu or tasklist locked. instead, build an array of all threads in the
Tejun Heo257058a2011-12-12 18:12:21 -08002014 * group - group_rwsem prevents new threads from appearing, and if
2015 * threads exit, this will just be an over-estimate.
Ben Blum74a11662011-05-26 16:25:20 -07002016 */
2017 group_size = get_nr_threads(leader);
Ben Blumd8466872011-05-26 16:25:21 -07002018 /* flex_array supports very large thread-groups better than kmalloc. */
Tejun Heo134d3372011-12-12 18:12:21 -08002019 group = flex_array_alloc(sizeof(*tc), group_size, GFP_KERNEL);
Ben Blum74a11662011-05-26 16:25:20 -07002020 if (!group)
2021 return -ENOMEM;
Ben Blumd8466872011-05-26 16:25:21 -07002022 /* pre-allocate to guarantee space while iterating in rcu read-side. */
Li Zefan97630ec2013-03-12 15:36:00 -07002023 retval = flex_array_prealloc(group, 0, group_size, GFP_KERNEL);
Ben Blumd8466872011-05-26 16:25:21 -07002024 if (retval)
2025 goto out_free_group_list;
Ben Blum74a11662011-05-26 16:25:20 -07002026
Ben Blum74a11662011-05-26 16:25:20 -07002027 tsk = leader;
2028 i = 0;
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002029 /*
2030 * Prevent freeing of tasks while we take a snapshot. Tasks that are
2031 * already PF_EXITING could be freed from underneath us unless we
2032 * take an rcu_read_lock.
2033 */
2034 rcu_read_lock();
Ben Blum74a11662011-05-26 16:25:20 -07002035 do {
Tejun Heo134d3372011-12-12 18:12:21 -08002036 struct task_and_cgroup ent;
2037
Tejun Heocd3d0952011-12-12 18:12:21 -08002038 /* @tsk either already exited or can't exit until the end */
2039 if (tsk->flags & PF_EXITING)
2040 continue;
2041
Ben Blum74a11662011-05-26 16:25:20 -07002042 /* as per above, nr_threads may decrease, but not increase. */
2043 BUG_ON(i >= group_size);
Tejun Heo134d3372011-12-12 18:12:21 -08002044 ent.task = tsk;
2045 ent.cgrp = task_cgroup_from_root(tsk, root);
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08002046 /* nothing to do if this task is already in the cgroup */
2047 if (ent.cgrp == cgrp)
2048 continue;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002049 /*
2050 * saying GFP_ATOMIC has no effect here because we did prealloc
2051 * earlier, but it's good form to communicate our expectations.
2052 */
Tejun Heo134d3372011-12-12 18:12:21 -08002053 retval = flex_array_put(group, i, &ent, GFP_ATOMIC);
Ben Blumd8466872011-05-26 16:25:21 -07002054 BUG_ON(retval != 0);
Ben Blum74a11662011-05-26 16:25:20 -07002055 i++;
2056 } while_each_thread(leader, tsk);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002057 rcu_read_unlock();
Ben Blum74a11662011-05-26 16:25:20 -07002058 /* remember the number of threads in the array for later. */
2059 group_size = i;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002060 tset.tc_array = group;
2061 tset.tc_array_len = group_size;
Ben Blum74a11662011-05-26 16:25:20 -07002062
Tejun Heo134d3372011-12-12 18:12:21 -08002063 /* methods shouldn't be called if no task is actually migrating */
2064 retval = 0;
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08002065 if (!group_size)
Mandeep Singh Bainesb07ef772011-12-21 20:18:36 -08002066 goto out_free_group_list;
Tejun Heo134d3372011-12-12 18:12:21 -08002067
Ben Blum74a11662011-05-26 16:25:20 -07002068 /*
2069 * step 1: check that we can legitimately attach to the cgroup.
2070 */
2071 for_each_subsys(root, ss) {
2072 if (ss->can_attach) {
Li Zefan761b3ef2012-01-31 13:47:36 +08002073 retval = ss->can_attach(cgrp, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002074 if (retval) {
2075 failed_ss = ss;
2076 goto out_cancel_attach;
2077 }
2078 }
Ben Blum74a11662011-05-26 16:25:20 -07002079 }
2080
2081 /*
2082 * step 2: make sure css_sets exist for all threads to be migrated.
2083 * we use find_css_set, which allocates a new one if necessary.
2084 */
Ben Blum74a11662011-05-26 16:25:20 -07002085 for (i = 0; i < group_size; i++) {
Tejun Heo134d3372011-12-12 18:12:21 -08002086 tc = flex_array_get(group, i);
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002087 tc->cg = find_css_set(tc->task->cgroups, cgrp);
2088 if (!tc->cg) {
2089 retval = -ENOMEM;
2090 goto out_put_css_set_refs;
Ben Blum74a11662011-05-26 16:25:20 -07002091 }
2092 }
2093
2094 /*
Tejun Heo494c1672011-12-12 18:12:22 -08002095 * step 3: now that we're guaranteed success wrt the css_sets,
2096 * proceed to move all tasks to the new cgroup. There are no
2097 * failure cases after here, so this is the commit point.
Ben Blum74a11662011-05-26 16:25:20 -07002098 */
Ben Blum74a11662011-05-26 16:25:20 -07002099 for (i = 0; i < group_size; i++) {
Tejun Heo134d3372011-12-12 18:12:21 -08002100 tc = flex_array_get(group, i);
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002101 cgroup_task_migrate(cgrp, tc->cgrp, tc->task, tc->cg);
Ben Blum74a11662011-05-26 16:25:20 -07002102 }
2103 /* nothing is sensitive to fork() after this point. */
2104
2105 /*
Tejun Heo494c1672011-12-12 18:12:22 -08002106 * step 4: do subsystem attach callbacks.
Ben Blum74a11662011-05-26 16:25:20 -07002107 */
2108 for_each_subsys(root, ss) {
2109 if (ss->attach)
Li Zefan761b3ef2012-01-31 13:47:36 +08002110 ss->attach(cgrp, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002111 }
2112
2113 /*
2114 * step 5: success! and cleanup
2115 */
2116 synchronize_rcu();
2117 cgroup_wakeup_rmdir_waiter(cgrp);
2118 retval = 0;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002119out_put_css_set_refs:
2120 if (retval) {
2121 for (i = 0; i < group_size; i++) {
2122 tc = flex_array_get(group, i);
2123 if (!tc->cg)
2124 break;
2125 put_css_set(tc->cg);
2126 }
Ben Blum74a11662011-05-26 16:25:20 -07002127 }
2128out_cancel_attach:
Ben Blum74a11662011-05-26 16:25:20 -07002129 if (retval) {
2130 for_each_subsys(root, ss) {
Tejun Heo494c1672011-12-12 18:12:22 -08002131 if (ss == failed_ss)
Ben Blum74a11662011-05-26 16:25:20 -07002132 break;
Ben Blum74a11662011-05-26 16:25:20 -07002133 if (ss->cancel_attach)
Li Zefan761b3ef2012-01-31 13:47:36 +08002134 ss->cancel_attach(cgrp, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002135 }
2136 }
Ben Blum74a11662011-05-26 16:25:20 -07002137out_free_group_list:
Ben Blumd8466872011-05-26 16:25:21 -07002138 flex_array_free(group);
Ben Blum74a11662011-05-26 16:25:20 -07002139 return retval;
2140}
2141
2142/*
2143 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08002144 * function to attach either it or all tasks in its threadgroup. Will lock
2145 * cgroup_mutex and threadgroup; may take task_lock of task.
Ben Blum74a11662011-05-26 16:25:20 -07002146 */
2147static int attach_task_by_pid(struct cgroup *cgrp, u64 pid, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002148{
Paul Menagebbcb81d2007-10-18 23:39:32 -07002149 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11002150 const struct cred *cred = current_cred(), *tcred;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002151 int ret;
2152
Ben Blum74a11662011-05-26 16:25:20 -07002153 if (!cgroup_lock_live_group(cgrp))
2154 return -ENODEV;
2155
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002156retry_find_task:
2157 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002158 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002159 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07002160 if (!tsk) {
Paul Menagebbcb81d2007-10-18 23:39:32 -07002161 rcu_read_unlock();
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002162 ret= -ESRCH;
2163 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002164 }
Ben Blum74a11662011-05-26 16:25:20 -07002165 /*
2166 * even if we're attaching all tasks in the thread group, we
2167 * only need to check permissions on one of them.
2168 */
David Howellsc69e8d92008-11-14 10:39:19 +11002169 tcred = __task_cred(tsk);
2170 if (cred->euid &&
2171 cred->euid != tcred->uid &&
2172 cred->euid != tcred->suid) {
2173 rcu_read_unlock();
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002174 ret = -EACCES;
2175 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002176 }
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002177 } else
2178 tsk = current;
Tejun Heocd3d0952011-12-12 18:12:21 -08002179
2180 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002181 tsk = tsk->group_leader;
2182 get_task_struct(tsk);
2183 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08002184
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002185 threadgroup_lock(tsk);
2186 if (threadgroup) {
2187 if (!thread_group_leader(tsk)) {
2188 /*
2189 * a race with de_thread from another thread's exec()
2190 * may strip us of our leadership, if this happens,
2191 * there is no choice but to throw this task away and
2192 * try again; this is
2193 * "double-double-toil-and-trouble-check locking".
2194 */
2195 threadgroup_unlock(tsk);
2196 put_task_struct(tsk);
2197 goto retry_find_task;
2198 }
2199 ret = cgroup_attach_proc(cgrp, tsk);
2200 } else
2201 ret = cgroup_attach_task(cgrp, tsk);
Tejun Heocd3d0952011-12-12 18:12:21 -08002202 threadgroup_unlock(tsk);
2203
Paul Menagebbcb81d2007-10-18 23:39:32 -07002204 put_task_struct(tsk);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002205out_unlock_cgroup:
Ben Blum74a11662011-05-26 16:25:20 -07002206 cgroup_unlock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002207 return ret;
2208}
2209
Paul Menageaf351022008-07-25 01:47:01 -07002210static int cgroup_tasks_write(struct cgroup *cgrp, struct cftype *cft, u64 pid)
2211{
Ben Blum74a11662011-05-26 16:25:20 -07002212 return attach_task_by_pid(cgrp, pid, false);
2213}
2214
2215static int cgroup_procs_write(struct cgroup *cgrp, struct cftype *cft, u64 tgid)
2216{
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002217 return attach_task_by_pid(cgrp, tgid, true);
Paul Menageaf351022008-07-25 01:47:01 -07002218}
2219
Paul Menagee788e062008-07-25 01:46:59 -07002220/**
2221 * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive.
2222 * @cgrp: the cgroup to be checked for liveness
2223 *
Paul Menage84eea842008-07-25 01:47:00 -07002224 * On success, returns true; the lock should be later released with
2225 * cgroup_unlock(). On failure returns false with no lock held.
Paul Menagee788e062008-07-25 01:46:59 -07002226 */
Paul Menage84eea842008-07-25 01:47:00 -07002227bool cgroup_lock_live_group(struct cgroup *cgrp)
Paul Menagee788e062008-07-25 01:46:59 -07002228{
2229 mutex_lock(&cgroup_mutex);
2230 if (cgroup_is_removed(cgrp)) {
2231 mutex_unlock(&cgroup_mutex);
2232 return false;
2233 }
2234 return true;
2235}
Ben Blum67523c42010-03-10 15:22:11 -08002236EXPORT_SYMBOL_GPL(cgroup_lock_live_group);
Paul Menagee788e062008-07-25 01:46:59 -07002237
2238static int cgroup_release_agent_write(struct cgroup *cgrp, struct cftype *cft,
2239 const char *buffer)
2240{
2241 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
Evgeny Kuznetsovf4a25892010-10-27 15:33:37 -07002242 if (strlen(buffer) >= PATH_MAX)
2243 return -EINVAL;
Paul Menagee788e062008-07-25 01:46:59 -07002244 if (!cgroup_lock_live_group(cgrp))
2245 return -ENODEV;
Tejun Heoe25e2cb2011-12-12 18:12:21 -08002246 mutex_lock(&cgroup_root_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07002247 strcpy(cgrp->root->release_agent_path, buffer);
Tejun Heoe25e2cb2011-12-12 18:12:21 -08002248 mutex_unlock(&cgroup_root_mutex);
Paul Menage84eea842008-07-25 01:47:00 -07002249 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07002250 return 0;
2251}
2252
2253static int cgroup_release_agent_show(struct cgroup *cgrp, struct cftype *cft,
2254 struct seq_file *seq)
2255{
2256 if (!cgroup_lock_live_group(cgrp))
2257 return -ENODEV;
2258 seq_puts(seq, cgrp->root->release_agent_path);
2259 seq_putc(seq, '\n');
Paul Menage84eea842008-07-25 01:47:00 -07002260 cgroup_unlock();
Paul Menagee788e062008-07-25 01:46:59 -07002261 return 0;
2262}
2263
Paul Menage84eea842008-07-25 01:47:00 -07002264/* A buffer size big enough for numbers or short strings */
2265#define CGROUP_LOCAL_BUFFER_SIZE 64
2266
Paul Menagee73d2c62008-04-29 01:00:06 -07002267static ssize_t cgroup_write_X64(struct cgroup *cgrp, struct cftype *cft,
Paul Menagef4c753b2008-04-29 00:59:56 -07002268 struct file *file,
2269 const char __user *userbuf,
2270 size_t nbytes, loff_t *unused_ppos)
Paul Menage355e0c42007-10-18 23:39:33 -07002271{
Paul Menage84eea842008-07-25 01:47:00 -07002272 char buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menage355e0c42007-10-18 23:39:33 -07002273 int retval = 0;
Paul Menage355e0c42007-10-18 23:39:33 -07002274 char *end;
2275
2276 if (!nbytes)
2277 return -EINVAL;
2278 if (nbytes >= sizeof(buffer))
2279 return -E2BIG;
2280 if (copy_from_user(buffer, userbuf, nbytes))
2281 return -EFAULT;
2282
2283 buffer[nbytes] = 0; /* nul-terminate */
Paul Menagee73d2c62008-04-29 01:00:06 -07002284 if (cft->write_u64) {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002285 u64 val = simple_strtoull(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07002286 if (*end)
2287 return -EINVAL;
2288 retval = cft->write_u64(cgrp, cft, val);
2289 } else {
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002290 s64 val = simple_strtoll(strstrip(buffer), &end, 0);
Paul Menagee73d2c62008-04-29 01:00:06 -07002291 if (*end)
2292 return -EINVAL;
2293 retval = cft->write_s64(cgrp, cft, val);
2294 }
Paul Menage355e0c42007-10-18 23:39:33 -07002295 if (!retval)
2296 retval = nbytes;
2297 return retval;
2298}
2299
Paul Menagedb3b1492008-07-25 01:46:58 -07002300static ssize_t cgroup_write_string(struct cgroup *cgrp, struct cftype *cft,
2301 struct file *file,
2302 const char __user *userbuf,
2303 size_t nbytes, loff_t *unused_ppos)
2304{
Paul Menage84eea842008-07-25 01:47:00 -07002305 char local_buffer[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagedb3b1492008-07-25 01:46:58 -07002306 int retval = 0;
2307 size_t max_bytes = cft->max_write_len;
2308 char *buffer = local_buffer;
2309
2310 if (!max_bytes)
2311 max_bytes = sizeof(local_buffer) - 1;
2312 if (nbytes >= max_bytes)
2313 return -E2BIG;
2314 /* Allocate a dynamic buffer if we need one */
2315 if (nbytes >= sizeof(local_buffer)) {
2316 buffer = kmalloc(nbytes + 1, GFP_KERNEL);
2317 if (buffer == NULL)
2318 return -ENOMEM;
2319 }
Li Zefan5a3eb9f2008-07-29 22:33:18 -07002320 if (nbytes && copy_from_user(buffer, userbuf, nbytes)) {
2321 retval = -EFAULT;
2322 goto out;
2323 }
Paul Menagedb3b1492008-07-25 01:46:58 -07002324
2325 buffer[nbytes] = 0; /* nul-terminate */
KOSAKI Motohiro478988d2009-10-26 16:49:36 -07002326 retval = cft->write_string(cgrp, cft, strstrip(buffer));
Paul Menagedb3b1492008-07-25 01:46:58 -07002327 if (!retval)
2328 retval = nbytes;
Li Zefan5a3eb9f2008-07-29 22:33:18 -07002329out:
Paul Menagedb3b1492008-07-25 01:46:58 -07002330 if (buffer != local_buffer)
2331 kfree(buffer);
2332 return retval;
2333}
2334
Paul Menageddbcc7e2007-10-18 23:39:30 -07002335static ssize_t cgroup_file_write(struct file *file, const char __user *buf,
2336 size_t nbytes, loff_t *ppos)
2337{
2338 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07002339 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002340
Li Zefan75139b82009-01-07 18:07:33 -08002341 if (cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07002342 return -ENODEV;
Paul Menage355e0c42007-10-18 23:39:33 -07002343 if (cft->write)
Paul Menagebd89aab2007-10-18 23:40:44 -07002344 return cft->write(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002345 if (cft->write_u64 || cft->write_s64)
2346 return cgroup_write_X64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagedb3b1492008-07-25 01:46:58 -07002347 if (cft->write_string)
2348 return cgroup_write_string(cgrp, cft, file, buf, nbytes, ppos);
Pavel Emelyanovd447ea22008-04-29 01:00:08 -07002349 if (cft->trigger) {
2350 int ret = cft->trigger(cgrp, (unsigned int)cft->private);
2351 return ret ? ret : nbytes;
2352 }
Paul Menage355e0c42007-10-18 23:39:33 -07002353 return -EINVAL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002354}
2355
Paul Menagef4c753b2008-04-29 00:59:56 -07002356static ssize_t cgroup_read_u64(struct cgroup *cgrp, struct cftype *cft,
2357 struct file *file,
2358 char __user *buf, size_t nbytes,
2359 loff_t *ppos)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002360{
Paul Menage84eea842008-07-25 01:47:00 -07002361 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagef4c753b2008-04-29 00:59:56 -07002362 u64 val = cft->read_u64(cgrp, cft);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002363 int len = sprintf(tmp, "%llu\n", (unsigned long long) val);
2364
2365 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2366}
2367
Paul Menagee73d2c62008-04-29 01:00:06 -07002368static ssize_t cgroup_read_s64(struct cgroup *cgrp, struct cftype *cft,
2369 struct file *file,
2370 char __user *buf, size_t nbytes,
2371 loff_t *ppos)
2372{
Paul Menage84eea842008-07-25 01:47:00 -07002373 char tmp[CGROUP_LOCAL_BUFFER_SIZE];
Paul Menagee73d2c62008-04-29 01:00:06 -07002374 s64 val = cft->read_s64(cgrp, cft);
2375 int len = sprintf(tmp, "%lld\n", (long long) val);
2376
2377 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
2378}
2379
Paul Menageddbcc7e2007-10-18 23:39:30 -07002380static ssize_t cgroup_file_read(struct file *file, char __user *buf,
2381 size_t nbytes, loff_t *ppos)
2382{
2383 struct cftype *cft = __d_cft(file->f_dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07002384 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002385
Li Zefan75139b82009-01-07 18:07:33 -08002386 if (cgroup_is_removed(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07002387 return -ENODEV;
2388
2389 if (cft->read)
Paul Menagebd89aab2007-10-18 23:40:44 -07002390 return cft->read(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagef4c753b2008-04-29 00:59:56 -07002391 if (cft->read_u64)
2392 return cgroup_read_u64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menagee73d2c62008-04-29 01:00:06 -07002393 if (cft->read_s64)
2394 return cgroup_read_s64(cgrp, cft, file, buf, nbytes, ppos);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002395 return -EINVAL;
2396}
2397
Paul Menage91796562008-04-29 01:00:01 -07002398/*
2399 * seqfile ops/methods for returning structured data. Currently just
2400 * supports string->u64 maps, but can be extended in future.
2401 */
2402
2403struct cgroup_seqfile_state {
2404 struct cftype *cft;
2405 struct cgroup *cgroup;
2406};
2407
2408static int cgroup_map_add(struct cgroup_map_cb *cb, const char *key, u64 value)
2409{
2410 struct seq_file *sf = cb->state;
2411 return seq_printf(sf, "%s %llu\n", key, (unsigned long long)value);
2412}
2413
2414static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2415{
2416 struct cgroup_seqfile_state *state = m->private;
2417 struct cftype *cft = state->cft;
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002418 if (cft->read_map) {
2419 struct cgroup_map_cb cb = {
2420 .fill = cgroup_map_add,
2421 .state = m,
2422 };
2423 return cft->read_map(state->cgroup, cft, &cb);
2424 }
2425 return cft->read_seq_string(state->cgroup, cft, m);
Paul Menage91796562008-04-29 01:00:01 -07002426}
2427
Adrian Bunk96930a62008-07-25 19:46:21 -07002428static int cgroup_seqfile_release(struct inode *inode, struct file *file)
Paul Menage91796562008-04-29 01:00:01 -07002429{
2430 struct seq_file *seq = file->private_data;
2431 kfree(seq->private);
2432 return single_release(inode, file);
2433}
2434
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002435static const struct file_operations cgroup_seqfile_operations = {
Paul Menage91796562008-04-29 01:00:01 -07002436 .read = seq_read,
Paul Menagee788e062008-07-25 01:46:59 -07002437 .write = cgroup_file_write,
Paul Menage91796562008-04-29 01:00:01 -07002438 .llseek = seq_lseek,
2439 .release = cgroup_seqfile_release,
2440};
2441
Paul Menageddbcc7e2007-10-18 23:39:30 -07002442static int cgroup_file_open(struct inode *inode, struct file *file)
2443{
2444 int err;
2445 struct cftype *cft;
2446
2447 err = generic_file_open(inode, file);
2448 if (err)
2449 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002450 cft = __d_cft(file->f_dentry);
Li Zefan75139b82009-01-07 18:07:33 -08002451
Serge E. Hallyn29486df2008-04-29 01:00:14 -07002452 if (cft->read_map || cft->read_seq_string) {
Paul Menage91796562008-04-29 01:00:01 -07002453 struct cgroup_seqfile_state *state =
2454 kzalloc(sizeof(*state), GFP_USER);
2455 if (!state)
2456 return -ENOMEM;
2457 state->cft = cft;
2458 state->cgroup = __d_cgrp(file->f_dentry->d_parent);
2459 file->f_op = &cgroup_seqfile_operations;
2460 err = single_open(file, cgroup_seqfile_show, state);
2461 if (err < 0)
2462 kfree(state);
2463 } else if (cft->open)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002464 err = cft->open(inode, file);
2465 else
2466 err = 0;
2467
2468 return err;
2469}
2470
2471static int cgroup_file_release(struct inode *inode, struct file *file)
2472{
2473 struct cftype *cft = __d_cft(file->f_dentry);
2474 if (cft->release)
2475 return cft->release(inode, file);
2476 return 0;
2477}
2478
2479/*
2480 * cgroup_rename - Only allow simple rename of directories in place.
2481 */
2482static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry,
2483 struct inode *new_dir, struct dentry *new_dentry)
2484{
2485 if (!S_ISDIR(old_dentry->d_inode->i_mode))
2486 return -ENOTDIR;
2487 if (new_dentry->d_inode)
2488 return -EEXIST;
2489 if (old_dir != new_dir)
2490 return -EIO;
2491 return simple_rename(old_dir, old_dentry, new_dir, new_dentry);
2492}
2493
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002494static const struct file_operations cgroup_file_operations = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002495 .read = cgroup_file_read,
2496 .write = cgroup_file_write,
2497 .llseek = generic_file_llseek,
2498 .open = cgroup_file_open,
2499 .release = cgroup_file_release,
2500};
2501
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07002502static const struct inode_operations cgroup_dir_inode_operations = {
Al Viroc72a04e2011-01-14 05:31:45 +00002503 .lookup = cgroup_lookup,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002504 .mkdir = cgroup_mkdir,
2505 .rmdir = cgroup_rmdir,
2506 .rename = cgroup_rename,
2507};
2508
Al Viroc72a04e2011-01-14 05:31:45 +00002509static struct dentry *cgroup_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
2510{
2511 if (dentry->d_name.len > NAME_MAX)
2512 return ERR_PTR(-ENAMETOOLONG);
2513 d_add(dentry, NULL);
2514 return NULL;
2515}
2516
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08002517/*
2518 * Check if a file is a control file
2519 */
2520static inline struct cftype *__file_cft(struct file *file)
2521{
2522 if (file->f_dentry->d_inode->i_fop != &cgroup_file_operations)
2523 return ERR_PTR(-EINVAL);
2524 return __d_cft(file->f_dentry);
2525}
2526
Al Viroa5e7ed32011-07-26 01:55:55 -04002527static int cgroup_create_file(struct dentry *dentry, umode_t mode,
Nick Piggin5adcee12011-01-07 17:49:20 +11002528 struct super_block *sb)
2529{
Paul Menageddbcc7e2007-10-18 23:39:30 -07002530 struct inode *inode;
2531
2532 if (!dentry)
2533 return -ENOENT;
2534 if (dentry->d_inode)
2535 return -EEXIST;
2536
2537 inode = cgroup_new_inode(mode, sb);
2538 if (!inode)
2539 return -ENOMEM;
2540
2541 if (S_ISDIR(mode)) {
2542 inode->i_op = &cgroup_dir_inode_operations;
2543 inode->i_fop = &simple_dir_operations;
2544
2545 /* start off with i_nlink == 2 (for "." entry) */
2546 inc_nlink(inode);
2547
2548 /* start with the directory inode held, so that we can
2549 * populate it without racing with another mkdir */
Paul Menage817929e2007-10-18 23:39:36 -07002550 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002551 } else if (S_ISREG(mode)) {
2552 inode->i_size = 0;
2553 inode->i_fop = &cgroup_file_operations;
2554 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002555 d_instantiate(dentry, inode);
2556 dget(dentry); /* Extra count - pin the dentry in core */
2557 return 0;
2558}
2559
2560/*
Li Zefana043e3b2008-02-23 15:24:09 -08002561 * cgroup_create_dir - create a directory for an object.
2562 * @cgrp: the cgroup we create the directory for. It must have a valid
2563 * ->parent field. And we are going to fill its ->dentry field.
2564 * @dentry: dentry of the new cgroup
2565 * @mode: mode to set on new directory.
Paul Menageddbcc7e2007-10-18 23:39:30 -07002566 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002567static int cgroup_create_dir(struct cgroup *cgrp, struct dentry *dentry,
Al Viroa5e7ed32011-07-26 01:55:55 -04002568 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002569{
2570 struct dentry *parent;
2571 int error = 0;
2572
Paul Menagebd89aab2007-10-18 23:40:44 -07002573 parent = cgrp->parent->dentry;
2574 error = cgroup_create_file(dentry, S_IFDIR | mode, cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002575 if (!error) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002576 dentry->d_fsdata = cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002577 inc_nlink(parent->d_inode);
Paul Menagea47295e2009-01-07 18:07:44 -08002578 rcu_assign_pointer(cgrp->dentry, dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002579 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002580
2581 return error;
2582}
2583
Li Zefan099fca32009-04-02 16:57:29 -07002584/**
2585 * cgroup_file_mode - deduce file mode of a control file
2586 * @cft: the control file in question
2587 *
2588 * returns cft->mode if ->mode is not 0
2589 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
2590 * returns S_IRUGO if it has only a read handler
2591 * returns S_IWUSR if it has only a write hander
2592 */
Al Viroa5e7ed32011-07-26 01:55:55 -04002593static umode_t cgroup_file_mode(const struct cftype *cft)
Li Zefan099fca32009-04-02 16:57:29 -07002594{
Al Viroa5e7ed32011-07-26 01:55:55 -04002595 umode_t mode = 0;
Li Zefan099fca32009-04-02 16:57:29 -07002596
2597 if (cft->mode)
2598 return cft->mode;
2599
2600 if (cft->read || cft->read_u64 || cft->read_s64 ||
2601 cft->read_map || cft->read_seq_string)
2602 mode |= S_IRUGO;
2603
2604 if (cft->write || cft->write_u64 || cft->write_s64 ||
2605 cft->write_string || cft->trigger)
2606 mode |= S_IWUSR;
2607
2608 return mode;
2609}
2610
Paul Menagebd89aab2007-10-18 23:40:44 -07002611int cgroup_add_file(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002612 struct cgroup_subsys *subsys,
2613 const struct cftype *cft)
2614{
Paul Menagebd89aab2007-10-18 23:40:44 -07002615 struct dentry *dir = cgrp->dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002616 struct dentry *dentry;
2617 int error;
Al Viroa5e7ed32011-07-26 01:55:55 -04002618 umode_t mode;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002619
2620 char name[MAX_CGROUP_TYPE_NAMELEN + MAX_CFTYPE_NAME + 2] = { 0 };
Paul Menagebd89aab2007-10-18 23:40:44 -07002621 if (subsys && !test_bit(ROOT_NOPREFIX, &cgrp->root->flags)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002622 strcpy(name, subsys->name);
2623 strcat(name, ".");
2624 }
2625 strcat(name, cft->name);
2626 BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex));
2627 dentry = lookup_one_len(name, dir, strlen(name));
2628 if (!IS_ERR(dentry)) {
Li Zefan099fca32009-04-02 16:57:29 -07002629 mode = cgroup_file_mode(cft);
2630 error = cgroup_create_file(dentry, mode | S_IFREG,
Paul Menagebd89aab2007-10-18 23:40:44 -07002631 cgrp->root->sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002632 if (!error)
2633 dentry->d_fsdata = (void *)cft;
2634 dput(dentry);
2635 } else
2636 error = PTR_ERR(dentry);
2637 return error;
2638}
Ben Blume6a11052010-03-10 15:22:09 -08002639EXPORT_SYMBOL_GPL(cgroup_add_file);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002640
Paul Menagebd89aab2007-10-18 23:40:44 -07002641int cgroup_add_files(struct cgroup *cgrp,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002642 struct cgroup_subsys *subsys,
2643 const struct cftype cft[],
2644 int count)
2645{
2646 int i, err;
2647 for (i = 0; i < count; i++) {
Paul Menagebd89aab2007-10-18 23:40:44 -07002648 err = cgroup_add_file(cgrp, subsys, &cft[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002649 if (err)
2650 return err;
2651 }
2652 return 0;
2653}
Ben Blume6a11052010-03-10 15:22:09 -08002654EXPORT_SYMBOL_GPL(cgroup_add_files);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002655
Li Zefana043e3b2008-02-23 15:24:09 -08002656/**
2657 * cgroup_task_count - count the number of tasks in a cgroup.
2658 * @cgrp: the cgroup in question
2659 *
2660 * Return the number of tasks in the cgroup.
2661 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002662int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002663{
2664 int count = 0;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07002665 struct cg_cgroup_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002666
Paul Menage817929e2007-10-18 23:39:36 -07002667 read_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07002668 list_for_each_entry(link, &cgrp->css_sets, cgrp_link_list) {
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07002669 count += atomic_read(&link->cg->refcount);
Paul Menage817929e2007-10-18 23:39:36 -07002670 }
2671 read_unlock(&css_set_lock);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002672 return count;
2673}
2674
2675/*
Paul Menage817929e2007-10-18 23:39:36 -07002676 * Advance a list_head iterator. The iterator should be positioned at
2677 * the start of a css_set
2678 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002679static void cgroup_advance_iter(struct cgroup *cgrp,
Paul Menage7717f7b2009-09-23 15:56:22 -07002680 struct cgroup_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07002681{
2682 struct list_head *l = it->cg_link;
2683 struct cg_cgroup_link *link;
2684 struct css_set *cg;
2685
2686 /* Advance to the next non-empty css_set */
2687 do {
2688 l = l->next;
Paul Menagebd89aab2007-10-18 23:40:44 -07002689 if (l == &cgrp->css_sets) {
Paul Menage817929e2007-10-18 23:39:36 -07002690 it->cg_link = NULL;
2691 return;
2692 }
Paul Menagebd89aab2007-10-18 23:40:44 -07002693 link = list_entry(l, struct cg_cgroup_link, cgrp_link_list);
Paul Menage817929e2007-10-18 23:39:36 -07002694 cg = link->cg;
2695 } while (list_empty(&cg->tasks));
2696 it->cg_link = l;
2697 it->task = cg->tasks.next;
2698}
2699
Cliff Wickman31a7df02008-02-07 00:14:42 -08002700/*
2701 * To reduce the fork() overhead for systems that are not actually
2702 * using their cgroups capability, we don't maintain the lists running
2703 * through each css_set to its tasks until we see the list actually
2704 * used - in other words after the first call to cgroup_iter_start().
Cliff Wickman31a7df02008-02-07 00:14:42 -08002705 */
Adrian Bunk3df91fe2008-04-29 00:59:54 -07002706static void cgroup_enable_task_cg_lists(void)
Cliff Wickman31a7df02008-02-07 00:14:42 -08002707{
2708 struct task_struct *p, *g;
2709 write_lock(&css_set_lock);
2710 use_task_css_set_links = 1;
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01002711 /*
2712 * We need tasklist_lock because RCU is not safe against
2713 * while_each_thread(). Besides, a forking task that has passed
2714 * cgroup_post_fork() without seeing use_task_css_set_links = 1
2715 * is not guaranteed to have its child immediately visible in the
2716 * tasklist if we walk through it with RCU.
2717 */
2718 read_lock(&tasklist_lock);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002719 do_each_thread(g, p) {
2720 task_lock(p);
Li Zefan0e043882008-04-17 11:37:15 +08002721 /*
2722 * We should check if the process is exiting, otherwise
2723 * it will race with cgroup_exit() in that the list
2724 * entry won't be deleted though the process has exited.
2725 */
2726 if (!(p->flags & PF_EXITING) && list_empty(&p->cg_list))
Cliff Wickman31a7df02008-02-07 00:14:42 -08002727 list_add(&p->cg_list, &p->cgroups->tasks);
2728 task_unlock(p);
2729 } while_each_thread(g, p);
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01002730 read_unlock(&tasklist_lock);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002731 write_unlock(&css_set_lock);
2732}
2733
Paul Menagebd89aab2007-10-18 23:40:44 -07002734void cgroup_iter_start(struct cgroup *cgrp, struct cgroup_iter *it)
Kirill A. Shutemovc6ca5752011-12-27 07:46:26 +02002735 __acquires(css_set_lock)
Paul Menage817929e2007-10-18 23:39:36 -07002736{
2737 /*
2738 * The first time anyone tries to iterate across a cgroup,
2739 * we need to enable the list linking each css_set to its
2740 * tasks, and fix up all existing tasks.
2741 */
Cliff Wickman31a7df02008-02-07 00:14:42 -08002742 if (!use_task_css_set_links)
2743 cgroup_enable_task_cg_lists();
2744
Paul Menage817929e2007-10-18 23:39:36 -07002745 read_lock(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07002746 it->cg_link = &cgrp->css_sets;
2747 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07002748}
2749
Paul Menagebd89aab2007-10-18 23:40:44 -07002750struct task_struct *cgroup_iter_next(struct cgroup *cgrp,
Paul Menage817929e2007-10-18 23:39:36 -07002751 struct cgroup_iter *it)
2752{
2753 struct task_struct *res;
2754 struct list_head *l = it->task;
Lai Jiangshan2019f632009-01-07 18:07:36 -08002755 struct cg_cgroup_link *link;
Paul Menage817929e2007-10-18 23:39:36 -07002756
2757 /* If the iterator cg is NULL, we have no tasks */
2758 if (!it->cg_link)
2759 return NULL;
2760 res = list_entry(l, struct task_struct, cg_list);
2761 /* Advance iterator to find next entry */
2762 l = l->next;
Lai Jiangshan2019f632009-01-07 18:07:36 -08002763 link = list_entry(it->cg_link, struct cg_cgroup_link, cgrp_link_list);
2764 if (l == &link->cg->tasks) {
Paul Menage817929e2007-10-18 23:39:36 -07002765 /* We reached the end of this task list - move on to
2766 * the next cg_cgroup_link */
Paul Menagebd89aab2007-10-18 23:40:44 -07002767 cgroup_advance_iter(cgrp, it);
Paul Menage817929e2007-10-18 23:39:36 -07002768 } else {
2769 it->task = l;
2770 }
2771 return res;
2772}
2773
Paul Menagebd89aab2007-10-18 23:40:44 -07002774void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it)
Kirill A. Shutemovc6ca5752011-12-27 07:46:26 +02002775 __releases(css_set_lock)
Paul Menage817929e2007-10-18 23:39:36 -07002776{
2777 read_unlock(&css_set_lock);
2778}
2779
Cliff Wickman31a7df02008-02-07 00:14:42 -08002780static inline int started_after_time(struct task_struct *t1,
2781 struct timespec *time,
2782 struct task_struct *t2)
2783{
2784 int start_diff = timespec_compare(&t1->start_time, time);
2785 if (start_diff > 0) {
2786 return 1;
2787 } else if (start_diff < 0) {
2788 return 0;
2789 } else {
2790 /*
2791 * Arbitrarily, if two processes started at the same
2792 * time, we'll say that the lower pointer value
2793 * started first. Note that t2 may have exited by now
2794 * so this may not be a valid pointer any longer, but
2795 * that's fine - it still serves to distinguish
2796 * between two tasks started (effectively) simultaneously.
2797 */
2798 return t1 > t2;
2799 }
2800}
2801
2802/*
2803 * This function is a callback from heap_insert() and is used to order
2804 * the heap.
2805 * In this case we order the heap in descending task start time.
2806 */
2807static inline int started_after(void *p1, void *p2)
2808{
2809 struct task_struct *t1 = p1;
2810 struct task_struct *t2 = p2;
2811 return started_after_time(t1, &t2->start_time, t2);
2812}
2813
2814/**
2815 * cgroup_scan_tasks - iterate though all the tasks in a cgroup
2816 * @scan: struct cgroup_scanner containing arguments for the scan
2817 *
2818 * Arguments include pointers to callback functions test_task() and
2819 * process_task().
2820 * Iterate through all the tasks in a cgroup, calling test_task() for each,
2821 * and if it returns true, call process_task() for it also.
2822 * The test_task pointer may be NULL, meaning always true (select all tasks).
2823 * Effectively duplicates cgroup_iter_{start,next,end}()
2824 * but does not lock css_set_lock for the call to process_task().
2825 * The struct cgroup_scanner may be embedded in any structure of the caller's
2826 * creation.
2827 * It is guaranteed that process_task() will act on every task that
2828 * is a member of the cgroup for the duration of this call. This
2829 * function may or may not call process_task() for tasks that exit
2830 * or move to a different cgroup during the call, or are forked or
2831 * move into the cgroup during the call.
2832 *
2833 * Note that test_task() may be called with locks held, and may in some
2834 * situations be called multiple times for the same task, so it should
2835 * be cheap.
2836 * If the heap pointer in the struct cgroup_scanner is non-NULL, a heap has been
2837 * pre-allocated and will be used for heap operations (and its "gt" member will
2838 * be overwritten), else a temporary heap will be used (allocation of which
2839 * may cause this function to fail).
2840 */
2841int cgroup_scan_tasks(struct cgroup_scanner *scan)
2842{
2843 int retval, i;
2844 struct cgroup_iter it;
2845 struct task_struct *p, *dropped;
2846 /* Never dereference latest_task, since it's not refcounted */
2847 struct task_struct *latest_task = NULL;
2848 struct ptr_heap tmp_heap;
2849 struct ptr_heap *heap;
2850 struct timespec latest_time = { 0, 0 };
2851
2852 if (scan->heap) {
2853 /* The caller supplied our heap and pre-allocated its memory */
2854 heap = scan->heap;
2855 heap->gt = &started_after;
2856 } else {
2857 /* We need to allocate our own heap memory */
2858 heap = &tmp_heap;
2859 retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after);
2860 if (retval)
2861 /* cannot allocate the heap */
2862 return retval;
2863 }
2864
2865 again:
2866 /*
2867 * Scan tasks in the cgroup, using the scanner's "test_task" callback
2868 * to determine which are of interest, and using the scanner's
2869 * "process_task" callback to process any of them that need an update.
2870 * Since we don't want to hold any locks during the task updates,
2871 * gather tasks to be processed in a heap structure.
2872 * The heap is sorted by descending task start time.
2873 * If the statically-sized heap fills up, we overflow tasks that
2874 * started later, and in future iterations only consider tasks that
2875 * started after the latest task in the previous pass. This
2876 * guarantees forward progress and that we don't miss any tasks.
2877 */
2878 heap->size = 0;
2879 cgroup_iter_start(scan->cg, &it);
2880 while ((p = cgroup_iter_next(scan->cg, &it))) {
2881 /*
2882 * Only affect tasks that qualify per the caller's callback,
2883 * if he provided one
2884 */
2885 if (scan->test_task && !scan->test_task(p, scan))
2886 continue;
2887 /*
2888 * Only process tasks that started after the last task
2889 * we processed
2890 */
2891 if (!started_after_time(p, &latest_time, latest_task))
2892 continue;
2893 dropped = heap_insert(heap, p);
2894 if (dropped == NULL) {
2895 /*
2896 * The new task was inserted; the heap wasn't
2897 * previously full
2898 */
2899 get_task_struct(p);
2900 } else if (dropped != p) {
2901 /*
2902 * The new task was inserted, and pushed out a
2903 * different task
2904 */
2905 get_task_struct(p);
2906 put_task_struct(dropped);
2907 }
2908 /*
2909 * Else the new task was newer than anything already in
2910 * the heap and wasn't inserted
2911 */
2912 }
2913 cgroup_iter_end(scan->cg, &it);
2914
2915 if (heap->size) {
2916 for (i = 0; i < heap->size; i++) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07002917 struct task_struct *q = heap->ptrs[i];
Cliff Wickman31a7df02008-02-07 00:14:42 -08002918 if (i == 0) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07002919 latest_time = q->start_time;
2920 latest_task = q;
Cliff Wickman31a7df02008-02-07 00:14:42 -08002921 }
2922 /* Process the task per the caller's callback */
Paul Jackson4fe91d52008-04-29 00:59:55 -07002923 scan->process_task(q, scan);
2924 put_task_struct(q);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002925 }
2926 /*
2927 * If we had to process any tasks at all, scan again
2928 * in case some of them were in the middle of forking
2929 * children that didn't get processed.
2930 * Not the most efficient way to do it, but it avoids
2931 * having to take callback_mutex in the fork path
2932 */
2933 goto again;
2934 }
2935 if (heap == &tmp_heap)
2936 heap_free(&tmp_heap);
2937 return 0;
2938}
2939
Paul Menage817929e2007-10-18 23:39:36 -07002940/*
Ben Blum102a7752009-09-23 15:56:26 -07002941 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07002942 *
2943 * Reading this file can return large amounts of data if a cgroup has
2944 * *lots* of attached tasks. So it may need several calls to read(),
2945 * but we cannot guarantee that the information we produce is correct
2946 * unless we produce it entirely atomically.
2947 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07002948 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07002949
Li Zefan24528252012-01-20 11:58:43 +08002950/* which pidlist file are we talking about? */
2951enum cgroup_filetype {
2952 CGROUP_FILE_PROCS,
2953 CGROUP_FILE_TASKS,
2954};
2955
2956/*
2957 * A pidlist is a list of pids that virtually represents the contents of one
2958 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
2959 * a pair (one each for procs, tasks) for each pid namespace that's relevant
2960 * to the cgroup.
2961 */
2962struct cgroup_pidlist {
2963 /*
2964 * used to find which pidlist is wanted. doesn't change as long as
2965 * this particular list stays in the list.
2966 */
2967 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
2968 /* array of xids */
2969 pid_t *list;
2970 /* how many elements the above list has */
2971 int length;
2972 /* how many files are using the current array */
2973 int use_count;
2974 /* each of these stored in a list by its cgroup */
2975 struct list_head links;
2976 /* pointer to the cgroup we belong to, for list removal purposes */
2977 struct cgroup *owner;
2978 /* protects the other fields */
2979 struct rw_semaphore mutex;
2980};
2981
Paul Menagebbcb81d2007-10-18 23:39:32 -07002982/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07002983 * The following two functions "fix" the issue where there are more pids
2984 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
2985 * TODO: replace with a kernel-wide solution to this problem
2986 */
2987#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
2988static void *pidlist_allocate(int count)
2989{
2990 if (PIDLIST_TOO_LARGE(count))
2991 return vmalloc(count * sizeof(pid_t));
2992 else
2993 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
2994}
2995static void pidlist_free(void *p)
2996{
2997 if (is_vmalloc_addr(p))
2998 vfree(p);
2999 else
3000 kfree(p);
3001}
3002static void *pidlist_resize(void *p, int newcount)
3003{
3004 void *newlist;
3005 /* note: if new alloc fails, old p will still be valid either way */
3006 if (is_vmalloc_addr(p)) {
3007 newlist = vmalloc(newcount * sizeof(pid_t));
3008 if (!newlist)
3009 return NULL;
3010 memcpy(newlist, p, newcount * sizeof(pid_t));
3011 vfree(p);
3012 } else {
3013 newlist = krealloc(p, newcount * sizeof(pid_t), GFP_KERNEL);
3014 }
3015 return newlist;
3016}
3017
3018/*
Ben Blum102a7752009-09-23 15:56:26 -07003019 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
3020 * If the new stripped list is sufficiently smaller and there's enough memory
3021 * to allocate a new buffer, will let go of the unneeded memory. Returns the
3022 * number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003023 */
Ben Blum102a7752009-09-23 15:56:26 -07003024/* is the size difference enough that we should re-allocate the array? */
3025#define PIDLIST_REALLOC_DIFFERENCE(old, new) ((old) - PAGE_SIZE >= (new))
3026static int pidlist_uniq(pid_t **p, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003027{
Ben Blum102a7752009-09-23 15:56:26 -07003028 int src, dest = 1;
3029 pid_t *list = *p;
3030 pid_t *newlist;
3031
3032 /*
3033 * we presume the 0th element is unique, so i starts at 1. trivial
3034 * edge cases first; no work needs to be done for either
3035 */
3036 if (length == 0 || length == 1)
3037 return length;
3038 /* src and dest walk down the list; dest counts unique elements */
3039 for (src = 1; src < length; src++) {
3040 /* find next unique element */
3041 while (list[src] == list[src-1]) {
3042 src++;
3043 if (src == length)
3044 goto after;
3045 }
3046 /* dest always points to where the next unique element goes */
3047 list[dest] = list[src];
3048 dest++;
3049 }
3050after:
3051 /*
3052 * if the length difference is large enough, we want to allocate a
3053 * smaller buffer to save memory. if this fails due to out of memory,
3054 * we'll just stay with what we've got.
3055 */
3056 if (PIDLIST_REALLOC_DIFFERENCE(length, dest)) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07003057 newlist = pidlist_resize(list, dest);
Ben Blum102a7752009-09-23 15:56:26 -07003058 if (newlist)
3059 *p = newlist;
3060 }
3061 return dest;
3062}
3063
3064static int cmppid(const void *a, const void *b)
3065{
3066 return *(pid_t *)a - *(pid_t *)b;
3067}
3068
3069/*
Ben Blum72a8cb32009-09-23 15:56:27 -07003070 * find the appropriate pidlist for our purpose (given procs vs tasks)
3071 * returns with the lock on that pidlist already held, and takes care
3072 * of the use count, or returns NULL with no locks held if we're out of
3073 * memory.
3074 */
3075static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
3076 enum cgroup_filetype type)
3077{
3078 struct cgroup_pidlist *l;
3079 /* don't need task_nsproxy() if we're looking at ourself */
Li Zefanb70cc5f2010-03-10 15:22:12 -08003080 struct pid_namespace *ns = current->nsproxy->pid_ns;
3081
Ben Blum72a8cb32009-09-23 15:56:27 -07003082 /*
3083 * We can't drop the pidlist_mutex before taking the l->mutex in case
3084 * the last ref-holder is trying to remove l from the list at the same
3085 * time. Holding the pidlist_mutex precludes somebody taking whichever
3086 * list we find out from under us - compare release_pid_array().
3087 */
3088 mutex_lock(&cgrp->pidlist_mutex);
3089 list_for_each_entry(l, &cgrp->pidlists, links) {
3090 if (l->key.type == type && l->key.ns == ns) {
Ben Blum72a8cb32009-09-23 15:56:27 -07003091 /* make sure l doesn't vanish out from under us */
3092 down_write(&l->mutex);
3093 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003094 return l;
3095 }
3096 }
3097 /* entry not found; create a new one */
3098 l = kmalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
3099 if (!l) {
3100 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003101 return l;
3102 }
3103 init_rwsem(&l->mutex);
3104 down_write(&l->mutex);
3105 l->key.type = type;
Li Zefanb70cc5f2010-03-10 15:22:12 -08003106 l->key.ns = get_pid_ns(ns);
Ben Blum72a8cb32009-09-23 15:56:27 -07003107 l->use_count = 0; /* don't increment here */
3108 l->list = NULL;
3109 l->owner = cgrp;
3110 list_add(&l->links, &cgrp->pidlists);
3111 mutex_unlock(&cgrp->pidlist_mutex);
3112 return l;
3113}
3114
3115/*
Ben Blum102a7752009-09-23 15:56:26 -07003116 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
3117 */
Ben Blum72a8cb32009-09-23 15:56:27 -07003118static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
3119 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07003120{
3121 pid_t *array;
3122 int length;
3123 int pid, n = 0; /* used for populating the array */
Paul Menage817929e2007-10-18 23:39:36 -07003124 struct cgroup_iter it;
3125 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07003126 struct cgroup_pidlist *l;
3127
3128 /*
3129 * If cgroup gets more users after we read count, we won't have
3130 * enough space - tough. This race is indistinguishable to the
3131 * caller from the case that the additional cgroup users didn't
3132 * show up until sometime later on.
3133 */
3134 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003135 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07003136 if (!array)
3137 return -ENOMEM;
3138 /* now, populate the array */
Paul Menagebd89aab2007-10-18 23:40:44 -07003139 cgroup_iter_start(cgrp, &it);
3140 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Ben Blum102a7752009-09-23 15:56:26 -07003141 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07003142 break;
Ben Blum102a7752009-09-23 15:56:26 -07003143 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07003144 if (type == CGROUP_FILE_PROCS)
3145 pid = task_tgid_vnr(tsk);
3146 else
3147 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07003148 if (pid > 0) /* make sure to only use valid results */
3149 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07003150 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003151 cgroup_iter_end(cgrp, &it);
Ben Blum102a7752009-09-23 15:56:26 -07003152 length = n;
3153 /* now sort & (if procs) strip out duplicates */
3154 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07003155 if (type == CGROUP_FILE_PROCS)
Ben Blum102a7752009-09-23 15:56:26 -07003156 length = pidlist_uniq(&array, length);
Ben Blum72a8cb32009-09-23 15:56:27 -07003157 l = cgroup_pidlist_find(cgrp, type);
3158 if (!l) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07003159 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07003160 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07003161 }
Ben Blum72a8cb32009-09-23 15:56:27 -07003162 /* store array, freeing old if necessary - lock already held */
Ben Blumd1d9fd32009-09-23 15:56:28 -07003163 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07003164 l->list = array;
3165 l->length = length;
3166 l->use_count++;
3167 up_write(&l->mutex);
Ben Blum72a8cb32009-09-23 15:56:27 -07003168 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07003169 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003170}
3171
Balbir Singh846c7bb2007-10-18 23:39:44 -07003172/**
Li Zefana043e3b2008-02-23 15:24:09 -08003173 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07003174 * @stats: cgroupstats to fill information into
3175 * @dentry: A dentry entry belonging to the cgroup for which stats have
3176 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08003177 *
3178 * Build and fill cgroupstats so that taskstats can export it to user
3179 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003180 */
3181int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
3182{
3183 int ret = -EINVAL;
Paul Menagebd89aab2007-10-18 23:40:44 -07003184 struct cgroup *cgrp;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003185 struct cgroup_iter it;
3186 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08003187
Balbir Singh846c7bb2007-10-18 23:39:44 -07003188 /*
Li Zefan33d283b2008-11-19 15:36:48 -08003189 * Validate dentry by checking the superblock operations,
3190 * and make sure it's a directory.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003191 */
Li Zefan33d283b2008-11-19 15:36:48 -08003192 if (dentry->d_sb->s_op != &cgroup_ops ||
3193 !S_ISDIR(dentry->d_inode->i_mode))
Balbir Singh846c7bb2007-10-18 23:39:44 -07003194 goto err;
3195
3196 ret = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07003197 cgrp = dentry->d_fsdata;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003198
Paul Menagebd89aab2007-10-18 23:40:44 -07003199 cgroup_iter_start(cgrp, &it);
3200 while ((tsk = cgroup_iter_next(cgrp, &it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07003201 switch (tsk->state) {
3202 case TASK_RUNNING:
3203 stats->nr_running++;
3204 break;
3205 case TASK_INTERRUPTIBLE:
3206 stats->nr_sleeping++;
3207 break;
3208 case TASK_UNINTERRUPTIBLE:
3209 stats->nr_uninterruptible++;
3210 break;
3211 case TASK_STOPPED:
3212 stats->nr_stopped++;
3213 break;
3214 default:
3215 if (delayacct_is_task_waiting_on_io(tsk))
3216 stats->nr_io_wait++;
3217 break;
3218 }
3219 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003220 cgroup_iter_end(cgrp, &it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07003221
Balbir Singh846c7bb2007-10-18 23:39:44 -07003222err:
3223 return ret;
3224}
3225
Paul Menage8f3ff202009-09-23 15:56:25 -07003226
Paul Menagecc31edc2008-10-18 20:28:04 -07003227/*
Ben Blum102a7752009-09-23 15:56:26 -07003228 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07003229 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07003230 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07003231 */
3232
Ben Blum102a7752009-09-23 15:56:26 -07003233static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003234{
3235 /*
3236 * Initially we receive a position value that corresponds to
3237 * one more than the last pid shown (or 0 on the first call or
3238 * after a seek to the start). Use a binary-search to find the
3239 * next pid to display, if any
3240 */
Ben Blum102a7752009-09-23 15:56:26 -07003241 struct cgroup_pidlist *l = s->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07003242 int index = 0, pid = *pos;
3243 int *iter;
3244
Ben Blum102a7752009-09-23 15:56:26 -07003245 down_read(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003246 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07003247 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11003248
Paul Menagecc31edc2008-10-18 20:28:04 -07003249 while (index < end) {
3250 int mid = (index + end) / 2;
Ben Blum102a7752009-09-23 15:56:26 -07003251 if (l->list[mid] == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07003252 index = mid;
3253 break;
Ben Blum102a7752009-09-23 15:56:26 -07003254 } else if (l->list[mid] <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07003255 index = mid + 1;
3256 else
3257 end = mid;
3258 }
3259 }
3260 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07003261 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07003262 return NULL;
3263 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07003264 iter = l->list + index;
Paul Menagecc31edc2008-10-18 20:28:04 -07003265 *pos = *iter;
3266 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003267}
3268
Ben Blum102a7752009-09-23 15:56:26 -07003269static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003270{
Ben Blum102a7752009-09-23 15:56:26 -07003271 struct cgroup_pidlist *l = s->private;
3272 up_read(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003273}
3274
Ben Blum102a7752009-09-23 15:56:26 -07003275static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003276{
Ben Blum102a7752009-09-23 15:56:26 -07003277 struct cgroup_pidlist *l = s->private;
3278 pid_t *p = v;
3279 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07003280 /*
3281 * Advance to the next pid in the array. If this goes off the
3282 * end, we're done
3283 */
3284 p++;
3285 if (p >= end) {
3286 return NULL;
3287 } else {
3288 *pos = *p;
3289 return p;
3290 }
3291}
3292
Ben Blum102a7752009-09-23 15:56:26 -07003293static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003294{
3295 return seq_printf(s, "%d\n", *(int *)v);
3296}
3297
Ben Blum102a7752009-09-23 15:56:26 -07003298/*
3299 * seq_operations functions for iterating on pidlists through seq_file -
3300 * independent of whether it's tasks or procs
3301 */
3302static const struct seq_operations cgroup_pidlist_seq_operations = {
3303 .start = cgroup_pidlist_start,
3304 .stop = cgroup_pidlist_stop,
3305 .next = cgroup_pidlist_next,
3306 .show = cgroup_pidlist_show,
Paul Menagecc31edc2008-10-18 20:28:04 -07003307};
3308
Ben Blum102a7752009-09-23 15:56:26 -07003309static void cgroup_release_pid_array(struct cgroup_pidlist *l)
Paul Menagecc31edc2008-10-18 20:28:04 -07003310{
Ben Blum72a8cb32009-09-23 15:56:27 -07003311 /*
3312 * the case where we're the last user of this particular pidlist will
3313 * have us remove it from the cgroup's list, which entails taking the
3314 * mutex. since in pidlist_find the pidlist->lock depends on cgroup->
3315 * pidlist_mutex, we have to take pidlist_mutex first.
3316 */
3317 mutex_lock(&l->owner->pidlist_mutex);
Ben Blum102a7752009-09-23 15:56:26 -07003318 down_write(&l->mutex);
3319 BUG_ON(!l->use_count);
3320 if (!--l->use_count) {
Ben Blum72a8cb32009-09-23 15:56:27 -07003321 /* we're the last user if refcount is 0; remove and free */
3322 list_del(&l->links);
3323 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003324 pidlist_free(l->list);
Ben Blum72a8cb32009-09-23 15:56:27 -07003325 put_pid_ns(l->key.ns);
3326 up_write(&l->mutex);
3327 kfree(l);
3328 return;
Paul Menagecc31edc2008-10-18 20:28:04 -07003329 }
Ben Blum72a8cb32009-09-23 15:56:27 -07003330 mutex_unlock(&l->owner->pidlist_mutex);
Ben Blum102a7752009-09-23 15:56:26 -07003331 up_write(&l->mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003332}
3333
Ben Blum102a7752009-09-23 15:56:26 -07003334static int cgroup_pidlist_release(struct inode *inode, struct file *file)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003335{
Ben Blum102a7752009-09-23 15:56:26 -07003336 struct cgroup_pidlist *l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003337 if (!(file->f_mode & FMODE_READ))
3338 return 0;
Ben Blum102a7752009-09-23 15:56:26 -07003339 /*
3340 * the seq_file will only be initialized if the file was opened for
3341 * reading; hence we check if it's not null only in that case.
3342 */
3343 l = ((struct seq_file *)file->private_data)->private;
3344 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07003345 return seq_release(inode, file);
3346}
3347
Ben Blum102a7752009-09-23 15:56:26 -07003348static const struct file_operations cgroup_pidlist_operations = {
Paul Menagecc31edc2008-10-18 20:28:04 -07003349 .read = seq_read,
3350 .llseek = seq_lseek,
3351 .write = cgroup_file_write,
Ben Blum102a7752009-09-23 15:56:26 -07003352 .release = cgroup_pidlist_release,
Paul Menagecc31edc2008-10-18 20:28:04 -07003353};
3354
3355/*
Ben Blum102a7752009-09-23 15:56:26 -07003356 * The following functions handle opens on a file that displays a pidlist
3357 * (tasks or procs). Prepare an array of the process/thread IDs of whoever's
3358 * in the cgroup.
Paul Menagecc31edc2008-10-18 20:28:04 -07003359 */
Ben Blum102a7752009-09-23 15:56:26 -07003360/* helper function for the two below it */
Ben Blum72a8cb32009-09-23 15:56:27 -07003361static int cgroup_pidlist_open(struct file *file, enum cgroup_filetype type)
Paul Menagecc31edc2008-10-18 20:28:04 -07003362{
3363 struct cgroup *cgrp = __d_cgrp(file->f_dentry->d_parent);
Ben Blum72a8cb32009-09-23 15:56:27 -07003364 struct cgroup_pidlist *l;
Paul Menagecc31edc2008-10-18 20:28:04 -07003365 int retval;
3366
3367 /* Nothing to do for write-only files */
3368 if (!(file->f_mode & FMODE_READ))
3369 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003370
Ben Blum102a7752009-09-23 15:56:26 -07003371 /* have the array populated */
Ben Blum72a8cb32009-09-23 15:56:27 -07003372 retval = pidlist_array_load(cgrp, type, &l);
Ben Blum102a7752009-09-23 15:56:26 -07003373 if (retval)
3374 return retval;
3375 /* configure file information */
3376 file->f_op = &cgroup_pidlist_operations;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003377
Ben Blum102a7752009-09-23 15:56:26 -07003378 retval = seq_open(file, &cgroup_pidlist_seq_operations);
Paul Menagecc31edc2008-10-18 20:28:04 -07003379 if (retval) {
Ben Blum102a7752009-09-23 15:56:26 -07003380 cgroup_release_pid_array(l);
Paul Menagecc31edc2008-10-18 20:28:04 -07003381 return retval;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003382 }
Ben Blum102a7752009-09-23 15:56:26 -07003383 ((struct seq_file *)file->private_data)->private = l;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003384 return 0;
3385}
Ben Blum102a7752009-09-23 15:56:26 -07003386static int cgroup_tasks_open(struct inode *unused, struct file *file)
3387{
Ben Blum72a8cb32009-09-23 15:56:27 -07003388 return cgroup_pidlist_open(file, CGROUP_FILE_TASKS);
Ben Blum102a7752009-09-23 15:56:26 -07003389}
3390static int cgroup_procs_open(struct inode *unused, struct file *file)
3391{
Ben Blum72a8cb32009-09-23 15:56:27 -07003392 return cgroup_pidlist_open(file, CGROUP_FILE_PROCS);
Ben Blum102a7752009-09-23 15:56:26 -07003393}
Paul Menagebbcb81d2007-10-18 23:39:32 -07003394
Paul Menagebd89aab2007-10-18 23:40:44 -07003395static u64 cgroup_read_notify_on_release(struct cgroup *cgrp,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003396 struct cftype *cft)
3397{
Paul Menagebd89aab2007-10-18 23:40:44 -07003398 return notify_on_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003399}
3400
Paul Menage6379c102008-07-25 01:47:01 -07003401static int cgroup_write_notify_on_release(struct cgroup *cgrp,
3402 struct cftype *cft,
3403 u64 val)
3404{
3405 clear_bit(CGRP_RELEASABLE, &cgrp->flags);
3406 if (val)
3407 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3408 else
3409 clear_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3410 return 0;
3411}
3412
Paul Menagebbcb81d2007-10-18 23:39:32 -07003413/*
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003414 * Unregister event and free resources.
3415 *
3416 * Gets called from workqueue.
3417 */
3418static void cgroup_event_remove(struct work_struct *work)
3419{
3420 struct cgroup_event *event = container_of(work, struct cgroup_event,
3421 remove);
3422 struct cgroup *cgrp = event->cgrp;
3423
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003424 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3425
3426 eventfd_ctx_put(event->eventfd);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003427 kfree(event);
Kirill A. Shutemova0a4db52010-03-10 15:22:34 -08003428 dput(cgrp->dentry);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003429}
3430
3431/*
3432 * Gets called on POLLHUP on eventfd when user closes it.
3433 *
3434 * Called with wqh->lock held and interrupts disabled.
3435 */
3436static int cgroup_event_wake(wait_queue_t *wait, unsigned mode,
3437 int sync, void *key)
3438{
3439 struct cgroup_event *event = container_of(wait,
3440 struct cgroup_event, wait);
3441 struct cgroup *cgrp = event->cgrp;
3442 unsigned long flags = (unsigned long)key;
3443
3444 if (flags & POLLHUP) {
Changli Gaoa93d2f12010-05-07 14:33:26 +08003445 __remove_wait_queue(event->wqh, &event->wait);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003446 spin_lock(&cgrp->event_list_lock);
3447 list_del(&event->list);
3448 spin_unlock(&cgrp->event_list_lock);
3449 /*
3450 * We are in atomic context, but cgroup_event_remove() may
3451 * sleep, so we have to call it in workqueue.
3452 */
3453 schedule_work(&event->remove);
3454 }
3455
3456 return 0;
3457}
3458
3459static void cgroup_event_ptable_queue_proc(struct file *file,
3460 wait_queue_head_t *wqh, poll_table *pt)
3461{
3462 struct cgroup_event *event = container_of(pt,
3463 struct cgroup_event, pt);
3464
3465 event->wqh = wqh;
3466 add_wait_queue(wqh, &event->wait);
3467}
3468
3469/*
3470 * Parse input and register new cgroup event handler.
3471 *
3472 * Input must be in format '<event_fd> <control_fd> <args>'.
3473 * Interpretation of args is defined by control file implementation.
3474 */
3475static int cgroup_write_event_control(struct cgroup *cgrp, struct cftype *cft,
3476 const char *buffer)
3477{
3478 struct cgroup_event *event = NULL;
Li Zefan29279372013-02-18 14:13:35 +08003479 struct cgroup *cgrp_cfile;
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003480 unsigned int efd, cfd;
3481 struct file *efile = NULL;
3482 struct file *cfile = NULL;
3483 char *endp;
3484 int ret;
3485
3486 efd = simple_strtoul(buffer, &endp, 10);
3487 if (*endp != ' ')
3488 return -EINVAL;
3489 buffer = endp + 1;
3490
3491 cfd = simple_strtoul(buffer, &endp, 10);
3492 if ((*endp != ' ') && (*endp != '\0'))
3493 return -EINVAL;
3494 buffer = endp + 1;
3495
3496 event = kzalloc(sizeof(*event), GFP_KERNEL);
3497 if (!event)
3498 return -ENOMEM;
3499 event->cgrp = cgrp;
3500 INIT_LIST_HEAD(&event->list);
3501 init_poll_funcptr(&event->pt, cgroup_event_ptable_queue_proc);
3502 init_waitqueue_func_entry(&event->wait, cgroup_event_wake);
3503 INIT_WORK(&event->remove, cgroup_event_remove);
3504
3505 efile = eventfd_fget(efd);
3506 if (IS_ERR(efile)) {
3507 ret = PTR_ERR(efile);
3508 goto fail;
3509 }
3510
3511 event->eventfd = eventfd_ctx_fileget(efile);
3512 if (IS_ERR(event->eventfd)) {
3513 ret = PTR_ERR(event->eventfd);
3514 goto fail;
3515 }
3516
3517 cfile = fget(cfd);
3518 if (!cfile) {
3519 ret = -EBADF;
3520 goto fail;
3521 }
3522
3523 /* the process need read permission on control file */
Al Viro3bfa7842011-06-19 12:55:10 -04003524 /* AV: shouldn't we check that it's been opened for read instead? */
3525 ret = inode_permission(cfile->f_path.dentry->d_inode, MAY_READ);
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003526 if (ret < 0)
3527 goto fail;
3528
3529 event->cft = __file_cft(cfile);
3530 if (IS_ERR(event->cft)) {
3531 ret = PTR_ERR(event->cft);
3532 goto fail;
3533 }
3534
Li Zefan29279372013-02-18 14:13:35 +08003535 /*
3536 * The file to be monitored must be in the same cgroup as
3537 * cgroup.event_control is.
3538 */
3539 cgrp_cfile = __d_cgrp(cfile->f_dentry->d_parent);
3540 if (cgrp_cfile != cgrp) {
3541 ret = -EINVAL;
3542 goto fail;
3543 }
3544
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003545 if (!event->cft->register_event || !event->cft->unregister_event) {
3546 ret = -EINVAL;
3547 goto fail;
3548 }
3549
3550 ret = event->cft->register_event(cgrp, event->cft,
3551 event->eventfd, buffer);
3552 if (ret)
3553 goto fail;
3554
3555 if (efile->f_op->poll(efile, &event->pt) & POLLHUP) {
3556 event->cft->unregister_event(cgrp, event->cft, event->eventfd);
3557 ret = 0;
3558 goto fail;
3559 }
3560
Kirill A. Shutemova0a4db52010-03-10 15:22:34 -08003561 /*
3562 * Events should be removed after rmdir of cgroup directory, but before
3563 * destroying subsystem state objects. Let's take reference to cgroup
3564 * directory dentry to do that.
3565 */
3566 dget(cgrp->dentry);
3567
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003568 spin_lock(&cgrp->event_list_lock);
3569 list_add(&event->list, &cgrp->event_list);
3570 spin_unlock(&cgrp->event_list_lock);
3571
3572 fput(cfile);
3573 fput(efile);
3574
3575 return 0;
3576
3577fail:
3578 if (cfile)
3579 fput(cfile);
3580
3581 if (event && event->eventfd && !IS_ERR(event->eventfd))
3582 eventfd_ctx_put(event->eventfd);
3583
3584 if (!IS_ERR_OR_NULL(efile))
3585 fput(efile);
3586
3587 kfree(event);
3588
3589 return ret;
3590}
3591
Daniel Lezcano97978e62010-10-27 15:33:35 -07003592static u64 cgroup_clone_children_read(struct cgroup *cgrp,
3593 struct cftype *cft)
3594{
3595 return clone_children(cgrp);
3596}
3597
3598static int cgroup_clone_children_write(struct cgroup *cgrp,
3599 struct cftype *cft,
3600 u64 val)
3601{
3602 if (val)
3603 set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3604 else
3605 clear_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3606 return 0;
3607}
3608
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003609/*
Paul Menagebbcb81d2007-10-18 23:39:32 -07003610 * for the common functions, 'private' gives the type of file
3611 */
Ben Blum102a7752009-09-23 15:56:26 -07003612/* for hysterical raisins, we can't put this on the older files */
3613#define CGROUP_FILE_GENERIC_PREFIX "cgroup."
Paul Menage81a6a5c2007-10-18 23:39:38 -07003614static struct cftype files[] = {
3615 {
3616 .name = "tasks",
3617 .open = cgroup_tasks_open,
Paul Menageaf351022008-07-25 01:47:01 -07003618 .write_u64 = cgroup_tasks_write,
Ben Blum102a7752009-09-23 15:56:26 -07003619 .release = cgroup_pidlist_release,
Li Zefan099fca32009-04-02 16:57:29 -07003620 .mode = S_IRUGO | S_IWUSR,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003621 },
Ben Blum102a7752009-09-23 15:56:26 -07003622 {
3623 .name = CGROUP_FILE_GENERIC_PREFIX "procs",
3624 .open = cgroup_procs_open,
Ben Blum74a11662011-05-26 16:25:20 -07003625 .write_u64 = cgroup_procs_write,
Ben Blum102a7752009-09-23 15:56:26 -07003626 .release = cgroup_pidlist_release,
Ben Blum74a11662011-05-26 16:25:20 -07003627 .mode = S_IRUGO | S_IWUSR,
Ben Blum102a7752009-09-23 15:56:26 -07003628 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003629 {
3630 .name = "notify_on_release",
Paul Menagef4c753b2008-04-29 00:59:56 -07003631 .read_u64 = cgroup_read_notify_on_release,
Paul Menage6379c102008-07-25 01:47:01 -07003632 .write_u64 = cgroup_write_notify_on_release,
Paul Menage81a6a5c2007-10-18 23:39:38 -07003633 },
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08003634 {
3635 .name = CGROUP_FILE_GENERIC_PREFIX "event_control",
3636 .write_string = cgroup_write_event_control,
3637 .mode = S_IWUGO,
3638 },
Daniel Lezcano97978e62010-10-27 15:33:35 -07003639 {
3640 .name = "cgroup.clone_children",
3641 .read_u64 = cgroup_clone_children_read,
3642 .write_u64 = cgroup_clone_children_write,
3643 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003644};
3645
3646static struct cftype cft_release_agent = {
3647 .name = "release_agent",
Paul Menagee788e062008-07-25 01:46:59 -07003648 .read_seq_string = cgroup_release_agent_show,
3649 .write_string = cgroup_release_agent_write,
3650 .max_write_len = PATH_MAX,
Paul Menagebbcb81d2007-10-18 23:39:32 -07003651};
3652
Paul Menagebd89aab2007-10-18 23:40:44 -07003653static int cgroup_populate_dir(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003654{
3655 int err;
3656 struct cgroup_subsys *ss;
3657
3658 /* First clear out any existing files */
Paul Menagebd89aab2007-10-18 23:40:44 -07003659 cgroup_clear_directory(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003660
Paul Menagebd89aab2007-10-18 23:40:44 -07003661 err = cgroup_add_files(cgrp, NULL, files, ARRAY_SIZE(files));
Paul Menagebbcb81d2007-10-18 23:39:32 -07003662 if (err < 0)
3663 return err;
3664
Paul Menagebd89aab2007-10-18 23:40:44 -07003665 if (cgrp == cgrp->top_cgroup) {
3666 if ((err = cgroup_add_file(cgrp, NULL, &cft_release_agent)) < 0)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003667 return err;
3668 }
3669
Paul Menagebd89aab2007-10-18 23:40:44 -07003670 for_each_subsys(cgrp->root, ss) {
3671 if (ss->populate && (err = ss->populate(ss, cgrp)) < 0)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003672 return err;
3673 }
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003674 /* This cgroup is ready now */
3675 for_each_subsys(cgrp->root, ss) {
3676 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3677 /*
3678 * Update id->css pointer and make this css visible from
3679 * CSS ID functions. This pointer will be dereferened
3680 * from RCU-read-side without locks.
3681 */
3682 if (css->id)
3683 rcu_assign_pointer(css->id->css, css);
3684 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003685
3686 return 0;
3687}
3688
3689static void init_cgroup_css(struct cgroup_subsys_state *css,
3690 struct cgroup_subsys *ss,
Paul Menagebd89aab2007-10-18 23:40:44 -07003691 struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003692{
Paul Menagebd89aab2007-10-18 23:40:44 -07003693 css->cgroup = cgrp;
Paul Menagee7c5ec92009-01-07 18:08:38 -08003694 atomic_set(&css->refcnt, 1);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003695 css->flags = 0;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003696 css->id = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07003697 if (cgrp == dummytop)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003698 set_bit(CSS_ROOT, &css->flags);
Paul Menagebd89aab2007-10-18 23:40:44 -07003699 BUG_ON(cgrp->subsys[ss->subsys_id]);
3700 cgrp->subsys[ss->subsys_id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003701}
3702
Paul Menage999cd8a2009-01-07 18:08:36 -08003703static void cgroup_lock_hierarchy(struct cgroupfs_root *root)
3704{
3705 /* We need to take each hierarchy_mutex in a consistent order */
3706 int i;
3707
Ben Blumaae8aab2010-03-10 15:22:07 -08003708 /*
3709 * No worry about a race with rebind_subsystems that might mess up the
3710 * locking order, since both parties are under cgroup_mutex.
3711 */
Paul Menage999cd8a2009-01-07 18:08:36 -08003712 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3713 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08003714 if (ss == NULL)
3715 continue;
Paul Menage999cd8a2009-01-07 18:08:36 -08003716 if (ss->root == root)
Li Zefancfebe562009-02-11 13:04:36 -08003717 mutex_lock(&ss->hierarchy_mutex);
Paul Menage999cd8a2009-01-07 18:08:36 -08003718 }
3719}
3720
3721static void cgroup_unlock_hierarchy(struct cgroupfs_root *root)
3722{
3723 int i;
3724
3725 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3726 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08003727 if (ss == NULL)
3728 continue;
Paul Menage999cd8a2009-01-07 18:08:36 -08003729 if (ss->root == root)
3730 mutex_unlock(&ss->hierarchy_mutex);
3731 }
3732}
3733
Paul Menageddbcc7e2007-10-18 23:39:30 -07003734/*
Li Zefana043e3b2008-02-23 15:24:09 -08003735 * cgroup_create - create a cgroup
3736 * @parent: cgroup that will be parent of the new cgroup
3737 * @dentry: dentry of the new cgroup
3738 * @mode: mode to set on new inode
Paul Menageddbcc7e2007-10-18 23:39:30 -07003739 *
Li Zefana043e3b2008-02-23 15:24:09 -08003740 * Must be called with the mutex on the parent inode held
Paul Menageddbcc7e2007-10-18 23:39:30 -07003741 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07003742static long cgroup_create(struct cgroup *parent, struct dentry *dentry,
Al Viroa5e7ed32011-07-26 01:55:55 -04003743 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003744{
Paul Menagebd89aab2007-10-18 23:40:44 -07003745 struct cgroup *cgrp;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003746 struct cgroupfs_root *root = parent->root;
3747 int err = 0;
3748 struct cgroup_subsys *ss;
3749 struct super_block *sb = root->sb;
3750
Paul Menagebd89aab2007-10-18 23:40:44 -07003751 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
3752 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003753 return -ENOMEM;
3754
3755 /* Grab a reference on the superblock so the hierarchy doesn't
3756 * get deleted on unmount if there are child cgroups. This
3757 * can be done outside cgroup_mutex, since the sb can't
3758 * disappear while someone has an open control file on the
3759 * fs */
3760 atomic_inc(&sb->s_active);
3761
3762 mutex_lock(&cgroup_mutex);
3763
Paul Menagecc31edc2008-10-18 20:28:04 -07003764 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003765
Paul Menagebd89aab2007-10-18 23:40:44 -07003766 cgrp->parent = parent;
3767 cgrp->root = parent->root;
3768 cgrp->top_cgroup = parent->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003769
Li Zefanb6abdb02008-03-04 14:28:19 -08003770 if (notify_on_release(parent))
3771 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
3772
Daniel Lezcano97978e62010-10-27 15:33:35 -07003773 if (clone_children(parent))
3774 set_bit(CGRP_CLONE_CHILDREN, &cgrp->flags);
3775
Paul Menageddbcc7e2007-10-18 23:39:30 -07003776 for_each_subsys(root, ss) {
Li Zefan761b3ef2012-01-31 13:47:36 +08003777 struct cgroup_subsys_state *css = ss->create(cgrp);
Li Zefan4528fd02010-02-02 13:44:10 -08003778
Paul Menageddbcc7e2007-10-18 23:39:30 -07003779 if (IS_ERR(css)) {
3780 err = PTR_ERR(css);
3781 goto err_destroy;
3782 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003783 init_cgroup_css(css, ss, cgrp);
Li Zefan4528fd02010-02-02 13:44:10 -08003784 if (ss->use_id) {
3785 err = alloc_css_id(ss, parent, cgrp);
3786 if (err)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003787 goto err_destroy;
Li Zefan4528fd02010-02-02 13:44:10 -08003788 }
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07003789 /* At error, ->destroy() callback has to free assigned ID. */
Daniel Lezcano97978e62010-10-27 15:33:35 -07003790 if (clone_children(parent) && ss->post_clone)
Li Zefan761b3ef2012-01-31 13:47:36 +08003791 ss->post_clone(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003792 }
3793
Paul Menage999cd8a2009-01-07 18:08:36 -08003794 cgroup_lock_hierarchy(root);
Paul Menagebd89aab2007-10-18 23:40:44 -07003795 list_add(&cgrp->sibling, &cgrp->parent->children);
Paul Menage999cd8a2009-01-07 18:08:36 -08003796 cgroup_unlock_hierarchy(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003797 root->number_of_cgroups++;
3798
Paul Menagebd89aab2007-10-18 23:40:44 -07003799 err = cgroup_create_dir(cgrp, dentry, mode);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003800 if (err < 0)
3801 goto err_remove;
3802
3803 /* The cgroup directory was pre-locked for us */
Paul Menagebd89aab2007-10-18 23:40:44 -07003804 BUG_ON(!mutex_is_locked(&cgrp->dentry->d_inode->i_mutex));
Paul Menageddbcc7e2007-10-18 23:39:30 -07003805
Paul Menagebd89aab2007-10-18 23:40:44 -07003806 err = cgroup_populate_dir(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003807 /* If err < 0, we have a half-filled directory - oh well ;) */
3808
3809 mutex_unlock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07003810 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003811
3812 return 0;
3813
3814 err_remove:
3815
KAMEZAWA Hiroyukibaef99a2009-01-29 14:25:10 -08003816 cgroup_lock_hierarchy(root);
Paul Menagebd89aab2007-10-18 23:40:44 -07003817 list_del(&cgrp->sibling);
KAMEZAWA Hiroyukibaef99a2009-01-29 14:25:10 -08003818 cgroup_unlock_hierarchy(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003819 root->number_of_cgroups--;
3820
3821 err_destroy:
3822
3823 for_each_subsys(root, ss) {
Paul Menagebd89aab2007-10-18 23:40:44 -07003824 if (cgrp->subsys[ss->subsys_id])
Li Zefan761b3ef2012-01-31 13:47:36 +08003825 ss->destroy(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003826 }
3827
3828 mutex_unlock(&cgroup_mutex);
3829
3830 /* Release the reference count that we took on the superblock */
3831 deactivate_super(sb);
3832
Paul Menagebd89aab2007-10-18 23:40:44 -07003833 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003834 return err;
3835}
3836
Al Viro18bb1db2011-07-26 01:41:39 -04003837static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003838{
3839 struct cgroup *c_parent = dentry->d_parent->d_fsdata;
3840
3841 /* the vfs holds inode->i_mutex already */
3842 return cgroup_create(c_parent, dentry, mode | S_IFDIR);
3843}
3844
Li Zefan55b6fd02008-07-29 22:33:20 -07003845static int cgroup_has_css_refs(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003846{
3847 /* Check the reference count on each subsystem. Since we
3848 * already established that there are no tasks in the
Paul Menagee7c5ec92009-01-07 18:08:38 -08003849 * cgroup, if the css refcount is also 1, then there should
Paul Menage81a6a5c2007-10-18 23:39:38 -07003850 * be no outstanding references, so the subsystem is safe to
3851 * destroy. We scan across all subsystems rather than using
3852 * the per-hierarchy linked list of mounted subsystems since
3853 * we can be called via check_for_release() with no
3854 * synchronization other than RCU, and the subsystem linked
3855 * list isn't RCU-safe */
3856 int i;
Ben Blumaae8aab2010-03-10 15:22:07 -08003857 /*
3858 * We won't need to lock the subsys array, because the subsystems
3859 * we're concerned about aren't going anywhere since our cgroup root
3860 * has a reference on them.
3861 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07003862 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
3863 struct cgroup_subsys *ss = subsys[i];
3864 struct cgroup_subsys_state *css;
Ben Blumaae8aab2010-03-10 15:22:07 -08003865 /* Skip subsystems not present or not in this hierarchy */
3866 if (ss == NULL || ss->root != cgrp->root)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003867 continue;
Paul Menagebd89aab2007-10-18 23:40:44 -07003868 css = cgrp->subsys[ss->subsys_id];
Paul Menage81a6a5c2007-10-18 23:39:38 -07003869 /* When called from check_for_release() it's possible
3870 * that by this point the cgroup has been removed
3871 * and the css deleted. But a false-positive doesn't
3872 * matter, since it can only happen if the cgroup
3873 * has been deleted and hence no longer needs the
3874 * release agent to be called anyway. */
Paul Menagee7c5ec92009-01-07 18:08:38 -08003875 if (css && (atomic_read(&css->refcnt) > 1))
Paul Menage81a6a5c2007-10-18 23:39:38 -07003876 return 1;
Paul Menage81a6a5c2007-10-18 23:39:38 -07003877 }
3878 return 0;
3879}
3880
Paul Menagee7c5ec92009-01-07 18:08:38 -08003881/*
3882 * Atomically mark all (or else none) of the cgroup's CSS objects as
3883 * CSS_REMOVED. Return true on success, or false if the cgroup has
3884 * busy subsystems. Call with cgroup_mutex held
3885 */
3886
3887static int cgroup_clear_css_refs(struct cgroup *cgrp)
3888{
3889 struct cgroup_subsys *ss;
3890 unsigned long flags;
3891 bool failed = false;
3892 local_irq_save(flags);
3893 for_each_subsys(cgrp->root, ss) {
3894 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3895 int refcnt;
Paul Menage804b3c22009-01-29 14:25:21 -08003896 while (1) {
Paul Menagee7c5ec92009-01-07 18:08:38 -08003897 /* We can only remove a CSS with a refcnt==1 */
3898 refcnt = atomic_read(&css->refcnt);
3899 if (refcnt > 1) {
3900 failed = true;
3901 goto done;
3902 }
3903 BUG_ON(!refcnt);
3904 /*
3905 * Drop the refcnt to 0 while we check other
3906 * subsystems. This will cause any racing
3907 * css_tryget() to spin until we set the
3908 * CSS_REMOVED bits or abort
3909 */
Paul Menage804b3c22009-01-29 14:25:21 -08003910 if (atomic_cmpxchg(&css->refcnt, refcnt, 0) == refcnt)
3911 break;
3912 cpu_relax();
3913 }
Paul Menagee7c5ec92009-01-07 18:08:38 -08003914 }
3915 done:
3916 for_each_subsys(cgrp->root, ss) {
3917 struct cgroup_subsys_state *css = cgrp->subsys[ss->subsys_id];
3918 if (failed) {
3919 /*
3920 * Restore old refcnt if we previously managed
3921 * to clear it from 1 to 0
3922 */
3923 if (!atomic_read(&css->refcnt))
3924 atomic_set(&css->refcnt, 1);
3925 } else {
3926 /* Commit the fact that the CSS is removed */
3927 set_bit(CSS_REMOVED, &css->flags);
3928 }
3929 }
3930 local_irq_restore(flags);
3931 return !failed;
3932}
3933
Paul Menageddbcc7e2007-10-18 23:39:30 -07003934static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry)
3935{
Paul Menagebd89aab2007-10-18 23:40:44 -07003936 struct cgroup *cgrp = dentry->d_fsdata;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003937 struct dentry *d;
3938 struct cgroup *parent;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003939 DEFINE_WAIT(wait);
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08003940 struct cgroup_event *event, *tmp;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003941 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003942
3943 /* the vfs holds both inode->i_mutex already */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003944again:
Paul Menageddbcc7e2007-10-18 23:39:30 -07003945 mutex_lock(&cgroup_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07003946 if (atomic_read(&cgrp->count) != 0) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07003947 mutex_unlock(&cgroup_mutex);
3948 return -EBUSY;
3949 }
Paul Menagebd89aab2007-10-18 23:40:44 -07003950 if (!list_empty(&cgrp->children)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07003951 mutex_unlock(&cgroup_mutex);
3952 return -EBUSY;
3953 }
KAMEZAWA Hiroyuki3fa59df2008-11-19 15:36:34 -08003954 mutex_unlock(&cgroup_mutex);
Li Zefana043e3b2008-02-23 15:24:09 -08003955
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08003956 /*
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003957 * In general, subsystem has no css->refcnt after pre_destroy(). But
3958 * in racy cases, subsystem may have to get css->refcnt after
3959 * pre_destroy() and it makes rmdir return with -EBUSY. This sometimes
3960 * make rmdir return -EBUSY too often. To avoid that, we use waitqueue
3961 * for cgroup's rmdir. CGRP_WAIT_ON_RMDIR is for synchronizing rmdir
3962 * and subsystem's reference count handling. Please see css_get/put
3963 * and css_tryget() and cgroup_wakeup_rmdir_waiter() implementation.
3964 */
3965 set_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
3966
3967 /*
Li Zefana043e3b2008-02-23 15:24:09 -08003968 * Call pre_destroy handlers of subsys. Notify subsystems
3969 * that rmdir() request comes.
KAMEZAWA Hiroyuki4fca88c2008-02-07 00:14:27 -08003970 */
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003971 ret = cgroup_call_pre_destroy(cgrp);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003972 if (ret) {
3973 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003974 return ret;
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003975 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003976
KAMEZAWA Hiroyuki3fa59df2008-11-19 15:36:34 -08003977 mutex_lock(&cgroup_mutex);
3978 parent = cgrp->parent;
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003979 if (atomic_read(&cgrp->count) || !list_empty(&cgrp->children)) {
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003980 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003981 mutex_unlock(&cgroup_mutex);
3982 return -EBUSY;
3983 }
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003984 prepare_to_wait(&cgroup_rmdir_waitq, &wait, TASK_INTERRUPTIBLE);
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003985 if (!cgroup_clear_css_refs(cgrp)) {
3986 mutex_unlock(&cgroup_mutex);
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07003987 /*
3988 * Because someone may call cgroup_wakeup_rmdir_waiter() before
3989 * prepare_to_wait(), we need to check this flag.
3990 */
3991 if (test_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags))
3992 schedule();
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07003993 finish_wait(&cgroup_rmdir_waitq, &wait);
3994 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
3995 if (signal_pending(current))
3996 return -EINTR;
3997 goto again;
3998 }
3999 /* NO css_tryget() can success after here. */
4000 finish_wait(&cgroup_rmdir_waitq, &wait);
4001 clear_bit(CGRP_WAIT_ON_RMDIR, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004002
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004003 raw_spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07004004 set_bit(CGRP_REMOVED, &cgrp->flags);
4005 if (!list_empty(&cgrp->release_list))
Phil Carmody8d258792011-03-22 16:30:13 -07004006 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004007 raw_spin_unlock(&release_list_lock);
Paul Menage999cd8a2009-01-07 18:08:36 -08004008
4009 cgroup_lock_hierarchy(cgrp->root);
4010 /* delete this cgroup from parent->children */
Phil Carmody8d258792011-03-22 16:30:13 -07004011 list_del_init(&cgrp->sibling);
Paul Menage999cd8a2009-01-07 18:08:36 -08004012 cgroup_unlock_hierarchy(cgrp->root);
4013
Paul Menagebd89aab2007-10-18 23:40:44 -07004014 d = dget(cgrp->dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004015
4016 cgroup_d_remove_dir(d);
4017 dput(d);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004018
Paul Menagebd89aab2007-10-18 23:40:44 -07004019 set_bit(CGRP_RELEASABLE, &parent->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004020 check_for_release(parent);
4021
Kirill A. Shutemov4ab78682010-03-10 15:22:34 -08004022 /*
4023 * Unregister events and notify userspace.
4024 * Notify userspace about cgroup removing only after rmdir of cgroup
4025 * directory to avoid race between userspace and kernelspace
4026 */
4027 spin_lock(&cgrp->event_list_lock);
4028 list_for_each_entry_safe(event, tmp, &cgrp->event_list, list) {
4029 list_del(&event->list);
4030 remove_wait_queue(event->wqh, &event->wait);
4031 eventfd_signal(event->eventfd, 1);
4032 schedule_work(&event->remove);
4033 }
4034 spin_unlock(&cgrp->event_list_lock);
4035
Paul Menageddbcc7e2007-10-18 23:39:30 -07004036 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004037 return 0;
4038}
4039
Li Zefan06a11922008-04-29 01:00:07 -07004040static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004041{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004042 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08004043
4044 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004045
4046 /* Create the top cgroup state for this subsystem */
Li Zefan33a68ac2009-01-07 18:07:42 -08004047 list_add(&ss->sibling, &rootnode.subsys_list);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004048 ss->root = &rootnode;
Li Zefan761b3ef2012-01-31 13:47:36 +08004049 css = ss->create(dummytop);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004050 /* We don't handle early failures gracefully */
4051 BUG_ON(IS_ERR(css));
4052 init_cgroup_css(css, ss, dummytop);
4053
Li Zefane8d55fd2008-04-29 01:00:13 -07004054 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07004055 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07004056 * newly registered, all tasks and hence the
4057 * init_css_set is in the subsystem's top cgroup. */
4058 init_css_set.subsys[ss->subsys_id] = dummytop->subsys[ss->subsys_id];
Paul Menageddbcc7e2007-10-18 23:39:30 -07004059
4060 need_forkexit_callback |= ss->fork || ss->exit;
4061
Li Zefane8d55fd2008-04-29 01:00:13 -07004062 /* At system boot, before all subsystems have been
4063 * registered, no tasks have been forked, so we don't
4064 * need to invoke fork callbacks here. */
4065 BUG_ON(!list_empty(&init_task.tasks));
4066
Paul Menage999cd8a2009-01-07 18:08:36 -08004067 mutex_init(&ss->hierarchy_mutex);
Li Zefancfebe562009-02-11 13:04:36 -08004068 lockdep_set_class(&ss->hierarchy_mutex, &ss->subsys_key);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004069 ss->active = 1;
Ben Blume6a11052010-03-10 15:22:09 -08004070
4071 /* this function shouldn't be used with modular subsystems, since they
4072 * need to register a subsys_id, among other things */
4073 BUG_ON(ss->module);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004074}
4075
4076/**
Ben Blume6a11052010-03-10 15:22:09 -08004077 * cgroup_load_subsys: load and register a modular subsystem at runtime
4078 * @ss: the subsystem to load
4079 *
4080 * This function should be called in a modular subsystem's initcall. If the
Thomas Weber88393162010-03-16 11:47:56 +01004081 * subsystem is built as a module, it will be assigned a new subsys_id and set
Ben Blume6a11052010-03-10 15:22:09 -08004082 * up for use. If the subsystem is built-in anyway, work is delegated to the
4083 * simpler cgroup_init_subsys.
4084 */
4085int __init_or_module cgroup_load_subsys(struct cgroup_subsys *ss)
4086{
4087 int i;
4088 struct cgroup_subsys_state *css;
4089
4090 /* check name and function validity */
4091 if (ss->name == NULL || strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN ||
4092 ss->create == NULL || ss->destroy == NULL)
4093 return -EINVAL;
4094
4095 /*
4096 * we don't support callbacks in modular subsystems. this check is
4097 * before the ss->module check for consistency; a subsystem that could
4098 * be a module should still have no callbacks even if the user isn't
4099 * compiling it as one.
4100 */
4101 if (ss->fork || ss->exit)
4102 return -EINVAL;
4103
4104 /*
4105 * an optionally modular subsystem is built-in: we want to do nothing,
4106 * since cgroup_init_subsys will have already taken care of it.
4107 */
4108 if (ss->module == NULL) {
4109 /* a few sanity checks */
4110 BUG_ON(ss->subsys_id >= CGROUP_BUILTIN_SUBSYS_COUNT);
4111 BUG_ON(subsys[ss->subsys_id] != ss);
4112 return 0;
4113 }
4114
4115 /*
4116 * need to register a subsys id before anything else - for example,
4117 * init_cgroup_css needs it.
4118 */
4119 mutex_lock(&cgroup_mutex);
4120 /* find the first empty slot in the array */
4121 for (i = CGROUP_BUILTIN_SUBSYS_COUNT; i < CGROUP_SUBSYS_COUNT; i++) {
4122 if (subsys[i] == NULL)
4123 break;
4124 }
4125 if (i == CGROUP_SUBSYS_COUNT) {
4126 /* maximum number of subsystems already registered! */
4127 mutex_unlock(&cgroup_mutex);
4128 return -EBUSY;
4129 }
4130 /* assign ourselves the subsys_id */
4131 ss->subsys_id = i;
4132 subsys[i] = ss;
4133
4134 /*
4135 * no ss->create seems to need anything important in the ss struct, so
4136 * this can happen first (i.e. before the rootnode attachment).
4137 */
Li Zefan761b3ef2012-01-31 13:47:36 +08004138 css = ss->create(dummytop);
Ben Blume6a11052010-03-10 15:22:09 -08004139 if (IS_ERR(css)) {
4140 /* failure case - need to deassign the subsys[] slot. */
4141 subsys[i] = NULL;
4142 mutex_unlock(&cgroup_mutex);
4143 return PTR_ERR(css);
4144 }
4145
4146 list_add(&ss->sibling, &rootnode.subsys_list);
4147 ss->root = &rootnode;
4148
4149 /* our new subsystem will be attached to the dummy hierarchy. */
4150 init_cgroup_css(css, ss, dummytop);
4151 /* init_idr must be after init_cgroup_css because it sets css->id. */
4152 if (ss->use_id) {
4153 int ret = cgroup_init_idr(ss, css);
4154 if (ret) {
4155 dummytop->subsys[ss->subsys_id] = NULL;
Li Zefan761b3ef2012-01-31 13:47:36 +08004156 ss->destroy(dummytop);
Ben Blume6a11052010-03-10 15:22:09 -08004157 subsys[i] = NULL;
4158 mutex_unlock(&cgroup_mutex);
4159 return ret;
4160 }
4161 }
4162
4163 /*
4164 * Now we need to entangle the css into the existing css_sets. unlike
4165 * in cgroup_init_subsys, there are now multiple css_sets, so each one
4166 * will need a new pointer to it; done by iterating the css_set_table.
4167 * furthermore, modifying the existing css_sets will corrupt the hash
4168 * table state, so each changed css_set will need its hash recomputed.
4169 * this is all done under the css_set_lock.
4170 */
4171 write_lock(&css_set_lock);
4172 for (i = 0; i < CSS_SET_TABLE_SIZE; i++) {
4173 struct css_set *cg;
4174 struct hlist_node *node, *tmp;
4175 struct hlist_head *bucket = &css_set_table[i], *new_bucket;
4176
4177 hlist_for_each_entry_safe(cg, node, tmp, bucket, hlist) {
4178 /* skip entries that we already rehashed */
4179 if (cg->subsys[ss->subsys_id])
4180 continue;
4181 /* remove existing entry */
4182 hlist_del(&cg->hlist);
4183 /* set new value */
4184 cg->subsys[ss->subsys_id] = css;
4185 /* recompute hash and restore entry */
4186 new_bucket = css_set_hash(cg->subsys);
4187 hlist_add_head(&cg->hlist, new_bucket);
4188 }
4189 }
4190 write_unlock(&css_set_lock);
4191
4192 mutex_init(&ss->hierarchy_mutex);
4193 lockdep_set_class(&ss->hierarchy_mutex, &ss->subsys_key);
4194 ss->active = 1;
4195
Ben Blume6a11052010-03-10 15:22:09 -08004196 /* success! */
4197 mutex_unlock(&cgroup_mutex);
4198 return 0;
4199}
4200EXPORT_SYMBOL_GPL(cgroup_load_subsys);
4201
4202/**
Ben Blumcf5d5942010-03-10 15:22:09 -08004203 * cgroup_unload_subsys: unload a modular subsystem
4204 * @ss: the subsystem to unload
4205 *
4206 * This function should be called in a modular subsystem's exitcall. When this
4207 * function is invoked, the refcount on the subsystem's module will be 0, so
4208 * the subsystem will not be attached to any hierarchy.
4209 */
4210void cgroup_unload_subsys(struct cgroup_subsys *ss)
4211{
4212 struct cg_cgroup_link *link;
4213 struct hlist_head *hhead;
4214
4215 BUG_ON(ss->module == NULL);
4216
4217 /*
4218 * we shouldn't be called if the subsystem is in use, and the use of
4219 * try_module_get in parse_cgroupfs_options should ensure that it
4220 * doesn't start being used while we're killing it off.
4221 */
4222 BUG_ON(ss->root != &rootnode);
4223
4224 mutex_lock(&cgroup_mutex);
4225 /* deassign the subsys_id */
4226 BUG_ON(ss->subsys_id < CGROUP_BUILTIN_SUBSYS_COUNT);
4227 subsys[ss->subsys_id] = NULL;
4228
4229 /* remove subsystem from rootnode's list of subsystems */
Phil Carmody8d258792011-03-22 16:30:13 -07004230 list_del_init(&ss->sibling);
Ben Blumcf5d5942010-03-10 15:22:09 -08004231
4232 /*
4233 * disentangle the css from all css_sets attached to the dummytop. as
4234 * in loading, we need to pay our respects to the hashtable gods.
4235 */
4236 write_lock(&css_set_lock);
4237 list_for_each_entry(link, &dummytop->css_sets, cgrp_link_list) {
4238 struct css_set *cg = link->cg;
4239
4240 hlist_del(&cg->hlist);
4241 BUG_ON(!cg->subsys[ss->subsys_id]);
4242 cg->subsys[ss->subsys_id] = NULL;
4243 hhead = css_set_hash(cg->subsys);
4244 hlist_add_head(&cg->hlist, hhead);
4245 }
4246 write_unlock(&css_set_lock);
4247
4248 /*
4249 * remove subsystem's css from the dummytop and free it - need to free
4250 * before marking as null because ss->destroy needs the cgrp->subsys
4251 * pointer to find their state. note that this also takes care of
4252 * freeing the css_id.
4253 */
Li Zefan761b3ef2012-01-31 13:47:36 +08004254 ss->destroy(dummytop);
Ben Blumcf5d5942010-03-10 15:22:09 -08004255 dummytop->subsys[ss->subsys_id] = NULL;
4256
4257 mutex_unlock(&cgroup_mutex);
4258}
4259EXPORT_SYMBOL_GPL(cgroup_unload_subsys);
4260
4261/**
Li Zefana043e3b2008-02-23 15:24:09 -08004262 * cgroup_init_early - cgroup initialization at system boot
4263 *
4264 * Initialize cgroups at system boot, and initialize any
4265 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004266 */
4267int __init cgroup_init_early(void)
4268{
4269 int i;
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07004270 atomic_set(&init_css_set.refcount, 1);
Paul Menage817929e2007-10-18 23:39:36 -07004271 INIT_LIST_HEAD(&init_css_set.cg_links);
4272 INIT_LIST_HEAD(&init_css_set.tasks);
Li Zefan472b1052008-04-29 01:00:11 -07004273 INIT_HLIST_NODE(&init_css_set.hlist);
Paul Menage817929e2007-10-18 23:39:36 -07004274 css_set_count = 1;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004275 init_cgroup_root(&rootnode);
Paul Menage817929e2007-10-18 23:39:36 -07004276 root_count = 1;
4277 init_task.cgroups = &init_css_set;
4278
4279 init_css_set_link.cg = &init_css_set;
Paul Menage7717f7b2009-09-23 15:56:22 -07004280 init_css_set_link.cgrp = dummytop;
Paul Menagebd89aab2007-10-18 23:40:44 -07004281 list_add(&init_css_set_link.cgrp_link_list,
Paul Menage817929e2007-10-18 23:39:36 -07004282 &rootnode.top_cgroup.css_sets);
4283 list_add(&init_css_set_link.cg_link_list,
4284 &init_css_set.cg_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004285
Li Zefan472b1052008-04-29 01:00:11 -07004286 for (i = 0; i < CSS_SET_TABLE_SIZE; i++)
4287 INIT_HLIST_HEAD(&css_set_table[i]);
4288
Ben Blumaae8aab2010-03-10 15:22:07 -08004289 /* at bootup time, we don't worry about modular subsystems */
4290 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004291 struct cgroup_subsys *ss = subsys[i];
4292
4293 BUG_ON(!ss->name);
4294 BUG_ON(strlen(ss->name) > MAX_CGROUP_TYPE_NAMELEN);
4295 BUG_ON(!ss->create);
4296 BUG_ON(!ss->destroy);
4297 if (ss->subsys_id != i) {
Diego Callejacfe36bd2007-11-14 16:58:54 -08004298 printk(KERN_ERR "cgroup: Subsys %s id == %d\n",
Paul Menageddbcc7e2007-10-18 23:39:30 -07004299 ss->name, ss->subsys_id);
4300 BUG();
4301 }
4302
4303 if (ss->early_init)
4304 cgroup_init_subsys(ss);
4305 }
4306 return 0;
4307}
4308
4309/**
Li Zefana043e3b2008-02-23 15:24:09 -08004310 * cgroup_init - cgroup initialization
4311 *
4312 * Register cgroup filesystem and /proc file, and initialize
4313 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004314 */
4315int __init cgroup_init(void)
4316{
4317 int err;
4318 int i;
Li Zefan472b1052008-04-29 01:00:11 -07004319 struct hlist_head *hhead;
Paul Menagea4243162007-10-18 23:39:35 -07004320
4321 err = bdi_init(&cgroup_backing_dev_info);
4322 if (err)
4323 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004324
Ben Blumaae8aab2010-03-10 15:22:07 -08004325 /* at bootup time, we don't worry about modular subsystems */
4326 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004327 struct cgroup_subsys *ss = subsys[i];
4328 if (!ss->early_init)
4329 cgroup_init_subsys(ss);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004330 if (ss->use_id)
Ben Blume6a11052010-03-10 15:22:09 -08004331 cgroup_init_idr(ss, init_css_set.subsys[ss->subsys_id]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004332 }
4333
Li Zefan472b1052008-04-29 01:00:11 -07004334 /* Add init_css_set to the hash table */
4335 hhead = css_set_hash(init_css_set.subsys);
4336 hlist_add_head(&init_css_set.hlist, hhead);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004337 BUG_ON(!init_root_id(&rootnode));
Greg KH676db4a2010-08-05 13:53:35 -07004338
4339 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
4340 if (!cgroup_kobj) {
4341 err = -ENOMEM;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004342 goto out;
Greg KH676db4a2010-08-05 13:53:35 -07004343 }
4344
4345 err = register_filesystem(&cgroup_fs_type);
4346 if (err < 0) {
4347 kobject_put(cgroup_kobj);
4348 goto out;
4349 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004350
Li Zefan46ae2202008-04-29 01:00:08 -07004351 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Paul Menagea4243162007-10-18 23:39:35 -07004352
Paul Menageddbcc7e2007-10-18 23:39:30 -07004353out:
Paul Menagea4243162007-10-18 23:39:35 -07004354 if (err)
4355 bdi_destroy(&cgroup_backing_dev_info);
4356
Paul Menageddbcc7e2007-10-18 23:39:30 -07004357 return err;
4358}
Paul Menageb4f48b62007-10-18 23:39:33 -07004359
Paul Menagea4243162007-10-18 23:39:35 -07004360/*
4361 * proc_cgroup_show()
4362 * - Print task's cgroup paths into seq_file, one line for each hierarchy
4363 * - Used for /proc/<pid>/cgroup.
4364 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
4365 * doesn't really matter if tsk->cgroup changes after we read it,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004366 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
Paul Menagea4243162007-10-18 23:39:35 -07004367 * anyway. No need to check that tsk->cgroup != NULL, thanks to
4368 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
4369 * cgroup to top_cgroup.
4370 */
4371
4372/* TODO: Use a proper seq_file iterator */
4373static int proc_cgroup_show(struct seq_file *m, void *v)
4374{
4375 struct pid *pid;
4376 struct task_struct *tsk;
4377 char *buf;
4378 int retval;
4379 struct cgroupfs_root *root;
4380
4381 retval = -ENOMEM;
4382 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
4383 if (!buf)
4384 goto out;
4385
4386 retval = -ESRCH;
4387 pid = m->private;
4388 tsk = get_pid_task(pid, PIDTYPE_PID);
4389 if (!tsk)
4390 goto out_free;
4391
4392 retval = 0;
4393
4394 mutex_lock(&cgroup_mutex);
4395
Li Zefane5f6a862009-01-07 18:07:41 -08004396 for_each_active_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07004397 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07004398 struct cgroup *cgrp;
Paul Menagea4243162007-10-18 23:39:35 -07004399 int count = 0;
4400
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004401 seq_printf(m, "%d:", root->hierarchy_id);
Paul Menagea4243162007-10-18 23:39:35 -07004402 for_each_subsys(root, ss)
4403 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07004404 if (strlen(root->name))
4405 seq_printf(m, "%sname=%s", count ? "," : "",
4406 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07004407 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07004408 cgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07004409 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
Paul Menagea4243162007-10-18 23:39:35 -07004410 if (retval < 0)
4411 goto out_unlock;
4412 seq_puts(m, buf);
4413 seq_putc(m, '\n');
4414 }
4415
4416out_unlock:
4417 mutex_unlock(&cgroup_mutex);
4418 put_task_struct(tsk);
4419out_free:
4420 kfree(buf);
4421out:
4422 return retval;
4423}
4424
4425static int cgroup_open(struct inode *inode, struct file *file)
4426{
4427 struct pid *pid = PROC_I(inode)->pid;
4428 return single_open(file, proc_cgroup_show, pid);
4429}
4430
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004431const struct file_operations proc_cgroup_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004432 .open = cgroup_open,
4433 .read = seq_read,
4434 .llseek = seq_lseek,
4435 .release = single_release,
4436};
4437
4438/* Display information about each subsystem and each hierarchy */
4439static int proc_cgroupstats_show(struct seq_file *m, void *v)
4440{
4441 int i;
Paul Menagea4243162007-10-18 23:39:35 -07004442
Paul Menage8bab8dd2008-04-04 14:29:57 -07004443 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08004444 /*
4445 * ideally we don't want subsystems moving around while we do this.
4446 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
4447 * subsys/hierarchy state.
4448 */
Paul Menagea4243162007-10-18 23:39:35 -07004449 mutex_lock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07004450 for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
4451 struct cgroup_subsys *ss = subsys[i];
Ben Blumaae8aab2010-03-10 15:22:07 -08004452 if (ss == NULL)
4453 continue;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004454 seq_printf(m, "%s\t%d\t%d\t%d\n",
4455 ss->name, ss->root->hierarchy_id,
Paul Menage8bab8dd2008-04-04 14:29:57 -07004456 ss->root->number_of_cgroups, !ss->disabled);
Paul Menagea4243162007-10-18 23:39:35 -07004457 }
4458 mutex_unlock(&cgroup_mutex);
4459 return 0;
4460}
4461
4462static int cgroupstats_open(struct inode *inode, struct file *file)
4463{
Al Viro9dce07f12008-03-29 03:07:28 +00004464 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07004465}
4466
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004467static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004468 .open = cgroupstats_open,
4469 .read = seq_read,
4470 .llseek = seq_lseek,
4471 .release = single_release,
4472};
4473
Paul Menageb4f48b62007-10-18 23:39:33 -07004474/**
4475 * cgroup_fork - attach newly forked task to its parents cgroup.
Li Zefana043e3b2008-02-23 15:24:09 -08004476 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07004477 *
4478 * Description: A task inherits its parent's cgroup at fork().
4479 *
4480 * A pointer to the shared css_set was automatically copied in
4481 * fork.c by dup_task_struct(). However, we ignore that copy, since
Tejun Heo727fa372012-10-18 17:52:07 -07004482 * it was not made under the protection of RCU or cgroup_mutex, so
4483 * might no longer be a valid cgroup pointer. cgroup_attach_task() might
4484 * have already changed current->cgroups, allowing the previously
4485 * referenced cgroup group to be removed and freed.
Paul Menageb4f48b62007-10-18 23:39:33 -07004486 *
4487 * At the point that cgroup_fork() is called, 'current' is the parent
4488 * task, and the passed argument 'child' points to the child task.
4489 */
4490void cgroup_fork(struct task_struct *child)
4491{
Tejun Heo727fa372012-10-18 17:52:07 -07004492 task_lock(current);
Paul Menage817929e2007-10-18 23:39:36 -07004493 child->cgroups = current->cgroups;
4494 get_css_set(child->cgroups);
Tejun Heo727fa372012-10-18 17:52:07 -07004495 task_unlock(current);
Paul Menage817929e2007-10-18 23:39:36 -07004496 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07004497}
4498
4499/**
Li Zefana043e3b2008-02-23 15:24:09 -08004500 * cgroup_post_fork - called on a new task after adding it to the task list
4501 * @child: the task in question
4502 *
Tejun Heo30ec2682012-10-16 15:03:14 -07004503 * Adds the task to the list running through its css_set if necessary and
4504 * call the subsystem fork() callbacks. Has to be after the task is
4505 * visible on the task list in case we race with the first call to
4506 * cgroup_iter_start() - to guarantee that the new task ends up on its
4507 * list.
Li Zefana043e3b2008-02-23 15:24:09 -08004508 */
Paul Menage817929e2007-10-18 23:39:36 -07004509void cgroup_post_fork(struct task_struct *child)
4510{
Tejun Heo30ec2682012-10-16 15:03:14 -07004511 int i;
4512
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01004513 /*
4514 * use_task_css_set_links is set to 1 before we walk the tasklist
4515 * under the tasklist_lock and we read it here after we added the child
4516 * to the tasklist under the tasklist_lock as well. If the child wasn't
4517 * yet in the tasklist when we walked through it from
4518 * cgroup_enable_task_cg_lists(), then use_task_css_set_links value
4519 * should be visible now due to the paired locking and barriers implied
4520 * by LOCK/UNLOCK: it is written before the tasklist_lock unlock
4521 * in cgroup_enable_task_cg_lists() and read here after the tasklist_lock
4522 * lock on fork.
4523 */
Paul Menage817929e2007-10-18 23:39:36 -07004524 if (use_task_css_set_links) {
4525 write_lock(&css_set_lock);
Tejun Heo5993bba2012-10-18 17:40:30 -07004526 task_lock(child);
4527 if (list_empty(&child->cg_list))
Paul Menage817929e2007-10-18 23:39:36 -07004528 list_add(&child->cg_list, &child->cgroups->tasks);
Tejun Heo5993bba2012-10-18 17:40:30 -07004529 task_unlock(child);
Paul Menage817929e2007-10-18 23:39:36 -07004530 write_unlock(&css_set_lock);
4531 }
Tejun Heo30ec2682012-10-16 15:03:14 -07004532
4533 /*
4534 * Call ss->fork(). This must happen after @child is linked on
4535 * css_set; otherwise, @child might change state between ->fork()
4536 * and addition to css_set.
4537 */
4538 if (need_forkexit_callback) {
4539 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
4540 struct cgroup_subsys *ss = subsys[i];
4541 if (ss->fork)
4542 ss->fork(child);
4543 }
4544 }
Paul Menage817929e2007-10-18 23:39:36 -07004545}
Tejun Heo30ec2682012-10-16 15:03:14 -07004546
Paul Menage817929e2007-10-18 23:39:36 -07004547/**
Paul Menageb4f48b62007-10-18 23:39:33 -07004548 * cgroup_exit - detach cgroup from exiting task
4549 * @tsk: pointer to task_struct of exiting process
Li Zefana043e3b2008-02-23 15:24:09 -08004550 * @run_callback: run exit callbacks?
Paul Menageb4f48b62007-10-18 23:39:33 -07004551 *
4552 * Description: Detach cgroup from @tsk and release it.
4553 *
4554 * Note that cgroups marked notify_on_release force every task in
4555 * them to take the global cgroup_mutex mutex when exiting.
4556 * This could impact scaling on very large systems. Be reluctant to
4557 * use notify_on_release cgroups where very high task exit scaling
4558 * is required on large systems.
4559 *
4560 * the_top_cgroup_hack:
4561 *
4562 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
4563 *
4564 * We call cgroup_exit() while the task is still competent to
4565 * handle notify_on_release(), then leave the task attached to the
4566 * root cgroup in each hierarchy for the remainder of its exit.
4567 *
4568 * To do this properly, we would increment the reference count on
4569 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
4570 * code we would add a second cgroup function call, to drop that
4571 * reference. This would just create an unnecessary hot spot on
4572 * the top_cgroup reference count, to no avail.
4573 *
4574 * Normally, holding a reference to a cgroup without bumping its
4575 * count is unsafe. The cgroup could go away, or someone could
4576 * attach us to a different cgroup, decrementing the count on
4577 * the first cgroup that we never incremented. But in this case,
4578 * top_cgroup isn't going away, and either task has PF_EXITING set,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004579 * which wards off any cgroup_attach_task() attempts, or task is a failed
4580 * fork, never visible to cgroup_attach_task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004581 */
4582void cgroup_exit(struct task_struct *tsk, int run_callbacks)
4583{
Paul Menage817929e2007-10-18 23:39:36 -07004584 struct css_set *cg;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004585 int i;
Paul Menage817929e2007-10-18 23:39:36 -07004586
4587 /*
4588 * Unlink from the css_set task list if necessary.
4589 * Optimistically check cg_list before taking
4590 * css_set_lock
4591 */
4592 if (!list_empty(&tsk->cg_list)) {
4593 write_lock(&css_set_lock);
4594 if (!list_empty(&tsk->cg_list))
Phil Carmody8d258792011-03-22 16:30:13 -07004595 list_del_init(&tsk->cg_list);
Paul Menage817929e2007-10-18 23:39:36 -07004596 write_unlock(&css_set_lock);
4597 }
4598
Paul Menageb4f48b62007-10-18 23:39:33 -07004599 /* Reassign the task to the init_css_set. */
4600 task_lock(tsk);
Paul Menage817929e2007-10-18 23:39:36 -07004601 cg = tsk->cgroups;
4602 tsk->cgroups = &init_css_set;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004603
4604 if (run_callbacks && need_forkexit_callback) {
4605 /*
4606 * modular subsystems can't use callbacks, so no need to lock
4607 * the subsys array
4608 */
4609 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
4610 struct cgroup_subsys *ss = subsys[i];
4611 if (ss->exit) {
4612 struct cgroup *old_cgrp =
4613 rcu_dereference_raw(cg->subsys[i])->cgroup;
4614 struct cgroup *cgrp = task_cgroup(tsk, i);
Li Zefan761b3ef2012-01-31 13:47:36 +08004615 ss->exit(cgrp, old_cgrp, tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004616 }
4617 }
4618 }
Paul Menageb4f48b62007-10-18 23:39:33 -07004619 task_unlock(tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004620
Paul Menage817929e2007-10-18 23:39:36 -07004621 if (cg)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004622 put_css_set_taskexit(cg);
Paul Menageb4f48b62007-10-18 23:39:33 -07004623}
Paul Menage697f4162007-10-18 23:39:34 -07004624
4625/**
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004626 * cgroup_is_descendant - see if @cgrp is a descendant of @task's cgrp
Li Zefana043e3b2008-02-23 15:24:09 -08004627 * @cgrp: the cgroup in question
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004628 * @task: the task in question
Li Zefana043e3b2008-02-23 15:24:09 -08004629 *
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004630 * See if @cgrp is a descendant of @task's cgroup in the appropriate
4631 * hierarchy.
Paul Menage697f4162007-10-18 23:39:34 -07004632 *
4633 * If we are sending in dummytop, then presumably we are creating
4634 * the top cgroup in the subsystem.
4635 *
4636 * Called only by the ns (nsproxy) cgroup.
4637 */
Grzegorz Nosek313e9242009-04-02 16:57:23 -07004638int cgroup_is_descendant(const struct cgroup *cgrp, struct task_struct *task)
Paul Menage697f4162007-10-18 23:39:34 -07004639{
4640 int ret;
4641 struct cgroup *target;
Paul Menage697f4162007-10-18 23:39:34 -07004642
Paul Menagebd89aab2007-10-18 23:40:44 -07004643 if (cgrp == dummytop)
Paul Menage697f4162007-10-18 23:39:34 -07004644 return 1;
4645
Paul Menage7717f7b2009-09-23 15:56:22 -07004646 target = task_cgroup_from_root(task, cgrp->root);
Paul Menagebd89aab2007-10-18 23:40:44 -07004647 while (cgrp != target && cgrp!= cgrp->top_cgroup)
4648 cgrp = cgrp->parent;
4649 ret = (cgrp == target);
Paul Menage697f4162007-10-18 23:39:34 -07004650 return ret;
4651}
Paul Menage81a6a5c2007-10-18 23:39:38 -07004652
Paul Menagebd89aab2007-10-18 23:40:44 -07004653static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004654{
4655 /* All of these checks rely on RCU to keep the cgroup
4656 * structure alive */
Paul Menagebd89aab2007-10-18 23:40:44 -07004657 if (cgroup_is_releasable(cgrp) && !atomic_read(&cgrp->count)
4658 && list_empty(&cgrp->children) && !cgroup_has_css_refs(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004659 /* Control Group is currently removeable. If it's not
4660 * already queued for a userspace notification, queue
4661 * it now */
4662 int need_schedule_work = 0;
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004663 raw_spin_lock(&release_list_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07004664 if (!cgroup_is_removed(cgrp) &&
4665 list_empty(&cgrp->release_list)) {
4666 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004667 need_schedule_work = 1;
4668 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004669 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004670 if (need_schedule_work)
4671 schedule_work(&release_agent_work);
4672 }
4673}
4674
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -08004675/* Caller must verify that the css is not for root cgroup */
4676void __css_put(struct cgroup_subsys_state *css, int count)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004677{
Paul Menagebd89aab2007-10-18 23:40:44 -07004678 struct cgroup *cgrp = css->cgroup;
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004679 int val;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004680 rcu_read_lock();
Daisuke Nishimurad7b9fff2010-03-10 15:22:05 -08004681 val = atomic_sub_return(count, &css->refcnt);
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004682 if (val == 1) {
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -07004683 if (notify_on_release(cgrp)) {
4684 set_bit(CGRP_RELEASABLE, &cgrp->flags);
4685 check_for_release(cgrp);
4686 }
KAMEZAWA Hiroyuki88703262009-07-29 15:04:06 -07004687 cgroup_wakeup_rmdir_waiter(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004688 }
4689 rcu_read_unlock();
KAMEZAWA Hiroyuki3dece832009-10-01 15:44:09 -07004690 WARN_ON_ONCE(val < 1);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004691}
Ben Blum67523c42010-03-10 15:22:11 -08004692EXPORT_SYMBOL_GPL(__css_put);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004693
4694/*
4695 * Notify userspace when a cgroup is released, by running the
4696 * configured release agent with the name of the cgroup (path
4697 * relative to the root of cgroup file system) as the argument.
4698 *
4699 * Most likely, this user command will try to rmdir this cgroup.
4700 *
4701 * This races with the possibility that some other task will be
4702 * attached to this cgroup before it is removed, or that some other
4703 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
4704 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
4705 * unused, and this cgroup will be reprieved from its death sentence,
4706 * to continue to serve a useful existence. Next time it's released,
4707 * we will get notified again, if it still has 'notify_on_release' set.
4708 *
4709 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
4710 * means only wait until the task is successfully execve()'d. The
4711 * separate release agent task is forked by call_usermodehelper(),
4712 * then control in this thread returns here, without waiting for the
4713 * release agent task. We don't bother to wait because the caller of
4714 * this routine has no use for the exit status of the release agent
4715 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07004716 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004717static void cgroup_release_agent(struct work_struct *work)
4718{
4719 BUG_ON(work != &release_agent_work);
4720 mutex_lock(&cgroup_mutex);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004721 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004722 while (!list_empty(&release_list)) {
4723 char *argv[3], *envp[3];
4724 int i;
Paul Menagee788e062008-07-25 01:46:59 -07004725 char *pathbuf = NULL, *agentbuf = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07004726 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07004727 struct cgroup,
4728 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07004729 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004730 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004731 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paul Menagee788e062008-07-25 01:46:59 -07004732 if (!pathbuf)
4733 goto continue_free;
4734 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0)
4735 goto continue_free;
4736 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
4737 if (!agentbuf)
4738 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004739
4740 i = 0;
Paul Menagee788e062008-07-25 01:46:59 -07004741 argv[i++] = agentbuf;
4742 argv[i++] = pathbuf;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004743 argv[i] = NULL;
4744
4745 i = 0;
4746 /* minimal command environment */
4747 envp[i++] = "HOME=/";
4748 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
4749 envp[i] = NULL;
4750
4751 /* Drop the lock while we invoke the usermode helper,
4752 * since the exec could involve hitting disk and hence
4753 * be a slow process */
4754 mutex_unlock(&cgroup_mutex);
4755 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004756 mutex_lock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07004757 continue_free:
4758 kfree(pathbuf);
4759 kfree(agentbuf);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004760 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004761 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004762 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004763 mutex_unlock(&cgroup_mutex);
4764}
Paul Menage8bab8dd2008-04-04 14:29:57 -07004765
4766static int __init cgroup_disable(char *str)
4767{
4768 int i;
4769 char *token;
4770
4771 while ((token = strsep(&str, ",")) != NULL) {
4772 if (!*token)
4773 continue;
Ben Blumaae8aab2010-03-10 15:22:07 -08004774 /*
4775 * cgroup_disable, being at boot time, can't know about module
4776 * subsystems, so we don't worry about them.
4777 */
4778 for (i = 0; i < CGROUP_BUILTIN_SUBSYS_COUNT; i++) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07004779 struct cgroup_subsys *ss = subsys[i];
4780
4781 if (!strcmp(token, ss->name)) {
4782 ss->disabled = 1;
4783 printk(KERN_INFO "Disabling %s control group"
4784 " subsystem\n", ss->name);
4785 break;
4786 }
4787 }
4788 }
4789 return 1;
4790}
4791__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004792
4793/*
4794 * Functons for CSS ID.
4795 */
4796
4797/*
4798 *To get ID other than 0, this should be called when !cgroup_is_removed().
4799 */
4800unsigned short css_id(struct cgroup_subsys_state *css)
4801{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07004802 struct css_id *cssid;
4803
4804 /*
4805 * This css_id() can return correct value when somone has refcnt
4806 * on this or this is under rcu_read_lock(). Once css->id is allocated,
4807 * it's unchanged until freed.
4808 */
Michal Hockod8bf4ca2011-07-08 14:39:41 +02004809 cssid = rcu_dereference_check(css->id, atomic_read(&css->refcnt));
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004810
4811 if (cssid)
4812 return cssid->id;
4813 return 0;
4814}
Ben Blum67523c42010-03-10 15:22:11 -08004815EXPORT_SYMBOL_GPL(css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004816
4817unsigned short css_depth(struct cgroup_subsys_state *css)
4818{
KAMEZAWA Hiroyuki7f0f1542010-05-11 14:06:58 -07004819 struct css_id *cssid;
4820
Michal Hockod8bf4ca2011-07-08 14:39:41 +02004821 cssid = rcu_dereference_check(css->id, atomic_read(&css->refcnt));
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004822
4823 if (cssid)
4824 return cssid->depth;
4825 return 0;
4826}
Ben Blum67523c42010-03-10 15:22:11 -08004827EXPORT_SYMBOL_GPL(css_depth);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004828
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004829/**
4830 * css_is_ancestor - test "root" css is an ancestor of "child"
4831 * @child: the css to be tested.
4832 * @root: the css supporsed to be an ancestor of the child.
4833 *
4834 * Returns true if "root" is an ancestor of "child" in its hierarchy. Because
4835 * this function reads css->id, this use rcu_dereference() and rcu_read_lock().
4836 * But, considering usual usage, the csses should be valid objects after test.
4837 * Assuming that the caller will do some action to the child if this returns
4838 * returns true, the caller must take "child";s reference count.
4839 * If "child" is valid object and this returns true, "root" is valid, too.
4840 */
4841
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004842bool css_is_ancestor(struct cgroup_subsys_state *child,
KAMEZAWA Hiroyuki0b7f5692009-04-02 16:57:38 -07004843 const struct cgroup_subsys_state *root)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004844{
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004845 struct css_id *child_id;
4846 struct css_id *root_id;
4847 bool ret = true;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004848
KAMEZAWA Hiroyuki747388d2010-05-11 14:06:59 -07004849 rcu_read_lock();
4850 child_id = rcu_dereference(child->id);
4851 root_id = rcu_dereference(root->id);
4852 if (!child_id
4853 || !root_id
4854 || (child_id->depth < root_id->depth)
4855 || (child_id->stack[root_id->depth] != root_id->id))
4856 ret = false;
4857 rcu_read_unlock();
4858 return ret;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004859}
4860
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004861void free_css_id(struct cgroup_subsys *ss, struct cgroup_subsys_state *css)
4862{
4863 struct css_id *id = css->id;
4864 /* When this is called before css_id initialization, id can be NULL */
4865 if (!id)
4866 return;
4867
4868 BUG_ON(!ss->use_id);
4869
4870 rcu_assign_pointer(id->css, NULL);
4871 rcu_assign_pointer(css->id, NULL);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07004872 spin_lock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004873 idr_remove(&ss->idr, id->id);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07004874 spin_unlock(&ss->id_lock);
Lai Jiangshan025cea92011-03-15 17:56:10 +08004875 kfree_rcu(id, rcu_head);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004876}
Ben Blum67523c42010-03-10 15:22:11 -08004877EXPORT_SYMBOL_GPL(free_css_id);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004878
4879/*
4880 * This is called by init or create(). Then, calls to this function are
4881 * always serialized (By cgroup_mutex() at create()).
4882 */
4883
4884static struct css_id *get_new_cssid(struct cgroup_subsys *ss, int depth)
4885{
4886 struct css_id *newid;
4887 int myid, error, size;
4888
4889 BUG_ON(!ss->use_id);
4890
4891 size = sizeof(*newid) + sizeof(unsigned short) * (depth + 1);
4892 newid = kzalloc(size, GFP_KERNEL);
4893 if (!newid)
4894 return ERR_PTR(-ENOMEM);
4895 /* get id */
4896 if (unlikely(!idr_pre_get(&ss->idr, GFP_KERNEL))) {
4897 error = -ENOMEM;
4898 goto err_out;
4899 }
Hugh Dickins42aee6c2012-03-21 16:34:21 -07004900 spin_lock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004901 /* Don't use 0. allocates an ID of 1-65535 */
4902 error = idr_get_new_above(&ss->idr, newid, 1, &myid);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07004903 spin_unlock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004904
4905 /* Returns error when there are no free spaces for new ID.*/
4906 if (error) {
4907 error = -ENOSPC;
4908 goto err_out;
4909 }
4910 if (myid > CSS_ID_MAX)
4911 goto remove_idr;
4912
4913 newid->id = myid;
4914 newid->depth = depth;
4915 return newid;
4916remove_idr:
4917 error = -ENOSPC;
Hugh Dickins42aee6c2012-03-21 16:34:21 -07004918 spin_lock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004919 idr_remove(&ss->idr, myid);
Hugh Dickins42aee6c2012-03-21 16:34:21 -07004920 spin_unlock(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004921err_out:
4922 kfree(newid);
4923 return ERR_PTR(error);
4924
4925}
4926
Ben Blume6a11052010-03-10 15:22:09 -08004927static int __init_or_module cgroup_init_idr(struct cgroup_subsys *ss,
4928 struct cgroup_subsys_state *rootcss)
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004929{
4930 struct css_id *newid;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004931
Hugh Dickins42aee6c2012-03-21 16:34:21 -07004932 spin_lock_init(&ss->id_lock);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004933 idr_init(&ss->idr);
4934
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004935 newid = get_new_cssid(ss, 0);
4936 if (IS_ERR(newid))
4937 return PTR_ERR(newid);
4938
4939 newid->stack[0] = newid->id;
4940 newid->css = rootcss;
4941 rootcss->id = newid;
4942 return 0;
4943}
4944
4945static int alloc_css_id(struct cgroup_subsys *ss, struct cgroup *parent,
4946 struct cgroup *child)
4947{
4948 int subsys_id, i, depth = 0;
4949 struct cgroup_subsys_state *parent_css, *child_css;
Li Zefanfae9c792010-04-22 17:30:00 +08004950 struct css_id *child_id, *parent_id;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004951
4952 subsys_id = ss->subsys_id;
4953 parent_css = parent->subsys[subsys_id];
4954 child_css = child->subsys[subsys_id];
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004955 parent_id = parent_css->id;
Greg Thelen94b3dd02010-06-04 14:15:03 -07004956 depth = parent_id->depth + 1;
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004957
4958 child_id = get_new_cssid(ss, depth);
4959 if (IS_ERR(child_id))
4960 return PTR_ERR(child_id);
4961
4962 for (i = 0; i < depth; i++)
4963 child_id->stack[i] = parent_id->stack[i];
4964 child_id->stack[depth] = child_id->id;
4965 /*
4966 * child_id->css pointer will be set after this cgroup is available
4967 * see cgroup_populate_dir()
4968 */
4969 rcu_assign_pointer(child_css->id, child_id);
4970
4971 return 0;
4972}
4973
4974/**
4975 * css_lookup - lookup css by id
4976 * @ss: cgroup subsys to be looked into.
4977 * @id: the id
4978 *
4979 * Returns pointer to cgroup_subsys_state if there is valid one with id.
4980 * NULL if not. Should be called under rcu_read_lock()
4981 */
4982struct cgroup_subsys_state *css_lookup(struct cgroup_subsys *ss, int id)
4983{
4984 struct css_id *cssid = NULL;
4985
4986 BUG_ON(!ss->use_id);
4987 cssid = idr_find(&ss->idr, id);
4988
4989 if (unlikely(!cssid))
4990 return NULL;
4991
4992 return rcu_dereference(cssid->css);
4993}
Ben Blum67523c42010-03-10 15:22:11 -08004994EXPORT_SYMBOL_GPL(css_lookup);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004995
4996/**
4997 * css_get_next - lookup next cgroup under specified hierarchy.
4998 * @ss: pointer to subsystem
4999 * @id: current position of iteration.
5000 * @root: pointer to css. search tree under this.
5001 * @foundid: position of found object.
5002 *
5003 * Search next css under the specified hierarchy of rootid. Calling under
5004 * rcu_read_lock() is necessary. Returns NULL if it reaches the end.
5005 */
5006struct cgroup_subsys_state *
5007css_get_next(struct cgroup_subsys *ss, int id,
5008 struct cgroup_subsys_state *root, int *foundid)
5009{
5010 struct cgroup_subsys_state *ret = NULL;
5011 struct css_id *tmp;
5012 int tmpid;
5013 int rootid = css_id(root);
5014 int depth = css_depth(root);
5015
5016 if (!rootid)
5017 return NULL;
5018
5019 BUG_ON(!ss->use_id);
Hugh Dickinsca464d62012-03-21 16:34:21 -07005020 WARN_ON_ONCE(!rcu_read_lock_held());
5021
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005022 /* fill start point for scan */
5023 tmpid = id;
5024 while (1) {
5025 /*
5026 * scan next entry from bitmap(tree), tmpid is updated after
5027 * idr_get_next().
5028 */
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005029 tmp = idr_get_next(&ss->idr, &tmpid);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005030 if (!tmp)
5031 break;
5032 if (tmp->depth >= depth && tmp->stack[depth] == rootid) {
5033 ret = rcu_dereference(tmp->css);
5034 if (ret) {
5035 *foundid = tmpid;
5036 break;
5037 }
5038 }
5039 /* continue to scan from next id */
5040 tmpid = tmpid + 1;
5041 }
5042 return ret;
5043}
5044
Stephane Eraniane5d13672011-02-14 11:20:01 +02005045/*
5046 * get corresponding css from file open on cgroupfs directory
5047 */
5048struct cgroup_subsys_state *cgroup_css_from_dir(struct file *f, int id)
5049{
5050 struct cgroup *cgrp;
5051 struct inode *inode;
5052 struct cgroup_subsys_state *css;
5053
5054 inode = f->f_dentry->d_inode;
5055 /* check in cgroup filesystem dir */
5056 if (inode->i_op != &cgroup_dir_inode_operations)
5057 return ERR_PTR(-EBADF);
5058
5059 if (id < 0 || id >= CGROUP_SUBSYS_COUNT)
5060 return ERR_PTR(-EINVAL);
5061
5062 /* get cgroup */
5063 cgrp = __d_cgrp(f->f_dentry);
5064 css = cgrp->subsys[id];
5065 return css ? css : ERR_PTR(-ENOENT);
5066}
5067
Paul Menagefe693432009-09-23 15:56:20 -07005068#ifdef CONFIG_CGROUP_DEBUG
Li Zefan761b3ef2012-01-31 13:47:36 +08005069static struct cgroup_subsys_state *debug_create(struct cgroup *cont)
Paul Menagefe693432009-09-23 15:56:20 -07005070{
5071 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
5072
5073 if (!css)
5074 return ERR_PTR(-ENOMEM);
5075
5076 return css;
5077}
5078
Li Zefan761b3ef2012-01-31 13:47:36 +08005079static void debug_destroy(struct cgroup *cont)
Paul Menagefe693432009-09-23 15:56:20 -07005080{
5081 kfree(cont->subsys[debug_subsys_id]);
5082}
5083
5084static u64 cgroup_refcount_read(struct cgroup *cont, struct cftype *cft)
5085{
5086 return atomic_read(&cont->count);
5087}
5088
5089static u64 debug_taskcount_read(struct cgroup *cont, struct cftype *cft)
5090{
5091 return cgroup_task_count(cont);
5092}
5093
5094static u64 current_css_set_read(struct cgroup *cont, struct cftype *cft)
5095{
5096 return (u64)(unsigned long)current->cgroups;
5097}
5098
5099static u64 current_css_set_refcount_read(struct cgroup *cont,
5100 struct cftype *cft)
5101{
5102 u64 count;
5103
5104 rcu_read_lock();
5105 count = atomic_read(&current->cgroups->refcount);
5106 rcu_read_unlock();
5107 return count;
5108}
5109
Paul Menage7717f7b2009-09-23 15:56:22 -07005110static int current_css_set_cg_links_read(struct cgroup *cont,
5111 struct cftype *cft,
5112 struct seq_file *seq)
5113{
5114 struct cg_cgroup_link *link;
5115 struct css_set *cg;
5116
5117 read_lock(&css_set_lock);
5118 rcu_read_lock();
5119 cg = rcu_dereference(current->cgroups);
5120 list_for_each_entry(link, &cg->cg_links, cg_link_list) {
5121 struct cgroup *c = link->cgrp;
5122 const char *name;
5123
5124 if (c->dentry)
5125 name = c->dentry->d_name.name;
5126 else
5127 name = "?";
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005128 seq_printf(seq, "Root %d group %s\n",
5129 c->root->hierarchy_id, name);
Paul Menage7717f7b2009-09-23 15:56:22 -07005130 }
5131 rcu_read_unlock();
5132 read_unlock(&css_set_lock);
5133 return 0;
5134}
5135
5136#define MAX_TASKS_SHOWN_PER_CSS 25
5137static int cgroup_css_links_read(struct cgroup *cont,
5138 struct cftype *cft,
5139 struct seq_file *seq)
5140{
5141 struct cg_cgroup_link *link;
5142
5143 read_lock(&css_set_lock);
5144 list_for_each_entry(link, &cont->css_sets, cgrp_link_list) {
5145 struct css_set *cg = link->cg;
5146 struct task_struct *task;
5147 int count = 0;
5148 seq_printf(seq, "css_set %p\n", cg);
5149 list_for_each_entry(task, &cg->tasks, cg_list) {
5150 if (count++ > MAX_TASKS_SHOWN_PER_CSS) {
5151 seq_puts(seq, " ...\n");
5152 break;
5153 } else {
5154 seq_printf(seq, " task %d\n",
5155 task_pid_vnr(task));
5156 }
5157 }
5158 }
5159 read_unlock(&css_set_lock);
5160 return 0;
5161}
5162
Paul Menagefe693432009-09-23 15:56:20 -07005163static u64 releasable_read(struct cgroup *cgrp, struct cftype *cft)
5164{
5165 return test_bit(CGRP_RELEASABLE, &cgrp->flags);
5166}
5167
5168static struct cftype debug_files[] = {
5169 {
5170 .name = "cgroup_refcount",
5171 .read_u64 = cgroup_refcount_read,
5172 },
5173 {
5174 .name = "taskcount",
5175 .read_u64 = debug_taskcount_read,
5176 },
5177
5178 {
5179 .name = "current_css_set",
5180 .read_u64 = current_css_set_read,
5181 },
5182
5183 {
5184 .name = "current_css_set_refcount",
5185 .read_u64 = current_css_set_refcount_read,
5186 },
5187
5188 {
Paul Menage7717f7b2009-09-23 15:56:22 -07005189 .name = "current_css_set_cg_links",
5190 .read_seq_string = current_css_set_cg_links_read,
5191 },
5192
5193 {
5194 .name = "cgroup_css_links",
5195 .read_seq_string = cgroup_css_links_read,
5196 },
5197
5198 {
Paul Menagefe693432009-09-23 15:56:20 -07005199 .name = "releasable",
5200 .read_u64 = releasable_read,
5201 },
5202};
5203
5204static int debug_populate(struct cgroup_subsys *ss, struct cgroup *cont)
5205{
5206 return cgroup_add_files(cont, ss, debug_files,
5207 ARRAY_SIZE(debug_files));
5208}
5209
5210struct cgroup_subsys debug_subsys = {
5211 .name = "debug",
5212 .create = debug_create,
5213 .destroy = debug_destroy,
5214 .populate = debug_populate,
5215 .subsys_id = debug_subsys_id,
5216};
5217#endif /* CONFIG_CGROUP_DEBUG */