blob: a46d7e2012b4db7d63eb794833f24c048c2b6c57 [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 Heof8f22e52014-04-23 11:13:16 -0400189static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss);
Tejun Heo9d755d32014-05-14 09:15:02 -0400190static void css_release(struct percpu_ref *ref);
Tejun Heof8f22e52014-04-23 11:13:16 -0400191static void kill_css(struct cgroup_subsys_state *css);
Tejun Heo2bb566c2013-08-08 20:11:23 -0400192static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
193 bool is_add);
Tejun Heob1a21362013-11-29 10:42:58 -0500194static void cgroup_pidlist_destroy_all(struct cgroup *cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -0800195
Tejun Heo6fa49182014-05-04 15:09:13 -0400196/* IDR wrappers which synchronize using cgroup_idr_lock */
197static int cgroup_idr_alloc(struct idr *idr, void *ptr, int start, int end,
198 gfp_t gfp_mask)
199{
200 int ret;
201
202 idr_preload(gfp_mask);
Tejun Heo54504e92014-05-13 12:10:59 -0400203 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400204 ret = idr_alloc(idr, ptr, start, end, gfp_mask);
Tejun Heo54504e92014-05-13 12:10:59 -0400205 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400206 idr_preload_end();
207 return ret;
208}
209
210static void *cgroup_idr_replace(struct idr *idr, void *ptr, int id)
211{
212 void *ret;
213
Tejun Heo54504e92014-05-13 12:10:59 -0400214 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400215 ret = idr_replace(idr, ptr, id);
Tejun Heo54504e92014-05-13 12:10:59 -0400216 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400217 return ret;
218}
219
220static void cgroup_idr_remove(struct idr *idr, int id)
221{
Tejun Heo54504e92014-05-13 12:10:59 -0400222 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400223 idr_remove(idr, id);
Tejun Heo54504e92014-05-13 12:10:59 -0400224 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400225}
226
Tejun Heod51f39b2014-05-16 13:22:48 -0400227static struct cgroup *cgroup_parent(struct cgroup *cgrp)
228{
229 struct cgroup_subsys_state *parent_css = cgrp->self.parent;
230
231 if (parent_css)
232 return container_of(parent_css, struct cgroup, self);
233 return NULL;
234}
235
Tejun Heo95109b62013-08-08 20:11:27 -0400236/**
237 * cgroup_css - obtain a cgroup's css for the specified subsystem
238 * @cgrp: the cgroup of interest
Tejun Heo9d800df2014-05-14 09:15:00 -0400239 * @ss: the subsystem of interest (%NULL returns @cgrp->self)
Tejun Heo95109b62013-08-08 20:11:27 -0400240 *
Tejun Heoca8bdca2013-08-26 18:40:56 -0400241 * Return @cgrp's css (cgroup_subsys_state) associated with @ss. This
242 * function must be called either under cgroup_mutex or rcu_read_lock() and
243 * the caller is responsible for pinning the returned css if it wants to
244 * keep accessing it outside the said locks. This function may return
245 * %NULL if @cgrp doesn't have @subsys_id enabled.
Tejun Heo95109b62013-08-08 20:11:27 -0400246 */
247static struct cgroup_subsys_state *cgroup_css(struct cgroup *cgrp,
Tejun Heoca8bdca2013-08-26 18:40:56 -0400248 struct cgroup_subsys *ss)
Tejun Heo95109b62013-08-08 20:11:27 -0400249{
Tejun Heoca8bdca2013-08-26 18:40:56 -0400250 if (ss)
Tejun Heoaec25022014-02-08 10:36:58 -0500251 return rcu_dereference_check(cgrp->subsys[ss->id],
Tejun Heoace2bee2014-02-11 11:52:47 -0500252 lockdep_is_held(&cgroup_mutex));
Tejun Heoca8bdca2013-08-26 18:40:56 -0400253 else
Tejun Heo9d800df2014-05-14 09:15:00 -0400254 return &cgrp->self;
Tejun Heo95109b62013-08-08 20:11:27 -0400255}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700256
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400257/**
258 * cgroup_e_css - obtain a cgroup's effective css for the specified subsystem
259 * @cgrp: the cgroup of interest
Tejun Heo9d800df2014-05-14 09:15:00 -0400260 * @ss: the subsystem of interest (%NULL returns @cgrp->self)
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400261 *
262 * Similar to cgroup_css() but returns the effctive css, which is defined
263 * as the matching css of the nearest ancestor including self which has @ss
264 * enabled. If @ss is associated with the hierarchy @cgrp is on, this
265 * function is guaranteed to return non-NULL css.
266 */
267static struct cgroup_subsys_state *cgroup_e_css(struct cgroup *cgrp,
268 struct cgroup_subsys *ss)
269{
270 lockdep_assert_held(&cgroup_mutex);
271
272 if (!ss)
Tejun Heo9d800df2014-05-14 09:15:00 -0400273 return &cgrp->self;
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400274
275 if (!(cgrp->root->subsys_mask & (1 << ss->id)))
276 return NULL;
277
Tejun Heod51f39b2014-05-16 13:22:48 -0400278 while (cgroup_parent(cgrp) &&
279 !(cgroup_parent(cgrp)->child_subsys_mask & (1 << ss->id)))
280 cgrp = cgroup_parent(cgrp);
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400281
282 return cgroup_css(cgrp, ss);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700283}
284
Paul Menageddbcc7e2007-10-18 23:39:30 -0700285/* convenient tests for these bits */
Tejun Heo54766d42013-06-12 21:04:53 -0700286static inline bool cgroup_is_dead(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700287{
Tejun Heo184faf32014-05-16 13:22:51 -0400288 return !(cgrp->self.flags & CSS_ONLINE);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700289}
290
Tejun Heob4168642014-05-13 12:16:21 -0400291struct cgroup_subsys_state *of_css(struct kernfs_open_file *of)
Tejun Heo59f52962014-02-11 11:52:49 -0500292{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500293 struct cgroup *cgrp = of->kn->parent->priv;
Tejun Heob4168642014-05-13 12:16:21 -0400294 struct cftype *cft = of_cft(of);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500295
296 /*
297 * This is open and unprotected implementation of cgroup_css().
298 * seq_css() is only called from a kernfs file operation which has
299 * an active reference on the file. Because all the subsystem
300 * files are drained before a css is disassociated with a cgroup,
301 * the matching css from the cgroup's subsys table is guaranteed to
302 * be and stay valid until the enclosing operation is complete.
303 */
304 if (cft->ss)
305 return rcu_dereference_raw(cgrp->subsys[cft->ss->id]);
306 else
Tejun Heo9d800df2014-05-14 09:15:00 -0400307 return &cgrp->self;
Tejun Heo59f52962014-02-11 11:52:49 -0500308}
Tejun Heob4168642014-05-13 12:16:21 -0400309EXPORT_SYMBOL_GPL(of_css);
Tejun Heo59f52962014-02-11 11:52:49 -0500310
Li Zefan78574cf2013-04-08 19:00:38 -0700311/**
312 * cgroup_is_descendant - test ancestry
313 * @cgrp: the cgroup to be tested
314 * @ancestor: possible ancestor of @cgrp
315 *
316 * Test whether @cgrp is a descendant of @ancestor. It also returns %true
317 * if @cgrp == @ancestor. This function is safe to call as long as @cgrp
318 * and @ancestor are accessible.
319 */
320bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor)
321{
322 while (cgrp) {
323 if (cgrp == ancestor)
324 return true;
Tejun Heod51f39b2014-05-16 13:22:48 -0400325 cgrp = cgroup_parent(cgrp);
Li Zefan78574cf2013-04-08 19:00:38 -0700326 }
327 return false;
328}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700329
Adrian Bunke9685a02008-02-07 00:13:46 -0800330static int cgroup_is_releasable(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700331{
332 const int bits =
Paul Menagebd89aab2007-10-18 23:40:44 -0700333 (1 << CGRP_RELEASABLE) |
334 (1 << CGRP_NOTIFY_ON_RELEASE);
335 return (cgrp->flags & bits) == bits;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700336}
337
Adrian Bunke9685a02008-02-07 00:13:46 -0800338static int notify_on_release(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700339{
Paul Menagebd89aab2007-10-18 23:40:44 -0700340 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700341}
342
Tejun Heo30159ec2013-06-25 11:53:37 -0700343/**
Tejun Heo1c6727a2013-12-06 15:11:56 -0500344 * for_each_css - iterate all css's of a cgroup
345 * @css: the iteration cursor
346 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
347 * @cgrp: the target cgroup to iterate css's of
Tejun Heo30159ec2013-06-25 11:53:37 -0700348 *
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400349 * Should be called under cgroup_[tree_]mutex.
Tejun Heo30159ec2013-06-25 11:53:37 -0700350 */
Tejun Heo1c6727a2013-12-06 15:11:56 -0500351#define for_each_css(css, ssid, cgrp) \
352 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
353 if (!((css) = rcu_dereference_check( \
354 (cgrp)->subsys[(ssid)], \
355 lockdep_is_held(&cgroup_mutex)))) { } \
356 else
357
358/**
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400359 * for_each_e_css - iterate all effective css's of a cgroup
360 * @css: the iteration cursor
361 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
362 * @cgrp: the target cgroup to iterate css's of
363 *
364 * Should be called under cgroup_[tree_]mutex.
365 */
366#define for_each_e_css(css, ssid, cgrp) \
367 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
368 if (!((css) = cgroup_e_css(cgrp, cgroup_subsys[(ssid)]))) \
369 ; \
370 else
371
372/**
Tejun Heo3ed80a62014-02-08 10:36:58 -0500373 * for_each_subsys - iterate all enabled cgroup subsystems
Tejun Heo30159ec2013-06-25 11:53:37 -0700374 * @ss: the iteration cursor
Tejun Heo780cd8b2013-12-06 15:11:56 -0500375 * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end
Tejun Heo30159ec2013-06-25 11:53:37 -0700376 */
Tejun Heo780cd8b2013-12-06 15:11:56 -0500377#define for_each_subsys(ss, ssid) \
Tejun Heo3ed80a62014-02-08 10:36:58 -0500378 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT && \
379 (((ss) = cgroup_subsys[ssid]) || true); (ssid)++)
Tejun Heo30159ec2013-06-25 11:53:37 -0700380
Tejun Heo985ed672014-03-19 10:23:53 -0400381/* iterate across the hierarchies */
382#define for_each_root(root) \
Tejun Heo5549c492013-06-24 15:21:48 -0700383 list_for_each_entry((root), &cgroup_roots, root_list)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700384
Tejun Heof8f22e52014-04-23 11:13:16 -0400385/* iterate over child cgrps, lock should be held throughout iteration */
386#define cgroup_for_each_live_child(child, cgrp) \
Tejun Heod5c419b2014-05-16 13:22:48 -0400387 list_for_each_entry((child), &(cgrp)->self.children, self.sibling) \
Tejun Heo8353da12014-05-13 12:19:23 -0400388 if (({ lockdep_assert_held(&cgroup_mutex); \
Tejun Heof8f22e52014-04-23 11:13:16 -0400389 cgroup_is_dead(child); })) \
390 ; \
391 else
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700392
Paul Menage81a6a5c2007-10-18 23:39:38 -0700393/* the list of cgroups eligible for automatic release. Protected by
394 * release_list_lock */
395static LIST_HEAD(release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +0200396static DEFINE_RAW_SPINLOCK(release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700397static void cgroup_release_agent(struct work_struct *work);
398static DECLARE_WORK(release_agent_work, cgroup_release_agent);
Paul Menagebd89aab2007-10-18 23:40:44 -0700399static void check_for_release(struct cgroup *cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700400
Tejun Heo69d02062013-06-12 21:04:50 -0700401/*
402 * A cgroup can be associated with multiple css_sets as different tasks may
403 * belong to different cgroups on different hierarchies. In the other
404 * direction, a css_set is naturally associated with multiple cgroups.
405 * This M:N relationship is represented by the following link structure
406 * which exists for each association and allows traversing the associations
407 * from both sides.
408 */
409struct cgrp_cset_link {
410 /* the cgroup and css_set this link associates */
411 struct cgroup *cgrp;
412 struct css_set *cset;
413
414 /* list of cgrp_cset_links anchored at cgrp->cset_links */
415 struct list_head cset_link;
416
417 /* list of cgrp_cset_links anchored at css_set->cgrp_links */
418 struct list_head cgrp_link;
Paul Menage817929e2007-10-18 23:39:36 -0700419};
420
Tejun Heo172a2c062014-03-19 10:23:53 -0400421/*
422 * The default css_set - used by init and its children prior to any
Paul Menage817929e2007-10-18 23:39:36 -0700423 * hierarchies being mounted. It contains a pointer to the root state
424 * for each subsystem. Also used to anchor the list of css_sets. Not
425 * reference-counted, to improve performance when child cgroups
426 * haven't been created.
427 */
Tejun Heo5024ae22014-05-07 21:31:17 -0400428struct css_set init_css_set = {
Tejun Heo172a2c062014-03-19 10:23:53 -0400429 .refcount = ATOMIC_INIT(1),
430 .cgrp_links = LIST_HEAD_INIT(init_css_set.cgrp_links),
431 .tasks = LIST_HEAD_INIT(init_css_set.tasks),
432 .mg_tasks = LIST_HEAD_INIT(init_css_set.mg_tasks),
433 .mg_preload_node = LIST_HEAD_INIT(init_css_set.mg_preload_node),
434 .mg_node = LIST_HEAD_INIT(init_css_set.mg_node),
435};
Paul Menage817929e2007-10-18 23:39:36 -0700436
Tejun Heo172a2c062014-03-19 10:23:53 -0400437static int css_set_count = 1; /* 1 for init_css_set */
Paul Menage817929e2007-10-18 23:39:36 -0700438
Tejun Heo842b5972014-04-25 18:28:02 -0400439/**
440 * cgroup_update_populated - updated populated count of a cgroup
441 * @cgrp: the target cgroup
442 * @populated: inc or dec populated count
443 *
444 * @cgrp is either getting the first task (css_set) or losing the last.
445 * Update @cgrp->populated_cnt accordingly. The count is propagated
446 * towards root so that a given cgroup's populated_cnt is zero iff the
447 * cgroup and all its descendants are empty.
448 *
449 * @cgrp's interface file "cgroup.populated" is zero if
450 * @cgrp->populated_cnt is zero and 1 otherwise. When @cgrp->populated_cnt
451 * changes from or to zero, userland is notified that the content of the
452 * interface file has changed. This can be used to detect when @cgrp and
453 * its descendants become populated or empty.
454 */
455static void cgroup_update_populated(struct cgroup *cgrp, bool populated)
456{
457 lockdep_assert_held(&css_set_rwsem);
458
459 do {
460 bool trigger;
461
462 if (populated)
463 trigger = !cgrp->populated_cnt++;
464 else
465 trigger = !--cgrp->populated_cnt;
466
467 if (!trigger)
468 break;
469
470 if (cgrp->populated_kn)
471 kernfs_notify(cgrp->populated_kn);
Tejun Heod51f39b2014-05-16 13:22:48 -0400472 cgrp = cgroup_parent(cgrp);
Tejun Heo842b5972014-04-25 18:28:02 -0400473 } while (cgrp);
474}
475
Paul Menage7717f7b2009-09-23 15:56:22 -0700476/*
477 * hash table for cgroup groups. This improves the performance to find
478 * an existing css_set. This hash doesn't (currently) take into
479 * account cgroups in empty hierarchies.
480 */
Li Zefan472b1052008-04-29 01:00:11 -0700481#define CSS_SET_HASH_BITS 7
Li Zefan0ac801f2013-01-10 11:49:27 +0800482static DEFINE_HASHTABLE(css_set_table, CSS_SET_HASH_BITS);
Li Zefan472b1052008-04-29 01:00:11 -0700483
Li Zefan0ac801f2013-01-10 11:49:27 +0800484static unsigned long css_set_hash(struct cgroup_subsys_state *css[])
Li Zefan472b1052008-04-29 01:00:11 -0700485{
Li Zefan0ac801f2013-01-10 11:49:27 +0800486 unsigned long key = 0UL;
Tejun Heo30159ec2013-06-25 11:53:37 -0700487 struct cgroup_subsys *ss;
488 int i;
Li Zefan472b1052008-04-29 01:00:11 -0700489
Tejun Heo30159ec2013-06-25 11:53:37 -0700490 for_each_subsys(ss, i)
Li Zefan0ac801f2013-01-10 11:49:27 +0800491 key += (unsigned long)css[i];
492 key = (key >> 16) ^ key;
Li Zefan472b1052008-04-29 01:00:11 -0700493
Li Zefan0ac801f2013-01-10 11:49:27 +0800494 return key;
Li Zefan472b1052008-04-29 01:00:11 -0700495}
496
Tejun Heo89c55092014-02-13 06:58:40 -0500497static void put_css_set_locked(struct css_set *cset, bool taskexit)
Paul Menageb4f48b62007-10-18 23:39:33 -0700498{
Tejun Heo69d02062013-06-12 21:04:50 -0700499 struct cgrp_cset_link *link, *tmp_link;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400500 struct cgroup_subsys *ss;
501 int ssid;
Tejun Heo5abb8852013-06-12 21:04:49 -0700502
Tejun Heo89c55092014-02-13 06:58:40 -0500503 lockdep_assert_held(&css_set_rwsem);
504
505 if (!atomic_dec_and_test(&cset->refcount))
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700506 return;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700507
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700508 /* This css_set is dead. unlink it and release cgroup refcounts */
Tejun Heo2d8f2432014-04-23 11:13:15 -0400509 for_each_subsys(ss, ssid)
510 list_del(&cset->e_cset_node[ssid]);
Tejun Heo5abb8852013-06-12 21:04:49 -0700511 hash_del(&cset->hlist);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700512 css_set_count--;
513
Tejun Heo69d02062013-06-12 21:04:50 -0700514 list_for_each_entry_safe(link, tmp_link, &cset->cgrp_links, cgrp_link) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700515 struct cgroup *cgrp = link->cgrp;
Tejun Heo5abb8852013-06-12 21:04:49 -0700516
Tejun Heo69d02062013-06-12 21:04:50 -0700517 list_del(&link->cset_link);
518 list_del(&link->cgrp_link);
Li Zefan71b57072013-01-24 14:43:28 +0800519
Tejun Heo96d365e2014-02-13 06:58:40 -0500520 /* @cgrp can't go away while we're holding css_set_rwsem */
Tejun Heo842b5972014-04-25 18:28:02 -0400521 if (list_empty(&cgrp->cset_links)) {
522 cgroup_update_populated(cgrp, false);
523 if (notify_on_release(cgrp)) {
524 if (taskexit)
525 set_bit(CGRP_RELEASABLE, &cgrp->flags);
526 check_for_release(cgrp);
527 }
Paul Menage81a6a5c2007-10-18 23:39:38 -0700528 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700529
530 kfree(link);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700531 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700532
Tejun Heo5abb8852013-06-12 21:04:49 -0700533 kfree_rcu(cset, rcu_head);
Paul Menage817929e2007-10-18 23:39:36 -0700534}
535
Tejun Heo89c55092014-02-13 06:58:40 -0500536static void put_css_set(struct css_set *cset, bool taskexit)
537{
538 /*
539 * Ensure that the refcount doesn't hit zero while any readers
540 * can see it. Similar to atomic_dec_and_lock(), but for an
541 * rwlock
542 */
543 if (atomic_add_unless(&cset->refcount, -1, 1))
544 return;
545
546 down_write(&css_set_rwsem);
547 put_css_set_locked(cset, taskexit);
548 up_write(&css_set_rwsem);
549}
550
Paul Menage817929e2007-10-18 23:39:36 -0700551/*
552 * refcounted get/put for css_set objects
553 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700554static inline void get_css_set(struct css_set *cset)
Paul Menage817929e2007-10-18 23:39:36 -0700555{
Tejun Heo5abb8852013-06-12 21:04:49 -0700556 atomic_inc(&cset->refcount);
Paul Menage817929e2007-10-18 23:39:36 -0700557}
558
Tejun Heob326f9d2013-06-24 15:21:48 -0700559/**
Paul Menage7717f7b2009-09-23 15:56:22 -0700560 * compare_css_sets - helper function for find_existing_css_set().
Tejun Heo5abb8852013-06-12 21:04:49 -0700561 * @cset: candidate css_set being tested
562 * @old_cset: existing css_set for a task
Paul Menage7717f7b2009-09-23 15:56:22 -0700563 * @new_cgrp: cgroup that's being entered by the task
564 * @template: desired set of css pointers in css_set (pre-calculated)
565 *
Li Zefan6f4b7e62013-07-31 16:18:36 +0800566 * Returns true if "cset" matches "old_cset" except for the hierarchy
Paul Menage7717f7b2009-09-23 15:56:22 -0700567 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
568 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700569static bool compare_css_sets(struct css_set *cset,
570 struct css_set *old_cset,
Paul Menage7717f7b2009-09-23 15:56:22 -0700571 struct cgroup *new_cgrp,
572 struct cgroup_subsys_state *template[])
573{
574 struct list_head *l1, *l2;
575
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400576 /*
577 * On the default hierarchy, there can be csets which are
578 * associated with the same set of cgroups but different csses.
579 * Let's first ensure that csses match.
580 */
581 if (memcmp(template, cset->subsys, sizeof(cset->subsys)))
Paul Menage7717f7b2009-09-23 15:56:22 -0700582 return false;
Paul Menage7717f7b2009-09-23 15:56:22 -0700583
584 /*
585 * Compare cgroup pointers in order to distinguish between
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400586 * different cgroups in hierarchies. As different cgroups may
587 * share the same effective css, this comparison is always
588 * necessary.
Paul Menage7717f7b2009-09-23 15:56:22 -0700589 */
Tejun Heo69d02062013-06-12 21:04:50 -0700590 l1 = &cset->cgrp_links;
591 l2 = &old_cset->cgrp_links;
Paul Menage7717f7b2009-09-23 15:56:22 -0700592 while (1) {
Tejun Heo69d02062013-06-12 21:04:50 -0700593 struct cgrp_cset_link *link1, *link2;
Tejun Heo5abb8852013-06-12 21:04:49 -0700594 struct cgroup *cgrp1, *cgrp2;
Paul Menage7717f7b2009-09-23 15:56:22 -0700595
596 l1 = l1->next;
597 l2 = l2->next;
598 /* See if we reached the end - both lists are equal length. */
Tejun Heo69d02062013-06-12 21:04:50 -0700599 if (l1 == &cset->cgrp_links) {
600 BUG_ON(l2 != &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700601 break;
602 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700603 BUG_ON(l2 == &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700604 }
605 /* Locate the cgroups associated with these links. */
Tejun Heo69d02062013-06-12 21:04:50 -0700606 link1 = list_entry(l1, struct cgrp_cset_link, cgrp_link);
607 link2 = list_entry(l2, struct cgrp_cset_link, cgrp_link);
608 cgrp1 = link1->cgrp;
609 cgrp2 = link2->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700610 /* Hierarchies should be linked in the same order. */
Tejun Heo5abb8852013-06-12 21:04:49 -0700611 BUG_ON(cgrp1->root != cgrp2->root);
Paul Menage7717f7b2009-09-23 15:56:22 -0700612
613 /*
614 * If this hierarchy is the hierarchy of the cgroup
615 * that's changing, then we need to check that this
616 * css_set points to the new cgroup; if it's any other
617 * hierarchy, then this css_set should point to the
618 * same cgroup as the old css_set.
619 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700620 if (cgrp1->root == new_cgrp->root) {
621 if (cgrp1 != new_cgrp)
Paul Menage7717f7b2009-09-23 15:56:22 -0700622 return false;
623 } else {
Tejun Heo5abb8852013-06-12 21:04:49 -0700624 if (cgrp1 != cgrp2)
Paul Menage7717f7b2009-09-23 15:56:22 -0700625 return false;
626 }
627 }
628 return true;
629}
630
Tejun Heob326f9d2013-06-24 15:21:48 -0700631/**
632 * find_existing_css_set - init css array and find the matching css_set
633 * @old_cset: the css_set that we're using before the cgroup transition
634 * @cgrp: the cgroup that we're moving into
635 * @template: out param for the new set of csses, should be clear on entry
Paul Menage817929e2007-10-18 23:39:36 -0700636 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700637static struct css_set *find_existing_css_set(struct css_set *old_cset,
638 struct cgroup *cgrp,
639 struct cgroup_subsys_state *template[])
Paul Menage817929e2007-10-18 23:39:36 -0700640{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400641 struct cgroup_root *root = cgrp->root;
Tejun Heo30159ec2013-06-25 11:53:37 -0700642 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -0700643 struct css_set *cset;
Li Zefan0ac801f2013-01-10 11:49:27 +0800644 unsigned long key;
Tejun Heob326f9d2013-06-24 15:21:48 -0700645 int i;
Paul Menage817929e2007-10-18 23:39:36 -0700646
Ben Blumaae8aab2010-03-10 15:22:07 -0800647 /*
648 * Build the set of subsystem state objects that we want to see in the
649 * new css_set. while subsystems can change globally, the entries here
650 * won't change, so no need for locking.
651 */
Tejun Heo30159ec2013-06-25 11:53:37 -0700652 for_each_subsys(ss, i) {
Tejun Heof392e512014-04-23 11:13:14 -0400653 if (root->subsys_mask & (1UL << i)) {
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400654 /*
655 * @ss is in this hierarchy, so we want the
656 * effective css from @cgrp.
657 */
658 template[i] = cgroup_e_css(cgrp, ss);
Paul Menage817929e2007-10-18 23:39:36 -0700659 } else {
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400660 /*
661 * @ss is not in this hierarchy, so we don't want
662 * to change the css.
663 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700664 template[i] = old_cset->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700665 }
666 }
667
Li Zefan0ac801f2013-01-10 11:49:27 +0800668 key = css_set_hash(template);
Tejun Heo5abb8852013-06-12 21:04:49 -0700669 hash_for_each_possible(css_set_table, cset, hlist, key) {
670 if (!compare_css_sets(cset, old_cset, cgrp, template))
Paul Menage7717f7b2009-09-23 15:56:22 -0700671 continue;
672
673 /* This css_set matches what we need */
Tejun Heo5abb8852013-06-12 21:04:49 -0700674 return cset;
Li Zefan472b1052008-04-29 01:00:11 -0700675 }
Paul Menage817929e2007-10-18 23:39:36 -0700676
677 /* No existing cgroup group matched */
678 return NULL;
679}
680
Tejun Heo69d02062013-06-12 21:04:50 -0700681static void free_cgrp_cset_links(struct list_head *links_to_free)
Paul Menage817929e2007-10-18 23:39:36 -0700682{
Tejun Heo69d02062013-06-12 21:04:50 -0700683 struct cgrp_cset_link *link, *tmp_link;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700684
Tejun Heo69d02062013-06-12 21:04:50 -0700685 list_for_each_entry_safe(link, tmp_link, links_to_free, cset_link) {
686 list_del(&link->cset_link);
Paul Menage817929e2007-10-18 23:39:36 -0700687 kfree(link);
688 }
689}
690
Tejun Heo69d02062013-06-12 21:04:50 -0700691/**
692 * allocate_cgrp_cset_links - allocate cgrp_cset_links
693 * @count: the number of links to allocate
694 * @tmp_links: list_head the allocated links are put on
695 *
696 * Allocate @count cgrp_cset_link structures and chain them on @tmp_links
697 * through ->cset_link. Returns 0 on success or -errno.
Li Zefan36553432008-07-29 22:33:19 -0700698 */
Tejun Heo69d02062013-06-12 21:04:50 -0700699static int allocate_cgrp_cset_links(int count, struct list_head *tmp_links)
Li Zefan36553432008-07-29 22:33:19 -0700700{
Tejun Heo69d02062013-06-12 21:04:50 -0700701 struct cgrp_cset_link *link;
Li Zefan36553432008-07-29 22:33:19 -0700702 int i;
Tejun Heo69d02062013-06-12 21:04:50 -0700703
704 INIT_LIST_HEAD(tmp_links);
705
Li Zefan36553432008-07-29 22:33:19 -0700706 for (i = 0; i < count; i++) {
Tejun Heof4f4be22013-06-12 21:04:51 -0700707 link = kzalloc(sizeof(*link), GFP_KERNEL);
Li Zefan36553432008-07-29 22:33:19 -0700708 if (!link) {
Tejun Heo69d02062013-06-12 21:04:50 -0700709 free_cgrp_cset_links(tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700710 return -ENOMEM;
711 }
Tejun Heo69d02062013-06-12 21:04:50 -0700712 list_add(&link->cset_link, tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700713 }
714 return 0;
715}
716
Li Zefanc12f65d2009-01-07 18:07:42 -0800717/**
718 * link_css_set - a helper function to link a css_set to a cgroup
Tejun Heo69d02062013-06-12 21:04:50 -0700719 * @tmp_links: cgrp_cset_link objects allocated by allocate_cgrp_cset_links()
Tejun Heo5abb8852013-06-12 21:04:49 -0700720 * @cset: the css_set to be linked
Li Zefanc12f65d2009-01-07 18:07:42 -0800721 * @cgrp: the destination cgroup
722 */
Tejun Heo69d02062013-06-12 21:04:50 -0700723static void link_css_set(struct list_head *tmp_links, struct css_set *cset,
724 struct cgroup *cgrp)
Li Zefanc12f65d2009-01-07 18:07:42 -0800725{
Tejun Heo69d02062013-06-12 21:04:50 -0700726 struct cgrp_cset_link *link;
Li Zefanc12f65d2009-01-07 18:07:42 -0800727
Tejun Heo69d02062013-06-12 21:04:50 -0700728 BUG_ON(list_empty(tmp_links));
Tejun Heo6803c002014-04-23 11:13:16 -0400729
730 if (cgroup_on_dfl(cgrp))
731 cset->dfl_cgrp = cgrp;
732
Tejun Heo69d02062013-06-12 21:04:50 -0700733 link = list_first_entry(tmp_links, struct cgrp_cset_link, cset_link);
734 link->cset = cset;
Paul Menage7717f7b2009-09-23 15:56:22 -0700735 link->cgrp = cgrp;
Tejun Heo842b5972014-04-25 18:28:02 -0400736
737 if (list_empty(&cgrp->cset_links))
738 cgroup_update_populated(cgrp, true);
Tejun Heo69d02062013-06-12 21:04:50 -0700739 list_move(&link->cset_link, &cgrp->cset_links);
Tejun Heo842b5972014-04-25 18:28:02 -0400740
Paul Menage7717f7b2009-09-23 15:56:22 -0700741 /*
742 * Always add links to the tail of the list so that the list
743 * is sorted by order of hierarchy creation
744 */
Tejun Heo69d02062013-06-12 21:04:50 -0700745 list_add_tail(&link->cgrp_link, &cset->cgrp_links);
Li Zefanc12f65d2009-01-07 18:07:42 -0800746}
747
Tejun Heob326f9d2013-06-24 15:21:48 -0700748/**
749 * find_css_set - return a new css_set with one cgroup updated
750 * @old_cset: the baseline css_set
751 * @cgrp: the cgroup to be updated
752 *
753 * Return a new css_set that's equivalent to @old_cset, but with @cgrp
754 * substituted into the appropriate hierarchy.
Paul Menage817929e2007-10-18 23:39:36 -0700755 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700756static struct css_set *find_css_set(struct css_set *old_cset,
757 struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700758{
Tejun Heob326f9d2013-06-24 15:21:48 -0700759 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT] = { };
Tejun Heo5abb8852013-06-12 21:04:49 -0700760 struct css_set *cset;
Tejun Heo69d02062013-06-12 21:04:50 -0700761 struct list_head tmp_links;
762 struct cgrp_cset_link *link;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400763 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +0800764 unsigned long key;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400765 int ssid;
Li Zefan472b1052008-04-29 01:00:11 -0700766
Tejun Heob326f9d2013-06-24 15:21:48 -0700767 lockdep_assert_held(&cgroup_mutex);
768
Paul Menage817929e2007-10-18 23:39:36 -0700769 /* First see if we already have a cgroup group that matches
770 * the desired set */
Tejun Heo96d365e2014-02-13 06:58:40 -0500771 down_read(&css_set_rwsem);
Tejun Heo5abb8852013-06-12 21:04:49 -0700772 cset = find_existing_css_set(old_cset, cgrp, template);
773 if (cset)
774 get_css_set(cset);
Tejun Heo96d365e2014-02-13 06:58:40 -0500775 up_read(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700776
Tejun Heo5abb8852013-06-12 21:04:49 -0700777 if (cset)
778 return cset;
Paul Menage817929e2007-10-18 23:39:36 -0700779
Tejun Heof4f4be22013-06-12 21:04:51 -0700780 cset = kzalloc(sizeof(*cset), GFP_KERNEL);
Tejun Heo5abb8852013-06-12 21:04:49 -0700781 if (!cset)
Paul Menage817929e2007-10-18 23:39:36 -0700782 return NULL;
783
Tejun Heo69d02062013-06-12 21:04:50 -0700784 /* Allocate all the cgrp_cset_link objects that we'll need */
Tejun Heo9871bf92013-06-24 15:21:47 -0700785 if (allocate_cgrp_cset_links(cgroup_root_count, &tmp_links) < 0) {
Tejun Heo5abb8852013-06-12 21:04:49 -0700786 kfree(cset);
Paul Menage817929e2007-10-18 23:39:36 -0700787 return NULL;
788 }
789
Tejun Heo5abb8852013-06-12 21:04:49 -0700790 atomic_set(&cset->refcount, 1);
Tejun Heo69d02062013-06-12 21:04:50 -0700791 INIT_LIST_HEAD(&cset->cgrp_links);
Tejun Heo5abb8852013-06-12 21:04:49 -0700792 INIT_LIST_HEAD(&cset->tasks);
Tejun Heoc7561122014-02-25 10:04:01 -0500793 INIT_LIST_HEAD(&cset->mg_tasks);
Tejun Heo1958d2d2014-02-25 10:04:03 -0500794 INIT_LIST_HEAD(&cset->mg_preload_node);
Tejun Heob3dc0942014-02-25 10:04:01 -0500795 INIT_LIST_HEAD(&cset->mg_node);
Tejun Heo5abb8852013-06-12 21:04:49 -0700796 INIT_HLIST_NODE(&cset->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700797
798 /* Copy the set of subsystem state objects generated in
799 * find_existing_css_set() */
Tejun Heo5abb8852013-06-12 21:04:49 -0700800 memcpy(cset->subsys, template, sizeof(cset->subsys));
Paul Menage817929e2007-10-18 23:39:36 -0700801
Tejun Heo96d365e2014-02-13 06:58:40 -0500802 down_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700803 /* Add reference counts and links from the new css_set. */
Tejun Heo69d02062013-06-12 21:04:50 -0700804 list_for_each_entry(link, &old_cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700805 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700806
Paul Menage7717f7b2009-09-23 15:56:22 -0700807 if (c->root == cgrp->root)
808 c = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700809 link_css_set(&tmp_links, cset, c);
Paul Menage7717f7b2009-09-23 15:56:22 -0700810 }
Paul Menage817929e2007-10-18 23:39:36 -0700811
Tejun Heo69d02062013-06-12 21:04:50 -0700812 BUG_ON(!list_empty(&tmp_links));
Paul Menage817929e2007-10-18 23:39:36 -0700813
Paul Menage817929e2007-10-18 23:39:36 -0700814 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -0700815
Tejun Heo2d8f2432014-04-23 11:13:15 -0400816 /* Add @cset to the hash table */
Tejun Heo5abb8852013-06-12 21:04:49 -0700817 key = css_set_hash(cset->subsys);
818 hash_add(css_set_table, &cset->hlist, key);
Li Zefan472b1052008-04-29 01:00:11 -0700819
Tejun Heo2d8f2432014-04-23 11:13:15 -0400820 for_each_subsys(ss, ssid)
821 list_add_tail(&cset->e_cset_node[ssid],
822 &cset->subsys[ssid]->cgroup->e_csets[ssid]);
823
Tejun Heo96d365e2014-02-13 06:58:40 -0500824 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700825
Tejun Heo5abb8852013-06-12 21:04:49 -0700826 return cset;
Paul Menageb4f48b62007-10-18 23:39:33 -0700827}
828
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400829static struct cgroup_root *cgroup_root_from_kf(struct kernfs_root *kf_root)
Paul Menage7717f7b2009-09-23 15:56:22 -0700830{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400831 struct cgroup *root_cgrp = kf_root->kn->priv;
Tejun Heo2bd59d42014-02-11 11:52:49 -0500832
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400833 return root_cgrp->root;
Tejun Heo2bd59d42014-02-11 11:52:49 -0500834}
835
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400836static int cgroup_init_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -0500837{
838 int id;
839
840 lockdep_assert_held(&cgroup_mutex);
841
Tejun Heo985ed672014-03-19 10:23:53 -0400842 id = idr_alloc_cyclic(&cgroup_hierarchy_idr, root, 0, 0, GFP_KERNEL);
Tejun Heof2e85d52014-02-11 11:52:49 -0500843 if (id < 0)
844 return id;
845
846 root->hierarchy_id = id;
847 return 0;
848}
849
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400850static void cgroup_exit_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -0500851{
852 lockdep_assert_held(&cgroup_mutex);
853
854 if (root->hierarchy_id) {
855 idr_remove(&cgroup_hierarchy_idr, root->hierarchy_id);
856 root->hierarchy_id = 0;
857 }
858}
859
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400860static void cgroup_free_root(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -0500861{
862 if (root) {
863 /* hierarhcy ID shoulid already have been released */
864 WARN_ON_ONCE(root->hierarchy_id);
865
866 idr_destroy(&root->cgroup_idr);
867 kfree(root);
868 }
869}
870
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400871static void cgroup_destroy_root(struct cgroup_root *root)
Tejun Heo59f52962014-02-11 11:52:49 -0500872{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400873 struct cgroup *cgrp = &root->cgrp;
Tejun Heof2e85d52014-02-11 11:52:49 -0500874 struct cgrp_cset_link *link, *tmp_link;
Tejun Heof2e85d52014-02-11 11:52:49 -0500875
Tejun Heo2bd59d42014-02-11 11:52:49 -0500876 mutex_lock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -0500877
Tejun Heo776f02f2014-02-12 09:29:50 -0500878 BUG_ON(atomic_read(&root->nr_cgrps));
Tejun Heod5c419b2014-05-16 13:22:48 -0400879 BUG_ON(!list_empty(&cgrp->self.children));
Tejun Heof2e85d52014-02-11 11:52:49 -0500880
Tejun Heof2e85d52014-02-11 11:52:49 -0500881 /* Rebind all subsystems back to the default hierarchy */
Tejun Heof392e512014-04-23 11:13:14 -0400882 rebind_subsystems(&cgrp_dfl_root, root->subsys_mask);
Tejun Heof2e85d52014-02-11 11:52:49 -0500883
884 /*
885 * Release all the links from cset_links to this hierarchy's
886 * root cgroup
887 */
Tejun Heo96d365e2014-02-13 06:58:40 -0500888 down_write(&css_set_rwsem);
Tejun Heof2e85d52014-02-11 11:52:49 -0500889
890 list_for_each_entry_safe(link, tmp_link, &cgrp->cset_links, cset_link) {
891 list_del(&link->cset_link);
892 list_del(&link->cgrp_link);
893 kfree(link);
894 }
Tejun Heo96d365e2014-02-13 06:58:40 -0500895 up_write(&css_set_rwsem);
Tejun Heof2e85d52014-02-11 11:52:49 -0500896
897 if (!list_empty(&root->root_list)) {
898 list_del(&root->root_list);
899 cgroup_root_count--;
900 }
901
902 cgroup_exit_root_id(root);
903
904 mutex_unlock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -0500905
Tejun Heo2bd59d42014-02-11 11:52:49 -0500906 kernfs_destroy_root(root->kf_root);
Tejun Heof2e85d52014-02-11 11:52:49 -0500907 cgroup_free_root(root);
908}
909
Tejun Heoceb6a082014-02-25 10:04:02 -0500910/* look up cgroup associated with given css_set on the specified hierarchy */
911static struct cgroup *cset_cgroup_from_root(struct css_set *cset,
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400912 struct cgroup_root *root)
Paul Menage7717f7b2009-09-23 15:56:22 -0700913{
Paul Menage7717f7b2009-09-23 15:56:22 -0700914 struct cgroup *res = NULL;
915
Tejun Heo96d365e2014-02-13 06:58:40 -0500916 lockdep_assert_held(&cgroup_mutex);
917 lockdep_assert_held(&css_set_rwsem);
918
Tejun Heo5abb8852013-06-12 21:04:49 -0700919 if (cset == &init_css_set) {
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400920 res = &root->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700921 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700922 struct cgrp_cset_link *link;
923
924 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700925 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700926
Paul Menage7717f7b2009-09-23 15:56:22 -0700927 if (c->root == root) {
928 res = c;
929 break;
930 }
931 }
932 }
Tejun Heo96d365e2014-02-13 06:58:40 -0500933
Paul Menage7717f7b2009-09-23 15:56:22 -0700934 BUG_ON(!res);
935 return res;
936}
937
938/*
Tejun Heoceb6a082014-02-25 10:04:02 -0500939 * Return the cgroup for "task" from the given hierarchy. Must be
940 * called with cgroup_mutex and css_set_rwsem held.
941 */
942static struct cgroup *task_cgroup_from_root(struct task_struct *task,
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400943 struct cgroup_root *root)
Tejun Heoceb6a082014-02-25 10:04:02 -0500944{
945 /*
946 * No need to lock the task - since we hold cgroup_mutex the
947 * task can't change groups, so the only thing that can happen
948 * is that it exits and its css is set back to init_css_set.
949 */
950 return cset_cgroup_from_root(task_css_set(task), root);
951}
952
953/*
Paul Menageddbcc7e2007-10-18 23:39:30 -0700954 * A task must hold cgroup_mutex to modify cgroups.
955 *
956 * Any task can increment and decrement the count field without lock.
957 * So in general, code holding cgroup_mutex can't rely on the count
958 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -0800959 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -0700960 * means that no tasks are currently attached, therefore there is no
961 * way a task attached to that cgroup can fork (the other way to
962 * increment the count). So code holding cgroup_mutex can safely
963 * assume that if the count is zero, it will stay zero. Similarly, if
964 * a task holds cgroup_mutex on a cgroup with zero count, it
965 * knows that the cgroup won't be removed, as cgroup_rmdir()
966 * needs that mutex.
967 *
Paul Menageddbcc7e2007-10-18 23:39:30 -0700968 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
969 * (usually) take cgroup_mutex. These are the two most performance
970 * critical pieces of code here. The exception occurs on cgroup_exit(),
971 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
972 * is taken, and if the cgroup count is zero, a usermode call made
Li Zefana043e3b2008-02-23 15:24:09 -0800973 * to the release agent with the name of the cgroup (path relative to
974 * the root of cgroup file system) as the argument.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700975 *
976 * A cgroup can only be deleted if both its 'count' of using tasks
977 * is zero, and its list of 'children' cgroups is empty. Since all
978 * tasks in the system use _some_ cgroup, and since there is always at
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400979 * least one task in the system (init, pid == 1), therefore, root cgroup
Paul Menageddbcc7e2007-10-18 23:39:30 -0700980 * always has either children cgroups and/or using tasks. So we don't
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400981 * need a special hack to ensure that root cgroup cannot be deleted.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700982 *
983 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -0800984 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700985 */
986
Tejun Heo69dfa002014-05-04 15:09:13 -0400987static int cgroup_populate_dir(struct cgroup *cgrp, unsigned int subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500988static struct kernfs_syscall_ops cgroup_kf_syscall_ops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700989static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -0700990
Tejun Heo8d7e6fb2014-02-11 11:52:48 -0500991static char *cgroup_file_name(struct cgroup *cgrp, const struct cftype *cft,
992 char *buf)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700993{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -0500994 if (cft->ss && !(cft->flags & CFTYPE_NO_PREFIX) &&
995 !(cgrp->root->flags & CGRP_ROOT_NOPREFIX))
996 snprintf(buf, CGROUP_FILE_NAME_MAX, "%s.%s",
997 cft->ss->name, cft->name);
998 else
999 strncpy(buf, cft->name, CGROUP_FILE_NAME_MAX);
1000 return buf;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001001}
1002
Tejun Heof2e85d52014-02-11 11:52:49 -05001003/**
1004 * cgroup_file_mode - deduce file mode of a control file
1005 * @cft: the control file in question
1006 *
1007 * returns cft->mode if ->mode is not 0
1008 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
1009 * returns S_IRUGO if it has only a read handler
1010 * returns S_IWUSR if it has only a write hander
1011 */
1012static umode_t cgroup_file_mode(const struct cftype *cft)
Li Zefan65dff752013-03-01 15:01:56 +08001013{
Tejun Heof2e85d52014-02-11 11:52:49 -05001014 umode_t mode = 0;
Li Zefan65dff752013-03-01 15:01:56 +08001015
Tejun Heof2e85d52014-02-11 11:52:49 -05001016 if (cft->mode)
1017 return cft->mode;
1018
1019 if (cft->read_u64 || cft->read_s64 || cft->seq_show)
1020 mode |= S_IRUGO;
1021
Tejun Heo6770c642014-05-13 12:16:21 -04001022 if (cft->write_u64 || cft->write_s64 || cft->write)
Tejun Heof2e85d52014-02-11 11:52:49 -05001023 mode |= S_IWUSR;
1024
1025 return mode;
Li Zefan65dff752013-03-01 15:01:56 +08001026}
1027
Tejun Heo59f52962014-02-11 11:52:49 -05001028static void cgroup_get(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001029{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001030 WARN_ON_ONCE(cgroup_is_dead(cgrp));
Tejun Heo9d755d32014-05-14 09:15:02 -04001031 css_get(&cgrp->self);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001032}
1033
Tejun Heo59f52962014-02-11 11:52:49 -05001034static void cgroup_put(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001035{
Tejun Heo9d755d32014-05-14 09:15:02 -04001036 css_put(&cgrp->self);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001037}
1038
Tejun Heoa9746d82014-05-13 12:19:22 -04001039/**
1040 * cgroup_kn_unlock - unlocking helper for cgroup kernfs methods
1041 * @kn: the kernfs_node being serviced
1042 *
1043 * This helper undoes cgroup_kn_lock_live() and should be invoked before
1044 * the method finishes if locking succeeded. Note that once this function
1045 * returns the cgroup returned by cgroup_kn_lock_live() may become
1046 * inaccessible any time. If the caller intends to continue to access the
1047 * cgroup, it should pin it before invoking this function.
1048 */
1049static void cgroup_kn_unlock(struct kernfs_node *kn)
1050{
1051 struct cgroup *cgrp;
1052
1053 if (kernfs_type(kn) == KERNFS_DIR)
1054 cgrp = kn->priv;
1055 else
1056 cgrp = kn->parent->priv;
1057
1058 mutex_unlock(&cgroup_mutex);
Tejun Heoa9746d82014-05-13 12:19:22 -04001059
1060 kernfs_unbreak_active_protection(kn);
1061 cgroup_put(cgrp);
1062}
1063
1064/**
1065 * cgroup_kn_lock_live - locking helper for cgroup kernfs methods
1066 * @kn: the kernfs_node being serviced
1067 *
1068 * This helper is to be used by a cgroup kernfs method currently servicing
1069 * @kn. It breaks the active protection, performs cgroup locking and
1070 * verifies that the associated cgroup is alive. Returns the cgroup if
1071 * alive; otherwise, %NULL. A successful return should be undone by a
1072 * matching cgroup_kn_unlock() invocation.
1073 *
1074 * Any cgroup kernfs method implementation which requires locking the
1075 * associated cgroup should use this helper. It avoids nesting cgroup
1076 * locking under kernfs active protection and allows all kernfs operations
1077 * including self-removal.
1078 */
1079static struct cgroup *cgroup_kn_lock_live(struct kernfs_node *kn)
1080{
1081 struct cgroup *cgrp;
1082
1083 if (kernfs_type(kn) == KERNFS_DIR)
1084 cgrp = kn->priv;
1085 else
1086 cgrp = kn->parent->priv;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001087
1088 /*
Tejun Heo01f64742014-05-13 12:19:23 -04001089 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoa9746d82014-05-13 12:19:22 -04001090 * active_ref. cgroup liveliness check alone provides enough
1091 * protection against removal. Ensure @cgrp stays accessible and
1092 * break the active_ref protection.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001093 */
Tejun Heoa9746d82014-05-13 12:19:22 -04001094 cgroup_get(cgrp);
1095 kernfs_break_active_protection(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001096
Tejun Heoa9746d82014-05-13 12:19:22 -04001097 mutex_lock(&cgroup_mutex);
1098
1099 if (!cgroup_is_dead(cgrp))
1100 return cgrp;
1101
1102 cgroup_kn_unlock(kn);
1103 return NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001104}
1105
Li Zefan2739d3c2013-01-21 18:18:33 +08001106static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001107{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001108 char name[CGROUP_FILE_NAME_MAX];
Paul Menageddbcc7e2007-10-18 23:39:30 -07001109
Tejun Heo01f64742014-05-13 12:19:23 -04001110 lockdep_assert_held(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001111 kernfs_remove_by_name(cgrp->kn, cgroup_file_name(cgrp, cft, name));
Tejun Heo05ef1d72012-04-01 12:09:56 -07001112}
1113
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001114/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07001115 * cgroup_clear_dir - remove subsys files in a cgroup directory
Tejun Heo8f891402013-06-28 16:24:10 -07001116 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001117 * @subsys_mask: mask of the subsystem ids whose files should be removed
1118 */
Tejun Heo69dfa002014-05-04 15:09:13 -04001119static void cgroup_clear_dir(struct cgroup *cgrp, unsigned int subsys_mask)
Tejun Heo05ef1d72012-04-01 12:09:56 -07001120{
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001121 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07001122 int i;
Tejun Heo05ef1d72012-04-01 12:09:56 -07001123
Tejun Heob420ba72013-07-12 12:34:02 -07001124 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -05001125 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -07001126
Tejun Heo69dfa002014-05-04 15:09:13 -04001127 if (!(subsys_mask & (1 << i)))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001128 continue;
Tejun Heo0adb0702014-02-12 09:29:48 -05001129 list_for_each_entry(cfts, &ss->cfts, node)
1130 cgroup_addrm_files(cgrp, cfts, false);
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001131 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001132}
1133
Tejun Heo69dfa002014-05-04 15:09:13 -04001134static int rebind_subsystems(struct cgroup_root *dst_root, unsigned int ss_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001135{
Tejun Heo30159ec2013-06-25 11:53:37 -07001136 struct cgroup_subsys *ss;
Tejun Heo5533e012014-05-14 19:33:07 -04001137 unsigned int tmp_ss_mask;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001138 int ssid, i, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001139
Tejun Heoace2bee2014-02-11 11:52:47 -05001140 lockdep_assert_held(&cgroup_mutex);
Ben Blumaae8aab2010-03-10 15:22:07 -08001141
Tejun Heo5df36032014-03-19 10:23:54 -04001142 for_each_subsys(ss, ssid) {
1143 if (!(ss_mask & (1 << ssid)))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001144 continue;
Tejun Heo30159ec2013-06-25 11:53:37 -07001145
Tejun Heo7fd8c562014-04-23 11:13:16 -04001146 /* if @ss has non-root csses attached to it, can't move */
1147 if (css_next_child(NULL, cgroup_css(&ss->root->cgrp, ss)))
Tejun Heo3ed80a62014-02-08 10:36:58 -05001148 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001149
Tejun Heo5df36032014-03-19 10:23:54 -04001150 /* can't move between two non-dummy roots either */
Tejun Heo7fd8c562014-04-23 11:13:16 -04001151 if (ss->root != &cgrp_dfl_root && dst_root != &cgrp_dfl_root)
Tejun Heo5df36032014-03-19 10:23:54 -04001152 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001153 }
1154
Tejun Heo5533e012014-05-14 19:33:07 -04001155 /* skip creating root files on dfl_root for inhibited subsystems */
1156 tmp_ss_mask = ss_mask;
1157 if (dst_root == &cgrp_dfl_root)
1158 tmp_ss_mask &= ~cgrp_dfl_root_inhibit_ss_mask;
1159
1160 ret = cgroup_populate_dir(&dst_root->cgrp, tmp_ss_mask);
Tejun Heoa2dd4242014-03-19 10:23:55 -04001161 if (ret) {
1162 if (dst_root != &cgrp_dfl_root)
Tejun Heo5df36032014-03-19 10:23:54 -04001163 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001164
Tejun Heoa2dd4242014-03-19 10:23:55 -04001165 /*
1166 * Rebinding back to the default root is not allowed to
1167 * fail. Using both default and non-default roots should
1168 * be rare. Moving subsystems back and forth even more so.
1169 * Just warn about it and continue.
1170 */
1171 if (cgrp_dfl_root_visible) {
Tejun Heo69dfa002014-05-04 15:09:13 -04001172 pr_warn("failed to create files (%d) while rebinding 0x%x to default root\n",
Jianyu Zhana2a1f9e2014-04-25 18:28:03 -04001173 ret, ss_mask);
Joe Perchesed3d2612014-04-25 18:28:03 -04001174 pr_warn("you may retry by moving them to a different hierarchy and unbinding\n");
Tejun Heoa2dd4242014-03-19 10:23:55 -04001175 }
Tejun Heo5df36032014-03-19 10:23:54 -04001176 }
Tejun Heo31261212013-06-28 17:07:30 -07001177
1178 /*
1179 * Nothing can fail from this point on. Remove files for the
1180 * removed subsystems and rebind each subsystem.
1181 */
Tejun Heo5df36032014-03-19 10:23:54 -04001182 for_each_subsys(ss, ssid)
Tejun Heoa2dd4242014-03-19 10:23:55 -04001183 if (ss_mask & (1 << ssid))
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001184 cgroup_clear_dir(&ss->root->cgrp, 1 << ssid);
Tejun Heo31261212013-06-28 17:07:30 -07001185
Tejun Heo5df36032014-03-19 10:23:54 -04001186 for_each_subsys(ss, ssid) {
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001187 struct cgroup_root *src_root;
Tejun Heo5df36032014-03-19 10:23:54 -04001188 struct cgroup_subsys_state *css;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001189 struct css_set *cset;
Tejun Heo30159ec2013-06-25 11:53:37 -07001190
Tejun Heo5df36032014-03-19 10:23:54 -04001191 if (!(ss_mask & (1 << ssid)))
1192 continue;
Tejun Heoa8a648c2013-06-24 15:21:47 -07001193
Tejun Heo5df36032014-03-19 10:23:54 -04001194 src_root = ss->root;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001195 css = cgroup_css(&src_root->cgrp, ss);
Tejun Heo73e80ed2013-08-13 11:01:55 -04001196
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001197 WARN_ON(!css || cgroup_css(&dst_root->cgrp, ss));
Tejun Heoa8a648c2013-06-24 15:21:47 -07001198
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001199 RCU_INIT_POINTER(src_root->cgrp.subsys[ssid], NULL);
1200 rcu_assign_pointer(dst_root->cgrp.subsys[ssid], css);
Tejun Heo5df36032014-03-19 10:23:54 -04001201 ss->root = dst_root;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001202 css->cgroup = &dst_root->cgrp;
Tejun Heoa8a648c2013-06-24 15:21:47 -07001203
Tejun Heo2d8f2432014-04-23 11:13:15 -04001204 down_write(&css_set_rwsem);
1205 hash_for_each(css_set_table, i, cset, hlist)
1206 list_move_tail(&cset->e_cset_node[ss->id],
1207 &dst_root->cgrp.e_csets[ss->id]);
1208 up_write(&css_set_rwsem);
1209
Tejun Heof392e512014-04-23 11:13:14 -04001210 src_root->subsys_mask &= ~(1 << ssid);
1211 src_root->cgrp.child_subsys_mask &= ~(1 << ssid);
1212
Tejun Heobd53d612014-04-23 11:13:16 -04001213 /* default hierarchy doesn't enable controllers by default */
Tejun Heof392e512014-04-23 11:13:14 -04001214 dst_root->subsys_mask |= 1 << ssid;
Tejun Heobd53d612014-04-23 11:13:16 -04001215 if (dst_root != &cgrp_dfl_root)
1216 dst_root->cgrp.child_subsys_mask |= 1 << ssid;
Tejun Heo73e80ed2013-08-13 11:01:55 -04001217
Tejun Heo5df36032014-03-19 10:23:54 -04001218 if (ss->bind)
1219 ss->bind(css);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001220 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001221
Tejun Heoa2dd4242014-03-19 10:23:55 -04001222 kernfs_activate(dst_root->cgrp.kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001223 return 0;
1224}
1225
Tejun Heo2bd59d42014-02-11 11:52:49 -05001226static int cgroup_show_options(struct seq_file *seq,
1227 struct kernfs_root *kf_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001228{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001229 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001230 struct cgroup_subsys *ss;
Tejun Heob85d2042013-12-06 15:11:57 -05001231 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001232
Tejun Heob85d2042013-12-06 15:11:57 -05001233 for_each_subsys(ss, ssid)
Tejun Heof392e512014-04-23 11:13:14 -04001234 if (root->subsys_mask & (1 << ssid))
Tejun Heob85d2042013-12-06 15:11:57 -05001235 seq_printf(seq, ",%s", ss->name);
Tejun Heo873fe092013-04-14 20:15:26 -07001236 if (root->flags & CGRP_ROOT_SANE_BEHAVIOR)
1237 seq_puts(seq, ",sane_behavior");
Tejun Heo93438622013-04-14 20:15:25 -07001238 if (root->flags & CGRP_ROOT_NOPREFIX)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001239 seq_puts(seq, ",noprefix");
Tejun Heo93438622013-04-14 20:15:25 -07001240 if (root->flags & CGRP_ROOT_XATTR)
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001241 seq_puts(seq, ",xattr");
Tejun Heo69e943b2014-02-08 10:36:58 -05001242
1243 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001244 if (strlen(root->release_agent_path))
1245 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Tejun Heo69e943b2014-02-08 10:36:58 -05001246 spin_unlock(&release_agent_path_lock);
1247
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001248 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags))
Daniel Lezcano97978e62010-10-27 15:33:35 -07001249 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001250 if (strlen(root->name))
1251 seq_printf(seq, ",name=%s", root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001252 return 0;
1253}
1254
1255struct cgroup_sb_opts {
Tejun Heo69dfa002014-05-04 15:09:13 -04001256 unsigned int subsys_mask;
1257 unsigned int flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001258 char *release_agent;
Tejun Heo2260e7f2012-11-19 08:13:38 -08001259 bool cpuset_clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001260 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001261 /* User explicitly requested empty subsystem */
1262 bool none;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001263};
1264
Ben Blumcf5d5942010-03-10 15:22:09 -08001265static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001266{
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001267 char *token, *o = data;
1268 bool all_ss = false, one_ss = false;
Tejun Heo69dfa002014-05-04 15:09:13 -04001269 unsigned int mask = -1U;
Tejun Heo30159ec2013-06-25 11:53:37 -07001270 struct cgroup_subsys *ss;
1271 int i;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001272
1273#ifdef CONFIG_CPUSETS
Tejun Heo69dfa002014-05-04 15:09:13 -04001274 mask = ~(1U << cpuset_cgrp_id);
Li Zefanf9ab5b52009-06-17 16:26:33 -07001275#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001276
Paul Menagec6d57f32009-09-23 15:56:19 -07001277 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001278
1279 while ((token = strsep(&o, ",")) != NULL) {
1280 if (!*token)
1281 return -EINVAL;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001282 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001283 /* Explicitly have no subsystems */
1284 opts->none = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001285 continue;
1286 }
1287 if (!strcmp(token, "all")) {
1288 /* Mutually exclusive option 'all' + subsystem name */
1289 if (one_ss)
1290 return -EINVAL;
1291 all_ss = true;
1292 continue;
1293 }
Tejun Heo873fe092013-04-14 20:15:26 -07001294 if (!strcmp(token, "__DEVEL__sane_behavior")) {
1295 opts->flags |= CGRP_ROOT_SANE_BEHAVIOR;
1296 continue;
1297 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001298 if (!strcmp(token, "noprefix")) {
Tejun Heo93438622013-04-14 20:15:25 -07001299 opts->flags |= CGRP_ROOT_NOPREFIX;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001300 continue;
1301 }
1302 if (!strcmp(token, "clone_children")) {
Tejun Heo2260e7f2012-11-19 08:13:38 -08001303 opts->cpuset_clone_children = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001304 continue;
1305 }
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001306 if (!strcmp(token, "xattr")) {
Tejun Heo93438622013-04-14 20:15:25 -07001307 opts->flags |= CGRP_ROOT_XATTR;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001308 continue;
1309 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001310 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001311 /* Specifying two release agents is forbidden */
1312 if (opts->release_agent)
1313 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001314 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001315 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001316 if (!opts->release_agent)
1317 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001318 continue;
1319 }
1320 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001321 const char *name = token + 5;
1322 /* Can't specify an empty name */
1323 if (!strlen(name))
1324 return -EINVAL;
1325 /* Must match [\w.-]+ */
1326 for (i = 0; i < strlen(name); i++) {
1327 char c = name[i];
1328 if (isalnum(c))
1329 continue;
1330 if ((c == '.') || (c == '-') || (c == '_'))
1331 continue;
1332 return -EINVAL;
1333 }
1334 /* Specifying two names is forbidden */
1335 if (opts->name)
1336 return -EINVAL;
1337 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001338 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001339 GFP_KERNEL);
1340 if (!opts->name)
1341 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001342
1343 continue;
1344 }
1345
Tejun Heo30159ec2013-06-25 11:53:37 -07001346 for_each_subsys(ss, i) {
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001347 if (strcmp(token, ss->name))
1348 continue;
1349 if (ss->disabled)
1350 continue;
1351
1352 /* Mutually exclusive option 'all' + subsystem name */
1353 if (all_ss)
1354 return -EINVAL;
Tejun Heo69dfa002014-05-04 15:09:13 -04001355 opts->subsys_mask |= (1 << i);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001356 one_ss = true;
1357
1358 break;
1359 }
1360 if (i == CGROUP_SUBSYS_COUNT)
1361 return -ENOENT;
1362 }
1363
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001364 /* Consistency checks */
1365
Tejun Heo873fe092013-04-14 20:15:26 -07001366 if (opts->flags & CGRP_ROOT_SANE_BEHAVIOR) {
Joe Perchesed3d2612014-04-25 18:28:03 -04001367 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 -07001368
Tejun Heod3ba07c2014-02-13 06:58:38 -05001369 if ((opts->flags & (CGRP_ROOT_NOPREFIX | CGRP_ROOT_XATTR)) ||
1370 opts->cpuset_clone_children || opts->release_agent ||
1371 opts->name) {
Joe Perchesed3d2612014-04-25 18:28:03 -04001372 pr_err("sane_behavior: noprefix, xattr, clone_children, release_agent and name are not allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001373 return -EINVAL;
1374 }
Tejun Heoa2dd4242014-03-19 10:23:55 -04001375 } else {
1376 /*
1377 * If the 'all' option was specified select all the
1378 * subsystems, otherwise if 'none', 'name=' and a subsystem
1379 * name options were not specified, let's default to 'all'
1380 */
1381 if (all_ss || (!one_ss && !opts->none && !opts->name))
1382 for_each_subsys(ss, i)
1383 if (!ss->disabled)
Tejun Heo69dfa002014-05-04 15:09:13 -04001384 opts->subsys_mask |= (1 << i);
Tejun Heo873fe092013-04-14 20:15:26 -07001385
Tejun Heoa2dd4242014-03-19 10:23:55 -04001386 /*
1387 * We either have to specify by name or by subsystems. (So
1388 * all empty hierarchies must have a name).
1389 */
1390 if (!opts->subsys_mask && !opts->name)
Tejun Heo873fe092013-04-14 20:15:26 -07001391 return -EINVAL;
Tejun Heo873fe092013-04-14 20:15:26 -07001392 }
1393
Li Zefanf9ab5b52009-06-17 16:26:33 -07001394 /*
1395 * Option noprefix was introduced just for backward compatibility
1396 * with the old cpuset, so we allow noprefix only if mounting just
1397 * the cpuset subsystem.
1398 */
Tejun Heo93438622013-04-14 20:15:25 -07001399 if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask))
Li Zefanf9ab5b52009-06-17 16:26:33 -07001400 return -EINVAL;
1401
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001402
1403 /* Can't specify "none" and some subsystems */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001404 if (opts->subsys_mask && opts->none)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001405 return -EINVAL;
1406
Paul Menageddbcc7e2007-10-18 23:39:30 -07001407 return 0;
1408}
1409
Tejun Heo2bd59d42014-02-11 11:52:49 -05001410static int cgroup_remount(struct kernfs_root *kf_root, int *flags, char *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001411{
1412 int ret = 0;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001413 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001414 struct cgroup_sb_opts opts;
Tejun Heo69dfa002014-05-04 15:09:13 -04001415 unsigned int added_mask, removed_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001416
Tejun Heo873fe092013-04-14 20:15:26 -07001417 if (root->flags & CGRP_ROOT_SANE_BEHAVIOR) {
Joe Perchesed3d2612014-04-25 18:28:03 -04001418 pr_err("sane_behavior: remount is not allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001419 return -EINVAL;
1420 }
1421
Paul Menageddbcc7e2007-10-18 23:39:30 -07001422 mutex_lock(&cgroup_mutex);
1423
1424 /* See what subsystems are wanted */
1425 ret = parse_cgroupfs_options(data, &opts);
1426 if (ret)
1427 goto out_unlock;
1428
Tejun Heof392e512014-04-23 11:13:14 -04001429 if (opts.subsys_mask != root->subsys_mask || opts.release_agent)
Joe Perchesed3d2612014-04-25 18:28:03 -04001430 pr_warn("option changes via remount are deprecated (pid=%d comm=%s)\n",
Jianyu Zhana2a1f9e2014-04-25 18:28:03 -04001431 task_tgid_nr(current), current->comm);
Tejun Heo8b5a5a92012-04-01 12:09:54 -07001432
Tejun Heof392e512014-04-23 11:13:14 -04001433 added_mask = opts.subsys_mask & ~root->subsys_mask;
1434 removed_mask = root->subsys_mask & ~opts.subsys_mask;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001435
Ben Blumcf5d5942010-03-10 15:22:09 -08001436 /* Don't allow flags or name to change at remount */
Tejun Heo0ce6cba2013-06-27 19:37:26 -07001437 if (((opts.flags ^ root->flags) & CGRP_ROOT_OPTION_MASK) ||
Ben Blumcf5d5942010-03-10 15:22:09 -08001438 (opts.name && strcmp(opts.name, root->name))) {
Tejun Heo69dfa002014-05-04 15:09:13 -04001439 pr_err("option or name mismatch, new: 0x%x \"%s\", old: 0x%x \"%s\"\n",
Tejun Heo0ce6cba2013-06-27 19:37:26 -07001440 opts.flags & CGRP_ROOT_OPTION_MASK, opts.name ?: "",
1441 root->flags & CGRP_ROOT_OPTION_MASK, root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001442 ret = -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001443 goto out_unlock;
1444 }
1445
Tejun Heof172e672013-06-28 17:07:30 -07001446 /* remounting is not allowed for populated hierarchies */
Tejun Heod5c419b2014-05-16 13:22:48 -04001447 if (!list_empty(&root->cgrp.self.children)) {
Tejun Heof172e672013-06-28 17:07:30 -07001448 ret = -EBUSY;
Li Zefan0670e082009-04-02 16:57:30 -07001449 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001450 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001451
Tejun Heo5df36032014-03-19 10:23:54 -04001452 ret = rebind_subsystems(root, added_mask);
Tejun Heo31261212013-06-28 17:07:30 -07001453 if (ret)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001454 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001455
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001456 rebind_subsystems(&cgrp_dfl_root, removed_mask);
Tejun Heo5df36032014-03-19 10:23:54 -04001457
Tejun Heo69e943b2014-02-08 10:36:58 -05001458 if (opts.release_agent) {
1459 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001460 strcpy(root->release_agent_path, opts.release_agent);
Tejun Heo69e943b2014-02-08 10:36:58 -05001461 spin_unlock(&release_agent_path_lock);
1462 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001463 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001464 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001465 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001466 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001467 return ret;
1468}
1469
Tejun Heoafeb0f92014-02-13 06:58:39 -05001470/*
1471 * To reduce the fork() overhead for systems that are not actually using
1472 * their cgroups capability, we don't maintain the lists running through
1473 * each css_set to its tasks until we see the list actually used - in other
1474 * words after the first mount.
1475 */
1476static bool use_task_css_set_links __read_mostly;
1477
1478static void cgroup_enable_task_cg_lists(void)
1479{
1480 struct task_struct *p, *g;
1481
Tejun Heo96d365e2014-02-13 06:58:40 -05001482 down_write(&css_set_rwsem);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001483
1484 if (use_task_css_set_links)
1485 goto out_unlock;
1486
1487 use_task_css_set_links = true;
1488
1489 /*
1490 * We need tasklist_lock because RCU is not safe against
1491 * while_each_thread(). Besides, a forking task that has passed
1492 * cgroup_post_fork() without seeing use_task_css_set_links = 1
1493 * is not guaranteed to have its child immediately visible in the
1494 * tasklist if we walk through it with RCU.
1495 */
1496 read_lock(&tasklist_lock);
1497 do_each_thread(g, p) {
Tejun Heoafeb0f92014-02-13 06:58:39 -05001498 WARN_ON_ONCE(!list_empty(&p->cg_list) ||
1499 task_css_set(p) != &init_css_set);
1500
1501 /*
1502 * We should check if the process is exiting, otherwise
1503 * it will race with cgroup_exit() in that the list
1504 * entry won't be deleted though the process has exited.
Tejun Heof153ad12014-02-25 09:56:49 -05001505 * Do it while holding siglock so that we don't end up
1506 * racing against cgroup_exit().
Tejun Heoafeb0f92014-02-13 06:58:39 -05001507 */
Tejun Heof153ad12014-02-25 09:56:49 -05001508 spin_lock_irq(&p->sighand->siglock);
Tejun Heoeaf797a2014-02-25 10:04:03 -05001509 if (!(p->flags & PF_EXITING)) {
1510 struct css_set *cset = task_css_set(p);
1511
1512 list_add(&p->cg_list, &cset->tasks);
1513 get_css_set(cset);
1514 }
Tejun Heof153ad12014-02-25 09:56:49 -05001515 spin_unlock_irq(&p->sighand->siglock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001516 } while_each_thread(g, p);
1517 read_unlock(&tasklist_lock);
1518out_unlock:
Tejun Heo96d365e2014-02-13 06:58:40 -05001519 up_write(&css_set_rwsem);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001520}
Paul Menageddbcc7e2007-10-18 23:39:30 -07001521
Paul Menagecc31edc2008-10-18 20:28:04 -07001522static void init_cgroup_housekeeping(struct cgroup *cgrp)
1523{
Tejun Heo2d8f2432014-04-23 11:13:15 -04001524 struct cgroup_subsys *ss;
1525 int ssid;
1526
Tejun Heod5c419b2014-05-16 13:22:48 -04001527 INIT_LIST_HEAD(&cgrp->self.sibling);
1528 INIT_LIST_HEAD(&cgrp->self.children);
Tejun Heo69d02062013-06-12 21:04:50 -07001529 INIT_LIST_HEAD(&cgrp->cset_links);
Paul Menagecc31edc2008-10-18 20:28:04 -07001530 INIT_LIST_HEAD(&cgrp->release_list);
Ben Blum72a8cb32009-09-23 15:56:27 -07001531 INIT_LIST_HEAD(&cgrp->pidlists);
1532 mutex_init(&cgrp->pidlist_mutex);
Tejun Heo9d800df2014-05-14 09:15:00 -04001533 cgrp->self.cgroup = cgrp;
Tejun Heo184faf32014-05-16 13:22:51 -04001534 cgrp->self.flags |= CSS_ONLINE;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001535
1536 for_each_subsys(ss, ssid)
1537 INIT_LIST_HEAD(&cgrp->e_csets[ssid]);
Tejun Heof8f22e52014-04-23 11:13:16 -04001538
1539 init_waitqueue_head(&cgrp->offline_waitq);
Paul Menagecc31edc2008-10-18 20:28:04 -07001540}
Paul Menagec6d57f32009-09-23 15:56:19 -07001541
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001542static void init_cgroup_root(struct cgroup_root *root,
Tejun Heo172a2c062014-03-19 10:23:53 -04001543 struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001544{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001545 struct cgroup *cgrp = &root->cgrp;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001546
Paul Menageddbcc7e2007-10-18 23:39:30 -07001547 INIT_LIST_HEAD(&root->root_list);
Tejun Heo3c9c8252014-02-12 09:29:50 -05001548 atomic_set(&root->nr_cgrps, 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001549 cgrp->root = root;
Paul Menagecc31edc2008-10-18 20:28:04 -07001550 init_cgroup_housekeeping(cgrp);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08001551 idr_init(&root->cgroup_idr);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001552
Paul Menagec6d57f32009-09-23 15:56:19 -07001553 root->flags = opts->flags;
1554 if (opts->release_agent)
1555 strcpy(root->release_agent_path, opts->release_agent);
1556 if (opts->name)
1557 strcpy(root->name, opts->name);
Tejun Heo2260e7f2012-11-19 08:13:38 -08001558 if (opts->cpuset_clone_children)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001559 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001560}
1561
Tejun Heo69dfa002014-05-04 15:09:13 -04001562static int cgroup_setup_root(struct cgroup_root *root, unsigned int ss_mask)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001563{
Tejun Heod427dfe2014-02-11 11:52:48 -05001564 LIST_HEAD(tmp_links);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001565 struct cgroup *root_cgrp = &root->cgrp;
Tejun Heod427dfe2014-02-11 11:52:48 -05001566 struct css_set *cset;
Tejun Heod427dfe2014-02-11 11:52:48 -05001567 int i, ret;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001568
Tejun Heod427dfe2014-02-11 11:52:48 -05001569 lockdep_assert_held(&cgroup_mutex);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001570
Tejun Heo6fa49182014-05-04 15:09:13 -04001571 ret = cgroup_idr_alloc(&root->cgroup_idr, root_cgrp, 1, 2, GFP_NOWAIT);
Tejun Heod427dfe2014-02-11 11:52:48 -05001572 if (ret < 0)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001573 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001574 root_cgrp->id = ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001575
Tejun Heo9d755d32014-05-14 09:15:02 -04001576 ret = percpu_ref_init(&root_cgrp->self.refcnt, css_release);
1577 if (ret)
1578 goto out;
1579
Tejun Heod427dfe2014-02-11 11:52:48 -05001580 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05001581 * We're accessing css_set_count without locking css_set_rwsem here,
Tejun Heod427dfe2014-02-11 11:52:48 -05001582 * but that's OK - it can only be increased by someone holding
1583 * cgroup_lock, and that's us. The worst that can happen is that we
1584 * have some link structures left over
1585 */
1586 ret = allocate_cgrp_cset_links(css_set_count, &tmp_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001587 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001588 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001589
Tejun Heo985ed672014-03-19 10:23:53 -04001590 ret = cgroup_init_root_id(root);
Tejun Heod427dfe2014-02-11 11:52:48 -05001591 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001592 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001593
Tejun Heo2bd59d42014-02-11 11:52:49 -05001594 root->kf_root = kernfs_create_root(&cgroup_kf_syscall_ops,
1595 KERNFS_ROOT_CREATE_DEACTIVATED,
1596 root_cgrp);
1597 if (IS_ERR(root->kf_root)) {
1598 ret = PTR_ERR(root->kf_root);
1599 goto exit_root_id;
1600 }
1601 root_cgrp->kn = root->kf_root->kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001602
Tejun Heod427dfe2014-02-11 11:52:48 -05001603 ret = cgroup_addrm_files(root_cgrp, cgroup_base_files, true);
1604 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001605 goto destroy_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001606
Tejun Heo5df36032014-03-19 10:23:54 -04001607 ret = rebind_subsystems(root, ss_mask);
Tejun Heod427dfe2014-02-11 11:52:48 -05001608 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001609 goto destroy_root;
Al Viro0df6a632010-12-21 13:29:29 -05001610
Tejun Heod427dfe2014-02-11 11:52:48 -05001611 /*
1612 * There must be no failure case after here, since rebinding takes
1613 * care of subsystems' refcounts, which are explicitly dropped in
1614 * the failure exit path.
1615 */
1616 list_add(&root->root_list, &cgroup_roots);
1617 cgroup_root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001618
Tejun Heod427dfe2014-02-11 11:52:48 -05001619 /*
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001620 * Link the root cgroup in this hierarchy into all the css_set
Tejun Heod427dfe2014-02-11 11:52:48 -05001621 * objects.
1622 */
Tejun Heo96d365e2014-02-13 06:58:40 -05001623 down_write(&css_set_rwsem);
Tejun Heod427dfe2014-02-11 11:52:48 -05001624 hash_for_each(css_set_table, i, cset, hlist)
1625 link_css_set(&tmp_links, cset, root_cgrp);
Tejun Heo96d365e2014-02-13 06:58:40 -05001626 up_write(&css_set_rwsem);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001627
Tejun Heod5c419b2014-05-16 13:22:48 -04001628 BUG_ON(!list_empty(&root_cgrp->self.children));
Tejun Heo3c9c8252014-02-12 09:29:50 -05001629 BUG_ON(atomic_read(&root->nr_cgrps) != 1);
Tejun Heod427dfe2014-02-11 11:52:48 -05001630
Tejun Heo2bd59d42014-02-11 11:52:49 -05001631 kernfs_activate(root_cgrp->kn);
Tejun Heod427dfe2014-02-11 11:52:48 -05001632 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001633 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001634
Tejun Heo2bd59d42014-02-11 11:52:49 -05001635destroy_root:
1636 kernfs_destroy_root(root->kf_root);
1637 root->kf_root = NULL;
1638exit_root_id:
Tejun Heod427dfe2014-02-11 11:52:48 -05001639 cgroup_exit_root_id(root);
Tejun Heo9d755d32014-05-14 09:15:02 -04001640cancel_ref:
1641 percpu_ref_cancel_init(&root_cgrp->self.refcnt);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001642out:
Tejun Heod427dfe2014-02-11 11:52:48 -05001643 free_cgrp_cset_links(&tmp_links);
1644 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001645}
1646
Al Virof7e83572010-07-26 13:23:11 +04001647static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001648 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001649 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001650{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001651 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001652 struct cgroup_sb_opts opts;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001653 struct dentry *dentry;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001654 int ret;
Li Zefanc6b3d5b2014-04-04 17:14:41 +08001655 bool new_sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001656
1657 /*
Tejun Heo56fde9e2014-02-13 06:58:38 -05001658 * The first time anyone tries to mount a cgroup, enable the list
1659 * linking each css_set to its tasks and fix up all existing tasks.
Paul Menagec6d57f32009-09-23 15:56:19 -07001660 */
Tejun Heo56fde9e2014-02-13 06:58:38 -05001661 if (!use_task_css_set_links)
1662 cgroup_enable_task_cg_lists();
Li Zefane37a06f2014-04-17 13:53:08 +08001663
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001664 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001665
Paul Menageddbcc7e2007-10-18 23:39:30 -07001666 /* First find the desired set of subsystems */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001667 ret = parse_cgroupfs_options(data, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001668 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001669 goto out_unlock;
Tejun Heoa015edd2014-05-14 09:15:00 -04001670
Tejun Heo2bd59d42014-02-11 11:52:49 -05001671 /* look for a matching existing root */
Tejun Heoa2dd4242014-03-19 10:23:55 -04001672 if (!opts.subsys_mask && !opts.none && !opts.name) {
1673 cgrp_dfl_root_visible = true;
1674 root = &cgrp_dfl_root;
1675 cgroup_get(&root->cgrp);
1676 ret = 0;
1677 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001678 }
1679
Tejun Heo985ed672014-03-19 10:23:53 -04001680 for_each_root(root) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05001681 bool name_match = false;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001682
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001683 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04001684 continue;
Paul Menagec6d57f32009-09-23 15:56:19 -07001685
Paul Menage817929e2007-10-18 23:39:36 -07001686 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05001687 * If we asked for a name then it must match. Also, if
1688 * name matches but sybsys_mask doesn't, we should fail.
1689 * Remember whether name matched.
Paul Menage817929e2007-10-18 23:39:36 -07001690 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05001691 if (opts.name) {
1692 if (strcmp(opts.name, root->name))
1693 continue;
1694 name_match = true;
1695 }
Tejun Heo31261212013-06-28 17:07:30 -07001696
1697 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05001698 * If we asked for subsystems (or explicitly for no
1699 * subsystems) then they must match.
Tejun Heo31261212013-06-28 17:07:30 -07001700 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05001701 if ((opts.subsys_mask || opts.none) &&
Tejun Heof392e512014-04-23 11:13:14 -04001702 (opts.subsys_mask != root->subsys_mask)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05001703 if (!name_match)
1704 continue;
1705 ret = -EBUSY;
1706 goto out_unlock;
1707 }
Tejun Heo873fe092013-04-14 20:15:26 -07001708
Tejun Heoc7ba8282013-06-29 14:06:10 -07001709 if ((root->flags ^ opts.flags) & CGRP_ROOT_OPTION_MASK) {
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001710 if ((root->flags | opts.flags) & CGRP_ROOT_SANE_BEHAVIOR) {
Joe Perchesed3d2612014-04-25 18:28:03 -04001711 pr_err("sane_behavior: new mount options should match the existing superblock\n");
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001712 ret = -EINVAL;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001713 goto out_unlock;
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001714 } else {
Joe Perchesed3d2612014-04-25 18:28:03 -04001715 pr_warn("new mount options do not match the existing superblock, will be ignored\n");
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001716 }
Tejun Heo873fe092013-04-14 20:15:26 -07001717 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05001718
Tejun Heo776f02f2014-02-12 09:29:50 -05001719 /*
Tejun Heo9d755d32014-05-14 09:15:02 -04001720 * A root's lifetime is governed by its root cgroup.
1721 * tryget_live failure indicate that the root is being
1722 * destroyed. Wait for destruction to complete so that the
1723 * subsystems are free. We can use wait_queue for the wait
1724 * but this path is super cold. Let's just sleep for a bit
1725 * and retry.
Tejun Heo776f02f2014-02-12 09:29:50 -05001726 */
Tejun Heo9d755d32014-05-14 09:15:02 -04001727 if (!percpu_ref_tryget_live(&root->cgrp.self.refcnt)) {
Tejun Heo776f02f2014-02-12 09:29:50 -05001728 mutex_unlock(&cgroup_mutex);
Tejun Heo776f02f2014-02-12 09:29:50 -05001729 msleep(10);
Tejun Heoa015edd2014-05-14 09:15:00 -04001730 ret = restart_syscall();
1731 goto out_free;
Tejun Heo776f02f2014-02-12 09:29:50 -05001732 }
1733
1734 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001735 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001736 }
1737
Tejun Heo172a2c062014-03-19 10:23:53 -04001738 /*
1739 * No such thing, create a new one. name= matching without subsys
1740 * specification is allowed for already existing hierarchies but we
1741 * can't create new one without subsys specification.
1742 */
1743 if (!opts.subsys_mask && !opts.none) {
1744 ret = -EINVAL;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001745 goto out_unlock;
1746 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001747
Tejun Heo172a2c062014-03-19 10:23:53 -04001748 root = kzalloc(sizeof(*root), GFP_KERNEL);
1749 if (!root) {
1750 ret = -ENOMEM;
1751 goto out_unlock;
1752 }
1753
1754 init_cgroup_root(root, &opts);
1755
Tejun Heo35585572014-02-13 06:58:38 -05001756 ret = cgroup_setup_root(root, opts.subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001757 if (ret)
1758 cgroup_free_root(root);
1759
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001760out_unlock:
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001761 mutex_unlock(&cgroup_mutex);
Tejun Heoa015edd2014-05-14 09:15:00 -04001762out_free:
Paul Menagec6d57f32009-09-23 15:56:19 -07001763 kfree(opts.release_agent);
1764 kfree(opts.name);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001765
Tejun Heo2bd59d42014-02-11 11:52:49 -05001766 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001767 return ERR_PTR(ret);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001768
Jianyu Zhanc9482a52014-04-26 15:40:28 +08001769 dentry = kernfs_mount(fs_type, flags, root->kf_root,
1770 CGROUP_SUPER_MAGIC, &new_sb);
Li Zefanc6b3d5b2014-04-04 17:14:41 +08001771 if (IS_ERR(dentry) || !new_sb)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001772 cgroup_put(&root->cgrp);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001773 return dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001774}
1775
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09001776static void cgroup_kill_sb(struct super_block *sb)
1777{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001778 struct kernfs_root *kf_root = kernfs_root_from_sb(sb);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001779 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001780
Tejun Heo9d755d32014-05-14 09:15:02 -04001781 /*
1782 * If @root doesn't have any mounts or children, start killing it.
1783 * This prevents new mounts by disabling percpu_ref_tryget_live().
1784 * cgroup_mount() may wait for @root's release.
Li Zefan1f779fb2014-06-04 16:48:15 +08001785 *
1786 * And don't kill the default root.
Tejun Heo9d755d32014-05-14 09:15:02 -04001787 */
Li Zefan1f779fb2014-06-04 16:48:15 +08001788 if (css_has_online_children(&root->cgrp.self) ||
1789 root == &cgrp_dfl_root)
Tejun Heo9d755d32014-05-14 09:15:02 -04001790 cgroup_put(&root->cgrp);
1791 else
1792 percpu_ref_kill(&root->cgrp.self.refcnt);
1793
Tejun Heo2bd59d42014-02-11 11:52:49 -05001794 kernfs_kill_sb(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001795}
1796
1797static struct file_system_type cgroup_fs_type = {
1798 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001799 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001800 .kill_sb = cgroup_kill_sb,
1801};
1802
Greg KH676db4a2010-08-05 13:53:35 -07001803static struct kobject *cgroup_kobj;
1804
Li Zefana043e3b2008-02-23 15:24:09 -08001805/**
Tejun Heo913ffdb2013-07-11 16:34:48 -07001806 * task_cgroup_path - cgroup path of a task in the first cgroup hierarchy
Tejun Heo857a2be2013-04-14 20:50:08 -07001807 * @task: target task
Tejun Heo857a2be2013-04-14 20:50:08 -07001808 * @buf: the buffer to write the path into
1809 * @buflen: the length of the buffer
1810 *
Tejun Heo913ffdb2013-07-11 16:34:48 -07001811 * Determine @task's cgroup on the first (the one with the lowest non-zero
1812 * hierarchy_id) cgroup hierarchy and copy its path into @buf. This
1813 * function grabs cgroup_mutex and shouldn't be used inside locks used by
1814 * cgroup controller callbacks.
1815 *
Tejun Heoe61734c2014-02-12 09:29:50 -05001816 * Return value is the same as kernfs_path().
Tejun Heo857a2be2013-04-14 20:50:08 -07001817 */
Tejun Heoe61734c2014-02-12 09:29:50 -05001818char *task_cgroup_path(struct task_struct *task, char *buf, size_t buflen)
Tejun Heo857a2be2013-04-14 20:50:08 -07001819{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001820 struct cgroup_root *root;
Tejun Heo913ffdb2013-07-11 16:34:48 -07001821 struct cgroup *cgrp;
Tejun Heoe61734c2014-02-12 09:29:50 -05001822 int hierarchy_id = 1;
1823 char *path = NULL;
Tejun Heo857a2be2013-04-14 20:50:08 -07001824
1825 mutex_lock(&cgroup_mutex);
Tejun Heo96d365e2014-02-13 06:58:40 -05001826 down_read(&css_set_rwsem);
Tejun Heo857a2be2013-04-14 20:50:08 -07001827
Tejun Heo913ffdb2013-07-11 16:34:48 -07001828 root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id);
1829
Tejun Heo857a2be2013-04-14 20:50:08 -07001830 if (root) {
1831 cgrp = task_cgroup_from_root(task, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05001832 path = cgroup_path(cgrp, buf, buflen);
Tejun Heo913ffdb2013-07-11 16:34:48 -07001833 } else {
1834 /* if no hierarchy exists, everyone is in "/" */
Tejun Heoe61734c2014-02-12 09:29:50 -05001835 if (strlcpy(buf, "/", buflen) < buflen)
1836 path = buf;
Tejun Heo857a2be2013-04-14 20:50:08 -07001837 }
1838
Tejun Heo96d365e2014-02-13 06:58:40 -05001839 up_read(&css_set_rwsem);
Tejun Heo857a2be2013-04-14 20:50:08 -07001840 mutex_unlock(&cgroup_mutex);
Tejun Heoe61734c2014-02-12 09:29:50 -05001841 return path;
Tejun Heo857a2be2013-04-14 20:50:08 -07001842}
Tejun Heo913ffdb2013-07-11 16:34:48 -07001843EXPORT_SYMBOL_GPL(task_cgroup_path);
Tejun Heo857a2be2013-04-14 20:50:08 -07001844
Tejun Heob3dc0942014-02-25 10:04:01 -05001845/* used to track tasks and other necessary states during migration */
Tejun Heo2f7ee562011-12-12 18:12:21 -08001846struct cgroup_taskset {
Tejun Heob3dc0942014-02-25 10:04:01 -05001847 /* the src and dst cset list running through cset->mg_node */
1848 struct list_head src_csets;
1849 struct list_head dst_csets;
1850
1851 /*
1852 * Fields for cgroup_taskset_*() iteration.
1853 *
1854 * Before migration is committed, the target migration tasks are on
1855 * ->mg_tasks of the csets on ->src_csets. After, on ->mg_tasks of
1856 * the csets on ->dst_csets. ->csets point to either ->src_csets
1857 * or ->dst_csets depending on whether migration is committed.
1858 *
1859 * ->cur_csets and ->cur_task point to the current task position
1860 * during iteration.
1861 */
1862 struct list_head *csets;
1863 struct css_set *cur_cset;
1864 struct task_struct *cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001865};
1866
1867/**
1868 * cgroup_taskset_first - reset taskset and return the first task
1869 * @tset: taskset of interest
1870 *
1871 * @tset iteration is initialized and the first task is returned.
1872 */
1873struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
1874{
Tejun Heob3dc0942014-02-25 10:04:01 -05001875 tset->cur_cset = list_first_entry(tset->csets, struct css_set, mg_node);
1876 tset->cur_task = NULL;
1877
1878 return cgroup_taskset_next(tset);
Tejun Heo2f7ee562011-12-12 18:12:21 -08001879}
Tejun Heo2f7ee562011-12-12 18:12:21 -08001880
1881/**
1882 * cgroup_taskset_next - iterate to the next task in taskset
1883 * @tset: taskset of interest
1884 *
1885 * Return the next task in @tset. Iteration must have been initialized
1886 * with cgroup_taskset_first().
1887 */
1888struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
1889{
Tejun Heob3dc0942014-02-25 10:04:01 -05001890 struct css_set *cset = tset->cur_cset;
1891 struct task_struct *task = tset->cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001892
Tejun Heob3dc0942014-02-25 10:04:01 -05001893 while (&cset->mg_node != tset->csets) {
1894 if (!task)
1895 task = list_first_entry(&cset->mg_tasks,
1896 struct task_struct, cg_list);
1897 else
1898 task = list_next_entry(task, cg_list);
Tejun Heo2f7ee562011-12-12 18:12:21 -08001899
Tejun Heob3dc0942014-02-25 10:04:01 -05001900 if (&task->cg_list != &cset->mg_tasks) {
1901 tset->cur_cset = cset;
1902 tset->cur_task = task;
1903 return task;
1904 }
1905
1906 cset = list_next_entry(cset, mg_node);
1907 task = NULL;
1908 }
1909
1910 return NULL;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001911}
Tejun Heo2f7ee562011-12-12 18:12:21 -08001912
1913/**
Ben Blum74a11662011-05-26 16:25:20 -07001914 * cgroup_task_migrate - move a task from one cgroup to another.
Fabian Frederick60106942014-05-05 20:08:13 +02001915 * @old_cgrp: the cgroup @tsk is being migrated from
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001916 * @tsk: the task being migrated
1917 * @new_cset: the new css_set @tsk is being attached to
Ben Blum74a11662011-05-26 16:25:20 -07001918 *
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001919 * Must be called with cgroup_mutex, threadgroup and css_set_rwsem locked.
Ben Blum74a11662011-05-26 16:25:20 -07001920 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001921static void cgroup_task_migrate(struct cgroup *old_cgrp,
1922 struct task_struct *tsk,
1923 struct css_set *new_cset)
Ben Blum74a11662011-05-26 16:25:20 -07001924{
Tejun Heo5abb8852013-06-12 21:04:49 -07001925 struct css_set *old_cset;
Ben Blum74a11662011-05-26 16:25:20 -07001926
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001927 lockdep_assert_held(&cgroup_mutex);
1928 lockdep_assert_held(&css_set_rwsem);
1929
Ben Blum74a11662011-05-26 16:25:20 -07001930 /*
Mandeep Singh Baines026085e2011-12-21 20:18:35 -08001931 * We are synchronized through threadgroup_lock() against PF_EXITING
1932 * setting such that we can't race against cgroup_exit() changing the
1933 * css_set to init_css_set and dropping the old one.
Ben Blum74a11662011-05-26 16:25:20 -07001934 */
Frederic Weisbeckerc84cdf72011-12-21 20:03:18 +01001935 WARN_ON_ONCE(tsk->flags & PF_EXITING);
Tejun Heoa8ad8052013-06-21 15:52:04 -07001936 old_cset = task_css_set(tsk);
Ben Blum74a11662011-05-26 16:25:20 -07001937
Tejun Heob3dc0942014-02-25 10:04:01 -05001938 get_css_set(new_cset);
Tejun Heo5abb8852013-06-12 21:04:49 -07001939 rcu_assign_pointer(tsk->cgroups, new_cset);
Ben Blum74a11662011-05-26 16:25:20 -07001940
Tejun Heo1b9aba42014-03-19 17:43:21 -04001941 /*
1942 * Use move_tail so that cgroup_taskset_first() still returns the
1943 * leader after migration. This works because cgroup_migrate()
1944 * ensures that the dst_cset of the leader is the first on the
1945 * tset's dst_csets list.
1946 */
1947 list_move_tail(&tsk->cg_list, &new_cset->mg_tasks);
Ben Blum74a11662011-05-26 16:25:20 -07001948
1949 /*
Tejun Heo5abb8852013-06-12 21:04:49 -07001950 * We just gained a reference on old_cset by taking it from the
1951 * task. As trading it for new_cset is protected by cgroup_mutex,
1952 * we're safe to drop it here; it will be freed under RCU.
Ben Blum74a11662011-05-26 16:25:20 -07001953 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001954 set_bit(CGRP_RELEASABLE, &old_cgrp->flags);
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001955 put_css_set_locked(old_cset, false);
Ben Blum74a11662011-05-26 16:25:20 -07001956}
1957
Li Zefana043e3b2008-02-23 15:24:09 -08001958/**
Tejun Heo1958d2d2014-02-25 10:04:03 -05001959 * cgroup_migrate_finish - cleanup after attach
1960 * @preloaded_csets: list of preloaded css_sets
Ben Blum74a11662011-05-26 16:25:20 -07001961 *
Tejun Heo1958d2d2014-02-25 10:04:03 -05001962 * Undo cgroup_migrate_add_src() and cgroup_migrate_prepare_dst(). See
1963 * those functions for details.
Ben Blum74a11662011-05-26 16:25:20 -07001964 */
Tejun Heo1958d2d2014-02-25 10:04:03 -05001965static void cgroup_migrate_finish(struct list_head *preloaded_csets)
Ben Blum74a11662011-05-26 16:25:20 -07001966{
Tejun Heo1958d2d2014-02-25 10:04:03 -05001967 struct css_set *cset, *tmp_cset;
1968
1969 lockdep_assert_held(&cgroup_mutex);
1970
1971 down_write(&css_set_rwsem);
1972 list_for_each_entry_safe(cset, tmp_cset, preloaded_csets, mg_preload_node) {
1973 cset->mg_src_cgrp = NULL;
1974 cset->mg_dst_cset = NULL;
1975 list_del_init(&cset->mg_preload_node);
1976 put_css_set_locked(cset, false);
1977 }
1978 up_write(&css_set_rwsem);
1979}
1980
1981/**
1982 * cgroup_migrate_add_src - add a migration source css_set
1983 * @src_cset: the source css_set to add
1984 * @dst_cgrp: the destination cgroup
1985 * @preloaded_csets: list of preloaded css_sets
1986 *
1987 * Tasks belonging to @src_cset are about to be migrated to @dst_cgrp. Pin
1988 * @src_cset and add it to @preloaded_csets, which should later be cleaned
1989 * up by cgroup_migrate_finish().
1990 *
1991 * This function may be called without holding threadgroup_lock even if the
1992 * target is a process. Threads may be created and destroyed but as long
1993 * as cgroup_mutex is not dropped, no new css_set can be put into play and
1994 * the preloaded css_sets are guaranteed to cover all migrations.
1995 */
1996static void cgroup_migrate_add_src(struct css_set *src_cset,
1997 struct cgroup *dst_cgrp,
1998 struct list_head *preloaded_csets)
1999{
2000 struct cgroup *src_cgrp;
2001
2002 lockdep_assert_held(&cgroup_mutex);
2003 lockdep_assert_held(&css_set_rwsem);
2004
2005 src_cgrp = cset_cgroup_from_root(src_cset, dst_cgrp->root);
2006
Tejun Heo1958d2d2014-02-25 10:04:03 -05002007 if (!list_empty(&src_cset->mg_preload_node))
2008 return;
2009
2010 WARN_ON(src_cset->mg_src_cgrp);
2011 WARN_ON(!list_empty(&src_cset->mg_tasks));
2012 WARN_ON(!list_empty(&src_cset->mg_node));
2013
2014 src_cset->mg_src_cgrp = src_cgrp;
2015 get_css_set(src_cset);
2016 list_add(&src_cset->mg_preload_node, preloaded_csets);
2017}
2018
2019/**
2020 * cgroup_migrate_prepare_dst - prepare destination css_sets for migration
Tejun Heof817de92014-04-23 11:13:16 -04002021 * @dst_cgrp: the destination cgroup (may be %NULL)
Tejun Heo1958d2d2014-02-25 10:04:03 -05002022 * @preloaded_csets: list of preloaded source css_sets
2023 *
2024 * Tasks are about to be moved to @dst_cgrp and all the source css_sets
2025 * have been preloaded to @preloaded_csets. This function looks up and
Tejun Heof817de92014-04-23 11:13:16 -04002026 * pins all destination css_sets, links each to its source, and append them
2027 * to @preloaded_csets. If @dst_cgrp is %NULL, the destination of each
2028 * source css_set is assumed to be its cgroup on the default hierarchy.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002029 *
2030 * This function must be called after cgroup_migrate_add_src() has been
2031 * called on each migration source css_set. After migration is performed
2032 * using cgroup_migrate(), cgroup_migrate_finish() must be called on
2033 * @preloaded_csets.
2034 */
2035static int cgroup_migrate_prepare_dst(struct cgroup *dst_cgrp,
2036 struct list_head *preloaded_csets)
2037{
2038 LIST_HEAD(csets);
Tejun Heof817de92014-04-23 11:13:16 -04002039 struct css_set *src_cset, *tmp_cset;
Tejun Heo1958d2d2014-02-25 10:04:03 -05002040
2041 lockdep_assert_held(&cgroup_mutex);
2042
Tejun Heof8f22e52014-04-23 11:13:16 -04002043 /*
2044 * Except for the root, child_subsys_mask must be zero for a cgroup
2045 * with tasks so that child cgroups don't compete against tasks.
2046 */
Tejun Heod51f39b2014-05-16 13:22:48 -04002047 if (dst_cgrp && cgroup_on_dfl(dst_cgrp) && cgroup_parent(dst_cgrp) &&
Tejun Heof8f22e52014-04-23 11:13:16 -04002048 dst_cgrp->child_subsys_mask)
2049 return -EBUSY;
2050
Tejun Heo1958d2d2014-02-25 10:04:03 -05002051 /* look up the dst cset for each src cset and link it to src */
Tejun Heof817de92014-04-23 11:13:16 -04002052 list_for_each_entry_safe(src_cset, tmp_cset, preloaded_csets, mg_preload_node) {
Tejun Heo1958d2d2014-02-25 10:04:03 -05002053 struct css_set *dst_cset;
2054
Tejun Heof817de92014-04-23 11:13:16 -04002055 dst_cset = find_css_set(src_cset,
2056 dst_cgrp ?: src_cset->dfl_cgrp);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002057 if (!dst_cset)
2058 goto err;
2059
2060 WARN_ON_ONCE(src_cset->mg_dst_cset || dst_cset->mg_dst_cset);
Tejun Heof817de92014-04-23 11:13:16 -04002061
2062 /*
2063 * If src cset equals dst, it's noop. Drop the src.
2064 * cgroup_migrate() will skip the cset too. Note that we
2065 * can't handle src == dst as some nodes are used by both.
2066 */
2067 if (src_cset == dst_cset) {
2068 src_cset->mg_src_cgrp = NULL;
2069 list_del_init(&src_cset->mg_preload_node);
2070 put_css_set(src_cset, false);
2071 put_css_set(dst_cset, false);
2072 continue;
2073 }
2074
Tejun Heo1958d2d2014-02-25 10:04:03 -05002075 src_cset->mg_dst_cset = dst_cset;
2076
2077 if (list_empty(&dst_cset->mg_preload_node))
2078 list_add(&dst_cset->mg_preload_node, &csets);
2079 else
2080 put_css_set(dst_cset, false);
2081 }
2082
Tejun Heof817de92014-04-23 11:13:16 -04002083 list_splice_tail(&csets, preloaded_csets);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002084 return 0;
2085err:
2086 cgroup_migrate_finish(&csets);
2087 return -ENOMEM;
2088}
2089
2090/**
2091 * cgroup_migrate - migrate a process or task to a cgroup
2092 * @cgrp: the destination cgroup
2093 * @leader: the leader of the process or the task to migrate
2094 * @threadgroup: whether @leader points to the whole process or a single task
2095 *
2096 * Migrate a process or task denoted by @leader to @cgrp. If migrating a
2097 * process, the caller must be holding threadgroup_lock of @leader. The
2098 * caller is also responsible for invoking cgroup_migrate_add_src() and
2099 * cgroup_migrate_prepare_dst() on the targets before invoking this
2100 * function and following up with cgroup_migrate_finish().
2101 *
2102 * As long as a controller's ->can_attach() doesn't fail, this function is
2103 * guaranteed to succeed. This means that, excluding ->can_attach()
2104 * failure, when migrating multiple targets, the success or failure can be
2105 * decided for all targets by invoking group_migrate_prepare_dst() before
2106 * actually starting migrating.
2107 */
2108static int cgroup_migrate(struct cgroup *cgrp, struct task_struct *leader,
2109 bool threadgroup)
Ben Blum74a11662011-05-26 16:25:20 -07002110{
Tejun Heob3dc0942014-02-25 10:04:01 -05002111 struct cgroup_taskset tset = {
2112 .src_csets = LIST_HEAD_INIT(tset.src_csets),
2113 .dst_csets = LIST_HEAD_INIT(tset.dst_csets),
2114 .csets = &tset.src_csets,
2115 };
Tejun Heo1c6727a2013-12-06 15:11:56 -05002116 struct cgroup_subsys_state *css, *failed_css = NULL;
Tejun Heob3dc0942014-02-25 10:04:01 -05002117 struct css_set *cset, *tmp_cset;
2118 struct task_struct *task, *tmp_task;
2119 int i, ret;
Ben Blum74a11662011-05-26 16:25:20 -07002120
2121 /*
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002122 * Prevent freeing of tasks while we take a snapshot. Tasks that are
2123 * already PF_EXITING could be freed from underneath us unless we
2124 * take an rcu_read_lock.
2125 */
Tejun Heob3dc0942014-02-25 10:04:01 -05002126 down_write(&css_set_rwsem);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002127 rcu_read_lock();
Tejun Heo9db8de32014-02-13 06:58:43 -05002128 task = leader;
Ben Blum74a11662011-05-26 16:25:20 -07002129 do {
Tejun Heo9db8de32014-02-13 06:58:43 -05002130 /* @task either already exited or can't exit until the end */
2131 if (task->flags & PF_EXITING)
Anjana V Kumarea847532013-10-12 10:59:17 +08002132 goto next;
Tejun Heocd3d0952011-12-12 18:12:21 -08002133
Tejun Heoeaf797a2014-02-25 10:04:03 -05002134 /* leave @task alone if post_fork() hasn't linked it yet */
2135 if (list_empty(&task->cg_list))
Anjana V Kumarea847532013-10-12 10:59:17 +08002136 goto next;
Tejun Heoeaf797a2014-02-25 10:04:03 -05002137
Tejun Heob3dc0942014-02-25 10:04:01 -05002138 cset = task_css_set(task);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002139 if (!cset->mg_src_cgrp)
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08002140 goto next;
Tejun Heob3dc0942014-02-25 10:04:01 -05002141
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002142 /*
Tejun Heo1b9aba42014-03-19 17:43:21 -04002143 * cgroup_taskset_first() must always return the leader.
2144 * Take care to avoid disturbing the ordering.
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002145 */
Tejun Heo1b9aba42014-03-19 17:43:21 -04002146 list_move_tail(&task->cg_list, &cset->mg_tasks);
2147 if (list_empty(&cset->mg_node))
2148 list_add_tail(&cset->mg_node, &tset.src_csets);
2149 if (list_empty(&cset->mg_dst_cset->mg_node))
2150 list_move_tail(&cset->mg_dst_cset->mg_node,
2151 &tset.dst_csets);
Anjana V Kumarea847532013-10-12 10:59:17 +08002152 next:
Li Zefan081aa452013-03-13 09:17:09 +08002153 if (!threadgroup)
2154 break;
Tejun Heo9db8de32014-02-13 06:58:43 -05002155 } while_each_thread(leader, task);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002156 rcu_read_unlock();
Tejun Heob3dc0942014-02-25 10:04:01 -05002157 up_write(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07002158
Tejun Heo134d3372011-12-12 18:12:21 -08002159 /* methods shouldn't be called if no task is actually migrating */
Tejun Heob3dc0942014-02-25 10:04:01 -05002160 if (list_empty(&tset.src_csets))
2161 return 0;
Tejun Heo134d3372011-12-12 18:12:21 -08002162
Tejun Heo1958d2d2014-02-25 10:04:03 -05002163 /* check that we can legitimately attach to the cgroup */
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002164 for_each_e_css(css, i, cgrp) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05002165 if (css->ss->can_attach) {
Tejun Heo9db8de32014-02-13 06:58:43 -05002166 ret = css->ss->can_attach(css, &tset);
2167 if (ret) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05002168 failed_css = css;
Ben Blum74a11662011-05-26 16:25:20 -07002169 goto out_cancel_attach;
2170 }
2171 }
Ben Blum74a11662011-05-26 16:25:20 -07002172 }
2173
2174 /*
Tejun Heo1958d2d2014-02-25 10:04:03 -05002175 * Now that we're guaranteed success, proceed to move all tasks to
2176 * the new cgroup. There are no failure cases after here, so this
2177 * is the commit point.
Ben Blum74a11662011-05-26 16:25:20 -07002178 */
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002179 down_write(&css_set_rwsem);
Tejun Heob3dc0942014-02-25 10:04:01 -05002180 list_for_each_entry(cset, &tset.src_csets, mg_node) {
2181 list_for_each_entry_safe(task, tmp_task, &cset->mg_tasks, cg_list)
2182 cgroup_task_migrate(cset->mg_src_cgrp, task,
2183 cset->mg_dst_cset);
Ben Blum74a11662011-05-26 16:25:20 -07002184 }
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002185 up_write(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07002186
2187 /*
Tejun Heo1958d2d2014-02-25 10:04:03 -05002188 * Migration is committed, all target tasks are now on dst_csets.
2189 * Nothing is sensitive to fork() after this point. Notify
2190 * controllers that migration is complete.
Ben Blum74a11662011-05-26 16:25:20 -07002191 */
Tejun Heob3dc0942014-02-25 10:04:01 -05002192 tset.csets = &tset.dst_csets;
Ben Blum74a11662011-05-26 16:25:20 -07002193
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002194 for_each_e_css(css, i, cgrp)
Tejun Heo1c6727a2013-12-06 15:11:56 -05002195 if (css->ss->attach)
2196 css->ss->attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002197
Tejun Heo9db8de32014-02-13 06:58:43 -05002198 ret = 0;
Tejun Heob3dc0942014-02-25 10:04:01 -05002199 goto out_release_tset;
2200
Ben Blum74a11662011-05-26 16:25:20 -07002201out_cancel_attach:
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002202 for_each_e_css(css, i, cgrp) {
Tejun Heob3dc0942014-02-25 10:04:01 -05002203 if (css == failed_css)
2204 break;
2205 if (css->ss->cancel_attach)
2206 css->ss->cancel_attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002207 }
Tejun Heob3dc0942014-02-25 10:04:01 -05002208out_release_tset:
2209 down_write(&css_set_rwsem);
2210 list_splice_init(&tset.dst_csets, &tset.src_csets);
2211 list_for_each_entry_safe(cset, tmp_cset, &tset.src_csets, mg_node) {
Tejun Heo1b9aba42014-03-19 17:43:21 -04002212 list_splice_tail_init(&cset->mg_tasks, &cset->tasks);
Tejun Heob3dc0942014-02-25 10:04:01 -05002213 list_del_init(&cset->mg_node);
Tejun Heob3dc0942014-02-25 10:04:01 -05002214 }
2215 up_write(&css_set_rwsem);
Tejun Heo9db8de32014-02-13 06:58:43 -05002216 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07002217}
2218
Tejun Heo1958d2d2014-02-25 10:04:03 -05002219/**
2220 * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup
2221 * @dst_cgrp: the cgroup to attach to
2222 * @leader: the task or the leader of the threadgroup to be attached
2223 * @threadgroup: attach the whole threadgroup?
2224 *
Tejun Heo0e1d7682014-02-25 10:04:03 -05002225 * Call holding cgroup_mutex and threadgroup_lock of @leader.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002226 */
2227static int cgroup_attach_task(struct cgroup *dst_cgrp,
2228 struct task_struct *leader, bool threadgroup)
2229{
2230 LIST_HEAD(preloaded_csets);
2231 struct task_struct *task;
2232 int ret;
2233
2234 /* look up all src csets */
2235 down_read(&css_set_rwsem);
2236 rcu_read_lock();
2237 task = leader;
2238 do {
2239 cgroup_migrate_add_src(task_css_set(task), dst_cgrp,
2240 &preloaded_csets);
2241 if (!threadgroup)
2242 break;
2243 } while_each_thread(leader, task);
2244 rcu_read_unlock();
2245 up_read(&css_set_rwsem);
2246
2247 /* prepare dst csets and commit */
2248 ret = cgroup_migrate_prepare_dst(dst_cgrp, &preloaded_csets);
2249 if (!ret)
2250 ret = cgroup_migrate(dst_cgrp, leader, threadgroup);
2251
2252 cgroup_migrate_finish(&preloaded_csets);
2253 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07002254}
2255
2256/*
2257 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08002258 * function to attach either it or all tasks in its threadgroup. Will lock
Tejun Heo0e1d7682014-02-25 10:04:03 -05002259 * cgroup_mutex and threadgroup.
Ben Blum74a11662011-05-26 16:25:20 -07002260 */
Tejun Heoacbef752014-05-13 12:16:22 -04002261static ssize_t __cgroup_procs_write(struct kernfs_open_file *of, char *buf,
2262 size_t nbytes, loff_t off, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002263{
Paul Menagebbcb81d2007-10-18 23:39:32 -07002264 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11002265 const struct cred *cred = current_cred(), *tcred;
Tejun Heoe76ecae2014-05-13 12:19:23 -04002266 struct cgroup *cgrp;
Tejun Heoacbef752014-05-13 12:16:22 -04002267 pid_t pid;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002268 int ret;
2269
Tejun Heoacbef752014-05-13 12:16:22 -04002270 if (kstrtoint(strstrip(buf), 0, &pid) || pid < 0)
2271 return -EINVAL;
2272
Tejun Heoe76ecae2014-05-13 12:19:23 -04002273 cgrp = cgroup_kn_lock_live(of->kn);
2274 if (!cgrp)
Ben Blum74a11662011-05-26 16:25:20 -07002275 return -ENODEV;
2276
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002277retry_find_task:
2278 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002279 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002280 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07002281 if (!tsk) {
Paul Menagebbcb81d2007-10-18 23:39:32 -07002282 rcu_read_unlock();
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09002283 ret = -ESRCH;
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002284 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002285 }
Ben Blum74a11662011-05-26 16:25:20 -07002286 /*
2287 * even if we're attaching all tasks in the thread group, we
2288 * only need to check permissions on one of them.
2289 */
David Howellsc69e8d92008-11-14 10:39:19 +11002290 tcred = __task_cred(tsk);
Eric W. Biederman14a590c2012-03-12 15:44:39 -07002291 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
2292 !uid_eq(cred->euid, tcred->uid) &&
2293 !uid_eq(cred->euid, tcred->suid)) {
David Howellsc69e8d92008-11-14 10:39:19 +11002294 rcu_read_unlock();
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002295 ret = -EACCES;
2296 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002297 }
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002298 } else
2299 tsk = current;
Tejun Heocd3d0952011-12-12 18:12:21 -08002300
2301 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002302 tsk = tsk->group_leader;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002303
2304 /*
Tejun Heo14a40ff2013-03-19 13:45:20 -07002305 * Workqueue threads may acquire PF_NO_SETAFFINITY and become
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002306 * trapped in a cpuset, or RT worker may be born in a cgroup
2307 * with no rt_runtime allocated. Just say no.
2308 */
Tejun Heo14a40ff2013-03-19 13:45:20 -07002309 if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) {
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002310 ret = -EINVAL;
2311 rcu_read_unlock();
2312 goto out_unlock_cgroup;
2313 }
2314
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002315 get_task_struct(tsk);
2316 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08002317
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002318 threadgroup_lock(tsk);
2319 if (threadgroup) {
2320 if (!thread_group_leader(tsk)) {
2321 /*
2322 * a race with de_thread from another thread's exec()
2323 * may strip us of our leadership, if this happens,
2324 * there is no choice but to throw this task away and
2325 * try again; this is
2326 * "double-double-toil-and-trouble-check locking".
2327 */
2328 threadgroup_unlock(tsk);
2329 put_task_struct(tsk);
2330 goto retry_find_task;
2331 }
Li Zefan081aa452013-03-13 09:17:09 +08002332 }
2333
2334 ret = cgroup_attach_task(cgrp, tsk, threadgroup);
2335
Tejun Heocd3d0952011-12-12 18:12:21 -08002336 threadgroup_unlock(tsk);
2337
Paul Menagebbcb81d2007-10-18 23:39:32 -07002338 put_task_struct(tsk);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002339out_unlock_cgroup:
Tejun Heoe76ecae2014-05-13 12:19:23 -04002340 cgroup_kn_unlock(of->kn);
Tejun Heoacbef752014-05-13 12:16:22 -04002341 return ret ?: nbytes;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002342}
2343
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002344/**
2345 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
2346 * @from: attach to all cgroups of a given task
2347 * @tsk: the task to be attached
2348 */
2349int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
2350{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002351 struct cgroup_root *root;
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002352 int retval = 0;
2353
Tejun Heo47cfcd02013-04-07 09:29:51 -07002354 mutex_lock(&cgroup_mutex);
Tejun Heo985ed672014-03-19 10:23:53 -04002355 for_each_root(root) {
Tejun Heo96d365e2014-02-13 06:58:40 -05002356 struct cgroup *from_cgrp;
2357
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002358 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04002359 continue;
2360
Tejun Heo96d365e2014-02-13 06:58:40 -05002361 down_read(&css_set_rwsem);
2362 from_cgrp = task_cgroup_from_root(from, root);
2363 up_read(&css_set_rwsem);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002364
Li Zefan6f4b7e62013-07-31 16:18:36 +08002365 retval = cgroup_attach_task(from_cgrp, tsk, false);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002366 if (retval)
2367 break;
2368 }
Tejun Heo47cfcd02013-04-07 09:29:51 -07002369 mutex_unlock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002370
2371 return retval;
2372}
2373EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
2374
Tejun Heoacbef752014-05-13 12:16:22 -04002375static ssize_t cgroup_tasks_write(struct kernfs_open_file *of,
2376 char *buf, size_t nbytes, loff_t off)
Paul Menageaf351022008-07-25 01:47:01 -07002377{
Tejun Heoacbef752014-05-13 12:16:22 -04002378 return __cgroup_procs_write(of, buf, nbytes, off, false);
Ben Blum74a11662011-05-26 16:25:20 -07002379}
2380
Tejun Heoacbef752014-05-13 12:16:22 -04002381static ssize_t cgroup_procs_write(struct kernfs_open_file *of,
2382 char *buf, size_t nbytes, loff_t off)
Ben Blum74a11662011-05-26 16:25:20 -07002383{
Tejun Heoacbef752014-05-13 12:16:22 -04002384 return __cgroup_procs_write(of, buf, nbytes, off, true);
Paul Menageaf351022008-07-25 01:47:01 -07002385}
2386
Tejun Heo451af502014-05-13 12:16:21 -04002387static ssize_t cgroup_release_agent_write(struct kernfs_open_file *of,
2388 char *buf, size_t nbytes, loff_t off)
Paul Menagee788e062008-07-25 01:46:59 -07002389{
Tejun Heoe76ecae2014-05-13 12:19:23 -04002390 struct cgroup *cgrp;
Tejun Heo5f469902014-02-11 11:52:48 -05002391
Tejun Heoe76ecae2014-05-13 12:19:23 -04002392 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
2393
2394 cgrp = cgroup_kn_lock_live(of->kn);
2395 if (!cgrp)
Paul Menagee788e062008-07-25 01:46:59 -07002396 return -ENODEV;
Tejun Heo69e943b2014-02-08 10:36:58 -05002397 spin_lock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002398 strlcpy(cgrp->root->release_agent_path, strstrip(buf),
2399 sizeof(cgrp->root->release_agent_path));
Tejun Heo69e943b2014-02-08 10:36:58 -05002400 spin_unlock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002401 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04002402 return nbytes;
Paul Menagee788e062008-07-25 01:46:59 -07002403}
2404
Tejun Heo2da8ca82013-12-05 12:28:04 -05002405static int cgroup_release_agent_show(struct seq_file *seq, void *v)
Paul Menagee788e062008-07-25 01:46:59 -07002406{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002407 struct cgroup *cgrp = seq_css(seq)->cgroup;
Tejun Heo182446d2013-08-08 20:11:24 -04002408
Tejun Heo46cfeb02014-05-13 12:11:00 -04002409 spin_lock(&release_agent_path_lock);
Paul Menagee788e062008-07-25 01:46:59 -07002410 seq_puts(seq, cgrp->root->release_agent_path);
Tejun Heo46cfeb02014-05-13 12:11:00 -04002411 spin_unlock(&release_agent_path_lock);
Paul Menagee788e062008-07-25 01:46:59 -07002412 seq_putc(seq, '\n');
Paul Menagee788e062008-07-25 01:46:59 -07002413 return 0;
2414}
2415
Tejun Heo2da8ca82013-12-05 12:28:04 -05002416static int cgroup_sane_behavior_show(struct seq_file *seq, void *v)
Tejun Heo873fe092013-04-14 20:15:26 -07002417{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002418 struct cgroup *cgrp = seq_css(seq)->cgroup;
2419
2420 seq_printf(seq, "%d\n", cgroup_sane_behavior(cgrp));
Paul Menage81a6a5c2007-10-18 23:39:38 -07002421 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002422}
2423
Tejun Heof8f22e52014-04-23 11:13:16 -04002424static void cgroup_print_ss_mask(struct seq_file *seq, unsigned int ss_mask)
2425{
2426 struct cgroup_subsys *ss;
2427 bool printed = false;
2428 int ssid;
2429
2430 for_each_subsys(ss, ssid) {
2431 if (ss_mask & (1 << ssid)) {
2432 if (printed)
2433 seq_putc(seq, ' ');
2434 seq_printf(seq, "%s", ss->name);
2435 printed = true;
2436 }
2437 }
2438 if (printed)
2439 seq_putc(seq, '\n');
2440}
2441
2442/* show controllers which are currently attached to the default hierarchy */
2443static int cgroup_root_controllers_show(struct seq_file *seq, void *v)
2444{
2445 struct cgroup *cgrp = seq_css(seq)->cgroup;
2446
Tejun Heo5533e012014-05-14 19:33:07 -04002447 cgroup_print_ss_mask(seq, cgrp->root->subsys_mask &
2448 ~cgrp_dfl_root_inhibit_ss_mask);
Tejun Heof8f22e52014-04-23 11:13:16 -04002449 return 0;
2450}
2451
2452/* show controllers which are enabled from the parent */
2453static int cgroup_controllers_show(struct seq_file *seq, void *v)
2454{
2455 struct cgroup *cgrp = seq_css(seq)->cgroup;
2456
Tejun Heod51f39b2014-05-16 13:22:48 -04002457 cgroup_print_ss_mask(seq, cgroup_parent(cgrp)->child_subsys_mask);
Tejun Heof8f22e52014-04-23 11:13:16 -04002458 return 0;
2459}
2460
2461/* show controllers which are enabled for a given cgroup's children */
2462static int cgroup_subtree_control_show(struct seq_file *seq, void *v)
2463{
2464 struct cgroup *cgrp = seq_css(seq)->cgroup;
2465
2466 cgroup_print_ss_mask(seq, cgrp->child_subsys_mask);
2467 return 0;
2468}
2469
2470/**
2471 * cgroup_update_dfl_csses - update css assoc of a subtree in default hierarchy
2472 * @cgrp: root of the subtree to update csses for
2473 *
2474 * @cgrp's child_subsys_mask has changed and its subtree's (self excluded)
2475 * css associations need to be updated accordingly. This function looks up
2476 * all css_sets which are attached to the subtree, creates the matching
2477 * updated css_sets and migrates the tasks to the new ones.
2478 */
2479static int cgroup_update_dfl_csses(struct cgroup *cgrp)
2480{
2481 LIST_HEAD(preloaded_csets);
2482 struct cgroup_subsys_state *css;
2483 struct css_set *src_cset;
2484 int ret;
2485
Tejun Heof8f22e52014-04-23 11:13:16 -04002486 lockdep_assert_held(&cgroup_mutex);
2487
2488 /* look up all csses currently attached to @cgrp's subtree */
2489 down_read(&css_set_rwsem);
2490 css_for_each_descendant_pre(css, cgroup_css(cgrp, NULL)) {
2491 struct cgrp_cset_link *link;
2492
2493 /* self is not affected by child_subsys_mask change */
2494 if (css->cgroup == cgrp)
2495 continue;
2496
2497 list_for_each_entry(link, &css->cgroup->cset_links, cset_link)
2498 cgroup_migrate_add_src(link->cset, cgrp,
2499 &preloaded_csets);
2500 }
2501 up_read(&css_set_rwsem);
2502
2503 /* NULL dst indicates self on default hierarchy */
2504 ret = cgroup_migrate_prepare_dst(NULL, &preloaded_csets);
2505 if (ret)
2506 goto out_finish;
2507
2508 list_for_each_entry(src_cset, &preloaded_csets, mg_preload_node) {
2509 struct task_struct *last_task = NULL, *task;
2510
2511 /* src_csets precede dst_csets, break on the first dst_cset */
2512 if (!src_cset->mg_src_cgrp)
2513 break;
2514
2515 /*
2516 * All tasks in src_cset need to be migrated to the
2517 * matching dst_cset. Empty it process by process. We
2518 * walk tasks but migrate processes. The leader might even
2519 * belong to a different cset but such src_cset would also
2520 * be among the target src_csets because the default
2521 * hierarchy enforces per-process membership.
2522 */
2523 while (true) {
2524 down_read(&css_set_rwsem);
2525 task = list_first_entry_or_null(&src_cset->tasks,
2526 struct task_struct, cg_list);
2527 if (task) {
2528 task = task->group_leader;
2529 WARN_ON_ONCE(!task_css_set(task)->mg_src_cgrp);
2530 get_task_struct(task);
2531 }
2532 up_read(&css_set_rwsem);
2533
2534 if (!task)
2535 break;
2536
2537 /* guard against possible infinite loop */
2538 if (WARN(last_task == task,
2539 "cgroup: update_dfl_csses failed to make progress, aborting in inconsistent state\n"))
2540 goto out_finish;
2541 last_task = task;
2542
2543 threadgroup_lock(task);
2544 /* raced against de_thread() from another thread? */
2545 if (!thread_group_leader(task)) {
2546 threadgroup_unlock(task);
2547 put_task_struct(task);
2548 continue;
2549 }
2550
2551 ret = cgroup_migrate(src_cset->dfl_cgrp, task, true);
2552
2553 threadgroup_unlock(task);
2554 put_task_struct(task);
2555
2556 if (WARN(ret, "cgroup: failed to update controllers for the default hierarchy (%d), further operations may crash or hang\n", ret))
2557 goto out_finish;
2558 }
2559 }
2560
2561out_finish:
2562 cgroup_migrate_finish(&preloaded_csets);
2563 return ret;
2564}
2565
2566/* change the enabled child controllers for a cgroup in the default hierarchy */
Tejun Heo451af502014-05-13 12:16:21 -04002567static ssize_t cgroup_subtree_control_write(struct kernfs_open_file *of,
2568 char *buf, size_t nbytes,
2569 loff_t off)
Tejun Heof8f22e52014-04-23 11:13:16 -04002570{
Tejun Heo7d331fa2014-05-13 12:11:00 -04002571 unsigned int enable = 0, disable = 0;
Tejun Heoa9746d82014-05-13 12:19:22 -04002572 struct cgroup *cgrp, *child;
Tejun Heof8f22e52014-04-23 11:13:16 -04002573 struct cgroup_subsys *ss;
Tejun Heo451af502014-05-13 12:16:21 -04002574 char *tok;
Tejun Heof8f22e52014-04-23 11:13:16 -04002575 int ssid, ret;
2576
2577 /*
Tejun Heod37167a2014-05-13 12:10:59 -04002578 * Parse input - space separated list of subsystem names prefixed
2579 * with either + or -.
Tejun Heof8f22e52014-04-23 11:13:16 -04002580 */
Tejun Heo451af502014-05-13 12:16:21 -04002581 buf = strstrip(buf);
2582 while ((tok = strsep(&buf, " "))) {
Tejun Heod37167a2014-05-13 12:10:59 -04002583 if (tok[0] == '\0')
2584 continue;
Tejun Heof8f22e52014-04-23 11:13:16 -04002585 for_each_subsys(ss, ssid) {
Tejun Heo5533e012014-05-14 19:33:07 -04002586 if (ss->disabled || strcmp(tok + 1, ss->name) ||
2587 ((1 << ss->id) & cgrp_dfl_root_inhibit_ss_mask))
Tejun Heof8f22e52014-04-23 11:13:16 -04002588 continue;
2589
2590 if (*tok == '+') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04002591 enable |= 1 << ssid;
2592 disable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002593 } else if (*tok == '-') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04002594 disable |= 1 << ssid;
2595 enable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002596 } else {
2597 return -EINVAL;
2598 }
2599 break;
2600 }
2601 if (ssid == CGROUP_SUBSYS_COUNT)
2602 return -EINVAL;
2603 }
2604
Tejun Heoa9746d82014-05-13 12:19:22 -04002605 cgrp = cgroup_kn_lock_live(of->kn);
2606 if (!cgrp)
2607 return -ENODEV;
Tejun Heof8f22e52014-04-23 11:13:16 -04002608
2609 for_each_subsys(ss, ssid) {
2610 if (enable & (1 << ssid)) {
2611 if (cgrp->child_subsys_mask & (1 << ssid)) {
2612 enable &= ~(1 << ssid);
2613 continue;
2614 }
2615
Tejun Heoc29adf22014-07-08 18:02:56 -04002616 /* unavailable or not enabled on the parent? */
2617 if (!(cgrp_dfl_root.subsys_mask & (1 << ssid)) ||
2618 (cgroup_parent(cgrp) &&
2619 !(cgroup_parent(cgrp)->child_subsys_mask & (1 << ssid)))) {
2620 ret = -ENOENT;
2621 goto out_unlock;
2622 }
2623
Tejun Heof8f22e52014-04-23 11:13:16 -04002624 /*
2625 * Because css offlining is asynchronous, userland
2626 * might try to re-enable the same controller while
2627 * the previous instance is still around. In such
2628 * cases, wait till it's gone using offline_waitq.
2629 */
2630 cgroup_for_each_live_child(child, cgrp) {
Tejun Heo0cee8b72014-05-13 12:10:59 -04002631 DEFINE_WAIT(wait);
Tejun Heof8f22e52014-04-23 11:13:16 -04002632
2633 if (!cgroup_css(child, ss))
2634 continue;
2635
Tejun Heo0cee8b72014-05-13 12:10:59 -04002636 cgroup_get(child);
Tejun Heof8f22e52014-04-23 11:13:16 -04002637 prepare_to_wait(&child->offline_waitq, &wait,
2638 TASK_UNINTERRUPTIBLE);
Tejun Heoa9746d82014-05-13 12:19:22 -04002639 cgroup_kn_unlock(of->kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04002640 schedule();
2641 finish_wait(&child->offline_waitq, &wait);
Tejun Heo0cee8b72014-05-13 12:10:59 -04002642 cgroup_put(child);
Tejun Heo7d331fa2014-05-13 12:11:00 -04002643
Tejun Heoa9746d82014-05-13 12:19:22 -04002644 return restart_syscall();
Tejun Heof8f22e52014-04-23 11:13:16 -04002645 }
Tejun Heof8f22e52014-04-23 11:13:16 -04002646 } else if (disable & (1 << ssid)) {
2647 if (!(cgrp->child_subsys_mask & (1 << ssid))) {
2648 disable &= ~(1 << ssid);
2649 continue;
2650 }
2651
2652 /* a child has it enabled? */
2653 cgroup_for_each_live_child(child, cgrp) {
2654 if (child->child_subsys_mask & (1 << ssid)) {
2655 ret = -EBUSY;
Tejun Heoddab2b62014-05-13 12:19:22 -04002656 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04002657 }
2658 }
2659 }
2660 }
2661
2662 if (!enable && !disable) {
2663 ret = 0;
Tejun Heoddab2b62014-05-13 12:19:22 -04002664 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04002665 }
2666
2667 /*
2668 * Except for the root, child_subsys_mask must be zero for a cgroup
2669 * with tasks so that child cgroups don't compete against tasks.
2670 */
Tejun Heod51f39b2014-05-16 13:22:48 -04002671 if (enable && cgroup_parent(cgrp) && !list_empty(&cgrp->cset_links)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002672 ret = -EBUSY;
2673 goto out_unlock;
2674 }
2675
Tejun Heoc29adf22014-07-08 18:02:56 -04002676 cgrp->child_subsys_mask |= enable;
2677 cgrp->child_subsys_mask &= ~disable;
2678
2679 /* create new csses */
Tejun Heof8f22e52014-04-23 11:13:16 -04002680 for_each_subsys(ss, ssid) {
2681 if (!(enable & (1 << ssid)))
2682 continue;
2683
2684 cgroup_for_each_live_child(child, cgrp) {
2685 ret = create_css(child, ss);
2686 if (ret)
2687 goto err_undo_css;
2688 }
2689 }
2690
Tejun Heoc29adf22014-07-08 18:02:56 -04002691 /*
2692 * At this point, cgroup_e_css() results reflect the new csses
2693 * making the following cgroup_update_dfl_csses() properly update
2694 * css associations of all tasks in the subtree.
2695 */
Tejun Heof8f22e52014-04-23 11:13:16 -04002696 ret = cgroup_update_dfl_csses(cgrp);
2697 if (ret)
2698 goto err_undo_css;
2699
2700 /* all tasks are now migrated away from the old csses, kill them */
2701 for_each_subsys(ss, ssid) {
2702 if (!(disable & (1 << ssid)))
2703 continue;
2704
2705 cgroup_for_each_live_child(child, cgrp)
2706 kill_css(cgroup_css(child, ss));
2707 }
2708
2709 kernfs_activate(cgrp->kn);
2710 ret = 0;
2711out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04002712 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04002713 return ret ?: nbytes;
Tejun Heof8f22e52014-04-23 11:13:16 -04002714
2715err_undo_css:
2716 cgrp->child_subsys_mask &= ~enable;
2717 cgrp->child_subsys_mask |= disable;
2718
2719 for_each_subsys(ss, ssid) {
2720 if (!(enable & (1 << ssid)))
2721 continue;
2722
2723 cgroup_for_each_live_child(child, cgrp) {
2724 struct cgroup_subsys_state *css = cgroup_css(child, ss);
2725 if (css)
2726 kill_css(css);
2727 }
2728 }
2729 goto out_unlock;
2730}
2731
Tejun Heo842b5972014-04-25 18:28:02 -04002732static int cgroup_populated_show(struct seq_file *seq, void *v)
2733{
2734 seq_printf(seq, "%d\n", (bool)seq_css(seq)->cgroup->populated_cnt);
2735 return 0;
2736}
2737
Tejun Heo2bd59d42014-02-11 11:52:49 -05002738static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf,
2739 size_t nbytes, loff_t off)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002740{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002741 struct cgroup *cgrp = of->kn->parent->priv;
2742 struct cftype *cft = of->kn->priv;
2743 struct cgroup_subsys_state *css;
Tejun Heoa742c592013-12-05 12:28:03 -05002744 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002745
Tejun Heob4168642014-05-13 12:16:21 -04002746 if (cft->write)
2747 return cft->write(of, buf, nbytes, off);
2748
Tejun Heo2bd59d42014-02-11 11:52:49 -05002749 /*
2750 * kernfs guarantees that a file isn't deleted with operations in
2751 * flight, which means that the matching css is and stays alive and
2752 * doesn't need to be pinned. The RCU locking is not necessary
2753 * either. It's just for the convenience of using cgroup_css().
2754 */
2755 rcu_read_lock();
2756 css = cgroup_css(cgrp, cft->ss);
2757 rcu_read_unlock();
Paul Menageddbcc7e2007-10-18 23:39:30 -07002758
Tejun Heo451af502014-05-13 12:16:21 -04002759 if (cft->write_u64) {
Tejun Heoa742c592013-12-05 12:28:03 -05002760 unsigned long long v;
2761 ret = kstrtoull(buf, 0, &v);
2762 if (!ret)
2763 ret = cft->write_u64(css, cft, v);
2764 } else if (cft->write_s64) {
2765 long long v;
2766 ret = kstrtoll(buf, 0, &v);
2767 if (!ret)
2768 ret = cft->write_s64(css, cft, v);
Tejun Heoa742c592013-12-05 12:28:03 -05002769 } else {
2770 ret = -EINVAL;
2771 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05002772
Tejun Heoa742c592013-12-05 12:28:03 -05002773 return ret ?: nbytes;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002774}
2775
Tejun Heo6612f052013-12-05 12:28:04 -05002776static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos)
Paul Menage91796562008-04-29 01:00:01 -07002777{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002778 return seq_cft(seq)->seq_start(seq, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002779}
2780
2781static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos)
2782{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002783 return seq_cft(seq)->seq_next(seq, v, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002784}
2785
2786static void cgroup_seqfile_stop(struct seq_file *seq, void *v)
2787{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002788 seq_cft(seq)->seq_stop(seq, v);
Paul Menage91796562008-04-29 01:00:01 -07002789}
2790
2791static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2792{
Tejun Heo7da11272013-12-05 12:28:04 -05002793 struct cftype *cft = seq_cft(m);
2794 struct cgroup_subsys_state *css = seq_css(m);
Li Zefane0798ce2013-07-31 17:36:25 +08002795
Tejun Heo2da8ca82013-12-05 12:28:04 -05002796 if (cft->seq_show)
2797 return cft->seq_show(m, arg);
Paul Menage91796562008-04-29 01:00:01 -07002798
Tejun Heo896f5192013-12-05 12:28:04 -05002799 if (cft->read_u64)
2800 seq_printf(m, "%llu\n", cft->read_u64(css, cft));
2801 else if (cft->read_s64)
2802 seq_printf(m, "%lld\n", cft->read_s64(css, cft));
2803 else
2804 return -EINVAL;
2805 return 0;
Paul Menage91796562008-04-29 01:00:01 -07002806}
2807
Tejun Heo2bd59d42014-02-11 11:52:49 -05002808static struct kernfs_ops cgroup_kf_single_ops = {
2809 .atomic_write_len = PAGE_SIZE,
2810 .write = cgroup_file_write,
2811 .seq_show = cgroup_seqfile_show,
Paul Menage91796562008-04-29 01:00:01 -07002812};
2813
Tejun Heo2bd59d42014-02-11 11:52:49 -05002814static struct kernfs_ops cgroup_kf_ops = {
2815 .atomic_write_len = PAGE_SIZE,
2816 .write = cgroup_file_write,
2817 .seq_start = cgroup_seqfile_start,
2818 .seq_next = cgroup_seqfile_next,
2819 .seq_stop = cgroup_seqfile_stop,
2820 .seq_show = cgroup_seqfile_show,
2821};
Paul Menageddbcc7e2007-10-18 23:39:30 -07002822
2823/*
2824 * cgroup_rename - Only allow simple rename of directories in place.
2825 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05002826static int cgroup_rename(struct kernfs_node *kn, struct kernfs_node *new_parent,
2827 const char *new_name_str)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002828{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002829 struct cgroup *cgrp = kn->priv;
Li Zefan65dff752013-03-01 15:01:56 +08002830 int ret;
Li Zefan65dff752013-03-01 15:01:56 +08002831
Tejun Heo2bd59d42014-02-11 11:52:49 -05002832 if (kernfs_type(kn) != KERNFS_DIR)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002833 return -ENOTDIR;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002834 if (kn->parent != new_parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002835 return -EIO;
Li Zefan65dff752013-03-01 15:01:56 +08002836
Tejun Heo6db8e852013-06-14 11:18:22 -07002837 /*
2838 * This isn't a proper migration and its usefulness is very
2839 * limited. Disallow if sane_behavior.
2840 */
2841 if (cgroup_sane_behavior(cgrp))
2842 return -EPERM;
2843
Tejun Heoe1b2dc12014-03-20 11:10:15 -04002844 /*
Tejun Heo8353da12014-05-13 12:19:23 -04002845 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoe1b2dc12014-03-20 11:10:15 -04002846 * active_ref. kernfs_rename() doesn't require active_ref
Tejun Heo8353da12014-05-13 12:19:23 -04002847 * protection. Break them before grabbing cgroup_mutex.
Tejun Heoe1b2dc12014-03-20 11:10:15 -04002848 */
2849 kernfs_break_active_protection(new_parent);
2850 kernfs_break_active_protection(kn);
Li Zefan65dff752013-03-01 15:01:56 +08002851
Tejun Heo2bd59d42014-02-11 11:52:49 -05002852 mutex_lock(&cgroup_mutex);
Li Zefan65dff752013-03-01 15:01:56 +08002853
Tejun Heo2bd59d42014-02-11 11:52:49 -05002854 ret = kernfs_rename(kn, new_parent, new_name_str);
Li Zefan65dff752013-03-01 15:01:56 +08002855
Tejun Heo2bd59d42014-02-11 11:52:49 -05002856 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002857
Tejun Heoe1b2dc12014-03-20 11:10:15 -04002858 kernfs_unbreak_active_protection(kn);
2859 kernfs_unbreak_active_protection(new_parent);
Tejun Heo2bd59d42014-02-11 11:52:49 -05002860 return ret;
Li Zefan099fca32009-04-02 16:57:29 -07002861}
2862
Tejun Heo49957f82014-04-07 16:44:47 -04002863/* set uid and gid of cgroup dirs and files to that of the creator */
2864static int cgroup_kn_set_ugid(struct kernfs_node *kn)
2865{
2866 struct iattr iattr = { .ia_valid = ATTR_UID | ATTR_GID,
2867 .ia_uid = current_fsuid(),
2868 .ia_gid = current_fsgid(), };
2869
2870 if (uid_eq(iattr.ia_uid, GLOBAL_ROOT_UID) &&
2871 gid_eq(iattr.ia_gid, GLOBAL_ROOT_GID))
2872 return 0;
2873
2874 return kernfs_setattr(kn, &iattr);
2875}
2876
Tejun Heo2bb566c2013-08-08 20:11:23 -04002877static int cgroup_add_file(struct cgroup *cgrp, struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002878{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05002879 char name[CGROUP_FILE_NAME_MAX];
Tejun Heo2bd59d42014-02-11 11:52:49 -05002880 struct kernfs_node *kn;
2881 struct lock_class_key *key = NULL;
Tejun Heo49957f82014-04-07 16:44:47 -04002882 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002883
Tejun Heo2bd59d42014-02-11 11:52:49 -05002884#ifdef CONFIG_DEBUG_LOCK_ALLOC
2885 key = &cft->lockdep_key;
2886#endif
2887 kn = __kernfs_create_file(cgrp->kn, cgroup_file_name(cgrp, cft, name),
2888 cgroup_file_mode(cft), 0, cft->kf_ops, cft,
2889 NULL, false, key);
Tejun Heo49957f82014-04-07 16:44:47 -04002890 if (IS_ERR(kn))
2891 return PTR_ERR(kn);
2892
2893 ret = cgroup_kn_set_ugid(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04002894 if (ret) {
Tejun Heo49957f82014-04-07 16:44:47 -04002895 kernfs_remove(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04002896 return ret;
2897 }
2898
Tejun Heob7fc5ad2014-05-13 12:16:22 -04002899 if (cft->seq_show == cgroup_populated_show)
Tejun Heo842b5972014-04-25 18:28:02 -04002900 cgrp->populated_kn = kn;
Tejun Heof8f22e52014-04-23 11:13:16 -04002901 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002902}
2903
Tejun Heob1f28d32013-06-28 16:24:10 -07002904/**
2905 * cgroup_addrm_files - add or remove files to a cgroup directory
2906 * @cgrp: the target cgroup
Tejun Heob1f28d32013-06-28 16:24:10 -07002907 * @cfts: array of cftypes to be added
2908 * @is_add: whether to add or remove
2909 *
2910 * Depending on @is_add, add or remove files defined by @cfts on @cgrp.
Tejun Heo2bb566c2013-08-08 20:11:23 -04002911 * For removals, this function never fails. If addition fails, this
2912 * function doesn't remove files already added. The caller is responsible
2913 * for cleaning up.
Tejun Heob1f28d32013-06-28 16:24:10 -07002914 */
Tejun Heo2bb566c2013-08-08 20:11:23 -04002915static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
2916 bool is_add)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002917{
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002918 struct cftype *cft;
Tejun Heob1f28d32013-06-28 16:24:10 -07002919 int ret;
2920
Tejun Heo01f64742014-05-13 12:19:23 -04002921 lockdep_assert_held(&cgroup_mutex);
Tejun Heodb0416b2012-04-01 12:09:55 -07002922
2923 for (cft = cfts; cft->name[0] != '\0'; cft++) {
Gao fengf33fddc2012-12-06 14:38:57 +08002924 /* does cft->flags tell us to skip this file on @cgrp? */
Tejun Heo8cbbf2c2014-03-19 10:23:55 -04002925 if ((cft->flags & CFTYPE_ONLY_ON_DFL) && !cgroup_on_dfl(cgrp))
2926 continue;
Tejun Heo873fe092013-04-14 20:15:26 -07002927 if ((cft->flags & CFTYPE_INSANE) && cgroup_sane_behavior(cgrp))
2928 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04002929 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08002930 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04002931 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08002932 continue;
2933
Li Zefan2739d3c2013-01-21 18:18:33 +08002934 if (is_add) {
Tejun Heo2bb566c2013-08-08 20:11:23 -04002935 ret = cgroup_add_file(cgrp, cft);
Tejun Heob1f28d32013-06-28 16:24:10 -07002936 if (ret) {
Joe Perchesed3d2612014-04-25 18:28:03 -04002937 pr_warn("%s: failed to add %s, err=%d\n",
2938 __func__, cft->name, ret);
Tejun Heob1f28d32013-06-28 16:24:10 -07002939 return ret;
2940 }
Li Zefan2739d3c2013-01-21 18:18:33 +08002941 } else {
2942 cgroup_rm_file(cgrp, cft);
Tejun Heodb0416b2012-04-01 12:09:55 -07002943 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002944 }
Tejun Heob1f28d32013-06-28 16:24:10 -07002945 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002946}
2947
Tejun Heo21a2d342014-02-12 09:29:49 -05002948static int cgroup_apply_cftypes(struct cftype *cfts, bool is_add)
Tejun Heo8e3f6542012-04-01 12:09:55 -07002949{
2950 LIST_HEAD(pending);
Tejun Heo2bb566c2013-08-08 20:11:23 -04002951 struct cgroup_subsys *ss = cfts[0].ss;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002952 struct cgroup *root = &ss->root->cgrp;
Tejun Heo492eb212013-08-08 20:11:25 -04002953 struct cgroup_subsys_state *css;
Tejun Heo9ccece82013-06-28 16:24:11 -07002954 int ret = 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002955
Tejun Heo01f64742014-05-13 12:19:23 -04002956 lockdep_assert_held(&cgroup_mutex);
Li Zefane8c82d22013-06-18 18:48:37 +08002957
Li Zefane8c82d22013-06-18 18:48:37 +08002958 /* add/rm files for all cgroups created before */
Tejun Heoca8bdca2013-08-26 18:40:56 -04002959 css_for_each_descendant_pre(css, cgroup_css(root, ss)) {
Tejun Heo492eb212013-08-08 20:11:25 -04002960 struct cgroup *cgrp = css->cgroup;
2961
Li Zefane8c82d22013-06-18 18:48:37 +08002962 if (cgroup_is_dead(cgrp))
2963 continue;
2964
Tejun Heo21a2d342014-02-12 09:29:49 -05002965 ret = cgroup_addrm_files(cgrp, cfts, is_add);
Tejun Heo9ccece82013-06-28 16:24:11 -07002966 if (ret)
2967 break;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002968 }
Tejun Heo21a2d342014-02-12 09:29:49 -05002969
2970 if (is_add && !ret)
2971 kernfs_activate(root->kn);
Tejun Heo9ccece82013-06-28 16:24:11 -07002972 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002973}
2974
Tejun Heo2da440a2014-02-11 11:52:48 -05002975static void cgroup_exit_cftypes(struct cftype *cfts)
2976{
2977 struct cftype *cft;
2978
Tejun Heo2bd59d42014-02-11 11:52:49 -05002979 for (cft = cfts; cft->name[0] != '\0'; cft++) {
2980 /* free copy for custom atomic_write_len, see init_cftypes() */
2981 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE)
2982 kfree(cft->kf_ops);
2983 cft->kf_ops = NULL;
Tejun Heo2da440a2014-02-11 11:52:48 -05002984 cft->ss = NULL;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002985 }
Tejun Heo2da440a2014-02-11 11:52:48 -05002986}
2987
Tejun Heo2bd59d42014-02-11 11:52:49 -05002988static int cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo2da440a2014-02-11 11:52:48 -05002989{
2990 struct cftype *cft;
2991
Tejun Heo2bd59d42014-02-11 11:52:49 -05002992 for (cft = cfts; cft->name[0] != '\0'; cft++) {
2993 struct kernfs_ops *kf_ops;
2994
Tejun Heo0adb0702014-02-12 09:29:48 -05002995 WARN_ON(cft->ss || cft->kf_ops);
2996
Tejun Heo2bd59d42014-02-11 11:52:49 -05002997 if (cft->seq_start)
2998 kf_ops = &cgroup_kf_ops;
2999 else
3000 kf_ops = &cgroup_kf_single_ops;
3001
3002 /*
3003 * Ugh... if @cft wants a custom max_write_len, we need to
3004 * make a copy of kf_ops to set its atomic_write_len.
3005 */
3006 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) {
3007 kf_ops = kmemdup(kf_ops, sizeof(*kf_ops), GFP_KERNEL);
3008 if (!kf_ops) {
3009 cgroup_exit_cftypes(cfts);
3010 return -ENOMEM;
3011 }
3012 kf_ops->atomic_write_len = cft->max_write_len;
3013 }
3014
3015 cft->kf_ops = kf_ops;
Tejun Heo2da440a2014-02-11 11:52:48 -05003016 cft->ss = ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003017 }
3018
3019 return 0;
Tejun Heo2da440a2014-02-11 11:52:48 -05003020}
3021
Tejun Heo21a2d342014-02-12 09:29:49 -05003022static int cgroup_rm_cftypes_locked(struct cftype *cfts)
3023{
Tejun Heo01f64742014-05-13 12:19:23 -04003024 lockdep_assert_held(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003025
3026 if (!cfts || !cfts[0].ss)
3027 return -ENOENT;
3028
3029 list_del(&cfts->node);
3030 cgroup_apply_cftypes(cfts, false);
3031 cgroup_exit_cftypes(cfts);
3032 return 0;
3033}
3034
Tejun Heo8e3f6542012-04-01 12:09:55 -07003035/**
Tejun Heo80b13582014-02-12 09:29:48 -05003036 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
3037 * @cfts: zero-length name terminated array of cftypes
3038 *
3039 * Unregister @cfts. Files described by @cfts are removed from all
3040 * existing cgroups and all future cgroups won't have them either. This
3041 * function can be called anytime whether @cfts' subsys is attached or not.
3042 *
3043 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
3044 * registered.
3045 */
3046int cgroup_rm_cftypes(struct cftype *cfts)
3047{
Tejun Heo21a2d342014-02-12 09:29:49 -05003048 int ret;
Tejun Heo80b13582014-02-12 09:29:48 -05003049
Tejun Heo01f64742014-05-13 12:19:23 -04003050 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003051 ret = cgroup_rm_cftypes_locked(cfts);
Tejun Heo01f64742014-05-13 12:19:23 -04003052 mutex_unlock(&cgroup_mutex);
Tejun Heo8e3f6542012-04-01 12:09:55 -07003053 return ret;
3054}
3055
3056/**
3057 * cgroup_add_cftypes - add an array of cftypes to a subsystem
3058 * @ss: target cgroup subsystem
3059 * @cfts: zero-length name terminated array of cftypes
3060 *
3061 * Register @cfts to @ss. Files described by @cfts are created for all
3062 * existing cgroups to which @ss is attached and all future cgroups will
3063 * have them too. This function can be called anytime whether @ss is
3064 * attached or not.
3065 *
3066 * Returns 0 on successful registration, -errno on failure. Note that this
3067 * function currently returns 0 as long as @cfts registration is successful
3068 * even if some file creation attempts on existing cgroups fail.
3069 */
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04003070int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003071{
Tejun Heo9ccece82013-06-28 16:24:11 -07003072 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003073
Li Zefanc731ae12014-06-05 17:16:30 +08003074 if (ss->disabled)
3075 return 0;
3076
Li Zefandc5736e2014-02-17 10:41:50 +08003077 if (!cfts || cfts[0].name[0] == '\0')
3078 return 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003079
Tejun Heo2bd59d42014-02-11 11:52:49 -05003080 ret = cgroup_init_cftypes(ss, cfts);
Tejun Heo9ccece82013-06-28 16:24:11 -07003081 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05003082 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003083
Tejun Heo01f64742014-05-13 12:19:23 -04003084 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003085
Tejun Heo0adb0702014-02-12 09:29:48 -05003086 list_add_tail(&cfts->node, &ss->cfts);
Tejun Heo21a2d342014-02-12 09:29:49 -05003087 ret = cgroup_apply_cftypes(cfts, true);
Tejun Heo9ccece82013-06-28 16:24:11 -07003088 if (ret)
Tejun Heo21a2d342014-02-12 09:29:49 -05003089 cgroup_rm_cftypes_locked(cfts);
3090
Tejun Heo01f64742014-05-13 12:19:23 -04003091 mutex_unlock(&cgroup_mutex);
Tejun Heo9ccece82013-06-28 16:24:11 -07003092 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003093}
Tejun Heo79578622012-04-01 12:09:56 -07003094
3095/**
Li Zefana043e3b2008-02-23 15:24:09 -08003096 * cgroup_task_count - count the number of tasks in a cgroup.
3097 * @cgrp: the cgroup in question
3098 *
3099 * Return the number of tasks in the cgroup.
3100 */
Tejun Heo07bc3562014-02-13 06:58:39 -05003101static int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003102{
3103 int count = 0;
Tejun Heo69d02062013-06-12 21:04:50 -07003104 struct cgrp_cset_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003105
Tejun Heo96d365e2014-02-13 06:58:40 -05003106 down_read(&css_set_rwsem);
Tejun Heo69d02062013-06-12 21:04:50 -07003107 list_for_each_entry(link, &cgrp->cset_links, cset_link)
3108 count += atomic_read(&link->cset->refcount);
Tejun Heo96d365e2014-02-13 06:58:40 -05003109 up_read(&css_set_rwsem);
Paul Menagebbcb81d2007-10-18 23:39:32 -07003110 return count;
3111}
3112
Tejun Heo574bd9f2012-11-09 09:12:29 -08003113/**
Tejun Heo492eb212013-08-08 20:11:25 -04003114 * css_next_child - find the next child of a given css
Tejun Heoc2931b72014-05-16 13:22:51 -04003115 * @pos: the current position (%NULL to initiate traversal)
3116 * @parent: css whose children to walk
Tejun Heo53fa5262013-05-24 10:55:38 +09003117 *
Tejun Heoc2931b72014-05-16 13:22:51 -04003118 * This function returns the next child of @parent and should be called
Tejun Heo87fb54f2013-12-06 15:11:55 -05003119 * under either cgroup_mutex or RCU read lock. The only requirement is
Tejun Heoc2931b72014-05-16 13:22:51 -04003120 * that @parent and @pos are accessible. The next sibling is guaranteed to
3121 * be returned regardless of their states.
3122 *
3123 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3124 * css which finished ->css_online() is guaranteed to be visible in the
3125 * future iterations and will stay visible until the last reference is put.
3126 * A css which hasn't finished ->css_online() or already finished
3127 * ->css_offline() may show up during traversal. It's each subsystem's
3128 * responsibility to synchronize against on/offlining.
Tejun Heo53fa5262013-05-24 10:55:38 +09003129 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003130struct cgroup_subsys_state *css_next_child(struct cgroup_subsys_state *pos,
3131 struct cgroup_subsys_state *parent)
Tejun Heo53fa5262013-05-24 10:55:38 +09003132{
Tejun Heoc2931b72014-05-16 13:22:51 -04003133 struct cgroup_subsys_state *next;
Tejun Heo53fa5262013-05-24 10:55:38 +09003134
Tejun Heo8353da12014-05-13 12:19:23 -04003135 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo53fa5262013-05-24 10:55:38 +09003136
3137 /*
Tejun Heode3f0342014-05-16 13:22:49 -04003138 * @pos could already have been unlinked from the sibling list.
3139 * Once a cgroup is removed, its ->sibling.next is no longer
3140 * updated when its next sibling changes. CSS_RELEASED is set when
3141 * @pos is taken off list, at which time its next pointer is valid,
3142 * and, as releases are serialized, the one pointed to by the next
3143 * pointer is guaranteed to not have started release yet. This
3144 * implies that if we observe !CSS_RELEASED on @pos in this RCU
3145 * critical section, the one pointed to by its next pointer is
3146 * guaranteed to not have finished its RCU grace period even if we
3147 * have dropped rcu_read_lock() inbetween iterations.
Tejun Heo3b287a52013-08-08 20:11:24 -04003148 *
Tejun Heode3f0342014-05-16 13:22:49 -04003149 * If @pos has CSS_RELEASED set, its next pointer can't be
3150 * dereferenced; however, as each css is given a monotonically
3151 * increasing unique serial number and always appended to the
3152 * sibling list, the next one can be found by walking the parent's
3153 * children until the first css with higher serial number than
3154 * @pos's. While this path can be slower, it happens iff iteration
3155 * races against release and the race window is very small.
Tejun Heo53fa5262013-05-24 10:55:38 +09003156 */
Tejun Heo3b287a52013-08-08 20:11:24 -04003157 if (!pos) {
Tejun Heoc2931b72014-05-16 13:22:51 -04003158 next = list_entry_rcu(parent->children.next, struct cgroup_subsys_state, sibling);
3159 } else if (likely(!(pos->flags & CSS_RELEASED))) {
3160 next = list_entry_rcu(pos->sibling.next, struct cgroup_subsys_state, sibling);
Tejun Heo3b287a52013-08-08 20:11:24 -04003161 } else {
Tejun Heoc2931b72014-05-16 13:22:51 -04003162 list_for_each_entry_rcu(next, &parent->children, sibling)
Tejun Heo3b287a52013-08-08 20:11:24 -04003163 if (next->serial_nr > pos->serial_nr)
3164 break;
Tejun Heo53fa5262013-05-24 10:55:38 +09003165 }
3166
Tejun Heo3b281af2014-04-23 11:13:15 -04003167 /*
3168 * @next, if not pointing to the head, can be dereferenced and is
Tejun Heoc2931b72014-05-16 13:22:51 -04003169 * the next sibling.
Tejun Heo3b281af2014-04-23 11:13:15 -04003170 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003171 if (&next->sibling != &parent->children)
3172 return next;
Tejun Heo3b281af2014-04-23 11:13:15 -04003173 return NULL;
Tejun Heo53fa5262013-05-24 10:55:38 +09003174}
Tejun Heo53fa5262013-05-24 10:55:38 +09003175
3176/**
Tejun Heo492eb212013-08-08 20:11:25 -04003177 * css_next_descendant_pre - find the next descendant for pre-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003178 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003179 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003180 *
Tejun Heo492eb212013-08-08 20:11:25 -04003181 * To be used by css_for_each_descendant_pre(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003182 * to visit for pre-order traversal of @root's descendants. @root is
3183 * included in the iteration and the first node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003184 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003185 * While this function requires cgroup_mutex or RCU read locking, it
3186 * doesn't require the whole traversal to be contained in a single critical
3187 * section. This function will return the correct next descendant as long
3188 * as both @pos and @root are accessible and @pos is a descendant of @root.
Tejun Heoc2931b72014-05-16 13:22:51 -04003189 *
3190 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3191 * css which finished ->css_online() is guaranteed to be visible in the
3192 * future iterations and will stay visible until the last reference is put.
3193 * A css which hasn't finished ->css_online() or already finished
3194 * ->css_offline() may show up during traversal. It's each subsystem's
3195 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003196 */
Tejun Heo492eb212013-08-08 20:11:25 -04003197struct cgroup_subsys_state *
3198css_next_descendant_pre(struct cgroup_subsys_state *pos,
3199 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003200{
Tejun Heo492eb212013-08-08 20:11:25 -04003201 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003202
Tejun Heo8353da12014-05-13 12:19:23 -04003203 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003204
Tejun Heobd8815a2013-08-08 20:11:27 -04003205 /* if first iteration, visit @root */
Tejun Heo7805d002013-05-24 10:50:24 +09003206 if (!pos)
Tejun Heobd8815a2013-08-08 20:11:27 -04003207 return root;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003208
3209 /* visit the first child if exists */
Tejun Heo492eb212013-08-08 20:11:25 -04003210 next = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003211 if (next)
3212 return next;
3213
3214 /* no child, visit my or the closest ancestor's next sibling */
Tejun Heo492eb212013-08-08 20:11:25 -04003215 while (pos != root) {
Tejun Heo5c9d5352014-05-16 13:22:48 -04003216 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003217 if (next)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003218 return next;
Tejun Heo5c9d5352014-05-16 13:22:48 -04003219 pos = pos->parent;
Tejun Heo7805d002013-05-24 10:50:24 +09003220 }
Tejun Heo574bd9f2012-11-09 09:12:29 -08003221
3222 return NULL;
3223}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003224
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003225/**
Tejun Heo492eb212013-08-08 20:11:25 -04003226 * css_rightmost_descendant - return the rightmost descendant of a css
3227 * @pos: css of interest
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003228 *
Tejun Heo492eb212013-08-08 20:11:25 -04003229 * Return the rightmost descendant of @pos. If there's no descendant, @pos
3230 * is returned. This can be used during pre-order traversal to skip
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003231 * subtree of @pos.
Tejun Heo75501a62013-05-24 10:55:38 +09003232 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003233 * While this function requires cgroup_mutex or RCU read locking, it
3234 * doesn't require the whole traversal to be contained in a single critical
3235 * section. This function will return the correct rightmost descendant as
3236 * long as @pos is accessible.
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003237 */
Tejun Heo492eb212013-08-08 20:11:25 -04003238struct cgroup_subsys_state *
3239css_rightmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003240{
Tejun Heo492eb212013-08-08 20:11:25 -04003241 struct cgroup_subsys_state *last, *tmp;
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003242
Tejun Heo8353da12014-05-13 12:19:23 -04003243 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003244
3245 do {
3246 last = pos;
3247 /* ->prev isn't RCU safe, walk ->next till the end */
3248 pos = NULL;
Tejun Heo492eb212013-08-08 20:11:25 -04003249 css_for_each_child(tmp, last)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003250 pos = tmp;
3251 } while (pos);
3252
3253 return last;
3254}
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003255
Tejun Heo492eb212013-08-08 20:11:25 -04003256static struct cgroup_subsys_state *
3257css_leftmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003258{
Tejun Heo492eb212013-08-08 20:11:25 -04003259 struct cgroup_subsys_state *last;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003260
3261 do {
3262 last = pos;
Tejun Heo492eb212013-08-08 20:11:25 -04003263 pos = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003264 } while (pos);
3265
3266 return last;
3267}
3268
3269/**
Tejun Heo492eb212013-08-08 20:11:25 -04003270 * css_next_descendant_post - find the next descendant for post-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003271 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003272 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003273 *
Tejun Heo492eb212013-08-08 20:11:25 -04003274 * To be used by css_for_each_descendant_post(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003275 * to visit for post-order traversal of @root's descendants. @root is
3276 * included in the iteration and the last node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003277 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003278 * While this function requires cgroup_mutex or RCU read locking, it
3279 * doesn't require the whole traversal to be contained in a single critical
3280 * section. This function will return the correct next descendant as long
3281 * as both @pos and @cgroup are accessible and @pos is a descendant of
3282 * @cgroup.
Tejun Heoc2931b72014-05-16 13:22:51 -04003283 *
3284 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3285 * css which finished ->css_online() is guaranteed to be visible in the
3286 * future iterations and will stay visible until the last reference is put.
3287 * A css which hasn't finished ->css_online() or already finished
3288 * ->css_offline() may show up during traversal. It's each subsystem's
3289 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003290 */
Tejun Heo492eb212013-08-08 20:11:25 -04003291struct cgroup_subsys_state *
3292css_next_descendant_post(struct cgroup_subsys_state *pos,
3293 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003294{
Tejun Heo492eb212013-08-08 20:11:25 -04003295 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003296
Tejun Heo8353da12014-05-13 12:19:23 -04003297 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003298
Tejun Heo58b79a92013-09-06 15:31:08 -04003299 /* if first iteration, visit leftmost descendant which may be @root */
3300 if (!pos)
3301 return css_leftmost_descendant(root);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003302
Tejun Heobd8815a2013-08-08 20:11:27 -04003303 /* if we visited @root, we're done */
3304 if (pos == root)
3305 return NULL;
3306
Tejun Heo574bd9f2012-11-09 09:12:29 -08003307 /* if there's an unvisited sibling, visit its leftmost descendant */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003308 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003309 if (next)
Tejun Heo492eb212013-08-08 20:11:25 -04003310 return css_leftmost_descendant(next);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003311
3312 /* no sibling left, visit parent */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003313 return pos->parent;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003314}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003315
Tejun Heof3d46502014-05-16 13:22:52 -04003316/**
3317 * css_has_online_children - does a css have online children
3318 * @css: the target css
3319 *
3320 * Returns %true if @css has any online children; otherwise, %false. This
3321 * function can be called from any context but the caller is responsible
3322 * for synchronizing against on/offlining as necessary.
3323 */
3324bool css_has_online_children(struct cgroup_subsys_state *css)
Tejun Heocbc125e2014-05-14 09:15:01 -04003325{
Tejun Heof3d46502014-05-16 13:22:52 -04003326 struct cgroup_subsys_state *child;
3327 bool ret = false;
Tejun Heocbc125e2014-05-14 09:15:01 -04003328
3329 rcu_read_lock();
Tejun Heof3d46502014-05-16 13:22:52 -04003330 css_for_each_child(child, css) {
3331 if (css->flags & CSS_ONLINE) {
3332 ret = true;
3333 break;
Tejun Heocbc125e2014-05-14 09:15:01 -04003334 }
3335 }
3336 rcu_read_unlock();
Tejun Heof3d46502014-05-16 13:22:52 -04003337 return ret;
Cliff Wickman31a7df02008-02-07 00:14:42 -08003338}
3339
Tejun Heo0942eee2013-08-08 20:11:26 -04003340/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003341 * css_advance_task_iter - advance a task itererator to the next css_set
Tejun Heo0942eee2013-08-08 20:11:26 -04003342 * @it: the iterator to advance
3343 *
3344 * Advance @it to the next css_set to walk.
Tejun Heod5158762013-08-08 20:11:26 -04003345 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003346static void css_advance_task_iter(struct css_task_iter *it)
Tejun Heod5158762013-08-08 20:11:26 -04003347{
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003348 struct list_head *l = it->cset_pos;
Tejun Heod5158762013-08-08 20:11:26 -04003349 struct cgrp_cset_link *link;
3350 struct css_set *cset;
3351
3352 /* Advance to the next non-empty css_set */
3353 do {
3354 l = l->next;
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003355 if (l == it->cset_head) {
3356 it->cset_pos = NULL;
Tejun Heod5158762013-08-08 20:11:26 -04003357 return;
3358 }
Tejun Heo3ebb2b62014-04-23 11:13:15 -04003359
3360 if (it->ss) {
3361 cset = container_of(l, struct css_set,
3362 e_cset_node[it->ss->id]);
3363 } else {
3364 link = list_entry(l, struct cgrp_cset_link, cset_link);
3365 cset = link->cset;
3366 }
Tejun Heoc7561122014-02-25 10:04:01 -05003367 } while (list_empty(&cset->tasks) && list_empty(&cset->mg_tasks));
3368
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003369 it->cset_pos = l;
Tejun Heoc7561122014-02-25 10:04:01 -05003370
3371 if (!list_empty(&cset->tasks))
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003372 it->task_pos = cset->tasks.next;
Tejun Heoc7561122014-02-25 10:04:01 -05003373 else
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003374 it->task_pos = cset->mg_tasks.next;
3375
3376 it->tasks_head = &cset->tasks;
3377 it->mg_tasks_head = &cset->mg_tasks;
Tejun Heod5158762013-08-08 20:11:26 -04003378}
3379
Tejun Heo0942eee2013-08-08 20:11:26 -04003380/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003381 * css_task_iter_start - initiate task iteration
3382 * @css: the css to walk tasks of
Tejun Heo0942eee2013-08-08 20:11:26 -04003383 * @it: the task iterator to use
3384 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003385 * Initiate iteration through the tasks of @css. The caller can call
3386 * css_task_iter_next() to walk through the tasks until the function
3387 * returns NULL. On completion of iteration, css_task_iter_end() must be
3388 * called.
Tejun Heo0942eee2013-08-08 20:11:26 -04003389 *
3390 * Note that this function acquires a lock which is released when the
3391 * iteration finishes. The caller can't sleep while iteration is in
3392 * progress.
3393 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003394void css_task_iter_start(struct cgroup_subsys_state *css,
3395 struct css_task_iter *it)
Tejun Heo96d365e2014-02-13 06:58:40 -05003396 __acquires(css_set_rwsem)
Paul Menage817929e2007-10-18 23:39:36 -07003397{
Tejun Heo56fde9e2014-02-13 06:58:38 -05003398 /* no one should try to iterate before mounting cgroups */
3399 WARN_ON_ONCE(!use_task_css_set_links);
Paul Menage817929e2007-10-18 23:39:36 -07003400
Tejun Heo96d365e2014-02-13 06:58:40 -05003401 down_read(&css_set_rwsem);
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003402
Tejun Heo3ebb2b62014-04-23 11:13:15 -04003403 it->ss = css->ss;
3404
3405 if (it->ss)
3406 it->cset_pos = &css->cgroup->e_csets[css->ss->id];
3407 else
3408 it->cset_pos = &css->cgroup->cset_links;
3409
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003410 it->cset_head = it->cset_pos;
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003411
Tejun Heo72ec7022013-08-08 20:11:26 -04003412 css_advance_task_iter(it);
Paul Menagebd89aab2007-10-18 23:40:44 -07003413}
Paul Menage817929e2007-10-18 23:39:36 -07003414
Tejun Heo0942eee2013-08-08 20:11:26 -04003415/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003416 * css_task_iter_next - return the next task for the iterator
Tejun Heo0942eee2013-08-08 20:11:26 -04003417 * @it: the task iterator being iterated
3418 *
3419 * The "next" function for task iteration. @it should have been
Tejun Heo72ec7022013-08-08 20:11:26 -04003420 * initialized via css_task_iter_start(). Returns NULL when the iteration
3421 * reaches the end.
Tejun Heo0942eee2013-08-08 20:11:26 -04003422 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003423struct task_struct *css_task_iter_next(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07003424{
3425 struct task_struct *res;
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003426 struct list_head *l = it->task_pos;
Paul Menage817929e2007-10-18 23:39:36 -07003427
3428 /* If the iterator cg is NULL, we have no tasks */
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003429 if (!it->cset_pos)
Paul Menage817929e2007-10-18 23:39:36 -07003430 return NULL;
3431 res = list_entry(l, struct task_struct, cg_list);
Tejun Heoc7561122014-02-25 10:04:01 -05003432
3433 /*
3434 * Advance iterator to find next entry. cset->tasks is consumed
3435 * first and then ->mg_tasks. After ->mg_tasks, we move onto the
3436 * next cset.
3437 */
Paul Menage817929e2007-10-18 23:39:36 -07003438 l = l->next;
Tejun Heoc7561122014-02-25 10:04:01 -05003439
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003440 if (l == it->tasks_head)
3441 l = it->mg_tasks_head->next;
Tejun Heoc7561122014-02-25 10:04:01 -05003442
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003443 if (l == it->mg_tasks_head)
Tejun Heo72ec7022013-08-08 20:11:26 -04003444 css_advance_task_iter(it);
Tejun Heoc7561122014-02-25 10:04:01 -05003445 else
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003446 it->task_pos = l;
Tejun Heoc7561122014-02-25 10:04:01 -05003447
Paul Menage817929e2007-10-18 23:39:36 -07003448 return res;
3449}
3450
Tejun Heo0942eee2013-08-08 20:11:26 -04003451/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003452 * css_task_iter_end - finish task iteration
Tejun Heo0942eee2013-08-08 20:11:26 -04003453 * @it: the task iterator to finish
3454 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003455 * Finish task iteration started by css_task_iter_start().
Tejun Heo0942eee2013-08-08 20:11:26 -04003456 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003457void css_task_iter_end(struct css_task_iter *it)
Tejun Heo96d365e2014-02-13 06:58:40 -05003458 __releases(css_set_rwsem)
Paul Menage817929e2007-10-18 23:39:36 -07003459{
Tejun Heo96d365e2014-02-13 06:58:40 -05003460 up_read(&css_set_rwsem);
Tejun Heo8cc99342013-04-07 09:29:50 -07003461}
3462
3463/**
3464 * cgroup_trasnsfer_tasks - move tasks from one cgroup to another
3465 * @to: cgroup to which the tasks will be moved
3466 * @from: cgroup in which the tasks currently reside
Tejun Heoeaf797a2014-02-25 10:04:03 -05003467 *
3468 * Locking rules between cgroup_post_fork() and the migration path
3469 * guarantee that, if a task is forking while being migrated, the new child
3470 * is guaranteed to be either visible in the source cgroup after the
3471 * parent's migration is complete or put into the target cgroup. No task
3472 * can slip out of migration through forking.
Tejun Heo8cc99342013-04-07 09:29:50 -07003473 */
3474int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from)
3475{
Tejun Heo952aaa12014-02-25 10:04:03 -05003476 LIST_HEAD(preloaded_csets);
3477 struct cgrp_cset_link *link;
Tejun Heoe406d1c2014-02-13 06:58:39 -05003478 struct css_task_iter it;
3479 struct task_struct *task;
Tejun Heo952aaa12014-02-25 10:04:03 -05003480 int ret;
Tejun Heoe406d1c2014-02-13 06:58:39 -05003481
Tejun Heo952aaa12014-02-25 10:04:03 -05003482 mutex_lock(&cgroup_mutex);
3483
3484 /* all tasks in @from are being moved, all csets are source */
3485 down_read(&css_set_rwsem);
3486 list_for_each_entry(link, &from->cset_links, cset_link)
3487 cgroup_migrate_add_src(link->cset, to, &preloaded_csets);
3488 up_read(&css_set_rwsem);
3489
3490 ret = cgroup_migrate_prepare_dst(to, &preloaded_csets);
3491 if (ret)
3492 goto out_err;
3493
3494 /*
3495 * Migrate tasks one-by-one until @form is empty. This fails iff
3496 * ->can_attach() fails.
3497 */
Tejun Heoe406d1c2014-02-13 06:58:39 -05003498 do {
Tejun Heo9d800df2014-05-14 09:15:00 -04003499 css_task_iter_start(&from->self, &it);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003500 task = css_task_iter_next(&it);
3501 if (task)
3502 get_task_struct(task);
3503 css_task_iter_end(&it);
3504
3505 if (task) {
Tejun Heo952aaa12014-02-25 10:04:03 -05003506 ret = cgroup_migrate(to, task, false);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003507 put_task_struct(task);
3508 }
3509 } while (task && !ret);
Tejun Heo952aaa12014-02-25 10:04:03 -05003510out_err:
3511 cgroup_migrate_finish(&preloaded_csets);
3512 mutex_unlock(&cgroup_mutex);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003513 return ret;
Tejun Heo8cc99342013-04-07 09:29:50 -07003514}
3515
Paul Menage817929e2007-10-18 23:39:36 -07003516/*
Ben Blum102a7752009-09-23 15:56:26 -07003517 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003518 *
3519 * Reading this file can return large amounts of data if a cgroup has
3520 * *lots* of attached tasks. So it may need several calls to read(),
3521 * but we cannot guarantee that the information we produce is correct
3522 * unless we produce it entirely atomically.
3523 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07003524 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003525
Li Zefan24528252012-01-20 11:58:43 +08003526/* which pidlist file are we talking about? */
3527enum cgroup_filetype {
3528 CGROUP_FILE_PROCS,
3529 CGROUP_FILE_TASKS,
3530};
3531
3532/*
3533 * A pidlist is a list of pids that virtually represents the contents of one
3534 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
3535 * a pair (one each for procs, tasks) for each pid namespace that's relevant
3536 * to the cgroup.
3537 */
3538struct cgroup_pidlist {
3539 /*
3540 * used to find which pidlist is wanted. doesn't change as long as
3541 * this particular list stays in the list.
3542 */
3543 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
3544 /* array of xids */
3545 pid_t *list;
3546 /* how many elements the above list has */
3547 int length;
Li Zefan24528252012-01-20 11:58:43 +08003548 /* each of these stored in a list by its cgroup */
3549 struct list_head links;
3550 /* pointer to the cgroup we belong to, for list removal purposes */
3551 struct cgroup *owner;
Tejun Heob1a21362013-11-29 10:42:58 -05003552 /* for delayed destruction */
3553 struct delayed_work destroy_dwork;
Li Zefan24528252012-01-20 11:58:43 +08003554};
3555
Paul Menagebbcb81d2007-10-18 23:39:32 -07003556/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07003557 * The following two functions "fix" the issue where there are more pids
3558 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
3559 * TODO: replace with a kernel-wide solution to this problem
3560 */
3561#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
3562static void *pidlist_allocate(int count)
3563{
3564 if (PIDLIST_TOO_LARGE(count))
3565 return vmalloc(count * sizeof(pid_t));
3566 else
3567 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
3568}
Tejun Heob1a21362013-11-29 10:42:58 -05003569
Ben Blumd1d9fd32009-09-23 15:56:28 -07003570static void pidlist_free(void *p)
3571{
3572 if (is_vmalloc_addr(p))
3573 vfree(p);
3574 else
3575 kfree(p);
3576}
Ben Blumd1d9fd32009-09-23 15:56:28 -07003577
3578/*
Tejun Heob1a21362013-11-29 10:42:58 -05003579 * Used to destroy all pidlists lingering waiting for destroy timer. None
3580 * should be left afterwards.
3581 */
3582static void cgroup_pidlist_destroy_all(struct cgroup *cgrp)
3583{
3584 struct cgroup_pidlist *l, *tmp_l;
3585
3586 mutex_lock(&cgrp->pidlist_mutex);
3587 list_for_each_entry_safe(l, tmp_l, &cgrp->pidlists, links)
3588 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, 0);
3589 mutex_unlock(&cgrp->pidlist_mutex);
3590
3591 flush_workqueue(cgroup_pidlist_destroy_wq);
3592 BUG_ON(!list_empty(&cgrp->pidlists));
3593}
3594
3595static void cgroup_pidlist_destroy_work_fn(struct work_struct *work)
3596{
3597 struct delayed_work *dwork = to_delayed_work(work);
3598 struct cgroup_pidlist *l = container_of(dwork, struct cgroup_pidlist,
3599 destroy_dwork);
3600 struct cgroup_pidlist *tofree = NULL;
3601
3602 mutex_lock(&l->owner->pidlist_mutex);
Tejun Heob1a21362013-11-29 10:42:58 -05003603
3604 /*
Tejun Heo04502362013-11-29 10:42:59 -05003605 * Destroy iff we didn't get queued again. The state won't change
3606 * as destroy_dwork can only be queued while locked.
Tejun Heob1a21362013-11-29 10:42:58 -05003607 */
Tejun Heo04502362013-11-29 10:42:59 -05003608 if (!delayed_work_pending(dwork)) {
Tejun Heob1a21362013-11-29 10:42:58 -05003609 list_del(&l->links);
3610 pidlist_free(l->list);
3611 put_pid_ns(l->key.ns);
3612 tofree = l;
3613 }
3614
Tejun Heob1a21362013-11-29 10:42:58 -05003615 mutex_unlock(&l->owner->pidlist_mutex);
3616 kfree(tofree);
3617}
3618
3619/*
Ben Blum102a7752009-09-23 15:56:26 -07003620 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
Li Zefan6ee211a2013-03-12 15:36:00 -07003621 * Returns the number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003622 */
Li Zefan6ee211a2013-03-12 15:36:00 -07003623static int pidlist_uniq(pid_t *list, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003624{
Ben Blum102a7752009-09-23 15:56:26 -07003625 int src, dest = 1;
Ben Blum102a7752009-09-23 15:56:26 -07003626
3627 /*
3628 * we presume the 0th element is unique, so i starts at 1. trivial
3629 * edge cases first; no work needs to be done for either
3630 */
3631 if (length == 0 || length == 1)
3632 return length;
3633 /* src and dest walk down the list; dest counts unique elements */
3634 for (src = 1; src < length; src++) {
3635 /* find next unique element */
3636 while (list[src] == list[src-1]) {
3637 src++;
3638 if (src == length)
3639 goto after;
3640 }
3641 /* dest always points to where the next unique element goes */
3642 list[dest] = list[src];
3643 dest++;
3644 }
3645after:
Ben Blum102a7752009-09-23 15:56:26 -07003646 return dest;
3647}
3648
Tejun Heoafb2bc12013-11-29 10:42:59 -05003649/*
3650 * The two pid files - task and cgroup.procs - guaranteed that the result
3651 * is sorted, which forced this whole pidlist fiasco. As pid order is
3652 * different per namespace, each namespace needs differently sorted list,
3653 * making it impossible to use, for example, single rbtree of member tasks
3654 * sorted by task pointer. As pidlists can be fairly large, allocating one
3655 * per open file is dangerous, so cgroup had to implement shared pool of
3656 * pidlists keyed by cgroup and namespace.
3657 *
3658 * All this extra complexity was caused by the original implementation
3659 * committing to an entirely unnecessary property. In the long term, we
3660 * want to do away with it. Explicitly scramble sort order if
3661 * sane_behavior so that no such expectation exists in the new interface.
3662 *
3663 * Scrambling is done by swapping every two consecutive bits, which is
3664 * non-identity one-to-one mapping which disturbs sort order sufficiently.
3665 */
3666static pid_t pid_fry(pid_t pid)
3667{
3668 unsigned a = pid & 0x55555555;
3669 unsigned b = pid & 0xAAAAAAAA;
3670
3671 return (a << 1) | (b >> 1);
3672}
3673
3674static pid_t cgroup_pid_fry(struct cgroup *cgrp, pid_t pid)
3675{
3676 if (cgroup_sane_behavior(cgrp))
3677 return pid_fry(pid);
3678 else
3679 return pid;
3680}
3681
Ben Blum102a7752009-09-23 15:56:26 -07003682static int cmppid(const void *a, const void *b)
3683{
3684 return *(pid_t *)a - *(pid_t *)b;
3685}
3686
Tejun Heoafb2bc12013-11-29 10:42:59 -05003687static int fried_cmppid(const void *a, const void *b)
3688{
3689 return pid_fry(*(pid_t *)a) - pid_fry(*(pid_t *)b);
3690}
3691
Ben Blum72a8cb32009-09-23 15:56:27 -07003692static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
3693 enum cgroup_filetype type)
3694{
3695 struct cgroup_pidlist *l;
3696 /* don't need task_nsproxy() if we're looking at ourself */
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08003697 struct pid_namespace *ns = task_active_pid_ns(current);
Li Zefanb70cc5f2010-03-10 15:22:12 -08003698
Tejun Heoe6b81712013-11-29 10:42:59 -05003699 lockdep_assert_held(&cgrp->pidlist_mutex);
3700
3701 list_for_each_entry(l, &cgrp->pidlists, links)
3702 if (l->key.type == type && l->key.ns == ns)
Ben Blum72a8cb32009-09-23 15:56:27 -07003703 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05003704 return NULL;
3705}
3706
Ben Blum72a8cb32009-09-23 15:56:27 -07003707/*
3708 * find the appropriate pidlist for our purpose (given procs vs tasks)
3709 * returns with the lock on that pidlist already held, and takes care
3710 * of the use count, or returns NULL with no locks held if we're out of
3711 * memory.
3712 */
Tejun Heoe6b81712013-11-29 10:42:59 -05003713static struct cgroup_pidlist *cgroup_pidlist_find_create(struct cgroup *cgrp,
3714 enum cgroup_filetype type)
Ben Blum72a8cb32009-09-23 15:56:27 -07003715{
3716 struct cgroup_pidlist *l;
Ben Blum72a8cb32009-09-23 15:56:27 -07003717
Tejun Heoe6b81712013-11-29 10:42:59 -05003718 lockdep_assert_held(&cgrp->pidlist_mutex);
3719
3720 l = cgroup_pidlist_find(cgrp, type);
3721 if (l)
3722 return l;
3723
Ben Blum72a8cb32009-09-23 15:56:27 -07003724 /* entry not found; create a new one */
Tejun Heof4f4be22013-06-12 21:04:51 -07003725 l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
Tejun Heoe6b81712013-11-29 10:42:59 -05003726 if (!l)
Ben Blum72a8cb32009-09-23 15:56:27 -07003727 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05003728
Tejun Heob1a21362013-11-29 10:42:58 -05003729 INIT_DELAYED_WORK(&l->destroy_dwork, cgroup_pidlist_destroy_work_fn);
Ben Blum72a8cb32009-09-23 15:56:27 -07003730 l->key.type = type;
Tejun Heoe6b81712013-11-29 10:42:59 -05003731 /* don't need task_nsproxy() if we're looking at ourself */
3732 l->key.ns = get_pid_ns(task_active_pid_ns(current));
Ben Blum72a8cb32009-09-23 15:56:27 -07003733 l->owner = cgrp;
3734 list_add(&l->links, &cgrp->pidlists);
Ben Blum72a8cb32009-09-23 15:56:27 -07003735 return l;
3736}
3737
3738/*
Ben Blum102a7752009-09-23 15:56:26 -07003739 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
3740 */
Ben Blum72a8cb32009-09-23 15:56:27 -07003741static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
3742 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07003743{
3744 pid_t *array;
3745 int length;
3746 int pid, n = 0; /* used for populating the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04003747 struct css_task_iter it;
Paul Menage817929e2007-10-18 23:39:36 -07003748 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07003749 struct cgroup_pidlist *l;
3750
Tejun Heo4bac00d2013-11-29 10:42:59 -05003751 lockdep_assert_held(&cgrp->pidlist_mutex);
3752
Ben Blum102a7752009-09-23 15:56:26 -07003753 /*
3754 * If cgroup gets more users after we read count, we won't have
3755 * enough space - tough. This race is indistinguishable to the
3756 * caller from the case that the additional cgroup users didn't
3757 * show up until sometime later on.
3758 */
3759 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003760 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07003761 if (!array)
3762 return -ENOMEM;
3763 /* now, populate the array */
Tejun Heo9d800df2014-05-14 09:15:00 -04003764 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04003765 while ((tsk = css_task_iter_next(&it))) {
Ben Blum102a7752009-09-23 15:56:26 -07003766 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07003767 break;
Ben Blum102a7752009-09-23 15:56:26 -07003768 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07003769 if (type == CGROUP_FILE_PROCS)
3770 pid = task_tgid_vnr(tsk);
3771 else
3772 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07003773 if (pid > 0) /* make sure to only use valid results */
3774 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07003775 }
Tejun Heo72ec7022013-08-08 20:11:26 -04003776 css_task_iter_end(&it);
Ben Blum102a7752009-09-23 15:56:26 -07003777 length = n;
3778 /* now sort & (if procs) strip out duplicates */
Tejun Heoafb2bc12013-11-29 10:42:59 -05003779 if (cgroup_sane_behavior(cgrp))
3780 sort(array, length, sizeof(pid_t), fried_cmppid, NULL);
3781 else
3782 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07003783 if (type == CGROUP_FILE_PROCS)
Li Zefan6ee211a2013-03-12 15:36:00 -07003784 length = pidlist_uniq(array, length);
Tejun Heoe6b81712013-11-29 10:42:59 -05003785
Tejun Heoe6b81712013-11-29 10:42:59 -05003786 l = cgroup_pidlist_find_create(cgrp, type);
Ben Blum72a8cb32009-09-23 15:56:27 -07003787 if (!l) {
Tejun Heoe6b81712013-11-29 10:42:59 -05003788 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003789 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07003790 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07003791 }
Tejun Heoe6b81712013-11-29 10:42:59 -05003792
3793 /* store array, freeing old if necessary */
Ben Blumd1d9fd32009-09-23 15:56:28 -07003794 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07003795 l->list = array;
3796 l->length = length;
Ben Blum72a8cb32009-09-23 15:56:27 -07003797 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07003798 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003799}
3800
Balbir Singh846c7bb2007-10-18 23:39:44 -07003801/**
Li Zefana043e3b2008-02-23 15:24:09 -08003802 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07003803 * @stats: cgroupstats to fill information into
3804 * @dentry: A dentry entry belonging to the cgroup for which stats have
3805 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08003806 *
3807 * Build and fill cgroupstats so that taskstats can export it to user
3808 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003809 */
3810int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
3811{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003812 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07003813 struct cgroup *cgrp;
Tejun Heo72ec7022013-08-08 20:11:26 -04003814 struct css_task_iter it;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003815 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08003816
Tejun Heo2bd59d42014-02-11 11:52:49 -05003817 /* it should be kernfs_node belonging to cgroupfs and is a directory */
3818 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
3819 kernfs_type(kn) != KERNFS_DIR)
3820 return -EINVAL;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003821
Li Zefanbad34662014-02-14 16:54:28 +08003822 mutex_lock(&cgroup_mutex);
3823
Tejun Heo2bd59d42014-02-11 11:52:49 -05003824 /*
3825 * We aren't being called from kernfs and there's no guarantee on
Tejun Heoec903c02014-05-13 12:11:01 -04003826 * @kn->priv's validity. For this and css_tryget_online_from_dir(),
Tejun Heo2bd59d42014-02-11 11:52:49 -05003827 * @kn->priv is RCU safe. Let's do the RCU dancing.
3828 */
3829 rcu_read_lock();
3830 cgrp = rcu_dereference(kn->priv);
Li Zefanbad34662014-02-14 16:54:28 +08003831 if (!cgrp || cgroup_is_dead(cgrp)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05003832 rcu_read_unlock();
Li Zefanbad34662014-02-14 16:54:28 +08003833 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003834 return -ENOENT;
3835 }
Li Zefanbad34662014-02-14 16:54:28 +08003836 rcu_read_unlock();
Balbir Singh846c7bb2007-10-18 23:39:44 -07003837
Tejun Heo9d800df2014-05-14 09:15:00 -04003838 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04003839 while ((tsk = css_task_iter_next(&it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07003840 switch (tsk->state) {
3841 case TASK_RUNNING:
3842 stats->nr_running++;
3843 break;
3844 case TASK_INTERRUPTIBLE:
3845 stats->nr_sleeping++;
3846 break;
3847 case TASK_UNINTERRUPTIBLE:
3848 stats->nr_uninterruptible++;
3849 break;
3850 case TASK_STOPPED:
3851 stats->nr_stopped++;
3852 break;
3853 default:
3854 if (delayacct_is_task_waiting_on_io(tsk))
3855 stats->nr_io_wait++;
3856 break;
3857 }
3858 }
Tejun Heo72ec7022013-08-08 20:11:26 -04003859 css_task_iter_end(&it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07003860
Li Zefanbad34662014-02-14 16:54:28 +08003861 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003862 return 0;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003863}
3864
Paul Menage8f3ff202009-09-23 15:56:25 -07003865
Paul Menagecc31edc2008-10-18 20:28:04 -07003866/*
Ben Blum102a7752009-09-23 15:56:26 -07003867 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07003868 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07003869 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07003870 */
3871
Ben Blum102a7752009-09-23 15:56:26 -07003872static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003873{
3874 /*
3875 * Initially we receive a position value that corresponds to
3876 * one more than the last pid shown (or 0 on the first call or
3877 * after a seek to the start). Use a binary-search to find the
3878 * next pid to display, if any
3879 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05003880 struct kernfs_open_file *of = s->private;
Tejun Heo7da11272013-12-05 12:28:04 -05003881 struct cgroup *cgrp = seq_css(s)->cgroup;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003882 struct cgroup_pidlist *l;
Tejun Heo7da11272013-12-05 12:28:04 -05003883 enum cgroup_filetype type = seq_cft(s)->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07003884 int index = 0, pid = *pos;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003885 int *iter, ret;
Paul Menagecc31edc2008-10-18 20:28:04 -07003886
Tejun Heo4bac00d2013-11-29 10:42:59 -05003887 mutex_lock(&cgrp->pidlist_mutex);
3888
3889 /*
Tejun Heo5d224442013-12-05 12:28:04 -05003890 * !NULL @of->priv indicates that this isn't the first start()
Tejun Heo4bac00d2013-11-29 10:42:59 -05003891 * after open. If the matching pidlist is around, we can use that.
Tejun Heo5d224442013-12-05 12:28:04 -05003892 * Look for it. Note that @of->priv can't be used directly. It
Tejun Heo4bac00d2013-11-29 10:42:59 -05003893 * could already have been destroyed.
3894 */
Tejun Heo5d224442013-12-05 12:28:04 -05003895 if (of->priv)
3896 of->priv = cgroup_pidlist_find(cgrp, type);
Tejun Heo4bac00d2013-11-29 10:42:59 -05003897
3898 /*
3899 * Either this is the first start() after open or the matching
3900 * pidlist has been destroyed inbetween. Create a new one.
3901 */
Tejun Heo5d224442013-12-05 12:28:04 -05003902 if (!of->priv) {
3903 ret = pidlist_array_load(cgrp, type,
3904 (struct cgroup_pidlist **)&of->priv);
Tejun Heo4bac00d2013-11-29 10:42:59 -05003905 if (ret)
3906 return ERR_PTR(ret);
3907 }
Tejun Heo5d224442013-12-05 12:28:04 -05003908 l = of->priv;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003909
Paul Menagecc31edc2008-10-18 20:28:04 -07003910 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07003911 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11003912
Paul Menagecc31edc2008-10-18 20:28:04 -07003913 while (index < end) {
3914 int mid = (index + end) / 2;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003915 if (cgroup_pid_fry(cgrp, l->list[mid]) == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07003916 index = mid;
3917 break;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003918 } else if (cgroup_pid_fry(cgrp, l->list[mid]) <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07003919 index = mid + 1;
3920 else
3921 end = mid;
3922 }
3923 }
3924 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07003925 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07003926 return NULL;
3927 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07003928 iter = l->list + index;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003929 *pos = cgroup_pid_fry(cgrp, *iter);
Paul Menagecc31edc2008-10-18 20:28:04 -07003930 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003931}
3932
Ben Blum102a7752009-09-23 15:56:26 -07003933static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003934{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003935 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05003936 struct cgroup_pidlist *l = of->priv;
Tejun Heo62236852013-11-29 10:42:58 -05003937
Tejun Heo5d224442013-12-05 12:28:04 -05003938 if (l)
3939 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork,
Tejun Heo04502362013-11-29 10:42:59 -05003940 CGROUP_PIDLIST_DESTROY_DELAY);
Tejun Heo7da11272013-12-05 12:28:04 -05003941 mutex_unlock(&seq_css(s)->cgroup->pidlist_mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003942}
3943
Ben Blum102a7752009-09-23 15:56:26 -07003944static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003945{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003946 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05003947 struct cgroup_pidlist *l = of->priv;
Ben Blum102a7752009-09-23 15:56:26 -07003948 pid_t *p = v;
3949 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07003950 /*
3951 * Advance to the next pid in the array. If this goes off the
3952 * end, we're done
3953 */
3954 p++;
3955 if (p >= end) {
3956 return NULL;
3957 } else {
Tejun Heo7da11272013-12-05 12:28:04 -05003958 *pos = cgroup_pid_fry(seq_css(s)->cgroup, *p);
Paul Menagecc31edc2008-10-18 20:28:04 -07003959 return p;
3960 }
3961}
3962
Ben Blum102a7752009-09-23 15:56:26 -07003963static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003964{
3965 return seq_printf(s, "%d\n", *(int *)v);
3966}
3967
Tejun Heo182446d2013-08-08 20:11:24 -04003968static u64 cgroup_read_notify_on_release(struct cgroup_subsys_state *css,
3969 struct cftype *cft)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003970{
Tejun Heo182446d2013-08-08 20:11:24 -04003971 return notify_on_release(css->cgroup);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003972}
3973
Tejun Heo182446d2013-08-08 20:11:24 -04003974static int cgroup_write_notify_on_release(struct cgroup_subsys_state *css,
3975 struct cftype *cft, u64 val)
Paul Menage6379c102008-07-25 01:47:01 -07003976{
Tejun Heo182446d2013-08-08 20:11:24 -04003977 clear_bit(CGRP_RELEASABLE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003978 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04003979 set_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003980 else
Tejun Heo182446d2013-08-08 20:11:24 -04003981 clear_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003982 return 0;
3983}
3984
Tejun Heo182446d2013-08-08 20:11:24 -04003985static u64 cgroup_clone_children_read(struct cgroup_subsys_state *css,
3986 struct cftype *cft)
Daniel Lezcano97978e62010-10-27 15:33:35 -07003987{
Tejun Heo182446d2013-08-08 20:11:24 -04003988 return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003989}
3990
Tejun Heo182446d2013-08-08 20:11:24 -04003991static int cgroup_clone_children_write(struct cgroup_subsys_state *css,
3992 struct cftype *cft, u64 val)
Daniel Lezcano97978e62010-10-27 15:33:35 -07003993{
3994 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04003995 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003996 else
Tejun Heo182446d2013-08-08 20:11:24 -04003997 clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003998 return 0;
3999}
4000
Tejun Heod5c56ce2013-06-03 19:14:34 -07004001static struct cftype cgroup_base_files[] = {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004002 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07004003 .name = "cgroup.procs",
Tejun Heo6612f052013-12-05 12:28:04 -05004004 .seq_start = cgroup_pidlist_start,
4005 .seq_next = cgroup_pidlist_next,
4006 .seq_stop = cgroup_pidlist_stop,
4007 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004008 .private = CGROUP_FILE_PROCS,
Tejun Heoacbef752014-05-13 12:16:22 -04004009 .write = cgroup_procs_write,
Ben Blum74a11662011-05-26 16:25:20 -07004010 .mode = S_IRUGO | S_IWUSR,
Ben Blum102a7752009-09-23 15:56:26 -07004011 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07004012 {
Daniel Lezcano97978e62010-10-27 15:33:35 -07004013 .name = "cgroup.clone_children",
Tejun Heo873fe092013-04-14 20:15:26 -07004014 .flags = CFTYPE_INSANE,
Daniel Lezcano97978e62010-10-27 15:33:35 -07004015 .read_u64 = cgroup_clone_children_read,
4016 .write_u64 = cgroup_clone_children_write,
4017 },
Tejun Heo6e6ff252012-04-01 12:09:55 -07004018 {
Tejun Heo873fe092013-04-14 20:15:26 -07004019 .name = "cgroup.sane_behavior",
4020 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004021 .seq_show = cgroup_sane_behavior_show,
Tejun Heo873fe092013-04-14 20:15:26 -07004022 },
Tejun Heof8f22e52014-04-23 11:13:16 -04004023 {
4024 .name = "cgroup.controllers",
4025 .flags = CFTYPE_ONLY_ON_DFL | CFTYPE_ONLY_ON_ROOT,
4026 .seq_show = cgroup_root_controllers_show,
4027 },
4028 {
4029 .name = "cgroup.controllers",
4030 .flags = CFTYPE_ONLY_ON_DFL | CFTYPE_NOT_ON_ROOT,
4031 .seq_show = cgroup_controllers_show,
4032 },
4033 {
4034 .name = "cgroup.subtree_control",
4035 .flags = CFTYPE_ONLY_ON_DFL,
4036 .seq_show = cgroup_subtree_control_show,
Tejun Heo451af502014-05-13 12:16:21 -04004037 .write = cgroup_subtree_control_write,
Tejun Heof8f22e52014-04-23 11:13:16 -04004038 },
Tejun Heo842b5972014-04-25 18:28:02 -04004039 {
4040 .name = "cgroup.populated",
4041 .flags = CFTYPE_ONLY_ON_DFL | CFTYPE_NOT_ON_ROOT,
4042 .seq_show = cgroup_populated_show,
4043 },
Tejun Heod5c56ce2013-06-03 19:14:34 -07004044
4045 /*
4046 * Historical crazy stuff. These don't have "cgroup." prefix and
4047 * don't exist if sane_behavior. If you're depending on these, be
4048 * prepared to be burned.
4049 */
4050 {
4051 .name = "tasks",
4052 .flags = CFTYPE_INSANE, /* use "procs" instead */
Tejun Heo6612f052013-12-05 12:28:04 -05004053 .seq_start = cgroup_pidlist_start,
4054 .seq_next = cgroup_pidlist_next,
4055 .seq_stop = cgroup_pidlist_stop,
4056 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004057 .private = CGROUP_FILE_TASKS,
Tejun Heoacbef752014-05-13 12:16:22 -04004058 .write = cgroup_tasks_write,
Tejun Heod5c56ce2013-06-03 19:14:34 -07004059 .mode = S_IRUGO | S_IWUSR,
4060 },
4061 {
4062 .name = "notify_on_release",
4063 .flags = CFTYPE_INSANE,
4064 .read_u64 = cgroup_read_notify_on_release,
4065 .write_u64 = cgroup_write_notify_on_release,
4066 },
Tejun Heo873fe092013-04-14 20:15:26 -07004067 {
Tejun Heo6e6ff252012-04-01 12:09:55 -07004068 .name = "release_agent",
Tejun Heocc5943a2013-06-03 19:13:55 -07004069 .flags = CFTYPE_INSANE | CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004070 .seq_show = cgroup_release_agent_show,
Tejun Heo451af502014-05-13 12:16:21 -04004071 .write = cgroup_release_agent_write,
Tejun Heo5f469902014-02-11 11:52:48 -05004072 .max_write_len = PATH_MAX - 1,
Tejun Heo6e6ff252012-04-01 12:09:55 -07004073 },
Tejun Heodb0416b2012-04-01 12:09:55 -07004074 { } /* terminate */
Paul Menagebbcb81d2007-10-18 23:39:32 -07004075};
4076
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004077/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07004078 * cgroup_populate_dir - create subsys files in a cgroup directory
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004079 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004080 * @subsys_mask: mask of the subsystem ids whose files should be added
Tejun Heobee55092013-06-28 16:24:11 -07004081 *
4082 * On failure, no file is added.
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004083 */
Tejun Heo69dfa002014-05-04 15:09:13 -04004084static int cgroup_populate_dir(struct cgroup *cgrp, unsigned int subsys_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004085{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004086 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07004087 int i, ret = 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004088
Tejun Heo8e3f6542012-04-01 12:09:55 -07004089 /* process cftsets of each subsystem */
Tejun Heob420ba72013-07-12 12:34:02 -07004090 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -05004091 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -07004092
Tejun Heo69dfa002014-05-04 15:09:13 -04004093 if (!(subsys_mask & (1 << i)))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004094 continue;
Tejun Heo8e3f6542012-04-01 12:09:55 -07004095
Tejun Heo0adb0702014-02-12 09:29:48 -05004096 list_for_each_entry(cfts, &ss->cfts, node) {
4097 ret = cgroup_addrm_files(cgrp, cfts, true);
Tejun Heobee55092013-06-28 16:24:11 -07004098 if (ret < 0)
4099 goto err;
4100 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004101 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004102 return 0;
Tejun Heobee55092013-06-28 16:24:11 -07004103err:
4104 cgroup_clear_dir(cgrp, subsys_mask);
4105 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004106}
4107
Tejun Heo0c21ead2013-08-13 20:22:51 -04004108/*
4109 * css destruction is four-stage process.
4110 *
4111 * 1. Destruction starts. Killing of the percpu_ref is initiated.
4112 * Implemented in kill_css().
4113 *
4114 * 2. When the percpu_ref is confirmed to be visible as killed on all CPUs
Tejun Heoec903c02014-05-13 12:11:01 -04004115 * and thus css_tryget_online() is guaranteed to fail, the css can be
4116 * offlined by invoking offline_css(). After offlining, the base ref is
4117 * put. Implemented in css_killed_work_fn().
Tejun Heo0c21ead2013-08-13 20:22:51 -04004118 *
4119 * 3. When the percpu_ref reaches zero, the only possible remaining
4120 * accessors are inside RCU read sections. css_release() schedules the
4121 * RCU callback.
4122 *
4123 * 4. After the grace period, the css can be freed. Implemented in
4124 * css_free_work_fn().
4125 *
4126 * It is actually hairier because both step 2 and 4 require process context
4127 * and thus involve punting to css->destroy_work adding two additional
4128 * steps to the already complex sequence.
4129 */
Tejun Heo35ef10d2013-08-13 11:01:54 -04004130static void css_free_work_fn(struct work_struct *work)
Tejun Heo48ddbe12012-04-01 12:09:56 -07004131{
4132 struct cgroup_subsys_state *css =
Tejun Heo35ef10d2013-08-13 11:01:54 -04004133 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo0c21ead2013-08-13 20:22:51 -04004134 struct cgroup *cgrp = css->cgroup;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004135
Tejun Heo9d755d32014-05-14 09:15:02 -04004136 if (css->ss) {
4137 /* css free path */
4138 if (css->parent)
4139 css_put(css->parent);
Tejun Heo0ae78e02013-08-13 11:01:54 -04004140
Tejun Heo9d755d32014-05-14 09:15:02 -04004141 css->ss->css_free(css);
4142 cgroup_put(cgrp);
4143 } else {
4144 /* cgroup free path */
4145 atomic_dec(&cgrp->root->nr_cgrps);
4146 cgroup_pidlist_destroy_all(cgrp);
4147
Tejun Heod51f39b2014-05-16 13:22:48 -04004148 if (cgroup_parent(cgrp)) {
Tejun Heo9d755d32014-05-14 09:15:02 -04004149 /*
4150 * We get a ref to the parent, and put the ref when
4151 * this cgroup is being freed, so it's guaranteed
4152 * that the parent won't be destroyed before its
4153 * children.
4154 */
Tejun Heod51f39b2014-05-16 13:22:48 -04004155 cgroup_put(cgroup_parent(cgrp));
Tejun Heo9d755d32014-05-14 09:15:02 -04004156 kernfs_put(cgrp->kn);
4157 kfree(cgrp);
4158 } else {
4159 /*
4160 * This is root cgroup's refcnt reaching zero,
4161 * which indicates that the root should be
4162 * released.
4163 */
4164 cgroup_destroy_root(cgrp->root);
4165 }
4166 }
Tejun Heo0c21ead2013-08-13 20:22:51 -04004167}
4168
4169static void css_free_rcu_fn(struct rcu_head *rcu_head)
4170{
4171 struct cgroup_subsys_state *css =
4172 container_of(rcu_head, struct cgroup_subsys_state, rcu_head);
4173
Tejun Heo0c21ead2013-08-13 20:22:51 -04004174 INIT_WORK(&css->destroy_work, css_free_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05004175 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004176}
4177
Tejun Heo25e15d82014-05-14 09:15:02 -04004178static void css_release_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004179{
4180 struct cgroup_subsys_state *css =
Tejun Heo25e15d82014-05-14 09:15:02 -04004181 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo15a4c832014-05-04 15:09:14 -04004182 struct cgroup_subsys *ss = css->ss;
Tejun Heo9d755d32014-05-14 09:15:02 -04004183 struct cgroup *cgrp = css->cgroup;
Tejun Heod3daf282013-06-13 19:39:16 -07004184
Tejun Heo1fed1b22014-05-16 13:22:49 -04004185 mutex_lock(&cgroup_mutex);
4186
Tejun Heode3f0342014-05-16 13:22:49 -04004187 css->flags |= CSS_RELEASED;
Tejun Heo1fed1b22014-05-16 13:22:49 -04004188 list_del_rcu(&css->sibling);
4189
Tejun Heo9d755d32014-05-14 09:15:02 -04004190 if (ss) {
4191 /* css release path */
4192 cgroup_idr_remove(&ss->css_idr, css->id);
4193 } else {
4194 /* cgroup release path */
Tejun Heo9d755d32014-05-14 09:15:02 -04004195 cgroup_idr_remove(&cgrp->root->cgroup_idr, cgrp->id);
4196 cgrp->id = -1;
4197 }
Tejun Heo15a4c832014-05-04 15:09:14 -04004198
Tejun Heo1fed1b22014-05-16 13:22:49 -04004199 mutex_unlock(&cgroup_mutex);
4200
Tejun Heo0c21ead2013-08-13 20:22:51 -04004201 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004202}
4203
Paul Menageddbcc7e2007-10-18 23:39:30 -07004204static void css_release(struct percpu_ref *ref)
4205{
4206 struct cgroup_subsys_state *css =
4207 container_of(ref, struct cgroup_subsys_state, refcnt);
4208
Tejun Heo25e15d82014-05-14 09:15:02 -04004209 INIT_WORK(&css->destroy_work, css_release_work_fn);
4210 queue_work(cgroup_destroy_wq, &css->destroy_work);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004211}
4212
Tejun Heoddfcada2014-05-04 15:09:14 -04004213static void init_and_link_css(struct cgroup_subsys_state *css,
4214 struct cgroup_subsys *ss, struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004215{
Tejun Heo0cb51d72014-05-16 13:22:49 -04004216 lockdep_assert_held(&cgroup_mutex);
4217
Tejun Heoddfcada2014-05-04 15:09:14 -04004218 cgroup_get(cgrp);
4219
Tejun Heod5c419b2014-05-16 13:22:48 -04004220 memset(css, 0, sizeof(*css));
Paul Menagebd89aab2007-10-18 23:40:44 -07004221 css->cgroup = cgrp;
Tejun Heo72c97e52013-08-08 20:11:22 -04004222 css->ss = ss;
Tejun Heod5c419b2014-05-16 13:22:48 -04004223 INIT_LIST_HEAD(&css->sibling);
4224 INIT_LIST_HEAD(&css->children);
Tejun Heo0cb51d72014-05-16 13:22:49 -04004225 css->serial_nr = css_serial_nr_next++;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004226
Tejun Heod51f39b2014-05-16 13:22:48 -04004227 if (cgroup_parent(cgrp)) {
4228 css->parent = cgroup_css(cgroup_parent(cgrp), ss);
Tejun Heoddfcada2014-05-04 15:09:14 -04004229 css_get(css->parent);
Tejun Heoddfcada2014-05-04 15:09:14 -04004230 }
Tejun Heo0ae78e02013-08-13 11:01:54 -04004231
Tejun Heoca8bdca2013-08-26 18:40:56 -04004232 BUG_ON(cgroup_css(cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004233}
4234
Li Zefan2a4ac632013-07-31 16:16:40 +08004235/* invoke ->css_online() on a new CSS and mark it online if successful */
Tejun Heo623f9262013-08-13 11:01:55 -04004236static int online_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004237{
Tejun Heo623f9262013-08-13 11:01:55 -04004238 struct cgroup_subsys *ss = css->ss;
Tejun Heob1929db2012-11-19 08:13:38 -08004239 int ret = 0;
4240
Tejun Heoa31f2d32012-11-19 08:13:37 -08004241 lockdep_assert_held(&cgroup_mutex);
4242
Tejun Heo92fb9742012-11-19 08:13:38 -08004243 if (ss->css_online)
Tejun Heoeb954192013-08-08 20:11:23 -04004244 ret = ss->css_online(css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004245 if (!ret) {
Tejun Heoeb954192013-08-08 20:11:23 -04004246 css->flags |= CSS_ONLINE;
Tejun Heoaec25022014-02-08 10:36:58 -05004247 rcu_assign_pointer(css->cgroup->subsys[ss->id], css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004248 }
Tejun Heob1929db2012-11-19 08:13:38 -08004249 return ret;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004250}
4251
Li Zefan2a4ac632013-07-31 16:16:40 +08004252/* if the CSS is online, invoke ->css_offline() on it and mark it offline */
Tejun Heo623f9262013-08-13 11:01:55 -04004253static void offline_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004254{
Tejun Heo623f9262013-08-13 11:01:55 -04004255 struct cgroup_subsys *ss = css->ss;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004256
4257 lockdep_assert_held(&cgroup_mutex);
4258
4259 if (!(css->flags & CSS_ONLINE))
4260 return;
4261
Li Zefand7eeac12013-03-12 15:35:59 -07004262 if (ss->css_offline)
Tejun Heoeb954192013-08-08 20:11:23 -04004263 ss->css_offline(css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004264
Tejun Heoeb954192013-08-08 20:11:23 -04004265 css->flags &= ~CSS_ONLINE;
Tejun Heoe3297802014-04-23 11:13:15 -04004266 RCU_INIT_POINTER(css->cgroup->subsys[ss->id], NULL);
Tejun Heof8f22e52014-04-23 11:13:16 -04004267
4268 wake_up_all(&css->cgroup->offline_waitq);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004269}
4270
Tejun Heoc81c925a2013-12-06 15:11:56 -05004271/**
4272 * create_css - create a cgroup_subsys_state
4273 * @cgrp: the cgroup new css will be associated with
4274 * @ss: the subsys of new css
4275 *
4276 * Create a new css associated with @cgrp - @ss pair. On success, the new
4277 * css is online and installed in @cgrp with all interface files created.
4278 * Returns 0 on success, -errno on failure.
4279 */
4280static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss)
4281{
Tejun Heod51f39b2014-05-16 13:22:48 -04004282 struct cgroup *parent = cgroup_parent(cgrp);
Tejun Heo1fed1b22014-05-16 13:22:49 -04004283 struct cgroup_subsys_state *parent_css = cgroup_css(parent, ss);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004284 struct cgroup_subsys_state *css;
4285 int err;
4286
Tejun Heoc81c925a2013-12-06 15:11:56 -05004287 lockdep_assert_held(&cgroup_mutex);
4288
Tejun Heo1fed1b22014-05-16 13:22:49 -04004289 css = ss->css_alloc(parent_css);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004290 if (IS_ERR(css))
4291 return PTR_ERR(css);
4292
Tejun Heoddfcada2014-05-04 15:09:14 -04004293 init_and_link_css(css, ss, cgrp);
Tejun Heoa2bed822014-05-04 15:09:14 -04004294
Tejun Heoc81c925a2013-12-06 15:11:56 -05004295 err = percpu_ref_init(&css->refcnt, css_release);
4296 if (err)
Li Zefan3eb59ec2014-03-18 17:02:36 +08004297 goto err_free_css;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004298
Tejun Heo15a4c832014-05-04 15:09:14 -04004299 err = cgroup_idr_alloc(&ss->css_idr, NULL, 2, 0, GFP_NOWAIT);
4300 if (err < 0)
4301 goto err_free_percpu_ref;
4302 css->id = err;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004303
Tejun Heoaec25022014-02-08 10:36:58 -05004304 err = cgroup_populate_dir(cgrp, 1 << ss->id);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004305 if (err)
Tejun Heo15a4c832014-05-04 15:09:14 -04004306 goto err_free_id;
4307
4308 /* @css is ready to be brought online now, make it visible */
Tejun Heo1fed1b22014-05-16 13:22:49 -04004309 list_add_tail_rcu(&css->sibling, &parent_css->children);
Tejun Heo15a4c832014-05-04 15:09:14 -04004310 cgroup_idr_replace(&ss->css_idr, css, css->id);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004311
4312 err = online_css(css);
4313 if (err)
Tejun Heo1fed1b22014-05-16 13:22:49 -04004314 goto err_list_del;
Tejun Heo94419622014-03-19 10:23:54 -04004315
Tejun Heoc81c925a2013-12-06 15:11:56 -05004316 if (ss->broken_hierarchy && !ss->warned_broken_hierarchy &&
Tejun Heod51f39b2014-05-16 13:22:48 -04004317 cgroup_parent(parent)) {
Joe Perchesed3d2612014-04-25 18:28:03 -04004318 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 -04004319 current->comm, current->pid, ss->name);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004320 if (!strcmp(ss->name, "memory"))
Joe Perchesed3d2612014-04-25 18:28:03 -04004321 pr_warn("\"memory\" requires setting use_hierarchy to 1 on the root\n");
Tejun Heoc81c925a2013-12-06 15:11:56 -05004322 ss->warned_broken_hierarchy = true;
4323 }
4324
4325 return 0;
4326
Tejun Heo1fed1b22014-05-16 13:22:49 -04004327err_list_del:
4328 list_del_rcu(&css->sibling);
Linus Torvalds32d01dc2014-04-03 13:05:42 -07004329 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
Tejun Heo15a4c832014-05-04 15:09:14 -04004330err_free_id:
4331 cgroup_idr_remove(&ss->css_idr, css->id);
Li Zefan3eb59ec2014-03-18 17:02:36 +08004332err_free_percpu_ref:
Tejun Heoc81c925a2013-12-06 15:11:56 -05004333 percpu_ref_cancel_init(&css->refcnt);
Li Zefan3eb59ec2014-03-18 17:02:36 +08004334err_free_css:
Tejun Heoa2bed822014-05-04 15:09:14 -04004335 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004336 return err;
4337}
4338
Tejun Heob3bfd982014-05-13 12:19:22 -04004339static int cgroup_mkdir(struct kernfs_node *parent_kn, const char *name,
4340 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004341{
Tejun Heoa9746d82014-05-13 12:19:22 -04004342 struct cgroup *parent, *cgrp;
4343 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004344 struct cgroup_subsys *ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004345 struct kernfs_node *kn;
Tejun Heob3bfd982014-05-13 12:19:22 -04004346 int ssid, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004347
Tejun Heoa9746d82014-05-13 12:19:22 -04004348 parent = cgroup_kn_lock_live(parent_kn);
4349 if (!parent)
4350 return -ENODEV;
4351 root = parent->root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004352
Tejun Heo0a950f62012-11-19 09:02:12 -08004353 /* allocate the cgroup and its ID, 0 is reserved for the root */
Paul Menagebd89aab2007-10-18 23:40:44 -07004354 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004355 if (!cgrp) {
4356 ret = -ENOMEM;
4357 goto out_unlock;
Li Zefan0ab02ca2014-02-11 16:05:46 +08004358 }
4359
Tejun Heo9d755d32014-05-14 09:15:02 -04004360 ret = percpu_ref_init(&cgrp->self.refcnt, css_release);
4361 if (ret)
4362 goto out_free_cgrp;
4363
Li Zefan0ab02ca2014-02-11 16:05:46 +08004364 /*
4365 * Temporarily set the pointer to NULL, so idr_find() won't return
4366 * a half-baked cgroup.
4367 */
Tejun Heo6fa49182014-05-04 15:09:13 -04004368 cgrp->id = cgroup_idr_alloc(&root->cgroup_idr, NULL, 2, 0, GFP_NOWAIT);
Li Zefan0ab02ca2014-02-11 16:05:46 +08004369 if (cgrp->id < 0) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004370 ret = -ENOMEM;
Tejun Heo9d755d32014-05-14 09:15:02 -04004371 goto out_cancel_ref;
Tejun Heo976c06b2012-11-05 09:16:59 -08004372 }
4373
Paul Menagecc31edc2008-10-18 20:28:04 -07004374 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004375
Tejun Heo9d800df2014-05-14 09:15:00 -04004376 cgrp->self.parent = &parent->self;
Tejun Heoba0f4d72014-05-13 12:19:22 -04004377 cgrp->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004378
Li Zefanb6abdb02008-03-04 14:28:19 -08004379 if (notify_on_release(parent))
4380 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
4381
Tejun Heo2260e7f2012-11-19 08:13:38 -08004382 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags))
4383 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004384
Tejun Heo2bd59d42014-02-11 11:52:49 -05004385 /* create the directory */
Tejun Heoe61734c2014-02-12 09:29:50 -05004386 kn = kernfs_create_dir(parent->kn, name, mode, cgrp);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004387 if (IS_ERR(kn)) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004388 ret = PTR_ERR(kn);
4389 goto out_free_id;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004390 }
4391 cgrp->kn = kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004392
Tejun Heo6f305582014-02-12 09:29:50 -05004393 /*
4394 * This extra ref will be put in cgroup_free_fn() and guarantees
4395 * that @cgrp->kn is always accessible.
4396 */
4397 kernfs_get(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004398
Tejun Heo0cb51d72014-05-16 13:22:49 -04004399 cgrp->self.serial_nr = css_serial_nr_next++;
Tejun Heo53fa5262013-05-24 10:55:38 +09004400
Tejun Heo4e139af2012-11-19 08:13:36 -08004401 /* allocation complete, commit to creation */
Tejun Heod5c419b2014-05-16 13:22:48 -04004402 list_add_tail_rcu(&cgrp->self.sibling, &cgroup_parent(cgrp)->self.children);
Tejun Heo3c9c8252014-02-12 09:29:50 -05004403 atomic_inc(&root->nr_cgrps);
Tejun Heo59f52962014-02-11 11:52:49 -05004404 cgroup_get(parent);
Li Zefan415cf072013-04-08 14:35:02 +08004405
Tejun Heo0d802552013-12-06 15:11:56 -05004406 /*
4407 * @cgrp is now fully operational. If something fails after this
4408 * point, it'll be released via the normal destruction path.
4409 */
Tejun Heo6fa49182014-05-04 15:09:13 -04004410 cgroup_idr_replace(&root->cgroup_idr, cgrp, cgrp->id);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08004411
Tejun Heoba0f4d72014-05-13 12:19:22 -04004412 ret = cgroup_kn_set_ugid(kn);
4413 if (ret)
4414 goto out_destroy;
Tejun Heo49957f82014-04-07 16:44:47 -04004415
Tejun Heoba0f4d72014-05-13 12:19:22 -04004416 ret = cgroup_addrm_files(cgrp, cgroup_base_files, true);
4417 if (ret)
4418 goto out_destroy;
Tejun Heo628f7cd2013-06-28 16:24:11 -07004419
Tejun Heo9d403e92013-12-06 15:11:56 -05004420 /* let's create and online css's */
Tejun Heob85d2042013-12-06 15:11:57 -05004421 for_each_subsys(ss, ssid) {
Tejun Heof392e512014-04-23 11:13:14 -04004422 if (parent->child_subsys_mask & (1 << ssid)) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004423 ret = create_css(cgrp, ss);
4424 if (ret)
4425 goto out_destroy;
Tejun Heob85d2042013-12-06 15:11:57 -05004426 }
Tejun Heoa8638032012-11-09 09:12:29 -08004427 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004428
Tejun Heobd53d612014-04-23 11:13:16 -04004429 /*
4430 * On the default hierarchy, a child doesn't automatically inherit
4431 * child_subsys_mask from the parent. Each is configured manually.
4432 */
4433 if (!cgroup_on_dfl(cgrp))
4434 cgrp->child_subsys_mask = parent->child_subsys_mask;
Tejun Heof392e512014-04-23 11:13:14 -04004435
Tejun Heo2bd59d42014-02-11 11:52:49 -05004436 kernfs_activate(kn);
4437
Tejun Heoba0f4d72014-05-13 12:19:22 -04004438 ret = 0;
4439 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004440
Tejun Heoba0f4d72014-05-13 12:19:22 -04004441out_free_id:
Tejun Heo6fa49182014-05-04 15:09:13 -04004442 cgroup_idr_remove(&root->cgroup_idr, cgrp->id);
Tejun Heo9d755d32014-05-14 09:15:02 -04004443out_cancel_ref:
4444 percpu_ref_cancel_init(&cgrp->self.refcnt);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004445out_free_cgrp:
Paul Menagebd89aab2007-10-18 23:40:44 -07004446 kfree(cgrp);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004447out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04004448 cgroup_kn_unlock(parent_kn);
Tejun Heoe1b2dc12014-03-20 11:10:15 -04004449 return ret;
Tejun Heoba0f4d72014-05-13 12:19:22 -04004450
4451out_destroy:
4452 cgroup_destroy_locked(cgrp);
4453 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004454}
4455
Tejun Heo223dbc32013-08-13 20:22:50 -04004456/*
4457 * This is called when the refcnt of a css is confirmed to be killed.
Tejun Heo249f3462014-05-14 09:15:01 -04004458 * css_tryget_online() is now guaranteed to fail. Tell the subsystem to
4459 * initate destruction and put the css ref from kill_css().
Tejun Heo223dbc32013-08-13 20:22:50 -04004460 */
4461static void css_killed_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004462{
Tejun Heo223dbc32013-08-13 20:22:50 -04004463 struct cgroup_subsys_state *css =
4464 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07004465
Tejun Heof20104d2013-08-13 20:22:50 -04004466 mutex_lock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04004467 offline_css(css);
Tejun Heof20104d2013-08-13 20:22:50 -04004468 mutex_unlock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04004469
Tejun Heo09a503ea2013-08-13 20:22:50 -04004470 css_put(css);
Tejun Heod3daf282013-06-13 19:39:16 -07004471}
4472
Tejun Heo223dbc32013-08-13 20:22:50 -04004473/* css kill confirmation processing requires process context, bounce */
4474static void css_killed_ref_fn(struct percpu_ref *ref)
Tejun Heod3daf282013-06-13 19:39:16 -07004475{
4476 struct cgroup_subsys_state *css =
4477 container_of(ref, struct cgroup_subsys_state, refcnt);
4478
Tejun Heo223dbc32013-08-13 20:22:50 -04004479 INIT_WORK(&css->destroy_work, css_killed_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05004480 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07004481}
4482
Tejun Heof392e512014-04-23 11:13:14 -04004483/**
4484 * kill_css - destroy a css
4485 * @css: css to destroy
4486 *
4487 * This function initiates destruction of @css by removing cgroup interface
4488 * files and putting its base reference. ->css_offline() will be invoked
Tejun Heoec903c02014-05-13 12:11:01 -04004489 * asynchronously once css_tryget_online() is guaranteed to fail and when
4490 * the reference count reaches zero, @css will be released.
Tejun Heof392e512014-04-23 11:13:14 -04004491 */
4492static void kill_css(struct cgroup_subsys_state *css)
Tejun Heoedae0c32013-08-13 20:22:51 -04004493{
Tejun Heo01f64742014-05-13 12:19:23 -04004494 lockdep_assert_held(&cgroup_mutex);
Tejun Heo94419622014-03-19 10:23:54 -04004495
Tejun Heo2bd59d42014-02-11 11:52:49 -05004496 /*
4497 * This must happen before css is disassociated with its cgroup.
4498 * See seq_css() for details.
4499 */
Tejun Heoaec25022014-02-08 10:36:58 -05004500 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
Tejun Heo3c14f8b2013-08-13 20:22:51 -04004501
Tejun Heoedae0c32013-08-13 20:22:51 -04004502 /*
4503 * Killing would put the base ref, but we need to keep it alive
4504 * until after ->css_offline().
4505 */
4506 css_get(css);
4507
4508 /*
4509 * cgroup core guarantees that, by the time ->css_offline() is
4510 * invoked, no new css reference will be given out via
Tejun Heoec903c02014-05-13 12:11:01 -04004511 * css_tryget_online(). We can't simply call percpu_ref_kill() and
Tejun Heoedae0c32013-08-13 20:22:51 -04004512 * proceed to offlining css's because percpu_ref_kill() doesn't
4513 * guarantee that the ref is seen as killed on all CPUs on return.
4514 *
4515 * Use percpu_ref_kill_and_confirm() to get notifications as each
4516 * css is confirmed to be seen as killed on all CPUs.
4517 */
4518 percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004519}
4520
4521/**
4522 * cgroup_destroy_locked - the first stage of cgroup destruction
4523 * @cgrp: cgroup to be destroyed
4524 *
4525 * css's make use of percpu refcnts whose killing latency shouldn't be
4526 * exposed to userland and are RCU protected. Also, cgroup core needs to
Tejun Heoec903c02014-05-13 12:11:01 -04004527 * guarantee that css_tryget_online() won't succeed by the time
4528 * ->css_offline() is invoked. To satisfy all the requirements,
4529 * destruction is implemented in the following two steps.
Tejun Heod3daf282013-06-13 19:39:16 -07004530 *
4531 * s1. Verify @cgrp can be destroyed and mark it dying. Remove all
4532 * userland visible parts and start killing the percpu refcnts of
4533 * css's. Set up so that the next stage will be kicked off once all
4534 * the percpu refcnts are confirmed to be killed.
4535 *
4536 * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the
4537 * rest of destruction. Once all cgroup references are gone, the
4538 * cgroup is RCU-freed.
4539 *
4540 * This function implements s1. After this step, @cgrp is gone as far as
4541 * the userland is concerned and a new cgroup with the same name may be
4542 * created. As cgroup doesn't care about the names internally, this
4543 * doesn't cause any problem.
4544 */
Tejun Heo42809dd2012-11-19 08:13:37 -08004545static int cgroup_destroy_locked(struct cgroup *cgrp)
4546 __releases(&cgroup_mutex) __acquires(&cgroup_mutex)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004547{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004548 struct cgroup_subsys_state *css;
Tejun Heoddd69142013-06-12 21:04:54 -07004549 bool empty;
Tejun Heo1c6727a2013-12-06 15:11:56 -05004550 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004551
Tejun Heo42809dd2012-11-19 08:13:37 -08004552 lockdep_assert_held(&cgroup_mutex);
4553
Tejun Heoddd69142013-06-12 21:04:54 -07004554 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05004555 * css_set_rwsem synchronizes access to ->cset_links and prevents
Tejun Heo89c55092014-02-13 06:58:40 -05004556 * @cgrp from being removed while put_css_set() is in progress.
Tejun Heoddd69142013-06-12 21:04:54 -07004557 */
Tejun Heo96d365e2014-02-13 06:58:40 -05004558 down_read(&css_set_rwsem);
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004559 empty = list_empty(&cgrp->cset_links);
Tejun Heo96d365e2014-02-13 06:58:40 -05004560 up_read(&css_set_rwsem);
Tejun Heoddd69142013-06-12 21:04:54 -07004561 if (!empty)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004562 return -EBUSY;
Tejun Heoed9577932012-11-05 09:16:58 -08004563
Tejun Heo1a90dd52012-11-05 09:16:59 -08004564 /*
Tejun Heod5c419b2014-05-16 13:22:48 -04004565 * Make sure there's no live children. We can't test emptiness of
4566 * ->self.children as dead children linger on it while being
4567 * drained; otherwise, "rmdir parent/child parent" may fail.
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004568 */
Tejun Heof3d46502014-05-16 13:22:52 -04004569 if (css_has_online_children(&cgrp->self))
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004570 return -EBUSY;
4571
4572 /*
Tejun Heo455050d2013-06-13 19:27:41 -07004573 * Mark @cgrp dead. This prevents further task migration and child
Tejun Heode3f0342014-05-16 13:22:49 -04004574 * creation by disabling cgroup_lock_live_group().
Tejun Heo455050d2013-06-13 19:27:41 -07004575 */
Tejun Heo184faf32014-05-16 13:22:51 -04004576 cgrp->self.flags &= ~CSS_ONLINE;
Tejun Heo1a90dd52012-11-05 09:16:59 -08004577
Tejun Heo249f3462014-05-14 09:15:01 -04004578 /* initiate massacre of all css's */
Tejun Heo1a90dd52012-11-05 09:16:59 -08004579 for_each_css(css, ssid, cgrp)
Tejun Heo455050d2013-06-13 19:27:41 -07004580 kill_css(css);
4581
Tejun Heo184faf32014-05-16 13:22:51 -04004582 /* CSS_ONLINE is clear, remove from ->release_list for the last time */
Tejun Heo455050d2013-06-13 19:27:41 -07004583 raw_spin_lock(&release_list_lock);
4584 if (!list_empty(&cgrp->release_list))
4585 list_del_init(&cgrp->release_list);
4586 raw_spin_unlock(&release_list_lock);
4587
4588 /*
Tejun Heo01f64742014-05-13 12:19:23 -04004589 * Remove @cgrp directory along with the base files. @cgrp has an
4590 * extra ref on its kn.
Tejun Heo455050d2013-06-13 19:27:41 -07004591 */
Tejun Heo01f64742014-05-13 12:19:23 -04004592 kernfs_remove(cgrp->kn);
Tejun Heof20104d2013-08-13 20:22:50 -04004593
Tejun Heod51f39b2014-05-16 13:22:48 -04004594 set_bit(CGRP_RELEASABLE, &cgroup_parent(cgrp)->flags);
4595 check_for_release(cgroup_parent(cgrp));
Tejun Heo2bd59d42014-02-11 11:52:49 -05004596
Tejun Heo249f3462014-05-14 09:15:01 -04004597 /* put the base reference */
Tejun Heo9d755d32014-05-14 09:15:02 -04004598 percpu_ref_kill(&cgrp->self.refcnt);
Tejun Heo455050d2013-06-13 19:27:41 -07004599
Tejun Heoea15f8c2013-06-13 19:27:42 -07004600 return 0;
4601};
4602
Tejun Heo2bd59d42014-02-11 11:52:49 -05004603static int cgroup_rmdir(struct kernfs_node *kn)
Tejun Heo42809dd2012-11-19 08:13:37 -08004604{
Tejun Heoa9746d82014-05-13 12:19:22 -04004605 struct cgroup *cgrp;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004606 int ret = 0;
Tejun Heo42809dd2012-11-19 08:13:37 -08004607
Tejun Heoa9746d82014-05-13 12:19:22 -04004608 cgrp = cgroup_kn_lock_live(kn);
4609 if (!cgrp)
4610 return 0;
4611 cgroup_get(cgrp); /* for @kn->priv clearing */
Tejun Heo42809dd2012-11-19 08:13:37 -08004612
Tejun Heoa9746d82014-05-13 12:19:22 -04004613 ret = cgroup_destroy_locked(cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -08004614
Tejun Heoa9746d82014-05-13 12:19:22 -04004615 cgroup_kn_unlock(kn);
Tejun Heo42809dd2012-11-19 08:13:37 -08004616
Tejun Heo2bd59d42014-02-11 11:52:49 -05004617 /*
Tejun Heocfc79d52014-05-13 12:19:22 -04004618 * There are two control paths which try to determine cgroup from
4619 * dentry without going through kernfs - cgroupstats_build() and
4620 * css_tryget_online_from_dir(). Those are supported by RCU
4621 * protecting clearing of cgrp->kn->priv backpointer, which should
4622 * happen after all files under it have been removed.
Tejun Heo2bd59d42014-02-11 11:52:49 -05004623 */
Tejun Heocfc79d52014-05-13 12:19:22 -04004624 if (!ret)
4625 RCU_INIT_POINTER(*(void __rcu __force **)&kn->priv, NULL);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004626
Tejun Heo2bd59d42014-02-11 11:52:49 -05004627 cgroup_put(cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -08004628 return ret;
4629}
4630
Tejun Heo2bd59d42014-02-11 11:52:49 -05004631static struct kernfs_syscall_ops cgroup_kf_syscall_ops = {
4632 .remount_fs = cgroup_remount,
4633 .show_options = cgroup_show_options,
4634 .mkdir = cgroup_mkdir,
4635 .rmdir = cgroup_rmdir,
4636 .rename = cgroup_rename,
4637};
Tejun Heo8e3f6542012-04-01 12:09:55 -07004638
Tejun Heo15a4c832014-05-04 15:09:14 -04004639static void __init cgroup_init_subsys(struct cgroup_subsys *ss, bool early)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004640{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004641 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08004642
4643 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004644
Tejun Heo648bb562012-11-19 08:13:36 -08004645 mutex_lock(&cgroup_mutex);
4646
Tejun Heo15a4c832014-05-04 15:09:14 -04004647 idr_init(&ss->css_idr);
Tejun Heo0adb0702014-02-12 09:29:48 -05004648 INIT_LIST_HEAD(&ss->cfts);
Tejun Heo8e3f6542012-04-01 12:09:55 -07004649
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004650 /* Create the root cgroup state for this subsystem */
4651 ss->root = &cgrp_dfl_root;
4652 css = ss->css_alloc(cgroup_css(&cgrp_dfl_root.cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004653 /* We don't handle early failures gracefully */
4654 BUG_ON(IS_ERR(css));
Tejun Heoddfcada2014-05-04 15:09:14 -04004655 init_and_link_css(css, ss, &cgrp_dfl_root.cgrp);
Tejun Heo3b514d22014-05-16 13:22:47 -04004656
4657 /*
4658 * Root csses are never destroyed and we can't initialize
4659 * percpu_ref during early init. Disable refcnting.
4660 */
4661 css->flags |= CSS_NO_REF;
4662
Tejun Heo15a4c832014-05-04 15:09:14 -04004663 if (early) {
Tejun Heo9395a452014-05-14 09:15:02 -04004664 /* allocation can't be done safely during early init */
Tejun Heo15a4c832014-05-04 15:09:14 -04004665 css->id = 1;
4666 } else {
4667 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2, GFP_KERNEL);
4668 BUG_ON(css->id < 0);
4669 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004670
Li Zefane8d55fd2008-04-29 01:00:13 -07004671 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07004672 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07004673 * newly registered, all tasks and hence the
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004674 * init_css_set is in the subsystem's root cgroup. */
Tejun Heoaec25022014-02-08 10:36:58 -05004675 init_css_set.subsys[ss->id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004676
4677 need_forkexit_callback |= ss->fork || ss->exit;
4678
Li Zefane8d55fd2008-04-29 01:00:13 -07004679 /* At system boot, before all subsystems have been
4680 * registered, no tasks have been forked, so we don't
4681 * need to invoke fork callbacks here. */
4682 BUG_ON(!list_empty(&init_task.tasks));
4683
Tejun Heoae7f1642013-08-13 20:22:50 -04004684 BUG_ON(online_css(css));
Tejun Heoa8638032012-11-09 09:12:29 -08004685
Tejun Heo648bb562012-11-19 08:13:36 -08004686 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004687}
4688
4689/**
Li Zefana043e3b2008-02-23 15:24:09 -08004690 * cgroup_init_early - cgroup initialization at system boot
4691 *
4692 * Initialize cgroups at system boot, and initialize any
4693 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004694 */
4695int __init cgroup_init_early(void)
4696{
Tejun Heoa2dd4242014-03-19 10:23:55 -04004697 static struct cgroup_sb_opts __initdata opts =
4698 { .flags = CGRP_ROOT_SANE_BEHAVIOR };
Tejun Heo30159ec2013-06-25 11:53:37 -07004699 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004700 int i;
Tejun Heo30159ec2013-06-25 11:53:37 -07004701
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004702 init_cgroup_root(&cgrp_dfl_root, &opts);
Tejun Heo3b514d22014-05-16 13:22:47 -04004703 cgrp_dfl_root.cgrp.self.flags |= CSS_NO_REF;
4704
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07004705 RCU_INIT_POINTER(init_task.cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07004706
Tejun Heo3ed80a62014-02-08 10:36:58 -05004707 for_each_subsys(ss, i) {
Tejun Heoaec25022014-02-08 10:36:58 -05004708 WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id,
Tejun Heo073219e2014-02-08 10:36:58 -05004709 "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p name:id=%d:%s\n",
4710 i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free,
Tejun Heoaec25022014-02-08 10:36:58 -05004711 ss->id, ss->name);
Tejun Heo073219e2014-02-08 10:36:58 -05004712 WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN,
4713 "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004714
Tejun Heoaec25022014-02-08 10:36:58 -05004715 ss->id = i;
Tejun Heo073219e2014-02-08 10:36:58 -05004716 ss->name = cgroup_subsys_name[i];
Paul Menageddbcc7e2007-10-18 23:39:30 -07004717
4718 if (ss->early_init)
Tejun Heo15a4c832014-05-04 15:09:14 -04004719 cgroup_init_subsys(ss, true);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004720 }
4721 return 0;
4722}
4723
4724/**
Li Zefana043e3b2008-02-23 15:24:09 -08004725 * cgroup_init - cgroup initialization
4726 *
4727 * Register cgroup filesystem and /proc file, and initialize
4728 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004729 */
4730int __init cgroup_init(void)
4731{
Tejun Heo30159ec2013-06-25 11:53:37 -07004732 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +08004733 unsigned long key;
Tejun Heo172a2c062014-03-19 10:23:53 -04004734 int ssid, err;
Paul Menagea4243162007-10-18 23:39:35 -07004735
Tejun Heo2bd59d42014-02-11 11:52:49 -05004736 BUG_ON(cgroup_init_cftypes(NULL, cgroup_base_files));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004737
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004738 mutex_lock(&cgroup_mutex);
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004739
Tejun Heo82fe9b02013-06-25 11:53:37 -07004740 /* Add init_css_set to the hash table */
4741 key = css_set_hash(init_css_set.subsys);
4742 hash_add(css_set_table, &init_css_set.hlist, key);
4743
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004744 BUG_ON(cgroup_setup_root(&cgrp_dfl_root, 0));
Greg KH676db4a2010-08-05 13:53:35 -07004745
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004746 mutex_unlock(&cgroup_mutex);
4747
Tejun Heo172a2c062014-03-19 10:23:53 -04004748 for_each_subsys(ss, ssid) {
Tejun Heo15a4c832014-05-04 15:09:14 -04004749 if (ss->early_init) {
4750 struct cgroup_subsys_state *css =
4751 init_css_set.subsys[ss->id];
4752
4753 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2,
4754 GFP_KERNEL);
4755 BUG_ON(css->id < 0);
4756 } else {
4757 cgroup_init_subsys(ss, false);
4758 }
Tejun Heo172a2c062014-03-19 10:23:53 -04004759
Tejun Heo2d8f2432014-04-23 11:13:15 -04004760 list_add_tail(&init_css_set.e_cset_node[ssid],
4761 &cgrp_dfl_root.cgrp.e_csets[ssid]);
Tejun Heo172a2c062014-03-19 10:23:53 -04004762
4763 /*
Li Zefanc731ae12014-06-05 17:16:30 +08004764 * Setting dfl_root subsys_mask needs to consider the
4765 * disabled flag and cftype registration needs kmalloc,
4766 * both of which aren't available during early_init.
Tejun Heo172a2c062014-03-19 10:23:53 -04004767 */
Li Zefanc731ae12014-06-05 17:16:30 +08004768 if (!ss->disabled) {
4769 cgrp_dfl_root.subsys_mask |= 1 << ss->id;
Tejun Heo172a2c062014-03-19 10:23:53 -04004770 WARN_ON(cgroup_add_cftypes(ss, ss->base_cftypes));
Li Zefanc731ae12014-06-05 17:16:30 +08004771 }
Tejun Heo172a2c062014-03-19 10:23:53 -04004772 }
Greg KH676db4a2010-08-05 13:53:35 -07004773
Paul Menageddbcc7e2007-10-18 23:39:30 -07004774 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004775 if (!cgroup_kobj)
4776 return -ENOMEM;
Paul Menagea4243162007-10-18 23:39:35 -07004777
4778 err = register_filesystem(&cgroup_fs_type);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004779 if (err < 0) {
4780 kobject_put(cgroup_kobj);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004781 return err;
Paul Menagea4243162007-10-18 23:39:35 -07004782 }
4783
4784 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004785 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004786}
Paul Menageb4f48b62007-10-18 23:39:33 -07004787
Tejun Heoe5fca242013-11-22 17:14:39 -05004788static int __init cgroup_wq_init(void)
4789{
4790 /*
4791 * There isn't much point in executing destruction path in
4792 * parallel. Good chunk is serialized with cgroup_mutex anyway.
Tejun Heo1a115332014-02-12 19:06:19 -05004793 * Use 1 for @max_active.
Tejun Heoe5fca242013-11-22 17:14:39 -05004794 *
4795 * We would prefer to do this in cgroup_init() above, but that
4796 * is called before init_workqueues(): so leave this until after.
4797 */
Tejun Heo1a115332014-02-12 19:06:19 -05004798 cgroup_destroy_wq = alloc_workqueue("cgroup_destroy", 0, 1);
Tejun Heoe5fca242013-11-22 17:14:39 -05004799 BUG_ON(!cgroup_destroy_wq);
Tejun Heob1a21362013-11-29 10:42:58 -05004800
4801 /*
4802 * Used to destroy pidlists and separate to serve as flush domain.
4803 * Cap @max_active to 1 too.
4804 */
4805 cgroup_pidlist_destroy_wq = alloc_workqueue("cgroup_pidlist_destroy",
4806 0, 1);
4807 BUG_ON(!cgroup_pidlist_destroy_wq);
4808
Tejun Heoe5fca242013-11-22 17:14:39 -05004809 return 0;
4810}
4811core_initcall(cgroup_wq_init);
4812
Paul Menagea4243162007-10-18 23:39:35 -07004813/*
4814 * proc_cgroup_show()
4815 * - Print task's cgroup paths into seq_file, one line for each hierarchy
4816 * - Used for /proc/<pid>/cgroup.
Paul Menagea4243162007-10-18 23:39:35 -07004817 */
4818
4819/* TODO: Use a proper seq_file iterator */
Al Viro8d8b97b2013-04-19 23:11:24 -04004820int proc_cgroup_show(struct seq_file *m, void *v)
Paul Menagea4243162007-10-18 23:39:35 -07004821{
4822 struct pid *pid;
4823 struct task_struct *tsk;
Tejun Heoe61734c2014-02-12 09:29:50 -05004824 char *buf, *path;
Paul Menagea4243162007-10-18 23:39:35 -07004825 int retval;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004826 struct cgroup_root *root;
Paul Menagea4243162007-10-18 23:39:35 -07004827
4828 retval = -ENOMEM;
Tejun Heoe61734c2014-02-12 09:29:50 -05004829 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagea4243162007-10-18 23:39:35 -07004830 if (!buf)
4831 goto out;
4832
4833 retval = -ESRCH;
4834 pid = m->private;
4835 tsk = get_pid_task(pid, PIDTYPE_PID);
4836 if (!tsk)
4837 goto out_free;
4838
4839 retval = 0;
4840
4841 mutex_lock(&cgroup_mutex);
Tejun Heo96d365e2014-02-13 06:58:40 -05004842 down_read(&css_set_rwsem);
Paul Menagea4243162007-10-18 23:39:35 -07004843
Tejun Heo985ed672014-03-19 10:23:53 -04004844 for_each_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07004845 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07004846 struct cgroup *cgrp;
Tejun Heob85d2042013-12-06 15:11:57 -05004847 int ssid, count = 0;
Paul Menagea4243162007-10-18 23:39:35 -07004848
Tejun Heoa2dd4242014-03-19 10:23:55 -04004849 if (root == &cgrp_dfl_root && !cgrp_dfl_root_visible)
Tejun Heo985ed672014-03-19 10:23:53 -04004850 continue;
4851
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004852 seq_printf(m, "%d:", root->hierarchy_id);
Tejun Heob85d2042013-12-06 15:11:57 -05004853 for_each_subsys(ss, ssid)
Tejun Heof392e512014-04-23 11:13:14 -04004854 if (root->subsys_mask & (1 << ssid))
Tejun Heob85d2042013-12-06 15:11:57 -05004855 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07004856 if (strlen(root->name))
4857 seq_printf(m, "%sname=%s", count ? "," : "",
4858 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07004859 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07004860 cgrp = task_cgroup_from_root(tsk, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05004861 path = cgroup_path(cgrp, buf, PATH_MAX);
4862 if (!path) {
4863 retval = -ENAMETOOLONG;
Paul Menagea4243162007-10-18 23:39:35 -07004864 goto out_unlock;
Tejun Heoe61734c2014-02-12 09:29:50 -05004865 }
4866 seq_puts(m, path);
Paul Menagea4243162007-10-18 23:39:35 -07004867 seq_putc(m, '\n');
4868 }
4869
4870out_unlock:
Tejun Heo96d365e2014-02-13 06:58:40 -05004871 up_read(&css_set_rwsem);
Paul Menagea4243162007-10-18 23:39:35 -07004872 mutex_unlock(&cgroup_mutex);
4873 put_task_struct(tsk);
4874out_free:
4875 kfree(buf);
4876out:
4877 return retval;
4878}
4879
Paul Menagea4243162007-10-18 23:39:35 -07004880/* Display information about each subsystem and each hierarchy */
4881static int proc_cgroupstats_show(struct seq_file *m, void *v)
4882{
Tejun Heo30159ec2013-06-25 11:53:37 -07004883 struct cgroup_subsys *ss;
Paul Menagea4243162007-10-18 23:39:35 -07004884 int i;
Paul Menagea4243162007-10-18 23:39:35 -07004885
Paul Menage8bab8dd2008-04-04 14:29:57 -07004886 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08004887 /*
4888 * ideally we don't want subsystems moving around while we do this.
4889 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
4890 * subsys/hierarchy state.
4891 */
Paul Menagea4243162007-10-18 23:39:35 -07004892 mutex_lock(&cgroup_mutex);
Tejun Heo30159ec2013-06-25 11:53:37 -07004893
4894 for_each_subsys(ss, i)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004895 seq_printf(m, "%s\t%d\t%d\t%d\n",
4896 ss->name, ss->root->hierarchy_id,
Tejun Heo3c9c8252014-02-12 09:29:50 -05004897 atomic_read(&ss->root->nr_cgrps), !ss->disabled);
Tejun Heo30159ec2013-06-25 11:53:37 -07004898
Paul Menagea4243162007-10-18 23:39:35 -07004899 mutex_unlock(&cgroup_mutex);
4900 return 0;
4901}
4902
4903static int cgroupstats_open(struct inode *inode, struct file *file)
4904{
Al Viro9dce07f2008-03-29 03:07:28 +00004905 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07004906}
4907
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004908static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004909 .open = cgroupstats_open,
4910 .read = seq_read,
4911 .llseek = seq_lseek,
4912 .release = single_release,
4913};
4914
Paul Menageb4f48b62007-10-18 23:39:33 -07004915/**
Tejun Heoeaf797a2014-02-25 10:04:03 -05004916 * cgroup_fork - initialize cgroup related fields during copy_process()
Li Zefana043e3b2008-02-23 15:24:09 -08004917 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07004918 *
Tejun Heoeaf797a2014-02-25 10:04:03 -05004919 * A task is associated with the init_css_set until cgroup_post_fork()
4920 * attaches it to the parent's css_set. Empty cg_list indicates that
4921 * @child isn't holding reference to its css_set.
Paul Menageb4f48b62007-10-18 23:39:33 -07004922 */
4923void cgroup_fork(struct task_struct *child)
4924{
Tejun Heoeaf797a2014-02-25 10:04:03 -05004925 RCU_INIT_POINTER(child->cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07004926 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07004927}
4928
4929/**
Li Zefana043e3b2008-02-23 15:24:09 -08004930 * cgroup_post_fork - called on a new task after adding it to the task list
4931 * @child: the task in question
4932 *
Tejun Heo5edee612012-10-16 15:03:14 -07004933 * Adds the task to the list running through its css_set if necessary and
4934 * call the subsystem fork() callbacks. Has to be after the task is
4935 * visible on the task list in case we race with the first call to
Tejun Heo0942eee2013-08-08 20:11:26 -04004936 * cgroup_task_iter_start() - to guarantee that the new task ends up on its
Tejun Heo5edee612012-10-16 15:03:14 -07004937 * list.
Li Zefana043e3b2008-02-23 15:24:09 -08004938 */
Paul Menage817929e2007-10-18 23:39:36 -07004939void cgroup_post_fork(struct task_struct *child)
4940{
Tejun Heo30159ec2013-06-25 11:53:37 -07004941 struct cgroup_subsys *ss;
Tejun Heo5edee612012-10-16 15:03:14 -07004942 int i;
4943
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01004944 /*
Tejun Heoeaf797a2014-02-25 10:04:03 -05004945 * This may race against cgroup_enable_task_cg_links(). As that
4946 * function sets use_task_css_set_links before grabbing
4947 * tasklist_lock and we just went through tasklist_lock to add
4948 * @child, it's guaranteed that either we see the set
4949 * use_task_css_set_links or cgroup_enable_task_cg_lists() sees
4950 * @child during its iteration.
4951 *
4952 * If we won the race, @child is associated with %current's
4953 * css_set. Grabbing css_set_rwsem guarantees both that the
4954 * association is stable, and, on completion of the parent's
4955 * migration, @child is visible in the source of migration or
4956 * already in the destination cgroup. This guarantee is necessary
4957 * when implementing operations which need to migrate all tasks of
4958 * a cgroup to another.
4959 *
4960 * Note that if we lose to cgroup_enable_task_cg_links(), @child
4961 * will remain in init_css_set. This is safe because all tasks are
4962 * in the init_css_set before cg_links is enabled and there's no
4963 * operation which transfers all tasks out of init_css_set.
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01004964 */
Paul Menage817929e2007-10-18 23:39:36 -07004965 if (use_task_css_set_links) {
Tejun Heoeaf797a2014-02-25 10:04:03 -05004966 struct css_set *cset;
4967
Tejun Heo96d365e2014-02-13 06:58:40 -05004968 down_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05004969 cset = task_css_set(current);
Tejun Heoeaf797a2014-02-25 10:04:03 -05004970 if (list_empty(&child->cg_list)) {
4971 rcu_assign_pointer(child->cgroups, cset);
4972 list_add(&child->cg_list, &cset->tasks);
4973 get_css_set(cset);
4974 }
Tejun Heo96d365e2014-02-13 06:58:40 -05004975 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -07004976 }
Tejun Heo5edee612012-10-16 15:03:14 -07004977
4978 /*
4979 * Call ss->fork(). This must happen after @child is linked on
4980 * css_set; otherwise, @child might change state between ->fork()
4981 * and addition to css_set.
4982 */
4983 if (need_forkexit_callback) {
Tejun Heo3ed80a62014-02-08 10:36:58 -05004984 for_each_subsys(ss, i)
Tejun Heo5edee612012-10-16 15:03:14 -07004985 if (ss->fork)
4986 ss->fork(child);
Tejun Heo5edee612012-10-16 15:03:14 -07004987 }
Paul Menage817929e2007-10-18 23:39:36 -07004988}
Tejun Heo5edee612012-10-16 15:03:14 -07004989
Paul Menage817929e2007-10-18 23:39:36 -07004990/**
Paul Menageb4f48b62007-10-18 23:39:33 -07004991 * cgroup_exit - detach cgroup from exiting task
4992 * @tsk: pointer to task_struct of exiting process
4993 *
4994 * Description: Detach cgroup from @tsk and release it.
4995 *
4996 * Note that cgroups marked notify_on_release force every task in
4997 * them to take the global cgroup_mutex mutex when exiting.
4998 * This could impact scaling on very large systems. Be reluctant to
4999 * use notify_on_release cgroups where very high task exit scaling
5000 * is required on large systems.
5001 *
Tejun Heo0e1d7682014-02-25 10:04:03 -05005002 * We set the exiting tasks cgroup to the root cgroup (top_cgroup). We
5003 * call cgroup_exit() while the task is still competent to handle
5004 * notify_on_release(), then leave the task attached to the root cgroup in
5005 * each hierarchy for the remainder of its exit. No need to bother with
5006 * init_css_set refcnting. init_css_set never goes away and we can't race
Li Zefane8604cb2014-03-28 15:18:27 +08005007 * with migration path - PF_EXITING is visible to migration path.
Paul Menageb4f48b62007-10-18 23:39:33 -07005008 */
Li Zefan1ec41832014-03-28 15:22:19 +08005009void cgroup_exit(struct task_struct *tsk)
Paul Menageb4f48b62007-10-18 23:39:33 -07005010{
Tejun Heo30159ec2013-06-25 11:53:37 -07005011 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -07005012 struct css_set *cset;
Tejun Heoeaf797a2014-02-25 10:04:03 -05005013 bool put_cset = false;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005014 int i;
Paul Menage817929e2007-10-18 23:39:36 -07005015
5016 /*
Tejun Heo0e1d7682014-02-25 10:04:03 -05005017 * Unlink from @tsk from its css_set. As migration path can't race
5018 * with us, we can check cg_list without grabbing css_set_rwsem.
Paul Menage817929e2007-10-18 23:39:36 -07005019 */
5020 if (!list_empty(&tsk->cg_list)) {
Tejun Heo96d365e2014-02-13 06:58:40 -05005021 down_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005022 list_del_init(&tsk->cg_list);
Tejun Heo96d365e2014-02-13 06:58:40 -05005023 up_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005024 put_cset = true;
Paul Menage817929e2007-10-18 23:39:36 -07005025 }
5026
Paul Menageb4f48b62007-10-18 23:39:33 -07005027 /* Reassign the task to the init_css_set. */
Tejun Heoa8ad8052013-06-21 15:52:04 -07005028 cset = task_css_set(tsk);
5029 RCU_INIT_POINTER(tsk->cgroups, &init_css_set);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005030
Li Zefan1ec41832014-03-28 15:22:19 +08005031 if (need_forkexit_callback) {
Tejun Heo3ed80a62014-02-08 10:36:58 -05005032 /* see cgroup_post_fork() for details */
5033 for_each_subsys(ss, i) {
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005034 if (ss->exit) {
Tejun Heoeb954192013-08-08 20:11:23 -04005035 struct cgroup_subsys_state *old_css = cset->subsys[i];
5036 struct cgroup_subsys_state *css = task_css(tsk, i);
Tejun Heo30159ec2013-06-25 11:53:37 -07005037
Tejun Heoeb954192013-08-08 20:11:23 -04005038 ss->exit(css, old_css, tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005039 }
5040 }
5041 }
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005042
Tejun Heoeaf797a2014-02-25 10:04:03 -05005043 if (put_cset)
5044 put_css_set(cset, true);
Paul Menageb4f48b62007-10-18 23:39:33 -07005045}
Paul Menage697f4162007-10-18 23:39:34 -07005046
Paul Menagebd89aab2007-10-18 23:40:44 -07005047static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07005048{
Tejun Heof3d46502014-05-16 13:22:52 -04005049 if (cgroup_is_releasable(cgrp) && list_empty(&cgrp->cset_links) &&
5050 !css_has_online_children(&cgrp->self)) {
Li Zefanf50daa72013-03-01 15:06:07 +08005051 /*
5052 * Control Group is currently removeable. If it's not
Paul Menage81a6a5c2007-10-18 23:39:38 -07005053 * already queued for a userspace notification, queue
Li Zefanf50daa72013-03-01 15:06:07 +08005054 * it now
5055 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07005056 int need_schedule_work = 0;
Li Zefanf50daa72013-03-01 15:06:07 +08005057
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005058 raw_spin_lock(&release_list_lock);
Tejun Heo54766d42013-06-12 21:04:53 -07005059 if (!cgroup_is_dead(cgrp) &&
Paul Menagebd89aab2007-10-18 23:40:44 -07005060 list_empty(&cgrp->release_list)) {
5061 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005062 need_schedule_work = 1;
5063 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005064 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005065 if (need_schedule_work)
5066 schedule_work(&release_agent_work);
5067 }
5068}
5069
Paul Menage81a6a5c2007-10-18 23:39:38 -07005070/*
5071 * Notify userspace when a cgroup is released, by running the
5072 * configured release agent with the name of the cgroup (path
5073 * relative to the root of cgroup file system) as the argument.
5074 *
5075 * Most likely, this user command will try to rmdir this cgroup.
5076 *
5077 * This races with the possibility that some other task will be
5078 * attached to this cgroup before it is removed, or that some other
5079 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
5080 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
5081 * unused, and this cgroup will be reprieved from its death sentence,
5082 * to continue to serve a useful existence. Next time it's released,
5083 * we will get notified again, if it still has 'notify_on_release' set.
5084 *
5085 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
5086 * means only wait until the task is successfully execve()'d. The
5087 * separate release agent task is forked by call_usermodehelper(),
5088 * then control in this thread returns here, without waiting for the
5089 * release agent task. We don't bother to wait because the caller of
5090 * this routine has no use for the exit status of the release agent
5091 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07005092 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07005093static void cgroup_release_agent(struct work_struct *work)
5094{
5095 BUG_ON(work != &release_agent_work);
5096 mutex_lock(&cgroup_mutex);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005097 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005098 while (!list_empty(&release_list)) {
5099 char *argv[3], *envp[3];
5100 int i;
Tejun Heoe61734c2014-02-12 09:29:50 -05005101 char *pathbuf = NULL, *agentbuf = NULL, *path;
Paul Menagebd89aab2007-10-18 23:40:44 -07005102 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07005103 struct cgroup,
5104 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07005105 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005106 raw_spin_unlock(&release_list_lock);
Tejun Heoe61734c2014-02-12 09:29:50 -05005107 pathbuf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagee788e062008-07-25 01:46:59 -07005108 if (!pathbuf)
5109 goto continue_free;
Tejun Heoe61734c2014-02-12 09:29:50 -05005110 path = cgroup_path(cgrp, pathbuf, PATH_MAX);
5111 if (!path)
Paul Menagee788e062008-07-25 01:46:59 -07005112 goto continue_free;
5113 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
5114 if (!agentbuf)
5115 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005116
5117 i = 0;
Paul Menagee788e062008-07-25 01:46:59 -07005118 argv[i++] = agentbuf;
Tejun Heoe61734c2014-02-12 09:29:50 -05005119 argv[i++] = path;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005120 argv[i] = NULL;
5121
5122 i = 0;
5123 /* minimal command environment */
5124 envp[i++] = "HOME=/";
5125 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
5126 envp[i] = NULL;
5127
5128 /* Drop the lock while we invoke the usermode helper,
5129 * since the exec could involve hitting disk and hence
5130 * be a slow process */
5131 mutex_unlock(&cgroup_mutex);
5132 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005133 mutex_lock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07005134 continue_free:
5135 kfree(pathbuf);
5136 kfree(agentbuf);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005137 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005138 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005139 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005140 mutex_unlock(&cgroup_mutex);
5141}
Paul Menage8bab8dd2008-04-04 14:29:57 -07005142
5143static int __init cgroup_disable(char *str)
5144{
Tejun Heo30159ec2013-06-25 11:53:37 -07005145 struct cgroup_subsys *ss;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005146 char *token;
Tejun Heo30159ec2013-06-25 11:53:37 -07005147 int i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005148
5149 while ((token = strsep(&str, ",")) != NULL) {
5150 if (!*token)
5151 continue;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005152
Tejun Heo3ed80a62014-02-08 10:36:58 -05005153 for_each_subsys(ss, i) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07005154 if (!strcmp(token, ss->name)) {
5155 ss->disabled = 1;
5156 printk(KERN_INFO "Disabling %s control group"
5157 " subsystem\n", ss->name);
5158 break;
5159 }
5160 }
5161 }
5162 return 1;
5163}
5164__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005165
Tejun Heob77d7b62013-08-13 11:01:54 -04005166/**
Tejun Heoec903c02014-05-13 12:11:01 -04005167 * css_tryget_online_from_dir - get corresponding css from a cgroup dentry
Tejun Heo35cf0832013-08-26 18:40:56 -04005168 * @dentry: directory dentry of interest
5169 * @ss: subsystem of interest
Tejun Heob77d7b62013-08-13 11:01:54 -04005170 *
Tejun Heo5a17f542014-02-11 11:52:47 -05005171 * If @dentry is a directory for a cgroup which has @ss enabled on it, try
5172 * to get the corresponding css and return it. If such css doesn't exist
5173 * or can't be pinned, an ERR_PTR value is returned.
Stephane Eraniane5d13672011-02-14 11:20:01 +02005174 */
Tejun Heoec903c02014-05-13 12:11:01 -04005175struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry,
5176 struct cgroup_subsys *ss)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005177{
Tejun Heo2bd59d42014-02-11 11:52:49 -05005178 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
5179 struct cgroup_subsys_state *css = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005180 struct cgroup *cgrp;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005181
Tejun Heo35cf0832013-08-26 18:40:56 -04005182 /* is @dentry a cgroup dir? */
Tejun Heo2bd59d42014-02-11 11:52:49 -05005183 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
5184 kernfs_type(kn) != KERNFS_DIR)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005185 return ERR_PTR(-EBADF);
5186
Tejun Heo5a17f542014-02-11 11:52:47 -05005187 rcu_read_lock();
5188
Tejun Heo2bd59d42014-02-11 11:52:49 -05005189 /*
5190 * This path doesn't originate from kernfs and @kn could already
5191 * have been or be removed at any point. @kn->priv is RCU
Tejun Heocfc79d52014-05-13 12:19:22 -04005192 * protected for this access. See cgroup_rmdir() for details.
Tejun Heo2bd59d42014-02-11 11:52:49 -05005193 */
5194 cgrp = rcu_dereference(kn->priv);
5195 if (cgrp)
5196 css = cgroup_css(cgrp, ss);
Tejun Heo5a17f542014-02-11 11:52:47 -05005197
Tejun Heoec903c02014-05-13 12:11:01 -04005198 if (!css || !css_tryget_online(css))
Tejun Heo5a17f542014-02-11 11:52:47 -05005199 css = ERR_PTR(-ENOENT);
5200
5201 rcu_read_unlock();
5202 return css;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005203}
Stephane Eraniane5d13672011-02-14 11:20:01 +02005204
Li Zefan1cb650b2013-08-19 10:05:24 +08005205/**
5206 * css_from_id - lookup css by id
5207 * @id: the cgroup id
5208 * @ss: cgroup subsys to be looked into
5209 *
5210 * Returns the css if there's valid one with @id, otherwise returns NULL.
5211 * Should be called under rcu_read_lock().
5212 */
5213struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss)
5214{
Tejun Heo6fa49182014-05-04 15:09:13 -04005215 WARN_ON_ONCE(!rcu_read_lock_held());
Tejun Heo15a4c832014-05-04 15:09:14 -04005216 return idr_find(&ss->css_idr, id);
Stephane Eraniane5d13672011-02-14 11:20:01 +02005217}
5218
Paul Menagefe693432009-09-23 15:56:20 -07005219#ifdef CONFIG_CGROUP_DEBUG
Tejun Heoeb954192013-08-08 20:11:23 -04005220static struct cgroup_subsys_state *
5221debug_css_alloc(struct cgroup_subsys_state *parent_css)
Paul Menagefe693432009-09-23 15:56:20 -07005222{
5223 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
5224
5225 if (!css)
5226 return ERR_PTR(-ENOMEM);
5227
5228 return css;
5229}
5230
Tejun Heoeb954192013-08-08 20:11:23 -04005231static void debug_css_free(struct cgroup_subsys_state *css)
Paul Menagefe693432009-09-23 15:56:20 -07005232{
Tejun Heoeb954192013-08-08 20:11:23 -04005233 kfree(css);
Paul Menagefe693432009-09-23 15:56:20 -07005234}
5235
Tejun Heo182446d2013-08-08 20:11:24 -04005236static u64 debug_taskcount_read(struct cgroup_subsys_state *css,
5237 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005238{
Tejun Heo182446d2013-08-08 20:11:24 -04005239 return cgroup_task_count(css->cgroup);
Paul Menagefe693432009-09-23 15:56:20 -07005240}
5241
Tejun Heo182446d2013-08-08 20:11:24 -04005242static u64 current_css_set_read(struct cgroup_subsys_state *css,
5243 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005244{
5245 return (u64)(unsigned long)current->cgroups;
5246}
5247
Tejun Heo182446d2013-08-08 20:11:24 -04005248static u64 current_css_set_refcount_read(struct cgroup_subsys_state *css,
Li Zefan03c78cb2013-06-14 11:17:19 +08005249 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005250{
5251 u64 count;
5252
5253 rcu_read_lock();
Tejun Heoa8ad8052013-06-21 15:52:04 -07005254 count = atomic_read(&task_css_set(current)->refcount);
Paul Menagefe693432009-09-23 15:56:20 -07005255 rcu_read_unlock();
5256 return count;
5257}
5258
Tejun Heo2da8ca82013-12-05 12:28:04 -05005259static int current_css_set_cg_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005260{
Tejun Heo69d02062013-06-12 21:04:50 -07005261 struct cgrp_cset_link *link;
Tejun Heo5abb8852013-06-12 21:04:49 -07005262 struct css_set *cset;
Tejun Heoe61734c2014-02-12 09:29:50 -05005263 char *name_buf;
Paul Menage7717f7b2009-09-23 15:56:22 -07005264
Tejun Heoe61734c2014-02-12 09:29:50 -05005265 name_buf = kmalloc(NAME_MAX + 1, GFP_KERNEL);
5266 if (!name_buf)
5267 return -ENOMEM;
Paul Menage7717f7b2009-09-23 15:56:22 -07005268
Tejun Heo96d365e2014-02-13 06:58:40 -05005269 down_read(&css_set_rwsem);
Paul Menage7717f7b2009-09-23 15:56:22 -07005270 rcu_read_lock();
Tejun Heo5abb8852013-06-12 21:04:49 -07005271 cset = rcu_dereference(current->cgroups);
Tejun Heo69d02062013-06-12 21:04:50 -07005272 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07005273 struct cgroup *c = link->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -07005274
Tejun Heoa2dd4242014-03-19 10:23:55 -04005275 cgroup_name(c, name_buf, NAME_MAX + 1);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005276 seq_printf(seq, "Root %d group %s\n",
Tejun Heoa2dd4242014-03-19 10:23:55 -04005277 c->root->hierarchy_id, name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07005278 }
5279 rcu_read_unlock();
Tejun Heo96d365e2014-02-13 06:58:40 -05005280 up_read(&css_set_rwsem);
Tejun Heoe61734c2014-02-12 09:29:50 -05005281 kfree(name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07005282 return 0;
5283}
5284
5285#define MAX_TASKS_SHOWN_PER_CSS 25
Tejun Heo2da8ca82013-12-05 12:28:04 -05005286static int cgroup_css_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005287{
Tejun Heo2da8ca82013-12-05 12:28:04 -05005288 struct cgroup_subsys_state *css = seq_css(seq);
Tejun Heo69d02062013-06-12 21:04:50 -07005289 struct cgrp_cset_link *link;
Paul Menage7717f7b2009-09-23 15:56:22 -07005290
Tejun Heo96d365e2014-02-13 06:58:40 -05005291 down_read(&css_set_rwsem);
Tejun Heo182446d2013-08-08 20:11:24 -04005292 list_for_each_entry(link, &css->cgroup->cset_links, cset_link) {
Tejun Heo69d02062013-06-12 21:04:50 -07005293 struct css_set *cset = link->cset;
Paul Menage7717f7b2009-09-23 15:56:22 -07005294 struct task_struct *task;
5295 int count = 0;
Tejun Heoc7561122014-02-25 10:04:01 -05005296
Tejun Heo5abb8852013-06-12 21:04:49 -07005297 seq_printf(seq, "css_set %p\n", cset);
Tejun Heoc7561122014-02-25 10:04:01 -05005298
Tejun Heo5abb8852013-06-12 21:04:49 -07005299 list_for_each_entry(task, &cset->tasks, cg_list) {
Tejun Heoc7561122014-02-25 10:04:01 -05005300 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
5301 goto overflow;
5302 seq_printf(seq, " task %d\n", task_pid_vnr(task));
Paul Menage7717f7b2009-09-23 15:56:22 -07005303 }
Tejun Heoc7561122014-02-25 10:04:01 -05005304
5305 list_for_each_entry(task, &cset->mg_tasks, cg_list) {
5306 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
5307 goto overflow;
5308 seq_printf(seq, " task %d\n", task_pid_vnr(task));
5309 }
5310 continue;
5311 overflow:
5312 seq_puts(seq, " ...\n");
Paul Menage7717f7b2009-09-23 15:56:22 -07005313 }
Tejun Heo96d365e2014-02-13 06:58:40 -05005314 up_read(&css_set_rwsem);
Paul Menage7717f7b2009-09-23 15:56:22 -07005315 return 0;
5316}
5317
Tejun Heo182446d2013-08-08 20:11:24 -04005318static u64 releasable_read(struct cgroup_subsys_state *css, struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005319{
Tejun Heo182446d2013-08-08 20:11:24 -04005320 return test_bit(CGRP_RELEASABLE, &css->cgroup->flags);
Paul Menagefe693432009-09-23 15:56:20 -07005321}
5322
5323static struct cftype debug_files[] = {
5324 {
Paul Menagefe693432009-09-23 15:56:20 -07005325 .name = "taskcount",
5326 .read_u64 = debug_taskcount_read,
5327 },
5328
5329 {
5330 .name = "current_css_set",
5331 .read_u64 = current_css_set_read,
5332 },
5333
5334 {
5335 .name = "current_css_set_refcount",
5336 .read_u64 = current_css_set_refcount_read,
5337 },
5338
5339 {
Paul Menage7717f7b2009-09-23 15:56:22 -07005340 .name = "current_css_set_cg_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005341 .seq_show = current_css_set_cg_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07005342 },
5343
5344 {
5345 .name = "cgroup_css_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005346 .seq_show = cgroup_css_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07005347 },
5348
5349 {
Paul Menagefe693432009-09-23 15:56:20 -07005350 .name = "releasable",
5351 .read_u64 = releasable_read,
5352 },
Paul Menagefe693432009-09-23 15:56:20 -07005353
Tejun Heo4baf6e32012-04-01 12:09:55 -07005354 { } /* terminate */
5355};
Paul Menagefe693432009-09-23 15:56:20 -07005356
Tejun Heo073219e2014-02-08 10:36:58 -05005357struct cgroup_subsys debug_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08005358 .css_alloc = debug_css_alloc,
5359 .css_free = debug_css_free,
Tejun Heo4baf6e32012-04-01 12:09:55 -07005360 .base_cftypes = debug_files,
Paul Menagefe693432009-09-23 15:56:20 -07005361};
5362#endif /* CONFIG_CGROUP_DEBUG */