blob: fde3633ef38993f45652ecc1eaee8d17a7992882 [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>
eparis@redhat2ce97382011-06-02 21:20:51 +100033#include <linux/init_task.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070034#include <linux/kernel.h>
35#include <linux/list.h>
36#include <linux/mm.h>
37#include <linux/mutex.h>
38#include <linux/mount.h>
39#include <linux/pagemap.h>
Paul Menagea4243162007-10-18 23:39:35 -070040#include <linux/proc_fs.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070041#include <linux/rcupdate.h>
42#include <linux/sched.h>
Paul Menage817929e2007-10-18 23:39:36 -070043#include <linux/backing-dev.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070044#include <linux/slab.h>
45#include <linux/magic.h>
46#include <linux/spinlock.h>
47#include <linux/string.h>
Paul Menagebbcb81d2007-10-18 23:39:32 -070048#include <linux/sort.h>
Paul Menage81a6a5c2007-10-18 23:39:38 -070049#include <linux/kmod.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070050#include <linux/delayacct.h>
51#include <linux/cgroupstats.h>
Li Zefan0ac801f2013-01-10 11:49:27 +080052#include <linux/hashtable.h>
Al Viro3f8206d2008-07-26 03:46:43 -040053#include <linux/namei.h>
Li Zefan096b7fe2009-07-29 15:04:04 -070054#include <linux/pid_namespace.h>
Paul Menage2c6ab6d2009-09-23 15:56:23 -070055#include <linux/idr.h>
Ben Blumd1d9fd32009-09-23 15:56:28 -070056#include <linux/vmalloc.h> /* TODO: replace with more sophisticated array */
Li Zefan081aa452013-03-13 09:17:09 +080057#include <linux/flex_array.h> /* used in cgroup_attach_task */
Mike Galbraithc4c27fb2012-04-21 09:13:46 +020058#include <linux/kthread.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070059
Arun Sharma600634972011-07-26 16:09:06 -070060#include <linux/atomic.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070061
Tejun Heoe25e2cb2011-12-12 18:12:21 -080062/*
Tejun Heob1a21362013-11-29 10:42:58 -050063 * pidlists linger the following amount before being destroyed. The goal
64 * is avoiding frequent destruction in the middle of consecutive read calls
65 * Expiring in the middle is a performance problem not a correctness one.
66 * 1 sec should be enough.
67 */
68#define CGROUP_PIDLIST_DESTROY_DELAY HZ
69
Tejun Heo8d7e6fb2014-02-11 11:52:48 -050070#define CGROUP_FILE_NAME_MAX (MAX_CGROUP_TYPE_NAMELEN + \
71 MAX_CFTYPE_NAME + 2)
72
Tejun Heob1a21362013-11-29 10:42:58 -050073/*
Tejun Heoace2bee2014-02-11 11:52:47 -050074 * cgroup_tree_mutex nests above cgroup_mutex and protects cftypes, file
75 * creation/removal and hierarchy changing operations including cgroup
76 * creation, removal, css association and controller rebinding. This outer
77 * lock is needed mainly to resolve the circular dependency between kernfs
78 * active ref and cgroup_mutex. cgroup_tree_mutex nests above both.
79 */
80static DEFINE_MUTEX(cgroup_tree_mutex);
81
82/*
Tejun Heoe25e2cb2011-12-12 18:12:21 -080083 * cgroup_mutex is the master lock. Any modification to cgroup or its
84 * hierarchy must be performed while holding it.
Tejun Heoe25e2cb2011-12-12 18:12:21 -080085 */
Tejun Heo22194492013-04-07 09:29:51 -070086#ifdef CONFIG_PROVE_RCU
87DEFINE_MUTEX(cgroup_mutex);
Tejun Heo8af01f52013-08-08 20:11:22 -040088EXPORT_SYMBOL_GPL(cgroup_mutex); /* only for lockdep */
Tejun Heo22194492013-04-07 09:29:51 -070089#else
Paul Menage81a6a5c2007-10-18 23:39:38 -070090static DEFINE_MUTEX(cgroup_mutex);
Tejun Heo22194492013-04-07 09:29:51 -070091#endif
92
Tejun Heo69e943b2014-02-08 10:36:58 -050093/*
94 * Protects cgroup_subsys->release_agent_path. Modifying it also requires
95 * cgroup_mutex. Reading requires either cgroup_mutex or this spinlock.
96 */
97static DEFINE_SPINLOCK(release_agent_path_lock);
98
Tejun Heoace2bee2014-02-11 11:52:47 -050099#define cgroup_assert_mutexes_or_rcu_locked() \
Tejun Heo87fb54f2013-12-06 15:11:55 -0500100 rcu_lockdep_assert(rcu_read_lock_held() || \
Tejun Heoace2bee2014-02-11 11:52:47 -0500101 lockdep_is_held(&cgroup_tree_mutex) || \
Tejun Heo87fb54f2013-12-06 15:11:55 -0500102 lockdep_is_held(&cgroup_mutex), \
Tejun Heoace2bee2014-02-11 11:52:47 -0500103 "cgroup_[tree_]mutex or RCU read lock required");
Tejun Heo87fb54f2013-12-06 15:11:55 -0500104
Ben Blumaae8aab2010-03-10 15:22:07 -0800105/*
Tejun Heoe5fca242013-11-22 17:14:39 -0500106 * cgroup destruction makes heavy use of work items and there can be a lot
107 * of concurrent destructions. Use a separate workqueue so that cgroup
108 * destruction work items don't end up filling up max_active of system_wq
109 * which may lead to deadlock.
110 */
111static struct workqueue_struct *cgroup_destroy_wq;
112
113/*
Tejun Heob1a21362013-11-29 10:42:58 -0500114 * pidlist destructions need to be flushed on cgroup destruction. Use a
115 * separate workqueue as flush domain.
116 */
117static struct workqueue_struct *cgroup_pidlist_destroy_wq;
118
Tejun Heo3ed80a62014-02-08 10:36:58 -0500119/* generate an array of cgroup subsystem pointers */
Tejun Heo073219e2014-02-08 10:36:58 -0500120#define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys,
Tejun Heo3ed80a62014-02-08 10:36:58 -0500121static struct cgroup_subsys *cgroup_subsys[] = {
Paul Menageddbcc7e2007-10-18 23:39:30 -0700122#include <linux/cgroup_subsys.h>
123};
Tejun Heo073219e2014-02-08 10:36:58 -0500124#undef SUBSYS
125
126/* array of cgroup subsystem names */
127#define SUBSYS(_x) [_x ## _cgrp_id] = #_x,
128static const char *cgroup_subsys_name[] = {
129#include <linux/cgroup_subsys.h>
130};
131#undef SUBSYS
Paul Menageddbcc7e2007-10-18 23:39:30 -0700132
Paul Menageddbcc7e2007-10-18 23:39:30 -0700133/*
Tejun Heo9871bf92013-06-24 15:21:47 -0700134 * The dummy hierarchy, reserved for the subsystems that are otherwise
135 * unattached - it never has more than a single cgroup, and all tasks are
136 * part of that cgroup.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700137 */
Tejun Heo9871bf92013-06-24 15:21:47 -0700138static struct cgroupfs_root cgroup_dummy_root;
139
140/* dummy_top is a shorthand for the dummy hierarchy's top cgroup */
141static struct cgroup * const cgroup_dummy_top = &cgroup_dummy_root.top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700142
143/* The list of hierarchy roots */
144
Tejun Heo9871bf92013-06-24 15:21:47 -0700145static LIST_HEAD(cgroup_roots);
146static int cgroup_root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700147
Tejun Heo3417ae12014-02-08 10:37:01 -0500148/* hierarchy ID allocation and mapping, protected by cgroup_mutex */
Tejun Heo1a574232013-04-14 11:36:58 -0700149static DEFINE_IDR(cgroup_hierarchy_idr);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700150
Li Zefan65dff752013-03-01 15:01:56 +0800151static struct cgroup_name root_cgroup_name = { .name = "/" };
152
Li Zefan794611a2013-06-18 18:53:53 +0800153/*
154 * Assign a monotonically increasing serial number to cgroups. It
155 * guarantees cgroups with bigger numbers are newer than those with smaller
156 * numbers. Also, as cgroups are always appended to the parent's
157 * ->children list, it guarantees that sibling cgroups are always sorted in
Tejun Heo00356bd2013-06-18 11:14:22 -0700158 * the ascending serial number order on the list. Protected by
159 * cgroup_mutex.
Li Zefan794611a2013-06-18 18:53:53 +0800160 */
Tejun Heo00356bd2013-06-18 11:14:22 -0700161static u64 cgroup_serial_nr_next = 1;
Li Zefan794611a2013-06-18 18:53:53 +0800162
Paul Menageddbcc7e2007-10-18 23:39:30 -0700163/* This flag indicates whether tasks in the fork and exit paths should
Li Zefana043e3b2008-02-23 15:24:09 -0800164 * check for fork/exit handlers to call. This avoids us having to do
165 * extra work in the fork/exit path if none of the subsystems need to
166 * be called.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700167 */
Li Zefan8947f9d2008-07-25 01:46:56 -0700168static int need_forkexit_callback __read_mostly;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700169
Tejun Heo628f7cd2013-06-28 16:24:11 -0700170static struct cftype cgroup_base_files[];
171
Tejun Heof20104d2013-08-13 20:22:50 -0400172static void cgroup_destroy_css_killed(struct cgroup *cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -0800173static int cgroup_destroy_locked(struct cgroup *cgrp);
Tejun Heo2bb566c2013-08-08 20:11:23 -0400174static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
175 bool is_add);
Tejun Heoe605b362013-11-27 18:16:21 -0500176static int cgroup_file_release(struct inode *inode, struct file *file);
Tejun Heob1a21362013-11-29 10:42:58 -0500177static void cgroup_pidlist_destroy_all(struct cgroup *cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -0800178
Tejun Heo95109b62013-08-08 20:11:27 -0400179/**
180 * cgroup_css - obtain a cgroup's css for the specified subsystem
181 * @cgrp: the cgroup of interest
Tejun Heoca8bdca2013-08-26 18:40:56 -0400182 * @ss: the subsystem of interest (%NULL returns the dummy_css)
Tejun Heo95109b62013-08-08 20:11:27 -0400183 *
Tejun Heoca8bdca2013-08-26 18:40:56 -0400184 * Return @cgrp's css (cgroup_subsys_state) associated with @ss. This
185 * function must be called either under cgroup_mutex or rcu_read_lock() and
186 * the caller is responsible for pinning the returned css if it wants to
187 * keep accessing it outside the said locks. This function may return
188 * %NULL if @cgrp doesn't have @subsys_id enabled.
Tejun Heo95109b62013-08-08 20:11:27 -0400189 */
190static struct cgroup_subsys_state *cgroup_css(struct cgroup *cgrp,
Tejun Heoca8bdca2013-08-26 18:40:56 -0400191 struct cgroup_subsys *ss)
Tejun Heo95109b62013-08-08 20:11:27 -0400192{
Tejun Heoca8bdca2013-08-26 18:40:56 -0400193 if (ss)
Tejun Heoaec25022014-02-08 10:36:58 -0500194 return rcu_dereference_check(cgrp->subsys[ss->id],
Tejun Heoace2bee2014-02-11 11:52:47 -0500195 lockdep_is_held(&cgroup_tree_mutex) ||
196 lockdep_is_held(&cgroup_mutex));
Tejun Heoca8bdca2013-08-26 18:40:56 -0400197 else
198 return &cgrp->dummy_css;
Tejun Heo95109b62013-08-08 20:11:27 -0400199}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700200
Paul Menageddbcc7e2007-10-18 23:39:30 -0700201/* convenient tests for these bits */
Tejun Heo54766d42013-06-12 21:04:53 -0700202static inline bool cgroup_is_dead(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700203{
Tejun Heo54766d42013-06-12 21:04:53 -0700204 return test_bit(CGRP_DEAD, &cgrp->flags);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700205}
206
Li Zefan78574cf2013-04-08 19:00:38 -0700207/**
208 * cgroup_is_descendant - test ancestry
209 * @cgrp: the cgroup to be tested
210 * @ancestor: possible ancestor of @cgrp
211 *
212 * Test whether @cgrp is a descendant of @ancestor. It also returns %true
213 * if @cgrp == @ancestor. This function is safe to call as long as @cgrp
214 * and @ancestor are accessible.
215 */
216bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor)
217{
218 while (cgrp) {
219 if (cgrp == ancestor)
220 return true;
221 cgrp = cgrp->parent;
222 }
223 return false;
224}
225EXPORT_SYMBOL_GPL(cgroup_is_descendant);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700226
Adrian Bunke9685a02008-02-07 00:13:46 -0800227static int cgroup_is_releasable(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700228{
229 const int bits =
Paul Menagebd89aab2007-10-18 23:40:44 -0700230 (1 << CGRP_RELEASABLE) |
231 (1 << CGRP_NOTIFY_ON_RELEASE);
232 return (cgrp->flags & bits) == bits;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700233}
234
Adrian Bunke9685a02008-02-07 00:13:46 -0800235static int notify_on_release(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700236{
Paul Menagebd89aab2007-10-18 23:40:44 -0700237 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700238}
239
Tejun Heo30159ec2013-06-25 11:53:37 -0700240/**
Tejun Heo1c6727a2013-12-06 15:11:56 -0500241 * for_each_css - iterate all css's of a cgroup
242 * @css: the iteration cursor
243 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
244 * @cgrp: the target cgroup to iterate css's of
Tejun Heo30159ec2013-06-25 11:53:37 -0700245 *
246 * Should be called under cgroup_mutex.
247 */
Tejun Heo1c6727a2013-12-06 15:11:56 -0500248#define for_each_css(css, ssid, cgrp) \
249 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
250 if (!((css) = rcu_dereference_check( \
251 (cgrp)->subsys[(ssid)], \
Tejun Heoace2bee2014-02-11 11:52:47 -0500252 lockdep_is_held(&cgroup_tree_mutex) || \
Tejun Heo1c6727a2013-12-06 15:11:56 -0500253 lockdep_is_held(&cgroup_mutex)))) { } \
254 else
255
256/**
Tejun Heo3ed80a62014-02-08 10:36:58 -0500257 * for_each_subsys - iterate all enabled cgroup subsystems
Tejun Heo30159ec2013-06-25 11:53:37 -0700258 * @ss: the iteration cursor
Tejun Heo780cd8b2013-12-06 15:11:56 -0500259 * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end
Tejun Heo30159ec2013-06-25 11:53:37 -0700260 */
Tejun Heo780cd8b2013-12-06 15:11:56 -0500261#define for_each_subsys(ss, ssid) \
Tejun Heo3ed80a62014-02-08 10:36:58 -0500262 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT && \
263 (((ss) = cgroup_subsys[ssid]) || true); (ssid)++)
Tejun Heo30159ec2013-06-25 11:53:37 -0700264
Tejun Heo5549c492013-06-24 15:21:48 -0700265/* iterate across the active hierarchies */
266#define for_each_active_root(root) \
267 list_for_each_entry((root), &cgroup_roots, root_list)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700268
Tejun Heof6ea9372012-04-01 12:09:55 -0700269static inline struct cgroup *__d_cgrp(struct dentry *dentry)
270{
271 return dentry->d_fsdata;
272}
273
Tejun Heo05ef1d72012-04-01 12:09:56 -0700274static inline struct cfent *__d_cfe(struct dentry *dentry)
Tejun Heof6ea9372012-04-01 12:09:55 -0700275{
276 return dentry->d_fsdata;
277}
278
Tejun Heo05ef1d72012-04-01 12:09:56 -0700279static inline struct cftype *__d_cft(struct dentry *dentry)
280{
281 return __d_cfe(dentry)->type;
282}
283
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700284/**
285 * cgroup_lock_live_group - take cgroup_mutex and check that cgrp is alive.
286 * @cgrp: the cgroup to be checked for liveness
287 *
Tejun Heo47cfcd02013-04-07 09:29:51 -0700288 * On success, returns true; the mutex should be later unlocked. On
289 * failure returns false with no lock held.
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700290 */
Tejun Heob9777cf2013-04-07 09:29:51 -0700291static bool cgroup_lock_live_group(struct cgroup *cgrp)
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700292{
293 mutex_lock(&cgroup_mutex);
Tejun Heo54766d42013-06-12 21:04:53 -0700294 if (cgroup_is_dead(cgrp)) {
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700295 mutex_unlock(&cgroup_mutex);
296 return false;
297 }
298 return true;
299}
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700300
Paul Menage81a6a5c2007-10-18 23:39:38 -0700301/* the list of cgroups eligible for automatic release. Protected by
302 * release_list_lock */
303static LIST_HEAD(release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +0200304static DEFINE_RAW_SPINLOCK(release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700305static void cgroup_release_agent(struct work_struct *work);
306static DECLARE_WORK(release_agent_work, cgroup_release_agent);
Paul Menagebd89aab2007-10-18 23:40:44 -0700307static void check_for_release(struct cgroup *cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700308
Tejun Heo69d02062013-06-12 21:04:50 -0700309/*
310 * A cgroup can be associated with multiple css_sets as different tasks may
311 * belong to different cgroups on different hierarchies. In the other
312 * direction, a css_set is naturally associated with multiple cgroups.
313 * This M:N relationship is represented by the following link structure
314 * which exists for each association and allows traversing the associations
315 * from both sides.
316 */
317struct cgrp_cset_link {
318 /* the cgroup and css_set this link associates */
319 struct cgroup *cgrp;
320 struct css_set *cset;
321
322 /* list of cgrp_cset_links anchored at cgrp->cset_links */
323 struct list_head cset_link;
324
325 /* list of cgrp_cset_links anchored at css_set->cgrp_links */
326 struct list_head cgrp_link;
Paul Menage817929e2007-10-18 23:39:36 -0700327};
328
329/* The default css_set - used by init and its children prior to any
330 * hierarchies being mounted. It contains a pointer to the root state
331 * for each subsystem. Also used to anchor the list of css_sets. Not
332 * reference-counted, to improve performance when child cgroups
333 * haven't been created.
334 */
335
336static struct css_set init_css_set;
Tejun Heo69d02062013-06-12 21:04:50 -0700337static struct cgrp_cset_link init_cgrp_cset_link;
Paul Menage817929e2007-10-18 23:39:36 -0700338
Tejun Heo0942eee2013-08-08 20:11:26 -0400339/*
340 * css_set_lock protects the list of css_set objects, and the chain of
341 * tasks off each css_set. Nests outside task->alloc_lock due to
Tejun Heo72ec7022013-08-08 20:11:26 -0400342 * css_task_iter_start().
Tejun Heo0942eee2013-08-08 20:11:26 -0400343 */
Paul Menage817929e2007-10-18 23:39:36 -0700344static DEFINE_RWLOCK(css_set_lock);
345static int css_set_count;
346
Paul Menage7717f7b2009-09-23 15:56:22 -0700347/*
348 * hash table for cgroup groups. This improves the performance to find
349 * an existing css_set. This hash doesn't (currently) take into
350 * account cgroups in empty hierarchies.
351 */
Li Zefan472b1052008-04-29 01:00:11 -0700352#define CSS_SET_HASH_BITS 7
Li Zefan0ac801f2013-01-10 11:49:27 +0800353static DEFINE_HASHTABLE(css_set_table, CSS_SET_HASH_BITS);
Li Zefan472b1052008-04-29 01:00:11 -0700354
Li Zefan0ac801f2013-01-10 11:49:27 +0800355static unsigned long css_set_hash(struct cgroup_subsys_state *css[])
Li Zefan472b1052008-04-29 01:00:11 -0700356{
Li Zefan0ac801f2013-01-10 11:49:27 +0800357 unsigned long key = 0UL;
Tejun Heo30159ec2013-06-25 11:53:37 -0700358 struct cgroup_subsys *ss;
359 int i;
Li Zefan472b1052008-04-29 01:00:11 -0700360
Tejun Heo30159ec2013-06-25 11:53:37 -0700361 for_each_subsys(ss, i)
Li Zefan0ac801f2013-01-10 11:49:27 +0800362 key += (unsigned long)css[i];
363 key = (key >> 16) ^ key;
Li Zefan472b1052008-04-29 01:00:11 -0700364
Li Zefan0ac801f2013-01-10 11:49:27 +0800365 return key;
Li Zefan472b1052008-04-29 01:00:11 -0700366}
367
Tejun Heo0942eee2013-08-08 20:11:26 -0400368/*
369 * We don't maintain the lists running through each css_set to its task
Tejun Heo72ec7022013-08-08 20:11:26 -0400370 * until after the first call to css_task_iter_start(). This reduces the
371 * fork()/exit() overhead for people who have cgroups compiled into their
372 * kernel but not actually in use.
Tejun Heo0942eee2013-08-08 20:11:26 -0400373 */
Li Zefan8947f9d2008-07-25 01:46:56 -0700374static int use_task_css_set_links __read_mostly;
Paul Menage817929e2007-10-18 23:39:36 -0700375
Tejun Heo5abb8852013-06-12 21:04:49 -0700376static void __put_css_set(struct css_set *cset, int taskexit)
Paul Menageb4f48b62007-10-18 23:39:33 -0700377{
Tejun Heo69d02062013-06-12 21:04:50 -0700378 struct cgrp_cset_link *link, *tmp_link;
Tejun Heo5abb8852013-06-12 21:04:49 -0700379
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700380 /*
381 * Ensure that the refcount doesn't hit zero while any readers
382 * can see it. Similar to atomic_dec_and_lock(), but for an
383 * rwlock
384 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700385 if (atomic_add_unless(&cset->refcount, -1, 1))
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700386 return;
387 write_lock(&css_set_lock);
Tejun Heo5abb8852013-06-12 21:04:49 -0700388 if (!atomic_dec_and_test(&cset->refcount)) {
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700389 write_unlock(&css_set_lock);
390 return;
391 }
Paul Menage81a6a5c2007-10-18 23:39:38 -0700392
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700393 /* This css_set is dead. unlink it and release cgroup refcounts */
Tejun Heo5abb8852013-06-12 21:04:49 -0700394 hash_del(&cset->hlist);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700395 css_set_count--;
396
Tejun Heo69d02062013-06-12 21:04:50 -0700397 list_for_each_entry_safe(link, tmp_link, &cset->cgrp_links, cgrp_link) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700398 struct cgroup *cgrp = link->cgrp;
Tejun Heo5abb8852013-06-12 21:04:49 -0700399
Tejun Heo69d02062013-06-12 21:04:50 -0700400 list_del(&link->cset_link);
401 list_del(&link->cgrp_link);
Li Zefan71b57072013-01-24 14:43:28 +0800402
Tejun Heoddd69142013-06-12 21:04:54 -0700403 /* @cgrp can't go away while we're holding css_set_lock */
Tejun Heo6f3d828f02013-06-12 21:04:55 -0700404 if (list_empty(&cgrp->cset_links) && notify_on_release(cgrp)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -0700405 if (taskexit)
Paul Menagebd89aab2007-10-18 23:40:44 -0700406 set_bit(CGRP_RELEASABLE, &cgrp->flags);
407 check_for_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700408 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700409
410 kfree(link);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700411 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700412
413 write_unlock(&css_set_lock);
Tejun Heo5abb8852013-06-12 21:04:49 -0700414 kfree_rcu(cset, rcu_head);
Paul Menage817929e2007-10-18 23:39:36 -0700415}
416
417/*
418 * refcounted get/put for css_set objects
419 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700420static inline void get_css_set(struct css_set *cset)
Paul Menage817929e2007-10-18 23:39:36 -0700421{
Tejun Heo5abb8852013-06-12 21:04:49 -0700422 atomic_inc(&cset->refcount);
Paul Menage817929e2007-10-18 23:39:36 -0700423}
424
Tejun Heo5abb8852013-06-12 21:04:49 -0700425static inline void put_css_set(struct css_set *cset)
Paul Menage817929e2007-10-18 23:39:36 -0700426{
Tejun Heo5abb8852013-06-12 21:04:49 -0700427 __put_css_set(cset, 0);
Paul Menage817929e2007-10-18 23:39:36 -0700428}
429
Tejun Heo5abb8852013-06-12 21:04:49 -0700430static inline void put_css_set_taskexit(struct css_set *cset)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700431{
Tejun Heo5abb8852013-06-12 21:04:49 -0700432 __put_css_set(cset, 1);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700433}
434
Tejun Heob326f9d2013-06-24 15:21:48 -0700435/**
Paul Menage7717f7b2009-09-23 15:56:22 -0700436 * compare_css_sets - helper function for find_existing_css_set().
Tejun Heo5abb8852013-06-12 21:04:49 -0700437 * @cset: candidate css_set being tested
438 * @old_cset: existing css_set for a task
Paul Menage7717f7b2009-09-23 15:56:22 -0700439 * @new_cgrp: cgroup that's being entered by the task
440 * @template: desired set of css pointers in css_set (pre-calculated)
441 *
Li Zefan6f4b7e62013-07-31 16:18:36 +0800442 * Returns true if "cset" matches "old_cset" except for the hierarchy
Paul Menage7717f7b2009-09-23 15:56:22 -0700443 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
444 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700445static bool compare_css_sets(struct css_set *cset,
446 struct css_set *old_cset,
Paul Menage7717f7b2009-09-23 15:56:22 -0700447 struct cgroup *new_cgrp,
448 struct cgroup_subsys_state *template[])
449{
450 struct list_head *l1, *l2;
451
Tejun Heo5abb8852013-06-12 21:04:49 -0700452 if (memcmp(template, cset->subsys, sizeof(cset->subsys))) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700453 /* Not all subsystems matched */
454 return false;
455 }
456
457 /*
458 * Compare cgroup pointers in order to distinguish between
459 * different cgroups in heirarchies with no subsystems. We
460 * could get by with just this check alone (and skip the
461 * memcmp above) but on most setups the memcmp check will
462 * avoid the need for this more expensive check on almost all
463 * candidates.
464 */
465
Tejun Heo69d02062013-06-12 21:04:50 -0700466 l1 = &cset->cgrp_links;
467 l2 = &old_cset->cgrp_links;
Paul Menage7717f7b2009-09-23 15:56:22 -0700468 while (1) {
Tejun Heo69d02062013-06-12 21:04:50 -0700469 struct cgrp_cset_link *link1, *link2;
Tejun Heo5abb8852013-06-12 21:04:49 -0700470 struct cgroup *cgrp1, *cgrp2;
Paul Menage7717f7b2009-09-23 15:56:22 -0700471
472 l1 = l1->next;
473 l2 = l2->next;
474 /* See if we reached the end - both lists are equal length. */
Tejun Heo69d02062013-06-12 21:04:50 -0700475 if (l1 == &cset->cgrp_links) {
476 BUG_ON(l2 != &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700477 break;
478 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700479 BUG_ON(l2 == &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700480 }
481 /* Locate the cgroups associated with these links. */
Tejun Heo69d02062013-06-12 21:04:50 -0700482 link1 = list_entry(l1, struct cgrp_cset_link, cgrp_link);
483 link2 = list_entry(l2, struct cgrp_cset_link, cgrp_link);
484 cgrp1 = link1->cgrp;
485 cgrp2 = link2->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700486 /* Hierarchies should be linked in the same order. */
Tejun Heo5abb8852013-06-12 21:04:49 -0700487 BUG_ON(cgrp1->root != cgrp2->root);
Paul Menage7717f7b2009-09-23 15:56:22 -0700488
489 /*
490 * If this hierarchy is the hierarchy of the cgroup
491 * that's changing, then we need to check that this
492 * css_set points to the new cgroup; if it's any other
493 * hierarchy, then this css_set should point to the
494 * same cgroup as the old css_set.
495 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700496 if (cgrp1->root == new_cgrp->root) {
497 if (cgrp1 != new_cgrp)
Paul Menage7717f7b2009-09-23 15:56:22 -0700498 return false;
499 } else {
Tejun Heo5abb8852013-06-12 21:04:49 -0700500 if (cgrp1 != cgrp2)
Paul Menage7717f7b2009-09-23 15:56:22 -0700501 return false;
502 }
503 }
504 return true;
505}
506
Tejun Heob326f9d2013-06-24 15:21:48 -0700507/**
508 * find_existing_css_set - init css array and find the matching css_set
509 * @old_cset: the css_set that we're using before the cgroup transition
510 * @cgrp: the cgroup that we're moving into
511 * @template: out param for the new set of csses, should be clear on entry
Paul Menage817929e2007-10-18 23:39:36 -0700512 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700513static struct css_set *find_existing_css_set(struct css_set *old_cset,
514 struct cgroup *cgrp,
515 struct cgroup_subsys_state *template[])
Paul Menage817929e2007-10-18 23:39:36 -0700516{
Paul Menagebd89aab2007-10-18 23:40:44 -0700517 struct cgroupfs_root *root = cgrp->root;
Tejun Heo30159ec2013-06-25 11:53:37 -0700518 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -0700519 struct css_set *cset;
Li Zefan0ac801f2013-01-10 11:49:27 +0800520 unsigned long key;
Tejun Heob326f9d2013-06-24 15:21:48 -0700521 int i;
Paul Menage817929e2007-10-18 23:39:36 -0700522
Ben Blumaae8aab2010-03-10 15:22:07 -0800523 /*
524 * Build the set of subsystem state objects that we want to see in the
525 * new css_set. while subsystems can change globally, the entries here
526 * won't change, so no need for locking.
527 */
Tejun Heo30159ec2013-06-25 11:53:37 -0700528 for_each_subsys(ss, i) {
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -0400529 if (root->subsys_mask & (1UL << i)) {
Paul Menage817929e2007-10-18 23:39:36 -0700530 /* Subsystem is in this hierarchy. So we want
531 * the subsystem state from the new
532 * cgroup */
Tejun Heoca8bdca2013-08-26 18:40:56 -0400533 template[i] = cgroup_css(cgrp, ss);
Paul Menage817929e2007-10-18 23:39:36 -0700534 } else {
535 /* Subsystem is not in this hierarchy, so we
536 * don't want to change the subsystem state */
Tejun Heo5abb8852013-06-12 21:04:49 -0700537 template[i] = old_cset->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700538 }
539 }
540
Li Zefan0ac801f2013-01-10 11:49:27 +0800541 key = css_set_hash(template);
Tejun Heo5abb8852013-06-12 21:04:49 -0700542 hash_for_each_possible(css_set_table, cset, hlist, key) {
543 if (!compare_css_sets(cset, old_cset, cgrp, template))
Paul Menage7717f7b2009-09-23 15:56:22 -0700544 continue;
545
546 /* This css_set matches what we need */
Tejun Heo5abb8852013-06-12 21:04:49 -0700547 return cset;
Li Zefan472b1052008-04-29 01:00:11 -0700548 }
Paul Menage817929e2007-10-18 23:39:36 -0700549
550 /* No existing cgroup group matched */
551 return NULL;
552}
553
Tejun Heo69d02062013-06-12 21:04:50 -0700554static void free_cgrp_cset_links(struct list_head *links_to_free)
Paul Menage817929e2007-10-18 23:39:36 -0700555{
Tejun Heo69d02062013-06-12 21:04:50 -0700556 struct cgrp_cset_link *link, *tmp_link;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700557
Tejun Heo69d02062013-06-12 21:04:50 -0700558 list_for_each_entry_safe(link, tmp_link, links_to_free, cset_link) {
559 list_del(&link->cset_link);
Paul Menage817929e2007-10-18 23:39:36 -0700560 kfree(link);
561 }
562}
563
Tejun Heo69d02062013-06-12 21:04:50 -0700564/**
565 * allocate_cgrp_cset_links - allocate cgrp_cset_links
566 * @count: the number of links to allocate
567 * @tmp_links: list_head the allocated links are put on
568 *
569 * Allocate @count cgrp_cset_link structures and chain them on @tmp_links
570 * through ->cset_link. Returns 0 on success or -errno.
Li Zefan36553432008-07-29 22:33:19 -0700571 */
Tejun Heo69d02062013-06-12 21:04:50 -0700572static int allocate_cgrp_cset_links(int count, struct list_head *tmp_links)
Li Zefan36553432008-07-29 22:33:19 -0700573{
Tejun Heo69d02062013-06-12 21:04:50 -0700574 struct cgrp_cset_link *link;
Li Zefan36553432008-07-29 22:33:19 -0700575 int i;
Tejun Heo69d02062013-06-12 21:04:50 -0700576
577 INIT_LIST_HEAD(tmp_links);
578
Li Zefan36553432008-07-29 22:33:19 -0700579 for (i = 0; i < count; i++) {
Tejun Heof4f4be22013-06-12 21:04:51 -0700580 link = kzalloc(sizeof(*link), GFP_KERNEL);
Li Zefan36553432008-07-29 22:33:19 -0700581 if (!link) {
Tejun Heo69d02062013-06-12 21:04:50 -0700582 free_cgrp_cset_links(tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700583 return -ENOMEM;
584 }
Tejun Heo69d02062013-06-12 21:04:50 -0700585 list_add(&link->cset_link, tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700586 }
587 return 0;
588}
589
Li Zefanc12f65d2009-01-07 18:07:42 -0800590/**
591 * link_css_set - a helper function to link a css_set to a cgroup
Tejun Heo69d02062013-06-12 21:04:50 -0700592 * @tmp_links: cgrp_cset_link objects allocated by allocate_cgrp_cset_links()
Tejun Heo5abb8852013-06-12 21:04:49 -0700593 * @cset: the css_set to be linked
Li Zefanc12f65d2009-01-07 18:07:42 -0800594 * @cgrp: the destination cgroup
595 */
Tejun Heo69d02062013-06-12 21:04:50 -0700596static void link_css_set(struct list_head *tmp_links, struct css_set *cset,
597 struct cgroup *cgrp)
Li Zefanc12f65d2009-01-07 18:07:42 -0800598{
Tejun Heo69d02062013-06-12 21:04:50 -0700599 struct cgrp_cset_link *link;
Li Zefanc12f65d2009-01-07 18:07:42 -0800600
Tejun Heo69d02062013-06-12 21:04:50 -0700601 BUG_ON(list_empty(tmp_links));
602 link = list_first_entry(tmp_links, struct cgrp_cset_link, cset_link);
603 link->cset = cset;
Paul Menage7717f7b2009-09-23 15:56:22 -0700604 link->cgrp = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700605 list_move(&link->cset_link, &cgrp->cset_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700606 /*
607 * Always add links to the tail of the list so that the list
608 * is sorted by order of hierarchy creation
609 */
Tejun Heo69d02062013-06-12 21:04:50 -0700610 list_add_tail(&link->cgrp_link, &cset->cgrp_links);
Li Zefanc12f65d2009-01-07 18:07:42 -0800611}
612
Tejun Heob326f9d2013-06-24 15:21:48 -0700613/**
614 * find_css_set - return a new css_set with one cgroup updated
615 * @old_cset: the baseline css_set
616 * @cgrp: the cgroup to be updated
617 *
618 * Return a new css_set that's equivalent to @old_cset, but with @cgrp
619 * substituted into the appropriate hierarchy.
Paul Menage817929e2007-10-18 23:39:36 -0700620 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700621static struct css_set *find_css_set(struct css_set *old_cset,
622 struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700623{
Tejun Heob326f9d2013-06-24 15:21:48 -0700624 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT] = { };
Tejun Heo5abb8852013-06-12 21:04:49 -0700625 struct css_set *cset;
Tejun Heo69d02062013-06-12 21:04:50 -0700626 struct list_head tmp_links;
627 struct cgrp_cset_link *link;
Li Zefan0ac801f2013-01-10 11:49:27 +0800628 unsigned long key;
Li Zefan472b1052008-04-29 01:00:11 -0700629
Tejun Heob326f9d2013-06-24 15:21:48 -0700630 lockdep_assert_held(&cgroup_mutex);
631
Paul Menage817929e2007-10-18 23:39:36 -0700632 /* First see if we already have a cgroup group that matches
633 * the desired set */
Li Zefan7e9abd82008-07-25 01:46:54 -0700634 read_lock(&css_set_lock);
Tejun Heo5abb8852013-06-12 21:04:49 -0700635 cset = find_existing_css_set(old_cset, cgrp, template);
636 if (cset)
637 get_css_set(cset);
Li Zefan7e9abd82008-07-25 01:46:54 -0700638 read_unlock(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -0700639
Tejun Heo5abb8852013-06-12 21:04:49 -0700640 if (cset)
641 return cset;
Paul Menage817929e2007-10-18 23:39:36 -0700642
Tejun Heof4f4be22013-06-12 21:04:51 -0700643 cset = kzalloc(sizeof(*cset), GFP_KERNEL);
Tejun Heo5abb8852013-06-12 21:04:49 -0700644 if (!cset)
Paul Menage817929e2007-10-18 23:39:36 -0700645 return NULL;
646
Tejun Heo69d02062013-06-12 21:04:50 -0700647 /* Allocate all the cgrp_cset_link objects that we'll need */
Tejun Heo9871bf92013-06-24 15:21:47 -0700648 if (allocate_cgrp_cset_links(cgroup_root_count, &tmp_links) < 0) {
Tejun Heo5abb8852013-06-12 21:04:49 -0700649 kfree(cset);
Paul Menage817929e2007-10-18 23:39:36 -0700650 return NULL;
651 }
652
Tejun Heo5abb8852013-06-12 21:04:49 -0700653 atomic_set(&cset->refcount, 1);
Tejun Heo69d02062013-06-12 21:04:50 -0700654 INIT_LIST_HEAD(&cset->cgrp_links);
Tejun Heo5abb8852013-06-12 21:04:49 -0700655 INIT_LIST_HEAD(&cset->tasks);
656 INIT_HLIST_NODE(&cset->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700657
658 /* Copy the set of subsystem state objects generated in
659 * find_existing_css_set() */
Tejun Heo5abb8852013-06-12 21:04:49 -0700660 memcpy(cset->subsys, template, sizeof(cset->subsys));
Paul Menage817929e2007-10-18 23:39:36 -0700661
662 write_lock(&css_set_lock);
663 /* Add reference counts and links from the new css_set. */
Tejun Heo69d02062013-06-12 21:04:50 -0700664 list_for_each_entry(link, &old_cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700665 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700666
Paul Menage7717f7b2009-09-23 15:56:22 -0700667 if (c->root == cgrp->root)
668 c = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700669 link_css_set(&tmp_links, cset, c);
Paul Menage7717f7b2009-09-23 15:56:22 -0700670 }
Paul Menage817929e2007-10-18 23:39:36 -0700671
Tejun Heo69d02062013-06-12 21:04:50 -0700672 BUG_ON(!list_empty(&tmp_links));
Paul Menage817929e2007-10-18 23:39:36 -0700673
Paul Menage817929e2007-10-18 23:39:36 -0700674 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -0700675
676 /* Add this cgroup group to the hash table */
Tejun Heo5abb8852013-06-12 21:04:49 -0700677 key = css_set_hash(cset->subsys);
678 hash_add(css_set_table, &cset->hlist, key);
Li Zefan472b1052008-04-29 01:00:11 -0700679
Paul Menage817929e2007-10-18 23:39:36 -0700680 write_unlock(&css_set_lock);
681
Tejun Heo5abb8852013-06-12 21:04:49 -0700682 return cset;
Paul Menageb4f48b62007-10-18 23:39:33 -0700683}
684
Paul Menageddbcc7e2007-10-18 23:39:30 -0700685/*
Paul Menage7717f7b2009-09-23 15:56:22 -0700686 * Return the cgroup for "task" from the given hierarchy. Must be
687 * called with cgroup_mutex held.
688 */
689static struct cgroup *task_cgroup_from_root(struct task_struct *task,
690 struct cgroupfs_root *root)
691{
Tejun Heo5abb8852013-06-12 21:04:49 -0700692 struct css_set *cset;
Paul Menage7717f7b2009-09-23 15:56:22 -0700693 struct cgroup *res = NULL;
694
695 BUG_ON(!mutex_is_locked(&cgroup_mutex));
696 read_lock(&css_set_lock);
697 /*
698 * No need to lock the task - since we hold cgroup_mutex the
699 * task can't change groups, so the only thing that can happen
700 * is that it exits and its css is set back to init_css_set.
701 */
Tejun Heoa8ad8052013-06-21 15:52:04 -0700702 cset = task_css_set(task);
Tejun Heo5abb8852013-06-12 21:04:49 -0700703 if (cset == &init_css_set) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700704 res = &root->top_cgroup;
705 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700706 struct cgrp_cset_link *link;
707
708 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700709 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700710
Paul Menage7717f7b2009-09-23 15:56:22 -0700711 if (c->root == root) {
712 res = c;
713 break;
714 }
715 }
716 }
717 read_unlock(&css_set_lock);
718 BUG_ON(!res);
719 return res;
720}
721
722/*
Paul Menageddbcc7e2007-10-18 23:39:30 -0700723 * There is one global cgroup mutex. We also require taking
724 * task_lock() when dereferencing a task's cgroup subsys pointers.
725 * See "The task_lock() exception", at the end of this comment.
726 *
727 * A task must hold cgroup_mutex to modify cgroups.
728 *
729 * Any task can increment and decrement the count field without lock.
730 * So in general, code holding cgroup_mutex can't rely on the count
731 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -0800732 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -0700733 * means that no tasks are currently attached, therefore there is no
734 * way a task attached to that cgroup can fork (the other way to
735 * increment the count). So code holding cgroup_mutex can safely
736 * assume that if the count is zero, it will stay zero. Similarly, if
737 * a task holds cgroup_mutex on a cgroup with zero count, it
738 * knows that the cgroup won't be removed, as cgroup_rmdir()
739 * needs that mutex.
740 *
Paul Menageddbcc7e2007-10-18 23:39:30 -0700741 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
742 * (usually) take cgroup_mutex. These are the two most performance
743 * critical pieces of code here. The exception occurs on cgroup_exit(),
744 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
745 * is taken, and if the cgroup count is zero, a usermode call made
Li Zefana043e3b2008-02-23 15:24:09 -0800746 * to the release agent with the name of the cgroup (path relative to
747 * the root of cgroup file system) as the argument.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700748 *
749 * A cgroup can only be deleted if both its 'count' of using tasks
750 * is zero, and its list of 'children' cgroups is empty. Since all
751 * tasks in the system use _some_ cgroup, and since there is always at
752 * least one task in the system (init, pid == 1), therefore, top_cgroup
753 * always has either children cgroups and/or using tasks. So we don't
754 * need a special hack to ensure that top_cgroup cannot be deleted.
755 *
756 * The task_lock() exception
757 *
758 * The need for this exception arises from the action of
Tao Mad0b2fdd2012-11-20 22:06:18 +0800759 * cgroup_attach_task(), which overwrites one task's cgroup pointer with
Li Zefana043e3b2008-02-23 15:24:09 -0800760 * another. It does so using cgroup_mutex, however there are
Paul Menageddbcc7e2007-10-18 23:39:30 -0700761 * several performance critical places that need to reference
762 * task->cgroup without the expense of grabbing a system global
763 * mutex. Therefore except as noted below, when dereferencing or, as
Tao Mad0b2fdd2012-11-20 22:06:18 +0800764 * in cgroup_attach_task(), modifying a task's cgroup pointer we use
Paul Menageddbcc7e2007-10-18 23:39:30 -0700765 * task_lock(), which acts on a spinlock (task->alloc_lock) already in
766 * the task_struct routinely used for such matters.
767 *
768 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -0800769 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700770 */
771
Paul Menageddbcc7e2007-10-18 23:39:30 -0700772/*
773 * A couple of forward declarations required, due to cyclic reference loop:
774 * cgroup_mkdir -> cgroup_create -> cgroup_populate_dir ->
775 * cgroup_add_file -> cgroup_create_file -> cgroup_dir_inode_operations
776 * -> cgroup_mkdir.
777 */
778
Al Viro18bb1db2011-07-26 01:41:39 -0400779static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700780static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry);
Tejun Heo628f7cd2013-06-28 16:24:11 -0700781static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask);
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -0700782static const struct inode_operations cgroup_dir_inode_operations;
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700783static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -0700784
785static struct backing_dev_info cgroup_backing_dev_info = {
Jens Axboed9938312009-06-12 14:45:52 +0200786 .name = "cgroup",
Miklos Szeredie4ad08f2008-04-30 00:54:37 -0700787 .capabilities = BDI_CAP_NO_ACCT_AND_WRITEBACK,
Paul Menagea4243162007-10-18 23:39:35 -0700788};
Paul Menageddbcc7e2007-10-18 23:39:30 -0700789
Al Viroa5e7ed32011-07-26 01:55:55 -0400790static struct inode *cgroup_new_inode(umode_t mode, struct super_block *sb)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700791{
792 struct inode *inode = new_inode(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700793
794 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400795 inode->i_ino = get_next_ino();
Paul Menageddbcc7e2007-10-18 23:39:30 -0700796 inode->i_mode = mode;
David Howells76aac0e2008-11-14 10:39:12 +1100797 inode->i_uid = current_fsuid();
798 inode->i_gid = current_fsgid();
Paul Menageddbcc7e2007-10-18 23:39:30 -0700799 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
800 inode->i_mapping->backing_dev_info = &cgroup_backing_dev_info;
801 }
802 return inode;
803}
804
Tejun Heo8d7e6fb2014-02-11 11:52:48 -0500805static struct cgroup_name *cgroup_alloc_name(const char *name_str)
Li Zefan65dff752013-03-01 15:01:56 +0800806{
807 struct cgroup_name *name;
808
Tejun Heo8d7e6fb2014-02-11 11:52:48 -0500809 name = kmalloc(sizeof(*name) + strlen(name_str) + 1, GFP_KERNEL);
Li Zefan65dff752013-03-01 15:01:56 +0800810 if (!name)
811 return NULL;
Tejun Heo8d7e6fb2014-02-11 11:52:48 -0500812 strcpy(name->name, name_str);
Li Zefan65dff752013-03-01 15:01:56 +0800813 return name;
814}
815
Tejun Heo8d7e6fb2014-02-11 11:52:48 -0500816static char *cgroup_file_name(struct cgroup *cgrp, const struct cftype *cft,
817 char *buf)
818{
819 if (cft->ss && !(cft->flags & CFTYPE_NO_PREFIX) &&
820 !(cgrp->root->flags & CGRP_ROOT_NOPREFIX))
821 snprintf(buf, CGROUP_FILE_NAME_MAX, "%s.%s",
822 cft->ss->name, cft->name);
823 else
824 strncpy(buf, cft->name, CGROUP_FILE_NAME_MAX);
825 return buf;
826}
827
Li Zefanbe445622013-01-24 14:31:42 +0800828static void cgroup_free_fn(struct work_struct *work)
829{
Tejun Heoea15f8c2013-06-13 19:27:42 -0700830 struct cgroup *cgrp = container_of(work, struct cgroup, destroy_work);
Li Zefanbe445622013-01-24 14:31:42 +0800831
832 mutex_lock(&cgroup_mutex);
Li Zefanbe445622013-01-24 14:31:42 +0800833 cgrp->root->number_of_cgroups--;
834 mutex_unlock(&cgroup_mutex);
835
836 /*
Li Zefan415cf072013-04-08 14:35:02 +0800837 * We get a ref to the parent's dentry, and put the ref when
838 * this cgroup is being freed, so it's guaranteed that the
839 * parent won't be destroyed before its children.
840 */
841 dput(cgrp->parent->dentry);
842
843 /*
Li Zefanbe445622013-01-24 14:31:42 +0800844 * Drop the active superblock reference that we took when we
Li Zefancc20e012013-04-26 11:58:02 -0700845 * created the cgroup. This will free cgrp->root, if we are
846 * holding the last reference to @sb.
Li Zefanbe445622013-01-24 14:31:42 +0800847 */
848 deactivate_super(cgrp->root->sb);
849
Tejun Heob1a21362013-11-29 10:42:58 -0500850 cgroup_pidlist_destroy_all(cgrp);
Li Zefanbe445622013-01-24 14:31:42 +0800851
852 simple_xattrs_free(&cgrp->xattrs);
853
Li Zefan65dff752013-03-01 15:01:56 +0800854 kfree(rcu_dereference_raw(cgrp->name));
Li Zefanbe445622013-01-24 14:31:42 +0800855 kfree(cgrp);
856}
857
858static void cgroup_free_rcu(struct rcu_head *head)
859{
860 struct cgroup *cgrp = container_of(head, struct cgroup, rcu_head);
861
Tejun Heoea15f8c2013-06-13 19:27:42 -0700862 INIT_WORK(&cgrp->destroy_work, cgroup_free_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -0500863 queue_work(cgroup_destroy_wq, &cgrp->destroy_work);
Li Zefanbe445622013-01-24 14:31:42 +0800864}
865
Paul Menageddbcc7e2007-10-18 23:39:30 -0700866static void cgroup_diput(struct dentry *dentry, struct inode *inode)
867{
868 /* is dentry a directory ? if so, kfree() associated cgroup */
869 if (S_ISDIR(inode->i_mode)) {
Paul Menagebd89aab2007-10-18 23:40:44 -0700870 struct cgroup *cgrp = dentry->d_fsdata;
Li Zefanbe445622013-01-24 14:31:42 +0800871
Tejun Heo54766d42013-06-12 21:04:53 -0700872 BUG_ON(!(cgroup_is_dead(cgrp)));
Li Zefanc1a71502013-12-17 11:13:39 +0800873
874 /*
875 * XXX: cgrp->id is only used to look up css's. As cgroup
876 * and css's lifetimes will be decoupled, it should be made
877 * per-subsystem and moved to css->id so that lookups are
878 * successful until the target css is released.
879 */
Li Zefan0ab02ca2014-02-11 16:05:46 +0800880 mutex_lock(&cgroup_mutex);
Li Zefanc1a71502013-12-17 11:13:39 +0800881 idr_remove(&cgrp->root->cgroup_idr, cgrp->id);
Li Zefan0ab02ca2014-02-11 16:05:46 +0800882 mutex_unlock(&cgroup_mutex);
Li Zefanc1a71502013-12-17 11:13:39 +0800883 cgrp->id = -1;
884
Li Zefanbe445622013-01-24 14:31:42 +0800885 call_rcu(&cgrp->rcu_head, cgroup_free_rcu);
Tejun Heo05ef1d72012-04-01 12:09:56 -0700886 } else {
887 struct cfent *cfe = __d_cfe(dentry);
888 struct cgroup *cgrp = dentry->d_parent->d_fsdata;
889
890 WARN_ONCE(!list_empty(&cfe->node) &&
891 cgrp != &cgrp->root->top_cgroup,
892 "cfe still linked for %s\n", cfe->type->name);
Li Zefan712317a2013-04-18 23:09:52 -0700893 simple_xattrs_free(&cfe->xattrs);
Tejun Heo05ef1d72012-04-01 12:09:56 -0700894 kfree(cfe);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700895 }
896 iput(inode);
897}
898
899static void remove_dir(struct dentry *d)
900{
901 struct dentry *parent = dget(d->d_parent);
902
903 d_delete(d);
904 simple_rmdir(parent->d_inode, d);
905 dput(parent);
906}
907
Li Zefan2739d3c2013-01-21 18:18:33 +0800908static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700909{
Tejun Heo05ef1d72012-04-01 12:09:56 -0700910 struct cfent *cfe;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700911
Tejun Heo05ef1d72012-04-01 12:09:56 -0700912 lockdep_assert_held(&cgrp->dentry->d_inode->i_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -0500913 lockdep_assert_held(&cgroup_tree_mutex);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100914
Li Zefan2739d3c2013-01-21 18:18:33 +0800915 /*
916 * If we're doing cleanup due to failure of cgroup_create(),
917 * the corresponding @cfe may not exist.
918 */
Tejun Heo05ef1d72012-04-01 12:09:56 -0700919 list_for_each_entry(cfe, &cgrp->files, node) {
920 struct dentry *d = cfe->dentry;
921
922 if (cft && cfe->type != cft)
923 continue;
924
925 dget(d);
926 d_delete(d);
Tejun Heoce27e312012-07-03 10:38:06 -0700927 simple_unlink(cgrp->dentry->d_inode, d);
Tejun Heo05ef1d72012-04-01 12:09:56 -0700928 list_del_init(&cfe->node);
929 dput(d);
930
Li Zefan2739d3c2013-01-21 18:18:33 +0800931 break;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700932 }
Tejun Heo05ef1d72012-04-01 12:09:56 -0700933}
934
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400935/**
Tejun Heo628f7cd2013-06-28 16:24:11 -0700936 * cgroup_clear_dir - remove subsys files in a cgroup directory
Tejun Heo8f891402013-06-28 16:24:10 -0700937 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400938 * @subsys_mask: mask of the subsystem ids whose files should be removed
939 */
Tejun Heo628f7cd2013-06-28 16:24:11 -0700940static void cgroup_clear_dir(struct cgroup *cgrp, unsigned long subsys_mask)
Tejun Heo05ef1d72012-04-01 12:09:56 -0700941{
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400942 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -0700943 int i;
Tejun Heo05ef1d72012-04-01 12:09:56 -0700944
Tejun Heob420ba72013-07-12 12:34:02 -0700945 for_each_subsys(ss, i) {
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400946 struct cftype_set *set;
Tejun Heob420ba72013-07-12 12:34:02 -0700947
948 if (!test_bit(i, &subsys_mask))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400949 continue;
950 list_for_each_entry(set, &ss->cftsets, node)
Tejun Heo2bb566c2013-08-08 20:11:23 -0400951 cgroup_addrm_files(cgrp, set->cfts, false);
Aristeu Rozanski13af07d2012-08-23 16:53:29 -0400952 }
Paul Menageddbcc7e2007-10-18 23:39:30 -0700953}
954
955/*
956 * NOTE : the dentry must have been dget()'ed
957 */
958static void cgroup_d_remove_dir(struct dentry *dentry)
959{
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100960 struct dentry *parent;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700961
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100962 parent = dentry->d_parent;
963 spin_lock(&parent->d_lock);
Li Zefan3ec762a2011-01-14 11:34:34 +0800964 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700965 list_del_init(&dentry->d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100966 spin_unlock(&dentry->d_lock);
967 spin_unlock(&parent->d_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700968 remove_dir(dentry);
969}
970
971static int rebind_subsystems(struct cgroupfs_root *root,
Tejun Heoa8a648c2013-06-24 15:21:47 -0700972 unsigned long added_mask, unsigned removed_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700973{
Paul Menagebd89aab2007-10-18 23:40:44 -0700974 struct cgroup *cgrp = &root->top_cgroup;
Tejun Heo30159ec2013-06-25 11:53:37 -0700975 struct cgroup_subsys *ss;
Tejun Heo31261212013-06-28 17:07:30 -0700976 int i, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700977
Tejun Heoace2bee2014-02-11 11:52:47 -0500978 lockdep_assert_held(&cgroup_tree_mutex);
979 lockdep_assert_held(&cgroup_mutex);
Ben Blumaae8aab2010-03-10 15:22:07 -0800980
Paul Menageddbcc7e2007-10-18 23:39:30 -0700981 /* Check that any added subsystems are currently free */
Tejun Heo3ed80a62014-02-08 10:36:58 -0500982 for_each_subsys(ss, i)
983 if ((added_mask & (1 << i)) && ss->root != &cgroup_dummy_root)
984 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700985
Tejun Heo31261212013-06-28 17:07:30 -0700986 ret = cgroup_populate_dir(cgrp, added_mask);
987 if (ret)
Tejun Heo3ed80a62014-02-08 10:36:58 -0500988 return ret;
Tejun Heo31261212013-06-28 17:07:30 -0700989
990 /*
991 * Nothing can fail from this point on. Remove files for the
992 * removed subsystems and rebind each subsystem.
993 */
Tejun Heo4ac06012014-02-11 11:52:47 -0500994 mutex_unlock(&cgroup_mutex);
Tejun Heo31261212013-06-28 17:07:30 -0700995 cgroup_clear_dir(cgrp, removed_mask);
Tejun Heo4ac06012014-02-11 11:52:47 -0500996 mutex_lock(&cgroup_mutex);
Tejun Heo31261212013-06-28 17:07:30 -0700997
Tejun Heo30159ec2013-06-25 11:53:37 -0700998 for_each_subsys(ss, i) {
Paul Menageddbcc7e2007-10-18 23:39:30 -0700999 unsigned long bit = 1UL << i;
Tejun Heo30159ec2013-06-25 11:53:37 -07001000
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001001 if (bit & added_mask) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001002 /* We're binding this subsystem to this hierarchy */
Tejun Heoca8bdca2013-08-26 18:40:56 -04001003 BUG_ON(cgroup_css(cgrp, ss));
1004 BUG_ON(!cgroup_css(cgroup_dummy_top, ss));
1005 BUG_ON(cgroup_css(cgroup_dummy_top, ss)->cgroup != cgroup_dummy_top);
Tejun Heoa8a648c2013-06-24 15:21:47 -07001006
Tejun Heo73e80ed2013-08-13 11:01:55 -04001007 rcu_assign_pointer(cgrp->subsys[i],
Tejun Heoca8bdca2013-08-26 18:40:56 -04001008 cgroup_css(cgroup_dummy_top, ss));
1009 cgroup_css(cgrp, ss)->cgroup = cgrp;
Tejun Heo73e80ed2013-08-13 11:01:55 -04001010
Lai Jiangshanb2aa30f2009-01-07 18:07:37 -08001011 ss->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001012 if (ss->bind)
Tejun Heoca8bdca2013-08-26 18:40:56 -04001013 ss->bind(cgroup_css(cgrp, ss));
Tejun Heoa8a648c2013-06-24 15:21:47 -07001014
Ben Blumcf5d5942010-03-10 15:22:09 -08001015 /* refcount was already taken, and we're keeping it */
Tejun Heoa8a648c2013-06-24 15:21:47 -07001016 root->subsys_mask |= bit;
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001017 } else if (bit & removed_mask) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001018 /* We're removing this subsystem */
Tejun Heoca8bdca2013-08-26 18:40:56 -04001019 BUG_ON(cgroup_css(cgrp, ss) != cgroup_css(cgroup_dummy_top, ss));
1020 BUG_ON(cgroup_css(cgrp, ss)->cgroup != cgrp);
Tejun Heoa8a648c2013-06-24 15:21:47 -07001021
Paul Menageddbcc7e2007-10-18 23:39:30 -07001022 if (ss->bind)
Tejun Heoca8bdca2013-08-26 18:40:56 -04001023 ss->bind(cgroup_css(cgroup_dummy_top, ss));
Tejun Heo73e80ed2013-08-13 11:01:55 -04001024
Tejun Heoca8bdca2013-08-26 18:40:56 -04001025 cgroup_css(cgroup_dummy_top, ss)->cgroup = cgroup_dummy_top;
Tejun Heo73e80ed2013-08-13 11:01:55 -04001026 RCU_INIT_POINTER(cgrp->subsys[i], NULL);
1027
Tejun Heo9871bf92013-06-24 15:21:47 -07001028 cgroup_subsys[i]->root = &cgroup_dummy_root;
Tejun Heoa8a648c2013-06-24 15:21:47 -07001029 root->subsys_mask &= ~bit;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001030 }
1031 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001032
Tejun Heo1672d042013-06-25 18:04:54 -07001033 /*
1034 * Mark @root has finished binding subsystems. @root->subsys_mask
1035 * now matches the bound subsystems.
1036 */
1037 root->flags |= CGRP_ROOT_SUBSYS_BOUND;
1038
Paul Menageddbcc7e2007-10-18 23:39:30 -07001039 return 0;
1040}
1041
Al Viro34c80b12011-12-08 21:32:45 -05001042static int cgroup_show_options(struct seq_file *seq, struct dentry *dentry)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001043{
Al Viro34c80b12011-12-08 21:32:45 -05001044 struct cgroupfs_root *root = dentry->d_sb->s_fs_info;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001045 struct cgroup_subsys *ss;
Tejun Heob85d2042013-12-06 15:11:57 -05001046 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001047
Tejun Heob85d2042013-12-06 15:11:57 -05001048 for_each_subsys(ss, ssid)
1049 if (root->subsys_mask & (1 << ssid))
1050 seq_printf(seq, ",%s", ss->name);
Tejun Heo873fe092013-04-14 20:15:26 -07001051 if (root->flags & CGRP_ROOT_SANE_BEHAVIOR)
1052 seq_puts(seq, ",sane_behavior");
Tejun Heo93438622013-04-14 20:15:25 -07001053 if (root->flags & CGRP_ROOT_NOPREFIX)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001054 seq_puts(seq, ",noprefix");
Tejun Heo93438622013-04-14 20:15:25 -07001055 if (root->flags & CGRP_ROOT_XATTR)
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001056 seq_puts(seq, ",xattr");
Tejun Heo69e943b2014-02-08 10:36:58 -05001057
1058 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001059 if (strlen(root->release_agent_path))
1060 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Tejun Heo69e943b2014-02-08 10:36:58 -05001061 spin_unlock(&release_agent_path_lock);
1062
Tejun Heo2260e7f2012-11-19 08:13:38 -08001063 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->top_cgroup.flags))
Daniel Lezcano97978e62010-10-27 15:33:35 -07001064 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001065 if (strlen(root->name))
1066 seq_printf(seq, ",name=%s", root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001067 return 0;
1068}
1069
1070struct cgroup_sb_opts {
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001071 unsigned long subsys_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001072 unsigned long flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001073 char *release_agent;
Tejun Heo2260e7f2012-11-19 08:13:38 -08001074 bool cpuset_clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001075 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001076 /* User explicitly requested empty subsystem */
1077 bool none;
Paul Menagec6d57f32009-09-23 15:56:19 -07001078
1079 struct cgroupfs_root *new_root;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001080
Paul Menageddbcc7e2007-10-18 23:39:30 -07001081};
1082
Ben Blumaae8aab2010-03-10 15:22:07 -08001083/*
Tejun Heo9871bf92013-06-24 15:21:47 -07001084 * Convert a hierarchy specifier into a bitmask of subsystems and
1085 * flags. Call with cgroup_mutex held to protect the cgroup_subsys[]
1086 * array. This function takes refcounts on subsystems to be used, unless it
1087 * returns error, in which case no refcounts are taken.
Ben Blumaae8aab2010-03-10 15:22:07 -08001088 */
Ben Blumcf5d5942010-03-10 15:22:09 -08001089static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001090{
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001091 char *token, *o = data;
1092 bool all_ss = false, one_ss = false;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001093 unsigned long mask = (unsigned long)-1;
Tejun Heo30159ec2013-06-25 11:53:37 -07001094 struct cgroup_subsys *ss;
1095 int i;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001096
Ben Blumaae8aab2010-03-10 15:22:07 -08001097 BUG_ON(!mutex_is_locked(&cgroup_mutex));
1098
Li Zefanf9ab5b52009-06-17 16:26:33 -07001099#ifdef CONFIG_CPUSETS
Tejun Heo073219e2014-02-08 10:36:58 -05001100 mask = ~(1UL << cpuset_cgrp_id);
Li Zefanf9ab5b52009-06-17 16:26:33 -07001101#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001102
Paul Menagec6d57f32009-09-23 15:56:19 -07001103 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001104
1105 while ((token = strsep(&o, ",")) != NULL) {
1106 if (!*token)
1107 return -EINVAL;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001108 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001109 /* Explicitly have no subsystems */
1110 opts->none = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001111 continue;
1112 }
1113 if (!strcmp(token, "all")) {
1114 /* Mutually exclusive option 'all' + subsystem name */
1115 if (one_ss)
1116 return -EINVAL;
1117 all_ss = true;
1118 continue;
1119 }
Tejun Heo873fe092013-04-14 20:15:26 -07001120 if (!strcmp(token, "__DEVEL__sane_behavior")) {
1121 opts->flags |= CGRP_ROOT_SANE_BEHAVIOR;
1122 continue;
1123 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001124 if (!strcmp(token, "noprefix")) {
Tejun Heo93438622013-04-14 20:15:25 -07001125 opts->flags |= CGRP_ROOT_NOPREFIX;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001126 continue;
1127 }
1128 if (!strcmp(token, "clone_children")) {
Tejun Heo2260e7f2012-11-19 08:13:38 -08001129 opts->cpuset_clone_children = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001130 continue;
1131 }
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001132 if (!strcmp(token, "xattr")) {
Tejun Heo93438622013-04-14 20:15:25 -07001133 opts->flags |= CGRP_ROOT_XATTR;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001134 continue;
1135 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001136 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001137 /* Specifying two release agents is forbidden */
1138 if (opts->release_agent)
1139 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001140 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001141 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001142 if (!opts->release_agent)
1143 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001144 continue;
1145 }
1146 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001147 const char *name = token + 5;
1148 /* Can't specify an empty name */
1149 if (!strlen(name))
1150 return -EINVAL;
1151 /* Must match [\w.-]+ */
1152 for (i = 0; i < strlen(name); i++) {
1153 char c = name[i];
1154 if (isalnum(c))
1155 continue;
1156 if ((c == '.') || (c == '-') || (c == '_'))
1157 continue;
1158 return -EINVAL;
1159 }
1160 /* Specifying two names is forbidden */
1161 if (opts->name)
1162 return -EINVAL;
1163 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001164 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001165 GFP_KERNEL);
1166 if (!opts->name)
1167 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001168
1169 continue;
1170 }
1171
Tejun Heo30159ec2013-06-25 11:53:37 -07001172 for_each_subsys(ss, i) {
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001173 if (strcmp(token, ss->name))
1174 continue;
1175 if (ss->disabled)
1176 continue;
1177
1178 /* Mutually exclusive option 'all' + subsystem name */
1179 if (all_ss)
1180 return -EINVAL;
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001181 set_bit(i, &opts->subsys_mask);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001182 one_ss = true;
1183
1184 break;
1185 }
1186 if (i == CGROUP_SUBSYS_COUNT)
1187 return -ENOENT;
1188 }
1189
1190 /*
1191 * If the 'all' option was specified select all the subsystems,
Li Zefan0d19ea82011-12-27 14:25:55 +08001192 * otherwise if 'none', 'name=' and a subsystem name options
1193 * were not specified, let's default to 'all'
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001194 */
Tejun Heo30159ec2013-06-25 11:53:37 -07001195 if (all_ss || (!one_ss && !opts->none && !opts->name))
1196 for_each_subsys(ss, i)
1197 if (!ss->disabled)
1198 set_bit(i, &opts->subsys_mask);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001199
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001200 /* Consistency checks */
1201
Tejun Heo873fe092013-04-14 20:15:26 -07001202 if (opts->flags & CGRP_ROOT_SANE_BEHAVIOR) {
1203 pr_warning("cgroup: sane_behavior: this is still under development and its behaviors will change, proceed at your own risk\n");
1204
1205 if (opts->flags & CGRP_ROOT_NOPREFIX) {
1206 pr_err("cgroup: sane_behavior: noprefix is not allowed\n");
1207 return -EINVAL;
1208 }
1209
1210 if (opts->cpuset_clone_children) {
1211 pr_err("cgroup: sane_behavior: clone_children is not allowed\n");
1212 return -EINVAL;
1213 }
1214 }
1215
Li Zefanf9ab5b52009-06-17 16:26:33 -07001216 /*
1217 * Option noprefix was introduced just for backward compatibility
1218 * with the old cpuset, so we allow noprefix only if mounting just
1219 * the cpuset subsystem.
1220 */
Tejun Heo93438622013-04-14 20:15:25 -07001221 if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask))
Li Zefanf9ab5b52009-06-17 16:26:33 -07001222 return -EINVAL;
1223
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001224
1225 /* Can't specify "none" and some subsystems */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001226 if (opts->subsys_mask && opts->none)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001227 return -EINVAL;
1228
1229 /*
1230 * We either have to specify by name or by subsystems. (So all
1231 * empty hierarchies must have a name).
1232 */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001233 if (!opts->subsys_mask && !opts->name)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001234 return -EINVAL;
1235
1236 return 0;
1237}
1238
1239static int cgroup_remount(struct super_block *sb, int *flags, char *data)
1240{
1241 int ret = 0;
1242 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001243 struct cgroup *cgrp = &root->top_cgroup;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001244 struct cgroup_sb_opts opts;
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001245 unsigned long added_mask, removed_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001246
Tejun Heo873fe092013-04-14 20:15:26 -07001247 if (root->flags & CGRP_ROOT_SANE_BEHAVIOR) {
1248 pr_err("cgroup: sane_behavior: remount is not allowed\n");
1249 return -EINVAL;
1250 }
1251
Paul Menagebd89aab2007-10-18 23:40:44 -07001252 mutex_lock(&cgrp->dentry->d_inode->i_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05001253 mutex_lock(&cgroup_tree_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001254 mutex_lock(&cgroup_mutex);
1255
1256 /* See what subsystems are wanted */
1257 ret = parse_cgroupfs_options(data, &opts);
1258 if (ret)
1259 goto out_unlock;
1260
Tejun Heoa8a648c2013-06-24 15:21:47 -07001261 if (opts.subsys_mask != root->subsys_mask || opts.release_agent)
Tejun Heo8b5a5a92012-04-01 12:09:54 -07001262 pr_warning("cgroup: option changes via remount are deprecated (pid=%d comm=%s)\n",
1263 task_tgid_nr(current), current->comm);
1264
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001265 added_mask = opts.subsys_mask & ~root->subsys_mask;
1266 removed_mask = root->subsys_mask & ~opts.subsys_mask;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001267
Ben Blumcf5d5942010-03-10 15:22:09 -08001268 /* Don't allow flags or name to change at remount */
Tejun Heo0ce6cba2013-06-27 19:37:26 -07001269 if (((opts.flags ^ root->flags) & CGRP_ROOT_OPTION_MASK) ||
Ben Blumcf5d5942010-03-10 15:22:09 -08001270 (opts.name && strcmp(opts.name, root->name))) {
Tejun Heo0ce6cba2013-06-27 19:37:26 -07001271 pr_err("cgroup: option or name mismatch, new: 0x%lx \"%s\", old: 0x%lx \"%s\"\n",
1272 opts.flags & CGRP_ROOT_OPTION_MASK, opts.name ?: "",
1273 root->flags & CGRP_ROOT_OPTION_MASK, root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001274 ret = -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001275 goto out_unlock;
1276 }
1277
Tejun Heof172e672013-06-28 17:07:30 -07001278 /* remounting is not allowed for populated hierarchies */
1279 if (root->number_of_cgroups > 1) {
1280 ret = -EBUSY;
Li Zefan0670e082009-04-02 16:57:30 -07001281 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001282 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001283
Paul Menageddbcc7e2007-10-18 23:39:30 -07001284 ret = rebind_subsystems(root, added_mask, removed_mask);
Tejun Heo31261212013-06-28 17:07:30 -07001285 if (ret)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001286 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001287
Tejun Heo69e943b2014-02-08 10:36:58 -05001288 if (opts.release_agent) {
1289 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001290 strcpy(root->release_agent_path, opts.release_agent);
Tejun Heo69e943b2014-02-08 10:36:58 -05001291 spin_unlock(&release_agent_path_lock);
1292 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001293 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001294 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001295 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001296 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05001297 mutex_unlock(&cgroup_tree_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07001298 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001299 return ret;
1300}
1301
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001302static const struct super_operations cgroup_ops = {
Paul Menageddbcc7e2007-10-18 23:39:30 -07001303 .statfs = simple_statfs,
1304 .drop_inode = generic_delete_inode,
1305 .show_options = cgroup_show_options,
1306 .remount_fs = cgroup_remount,
1307};
1308
Paul Menagecc31edc2008-10-18 20:28:04 -07001309static void init_cgroup_housekeeping(struct cgroup *cgrp)
1310{
1311 INIT_LIST_HEAD(&cgrp->sibling);
1312 INIT_LIST_HEAD(&cgrp->children);
Tejun Heo05ef1d72012-04-01 12:09:56 -07001313 INIT_LIST_HEAD(&cgrp->files);
Tejun Heo69d02062013-06-12 21:04:50 -07001314 INIT_LIST_HEAD(&cgrp->cset_links);
Paul Menagecc31edc2008-10-18 20:28:04 -07001315 INIT_LIST_HEAD(&cgrp->release_list);
Ben Blum72a8cb32009-09-23 15:56:27 -07001316 INIT_LIST_HEAD(&cgrp->pidlists);
1317 mutex_init(&cgrp->pidlist_mutex);
Tejun Heo67f4c362013-08-08 20:11:24 -04001318 cgrp->dummy_css.cgroup = cgrp;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001319 simple_xattrs_init(&cgrp->xattrs);
Paul Menagecc31edc2008-10-18 20:28:04 -07001320}
Paul Menagec6d57f32009-09-23 15:56:19 -07001321
Paul Menageddbcc7e2007-10-18 23:39:30 -07001322static void init_cgroup_root(struct cgroupfs_root *root)
1323{
Paul Menagebd89aab2007-10-18 23:40:44 -07001324 struct cgroup *cgrp = &root->top_cgroup;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001325
Paul Menageddbcc7e2007-10-18 23:39:30 -07001326 INIT_LIST_HEAD(&root->root_list);
1327 root->number_of_cgroups = 1;
Paul Menagebd89aab2007-10-18 23:40:44 -07001328 cgrp->root = root;
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07001329 RCU_INIT_POINTER(cgrp->name, &root_cgroup_name);
Paul Menagecc31edc2008-10-18 20:28:04 -07001330 init_cgroup_housekeeping(cgrp);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08001331 idr_init(&root->cgroup_idr);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001332}
1333
Tejun Heofc76df72013-06-25 11:53:37 -07001334static int cgroup_init_root_id(struct cgroupfs_root *root, int start, int end)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001335{
Tejun Heo1a574232013-04-14 11:36:58 -07001336 int id;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001337
Tejun Heo54e7b4e2013-04-14 11:36:57 -07001338 lockdep_assert_held(&cgroup_mutex);
Tejun Heo54e7b4e2013-04-14 11:36:57 -07001339
Tejun Heofc76df72013-06-25 11:53:37 -07001340 id = idr_alloc_cyclic(&cgroup_hierarchy_idr, root, start, end,
1341 GFP_KERNEL);
Tejun Heo1a574232013-04-14 11:36:58 -07001342 if (id < 0)
1343 return id;
1344
1345 root->hierarchy_id = id;
Tejun Heofa3ca072013-04-14 11:36:56 -07001346 return 0;
1347}
1348
1349static void cgroup_exit_root_id(struct cgroupfs_root *root)
1350{
Tejun Heo54e7b4e2013-04-14 11:36:57 -07001351 lockdep_assert_held(&cgroup_mutex);
Tejun Heofa3ca072013-04-14 11:36:56 -07001352
Tejun Heo54e7b4e2013-04-14 11:36:57 -07001353 if (root->hierarchy_id) {
Tejun Heo1a574232013-04-14 11:36:58 -07001354 idr_remove(&cgroup_hierarchy_idr, root->hierarchy_id);
Tejun Heofa3ca072013-04-14 11:36:56 -07001355 root->hierarchy_id = 0;
1356 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001357}
1358
Paul Menageddbcc7e2007-10-18 23:39:30 -07001359static int cgroup_test_super(struct super_block *sb, void *data)
1360{
Paul Menagec6d57f32009-09-23 15:56:19 -07001361 struct cgroup_sb_opts *opts = data;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001362 struct cgroupfs_root *root = sb->s_fs_info;
1363
Paul Menagec6d57f32009-09-23 15:56:19 -07001364 /* If we asked for a name then it must match */
1365 if (opts->name && strcmp(opts->name, root->name))
1366 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001367
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001368 /*
1369 * If we asked for subsystems (or explicitly for no
1370 * subsystems) then they must match
1371 */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001372 if ((opts->subsys_mask || opts->none)
1373 && (opts->subsys_mask != root->subsys_mask))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001374 return 0;
1375
1376 return 1;
1377}
1378
Paul Menagec6d57f32009-09-23 15:56:19 -07001379static struct cgroupfs_root *cgroup_root_from_opts(struct cgroup_sb_opts *opts)
1380{
1381 struct cgroupfs_root *root;
1382
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001383 if (!opts->subsys_mask && !opts->none)
Paul Menagec6d57f32009-09-23 15:56:19 -07001384 return NULL;
1385
1386 root = kzalloc(sizeof(*root), GFP_KERNEL);
1387 if (!root)
1388 return ERR_PTR(-ENOMEM);
1389
1390 init_cgroup_root(root);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001391
Tejun Heo1672d042013-06-25 18:04:54 -07001392 /*
1393 * We need to set @root->subsys_mask now so that @root can be
1394 * matched by cgroup_test_super() before it finishes
1395 * initialization; otherwise, competing mounts with the same
1396 * options may try to bind the same subsystems instead of waiting
1397 * for the first one leading to unexpected mount errors.
1398 * SUBSYS_BOUND will be set once actual binding is complete.
1399 */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001400 root->subsys_mask = opts->subsys_mask;
Paul Menagec6d57f32009-09-23 15:56:19 -07001401 root->flags = opts->flags;
1402 if (opts->release_agent)
1403 strcpy(root->release_agent_path, opts->release_agent);
1404 if (opts->name)
1405 strcpy(root->name, opts->name);
Tejun Heo2260e7f2012-11-19 08:13:38 -08001406 if (opts->cpuset_clone_children)
1407 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->top_cgroup.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001408 return root;
1409}
1410
Tejun Heofa3ca072013-04-14 11:36:56 -07001411static void cgroup_free_root(struct cgroupfs_root *root)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001412{
Tejun Heofa3ca072013-04-14 11:36:56 -07001413 if (root) {
1414 /* hierarhcy ID shoulid already have been released */
1415 WARN_ON_ONCE(root->hierarchy_id);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001416
Li Zefan4e96ee8e2013-07-31 09:50:50 +08001417 idr_destroy(&root->cgroup_idr);
Tejun Heofa3ca072013-04-14 11:36:56 -07001418 kfree(root);
1419 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001420}
1421
Paul Menageddbcc7e2007-10-18 23:39:30 -07001422static int cgroup_set_super(struct super_block *sb, void *data)
1423{
1424 int ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001425 struct cgroup_sb_opts *opts = data;
1426
1427 /* If we don't have a new root, we can't set up a new sb */
1428 if (!opts->new_root)
1429 return -EINVAL;
1430
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001431 BUG_ON(!opts->subsys_mask && !opts->none);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001432
1433 ret = set_anon_super(sb, NULL);
1434 if (ret)
1435 return ret;
1436
Paul Menagec6d57f32009-09-23 15:56:19 -07001437 sb->s_fs_info = opts->new_root;
1438 opts->new_root->sb = sb;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001439
1440 sb->s_blocksize = PAGE_CACHE_SIZE;
1441 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
1442 sb->s_magic = CGROUP_SUPER_MAGIC;
1443 sb->s_op = &cgroup_ops;
1444
1445 return 0;
1446}
1447
1448static int cgroup_get_rootdir(struct super_block *sb)
1449{
Al Viro0df6a632010-12-21 13:29:29 -05001450 static const struct dentry_operations cgroup_dops = {
1451 .d_iput = cgroup_diput,
Al Virob26d4cd2013-10-25 18:47:37 -04001452 .d_delete = always_delete_dentry,
Al Viro0df6a632010-12-21 13:29:29 -05001453 };
1454
Paul Menageddbcc7e2007-10-18 23:39:30 -07001455 struct inode *inode =
1456 cgroup_new_inode(S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR, sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001457
1458 if (!inode)
1459 return -ENOMEM;
1460
Paul Menageddbcc7e2007-10-18 23:39:30 -07001461 inode->i_fop = &simple_dir_operations;
1462 inode->i_op = &cgroup_dir_inode_operations;
1463 /* directories start off with i_nlink == 2 (for "." entry) */
1464 inc_nlink(inode);
Al Viro48fde702012-01-08 22:15:13 -05001465 sb->s_root = d_make_root(inode);
1466 if (!sb->s_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001467 return -ENOMEM;
Al Viro0df6a632010-12-21 13:29:29 -05001468 /* for everything else we want ->d_op set */
1469 sb->s_d_op = &cgroup_dops;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001470 return 0;
1471}
1472
Tejun Heod427dfe2014-02-11 11:52:48 -05001473static int cgroup_setup_root(struct cgroupfs_root *root)
1474{
1475 LIST_HEAD(tmp_links);
1476 struct super_block *sb = root->sb;
1477 struct cgroup *root_cgrp = &root->top_cgroup;
1478 struct cgroupfs_root *existing_root;
1479 struct css_set *cset;
1480 struct inode *inode;
1481 const struct cred *cred;
1482 int i, ret;
1483
1484 lockdep_assert_held(&cgroup_tree_mutex);
1485 lockdep_assert_held(&cgroup_mutex);
1486 BUG_ON(sb->s_root != NULL);
1487
1488 mutex_unlock(&cgroup_mutex);
1489 mutex_unlock(&cgroup_tree_mutex);
1490
1491 ret = cgroup_get_rootdir(sb);
1492 if (ret) {
1493 mutex_lock(&cgroup_tree_mutex);
1494 mutex_lock(&cgroup_mutex);
1495 return ret;
1496 }
1497 inode = sb->s_root->d_inode;
1498
1499 mutex_lock(&inode->i_mutex);
1500 mutex_lock(&cgroup_tree_mutex);
1501 mutex_lock(&cgroup_mutex);
1502
1503 ret = idr_alloc(&root->cgroup_idr, root_cgrp, 0, 1, GFP_KERNEL);
1504 if (ret < 0)
1505 goto out_unlock;
1506 root_cgrp->id = ret;
1507
1508 /* check for name clashes with existing mounts */
1509 ret = -EBUSY;
1510 if (strlen(root->name))
1511 for_each_active_root(existing_root)
1512 if (!strcmp(existing_root->name, root->name))
1513 goto out_unlock;
1514
1515 /*
1516 * We're accessing css_set_count without locking css_set_lock here,
1517 * but that's OK - it can only be increased by someone holding
1518 * cgroup_lock, and that's us. The worst that can happen is that we
1519 * have some link structures left over
1520 */
1521 ret = allocate_cgrp_cset_links(css_set_count, &tmp_links);
1522 if (ret)
1523 goto out_unlock;
1524
1525 /* ID 0 is reserved for dummy root, 1 for unified hierarchy */
1526 ret = cgroup_init_root_id(root, 2, 0);
1527 if (ret)
1528 goto out_unlock;
1529
1530 sb->s_root->d_fsdata = root_cgrp;
1531 root_cgrp->dentry = sb->s_root;
1532
1533 /*
1534 * We're inside get_sb() and will call lookup_one_len() to create
1535 * the root files, which doesn't work if SELinux is in use. The
1536 * following cred dancing somehow works around it. See 2ce9738ba
1537 * ("cgroupfs: use init_cred when populating new cgroupfs mount")
1538 * for more details.
1539 */
1540 cred = override_creds(&init_cred);
1541
1542 ret = cgroup_addrm_files(root_cgrp, cgroup_base_files, true);
1543 if (ret)
1544 goto rm_base_files;
1545
1546 ret = rebind_subsystems(root, root->subsys_mask, 0);
1547 if (ret)
1548 goto rm_base_files;
1549
1550 revert_creds(cred);
1551
1552 /*
1553 * There must be no failure case after here, since rebinding takes
1554 * care of subsystems' refcounts, which are explicitly dropped in
1555 * the failure exit path.
1556 */
1557 list_add(&root->root_list, &cgroup_roots);
1558 cgroup_root_count++;
1559
1560 /*
1561 * Link the top cgroup in this hierarchy into all the css_set
1562 * objects.
1563 */
1564 write_lock(&css_set_lock);
1565 hash_for_each(css_set_table, i, cset, hlist)
1566 link_css_set(&tmp_links, cset, root_cgrp);
1567 write_unlock(&css_set_lock);
1568
1569 BUG_ON(!list_empty(&root_cgrp->children));
1570 BUG_ON(root->number_of_cgroups != 1);
1571
1572 ret = 0;
1573 goto out_unlock;
1574
1575rm_base_files:
1576 cgroup_addrm_files(&root->top_cgroup, cgroup_base_files, false);
1577 revert_creds(cred);
1578 cgroup_exit_root_id(root);
1579out_unlock:
1580 mutex_unlock(&inode->i_mutex);
1581 free_cgrp_cset_links(&tmp_links);
1582 return ret;
1583}
1584
Al Virof7e83572010-07-26 13:23:11 +04001585static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001586 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001587 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001588{
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001589 struct super_block *sb = NULL;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001590 struct cgroupfs_root *root = NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001591 struct cgroup_sb_opts opts;
Paul Menagec6d57f32009-09-23 15:56:19 -07001592 struct cgroupfs_root *new_root;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001593 int ret;
1594
1595 mutex_lock(&cgroup_tree_mutex);
1596 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001597
1598 /* First find the desired set of subsystems */
1599 ret = parse_cgroupfs_options(data, &opts);
Paul Menagec6d57f32009-09-23 15:56:19 -07001600 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001601 goto out_unlock;
Paul Menagec6d57f32009-09-23 15:56:19 -07001602
1603 /*
1604 * Allocate a new cgroup root. We may not need it if we're
1605 * reusing an existing hierarchy.
1606 */
1607 new_root = cgroup_root_from_opts(&opts);
1608 if (IS_ERR(new_root)) {
1609 ret = PTR_ERR(new_root);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001610 goto out_unlock;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001611 }
Paul Menagec6d57f32009-09-23 15:56:19 -07001612 opts.new_root = new_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001613
Paul Menagec6d57f32009-09-23 15:56:19 -07001614 /* Locate an existing or new sb for this hierarchy */
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001615 mutex_unlock(&cgroup_mutex);
1616 mutex_unlock(&cgroup_tree_mutex);
David Howells9249e172012-06-25 12:55:37 +01001617 sb = sget(fs_type, cgroup_test_super, cgroup_set_super, 0, &opts);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001618 mutex_lock(&cgroup_tree_mutex);
1619 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001620 if (IS_ERR(sb)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001621 ret = PTR_ERR(sb);
Tejun Heofa3ca072013-04-14 11:36:56 -07001622 cgroup_free_root(opts.new_root);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001623 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001624 }
1625
Paul Menagec6d57f32009-09-23 15:56:19 -07001626 root = sb->s_fs_info;
1627 BUG_ON(!root);
1628 if (root == opts.new_root) {
Tejun Heod427dfe2014-02-11 11:52:48 -05001629 ret = cgroup_setup_root(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001630 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001631 goto out_unlock;
Paul Menagec6d57f32009-09-23 15:56:19 -07001632 } else {
1633 /*
1634 * We re-used an existing hierarchy - the new root (if
1635 * any) is not needed
1636 */
Tejun Heofa3ca072013-04-14 11:36:56 -07001637 cgroup_free_root(opts.new_root);
Tejun Heo873fe092013-04-14 20:15:26 -07001638
Tejun Heoc7ba8282013-06-29 14:06:10 -07001639 if ((root->flags ^ opts.flags) & CGRP_ROOT_OPTION_MASK) {
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001640 if ((root->flags | opts.flags) & CGRP_ROOT_SANE_BEHAVIOR) {
1641 pr_err("cgroup: sane_behavior: new mount options should match the existing superblock\n");
1642 ret = -EINVAL;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001643 goto out_unlock;
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001644 } else {
1645 pr_warning("cgroup: new mount options do not match the existing superblock, will be ignored\n");
1646 }
Tejun Heo873fe092013-04-14 20:15:26 -07001647 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001648 }
1649
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001650 ret = 0;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001651out_unlock:
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001652 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05001653 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001654
1655 if (ret && !IS_ERR_OR_NULL(sb))
1656 deactivate_locked_super(sb);
1657
Paul Menagec6d57f32009-09-23 15:56:19 -07001658 kfree(opts.release_agent);
1659 kfree(opts.name);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001660
1661 if (!ret)
1662 return dget(sb->s_root);
1663 else
1664 return ERR_PTR(ret);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001665}
1666
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09001667static void cgroup_kill_sb(struct super_block *sb)
1668{
Paul Menageddbcc7e2007-10-18 23:39:30 -07001669 struct cgroupfs_root *root = sb->s_fs_info;
Paul Menagebd89aab2007-10-18 23:40:44 -07001670 struct cgroup *cgrp = &root->top_cgroup;
Tejun Heo69d02062013-06-12 21:04:50 -07001671 struct cgrp_cset_link *link, *tmp_link;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001672 int ret;
1673
1674 BUG_ON(!root);
1675
1676 BUG_ON(root->number_of_cgroups != 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001677 BUG_ON(!list_empty(&cgrp->children));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001678
Tejun Heo31261212013-06-28 17:07:30 -07001679 mutex_lock(&cgrp->dentry->d_inode->i_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05001680 mutex_lock(&cgroup_tree_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001681 mutex_lock(&cgroup_mutex);
1682
1683 /* Rebind all subsystems back to the default hierarchy */
Tejun Heo1672d042013-06-25 18:04:54 -07001684 if (root->flags & CGRP_ROOT_SUBSYS_BOUND) {
1685 ret = rebind_subsystems(root, 0, root->subsys_mask);
1686 /* Shouldn't be able to fail ... */
1687 BUG_ON(ret);
1688 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001689
Paul Menage817929e2007-10-18 23:39:36 -07001690 /*
Tejun Heo69d02062013-06-12 21:04:50 -07001691 * Release all the links from cset_links to this hierarchy's
Paul Menage817929e2007-10-18 23:39:36 -07001692 * root cgroup
1693 */
1694 write_lock(&css_set_lock);
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -07001695
Tejun Heo69d02062013-06-12 21:04:50 -07001696 list_for_each_entry_safe(link, tmp_link, &cgrp->cset_links, cset_link) {
1697 list_del(&link->cset_link);
1698 list_del(&link->cgrp_link);
Paul Menage817929e2007-10-18 23:39:36 -07001699 kfree(link);
1700 }
1701 write_unlock(&css_set_lock);
1702
Paul Menage839ec542009-01-29 14:25:22 -08001703 if (!list_empty(&root->root_list)) {
1704 list_del(&root->root_list);
Tejun Heo9871bf92013-06-24 15:21:47 -07001705 cgroup_root_count--;
Paul Menage839ec542009-01-29 14:25:22 -08001706 }
Li Zefane5f6a862009-01-07 18:07:41 -08001707
Tejun Heofa3ca072013-04-14 11:36:56 -07001708 cgroup_exit_root_id(root);
1709
Paul Menageddbcc7e2007-10-18 23:39:30 -07001710 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05001711 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo31261212013-06-28 17:07:30 -07001712 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001713
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001714 simple_xattrs_free(&cgrp->xattrs);
1715
Paul Menageddbcc7e2007-10-18 23:39:30 -07001716 kill_litter_super(sb);
Tejun Heofa3ca072013-04-14 11:36:56 -07001717 cgroup_free_root(root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001718}
1719
1720static struct file_system_type cgroup_fs_type = {
1721 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001722 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001723 .kill_sb = cgroup_kill_sb,
1724};
1725
Greg KH676db4a2010-08-05 13:53:35 -07001726static struct kobject *cgroup_kobj;
1727
Li Zefana043e3b2008-02-23 15:24:09 -08001728/**
1729 * cgroup_path - generate the path of a cgroup
1730 * @cgrp: the cgroup in question
1731 * @buf: the buffer to write the path into
1732 * @buflen: the length of the buffer
1733 *
Li Zefan65dff752013-03-01 15:01:56 +08001734 * Writes path of cgroup into buf. Returns 0 on success, -errno on error.
1735 *
1736 * We can't generate cgroup path using dentry->d_name, as accessing
1737 * dentry->name must be protected by irq-unsafe dentry->d_lock or parent
1738 * inode's i_mutex, while on the other hand cgroup_path() can be called
1739 * with some irq-safe spinlocks held.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001740 */
Paul Menagebd89aab2007-10-18 23:40:44 -07001741int cgroup_path(const struct cgroup *cgrp, char *buf, int buflen)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001742{
Li Zefan65dff752013-03-01 15:01:56 +08001743 int ret = -ENAMETOOLONG;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001744 char *start;
Tejun Heofebfcef2012-11-19 08:13:36 -08001745
Tejun Heoda1f2962013-04-14 10:32:19 -07001746 if (!cgrp->parent) {
1747 if (strlcpy(buf, "/", buflen) >= buflen)
1748 return -ENAMETOOLONG;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001749 return 0;
1750 }
1751
Tao Ma316eb662012-11-08 21:36:38 +08001752 start = buf + buflen - 1;
Tao Ma316eb662012-11-08 21:36:38 +08001753 *start = '\0';
Li Zefan9a9686b2010-04-22 17:29:24 +08001754
Li Zefan65dff752013-03-01 15:01:56 +08001755 rcu_read_lock();
Tejun Heoda1f2962013-04-14 10:32:19 -07001756 do {
Li Zefan65dff752013-03-01 15:01:56 +08001757 const char *name = cgroup_name(cgrp);
1758 int len;
1759
1760 len = strlen(name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001761 if ((start -= len) < buf)
Li Zefan65dff752013-03-01 15:01:56 +08001762 goto out;
1763 memcpy(start, name, len);
Li Zefan9a9686b2010-04-22 17:29:24 +08001764
Paul Menageddbcc7e2007-10-18 23:39:30 -07001765 if (--start < buf)
Li Zefan65dff752013-03-01 15:01:56 +08001766 goto out;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001767 *start = '/';
Li Zefan65dff752013-03-01 15:01:56 +08001768
1769 cgrp = cgrp->parent;
Tejun Heoda1f2962013-04-14 10:32:19 -07001770 } while (cgrp->parent);
Li Zefan65dff752013-03-01 15:01:56 +08001771 ret = 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001772 memmove(buf, start, buf + buflen - start);
Li Zefan65dff752013-03-01 15:01:56 +08001773out:
1774 rcu_read_unlock();
1775 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001776}
Ben Blum67523c42010-03-10 15:22:11 -08001777EXPORT_SYMBOL_GPL(cgroup_path);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001778
Tejun Heo857a2be2013-04-14 20:50:08 -07001779/**
Tejun Heo913ffdb2013-07-11 16:34:48 -07001780 * task_cgroup_path - cgroup path of a task in the first cgroup hierarchy
Tejun Heo857a2be2013-04-14 20:50:08 -07001781 * @task: target task
Tejun Heo857a2be2013-04-14 20:50:08 -07001782 * @buf: the buffer to write the path into
1783 * @buflen: the length of the buffer
1784 *
Tejun Heo913ffdb2013-07-11 16:34:48 -07001785 * Determine @task's cgroup on the first (the one with the lowest non-zero
1786 * hierarchy_id) cgroup hierarchy and copy its path into @buf. This
1787 * function grabs cgroup_mutex and shouldn't be used inside locks used by
1788 * cgroup controller callbacks.
1789 *
1790 * Returns 0 on success, fails with -%ENAMETOOLONG if @buflen is too short.
Tejun Heo857a2be2013-04-14 20:50:08 -07001791 */
Tejun Heo913ffdb2013-07-11 16:34:48 -07001792int task_cgroup_path(struct task_struct *task, char *buf, size_t buflen)
Tejun Heo857a2be2013-04-14 20:50:08 -07001793{
1794 struct cgroupfs_root *root;
Tejun Heo913ffdb2013-07-11 16:34:48 -07001795 struct cgroup *cgrp;
1796 int hierarchy_id = 1, ret = 0;
1797
1798 if (buflen < 2)
1799 return -ENAMETOOLONG;
Tejun Heo857a2be2013-04-14 20:50:08 -07001800
1801 mutex_lock(&cgroup_mutex);
1802
Tejun Heo913ffdb2013-07-11 16:34:48 -07001803 root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id);
1804
Tejun Heo857a2be2013-04-14 20:50:08 -07001805 if (root) {
1806 cgrp = task_cgroup_from_root(task, root);
1807 ret = cgroup_path(cgrp, buf, buflen);
Tejun Heo913ffdb2013-07-11 16:34:48 -07001808 } else {
1809 /* if no hierarchy exists, everyone is in "/" */
1810 memcpy(buf, "/", 2);
Tejun Heo857a2be2013-04-14 20:50:08 -07001811 }
1812
1813 mutex_unlock(&cgroup_mutex);
Tejun Heo857a2be2013-04-14 20:50:08 -07001814 return ret;
1815}
Tejun Heo913ffdb2013-07-11 16:34:48 -07001816EXPORT_SYMBOL_GPL(task_cgroup_path);
Tejun Heo857a2be2013-04-14 20:50:08 -07001817
Ben Blum74a11662011-05-26 16:25:20 -07001818/*
Tejun Heo2f7ee562011-12-12 18:12:21 -08001819 * Control Group taskset
1820 */
Tejun Heo134d3372011-12-12 18:12:21 -08001821struct task_and_cgroup {
1822 struct task_struct *task;
1823 struct cgroup *cgrp;
Li Zefan6f4b7e62013-07-31 16:18:36 +08001824 struct css_set *cset;
Tejun Heo134d3372011-12-12 18:12:21 -08001825};
1826
Tejun Heo2f7ee562011-12-12 18:12:21 -08001827struct cgroup_taskset {
1828 struct task_and_cgroup single;
1829 struct flex_array *tc_array;
1830 int tc_array_len;
1831 int idx;
1832 struct cgroup *cur_cgrp;
1833};
1834
1835/**
1836 * cgroup_taskset_first - reset taskset and return the first task
1837 * @tset: taskset of interest
1838 *
1839 * @tset iteration is initialized and the first task is returned.
1840 */
1841struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
1842{
1843 if (tset->tc_array) {
1844 tset->idx = 0;
1845 return cgroup_taskset_next(tset);
1846 } else {
1847 tset->cur_cgrp = tset->single.cgrp;
1848 return tset->single.task;
1849 }
1850}
1851EXPORT_SYMBOL_GPL(cgroup_taskset_first);
1852
1853/**
1854 * cgroup_taskset_next - iterate to the next task in taskset
1855 * @tset: taskset of interest
1856 *
1857 * Return the next task in @tset. Iteration must have been initialized
1858 * with cgroup_taskset_first().
1859 */
1860struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
1861{
1862 struct task_and_cgroup *tc;
1863
1864 if (!tset->tc_array || tset->idx >= tset->tc_array_len)
1865 return NULL;
1866
1867 tc = flex_array_get(tset->tc_array, tset->idx++);
1868 tset->cur_cgrp = tc->cgrp;
1869 return tc->task;
1870}
1871EXPORT_SYMBOL_GPL(cgroup_taskset_next);
1872
1873/**
Tejun Heod99c8722013-08-08 20:11:27 -04001874 * cgroup_taskset_cur_css - return the matching css for the current task
Tejun Heo2f7ee562011-12-12 18:12:21 -08001875 * @tset: taskset of interest
Tejun Heod99c8722013-08-08 20:11:27 -04001876 * @subsys_id: the ID of the target subsystem
Tejun Heo2f7ee562011-12-12 18:12:21 -08001877 *
Tejun Heod99c8722013-08-08 20:11:27 -04001878 * Return the css for the current (last returned) task of @tset for
1879 * subsystem specified by @subsys_id. This function must be preceded by
1880 * either cgroup_taskset_first() or cgroup_taskset_next().
Tejun Heo2f7ee562011-12-12 18:12:21 -08001881 */
Tejun Heod99c8722013-08-08 20:11:27 -04001882struct cgroup_subsys_state *cgroup_taskset_cur_css(struct cgroup_taskset *tset,
1883 int subsys_id)
Tejun Heo2f7ee562011-12-12 18:12:21 -08001884{
Tejun Heoca8bdca2013-08-26 18:40:56 -04001885 return cgroup_css(tset->cur_cgrp, cgroup_subsys[subsys_id]);
Tejun Heo2f7ee562011-12-12 18:12:21 -08001886}
Tejun Heod99c8722013-08-08 20:11:27 -04001887EXPORT_SYMBOL_GPL(cgroup_taskset_cur_css);
Tejun Heo2f7ee562011-12-12 18:12:21 -08001888
1889/**
1890 * cgroup_taskset_size - return the number of tasks in taskset
1891 * @tset: taskset of interest
1892 */
1893int cgroup_taskset_size(struct cgroup_taskset *tset)
1894{
1895 return tset->tc_array ? tset->tc_array_len : 1;
1896}
1897EXPORT_SYMBOL_GPL(cgroup_taskset_size);
1898
1899
Ben Blum74a11662011-05-26 16:25:20 -07001900/*
1901 * cgroup_task_migrate - move a task from one cgroup to another.
1902 *
Tao Mad0b2fdd2012-11-20 22:06:18 +08001903 * Must be called with cgroup_mutex and threadgroup locked.
Ben Blum74a11662011-05-26 16:25:20 -07001904 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001905static void cgroup_task_migrate(struct cgroup *old_cgrp,
1906 struct task_struct *tsk,
1907 struct css_set *new_cset)
Ben Blum74a11662011-05-26 16:25:20 -07001908{
Tejun Heo5abb8852013-06-12 21:04:49 -07001909 struct css_set *old_cset;
Ben Blum74a11662011-05-26 16:25:20 -07001910
1911 /*
Mandeep Singh Baines026085e2011-12-21 20:18:35 -08001912 * We are synchronized through threadgroup_lock() against PF_EXITING
1913 * setting such that we can't race against cgroup_exit() changing the
1914 * css_set to init_css_set and dropping the old one.
Ben Blum74a11662011-05-26 16:25:20 -07001915 */
Frederic Weisbeckerc84cdf72011-12-21 20:03:18 +01001916 WARN_ON_ONCE(tsk->flags & PF_EXITING);
Tejun Heoa8ad8052013-06-21 15:52:04 -07001917 old_cset = task_css_set(tsk);
Ben Blum74a11662011-05-26 16:25:20 -07001918
Ben Blum74a11662011-05-26 16:25:20 -07001919 task_lock(tsk);
Tejun Heo5abb8852013-06-12 21:04:49 -07001920 rcu_assign_pointer(tsk->cgroups, new_cset);
Ben Blum74a11662011-05-26 16:25:20 -07001921 task_unlock(tsk);
1922
1923 /* Update the css_set linked lists if we're using them */
1924 write_lock(&css_set_lock);
1925 if (!list_empty(&tsk->cg_list))
Tejun Heo5abb8852013-06-12 21:04:49 -07001926 list_move(&tsk->cg_list, &new_cset->tasks);
Ben Blum74a11662011-05-26 16:25:20 -07001927 write_unlock(&css_set_lock);
1928
1929 /*
Tejun Heo5abb8852013-06-12 21:04:49 -07001930 * We just gained a reference on old_cset by taking it from the
1931 * task. As trading it for new_cset is protected by cgroup_mutex,
1932 * we're safe to drop it here; it will be freed under RCU.
Ben Blum74a11662011-05-26 16:25:20 -07001933 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001934 set_bit(CGRP_RELEASABLE, &old_cgrp->flags);
1935 put_css_set(old_cset);
Ben Blum74a11662011-05-26 16:25:20 -07001936}
1937
Li Zefana043e3b2008-02-23 15:24:09 -08001938/**
Li Zefan081aa452013-03-13 09:17:09 +08001939 * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup
Ben Blum74a11662011-05-26 16:25:20 -07001940 * @cgrp: the cgroup to attach to
Li Zefan081aa452013-03-13 09:17:09 +08001941 * @tsk: the task or the leader of the threadgroup to be attached
1942 * @threadgroup: attach the whole threadgroup?
Ben Blum74a11662011-05-26 16:25:20 -07001943 *
Tejun Heo257058a2011-12-12 18:12:21 -08001944 * Call holding cgroup_mutex and the group_rwsem of the leader. Will take
Li Zefan081aa452013-03-13 09:17:09 +08001945 * task_lock of @tsk or each thread in the threadgroup individually in turn.
Ben Blum74a11662011-05-26 16:25:20 -07001946 */
Tejun Heo47cfcd02013-04-07 09:29:51 -07001947static int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk,
1948 bool threadgroup)
Ben Blum74a11662011-05-26 16:25:20 -07001949{
1950 int retval, i, group_size;
Ben Blum74a11662011-05-26 16:25:20 -07001951 struct cgroupfs_root *root = cgrp->root;
Tejun Heo1c6727a2013-12-06 15:11:56 -05001952 struct cgroup_subsys_state *css, *failed_css = NULL;
Ben Blum74a11662011-05-26 16:25:20 -07001953 /* threadgroup list cursor and array */
Li Zefan081aa452013-03-13 09:17:09 +08001954 struct task_struct *leader = tsk;
Tejun Heo134d3372011-12-12 18:12:21 -08001955 struct task_and_cgroup *tc;
Ben Blumd8466872011-05-26 16:25:21 -07001956 struct flex_array *group;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001957 struct cgroup_taskset tset = { };
Ben Blum74a11662011-05-26 16:25:20 -07001958
1959 /*
1960 * step 0: in order to do expensive, possibly blocking operations for
1961 * every thread, we cannot iterate the thread group list, since it needs
1962 * rcu or tasklist locked. instead, build an array of all threads in the
Tejun Heo257058a2011-12-12 18:12:21 -08001963 * group - group_rwsem prevents new threads from appearing, and if
1964 * threads exit, this will just be an over-estimate.
Ben Blum74a11662011-05-26 16:25:20 -07001965 */
Li Zefan081aa452013-03-13 09:17:09 +08001966 if (threadgroup)
1967 group_size = get_nr_threads(tsk);
1968 else
1969 group_size = 1;
Ben Blumd8466872011-05-26 16:25:21 -07001970 /* flex_array supports very large thread-groups better than kmalloc. */
Tejun Heo134d3372011-12-12 18:12:21 -08001971 group = flex_array_alloc(sizeof(*tc), group_size, GFP_KERNEL);
Ben Blum74a11662011-05-26 16:25:20 -07001972 if (!group)
1973 return -ENOMEM;
Ben Blumd8466872011-05-26 16:25:21 -07001974 /* pre-allocate to guarantee space while iterating in rcu read-side. */
Li Zefan3ac17072013-03-12 15:36:00 -07001975 retval = flex_array_prealloc(group, 0, group_size, GFP_KERNEL);
Ben Blumd8466872011-05-26 16:25:21 -07001976 if (retval)
1977 goto out_free_group_list;
Ben Blum74a11662011-05-26 16:25:20 -07001978
Ben Blum74a11662011-05-26 16:25:20 -07001979 i = 0;
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08001980 /*
1981 * Prevent freeing of tasks while we take a snapshot. Tasks that are
1982 * already PF_EXITING could be freed from underneath us unless we
1983 * take an rcu_read_lock.
1984 */
1985 rcu_read_lock();
Ben Blum74a11662011-05-26 16:25:20 -07001986 do {
Tejun Heo134d3372011-12-12 18:12:21 -08001987 struct task_and_cgroup ent;
1988
Tejun Heocd3d0952011-12-12 18:12:21 -08001989 /* @tsk either already exited or can't exit until the end */
1990 if (tsk->flags & PF_EXITING)
Anjana V Kumarea847532013-10-12 10:59:17 +08001991 goto next;
Tejun Heocd3d0952011-12-12 18:12:21 -08001992
Ben Blum74a11662011-05-26 16:25:20 -07001993 /* as per above, nr_threads may decrease, but not increase. */
1994 BUG_ON(i >= group_size);
Tejun Heo134d3372011-12-12 18:12:21 -08001995 ent.task = tsk;
1996 ent.cgrp = task_cgroup_from_root(tsk, root);
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08001997 /* nothing to do if this task is already in the cgroup */
1998 if (ent.cgrp == cgrp)
Anjana V Kumarea847532013-10-12 10:59:17 +08001999 goto next;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002000 /*
2001 * saying GFP_ATOMIC has no effect here because we did prealloc
2002 * earlier, but it's good form to communicate our expectations.
2003 */
Tejun Heo134d3372011-12-12 18:12:21 -08002004 retval = flex_array_put(group, i, &ent, GFP_ATOMIC);
Ben Blumd8466872011-05-26 16:25:21 -07002005 BUG_ON(retval != 0);
Ben Blum74a11662011-05-26 16:25:20 -07002006 i++;
Anjana V Kumarea847532013-10-12 10:59:17 +08002007 next:
Li Zefan081aa452013-03-13 09:17:09 +08002008 if (!threadgroup)
2009 break;
Ben Blum74a11662011-05-26 16:25:20 -07002010 } while_each_thread(leader, tsk);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002011 rcu_read_unlock();
Ben Blum74a11662011-05-26 16:25:20 -07002012 /* remember the number of threads in the array for later. */
2013 group_size = i;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002014 tset.tc_array = group;
2015 tset.tc_array_len = group_size;
Ben Blum74a11662011-05-26 16:25:20 -07002016
Tejun Heo134d3372011-12-12 18:12:21 -08002017 /* methods shouldn't be called if no task is actually migrating */
2018 retval = 0;
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08002019 if (!group_size)
Mandeep Singh Bainesb07ef772011-12-21 20:18:36 -08002020 goto out_free_group_list;
Tejun Heo134d3372011-12-12 18:12:21 -08002021
Ben Blum74a11662011-05-26 16:25:20 -07002022 /*
2023 * step 1: check that we can legitimately attach to the cgroup.
2024 */
Tejun Heo1c6727a2013-12-06 15:11:56 -05002025 for_each_css(css, i, cgrp) {
2026 if (css->ss->can_attach) {
2027 retval = css->ss->can_attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002028 if (retval) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05002029 failed_css = css;
Ben Blum74a11662011-05-26 16:25:20 -07002030 goto out_cancel_attach;
2031 }
2032 }
Ben Blum74a11662011-05-26 16:25:20 -07002033 }
2034
2035 /*
2036 * step 2: make sure css_sets exist for all threads to be migrated.
2037 * we use find_css_set, which allocates a new one if necessary.
2038 */
Ben Blum74a11662011-05-26 16:25:20 -07002039 for (i = 0; i < group_size; i++) {
Tejun Heoa8ad8052013-06-21 15:52:04 -07002040 struct css_set *old_cset;
2041
Tejun Heo134d3372011-12-12 18:12:21 -08002042 tc = flex_array_get(group, i);
Tejun Heoa8ad8052013-06-21 15:52:04 -07002043 old_cset = task_css_set(tc->task);
Li Zefan6f4b7e62013-07-31 16:18:36 +08002044 tc->cset = find_css_set(old_cset, cgrp);
2045 if (!tc->cset) {
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002046 retval = -ENOMEM;
2047 goto out_put_css_set_refs;
Ben Blum74a11662011-05-26 16:25:20 -07002048 }
2049 }
2050
2051 /*
Tejun Heo494c1672011-12-12 18:12:22 -08002052 * step 3: now that we're guaranteed success wrt the css_sets,
2053 * proceed to move all tasks to the new cgroup. There are no
2054 * failure cases after here, so this is the commit point.
Ben Blum74a11662011-05-26 16:25:20 -07002055 */
Ben Blum74a11662011-05-26 16:25:20 -07002056 for (i = 0; i < group_size; i++) {
Tejun Heo134d3372011-12-12 18:12:21 -08002057 tc = flex_array_get(group, i);
Li Zefan6f4b7e62013-07-31 16:18:36 +08002058 cgroup_task_migrate(tc->cgrp, tc->task, tc->cset);
Ben Blum74a11662011-05-26 16:25:20 -07002059 }
2060 /* nothing is sensitive to fork() after this point. */
2061
2062 /*
Tejun Heo494c1672011-12-12 18:12:22 -08002063 * step 4: do subsystem attach callbacks.
Ben Blum74a11662011-05-26 16:25:20 -07002064 */
Tejun Heo1c6727a2013-12-06 15:11:56 -05002065 for_each_css(css, i, cgrp)
2066 if (css->ss->attach)
2067 css->ss->attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002068
2069 /*
2070 * step 5: success! and cleanup
2071 */
Ben Blum74a11662011-05-26 16:25:20 -07002072 retval = 0;
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002073out_put_css_set_refs:
2074 if (retval) {
2075 for (i = 0; i < group_size; i++) {
2076 tc = flex_array_get(group, i);
Li Zefan6f4b7e62013-07-31 16:18:36 +08002077 if (!tc->cset)
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002078 break;
Li Zefan6f4b7e62013-07-31 16:18:36 +08002079 put_css_set(tc->cset);
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002080 }
Ben Blum74a11662011-05-26 16:25:20 -07002081 }
2082out_cancel_attach:
Ben Blum74a11662011-05-26 16:25:20 -07002083 if (retval) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05002084 for_each_css(css, i, cgrp) {
2085 if (css == failed_css)
Ben Blum74a11662011-05-26 16:25:20 -07002086 break;
Tejun Heo1c6727a2013-12-06 15:11:56 -05002087 if (css->ss->cancel_attach)
2088 css->ss->cancel_attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002089 }
2090 }
Ben Blum74a11662011-05-26 16:25:20 -07002091out_free_group_list:
Ben Blumd8466872011-05-26 16:25:21 -07002092 flex_array_free(group);
Ben Blum74a11662011-05-26 16:25:20 -07002093 return retval;
2094}
2095
2096/*
2097 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08002098 * function to attach either it or all tasks in its threadgroup. Will lock
2099 * cgroup_mutex and threadgroup; may take task_lock of task.
Ben Blum74a11662011-05-26 16:25:20 -07002100 */
2101static int attach_task_by_pid(struct cgroup *cgrp, u64 pid, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002102{
Paul Menagebbcb81d2007-10-18 23:39:32 -07002103 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11002104 const struct cred *cred = current_cred(), *tcred;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002105 int ret;
2106
Ben Blum74a11662011-05-26 16:25:20 -07002107 if (!cgroup_lock_live_group(cgrp))
2108 return -ENODEV;
2109
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002110retry_find_task:
2111 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002112 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002113 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07002114 if (!tsk) {
Paul Menagebbcb81d2007-10-18 23:39:32 -07002115 rcu_read_unlock();
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09002116 ret = -ESRCH;
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002117 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002118 }
Ben Blum74a11662011-05-26 16:25:20 -07002119 /*
2120 * even if we're attaching all tasks in the thread group, we
2121 * only need to check permissions on one of them.
2122 */
David Howellsc69e8d92008-11-14 10:39:19 +11002123 tcred = __task_cred(tsk);
Eric W. Biederman14a590c2012-03-12 15:44:39 -07002124 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
2125 !uid_eq(cred->euid, tcred->uid) &&
2126 !uid_eq(cred->euid, tcred->suid)) {
David Howellsc69e8d92008-11-14 10:39:19 +11002127 rcu_read_unlock();
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002128 ret = -EACCES;
2129 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002130 }
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002131 } else
2132 tsk = current;
Tejun Heocd3d0952011-12-12 18:12:21 -08002133
2134 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002135 tsk = tsk->group_leader;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002136
2137 /*
Tejun Heo14a40ff2013-03-19 13:45:20 -07002138 * Workqueue threads may acquire PF_NO_SETAFFINITY and become
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002139 * trapped in a cpuset, or RT worker may be born in a cgroup
2140 * with no rt_runtime allocated. Just say no.
2141 */
Tejun Heo14a40ff2013-03-19 13:45:20 -07002142 if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) {
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002143 ret = -EINVAL;
2144 rcu_read_unlock();
2145 goto out_unlock_cgroup;
2146 }
2147
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002148 get_task_struct(tsk);
2149 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08002150
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002151 threadgroup_lock(tsk);
2152 if (threadgroup) {
2153 if (!thread_group_leader(tsk)) {
2154 /*
2155 * a race with de_thread from another thread's exec()
2156 * may strip us of our leadership, if this happens,
2157 * there is no choice but to throw this task away and
2158 * try again; this is
2159 * "double-double-toil-and-trouble-check locking".
2160 */
2161 threadgroup_unlock(tsk);
2162 put_task_struct(tsk);
2163 goto retry_find_task;
2164 }
Li Zefan081aa452013-03-13 09:17:09 +08002165 }
2166
2167 ret = cgroup_attach_task(cgrp, tsk, threadgroup);
2168
Tejun Heocd3d0952011-12-12 18:12:21 -08002169 threadgroup_unlock(tsk);
2170
Paul Menagebbcb81d2007-10-18 23:39:32 -07002171 put_task_struct(tsk);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002172out_unlock_cgroup:
Tejun Heo47cfcd02013-04-07 09:29:51 -07002173 mutex_unlock(&cgroup_mutex);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002174 return ret;
2175}
2176
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002177/**
2178 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
2179 * @from: attach to all cgroups of a given task
2180 * @tsk: the task to be attached
2181 */
2182int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
2183{
2184 struct cgroupfs_root *root;
2185 int retval = 0;
2186
Tejun Heo47cfcd02013-04-07 09:29:51 -07002187 mutex_lock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002188 for_each_active_root(root) {
Li Zefan6f4b7e62013-07-31 16:18:36 +08002189 struct cgroup *from_cgrp = task_cgroup_from_root(from, root);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002190
Li Zefan6f4b7e62013-07-31 16:18:36 +08002191 retval = cgroup_attach_task(from_cgrp, tsk, false);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002192 if (retval)
2193 break;
2194 }
Tejun Heo47cfcd02013-04-07 09:29:51 -07002195 mutex_unlock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002196
2197 return retval;
2198}
2199EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
2200
Tejun Heo182446d2013-08-08 20:11:24 -04002201static int cgroup_tasks_write(struct cgroup_subsys_state *css,
2202 struct cftype *cft, u64 pid)
Paul Menageaf351022008-07-25 01:47:01 -07002203{
Tejun Heo182446d2013-08-08 20:11:24 -04002204 return attach_task_by_pid(css->cgroup, pid, false);
Ben Blum74a11662011-05-26 16:25:20 -07002205}
2206
Tejun Heo182446d2013-08-08 20:11:24 -04002207static int cgroup_procs_write(struct cgroup_subsys_state *css,
2208 struct cftype *cft, u64 tgid)
Ben Blum74a11662011-05-26 16:25:20 -07002209{
Tejun Heo182446d2013-08-08 20:11:24 -04002210 return attach_task_by_pid(css->cgroup, tgid, true);
Paul Menageaf351022008-07-25 01:47:01 -07002211}
2212
Tejun Heo182446d2013-08-08 20:11:24 -04002213static int cgroup_release_agent_write(struct cgroup_subsys_state *css,
2214 struct cftype *cft, const char *buffer)
Paul Menagee788e062008-07-25 01:46:59 -07002215{
Tejun Heo5f469902014-02-11 11:52:48 -05002216 struct cgroupfs_root *root = css->cgroup->root;
2217
2218 BUILD_BUG_ON(sizeof(root->release_agent_path) < PATH_MAX);
Tejun Heo182446d2013-08-08 20:11:24 -04002219 if (!cgroup_lock_live_group(css->cgroup))
Paul Menagee788e062008-07-25 01:46:59 -07002220 return -ENODEV;
Tejun Heo69e943b2014-02-08 10:36:58 -05002221 spin_lock(&release_agent_path_lock);
Tejun Heo5f469902014-02-11 11:52:48 -05002222 strlcpy(root->release_agent_path, buffer,
2223 sizeof(root->release_agent_path));
Tejun Heo69e943b2014-02-08 10:36:58 -05002224 spin_unlock(&release_agent_path_lock);
Tejun Heo47cfcd02013-04-07 09:29:51 -07002225 mutex_unlock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07002226 return 0;
2227}
2228
Tejun Heo2da8ca82013-12-05 12:28:04 -05002229static int cgroup_release_agent_show(struct seq_file *seq, void *v)
Paul Menagee788e062008-07-25 01:46:59 -07002230{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002231 struct cgroup *cgrp = seq_css(seq)->cgroup;
Tejun Heo182446d2013-08-08 20:11:24 -04002232
Paul Menagee788e062008-07-25 01:46:59 -07002233 if (!cgroup_lock_live_group(cgrp))
2234 return -ENODEV;
2235 seq_puts(seq, cgrp->root->release_agent_path);
2236 seq_putc(seq, '\n');
Tejun Heo47cfcd02013-04-07 09:29:51 -07002237 mutex_unlock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07002238 return 0;
2239}
2240
Tejun Heo2da8ca82013-12-05 12:28:04 -05002241static int cgroup_sane_behavior_show(struct seq_file *seq, void *v)
Tejun Heo873fe092013-04-14 20:15:26 -07002242{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002243 struct cgroup *cgrp = seq_css(seq)->cgroup;
2244
2245 seq_printf(seq, "%d\n", cgroup_sane_behavior(cgrp));
Paul Menage81a6a5c2007-10-18 23:39:38 -07002246 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002247}
2248
Tejun Heoa742c592013-12-05 12:28:03 -05002249static ssize_t cgroup_file_write(struct file *file, const char __user *userbuf,
Tejun Heo182446d2013-08-08 20:11:24 -04002250 size_t nbytes, loff_t *ppos)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002251{
Tejun Heo182446d2013-08-08 20:11:24 -04002252 struct cfent *cfe = __d_cfe(file->f_dentry);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002253 struct cftype *cft = __d_cft(file->f_dentry);
Tejun Heo105347b2013-08-13 11:01:55 -04002254 struct cgroup_subsys_state *css = cfe->css;
Tejun Heo5f469902014-02-11 11:52:48 -05002255 size_t max_bytes = max(cft->max_write_len, PAGE_SIZE);
Tejun Heoa742c592013-12-05 12:28:03 -05002256 char *buf;
2257 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002258
Tejun Heo5f469902014-02-11 11:52:48 -05002259 if (nbytes > max_bytes)
Tejun Heoa742c592013-12-05 12:28:03 -05002260 return -E2BIG;
2261
2262 buf = kmalloc(nbytes + 1, GFP_KERNEL);
2263 if (!buf)
2264 return -ENOMEM;
2265
2266 if (copy_from_user(buf, userbuf, nbytes)) {
2267 ret = -EFAULT;
2268 goto out_free;
Pavel Emelyanovd447ea22008-04-29 01:00:08 -07002269 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002270
Tejun Heoa742c592013-12-05 12:28:03 -05002271 buf[nbytes] = '\0';
Paul Menageddbcc7e2007-10-18 23:39:30 -07002272
Tejun Heoa742c592013-12-05 12:28:03 -05002273 if (cft->write_string) {
2274 ret = cft->write_string(css, cft, strstrip(buf));
2275 } else if (cft->write_u64) {
2276 unsigned long long v;
2277 ret = kstrtoull(buf, 0, &v);
2278 if (!ret)
2279 ret = cft->write_u64(css, cft, v);
2280 } else if (cft->write_s64) {
2281 long long v;
2282 ret = kstrtoll(buf, 0, &v);
2283 if (!ret)
2284 ret = cft->write_s64(css, cft, v);
2285 } else if (cft->trigger) {
2286 ret = cft->trigger(css, (unsigned int)cft->private);
2287 } else {
2288 ret = -EINVAL;
2289 }
2290out_free:
2291 kfree(buf);
2292 return ret ?: nbytes;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002293}
2294
Paul Menage91796562008-04-29 01:00:01 -07002295/*
2296 * seqfile ops/methods for returning structured data. Currently just
2297 * supports string->u64 maps, but can be extended in future.
2298 */
2299
Tejun Heo6612f052013-12-05 12:28:04 -05002300static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos)
Paul Menage91796562008-04-29 01:00:01 -07002301{
Tejun Heo6612f052013-12-05 12:28:04 -05002302 struct cftype *cft = seq_cft(seq);
2303
2304 if (cft->seq_start) {
2305 return cft->seq_start(seq, ppos);
2306 } else {
2307 /*
2308 * The same behavior and code as single_open(). Returns
2309 * !NULL if pos is at the beginning; otherwise, NULL.
2310 */
2311 return NULL + !*ppos;
2312 }
2313}
2314
2315static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos)
2316{
2317 struct cftype *cft = seq_cft(seq);
2318
2319 if (cft->seq_next) {
2320 return cft->seq_next(seq, v, ppos);
2321 } else {
2322 /*
2323 * The same behavior and code as single_open(), always
2324 * terminate after the initial read.
2325 */
2326 ++*ppos;
2327 return NULL;
2328 }
2329}
2330
2331static void cgroup_seqfile_stop(struct seq_file *seq, void *v)
2332{
2333 struct cftype *cft = seq_cft(seq);
2334
2335 if (cft->seq_stop)
2336 cft->seq_stop(seq, v);
Paul Menage91796562008-04-29 01:00:01 -07002337}
2338
2339static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2340{
Tejun Heo7da11272013-12-05 12:28:04 -05002341 struct cftype *cft = seq_cft(m);
2342 struct cgroup_subsys_state *css = seq_css(m);
Li Zefane0798ce2013-07-31 17:36:25 +08002343
Tejun Heo2da8ca82013-12-05 12:28:04 -05002344 if (cft->seq_show)
2345 return cft->seq_show(m, arg);
Paul Menage91796562008-04-29 01:00:01 -07002346
Tejun Heo896f5192013-12-05 12:28:04 -05002347 if (cft->read_u64)
2348 seq_printf(m, "%llu\n", cft->read_u64(css, cft));
2349 else if (cft->read_s64)
2350 seq_printf(m, "%lld\n", cft->read_s64(css, cft));
2351 else
2352 return -EINVAL;
2353 return 0;
Paul Menage91796562008-04-29 01:00:01 -07002354}
2355
Tejun Heo6612f052013-12-05 12:28:04 -05002356static struct seq_operations cgroup_seq_operations = {
2357 .start = cgroup_seqfile_start,
2358 .next = cgroup_seqfile_next,
2359 .stop = cgroup_seqfile_stop,
2360 .show = cgroup_seqfile_show,
Paul Menage91796562008-04-29 01:00:01 -07002361};
2362
Paul Menageddbcc7e2007-10-18 23:39:30 -07002363static int cgroup_file_open(struct inode *inode, struct file *file)
2364{
Tejun Heof7d58812013-08-08 20:11:23 -04002365 struct cfent *cfe = __d_cfe(file->f_dentry);
2366 struct cftype *cft = __d_cft(file->f_dentry);
Tejun Heo105347b2013-08-13 11:01:55 -04002367 struct cgroup *cgrp = __d_cgrp(cfe->dentry->d_parent);
2368 struct cgroup_subsys_state *css;
Tejun Heo6612f052013-12-05 12:28:04 -05002369 struct cgroup_open_file *of;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002370 int err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002371
2372 err = generic_file_open(inode, file);
2373 if (err)
2374 return err;
Tejun Heof7d58812013-08-08 20:11:23 -04002375
2376 /*
2377 * If the file belongs to a subsystem, pin the css. Will be
2378 * unpinned either on open failure or release. This ensures that
2379 * @css stays alive for all file operations.
2380 */
Tejun Heo105347b2013-08-13 11:01:55 -04002381 rcu_read_lock();
Tejun Heoca8bdca2013-08-26 18:40:56 -04002382 css = cgroup_css(cgrp, cft->ss);
2383 if (cft->ss && !css_tryget(css))
2384 css = NULL;
Tejun Heo105347b2013-08-13 11:01:55 -04002385 rcu_read_unlock();
2386
Tejun Heo0bfb4aa2013-08-15 11:42:36 -04002387 if (!css)
Tejun Heof7d58812013-08-08 20:11:23 -04002388 return -ENODEV;
Li Zefan75139b82009-01-07 18:07:33 -08002389
Tejun Heo0bfb4aa2013-08-15 11:42:36 -04002390 /*
2391 * @cfe->css is used by read/write/close to determine the
2392 * associated css. @file->private_data would be a better place but
2393 * that's already used by seqfile. Multiple accessors may use it
2394 * simultaneously which is okay as the association never changes.
2395 */
2396 WARN_ON_ONCE(cfe->css && cfe->css != css);
2397 cfe->css = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002398
Tejun Heo6612f052013-12-05 12:28:04 -05002399 of = __seq_open_private(file, &cgroup_seq_operations,
2400 sizeof(struct cgroup_open_file));
2401 if (of) {
2402 of->cfe = cfe;
2403 return 0;
Li Zefane0798ce2013-07-31 17:36:25 +08002404 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002405
Tejun Heo6612f052013-12-05 12:28:04 -05002406 if (css->ss)
Tejun Heof7d58812013-08-08 20:11:23 -04002407 css_put(css);
Tejun Heo6612f052013-12-05 12:28:04 -05002408 return -ENOMEM;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002409}
2410
2411static int cgroup_file_release(struct inode *inode, struct file *file)
2412{
Tejun Heof7d58812013-08-08 20:11:23 -04002413 struct cfent *cfe = __d_cfe(file->f_dentry);
Tejun Heo105347b2013-08-13 11:01:55 -04002414 struct cgroup_subsys_state *css = cfe->css;
Tejun Heof7d58812013-08-08 20:11:23 -04002415
Tejun Heo67f4c362013-08-08 20:11:24 -04002416 if (css->ss)
Tejun Heof7d58812013-08-08 20:11:23 -04002417 css_put(css);
Tejun Heo6612f052013-12-05 12:28:04 -05002418 return seq_release_private(inode, file);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002419}
2420
2421/*
2422 * cgroup_rename - Only allow simple rename of directories in place.
2423 */
2424static int cgroup_rename(struct inode *old_dir, struct dentry *old_dentry,
2425 struct inode *new_dir, struct dentry *new_dentry)
2426{
Li Zefan65dff752013-03-01 15:01:56 +08002427 int ret;
2428 struct cgroup_name *name, *old_name;
2429 struct cgroup *cgrp;
2430
2431 /*
2432 * It's convinient to use parent dir's i_mutex to protected
2433 * cgrp->name.
2434 */
2435 lockdep_assert_held(&old_dir->i_mutex);
2436
Paul Menageddbcc7e2007-10-18 23:39:30 -07002437 if (!S_ISDIR(old_dentry->d_inode->i_mode))
2438 return -ENOTDIR;
2439 if (new_dentry->d_inode)
2440 return -EEXIST;
2441 if (old_dir != new_dir)
2442 return -EIO;
Li Zefan65dff752013-03-01 15:01:56 +08002443
2444 cgrp = __d_cgrp(old_dentry);
2445
Tejun Heo6db8e852013-06-14 11:18:22 -07002446 /*
2447 * This isn't a proper migration and its usefulness is very
2448 * limited. Disallow if sane_behavior.
2449 */
2450 if (cgroup_sane_behavior(cgrp))
2451 return -EPERM;
2452
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05002453 name = cgroup_alloc_name(new_dentry->d_name.name);
Li Zefan65dff752013-03-01 15:01:56 +08002454 if (!name)
2455 return -ENOMEM;
2456
2457 ret = simple_rename(old_dir, old_dentry, new_dir, new_dentry);
2458 if (ret) {
2459 kfree(name);
2460 return ret;
2461 }
2462
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07002463 old_name = rcu_dereference_protected(cgrp->name, true);
Li Zefan65dff752013-03-01 15:01:56 +08002464 rcu_assign_pointer(cgrp->name, name);
2465
2466 kfree_rcu(old_name, rcu_head);
2467 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002468}
2469
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002470static struct simple_xattrs *__d_xattrs(struct dentry *dentry)
2471{
2472 if (S_ISDIR(dentry->d_inode->i_mode))
2473 return &__d_cgrp(dentry)->xattrs;
2474 else
Li Zefan712317a2013-04-18 23:09:52 -07002475 return &__d_cfe(dentry)->xattrs;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002476}
2477
2478static inline int xattr_enabled(struct dentry *dentry)
2479{
2480 struct cgroupfs_root *root = dentry->d_sb->s_fs_info;
Tejun Heo93438622013-04-14 20:15:25 -07002481 return root->flags & CGRP_ROOT_XATTR;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002482}
2483
2484static bool is_valid_xattr(const char *name)
2485{
2486 if (!strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN) ||
2487 !strncmp(name, XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN))
2488 return true;
2489 return false;
2490}
2491
2492static int cgroup_setxattr(struct dentry *dentry, const char *name,
2493 const void *val, size_t size, int flags)
2494{
2495 if (!xattr_enabled(dentry))
2496 return -EOPNOTSUPP;
2497 if (!is_valid_xattr(name))
2498 return -EINVAL;
2499 return simple_xattr_set(__d_xattrs(dentry), name, val, size, flags);
2500}
2501
2502static int cgroup_removexattr(struct dentry *dentry, const char *name)
2503{
2504 if (!xattr_enabled(dentry))
2505 return -EOPNOTSUPP;
2506 if (!is_valid_xattr(name))
2507 return -EINVAL;
2508 return simple_xattr_remove(__d_xattrs(dentry), name);
2509}
2510
2511static ssize_t cgroup_getxattr(struct dentry *dentry, const char *name,
2512 void *buf, size_t size)
2513{
2514 if (!xattr_enabled(dentry))
2515 return -EOPNOTSUPP;
2516 if (!is_valid_xattr(name))
2517 return -EINVAL;
2518 return simple_xattr_get(__d_xattrs(dentry), name, buf, size);
2519}
2520
2521static ssize_t cgroup_listxattr(struct dentry *dentry, char *buf, size_t size)
2522{
2523 if (!xattr_enabled(dentry))
2524 return -EOPNOTSUPP;
2525 return simple_xattr_list(__d_xattrs(dentry), buf, size);
2526}
2527
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002528static const struct file_operations cgroup_file_operations = {
Tejun Heo896f5192013-12-05 12:28:04 -05002529 .read = seq_read,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002530 .write = cgroup_file_write,
2531 .llseek = generic_file_llseek,
2532 .open = cgroup_file_open,
2533 .release = cgroup_file_release,
2534};
2535
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002536static const struct inode_operations cgroup_file_inode_operations = {
2537 .setxattr = cgroup_setxattr,
2538 .getxattr = cgroup_getxattr,
2539 .listxattr = cgroup_listxattr,
2540 .removexattr = cgroup_removexattr,
2541};
2542
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07002543static const struct inode_operations cgroup_dir_inode_operations = {
Al Viro786e1442013-07-14 17:50:23 +04002544 .lookup = simple_lookup,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002545 .mkdir = cgroup_mkdir,
2546 .rmdir = cgroup_rmdir,
2547 .rename = cgroup_rename,
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002548 .setxattr = cgroup_setxattr,
2549 .getxattr = cgroup_getxattr,
2550 .listxattr = cgroup_listxattr,
2551 .removexattr = cgroup_removexattr,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002552};
2553
Al Viroa5e7ed32011-07-26 01:55:55 -04002554static int cgroup_create_file(struct dentry *dentry, umode_t mode,
Nick Piggin5adcee12011-01-07 17:49:20 +11002555 struct super_block *sb)
2556{
Paul Menageddbcc7e2007-10-18 23:39:30 -07002557 struct inode *inode;
2558
2559 if (!dentry)
2560 return -ENOENT;
2561 if (dentry->d_inode)
2562 return -EEXIST;
2563
2564 inode = cgroup_new_inode(mode, sb);
2565 if (!inode)
2566 return -ENOMEM;
2567
2568 if (S_ISDIR(mode)) {
2569 inode->i_op = &cgroup_dir_inode_operations;
2570 inode->i_fop = &simple_dir_operations;
2571
2572 /* start off with i_nlink == 2 (for "." entry) */
2573 inc_nlink(inode);
Tejun Heo28fd6f32012-11-19 08:13:36 -08002574 inc_nlink(dentry->d_parent->d_inode);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002575
Tejun Heob8a2df62012-11-19 08:13:37 -08002576 /*
2577 * Control reaches here with cgroup_mutex held.
2578 * @inode->i_mutex should nest outside cgroup_mutex but we
2579 * want to populate it immediately without releasing
2580 * cgroup_mutex. As @inode isn't visible to anyone else
2581 * yet, trylock will always succeed without affecting
2582 * lockdep checks.
2583 */
2584 WARN_ON_ONCE(!mutex_trylock(&inode->i_mutex));
Paul Menageddbcc7e2007-10-18 23:39:30 -07002585 } else if (S_ISREG(mode)) {
2586 inode->i_size = 0;
2587 inode->i_fop = &cgroup_file_operations;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002588 inode->i_op = &cgroup_file_inode_operations;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002589 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002590 d_instantiate(dentry, inode);
2591 dget(dentry); /* Extra count - pin the dentry in core */
2592 return 0;
2593}
2594
Li Zefan099fca32009-04-02 16:57:29 -07002595/**
2596 * cgroup_file_mode - deduce file mode of a control file
2597 * @cft: the control file in question
2598 *
2599 * returns cft->mode if ->mode is not 0
2600 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
2601 * returns S_IRUGO if it has only a read handler
2602 * returns S_IWUSR if it has only a write hander
2603 */
Al Viroa5e7ed32011-07-26 01:55:55 -04002604static umode_t cgroup_file_mode(const struct cftype *cft)
Li Zefan099fca32009-04-02 16:57:29 -07002605{
Al Viroa5e7ed32011-07-26 01:55:55 -04002606 umode_t mode = 0;
Li Zefan099fca32009-04-02 16:57:29 -07002607
2608 if (cft->mode)
2609 return cft->mode;
2610
Tejun Heo2da8ca82013-12-05 12:28:04 -05002611 if (cft->read_u64 || cft->read_s64 || cft->seq_show)
Li Zefan099fca32009-04-02 16:57:29 -07002612 mode |= S_IRUGO;
2613
Tejun Heo6e0755b2013-12-05 12:28:03 -05002614 if (cft->write_u64 || cft->write_s64 || cft->write_string ||
2615 cft->trigger)
Li Zefan099fca32009-04-02 16:57:29 -07002616 mode |= S_IWUSR;
2617
2618 return mode;
2619}
2620
Tejun Heo2bb566c2013-08-08 20:11:23 -04002621static int cgroup_add_file(struct cgroup *cgrp, struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002622{
Paul Menagebd89aab2007-10-18 23:40:44 -07002623 struct dentry *dir = cgrp->dentry;
Tejun Heo05ef1d72012-04-01 12:09:56 -07002624 struct cgroup *parent = __d_cgrp(dir);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002625 struct dentry *dentry;
Tejun Heo05ef1d72012-04-01 12:09:56 -07002626 struct cfent *cfe;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002627 int error;
Al Viroa5e7ed32011-07-26 01:55:55 -04002628 umode_t mode;
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05002629 char name[CGROUP_FILE_NAME_MAX];
Tejun Heo05ef1d72012-04-01 12:09:56 -07002630
Paul Menageddbcc7e2007-10-18 23:39:30 -07002631 BUG_ON(!mutex_is_locked(&dir->d_inode->i_mutex));
Tejun Heo05ef1d72012-04-01 12:09:56 -07002632
2633 cfe = kzalloc(sizeof(*cfe), GFP_KERNEL);
2634 if (!cfe)
2635 return -ENOMEM;
2636
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05002637 cgroup_file_name(cgrp, cft, name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002638 dentry = lookup_one_len(name, dir, strlen(name));
Tejun Heo05ef1d72012-04-01 12:09:56 -07002639 if (IS_ERR(dentry)) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07002640 error = PTR_ERR(dentry);
Tejun Heo05ef1d72012-04-01 12:09:56 -07002641 goto out;
2642 }
2643
Li Zefand6cbf352013-05-14 19:44:20 +08002644 cfe->type = (void *)cft;
2645 cfe->dentry = dentry;
2646 dentry->d_fsdata = cfe;
2647 simple_xattrs_init(&cfe->xattrs);
2648
Tejun Heo05ef1d72012-04-01 12:09:56 -07002649 mode = cgroup_file_mode(cft);
2650 error = cgroup_create_file(dentry, mode | S_IFREG, cgrp->root->sb);
2651 if (!error) {
Tejun Heo05ef1d72012-04-01 12:09:56 -07002652 list_add_tail(&cfe->node, &parent->files);
2653 cfe = NULL;
2654 }
2655 dput(dentry);
2656out:
2657 kfree(cfe);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002658 return error;
2659}
2660
Tejun Heob1f28d32013-06-28 16:24:10 -07002661/**
2662 * cgroup_addrm_files - add or remove files to a cgroup directory
2663 * @cgrp: the target cgroup
Tejun Heob1f28d32013-06-28 16:24:10 -07002664 * @cfts: array of cftypes to be added
2665 * @is_add: whether to add or remove
2666 *
2667 * Depending on @is_add, add or remove files defined by @cfts on @cgrp.
Tejun Heo2bb566c2013-08-08 20:11:23 -04002668 * For removals, this function never fails. If addition fails, this
2669 * function doesn't remove files already added. The caller is responsible
2670 * for cleaning up.
Tejun Heob1f28d32013-06-28 16:24:10 -07002671 */
Tejun Heo2bb566c2013-08-08 20:11:23 -04002672static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
2673 bool is_add)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002674{
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002675 struct cftype *cft;
Tejun Heob1f28d32013-06-28 16:24:10 -07002676 int ret;
2677
2678 lockdep_assert_held(&cgrp->dentry->d_inode->i_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05002679 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heodb0416b2012-04-01 12:09:55 -07002680
2681 for (cft = cfts; cft->name[0] != '\0'; cft++) {
Gao fengf33fddc2012-12-06 14:38:57 +08002682 /* does cft->flags tell us to skip this file on @cgrp? */
Tejun Heo873fe092013-04-14 20:15:26 -07002683 if ((cft->flags & CFTYPE_INSANE) && cgroup_sane_behavior(cgrp))
2684 continue;
Gao fengf33fddc2012-12-06 14:38:57 +08002685 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgrp->parent)
2686 continue;
2687 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgrp->parent)
2688 continue;
2689
Li Zefan2739d3c2013-01-21 18:18:33 +08002690 if (is_add) {
Tejun Heo2bb566c2013-08-08 20:11:23 -04002691 ret = cgroup_add_file(cgrp, cft);
Tejun Heob1f28d32013-06-28 16:24:10 -07002692 if (ret) {
Li Zefan2739d3c2013-01-21 18:18:33 +08002693 pr_warn("cgroup_addrm_files: failed to add %s, err=%d\n",
Tejun Heob1f28d32013-06-28 16:24:10 -07002694 cft->name, ret);
2695 return ret;
2696 }
Li Zefan2739d3c2013-01-21 18:18:33 +08002697 } else {
2698 cgroup_rm_file(cgrp, cft);
Tejun Heodb0416b2012-04-01 12:09:55 -07002699 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002700 }
Tejun Heob1f28d32013-06-28 16:24:10 -07002701 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002702}
2703
Tejun Heo8e3f6542012-04-01 12:09:55 -07002704static void cgroup_cfts_prepare(void)
Li Zefane8c82d22013-06-18 18:48:37 +08002705 __acquires(&cgroup_mutex)
Tejun Heo8e3f6542012-04-01 12:09:55 -07002706{
2707 /*
2708 * Thanks to the entanglement with vfs inode locking, we can't walk
2709 * the existing cgroups under cgroup_mutex and create files.
Tejun Heo492eb212013-08-08 20:11:25 -04002710 * Instead, we use css_for_each_descendant_pre() and drop RCU read
2711 * lock before calling cgroup_addrm_files().
Tejun Heo8e3f6542012-04-01 12:09:55 -07002712 */
Tejun Heoace2bee2014-02-11 11:52:47 -05002713 mutex_lock(&cgroup_tree_mutex);
Tejun Heo8e3f6542012-04-01 12:09:55 -07002714 mutex_lock(&cgroup_mutex);
2715}
2716
Tejun Heo2bb566c2013-08-08 20:11:23 -04002717static int cgroup_cfts_commit(struct cftype *cfts, bool is_add)
Li Zefane8c82d22013-06-18 18:48:37 +08002718 __releases(&cgroup_mutex)
Tejun Heo8e3f6542012-04-01 12:09:55 -07002719{
2720 LIST_HEAD(pending);
Tejun Heo2bb566c2013-08-08 20:11:23 -04002721 struct cgroup_subsys *ss = cfts[0].ss;
Tejun Heo492eb212013-08-08 20:11:25 -04002722 struct cgroup *root = &ss->root->top_cgroup;
Li Zefan084457f2013-06-18 18:40:19 +08002723 struct super_block *sb = ss->root->sb;
Li Zefane8c82d22013-06-18 18:48:37 +08002724 struct dentry *prev = NULL;
2725 struct inode *inode;
Tejun Heo492eb212013-08-08 20:11:25 -04002726 struct cgroup_subsys_state *css;
Tejun Heo00356bd2013-06-18 11:14:22 -07002727 u64 update_before;
Tejun Heo9ccece82013-06-28 16:24:11 -07002728 int ret = 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002729
Tejun Heo4ac06012014-02-11 11:52:47 -05002730 mutex_unlock(&cgroup_mutex);
2731
Tejun Heo8e3f6542012-04-01 12:09:55 -07002732 /* %NULL @cfts indicates abort and don't bother if @ss isn't attached */
Tejun Heo9871bf92013-06-24 15:21:47 -07002733 if (!cfts || ss->root == &cgroup_dummy_root ||
Li Zefane8c82d22013-06-18 18:48:37 +08002734 !atomic_inc_not_zero(&sb->s_active)) {
Tejun Heoace2bee2014-02-11 11:52:47 -05002735 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo9ccece82013-06-28 16:24:11 -07002736 return 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002737 }
2738
Li Zefane8c82d22013-06-18 18:48:37 +08002739 /*
2740 * All cgroups which are created after we drop cgroup_mutex will
2741 * have the updated set of files, so we only need to update the
Tejun Heo00356bd2013-06-18 11:14:22 -07002742 * cgroups created before the current @cgroup_serial_nr_next.
Li Zefane8c82d22013-06-18 18:48:37 +08002743 */
Tejun Heo00356bd2013-06-18 11:14:22 -07002744 update_before = cgroup_serial_nr_next;
Li Zefane8c82d22013-06-18 18:48:37 +08002745
Li Zefane8c82d22013-06-18 18:48:37 +08002746 /* add/rm files for all cgroups created before */
Tejun Heoca8bdca2013-08-26 18:40:56 -04002747 css_for_each_descendant_pre(css, cgroup_css(root, ss)) {
Tejun Heo492eb212013-08-08 20:11:25 -04002748 struct cgroup *cgrp = css->cgroup;
2749
Li Zefane8c82d22013-06-18 18:48:37 +08002750 if (cgroup_is_dead(cgrp))
2751 continue;
2752
2753 inode = cgrp->dentry->d_inode;
2754 dget(cgrp->dentry);
Li Zefane8c82d22013-06-18 18:48:37 +08002755 dput(prev);
2756 prev = cgrp->dentry;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002757
Tejun Heoace2bee2014-02-11 11:52:47 -05002758 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo8e3f6542012-04-01 12:09:55 -07002759 mutex_lock(&inode->i_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05002760 mutex_lock(&cgroup_tree_mutex);
Tejun Heo00356bd2013-06-18 11:14:22 -07002761 if (cgrp->serial_nr < update_before && !cgroup_is_dead(cgrp))
Tejun Heo2bb566c2013-08-08 20:11:23 -04002762 ret = cgroup_addrm_files(cgrp, cfts, is_add);
Tejun Heo8e3f6542012-04-01 12:09:55 -07002763 mutex_unlock(&inode->i_mutex);
Tejun Heo9ccece82013-06-28 16:24:11 -07002764 if (ret)
2765 break;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002766 }
Tejun Heoace2bee2014-02-11 11:52:47 -05002767 mutex_unlock(&cgroup_tree_mutex);
Li Zefane8c82d22013-06-18 18:48:37 +08002768 dput(prev);
2769 deactivate_super(sb);
Tejun Heo9ccece82013-06-28 16:24:11 -07002770 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002771}
2772
2773/**
2774 * cgroup_add_cftypes - add an array of cftypes to a subsystem
2775 * @ss: target cgroup subsystem
2776 * @cfts: zero-length name terminated array of cftypes
2777 *
2778 * Register @cfts to @ss. Files described by @cfts are created for all
2779 * existing cgroups to which @ss is attached and all future cgroups will
2780 * have them too. This function can be called anytime whether @ss is
2781 * attached or not.
2782 *
2783 * Returns 0 on successful registration, -errno on failure. Note that this
2784 * function currently returns 0 as long as @cfts registration is successful
2785 * even if some file creation attempts on existing cgroups fail.
2786 */
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002787int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo8e3f6542012-04-01 12:09:55 -07002788{
2789 struct cftype_set *set;
Tejun Heo2bb566c2013-08-08 20:11:23 -04002790 struct cftype *cft;
Tejun Heo9ccece82013-06-28 16:24:11 -07002791 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002792
2793 set = kzalloc(sizeof(*set), GFP_KERNEL);
2794 if (!set)
2795 return -ENOMEM;
2796
Tejun Heo2bb566c2013-08-08 20:11:23 -04002797 for (cft = cfts; cft->name[0] != '\0'; cft++)
2798 cft->ss = ss;
2799
Tejun Heo8e3f6542012-04-01 12:09:55 -07002800 cgroup_cfts_prepare();
2801 set->cfts = cfts;
2802 list_add_tail(&set->node, &ss->cftsets);
Tejun Heo2bb566c2013-08-08 20:11:23 -04002803 ret = cgroup_cfts_commit(cfts, true);
Tejun Heo9ccece82013-06-28 16:24:11 -07002804 if (ret)
Tejun Heo2bb566c2013-08-08 20:11:23 -04002805 cgroup_rm_cftypes(cfts);
Tejun Heo9ccece82013-06-28 16:24:11 -07002806 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002807}
2808EXPORT_SYMBOL_GPL(cgroup_add_cftypes);
2809
Li Zefana043e3b2008-02-23 15:24:09 -08002810/**
Tejun Heo79578622012-04-01 12:09:56 -07002811 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
Tejun Heo79578622012-04-01 12:09:56 -07002812 * @cfts: zero-length name terminated array of cftypes
2813 *
Tejun Heo2bb566c2013-08-08 20:11:23 -04002814 * Unregister @cfts. Files described by @cfts are removed from all
2815 * existing cgroups and all future cgroups won't have them either. This
2816 * function can be called anytime whether @cfts' subsys is attached or not.
Tejun Heo79578622012-04-01 12:09:56 -07002817 *
2818 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
Tejun Heo2bb566c2013-08-08 20:11:23 -04002819 * registered.
Tejun Heo79578622012-04-01 12:09:56 -07002820 */
Tejun Heo2bb566c2013-08-08 20:11:23 -04002821int cgroup_rm_cftypes(struct cftype *cfts)
Tejun Heo79578622012-04-01 12:09:56 -07002822{
2823 struct cftype_set *set;
2824
Tejun Heo2bb566c2013-08-08 20:11:23 -04002825 if (!cfts || !cfts[0].ss)
2826 return -ENOENT;
2827
Tejun Heo79578622012-04-01 12:09:56 -07002828 cgroup_cfts_prepare();
2829
Tejun Heo2bb566c2013-08-08 20:11:23 -04002830 list_for_each_entry(set, &cfts[0].ss->cftsets, node) {
Tejun Heo79578622012-04-01 12:09:56 -07002831 if (set->cfts == cfts) {
Li Zefanf57947d2013-06-18 18:41:53 +08002832 list_del(&set->node);
2833 kfree(set);
Tejun Heo2bb566c2013-08-08 20:11:23 -04002834 cgroup_cfts_commit(cfts, false);
Tejun Heo79578622012-04-01 12:09:56 -07002835 return 0;
2836 }
2837 }
2838
Tejun Heo2bb566c2013-08-08 20:11:23 -04002839 cgroup_cfts_commit(NULL, false);
Tejun Heo79578622012-04-01 12:09:56 -07002840 return -ENOENT;
2841}
2842
2843/**
Li Zefana043e3b2008-02-23 15:24:09 -08002844 * cgroup_task_count - count the number of tasks in a cgroup.
2845 * @cgrp: the cgroup in question
2846 *
2847 * Return the number of tasks in the cgroup.
2848 */
Paul Menagebd89aab2007-10-18 23:40:44 -07002849int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002850{
2851 int count = 0;
Tejun Heo69d02062013-06-12 21:04:50 -07002852 struct cgrp_cset_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002853
Paul Menage817929e2007-10-18 23:39:36 -07002854 read_lock(&css_set_lock);
Tejun Heo69d02062013-06-12 21:04:50 -07002855 list_for_each_entry(link, &cgrp->cset_links, cset_link)
2856 count += atomic_read(&link->cset->refcount);
Paul Menage817929e2007-10-18 23:39:36 -07002857 read_unlock(&css_set_lock);
Paul Menagebbcb81d2007-10-18 23:39:32 -07002858 return count;
2859}
2860
2861/*
Tejun Heo0942eee2013-08-08 20:11:26 -04002862 * To reduce the fork() overhead for systems that are not actually using
2863 * their cgroups capability, we don't maintain the lists running through
2864 * each css_set to its tasks until we see the list actually used - in other
Tejun Heo72ec7022013-08-08 20:11:26 -04002865 * words after the first call to css_task_iter_start().
Cliff Wickman31a7df02008-02-07 00:14:42 -08002866 */
Adrian Bunk3df91fe2008-04-29 00:59:54 -07002867static void cgroup_enable_task_cg_lists(void)
Cliff Wickman31a7df02008-02-07 00:14:42 -08002868{
2869 struct task_struct *p, *g;
2870 write_lock(&css_set_lock);
2871 use_task_css_set_links = 1;
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01002872 /*
2873 * We need tasklist_lock because RCU is not safe against
2874 * while_each_thread(). Besides, a forking task that has passed
2875 * cgroup_post_fork() without seeing use_task_css_set_links = 1
2876 * is not guaranteed to have its child immediately visible in the
2877 * tasklist if we walk through it with RCU.
2878 */
2879 read_lock(&tasklist_lock);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002880 do_each_thread(g, p) {
2881 task_lock(p);
Li Zefan0e043882008-04-17 11:37:15 +08002882 /*
2883 * We should check if the process is exiting, otherwise
2884 * it will race with cgroup_exit() in that the list
2885 * entry won't be deleted though the process has exited.
2886 */
2887 if (!(p->flags & PF_EXITING) && list_empty(&p->cg_list))
Tejun Heoa8ad8052013-06-21 15:52:04 -07002888 list_add(&p->cg_list, &task_css_set(p)->tasks);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002889 task_unlock(p);
2890 } while_each_thread(g, p);
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01002891 read_unlock(&tasklist_lock);
Cliff Wickman31a7df02008-02-07 00:14:42 -08002892 write_unlock(&css_set_lock);
2893}
2894
Tejun Heo574bd9f2012-11-09 09:12:29 -08002895/**
Tejun Heo492eb212013-08-08 20:11:25 -04002896 * css_next_child - find the next child of a given css
2897 * @pos_css: the current position (%NULL to initiate traversal)
2898 * @parent_css: css whose children to walk
Tejun Heo53fa5262013-05-24 10:55:38 +09002899 *
Tejun Heo492eb212013-08-08 20:11:25 -04002900 * This function returns the next child of @parent_css and should be called
Tejun Heo87fb54f2013-12-06 15:11:55 -05002901 * under either cgroup_mutex or RCU read lock. The only requirement is
2902 * that @parent_css and @pos_css are accessible. The next sibling is
2903 * guaranteed to be returned regardless of their states.
Tejun Heo53fa5262013-05-24 10:55:38 +09002904 */
Tejun Heo492eb212013-08-08 20:11:25 -04002905struct cgroup_subsys_state *
2906css_next_child(struct cgroup_subsys_state *pos_css,
2907 struct cgroup_subsys_state *parent_css)
Tejun Heo53fa5262013-05-24 10:55:38 +09002908{
Tejun Heo492eb212013-08-08 20:11:25 -04002909 struct cgroup *pos = pos_css ? pos_css->cgroup : NULL;
2910 struct cgroup *cgrp = parent_css->cgroup;
Tejun Heo53fa5262013-05-24 10:55:38 +09002911 struct cgroup *next;
2912
Tejun Heoace2bee2014-02-11 11:52:47 -05002913 cgroup_assert_mutexes_or_rcu_locked();
Tejun Heo53fa5262013-05-24 10:55:38 +09002914
2915 /*
2916 * @pos could already have been removed. Once a cgroup is removed,
2917 * its ->sibling.next is no longer updated when its next sibling
Tejun Heoea15f8c2013-06-13 19:27:42 -07002918 * changes. As CGRP_DEAD assertion is serialized and happens
2919 * before the cgroup is taken off the ->sibling list, if we see it
2920 * unasserted, it's guaranteed that the next sibling hasn't
2921 * finished its grace period even if it's already removed, and thus
2922 * safe to dereference from this RCU critical section. If
2923 * ->sibling.next is inaccessible, cgroup_is_dead() is guaranteed
2924 * to be visible as %true here.
Tejun Heo3b287a52013-08-08 20:11:24 -04002925 *
2926 * If @pos is dead, its next pointer can't be dereferenced;
2927 * however, as each cgroup is given a monotonically increasing
2928 * unique serial number and always appended to the sibling list,
2929 * the next one can be found by walking the parent's children until
2930 * we see a cgroup with higher serial number than @pos's. While
2931 * this path can be slower, it's taken only when either the current
2932 * cgroup is removed or iteration and removal race.
Tejun Heo53fa5262013-05-24 10:55:38 +09002933 */
Tejun Heo3b287a52013-08-08 20:11:24 -04002934 if (!pos) {
2935 next = list_entry_rcu(cgrp->children.next, struct cgroup, sibling);
2936 } else if (likely(!cgroup_is_dead(pos))) {
Tejun Heo53fa5262013-05-24 10:55:38 +09002937 next = list_entry_rcu(pos->sibling.next, struct cgroup, sibling);
Tejun Heo3b287a52013-08-08 20:11:24 -04002938 } else {
2939 list_for_each_entry_rcu(next, &cgrp->children, sibling)
2940 if (next->serial_nr > pos->serial_nr)
2941 break;
Tejun Heo53fa5262013-05-24 10:55:38 +09002942 }
2943
Tejun Heo492eb212013-08-08 20:11:25 -04002944 if (&next->sibling == &cgrp->children)
2945 return NULL;
2946
Tejun Heoca8bdca2013-08-26 18:40:56 -04002947 return cgroup_css(next, parent_css->ss);
Tejun Heo53fa5262013-05-24 10:55:38 +09002948}
Tejun Heo492eb212013-08-08 20:11:25 -04002949EXPORT_SYMBOL_GPL(css_next_child);
Tejun Heo53fa5262013-05-24 10:55:38 +09002950
2951/**
Tejun Heo492eb212013-08-08 20:11:25 -04002952 * css_next_descendant_pre - find the next descendant for pre-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08002953 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04002954 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08002955 *
Tejun Heo492eb212013-08-08 20:11:25 -04002956 * To be used by css_for_each_descendant_pre(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04002957 * to visit for pre-order traversal of @root's descendants. @root is
2958 * included in the iteration and the first node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09002959 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05002960 * While this function requires cgroup_mutex or RCU read locking, it
2961 * doesn't require the whole traversal to be contained in a single critical
2962 * section. This function will return the correct next descendant as long
2963 * as both @pos and @root are accessible and @pos is a descendant of @root.
Tejun Heo574bd9f2012-11-09 09:12:29 -08002964 */
Tejun Heo492eb212013-08-08 20:11:25 -04002965struct cgroup_subsys_state *
2966css_next_descendant_pre(struct cgroup_subsys_state *pos,
2967 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08002968{
Tejun Heo492eb212013-08-08 20:11:25 -04002969 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08002970
Tejun Heoace2bee2014-02-11 11:52:47 -05002971 cgroup_assert_mutexes_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08002972
Tejun Heobd8815a2013-08-08 20:11:27 -04002973 /* if first iteration, visit @root */
Tejun Heo7805d002013-05-24 10:50:24 +09002974 if (!pos)
Tejun Heobd8815a2013-08-08 20:11:27 -04002975 return root;
Tejun Heo574bd9f2012-11-09 09:12:29 -08002976
2977 /* visit the first child if exists */
Tejun Heo492eb212013-08-08 20:11:25 -04002978 next = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002979 if (next)
2980 return next;
2981
2982 /* no child, visit my or the closest ancestor's next sibling */
Tejun Heo492eb212013-08-08 20:11:25 -04002983 while (pos != root) {
2984 next = css_next_child(pos, css_parent(pos));
Tejun Heo75501a62013-05-24 10:55:38 +09002985 if (next)
Tejun Heo574bd9f2012-11-09 09:12:29 -08002986 return next;
Tejun Heo492eb212013-08-08 20:11:25 -04002987 pos = css_parent(pos);
Tejun Heo7805d002013-05-24 10:50:24 +09002988 }
Tejun Heo574bd9f2012-11-09 09:12:29 -08002989
2990 return NULL;
2991}
Tejun Heo492eb212013-08-08 20:11:25 -04002992EXPORT_SYMBOL_GPL(css_next_descendant_pre);
Tejun Heo574bd9f2012-11-09 09:12:29 -08002993
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002994/**
Tejun Heo492eb212013-08-08 20:11:25 -04002995 * css_rightmost_descendant - return the rightmost descendant of a css
2996 * @pos: css of interest
Tejun Heo12a9d2f2013-01-07 08:49:33 -08002997 *
Tejun Heo492eb212013-08-08 20:11:25 -04002998 * Return the rightmost descendant of @pos. If there's no descendant, @pos
2999 * is returned. This can be used during pre-order traversal to skip
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003000 * subtree of @pos.
Tejun Heo75501a62013-05-24 10:55:38 +09003001 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003002 * While this function requires cgroup_mutex or RCU read locking, it
3003 * doesn't require the whole traversal to be contained in a single critical
3004 * section. This function will return the correct rightmost descendant as
3005 * long as @pos is accessible.
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003006 */
Tejun Heo492eb212013-08-08 20:11:25 -04003007struct cgroup_subsys_state *
3008css_rightmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003009{
Tejun Heo492eb212013-08-08 20:11:25 -04003010 struct cgroup_subsys_state *last, *tmp;
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003011
Tejun Heoace2bee2014-02-11 11:52:47 -05003012 cgroup_assert_mutexes_or_rcu_locked();
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003013
3014 do {
3015 last = pos;
3016 /* ->prev isn't RCU safe, walk ->next till the end */
3017 pos = NULL;
Tejun Heo492eb212013-08-08 20:11:25 -04003018 css_for_each_child(tmp, last)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003019 pos = tmp;
3020 } while (pos);
3021
3022 return last;
3023}
Tejun Heo492eb212013-08-08 20:11:25 -04003024EXPORT_SYMBOL_GPL(css_rightmost_descendant);
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003025
Tejun Heo492eb212013-08-08 20:11:25 -04003026static struct cgroup_subsys_state *
3027css_leftmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003028{
Tejun Heo492eb212013-08-08 20:11:25 -04003029 struct cgroup_subsys_state *last;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003030
3031 do {
3032 last = pos;
Tejun Heo492eb212013-08-08 20:11:25 -04003033 pos = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003034 } while (pos);
3035
3036 return last;
3037}
3038
3039/**
Tejun Heo492eb212013-08-08 20:11:25 -04003040 * css_next_descendant_post - find the next descendant for post-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003041 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003042 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003043 *
Tejun Heo492eb212013-08-08 20:11:25 -04003044 * To be used by css_for_each_descendant_post(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003045 * to visit for post-order traversal of @root's descendants. @root is
3046 * included in the iteration and the last node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003047 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003048 * While this function requires cgroup_mutex or RCU read locking, it
3049 * doesn't require the whole traversal to be contained in a single critical
3050 * section. This function will return the correct next descendant as long
3051 * as both @pos and @cgroup are accessible and @pos is a descendant of
3052 * @cgroup.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003053 */
Tejun Heo492eb212013-08-08 20:11:25 -04003054struct cgroup_subsys_state *
3055css_next_descendant_post(struct cgroup_subsys_state *pos,
3056 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003057{
Tejun Heo492eb212013-08-08 20:11:25 -04003058 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003059
Tejun Heoace2bee2014-02-11 11:52:47 -05003060 cgroup_assert_mutexes_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003061
Tejun Heo58b79a92013-09-06 15:31:08 -04003062 /* if first iteration, visit leftmost descendant which may be @root */
3063 if (!pos)
3064 return css_leftmost_descendant(root);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003065
Tejun Heobd8815a2013-08-08 20:11:27 -04003066 /* if we visited @root, we're done */
3067 if (pos == root)
3068 return NULL;
3069
Tejun Heo574bd9f2012-11-09 09:12:29 -08003070 /* if there's an unvisited sibling, visit its leftmost descendant */
Tejun Heo492eb212013-08-08 20:11:25 -04003071 next = css_next_child(pos, css_parent(pos));
Tejun Heo75501a62013-05-24 10:55:38 +09003072 if (next)
Tejun Heo492eb212013-08-08 20:11:25 -04003073 return css_leftmost_descendant(next);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003074
3075 /* no sibling left, visit parent */
Tejun Heobd8815a2013-08-08 20:11:27 -04003076 return css_parent(pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003077}
Tejun Heo492eb212013-08-08 20:11:25 -04003078EXPORT_SYMBOL_GPL(css_next_descendant_post);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003079
Tejun Heo0942eee2013-08-08 20:11:26 -04003080/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003081 * css_advance_task_iter - advance a task itererator to the next css_set
Tejun Heo0942eee2013-08-08 20:11:26 -04003082 * @it: the iterator to advance
3083 *
3084 * Advance @it to the next css_set to walk.
Tejun Heod5158762013-08-08 20:11:26 -04003085 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003086static void css_advance_task_iter(struct css_task_iter *it)
Tejun Heod5158762013-08-08 20:11:26 -04003087{
3088 struct list_head *l = it->cset_link;
3089 struct cgrp_cset_link *link;
3090 struct css_set *cset;
3091
3092 /* Advance to the next non-empty css_set */
3093 do {
3094 l = l->next;
Tejun Heo72ec7022013-08-08 20:11:26 -04003095 if (l == &it->origin_css->cgroup->cset_links) {
Tejun Heod5158762013-08-08 20:11:26 -04003096 it->cset_link = NULL;
3097 return;
3098 }
3099 link = list_entry(l, struct cgrp_cset_link, cset_link);
3100 cset = link->cset;
3101 } while (list_empty(&cset->tasks));
3102 it->cset_link = l;
3103 it->task = cset->tasks.next;
3104}
3105
Tejun Heo0942eee2013-08-08 20:11:26 -04003106/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003107 * css_task_iter_start - initiate task iteration
3108 * @css: the css to walk tasks of
Tejun Heo0942eee2013-08-08 20:11:26 -04003109 * @it: the task iterator to use
3110 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003111 * Initiate iteration through the tasks of @css. The caller can call
3112 * css_task_iter_next() to walk through the tasks until the function
3113 * returns NULL. On completion of iteration, css_task_iter_end() must be
3114 * called.
Tejun Heo0942eee2013-08-08 20:11:26 -04003115 *
3116 * Note that this function acquires a lock which is released when the
3117 * iteration finishes. The caller can't sleep while iteration is in
3118 * progress.
3119 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003120void css_task_iter_start(struct cgroup_subsys_state *css,
3121 struct css_task_iter *it)
Kirill A. Shutemovc6ca5752011-12-27 07:46:26 +02003122 __acquires(css_set_lock)
Paul Menage817929e2007-10-18 23:39:36 -07003123{
3124 /*
Tejun Heo72ec7022013-08-08 20:11:26 -04003125 * The first time anyone tries to iterate across a css, we need to
3126 * enable the list linking each css_set to its tasks, and fix up
3127 * all existing tasks.
Paul Menage817929e2007-10-18 23:39:36 -07003128 */
Cliff Wickman31a7df02008-02-07 00:14:42 -08003129 if (!use_task_css_set_links)
3130 cgroup_enable_task_cg_lists();
3131
Paul Menage817929e2007-10-18 23:39:36 -07003132 read_lock(&css_set_lock);
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003133
Tejun Heo72ec7022013-08-08 20:11:26 -04003134 it->origin_css = css;
3135 it->cset_link = &css->cgroup->cset_links;
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003136
Tejun Heo72ec7022013-08-08 20:11:26 -04003137 css_advance_task_iter(it);
Paul Menage817929e2007-10-18 23:39:36 -07003138}
3139
Tejun Heo0942eee2013-08-08 20:11:26 -04003140/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003141 * css_task_iter_next - return the next task for the iterator
Tejun Heo0942eee2013-08-08 20:11:26 -04003142 * @it: the task iterator being iterated
3143 *
3144 * The "next" function for task iteration. @it should have been
Tejun Heo72ec7022013-08-08 20:11:26 -04003145 * initialized via css_task_iter_start(). Returns NULL when the iteration
3146 * reaches the end.
Tejun Heo0942eee2013-08-08 20:11:26 -04003147 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003148struct task_struct *css_task_iter_next(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07003149{
3150 struct task_struct *res;
3151 struct list_head *l = it->task;
Tejun Heo69d02062013-06-12 21:04:50 -07003152 struct cgrp_cset_link *link;
Paul Menage817929e2007-10-18 23:39:36 -07003153
3154 /* If the iterator cg is NULL, we have no tasks */
Tejun Heo69d02062013-06-12 21:04:50 -07003155 if (!it->cset_link)
Paul Menage817929e2007-10-18 23:39:36 -07003156 return NULL;
3157 res = list_entry(l, struct task_struct, cg_list);
3158 /* Advance iterator to find next entry */
3159 l = l->next;
Tejun Heo69d02062013-06-12 21:04:50 -07003160 link = list_entry(it->cset_link, struct cgrp_cset_link, cset_link);
3161 if (l == &link->cset->tasks) {
Tejun Heo0942eee2013-08-08 20:11:26 -04003162 /*
3163 * We reached the end of this task list - move on to the
3164 * next cgrp_cset_link.
3165 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003166 css_advance_task_iter(it);
Paul Menage817929e2007-10-18 23:39:36 -07003167 } else {
3168 it->task = l;
3169 }
3170 return res;
3171}
3172
Tejun Heo0942eee2013-08-08 20:11:26 -04003173/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003174 * css_task_iter_end - finish task iteration
Tejun Heo0942eee2013-08-08 20:11:26 -04003175 * @it: the task iterator to finish
3176 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003177 * Finish task iteration started by css_task_iter_start().
Tejun Heo0942eee2013-08-08 20:11:26 -04003178 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003179void css_task_iter_end(struct css_task_iter *it)
Kirill A. Shutemovc6ca5752011-12-27 07:46:26 +02003180 __releases(css_set_lock)
Paul Menage817929e2007-10-18 23:39:36 -07003181{
3182 read_unlock(&css_set_lock);
3183}
3184
Cliff Wickman31a7df02008-02-07 00:14:42 -08003185static inline int started_after_time(struct task_struct *t1,
3186 struct timespec *time,
3187 struct task_struct *t2)
3188{
3189 int start_diff = timespec_compare(&t1->start_time, time);
3190 if (start_diff > 0) {
3191 return 1;
3192 } else if (start_diff < 0) {
3193 return 0;
3194 } else {
3195 /*
3196 * Arbitrarily, if two processes started at the same
3197 * time, we'll say that the lower pointer value
3198 * started first. Note that t2 may have exited by now
3199 * so this may not be a valid pointer any longer, but
3200 * that's fine - it still serves to distinguish
3201 * between two tasks started (effectively) simultaneously.
3202 */
3203 return t1 > t2;
3204 }
3205}
3206
3207/*
3208 * This function is a callback from heap_insert() and is used to order
3209 * the heap.
3210 * In this case we order the heap in descending task start time.
3211 */
3212static inline int started_after(void *p1, void *p2)
3213{
3214 struct task_struct *t1 = p1;
3215 struct task_struct *t2 = p2;
3216 return started_after_time(t1, &t2->start_time, t2);
3217}
3218
3219/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003220 * css_scan_tasks - iterate though all the tasks in a css
3221 * @css: the css to iterate tasks of
Tejun Heoe5358372013-08-08 20:11:26 -04003222 * @test: optional test callback
3223 * @process: process callback
3224 * @data: data passed to @test and @process
3225 * @heap: optional pre-allocated heap used for task iteration
Cliff Wickman31a7df02008-02-07 00:14:42 -08003226 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003227 * Iterate through all the tasks in @css, calling @test for each, and if it
3228 * returns %true, call @process for it also.
Cliff Wickman31a7df02008-02-07 00:14:42 -08003229 *
Tejun Heoe5358372013-08-08 20:11:26 -04003230 * @test may be NULL, meaning always true (select all tasks), which
Tejun Heo72ec7022013-08-08 20:11:26 -04003231 * effectively duplicates css_task_iter_{start,next,end}() but does not
Tejun Heoe5358372013-08-08 20:11:26 -04003232 * lock css_set_lock for the call to @process.
3233 *
3234 * It is guaranteed that @process will act on every task that is a member
Tejun Heo72ec7022013-08-08 20:11:26 -04003235 * of @css for the duration of this call. This function may or may not
3236 * call @process for tasks that exit or move to a different css during the
3237 * call, or are forked or move into the css during the call.
Tejun Heoe5358372013-08-08 20:11:26 -04003238 *
3239 * Note that @test may be called with locks held, and may in some
3240 * situations be called multiple times for the same task, so it should be
3241 * cheap.
3242 *
3243 * If @heap is non-NULL, a heap has been pre-allocated and will be used for
3244 * heap operations (and its "gt" member will be overwritten), else a
3245 * temporary heap will be used (allocation of which may cause this function
3246 * to fail).
Cliff Wickman31a7df02008-02-07 00:14:42 -08003247 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003248int css_scan_tasks(struct cgroup_subsys_state *css,
3249 bool (*test)(struct task_struct *, void *),
3250 void (*process)(struct task_struct *, void *),
3251 void *data, struct ptr_heap *heap)
Cliff Wickman31a7df02008-02-07 00:14:42 -08003252{
3253 int retval, i;
Tejun Heo72ec7022013-08-08 20:11:26 -04003254 struct css_task_iter it;
Cliff Wickman31a7df02008-02-07 00:14:42 -08003255 struct task_struct *p, *dropped;
3256 /* Never dereference latest_task, since it's not refcounted */
3257 struct task_struct *latest_task = NULL;
3258 struct ptr_heap tmp_heap;
Cliff Wickman31a7df02008-02-07 00:14:42 -08003259 struct timespec latest_time = { 0, 0 };
3260
Tejun Heoe5358372013-08-08 20:11:26 -04003261 if (heap) {
Cliff Wickman31a7df02008-02-07 00:14:42 -08003262 /* The caller supplied our heap and pre-allocated its memory */
Cliff Wickman31a7df02008-02-07 00:14:42 -08003263 heap->gt = &started_after;
3264 } else {
3265 /* We need to allocate our own heap memory */
3266 heap = &tmp_heap;
3267 retval = heap_init(heap, PAGE_SIZE, GFP_KERNEL, &started_after);
3268 if (retval)
3269 /* cannot allocate the heap */
3270 return retval;
3271 }
3272
3273 again:
3274 /*
Tejun Heo72ec7022013-08-08 20:11:26 -04003275 * Scan tasks in the css, using the @test callback to determine
Tejun Heoe5358372013-08-08 20:11:26 -04003276 * which are of interest, and invoking @process callback on the
3277 * ones which need an update. Since we don't want to hold any
3278 * locks during the task updates, gather tasks to be processed in a
3279 * heap structure. The heap is sorted by descending task start
3280 * time. If the statically-sized heap fills up, we overflow tasks
3281 * that started later, and in future iterations only consider tasks
3282 * that started after the latest task in the previous pass. This
Cliff Wickman31a7df02008-02-07 00:14:42 -08003283 * guarantees forward progress and that we don't miss any tasks.
3284 */
3285 heap->size = 0;
Tejun Heo72ec7022013-08-08 20:11:26 -04003286 css_task_iter_start(css, &it);
3287 while ((p = css_task_iter_next(&it))) {
Cliff Wickman31a7df02008-02-07 00:14:42 -08003288 /*
3289 * Only affect tasks that qualify per the caller's callback,
3290 * if he provided one
3291 */
Tejun Heoe5358372013-08-08 20:11:26 -04003292 if (test && !test(p, data))
Cliff Wickman31a7df02008-02-07 00:14:42 -08003293 continue;
3294 /*
3295 * Only process tasks that started after the last task
3296 * we processed
3297 */
3298 if (!started_after_time(p, &latest_time, latest_task))
3299 continue;
3300 dropped = heap_insert(heap, p);
3301 if (dropped == NULL) {
3302 /*
3303 * The new task was inserted; the heap wasn't
3304 * previously full
3305 */
3306 get_task_struct(p);
3307 } else if (dropped != p) {
3308 /*
3309 * The new task was inserted, and pushed out a
3310 * different task
3311 */
3312 get_task_struct(p);
3313 put_task_struct(dropped);
3314 }
3315 /*
3316 * Else the new task was newer than anything already in
3317 * the heap and wasn't inserted
3318 */
3319 }
Tejun Heo72ec7022013-08-08 20:11:26 -04003320 css_task_iter_end(&it);
Cliff Wickman31a7df02008-02-07 00:14:42 -08003321
3322 if (heap->size) {
3323 for (i = 0; i < heap->size; i++) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07003324 struct task_struct *q = heap->ptrs[i];
Cliff Wickman31a7df02008-02-07 00:14:42 -08003325 if (i == 0) {
Paul Jackson4fe91d52008-04-29 00:59:55 -07003326 latest_time = q->start_time;
3327 latest_task = q;
Cliff Wickman31a7df02008-02-07 00:14:42 -08003328 }
3329 /* Process the task per the caller's callback */
Tejun Heoe5358372013-08-08 20:11:26 -04003330 process(q, data);
Paul Jackson4fe91d52008-04-29 00:59:55 -07003331 put_task_struct(q);
Cliff Wickman31a7df02008-02-07 00:14:42 -08003332 }
3333 /*
3334 * If we had to process any tasks at all, scan again
3335 * in case some of them were in the middle of forking
3336 * children that didn't get processed.
3337 * Not the most efficient way to do it, but it avoids
3338 * having to take callback_mutex in the fork path
3339 */
3340 goto again;
3341 }
3342 if (heap == &tmp_heap)
3343 heap_free(&tmp_heap);
3344 return 0;
3345}
3346
Tejun Heoe5358372013-08-08 20:11:26 -04003347static void cgroup_transfer_one_task(struct task_struct *task, void *data)
Tejun Heo8cc99342013-04-07 09:29:50 -07003348{
Tejun Heoe5358372013-08-08 20:11:26 -04003349 struct cgroup *new_cgroup = data;
Tejun Heo8cc99342013-04-07 09:29:50 -07003350
Tejun Heo47cfcd02013-04-07 09:29:51 -07003351 mutex_lock(&cgroup_mutex);
Tejun Heo8cc99342013-04-07 09:29:50 -07003352 cgroup_attach_task(new_cgroup, task, false);
Tejun Heo47cfcd02013-04-07 09:29:51 -07003353 mutex_unlock(&cgroup_mutex);
Tejun Heo8cc99342013-04-07 09:29:50 -07003354}
3355
3356/**
3357 * cgroup_trasnsfer_tasks - move tasks from one cgroup to another
3358 * @to: cgroup to which the tasks will be moved
3359 * @from: cgroup in which the tasks currently reside
3360 */
3361int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from)
3362{
Tejun Heo72ec7022013-08-08 20:11:26 -04003363 return css_scan_tasks(&from->dummy_css, NULL, cgroup_transfer_one_task,
3364 to, NULL);
Tejun Heo8cc99342013-04-07 09:29:50 -07003365}
3366
Paul Menage817929e2007-10-18 23:39:36 -07003367/*
Ben Blum102a7752009-09-23 15:56:26 -07003368 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003369 *
3370 * Reading this file can return large amounts of data if a cgroup has
3371 * *lots* of attached tasks. So it may need several calls to read(),
3372 * but we cannot guarantee that the information we produce is correct
3373 * unless we produce it entirely atomically.
3374 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07003375 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003376
Li Zefan24528252012-01-20 11:58:43 +08003377/* which pidlist file are we talking about? */
3378enum cgroup_filetype {
3379 CGROUP_FILE_PROCS,
3380 CGROUP_FILE_TASKS,
3381};
3382
3383/*
3384 * A pidlist is a list of pids that virtually represents the contents of one
3385 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
3386 * a pair (one each for procs, tasks) for each pid namespace that's relevant
3387 * to the cgroup.
3388 */
3389struct cgroup_pidlist {
3390 /*
3391 * used to find which pidlist is wanted. doesn't change as long as
3392 * this particular list stays in the list.
3393 */
3394 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
3395 /* array of xids */
3396 pid_t *list;
3397 /* how many elements the above list has */
3398 int length;
Li Zefan24528252012-01-20 11:58:43 +08003399 /* each of these stored in a list by its cgroup */
3400 struct list_head links;
3401 /* pointer to the cgroup we belong to, for list removal purposes */
3402 struct cgroup *owner;
Tejun Heob1a21362013-11-29 10:42:58 -05003403 /* for delayed destruction */
3404 struct delayed_work destroy_dwork;
Li Zefan24528252012-01-20 11:58:43 +08003405};
3406
Paul Menagebbcb81d2007-10-18 23:39:32 -07003407/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07003408 * The following two functions "fix" the issue where there are more pids
3409 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
3410 * TODO: replace with a kernel-wide solution to this problem
3411 */
3412#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
3413static void *pidlist_allocate(int count)
3414{
3415 if (PIDLIST_TOO_LARGE(count))
3416 return vmalloc(count * sizeof(pid_t));
3417 else
3418 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
3419}
Tejun Heob1a21362013-11-29 10:42:58 -05003420
Ben Blumd1d9fd32009-09-23 15:56:28 -07003421static void pidlist_free(void *p)
3422{
3423 if (is_vmalloc_addr(p))
3424 vfree(p);
3425 else
3426 kfree(p);
3427}
Ben Blumd1d9fd32009-09-23 15:56:28 -07003428
3429/*
Tejun Heob1a21362013-11-29 10:42:58 -05003430 * Used to destroy all pidlists lingering waiting for destroy timer. None
3431 * should be left afterwards.
3432 */
3433static void cgroup_pidlist_destroy_all(struct cgroup *cgrp)
3434{
3435 struct cgroup_pidlist *l, *tmp_l;
3436
3437 mutex_lock(&cgrp->pidlist_mutex);
3438 list_for_each_entry_safe(l, tmp_l, &cgrp->pidlists, links)
3439 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, 0);
3440 mutex_unlock(&cgrp->pidlist_mutex);
3441
3442 flush_workqueue(cgroup_pidlist_destroy_wq);
3443 BUG_ON(!list_empty(&cgrp->pidlists));
3444}
3445
3446static void cgroup_pidlist_destroy_work_fn(struct work_struct *work)
3447{
3448 struct delayed_work *dwork = to_delayed_work(work);
3449 struct cgroup_pidlist *l = container_of(dwork, struct cgroup_pidlist,
3450 destroy_dwork);
3451 struct cgroup_pidlist *tofree = NULL;
3452
3453 mutex_lock(&l->owner->pidlist_mutex);
Tejun Heob1a21362013-11-29 10:42:58 -05003454
3455 /*
Tejun Heo04502362013-11-29 10:42:59 -05003456 * Destroy iff we didn't get queued again. The state won't change
3457 * as destroy_dwork can only be queued while locked.
Tejun Heob1a21362013-11-29 10:42:58 -05003458 */
Tejun Heo04502362013-11-29 10:42:59 -05003459 if (!delayed_work_pending(dwork)) {
Tejun Heob1a21362013-11-29 10:42:58 -05003460 list_del(&l->links);
3461 pidlist_free(l->list);
3462 put_pid_ns(l->key.ns);
3463 tofree = l;
3464 }
3465
Tejun Heob1a21362013-11-29 10:42:58 -05003466 mutex_unlock(&l->owner->pidlist_mutex);
3467 kfree(tofree);
3468}
3469
3470/*
Ben Blum102a7752009-09-23 15:56:26 -07003471 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
Li Zefan6ee211a2013-03-12 15:36:00 -07003472 * Returns the number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003473 */
Li Zefan6ee211a2013-03-12 15:36:00 -07003474static int pidlist_uniq(pid_t *list, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003475{
Ben Blum102a7752009-09-23 15:56:26 -07003476 int src, dest = 1;
Ben Blum102a7752009-09-23 15:56:26 -07003477
3478 /*
3479 * we presume the 0th element is unique, so i starts at 1. trivial
3480 * edge cases first; no work needs to be done for either
3481 */
3482 if (length == 0 || length == 1)
3483 return length;
3484 /* src and dest walk down the list; dest counts unique elements */
3485 for (src = 1; src < length; src++) {
3486 /* find next unique element */
3487 while (list[src] == list[src-1]) {
3488 src++;
3489 if (src == length)
3490 goto after;
3491 }
3492 /* dest always points to where the next unique element goes */
3493 list[dest] = list[src];
3494 dest++;
3495 }
3496after:
Ben Blum102a7752009-09-23 15:56:26 -07003497 return dest;
3498}
3499
Tejun Heoafb2bc12013-11-29 10:42:59 -05003500/*
3501 * The two pid files - task and cgroup.procs - guaranteed that the result
3502 * is sorted, which forced this whole pidlist fiasco. As pid order is
3503 * different per namespace, each namespace needs differently sorted list,
3504 * making it impossible to use, for example, single rbtree of member tasks
3505 * sorted by task pointer. As pidlists can be fairly large, allocating one
3506 * per open file is dangerous, so cgroup had to implement shared pool of
3507 * pidlists keyed by cgroup and namespace.
3508 *
3509 * All this extra complexity was caused by the original implementation
3510 * committing to an entirely unnecessary property. In the long term, we
3511 * want to do away with it. Explicitly scramble sort order if
3512 * sane_behavior so that no such expectation exists in the new interface.
3513 *
3514 * Scrambling is done by swapping every two consecutive bits, which is
3515 * non-identity one-to-one mapping which disturbs sort order sufficiently.
3516 */
3517static pid_t pid_fry(pid_t pid)
3518{
3519 unsigned a = pid & 0x55555555;
3520 unsigned b = pid & 0xAAAAAAAA;
3521
3522 return (a << 1) | (b >> 1);
3523}
3524
3525static pid_t cgroup_pid_fry(struct cgroup *cgrp, pid_t pid)
3526{
3527 if (cgroup_sane_behavior(cgrp))
3528 return pid_fry(pid);
3529 else
3530 return pid;
3531}
3532
Ben Blum102a7752009-09-23 15:56:26 -07003533static int cmppid(const void *a, const void *b)
3534{
3535 return *(pid_t *)a - *(pid_t *)b;
3536}
3537
Tejun Heoafb2bc12013-11-29 10:42:59 -05003538static int fried_cmppid(const void *a, const void *b)
3539{
3540 return pid_fry(*(pid_t *)a) - pid_fry(*(pid_t *)b);
3541}
3542
Ben Blum72a8cb32009-09-23 15:56:27 -07003543static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
3544 enum cgroup_filetype type)
3545{
3546 struct cgroup_pidlist *l;
3547 /* don't need task_nsproxy() if we're looking at ourself */
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08003548 struct pid_namespace *ns = task_active_pid_ns(current);
Li Zefanb70cc5f2010-03-10 15:22:12 -08003549
Tejun Heoe6b81712013-11-29 10:42:59 -05003550 lockdep_assert_held(&cgrp->pidlist_mutex);
3551
3552 list_for_each_entry(l, &cgrp->pidlists, links)
3553 if (l->key.type == type && l->key.ns == ns)
Ben Blum72a8cb32009-09-23 15:56:27 -07003554 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05003555 return NULL;
3556}
3557
Ben Blum72a8cb32009-09-23 15:56:27 -07003558/*
3559 * find the appropriate pidlist for our purpose (given procs vs tasks)
3560 * returns with the lock on that pidlist already held, and takes care
3561 * of the use count, or returns NULL with no locks held if we're out of
3562 * memory.
3563 */
Tejun Heoe6b81712013-11-29 10:42:59 -05003564static struct cgroup_pidlist *cgroup_pidlist_find_create(struct cgroup *cgrp,
3565 enum cgroup_filetype type)
Ben Blum72a8cb32009-09-23 15:56:27 -07003566{
3567 struct cgroup_pidlist *l;
Ben Blum72a8cb32009-09-23 15:56:27 -07003568
Tejun Heoe6b81712013-11-29 10:42:59 -05003569 lockdep_assert_held(&cgrp->pidlist_mutex);
3570
3571 l = cgroup_pidlist_find(cgrp, type);
3572 if (l)
3573 return l;
3574
Ben Blum72a8cb32009-09-23 15:56:27 -07003575 /* entry not found; create a new one */
Tejun Heof4f4be22013-06-12 21:04:51 -07003576 l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
Tejun Heoe6b81712013-11-29 10:42:59 -05003577 if (!l)
Ben Blum72a8cb32009-09-23 15:56:27 -07003578 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05003579
Tejun Heob1a21362013-11-29 10:42:58 -05003580 INIT_DELAYED_WORK(&l->destroy_dwork, cgroup_pidlist_destroy_work_fn);
Ben Blum72a8cb32009-09-23 15:56:27 -07003581 l->key.type = type;
Tejun Heoe6b81712013-11-29 10:42:59 -05003582 /* don't need task_nsproxy() if we're looking at ourself */
3583 l->key.ns = get_pid_ns(task_active_pid_ns(current));
Ben Blum72a8cb32009-09-23 15:56:27 -07003584 l->owner = cgrp;
3585 list_add(&l->links, &cgrp->pidlists);
Ben Blum72a8cb32009-09-23 15:56:27 -07003586 return l;
3587}
3588
3589/*
Ben Blum102a7752009-09-23 15:56:26 -07003590 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
3591 */
Ben Blum72a8cb32009-09-23 15:56:27 -07003592static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
3593 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07003594{
3595 pid_t *array;
3596 int length;
3597 int pid, n = 0; /* used for populating the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04003598 struct css_task_iter it;
Paul Menage817929e2007-10-18 23:39:36 -07003599 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07003600 struct cgroup_pidlist *l;
3601
Tejun Heo4bac00d2013-11-29 10:42:59 -05003602 lockdep_assert_held(&cgrp->pidlist_mutex);
3603
Ben Blum102a7752009-09-23 15:56:26 -07003604 /*
3605 * If cgroup gets more users after we read count, we won't have
3606 * enough space - tough. This race is indistinguishable to the
3607 * caller from the case that the additional cgroup users didn't
3608 * show up until sometime later on.
3609 */
3610 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003611 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07003612 if (!array)
3613 return -ENOMEM;
3614 /* now, populate the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04003615 css_task_iter_start(&cgrp->dummy_css, &it);
3616 while ((tsk = css_task_iter_next(&it))) {
Ben Blum102a7752009-09-23 15:56:26 -07003617 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07003618 break;
Ben Blum102a7752009-09-23 15:56:26 -07003619 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07003620 if (type == CGROUP_FILE_PROCS)
3621 pid = task_tgid_vnr(tsk);
3622 else
3623 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07003624 if (pid > 0) /* make sure to only use valid results */
3625 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07003626 }
Tejun Heo72ec7022013-08-08 20:11:26 -04003627 css_task_iter_end(&it);
Ben Blum102a7752009-09-23 15:56:26 -07003628 length = n;
3629 /* now sort & (if procs) strip out duplicates */
Tejun Heoafb2bc12013-11-29 10:42:59 -05003630 if (cgroup_sane_behavior(cgrp))
3631 sort(array, length, sizeof(pid_t), fried_cmppid, NULL);
3632 else
3633 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07003634 if (type == CGROUP_FILE_PROCS)
Li Zefan6ee211a2013-03-12 15:36:00 -07003635 length = pidlist_uniq(array, length);
Tejun Heoe6b81712013-11-29 10:42:59 -05003636
Tejun Heoe6b81712013-11-29 10:42:59 -05003637 l = cgroup_pidlist_find_create(cgrp, type);
Ben Blum72a8cb32009-09-23 15:56:27 -07003638 if (!l) {
Tejun Heoe6b81712013-11-29 10:42:59 -05003639 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003640 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07003641 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07003642 }
Tejun Heoe6b81712013-11-29 10:42:59 -05003643
3644 /* store array, freeing old if necessary */
Ben Blumd1d9fd32009-09-23 15:56:28 -07003645 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07003646 l->list = array;
3647 l->length = length;
Ben Blum72a8cb32009-09-23 15:56:27 -07003648 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07003649 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003650}
3651
Balbir Singh846c7bb2007-10-18 23:39:44 -07003652/**
Li Zefana043e3b2008-02-23 15:24:09 -08003653 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07003654 * @stats: cgroupstats to fill information into
3655 * @dentry: A dentry entry belonging to the cgroup for which stats have
3656 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08003657 *
3658 * Build and fill cgroupstats so that taskstats can export it to user
3659 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003660 */
3661int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
3662{
3663 int ret = -EINVAL;
Paul Menagebd89aab2007-10-18 23:40:44 -07003664 struct cgroup *cgrp;
Tejun Heo72ec7022013-08-08 20:11:26 -04003665 struct css_task_iter it;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003666 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08003667
Balbir Singh846c7bb2007-10-18 23:39:44 -07003668 /*
Li Zefan33d283b2008-11-19 15:36:48 -08003669 * Validate dentry by checking the superblock operations,
3670 * and make sure it's a directory.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003671 */
Li Zefan33d283b2008-11-19 15:36:48 -08003672 if (dentry->d_sb->s_op != &cgroup_ops ||
3673 !S_ISDIR(dentry->d_inode->i_mode))
Balbir Singh846c7bb2007-10-18 23:39:44 -07003674 goto err;
3675
3676 ret = 0;
Paul Menagebd89aab2007-10-18 23:40:44 -07003677 cgrp = dentry->d_fsdata;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003678
Tejun Heo72ec7022013-08-08 20:11:26 -04003679 css_task_iter_start(&cgrp->dummy_css, &it);
3680 while ((tsk = css_task_iter_next(&it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07003681 switch (tsk->state) {
3682 case TASK_RUNNING:
3683 stats->nr_running++;
3684 break;
3685 case TASK_INTERRUPTIBLE:
3686 stats->nr_sleeping++;
3687 break;
3688 case TASK_UNINTERRUPTIBLE:
3689 stats->nr_uninterruptible++;
3690 break;
3691 case TASK_STOPPED:
3692 stats->nr_stopped++;
3693 break;
3694 default:
3695 if (delayacct_is_task_waiting_on_io(tsk))
3696 stats->nr_io_wait++;
3697 break;
3698 }
3699 }
Tejun Heo72ec7022013-08-08 20:11:26 -04003700 css_task_iter_end(&it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07003701
Balbir Singh846c7bb2007-10-18 23:39:44 -07003702err:
3703 return ret;
3704}
3705
Paul Menage8f3ff202009-09-23 15:56:25 -07003706
Paul Menagecc31edc2008-10-18 20:28:04 -07003707/*
Ben Blum102a7752009-09-23 15:56:26 -07003708 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07003709 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07003710 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07003711 */
3712
Ben Blum102a7752009-09-23 15:56:26 -07003713static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003714{
3715 /*
3716 * Initially we receive a position value that corresponds to
3717 * one more than the last pid shown (or 0 on the first call or
3718 * after a seek to the start). Use a binary-search to find the
3719 * next pid to display, if any
3720 */
Tejun Heo5d224442013-12-05 12:28:04 -05003721 struct cgroup_open_file *of = s->private;
Tejun Heo7da11272013-12-05 12:28:04 -05003722 struct cgroup *cgrp = seq_css(s)->cgroup;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003723 struct cgroup_pidlist *l;
Tejun Heo7da11272013-12-05 12:28:04 -05003724 enum cgroup_filetype type = seq_cft(s)->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07003725 int index = 0, pid = *pos;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003726 int *iter, ret;
Paul Menagecc31edc2008-10-18 20:28:04 -07003727
Tejun Heo4bac00d2013-11-29 10:42:59 -05003728 mutex_lock(&cgrp->pidlist_mutex);
3729
3730 /*
Tejun Heo5d224442013-12-05 12:28:04 -05003731 * !NULL @of->priv indicates that this isn't the first start()
Tejun Heo4bac00d2013-11-29 10:42:59 -05003732 * after open. If the matching pidlist is around, we can use that.
Tejun Heo5d224442013-12-05 12:28:04 -05003733 * Look for it. Note that @of->priv can't be used directly. It
Tejun Heo4bac00d2013-11-29 10:42:59 -05003734 * could already have been destroyed.
3735 */
Tejun Heo5d224442013-12-05 12:28:04 -05003736 if (of->priv)
3737 of->priv = cgroup_pidlist_find(cgrp, type);
Tejun Heo4bac00d2013-11-29 10:42:59 -05003738
3739 /*
3740 * Either this is the first start() after open or the matching
3741 * pidlist has been destroyed inbetween. Create a new one.
3742 */
Tejun Heo5d224442013-12-05 12:28:04 -05003743 if (!of->priv) {
3744 ret = pidlist_array_load(cgrp, type,
3745 (struct cgroup_pidlist **)&of->priv);
Tejun Heo4bac00d2013-11-29 10:42:59 -05003746 if (ret)
3747 return ERR_PTR(ret);
3748 }
Tejun Heo5d224442013-12-05 12:28:04 -05003749 l = of->priv;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003750
Paul Menagecc31edc2008-10-18 20:28:04 -07003751 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07003752 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11003753
Paul Menagecc31edc2008-10-18 20:28:04 -07003754 while (index < end) {
3755 int mid = (index + end) / 2;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003756 if (cgroup_pid_fry(cgrp, l->list[mid]) == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07003757 index = mid;
3758 break;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003759 } else if (cgroup_pid_fry(cgrp, l->list[mid]) <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07003760 index = mid + 1;
3761 else
3762 end = mid;
3763 }
3764 }
3765 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07003766 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07003767 return NULL;
3768 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07003769 iter = l->list + index;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003770 *pos = cgroup_pid_fry(cgrp, *iter);
Paul Menagecc31edc2008-10-18 20:28:04 -07003771 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003772}
3773
Ben Blum102a7752009-09-23 15:56:26 -07003774static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003775{
Tejun Heo5d224442013-12-05 12:28:04 -05003776 struct cgroup_open_file *of = s->private;
3777 struct cgroup_pidlist *l = of->priv;
Tejun Heo62236852013-11-29 10:42:58 -05003778
Tejun Heo5d224442013-12-05 12:28:04 -05003779 if (l)
3780 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork,
Tejun Heo04502362013-11-29 10:42:59 -05003781 CGROUP_PIDLIST_DESTROY_DELAY);
Tejun Heo7da11272013-12-05 12:28:04 -05003782 mutex_unlock(&seq_css(s)->cgroup->pidlist_mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003783}
3784
Ben Blum102a7752009-09-23 15:56:26 -07003785static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003786{
Tejun Heo5d224442013-12-05 12:28:04 -05003787 struct cgroup_open_file *of = s->private;
3788 struct cgroup_pidlist *l = of->priv;
Ben Blum102a7752009-09-23 15:56:26 -07003789 pid_t *p = v;
3790 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07003791 /*
3792 * Advance to the next pid in the array. If this goes off the
3793 * end, we're done
3794 */
3795 p++;
3796 if (p >= end) {
3797 return NULL;
3798 } else {
Tejun Heo7da11272013-12-05 12:28:04 -05003799 *pos = cgroup_pid_fry(seq_css(s)->cgroup, *p);
Paul Menagecc31edc2008-10-18 20:28:04 -07003800 return p;
3801 }
3802}
3803
Ben Blum102a7752009-09-23 15:56:26 -07003804static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003805{
3806 return seq_printf(s, "%d\n", *(int *)v);
3807}
3808
Ben Blum102a7752009-09-23 15:56:26 -07003809/*
3810 * seq_operations functions for iterating on pidlists through seq_file -
3811 * independent of whether it's tasks or procs
3812 */
3813static const struct seq_operations cgroup_pidlist_seq_operations = {
3814 .start = cgroup_pidlist_start,
3815 .stop = cgroup_pidlist_stop,
3816 .next = cgroup_pidlist_next,
3817 .show = cgroup_pidlist_show,
Paul Menagecc31edc2008-10-18 20:28:04 -07003818};
3819
Tejun Heo182446d2013-08-08 20:11:24 -04003820static u64 cgroup_read_notify_on_release(struct cgroup_subsys_state *css,
3821 struct cftype *cft)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003822{
Tejun Heo182446d2013-08-08 20:11:24 -04003823 return notify_on_release(css->cgroup);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003824}
3825
Tejun Heo182446d2013-08-08 20:11:24 -04003826static int cgroup_write_notify_on_release(struct cgroup_subsys_state *css,
3827 struct cftype *cft, u64 val)
Paul Menage6379c102008-07-25 01:47:01 -07003828{
Tejun Heo182446d2013-08-08 20:11:24 -04003829 clear_bit(CGRP_RELEASABLE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003830 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04003831 set_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003832 else
Tejun Heo182446d2013-08-08 20:11:24 -04003833 clear_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003834 return 0;
3835}
3836
Paul Menagebbcb81d2007-10-18 23:39:32 -07003837/*
Li Zefan1c8158e2013-06-18 18:41:10 +08003838 * When dput() is called asynchronously, if umount has been done and
3839 * then deactivate_super() in cgroup_free_fn() kills the superblock,
3840 * there's a small window that vfs will see the root dentry with non-zero
3841 * refcnt and trigger BUG().
3842 *
3843 * That's why we hold a reference before dput() and drop it right after.
3844 */
3845static void cgroup_dput(struct cgroup *cgrp)
3846{
3847 struct super_block *sb = cgrp->root->sb;
3848
3849 atomic_inc(&sb->s_active);
3850 dput(cgrp->dentry);
3851 deactivate_super(sb);
3852}
3853
Tejun Heo182446d2013-08-08 20:11:24 -04003854static u64 cgroup_clone_children_read(struct cgroup_subsys_state *css,
3855 struct cftype *cft)
Daniel Lezcano97978e62010-10-27 15:33:35 -07003856{
Tejun Heo182446d2013-08-08 20:11:24 -04003857 return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003858}
3859
Tejun Heo182446d2013-08-08 20:11:24 -04003860static int cgroup_clone_children_write(struct cgroup_subsys_state *css,
3861 struct cftype *cft, u64 val)
Daniel Lezcano97978e62010-10-27 15:33:35 -07003862{
3863 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04003864 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003865 else
Tejun Heo182446d2013-08-08 20:11:24 -04003866 clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003867 return 0;
3868}
3869
Tejun Heod5c56ce2013-06-03 19:14:34 -07003870static struct cftype cgroup_base_files[] = {
Paul Menage81a6a5c2007-10-18 23:39:38 -07003871 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07003872 .name = "cgroup.procs",
Tejun Heo6612f052013-12-05 12:28:04 -05003873 .seq_start = cgroup_pidlist_start,
3874 .seq_next = cgroup_pidlist_next,
3875 .seq_stop = cgroup_pidlist_stop,
3876 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05003877 .private = CGROUP_FILE_PROCS,
Ben Blum74a11662011-05-26 16:25:20 -07003878 .write_u64 = cgroup_procs_write,
Ben Blum74a11662011-05-26 16:25:20 -07003879 .mode = S_IRUGO | S_IWUSR,
Ben Blum102a7752009-09-23 15:56:26 -07003880 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07003881 {
Daniel Lezcano97978e62010-10-27 15:33:35 -07003882 .name = "cgroup.clone_children",
Tejun Heo873fe092013-04-14 20:15:26 -07003883 .flags = CFTYPE_INSANE,
Daniel Lezcano97978e62010-10-27 15:33:35 -07003884 .read_u64 = cgroup_clone_children_read,
3885 .write_u64 = cgroup_clone_children_write,
3886 },
Tejun Heo6e6ff252012-04-01 12:09:55 -07003887 {
Tejun Heo873fe092013-04-14 20:15:26 -07003888 .name = "cgroup.sane_behavior",
3889 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05003890 .seq_show = cgroup_sane_behavior_show,
Tejun Heo873fe092013-04-14 20:15:26 -07003891 },
Tejun Heod5c56ce2013-06-03 19:14:34 -07003892
3893 /*
3894 * Historical crazy stuff. These don't have "cgroup." prefix and
3895 * don't exist if sane_behavior. If you're depending on these, be
3896 * prepared to be burned.
3897 */
3898 {
3899 .name = "tasks",
3900 .flags = CFTYPE_INSANE, /* use "procs" instead */
Tejun Heo6612f052013-12-05 12:28:04 -05003901 .seq_start = cgroup_pidlist_start,
3902 .seq_next = cgroup_pidlist_next,
3903 .seq_stop = cgroup_pidlist_stop,
3904 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05003905 .private = CGROUP_FILE_TASKS,
Tejun Heod5c56ce2013-06-03 19:14:34 -07003906 .write_u64 = cgroup_tasks_write,
Tejun Heod5c56ce2013-06-03 19:14:34 -07003907 .mode = S_IRUGO | S_IWUSR,
3908 },
3909 {
3910 .name = "notify_on_release",
3911 .flags = CFTYPE_INSANE,
3912 .read_u64 = cgroup_read_notify_on_release,
3913 .write_u64 = cgroup_write_notify_on_release,
3914 },
Tejun Heo873fe092013-04-14 20:15:26 -07003915 {
Tejun Heo6e6ff252012-04-01 12:09:55 -07003916 .name = "release_agent",
Tejun Heocc5943a2013-06-03 19:13:55 -07003917 .flags = CFTYPE_INSANE | CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05003918 .seq_show = cgroup_release_agent_show,
Tejun Heo6e6ff252012-04-01 12:09:55 -07003919 .write_string = cgroup_release_agent_write,
Tejun Heo5f469902014-02-11 11:52:48 -05003920 .max_write_len = PATH_MAX - 1,
Tejun Heo6e6ff252012-04-01 12:09:55 -07003921 },
Tejun Heodb0416b2012-04-01 12:09:55 -07003922 { } /* terminate */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003923};
3924
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003925/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07003926 * cgroup_populate_dir - create subsys files in a cgroup directory
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003927 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003928 * @subsys_mask: mask of the subsystem ids whose files should be added
Tejun Heobee55092013-06-28 16:24:11 -07003929 *
3930 * On failure, no file is added.
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003931 */
Tejun Heo628f7cd2013-06-28 16:24:11 -07003932static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003933{
Paul Menageddbcc7e2007-10-18 23:39:30 -07003934 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07003935 int i, ret = 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003936
Tejun Heo8e3f6542012-04-01 12:09:55 -07003937 /* process cftsets of each subsystem */
Tejun Heob420ba72013-07-12 12:34:02 -07003938 for_each_subsys(ss, i) {
Tejun Heo8e3f6542012-04-01 12:09:55 -07003939 struct cftype_set *set;
Tejun Heob420ba72013-07-12 12:34:02 -07003940
3941 if (!test_bit(i, &subsys_mask))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04003942 continue;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003943
Tejun Heobee55092013-06-28 16:24:11 -07003944 list_for_each_entry(set, &ss->cftsets, node) {
Tejun Heo2bb566c2013-08-08 20:11:23 -04003945 ret = cgroup_addrm_files(cgrp, set->cfts, true);
Tejun Heobee55092013-06-28 16:24:11 -07003946 if (ret < 0)
3947 goto err;
3948 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003949 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003950 return 0;
Tejun Heobee55092013-06-28 16:24:11 -07003951err:
3952 cgroup_clear_dir(cgrp, subsys_mask);
3953 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003954}
3955
Tejun Heo0c21ead2013-08-13 20:22:51 -04003956/*
3957 * css destruction is four-stage process.
3958 *
3959 * 1. Destruction starts. Killing of the percpu_ref is initiated.
3960 * Implemented in kill_css().
3961 *
3962 * 2. When the percpu_ref is confirmed to be visible as killed on all CPUs
3963 * and thus css_tryget() is guaranteed to fail, the css can be offlined
3964 * by invoking offline_css(). After offlining, the base ref is put.
3965 * Implemented in css_killed_work_fn().
3966 *
3967 * 3. When the percpu_ref reaches zero, the only possible remaining
3968 * accessors are inside RCU read sections. css_release() schedules the
3969 * RCU callback.
3970 *
3971 * 4. After the grace period, the css can be freed. Implemented in
3972 * css_free_work_fn().
3973 *
3974 * It is actually hairier because both step 2 and 4 require process context
3975 * and thus involve punting to css->destroy_work adding two additional
3976 * steps to the already complex sequence.
3977 */
Tejun Heo35ef10d2013-08-13 11:01:54 -04003978static void css_free_work_fn(struct work_struct *work)
Tejun Heo48ddbe12012-04-01 12:09:56 -07003979{
3980 struct cgroup_subsys_state *css =
Tejun Heo35ef10d2013-08-13 11:01:54 -04003981 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo0c21ead2013-08-13 20:22:51 -04003982 struct cgroup *cgrp = css->cgroup;
Tejun Heo48ddbe12012-04-01 12:09:56 -07003983
Tejun Heo0ae78e02013-08-13 11:01:54 -04003984 if (css->parent)
3985 css_put(css->parent);
3986
Tejun Heo0c21ead2013-08-13 20:22:51 -04003987 css->ss->css_free(css);
3988 cgroup_dput(cgrp);
3989}
3990
3991static void css_free_rcu_fn(struct rcu_head *rcu_head)
3992{
3993 struct cgroup_subsys_state *css =
3994 container_of(rcu_head, struct cgroup_subsys_state, rcu_head);
3995
3996 /*
3997 * css holds an extra ref to @cgrp->dentry which is put on the last
3998 * css_put(). dput() requires process context which we don't have.
3999 */
4000 INIT_WORK(&css->destroy_work, css_free_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05004001 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004002}
4003
Tejun Heod3daf282013-06-13 19:39:16 -07004004static void css_release(struct percpu_ref *ref)
4005{
4006 struct cgroup_subsys_state *css =
4007 container_of(ref, struct cgroup_subsys_state, refcnt);
4008
Tejun Heoaec25022014-02-08 10:36:58 -05004009 rcu_assign_pointer(css->cgroup->subsys[css->ss->id], NULL);
Tejun Heo0c21ead2013-08-13 20:22:51 -04004010 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004011}
4012
Tejun Heo623f9262013-08-13 11:01:55 -04004013static void init_css(struct cgroup_subsys_state *css, struct cgroup_subsys *ss,
4014 struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004015{
Paul Menagebd89aab2007-10-18 23:40:44 -07004016 css->cgroup = cgrp;
Tejun Heo72c97e52013-08-08 20:11:22 -04004017 css->ss = ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004018 css->flags = 0;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004019
Tejun Heo0ae78e02013-08-13 11:01:54 -04004020 if (cgrp->parent)
Tejun Heoca8bdca2013-08-26 18:40:56 -04004021 css->parent = cgroup_css(cgrp->parent, ss);
Tejun Heo0ae78e02013-08-13 11:01:54 -04004022 else
Paul Menageddbcc7e2007-10-18 23:39:30 -07004023 css->flags |= CSS_ROOT;
Tejun Heo0ae78e02013-08-13 11:01:54 -04004024
Tejun Heoca8bdca2013-08-26 18:40:56 -04004025 BUG_ON(cgroup_css(cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004026}
4027
Li Zefan2a4ac632013-07-31 16:16:40 +08004028/* invoke ->css_online() on a new CSS and mark it online if successful */
Tejun Heo623f9262013-08-13 11:01:55 -04004029static int online_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004030{
Tejun Heo623f9262013-08-13 11:01:55 -04004031 struct cgroup_subsys *ss = css->ss;
Tejun Heob1929db2012-11-19 08:13:38 -08004032 int ret = 0;
4033
Tejun Heoace2bee2014-02-11 11:52:47 -05004034 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004035 lockdep_assert_held(&cgroup_mutex);
4036
Tejun Heo92fb9742012-11-19 08:13:38 -08004037 if (ss->css_online)
Tejun Heoeb954192013-08-08 20:11:23 -04004038 ret = ss->css_online(css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004039 if (!ret) {
Tejun Heoeb954192013-08-08 20:11:23 -04004040 css->flags |= CSS_ONLINE;
Tejun Heof20104d2013-08-13 20:22:50 -04004041 css->cgroup->nr_css++;
Tejun Heoaec25022014-02-08 10:36:58 -05004042 rcu_assign_pointer(css->cgroup->subsys[ss->id], css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004043 }
Tejun Heob1929db2012-11-19 08:13:38 -08004044 return ret;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004045}
4046
Li Zefan2a4ac632013-07-31 16:16:40 +08004047/* if the CSS is online, invoke ->css_offline() on it and mark it offline */
Tejun Heo623f9262013-08-13 11:01:55 -04004048static void offline_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004049{
Tejun Heo623f9262013-08-13 11:01:55 -04004050 struct cgroup_subsys *ss = css->ss;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004051
Tejun Heoace2bee2014-02-11 11:52:47 -05004052 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004053 lockdep_assert_held(&cgroup_mutex);
4054
4055 if (!(css->flags & CSS_ONLINE))
4056 return;
4057
Li Zefand7eeac12013-03-12 15:35:59 -07004058 if (ss->css_offline)
Tejun Heoeb954192013-08-08 20:11:23 -04004059 ss->css_offline(css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004060
Tejun Heoeb954192013-08-08 20:11:23 -04004061 css->flags &= ~CSS_ONLINE;
Tejun Heo09a503ea2013-08-13 20:22:50 -04004062 css->cgroup->nr_css--;
Tejun Heoaec25022014-02-08 10:36:58 -05004063 RCU_INIT_POINTER(css->cgroup->subsys[ss->id], css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004064}
4065
Tejun Heoc81c925a2013-12-06 15:11:56 -05004066/**
4067 * create_css - create a cgroup_subsys_state
4068 * @cgrp: the cgroup new css will be associated with
4069 * @ss: the subsys of new css
4070 *
4071 * Create a new css associated with @cgrp - @ss pair. On success, the new
4072 * css is online and installed in @cgrp with all interface files created.
4073 * Returns 0 on success, -errno on failure.
4074 */
4075static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss)
4076{
4077 struct cgroup *parent = cgrp->parent;
4078 struct cgroup_subsys_state *css;
4079 int err;
4080
4081 lockdep_assert_held(&cgrp->dentry->d_inode->i_mutex);
4082 lockdep_assert_held(&cgroup_mutex);
4083
4084 css = ss->css_alloc(cgroup_css(parent, ss));
4085 if (IS_ERR(css))
4086 return PTR_ERR(css);
4087
4088 err = percpu_ref_init(&css->refcnt, css_release);
4089 if (err)
4090 goto err_free;
4091
4092 init_css(css, ss, cgrp);
4093
Tejun Heoaec25022014-02-08 10:36:58 -05004094 err = cgroup_populate_dir(cgrp, 1 << ss->id);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004095 if (err)
4096 goto err_free;
4097
4098 err = online_css(css);
4099 if (err)
4100 goto err_free;
4101
4102 dget(cgrp->dentry);
4103 css_get(css->parent);
4104
4105 if (ss->broken_hierarchy && !ss->warned_broken_hierarchy &&
4106 parent->parent) {
4107 pr_warning("cgroup: %s (%d) created nested cgroup for controller \"%s\" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.\n",
4108 current->comm, current->pid, ss->name);
4109 if (!strcmp(ss->name, "memory"))
4110 pr_warning("cgroup: \"memory\" requires setting use_hierarchy to 1 on the root.\n");
4111 ss->warned_broken_hierarchy = true;
4112 }
4113
4114 return 0;
4115
4116err_free:
4117 percpu_ref_cancel_init(&css->refcnt);
4118 ss->css_free(css);
4119 return err;
4120}
4121
Paul Menageddbcc7e2007-10-18 23:39:30 -07004122/*
Li Zefana043e3b2008-02-23 15:24:09 -08004123 * cgroup_create - create a cgroup
4124 * @parent: cgroup that will be parent of the new cgroup
4125 * @dentry: dentry of the new cgroup
4126 * @mode: mode to set on new inode
Paul Menageddbcc7e2007-10-18 23:39:30 -07004127 *
Li Zefana043e3b2008-02-23 15:24:09 -08004128 * Must be called with the mutex on the parent inode held
Paul Menageddbcc7e2007-10-18 23:39:30 -07004129 */
Paul Menageddbcc7e2007-10-18 23:39:30 -07004130static long cgroup_create(struct cgroup *parent, struct dentry *dentry,
Al Viroa5e7ed32011-07-26 01:55:55 -04004131 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004132{
Paul Menagebd89aab2007-10-18 23:40:44 -07004133 struct cgroup *cgrp;
Li Zefan65dff752013-03-01 15:01:56 +08004134 struct cgroup_name *name;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004135 struct cgroupfs_root *root = parent->root;
Tejun Heob58c8992014-02-08 10:26:33 -05004136 int ssid, err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004137 struct cgroup_subsys *ss;
4138 struct super_block *sb = root->sb;
4139
Tejun Heo0a950f62012-11-19 09:02:12 -08004140 /* allocate the cgroup and its ID, 0 is reserved for the root */
Paul Menagebd89aab2007-10-18 23:40:44 -07004141 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
4142 if (!cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004143 return -ENOMEM;
4144
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05004145 name = cgroup_alloc_name(dentry->d_name.name);
Tejun Heob58c8992014-02-08 10:26:33 -05004146 if (!name) {
4147 err = -ENOMEM;
Li Zefan65dff752013-03-01 15:01:56 +08004148 goto err_free_cgrp;
Tejun Heob58c8992014-02-08 10:26:33 -05004149 }
Li Zefan65dff752013-03-01 15:01:56 +08004150 rcu_assign_pointer(cgrp->name, name);
4151
Tejun Heoace2bee2014-02-11 11:52:47 -05004152 mutex_lock(&cgroup_tree_mutex);
4153
Li Zefan4e96ee8e2013-07-31 09:50:50 +08004154 /*
Tejun Heo976c06b2012-11-05 09:16:59 -08004155 * Only live parents can have children. Note that the liveliness
4156 * check isn't strictly necessary because cgroup_mkdir() and
4157 * cgroup_rmdir() are fully synchronized by i_mutex; however, do it
4158 * anyway so that locking is contained inside cgroup proper and we
4159 * don't get nasty surprises if we ever grow another caller.
4160 */
4161 if (!cgroup_lock_live_group(parent)) {
4162 err = -ENODEV;
Tejun Heoace2bee2014-02-11 11:52:47 -05004163 goto err_unlock_tree;
Li Zefan0ab02ca2014-02-11 16:05:46 +08004164 }
4165
4166 /*
4167 * Temporarily set the pointer to NULL, so idr_find() won't return
4168 * a half-baked cgroup.
4169 */
4170 cgrp->id = idr_alloc(&root->cgroup_idr, NULL, 1, 0, GFP_KERNEL);
4171 if (cgrp->id < 0) {
4172 err = -ENOMEM;
4173 goto err_unlock;
Tejun Heo976c06b2012-11-05 09:16:59 -08004174 }
4175
Paul Menageddbcc7e2007-10-18 23:39:30 -07004176 /* Grab a reference on the superblock so the hierarchy doesn't
4177 * get deleted on unmount if there are child cgroups. This
4178 * can be done outside cgroup_mutex, since the sb can't
4179 * disappear while someone has an open control file on the
4180 * fs */
4181 atomic_inc(&sb->s_active);
4182
Paul Menagecc31edc2008-10-18 20:28:04 -07004183 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004184
Li Zefanfe1c06c2013-01-24 14:30:22 +08004185 dentry->d_fsdata = cgrp;
4186 cgrp->dentry = dentry;
4187
Paul Menagebd89aab2007-10-18 23:40:44 -07004188 cgrp->parent = parent;
Tejun Heo0ae78e02013-08-13 11:01:54 -04004189 cgrp->dummy_css.parent = &parent->dummy_css;
Paul Menagebd89aab2007-10-18 23:40:44 -07004190 cgrp->root = parent->root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004191
Li Zefanb6abdb02008-03-04 14:28:19 -08004192 if (notify_on_release(parent))
4193 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
4194
Tejun Heo2260e7f2012-11-19 08:13:38 -08004195 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags))
4196 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004197
Tejun Heo4e139af2012-11-19 08:13:36 -08004198 /*
4199 * Create directory. cgroup_create_file() returns with the new
4200 * directory locked on success so that it can be populated without
4201 * dropping cgroup_mutex.
4202 */
Tejun Heo28fd6f32012-11-19 08:13:36 -08004203 err = cgroup_create_file(dentry, S_IFDIR | mode, sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004204 if (err < 0)
Li Zefan0ab02ca2014-02-11 16:05:46 +08004205 goto err_free_id;
Tejun Heo4e139af2012-11-19 08:13:36 -08004206 lockdep_assert_held(&dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004207
Tejun Heo00356bd2013-06-18 11:14:22 -07004208 cgrp->serial_nr = cgroup_serial_nr_next++;
Tejun Heo53fa5262013-05-24 10:55:38 +09004209
Tejun Heo4e139af2012-11-19 08:13:36 -08004210 /* allocation complete, commit to creation */
Tejun Heo4e139af2012-11-19 08:13:36 -08004211 list_add_tail_rcu(&cgrp->sibling, &cgrp->parent->children);
4212 root->number_of_cgroups++;
Tejun Heo28fd6f32012-11-19 08:13:36 -08004213
Li Zefan415cf072013-04-08 14:35:02 +08004214 /* hold a ref to the parent's dentry */
4215 dget(parent->dentry);
4216
Tejun Heo0d802552013-12-06 15:11:56 -05004217 /*
4218 * @cgrp is now fully operational. If something fails after this
4219 * point, it'll be released via the normal destruction path.
4220 */
Li Zefan4e96ee8e2013-07-31 09:50:50 +08004221 idr_replace(&root->cgroup_idr, cgrp, cgrp->id);
4222
Tejun Heo2bb566c2013-08-08 20:11:23 -04004223 err = cgroup_addrm_files(cgrp, cgroup_base_files, true);
Tejun Heo628f7cd2013-06-28 16:24:11 -07004224 if (err)
4225 goto err_destroy;
4226
Tejun Heo9d403e92013-12-06 15:11:56 -05004227 /* let's create and online css's */
Tejun Heob85d2042013-12-06 15:11:57 -05004228 for_each_subsys(ss, ssid) {
4229 if (root->subsys_mask & (1 << ssid)) {
4230 err = create_css(cgrp, ss);
4231 if (err)
4232 goto err_destroy;
4233 }
Tejun Heoa8638032012-11-09 09:12:29 -08004234 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004235
4236 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05004237 mutex_unlock(&cgroup_tree_mutex);
Paul Menagebd89aab2007-10-18 23:40:44 -07004238 mutex_unlock(&cgrp->dentry->d_inode->i_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004239
4240 return 0;
4241
Tejun Heo0a950f62012-11-19 09:02:12 -08004242err_free_id:
Li Zefan4e96ee8e2013-07-31 09:50:50 +08004243 idr_remove(&root->cgroup_idr, cgrp->id);
Li Zefan0ab02ca2014-02-11 16:05:46 +08004244 /* Release the reference count that we took on the superblock */
4245 deactivate_super(sb);
4246err_unlock:
4247 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05004248err_unlock_tree:
4249 mutex_unlock(&cgroup_tree_mutex);
Li Zefan65dff752013-03-01 15:01:56 +08004250 kfree(rcu_dereference_raw(cgrp->name));
Tejun Heo4b8b47eb2012-11-19 08:13:38 -08004251err_free_cgrp:
Paul Menagebd89aab2007-10-18 23:40:44 -07004252 kfree(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004253 return err;
Tejun Heo4b8b47eb2012-11-19 08:13:38 -08004254
4255err_destroy:
4256 cgroup_destroy_locked(cgrp);
4257 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05004258 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo4b8b47eb2012-11-19 08:13:38 -08004259 mutex_unlock(&dentry->d_inode->i_mutex);
4260 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004261}
4262
Al Viro18bb1db2011-07-26 01:41:39 -04004263static int cgroup_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004264{
4265 struct cgroup *c_parent = dentry->d_parent->d_fsdata;
4266
4267 /* the vfs holds inode->i_mutex already */
4268 return cgroup_create(c_parent, dentry, mode | S_IFDIR);
4269}
4270
Tejun Heo223dbc32013-08-13 20:22:50 -04004271/*
4272 * This is called when the refcnt of a css is confirmed to be killed.
4273 * css_tryget() is now guaranteed to fail.
4274 */
4275static void css_killed_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004276{
Tejun Heo223dbc32013-08-13 20:22:50 -04004277 struct cgroup_subsys_state *css =
4278 container_of(work, struct cgroup_subsys_state, destroy_work);
4279 struct cgroup *cgrp = css->cgroup;
Tejun Heod3daf282013-06-13 19:39:16 -07004280
Tejun Heoace2bee2014-02-11 11:52:47 -05004281 mutex_lock(&cgroup_tree_mutex);
Tejun Heof20104d2013-08-13 20:22:50 -04004282 mutex_lock(&cgroup_mutex);
4283
4284 /*
Tejun Heo09a503ea2013-08-13 20:22:50 -04004285 * css_tryget() is guaranteed to fail now. Tell subsystems to
4286 * initate destruction.
4287 */
4288 offline_css(css);
4289
4290 /*
Tejun Heof20104d2013-08-13 20:22:50 -04004291 * If @cgrp is marked dead, it's waiting for refs of all css's to
4292 * be disabled before proceeding to the second phase of cgroup
4293 * destruction. If we are the last one, kick it off.
4294 */
Tejun Heo09a503ea2013-08-13 20:22:50 -04004295 if (!cgrp->nr_css && cgroup_is_dead(cgrp))
Tejun Heof20104d2013-08-13 20:22:50 -04004296 cgroup_destroy_css_killed(cgrp);
4297
4298 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05004299 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04004300
4301 /*
4302 * Put the css refs from kill_css(). Each css holds an extra
4303 * reference to the cgroup's dentry and cgroup removal proceeds
4304 * regardless of css refs. On the last put of each css, whenever
4305 * that may be, the extra dentry ref is put so that dentry
4306 * destruction happens only after all css's are released.
4307 */
4308 css_put(css);
Tejun Heod3daf282013-06-13 19:39:16 -07004309}
4310
Tejun Heo223dbc32013-08-13 20:22:50 -04004311/* css kill confirmation processing requires process context, bounce */
4312static void css_killed_ref_fn(struct percpu_ref *ref)
Tejun Heod3daf282013-06-13 19:39:16 -07004313{
4314 struct cgroup_subsys_state *css =
4315 container_of(ref, struct cgroup_subsys_state, refcnt);
4316
Tejun Heo223dbc32013-08-13 20:22:50 -04004317 INIT_WORK(&css->destroy_work, css_killed_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05004318 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07004319}
4320
4321/**
Tejun Heoedae0c32013-08-13 20:22:51 -04004322 * kill_css - destroy a css
4323 * @css: css to destroy
4324 *
Tejun Heo3c14f8b2013-08-13 20:22:51 -04004325 * This function initiates destruction of @css by removing cgroup interface
4326 * files and putting its base reference. ->css_offline() will be invoked
4327 * asynchronously once css_tryget() is guaranteed to fail and when the
4328 * reference count reaches zero, @css will be released.
Tejun Heoedae0c32013-08-13 20:22:51 -04004329 */
4330static void kill_css(struct cgroup_subsys_state *css)
4331{
Tejun Heoaec25022014-02-08 10:36:58 -05004332 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
Tejun Heo3c14f8b2013-08-13 20:22:51 -04004333
Tejun Heoedae0c32013-08-13 20:22:51 -04004334 /*
4335 * Killing would put the base ref, but we need to keep it alive
4336 * until after ->css_offline().
4337 */
4338 css_get(css);
4339
4340 /*
4341 * cgroup core guarantees that, by the time ->css_offline() is
4342 * invoked, no new css reference will be given out via
4343 * css_tryget(). We can't simply call percpu_ref_kill() and
4344 * proceed to offlining css's because percpu_ref_kill() doesn't
4345 * guarantee that the ref is seen as killed on all CPUs on return.
4346 *
4347 * Use percpu_ref_kill_and_confirm() to get notifications as each
4348 * css is confirmed to be seen as killed on all CPUs.
4349 */
4350 percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004351}
4352
4353/**
4354 * cgroup_destroy_locked - the first stage of cgroup destruction
4355 * @cgrp: cgroup to be destroyed
4356 *
4357 * css's make use of percpu refcnts whose killing latency shouldn't be
4358 * exposed to userland and are RCU protected. Also, cgroup core needs to
4359 * guarantee that css_tryget() won't succeed by the time ->css_offline() is
4360 * invoked. To satisfy all the requirements, destruction is implemented in
4361 * the following two steps.
4362 *
4363 * s1. Verify @cgrp can be destroyed and mark it dying. Remove all
4364 * userland visible parts and start killing the percpu refcnts of
4365 * css's. Set up so that the next stage will be kicked off once all
4366 * the percpu refcnts are confirmed to be killed.
4367 *
4368 * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the
4369 * rest of destruction. Once all cgroup references are gone, the
4370 * cgroup is RCU-freed.
4371 *
4372 * This function implements s1. After this step, @cgrp is gone as far as
4373 * the userland is concerned and a new cgroup with the same name may be
4374 * created. As cgroup doesn't care about the names internally, this
4375 * doesn't cause any problem.
4376 */
Tejun Heo42809dd2012-11-19 08:13:37 -08004377static int cgroup_destroy_locked(struct cgroup *cgrp)
4378 __releases(&cgroup_mutex) __acquires(&cgroup_mutex)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004379{
Tejun Heo42809dd2012-11-19 08:13:37 -08004380 struct dentry *d = cgrp->dentry;
Tejun Heo1c6727a2013-12-06 15:11:56 -05004381 struct cgroup_subsys_state *css;
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004382 struct cgroup *child;
Tejun Heoddd69142013-06-12 21:04:54 -07004383 bool empty;
Tejun Heo1c6727a2013-12-06 15:11:56 -05004384 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004385
Tejun Heo42809dd2012-11-19 08:13:37 -08004386 lockdep_assert_held(&d->d_inode->i_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05004387 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heo42809dd2012-11-19 08:13:37 -08004388 lockdep_assert_held(&cgroup_mutex);
4389
Tejun Heoddd69142013-06-12 21:04:54 -07004390 /*
Tejun Heo6f3d828f02013-06-12 21:04:55 -07004391 * css_set_lock synchronizes access to ->cset_links and prevents
4392 * @cgrp from being removed while __put_css_set() is in progress.
Tejun Heoddd69142013-06-12 21:04:54 -07004393 */
4394 read_lock(&css_set_lock);
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004395 empty = list_empty(&cgrp->cset_links);
Tejun Heoddd69142013-06-12 21:04:54 -07004396 read_unlock(&css_set_lock);
4397 if (!empty)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004398 return -EBUSY;
Tejun Heoed9577932012-11-05 09:16:58 -08004399
Tejun Heo1a90dd52012-11-05 09:16:59 -08004400 /*
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004401 * Make sure there's no live children. We can't test ->children
4402 * emptiness as dead children linger on it while being destroyed;
4403 * otherwise, "rmdir parent/child parent" may fail with -EBUSY.
4404 */
4405 empty = true;
4406 rcu_read_lock();
4407 list_for_each_entry_rcu(child, &cgrp->children, sibling) {
4408 empty = cgroup_is_dead(child);
4409 if (!empty)
4410 break;
4411 }
4412 rcu_read_unlock();
4413 if (!empty)
4414 return -EBUSY;
4415
4416 /*
Tejun Heoedae0c32013-08-13 20:22:51 -04004417 * Initiate massacre of all css's. cgroup_destroy_css_killed()
4418 * will be invoked to perform the rest of destruction once the
Tejun Heo4ac06012014-02-11 11:52:47 -05004419 * percpu refs of all css's are confirmed to be killed. This
4420 * involves removing the subsystem's files, drop cgroup_mutex.
Tejun Heo1a90dd52012-11-05 09:16:59 -08004421 */
Tejun Heo4ac06012014-02-11 11:52:47 -05004422 mutex_unlock(&cgroup_mutex);
Tejun Heo1c6727a2013-12-06 15:11:56 -05004423 for_each_css(css, ssid, cgrp)
4424 kill_css(css);
Tejun Heo4ac06012014-02-11 11:52:47 -05004425 mutex_lock(&cgroup_mutex);
Tejun Heo455050d2013-06-13 19:27:41 -07004426
4427 /*
4428 * Mark @cgrp dead. This prevents further task migration and child
4429 * creation by disabling cgroup_lock_live_group(). Note that
Tejun Heo492eb212013-08-08 20:11:25 -04004430 * CGRP_DEAD assertion is depended upon by css_next_child() to
Tejun Heo455050d2013-06-13 19:27:41 -07004431 * resume iteration after dropping RCU read lock. See
Tejun Heo492eb212013-08-08 20:11:25 -04004432 * css_next_child() for details.
Tejun Heo455050d2013-06-13 19:27:41 -07004433 */
Tejun Heo54766d42013-06-12 21:04:53 -07004434 set_bit(CGRP_DEAD, &cgrp->flags);
Tejun Heo1a90dd52012-11-05 09:16:59 -08004435
Tejun Heo455050d2013-06-13 19:27:41 -07004436 /* CGRP_DEAD is set, remove from ->release_list for the last time */
4437 raw_spin_lock(&release_list_lock);
4438 if (!list_empty(&cgrp->release_list))
4439 list_del_init(&cgrp->release_list);
4440 raw_spin_unlock(&release_list_lock);
4441
4442 /*
Tejun Heof20104d2013-08-13 20:22:50 -04004443 * If @cgrp has css's attached, the second stage of cgroup
4444 * destruction is kicked off from css_killed_work_fn() after the
4445 * refs of all attached css's are killed. If @cgrp doesn't have
4446 * any css, we kick it off here.
Tejun Heo455050d2013-06-13 19:27:41 -07004447 */
Tejun Heof20104d2013-08-13 20:22:50 -04004448 if (!cgrp->nr_css)
4449 cgroup_destroy_css_killed(cgrp);
4450
4451 /*
Tejun Heo3c14f8b2013-08-13 20:22:51 -04004452 * Clear the base files and remove @cgrp directory. The removal
4453 * puts the base ref but we aren't quite done with @cgrp yet, so
4454 * hold onto it.
Tejun Heo455050d2013-06-13 19:27:41 -07004455 */
Tejun Heo4ac06012014-02-11 11:52:47 -05004456 mutex_unlock(&cgroup_mutex);
Tejun Heo2bb566c2013-08-08 20:11:23 -04004457 cgroup_addrm_files(cgrp, cgroup_base_files, false);
Tejun Heo455050d2013-06-13 19:27:41 -07004458 dget(d);
4459 cgroup_d_remove_dir(d);
Tejun Heo4ac06012014-02-11 11:52:47 -05004460 mutex_lock(&cgroup_mutex);
Tejun Heo455050d2013-06-13 19:27:41 -07004461
Tejun Heoea15f8c2013-06-13 19:27:42 -07004462 return 0;
4463};
4464
Tejun Heod3daf282013-06-13 19:39:16 -07004465/**
Tejun Heof20104d2013-08-13 20:22:50 -04004466 * cgroup_destroy_css_killed - the second step of cgroup destruction
Tejun Heod3daf282013-06-13 19:39:16 -07004467 * @work: cgroup->destroy_free_work
4468 *
4469 * This function is invoked from a work item for a cgroup which is being
Tejun Heo09a503ea2013-08-13 20:22:50 -04004470 * destroyed after all css's are offlined and performs the rest of
4471 * destruction. This is the second step of destruction described in the
4472 * comment above cgroup_destroy_locked().
Tejun Heod3daf282013-06-13 19:39:16 -07004473 */
Tejun Heof20104d2013-08-13 20:22:50 -04004474static void cgroup_destroy_css_killed(struct cgroup *cgrp)
Tejun Heoea15f8c2013-06-13 19:27:42 -07004475{
Tejun Heoea15f8c2013-06-13 19:27:42 -07004476 struct cgroup *parent = cgrp->parent;
4477 struct dentry *d = cgrp->dentry;
Tejun Heoea15f8c2013-06-13 19:27:42 -07004478
Tejun Heoace2bee2014-02-11 11:52:47 -05004479 lockdep_assert_held(&cgroup_tree_mutex);
Tejun Heof20104d2013-08-13 20:22:50 -04004480 lockdep_assert_held(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004481
Paul Menage999cd8a2009-01-07 18:08:36 -08004482 /* delete this cgroup from parent->children */
Tejun Heoeb6fd502012-11-09 09:12:29 -08004483 list_del_rcu(&cgrp->sibling);
Tejun Heob0ca5a82012-04-01 12:09:54 -07004484
Paul Menageddbcc7e2007-10-18 23:39:30 -07004485 dput(d);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004486
Paul Menagebd89aab2007-10-18 23:40:44 -07004487 set_bit(CGRP_RELEASABLE, &parent->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004488 check_for_release(parent);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004489}
4490
Tejun Heo42809dd2012-11-19 08:13:37 -08004491static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry)
4492{
4493 int ret;
4494
Tejun Heoace2bee2014-02-11 11:52:47 -05004495 mutex_lock(&cgroup_tree_mutex);
Tejun Heo42809dd2012-11-19 08:13:37 -08004496 mutex_lock(&cgroup_mutex);
4497 ret = cgroup_destroy_locked(dentry->d_fsdata);
4498 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05004499 mutex_unlock(&cgroup_tree_mutex);
Tejun Heo42809dd2012-11-19 08:13:37 -08004500
4501 return ret;
4502}
4503
Li Zefan06a11922008-04-29 01:00:07 -07004504static void __init cgroup_init_subsys(struct cgroup_subsys *ss)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004505{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004506 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08004507
4508 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004509
Tejun Heoace2bee2014-02-11 11:52:47 -05004510 mutex_lock(&cgroup_tree_mutex);
Tejun Heo648bb562012-11-19 08:13:36 -08004511 mutex_lock(&cgroup_mutex);
4512
Tejun Heode00ffa2014-02-11 11:52:48 -05004513 INIT_LIST_HEAD(&ss->cftsets);
Tejun Heo8e3f6542012-04-01 12:09:55 -07004514
Paul Menageddbcc7e2007-10-18 23:39:30 -07004515 /* Create the top cgroup state for this subsystem */
Tejun Heo9871bf92013-06-24 15:21:47 -07004516 ss->root = &cgroup_dummy_root;
Tejun Heoca8bdca2013-08-26 18:40:56 -04004517 css = ss->css_alloc(cgroup_css(cgroup_dummy_top, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004518 /* We don't handle early failures gracefully */
4519 BUG_ON(IS_ERR(css));
Tejun Heo623f9262013-08-13 11:01:55 -04004520 init_css(css, ss, cgroup_dummy_top);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004521
Li Zefane8d55fd2008-04-29 01:00:13 -07004522 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07004523 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07004524 * newly registered, all tasks and hence the
4525 * init_css_set is in the subsystem's top cgroup. */
Tejun Heoaec25022014-02-08 10:36:58 -05004526 init_css_set.subsys[ss->id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004527
4528 need_forkexit_callback |= ss->fork || ss->exit;
4529
Li Zefane8d55fd2008-04-29 01:00:13 -07004530 /* At system boot, before all subsystems have been
4531 * registered, no tasks have been forked, so we don't
4532 * need to invoke fork callbacks here. */
4533 BUG_ON(!list_empty(&init_task.tasks));
4534
Tejun Heoae7f1642013-08-13 20:22:50 -04004535 BUG_ON(online_css(css));
Tejun Heoa8638032012-11-09 09:12:29 -08004536
Tejun Heo648bb562012-11-19 08:13:36 -08004537 mutex_unlock(&cgroup_mutex);
Tejun Heoace2bee2014-02-11 11:52:47 -05004538 mutex_unlock(&cgroup_tree_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004539}
4540
4541/**
Li Zefana043e3b2008-02-23 15:24:09 -08004542 * cgroup_init_early - cgroup initialization at system boot
4543 *
4544 * Initialize cgroups at system boot, and initialize any
4545 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004546 */
4547int __init cgroup_init_early(void)
4548{
Tejun Heo30159ec2013-06-25 11:53:37 -07004549 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004550 int i;
Tejun Heo30159ec2013-06-25 11:53:37 -07004551
Lai Jiangshan146aa1b2008-10-18 20:28:03 -07004552 atomic_set(&init_css_set.refcount, 1);
Tejun Heo69d02062013-06-12 21:04:50 -07004553 INIT_LIST_HEAD(&init_css_set.cgrp_links);
Paul Menage817929e2007-10-18 23:39:36 -07004554 INIT_LIST_HEAD(&init_css_set.tasks);
Li Zefan472b1052008-04-29 01:00:11 -07004555 INIT_HLIST_NODE(&init_css_set.hlist);
Paul Menage817929e2007-10-18 23:39:36 -07004556 css_set_count = 1;
Tejun Heo9871bf92013-06-24 15:21:47 -07004557 init_cgroup_root(&cgroup_dummy_root);
4558 cgroup_root_count = 1;
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07004559 RCU_INIT_POINTER(init_task.cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07004560
Tejun Heo69d02062013-06-12 21:04:50 -07004561 init_cgrp_cset_link.cset = &init_css_set;
Tejun Heo9871bf92013-06-24 15:21:47 -07004562 init_cgrp_cset_link.cgrp = cgroup_dummy_top;
4563 list_add(&init_cgrp_cset_link.cset_link, &cgroup_dummy_top->cset_links);
Tejun Heo69d02062013-06-12 21:04:50 -07004564 list_add(&init_cgrp_cset_link.cgrp_link, &init_css_set.cgrp_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004565
Tejun Heo3ed80a62014-02-08 10:36:58 -05004566 for_each_subsys(ss, i) {
Tejun Heoaec25022014-02-08 10:36:58 -05004567 WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id,
Tejun Heo073219e2014-02-08 10:36:58 -05004568 "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p name:id=%d:%s\n",
4569 i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free,
Tejun Heoaec25022014-02-08 10:36:58 -05004570 ss->id, ss->name);
Tejun Heo073219e2014-02-08 10:36:58 -05004571 WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN,
4572 "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]);
4573
Tejun Heoaec25022014-02-08 10:36:58 -05004574 ss->id = i;
Tejun Heo073219e2014-02-08 10:36:58 -05004575 ss->name = cgroup_subsys_name[i];
Paul Menageddbcc7e2007-10-18 23:39:30 -07004576
4577 if (ss->early_init)
4578 cgroup_init_subsys(ss);
4579 }
4580 return 0;
4581}
4582
4583/**
Li Zefana043e3b2008-02-23 15:24:09 -08004584 * cgroup_init - cgroup initialization
4585 *
4586 * Register cgroup filesystem and /proc file, and initialize
4587 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004588 */
4589int __init cgroup_init(void)
4590{
Tejun Heo30159ec2013-06-25 11:53:37 -07004591 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +08004592 unsigned long key;
Tejun Heo30159ec2013-06-25 11:53:37 -07004593 int i, err;
Paul Menagea4243162007-10-18 23:39:35 -07004594
4595 err = bdi_init(&cgroup_backing_dev_info);
4596 if (err)
4597 return err;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004598
Tejun Heo3ed80a62014-02-08 10:36:58 -05004599 for_each_subsys(ss, i) {
Paul Menageddbcc7e2007-10-18 23:39:30 -07004600 if (!ss->early_init)
4601 cgroup_init_subsys(ss);
Tejun Heode00ffa2014-02-11 11:52:48 -05004602
4603 /*
4604 * cftype registration needs kmalloc and can't be done
4605 * during early_init. Register base cftypes separately.
4606 */
4607 if (ss->base_cftypes)
4608 WARN_ON(cgroup_add_cftypes(ss, ss->base_cftypes));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004609 }
4610
Tejun Heofa3ca072013-04-14 11:36:56 -07004611 /* allocate id for the dummy hierarchy */
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004612 mutex_lock(&cgroup_mutex);
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004613
Tejun Heo82fe9b02013-06-25 11:53:37 -07004614 /* Add init_css_set to the hash table */
4615 key = css_set_hash(init_css_set.subsys);
4616 hash_add(css_set_table, &init_css_set.hlist, key);
4617
Tejun Heofc76df72013-06-25 11:53:37 -07004618 BUG_ON(cgroup_init_root_id(&cgroup_dummy_root, 0, 1));
Greg KH676db4a2010-08-05 13:53:35 -07004619
Li Zefan4e96ee8e2013-07-31 09:50:50 +08004620 err = idr_alloc(&cgroup_dummy_root.cgroup_idr, cgroup_dummy_top,
4621 0, 1, GFP_KERNEL);
4622 BUG_ON(err < 0);
4623
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004624 mutex_unlock(&cgroup_mutex);
4625
Greg KH676db4a2010-08-05 13:53:35 -07004626 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
4627 if (!cgroup_kobj) {
4628 err = -ENOMEM;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004629 goto out;
Greg KH676db4a2010-08-05 13:53:35 -07004630 }
4631
4632 err = register_filesystem(&cgroup_fs_type);
4633 if (err < 0) {
4634 kobject_put(cgroup_kobj);
4635 goto out;
4636 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004637
Li Zefan46ae2202008-04-29 01:00:08 -07004638 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Paul Menagea4243162007-10-18 23:39:35 -07004639
Paul Menageddbcc7e2007-10-18 23:39:30 -07004640out:
Paul Menagea4243162007-10-18 23:39:35 -07004641 if (err)
4642 bdi_destroy(&cgroup_backing_dev_info);
4643
Paul Menageddbcc7e2007-10-18 23:39:30 -07004644 return err;
4645}
Paul Menageb4f48b62007-10-18 23:39:33 -07004646
Tejun Heoe5fca242013-11-22 17:14:39 -05004647static int __init cgroup_wq_init(void)
4648{
4649 /*
4650 * There isn't much point in executing destruction path in
4651 * parallel. Good chunk is serialized with cgroup_mutex anyway.
Hugh Dickinsab3f5fa2014-02-06 15:56:01 -08004652 *
4653 * XXX: Must be ordered to make sure parent is offlined after
4654 * children. The ordering requirement is for memcg where a
4655 * parent's offline may wait for a child's leading to deadlock. In
4656 * the long term, this should be fixed from memcg side.
Tejun Heoe5fca242013-11-22 17:14:39 -05004657 *
4658 * We would prefer to do this in cgroup_init() above, but that
4659 * is called before init_workqueues(): so leave this until after.
4660 */
Hugh Dickinsab3f5fa2014-02-06 15:56:01 -08004661 cgroup_destroy_wq = alloc_ordered_workqueue("cgroup_destroy", 0);
Tejun Heoe5fca242013-11-22 17:14:39 -05004662 BUG_ON(!cgroup_destroy_wq);
Tejun Heob1a21362013-11-29 10:42:58 -05004663
4664 /*
4665 * Used to destroy pidlists and separate to serve as flush domain.
4666 * Cap @max_active to 1 too.
4667 */
4668 cgroup_pidlist_destroy_wq = alloc_workqueue("cgroup_pidlist_destroy",
4669 0, 1);
4670 BUG_ON(!cgroup_pidlist_destroy_wq);
4671
Tejun Heoe5fca242013-11-22 17:14:39 -05004672 return 0;
4673}
4674core_initcall(cgroup_wq_init);
4675
Paul Menagea4243162007-10-18 23:39:35 -07004676/*
4677 * proc_cgroup_show()
4678 * - Print task's cgroup paths into seq_file, one line for each hierarchy
4679 * - Used for /proc/<pid>/cgroup.
4680 * - No need to task_lock(tsk) on this tsk->cgroup reference, as it
4681 * doesn't really matter if tsk->cgroup changes after we read it,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004682 * and we take cgroup_mutex, keeping cgroup_attach_task() from changing it
Paul Menagea4243162007-10-18 23:39:35 -07004683 * anyway. No need to check that tsk->cgroup != NULL, thanks to
4684 * the_top_cgroup_hack in cgroup_exit(), which sets an exiting tasks
4685 * cgroup to top_cgroup.
4686 */
4687
4688/* TODO: Use a proper seq_file iterator */
Al Viro8d8b97b2013-04-19 23:11:24 -04004689int proc_cgroup_show(struct seq_file *m, void *v)
Paul Menagea4243162007-10-18 23:39:35 -07004690{
4691 struct pid *pid;
4692 struct task_struct *tsk;
4693 char *buf;
4694 int retval;
4695 struct cgroupfs_root *root;
4696
4697 retval = -ENOMEM;
4698 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
4699 if (!buf)
4700 goto out;
4701
4702 retval = -ESRCH;
4703 pid = m->private;
4704 tsk = get_pid_task(pid, PIDTYPE_PID);
4705 if (!tsk)
4706 goto out_free;
4707
4708 retval = 0;
4709
4710 mutex_lock(&cgroup_mutex);
4711
Li Zefane5f6a862009-01-07 18:07:41 -08004712 for_each_active_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07004713 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07004714 struct cgroup *cgrp;
Tejun Heob85d2042013-12-06 15:11:57 -05004715 int ssid, count = 0;
Paul Menagea4243162007-10-18 23:39:35 -07004716
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004717 seq_printf(m, "%d:", root->hierarchy_id);
Tejun Heob85d2042013-12-06 15:11:57 -05004718 for_each_subsys(ss, ssid)
4719 if (root->subsys_mask & (1 << ssid))
4720 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07004721 if (strlen(root->name))
4722 seq_printf(m, "%sname=%s", count ? "," : "",
4723 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07004724 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07004725 cgrp = task_cgroup_from_root(tsk, root);
Paul Menagebd89aab2007-10-18 23:40:44 -07004726 retval = cgroup_path(cgrp, buf, PAGE_SIZE);
Paul Menagea4243162007-10-18 23:39:35 -07004727 if (retval < 0)
4728 goto out_unlock;
4729 seq_puts(m, buf);
4730 seq_putc(m, '\n');
4731 }
4732
4733out_unlock:
4734 mutex_unlock(&cgroup_mutex);
4735 put_task_struct(tsk);
4736out_free:
4737 kfree(buf);
4738out:
4739 return retval;
4740}
4741
Paul Menagea4243162007-10-18 23:39:35 -07004742/* Display information about each subsystem and each hierarchy */
4743static int proc_cgroupstats_show(struct seq_file *m, void *v)
4744{
Tejun Heo30159ec2013-06-25 11:53:37 -07004745 struct cgroup_subsys *ss;
Paul Menagea4243162007-10-18 23:39:35 -07004746 int i;
Paul Menagea4243162007-10-18 23:39:35 -07004747
Paul Menage8bab8dd2008-04-04 14:29:57 -07004748 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08004749 /*
4750 * ideally we don't want subsystems moving around while we do this.
4751 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
4752 * subsys/hierarchy state.
4753 */
Paul Menagea4243162007-10-18 23:39:35 -07004754 mutex_lock(&cgroup_mutex);
Tejun Heo30159ec2013-06-25 11:53:37 -07004755
4756 for_each_subsys(ss, i)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004757 seq_printf(m, "%s\t%d\t%d\t%d\n",
4758 ss->name, ss->root->hierarchy_id,
Paul Menage8bab8dd2008-04-04 14:29:57 -07004759 ss->root->number_of_cgroups, !ss->disabled);
Tejun Heo30159ec2013-06-25 11:53:37 -07004760
Paul Menagea4243162007-10-18 23:39:35 -07004761 mutex_unlock(&cgroup_mutex);
4762 return 0;
4763}
4764
4765static int cgroupstats_open(struct inode *inode, struct file *file)
4766{
Al Viro9dce07f2008-03-29 03:07:28 +00004767 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07004768}
4769
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004770static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004771 .open = cgroupstats_open,
4772 .read = seq_read,
4773 .llseek = seq_lseek,
4774 .release = single_release,
4775};
4776
Paul Menageb4f48b62007-10-18 23:39:33 -07004777/**
4778 * cgroup_fork - attach newly forked task to its parents cgroup.
Li Zefana043e3b2008-02-23 15:24:09 -08004779 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07004780 *
4781 * Description: A task inherits its parent's cgroup at fork().
4782 *
4783 * A pointer to the shared css_set was automatically copied in
4784 * fork.c by dup_task_struct(). However, we ignore that copy, since
Tejun Heo9bb71302012-10-18 17:52:07 -07004785 * it was not made under the protection of RCU or cgroup_mutex, so
4786 * might no longer be a valid cgroup pointer. cgroup_attach_task() might
4787 * have already changed current->cgroups, allowing the previously
4788 * referenced cgroup group to be removed and freed.
Paul Menageb4f48b62007-10-18 23:39:33 -07004789 *
4790 * At the point that cgroup_fork() is called, 'current' is the parent
4791 * task, and the passed argument 'child' points to the child task.
4792 */
4793void cgroup_fork(struct task_struct *child)
4794{
Tejun Heo9bb71302012-10-18 17:52:07 -07004795 task_lock(current);
Tejun Heoa8ad8052013-06-21 15:52:04 -07004796 get_css_set(task_css_set(current));
Paul Menage817929e2007-10-18 23:39:36 -07004797 child->cgroups = current->cgroups;
Tejun Heo9bb71302012-10-18 17:52:07 -07004798 task_unlock(current);
Paul Menage817929e2007-10-18 23:39:36 -07004799 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07004800}
4801
4802/**
Li Zefana043e3b2008-02-23 15:24:09 -08004803 * cgroup_post_fork - called on a new task after adding it to the task list
4804 * @child: the task in question
4805 *
Tejun Heo5edee612012-10-16 15:03:14 -07004806 * Adds the task to the list running through its css_set if necessary and
4807 * call the subsystem fork() callbacks. Has to be after the task is
4808 * visible on the task list in case we race with the first call to
Tejun Heo0942eee2013-08-08 20:11:26 -04004809 * cgroup_task_iter_start() - to guarantee that the new task ends up on its
Tejun Heo5edee612012-10-16 15:03:14 -07004810 * list.
Li Zefana043e3b2008-02-23 15:24:09 -08004811 */
Paul Menage817929e2007-10-18 23:39:36 -07004812void cgroup_post_fork(struct task_struct *child)
4813{
Tejun Heo30159ec2013-06-25 11:53:37 -07004814 struct cgroup_subsys *ss;
Tejun Heo5edee612012-10-16 15:03:14 -07004815 int i;
4816
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01004817 /*
4818 * use_task_css_set_links is set to 1 before we walk the tasklist
4819 * under the tasklist_lock and we read it here after we added the child
4820 * to the tasklist under the tasklist_lock as well. If the child wasn't
4821 * yet in the tasklist when we walked through it from
4822 * cgroup_enable_task_cg_lists(), then use_task_css_set_links value
4823 * should be visible now due to the paired locking and barriers implied
4824 * by LOCK/UNLOCK: it is written before the tasklist_lock unlock
4825 * in cgroup_enable_task_cg_lists() and read here after the tasklist_lock
4826 * lock on fork.
4827 */
Paul Menage817929e2007-10-18 23:39:36 -07004828 if (use_task_css_set_links) {
4829 write_lock(&css_set_lock);
Tejun Heod8783832012-10-18 17:40:30 -07004830 task_lock(child);
4831 if (list_empty(&child->cg_list))
Tejun Heoa8ad8052013-06-21 15:52:04 -07004832 list_add(&child->cg_list, &task_css_set(child)->tasks);
Tejun Heod8783832012-10-18 17:40:30 -07004833 task_unlock(child);
Paul Menage817929e2007-10-18 23:39:36 -07004834 write_unlock(&css_set_lock);
4835 }
Tejun Heo5edee612012-10-16 15:03:14 -07004836
4837 /*
4838 * Call ss->fork(). This must happen after @child is linked on
4839 * css_set; otherwise, @child might change state between ->fork()
4840 * and addition to css_set.
4841 */
4842 if (need_forkexit_callback) {
Tejun Heo3ed80a62014-02-08 10:36:58 -05004843 for_each_subsys(ss, i)
Tejun Heo5edee612012-10-16 15:03:14 -07004844 if (ss->fork)
4845 ss->fork(child);
Tejun Heo5edee612012-10-16 15:03:14 -07004846 }
Paul Menage817929e2007-10-18 23:39:36 -07004847}
Tejun Heo5edee612012-10-16 15:03:14 -07004848
Paul Menage817929e2007-10-18 23:39:36 -07004849/**
Paul Menageb4f48b62007-10-18 23:39:33 -07004850 * cgroup_exit - detach cgroup from exiting task
4851 * @tsk: pointer to task_struct of exiting process
Li Zefana043e3b2008-02-23 15:24:09 -08004852 * @run_callback: run exit callbacks?
Paul Menageb4f48b62007-10-18 23:39:33 -07004853 *
4854 * Description: Detach cgroup from @tsk and release it.
4855 *
4856 * Note that cgroups marked notify_on_release force every task in
4857 * them to take the global cgroup_mutex mutex when exiting.
4858 * This could impact scaling on very large systems. Be reluctant to
4859 * use notify_on_release cgroups where very high task exit scaling
4860 * is required on large systems.
4861 *
4862 * the_top_cgroup_hack:
4863 *
4864 * Set the exiting tasks cgroup to the root cgroup (top_cgroup).
4865 *
4866 * We call cgroup_exit() while the task is still competent to
4867 * handle notify_on_release(), then leave the task attached to the
4868 * root cgroup in each hierarchy for the remainder of its exit.
4869 *
4870 * To do this properly, we would increment the reference count on
4871 * top_cgroup, and near the very end of the kernel/exit.c do_exit()
4872 * code we would add a second cgroup function call, to drop that
4873 * reference. This would just create an unnecessary hot spot on
4874 * the top_cgroup reference count, to no avail.
4875 *
4876 * Normally, holding a reference to a cgroup without bumping its
4877 * count is unsafe. The cgroup could go away, or someone could
4878 * attach us to a different cgroup, decrementing the count on
4879 * the first cgroup that we never incremented. But in this case,
4880 * top_cgroup isn't going away, and either task has PF_EXITING set,
Cliff Wickman956db3c2008-02-07 00:14:43 -08004881 * which wards off any cgroup_attach_task() attempts, or task is a failed
4882 * fork, never visible to cgroup_attach_task.
Paul Menageb4f48b62007-10-18 23:39:33 -07004883 */
4884void cgroup_exit(struct task_struct *tsk, int run_callbacks)
4885{
Tejun Heo30159ec2013-06-25 11:53:37 -07004886 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -07004887 struct css_set *cset;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004888 int i;
Paul Menage817929e2007-10-18 23:39:36 -07004889
4890 /*
4891 * Unlink from the css_set task list if necessary.
4892 * Optimistically check cg_list before taking
4893 * css_set_lock
4894 */
4895 if (!list_empty(&tsk->cg_list)) {
4896 write_lock(&css_set_lock);
4897 if (!list_empty(&tsk->cg_list))
Phil Carmody8d258792011-03-22 16:30:13 -07004898 list_del_init(&tsk->cg_list);
Paul Menage817929e2007-10-18 23:39:36 -07004899 write_unlock(&css_set_lock);
4900 }
4901
Paul Menageb4f48b62007-10-18 23:39:33 -07004902 /* Reassign the task to the init_css_set. */
4903 task_lock(tsk);
Tejun Heoa8ad8052013-06-21 15:52:04 -07004904 cset = task_css_set(tsk);
4905 RCU_INIT_POINTER(tsk->cgroups, &init_css_set);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004906
4907 if (run_callbacks && need_forkexit_callback) {
Tejun Heo3ed80a62014-02-08 10:36:58 -05004908 /* see cgroup_post_fork() for details */
4909 for_each_subsys(ss, i) {
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004910 if (ss->exit) {
Tejun Heoeb954192013-08-08 20:11:23 -04004911 struct cgroup_subsys_state *old_css = cset->subsys[i];
4912 struct cgroup_subsys_state *css = task_css(tsk, i);
Tejun Heo30159ec2013-06-25 11:53:37 -07004913
Tejun Heoeb954192013-08-08 20:11:23 -04004914 ss->exit(css, old_css, tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004915 }
4916 }
4917 }
Paul Menageb4f48b62007-10-18 23:39:33 -07004918 task_unlock(tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01004919
Tejun Heo5abb8852013-06-12 21:04:49 -07004920 put_css_set_taskexit(cset);
Paul Menageb4f48b62007-10-18 23:39:33 -07004921}
Paul Menage697f4162007-10-18 23:39:34 -07004922
Paul Menagebd89aab2007-10-18 23:40:44 -07004923static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004924{
Li Zefanf50daa72013-03-01 15:06:07 +08004925 if (cgroup_is_releasable(cgrp) &&
Tejun Heo6f3d828f02013-06-12 21:04:55 -07004926 list_empty(&cgrp->cset_links) && list_empty(&cgrp->children)) {
Li Zefanf50daa72013-03-01 15:06:07 +08004927 /*
4928 * Control Group is currently removeable. If it's not
Paul Menage81a6a5c2007-10-18 23:39:38 -07004929 * already queued for a userspace notification, queue
Li Zefanf50daa72013-03-01 15:06:07 +08004930 * it now
4931 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004932 int need_schedule_work = 0;
Li Zefanf50daa72013-03-01 15:06:07 +08004933
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004934 raw_spin_lock(&release_list_lock);
Tejun Heo54766d42013-06-12 21:04:53 -07004935 if (!cgroup_is_dead(cgrp) &&
Paul Menagebd89aab2007-10-18 23:40:44 -07004936 list_empty(&cgrp->release_list)) {
4937 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004938 need_schedule_work = 1;
4939 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004940 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004941 if (need_schedule_work)
4942 schedule_work(&release_agent_work);
4943 }
4944}
4945
Paul Menage81a6a5c2007-10-18 23:39:38 -07004946/*
4947 * Notify userspace when a cgroup is released, by running the
4948 * configured release agent with the name of the cgroup (path
4949 * relative to the root of cgroup file system) as the argument.
4950 *
4951 * Most likely, this user command will try to rmdir this cgroup.
4952 *
4953 * This races with the possibility that some other task will be
4954 * attached to this cgroup before it is removed, or that some other
4955 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
4956 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
4957 * unused, and this cgroup will be reprieved from its death sentence,
4958 * to continue to serve a useful existence. Next time it's released,
4959 * we will get notified again, if it still has 'notify_on_release' set.
4960 *
4961 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
4962 * means only wait until the task is successfully execve()'d. The
4963 * separate release agent task is forked by call_usermodehelper(),
4964 * then control in this thread returns here, without waiting for the
4965 * release agent task. We don't bother to wait because the caller of
4966 * this routine has no use for the exit status of the release agent
4967 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07004968 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07004969static void cgroup_release_agent(struct work_struct *work)
4970{
4971 BUG_ON(work != &release_agent_work);
4972 mutex_lock(&cgroup_mutex);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004973 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004974 while (!list_empty(&release_list)) {
4975 char *argv[3], *envp[3];
4976 int i;
Paul Menagee788e062008-07-25 01:46:59 -07004977 char *pathbuf = NULL, *agentbuf = NULL;
Paul Menagebd89aab2007-10-18 23:40:44 -07004978 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07004979 struct cgroup,
4980 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07004981 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02004982 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004983 pathbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paul Menagee788e062008-07-25 01:46:59 -07004984 if (!pathbuf)
4985 goto continue_free;
4986 if (cgroup_path(cgrp, pathbuf, PAGE_SIZE) < 0)
4987 goto continue_free;
4988 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
4989 if (!agentbuf)
4990 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004991
4992 i = 0;
Paul Menagee788e062008-07-25 01:46:59 -07004993 argv[i++] = agentbuf;
4994 argv[i++] = pathbuf;
Paul Menage81a6a5c2007-10-18 23:39:38 -07004995 argv[i] = NULL;
4996
4997 i = 0;
4998 /* minimal command environment */
4999 envp[i++] = "HOME=/";
5000 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
5001 envp[i] = NULL;
5002
5003 /* Drop the lock while we invoke the usermode helper,
5004 * since the exec could involve hitting disk and hence
5005 * be a slow process */
5006 mutex_unlock(&cgroup_mutex);
5007 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005008 mutex_lock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07005009 continue_free:
5010 kfree(pathbuf);
5011 kfree(agentbuf);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005012 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005013 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005014 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005015 mutex_unlock(&cgroup_mutex);
5016}
Paul Menage8bab8dd2008-04-04 14:29:57 -07005017
5018static int __init cgroup_disable(char *str)
5019{
Tejun Heo30159ec2013-06-25 11:53:37 -07005020 struct cgroup_subsys *ss;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005021 char *token;
Tejun Heo30159ec2013-06-25 11:53:37 -07005022 int i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005023
5024 while ((token = strsep(&str, ",")) != NULL) {
5025 if (!*token)
5026 continue;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005027
Tejun Heo3ed80a62014-02-08 10:36:58 -05005028 for_each_subsys(ss, i) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07005029 if (!strcmp(token, ss->name)) {
5030 ss->disabled = 1;
5031 printk(KERN_INFO "Disabling %s control group"
5032 " subsystem\n", ss->name);
5033 break;
5034 }
5035 }
5036 }
5037 return 1;
5038}
5039__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005040
Tejun Heob77d7b62013-08-13 11:01:54 -04005041/**
Tejun Heo5a17f542014-02-11 11:52:47 -05005042 * css_tryget_from_dir - get corresponding css from the dentry of a cgroup dir
Tejun Heo35cf0832013-08-26 18:40:56 -04005043 * @dentry: directory dentry of interest
5044 * @ss: subsystem of interest
Tejun Heob77d7b62013-08-13 11:01:54 -04005045 *
Tejun Heo5a17f542014-02-11 11:52:47 -05005046 * If @dentry is a directory for a cgroup which has @ss enabled on it, try
5047 * to get the corresponding css and return it. If such css doesn't exist
5048 * or can't be pinned, an ERR_PTR value is returned.
Stephane Eraniane5d13672011-02-14 11:20:01 +02005049 */
Tejun Heo5a17f542014-02-11 11:52:47 -05005050struct cgroup_subsys_state *css_tryget_from_dir(struct dentry *dentry,
5051 struct cgroup_subsys *ss)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005052{
5053 struct cgroup *cgrp;
Tejun Heo5a17f542014-02-11 11:52:47 -05005054 struct cgroup_subsys_state *css;
Tejun Heob77d7b62013-08-13 11:01:54 -04005055
Tejun Heo35cf0832013-08-26 18:40:56 -04005056 /* is @dentry a cgroup dir? */
5057 if (!dentry->d_inode ||
5058 dentry->d_inode->i_op != &cgroup_dir_inode_operations)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005059 return ERR_PTR(-EBADF);
5060
Tejun Heo5a17f542014-02-11 11:52:47 -05005061 rcu_read_lock();
5062
Tejun Heo35cf0832013-08-26 18:40:56 -04005063 cgrp = __d_cgrp(dentry);
Tejun Heo5a17f542014-02-11 11:52:47 -05005064 css = cgroup_css(cgrp, ss);
5065
5066 if (!css || !css_tryget(css))
5067 css = ERR_PTR(-ENOENT);
5068
5069 rcu_read_unlock();
5070 return css;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005071}
Stephane Eraniane5d13672011-02-14 11:20:01 +02005072
Li Zefan1cb650b2013-08-19 10:05:24 +08005073/**
5074 * css_from_id - lookup css by id
5075 * @id: the cgroup id
5076 * @ss: cgroup subsys to be looked into
5077 *
5078 * Returns the css if there's valid one with @id, otherwise returns NULL.
5079 * Should be called under rcu_read_lock().
5080 */
5081struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss)
5082{
5083 struct cgroup *cgrp;
5084
Tejun Heoace2bee2014-02-11 11:52:47 -05005085 cgroup_assert_mutexes_or_rcu_locked();
Li Zefan1cb650b2013-08-19 10:05:24 +08005086
5087 cgrp = idr_find(&ss->root->cgroup_idr, id);
5088 if (cgrp)
Tejun Heod1625962013-08-27 14:27:23 -04005089 return cgroup_css(cgrp, ss);
Li Zefan1cb650b2013-08-19 10:05:24 +08005090 return NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005091}
5092
Paul Menagefe693432009-09-23 15:56:20 -07005093#ifdef CONFIG_CGROUP_DEBUG
Tejun Heoeb954192013-08-08 20:11:23 -04005094static struct cgroup_subsys_state *
5095debug_css_alloc(struct cgroup_subsys_state *parent_css)
Paul Menagefe693432009-09-23 15:56:20 -07005096{
5097 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
5098
5099 if (!css)
5100 return ERR_PTR(-ENOMEM);
5101
5102 return css;
5103}
5104
Tejun Heoeb954192013-08-08 20:11:23 -04005105static void debug_css_free(struct cgroup_subsys_state *css)
Paul Menagefe693432009-09-23 15:56:20 -07005106{
Tejun Heoeb954192013-08-08 20:11:23 -04005107 kfree(css);
Paul Menagefe693432009-09-23 15:56:20 -07005108}
5109
Tejun Heo182446d2013-08-08 20:11:24 -04005110static u64 debug_taskcount_read(struct cgroup_subsys_state *css,
5111 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005112{
Tejun Heo182446d2013-08-08 20:11:24 -04005113 return cgroup_task_count(css->cgroup);
Paul Menagefe693432009-09-23 15:56:20 -07005114}
5115
Tejun Heo182446d2013-08-08 20:11:24 -04005116static u64 current_css_set_read(struct cgroup_subsys_state *css,
5117 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005118{
5119 return (u64)(unsigned long)current->cgroups;
5120}
5121
Tejun Heo182446d2013-08-08 20:11:24 -04005122static u64 current_css_set_refcount_read(struct cgroup_subsys_state *css,
Li Zefan03c78cb2013-06-14 11:17:19 +08005123 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005124{
5125 u64 count;
5126
5127 rcu_read_lock();
Tejun Heoa8ad8052013-06-21 15:52:04 -07005128 count = atomic_read(&task_css_set(current)->refcount);
Paul Menagefe693432009-09-23 15:56:20 -07005129 rcu_read_unlock();
5130 return count;
5131}
5132
Tejun Heo2da8ca82013-12-05 12:28:04 -05005133static int current_css_set_cg_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005134{
Tejun Heo69d02062013-06-12 21:04:50 -07005135 struct cgrp_cset_link *link;
Tejun Heo5abb8852013-06-12 21:04:49 -07005136 struct css_set *cset;
Paul Menage7717f7b2009-09-23 15:56:22 -07005137
5138 read_lock(&css_set_lock);
5139 rcu_read_lock();
Tejun Heo5abb8852013-06-12 21:04:49 -07005140 cset = rcu_dereference(current->cgroups);
Tejun Heo69d02062013-06-12 21:04:50 -07005141 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07005142 struct cgroup *c = link->cgrp;
5143 const char *name;
5144
5145 if (c->dentry)
5146 name = c->dentry->d_name.name;
5147 else
5148 name = "?";
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005149 seq_printf(seq, "Root %d group %s\n",
5150 c->root->hierarchy_id, name);
Paul Menage7717f7b2009-09-23 15:56:22 -07005151 }
5152 rcu_read_unlock();
5153 read_unlock(&css_set_lock);
5154 return 0;
5155}
5156
5157#define MAX_TASKS_SHOWN_PER_CSS 25
Tejun Heo2da8ca82013-12-05 12:28:04 -05005158static int cgroup_css_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005159{
Tejun Heo2da8ca82013-12-05 12:28:04 -05005160 struct cgroup_subsys_state *css = seq_css(seq);
Tejun Heo69d02062013-06-12 21:04:50 -07005161 struct cgrp_cset_link *link;
Paul Menage7717f7b2009-09-23 15:56:22 -07005162
5163 read_lock(&css_set_lock);
Tejun Heo182446d2013-08-08 20:11:24 -04005164 list_for_each_entry(link, &css->cgroup->cset_links, cset_link) {
Tejun Heo69d02062013-06-12 21:04:50 -07005165 struct css_set *cset = link->cset;
Paul Menage7717f7b2009-09-23 15:56:22 -07005166 struct task_struct *task;
5167 int count = 0;
Tejun Heo5abb8852013-06-12 21:04:49 -07005168 seq_printf(seq, "css_set %p\n", cset);
5169 list_for_each_entry(task, &cset->tasks, cg_list) {
Paul Menage7717f7b2009-09-23 15:56:22 -07005170 if (count++ > MAX_TASKS_SHOWN_PER_CSS) {
5171 seq_puts(seq, " ...\n");
5172 break;
5173 } else {
5174 seq_printf(seq, " task %d\n",
5175 task_pid_vnr(task));
5176 }
5177 }
5178 }
5179 read_unlock(&css_set_lock);
5180 return 0;
5181}
5182
Tejun Heo182446d2013-08-08 20:11:24 -04005183static u64 releasable_read(struct cgroup_subsys_state *css, struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005184{
Tejun Heo182446d2013-08-08 20:11:24 -04005185 return test_bit(CGRP_RELEASABLE, &css->cgroup->flags);
Paul Menagefe693432009-09-23 15:56:20 -07005186}
5187
5188static struct cftype debug_files[] = {
5189 {
Paul Menagefe693432009-09-23 15:56:20 -07005190 .name = "taskcount",
5191 .read_u64 = debug_taskcount_read,
5192 },
5193
5194 {
5195 .name = "current_css_set",
5196 .read_u64 = current_css_set_read,
5197 },
5198
5199 {
5200 .name = "current_css_set_refcount",
5201 .read_u64 = current_css_set_refcount_read,
5202 },
5203
5204 {
Paul Menage7717f7b2009-09-23 15:56:22 -07005205 .name = "current_css_set_cg_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005206 .seq_show = current_css_set_cg_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07005207 },
5208
5209 {
5210 .name = "cgroup_css_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005211 .seq_show = cgroup_css_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07005212 },
5213
5214 {
Paul Menagefe693432009-09-23 15:56:20 -07005215 .name = "releasable",
5216 .read_u64 = releasable_read,
5217 },
Paul Menagefe693432009-09-23 15:56:20 -07005218
Tejun Heo4baf6e32012-04-01 12:09:55 -07005219 { } /* terminate */
5220};
Paul Menagefe693432009-09-23 15:56:20 -07005221
Tejun Heo073219e2014-02-08 10:36:58 -05005222struct cgroup_subsys debug_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08005223 .css_alloc = debug_css_alloc,
5224 .css_free = debug_css_free,
Tejun Heo4baf6e32012-04-01 12:09:55 -07005225 .base_cftypes = debug_files,
Paul Menagefe693432009-09-23 15:56:20 -07005226};
5227#endif /* CONFIG_CGROUP_DEBUG */