blob: 5411fffa4b7057b12fb425970ff130ea7f44d9cb [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
Joe Perchesed3d2612014-04-25 18:28:03 -040029#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30
Paul Menageddbcc7e2007-10-18 23:39:30 -070031#include <linux/cgroup.h>
eparis@redhat2ce97382011-06-02 21:20:51 +100032#include <linux/cred.h>
Paul Menagec6d57f32009-09-23 15:56:19 -070033#include <linux/ctype.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070034#include <linux/errno.h>
eparis@redhat2ce97382011-06-02 21:20:51 +100035#include <linux/init_task.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070036#include <linux/kernel.h>
37#include <linux/list.h>
Jianyu Zhanc9482a52014-04-26 15:40:28 +080038#include <linux/magic.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070039#include <linux/mm.h>
40#include <linux/mutex.h>
41#include <linux/mount.h>
42#include <linux/pagemap.h>
Paul Menagea4243162007-10-18 23:39:35 -070043#include <linux/proc_fs.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070044#include <linux/rcupdate.h>
45#include <linux/sched.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070046#include <linux/slab.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070047#include <linux/spinlock.h>
Tejun Heo96d365e2014-02-13 06:58:40 -050048#include <linux/rwsem.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070049#include <linux/string.h>
Paul Menagebbcb81d2007-10-18 23:39:32 -070050#include <linux/sort.h>
Paul Menage81a6a5c2007-10-18 23:39:38 -070051#include <linux/kmod.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070052#include <linux/delayacct.h>
53#include <linux/cgroupstats.h>
Li Zefan0ac801f2013-01-10 11:49:27 +080054#include <linux/hashtable.h>
Li Zefan096b7fe2009-07-29 15:04:04 -070055#include <linux/pid_namespace.h>
Paul Menage2c6ab6d2009-09-23 15:56:23 -070056#include <linux/idr.h>
Ben Blumd1d9fd32009-09-23 15:56:28 -070057#include <linux/vmalloc.h> /* TODO: replace with more sophisticated array */
Mike Galbraithc4c27fb2012-04-21 09:13:46 +020058#include <linux/kthread.h>
Tejun Heo776f02f2014-02-12 09:29:50 -050059#include <linux/delay.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070060
Arun Sharma600634972011-07-26 16:09:06 -070061#include <linux/atomic.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070062
Tejun Heoe25e2cb2011-12-12 18:12:21 -080063/*
Tejun Heob1a21362013-11-29 10:42:58 -050064 * pidlists linger the following amount before being destroyed. The goal
65 * is avoiding frequent destruction in the middle of consecutive read calls
66 * Expiring in the middle is a performance problem not a correctness one.
67 * 1 sec should be enough.
68 */
69#define CGROUP_PIDLIST_DESTROY_DELAY HZ
70
Tejun Heo8d7e6fb2014-02-11 11:52:48 -050071#define CGROUP_FILE_NAME_MAX (MAX_CGROUP_TYPE_NAMELEN + \
72 MAX_CFTYPE_NAME + 2)
73
Tejun Heob1a21362013-11-29 10:42:58 -050074/*
Tejun Heoe25e2cb2011-12-12 18:12:21 -080075 * cgroup_mutex is the master lock. Any modification to cgroup or its
76 * hierarchy must be performed while holding it.
77 *
Tejun Heo0e1d7682014-02-25 10:04:03 -050078 * css_set_rwsem protects task->cgroups pointer, the list of css_set
79 * objects, and the chain of tasks off each css_set.
Tejun Heoe25e2cb2011-12-12 18:12:21 -080080 *
Tejun Heo0e1d7682014-02-25 10:04:03 -050081 * These locks are exported if CONFIG_PROVE_RCU so that accessors in
82 * cgroup.h can use them for lockdep annotations.
Tejun Heoe25e2cb2011-12-12 18:12:21 -080083 */
Tejun Heo22194492013-04-07 09:29:51 -070084#ifdef CONFIG_PROVE_RCU
85DEFINE_MUTEX(cgroup_mutex);
Tejun Heo0e1d7682014-02-25 10:04:03 -050086DECLARE_RWSEM(css_set_rwsem);
87EXPORT_SYMBOL_GPL(cgroup_mutex);
88EXPORT_SYMBOL_GPL(css_set_rwsem);
Tejun Heo22194492013-04-07 09:29:51 -070089#else
Paul Menage81a6a5c2007-10-18 23:39:38 -070090static DEFINE_MUTEX(cgroup_mutex);
Tejun Heo0e1d7682014-02-25 10:04:03 -050091static DECLARE_RWSEM(css_set_rwsem);
Tejun Heo22194492013-04-07 09:29:51 -070092#endif
93
Tejun Heo69e943b2014-02-08 10:36:58 -050094/*
Tejun Heo15a4c832014-05-04 15:09:14 -040095 * Protects cgroup_idr and css_idr so that IDs can be released without
96 * grabbing cgroup_mutex.
Tejun Heo6fa49182014-05-04 15:09:13 -040097 */
98static DEFINE_SPINLOCK(cgroup_idr_lock);
99
100/*
Tejun Heo69e943b2014-02-08 10:36:58 -0500101 * Protects cgroup_subsys->release_agent_path. Modifying it also requires
102 * cgroup_mutex. Reading requires either cgroup_mutex or this spinlock.
103 */
104static DEFINE_SPINLOCK(release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700105
Tejun Heo8353da12014-05-13 12:19:23 -0400106#define cgroup_assert_mutex_or_rcu_locked() \
Tejun Heo87fb54f2013-12-06 15:11:55 -0500107 rcu_lockdep_assert(rcu_read_lock_held() || \
108 lockdep_is_held(&cgroup_mutex), \
Tejun Heo8353da12014-05-13 12:19:23 -0400109 "cgroup_mutex or RCU read lock required");
Tejun Heo780cd8b2013-12-06 15:11:56 -0500110
Ben Blumaae8aab2010-03-10 15:22:07 -0800111/*
Tejun Heoe5fca242013-11-22 17:14:39 -0500112 * cgroup destruction makes heavy use of work items and there can be a lot
113 * of concurrent destructions. Use a separate workqueue so that cgroup
114 * destruction work items don't end up filling up max_active of system_wq
115 * which may lead to deadlock.
116 */
117static struct workqueue_struct *cgroup_destroy_wq;
118
119/*
Tejun Heob1a21362013-11-29 10:42:58 -0500120 * pidlist destructions need to be flushed on cgroup destruction. Use a
121 * separate workqueue as flush domain.
122 */
123static struct workqueue_struct *cgroup_pidlist_destroy_wq;
124
Tejun Heo3ed80a62014-02-08 10:36:58 -0500125/* generate an array of cgroup subsystem pointers */
Tejun Heo073219e2014-02-08 10:36:58 -0500126#define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys,
Tejun Heo3ed80a62014-02-08 10:36:58 -0500127static struct cgroup_subsys *cgroup_subsys[] = {
Paul Menageddbcc7e2007-10-18 23:39:30 -0700128#include <linux/cgroup_subsys.h>
129};
Tejun Heo073219e2014-02-08 10:36:58 -0500130#undef SUBSYS
131
132/* array of cgroup subsystem names */
133#define SUBSYS(_x) [_x ## _cgrp_id] = #_x,
134static const char *cgroup_subsys_name[] = {
135#include <linux/cgroup_subsys.h>
136};
137#undef SUBSYS
Paul Menageddbcc7e2007-10-18 23:39:30 -0700138
Paul Menageddbcc7e2007-10-18 23:39:30 -0700139/*
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400140 * The default hierarchy, reserved for the subsystems that are otherwise
Tejun Heo9871bf92013-06-24 15:21:47 -0700141 * unattached - it never has more than a single cgroup, and all tasks are
142 * part of that cgroup.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700143 */
Tejun Heoa2dd4242014-03-19 10:23:55 -0400144struct cgroup_root cgrp_dfl_root;
Tejun Heo9871bf92013-06-24 15:21:47 -0700145
Tejun Heoa2dd4242014-03-19 10:23:55 -0400146/*
147 * The default hierarchy always exists but is hidden until mounted for the
148 * first time. This is for backward compatibility.
149 */
150static bool cgrp_dfl_root_visible;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700151
Tejun Heo5533e012014-05-14 19:33:07 -0400152/* some controllers are not supported in the default hierarchy */
153static const unsigned int cgrp_dfl_root_inhibit_ss_mask = 0
154#ifdef CONFIG_CGROUP_DEBUG
155 | (1 << debug_cgrp_id)
156#endif
157 ;
158
Paul Menageddbcc7e2007-10-18 23:39:30 -0700159/* The list of hierarchy roots */
160
Tejun Heo9871bf92013-06-24 15:21:47 -0700161static LIST_HEAD(cgroup_roots);
162static int cgroup_root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700163
Tejun Heo3417ae12014-02-08 10:37:01 -0500164/* hierarchy ID allocation and mapping, protected by cgroup_mutex */
Tejun Heo1a574232013-04-14 11:36:58 -0700165static DEFINE_IDR(cgroup_hierarchy_idr);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700166
Li Zefan794611a2013-06-18 18:53:53 +0800167/*
Tejun Heo0cb51d72014-05-16 13:22:49 -0400168 * Assign a monotonically increasing serial number to csses. It guarantees
169 * cgroups with bigger numbers are newer than those with smaller numbers.
170 * Also, as csses are always appended to the parent's ->children list, it
171 * guarantees that sibling csses are always sorted in the ascending serial
172 * number order on the list. Protected by cgroup_mutex.
Li Zefan794611a2013-06-18 18:53:53 +0800173 */
Tejun Heo0cb51d72014-05-16 13:22:49 -0400174static u64 css_serial_nr_next = 1;
Li Zefan794611a2013-06-18 18:53:53 +0800175
Paul Menageddbcc7e2007-10-18 23:39:30 -0700176/* This flag indicates whether tasks in the fork and exit paths should
Li Zefana043e3b2008-02-23 15:24:09 -0800177 * check for fork/exit handlers to call. This avoids us having to do
178 * extra work in the fork/exit path if none of the subsystems need to
179 * be called.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700180 */
Li Zefan8947f9d2008-07-25 01:46:56 -0700181static int need_forkexit_callback __read_mostly;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700182
Tejun Heo628f7cd2013-06-28 16:24:11 -0700183static struct cftype cgroup_base_files[];
184
Tejun Heo59f52962014-02-11 11:52:49 -0500185static void cgroup_put(struct cgroup *cgrp);
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400186static int rebind_subsystems(struct cgroup_root *dst_root,
Tejun Heo69dfa002014-05-04 15:09:13 -0400187 unsigned int ss_mask);
Tejun Heo42809dd2012-11-19 08:13:37 -0800188static int cgroup_destroy_locked(struct cgroup *cgrp);
Tejun Heof63070d2014-07-08 18:02:57 -0400189static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss,
190 bool visible);
Tejun Heo9d755d32014-05-14 09:15:02 -0400191static void css_release(struct percpu_ref *ref);
Tejun Heof8f22e52014-04-23 11:13:16 -0400192static void kill_css(struct cgroup_subsys_state *css);
Tejun Heo2bb566c2013-08-08 20:11:23 -0400193static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
194 bool is_add);
Tejun Heob1a21362013-11-29 10:42:58 -0500195static void cgroup_pidlist_destroy_all(struct cgroup *cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -0800196
Tejun Heo6fa49182014-05-04 15:09:13 -0400197/* IDR wrappers which synchronize using cgroup_idr_lock */
198static int cgroup_idr_alloc(struct idr *idr, void *ptr, int start, int end,
199 gfp_t gfp_mask)
200{
201 int ret;
202
203 idr_preload(gfp_mask);
Tejun Heo54504e92014-05-13 12:10:59 -0400204 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400205 ret = idr_alloc(idr, ptr, start, end, gfp_mask);
Tejun Heo54504e92014-05-13 12:10:59 -0400206 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400207 idr_preload_end();
208 return ret;
209}
210
211static void *cgroup_idr_replace(struct idr *idr, void *ptr, int id)
212{
213 void *ret;
214
Tejun Heo54504e92014-05-13 12:10:59 -0400215 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400216 ret = idr_replace(idr, ptr, id);
Tejun Heo54504e92014-05-13 12:10:59 -0400217 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400218 return ret;
219}
220
221static void cgroup_idr_remove(struct idr *idr, int id)
222{
Tejun Heo54504e92014-05-13 12:10:59 -0400223 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400224 idr_remove(idr, id);
Tejun Heo54504e92014-05-13 12:10:59 -0400225 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400226}
227
Tejun Heod51f39b2014-05-16 13:22:48 -0400228static struct cgroup *cgroup_parent(struct cgroup *cgrp)
229{
230 struct cgroup_subsys_state *parent_css = cgrp->self.parent;
231
232 if (parent_css)
233 return container_of(parent_css, struct cgroup, self);
234 return NULL;
235}
236
Tejun Heo95109b62013-08-08 20:11:27 -0400237/**
238 * cgroup_css - obtain a cgroup's css for the specified subsystem
239 * @cgrp: the cgroup of interest
Tejun Heo9d800df2014-05-14 09:15:00 -0400240 * @ss: the subsystem of interest (%NULL returns @cgrp->self)
Tejun Heo95109b62013-08-08 20:11:27 -0400241 *
Tejun Heoca8bdca2013-08-26 18:40:56 -0400242 * Return @cgrp's css (cgroup_subsys_state) associated with @ss. This
243 * function must be called either under cgroup_mutex or rcu_read_lock() and
244 * the caller is responsible for pinning the returned css if it wants to
245 * keep accessing it outside the said locks. This function may return
246 * %NULL if @cgrp doesn't have @subsys_id enabled.
Tejun Heo95109b62013-08-08 20:11:27 -0400247 */
248static struct cgroup_subsys_state *cgroup_css(struct cgroup *cgrp,
Tejun Heoca8bdca2013-08-26 18:40:56 -0400249 struct cgroup_subsys *ss)
Tejun Heo95109b62013-08-08 20:11:27 -0400250{
Tejun Heoca8bdca2013-08-26 18:40:56 -0400251 if (ss)
Tejun Heoaec25022014-02-08 10:36:58 -0500252 return rcu_dereference_check(cgrp->subsys[ss->id],
Tejun Heoace2bee2014-02-11 11:52:47 -0500253 lockdep_is_held(&cgroup_mutex));
Tejun Heoca8bdca2013-08-26 18:40:56 -0400254 else
Tejun Heo9d800df2014-05-14 09:15:00 -0400255 return &cgrp->self;
Tejun Heo95109b62013-08-08 20:11:27 -0400256}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700257
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400258/**
259 * cgroup_e_css - obtain a cgroup's effective css for the specified subsystem
260 * @cgrp: the cgroup of interest
Tejun Heo9d800df2014-05-14 09:15:00 -0400261 * @ss: the subsystem of interest (%NULL returns @cgrp->self)
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400262 *
263 * Similar to cgroup_css() but returns the effctive css, which is defined
264 * as the matching css of the nearest ancestor including self which has @ss
265 * enabled. If @ss is associated with the hierarchy @cgrp is on, this
266 * function is guaranteed to return non-NULL css.
267 */
268static struct cgroup_subsys_state *cgroup_e_css(struct cgroup *cgrp,
269 struct cgroup_subsys *ss)
270{
271 lockdep_assert_held(&cgroup_mutex);
272
273 if (!ss)
Tejun Heo9d800df2014-05-14 09:15:00 -0400274 return &cgrp->self;
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400275
276 if (!(cgrp->root->subsys_mask & (1 << ss->id)))
277 return NULL;
278
Tejun Heod51f39b2014-05-16 13:22:48 -0400279 while (cgroup_parent(cgrp) &&
280 !(cgroup_parent(cgrp)->child_subsys_mask & (1 << ss->id)))
281 cgrp = cgroup_parent(cgrp);
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400282
283 return cgroup_css(cgrp, ss);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700284}
285
Paul Menageddbcc7e2007-10-18 23:39:30 -0700286/* convenient tests for these bits */
Tejun Heo54766d42013-06-12 21:04:53 -0700287static inline bool cgroup_is_dead(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700288{
Tejun Heo184faf32014-05-16 13:22:51 -0400289 return !(cgrp->self.flags & CSS_ONLINE);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700290}
291
Tejun Heob4168642014-05-13 12:16:21 -0400292struct cgroup_subsys_state *of_css(struct kernfs_open_file *of)
Tejun Heo59f52962014-02-11 11:52:49 -0500293{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500294 struct cgroup *cgrp = of->kn->parent->priv;
Tejun Heob4168642014-05-13 12:16:21 -0400295 struct cftype *cft = of_cft(of);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500296
297 /*
298 * This is open and unprotected implementation of cgroup_css().
299 * seq_css() is only called from a kernfs file operation which has
300 * an active reference on the file. Because all the subsystem
301 * files are drained before a css is disassociated with a cgroup,
302 * the matching css from the cgroup's subsys table is guaranteed to
303 * be and stay valid until the enclosing operation is complete.
304 */
305 if (cft->ss)
306 return rcu_dereference_raw(cgrp->subsys[cft->ss->id]);
307 else
Tejun Heo9d800df2014-05-14 09:15:00 -0400308 return &cgrp->self;
Tejun Heo59f52962014-02-11 11:52:49 -0500309}
Tejun Heob4168642014-05-13 12:16:21 -0400310EXPORT_SYMBOL_GPL(of_css);
Tejun Heo59f52962014-02-11 11:52:49 -0500311
Li Zefan78574cf2013-04-08 19:00:38 -0700312/**
313 * cgroup_is_descendant - test ancestry
314 * @cgrp: the cgroup to be tested
315 * @ancestor: possible ancestor of @cgrp
316 *
317 * Test whether @cgrp is a descendant of @ancestor. It also returns %true
318 * if @cgrp == @ancestor. This function is safe to call as long as @cgrp
319 * and @ancestor are accessible.
320 */
321bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor)
322{
323 while (cgrp) {
324 if (cgrp == ancestor)
325 return true;
Tejun Heod51f39b2014-05-16 13:22:48 -0400326 cgrp = cgroup_parent(cgrp);
Li Zefan78574cf2013-04-08 19:00:38 -0700327 }
328 return false;
329}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700330
Adrian Bunke9685a02008-02-07 00:13:46 -0800331static int cgroup_is_releasable(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700332{
333 const int bits =
Paul Menagebd89aab2007-10-18 23:40:44 -0700334 (1 << CGRP_RELEASABLE) |
335 (1 << CGRP_NOTIFY_ON_RELEASE);
336 return (cgrp->flags & bits) == bits;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700337}
338
Adrian Bunke9685a02008-02-07 00:13:46 -0800339static int notify_on_release(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700340{
Paul Menagebd89aab2007-10-18 23:40:44 -0700341 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700342}
343
Tejun Heo30159ec2013-06-25 11:53:37 -0700344/**
Tejun Heo1c6727a2013-12-06 15:11:56 -0500345 * for_each_css - iterate all css's of a cgroup
346 * @css: the iteration cursor
347 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
348 * @cgrp: the target cgroup to iterate css's of
Tejun Heo30159ec2013-06-25 11:53:37 -0700349 *
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400350 * Should be called under cgroup_[tree_]mutex.
Tejun Heo30159ec2013-06-25 11:53:37 -0700351 */
Tejun Heo1c6727a2013-12-06 15:11:56 -0500352#define for_each_css(css, ssid, cgrp) \
353 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
354 if (!((css) = rcu_dereference_check( \
355 (cgrp)->subsys[(ssid)], \
356 lockdep_is_held(&cgroup_mutex)))) { } \
357 else
358
359/**
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400360 * for_each_e_css - iterate all effective css's of a cgroup
361 * @css: the iteration cursor
362 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
363 * @cgrp: the target cgroup to iterate css's of
364 *
365 * Should be called under cgroup_[tree_]mutex.
366 */
367#define for_each_e_css(css, ssid, cgrp) \
368 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
369 if (!((css) = cgroup_e_css(cgrp, cgroup_subsys[(ssid)]))) \
370 ; \
371 else
372
373/**
Tejun Heo3ed80a62014-02-08 10:36:58 -0500374 * for_each_subsys - iterate all enabled cgroup subsystems
Tejun Heo30159ec2013-06-25 11:53:37 -0700375 * @ss: the iteration cursor
Tejun Heo780cd8b2013-12-06 15:11:56 -0500376 * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end
Tejun Heo30159ec2013-06-25 11:53:37 -0700377 */
Tejun Heo780cd8b2013-12-06 15:11:56 -0500378#define for_each_subsys(ss, ssid) \
Tejun Heo3ed80a62014-02-08 10:36:58 -0500379 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT && \
380 (((ss) = cgroup_subsys[ssid]) || true); (ssid)++)
Tejun Heo30159ec2013-06-25 11:53:37 -0700381
Tejun Heo985ed672014-03-19 10:23:53 -0400382/* iterate across the hierarchies */
383#define for_each_root(root) \
Tejun Heo5549c492013-06-24 15:21:48 -0700384 list_for_each_entry((root), &cgroup_roots, root_list)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700385
Tejun Heof8f22e52014-04-23 11:13:16 -0400386/* iterate over child cgrps, lock should be held throughout iteration */
387#define cgroup_for_each_live_child(child, cgrp) \
Tejun Heod5c419b2014-05-16 13:22:48 -0400388 list_for_each_entry((child), &(cgrp)->self.children, self.sibling) \
Tejun Heo8353da12014-05-13 12:19:23 -0400389 if (({ lockdep_assert_held(&cgroup_mutex); \
Tejun Heof8f22e52014-04-23 11:13:16 -0400390 cgroup_is_dead(child); })) \
391 ; \
392 else
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700393
Paul Menage81a6a5c2007-10-18 23:39:38 -0700394/* the list of cgroups eligible for automatic release. Protected by
395 * release_list_lock */
396static LIST_HEAD(release_list);
Thomas Gleixnercdcc136f2009-07-25 16:47:45 +0200397static DEFINE_RAW_SPINLOCK(release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700398static void cgroup_release_agent(struct work_struct *work);
399static DECLARE_WORK(release_agent_work, cgroup_release_agent);
Paul Menagebd89aab2007-10-18 23:40:44 -0700400static void check_for_release(struct cgroup *cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700401
Tejun Heo69d02062013-06-12 21:04:50 -0700402/*
403 * A cgroup can be associated with multiple css_sets as different tasks may
404 * belong to different cgroups on different hierarchies. In the other
405 * direction, a css_set is naturally associated with multiple cgroups.
406 * This M:N relationship is represented by the following link structure
407 * which exists for each association and allows traversing the associations
408 * from both sides.
409 */
410struct cgrp_cset_link {
411 /* the cgroup and css_set this link associates */
412 struct cgroup *cgrp;
413 struct css_set *cset;
414
415 /* list of cgrp_cset_links anchored at cgrp->cset_links */
416 struct list_head cset_link;
417
418 /* list of cgrp_cset_links anchored at css_set->cgrp_links */
419 struct list_head cgrp_link;
Paul Menage817929e2007-10-18 23:39:36 -0700420};
421
Tejun Heo172a2c062014-03-19 10:23:53 -0400422/*
423 * The default css_set - used by init and its children prior to any
Paul Menage817929e2007-10-18 23:39:36 -0700424 * hierarchies being mounted. It contains a pointer to the root state
425 * for each subsystem. Also used to anchor the list of css_sets. Not
426 * reference-counted, to improve performance when child cgroups
427 * haven't been created.
428 */
Tejun Heo5024ae22014-05-07 21:31:17 -0400429struct css_set init_css_set = {
Tejun Heo172a2c062014-03-19 10:23:53 -0400430 .refcount = ATOMIC_INIT(1),
431 .cgrp_links = LIST_HEAD_INIT(init_css_set.cgrp_links),
432 .tasks = LIST_HEAD_INIT(init_css_set.tasks),
433 .mg_tasks = LIST_HEAD_INIT(init_css_set.mg_tasks),
434 .mg_preload_node = LIST_HEAD_INIT(init_css_set.mg_preload_node),
435 .mg_node = LIST_HEAD_INIT(init_css_set.mg_node),
436};
Paul Menage817929e2007-10-18 23:39:36 -0700437
Tejun Heo172a2c062014-03-19 10:23:53 -0400438static int css_set_count = 1; /* 1 for init_css_set */
Paul Menage817929e2007-10-18 23:39:36 -0700439
Tejun Heo842b5972014-04-25 18:28:02 -0400440/**
441 * cgroup_update_populated - updated populated count of a cgroup
442 * @cgrp: the target cgroup
443 * @populated: inc or dec populated count
444 *
445 * @cgrp is either getting the first task (css_set) or losing the last.
446 * Update @cgrp->populated_cnt accordingly. The count is propagated
447 * towards root so that a given cgroup's populated_cnt is zero iff the
448 * cgroup and all its descendants are empty.
449 *
450 * @cgrp's interface file "cgroup.populated" is zero if
451 * @cgrp->populated_cnt is zero and 1 otherwise. When @cgrp->populated_cnt
452 * changes from or to zero, userland is notified that the content of the
453 * interface file has changed. This can be used to detect when @cgrp and
454 * its descendants become populated or empty.
455 */
456static void cgroup_update_populated(struct cgroup *cgrp, bool populated)
457{
458 lockdep_assert_held(&css_set_rwsem);
459
460 do {
461 bool trigger;
462
463 if (populated)
464 trigger = !cgrp->populated_cnt++;
465 else
466 trigger = !--cgrp->populated_cnt;
467
468 if (!trigger)
469 break;
470
471 if (cgrp->populated_kn)
472 kernfs_notify(cgrp->populated_kn);
Tejun Heod51f39b2014-05-16 13:22:48 -0400473 cgrp = cgroup_parent(cgrp);
Tejun Heo842b5972014-04-25 18:28:02 -0400474 } while (cgrp);
475}
476
Paul Menage7717f7b2009-09-23 15:56:22 -0700477/*
478 * hash table for cgroup groups. This improves the performance to find
479 * an existing css_set. This hash doesn't (currently) take into
480 * account cgroups in empty hierarchies.
481 */
Li Zefan472b1052008-04-29 01:00:11 -0700482#define CSS_SET_HASH_BITS 7
Li Zefan0ac801f2013-01-10 11:49:27 +0800483static DEFINE_HASHTABLE(css_set_table, CSS_SET_HASH_BITS);
Li Zefan472b1052008-04-29 01:00:11 -0700484
Li Zefan0ac801f2013-01-10 11:49:27 +0800485static unsigned long css_set_hash(struct cgroup_subsys_state *css[])
Li Zefan472b1052008-04-29 01:00:11 -0700486{
Li Zefan0ac801f2013-01-10 11:49:27 +0800487 unsigned long key = 0UL;
Tejun Heo30159ec2013-06-25 11:53:37 -0700488 struct cgroup_subsys *ss;
489 int i;
Li Zefan472b1052008-04-29 01:00:11 -0700490
Tejun Heo30159ec2013-06-25 11:53:37 -0700491 for_each_subsys(ss, i)
Li Zefan0ac801f2013-01-10 11:49:27 +0800492 key += (unsigned long)css[i];
493 key = (key >> 16) ^ key;
Li Zefan472b1052008-04-29 01:00:11 -0700494
Li Zefan0ac801f2013-01-10 11:49:27 +0800495 return key;
Li Zefan472b1052008-04-29 01:00:11 -0700496}
497
Tejun Heo89c55092014-02-13 06:58:40 -0500498static void put_css_set_locked(struct css_set *cset, bool taskexit)
Paul Menageb4f48b62007-10-18 23:39:33 -0700499{
Tejun Heo69d02062013-06-12 21:04:50 -0700500 struct cgrp_cset_link *link, *tmp_link;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400501 struct cgroup_subsys *ss;
502 int ssid;
Tejun Heo5abb8852013-06-12 21:04:49 -0700503
Tejun Heo89c55092014-02-13 06:58:40 -0500504 lockdep_assert_held(&css_set_rwsem);
505
506 if (!atomic_dec_and_test(&cset->refcount))
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700507 return;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700508
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700509 /* This css_set is dead. unlink it and release cgroup refcounts */
Tejun Heo2d8f2432014-04-23 11:13:15 -0400510 for_each_subsys(ss, ssid)
511 list_del(&cset->e_cset_node[ssid]);
Tejun Heo5abb8852013-06-12 21:04:49 -0700512 hash_del(&cset->hlist);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700513 css_set_count--;
514
Tejun Heo69d02062013-06-12 21:04:50 -0700515 list_for_each_entry_safe(link, tmp_link, &cset->cgrp_links, cgrp_link) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700516 struct cgroup *cgrp = link->cgrp;
Tejun Heo5abb8852013-06-12 21:04:49 -0700517
Tejun Heo69d02062013-06-12 21:04:50 -0700518 list_del(&link->cset_link);
519 list_del(&link->cgrp_link);
Li Zefan71b57072013-01-24 14:43:28 +0800520
Tejun Heo96d365e2014-02-13 06:58:40 -0500521 /* @cgrp can't go away while we're holding css_set_rwsem */
Tejun Heo842b5972014-04-25 18:28:02 -0400522 if (list_empty(&cgrp->cset_links)) {
523 cgroup_update_populated(cgrp, false);
524 if (notify_on_release(cgrp)) {
525 if (taskexit)
526 set_bit(CGRP_RELEASABLE, &cgrp->flags);
527 check_for_release(cgrp);
528 }
Paul Menage81a6a5c2007-10-18 23:39:38 -0700529 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700530
531 kfree(link);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700532 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700533
Tejun Heo5abb8852013-06-12 21:04:49 -0700534 kfree_rcu(cset, rcu_head);
Paul Menage817929e2007-10-18 23:39:36 -0700535}
536
Tejun Heo89c55092014-02-13 06:58:40 -0500537static void put_css_set(struct css_set *cset, bool taskexit)
538{
539 /*
540 * Ensure that the refcount doesn't hit zero while any readers
541 * can see it. Similar to atomic_dec_and_lock(), but for an
542 * rwlock
543 */
544 if (atomic_add_unless(&cset->refcount, -1, 1))
545 return;
546
547 down_write(&css_set_rwsem);
548 put_css_set_locked(cset, taskexit);
549 up_write(&css_set_rwsem);
550}
551
Paul Menage817929e2007-10-18 23:39:36 -0700552/*
553 * refcounted get/put for css_set objects
554 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700555static inline void get_css_set(struct css_set *cset)
Paul Menage817929e2007-10-18 23:39:36 -0700556{
Tejun Heo5abb8852013-06-12 21:04:49 -0700557 atomic_inc(&cset->refcount);
Paul Menage817929e2007-10-18 23:39:36 -0700558}
559
Tejun Heob326f9d2013-06-24 15:21:48 -0700560/**
Paul Menage7717f7b2009-09-23 15:56:22 -0700561 * compare_css_sets - helper function for find_existing_css_set().
Tejun Heo5abb8852013-06-12 21:04:49 -0700562 * @cset: candidate css_set being tested
563 * @old_cset: existing css_set for a task
Paul Menage7717f7b2009-09-23 15:56:22 -0700564 * @new_cgrp: cgroup that's being entered by the task
565 * @template: desired set of css pointers in css_set (pre-calculated)
566 *
Li Zefan6f4b7e62013-07-31 16:18:36 +0800567 * Returns true if "cset" matches "old_cset" except for the hierarchy
Paul Menage7717f7b2009-09-23 15:56:22 -0700568 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
569 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700570static bool compare_css_sets(struct css_set *cset,
571 struct css_set *old_cset,
Paul Menage7717f7b2009-09-23 15:56:22 -0700572 struct cgroup *new_cgrp,
573 struct cgroup_subsys_state *template[])
574{
575 struct list_head *l1, *l2;
576
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400577 /*
578 * On the default hierarchy, there can be csets which are
579 * associated with the same set of cgroups but different csses.
580 * Let's first ensure that csses match.
581 */
582 if (memcmp(template, cset->subsys, sizeof(cset->subsys)))
Paul Menage7717f7b2009-09-23 15:56:22 -0700583 return false;
Paul Menage7717f7b2009-09-23 15:56:22 -0700584
585 /*
586 * Compare cgroup pointers in order to distinguish between
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400587 * different cgroups in hierarchies. As different cgroups may
588 * share the same effective css, this comparison is always
589 * necessary.
Paul Menage7717f7b2009-09-23 15:56:22 -0700590 */
Tejun Heo69d02062013-06-12 21:04:50 -0700591 l1 = &cset->cgrp_links;
592 l2 = &old_cset->cgrp_links;
Paul Menage7717f7b2009-09-23 15:56:22 -0700593 while (1) {
Tejun Heo69d02062013-06-12 21:04:50 -0700594 struct cgrp_cset_link *link1, *link2;
Tejun Heo5abb8852013-06-12 21:04:49 -0700595 struct cgroup *cgrp1, *cgrp2;
Paul Menage7717f7b2009-09-23 15:56:22 -0700596
597 l1 = l1->next;
598 l2 = l2->next;
599 /* See if we reached the end - both lists are equal length. */
Tejun Heo69d02062013-06-12 21:04:50 -0700600 if (l1 == &cset->cgrp_links) {
601 BUG_ON(l2 != &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700602 break;
603 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700604 BUG_ON(l2 == &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700605 }
606 /* Locate the cgroups associated with these links. */
Tejun Heo69d02062013-06-12 21:04:50 -0700607 link1 = list_entry(l1, struct cgrp_cset_link, cgrp_link);
608 link2 = list_entry(l2, struct cgrp_cset_link, cgrp_link);
609 cgrp1 = link1->cgrp;
610 cgrp2 = link2->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700611 /* Hierarchies should be linked in the same order. */
Tejun Heo5abb8852013-06-12 21:04:49 -0700612 BUG_ON(cgrp1->root != cgrp2->root);
Paul Menage7717f7b2009-09-23 15:56:22 -0700613
614 /*
615 * If this hierarchy is the hierarchy of the cgroup
616 * that's changing, then we need to check that this
617 * css_set points to the new cgroup; if it's any other
618 * hierarchy, then this css_set should point to the
619 * same cgroup as the old css_set.
620 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700621 if (cgrp1->root == new_cgrp->root) {
622 if (cgrp1 != new_cgrp)
Paul Menage7717f7b2009-09-23 15:56:22 -0700623 return false;
624 } else {
Tejun Heo5abb8852013-06-12 21:04:49 -0700625 if (cgrp1 != cgrp2)
Paul Menage7717f7b2009-09-23 15:56:22 -0700626 return false;
627 }
628 }
629 return true;
630}
631
Tejun Heob326f9d2013-06-24 15:21:48 -0700632/**
633 * find_existing_css_set - init css array and find the matching css_set
634 * @old_cset: the css_set that we're using before the cgroup transition
635 * @cgrp: the cgroup that we're moving into
636 * @template: out param for the new set of csses, should be clear on entry
Paul Menage817929e2007-10-18 23:39:36 -0700637 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700638static struct css_set *find_existing_css_set(struct css_set *old_cset,
639 struct cgroup *cgrp,
640 struct cgroup_subsys_state *template[])
Paul Menage817929e2007-10-18 23:39:36 -0700641{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400642 struct cgroup_root *root = cgrp->root;
Tejun Heo30159ec2013-06-25 11:53:37 -0700643 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -0700644 struct css_set *cset;
Li Zefan0ac801f2013-01-10 11:49:27 +0800645 unsigned long key;
Tejun Heob326f9d2013-06-24 15:21:48 -0700646 int i;
Paul Menage817929e2007-10-18 23:39:36 -0700647
Ben Blumaae8aab2010-03-10 15:22:07 -0800648 /*
649 * Build the set of subsystem state objects that we want to see in the
650 * new css_set. while subsystems can change globally, the entries here
651 * won't change, so no need for locking.
652 */
Tejun Heo30159ec2013-06-25 11:53:37 -0700653 for_each_subsys(ss, i) {
Tejun Heof392e512014-04-23 11:13:14 -0400654 if (root->subsys_mask & (1UL << i)) {
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400655 /*
656 * @ss is in this hierarchy, so we want the
657 * effective css from @cgrp.
658 */
659 template[i] = cgroup_e_css(cgrp, ss);
Paul Menage817929e2007-10-18 23:39:36 -0700660 } else {
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400661 /*
662 * @ss is not in this hierarchy, so we don't want
663 * to change the css.
664 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700665 template[i] = old_cset->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700666 }
667 }
668
Li Zefan0ac801f2013-01-10 11:49:27 +0800669 key = css_set_hash(template);
Tejun Heo5abb8852013-06-12 21:04:49 -0700670 hash_for_each_possible(css_set_table, cset, hlist, key) {
671 if (!compare_css_sets(cset, old_cset, cgrp, template))
Paul Menage7717f7b2009-09-23 15:56:22 -0700672 continue;
673
674 /* This css_set matches what we need */
Tejun Heo5abb8852013-06-12 21:04:49 -0700675 return cset;
Li Zefan472b1052008-04-29 01:00:11 -0700676 }
Paul Menage817929e2007-10-18 23:39:36 -0700677
678 /* No existing cgroup group matched */
679 return NULL;
680}
681
Tejun Heo69d02062013-06-12 21:04:50 -0700682static void free_cgrp_cset_links(struct list_head *links_to_free)
Paul Menage817929e2007-10-18 23:39:36 -0700683{
Tejun Heo69d02062013-06-12 21:04:50 -0700684 struct cgrp_cset_link *link, *tmp_link;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700685
Tejun Heo69d02062013-06-12 21:04:50 -0700686 list_for_each_entry_safe(link, tmp_link, links_to_free, cset_link) {
687 list_del(&link->cset_link);
Paul Menage817929e2007-10-18 23:39:36 -0700688 kfree(link);
689 }
690}
691
Tejun Heo69d02062013-06-12 21:04:50 -0700692/**
693 * allocate_cgrp_cset_links - allocate cgrp_cset_links
694 * @count: the number of links to allocate
695 * @tmp_links: list_head the allocated links are put on
696 *
697 * Allocate @count cgrp_cset_link structures and chain them on @tmp_links
698 * through ->cset_link. Returns 0 on success or -errno.
Li Zefan36553432008-07-29 22:33:19 -0700699 */
Tejun Heo69d02062013-06-12 21:04:50 -0700700static int allocate_cgrp_cset_links(int count, struct list_head *tmp_links)
Li Zefan36553432008-07-29 22:33:19 -0700701{
Tejun Heo69d02062013-06-12 21:04:50 -0700702 struct cgrp_cset_link *link;
Li Zefan36553432008-07-29 22:33:19 -0700703 int i;
Tejun Heo69d02062013-06-12 21:04:50 -0700704
705 INIT_LIST_HEAD(tmp_links);
706
Li Zefan36553432008-07-29 22:33:19 -0700707 for (i = 0; i < count; i++) {
Tejun Heof4f4be22013-06-12 21:04:51 -0700708 link = kzalloc(sizeof(*link), GFP_KERNEL);
Li Zefan36553432008-07-29 22:33:19 -0700709 if (!link) {
Tejun Heo69d02062013-06-12 21:04:50 -0700710 free_cgrp_cset_links(tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700711 return -ENOMEM;
712 }
Tejun Heo69d02062013-06-12 21:04:50 -0700713 list_add(&link->cset_link, tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700714 }
715 return 0;
716}
717
Li Zefanc12f65d2009-01-07 18:07:42 -0800718/**
719 * link_css_set - a helper function to link a css_set to a cgroup
Tejun Heo69d02062013-06-12 21:04:50 -0700720 * @tmp_links: cgrp_cset_link objects allocated by allocate_cgrp_cset_links()
Tejun Heo5abb8852013-06-12 21:04:49 -0700721 * @cset: the css_set to be linked
Li Zefanc12f65d2009-01-07 18:07:42 -0800722 * @cgrp: the destination cgroup
723 */
Tejun Heo69d02062013-06-12 21:04:50 -0700724static void link_css_set(struct list_head *tmp_links, struct css_set *cset,
725 struct cgroup *cgrp)
Li Zefanc12f65d2009-01-07 18:07:42 -0800726{
Tejun Heo69d02062013-06-12 21:04:50 -0700727 struct cgrp_cset_link *link;
Li Zefanc12f65d2009-01-07 18:07:42 -0800728
Tejun Heo69d02062013-06-12 21:04:50 -0700729 BUG_ON(list_empty(tmp_links));
Tejun Heo6803c002014-04-23 11:13:16 -0400730
731 if (cgroup_on_dfl(cgrp))
732 cset->dfl_cgrp = cgrp;
733
Tejun Heo69d02062013-06-12 21:04:50 -0700734 link = list_first_entry(tmp_links, struct cgrp_cset_link, cset_link);
735 link->cset = cset;
Paul Menage7717f7b2009-09-23 15:56:22 -0700736 link->cgrp = cgrp;
Tejun Heo842b5972014-04-25 18:28:02 -0400737
738 if (list_empty(&cgrp->cset_links))
739 cgroup_update_populated(cgrp, true);
Tejun Heo69d02062013-06-12 21:04:50 -0700740 list_move(&link->cset_link, &cgrp->cset_links);
Tejun Heo842b5972014-04-25 18:28:02 -0400741
Paul Menage7717f7b2009-09-23 15:56:22 -0700742 /*
743 * Always add links to the tail of the list so that the list
744 * is sorted by order of hierarchy creation
745 */
Tejun Heo69d02062013-06-12 21:04:50 -0700746 list_add_tail(&link->cgrp_link, &cset->cgrp_links);
Li Zefanc12f65d2009-01-07 18:07:42 -0800747}
748
Tejun Heob326f9d2013-06-24 15:21:48 -0700749/**
750 * find_css_set - return a new css_set with one cgroup updated
751 * @old_cset: the baseline css_set
752 * @cgrp: the cgroup to be updated
753 *
754 * Return a new css_set that's equivalent to @old_cset, but with @cgrp
755 * substituted into the appropriate hierarchy.
Paul Menage817929e2007-10-18 23:39:36 -0700756 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700757static struct css_set *find_css_set(struct css_set *old_cset,
758 struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700759{
Tejun Heob326f9d2013-06-24 15:21:48 -0700760 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT] = { };
Tejun Heo5abb8852013-06-12 21:04:49 -0700761 struct css_set *cset;
Tejun Heo69d02062013-06-12 21:04:50 -0700762 struct list_head tmp_links;
763 struct cgrp_cset_link *link;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400764 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +0800765 unsigned long key;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400766 int ssid;
Li Zefan472b1052008-04-29 01:00:11 -0700767
Tejun Heob326f9d2013-06-24 15:21:48 -0700768 lockdep_assert_held(&cgroup_mutex);
769
Paul Menage817929e2007-10-18 23:39:36 -0700770 /* First see if we already have a cgroup group that matches
771 * the desired set */
Tejun Heo96d365e2014-02-13 06:58:40 -0500772 down_read(&css_set_rwsem);
Tejun Heo5abb8852013-06-12 21:04:49 -0700773 cset = find_existing_css_set(old_cset, cgrp, template);
774 if (cset)
775 get_css_set(cset);
Tejun Heo96d365e2014-02-13 06:58:40 -0500776 up_read(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700777
Tejun Heo5abb8852013-06-12 21:04:49 -0700778 if (cset)
779 return cset;
Paul Menage817929e2007-10-18 23:39:36 -0700780
Tejun Heof4f4be22013-06-12 21:04:51 -0700781 cset = kzalloc(sizeof(*cset), GFP_KERNEL);
Tejun Heo5abb8852013-06-12 21:04:49 -0700782 if (!cset)
Paul Menage817929e2007-10-18 23:39:36 -0700783 return NULL;
784
Tejun Heo69d02062013-06-12 21:04:50 -0700785 /* Allocate all the cgrp_cset_link objects that we'll need */
Tejun Heo9871bf92013-06-24 15:21:47 -0700786 if (allocate_cgrp_cset_links(cgroup_root_count, &tmp_links) < 0) {
Tejun Heo5abb8852013-06-12 21:04:49 -0700787 kfree(cset);
Paul Menage817929e2007-10-18 23:39:36 -0700788 return NULL;
789 }
790
Tejun Heo5abb8852013-06-12 21:04:49 -0700791 atomic_set(&cset->refcount, 1);
Tejun Heo69d02062013-06-12 21:04:50 -0700792 INIT_LIST_HEAD(&cset->cgrp_links);
Tejun Heo5abb8852013-06-12 21:04:49 -0700793 INIT_LIST_HEAD(&cset->tasks);
Tejun Heoc7561122014-02-25 10:04:01 -0500794 INIT_LIST_HEAD(&cset->mg_tasks);
Tejun Heo1958d2d2014-02-25 10:04:03 -0500795 INIT_LIST_HEAD(&cset->mg_preload_node);
Tejun Heob3dc0942014-02-25 10:04:01 -0500796 INIT_LIST_HEAD(&cset->mg_node);
Tejun Heo5abb8852013-06-12 21:04:49 -0700797 INIT_HLIST_NODE(&cset->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700798
799 /* Copy the set of subsystem state objects generated in
800 * find_existing_css_set() */
Tejun Heo5abb8852013-06-12 21:04:49 -0700801 memcpy(cset->subsys, template, sizeof(cset->subsys));
Paul Menage817929e2007-10-18 23:39:36 -0700802
Tejun Heo96d365e2014-02-13 06:58:40 -0500803 down_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700804 /* Add reference counts and links from the new css_set. */
Tejun Heo69d02062013-06-12 21:04:50 -0700805 list_for_each_entry(link, &old_cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700806 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700807
Paul Menage7717f7b2009-09-23 15:56:22 -0700808 if (c->root == cgrp->root)
809 c = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700810 link_css_set(&tmp_links, cset, c);
Paul Menage7717f7b2009-09-23 15:56:22 -0700811 }
Paul Menage817929e2007-10-18 23:39:36 -0700812
Tejun Heo69d02062013-06-12 21:04:50 -0700813 BUG_ON(!list_empty(&tmp_links));
Paul Menage817929e2007-10-18 23:39:36 -0700814
Paul Menage817929e2007-10-18 23:39:36 -0700815 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -0700816
Tejun Heo2d8f2432014-04-23 11:13:15 -0400817 /* Add @cset to the hash table */
Tejun Heo5abb8852013-06-12 21:04:49 -0700818 key = css_set_hash(cset->subsys);
819 hash_add(css_set_table, &cset->hlist, key);
Li Zefan472b1052008-04-29 01:00:11 -0700820
Tejun Heo2d8f2432014-04-23 11:13:15 -0400821 for_each_subsys(ss, ssid)
822 list_add_tail(&cset->e_cset_node[ssid],
823 &cset->subsys[ssid]->cgroup->e_csets[ssid]);
824
Tejun Heo96d365e2014-02-13 06:58:40 -0500825 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700826
Tejun Heo5abb8852013-06-12 21:04:49 -0700827 return cset;
Paul Menageb4f48b62007-10-18 23:39:33 -0700828}
829
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400830static struct cgroup_root *cgroup_root_from_kf(struct kernfs_root *kf_root)
Paul Menage7717f7b2009-09-23 15:56:22 -0700831{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400832 struct cgroup *root_cgrp = kf_root->kn->priv;
Tejun Heo2bd59d42014-02-11 11:52:49 -0500833
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400834 return root_cgrp->root;
Tejun Heo2bd59d42014-02-11 11:52:49 -0500835}
836
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400837static int cgroup_init_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -0500838{
839 int id;
840
841 lockdep_assert_held(&cgroup_mutex);
842
Tejun Heo985ed672014-03-19 10:23:53 -0400843 id = idr_alloc_cyclic(&cgroup_hierarchy_idr, root, 0, 0, GFP_KERNEL);
Tejun Heof2e85d52014-02-11 11:52:49 -0500844 if (id < 0)
845 return id;
846
847 root->hierarchy_id = id;
848 return 0;
849}
850
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400851static void cgroup_exit_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -0500852{
853 lockdep_assert_held(&cgroup_mutex);
854
855 if (root->hierarchy_id) {
856 idr_remove(&cgroup_hierarchy_idr, root->hierarchy_id);
857 root->hierarchy_id = 0;
858 }
859}
860
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400861static void cgroup_free_root(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -0500862{
863 if (root) {
864 /* hierarhcy ID shoulid already have been released */
865 WARN_ON_ONCE(root->hierarchy_id);
866
867 idr_destroy(&root->cgroup_idr);
868 kfree(root);
869 }
870}
871
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400872static void cgroup_destroy_root(struct cgroup_root *root)
Tejun Heo59f52962014-02-11 11:52:49 -0500873{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400874 struct cgroup *cgrp = &root->cgrp;
Tejun Heof2e85d52014-02-11 11:52:49 -0500875 struct cgrp_cset_link *link, *tmp_link;
Tejun Heof2e85d52014-02-11 11:52:49 -0500876
Tejun Heo2bd59d42014-02-11 11:52:49 -0500877 mutex_lock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -0500878
Tejun Heo776f02f2014-02-12 09:29:50 -0500879 BUG_ON(atomic_read(&root->nr_cgrps));
Tejun Heod5c419b2014-05-16 13:22:48 -0400880 BUG_ON(!list_empty(&cgrp->self.children));
Tejun Heof2e85d52014-02-11 11:52:49 -0500881
Tejun Heof2e85d52014-02-11 11:52:49 -0500882 /* Rebind all subsystems back to the default hierarchy */
Tejun Heof392e512014-04-23 11:13:14 -0400883 rebind_subsystems(&cgrp_dfl_root, root->subsys_mask);
Tejun Heof2e85d52014-02-11 11:52:49 -0500884
885 /*
886 * Release all the links from cset_links to this hierarchy's
887 * root cgroup
888 */
Tejun Heo96d365e2014-02-13 06:58:40 -0500889 down_write(&css_set_rwsem);
Tejun Heof2e85d52014-02-11 11:52:49 -0500890
891 list_for_each_entry_safe(link, tmp_link, &cgrp->cset_links, cset_link) {
892 list_del(&link->cset_link);
893 list_del(&link->cgrp_link);
894 kfree(link);
895 }
Tejun Heo96d365e2014-02-13 06:58:40 -0500896 up_write(&css_set_rwsem);
Tejun Heof2e85d52014-02-11 11:52:49 -0500897
898 if (!list_empty(&root->root_list)) {
899 list_del(&root->root_list);
900 cgroup_root_count--;
901 }
902
903 cgroup_exit_root_id(root);
904
905 mutex_unlock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -0500906
Tejun Heo2bd59d42014-02-11 11:52:49 -0500907 kernfs_destroy_root(root->kf_root);
Tejun Heof2e85d52014-02-11 11:52:49 -0500908 cgroup_free_root(root);
909}
910
Tejun Heoceb6a082014-02-25 10:04:02 -0500911/* look up cgroup associated with given css_set on the specified hierarchy */
912static struct cgroup *cset_cgroup_from_root(struct css_set *cset,
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400913 struct cgroup_root *root)
Paul Menage7717f7b2009-09-23 15:56:22 -0700914{
Paul Menage7717f7b2009-09-23 15:56:22 -0700915 struct cgroup *res = NULL;
916
Tejun Heo96d365e2014-02-13 06:58:40 -0500917 lockdep_assert_held(&cgroup_mutex);
918 lockdep_assert_held(&css_set_rwsem);
919
Tejun Heo5abb8852013-06-12 21:04:49 -0700920 if (cset == &init_css_set) {
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400921 res = &root->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700922 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700923 struct cgrp_cset_link *link;
924
925 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700926 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700927
Paul Menage7717f7b2009-09-23 15:56:22 -0700928 if (c->root == root) {
929 res = c;
930 break;
931 }
932 }
933 }
Tejun Heo96d365e2014-02-13 06:58:40 -0500934
Paul Menage7717f7b2009-09-23 15:56:22 -0700935 BUG_ON(!res);
936 return res;
937}
938
939/*
Tejun Heoceb6a082014-02-25 10:04:02 -0500940 * Return the cgroup for "task" from the given hierarchy. Must be
941 * called with cgroup_mutex and css_set_rwsem held.
942 */
943static struct cgroup *task_cgroup_from_root(struct task_struct *task,
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400944 struct cgroup_root *root)
Tejun Heoceb6a082014-02-25 10:04:02 -0500945{
946 /*
947 * No need to lock the task - since we hold cgroup_mutex the
948 * task can't change groups, so the only thing that can happen
949 * is that it exits and its css is set back to init_css_set.
950 */
951 return cset_cgroup_from_root(task_css_set(task), root);
952}
953
954/*
Paul Menageddbcc7e2007-10-18 23:39:30 -0700955 * A task must hold cgroup_mutex to modify cgroups.
956 *
957 * Any task can increment and decrement the count field without lock.
958 * So in general, code holding cgroup_mutex can't rely on the count
959 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -0800960 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -0700961 * means that no tasks are currently attached, therefore there is no
962 * way a task attached to that cgroup can fork (the other way to
963 * increment the count). So code holding cgroup_mutex can safely
964 * assume that if the count is zero, it will stay zero. Similarly, if
965 * a task holds cgroup_mutex on a cgroup with zero count, it
966 * knows that the cgroup won't be removed, as cgroup_rmdir()
967 * needs that mutex.
968 *
Paul Menageddbcc7e2007-10-18 23:39:30 -0700969 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
970 * (usually) take cgroup_mutex. These are the two most performance
971 * critical pieces of code here. The exception occurs on cgroup_exit(),
972 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
973 * is taken, and if the cgroup count is zero, a usermode call made
Li Zefana043e3b2008-02-23 15:24:09 -0800974 * to the release agent with the name of the cgroup (path relative to
975 * the root of cgroup file system) as the argument.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700976 *
977 * A cgroup can only be deleted if both its 'count' of using tasks
978 * is zero, and its list of 'children' cgroups is empty. Since all
979 * tasks in the system use _some_ cgroup, and since there is always at
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400980 * least one task in the system (init, pid == 1), therefore, root cgroup
Paul Menageddbcc7e2007-10-18 23:39:30 -0700981 * always has either children cgroups and/or using tasks. So we don't
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400982 * need a special hack to ensure that root cgroup cannot be deleted.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700983 *
984 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -0800985 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700986 */
987
Tejun Heo69dfa002014-05-04 15:09:13 -0400988static int cgroup_populate_dir(struct cgroup *cgrp, unsigned int subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500989static struct kernfs_syscall_ops cgroup_kf_syscall_ops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700990static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -0700991
Tejun Heo8d7e6fb2014-02-11 11:52:48 -0500992static char *cgroup_file_name(struct cgroup *cgrp, const struct cftype *cft,
993 char *buf)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700994{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -0500995 if (cft->ss && !(cft->flags & CFTYPE_NO_PREFIX) &&
996 !(cgrp->root->flags & CGRP_ROOT_NOPREFIX))
997 snprintf(buf, CGROUP_FILE_NAME_MAX, "%s.%s",
998 cft->ss->name, cft->name);
999 else
1000 strncpy(buf, cft->name, CGROUP_FILE_NAME_MAX);
1001 return buf;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001002}
1003
Tejun Heof2e85d52014-02-11 11:52:49 -05001004/**
1005 * cgroup_file_mode - deduce file mode of a control file
1006 * @cft: the control file in question
1007 *
1008 * returns cft->mode if ->mode is not 0
1009 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
1010 * returns S_IRUGO if it has only a read handler
1011 * returns S_IWUSR if it has only a write hander
1012 */
1013static umode_t cgroup_file_mode(const struct cftype *cft)
Li Zefan65dff752013-03-01 15:01:56 +08001014{
Tejun Heof2e85d52014-02-11 11:52:49 -05001015 umode_t mode = 0;
Li Zefan65dff752013-03-01 15:01:56 +08001016
Tejun Heof2e85d52014-02-11 11:52:49 -05001017 if (cft->mode)
1018 return cft->mode;
1019
1020 if (cft->read_u64 || cft->read_s64 || cft->seq_show)
1021 mode |= S_IRUGO;
1022
Tejun Heo6770c642014-05-13 12:16:21 -04001023 if (cft->write_u64 || cft->write_s64 || cft->write)
Tejun Heof2e85d52014-02-11 11:52:49 -05001024 mode |= S_IWUSR;
1025
1026 return mode;
Li Zefan65dff752013-03-01 15:01:56 +08001027}
1028
Tejun Heo59f52962014-02-11 11:52:49 -05001029static void cgroup_get(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001030{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001031 WARN_ON_ONCE(cgroup_is_dead(cgrp));
Tejun Heo9d755d32014-05-14 09:15:02 -04001032 css_get(&cgrp->self);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001033}
1034
Tejun Heo59f52962014-02-11 11:52:49 -05001035static void cgroup_put(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001036{
Tejun Heo9d755d32014-05-14 09:15:02 -04001037 css_put(&cgrp->self);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001038}
1039
Tejun Heoaf0ba672014-07-08 18:02:57 -04001040/**
1041 * cgroup_refresh_child_subsys_mask - update child_subsys_mask
1042 * @cgrp: the target cgroup
1043 *
1044 * On the default hierarchy, a subsystem may request other subsystems to be
1045 * enabled together through its ->depends_on mask. In such cases, more
1046 * subsystems than specified in "cgroup.subtree_control" may be enabled.
1047 *
1048 * This function determines which subsystems need to be enabled given the
1049 * current @cgrp->subtree_control and records it in
1050 * @cgrp->child_subsys_mask. The resulting mask is always a superset of
1051 * @cgrp->subtree_control and follows the usual hierarchy rules.
1052 */
Tejun Heo667c2492014-07-08 18:02:56 -04001053static void cgroup_refresh_child_subsys_mask(struct cgroup *cgrp)
1054{
Tejun Heoaf0ba672014-07-08 18:02:57 -04001055 struct cgroup *parent = cgroup_parent(cgrp);
1056 unsigned int cur_ss_mask = cgrp->subtree_control;
1057 struct cgroup_subsys *ss;
1058 int ssid;
1059
1060 lockdep_assert_held(&cgroup_mutex);
1061
1062 if (!cgroup_on_dfl(cgrp)) {
1063 cgrp->child_subsys_mask = cur_ss_mask;
1064 return;
1065 }
1066
1067 while (true) {
1068 unsigned int new_ss_mask = cur_ss_mask;
1069
1070 for_each_subsys(ss, ssid)
1071 if (cur_ss_mask & (1 << ssid))
1072 new_ss_mask |= ss->depends_on;
1073
1074 /*
1075 * Mask out subsystems which aren't available. This can
1076 * happen only if some depended-upon subsystems were bound
1077 * to non-default hierarchies.
1078 */
1079 if (parent)
1080 new_ss_mask &= parent->child_subsys_mask;
1081 else
1082 new_ss_mask &= cgrp->root->subsys_mask;
1083
1084 if (new_ss_mask == cur_ss_mask)
1085 break;
1086 cur_ss_mask = new_ss_mask;
1087 }
1088
1089 cgrp->child_subsys_mask = cur_ss_mask;
Tejun Heo667c2492014-07-08 18:02:56 -04001090}
1091
Tejun Heoa9746d82014-05-13 12:19:22 -04001092/**
1093 * cgroup_kn_unlock - unlocking helper for cgroup kernfs methods
1094 * @kn: the kernfs_node being serviced
1095 *
1096 * This helper undoes cgroup_kn_lock_live() and should be invoked before
1097 * the method finishes if locking succeeded. Note that once this function
1098 * returns the cgroup returned by cgroup_kn_lock_live() may become
1099 * inaccessible any time. If the caller intends to continue to access the
1100 * cgroup, it should pin it before invoking this function.
1101 */
1102static void cgroup_kn_unlock(struct kernfs_node *kn)
1103{
1104 struct cgroup *cgrp;
1105
1106 if (kernfs_type(kn) == KERNFS_DIR)
1107 cgrp = kn->priv;
1108 else
1109 cgrp = kn->parent->priv;
1110
1111 mutex_unlock(&cgroup_mutex);
Tejun Heoa9746d82014-05-13 12:19:22 -04001112
1113 kernfs_unbreak_active_protection(kn);
1114 cgroup_put(cgrp);
1115}
1116
1117/**
1118 * cgroup_kn_lock_live - locking helper for cgroup kernfs methods
1119 * @kn: the kernfs_node being serviced
1120 *
1121 * This helper is to be used by a cgroup kernfs method currently servicing
1122 * @kn. It breaks the active protection, performs cgroup locking and
1123 * verifies that the associated cgroup is alive. Returns the cgroup if
1124 * alive; otherwise, %NULL. A successful return should be undone by a
1125 * matching cgroup_kn_unlock() invocation.
1126 *
1127 * Any cgroup kernfs method implementation which requires locking the
1128 * associated cgroup should use this helper. It avoids nesting cgroup
1129 * locking under kernfs active protection and allows all kernfs operations
1130 * including self-removal.
1131 */
1132static struct cgroup *cgroup_kn_lock_live(struct kernfs_node *kn)
1133{
1134 struct cgroup *cgrp;
1135
1136 if (kernfs_type(kn) == KERNFS_DIR)
1137 cgrp = kn->priv;
1138 else
1139 cgrp = kn->parent->priv;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001140
1141 /*
Tejun Heo01f64742014-05-13 12:19:23 -04001142 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoa9746d82014-05-13 12:19:22 -04001143 * active_ref. cgroup liveliness check alone provides enough
1144 * protection against removal. Ensure @cgrp stays accessible and
1145 * break the active_ref protection.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001146 */
Tejun Heoa9746d82014-05-13 12:19:22 -04001147 cgroup_get(cgrp);
1148 kernfs_break_active_protection(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001149
Tejun Heoa9746d82014-05-13 12:19:22 -04001150 mutex_lock(&cgroup_mutex);
1151
1152 if (!cgroup_is_dead(cgrp))
1153 return cgrp;
1154
1155 cgroup_kn_unlock(kn);
1156 return NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001157}
1158
Li Zefan2739d3c2013-01-21 18:18:33 +08001159static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001160{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001161 char name[CGROUP_FILE_NAME_MAX];
Paul Menageddbcc7e2007-10-18 23:39:30 -07001162
Tejun Heo01f64742014-05-13 12:19:23 -04001163 lockdep_assert_held(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001164 kernfs_remove_by_name(cgrp->kn, cgroup_file_name(cgrp, cft, name));
Tejun Heo05ef1d72012-04-01 12:09:56 -07001165}
1166
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001167/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07001168 * cgroup_clear_dir - remove subsys files in a cgroup directory
Tejun Heo8f891402013-06-28 16:24:10 -07001169 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001170 * @subsys_mask: mask of the subsystem ids whose files should be removed
1171 */
Tejun Heo69dfa002014-05-04 15:09:13 -04001172static void cgroup_clear_dir(struct cgroup *cgrp, unsigned int subsys_mask)
Tejun Heo05ef1d72012-04-01 12:09:56 -07001173{
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001174 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07001175 int i;
Tejun Heo05ef1d72012-04-01 12:09:56 -07001176
Tejun Heob420ba72013-07-12 12:34:02 -07001177 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -05001178 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -07001179
Tejun Heo69dfa002014-05-04 15:09:13 -04001180 if (!(subsys_mask & (1 << i)))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001181 continue;
Tejun Heo0adb0702014-02-12 09:29:48 -05001182 list_for_each_entry(cfts, &ss->cfts, node)
1183 cgroup_addrm_files(cgrp, cfts, false);
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001184 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001185}
1186
Tejun Heo69dfa002014-05-04 15:09:13 -04001187static int rebind_subsystems(struct cgroup_root *dst_root, unsigned int ss_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001188{
Tejun Heo30159ec2013-06-25 11:53:37 -07001189 struct cgroup_subsys *ss;
Tejun Heo5533e012014-05-14 19:33:07 -04001190 unsigned int tmp_ss_mask;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001191 int ssid, i, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001192
Tejun Heoace2bee2014-02-11 11:52:47 -05001193 lockdep_assert_held(&cgroup_mutex);
Ben Blumaae8aab2010-03-10 15:22:07 -08001194
Tejun Heo5df36032014-03-19 10:23:54 -04001195 for_each_subsys(ss, ssid) {
1196 if (!(ss_mask & (1 << ssid)))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001197 continue;
Tejun Heo30159ec2013-06-25 11:53:37 -07001198
Tejun Heo7fd8c562014-04-23 11:13:16 -04001199 /* if @ss has non-root csses attached to it, can't move */
1200 if (css_next_child(NULL, cgroup_css(&ss->root->cgrp, ss)))
Tejun Heo3ed80a62014-02-08 10:36:58 -05001201 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001202
Tejun Heo5df36032014-03-19 10:23:54 -04001203 /* can't move between two non-dummy roots either */
Tejun Heo7fd8c562014-04-23 11:13:16 -04001204 if (ss->root != &cgrp_dfl_root && dst_root != &cgrp_dfl_root)
Tejun Heo5df36032014-03-19 10:23:54 -04001205 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001206 }
1207
Tejun Heo5533e012014-05-14 19:33:07 -04001208 /* skip creating root files on dfl_root for inhibited subsystems */
1209 tmp_ss_mask = ss_mask;
1210 if (dst_root == &cgrp_dfl_root)
1211 tmp_ss_mask &= ~cgrp_dfl_root_inhibit_ss_mask;
1212
1213 ret = cgroup_populate_dir(&dst_root->cgrp, tmp_ss_mask);
Tejun Heoa2dd4242014-03-19 10:23:55 -04001214 if (ret) {
1215 if (dst_root != &cgrp_dfl_root)
Tejun Heo5df36032014-03-19 10:23:54 -04001216 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001217
Tejun Heoa2dd4242014-03-19 10:23:55 -04001218 /*
1219 * Rebinding back to the default root is not allowed to
1220 * fail. Using both default and non-default roots should
1221 * be rare. Moving subsystems back and forth even more so.
1222 * Just warn about it and continue.
1223 */
1224 if (cgrp_dfl_root_visible) {
Tejun Heo69dfa002014-05-04 15:09:13 -04001225 pr_warn("failed to create files (%d) while rebinding 0x%x to default root\n",
Jianyu Zhana2a1f9e2014-04-25 18:28:03 -04001226 ret, ss_mask);
Joe Perchesed3d2612014-04-25 18:28:03 -04001227 pr_warn("you may retry by moving them to a different hierarchy and unbinding\n");
Tejun Heoa2dd4242014-03-19 10:23:55 -04001228 }
Tejun Heo5df36032014-03-19 10:23:54 -04001229 }
Tejun Heo31261212013-06-28 17:07:30 -07001230
1231 /*
1232 * Nothing can fail from this point on. Remove files for the
1233 * removed subsystems and rebind each subsystem.
1234 */
Tejun Heo5df36032014-03-19 10:23:54 -04001235 for_each_subsys(ss, ssid)
Tejun Heoa2dd4242014-03-19 10:23:55 -04001236 if (ss_mask & (1 << ssid))
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001237 cgroup_clear_dir(&ss->root->cgrp, 1 << ssid);
Tejun Heo31261212013-06-28 17:07:30 -07001238
Tejun Heo5df36032014-03-19 10:23:54 -04001239 for_each_subsys(ss, ssid) {
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001240 struct cgroup_root *src_root;
Tejun Heo5df36032014-03-19 10:23:54 -04001241 struct cgroup_subsys_state *css;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001242 struct css_set *cset;
Tejun Heo30159ec2013-06-25 11:53:37 -07001243
Tejun Heo5df36032014-03-19 10:23:54 -04001244 if (!(ss_mask & (1 << ssid)))
1245 continue;
Tejun Heoa8a648c2013-06-24 15:21:47 -07001246
Tejun Heo5df36032014-03-19 10:23:54 -04001247 src_root = ss->root;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001248 css = cgroup_css(&src_root->cgrp, ss);
Tejun Heo73e80ed2013-08-13 11:01:55 -04001249
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001250 WARN_ON(!css || cgroup_css(&dst_root->cgrp, ss));
Tejun Heoa8a648c2013-06-24 15:21:47 -07001251
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001252 RCU_INIT_POINTER(src_root->cgrp.subsys[ssid], NULL);
1253 rcu_assign_pointer(dst_root->cgrp.subsys[ssid], css);
Tejun Heo5df36032014-03-19 10:23:54 -04001254 ss->root = dst_root;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001255 css->cgroup = &dst_root->cgrp;
Tejun Heoa8a648c2013-06-24 15:21:47 -07001256
Tejun Heo2d8f2432014-04-23 11:13:15 -04001257 down_write(&css_set_rwsem);
1258 hash_for_each(css_set_table, i, cset, hlist)
1259 list_move_tail(&cset->e_cset_node[ss->id],
1260 &dst_root->cgrp.e_csets[ss->id]);
1261 up_write(&css_set_rwsem);
1262
Tejun Heof392e512014-04-23 11:13:14 -04001263 src_root->subsys_mask &= ~(1 << ssid);
Tejun Heo667c2492014-07-08 18:02:56 -04001264 src_root->cgrp.subtree_control &= ~(1 << ssid);
1265 cgroup_refresh_child_subsys_mask(&src_root->cgrp);
Tejun Heof392e512014-04-23 11:13:14 -04001266
Tejun Heobd53d612014-04-23 11:13:16 -04001267 /* default hierarchy doesn't enable controllers by default */
Tejun Heof392e512014-04-23 11:13:14 -04001268 dst_root->subsys_mask |= 1 << ssid;
Tejun Heo667c2492014-07-08 18:02:56 -04001269 if (dst_root != &cgrp_dfl_root) {
1270 dst_root->cgrp.subtree_control |= 1 << ssid;
1271 cgroup_refresh_child_subsys_mask(&dst_root->cgrp);
1272 }
Tejun Heo73e80ed2013-08-13 11:01:55 -04001273
Tejun Heo5df36032014-03-19 10:23:54 -04001274 if (ss->bind)
1275 ss->bind(css);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001276 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001277
Tejun Heoa2dd4242014-03-19 10:23:55 -04001278 kernfs_activate(dst_root->cgrp.kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001279 return 0;
1280}
1281
Tejun Heo2bd59d42014-02-11 11:52:49 -05001282static int cgroup_show_options(struct seq_file *seq,
1283 struct kernfs_root *kf_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001284{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001285 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001286 struct cgroup_subsys *ss;
Tejun Heob85d2042013-12-06 15:11:57 -05001287 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001288
Tejun Heob85d2042013-12-06 15:11:57 -05001289 for_each_subsys(ss, ssid)
Tejun Heof392e512014-04-23 11:13:14 -04001290 if (root->subsys_mask & (1 << ssid))
Tejun Heob85d2042013-12-06 15:11:57 -05001291 seq_printf(seq, ",%s", ss->name);
Tejun Heo873fe092013-04-14 20:15:26 -07001292 if (root->flags & CGRP_ROOT_SANE_BEHAVIOR)
1293 seq_puts(seq, ",sane_behavior");
Tejun Heo93438622013-04-14 20:15:25 -07001294 if (root->flags & CGRP_ROOT_NOPREFIX)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001295 seq_puts(seq, ",noprefix");
Tejun Heo93438622013-04-14 20:15:25 -07001296 if (root->flags & CGRP_ROOT_XATTR)
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001297 seq_puts(seq, ",xattr");
Tejun Heo69e943b2014-02-08 10:36:58 -05001298
1299 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001300 if (strlen(root->release_agent_path))
1301 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Tejun Heo69e943b2014-02-08 10:36:58 -05001302 spin_unlock(&release_agent_path_lock);
1303
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001304 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags))
Daniel Lezcano97978e62010-10-27 15:33:35 -07001305 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001306 if (strlen(root->name))
1307 seq_printf(seq, ",name=%s", root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001308 return 0;
1309}
1310
1311struct cgroup_sb_opts {
Tejun Heo69dfa002014-05-04 15:09:13 -04001312 unsigned int subsys_mask;
1313 unsigned int flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001314 char *release_agent;
Tejun Heo2260e7f2012-11-19 08:13:38 -08001315 bool cpuset_clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001316 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001317 /* User explicitly requested empty subsystem */
1318 bool none;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001319};
1320
Ben Blumcf5d5942010-03-10 15:22:09 -08001321static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001322{
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001323 char *token, *o = data;
1324 bool all_ss = false, one_ss = false;
Tejun Heo69dfa002014-05-04 15:09:13 -04001325 unsigned int mask = -1U;
Tejun Heo30159ec2013-06-25 11:53:37 -07001326 struct cgroup_subsys *ss;
1327 int i;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001328
1329#ifdef CONFIG_CPUSETS
Tejun Heo69dfa002014-05-04 15:09:13 -04001330 mask = ~(1U << cpuset_cgrp_id);
Li Zefanf9ab5b52009-06-17 16:26:33 -07001331#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001332
Paul Menagec6d57f32009-09-23 15:56:19 -07001333 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001334
1335 while ((token = strsep(&o, ",")) != NULL) {
1336 if (!*token)
1337 return -EINVAL;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001338 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001339 /* Explicitly have no subsystems */
1340 opts->none = true;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001341 continue;
1342 }
1343 if (!strcmp(token, "all")) {
1344 /* Mutually exclusive option 'all' + subsystem name */
1345 if (one_ss)
1346 return -EINVAL;
1347 all_ss = true;
1348 continue;
1349 }
Tejun Heo873fe092013-04-14 20:15:26 -07001350 if (!strcmp(token, "__DEVEL__sane_behavior")) {
1351 opts->flags |= CGRP_ROOT_SANE_BEHAVIOR;
1352 continue;
1353 }
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001354 if (!strcmp(token, "noprefix")) {
Tejun Heo93438622013-04-14 20:15:25 -07001355 opts->flags |= CGRP_ROOT_NOPREFIX;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001356 continue;
1357 }
1358 if (!strcmp(token, "clone_children")) {
Tejun Heo2260e7f2012-11-19 08:13:38 -08001359 opts->cpuset_clone_children = true;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001360 continue;
1361 }
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001362 if (!strcmp(token, "xattr")) {
Tejun Heo93438622013-04-14 20:15:25 -07001363 opts->flags |= CGRP_ROOT_XATTR;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001364 continue;
1365 }
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001366 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001367 /* Specifying two release agents is forbidden */
1368 if (opts->release_agent)
1369 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001370 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001371 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001372 if (!opts->release_agent)
1373 return -ENOMEM;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001374 continue;
1375 }
1376 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001377 const char *name = token + 5;
1378 /* Can't specify an empty name */
1379 if (!strlen(name))
1380 return -EINVAL;
1381 /* Must match [\w.-]+ */
1382 for (i = 0; i < strlen(name); i++) {
1383 char c = name[i];
1384 if (isalnum(c))
1385 continue;
1386 if ((c == '.') || (c == '-') || (c == '_'))
1387 continue;
1388 return -EINVAL;
1389 }
1390 /* Specifying two names is forbidden */
1391 if (opts->name)
1392 return -EINVAL;
1393 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001394 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001395 GFP_KERNEL);
1396 if (!opts->name)
1397 return -ENOMEM;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001398
1399 continue;
1400 }
1401
Tejun Heo30159ec2013-06-25 11:53:37 -07001402 for_each_subsys(ss, i) {
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001403 if (strcmp(token, ss->name))
1404 continue;
1405 if (ss->disabled)
1406 continue;
1407
1408 /* Mutually exclusive option 'all' + subsystem name */
1409 if (all_ss)
1410 return -EINVAL;
Tejun Heo69dfa002014-05-04 15:09:13 -04001411 opts->subsys_mask |= (1 << i);
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001412 one_ss = true;
1413
1414 break;
1415 }
1416 if (i == CGROUP_SUBSYS_COUNT)
1417 return -ENOENT;
1418 }
1419
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001420 /* Consistency checks */
1421
Tejun Heo873fe092013-04-14 20:15:26 -07001422 if (opts->flags & CGRP_ROOT_SANE_BEHAVIOR) {
Joe Perchesed3d2612014-04-25 18:28:03 -04001423 pr_warn("sane_behavior: this is still under development and its behaviors will change, proceed at your own risk\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001424
Tejun Heod3ba07c2014-02-13 06:58:38 -05001425 if ((opts->flags & (CGRP_ROOT_NOPREFIX | CGRP_ROOT_XATTR)) ||
1426 opts->cpuset_clone_children || opts->release_agent ||
1427 opts->name) {
Joe Perchesed3d2612014-04-25 18:28:03 -04001428 pr_err("sane_behavior: noprefix, xattr, clone_children, release_agent and name are not allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001429 return -EINVAL;
1430 }
Tejun Heoa2dd4242014-03-19 10:23:55 -04001431 } else {
1432 /*
1433 * If the 'all' option was specified select all the
1434 * subsystems, otherwise if 'none', 'name=' and a subsystem
1435 * name options were not specified, let's default to 'all'
1436 */
1437 if (all_ss || (!one_ss && !opts->none && !opts->name))
1438 for_each_subsys(ss, i)
1439 if (!ss->disabled)
Tejun Heo69dfa002014-05-04 15:09:13 -04001440 opts->subsys_mask |= (1 << i);
Tejun Heo873fe092013-04-14 20:15:26 -07001441
Tejun Heoa2dd4242014-03-19 10:23:55 -04001442 /*
1443 * We either have to specify by name or by subsystems. (So
1444 * all empty hierarchies must have a name).
1445 */
1446 if (!opts->subsys_mask && !opts->name)
Tejun Heo873fe092013-04-14 20:15:26 -07001447 return -EINVAL;
Tejun Heo873fe092013-04-14 20:15:26 -07001448 }
1449
Li Zefanf9ab5b52009-06-17 16:26:33 -07001450 /*
1451 * Option noprefix was introduced just for backward compatibility
1452 * with the old cpuset, so we allow noprefix only if mounting just
1453 * the cpuset subsystem.
1454 */
Tejun Heo93438622013-04-14 20:15:25 -07001455 if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask))
Li Zefanf9ab5b52009-06-17 16:26:33 -07001456 return -EINVAL;
1457
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001458
1459 /* Can't specify "none" and some subsystems */
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001460 if (opts->subsys_mask && opts->none)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001461 return -EINVAL;
1462
Paul Menageddbcc7e2007-10-18 23:39:30 -07001463 return 0;
1464}
1465
Tejun Heo2bd59d42014-02-11 11:52:49 -05001466static int cgroup_remount(struct kernfs_root *kf_root, int *flags, char *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001467{
1468 int ret = 0;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001469 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001470 struct cgroup_sb_opts opts;
Tejun Heo69dfa002014-05-04 15:09:13 -04001471 unsigned int added_mask, removed_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001472
Tejun Heo873fe092013-04-14 20:15:26 -07001473 if (root->flags & CGRP_ROOT_SANE_BEHAVIOR) {
Joe Perchesed3d2612014-04-25 18:28:03 -04001474 pr_err("sane_behavior: remount is not allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001475 return -EINVAL;
1476 }
1477
Paul Menageddbcc7e2007-10-18 23:39:30 -07001478 mutex_lock(&cgroup_mutex);
1479
1480 /* See what subsystems are wanted */
1481 ret = parse_cgroupfs_options(data, &opts);
1482 if (ret)
1483 goto out_unlock;
1484
Tejun Heof392e512014-04-23 11:13:14 -04001485 if (opts.subsys_mask != root->subsys_mask || opts.release_agent)
Joe Perchesed3d2612014-04-25 18:28:03 -04001486 pr_warn("option changes via remount are deprecated (pid=%d comm=%s)\n",
Jianyu Zhana2a1f9e2014-04-25 18:28:03 -04001487 task_tgid_nr(current), current->comm);
Tejun Heo8b5a5a92012-04-01 12:09:54 -07001488
Tejun Heof392e512014-04-23 11:13:14 -04001489 added_mask = opts.subsys_mask & ~root->subsys_mask;
1490 removed_mask = root->subsys_mask & ~opts.subsys_mask;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001491
Ben Blumcf5d5942010-03-10 15:22:09 -08001492 /* Don't allow flags or name to change at remount */
Tejun Heo7450e902014-07-09 10:08:07 -04001493 if ((opts.flags ^ root->flags) ||
Ben Blumcf5d5942010-03-10 15:22:09 -08001494 (opts.name && strcmp(opts.name, root->name))) {
Tejun Heo69dfa002014-05-04 15:09:13 -04001495 pr_err("option or name mismatch, new: 0x%x \"%s\", old: 0x%x \"%s\"\n",
Tejun Heo7450e902014-07-09 10:08:07 -04001496 opts.flags, opts.name ?: "", root->flags, root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001497 ret = -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001498 goto out_unlock;
1499 }
1500
Tejun Heof172e672013-06-28 17:07:30 -07001501 /* remounting is not allowed for populated hierarchies */
Tejun Heod5c419b2014-05-16 13:22:48 -04001502 if (!list_empty(&root->cgrp.self.children)) {
Tejun Heof172e672013-06-28 17:07:30 -07001503 ret = -EBUSY;
Li Zefan0670e082009-04-02 16:57:30 -07001504 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001505 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001506
Tejun Heo5df36032014-03-19 10:23:54 -04001507 ret = rebind_subsystems(root, added_mask);
Tejun Heo31261212013-06-28 17:07:30 -07001508 if (ret)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001509 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001510
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001511 rebind_subsystems(&cgrp_dfl_root, removed_mask);
Tejun Heo5df36032014-03-19 10:23:54 -04001512
Tejun Heo69e943b2014-02-08 10:36:58 -05001513 if (opts.release_agent) {
1514 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001515 strcpy(root->release_agent_path, opts.release_agent);
Tejun Heo69e943b2014-02-08 10:36:58 -05001516 spin_unlock(&release_agent_path_lock);
1517 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001518 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001519 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001520 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001521 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001522 return ret;
1523}
1524
Tejun Heoafeb0f92014-02-13 06:58:39 -05001525/*
1526 * To reduce the fork() overhead for systems that are not actually using
1527 * their cgroups capability, we don't maintain the lists running through
1528 * each css_set to its tasks until we see the list actually used - in other
1529 * words after the first mount.
1530 */
1531static bool use_task_css_set_links __read_mostly;
1532
1533static void cgroup_enable_task_cg_lists(void)
1534{
1535 struct task_struct *p, *g;
1536
Tejun Heo96d365e2014-02-13 06:58:40 -05001537 down_write(&css_set_rwsem);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001538
1539 if (use_task_css_set_links)
1540 goto out_unlock;
1541
1542 use_task_css_set_links = true;
1543
1544 /*
1545 * We need tasklist_lock because RCU is not safe against
1546 * while_each_thread(). Besides, a forking task that has passed
1547 * cgroup_post_fork() without seeing use_task_css_set_links = 1
1548 * is not guaranteed to have its child immediately visible in the
1549 * tasklist if we walk through it with RCU.
1550 */
1551 read_lock(&tasklist_lock);
1552 do_each_thread(g, p) {
Tejun Heoafeb0f92014-02-13 06:58:39 -05001553 WARN_ON_ONCE(!list_empty(&p->cg_list) ||
1554 task_css_set(p) != &init_css_set);
1555
1556 /*
1557 * We should check if the process is exiting, otherwise
1558 * it will race with cgroup_exit() in that the list
1559 * entry won't be deleted though the process has exited.
Tejun Heof153ad12014-02-25 09:56:49 -05001560 * Do it while holding siglock so that we don't end up
1561 * racing against cgroup_exit().
Tejun Heoafeb0f92014-02-13 06:58:39 -05001562 */
Tejun Heof153ad12014-02-25 09:56:49 -05001563 spin_lock_irq(&p->sighand->siglock);
Tejun Heoeaf797a2014-02-25 10:04:03 -05001564 if (!(p->flags & PF_EXITING)) {
1565 struct css_set *cset = task_css_set(p);
1566
1567 list_add(&p->cg_list, &cset->tasks);
1568 get_css_set(cset);
1569 }
Tejun Heof153ad12014-02-25 09:56:49 -05001570 spin_unlock_irq(&p->sighand->siglock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001571 } while_each_thread(g, p);
1572 read_unlock(&tasklist_lock);
1573out_unlock:
Tejun Heo96d365e2014-02-13 06:58:40 -05001574 up_write(&css_set_rwsem);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001575}
Paul Menageddbcc7e2007-10-18 23:39:30 -07001576
Paul Menagecc31edc2008-10-18 20:28:04 -07001577static void init_cgroup_housekeeping(struct cgroup *cgrp)
1578{
Tejun Heo2d8f2432014-04-23 11:13:15 -04001579 struct cgroup_subsys *ss;
1580 int ssid;
1581
Tejun Heod5c419b2014-05-16 13:22:48 -04001582 INIT_LIST_HEAD(&cgrp->self.sibling);
1583 INIT_LIST_HEAD(&cgrp->self.children);
Tejun Heo69d02062013-06-12 21:04:50 -07001584 INIT_LIST_HEAD(&cgrp->cset_links);
Paul Menagecc31edc2008-10-18 20:28:04 -07001585 INIT_LIST_HEAD(&cgrp->release_list);
Ben Blum72a8cb32009-09-23 15:56:27 -07001586 INIT_LIST_HEAD(&cgrp->pidlists);
1587 mutex_init(&cgrp->pidlist_mutex);
Tejun Heo9d800df2014-05-14 09:15:00 -04001588 cgrp->self.cgroup = cgrp;
Tejun Heo184faf32014-05-16 13:22:51 -04001589 cgrp->self.flags |= CSS_ONLINE;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001590
1591 for_each_subsys(ss, ssid)
1592 INIT_LIST_HEAD(&cgrp->e_csets[ssid]);
Tejun Heof8f22e52014-04-23 11:13:16 -04001593
1594 init_waitqueue_head(&cgrp->offline_waitq);
Paul Menagecc31edc2008-10-18 20:28:04 -07001595}
Paul Menagec6d57f32009-09-23 15:56:19 -07001596
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001597static void init_cgroup_root(struct cgroup_root *root,
Tejun Heo172a2c062014-03-19 10:23:53 -04001598 struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001599{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001600 struct cgroup *cgrp = &root->cgrp;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001601
Paul Menageddbcc7e2007-10-18 23:39:30 -07001602 INIT_LIST_HEAD(&root->root_list);
Tejun Heo3c9c8252014-02-12 09:29:50 -05001603 atomic_set(&root->nr_cgrps, 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001604 cgrp->root = root;
Paul Menagecc31edc2008-10-18 20:28:04 -07001605 init_cgroup_housekeeping(cgrp);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08001606 idr_init(&root->cgroup_idr);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001607
Paul Menagec6d57f32009-09-23 15:56:19 -07001608 root->flags = opts->flags;
1609 if (opts->release_agent)
1610 strcpy(root->release_agent_path, opts->release_agent);
1611 if (opts->name)
1612 strcpy(root->name, opts->name);
Tejun Heo2260e7f2012-11-19 08:13:38 -08001613 if (opts->cpuset_clone_children)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001614 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001615}
1616
Tejun Heo69dfa002014-05-04 15:09:13 -04001617static int cgroup_setup_root(struct cgroup_root *root, unsigned int ss_mask)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001618{
Tejun Heod427dfe2014-02-11 11:52:48 -05001619 LIST_HEAD(tmp_links);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001620 struct cgroup *root_cgrp = &root->cgrp;
Tejun Heod427dfe2014-02-11 11:52:48 -05001621 struct css_set *cset;
Tejun Heod427dfe2014-02-11 11:52:48 -05001622 int i, ret;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001623
Tejun Heod427dfe2014-02-11 11:52:48 -05001624 lockdep_assert_held(&cgroup_mutex);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001625
Tejun Heo6fa49182014-05-04 15:09:13 -04001626 ret = cgroup_idr_alloc(&root->cgroup_idr, root_cgrp, 1, 2, GFP_NOWAIT);
Tejun Heod427dfe2014-02-11 11:52:48 -05001627 if (ret < 0)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001628 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001629 root_cgrp->id = ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001630
Tejun Heo9d755d32014-05-14 09:15:02 -04001631 ret = percpu_ref_init(&root_cgrp->self.refcnt, css_release);
1632 if (ret)
1633 goto out;
1634
Tejun Heod427dfe2014-02-11 11:52:48 -05001635 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05001636 * We're accessing css_set_count without locking css_set_rwsem here,
Tejun Heod427dfe2014-02-11 11:52:48 -05001637 * but that's OK - it can only be increased by someone holding
1638 * cgroup_lock, and that's us. The worst that can happen is that we
1639 * have some link structures left over
1640 */
1641 ret = allocate_cgrp_cset_links(css_set_count, &tmp_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001642 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001643 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001644
Tejun Heo985ed672014-03-19 10:23:53 -04001645 ret = cgroup_init_root_id(root);
Tejun Heod427dfe2014-02-11 11:52:48 -05001646 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001647 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001648
Tejun Heo2bd59d42014-02-11 11:52:49 -05001649 root->kf_root = kernfs_create_root(&cgroup_kf_syscall_ops,
1650 KERNFS_ROOT_CREATE_DEACTIVATED,
1651 root_cgrp);
1652 if (IS_ERR(root->kf_root)) {
1653 ret = PTR_ERR(root->kf_root);
1654 goto exit_root_id;
1655 }
1656 root_cgrp->kn = root->kf_root->kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001657
Tejun Heod427dfe2014-02-11 11:52:48 -05001658 ret = cgroup_addrm_files(root_cgrp, cgroup_base_files, true);
1659 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001660 goto destroy_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001661
Tejun Heo5df36032014-03-19 10:23:54 -04001662 ret = rebind_subsystems(root, ss_mask);
Tejun Heod427dfe2014-02-11 11:52:48 -05001663 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001664 goto destroy_root;
Al Viro0df6a632010-12-21 13:29:29 -05001665
Tejun Heod427dfe2014-02-11 11:52:48 -05001666 /*
1667 * There must be no failure case after here, since rebinding takes
1668 * care of subsystems' refcounts, which are explicitly dropped in
1669 * the failure exit path.
1670 */
1671 list_add(&root->root_list, &cgroup_roots);
1672 cgroup_root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001673
Tejun Heod427dfe2014-02-11 11:52:48 -05001674 /*
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001675 * Link the root cgroup in this hierarchy into all the css_set
Tejun Heod427dfe2014-02-11 11:52:48 -05001676 * objects.
1677 */
Tejun Heo96d365e2014-02-13 06:58:40 -05001678 down_write(&css_set_rwsem);
Tejun Heod427dfe2014-02-11 11:52:48 -05001679 hash_for_each(css_set_table, i, cset, hlist)
1680 link_css_set(&tmp_links, cset, root_cgrp);
Tejun Heo96d365e2014-02-13 06:58:40 -05001681 up_write(&css_set_rwsem);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001682
Tejun Heod5c419b2014-05-16 13:22:48 -04001683 BUG_ON(!list_empty(&root_cgrp->self.children));
Tejun Heo3c9c8252014-02-12 09:29:50 -05001684 BUG_ON(atomic_read(&root->nr_cgrps) != 1);
Tejun Heod427dfe2014-02-11 11:52:48 -05001685
Tejun Heo2bd59d42014-02-11 11:52:49 -05001686 kernfs_activate(root_cgrp->kn);
Tejun Heod427dfe2014-02-11 11:52:48 -05001687 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001688 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001689
Tejun Heo2bd59d42014-02-11 11:52:49 -05001690destroy_root:
1691 kernfs_destroy_root(root->kf_root);
1692 root->kf_root = NULL;
1693exit_root_id:
Tejun Heod427dfe2014-02-11 11:52:48 -05001694 cgroup_exit_root_id(root);
Tejun Heo9d755d32014-05-14 09:15:02 -04001695cancel_ref:
1696 percpu_ref_cancel_init(&root_cgrp->self.refcnt);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001697out:
Tejun Heod427dfe2014-02-11 11:52:48 -05001698 free_cgrp_cset_links(&tmp_links);
1699 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001700}
1701
Al Virof7e83572010-07-26 13:23:11 +04001702static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001703 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001704 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001705{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001706 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001707 struct cgroup_sb_opts opts;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001708 struct dentry *dentry;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001709 int ret;
Li Zefanc6b3d5b2014-04-04 17:14:41 +08001710 bool new_sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001711
1712 /*
Tejun Heo56fde9e2014-02-13 06:58:38 -05001713 * The first time anyone tries to mount a cgroup, enable the list
1714 * linking each css_set to its tasks and fix up all existing tasks.
Paul Menagec6d57f32009-09-23 15:56:19 -07001715 */
Tejun Heo56fde9e2014-02-13 06:58:38 -05001716 if (!use_task_css_set_links)
1717 cgroup_enable_task_cg_lists();
Li Zefane37a06f2014-04-17 13:53:08 +08001718
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001719 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001720
Paul Menageddbcc7e2007-10-18 23:39:30 -07001721 /* First find the desired set of subsystems */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001722 ret = parse_cgroupfs_options(data, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001723 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001724 goto out_unlock;
Tejun Heoa015edd2014-05-14 09:15:00 -04001725
Tejun Heo2bd59d42014-02-11 11:52:49 -05001726 /* look for a matching existing root */
Tejun Heoa2dd4242014-03-19 10:23:55 -04001727 if (!opts.subsys_mask && !opts.none && !opts.name) {
1728 cgrp_dfl_root_visible = true;
1729 root = &cgrp_dfl_root;
1730 cgroup_get(&root->cgrp);
1731 ret = 0;
1732 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001733 }
1734
Tejun Heo985ed672014-03-19 10:23:53 -04001735 for_each_root(root) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05001736 bool name_match = false;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001737
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001738 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04001739 continue;
Paul Menagec6d57f32009-09-23 15:56:19 -07001740
Paul Menage817929e2007-10-18 23:39:36 -07001741 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05001742 * If we asked for a name then it must match. Also, if
1743 * name matches but sybsys_mask doesn't, we should fail.
1744 * Remember whether name matched.
Paul Menage817929e2007-10-18 23:39:36 -07001745 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05001746 if (opts.name) {
1747 if (strcmp(opts.name, root->name))
1748 continue;
1749 name_match = true;
1750 }
Tejun Heo31261212013-06-28 17:07:30 -07001751
1752 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05001753 * If we asked for subsystems (or explicitly for no
1754 * subsystems) then they must match.
Tejun Heo31261212013-06-28 17:07:30 -07001755 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05001756 if ((opts.subsys_mask || opts.none) &&
Tejun Heof392e512014-04-23 11:13:14 -04001757 (opts.subsys_mask != root->subsys_mask)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05001758 if (!name_match)
1759 continue;
1760 ret = -EBUSY;
1761 goto out_unlock;
1762 }
Tejun Heo873fe092013-04-14 20:15:26 -07001763
Tejun Heo7450e902014-07-09 10:08:07 -04001764 if (root->flags ^ opts.flags) {
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001765 if ((root->flags | opts.flags) & CGRP_ROOT_SANE_BEHAVIOR) {
Joe Perchesed3d2612014-04-25 18:28:03 -04001766 pr_err("sane_behavior: new mount options should match the existing superblock\n");
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001767 ret = -EINVAL;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001768 goto out_unlock;
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001769 } else {
Joe Perchesed3d2612014-04-25 18:28:03 -04001770 pr_warn("new mount options do not match the existing superblock, will be ignored\n");
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001771 }
Tejun Heo873fe092013-04-14 20:15:26 -07001772 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05001773
Tejun Heo776f02f2014-02-12 09:29:50 -05001774 /*
Tejun Heo9d755d32014-05-14 09:15:02 -04001775 * A root's lifetime is governed by its root cgroup.
1776 * tryget_live failure indicate that the root is being
1777 * destroyed. Wait for destruction to complete so that the
1778 * subsystems are free. We can use wait_queue for the wait
1779 * but this path is super cold. Let's just sleep for a bit
1780 * and retry.
Tejun Heo776f02f2014-02-12 09:29:50 -05001781 */
Tejun Heo9d755d32014-05-14 09:15:02 -04001782 if (!percpu_ref_tryget_live(&root->cgrp.self.refcnt)) {
Tejun Heo776f02f2014-02-12 09:29:50 -05001783 mutex_unlock(&cgroup_mutex);
Tejun Heo776f02f2014-02-12 09:29:50 -05001784 msleep(10);
Tejun Heoa015edd2014-05-14 09:15:00 -04001785 ret = restart_syscall();
1786 goto out_free;
Tejun Heo776f02f2014-02-12 09:29:50 -05001787 }
1788
1789 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001790 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001791 }
1792
Tejun Heo172a2c062014-03-19 10:23:53 -04001793 /*
1794 * No such thing, create a new one. name= matching without subsys
1795 * specification is allowed for already existing hierarchies but we
1796 * can't create new one without subsys specification.
1797 */
1798 if (!opts.subsys_mask && !opts.none) {
1799 ret = -EINVAL;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001800 goto out_unlock;
1801 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001802
Tejun Heo172a2c062014-03-19 10:23:53 -04001803 root = kzalloc(sizeof(*root), GFP_KERNEL);
1804 if (!root) {
1805 ret = -ENOMEM;
1806 goto out_unlock;
1807 }
1808
1809 init_cgroup_root(root, &opts);
1810
Tejun Heo35585572014-02-13 06:58:38 -05001811 ret = cgroup_setup_root(root, opts.subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001812 if (ret)
1813 cgroup_free_root(root);
1814
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001815out_unlock:
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001816 mutex_unlock(&cgroup_mutex);
Tejun Heoa015edd2014-05-14 09:15:00 -04001817out_free:
Paul Menagec6d57f32009-09-23 15:56:19 -07001818 kfree(opts.release_agent);
1819 kfree(opts.name);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001820
Tejun Heo2bd59d42014-02-11 11:52:49 -05001821 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001822 return ERR_PTR(ret);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001823
Jianyu Zhanc9482a52014-04-26 15:40:28 +08001824 dentry = kernfs_mount(fs_type, flags, root->kf_root,
1825 CGROUP_SUPER_MAGIC, &new_sb);
Li Zefanc6b3d5b2014-04-04 17:14:41 +08001826 if (IS_ERR(dentry) || !new_sb)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001827 cgroup_put(&root->cgrp);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001828 return dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001829}
1830
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09001831static void cgroup_kill_sb(struct super_block *sb)
1832{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001833 struct kernfs_root *kf_root = kernfs_root_from_sb(sb);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001834 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001835
Tejun Heo9d755d32014-05-14 09:15:02 -04001836 /*
1837 * If @root doesn't have any mounts or children, start killing it.
1838 * This prevents new mounts by disabling percpu_ref_tryget_live().
1839 * cgroup_mount() may wait for @root's release.
Li Zefan1f779fb2014-06-04 16:48:15 +08001840 *
1841 * And don't kill the default root.
Tejun Heo9d755d32014-05-14 09:15:02 -04001842 */
Li Zefan1f779fb2014-06-04 16:48:15 +08001843 if (css_has_online_children(&root->cgrp.self) ||
1844 root == &cgrp_dfl_root)
Tejun Heo9d755d32014-05-14 09:15:02 -04001845 cgroup_put(&root->cgrp);
1846 else
1847 percpu_ref_kill(&root->cgrp.self.refcnt);
1848
Tejun Heo2bd59d42014-02-11 11:52:49 -05001849 kernfs_kill_sb(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001850}
1851
1852static struct file_system_type cgroup_fs_type = {
1853 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001854 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001855 .kill_sb = cgroup_kill_sb,
1856};
1857
Greg KH676db4a2010-08-05 13:53:35 -07001858static struct kobject *cgroup_kobj;
1859
Li Zefana043e3b2008-02-23 15:24:09 -08001860/**
Tejun Heo913ffdb2013-07-11 16:34:48 -07001861 * task_cgroup_path - cgroup path of a task in the first cgroup hierarchy
Tejun Heo857a2be2013-04-14 20:50:08 -07001862 * @task: target task
Tejun Heo857a2be2013-04-14 20:50:08 -07001863 * @buf: the buffer to write the path into
1864 * @buflen: the length of the buffer
1865 *
Tejun Heo913ffdb2013-07-11 16:34:48 -07001866 * Determine @task's cgroup on the first (the one with the lowest non-zero
1867 * hierarchy_id) cgroup hierarchy and copy its path into @buf. This
1868 * function grabs cgroup_mutex and shouldn't be used inside locks used by
1869 * cgroup controller callbacks.
1870 *
Tejun Heoe61734c2014-02-12 09:29:50 -05001871 * Return value is the same as kernfs_path().
Tejun Heo857a2be2013-04-14 20:50:08 -07001872 */
Tejun Heoe61734c2014-02-12 09:29:50 -05001873char *task_cgroup_path(struct task_struct *task, char *buf, size_t buflen)
Tejun Heo857a2be2013-04-14 20:50:08 -07001874{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001875 struct cgroup_root *root;
Tejun Heo913ffdb2013-07-11 16:34:48 -07001876 struct cgroup *cgrp;
Tejun Heoe61734c2014-02-12 09:29:50 -05001877 int hierarchy_id = 1;
1878 char *path = NULL;
Tejun Heo857a2be2013-04-14 20:50:08 -07001879
1880 mutex_lock(&cgroup_mutex);
Tejun Heo96d365e2014-02-13 06:58:40 -05001881 down_read(&css_set_rwsem);
Tejun Heo857a2be2013-04-14 20:50:08 -07001882
Tejun Heo913ffdb2013-07-11 16:34:48 -07001883 root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id);
1884
Tejun Heo857a2be2013-04-14 20:50:08 -07001885 if (root) {
1886 cgrp = task_cgroup_from_root(task, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05001887 path = cgroup_path(cgrp, buf, buflen);
Tejun Heo913ffdb2013-07-11 16:34:48 -07001888 } else {
1889 /* if no hierarchy exists, everyone is in "/" */
Tejun Heoe61734c2014-02-12 09:29:50 -05001890 if (strlcpy(buf, "/", buflen) < buflen)
1891 path = buf;
Tejun Heo857a2be2013-04-14 20:50:08 -07001892 }
1893
Tejun Heo96d365e2014-02-13 06:58:40 -05001894 up_read(&css_set_rwsem);
Tejun Heo857a2be2013-04-14 20:50:08 -07001895 mutex_unlock(&cgroup_mutex);
Tejun Heoe61734c2014-02-12 09:29:50 -05001896 return path;
Tejun Heo857a2be2013-04-14 20:50:08 -07001897}
Tejun Heo913ffdb2013-07-11 16:34:48 -07001898EXPORT_SYMBOL_GPL(task_cgroup_path);
Tejun Heo857a2be2013-04-14 20:50:08 -07001899
Tejun Heob3dc0942014-02-25 10:04:01 -05001900/* used to track tasks and other necessary states during migration */
Tejun Heo2f7ee562011-12-12 18:12:21 -08001901struct cgroup_taskset {
Tejun Heob3dc0942014-02-25 10:04:01 -05001902 /* the src and dst cset list running through cset->mg_node */
1903 struct list_head src_csets;
1904 struct list_head dst_csets;
1905
1906 /*
1907 * Fields for cgroup_taskset_*() iteration.
1908 *
1909 * Before migration is committed, the target migration tasks are on
1910 * ->mg_tasks of the csets on ->src_csets. After, on ->mg_tasks of
1911 * the csets on ->dst_csets. ->csets point to either ->src_csets
1912 * or ->dst_csets depending on whether migration is committed.
1913 *
1914 * ->cur_csets and ->cur_task point to the current task position
1915 * during iteration.
1916 */
1917 struct list_head *csets;
1918 struct css_set *cur_cset;
1919 struct task_struct *cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001920};
1921
1922/**
1923 * cgroup_taskset_first - reset taskset and return the first task
1924 * @tset: taskset of interest
1925 *
1926 * @tset iteration is initialized and the first task is returned.
1927 */
1928struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
1929{
Tejun Heob3dc0942014-02-25 10:04:01 -05001930 tset->cur_cset = list_first_entry(tset->csets, struct css_set, mg_node);
1931 tset->cur_task = NULL;
1932
1933 return cgroup_taskset_next(tset);
Tejun Heo2f7ee562011-12-12 18:12:21 -08001934}
Tejun Heo2f7ee562011-12-12 18:12:21 -08001935
1936/**
1937 * cgroup_taskset_next - iterate to the next task in taskset
1938 * @tset: taskset of interest
1939 *
1940 * Return the next task in @tset. Iteration must have been initialized
1941 * with cgroup_taskset_first().
1942 */
1943struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
1944{
Tejun Heob3dc0942014-02-25 10:04:01 -05001945 struct css_set *cset = tset->cur_cset;
1946 struct task_struct *task = tset->cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001947
Tejun Heob3dc0942014-02-25 10:04:01 -05001948 while (&cset->mg_node != tset->csets) {
1949 if (!task)
1950 task = list_first_entry(&cset->mg_tasks,
1951 struct task_struct, cg_list);
1952 else
1953 task = list_next_entry(task, cg_list);
Tejun Heo2f7ee562011-12-12 18:12:21 -08001954
Tejun Heob3dc0942014-02-25 10:04:01 -05001955 if (&task->cg_list != &cset->mg_tasks) {
1956 tset->cur_cset = cset;
1957 tset->cur_task = task;
1958 return task;
1959 }
1960
1961 cset = list_next_entry(cset, mg_node);
1962 task = NULL;
1963 }
1964
1965 return NULL;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001966}
Tejun Heo2f7ee562011-12-12 18:12:21 -08001967
1968/**
Ben Blum74a11662011-05-26 16:25:20 -07001969 * cgroup_task_migrate - move a task from one cgroup to another.
Fabian Frederick60106942014-05-05 20:08:13 +02001970 * @old_cgrp: the cgroup @tsk is being migrated from
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001971 * @tsk: the task being migrated
1972 * @new_cset: the new css_set @tsk is being attached to
Ben Blum74a11662011-05-26 16:25:20 -07001973 *
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001974 * Must be called with cgroup_mutex, threadgroup and css_set_rwsem locked.
Ben Blum74a11662011-05-26 16:25:20 -07001975 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001976static void cgroup_task_migrate(struct cgroup *old_cgrp,
1977 struct task_struct *tsk,
1978 struct css_set *new_cset)
Ben Blum74a11662011-05-26 16:25:20 -07001979{
Tejun Heo5abb8852013-06-12 21:04:49 -07001980 struct css_set *old_cset;
Ben Blum74a11662011-05-26 16:25:20 -07001981
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001982 lockdep_assert_held(&cgroup_mutex);
1983 lockdep_assert_held(&css_set_rwsem);
1984
Ben Blum74a11662011-05-26 16:25:20 -07001985 /*
Mandeep Singh Baines026085e2011-12-21 20:18:35 -08001986 * We are synchronized through threadgroup_lock() against PF_EXITING
1987 * setting such that we can't race against cgroup_exit() changing the
1988 * css_set to init_css_set and dropping the old one.
Ben Blum74a11662011-05-26 16:25:20 -07001989 */
Frederic Weisbeckerc84cdf72011-12-21 20:03:18 +01001990 WARN_ON_ONCE(tsk->flags & PF_EXITING);
Tejun Heoa8ad8052013-06-21 15:52:04 -07001991 old_cset = task_css_set(tsk);
Ben Blum74a11662011-05-26 16:25:20 -07001992
Tejun Heob3dc0942014-02-25 10:04:01 -05001993 get_css_set(new_cset);
Tejun Heo5abb8852013-06-12 21:04:49 -07001994 rcu_assign_pointer(tsk->cgroups, new_cset);
Ben Blum74a11662011-05-26 16:25:20 -07001995
Tejun Heo1b9aba42014-03-19 17:43:21 -04001996 /*
1997 * Use move_tail so that cgroup_taskset_first() still returns the
1998 * leader after migration. This works because cgroup_migrate()
1999 * ensures that the dst_cset of the leader is the first on the
2000 * tset's dst_csets list.
2001 */
2002 list_move_tail(&tsk->cg_list, &new_cset->mg_tasks);
Ben Blum74a11662011-05-26 16:25:20 -07002003
2004 /*
Tejun Heo5abb8852013-06-12 21:04:49 -07002005 * We just gained a reference on old_cset by taking it from the
2006 * task. As trading it for new_cset is protected by cgroup_mutex,
2007 * we're safe to drop it here; it will be freed under RCU.
Ben Blum74a11662011-05-26 16:25:20 -07002008 */
Tejun Heo5abb8852013-06-12 21:04:49 -07002009 set_bit(CGRP_RELEASABLE, &old_cgrp->flags);
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002010 put_css_set_locked(old_cset, false);
Ben Blum74a11662011-05-26 16:25:20 -07002011}
2012
Li Zefana043e3b2008-02-23 15:24:09 -08002013/**
Tejun Heo1958d2d2014-02-25 10:04:03 -05002014 * cgroup_migrate_finish - cleanup after attach
2015 * @preloaded_csets: list of preloaded css_sets
Ben Blum74a11662011-05-26 16:25:20 -07002016 *
Tejun Heo1958d2d2014-02-25 10:04:03 -05002017 * Undo cgroup_migrate_add_src() and cgroup_migrate_prepare_dst(). See
2018 * those functions for details.
Ben Blum74a11662011-05-26 16:25:20 -07002019 */
Tejun Heo1958d2d2014-02-25 10:04:03 -05002020static void cgroup_migrate_finish(struct list_head *preloaded_csets)
Ben Blum74a11662011-05-26 16:25:20 -07002021{
Tejun Heo1958d2d2014-02-25 10:04:03 -05002022 struct css_set *cset, *tmp_cset;
2023
2024 lockdep_assert_held(&cgroup_mutex);
2025
2026 down_write(&css_set_rwsem);
2027 list_for_each_entry_safe(cset, tmp_cset, preloaded_csets, mg_preload_node) {
2028 cset->mg_src_cgrp = NULL;
2029 cset->mg_dst_cset = NULL;
2030 list_del_init(&cset->mg_preload_node);
2031 put_css_set_locked(cset, false);
2032 }
2033 up_write(&css_set_rwsem);
2034}
2035
2036/**
2037 * cgroup_migrate_add_src - add a migration source css_set
2038 * @src_cset: the source css_set to add
2039 * @dst_cgrp: the destination cgroup
2040 * @preloaded_csets: list of preloaded css_sets
2041 *
2042 * Tasks belonging to @src_cset are about to be migrated to @dst_cgrp. Pin
2043 * @src_cset and add it to @preloaded_csets, which should later be cleaned
2044 * up by cgroup_migrate_finish().
2045 *
2046 * This function may be called without holding threadgroup_lock even if the
2047 * target is a process. Threads may be created and destroyed but as long
2048 * as cgroup_mutex is not dropped, no new css_set can be put into play and
2049 * the preloaded css_sets are guaranteed to cover all migrations.
2050 */
2051static void cgroup_migrate_add_src(struct css_set *src_cset,
2052 struct cgroup *dst_cgrp,
2053 struct list_head *preloaded_csets)
2054{
2055 struct cgroup *src_cgrp;
2056
2057 lockdep_assert_held(&cgroup_mutex);
2058 lockdep_assert_held(&css_set_rwsem);
2059
2060 src_cgrp = cset_cgroup_from_root(src_cset, dst_cgrp->root);
2061
Tejun Heo1958d2d2014-02-25 10:04:03 -05002062 if (!list_empty(&src_cset->mg_preload_node))
2063 return;
2064
2065 WARN_ON(src_cset->mg_src_cgrp);
2066 WARN_ON(!list_empty(&src_cset->mg_tasks));
2067 WARN_ON(!list_empty(&src_cset->mg_node));
2068
2069 src_cset->mg_src_cgrp = src_cgrp;
2070 get_css_set(src_cset);
2071 list_add(&src_cset->mg_preload_node, preloaded_csets);
2072}
2073
2074/**
2075 * cgroup_migrate_prepare_dst - prepare destination css_sets for migration
Tejun Heof817de92014-04-23 11:13:16 -04002076 * @dst_cgrp: the destination cgroup (may be %NULL)
Tejun Heo1958d2d2014-02-25 10:04:03 -05002077 * @preloaded_csets: list of preloaded source css_sets
2078 *
2079 * Tasks are about to be moved to @dst_cgrp and all the source css_sets
2080 * have been preloaded to @preloaded_csets. This function looks up and
Tejun Heof817de92014-04-23 11:13:16 -04002081 * pins all destination css_sets, links each to its source, and append them
2082 * to @preloaded_csets. If @dst_cgrp is %NULL, the destination of each
2083 * source css_set is assumed to be its cgroup on the default hierarchy.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002084 *
2085 * This function must be called after cgroup_migrate_add_src() has been
2086 * called on each migration source css_set. After migration is performed
2087 * using cgroup_migrate(), cgroup_migrate_finish() must be called on
2088 * @preloaded_csets.
2089 */
2090static int cgroup_migrate_prepare_dst(struct cgroup *dst_cgrp,
2091 struct list_head *preloaded_csets)
2092{
2093 LIST_HEAD(csets);
Tejun Heof817de92014-04-23 11:13:16 -04002094 struct css_set *src_cset, *tmp_cset;
Tejun Heo1958d2d2014-02-25 10:04:03 -05002095
2096 lockdep_assert_held(&cgroup_mutex);
2097
Tejun Heof8f22e52014-04-23 11:13:16 -04002098 /*
2099 * Except for the root, child_subsys_mask must be zero for a cgroup
2100 * with tasks so that child cgroups don't compete against tasks.
2101 */
Tejun Heod51f39b2014-05-16 13:22:48 -04002102 if (dst_cgrp && cgroup_on_dfl(dst_cgrp) && cgroup_parent(dst_cgrp) &&
Tejun Heof8f22e52014-04-23 11:13:16 -04002103 dst_cgrp->child_subsys_mask)
2104 return -EBUSY;
2105
Tejun Heo1958d2d2014-02-25 10:04:03 -05002106 /* look up the dst cset for each src cset and link it to src */
Tejun Heof817de92014-04-23 11:13:16 -04002107 list_for_each_entry_safe(src_cset, tmp_cset, preloaded_csets, mg_preload_node) {
Tejun Heo1958d2d2014-02-25 10:04:03 -05002108 struct css_set *dst_cset;
2109
Tejun Heof817de92014-04-23 11:13:16 -04002110 dst_cset = find_css_set(src_cset,
2111 dst_cgrp ?: src_cset->dfl_cgrp);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002112 if (!dst_cset)
2113 goto err;
2114
2115 WARN_ON_ONCE(src_cset->mg_dst_cset || dst_cset->mg_dst_cset);
Tejun Heof817de92014-04-23 11:13:16 -04002116
2117 /*
2118 * If src cset equals dst, it's noop. Drop the src.
2119 * cgroup_migrate() will skip the cset too. Note that we
2120 * can't handle src == dst as some nodes are used by both.
2121 */
2122 if (src_cset == dst_cset) {
2123 src_cset->mg_src_cgrp = NULL;
2124 list_del_init(&src_cset->mg_preload_node);
2125 put_css_set(src_cset, false);
2126 put_css_set(dst_cset, false);
2127 continue;
2128 }
2129
Tejun Heo1958d2d2014-02-25 10:04:03 -05002130 src_cset->mg_dst_cset = dst_cset;
2131
2132 if (list_empty(&dst_cset->mg_preload_node))
2133 list_add(&dst_cset->mg_preload_node, &csets);
2134 else
2135 put_css_set(dst_cset, false);
2136 }
2137
Tejun Heof817de92014-04-23 11:13:16 -04002138 list_splice_tail(&csets, preloaded_csets);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002139 return 0;
2140err:
2141 cgroup_migrate_finish(&csets);
2142 return -ENOMEM;
2143}
2144
2145/**
2146 * cgroup_migrate - migrate a process or task to a cgroup
2147 * @cgrp: the destination cgroup
2148 * @leader: the leader of the process or the task to migrate
2149 * @threadgroup: whether @leader points to the whole process or a single task
2150 *
2151 * Migrate a process or task denoted by @leader to @cgrp. If migrating a
2152 * process, the caller must be holding threadgroup_lock of @leader. The
2153 * caller is also responsible for invoking cgroup_migrate_add_src() and
2154 * cgroup_migrate_prepare_dst() on the targets before invoking this
2155 * function and following up with cgroup_migrate_finish().
2156 *
2157 * As long as a controller's ->can_attach() doesn't fail, this function is
2158 * guaranteed to succeed. This means that, excluding ->can_attach()
2159 * failure, when migrating multiple targets, the success or failure can be
2160 * decided for all targets by invoking group_migrate_prepare_dst() before
2161 * actually starting migrating.
2162 */
2163static int cgroup_migrate(struct cgroup *cgrp, struct task_struct *leader,
2164 bool threadgroup)
Ben Blum74a11662011-05-26 16:25:20 -07002165{
Tejun Heob3dc0942014-02-25 10:04:01 -05002166 struct cgroup_taskset tset = {
2167 .src_csets = LIST_HEAD_INIT(tset.src_csets),
2168 .dst_csets = LIST_HEAD_INIT(tset.dst_csets),
2169 .csets = &tset.src_csets,
2170 };
Tejun Heo1c6727a2013-12-06 15:11:56 -05002171 struct cgroup_subsys_state *css, *failed_css = NULL;
Tejun Heob3dc0942014-02-25 10:04:01 -05002172 struct css_set *cset, *tmp_cset;
2173 struct task_struct *task, *tmp_task;
2174 int i, ret;
Ben Blum74a11662011-05-26 16:25:20 -07002175
2176 /*
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002177 * Prevent freeing of tasks while we take a snapshot. Tasks that are
2178 * already PF_EXITING could be freed from underneath us unless we
2179 * take an rcu_read_lock.
2180 */
Tejun Heob3dc0942014-02-25 10:04:01 -05002181 down_write(&css_set_rwsem);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002182 rcu_read_lock();
Tejun Heo9db8de32014-02-13 06:58:43 -05002183 task = leader;
Ben Blum74a11662011-05-26 16:25:20 -07002184 do {
Tejun Heo9db8de32014-02-13 06:58:43 -05002185 /* @task either already exited or can't exit until the end */
2186 if (task->flags & PF_EXITING)
Anjana V Kumarea847532013-10-12 10:59:17 +08002187 goto next;
Tejun Heocd3d0952011-12-12 18:12:21 -08002188
Tejun Heoeaf797a2014-02-25 10:04:03 -05002189 /* leave @task alone if post_fork() hasn't linked it yet */
2190 if (list_empty(&task->cg_list))
Anjana V Kumarea847532013-10-12 10:59:17 +08002191 goto next;
Tejun Heoeaf797a2014-02-25 10:04:03 -05002192
Tejun Heob3dc0942014-02-25 10:04:01 -05002193 cset = task_css_set(task);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002194 if (!cset->mg_src_cgrp)
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08002195 goto next;
Tejun Heob3dc0942014-02-25 10:04:01 -05002196
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002197 /*
Tejun Heo1b9aba42014-03-19 17:43:21 -04002198 * cgroup_taskset_first() must always return the leader.
2199 * Take care to avoid disturbing the ordering.
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002200 */
Tejun Heo1b9aba42014-03-19 17:43:21 -04002201 list_move_tail(&task->cg_list, &cset->mg_tasks);
2202 if (list_empty(&cset->mg_node))
2203 list_add_tail(&cset->mg_node, &tset.src_csets);
2204 if (list_empty(&cset->mg_dst_cset->mg_node))
2205 list_move_tail(&cset->mg_dst_cset->mg_node,
2206 &tset.dst_csets);
Anjana V Kumarea847532013-10-12 10:59:17 +08002207 next:
Li Zefan081aa452013-03-13 09:17:09 +08002208 if (!threadgroup)
2209 break;
Tejun Heo9db8de32014-02-13 06:58:43 -05002210 } while_each_thread(leader, task);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002211 rcu_read_unlock();
Tejun Heob3dc0942014-02-25 10:04:01 -05002212 up_write(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07002213
Tejun Heo134d3372011-12-12 18:12:21 -08002214 /* methods shouldn't be called if no task is actually migrating */
Tejun Heob3dc0942014-02-25 10:04:01 -05002215 if (list_empty(&tset.src_csets))
2216 return 0;
Tejun Heo134d3372011-12-12 18:12:21 -08002217
Tejun Heo1958d2d2014-02-25 10:04:03 -05002218 /* check that we can legitimately attach to the cgroup */
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002219 for_each_e_css(css, i, cgrp) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05002220 if (css->ss->can_attach) {
Tejun Heo9db8de32014-02-13 06:58:43 -05002221 ret = css->ss->can_attach(css, &tset);
2222 if (ret) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05002223 failed_css = css;
Ben Blum74a11662011-05-26 16:25:20 -07002224 goto out_cancel_attach;
2225 }
2226 }
Ben Blum74a11662011-05-26 16:25:20 -07002227 }
2228
2229 /*
Tejun Heo1958d2d2014-02-25 10:04:03 -05002230 * Now that we're guaranteed success, proceed to move all tasks to
2231 * the new cgroup. There are no failure cases after here, so this
2232 * is the commit point.
Ben Blum74a11662011-05-26 16:25:20 -07002233 */
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002234 down_write(&css_set_rwsem);
Tejun Heob3dc0942014-02-25 10:04:01 -05002235 list_for_each_entry(cset, &tset.src_csets, mg_node) {
2236 list_for_each_entry_safe(task, tmp_task, &cset->mg_tasks, cg_list)
2237 cgroup_task_migrate(cset->mg_src_cgrp, task,
2238 cset->mg_dst_cset);
Ben Blum74a11662011-05-26 16:25:20 -07002239 }
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002240 up_write(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07002241
2242 /*
Tejun Heo1958d2d2014-02-25 10:04:03 -05002243 * Migration is committed, all target tasks are now on dst_csets.
2244 * Nothing is sensitive to fork() after this point. Notify
2245 * controllers that migration is complete.
Ben Blum74a11662011-05-26 16:25:20 -07002246 */
Tejun Heob3dc0942014-02-25 10:04:01 -05002247 tset.csets = &tset.dst_csets;
Ben Blum74a11662011-05-26 16:25:20 -07002248
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002249 for_each_e_css(css, i, cgrp)
Tejun Heo1c6727a2013-12-06 15:11:56 -05002250 if (css->ss->attach)
2251 css->ss->attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002252
Tejun Heo9db8de32014-02-13 06:58:43 -05002253 ret = 0;
Tejun Heob3dc0942014-02-25 10:04:01 -05002254 goto out_release_tset;
2255
Ben Blum74a11662011-05-26 16:25:20 -07002256out_cancel_attach:
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002257 for_each_e_css(css, i, cgrp) {
Tejun Heob3dc0942014-02-25 10:04:01 -05002258 if (css == failed_css)
2259 break;
2260 if (css->ss->cancel_attach)
2261 css->ss->cancel_attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002262 }
Tejun Heob3dc0942014-02-25 10:04:01 -05002263out_release_tset:
2264 down_write(&css_set_rwsem);
2265 list_splice_init(&tset.dst_csets, &tset.src_csets);
2266 list_for_each_entry_safe(cset, tmp_cset, &tset.src_csets, mg_node) {
Tejun Heo1b9aba42014-03-19 17:43:21 -04002267 list_splice_tail_init(&cset->mg_tasks, &cset->tasks);
Tejun Heob3dc0942014-02-25 10:04:01 -05002268 list_del_init(&cset->mg_node);
Tejun Heob3dc0942014-02-25 10:04:01 -05002269 }
2270 up_write(&css_set_rwsem);
Tejun Heo9db8de32014-02-13 06:58:43 -05002271 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07002272}
2273
Tejun Heo1958d2d2014-02-25 10:04:03 -05002274/**
2275 * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup
2276 * @dst_cgrp: the cgroup to attach to
2277 * @leader: the task or the leader of the threadgroup to be attached
2278 * @threadgroup: attach the whole threadgroup?
2279 *
Tejun Heo0e1d7682014-02-25 10:04:03 -05002280 * Call holding cgroup_mutex and threadgroup_lock of @leader.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002281 */
2282static int cgroup_attach_task(struct cgroup *dst_cgrp,
2283 struct task_struct *leader, bool threadgroup)
2284{
2285 LIST_HEAD(preloaded_csets);
2286 struct task_struct *task;
2287 int ret;
2288
2289 /* look up all src csets */
2290 down_read(&css_set_rwsem);
2291 rcu_read_lock();
2292 task = leader;
2293 do {
2294 cgroup_migrate_add_src(task_css_set(task), dst_cgrp,
2295 &preloaded_csets);
2296 if (!threadgroup)
2297 break;
2298 } while_each_thread(leader, task);
2299 rcu_read_unlock();
2300 up_read(&css_set_rwsem);
2301
2302 /* prepare dst csets and commit */
2303 ret = cgroup_migrate_prepare_dst(dst_cgrp, &preloaded_csets);
2304 if (!ret)
2305 ret = cgroup_migrate(dst_cgrp, leader, threadgroup);
2306
2307 cgroup_migrate_finish(&preloaded_csets);
2308 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07002309}
2310
2311/*
2312 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08002313 * function to attach either it or all tasks in its threadgroup. Will lock
Tejun Heo0e1d7682014-02-25 10:04:03 -05002314 * cgroup_mutex and threadgroup.
Ben Blum74a11662011-05-26 16:25:20 -07002315 */
Tejun Heoacbef752014-05-13 12:16:22 -04002316static ssize_t __cgroup_procs_write(struct kernfs_open_file *of, char *buf,
2317 size_t nbytes, loff_t off, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002318{
Paul Menagebbcb81d2007-10-18 23:39:32 -07002319 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11002320 const struct cred *cred = current_cred(), *tcred;
Tejun Heoe76ecae2014-05-13 12:19:23 -04002321 struct cgroup *cgrp;
Tejun Heoacbef752014-05-13 12:16:22 -04002322 pid_t pid;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002323 int ret;
2324
Tejun Heoacbef752014-05-13 12:16:22 -04002325 if (kstrtoint(strstrip(buf), 0, &pid) || pid < 0)
2326 return -EINVAL;
2327
Tejun Heoe76ecae2014-05-13 12:19:23 -04002328 cgrp = cgroup_kn_lock_live(of->kn);
2329 if (!cgrp)
Ben Blum74a11662011-05-26 16:25:20 -07002330 return -ENODEV;
2331
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002332retry_find_task:
2333 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002334 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002335 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07002336 if (!tsk) {
Paul Menagebbcb81d2007-10-18 23:39:32 -07002337 rcu_read_unlock();
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09002338 ret = -ESRCH;
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002339 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002340 }
Ben Blum74a11662011-05-26 16:25:20 -07002341 /*
2342 * even if we're attaching all tasks in the thread group, we
2343 * only need to check permissions on one of them.
2344 */
David Howellsc69e8d92008-11-14 10:39:19 +11002345 tcred = __task_cred(tsk);
Eric W. Biederman14a590c2012-03-12 15:44:39 -07002346 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
2347 !uid_eq(cred->euid, tcred->uid) &&
2348 !uid_eq(cred->euid, tcred->suid)) {
David Howellsc69e8d92008-11-14 10:39:19 +11002349 rcu_read_unlock();
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002350 ret = -EACCES;
2351 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002352 }
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002353 } else
2354 tsk = current;
Tejun Heocd3d0952011-12-12 18:12:21 -08002355
2356 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002357 tsk = tsk->group_leader;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002358
2359 /*
Tejun Heo14a40ff2013-03-19 13:45:20 -07002360 * Workqueue threads may acquire PF_NO_SETAFFINITY and become
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002361 * trapped in a cpuset, or RT worker may be born in a cgroup
2362 * with no rt_runtime allocated. Just say no.
2363 */
Tejun Heo14a40ff2013-03-19 13:45:20 -07002364 if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) {
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002365 ret = -EINVAL;
2366 rcu_read_unlock();
2367 goto out_unlock_cgroup;
2368 }
2369
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002370 get_task_struct(tsk);
2371 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08002372
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002373 threadgroup_lock(tsk);
2374 if (threadgroup) {
2375 if (!thread_group_leader(tsk)) {
2376 /*
2377 * a race with de_thread from another thread's exec()
2378 * may strip us of our leadership, if this happens,
2379 * there is no choice but to throw this task away and
2380 * try again; this is
2381 * "double-double-toil-and-trouble-check locking".
2382 */
2383 threadgroup_unlock(tsk);
2384 put_task_struct(tsk);
2385 goto retry_find_task;
2386 }
Li Zefan081aa452013-03-13 09:17:09 +08002387 }
2388
2389 ret = cgroup_attach_task(cgrp, tsk, threadgroup);
2390
Tejun Heocd3d0952011-12-12 18:12:21 -08002391 threadgroup_unlock(tsk);
2392
Paul Menagebbcb81d2007-10-18 23:39:32 -07002393 put_task_struct(tsk);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002394out_unlock_cgroup:
Tejun Heoe76ecae2014-05-13 12:19:23 -04002395 cgroup_kn_unlock(of->kn);
Tejun Heoacbef752014-05-13 12:16:22 -04002396 return ret ?: nbytes;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002397}
2398
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002399/**
2400 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
2401 * @from: attach to all cgroups of a given task
2402 * @tsk: the task to be attached
2403 */
2404int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
2405{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002406 struct cgroup_root *root;
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002407 int retval = 0;
2408
Tejun Heo47cfcd02013-04-07 09:29:51 -07002409 mutex_lock(&cgroup_mutex);
Tejun Heo985ed672014-03-19 10:23:53 -04002410 for_each_root(root) {
Tejun Heo96d365e2014-02-13 06:58:40 -05002411 struct cgroup *from_cgrp;
2412
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002413 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04002414 continue;
2415
Tejun Heo96d365e2014-02-13 06:58:40 -05002416 down_read(&css_set_rwsem);
2417 from_cgrp = task_cgroup_from_root(from, root);
2418 up_read(&css_set_rwsem);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002419
Li Zefan6f4b7e62013-07-31 16:18:36 +08002420 retval = cgroup_attach_task(from_cgrp, tsk, false);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002421 if (retval)
2422 break;
2423 }
Tejun Heo47cfcd02013-04-07 09:29:51 -07002424 mutex_unlock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002425
2426 return retval;
2427}
2428EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
2429
Tejun Heoacbef752014-05-13 12:16:22 -04002430static ssize_t cgroup_tasks_write(struct kernfs_open_file *of,
2431 char *buf, size_t nbytes, loff_t off)
Paul Menageaf351022008-07-25 01:47:01 -07002432{
Tejun Heoacbef752014-05-13 12:16:22 -04002433 return __cgroup_procs_write(of, buf, nbytes, off, false);
Ben Blum74a11662011-05-26 16:25:20 -07002434}
2435
Tejun Heoacbef752014-05-13 12:16:22 -04002436static ssize_t cgroup_procs_write(struct kernfs_open_file *of,
2437 char *buf, size_t nbytes, loff_t off)
Ben Blum74a11662011-05-26 16:25:20 -07002438{
Tejun Heoacbef752014-05-13 12:16:22 -04002439 return __cgroup_procs_write(of, buf, nbytes, off, true);
Paul Menageaf351022008-07-25 01:47:01 -07002440}
2441
Tejun Heo451af502014-05-13 12:16:21 -04002442static ssize_t cgroup_release_agent_write(struct kernfs_open_file *of,
2443 char *buf, size_t nbytes, loff_t off)
Paul Menagee788e0662008-07-25 01:46:59 -07002444{
Tejun Heoe76ecae2014-05-13 12:19:23 -04002445 struct cgroup *cgrp;
Tejun Heo5f469902014-02-11 11:52:48 -05002446
Tejun Heoe76ecae2014-05-13 12:19:23 -04002447 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
2448
2449 cgrp = cgroup_kn_lock_live(of->kn);
2450 if (!cgrp)
Paul Menagee788e0662008-07-25 01:46:59 -07002451 return -ENODEV;
Tejun Heo69e943b2014-02-08 10:36:58 -05002452 spin_lock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002453 strlcpy(cgrp->root->release_agent_path, strstrip(buf),
2454 sizeof(cgrp->root->release_agent_path));
Tejun Heo69e943b2014-02-08 10:36:58 -05002455 spin_unlock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002456 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04002457 return nbytes;
Paul Menagee788e0662008-07-25 01:46:59 -07002458}
2459
Tejun Heo2da8ca82013-12-05 12:28:04 -05002460static int cgroup_release_agent_show(struct seq_file *seq, void *v)
Paul Menagee788e0662008-07-25 01:46:59 -07002461{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002462 struct cgroup *cgrp = seq_css(seq)->cgroup;
Tejun Heo182446d2013-08-08 20:11:24 -04002463
Tejun Heo46cfeb02014-05-13 12:11:00 -04002464 spin_lock(&release_agent_path_lock);
Paul Menagee788e0662008-07-25 01:46:59 -07002465 seq_puts(seq, cgrp->root->release_agent_path);
Tejun Heo46cfeb02014-05-13 12:11:00 -04002466 spin_unlock(&release_agent_path_lock);
Paul Menagee788e0662008-07-25 01:46:59 -07002467 seq_putc(seq, '\n');
Paul Menagee788e0662008-07-25 01:46:59 -07002468 return 0;
2469}
2470
Tejun Heo2da8ca82013-12-05 12:28:04 -05002471static int cgroup_sane_behavior_show(struct seq_file *seq, void *v)
Tejun Heo873fe092013-04-14 20:15:26 -07002472{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002473 struct cgroup *cgrp = seq_css(seq)->cgroup;
2474
2475 seq_printf(seq, "%d\n", cgroup_sane_behavior(cgrp));
Paul Menage81a6a5c2007-10-18 23:39:38 -07002476 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002477}
2478
Tejun Heof8f22e52014-04-23 11:13:16 -04002479static void cgroup_print_ss_mask(struct seq_file *seq, unsigned int ss_mask)
2480{
2481 struct cgroup_subsys *ss;
2482 bool printed = false;
2483 int ssid;
2484
2485 for_each_subsys(ss, ssid) {
2486 if (ss_mask & (1 << ssid)) {
2487 if (printed)
2488 seq_putc(seq, ' ');
2489 seq_printf(seq, "%s", ss->name);
2490 printed = true;
2491 }
2492 }
2493 if (printed)
2494 seq_putc(seq, '\n');
2495}
2496
2497/* show controllers which are currently attached to the default hierarchy */
2498static int cgroup_root_controllers_show(struct seq_file *seq, void *v)
2499{
2500 struct cgroup *cgrp = seq_css(seq)->cgroup;
2501
Tejun Heo5533e012014-05-14 19:33:07 -04002502 cgroup_print_ss_mask(seq, cgrp->root->subsys_mask &
2503 ~cgrp_dfl_root_inhibit_ss_mask);
Tejun Heof8f22e52014-04-23 11:13:16 -04002504 return 0;
2505}
2506
2507/* show controllers which are enabled from the parent */
2508static int cgroup_controllers_show(struct seq_file *seq, void *v)
2509{
2510 struct cgroup *cgrp = seq_css(seq)->cgroup;
2511
Tejun Heo667c2492014-07-08 18:02:56 -04002512 cgroup_print_ss_mask(seq, cgroup_parent(cgrp)->subtree_control);
Tejun Heof8f22e52014-04-23 11:13:16 -04002513 return 0;
2514}
2515
2516/* show controllers which are enabled for a given cgroup's children */
2517static int cgroup_subtree_control_show(struct seq_file *seq, void *v)
2518{
2519 struct cgroup *cgrp = seq_css(seq)->cgroup;
2520
Tejun Heo667c2492014-07-08 18:02:56 -04002521 cgroup_print_ss_mask(seq, cgrp->subtree_control);
Tejun Heof8f22e52014-04-23 11:13:16 -04002522 return 0;
2523}
2524
2525/**
2526 * cgroup_update_dfl_csses - update css assoc of a subtree in default hierarchy
2527 * @cgrp: root of the subtree to update csses for
2528 *
2529 * @cgrp's child_subsys_mask has changed and its subtree's (self excluded)
2530 * css associations need to be updated accordingly. This function looks up
2531 * all css_sets which are attached to the subtree, creates the matching
2532 * updated css_sets and migrates the tasks to the new ones.
2533 */
2534static int cgroup_update_dfl_csses(struct cgroup *cgrp)
2535{
2536 LIST_HEAD(preloaded_csets);
2537 struct cgroup_subsys_state *css;
2538 struct css_set *src_cset;
2539 int ret;
2540
Tejun Heof8f22e52014-04-23 11:13:16 -04002541 lockdep_assert_held(&cgroup_mutex);
2542
2543 /* look up all csses currently attached to @cgrp's subtree */
2544 down_read(&css_set_rwsem);
2545 css_for_each_descendant_pre(css, cgroup_css(cgrp, NULL)) {
2546 struct cgrp_cset_link *link;
2547
2548 /* self is not affected by child_subsys_mask change */
2549 if (css->cgroup == cgrp)
2550 continue;
2551
2552 list_for_each_entry(link, &css->cgroup->cset_links, cset_link)
2553 cgroup_migrate_add_src(link->cset, cgrp,
2554 &preloaded_csets);
2555 }
2556 up_read(&css_set_rwsem);
2557
2558 /* NULL dst indicates self on default hierarchy */
2559 ret = cgroup_migrate_prepare_dst(NULL, &preloaded_csets);
2560 if (ret)
2561 goto out_finish;
2562
2563 list_for_each_entry(src_cset, &preloaded_csets, mg_preload_node) {
2564 struct task_struct *last_task = NULL, *task;
2565
2566 /* src_csets precede dst_csets, break on the first dst_cset */
2567 if (!src_cset->mg_src_cgrp)
2568 break;
2569
2570 /*
2571 * All tasks in src_cset need to be migrated to the
2572 * matching dst_cset. Empty it process by process. We
2573 * walk tasks but migrate processes. The leader might even
2574 * belong to a different cset but such src_cset would also
2575 * be among the target src_csets because the default
2576 * hierarchy enforces per-process membership.
2577 */
2578 while (true) {
2579 down_read(&css_set_rwsem);
2580 task = list_first_entry_or_null(&src_cset->tasks,
2581 struct task_struct, cg_list);
2582 if (task) {
2583 task = task->group_leader;
2584 WARN_ON_ONCE(!task_css_set(task)->mg_src_cgrp);
2585 get_task_struct(task);
2586 }
2587 up_read(&css_set_rwsem);
2588
2589 if (!task)
2590 break;
2591
2592 /* guard against possible infinite loop */
2593 if (WARN(last_task == task,
2594 "cgroup: update_dfl_csses failed to make progress, aborting in inconsistent state\n"))
2595 goto out_finish;
2596 last_task = task;
2597
2598 threadgroup_lock(task);
2599 /* raced against de_thread() from another thread? */
2600 if (!thread_group_leader(task)) {
2601 threadgroup_unlock(task);
2602 put_task_struct(task);
2603 continue;
2604 }
2605
2606 ret = cgroup_migrate(src_cset->dfl_cgrp, task, true);
2607
2608 threadgroup_unlock(task);
2609 put_task_struct(task);
2610
2611 if (WARN(ret, "cgroup: failed to update controllers for the default hierarchy (%d), further operations may crash or hang\n", ret))
2612 goto out_finish;
2613 }
2614 }
2615
2616out_finish:
2617 cgroup_migrate_finish(&preloaded_csets);
2618 return ret;
2619}
2620
2621/* change the enabled child controllers for a cgroup in the default hierarchy */
Tejun Heo451af502014-05-13 12:16:21 -04002622static ssize_t cgroup_subtree_control_write(struct kernfs_open_file *of,
2623 char *buf, size_t nbytes,
2624 loff_t off)
Tejun Heof8f22e52014-04-23 11:13:16 -04002625{
Tejun Heo7d331fa2014-05-13 12:11:00 -04002626 unsigned int enable = 0, disable = 0;
Tejun Heof63070d2014-07-08 18:02:57 -04002627 unsigned int css_enable, css_disable, old_ctrl, new_ctrl;
Tejun Heoa9746d82014-05-13 12:19:22 -04002628 struct cgroup *cgrp, *child;
Tejun Heof8f22e52014-04-23 11:13:16 -04002629 struct cgroup_subsys *ss;
Tejun Heo451af502014-05-13 12:16:21 -04002630 char *tok;
Tejun Heof8f22e52014-04-23 11:13:16 -04002631 int ssid, ret;
2632
2633 /*
Tejun Heod37167a2014-05-13 12:10:59 -04002634 * Parse input - space separated list of subsystem names prefixed
2635 * with either + or -.
Tejun Heof8f22e52014-04-23 11:13:16 -04002636 */
Tejun Heo451af502014-05-13 12:16:21 -04002637 buf = strstrip(buf);
2638 while ((tok = strsep(&buf, " "))) {
Tejun Heod37167a2014-05-13 12:10:59 -04002639 if (tok[0] == '\0')
2640 continue;
Tejun Heof8f22e52014-04-23 11:13:16 -04002641 for_each_subsys(ss, ssid) {
Tejun Heo5533e012014-05-14 19:33:07 -04002642 if (ss->disabled || strcmp(tok + 1, ss->name) ||
2643 ((1 << ss->id) & cgrp_dfl_root_inhibit_ss_mask))
Tejun Heof8f22e52014-04-23 11:13:16 -04002644 continue;
2645
2646 if (*tok == '+') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04002647 enable |= 1 << ssid;
2648 disable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002649 } else if (*tok == '-') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04002650 disable |= 1 << ssid;
2651 enable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002652 } else {
2653 return -EINVAL;
2654 }
2655 break;
2656 }
2657 if (ssid == CGROUP_SUBSYS_COUNT)
2658 return -EINVAL;
2659 }
2660
Tejun Heoa9746d82014-05-13 12:19:22 -04002661 cgrp = cgroup_kn_lock_live(of->kn);
2662 if (!cgrp)
2663 return -ENODEV;
Tejun Heof8f22e52014-04-23 11:13:16 -04002664
2665 for_each_subsys(ss, ssid) {
2666 if (enable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04002667 if (cgrp->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002668 enable &= ~(1 << ssid);
2669 continue;
2670 }
2671
Tejun Heoc29adf22014-07-08 18:02:56 -04002672 /* unavailable or not enabled on the parent? */
2673 if (!(cgrp_dfl_root.subsys_mask & (1 << ssid)) ||
2674 (cgroup_parent(cgrp) &&
Tejun Heo667c2492014-07-08 18:02:56 -04002675 !(cgroup_parent(cgrp)->subtree_control & (1 << ssid)))) {
Tejun Heoc29adf22014-07-08 18:02:56 -04002676 ret = -ENOENT;
2677 goto out_unlock;
2678 }
2679
Tejun Heof8f22e52014-04-23 11:13:16 -04002680 /*
Tejun Heof63070d2014-07-08 18:02:57 -04002681 * @ss is already enabled through dependency and
2682 * we'll just make it visible. Skip draining.
2683 */
2684 if (cgrp->child_subsys_mask & (1 << ssid))
2685 continue;
2686
2687 /*
Tejun Heof8f22e52014-04-23 11:13:16 -04002688 * Because css offlining is asynchronous, userland
2689 * might try to re-enable the same controller while
2690 * the previous instance is still around. In such
2691 * cases, wait till it's gone using offline_waitq.
2692 */
2693 cgroup_for_each_live_child(child, cgrp) {
Tejun Heo0cee8b72014-05-13 12:10:59 -04002694 DEFINE_WAIT(wait);
Tejun Heof8f22e52014-04-23 11:13:16 -04002695
2696 if (!cgroup_css(child, ss))
2697 continue;
2698
Tejun Heo0cee8b72014-05-13 12:10:59 -04002699 cgroup_get(child);
Tejun Heof8f22e52014-04-23 11:13:16 -04002700 prepare_to_wait(&child->offline_waitq, &wait,
2701 TASK_UNINTERRUPTIBLE);
Tejun Heoa9746d82014-05-13 12:19:22 -04002702 cgroup_kn_unlock(of->kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04002703 schedule();
2704 finish_wait(&child->offline_waitq, &wait);
Tejun Heo0cee8b72014-05-13 12:10:59 -04002705 cgroup_put(child);
Tejun Heo7d331fa2014-05-13 12:11:00 -04002706
Tejun Heoa9746d82014-05-13 12:19:22 -04002707 return restart_syscall();
Tejun Heof8f22e52014-04-23 11:13:16 -04002708 }
Tejun Heof8f22e52014-04-23 11:13:16 -04002709 } else if (disable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04002710 if (!(cgrp->subtree_control & (1 << ssid))) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002711 disable &= ~(1 << ssid);
2712 continue;
2713 }
2714
2715 /* a child has it enabled? */
2716 cgroup_for_each_live_child(child, cgrp) {
Tejun Heo667c2492014-07-08 18:02:56 -04002717 if (child->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002718 ret = -EBUSY;
Tejun Heoddab2b62014-05-13 12:19:22 -04002719 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04002720 }
2721 }
2722 }
2723 }
2724
2725 if (!enable && !disable) {
2726 ret = 0;
Tejun Heoddab2b62014-05-13 12:19:22 -04002727 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04002728 }
2729
2730 /*
Tejun Heo667c2492014-07-08 18:02:56 -04002731 * Except for the root, subtree_control must be zero for a cgroup
Tejun Heof8f22e52014-04-23 11:13:16 -04002732 * with tasks so that child cgroups don't compete against tasks.
2733 */
Tejun Heod51f39b2014-05-16 13:22:48 -04002734 if (enable && cgroup_parent(cgrp) && !list_empty(&cgrp->cset_links)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002735 ret = -EBUSY;
2736 goto out_unlock;
2737 }
2738
Tejun Heof63070d2014-07-08 18:02:57 -04002739 /*
2740 * Update subsys masks and calculate what needs to be done. More
2741 * subsystems than specified may need to be enabled or disabled
2742 * depending on subsystem dependencies.
2743 */
Tejun Heo667c2492014-07-08 18:02:56 -04002744 cgrp->subtree_control |= enable;
2745 cgrp->subtree_control &= ~disable;
Tejun Heoc29adf22014-07-08 18:02:56 -04002746
Tejun Heof63070d2014-07-08 18:02:57 -04002747 old_ctrl = cgrp->child_subsys_mask;
2748 cgroup_refresh_child_subsys_mask(cgrp);
2749 new_ctrl = cgrp->child_subsys_mask;
2750
2751 css_enable = ~old_ctrl & new_ctrl;
2752 css_disable = old_ctrl & ~new_ctrl;
2753 enable |= css_enable;
2754 disable |= css_disable;
2755
2756 /*
2757 * Create new csses or make the existing ones visible. A css is
2758 * created invisible if it's being implicitly enabled through
2759 * dependency. An invisible css is made visible when the userland
2760 * explicitly enables it.
2761 */
Tejun Heof8f22e52014-04-23 11:13:16 -04002762 for_each_subsys(ss, ssid) {
2763 if (!(enable & (1 << ssid)))
2764 continue;
2765
2766 cgroup_for_each_live_child(child, cgrp) {
Tejun Heof63070d2014-07-08 18:02:57 -04002767 if (css_enable & (1 << ssid))
2768 ret = create_css(child, ss,
2769 cgrp->subtree_control & (1 << ssid));
2770 else
2771 ret = cgroup_populate_dir(child, 1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002772 if (ret)
2773 goto err_undo_css;
2774 }
2775 }
2776
Tejun Heoc29adf22014-07-08 18:02:56 -04002777 /*
2778 * At this point, cgroup_e_css() results reflect the new csses
2779 * making the following cgroup_update_dfl_csses() properly update
2780 * css associations of all tasks in the subtree.
2781 */
Tejun Heof8f22e52014-04-23 11:13:16 -04002782 ret = cgroup_update_dfl_csses(cgrp);
2783 if (ret)
2784 goto err_undo_css;
2785
Tejun Heof63070d2014-07-08 18:02:57 -04002786 /*
2787 * All tasks are migrated out of disabled csses. Kill or hide
2788 * them. A css is hidden when the userland requests it to be
Tejun Heob4536f0ca2014-07-08 18:02:57 -04002789 * disabled while other subsystems are still depending on it. The
2790 * css must not actively control resources and be in the vanilla
2791 * state if it's made visible again later. Controllers which may
2792 * be depended upon should provide ->css_reset() for this purpose.
Tejun Heof63070d2014-07-08 18:02:57 -04002793 */
Tejun Heof8f22e52014-04-23 11:13:16 -04002794 for_each_subsys(ss, ssid) {
2795 if (!(disable & (1 << ssid)))
2796 continue;
2797
Tejun Heof63070d2014-07-08 18:02:57 -04002798 cgroup_for_each_live_child(child, cgrp) {
Tejun Heob4536f0ca2014-07-08 18:02:57 -04002799 struct cgroup_subsys_state *css = cgroup_css(child, ss);
2800
2801 if (css_disable & (1 << ssid)) {
2802 kill_css(css);
2803 } else {
Tejun Heof63070d2014-07-08 18:02:57 -04002804 cgroup_clear_dir(child, 1 << ssid);
Tejun Heob4536f0ca2014-07-08 18:02:57 -04002805 if (ss->css_reset)
2806 ss->css_reset(css);
2807 }
Tejun Heof63070d2014-07-08 18:02:57 -04002808 }
Tejun Heof8f22e52014-04-23 11:13:16 -04002809 }
2810
2811 kernfs_activate(cgrp->kn);
2812 ret = 0;
2813out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04002814 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04002815 return ret ?: nbytes;
Tejun Heof8f22e52014-04-23 11:13:16 -04002816
2817err_undo_css:
Tejun Heo667c2492014-07-08 18:02:56 -04002818 cgrp->subtree_control &= ~enable;
2819 cgrp->subtree_control |= disable;
2820 cgroup_refresh_child_subsys_mask(cgrp);
Tejun Heof8f22e52014-04-23 11:13:16 -04002821
2822 for_each_subsys(ss, ssid) {
2823 if (!(enable & (1 << ssid)))
2824 continue;
2825
2826 cgroup_for_each_live_child(child, cgrp) {
2827 struct cgroup_subsys_state *css = cgroup_css(child, ss);
Tejun Heof63070d2014-07-08 18:02:57 -04002828
2829 if (!css)
2830 continue;
2831
2832 if (css_enable & (1 << ssid))
Tejun Heof8f22e52014-04-23 11:13:16 -04002833 kill_css(css);
Tejun Heof63070d2014-07-08 18:02:57 -04002834 else
2835 cgroup_clear_dir(child, 1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002836 }
2837 }
2838 goto out_unlock;
2839}
2840
Tejun Heo842b5972014-04-25 18:28:02 -04002841static int cgroup_populated_show(struct seq_file *seq, void *v)
2842{
2843 seq_printf(seq, "%d\n", (bool)seq_css(seq)->cgroup->populated_cnt);
2844 return 0;
2845}
2846
Tejun Heo2bd59d42014-02-11 11:52:49 -05002847static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf,
2848 size_t nbytes, loff_t off)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002849{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002850 struct cgroup *cgrp = of->kn->parent->priv;
2851 struct cftype *cft = of->kn->priv;
2852 struct cgroup_subsys_state *css;
Tejun Heoa742c592013-12-05 12:28:03 -05002853 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002854
Tejun Heob4168642014-05-13 12:16:21 -04002855 if (cft->write)
2856 return cft->write(of, buf, nbytes, off);
2857
Tejun Heo2bd59d42014-02-11 11:52:49 -05002858 /*
2859 * kernfs guarantees that a file isn't deleted with operations in
2860 * flight, which means that the matching css is and stays alive and
2861 * doesn't need to be pinned. The RCU locking is not necessary
2862 * either. It's just for the convenience of using cgroup_css().
2863 */
2864 rcu_read_lock();
2865 css = cgroup_css(cgrp, cft->ss);
2866 rcu_read_unlock();
Paul Menageddbcc7e2007-10-18 23:39:30 -07002867
Tejun Heo451af502014-05-13 12:16:21 -04002868 if (cft->write_u64) {
Tejun Heoa742c592013-12-05 12:28:03 -05002869 unsigned long long v;
2870 ret = kstrtoull(buf, 0, &v);
2871 if (!ret)
2872 ret = cft->write_u64(css, cft, v);
2873 } else if (cft->write_s64) {
2874 long long v;
2875 ret = kstrtoll(buf, 0, &v);
2876 if (!ret)
2877 ret = cft->write_s64(css, cft, v);
Tejun Heoa742c592013-12-05 12:28:03 -05002878 } else {
2879 ret = -EINVAL;
2880 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05002881
Tejun Heoa742c592013-12-05 12:28:03 -05002882 return ret ?: nbytes;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002883}
2884
Tejun Heo6612f052013-12-05 12:28:04 -05002885static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos)
Paul Menage91796562008-04-29 01:00:01 -07002886{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002887 return seq_cft(seq)->seq_start(seq, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002888}
2889
2890static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos)
2891{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002892 return seq_cft(seq)->seq_next(seq, v, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002893}
2894
2895static void cgroup_seqfile_stop(struct seq_file *seq, void *v)
2896{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002897 seq_cft(seq)->seq_stop(seq, v);
Paul Menage91796562008-04-29 01:00:01 -07002898}
2899
2900static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2901{
Tejun Heo7da11272013-12-05 12:28:04 -05002902 struct cftype *cft = seq_cft(m);
2903 struct cgroup_subsys_state *css = seq_css(m);
Li Zefane0798ce2013-07-31 17:36:25 +08002904
Tejun Heo2da8ca82013-12-05 12:28:04 -05002905 if (cft->seq_show)
2906 return cft->seq_show(m, arg);
Paul Menage91796562008-04-29 01:00:01 -07002907
Tejun Heo896f5192013-12-05 12:28:04 -05002908 if (cft->read_u64)
2909 seq_printf(m, "%llu\n", cft->read_u64(css, cft));
2910 else if (cft->read_s64)
2911 seq_printf(m, "%lld\n", cft->read_s64(css, cft));
2912 else
2913 return -EINVAL;
2914 return 0;
Paul Menage91796562008-04-29 01:00:01 -07002915}
2916
Tejun Heo2bd59d42014-02-11 11:52:49 -05002917static struct kernfs_ops cgroup_kf_single_ops = {
2918 .atomic_write_len = PAGE_SIZE,
2919 .write = cgroup_file_write,
2920 .seq_show = cgroup_seqfile_show,
Paul Menage91796562008-04-29 01:00:01 -07002921};
2922
Tejun Heo2bd59d42014-02-11 11:52:49 -05002923static struct kernfs_ops cgroup_kf_ops = {
2924 .atomic_write_len = PAGE_SIZE,
2925 .write = cgroup_file_write,
2926 .seq_start = cgroup_seqfile_start,
2927 .seq_next = cgroup_seqfile_next,
2928 .seq_stop = cgroup_seqfile_stop,
2929 .seq_show = cgroup_seqfile_show,
2930};
Paul Menageddbcc7e2007-10-18 23:39:30 -07002931
2932/*
2933 * cgroup_rename - Only allow simple rename of directories in place.
2934 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05002935static int cgroup_rename(struct kernfs_node *kn, struct kernfs_node *new_parent,
2936 const char *new_name_str)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002937{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002938 struct cgroup *cgrp = kn->priv;
Li Zefan65dff752013-03-01 15:01:56 +08002939 int ret;
Li Zefan65dff752013-03-01 15:01:56 +08002940
Tejun Heo2bd59d42014-02-11 11:52:49 -05002941 if (kernfs_type(kn) != KERNFS_DIR)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002942 return -ENOTDIR;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002943 if (kn->parent != new_parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002944 return -EIO;
Li Zefan65dff752013-03-01 15:01:56 +08002945
Tejun Heo6db8e852013-06-14 11:18:22 -07002946 /*
2947 * This isn't a proper migration and its usefulness is very
2948 * limited. Disallow if sane_behavior.
2949 */
2950 if (cgroup_sane_behavior(cgrp))
2951 return -EPERM;
2952
Tejun Heoe1b2dc12014-03-20 11:10:15 -04002953 /*
Tejun Heo8353da12014-05-13 12:19:23 -04002954 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoe1b2dc12014-03-20 11:10:15 -04002955 * active_ref. kernfs_rename() doesn't require active_ref
Tejun Heo8353da12014-05-13 12:19:23 -04002956 * protection. Break them before grabbing cgroup_mutex.
Tejun Heoe1b2dc12014-03-20 11:10:15 -04002957 */
2958 kernfs_break_active_protection(new_parent);
2959 kernfs_break_active_protection(kn);
Li Zefan65dff752013-03-01 15:01:56 +08002960
Tejun Heo2bd59d42014-02-11 11:52:49 -05002961 mutex_lock(&cgroup_mutex);
Li Zefan65dff752013-03-01 15:01:56 +08002962
Tejun Heo2bd59d42014-02-11 11:52:49 -05002963 ret = kernfs_rename(kn, new_parent, new_name_str);
Li Zefan65dff752013-03-01 15:01:56 +08002964
Tejun Heo2bd59d42014-02-11 11:52:49 -05002965 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002966
Tejun Heoe1b2dc12014-03-20 11:10:15 -04002967 kernfs_unbreak_active_protection(kn);
2968 kernfs_unbreak_active_protection(new_parent);
Tejun Heo2bd59d42014-02-11 11:52:49 -05002969 return ret;
Li Zefan099fca32009-04-02 16:57:29 -07002970}
2971
Tejun Heo49957f82014-04-07 16:44:47 -04002972/* set uid and gid of cgroup dirs and files to that of the creator */
2973static int cgroup_kn_set_ugid(struct kernfs_node *kn)
2974{
2975 struct iattr iattr = { .ia_valid = ATTR_UID | ATTR_GID,
2976 .ia_uid = current_fsuid(),
2977 .ia_gid = current_fsgid(), };
2978
2979 if (uid_eq(iattr.ia_uid, GLOBAL_ROOT_UID) &&
2980 gid_eq(iattr.ia_gid, GLOBAL_ROOT_GID))
2981 return 0;
2982
2983 return kernfs_setattr(kn, &iattr);
2984}
2985
Tejun Heo2bb566c2013-08-08 20:11:23 -04002986static int cgroup_add_file(struct cgroup *cgrp, struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002987{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05002988 char name[CGROUP_FILE_NAME_MAX];
Tejun Heo2bd59d42014-02-11 11:52:49 -05002989 struct kernfs_node *kn;
2990 struct lock_class_key *key = NULL;
Tejun Heo49957f82014-04-07 16:44:47 -04002991 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002992
Tejun Heo2bd59d42014-02-11 11:52:49 -05002993#ifdef CONFIG_DEBUG_LOCK_ALLOC
2994 key = &cft->lockdep_key;
2995#endif
2996 kn = __kernfs_create_file(cgrp->kn, cgroup_file_name(cgrp, cft, name),
2997 cgroup_file_mode(cft), 0, cft->kf_ops, cft,
2998 NULL, false, key);
Tejun Heo49957f82014-04-07 16:44:47 -04002999 if (IS_ERR(kn))
3000 return PTR_ERR(kn);
3001
3002 ret = cgroup_kn_set_ugid(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04003003 if (ret) {
Tejun Heo49957f82014-04-07 16:44:47 -04003004 kernfs_remove(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04003005 return ret;
3006 }
3007
Tejun Heob7fc5ad2014-05-13 12:16:22 -04003008 if (cft->seq_show == cgroup_populated_show)
Tejun Heo842b5972014-04-25 18:28:02 -04003009 cgrp->populated_kn = kn;
Tejun Heof8f22e52014-04-23 11:13:16 -04003010 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003011}
3012
Tejun Heob1f28d32013-06-28 16:24:10 -07003013/**
3014 * cgroup_addrm_files - add or remove files to a cgroup directory
3015 * @cgrp: the target cgroup
Tejun Heob1f28d32013-06-28 16:24:10 -07003016 * @cfts: array of cftypes to be added
3017 * @is_add: whether to add or remove
3018 *
3019 * Depending on @is_add, add or remove files defined by @cfts on @cgrp.
Tejun Heo2bb566c2013-08-08 20:11:23 -04003020 * For removals, this function never fails. If addition fails, this
3021 * function doesn't remove files already added. The caller is responsible
3022 * for cleaning up.
Tejun Heob1f28d32013-06-28 16:24:10 -07003023 */
Tejun Heo2bb566c2013-08-08 20:11:23 -04003024static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
3025 bool is_add)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003026{
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04003027 struct cftype *cft;
Tejun Heob1f28d32013-06-28 16:24:10 -07003028 int ret;
3029
Tejun Heo01f64742014-05-13 12:19:23 -04003030 lockdep_assert_held(&cgroup_mutex);
Tejun Heodb0416b2012-04-01 12:09:55 -07003031
3032 for (cft = cfts; cft->name[0] != '\0'; cft++) {
Gao fengf33fddc2012-12-06 14:38:57 +08003033 /* does cft->flags tell us to skip this file on @cgrp? */
Tejun Heo8cbbf2c2014-03-19 10:23:55 -04003034 if ((cft->flags & CFTYPE_ONLY_ON_DFL) && !cgroup_on_dfl(cgrp))
3035 continue;
Tejun Heo873fe092013-04-14 20:15:26 -07003036 if ((cft->flags & CFTYPE_INSANE) && cgroup_sane_behavior(cgrp))
3037 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04003038 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08003039 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04003040 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08003041 continue;
3042
Li Zefan2739d3c2013-01-21 18:18:33 +08003043 if (is_add) {
Tejun Heo2bb566c2013-08-08 20:11:23 -04003044 ret = cgroup_add_file(cgrp, cft);
Tejun Heob1f28d32013-06-28 16:24:10 -07003045 if (ret) {
Joe Perchesed3d2612014-04-25 18:28:03 -04003046 pr_warn("%s: failed to add %s, err=%d\n",
3047 __func__, cft->name, ret);
Tejun Heob1f28d32013-06-28 16:24:10 -07003048 return ret;
3049 }
Li Zefan2739d3c2013-01-21 18:18:33 +08003050 } else {
3051 cgroup_rm_file(cgrp, cft);
Tejun Heodb0416b2012-04-01 12:09:55 -07003052 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003053 }
Tejun Heob1f28d32013-06-28 16:24:10 -07003054 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003055}
3056
Tejun Heo21a2d342014-02-12 09:29:49 -05003057static int cgroup_apply_cftypes(struct cftype *cfts, bool is_add)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003058{
3059 LIST_HEAD(pending);
Tejun Heo2bb566c2013-08-08 20:11:23 -04003060 struct cgroup_subsys *ss = cfts[0].ss;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04003061 struct cgroup *root = &ss->root->cgrp;
Tejun Heo492eb212013-08-08 20:11:25 -04003062 struct cgroup_subsys_state *css;
Tejun Heo9ccece82013-06-28 16:24:11 -07003063 int ret = 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003064
Tejun Heo01f64742014-05-13 12:19:23 -04003065 lockdep_assert_held(&cgroup_mutex);
Li Zefane8c82d22013-06-18 18:48:37 +08003066
Li Zefane8c82d22013-06-18 18:48:37 +08003067 /* add/rm files for all cgroups created before */
Tejun Heoca8bdca2013-08-26 18:40:56 -04003068 css_for_each_descendant_pre(css, cgroup_css(root, ss)) {
Tejun Heo492eb212013-08-08 20:11:25 -04003069 struct cgroup *cgrp = css->cgroup;
3070
Li Zefane8c82d22013-06-18 18:48:37 +08003071 if (cgroup_is_dead(cgrp))
3072 continue;
3073
Tejun Heo21a2d342014-02-12 09:29:49 -05003074 ret = cgroup_addrm_files(cgrp, cfts, is_add);
Tejun Heo9ccece82013-06-28 16:24:11 -07003075 if (ret)
3076 break;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003077 }
Tejun Heo21a2d342014-02-12 09:29:49 -05003078
3079 if (is_add && !ret)
3080 kernfs_activate(root->kn);
Tejun Heo9ccece82013-06-28 16:24:11 -07003081 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003082}
3083
Tejun Heo2da440a2014-02-11 11:52:48 -05003084static void cgroup_exit_cftypes(struct cftype *cfts)
3085{
3086 struct cftype *cft;
3087
Tejun Heo2bd59d42014-02-11 11:52:49 -05003088 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3089 /* free copy for custom atomic_write_len, see init_cftypes() */
3090 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE)
3091 kfree(cft->kf_ops);
3092 cft->kf_ops = NULL;
Tejun Heo2da440a2014-02-11 11:52:48 -05003093 cft->ss = NULL;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003094 }
Tejun Heo2da440a2014-02-11 11:52:48 -05003095}
3096
Tejun Heo2bd59d42014-02-11 11:52:49 -05003097static int cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo2da440a2014-02-11 11:52:48 -05003098{
3099 struct cftype *cft;
3100
Tejun Heo2bd59d42014-02-11 11:52:49 -05003101 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3102 struct kernfs_ops *kf_ops;
3103
Tejun Heo0adb0702014-02-12 09:29:48 -05003104 WARN_ON(cft->ss || cft->kf_ops);
3105
Tejun Heo2bd59d42014-02-11 11:52:49 -05003106 if (cft->seq_start)
3107 kf_ops = &cgroup_kf_ops;
3108 else
3109 kf_ops = &cgroup_kf_single_ops;
3110
3111 /*
3112 * Ugh... if @cft wants a custom max_write_len, we need to
3113 * make a copy of kf_ops to set its atomic_write_len.
3114 */
3115 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) {
3116 kf_ops = kmemdup(kf_ops, sizeof(*kf_ops), GFP_KERNEL);
3117 if (!kf_ops) {
3118 cgroup_exit_cftypes(cfts);
3119 return -ENOMEM;
3120 }
3121 kf_ops->atomic_write_len = cft->max_write_len;
3122 }
3123
3124 cft->kf_ops = kf_ops;
Tejun Heo2da440a2014-02-11 11:52:48 -05003125 cft->ss = ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003126 }
3127
3128 return 0;
Tejun Heo2da440a2014-02-11 11:52:48 -05003129}
3130
Tejun Heo21a2d342014-02-12 09:29:49 -05003131static int cgroup_rm_cftypes_locked(struct cftype *cfts)
3132{
Tejun Heo01f64742014-05-13 12:19:23 -04003133 lockdep_assert_held(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003134
3135 if (!cfts || !cfts[0].ss)
3136 return -ENOENT;
3137
3138 list_del(&cfts->node);
3139 cgroup_apply_cftypes(cfts, false);
3140 cgroup_exit_cftypes(cfts);
3141 return 0;
3142}
3143
Tejun Heo8e3f6542012-04-01 12:09:55 -07003144/**
Tejun Heo80b13582014-02-12 09:29:48 -05003145 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
3146 * @cfts: zero-length name terminated array of cftypes
3147 *
3148 * Unregister @cfts. Files described by @cfts are removed from all
3149 * existing cgroups and all future cgroups won't have them either. This
3150 * function can be called anytime whether @cfts' subsys is attached or not.
3151 *
3152 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
3153 * registered.
3154 */
3155int cgroup_rm_cftypes(struct cftype *cfts)
3156{
Tejun Heo21a2d342014-02-12 09:29:49 -05003157 int ret;
Tejun Heo80b13582014-02-12 09:29:48 -05003158
Tejun Heo01f64742014-05-13 12:19:23 -04003159 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003160 ret = cgroup_rm_cftypes_locked(cfts);
Tejun Heo01f64742014-05-13 12:19:23 -04003161 mutex_unlock(&cgroup_mutex);
Tejun Heo8e3f6542012-04-01 12:09:55 -07003162 return ret;
3163}
3164
3165/**
3166 * cgroup_add_cftypes - add an array of cftypes to a subsystem
3167 * @ss: target cgroup subsystem
3168 * @cfts: zero-length name terminated array of cftypes
3169 *
3170 * Register @cfts to @ss. Files described by @cfts are created for all
3171 * existing cgroups to which @ss is attached and all future cgroups will
3172 * have them too. This function can be called anytime whether @ss is
3173 * attached or not.
3174 *
3175 * Returns 0 on successful registration, -errno on failure. Note that this
3176 * function currently returns 0 as long as @cfts registration is successful
3177 * even if some file creation attempts on existing cgroups fail.
3178 */
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04003179int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003180{
Tejun Heo9ccece82013-06-28 16:24:11 -07003181 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003182
Li Zefanc731ae12014-06-05 17:16:30 +08003183 if (ss->disabled)
3184 return 0;
3185
Li Zefandc5736e2014-02-17 10:41:50 +08003186 if (!cfts || cfts[0].name[0] == '\0')
3187 return 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003188
Tejun Heo2bd59d42014-02-11 11:52:49 -05003189 ret = cgroup_init_cftypes(ss, cfts);
Tejun Heo9ccece82013-06-28 16:24:11 -07003190 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05003191 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003192
Tejun Heo01f64742014-05-13 12:19:23 -04003193 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003194
Tejun Heo0adb0702014-02-12 09:29:48 -05003195 list_add_tail(&cfts->node, &ss->cfts);
Tejun Heo21a2d342014-02-12 09:29:49 -05003196 ret = cgroup_apply_cftypes(cfts, true);
Tejun Heo9ccece82013-06-28 16:24:11 -07003197 if (ret)
Tejun Heo21a2d342014-02-12 09:29:49 -05003198 cgroup_rm_cftypes_locked(cfts);
3199
Tejun Heo01f64742014-05-13 12:19:23 -04003200 mutex_unlock(&cgroup_mutex);
Tejun Heo9ccece82013-06-28 16:24:11 -07003201 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003202}
Tejun Heo79578622012-04-01 12:09:56 -07003203
3204/**
Li Zefana043e3b2008-02-23 15:24:09 -08003205 * cgroup_task_count - count the number of tasks in a cgroup.
3206 * @cgrp: the cgroup in question
3207 *
3208 * Return the number of tasks in the cgroup.
3209 */
Tejun Heo07bc3562014-02-13 06:58:39 -05003210static int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003211{
3212 int count = 0;
Tejun Heo69d02062013-06-12 21:04:50 -07003213 struct cgrp_cset_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003214
Tejun Heo96d365e2014-02-13 06:58:40 -05003215 down_read(&css_set_rwsem);
Tejun Heo69d02062013-06-12 21:04:50 -07003216 list_for_each_entry(link, &cgrp->cset_links, cset_link)
3217 count += atomic_read(&link->cset->refcount);
Tejun Heo96d365e2014-02-13 06:58:40 -05003218 up_read(&css_set_rwsem);
Paul Menagebbcb81d2007-10-18 23:39:32 -07003219 return count;
3220}
3221
Tejun Heo574bd9f2012-11-09 09:12:29 -08003222/**
Tejun Heo492eb212013-08-08 20:11:25 -04003223 * css_next_child - find the next child of a given css
Tejun Heoc2931b72014-05-16 13:22:51 -04003224 * @pos: the current position (%NULL to initiate traversal)
3225 * @parent: css whose children to walk
Tejun Heo53fa5262013-05-24 10:55:38 +09003226 *
Tejun Heoc2931b72014-05-16 13:22:51 -04003227 * This function returns the next child of @parent and should be called
Tejun Heo87fb54f2013-12-06 15:11:55 -05003228 * under either cgroup_mutex or RCU read lock. The only requirement is
Tejun Heoc2931b72014-05-16 13:22:51 -04003229 * that @parent and @pos are accessible. The next sibling is guaranteed to
3230 * be returned regardless of their states.
3231 *
3232 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3233 * css which finished ->css_online() is guaranteed to be visible in the
3234 * future iterations and will stay visible until the last reference is put.
3235 * A css which hasn't finished ->css_online() or already finished
3236 * ->css_offline() may show up during traversal. It's each subsystem's
3237 * responsibility to synchronize against on/offlining.
Tejun Heo53fa5262013-05-24 10:55:38 +09003238 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003239struct cgroup_subsys_state *css_next_child(struct cgroup_subsys_state *pos,
3240 struct cgroup_subsys_state *parent)
Tejun Heo53fa5262013-05-24 10:55:38 +09003241{
Tejun Heoc2931b72014-05-16 13:22:51 -04003242 struct cgroup_subsys_state *next;
Tejun Heo53fa5262013-05-24 10:55:38 +09003243
Tejun Heo8353da12014-05-13 12:19:23 -04003244 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo53fa5262013-05-24 10:55:38 +09003245
3246 /*
Tejun Heode3f0342014-05-16 13:22:49 -04003247 * @pos could already have been unlinked from the sibling list.
3248 * Once a cgroup is removed, its ->sibling.next is no longer
3249 * updated when its next sibling changes. CSS_RELEASED is set when
3250 * @pos is taken off list, at which time its next pointer is valid,
3251 * and, as releases are serialized, the one pointed to by the next
3252 * pointer is guaranteed to not have started release yet. This
3253 * implies that if we observe !CSS_RELEASED on @pos in this RCU
3254 * critical section, the one pointed to by its next pointer is
3255 * guaranteed to not have finished its RCU grace period even if we
3256 * have dropped rcu_read_lock() inbetween iterations.
Tejun Heo3b287a52013-08-08 20:11:24 -04003257 *
Tejun Heode3f0342014-05-16 13:22:49 -04003258 * If @pos has CSS_RELEASED set, its next pointer can't be
3259 * dereferenced; however, as each css is given a monotonically
3260 * increasing unique serial number and always appended to the
3261 * sibling list, the next one can be found by walking the parent's
3262 * children until the first css with higher serial number than
3263 * @pos's. While this path can be slower, it happens iff iteration
3264 * races against release and the race window is very small.
Tejun Heo53fa5262013-05-24 10:55:38 +09003265 */
Tejun Heo3b287a52013-08-08 20:11:24 -04003266 if (!pos) {
Tejun Heoc2931b72014-05-16 13:22:51 -04003267 next = list_entry_rcu(parent->children.next, struct cgroup_subsys_state, sibling);
3268 } else if (likely(!(pos->flags & CSS_RELEASED))) {
3269 next = list_entry_rcu(pos->sibling.next, struct cgroup_subsys_state, sibling);
Tejun Heo3b287a52013-08-08 20:11:24 -04003270 } else {
Tejun Heoc2931b72014-05-16 13:22:51 -04003271 list_for_each_entry_rcu(next, &parent->children, sibling)
Tejun Heo3b287a52013-08-08 20:11:24 -04003272 if (next->serial_nr > pos->serial_nr)
3273 break;
Tejun Heo53fa5262013-05-24 10:55:38 +09003274 }
3275
Tejun Heo3b281af2014-04-23 11:13:15 -04003276 /*
3277 * @next, if not pointing to the head, can be dereferenced and is
Tejun Heoc2931b72014-05-16 13:22:51 -04003278 * the next sibling.
Tejun Heo3b281af2014-04-23 11:13:15 -04003279 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003280 if (&next->sibling != &parent->children)
3281 return next;
Tejun Heo3b281af2014-04-23 11:13:15 -04003282 return NULL;
Tejun Heo53fa5262013-05-24 10:55:38 +09003283}
Tejun Heo53fa5262013-05-24 10:55:38 +09003284
3285/**
Tejun Heo492eb212013-08-08 20:11:25 -04003286 * css_next_descendant_pre - find the next descendant for pre-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003287 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003288 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003289 *
Tejun Heo492eb212013-08-08 20:11:25 -04003290 * To be used by css_for_each_descendant_pre(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003291 * to visit for pre-order traversal of @root's descendants. @root is
3292 * included in the iteration and the first node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003293 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003294 * While this function requires cgroup_mutex or RCU read locking, it
3295 * doesn't require the whole traversal to be contained in a single critical
3296 * section. This function will return the correct next descendant as long
3297 * as both @pos and @root are accessible and @pos is a descendant of @root.
Tejun Heoc2931b72014-05-16 13:22:51 -04003298 *
3299 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3300 * css which finished ->css_online() is guaranteed to be visible in the
3301 * future iterations and will stay visible until the last reference is put.
3302 * A css which hasn't finished ->css_online() or already finished
3303 * ->css_offline() may show up during traversal. It's each subsystem's
3304 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003305 */
Tejun Heo492eb212013-08-08 20:11:25 -04003306struct cgroup_subsys_state *
3307css_next_descendant_pre(struct cgroup_subsys_state *pos,
3308 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003309{
Tejun Heo492eb212013-08-08 20:11:25 -04003310 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003311
Tejun Heo8353da12014-05-13 12:19:23 -04003312 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003313
Tejun Heobd8815a2013-08-08 20:11:27 -04003314 /* if first iteration, visit @root */
Tejun Heo7805d002013-05-24 10:50:24 +09003315 if (!pos)
Tejun Heobd8815a2013-08-08 20:11:27 -04003316 return root;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003317
3318 /* visit the first child if exists */
Tejun Heo492eb212013-08-08 20:11:25 -04003319 next = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003320 if (next)
3321 return next;
3322
3323 /* no child, visit my or the closest ancestor's next sibling */
Tejun Heo492eb212013-08-08 20:11:25 -04003324 while (pos != root) {
Tejun Heo5c9d5352014-05-16 13:22:48 -04003325 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003326 if (next)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003327 return next;
Tejun Heo5c9d5352014-05-16 13:22:48 -04003328 pos = pos->parent;
Tejun Heo7805d002013-05-24 10:50:24 +09003329 }
Tejun Heo574bd9f2012-11-09 09:12:29 -08003330
3331 return NULL;
3332}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003333
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003334/**
Tejun Heo492eb212013-08-08 20:11:25 -04003335 * css_rightmost_descendant - return the rightmost descendant of a css
3336 * @pos: css of interest
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003337 *
Tejun Heo492eb212013-08-08 20:11:25 -04003338 * Return the rightmost descendant of @pos. If there's no descendant, @pos
3339 * is returned. This can be used during pre-order traversal to skip
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003340 * subtree of @pos.
Tejun Heo75501a62013-05-24 10:55:38 +09003341 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003342 * While this function requires cgroup_mutex or RCU read locking, it
3343 * doesn't require the whole traversal to be contained in a single critical
3344 * section. This function will return the correct rightmost descendant as
3345 * long as @pos is accessible.
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003346 */
Tejun Heo492eb212013-08-08 20:11:25 -04003347struct cgroup_subsys_state *
3348css_rightmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003349{
Tejun Heo492eb212013-08-08 20:11:25 -04003350 struct cgroup_subsys_state *last, *tmp;
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003351
Tejun Heo8353da12014-05-13 12:19:23 -04003352 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003353
3354 do {
3355 last = pos;
3356 /* ->prev isn't RCU safe, walk ->next till the end */
3357 pos = NULL;
Tejun Heo492eb212013-08-08 20:11:25 -04003358 css_for_each_child(tmp, last)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003359 pos = tmp;
3360 } while (pos);
3361
3362 return last;
3363}
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003364
Tejun Heo492eb212013-08-08 20:11:25 -04003365static struct cgroup_subsys_state *
3366css_leftmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003367{
Tejun Heo492eb212013-08-08 20:11:25 -04003368 struct cgroup_subsys_state *last;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003369
3370 do {
3371 last = pos;
Tejun Heo492eb212013-08-08 20:11:25 -04003372 pos = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003373 } while (pos);
3374
3375 return last;
3376}
3377
3378/**
Tejun Heo492eb212013-08-08 20:11:25 -04003379 * css_next_descendant_post - find the next descendant for post-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003380 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003381 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003382 *
Tejun Heo492eb212013-08-08 20:11:25 -04003383 * To be used by css_for_each_descendant_post(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003384 * to visit for post-order traversal of @root's descendants. @root is
3385 * included in the iteration and the last node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003386 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003387 * While this function requires cgroup_mutex or RCU read locking, it
3388 * doesn't require the whole traversal to be contained in a single critical
3389 * section. This function will return the correct next descendant as long
3390 * as both @pos and @cgroup are accessible and @pos is a descendant of
3391 * @cgroup.
Tejun Heoc2931b72014-05-16 13:22:51 -04003392 *
3393 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3394 * css which finished ->css_online() is guaranteed to be visible in the
3395 * future iterations and will stay visible until the last reference is put.
3396 * A css which hasn't finished ->css_online() or already finished
3397 * ->css_offline() may show up during traversal. It's each subsystem's
3398 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003399 */
Tejun Heo492eb212013-08-08 20:11:25 -04003400struct cgroup_subsys_state *
3401css_next_descendant_post(struct cgroup_subsys_state *pos,
3402 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003403{
Tejun Heo492eb212013-08-08 20:11:25 -04003404 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003405
Tejun Heo8353da12014-05-13 12:19:23 -04003406 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003407
Tejun Heo58b79a92013-09-06 15:31:08 -04003408 /* if first iteration, visit leftmost descendant which may be @root */
3409 if (!pos)
3410 return css_leftmost_descendant(root);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003411
Tejun Heobd8815a2013-08-08 20:11:27 -04003412 /* if we visited @root, we're done */
3413 if (pos == root)
3414 return NULL;
3415
Tejun Heo574bd9f2012-11-09 09:12:29 -08003416 /* if there's an unvisited sibling, visit its leftmost descendant */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003417 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003418 if (next)
Tejun Heo492eb212013-08-08 20:11:25 -04003419 return css_leftmost_descendant(next);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003420
3421 /* no sibling left, visit parent */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003422 return pos->parent;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003423}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003424
Tejun Heof3d46502014-05-16 13:22:52 -04003425/**
3426 * css_has_online_children - does a css have online children
3427 * @css: the target css
3428 *
3429 * Returns %true if @css has any online children; otherwise, %false. This
3430 * function can be called from any context but the caller is responsible
3431 * for synchronizing against on/offlining as necessary.
3432 */
3433bool css_has_online_children(struct cgroup_subsys_state *css)
Tejun Heocbc125e2014-05-14 09:15:01 -04003434{
Tejun Heof3d46502014-05-16 13:22:52 -04003435 struct cgroup_subsys_state *child;
3436 bool ret = false;
Tejun Heocbc125e2014-05-14 09:15:01 -04003437
3438 rcu_read_lock();
Tejun Heof3d46502014-05-16 13:22:52 -04003439 css_for_each_child(child, css) {
3440 if (css->flags & CSS_ONLINE) {
3441 ret = true;
3442 break;
Tejun Heocbc125e2014-05-14 09:15:01 -04003443 }
3444 }
3445 rcu_read_unlock();
Tejun Heof3d46502014-05-16 13:22:52 -04003446 return ret;
Cliff Wickman31a7df02008-02-07 00:14:42 -08003447}
3448
Tejun Heo0942eee2013-08-08 20:11:26 -04003449/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003450 * css_advance_task_iter - advance a task itererator to the next css_set
Tejun Heo0942eee2013-08-08 20:11:26 -04003451 * @it: the iterator to advance
3452 *
3453 * Advance @it to the next css_set to walk.
Tejun Heod5158762013-08-08 20:11:26 -04003454 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003455static void css_advance_task_iter(struct css_task_iter *it)
Tejun Heod5158762013-08-08 20:11:26 -04003456{
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003457 struct list_head *l = it->cset_pos;
Tejun Heod5158762013-08-08 20:11:26 -04003458 struct cgrp_cset_link *link;
3459 struct css_set *cset;
3460
3461 /* Advance to the next non-empty css_set */
3462 do {
3463 l = l->next;
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003464 if (l == it->cset_head) {
3465 it->cset_pos = NULL;
Tejun Heod5158762013-08-08 20:11:26 -04003466 return;
3467 }
Tejun Heo3ebb2b62014-04-23 11:13:15 -04003468
3469 if (it->ss) {
3470 cset = container_of(l, struct css_set,
3471 e_cset_node[it->ss->id]);
3472 } else {
3473 link = list_entry(l, struct cgrp_cset_link, cset_link);
3474 cset = link->cset;
3475 }
Tejun Heoc7561122014-02-25 10:04:01 -05003476 } while (list_empty(&cset->tasks) && list_empty(&cset->mg_tasks));
3477
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003478 it->cset_pos = l;
Tejun Heoc7561122014-02-25 10:04:01 -05003479
3480 if (!list_empty(&cset->tasks))
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003481 it->task_pos = cset->tasks.next;
Tejun Heoc7561122014-02-25 10:04:01 -05003482 else
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003483 it->task_pos = cset->mg_tasks.next;
3484
3485 it->tasks_head = &cset->tasks;
3486 it->mg_tasks_head = &cset->mg_tasks;
Tejun Heod5158762013-08-08 20:11:26 -04003487}
3488
Tejun Heo0942eee2013-08-08 20:11:26 -04003489/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003490 * css_task_iter_start - initiate task iteration
3491 * @css: the css to walk tasks of
Tejun Heo0942eee2013-08-08 20:11:26 -04003492 * @it: the task iterator to use
3493 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003494 * Initiate iteration through the tasks of @css. The caller can call
3495 * css_task_iter_next() to walk through the tasks until the function
3496 * returns NULL. On completion of iteration, css_task_iter_end() must be
3497 * called.
Tejun Heo0942eee2013-08-08 20:11:26 -04003498 *
3499 * Note that this function acquires a lock which is released when the
3500 * iteration finishes. The caller can't sleep while iteration is in
3501 * progress.
3502 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003503void css_task_iter_start(struct cgroup_subsys_state *css,
3504 struct css_task_iter *it)
Tejun Heo96d365e2014-02-13 06:58:40 -05003505 __acquires(css_set_rwsem)
Paul Menage817929e2007-10-18 23:39:36 -07003506{
Tejun Heo56fde9e2014-02-13 06:58:38 -05003507 /* no one should try to iterate before mounting cgroups */
3508 WARN_ON_ONCE(!use_task_css_set_links);
Paul Menage817929e2007-10-18 23:39:36 -07003509
Tejun Heo96d365e2014-02-13 06:58:40 -05003510 down_read(&css_set_rwsem);
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003511
Tejun Heo3ebb2b62014-04-23 11:13:15 -04003512 it->ss = css->ss;
3513
3514 if (it->ss)
3515 it->cset_pos = &css->cgroup->e_csets[css->ss->id];
3516 else
3517 it->cset_pos = &css->cgroup->cset_links;
3518
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003519 it->cset_head = it->cset_pos;
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003520
Tejun Heo72ec7022013-08-08 20:11:26 -04003521 css_advance_task_iter(it);
Paul Menagebd89aab2007-10-18 23:40:44 -07003522}
Paul Menage817929e2007-10-18 23:39:36 -07003523
Tejun Heo0942eee2013-08-08 20:11:26 -04003524/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003525 * css_task_iter_next - return the next task for the iterator
Tejun Heo0942eee2013-08-08 20:11:26 -04003526 * @it: the task iterator being iterated
3527 *
3528 * The "next" function for task iteration. @it should have been
Tejun Heo72ec7022013-08-08 20:11:26 -04003529 * initialized via css_task_iter_start(). Returns NULL when the iteration
3530 * reaches the end.
Tejun Heo0942eee2013-08-08 20:11:26 -04003531 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003532struct task_struct *css_task_iter_next(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07003533{
3534 struct task_struct *res;
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003535 struct list_head *l = it->task_pos;
Paul Menage817929e2007-10-18 23:39:36 -07003536
3537 /* If the iterator cg is NULL, we have no tasks */
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003538 if (!it->cset_pos)
Paul Menage817929e2007-10-18 23:39:36 -07003539 return NULL;
3540 res = list_entry(l, struct task_struct, cg_list);
Tejun Heoc7561122014-02-25 10:04:01 -05003541
3542 /*
3543 * Advance iterator to find next entry. cset->tasks is consumed
3544 * first and then ->mg_tasks. After ->mg_tasks, we move onto the
3545 * next cset.
3546 */
Paul Menage817929e2007-10-18 23:39:36 -07003547 l = l->next;
Tejun Heoc7561122014-02-25 10:04:01 -05003548
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003549 if (l == it->tasks_head)
3550 l = it->mg_tasks_head->next;
Tejun Heoc7561122014-02-25 10:04:01 -05003551
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003552 if (l == it->mg_tasks_head)
Tejun Heo72ec7022013-08-08 20:11:26 -04003553 css_advance_task_iter(it);
Tejun Heoc7561122014-02-25 10:04:01 -05003554 else
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003555 it->task_pos = l;
Tejun Heoc7561122014-02-25 10:04:01 -05003556
Paul Menage817929e2007-10-18 23:39:36 -07003557 return res;
3558}
3559
Tejun Heo0942eee2013-08-08 20:11:26 -04003560/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003561 * css_task_iter_end - finish task iteration
Tejun Heo0942eee2013-08-08 20:11:26 -04003562 * @it: the task iterator to finish
3563 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003564 * Finish task iteration started by css_task_iter_start().
Tejun Heo0942eee2013-08-08 20:11:26 -04003565 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003566void css_task_iter_end(struct css_task_iter *it)
Tejun Heo96d365e2014-02-13 06:58:40 -05003567 __releases(css_set_rwsem)
Paul Menage817929e2007-10-18 23:39:36 -07003568{
Tejun Heo96d365e2014-02-13 06:58:40 -05003569 up_read(&css_set_rwsem);
Tejun Heo8cc99342013-04-07 09:29:50 -07003570}
3571
3572/**
3573 * cgroup_trasnsfer_tasks - move tasks from one cgroup to another
3574 * @to: cgroup to which the tasks will be moved
3575 * @from: cgroup in which the tasks currently reside
Tejun Heoeaf797a2014-02-25 10:04:03 -05003576 *
3577 * Locking rules between cgroup_post_fork() and the migration path
3578 * guarantee that, if a task is forking while being migrated, the new child
3579 * is guaranteed to be either visible in the source cgroup after the
3580 * parent's migration is complete or put into the target cgroup. No task
3581 * can slip out of migration through forking.
Tejun Heo8cc99342013-04-07 09:29:50 -07003582 */
3583int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from)
3584{
Tejun Heo952aaa12014-02-25 10:04:03 -05003585 LIST_HEAD(preloaded_csets);
3586 struct cgrp_cset_link *link;
Tejun Heoe406d1c2014-02-13 06:58:39 -05003587 struct css_task_iter it;
3588 struct task_struct *task;
Tejun Heo952aaa12014-02-25 10:04:03 -05003589 int ret;
Tejun Heoe406d1c2014-02-13 06:58:39 -05003590
Tejun Heo952aaa12014-02-25 10:04:03 -05003591 mutex_lock(&cgroup_mutex);
3592
3593 /* all tasks in @from are being moved, all csets are source */
3594 down_read(&css_set_rwsem);
3595 list_for_each_entry(link, &from->cset_links, cset_link)
3596 cgroup_migrate_add_src(link->cset, to, &preloaded_csets);
3597 up_read(&css_set_rwsem);
3598
3599 ret = cgroup_migrate_prepare_dst(to, &preloaded_csets);
3600 if (ret)
3601 goto out_err;
3602
3603 /*
3604 * Migrate tasks one-by-one until @form is empty. This fails iff
3605 * ->can_attach() fails.
3606 */
Tejun Heoe406d1c2014-02-13 06:58:39 -05003607 do {
Tejun Heo9d800df2014-05-14 09:15:00 -04003608 css_task_iter_start(&from->self, &it);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003609 task = css_task_iter_next(&it);
3610 if (task)
3611 get_task_struct(task);
3612 css_task_iter_end(&it);
3613
3614 if (task) {
Tejun Heo952aaa12014-02-25 10:04:03 -05003615 ret = cgroup_migrate(to, task, false);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003616 put_task_struct(task);
3617 }
3618 } while (task && !ret);
Tejun Heo952aaa12014-02-25 10:04:03 -05003619out_err:
3620 cgroup_migrate_finish(&preloaded_csets);
3621 mutex_unlock(&cgroup_mutex);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003622 return ret;
Tejun Heo8cc99342013-04-07 09:29:50 -07003623}
3624
Paul Menage817929e2007-10-18 23:39:36 -07003625/*
Ben Blum102a7752009-09-23 15:56:26 -07003626 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003627 *
3628 * Reading this file can return large amounts of data if a cgroup has
3629 * *lots* of attached tasks. So it may need several calls to read(),
3630 * but we cannot guarantee that the information we produce is correct
3631 * unless we produce it entirely atomically.
3632 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07003633 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003634
Li Zefan24528252012-01-20 11:58:43 +08003635/* which pidlist file are we talking about? */
3636enum cgroup_filetype {
3637 CGROUP_FILE_PROCS,
3638 CGROUP_FILE_TASKS,
3639};
3640
3641/*
3642 * A pidlist is a list of pids that virtually represents the contents of one
3643 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
3644 * a pair (one each for procs, tasks) for each pid namespace that's relevant
3645 * to the cgroup.
3646 */
3647struct cgroup_pidlist {
3648 /*
3649 * used to find which pidlist is wanted. doesn't change as long as
3650 * this particular list stays in the list.
3651 */
3652 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
3653 /* array of xids */
3654 pid_t *list;
3655 /* how many elements the above list has */
3656 int length;
Li Zefan24528252012-01-20 11:58:43 +08003657 /* each of these stored in a list by its cgroup */
3658 struct list_head links;
3659 /* pointer to the cgroup we belong to, for list removal purposes */
3660 struct cgroup *owner;
Tejun Heob1a21362013-11-29 10:42:58 -05003661 /* for delayed destruction */
3662 struct delayed_work destroy_dwork;
Li Zefan24528252012-01-20 11:58:43 +08003663};
3664
Paul Menagebbcb81d2007-10-18 23:39:32 -07003665/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07003666 * The following two functions "fix" the issue where there are more pids
3667 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
3668 * TODO: replace with a kernel-wide solution to this problem
3669 */
3670#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
3671static void *pidlist_allocate(int count)
3672{
3673 if (PIDLIST_TOO_LARGE(count))
3674 return vmalloc(count * sizeof(pid_t));
3675 else
3676 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
3677}
Tejun Heob1a21362013-11-29 10:42:58 -05003678
Ben Blumd1d9fd32009-09-23 15:56:28 -07003679static void pidlist_free(void *p)
3680{
3681 if (is_vmalloc_addr(p))
3682 vfree(p);
3683 else
3684 kfree(p);
3685}
Ben Blumd1d9fd32009-09-23 15:56:28 -07003686
3687/*
Tejun Heob1a21362013-11-29 10:42:58 -05003688 * Used to destroy all pidlists lingering waiting for destroy timer. None
3689 * should be left afterwards.
3690 */
3691static void cgroup_pidlist_destroy_all(struct cgroup *cgrp)
3692{
3693 struct cgroup_pidlist *l, *tmp_l;
3694
3695 mutex_lock(&cgrp->pidlist_mutex);
3696 list_for_each_entry_safe(l, tmp_l, &cgrp->pidlists, links)
3697 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, 0);
3698 mutex_unlock(&cgrp->pidlist_mutex);
3699
3700 flush_workqueue(cgroup_pidlist_destroy_wq);
3701 BUG_ON(!list_empty(&cgrp->pidlists));
3702}
3703
3704static void cgroup_pidlist_destroy_work_fn(struct work_struct *work)
3705{
3706 struct delayed_work *dwork = to_delayed_work(work);
3707 struct cgroup_pidlist *l = container_of(dwork, struct cgroup_pidlist,
3708 destroy_dwork);
3709 struct cgroup_pidlist *tofree = NULL;
3710
3711 mutex_lock(&l->owner->pidlist_mutex);
Tejun Heob1a21362013-11-29 10:42:58 -05003712
3713 /*
Tejun Heo04502362013-11-29 10:42:59 -05003714 * Destroy iff we didn't get queued again. The state won't change
3715 * as destroy_dwork can only be queued while locked.
Tejun Heob1a21362013-11-29 10:42:58 -05003716 */
Tejun Heo04502362013-11-29 10:42:59 -05003717 if (!delayed_work_pending(dwork)) {
Tejun Heob1a21362013-11-29 10:42:58 -05003718 list_del(&l->links);
3719 pidlist_free(l->list);
3720 put_pid_ns(l->key.ns);
3721 tofree = l;
3722 }
3723
Tejun Heob1a21362013-11-29 10:42:58 -05003724 mutex_unlock(&l->owner->pidlist_mutex);
3725 kfree(tofree);
3726}
3727
3728/*
Ben Blum102a7752009-09-23 15:56:26 -07003729 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
Li Zefan6ee211a2013-03-12 15:36:00 -07003730 * Returns the number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003731 */
Li Zefan6ee211a2013-03-12 15:36:00 -07003732static int pidlist_uniq(pid_t *list, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003733{
Ben Blum102a7752009-09-23 15:56:26 -07003734 int src, dest = 1;
Ben Blum102a7752009-09-23 15:56:26 -07003735
3736 /*
3737 * we presume the 0th element is unique, so i starts at 1. trivial
3738 * edge cases first; no work needs to be done for either
3739 */
3740 if (length == 0 || length == 1)
3741 return length;
3742 /* src and dest walk down the list; dest counts unique elements */
3743 for (src = 1; src < length; src++) {
3744 /* find next unique element */
3745 while (list[src] == list[src-1]) {
3746 src++;
3747 if (src == length)
3748 goto after;
3749 }
3750 /* dest always points to where the next unique element goes */
3751 list[dest] = list[src];
3752 dest++;
3753 }
3754after:
Ben Blum102a7752009-09-23 15:56:26 -07003755 return dest;
3756}
3757
Tejun Heoafb2bc12013-11-29 10:42:59 -05003758/*
3759 * The two pid files - task and cgroup.procs - guaranteed that the result
3760 * is sorted, which forced this whole pidlist fiasco. As pid order is
3761 * different per namespace, each namespace needs differently sorted list,
3762 * making it impossible to use, for example, single rbtree of member tasks
3763 * sorted by task pointer. As pidlists can be fairly large, allocating one
3764 * per open file is dangerous, so cgroup had to implement shared pool of
3765 * pidlists keyed by cgroup and namespace.
3766 *
3767 * All this extra complexity was caused by the original implementation
3768 * committing to an entirely unnecessary property. In the long term, we
3769 * want to do away with it. Explicitly scramble sort order if
3770 * sane_behavior so that no such expectation exists in the new interface.
3771 *
3772 * Scrambling is done by swapping every two consecutive bits, which is
3773 * non-identity one-to-one mapping which disturbs sort order sufficiently.
3774 */
3775static pid_t pid_fry(pid_t pid)
3776{
3777 unsigned a = pid & 0x55555555;
3778 unsigned b = pid & 0xAAAAAAAA;
3779
3780 return (a << 1) | (b >> 1);
3781}
3782
3783static pid_t cgroup_pid_fry(struct cgroup *cgrp, pid_t pid)
3784{
3785 if (cgroup_sane_behavior(cgrp))
3786 return pid_fry(pid);
3787 else
3788 return pid;
3789}
3790
Ben Blum102a7752009-09-23 15:56:26 -07003791static int cmppid(const void *a, const void *b)
3792{
3793 return *(pid_t *)a - *(pid_t *)b;
3794}
3795
Tejun Heoafb2bc12013-11-29 10:42:59 -05003796static int fried_cmppid(const void *a, const void *b)
3797{
3798 return pid_fry(*(pid_t *)a) - pid_fry(*(pid_t *)b);
3799}
3800
Ben Blum72a8cb32009-09-23 15:56:27 -07003801static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
3802 enum cgroup_filetype type)
3803{
3804 struct cgroup_pidlist *l;
3805 /* don't need task_nsproxy() if we're looking at ourself */
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08003806 struct pid_namespace *ns = task_active_pid_ns(current);
Li Zefanb70cc5f2010-03-10 15:22:12 -08003807
Tejun Heoe6b81712013-11-29 10:42:59 -05003808 lockdep_assert_held(&cgrp->pidlist_mutex);
3809
3810 list_for_each_entry(l, &cgrp->pidlists, links)
3811 if (l->key.type == type && l->key.ns == ns)
Ben Blum72a8cb32009-09-23 15:56:27 -07003812 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05003813 return NULL;
3814}
3815
Ben Blum72a8cb32009-09-23 15:56:27 -07003816/*
3817 * find the appropriate pidlist for our purpose (given procs vs tasks)
3818 * returns with the lock on that pidlist already held, and takes care
3819 * of the use count, or returns NULL with no locks held if we're out of
3820 * memory.
3821 */
Tejun Heoe6b81712013-11-29 10:42:59 -05003822static struct cgroup_pidlist *cgroup_pidlist_find_create(struct cgroup *cgrp,
3823 enum cgroup_filetype type)
Ben Blum72a8cb32009-09-23 15:56:27 -07003824{
3825 struct cgroup_pidlist *l;
Ben Blum72a8cb32009-09-23 15:56:27 -07003826
Tejun Heoe6b81712013-11-29 10:42:59 -05003827 lockdep_assert_held(&cgrp->pidlist_mutex);
3828
3829 l = cgroup_pidlist_find(cgrp, type);
3830 if (l)
3831 return l;
3832
Ben Blum72a8cb32009-09-23 15:56:27 -07003833 /* entry not found; create a new one */
Tejun Heof4f4be22013-06-12 21:04:51 -07003834 l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
Tejun Heoe6b81712013-11-29 10:42:59 -05003835 if (!l)
Ben Blum72a8cb32009-09-23 15:56:27 -07003836 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05003837
Tejun Heob1a21362013-11-29 10:42:58 -05003838 INIT_DELAYED_WORK(&l->destroy_dwork, cgroup_pidlist_destroy_work_fn);
Ben Blum72a8cb32009-09-23 15:56:27 -07003839 l->key.type = type;
Tejun Heoe6b81712013-11-29 10:42:59 -05003840 /* don't need task_nsproxy() if we're looking at ourself */
3841 l->key.ns = get_pid_ns(task_active_pid_ns(current));
Ben Blum72a8cb32009-09-23 15:56:27 -07003842 l->owner = cgrp;
3843 list_add(&l->links, &cgrp->pidlists);
Ben Blum72a8cb32009-09-23 15:56:27 -07003844 return l;
3845}
3846
3847/*
Ben Blum102a7752009-09-23 15:56:26 -07003848 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
3849 */
Ben Blum72a8cb32009-09-23 15:56:27 -07003850static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
3851 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07003852{
3853 pid_t *array;
3854 int length;
3855 int pid, n = 0; /* used for populating the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04003856 struct css_task_iter it;
Paul Menage817929e2007-10-18 23:39:36 -07003857 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07003858 struct cgroup_pidlist *l;
3859
Tejun Heo4bac00d2013-11-29 10:42:59 -05003860 lockdep_assert_held(&cgrp->pidlist_mutex);
3861
Ben Blum102a7752009-09-23 15:56:26 -07003862 /*
3863 * If cgroup gets more users after we read count, we won't have
3864 * enough space - tough. This race is indistinguishable to the
3865 * caller from the case that the additional cgroup users didn't
3866 * show up until sometime later on.
3867 */
3868 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003869 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07003870 if (!array)
3871 return -ENOMEM;
3872 /* now, populate the array */
Tejun Heo9d800df2014-05-14 09:15:00 -04003873 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04003874 while ((tsk = css_task_iter_next(&it))) {
Ben Blum102a7752009-09-23 15:56:26 -07003875 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07003876 break;
Ben Blum102a7752009-09-23 15:56:26 -07003877 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07003878 if (type == CGROUP_FILE_PROCS)
3879 pid = task_tgid_vnr(tsk);
3880 else
3881 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07003882 if (pid > 0) /* make sure to only use valid results */
3883 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07003884 }
Tejun Heo72ec7022013-08-08 20:11:26 -04003885 css_task_iter_end(&it);
Ben Blum102a7752009-09-23 15:56:26 -07003886 length = n;
3887 /* now sort & (if procs) strip out duplicates */
Tejun Heoafb2bc12013-11-29 10:42:59 -05003888 if (cgroup_sane_behavior(cgrp))
3889 sort(array, length, sizeof(pid_t), fried_cmppid, NULL);
3890 else
3891 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07003892 if (type == CGROUP_FILE_PROCS)
Li Zefan6ee211a2013-03-12 15:36:00 -07003893 length = pidlist_uniq(array, length);
Tejun Heoe6b81712013-11-29 10:42:59 -05003894
Tejun Heoe6b81712013-11-29 10:42:59 -05003895 l = cgroup_pidlist_find_create(cgrp, type);
Ben Blum72a8cb32009-09-23 15:56:27 -07003896 if (!l) {
Tejun Heoe6b81712013-11-29 10:42:59 -05003897 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003898 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07003899 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07003900 }
Tejun Heoe6b81712013-11-29 10:42:59 -05003901
3902 /* store array, freeing old if necessary */
Ben Blumd1d9fd32009-09-23 15:56:28 -07003903 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07003904 l->list = array;
3905 l->length = length;
Ben Blum72a8cb32009-09-23 15:56:27 -07003906 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07003907 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003908}
3909
Balbir Singh846c7bb2007-10-18 23:39:44 -07003910/**
Li Zefana043e3b2008-02-23 15:24:09 -08003911 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07003912 * @stats: cgroupstats to fill information into
3913 * @dentry: A dentry entry belonging to the cgroup for which stats have
3914 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08003915 *
3916 * Build and fill cgroupstats so that taskstats can export it to user
3917 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003918 */
3919int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
3920{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003921 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07003922 struct cgroup *cgrp;
Tejun Heo72ec7022013-08-08 20:11:26 -04003923 struct css_task_iter it;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003924 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08003925
Tejun Heo2bd59d42014-02-11 11:52:49 -05003926 /* it should be kernfs_node belonging to cgroupfs and is a directory */
3927 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
3928 kernfs_type(kn) != KERNFS_DIR)
3929 return -EINVAL;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003930
Li Zefanbad34662014-02-14 16:54:28 +08003931 mutex_lock(&cgroup_mutex);
3932
Tejun Heo2bd59d42014-02-11 11:52:49 -05003933 /*
3934 * We aren't being called from kernfs and there's no guarantee on
Tejun Heoec903c02014-05-13 12:11:01 -04003935 * @kn->priv's validity. For this and css_tryget_online_from_dir(),
Tejun Heo2bd59d42014-02-11 11:52:49 -05003936 * @kn->priv is RCU safe. Let's do the RCU dancing.
3937 */
3938 rcu_read_lock();
3939 cgrp = rcu_dereference(kn->priv);
Li Zefanbad34662014-02-14 16:54:28 +08003940 if (!cgrp || cgroup_is_dead(cgrp)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05003941 rcu_read_unlock();
Li Zefanbad34662014-02-14 16:54:28 +08003942 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003943 return -ENOENT;
3944 }
Li Zefanbad34662014-02-14 16:54:28 +08003945 rcu_read_unlock();
Balbir Singh846c7bb2007-10-18 23:39:44 -07003946
Tejun Heo9d800df2014-05-14 09:15:00 -04003947 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04003948 while ((tsk = css_task_iter_next(&it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07003949 switch (tsk->state) {
3950 case TASK_RUNNING:
3951 stats->nr_running++;
3952 break;
3953 case TASK_INTERRUPTIBLE:
3954 stats->nr_sleeping++;
3955 break;
3956 case TASK_UNINTERRUPTIBLE:
3957 stats->nr_uninterruptible++;
3958 break;
3959 case TASK_STOPPED:
3960 stats->nr_stopped++;
3961 break;
3962 default:
3963 if (delayacct_is_task_waiting_on_io(tsk))
3964 stats->nr_io_wait++;
3965 break;
3966 }
3967 }
Tejun Heo72ec7022013-08-08 20:11:26 -04003968 css_task_iter_end(&it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07003969
Li Zefanbad34662014-02-14 16:54:28 +08003970 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003971 return 0;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003972}
3973
Paul Menage8f3ff202009-09-23 15:56:25 -07003974
Paul Menagecc31edc2008-10-18 20:28:04 -07003975/*
Ben Blum102a7752009-09-23 15:56:26 -07003976 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07003977 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07003978 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07003979 */
3980
Ben Blum102a7752009-09-23 15:56:26 -07003981static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003982{
3983 /*
3984 * Initially we receive a position value that corresponds to
3985 * one more than the last pid shown (or 0 on the first call or
3986 * after a seek to the start). Use a binary-search to find the
3987 * next pid to display, if any
3988 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05003989 struct kernfs_open_file *of = s->private;
Tejun Heo7da11272013-12-05 12:28:04 -05003990 struct cgroup *cgrp = seq_css(s)->cgroup;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003991 struct cgroup_pidlist *l;
Tejun Heo7da11272013-12-05 12:28:04 -05003992 enum cgroup_filetype type = seq_cft(s)->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07003993 int index = 0, pid = *pos;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003994 int *iter, ret;
Paul Menagecc31edc2008-10-18 20:28:04 -07003995
Tejun Heo4bac00d2013-11-29 10:42:59 -05003996 mutex_lock(&cgrp->pidlist_mutex);
3997
3998 /*
Tejun Heo5d224442013-12-05 12:28:04 -05003999 * !NULL @of->priv indicates that this isn't the first start()
Tejun Heo4bac00d2013-11-29 10:42:59 -05004000 * after open. If the matching pidlist is around, we can use that.
Tejun Heo5d224442013-12-05 12:28:04 -05004001 * Look for it. Note that @of->priv can't be used directly. It
Tejun Heo4bac00d2013-11-29 10:42:59 -05004002 * could already have been destroyed.
4003 */
Tejun Heo5d224442013-12-05 12:28:04 -05004004 if (of->priv)
4005 of->priv = cgroup_pidlist_find(cgrp, type);
Tejun Heo4bac00d2013-11-29 10:42:59 -05004006
4007 /*
4008 * Either this is the first start() after open or the matching
4009 * pidlist has been destroyed inbetween. Create a new one.
4010 */
Tejun Heo5d224442013-12-05 12:28:04 -05004011 if (!of->priv) {
4012 ret = pidlist_array_load(cgrp, type,
4013 (struct cgroup_pidlist **)&of->priv);
Tejun Heo4bac00d2013-11-29 10:42:59 -05004014 if (ret)
4015 return ERR_PTR(ret);
4016 }
Tejun Heo5d224442013-12-05 12:28:04 -05004017 l = of->priv;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004018
Paul Menagecc31edc2008-10-18 20:28:04 -07004019 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07004020 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11004021
Paul Menagecc31edc2008-10-18 20:28:04 -07004022 while (index < end) {
4023 int mid = (index + end) / 2;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004024 if (cgroup_pid_fry(cgrp, l->list[mid]) == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07004025 index = mid;
4026 break;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004027 } else if (cgroup_pid_fry(cgrp, l->list[mid]) <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07004028 index = mid + 1;
4029 else
4030 end = mid;
4031 }
4032 }
4033 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07004034 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07004035 return NULL;
4036 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07004037 iter = l->list + index;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004038 *pos = cgroup_pid_fry(cgrp, *iter);
Paul Menagecc31edc2008-10-18 20:28:04 -07004039 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004040}
4041
Ben Blum102a7752009-09-23 15:56:26 -07004042static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07004043{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004044 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05004045 struct cgroup_pidlist *l = of->priv;
Tejun Heo62236852013-11-29 10:42:58 -05004046
Tejun Heo5d224442013-12-05 12:28:04 -05004047 if (l)
4048 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork,
Tejun Heo04502362013-11-29 10:42:59 -05004049 CGROUP_PIDLIST_DESTROY_DELAY);
Tejun Heo7da11272013-12-05 12:28:04 -05004050 mutex_unlock(&seq_css(s)->cgroup->pidlist_mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07004051}
4052
Ben Blum102a7752009-09-23 15:56:26 -07004053static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07004054{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004055 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05004056 struct cgroup_pidlist *l = of->priv;
Ben Blum102a7752009-09-23 15:56:26 -07004057 pid_t *p = v;
4058 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07004059 /*
4060 * Advance to the next pid in the array. If this goes off the
4061 * end, we're done
4062 */
4063 p++;
4064 if (p >= end) {
4065 return NULL;
4066 } else {
Tejun Heo7da11272013-12-05 12:28:04 -05004067 *pos = cgroup_pid_fry(seq_css(s)->cgroup, *p);
Paul Menagecc31edc2008-10-18 20:28:04 -07004068 return p;
4069 }
4070}
4071
Ben Blum102a7752009-09-23 15:56:26 -07004072static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07004073{
4074 return seq_printf(s, "%d\n", *(int *)v);
4075}
4076
Tejun Heo182446d2013-08-08 20:11:24 -04004077static u64 cgroup_read_notify_on_release(struct cgroup_subsys_state *css,
4078 struct cftype *cft)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004079{
Tejun Heo182446d2013-08-08 20:11:24 -04004080 return notify_on_release(css->cgroup);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004081}
4082
Tejun Heo182446d2013-08-08 20:11:24 -04004083static int cgroup_write_notify_on_release(struct cgroup_subsys_state *css,
4084 struct cftype *cft, u64 val)
Paul Menage6379c102008-07-25 01:47:01 -07004085{
Tejun Heo182446d2013-08-08 20:11:24 -04004086 clear_bit(CGRP_RELEASABLE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004087 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04004088 set_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004089 else
Tejun Heo182446d2013-08-08 20:11:24 -04004090 clear_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004091 return 0;
4092}
4093
Tejun Heo182446d2013-08-08 20:11:24 -04004094static u64 cgroup_clone_children_read(struct cgroup_subsys_state *css,
4095 struct cftype *cft)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004096{
Tejun Heo182446d2013-08-08 20:11:24 -04004097 return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004098}
4099
Tejun Heo182446d2013-08-08 20:11:24 -04004100static int cgroup_clone_children_write(struct cgroup_subsys_state *css,
4101 struct cftype *cft, u64 val)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004102{
4103 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04004104 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004105 else
Tejun Heo182446d2013-08-08 20:11:24 -04004106 clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004107 return 0;
4108}
4109
Tejun Heod5c56ce2013-06-03 19:14:34 -07004110static struct cftype cgroup_base_files[] = {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004111 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07004112 .name = "cgroup.procs",
Tejun Heo6612f052013-12-05 12:28:04 -05004113 .seq_start = cgroup_pidlist_start,
4114 .seq_next = cgroup_pidlist_next,
4115 .seq_stop = cgroup_pidlist_stop,
4116 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004117 .private = CGROUP_FILE_PROCS,
Tejun Heoacbef752014-05-13 12:16:22 -04004118 .write = cgroup_procs_write,
Ben Blum74a11662011-05-26 16:25:20 -07004119 .mode = S_IRUGO | S_IWUSR,
Ben Blum102a7752009-09-23 15:56:26 -07004120 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07004121 {
Daniel Lezcano97978e62010-10-27 15:33:35 -07004122 .name = "cgroup.clone_children",
Tejun Heo873fe092013-04-14 20:15:26 -07004123 .flags = CFTYPE_INSANE,
Daniel Lezcano97978e62010-10-27 15:33:35 -07004124 .read_u64 = cgroup_clone_children_read,
4125 .write_u64 = cgroup_clone_children_write,
4126 },
Tejun Heo6e6ff252012-04-01 12:09:55 -07004127 {
Tejun Heo873fe092013-04-14 20:15:26 -07004128 .name = "cgroup.sane_behavior",
4129 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004130 .seq_show = cgroup_sane_behavior_show,
Tejun Heo873fe092013-04-14 20:15:26 -07004131 },
Tejun Heof8f22e52014-04-23 11:13:16 -04004132 {
4133 .name = "cgroup.controllers",
4134 .flags = CFTYPE_ONLY_ON_DFL | CFTYPE_ONLY_ON_ROOT,
4135 .seq_show = cgroup_root_controllers_show,
4136 },
4137 {
4138 .name = "cgroup.controllers",
4139 .flags = CFTYPE_ONLY_ON_DFL | CFTYPE_NOT_ON_ROOT,
4140 .seq_show = cgroup_controllers_show,
4141 },
4142 {
4143 .name = "cgroup.subtree_control",
4144 .flags = CFTYPE_ONLY_ON_DFL,
4145 .seq_show = cgroup_subtree_control_show,
Tejun Heo451af502014-05-13 12:16:21 -04004146 .write = cgroup_subtree_control_write,
Tejun Heof8f22e52014-04-23 11:13:16 -04004147 },
Tejun Heo842b5972014-04-25 18:28:02 -04004148 {
4149 .name = "cgroup.populated",
4150 .flags = CFTYPE_ONLY_ON_DFL | CFTYPE_NOT_ON_ROOT,
4151 .seq_show = cgroup_populated_show,
4152 },
Tejun Heod5c56ce2013-06-03 19:14:34 -07004153
4154 /*
4155 * Historical crazy stuff. These don't have "cgroup." prefix and
4156 * don't exist if sane_behavior. If you're depending on these, be
4157 * prepared to be burned.
4158 */
4159 {
4160 .name = "tasks",
4161 .flags = CFTYPE_INSANE, /* use "procs" instead */
Tejun Heo6612f052013-12-05 12:28:04 -05004162 .seq_start = cgroup_pidlist_start,
4163 .seq_next = cgroup_pidlist_next,
4164 .seq_stop = cgroup_pidlist_stop,
4165 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004166 .private = CGROUP_FILE_TASKS,
Tejun Heoacbef752014-05-13 12:16:22 -04004167 .write = cgroup_tasks_write,
Tejun Heod5c56ce2013-06-03 19:14:34 -07004168 .mode = S_IRUGO | S_IWUSR,
4169 },
4170 {
4171 .name = "notify_on_release",
4172 .flags = CFTYPE_INSANE,
4173 .read_u64 = cgroup_read_notify_on_release,
4174 .write_u64 = cgroup_write_notify_on_release,
4175 },
Tejun Heo873fe092013-04-14 20:15:26 -07004176 {
Tejun Heo6e6ff252012-04-01 12:09:55 -07004177 .name = "release_agent",
Tejun Heocc5943a2013-06-03 19:13:55 -07004178 .flags = CFTYPE_INSANE | CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004179 .seq_show = cgroup_release_agent_show,
Tejun Heo451af502014-05-13 12:16:21 -04004180 .write = cgroup_release_agent_write,
Tejun Heo5f469902014-02-11 11:52:48 -05004181 .max_write_len = PATH_MAX - 1,
Tejun Heo6e6ff252012-04-01 12:09:55 -07004182 },
Tejun Heodb0416b2012-04-01 12:09:55 -07004183 { } /* terminate */
Paul Menagebbcb81d2007-10-18 23:39:32 -07004184};
4185
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004186/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07004187 * cgroup_populate_dir - create subsys files in a cgroup directory
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004188 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004189 * @subsys_mask: mask of the subsystem ids whose files should be added
Tejun Heobee55092013-06-28 16:24:11 -07004190 *
4191 * On failure, no file is added.
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004192 */
Tejun Heo69dfa002014-05-04 15:09:13 -04004193static int cgroup_populate_dir(struct cgroup *cgrp, unsigned int subsys_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004194{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004195 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07004196 int i, ret = 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004197
Tejun Heo8e3f6542012-04-01 12:09:55 -07004198 /* process cftsets of each subsystem */
Tejun Heob420ba72013-07-12 12:34:02 -07004199 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -05004200 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -07004201
Tejun Heo69dfa002014-05-04 15:09:13 -04004202 if (!(subsys_mask & (1 << i)))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004203 continue;
Tejun Heo8e3f6542012-04-01 12:09:55 -07004204
Tejun Heo0adb0702014-02-12 09:29:48 -05004205 list_for_each_entry(cfts, &ss->cfts, node) {
4206 ret = cgroup_addrm_files(cgrp, cfts, true);
Tejun Heobee55092013-06-28 16:24:11 -07004207 if (ret < 0)
4208 goto err;
4209 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004210 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004211 return 0;
Tejun Heobee55092013-06-28 16:24:11 -07004212err:
4213 cgroup_clear_dir(cgrp, subsys_mask);
4214 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004215}
4216
Tejun Heo0c21ead2013-08-13 20:22:51 -04004217/*
4218 * css destruction is four-stage process.
4219 *
4220 * 1. Destruction starts. Killing of the percpu_ref is initiated.
4221 * Implemented in kill_css().
4222 *
4223 * 2. When the percpu_ref is confirmed to be visible as killed on all CPUs
Tejun Heoec903c02014-05-13 12:11:01 -04004224 * and thus css_tryget_online() is guaranteed to fail, the css can be
4225 * offlined by invoking offline_css(). After offlining, the base ref is
4226 * put. Implemented in css_killed_work_fn().
Tejun Heo0c21ead2013-08-13 20:22:51 -04004227 *
4228 * 3. When the percpu_ref reaches zero, the only possible remaining
4229 * accessors are inside RCU read sections. css_release() schedules the
4230 * RCU callback.
4231 *
4232 * 4. After the grace period, the css can be freed. Implemented in
4233 * css_free_work_fn().
4234 *
4235 * It is actually hairier because both step 2 and 4 require process context
4236 * and thus involve punting to css->destroy_work adding two additional
4237 * steps to the already complex sequence.
4238 */
Tejun Heo35ef10d2013-08-13 11:01:54 -04004239static void css_free_work_fn(struct work_struct *work)
Tejun Heo48ddbe12012-04-01 12:09:56 -07004240{
4241 struct cgroup_subsys_state *css =
Tejun Heo35ef10d2013-08-13 11:01:54 -04004242 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo0c21ead2013-08-13 20:22:51 -04004243 struct cgroup *cgrp = css->cgroup;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004244
Tejun Heo9d755d32014-05-14 09:15:02 -04004245 if (css->ss) {
4246 /* css free path */
4247 if (css->parent)
4248 css_put(css->parent);
Tejun Heo0ae78e02013-08-13 11:01:54 -04004249
Tejun Heo9d755d32014-05-14 09:15:02 -04004250 css->ss->css_free(css);
4251 cgroup_put(cgrp);
4252 } else {
4253 /* cgroup free path */
4254 atomic_dec(&cgrp->root->nr_cgrps);
4255 cgroup_pidlist_destroy_all(cgrp);
4256
Tejun Heod51f39b2014-05-16 13:22:48 -04004257 if (cgroup_parent(cgrp)) {
Tejun Heo9d755d32014-05-14 09:15:02 -04004258 /*
4259 * We get a ref to the parent, and put the ref when
4260 * this cgroup is being freed, so it's guaranteed
4261 * that the parent won't be destroyed before its
4262 * children.
4263 */
Tejun Heod51f39b2014-05-16 13:22:48 -04004264 cgroup_put(cgroup_parent(cgrp));
Tejun Heo9d755d32014-05-14 09:15:02 -04004265 kernfs_put(cgrp->kn);
4266 kfree(cgrp);
4267 } else {
4268 /*
4269 * This is root cgroup's refcnt reaching zero,
4270 * which indicates that the root should be
4271 * released.
4272 */
4273 cgroup_destroy_root(cgrp->root);
4274 }
4275 }
Tejun Heo0c21ead2013-08-13 20:22:51 -04004276}
4277
4278static void css_free_rcu_fn(struct rcu_head *rcu_head)
4279{
4280 struct cgroup_subsys_state *css =
4281 container_of(rcu_head, struct cgroup_subsys_state, rcu_head);
4282
Tejun Heo0c21ead2013-08-13 20:22:51 -04004283 INIT_WORK(&css->destroy_work, css_free_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05004284 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004285}
4286
Tejun Heo25e15d82014-05-14 09:15:02 -04004287static void css_release_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004288{
4289 struct cgroup_subsys_state *css =
Tejun Heo25e15d82014-05-14 09:15:02 -04004290 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo15a4c832014-05-04 15:09:14 -04004291 struct cgroup_subsys *ss = css->ss;
Tejun Heo9d755d32014-05-14 09:15:02 -04004292 struct cgroup *cgrp = css->cgroup;
Tejun Heod3daf282013-06-13 19:39:16 -07004293
Tejun Heo1fed1b22014-05-16 13:22:49 -04004294 mutex_lock(&cgroup_mutex);
4295
Tejun Heode3f0342014-05-16 13:22:49 -04004296 css->flags |= CSS_RELEASED;
Tejun Heo1fed1b22014-05-16 13:22:49 -04004297 list_del_rcu(&css->sibling);
4298
Tejun Heo9d755d32014-05-14 09:15:02 -04004299 if (ss) {
4300 /* css release path */
4301 cgroup_idr_remove(&ss->css_idr, css->id);
4302 } else {
4303 /* cgroup release path */
Tejun Heo9d755d32014-05-14 09:15:02 -04004304 cgroup_idr_remove(&cgrp->root->cgroup_idr, cgrp->id);
4305 cgrp->id = -1;
4306 }
Tejun Heo15a4c832014-05-04 15:09:14 -04004307
Tejun Heo1fed1b22014-05-16 13:22:49 -04004308 mutex_unlock(&cgroup_mutex);
4309
Tejun Heo0c21ead2013-08-13 20:22:51 -04004310 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004311}
4312
Paul Menageddbcc7e2007-10-18 23:39:30 -07004313static void css_release(struct percpu_ref *ref)
4314{
4315 struct cgroup_subsys_state *css =
4316 container_of(ref, struct cgroup_subsys_state, refcnt);
4317
Tejun Heo25e15d82014-05-14 09:15:02 -04004318 INIT_WORK(&css->destroy_work, css_release_work_fn);
4319 queue_work(cgroup_destroy_wq, &css->destroy_work);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004320}
4321
Tejun Heoddfcada2014-05-04 15:09:14 -04004322static void init_and_link_css(struct cgroup_subsys_state *css,
4323 struct cgroup_subsys *ss, struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004324{
Tejun Heo0cb51d72014-05-16 13:22:49 -04004325 lockdep_assert_held(&cgroup_mutex);
4326
Tejun Heoddfcada2014-05-04 15:09:14 -04004327 cgroup_get(cgrp);
4328
Tejun Heod5c419b2014-05-16 13:22:48 -04004329 memset(css, 0, sizeof(*css));
Paul Menagebd89aab2007-10-18 23:40:44 -07004330 css->cgroup = cgrp;
Tejun Heo72c97e52013-08-08 20:11:22 -04004331 css->ss = ss;
Tejun Heod5c419b2014-05-16 13:22:48 -04004332 INIT_LIST_HEAD(&css->sibling);
4333 INIT_LIST_HEAD(&css->children);
Tejun Heo0cb51d72014-05-16 13:22:49 -04004334 css->serial_nr = css_serial_nr_next++;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004335
Tejun Heod51f39b2014-05-16 13:22:48 -04004336 if (cgroup_parent(cgrp)) {
4337 css->parent = cgroup_css(cgroup_parent(cgrp), ss);
Tejun Heoddfcada2014-05-04 15:09:14 -04004338 css_get(css->parent);
Tejun Heoddfcada2014-05-04 15:09:14 -04004339 }
Tejun Heo0ae78e02013-08-13 11:01:54 -04004340
Tejun Heoca8bdca2013-08-26 18:40:56 -04004341 BUG_ON(cgroup_css(cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004342}
4343
Li Zefan2a4ac632013-07-31 16:16:40 +08004344/* invoke ->css_online() on a new CSS and mark it online if successful */
Tejun Heo623f9262013-08-13 11:01:55 -04004345static int online_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004346{
Tejun Heo623f9262013-08-13 11:01:55 -04004347 struct cgroup_subsys *ss = css->ss;
Tejun Heob1929db2012-11-19 08:13:38 -08004348 int ret = 0;
4349
Tejun Heoa31f2d32012-11-19 08:13:37 -08004350 lockdep_assert_held(&cgroup_mutex);
4351
Tejun Heo92fb9742012-11-19 08:13:38 -08004352 if (ss->css_online)
Tejun Heoeb954192013-08-08 20:11:23 -04004353 ret = ss->css_online(css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004354 if (!ret) {
Tejun Heoeb954192013-08-08 20:11:23 -04004355 css->flags |= CSS_ONLINE;
Tejun Heoaec25022014-02-08 10:36:58 -05004356 rcu_assign_pointer(css->cgroup->subsys[ss->id], css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004357 }
Tejun Heob1929db2012-11-19 08:13:38 -08004358 return ret;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004359}
4360
Li Zefan2a4ac632013-07-31 16:16:40 +08004361/* if the CSS is online, invoke ->css_offline() on it and mark it offline */
Tejun Heo623f9262013-08-13 11:01:55 -04004362static void offline_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004363{
Tejun Heo623f9262013-08-13 11:01:55 -04004364 struct cgroup_subsys *ss = css->ss;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004365
4366 lockdep_assert_held(&cgroup_mutex);
4367
4368 if (!(css->flags & CSS_ONLINE))
4369 return;
4370
Li Zefand7eeac12013-03-12 15:35:59 -07004371 if (ss->css_offline)
Tejun Heoeb954192013-08-08 20:11:23 -04004372 ss->css_offline(css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004373
Tejun Heoeb954192013-08-08 20:11:23 -04004374 css->flags &= ~CSS_ONLINE;
Tejun Heoe3297802014-04-23 11:13:15 -04004375 RCU_INIT_POINTER(css->cgroup->subsys[ss->id], NULL);
Tejun Heof8f22e52014-04-23 11:13:16 -04004376
4377 wake_up_all(&css->cgroup->offline_waitq);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004378}
4379
Tejun Heoc81c925a2013-12-06 15:11:56 -05004380/**
4381 * create_css - create a cgroup_subsys_state
4382 * @cgrp: the cgroup new css will be associated with
4383 * @ss: the subsys of new css
Tejun Heof63070d2014-07-08 18:02:57 -04004384 * @visible: whether to create control knobs for the new css or not
Tejun Heoc81c925a2013-12-06 15:11:56 -05004385 *
4386 * Create a new css associated with @cgrp - @ss pair. On success, the new
Tejun Heof63070d2014-07-08 18:02:57 -04004387 * css is online and installed in @cgrp with all interface files created if
4388 * @visible. Returns 0 on success, -errno on failure.
Tejun Heoc81c925a2013-12-06 15:11:56 -05004389 */
Tejun Heof63070d2014-07-08 18:02:57 -04004390static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss,
4391 bool visible)
Tejun Heoc81c925a2013-12-06 15:11:56 -05004392{
Tejun Heod51f39b2014-05-16 13:22:48 -04004393 struct cgroup *parent = cgroup_parent(cgrp);
Tejun Heo1fed1b22014-05-16 13:22:49 -04004394 struct cgroup_subsys_state *parent_css = cgroup_css(parent, ss);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004395 struct cgroup_subsys_state *css;
4396 int err;
4397
Tejun Heoc81c925a2013-12-06 15:11:56 -05004398 lockdep_assert_held(&cgroup_mutex);
4399
Tejun Heo1fed1b22014-05-16 13:22:49 -04004400 css = ss->css_alloc(parent_css);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004401 if (IS_ERR(css))
4402 return PTR_ERR(css);
4403
Tejun Heoddfcada2014-05-04 15:09:14 -04004404 init_and_link_css(css, ss, cgrp);
Tejun Heoa2bed822014-05-04 15:09:14 -04004405
Tejun Heoc81c925a2013-12-06 15:11:56 -05004406 err = percpu_ref_init(&css->refcnt, css_release);
4407 if (err)
Li Zefan3eb59ec2014-03-18 17:02:36 +08004408 goto err_free_css;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004409
Tejun Heo15a4c832014-05-04 15:09:14 -04004410 err = cgroup_idr_alloc(&ss->css_idr, NULL, 2, 0, GFP_NOWAIT);
4411 if (err < 0)
4412 goto err_free_percpu_ref;
4413 css->id = err;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004414
Tejun Heof63070d2014-07-08 18:02:57 -04004415 if (visible) {
4416 err = cgroup_populate_dir(cgrp, 1 << ss->id);
4417 if (err)
4418 goto err_free_id;
4419 }
Tejun Heo15a4c832014-05-04 15:09:14 -04004420
4421 /* @css is ready to be brought online now, make it visible */
Tejun Heo1fed1b22014-05-16 13:22:49 -04004422 list_add_tail_rcu(&css->sibling, &parent_css->children);
Tejun Heo15a4c832014-05-04 15:09:14 -04004423 cgroup_idr_replace(&ss->css_idr, css, css->id);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004424
4425 err = online_css(css);
4426 if (err)
Tejun Heo1fed1b22014-05-16 13:22:49 -04004427 goto err_list_del;
Tejun Heo94419622014-03-19 10:23:54 -04004428
Tejun Heoc81c925a2013-12-06 15:11:56 -05004429 if (ss->broken_hierarchy && !ss->warned_broken_hierarchy &&
Tejun Heod51f39b2014-05-16 13:22:48 -04004430 cgroup_parent(parent)) {
Joe Perchesed3d2612014-04-25 18:28:03 -04004431 pr_warn("%s (%d) created nested cgroup for controller \"%s\" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.\n",
Jianyu Zhana2a1f9e2014-04-25 18:28:03 -04004432 current->comm, current->pid, ss->name);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004433 if (!strcmp(ss->name, "memory"))
Joe Perchesed3d2612014-04-25 18:28:03 -04004434 pr_warn("\"memory\" requires setting use_hierarchy to 1 on the root\n");
Tejun Heoc81c925a2013-12-06 15:11:56 -05004435 ss->warned_broken_hierarchy = true;
4436 }
4437
4438 return 0;
4439
Tejun Heo1fed1b22014-05-16 13:22:49 -04004440err_list_del:
4441 list_del_rcu(&css->sibling);
Linus Torvalds32d01dc2014-04-03 13:05:42 -07004442 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
Tejun Heo15a4c832014-05-04 15:09:14 -04004443err_free_id:
4444 cgroup_idr_remove(&ss->css_idr, css->id);
Li Zefan3eb59ec2014-03-18 17:02:36 +08004445err_free_percpu_ref:
Tejun Heoc81c925a2013-12-06 15:11:56 -05004446 percpu_ref_cancel_init(&css->refcnt);
Li Zefan3eb59ec2014-03-18 17:02:36 +08004447err_free_css:
Tejun Heoa2bed822014-05-04 15:09:14 -04004448 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004449 return err;
4450}
4451
Tejun Heob3bfd982014-05-13 12:19:22 -04004452static int cgroup_mkdir(struct kernfs_node *parent_kn, const char *name,
4453 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004454{
Tejun Heoa9746d82014-05-13 12:19:22 -04004455 struct cgroup *parent, *cgrp;
4456 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004457 struct cgroup_subsys *ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004458 struct kernfs_node *kn;
Tejun Heob3bfd982014-05-13 12:19:22 -04004459 int ssid, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004460
Tejun Heoa9746d82014-05-13 12:19:22 -04004461 parent = cgroup_kn_lock_live(parent_kn);
4462 if (!parent)
4463 return -ENODEV;
4464 root = parent->root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004465
Tejun Heo0a950f62012-11-19 09:02:12 -08004466 /* allocate the cgroup and its ID, 0 is reserved for the root */
Paul Menagebd89aab2007-10-18 23:40:44 -07004467 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004468 if (!cgrp) {
4469 ret = -ENOMEM;
4470 goto out_unlock;
Li Zefan0ab02ca2014-02-11 16:05:46 +08004471 }
4472
Tejun Heo9d755d32014-05-14 09:15:02 -04004473 ret = percpu_ref_init(&cgrp->self.refcnt, css_release);
4474 if (ret)
4475 goto out_free_cgrp;
4476
Li Zefan0ab02ca2014-02-11 16:05:46 +08004477 /*
4478 * Temporarily set the pointer to NULL, so idr_find() won't return
4479 * a half-baked cgroup.
4480 */
Tejun Heo6fa49182014-05-04 15:09:13 -04004481 cgrp->id = cgroup_idr_alloc(&root->cgroup_idr, NULL, 2, 0, GFP_NOWAIT);
Li Zefan0ab02ca2014-02-11 16:05:46 +08004482 if (cgrp->id < 0) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004483 ret = -ENOMEM;
Tejun Heo9d755d32014-05-14 09:15:02 -04004484 goto out_cancel_ref;
Tejun Heo976c06b2012-11-05 09:16:59 -08004485 }
4486
Paul Menagecc31edc2008-10-18 20:28:04 -07004487 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004488
Tejun Heo9d800df2014-05-14 09:15:00 -04004489 cgrp->self.parent = &parent->self;
Tejun Heoba0f4d72014-05-13 12:19:22 -04004490 cgrp->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004491
Li Zefanb6abdb02008-03-04 14:28:19 -08004492 if (notify_on_release(parent))
4493 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
4494
Tejun Heo2260e7f2012-11-19 08:13:38 -08004495 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags))
4496 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004497
Tejun Heo2bd59d42014-02-11 11:52:49 -05004498 /* create the directory */
Tejun Heoe61734c2014-02-12 09:29:50 -05004499 kn = kernfs_create_dir(parent->kn, name, mode, cgrp);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004500 if (IS_ERR(kn)) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004501 ret = PTR_ERR(kn);
4502 goto out_free_id;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004503 }
4504 cgrp->kn = kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004505
Tejun Heo6f305582014-02-12 09:29:50 -05004506 /*
4507 * This extra ref will be put in cgroup_free_fn() and guarantees
4508 * that @cgrp->kn is always accessible.
4509 */
4510 kernfs_get(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004511
Tejun Heo0cb51d72014-05-16 13:22:49 -04004512 cgrp->self.serial_nr = css_serial_nr_next++;
Tejun Heo53fa5262013-05-24 10:55:38 +09004513
Tejun Heo4e139af2012-11-19 08:13:36 -08004514 /* allocation complete, commit to creation */
Tejun Heod5c419b2014-05-16 13:22:48 -04004515 list_add_tail_rcu(&cgrp->self.sibling, &cgroup_parent(cgrp)->self.children);
Tejun Heo3c9c8252014-02-12 09:29:50 -05004516 atomic_inc(&root->nr_cgrps);
Tejun Heo59f52962014-02-11 11:52:49 -05004517 cgroup_get(parent);
Li Zefan415cf072013-04-08 14:35:02 +08004518
Tejun Heo0d802552013-12-06 15:11:56 -05004519 /*
4520 * @cgrp is now fully operational. If something fails after this
4521 * point, it'll be released via the normal destruction path.
4522 */
Tejun Heo6fa49182014-05-04 15:09:13 -04004523 cgroup_idr_replace(&root->cgroup_idr, cgrp, cgrp->id);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08004524
Tejun Heoba0f4d72014-05-13 12:19:22 -04004525 ret = cgroup_kn_set_ugid(kn);
4526 if (ret)
4527 goto out_destroy;
Tejun Heo49957f82014-04-07 16:44:47 -04004528
Tejun Heoba0f4d72014-05-13 12:19:22 -04004529 ret = cgroup_addrm_files(cgrp, cgroup_base_files, true);
4530 if (ret)
4531 goto out_destroy;
Tejun Heo628f7cd2013-06-28 16:24:11 -07004532
Tejun Heo9d403e92013-12-06 15:11:56 -05004533 /* let's create and online css's */
Tejun Heob85d2042013-12-06 15:11:57 -05004534 for_each_subsys(ss, ssid) {
Tejun Heof392e512014-04-23 11:13:14 -04004535 if (parent->child_subsys_mask & (1 << ssid)) {
Tejun Heof63070d2014-07-08 18:02:57 -04004536 ret = create_css(cgrp, ss,
4537 parent->subtree_control & (1 << ssid));
Tejun Heoba0f4d72014-05-13 12:19:22 -04004538 if (ret)
4539 goto out_destroy;
Tejun Heob85d2042013-12-06 15:11:57 -05004540 }
Tejun Heoa8638032012-11-09 09:12:29 -08004541 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004542
Tejun Heobd53d612014-04-23 11:13:16 -04004543 /*
4544 * On the default hierarchy, a child doesn't automatically inherit
Tejun Heo667c2492014-07-08 18:02:56 -04004545 * subtree_control from the parent. Each is configured manually.
Tejun Heobd53d612014-04-23 11:13:16 -04004546 */
Tejun Heo667c2492014-07-08 18:02:56 -04004547 if (!cgroup_on_dfl(cgrp)) {
4548 cgrp->subtree_control = parent->subtree_control;
4549 cgroup_refresh_child_subsys_mask(cgrp);
4550 }
Tejun Heof392e512014-04-23 11:13:14 -04004551
Tejun Heo2bd59d42014-02-11 11:52:49 -05004552 kernfs_activate(kn);
4553
Tejun Heoba0f4d72014-05-13 12:19:22 -04004554 ret = 0;
4555 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004556
Tejun Heoba0f4d72014-05-13 12:19:22 -04004557out_free_id:
Tejun Heo6fa49182014-05-04 15:09:13 -04004558 cgroup_idr_remove(&root->cgroup_idr, cgrp->id);
Tejun Heo9d755d32014-05-14 09:15:02 -04004559out_cancel_ref:
4560 percpu_ref_cancel_init(&cgrp->self.refcnt);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004561out_free_cgrp:
Paul Menagebd89aab2007-10-18 23:40:44 -07004562 kfree(cgrp);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004563out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04004564 cgroup_kn_unlock(parent_kn);
Tejun Heoe1b2dc12014-03-20 11:10:15 -04004565 return ret;
Tejun Heoba0f4d72014-05-13 12:19:22 -04004566
4567out_destroy:
4568 cgroup_destroy_locked(cgrp);
4569 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004570}
4571
Tejun Heo223dbc32013-08-13 20:22:50 -04004572/*
4573 * This is called when the refcnt of a css is confirmed to be killed.
Tejun Heo249f3462014-05-14 09:15:01 -04004574 * css_tryget_online() is now guaranteed to fail. Tell the subsystem to
4575 * initate destruction and put the css ref from kill_css().
Tejun Heo223dbc32013-08-13 20:22:50 -04004576 */
4577static void css_killed_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004578{
Tejun Heo223dbc32013-08-13 20:22:50 -04004579 struct cgroup_subsys_state *css =
4580 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07004581
Tejun Heof20104d2013-08-13 20:22:50 -04004582 mutex_lock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04004583 offline_css(css);
Tejun Heof20104d2013-08-13 20:22:50 -04004584 mutex_unlock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04004585
Tejun Heo09a503ea2013-08-13 20:22:50 -04004586 css_put(css);
Tejun Heod3daf282013-06-13 19:39:16 -07004587}
4588
Tejun Heo223dbc32013-08-13 20:22:50 -04004589/* css kill confirmation processing requires process context, bounce */
4590static void css_killed_ref_fn(struct percpu_ref *ref)
Tejun Heod3daf282013-06-13 19:39:16 -07004591{
4592 struct cgroup_subsys_state *css =
4593 container_of(ref, struct cgroup_subsys_state, refcnt);
4594
Tejun Heo223dbc32013-08-13 20:22:50 -04004595 INIT_WORK(&css->destroy_work, css_killed_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05004596 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07004597}
4598
Tejun Heof392e512014-04-23 11:13:14 -04004599/**
4600 * kill_css - destroy a css
4601 * @css: css to destroy
4602 *
4603 * This function initiates destruction of @css by removing cgroup interface
4604 * files and putting its base reference. ->css_offline() will be invoked
Tejun Heoec903c02014-05-13 12:11:01 -04004605 * asynchronously once css_tryget_online() is guaranteed to fail and when
4606 * the reference count reaches zero, @css will be released.
Tejun Heof392e512014-04-23 11:13:14 -04004607 */
4608static void kill_css(struct cgroup_subsys_state *css)
Tejun Heoedae0c32013-08-13 20:22:51 -04004609{
Tejun Heo01f64742014-05-13 12:19:23 -04004610 lockdep_assert_held(&cgroup_mutex);
Tejun Heo94419622014-03-19 10:23:54 -04004611
Tejun Heo2bd59d42014-02-11 11:52:49 -05004612 /*
4613 * This must happen before css is disassociated with its cgroup.
4614 * See seq_css() for details.
4615 */
Tejun Heoaec25022014-02-08 10:36:58 -05004616 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
Tejun Heo3c14f8b2013-08-13 20:22:51 -04004617
Tejun Heoedae0c32013-08-13 20:22:51 -04004618 /*
4619 * Killing would put the base ref, but we need to keep it alive
4620 * until after ->css_offline().
4621 */
4622 css_get(css);
4623
4624 /*
4625 * cgroup core guarantees that, by the time ->css_offline() is
4626 * invoked, no new css reference will be given out via
Tejun Heoec903c02014-05-13 12:11:01 -04004627 * css_tryget_online(). We can't simply call percpu_ref_kill() and
Tejun Heoedae0c32013-08-13 20:22:51 -04004628 * proceed to offlining css's because percpu_ref_kill() doesn't
4629 * guarantee that the ref is seen as killed on all CPUs on return.
4630 *
4631 * Use percpu_ref_kill_and_confirm() to get notifications as each
4632 * css is confirmed to be seen as killed on all CPUs.
4633 */
4634 percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004635}
4636
4637/**
4638 * cgroup_destroy_locked - the first stage of cgroup destruction
4639 * @cgrp: cgroup to be destroyed
4640 *
4641 * css's make use of percpu refcnts whose killing latency shouldn't be
4642 * exposed to userland and are RCU protected. Also, cgroup core needs to
Tejun Heoec903c02014-05-13 12:11:01 -04004643 * guarantee that css_tryget_online() won't succeed by the time
4644 * ->css_offline() is invoked. To satisfy all the requirements,
4645 * destruction is implemented in the following two steps.
Tejun Heod3daf282013-06-13 19:39:16 -07004646 *
4647 * s1. Verify @cgrp can be destroyed and mark it dying. Remove all
4648 * userland visible parts and start killing the percpu refcnts of
4649 * css's. Set up so that the next stage will be kicked off once all
4650 * the percpu refcnts are confirmed to be killed.
4651 *
4652 * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the
4653 * rest of destruction. Once all cgroup references are gone, the
4654 * cgroup is RCU-freed.
4655 *
4656 * This function implements s1. After this step, @cgrp is gone as far as
4657 * the userland is concerned and a new cgroup with the same name may be
4658 * created. As cgroup doesn't care about the names internally, this
4659 * doesn't cause any problem.
4660 */
Tejun Heo42809dd2012-11-19 08:13:37 -08004661static int cgroup_destroy_locked(struct cgroup *cgrp)
4662 __releases(&cgroup_mutex) __acquires(&cgroup_mutex)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004663{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004664 struct cgroup_subsys_state *css;
Tejun Heoddd69142013-06-12 21:04:54 -07004665 bool empty;
Tejun Heo1c6727a2013-12-06 15:11:56 -05004666 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004667
Tejun Heo42809dd2012-11-19 08:13:37 -08004668 lockdep_assert_held(&cgroup_mutex);
4669
Tejun Heoddd69142013-06-12 21:04:54 -07004670 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05004671 * css_set_rwsem synchronizes access to ->cset_links and prevents
Tejun Heo89c55092014-02-13 06:58:40 -05004672 * @cgrp from being removed while put_css_set() is in progress.
Tejun Heoddd69142013-06-12 21:04:54 -07004673 */
Tejun Heo96d365e2014-02-13 06:58:40 -05004674 down_read(&css_set_rwsem);
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004675 empty = list_empty(&cgrp->cset_links);
Tejun Heo96d365e2014-02-13 06:58:40 -05004676 up_read(&css_set_rwsem);
Tejun Heoddd69142013-06-12 21:04:54 -07004677 if (!empty)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004678 return -EBUSY;
Tejun Heoed9577932012-11-05 09:16:58 -08004679
Tejun Heo1a90dd52012-11-05 09:16:59 -08004680 /*
Tejun Heod5c419b2014-05-16 13:22:48 -04004681 * Make sure there's no live children. We can't test emptiness of
4682 * ->self.children as dead children linger on it while being
4683 * drained; otherwise, "rmdir parent/child parent" may fail.
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004684 */
Tejun Heof3d46502014-05-16 13:22:52 -04004685 if (css_has_online_children(&cgrp->self))
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004686 return -EBUSY;
4687
4688 /*
Tejun Heo455050d2013-06-13 19:27:41 -07004689 * Mark @cgrp dead. This prevents further task migration and child
Tejun Heode3f0342014-05-16 13:22:49 -04004690 * creation by disabling cgroup_lock_live_group().
Tejun Heo455050d2013-06-13 19:27:41 -07004691 */
Tejun Heo184faf32014-05-16 13:22:51 -04004692 cgrp->self.flags &= ~CSS_ONLINE;
Tejun Heo1a90dd52012-11-05 09:16:59 -08004693
Tejun Heo249f3462014-05-14 09:15:01 -04004694 /* initiate massacre of all css's */
Tejun Heo1a90dd52012-11-05 09:16:59 -08004695 for_each_css(css, ssid, cgrp)
Tejun Heo455050d2013-06-13 19:27:41 -07004696 kill_css(css);
4697
Tejun Heo184faf32014-05-16 13:22:51 -04004698 /* CSS_ONLINE is clear, remove from ->release_list for the last time */
Tejun Heo455050d2013-06-13 19:27:41 -07004699 raw_spin_lock(&release_list_lock);
4700 if (!list_empty(&cgrp->release_list))
4701 list_del_init(&cgrp->release_list);
4702 raw_spin_unlock(&release_list_lock);
4703
4704 /*
Tejun Heo01f64742014-05-13 12:19:23 -04004705 * Remove @cgrp directory along with the base files. @cgrp has an
4706 * extra ref on its kn.
Tejun Heo455050d2013-06-13 19:27:41 -07004707 */
Tejun Heo01f64742014-05-13 12:19:23 -04004708 kernfs_remove(cgrp->kn);
Tejun Heof20104d2013-08-13 20:22:50 -04004709
Tejun Heod51f39b2014-05-16 13:22:48 -04004710 set_bit(CGRP_RELEASABLE, &cgroup_parent(cgrp)->flags);
4711 check_for_release(cgroup_parent(cgrp));
Tejun Heo2bd59d42014-02-11 11:52:49 -05004712
Tejun Heo249f3462014-05-14 09:15:01 -04004713 /* put the base reference */
Tejun Heo9d755d32014-05-14 09:15:02 -04004714 percpu_ref_kill(&cgrp->self.refcnt);
Tejun Heo455050d2013-06-13 19:27:41 -07004715
Tejun Heoea15f8c2013-06-13 19:27:42 -07004716 return 0;
4717};
4718
Tejun Heo2bd59d42014-02-11 11:52:49 -05004719static int cgroup_rmdir(struct kernfs_node *kn)
Tejun Heo42809dd2012-11-19 08:13:37 -08004720{
Tejun Heoa9746d82014-05-13 12:19:22 -04004721 struct cgroup *cgrp;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004722 int ret = 0;
Tejun Heo42809dd2012-11-19 08:13:37 -08004723
Tejun Heoa9746d82014-05-13 12:19:22 -04004724 cgrp = cgroup_kn_lock_live(kn);
4725 if (!cgrp)
4726 return 0;
4727 cgroup_get(cgrp); /* for @kn->priv clearing */
Tejun Heo42809dd2012-11-19 08:13:37 -08004728
Tejun Heoa9746d82014-05-13 12:19:22 -04004729 ret = cgroup_destroy_locked(cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -08004730
Tejun Heoa9746d82014-05-13 12:19:22 -04004731 cgroup_kn_unlock(kn);
Tejun Heo42809dd2012-11-19 08:13:37 -08004732
Tejun Heo2bd59d42014-02-11 11:52:49 -05004733 /*
Tejun Heocfc79d52014-05-13 12:19:22 -04004734 * There are two control paths which try to determine cgroup from
4735 * dentry without going through kernfs - cgroupstats_build() and
4736 * css_tryget_online_from_dir(). Those are supported by RCU
4737 * protecting clearing of cgrp->kn->priv backpointer, which should
4738 * happen after all files under it have been removed.
Tejun Heo2bd59d42014-02-11 11:52:49 -05004739 */
Tejun Heocfc79d52014-05-13 12:19:22 -04004740 if (!ret)
4741 RCU_INIT_POINTER(*(void __rcu __force **)&kn->priv, NULL);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004742
Tejun Heo2bd59d42014-02-11 11:52:49 -05004743 cgroup_put(cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -08004744 return ret;
4745}
4746
Tejun Heo2bd59d42014-02-11 11:52:49 -05004747static struct kernfs_syscall_ops cgroup_kf_syscall_ops = {
4748 .remount_fs = cgroup_remount,
4749 .show_options = cgroup_show_options,
4750 .mkdir = cgroup_mkdir,
4751 .rmdir = cgroup_rmdir,
4752 .rename = cgroup_rename,
4753};
Tejun Heo8e3f6542012-04-01 12:09:55 -07004754
Tejun Heo15a4c832014-05-04 15:09:14 -04004755static void __init cgroup_init_subsys(struct cgroup_subsys *ss, bool early)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004756{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004757 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08004758
4759 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004760
Tejun Heo648bb562012-11-19 08:13:36 -08004761 mutex_lock(&cgroup_mutex);
4762
Tejun Heo15a4c832014-05-04 15:09:14 -04004763 idr_init(&ss->css_idr);
Tejun Heo0adb0702014-02-12 09:29:48 -05004764 INIT_LIST_HEAD(&ss->cfts);
Tejun Heo8e3f6542012-04-01 12:09:55 -07004765
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004766 /* Create the root cgroup state for this subsystem */
4767 ss->root = &cgrp_dfl_root;
4768 css = ss->css_alloc(cgroup_css(&cgrp_dfl_root.cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004769 /* We don't handle early failures gracefully */
4770 BUG_ON(IS_ERR(css));
Tejun Heoddfcada2014-05-04 15:09:14 -04004771 init_and_link_css(css, ss, &cgrp_dfl_root.cgrp);
Tejun Heo3b514d22014-05-16 13:22:47 -04004772
4773 /*
4774 * Root csses are never destroyed and we can't initialize
4775 * percpu_ref during early init. Disable refcnting.
4776 */
4777 css->flags |= CSS_NO_REF;
4778
Tejun Heo15a4c832014-05-04 15:09:14 -04004779 if (early) {
Tejun Heo9395a452014-05-14 09:15:02 -04004780 /* allocation can't be done safely during early init */
Tejun Heo15a4c832014-05-04 15:09:14 -04004781 css->id = 1;
4782 } else {
4783 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2, GFP_KERNEL);
4784 BUG_ON(css->id < 0);
4785 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004786
Li Zefane8d55fd2008-04-29 01:00:13 -07004787 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07004788 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07004789 * newly registered, all tasks and hence the
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004790 * init_css_set is in the subsystem's root cgroup. */
Tejun Heoaec25022014-02-08 10:36:58 -05004791 init_css_set.subsys[ss->id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004792
4793 need_forkexit_callback |= ss->fork || ss->exit;
4794
Li Zefane8d55fd2008-04-29 01:00:13 -07004795 /* At system boot, before all subsystems have been
4796 * registered, no tasks have been forked, so we don't
4797 * need to invoke fork callbacks here. */
4798 BUG_ON(!list_empty(&init_task.tasks));
4799
Tejun Heoae7f1642013-08-13 20:22:50 -04004800 BUG_ON(online_css(css));
Tejun Heoa8638032012-11-09 09:12:29 -08004801
Tejun Heo648bb562012-11-19 08:13:36 -08004802 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004803}
4804
4805/**
Li Zefana043e3b2008-02-23 15:24:09 -08004806 * cgroup_init_early - cgroup initialization at system boot
4807 *
4808 * Initialize cgroups at system boot, and initialize any
4809 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004810 */
4811int __init cgroup_init_early(void)
4812{
Tejun Heoa2dd4242014-03-19 10:23:55 -04004813 static struct cgroup_sb_opts __initdata opts =
4814 { .flags = CGRP_ROOT_SANE_BEHAVIOR };
Tejun Heo30159ec2013-06-25 11:53:37 -07004815 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004816 int i;
Tejun Heo30159ec2013-06-25 11:53:37 -07004817
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004818 init_cgroup_root(&cgrp_dfl_root, &opts);
Tejun Heo3b514d22014-05-16 13:22:47 -04004819 cgrp_dfl_root.cgrp.self.flags |= CSS_NO_REF;
4820
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07004821 RCU_INIT_POINTER(init_task.cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07004822
Tejun Heo3ed80a62014-02-08 10:36:58 -05004823 for_each_subsys(ss, i) {
Tejun Heoaec25022014-02-08 10:36:58 -05004824 WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id,
Tejun Heo073219e2014-02-08 10:36:58 -05004825 "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p name:id=%d:%s\n",
4826 i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free,
Tejun Heoaec25022014-02-08 10:36:58 -05004827 ss->id, ss->name);
Tejun Heo073219e2014-02-08 10:36:58 -05004828 WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN,
4829 "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004830
Tejun Heoaec25022014-02-08 10:36:58 -05004831 ss->id = i;
Tejun Heo073219e2014-02-08 10:36:58 -05004832 ss->name = cgroup_subsys_name[i];
Paul Menageddbcc7e2007-10-18 23:39:30 -07004833
4834 if (ss->early_init)
Tejun Heo15a4c832014-05-04 15:09:14 -04004835 cgroup_init_subsys(ss, true);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004836 }
4837 return 0;
4838}
4839
4840/**
Li Zefana043e3b2008-02-23 15:24:09 -08004841 * cgroup_init - cgroup initialization
4842 *
4843 * Register cgroup filesystem and /proc file, and initialize
4844 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004845 */
4846int __init cgroup_init(void)
4847{
Tejun Heo30159ec2013-06-25 11:53:37 -07004848 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +08004849 unsigned long key;
Tejun Heo172a2c062014-03-19 10:23:53 -04004850 int ssid, err;
Paul Menagea4243162007-10-18 23:39:35 -07004851
Tejun Heo2bd59d42014-02-11 11:52:49 -05004852 BUG_ON(cgroup_init_cftypes(NULL, cgroup_base_files));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004853
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004854 mutex_lock(&cgroup_mutex);
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004855
Tejun Heo82fe9b02013-06-25 11:53:37 -07004856 /* Add init_css_set to the hash table */
4857 key = css_set_hash(init_css_set.subsys);
4858 hash_add(css_set_table, &init_css_set.hlist, key);
4859
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004860 BUG_ON(cgroup_setup_root(&cgrp_dfl_root, 0));
Greg KH676db4a2010-08-05 13:53:35 -07004861
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004862 mutex_unlock(&cgroup_mutex);
4863
Tejun Heo172a2c062014-03-19 10:23:53 -04004864 for_each_subsys(ss, ssid) {
Tejun Heo15a4c832014-05-04 15:09:14 -04004865 if (ss->early_init) {
4866 struct cgroup_subsys_state *css =
4867 init_css_set.subsys[ss->id];
4868
4869 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2,
4870 GFP_KERNEL);
4871 BUG_ON(css->id < 0);
4872 } else {
4873 cgroup_init_subsys(ss, false);
4874 }
Tejun Heo172a2c062014-03-19 10:23:53 -04004875
Tejun Heo2d8f2432014-04-23 11:13:15 -04004876 list_add_tail(&init_css_set.e_cset_node[ssid],
4877 &cgrp_dfl_root.cgrp.e_csets[ssid]);
Tejun Heo172a2c062014-03-19 10:23:53 -04004878
4879 /*
Li Zefanc731ae12014-06-05 17:16:30 +08004880 * Setting dfl_root subsys_mask needs to consider the
4881 * disabled flag and cftype registration needs kmalloc,
4882 * both of which aren't available during early_init.
Tejun Heo172a2c062014-03-19 10:23:53 -04004883 */
Li Zefanc731ae12014-06-05 17:16:30 +08004884 if (!ss->disabled) {
4885 cgrp_dfl_root.subsys_mask |= 1 << ss->id;
Tejun Heo172a2c062014-03-19 10:23:53 -04004886 WARN_ON(cgroup_add_cftypes(ss, ss->base_cftypes));
Li Zefanc731ae12014-06-05 17:16:30 +08004887 }
Tejun Heo172a2c062014-03-19 10:23:53 -04004888 }
Greg KH676db4a2010-08-05 13:53:35 -07004889
Paul Menageddbcc7e2007-10-18 23:39:30 -07004890 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004891 if (!cgroup_kobj)
4892 return -ENOMEM;
Paul Menagea4243162007-10-18 23:39:35 -07004893
4894 err = register_filesystem(&cgroup_fs_type);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004895 if (err < 0) {
4896 kobject_put(cgroup_kobj);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004897 return err;
Paul Menagea4243162007-10-18 23:39:35 -07004898 }
4899
4900 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004901 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004902}
Paul Menageb4f48b62007-10-18 23:39:33 -07004903
Tejun Heoe5fca242013-11-22 17:14:39 -05004904static int __init cgroup_wq_init(void)
4905{
4906 /*
4907 * There isn't much point in executing destruction path in
4908 * parallel. Good chunk is serialized with cgroup_mutex anyway.
Tejun Heo1a115332014-02-12 19:06:19 -05004909 * Use 1 for @max_active.
Tejun Heoe5fca242013-11-22 17:14:39 -05004910 *
4911 * We would prefer to do this in cgroup_init() above, but that
4912 * is called before init_workqueues(): so leave this until after.
4913 */
Tejun Heo1a115332014-02-12 19:06:19 -05004914 cgroup_destroy_wq = alloc_workqueue("cgroup_destroy", 0, 1);
Tejun Heoe5fca242013-11-22 17:14:39 -05004915 BUG_ON(!cgroup_destroy_wq);
Tejun Heob1a21362013-11-29 10:42:58 -05004916
4917 /*
4918 * Used to destroy pidlists and separate to serve as flush domain.
4919 * Cap @max_active to 1 too.
4920 */
4921 cgroup_pidlist_destroy_wq = alloc_workqueue("cgroup_pidlist_destroy",
4922 0, 1);
4923 BUG_ON(!cgroup_pidlist_destroy_wq);
4924
Tejun Heoe5fca242013-11-22 17:14:39 -05004925 return 0;
4926}
4927core_initcall(cgroup_wq_init);
4928
Paul Menagea4243162007-10-18 23:39:35 -07004929/*
4930 * proc_cgroup_show()
4931 * - Print task's cgroup paths into seq_file, one line for each hierarchy
4932 * - Used for /proc/<pid>/cgroup.
Paul Menagea4243162007-10-18 23:39:35 -07004933 */
4934
4935/* TODO: Use a proper seq_file iterator */
Al Viro8d8b97b2013-04-19 23:11:24 -04004936int proc_cgroup_show(struct seq_file *m, void *v)
Paul Menagea4243162007-10-18 23:39:35 -07004937{
4938 struct pid *pid;
4939 struct task_struct *tsk;
Tejun Heoe61734c2014-02-12 09:29:50 -05004940 char *buf, *path;
Paul Menagea4243162007-10-18 23:39:35 -07004941 int retval;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004942 struct cgroup_root *root;
Paul Menagea4243162007-10-18 23:39:35 -07004943
4944 retval = -ENOMEM;
Tejun Heoe61734c2014-02-12 09:29:50 -05004945 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagea4243162007-10-18 23:39:35 -07004946 if (!buf)
4947 goto out;
4948
4949 retval = -ESRCH;
4950 pid = m->private;
4951 tsk = get_pid_task(pid, PIDTYPE_PID);
4952 if (!tsk)
4953 goto out_free;
4954
4955 retval = 0;
4956
4957 mutex_lock(&cgroup_mutex);
Tejun Heo96d365e2014-02-13 06:58:40 -05004958 down_read(&css_set_rwsem);
Paul Menagea4243162007-10-18 23:39:35 -07004959
Tejun Heo985ed672014-03-19 10:23:53 -04004960 for_each_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07004961 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07004962 struct cgroup *cgrp;
Tejun Heob85d2042013-12-06 15:11:57 -05004963 int ssid, count = 0;
Paul Menagea4243162007-10-18 23:39:35 -07004964
Tejun Heoa2dd4242014-03-19 10:23:55 -04004965 if (root == &cgrp_dfl_root && !cgrp_dfl_root_visible)
Tejun Heo985ed672014-03-19 10:23:53 -04004966 continue;
4967
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004968 seq_printf(m, "%d:", root->hierarchy_id);
Tejun Heob85d2042013-12-06 15:11:57 -05004969 for_each_subsys(ss, ssid)
Tejun Heof392e512014-04-23 11:13:14 -04004970 if (root->subsys_mask & (1 << ssid))
Tejun Heob85d2042013-12-06 15:11:57 -05004971 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07004972 if (strlen(root->name))
4973 seq_printf(m, "%sname=%s", count ? "," : "",
4974 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07004975 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07004976 cgrp = task_cgroup_from_root(tsk, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05004977 path = cgroup_path(cgrp, buf, PATH_MAX);
4978 if (!path) {
4979 retval = -ENAMETOOLONG;
Paul Menagea4243162007-10-18 23:39:35 -07004980 goto out_unlock;
Tejun Heoe61734c2014-02-12 09:29:50 -05004981 }
4982 seq_puts(m, path);
Paul Menagea4243162007-10-18 23:39:35 -07004983 seq_putc(m, '\n');
4984 }
4985
4986out_unlock:
Tejun Heo96d365e2014-02-13 06:58:40 -05004987 up_read(&css_set_rwsem);
Paul Menagea4243162007-10-18 23:39:35 -07004988 mutex_unlock(&cgroup_mutex);
4989 put_task_struct(tsk);
4990out_free:
4991 kfree(buf);
4992out:
4993 return retval;
4994}
4995
Paul Menagea4243162007-10-18 23:39:35 -07004996/* Display information about each subsystem and each hierarchy */
4997static int proc_cgroupstats_show(struct seq_file *m, void *v)
4998{
Tejun Heo30159ec2013-06-25 11:53:37 -07004999 struct cgroup_subsys *ss;
Paul Menagea4243162007-10-18 23:39:35 -07005000 int i;
Paul Menagea4243162007-10-18 23:39:35 -07005001
Paul Menage8bab8dd2008-04-04 14:29:57 -07005002 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08005003 /*
5004 * ideally we don't want subsystems moving around while we do this.
5005 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
5006 * subsys/hierarchy state.
5007 */
Paul Menagea4243162007-10-18 23:39:35 -07005008 mutex_lock(&cgroup_mutex);
Tejun Heo30159ec2013-06-25 11:53:37 -07005009
5010 for_each_subsys(ss, i)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005011 seq_printf(m, "%s\t%d\t%d\t%d\n",
5012 ss->name, ss->root->hierarchy_id,
Tejun Heo3c9c8252014-02-12 09:29:50 -05005013 atomic_read(&ss->root->nr_cgrps), !ss->disabled);
Tejun Heo30159ec2013-06-25 11:53:37 -07005014
Paul Menagea4243162007-10-18 23:39:35 -07005015 mutex_unlock(&cgroup_mutex);
5016 return 0;
5017}
5018
5019static int cgroupstats_open(struct inode *inode, struct file *file)
5020{
Al Viro9dce07f2008-03-29 03:07:28 +00005021 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07005022}
5023
Alexey Dobriyan828c0952009-10-01 15:43:56 -07005024static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07005025 .open = cgroupstats_open,
5026 .read = seq_read,
5027 .llseek = seq_lseek,
5028 .release = single_release,
5029};
5030
Paul Menageb4f48b62007-10-18 23:39:33 -07005031/**
Tejun Heoeaf797a2014-02-25 10:04:03 -05005032 * cgroup_fork - initialize cgroup related fields during copy_process()
Li Zefana043e3b2008-02-23 15:24:09 -08005033 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07005034 *
Tejun Heoeaf797a2014-02-25 10:04:03 -05005035 * A task is associated with the init_css_set until cgroup_post_fork()
5036 * attaches it to the parent's css_set. Empty cg_list indicates that
5037 * @child isn't holding reference to its css_set.
Paul Menageb4f48b62007-10-18 23:39:33 -07005038 */
5039void cgroup_fork(struct task_struct *child)
5040{
Tejun Heoeaf797a2014-02-25 10:04:03 -05005041 RCU_INIT_POINTER(child->cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07005042 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07005043}
5044
5045/**
Li Zefana043e3b2008-02-23 15:24:09 -08005046 * cgroup_post_fork - called on a new task after adding it to the task list
5047 * @child: the task in question
5048 *
Tejun Heo5edee612012-10-16 15:03:14 -07005049 * Adds the task to the list running through its css_set if necessary and
5050 * call the subsystem fork() callbacks. Has to be after the task is
5051 * visible on the task list in case we race with the first call to
Tejun Heo0942eee2013-08-08 20:11:26 -04005052 * cgroup_task_iter_start() - to guarantee that the new task ends up on its
Tejun Heo5edee612012-10-16 15:03:14 -07005053 * list.
Li Zefana043e3b2008-02-23 15:24:09 -08005054 */
Paul Menage817929e2007-10-18 23:39:36 -07005055void cgroup_post_fork(struct task_struct *child)
5056{
Tejun Heo30159ec2013-06-25 11:53:37 -07005057 struct cgroup_subsys *ss;
Tejun Heo5edee612012-10-16 15:03:14 -07005058 int i;
5059
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005060 /*
Tejun Heoeaf797a2014-02-25 10:04:03 -05005061 * This may race against cgroup_enable_task_cg_links(). As that
5062 * function sets use_task_css_set_links before grabbing
5063 * tasklist_lock and we just went through tasklist_lock to add
5064 * @child, it's guaranteed that either we see the set
5065 * use_task_css_set_links or cgroup_enable_task_cg_lists() sees
5066 * @child during its iteration.
5067 *
5068 * If we won the race, @child is associated with %current's
5069 * css_set. Grabbing css_set_rwsem guarantees both that the
5070 * association is stable, and, on completion of the parent's
5071 * migration, @child is visible in the source of migration or
5072 * already in the destination cgroup. This guarantee is necessary
5073 * when implementing operations which need to migrate all tasks of
5074 * a cgroup to another.
5075 *
5076 * Note that if we lose to cgroup_enable_task_cg_links(), @child
5077 * will remain in init_css_set. This is safe because all tasks are
5078 * in the init_css_set before cg_links is enabled and there's no
5079 * operation which transfers all tasks out of init_css_set.
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005080 */
Paul Menage817929e2007-10-18 23:39:36 -07005081 if (use_task_css_set_links) {
Tejun Heoeaf797a2014-02-25 10:04:03 -05005082 struct css_set *cset;
5083
Tejun Heo96d365e2014-02-13 06:58:40 -05005084 down_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005085 cset = task_css_set(current);
Tejun Heoeaf797a2014-02-25 10:04:03 -05005086 if (list_empty(&child->cg_list)) {
5087 rcu_assign_pointer(child->cgroups, cset);
5088 list_add(&child->cg_list, &cset->tasks);
5089 get_css_set(cset);
5090 }
Tejun Heo96d365e2014-02-13 06:58:40 -05005091 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -07005092 }
Tejun Heo5edee612012-10-16 15:03:14 -07005093
5094 /*
5095 * Call ss->fork(). This must happen after @child is linked on
5096 * css_set; otherwise, @child might change state between ->fork()
5097 * and addition to css_set.
5098 */
5099 if (need_forkexit_callback) {
Tejun Heo3ed80a62014-02-08 10:36:58 -05005100 for_each_subsys(ss, i)
Tejun Heo5edee612012-10-16 15:03:14 -07005101 if (ss->fork)
5102 ss->fork(child);
Tejun Heo5edee612012-10-16 15:03:14 -07005103 }
Paul Menage817929e2007-10-18 23:39:36 -07005104}
Tejun Heo5edee612012-10-16 15:03:14 -07005105
Paul Menage817929e2007-10-18 23:39:36 -07005106/**
Paul Menageb4f48b62007-10-18 23:39:33 -07005107 * cgroup_exit - detach cgroup from exiting task
5108 * @tsk: pointer to task_struct of exiting process
5109 *
5110 * Description: Detach cgroup from @tsk and release it.
5111 *
5112 * Note that cgroups marked notify_on_release force every task in
5113 * them to take the global cgroup_mutex mutex when exiting.
5114 * This could impact scaling on very large systems. Be reluctant to
5115 * use notify_on_release cgroups where very high task exit scaling
5116 * is required on large systems.
5117 *
Tejun Heo0e1d7682014-02-25 10:04:03 -05005118 * We set the exiting tasks cgroup to the root cgroup (top_cgroup). We
5119 * call cgroup_exit() while the task is still competent to handle
5120 * notify_on_release(), then leave the task attached to the root cgroup in
5121 * each hierarchy for the remainder of its exit. No need to bother with
5122 * init_css_set refcnting. init_css_set never goes away and we can't race
Li Zefane8604cb2014-03-28 15:18:27 +08005123 * with migration path - PF_EXITING is visible to migration path.
Paul Menageb4f48b62007-10-18 23:39:33 -07005124 */
Li Zefan1ec41832014-03-28 15:22:19 +08005125void cgroup_exit(struct task_struct *tsk)
Paul Menageb4f48b62007-10-18 23:39:33 -07005126{
Tejun Heo30159ec2013-06-25 11:53:37 -07005127 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -07005128 struct css_set *cset;
Tejun Heoeaf797a2014-02-25 10:04:03 -05005129 bool put_cset = false;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005130 int i;
Paul Menage817929e2007-10-18 23:39:36 -07005131
5132 /*
Tejun Heo0e1d7682014-02-25 10:04:03 -05005133 * Unlink from @tsk from its css_set. As migration path can't race
5134 * with us, we can check cg_list without grabbing css_set_rwsem.
Paul Menage817929e2007-10-18 23:39:36 -07005135 */
5136 if (!list_empty(&tsk->cg_list)) {
Tejun Heo96d365e2014-02-13 06:58:40 -05005137 down_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005138 list_del_init(&tsk->cg_list);
Tejun Heo96d365e2014-02-13 06:58:40 -05005139 up_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005140 put_cset = true;
Paul Menage817929e2007-10-18 23:39:36 -07005141 }
5142
Paul Menageb4f48b62007-10-18 23:39:33 -07005143 /* Reassign the task to the init_css_set. */
Tejun Heoa8ad8052013-06-21 15:52:04 -07005144 cset = task_css_set(tsk);
5145 RCU_INIT_POINTER(tsk->cgroups, &init_css_set);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005146
Li Zefan1ec41832014-03-28 15:22:19 +08005147 if (need_forkexit_callback) {
Tejun Heo3ed80a62014-02-08 10:36:58 -05005148 /* see cgroup_post_fork() for details */
5149 for_each_subsys(ss, i) {
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005150 if (ss->exit) {
Tejun Heoeb954192013-08-08 20:11:23 -04005151 struct cgroup_subsys_state *old_css = cset->subsys[i];
5152 struct cgroup_subsys_state *css = task_css(tsk, i);
Tejun Heo30159ec2013-06-25 11:53:37 -07005153
Tejun Heoeb954192013-08-08 20:11:23 -04005154 ss->exit(css, old_css, tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005155 }
5156 }
5157 }
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005158
Tejun Heoeaf797a2014-02-25 10:04:03 -05005159 if (put_cset)
5160 put_css_set(cset, true);
Paul Menageb4f48b62007-10-18 23:39:33 -07005161}
Paul Menage697f4162007-10-18 23:39:34 -07005162
Paul Menagebd89aab2007-10-18 23:40:44 -07005163static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07005164{
Tejun Heof3d46502014-05-16 13:22:52 -04005165 if (cgroup_is_releasable(cgrp) && list_empty(&cgrp->cset_links) &&
5166 !css_has_online_children(&cgrp->self)) {
Li Zefanf50daa72013-03-01 15:06:07 +08005167 /*
5168 * Control Group is currently removeable. If it's not
Paul Menage81a6a5c2007-10-18 23:39:38 -07005169 * already queued for a userspace notification, queue
Li Zefanf50daa72013-03-01 15:06:07 +08005170 * it now
5171 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07005172 int need_schedule_work = 0;
Li Zefanf50daa72013-03-01 15:06:07 +08005173
Thomas Gleixnercdcc136f2009-07-25 16:47:45 +02005174 raw_spin_lock(&release_list_lock);
Tejun Heo54766d42013-06-12 21:04:53 -07005175 if (!cgroup_is_dead(cgrp) &&
Paul Menagebd89aab2007-10-18 23:40:44 -07005176 list_empty(&cgrp->release_list)) {
5177 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005178 need_schedule_work = 1;
5179 }
Thomas Gleixnercdcc136f2009-07-25 16:47:45 +02005180 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005181 if (need_schedule_work)
5182 schedule_work(&release_agent_work);
5183 }
5184}
5185
Paul Menage81a6a5c2007-10-18 23:39:38 -07005186/*
5187 * Notify userspace when a cgroup is released, by running the
5188 * configured release agent with the name of the cgroup (path
5189 * relative to the root of cgroup file system) as the argument.
5190 *
5191 * Most likely, this user command will try to rmdir this cgroup.
5192 *
5193 * This races with the possibility that some other task will be
5194 * attached to this cgroup before it is removed, or that some other
5195 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
5196 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
5197 * unused, and this cgroup will be reprieved from its death sentence,
5198 * to continue to serve a useful existence. Next time it's released,
5199 * we will get notified again, if it still has 'notify_on_release' set.
5200 *
5201 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
5202 * means only wait until the task is successfully execve()'d. The
5203 * separate release agent task is forked by call_usermodehelper(),
5204 * then control in this thread returns here, without waiting for the
5205 * release agent task. We don't bother to wait because the caller of
5206 * this routine has no use for the exit status of the release agent
5207 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07005208 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07005209static void cgroup_release_agent(struct work_struct *work)
5210{
5211 BUG_ON(work != &release_agent_work);
5212 mutex_lock(&cgroup_mutex);
Thomas Gleixnercdcc136f2009-07-25 16:47:45 +02005213 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005214 while (!list_empty(&release_list)) {
5215 char *argv[3], *envp[3];
5216 int i;
Tejun Heoe61734c2014-02-12 09:29:50 -05005217 char *pathbuf = NULL, *agentbuf = NULL, *path;
Paul Menagebd89aab2007-10-18 23:40:44 -07005218 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07005219 struct cgroup,
5220 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07005221 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc136f2009-07-25 16:47:45 +02005222 raw_spin_unlock(&release_list_lock);
Tejun Heoe61734c2014-02-12 09:29:50 -05005223 pathbuf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagee788e0662008-07-25 01:46:59 -07005224 if (!pathbuf)
5225 goto continue_free;
Tejun Heoe61734c2014-02-12 09:29:50 -05005226 path = cgroup_path(cgrp, pathbuf, PATH_MAX);
5227 if (!path)
Paul Menagee788e0662008-07-25 01:46:59 -07005228 goto continue_free;
5229 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
5230 if (!agentbuf)
5231 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005232
5233 i = 0;
Paul Menagee788e0662008-07-25 01:46:59 -07005234 argv[i++] = agentbuf;
Tejun Heoe61734c2014-02-12 09:29:50 -05005235 argv[i++] = path;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005236 argv[i] = NULL;
5237
5238 i = 0;
5239 /* minimal command environment */
5240 envp[i++] = "HOME=/";
5241 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
5242 envp[i] = NULL;
5243
5244 /* Drop the lock while we invoke the usermode helper,
5245 * since the exec could involve hitting disk and hence
5246 * be a slow process */
5247 mutex_unlock(&cgroup_mutex);
5248 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005249 mutex_lock(&cgroup_mutex);
Paul Menagee788e0662008-07-25 01:46:59 -07005250 continue_free:
5251 kfree(pathbuf);
5252 kfree(agentbuf);
Thomas Gleixnercdcc136f2009-07-25 16:47:45 +02005253 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005254 }
Thomas Gleixnercdcc136f2009-07-25 16:47:45 +02005255 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005256 mutex_unlock(&cgroup_mutex);
5257}
Paul Menage8bab8dd2008-04-04 14:29:57 -07005258
5259static int __init cgroup_disable(char *str)
5260{
Tejun Heo30159ec2013-06-25 11:53:37 -07005261 struct cgroup_subsys *ss;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005262 char *token;
Tejun Heo30159ec2013-06-25 11:53:37 -07005263 int i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005264
5265 while ((token = strsep(&str, ",")) != NULL) {
5266 if (!*token)
5267 continue;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005268
Tejun Heo3ed80a62014-02-08 10:36:58 -05005269 for_each_subsys(ss, i) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07005270 if (!strcmp(token, ss->name)) {
5271 ss->disabled = 1;
5272 printk(KERN_INFO "Disabling %s control group"
5273 " subsystem\n", ss->name);
5274 break;
5275 }
5276 }
5277 }
5278 return 1;
5279}
5280__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005281
Tejun Heob77d7b62013-08-13 11:01:54 -04005282/**
Tejun Heoec903c02014-05-13 12:11:01 -04005283 * css_tryget_online_from_dir - get corresponding css from a cgroup dentry
Tejun Heo35cf0832013-08-26 18:40:56 -04005284 * @dentry: directory dentry of interest
5285 * @ss: subsystem of interest
Tejun Heob77d7b62013-08-13 11:01:54 -04005286 *
Tejun Heo5a17f542014-02-11 11:52:47 -05005287 * If @dentry is a directory for a cgroup which has @ss enabled on it, try
5288 * to get the corresponding css and return it. If such css doesn't exist
5289 * or can't be pinned, an ERR_PTR value is returned.
Stephane Eraniane5d13672011-02-14 11:20:01 +02005290 */
Tejun Heoec903c02014-05-13 12:11:01 -04005291struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry,
5292 struct cgroup_subsys *ss)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005293{
Tejun Heo2bd59d42014-02-11 11:52:49 -05005294 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
5295 struct cgroup_subsys_state *css = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005296 struct cgroup *cgrp;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005297
Tejun Heo35cf0832013-08-26 18:40:56 -04005298 /* is @dentry a cgroup dir? */
Tejun Heo2bd59d42014-02-11 11:52:49 -05005299 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
5300 kernfs_type(kn) != KERNFS_DIR)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005301 return ERR_PTR(-EBADF);
5302
Tejun Heo5a17f542014-02-11 11:52:47 -05005303 rcu_read_lock();
5304
Tejun Heo2bd59d42014-02-11 11:52:49 -05005305 /*
5306 * This path doesn't originate from kernfs and @kn could already
5307 * have been or be removed at any point. @kn->priv is RCU
Tejun Heocfc79d52014-05-13 12:19:22 -04005308 * protected for this access. See cgroup_rmdir() for details.
Tejun Heo2bd59d42014-02-11 11:52:49 -05005309 */
5310 cgrp = rcu_dereference(kn->priv);
5311 if (cgrp)
5312 css = cgroup_css(cgrp, ss);
Tejun Heo5a17f542014-02-11 11:52:47 -05005313
Tejun Heoec903c02014-05-13 12:11:01 -04005314 if (!css || !css_tryget_online(css))
Tejun Heo5a17f542014-02-11 11:52:47 -05005315 css = ERR_PTR(-ENOENT);
5316
5317 rcu_read_unlock();
5318 return css;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005319}
Stephane Eraniane5d13672011-02-14 11:20:01 +02005320
Li Zefan1cb650b2013-08-19 10:05:24 +08005321/**
5322 * css_from_id - lookup css by id
5323 * @id: the cgroup id
5324 * @ss: cgroup subsys to be looked into
5325 *
5326 * Returns the css if there's valid one with @id, otherwise returns NULL.
5327 * Should be called under rcu_read_lock().
5328 */
5329struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss)
5330{
Tejun Heo6fa49182014-05-04 15:09:13 -04005331 WARN_ON_ONCE(!rcu_read_lock_held());
Tejun Heo15a4c832014-05-04 15:09:14 -04005332 return idr_find(&ss->css_idr, id);
Stephane Eraniane5d13672011-02-14 11:20:01 +02005333}
5334
Paul Menagefe693432009-09-23 15:56:20 -07005335#ifdef CONFIG_CGROUP_DEBUG
Tejun Heoeb954192013-08-08 20:11:23 -04005336static struct cgroup_subsys_state *
5337debug_css_alloc(struct cgroup_subsys_state *parent_css)
Paul Menagefe693432009-09-23 15:56:20 -07005338{
5339 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
5340
5341 if (!css)
5342 return ERR_PTR(-ENOMEM);
5343
5344 return css;
5345}
5346
Tejun Heoeb954192013-08-08 20:11:23 -04005347static void debug_css_free(struct cgroup_subsys_state *css)
Paul Menagefe693432009-09-23 15:56:20 -07005348{
Tejun Heoeb954192013-08-08 20:11:23 -04005349 kfree(css);
Paul Menagefe693432009-09-23 15:56:20 -07005350}
5351
Tejun Heo182446d2013-08-08 20:11:24 -04005352static u64 debug_taskcount_read(struct cgroup_subsys_state *css,
5353 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005354{
Tejun Heo182446d2013-08-08 20:11:24 -04005355 return cgroup_task_count(css->cgroup);
Paul Menagefe693432009-09-23 15:56:20 -07005356}
5357
Tejun Heo182446d2013-08-08 20:11:24 -04005358static u64 current_css_set_read(struct cgroup_subsys_state *css,
5359 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005360{
5361 return (u64)(unsigned long)current->cgroups;
5362}
5363
Tejun Heo182446d2013-08-08 20:11:24 -04005364static u64 current_css_set_refcount_read(struct cgroup_subsys_state *css,
Li Zefan03c78cb2013-06-14 11:17:19 +08005365 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005366{
5367 u64 count;
5368
5369 rcu_read_lock();
Tejun Heoa8ad8052013-06-21 15:52:04 -07005370 count = atomic_read(&task_css_set(current)->refcount);
Paul Menagefe693432009-09-23 15:56:20 -07005371 rcu_read_unlock();
5372 return count;
5373}
5374
Tejun Heo2da8ca82013-12-05 12:28:04 -05005375static int current_css_set_cg_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005376{
Tejun Heo69d02062013-06-12 21:04:50 -07005377 struct cgrp_cset_link *link;
Tejun Heo5abb8852013-06-12 21:04:49 -07005378 struct css_set *cset;
Tejun Heoe61734c2014-02-12 09:29:50 -05005379 char *name_buf;
Paul Menage7717f7b2009-09-23 15:56:22 -07005380
Tejun Heoe61734c2014-02-12 09:29:50 -05005381 name_buf = kmalloc(NAME_MAX + 1, GFP_KERNEL);
5382 if (!name_buf)
5383 return -ENOMEM;
Paul Menage7717f7b2009-09-23 15:56:22 -07005384
Tejun Heo96d365e2014-02-13 06:58:40 -05005385 down_read(&css_set_rwsem);
Paul Menage7717f7b2009-09-23 15:56:22 -07005386 rcu_read_lock();
Tejun Heo5abb8852013-06-12 21:04:49 -07005387 cset = rcu_dereference(current->cgroups);
Tejun Heo69d02062013-06-12 21:04:50 -07005388 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07005389 struct cgroup *c = link->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -07005390
Tejun Heoa2dd4242014-03-19 10:23:55 -04005391 cgroup_name(c, name_buf, NAME_MAX + 1);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005392 seq_printf(seq, "Root %d group %s\n",
Tejun Heoa2dd4242014-03-19 10:23:55 -04005393 c->root->hierarchy_id, name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07005394 }
5395 rcu_read_unlock();
Tejun Heo96d365e2014-02-13 06:58:40 -05005396 up_read(&css_set_rwsem);
Tejun Heoe61734c2014-02-12 09:29:50 -05005397 kfree(name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07005398 return 0;
5399}
5400
5401#define MAX_TASKS_SHOWN_PER_CSS 25
Tejun Heo2da8ca82013-12-05 12:28:04 -05005402static int cgroup_css_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005403{
Tejun Heo2da8ca82013-12-05 12:28:04 -05005404 struct cgroup_subsys_state *css = seq_css(seq);
Tejun Heo69d02062013-06-12 21:04:50 -07005405 struct cgrp_cset_link *link;
Paul Menage7717f7b2009-09-23 15:56:22 -07005406
Tejun Heo96d365e2014-02-13 06:58:40 -05005407 down_read(&css_set_rwsem);
Tejun Heo182446d2013-08-08 20:11:24 -04005408 list_for_each_entry(link, &css->cgroup->cset_links, cset_link) {
Tejun Heo69d02062013-06-12 21:04:50 -07005409 struct css_set *cset = link->cset;
Paul Menage7717f7b2009-09-23 15:56:22 -07005410 struct task_struct *task;
5411 int count = 0;
Tejun Heoc7561122014-02-25 10:04:01 -05005412
Tejun Heo5abb8852013-06-12 21:04:49 -07005413 seq_printf(seq, "css_set %p\n", cset);
Tejun Heoc7561122014-02-25 10:04:01 -05005414
Tejun Heo5abb8852013-06-12 21:04:49 -07005415 list_for_each_entry(task, &cset->tasks, cg_list) {
Tejun Heoc7561122014-02-25 10:04:01 -05005416 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
5417 goto overflow;
5418 seq_printf(seq, " task %d\n", task_pid_vnr(task));
Paul Menage7717f7b2009-09-23 15:56:22 -07005419 }
Tejun Heoc7561122014-02-25 10:04:01 -05005420
5421 list_for_each_entry(task, &cset->mg_tasks, cg_list) {
5422 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
5423 goto overflow;
5424 seq_printf(seq, " task %d\n", task_pid_vnr(task));
5425 }
5426 continue;
5427 overflow:
5428 seq_puts(seq, " ...\n");
Paul Menage7717f7b2009-09-23 15:56:22 -07005429 }
Tejun Heo96d365e2014-02-13 06:58:40 -05005430 up_read(&css_set_rwsem);
Paul Menage7717f7b2009-09-23 15:56:22 -07005431 return 0;
5432}
5433
Tejun Heo182446d2013-08-08 20:11:24 -04005434static u64 releasable_read(struct cgroup_subsys_state *css, struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005435{
Tejun Heo182446d2013-08-08 20:11:24 -04005436 return test_bit(CGRP_RELEASABLE, &css->cgroup->flags);
Paul Menagefe693432009-09-23 15:56:20 -07005437}
5438
5439static struct cftype debug_files[] = {
5440 {
Paul Menagefe693432009-09-23 15:56:20 -07005441 .name = "taskcount",
5442 .read_u64 = debug_taskcount_read,
5443 },
5444
5445 {
5446 .name = "current_css_set",
5447 .read_u64 = current_css_set_read,
5448 },
5449
5450 {
5451 .name = "current_css_set_refcount",
5452 .read_u64 = current_css_set_refcount_read,
5453 },
5454
5455 {
Paul Menage7717f7b2009-09-23 15:56:22 -07005456 .name = "current_css_set_cg_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005457 .seq_show = current_css_set_cg_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07005458 },
5459
5460 {
5461 .name = "cgroup_css_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005462 .seq_show = cgroup_css_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07005463 },
5464
5465 {
Paul Menagefe693432009-09-23 15:56:20 -07005466 .name = "releasable",
5467 .read_u64 = releasable_read,
5468 },
Paul Menagefe693432009-09-23 15:56:20 -07005469
Tejun Heo4baf6e32012-04-01 12:09:55 -07005470 { } /* terminate */
5471};
Paul Menagefe693432009-09-23 15:56:20 -07005472
Tejun Heo073219e2014-02-08 10:36:58 -05005473struct cgroup_subsys debug_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08005474 .css_alloc = debug_css_alloc,
5475 .css_free = debug_css_free,
Tejun Heo4baf6e32012-04-01 12:09:55 -07005476 .base_cftypes = debug_files,
Paul Menagefe693432009-09-23 15:56:20 -07005477};
5478#endif /* CONFIG_CGROUP_DEBUG */