blob: 14a9d88eacf99e7e6ad3db55dc5e081ece86885c [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 Heo667c2492014-07-08 18:02:56 -04001039static void cgroup_refresh_child_subsys_mask(struct cgroup *cgrp)
1040{
1041 cgrp->child_subsys_mask = cgrp->subtree_control;
1042}
1043
Tejun Heoa9746d82014-05-13 12:19:22 -04001044/**
1045 * cgroup_kn_unlock - unlocking helper for cgroup kernfs methods
1046 * @kn: the kernfs_node being serviced
1047 *
1048 * This helper undoes cgroup_kn_lock_live() and should be invoked before
1049 * the method finishes if locking succeeded. Note that once this function
1050 * returns the cgroup returned by cgroup_kn_lock_live() may become
1051 * inaccessible any time. If the caller intends to continue to access the
1052 * cgroup, it should pin it before invoking this function.
1053 */
1054static void cgroup_kn_unlock(struct kernfs_node *kn)
1055{
1056 struct cgroup *cgrp;
1057
1058 if (kernfs_type(kn) == KERNFS_DIR)
1059 cgrp = kn->priv;
1060 else
1061 cgrp = kn->parent->priv;
1062
1063 mutex_unlock(&cgroup_mutex);
Tejun Heoa9746d82014-05-13 12:19:22 -04001064
1065 kernfs_unbreak_active_protection(kn);
1066 cgroup_put(cgrp);
1067}
1068
1069/**
1070 * cgroup_kn_lock_live - locking helper for cgroup kernfs methods
1071 * @kn: the kernfs_node being serviced
1072 *
1073 * This helper is to be used by a cgroup kernfs method currently servicing
1074 * @kn. It breaks the active protection, performs cgroup locking and
1075 * verifies that the associated cgroup is alive. Returns the cgroup if
1076 * alive; otherwise, %NULL. A successful return should be undone by a
1077 * matching cgroup_kn_unlock() invocation.
1078 *
1079 * Any cgroup kernfs method implementation which requires locking the
1080 * associated cgroup should use this helper. It avoids nesting cgroup
1081 * locking under kernfs active protection and allows all kernfs operations
1082 * including self-removal.
1083 */
1084static struct cgroup *cgroup_kn_lock_live(struct kernfs_node *kn)
1085{
1086 struct cgroup *cgrp;
1087
1088 if (kernfs_type(kn) == KERNFS_DIR)
1089 cgrp = kn->priv;
1090 else
1091 cgrp = kn->parent->priv;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001092
1093 /*
Tejun Heo01f64742014-05-13 12:19:23 -04001094 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoa9746d82014-05-13 12:19:22 -04001095 * active_ref. cgroup liveliness check alone provides enough
1096 * protection against removal. Ensure @cgrp stays accessible and
1097 * break the active_ref protection.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001098 */
Tejun Heoa9746d82014-05-13 12:19:22 -04001099 cgroup_get(cgrp);
1100 kernfs_break_active_protection(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001101
Tejun Heoa9746d82014-05-13 12:19:22 -04001102 mutex_lock(&cgroup_mutex);
1103
1104 if (!cgroup_is_dead(cgrp))
1105 return cgrp;
1106
1107 cgroup_kn_unlock(kn);
1108 return NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001109}
1110
Li Zefan2739d3c2013-01-21 18:18:33 +08001111static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001112{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001113 char name[CGROUP_FILE_NAME_MAX];
Paul Menageddbcc7e2007-10-18 23:39:30 -07001114
Tejun Heo01f64742014-05-13 12:19:23 -04001115 lockdep_assert_held(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001116 kernfs_remove_by_name(cgrp->kn, cgroup_file_name(cgrp, cft, name));
Tejun Heo05ef1d72012-04-01 12:09:56 -07001117}
1118
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001119/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07001120 * cgroup_clear_dir - remove subsys files in a cgroup directory
Tejun Heo8f891402013-06-28 16:24:10 -07001121 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001122 * @subsys_mask: mask of the subsystem ids whose files should be removed
1123 */
Tejun Heo69dfa002014-05-04 15:09:13 -04001124static void cgroup_clear_dir(struct cgroup *cgrp, unsigned int subsys_mask)
Tejun Heo05ef1d72012-04-01 12:09:56 -07001125{
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001126 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07001127 int i;
Tejun Heo05ef1d72012-04-01 12:09:56 -07001128
Tejun Heob420ba72013-07-12 12:34:02 -07001129 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -05001130 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -07001131
Tejun Heo69dfa002014-05-04 15:09:13 -04001132 if (!(subsys_mask & (1 << i)))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001133 continue;
Tejun Heo0adb0702014-02-12 09:29:48 -05001134 list_for_each_entry(cfts, &ss->cfts, node)
1135 cgroup_addrm_files(cgrp, cfts, false);
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001136 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001137}
1138
Tejun Heo69dfa002014-05-04 15:09:13 -04001139static int rebind_subsystems(struct cgroup_root *dst_root, unsigned int ss_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001140{
Tejun Heo30159ec2013-06-25 11:53:37 -07001141 struct cgroup_subsys *ss;
Tejun Heo5533e012014-05-14 19:33:07 -04001142 unsigned int tmp_ss_mask;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001143 int ssid, i, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001144
Tejun Heoace2bee2014-02-11 11:52:47 -05001145 lockdep_assert_held(&cgroup_mutex);
Ben Blumaae8aab2010-03-10 15:22:07 -08001146
Tejun Heo5df36032014-03-19 10:23:54 -04001147 for_each_subsys(ss, ssid) {
1148 if (!(ss_mask & (1 << ssid)))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001149 continue;
Tejun Heo30159ec2013-06-25 11:53:37 -07001150
Tejun Heo7fd8c562014-04-23 11:13:16 -04001151 /* if @ss has non-root csses attached to it, can't move */
1152 if (css_next_child(NULL, cgroup_css(&ss->root->cgrp, ss)))
Tejun Heo3ed80a62014-02-08 10:36:58 -05001153 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001154
Tejun Heo5df36032014-03-19 10:23:54 -04001155 /* can't move between two non-dummy roots either */
Tejun Heo7fd8c562014-04-23 11:13:16 -04001156 if (ss->root != &cgrp_dfl_root && dst_root != &cgrp_dfl_root)
Tejun Heo5df36032014-03-19 10:23:54 -04001157 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001158 }
1159
Tejun Heo5533e012014-05-14 19:33:07 -04001160 /* skip creating root files on dfl_root for inhibited subsystems */
1161 tmp_ss_mask = ss_mask;
1162 if (dst_root == &cgrp_dfl_root)
1163 tmp_ss_mask &= ~cgrp_dfl_root_inhibit_ss_mask;
1164
1165 ret = cgroup_populate_dir(&dst_root->cgrp, tmp_ss_mask);
Tejun Heoa2dd4242014-03-19 10:23:55 -04001166 if (ret) {
1167 if (dst_root != &cgrp_dfl_root)
Tejun Heo5df36032014-03-19 10:23:54 -04001168 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001169
Tejun Heoa2dd4242014-03-19 10:23:55 -04001170 /*
1171 * Rebinding back to the default root is not allowed to
1172 * fail. Using both default and non-default roots should
1173 * be rare. Moving subsystems back and forth even more so.
1174 * Just warn about it and continue.
1175 */
1176 if (cgrp_dfl_root_visible) {
Tejun Heo69dfa002014-05-04 15:09:13 -04001177 pr_warn("failed to create files (%d) while rebinding 0x%x to default root\n",
Jianyu Zhana2a1f9e2014-04-25 18:28:03 -04001178 ret, ss_mask);
Joe Perchesed3d2612014-04-25 18:28:03 -04001179 pr_warn("you may retry by moving them to a different hierarchy and unbinding\n");
Tejun Heoa2dd4242014-03-19 10:23:55 -04001180 }
Tejun Heo5df36032014-03-19 10:23:54 -04001181 }
Tejun Heo31261212013-06-28 17:07:30 -07001182
1183 /*
1184 * Nothing can fail from this point on. Remove files for the
1185 * removed subsystems and rebind each subsystem.
1186 */
Tejun Heo5df36032014-03-19 10:23:54 -04001187 for_each_subsys(ss, ssid)
Tejun Heoa2dd4242014-03-19 10:23:55 -04001188 if (ss_mask & (1 << ssid))
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001189 cgroup_clear_dir(&ss->root->cgrp, 1 << ssid);
Tejun Heo31261212013-06-28 17:07:30 -07001190
Tejun Heo5df36032014-03-19 10:23:54 -04001191 for_each_subsys(ss, ssid) {
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001192 struct cgroup_root *src_root;
Tejun Heo5df36032014-03-19 10:23:54 -04001193 struct cgroup_subsys_state *css;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001194 struct css_set *cset;
Tejun Heo30159ec2013-06-25 11:53:37 -07001195
Tejun Heo5df36032014-03-19 10:23:54 -04001196 if (!(ss_mask & (1 << ssid)))
1197 continue;
Tejun Heoa8a648c2013-06-24 15:21:47 -07001198
Tejun Heo5df36032014-03-19 10:23:54 -04001199 src_root = ss->root;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001200 css = cgroup_css(&src_root->cgrp, ss);
Tejun Heo73e80ed2013-08-13 11:01:55 -04001201
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001202 WARN_ON(!css || cgroup_css(&dst_root->cgrp, ss));
Tejun Heoa8a648c2013-06-24 15:21:47 -07001203
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001204 RCU_INIT_POINTER(src_root->cgrp.subsys[ssid], NULL);
1205 rcu_assign_pointer(dst_root->cgrp.subsys[ssid], css);
Tejun Heo5df36032014-03-19 10:23:54 -04001206 ss->root = dst_root;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001207 css->cgroup = &dst_root->cgrp;
Tejun Heoa8a648c2013-06-24 15:21:47 -07001208
Tejun Heo2d8f2432014-04-23 11:13:15 -04001209 down_write(&css_set_rwsem);
1210 hash_for_each(css_set_table, i, cset, hlist)
1211 list_move_tail(&cset->e_cset_node[ss->id],
1212 &dst_root->cgrp.e_csets[ss->id]);
1213 up_write(&css_set_rwsem);
1214
Tejun Heof392e512014-04-23 11:13:14 -04001215 src_root->subsys_mask &= ~(1 << ssid);
Tejun Heo667c2492014-07-08 18:02:56 -04001216 src_root->cgrp.subtree_control &= ~(1 << ssid);
1217 cgroup_refresh_child_subsys_mask(&src_root->cgrp);
Tejun Heof392e512014-04-23 11:13:14 -04001218
Tejun Heobd53d612014-04-23 11:13:16 -04001219 /* default hierarchy doesn't enable controllers by default */
Tejun Heof392e512014-04-23 11:13:14 -04001220 dst_root->subsys_mask |= 1 << ssid;
Tejun Heo667c2492014-07-08 18:02:56 -04001221 if (dst_root != &cgrp_dfl_root) {
1222 dst_root->cgrp.subtree_control |= 1 << ssid;
1223 cgroup_refresh_child_subsys_mask(&dst_root->cgrp);
1224 }
Tejun Heo73e80ed2013-08-13 11:01:55 -04001225
Tejun Heo5df36032014-03-19 10:23:54 -04001226 if (ss->bind)
1227 ss->bind(css);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001228 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001229
Tejun Heoa2dd4242014-03-19 10:23:55 -04001230 kernfs_activate(dst_root->cgrp.kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001231 return 0;
1232}
1233
Tejun Heo2bd59d42014-02-11 11:52:49 -05001234static int cgroup_show_options(struct seq_file *seq,
1235 struct kernfs_root *kf_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001236{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001237 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001238 struct cgroup_subsys *ss;
Tejun Heob85d2042013-12-06 15:11:57 -05001239 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001240
Tejun Heob85d2042013-12-06 15:11:57 -05001241 for_each_subsys(ss, ssid)
Tejun Heof392e512014-04-23 11:13:14 -04001242 if (root->subsys_mask & (1 << ssid))
Tejun Heob85d2042013-12-06 15:11:57 -05001243 seq_printf(seq, ",%s", ss->name);
Tejun Heo873fe092013-04-14 20:15:26 -07001244 if (root->flags & CGRP_ROOT_SANE_BEHAVIOR)
1245 seq_puts(seq, ",sane_behavior");
Tejun Heo93438622013-04-14 20:15:25 -07001246 if (root->flags & CGRP_ROOT_NOPREFIX)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001247 seq_puts(seq, ",noprefix");
Tejun Heo93438622013-04-14 20:15:25 -07001248 if (root->flags & CGRP_ROOT_XATTR)
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001249 seq_puts(seq, ",xattr");
Tejun Heo69e943b2014-02-08 10:36:58 -05001250
1251 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001252 if (strlen(root->release_agent_path))
1253 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Tejun Heo69e943b2014-02-08 10:36:58 -05001254 spin_unlock(&release_agent_path_lock);
1255
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001256 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags))
Daniel Lezcano97978e62010-10-27 15:33:35 -07001257 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001258 if (strlen(root->name))
1259 seq_printf(seq, ",name=%s", root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001260 return 0;
1261}
1262
1263struct cgroup_sb_opts {
Tejun Heo69dfa002014-05-04 15:09:13 -04001264 unsigned int subsys_mask;
1265 unsigned int flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001266 char *release_agent;
Tejun Heo2260e7f2012-11-19 08:13:38 -08001267 bool cpuset_clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001268 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001269 /* User explicitly requested empty subsystem */
1270 bool none;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001271};
1272
Ben Blumcf5d5942010-03-10 15:22:09 -08001273static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001274{
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001275 char *token, *o = data;
1276 bool all_ss = false, one_ss = false;
Tejun Heo69dfa002014-05-04 15:09:13 -04001277 unsigned int mask = -1U;
Tejun Heo30159ec2013-06-25 11:53:37 -07001278 struct cgroup_subsys *ss;
1279 int i;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001280
1281#ifdef CONFIG_CPUSETS
Tejun Heo69dfa002014-05-04 15:09:13 -04001282 mask = ~(1U << cpuset_cgrp_id);
Li Zefanf9ab5b52009-06-17 16:26:33 -07001283#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001284
Paul Menagec6d57f32009-09-23 15:56:19 -07001285 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001286
1287 while ((token = strsep(&o, ",")) != NULL) {
1288 if (!*token)
1289 return -EINVAL;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001290 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001291 /* Explicitly have no subsystems */
1292 opts->none = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001293 continue;
1294 }
1295 if (!strcmp(token, "all")) {
1296 /* Mutually exclusive option 'all' + subsystem name */
1297 if (one_ss)
1298 return -EINVAL;
1299 all_ss = true;
1300 continue;
1301 }
Tejun Heo873fe092013-04-14 20:15:26 -07001302 if (!strcmp(token, "__DEVEL__sane_behavior")) {
1303 opts->flags |= CGRP_ROOT_SANE_BEHAVIOR;
1304 continue;
1305 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001306 if (!strcmp(token, "noprefix")) {
Tejun Heo93438622013-04-14 20:15:25 -07001307 opts->flags |= CGRP_ROOT_NOPREFIX;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001308 continue;
1309 }
1310 if (!strcmp(token, "clone_children")) {
Tejun Heo2260e7f2012-11-19 08:13:38 -08001311 opts->cpuset_clone_children = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001312 continue;
1313 }
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001314 if (!strcmp(token, "xattr")) {
Tejun Heo93438622013-04-14 20:15:25 -07001315 opts->flags |= CGRP_ROOT_XATTR;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001316 continue;
1317 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001318 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001319 /* Specifying two release agents is forbidden */
1320 if (opts->release_agent)
1321 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001322 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001323 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001324 if (!opts->release_agent)
1325 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001326 continue;
1327 }
1328 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001329 const char *name = token + 5;
1330 /* Can't specify an empty name */
1331 if (!strlen(name))
1332 return -EINVAL;
1333 /* Must match [\w.-]+ */
1334 for (i = 0; i < strlen(name); i++) {
1335 char c = name[i];
1336 if (isalnum(c))
1337 continue;
1338 if ((c == '.') || (c == '-') || (c == '_'))
1339 continue;
1340 return -EINVAL;
1341 }
1342 /* Specifying two names is forbidden */
1343 if (opts->name)
1344 return -EINVAL;
1345 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001346 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001347 GFP_KERNEL);
1348 if (!opts->name)
1349 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001350
1351 continue;
1352 }
1353
Tejun Heo30159ec2013-06-25 11:53:37 -07001354 for_each_subsys(ss, i) {
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001355 if (strcmp(token, ss->name))
1356 continue;
1357 if (ss->disabled)
1358 continue;
1359
1360 /* Mutually exclusive option 'all' + subsystem name */
1361 if (all_ss)
1362 return -EINVAL;
Tejun Heo69dfa002014-05-04 15:09:13 -04001363 opts->subsys_mask |= (1 << i);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001364 one_ss = true;
1365
1366 break;
1367 }
1368 if (i == CGROUP_SUBSYS_COUNT)
1369 return -ENOENT;
1370 }
1371
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001372 /* Consistency checks */
1373
Tejun Heo873fe092013-04-14 20:15:26 -07001374 if (opts->flags & CGRP_ROOT_SANE_BEHAVIOR) {
Joe Perchesed3d2612014-04-25 18:28:03 -04001375 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 -07001376
Tejun Heod3ba07c2014-02-13 06:58:38 -05001377 if ((opts->flags & (CGRP_ROOT_NOPREFIX | CGRP_ROOT_XATTR)) ||
1378 opts->cpuset_clone_children || opts->release_agent ||
1379 opts->name) {
Joe Perchesed3d2612014-04-25 18:28:03 -04001380 pr_err("sane_behavior: noprefix, xattr, clone_children, release_agent and name are not allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001381 return -EINVAL;
1382 }
Tejun Heoa2dd4242014-03-19 10:23:55 -04001383 } else {
1384 /*
1385 * If the 'all' option was specified select all the
1386 * subsystems, otherwise if 'none', 'name=' and a subsystem
1387 * name options were not specified, let's default to 'all'
1388 */
1389 if (all_ss || (!one_ss && !opts->none && !opts->name))
1390 for_each_subsys(ss, i)
1391 if (!ss->disabled)
Tejun Heo69dfa002014-05-04 15:09:13 -04001392 opts->subsys_mask |= (1 << i);
Tejun Heo873fe092013-04-14 20:15:26 -07001393
Tejun Heoa2dd4242014-03-19 10:23:55 -04001394 /*
1395 * We either have to specify by name or by subsystems. (So
1396 * all empty hierarchies must have a name).
1397 */
1398 if (!opts->subsys_mask && !opts->name)
Tejun Heo873fe092013-04-14 20:15:26 -07001399 return -EINVAL;
Tejun Heo873fe092013-04-14 20:15:26 -07001400 }
1401
Li Zefanf9ab5b52009-06-17 16:26:33 -07001402 /*
1403 * Option noprefix was introduced just for backward compatibility
1404 * with the old cpuset, so we allow noprefix only if mounting just
1405 * the cpuset subsystem.
1406 */
Tejun Heo93438622013-04-14 20:15:25 -07001407 if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask))
Li Zefanf9ab5b52009-06-17 16:26:33 -07001408 return -EINVAL;
1409
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001410
1411 /* Can't specify "none" and some subsystems */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001412 if (opts->subsys_mask && opts->none)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001413 return -EINVAL;
1414
Paul Menageddbcc7e2007-10-18 23:39:30 -07001415 return 0;
1416}
1417
Tejun Heo2bd59d42014-02-11 11:52:49 -05001418static int cgroup_remount(struct kernfs_root *kf_root, int *flags, char *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001419{
1420 int ret = 0;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001421 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001422 struct cgroup_sb_opts opts;
Tejun Heo69dfa002014-05-04 15:09:13 -04001423 unsigned int added_mask, removed_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001424
Tejun Heo873fe092013-04-14 20:15:26 -07001425 if (root->flags & CGRP_ROOT_SANE_BEHAVIOR) {
Joe Perchesed3d2612014-04-25 18:28:03 -04001426 pr_err("sane_behavior: remount is not allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001427 return -EINVAL;
1428 }
1429
Paul Menageddbcc7e2007-10-18 23:39:30 -07001430 mutex_lock(&cgroup_mutex);
1431
1432 /* See what subsystems are wanted */
1433 ret = parse_cgroupfs_options(data, &opts);
1434 if (ret)
1435 goto out_unlock;
1436
Tejun Heof392e512014-04-23 11:13:14 -04001437 if (opts.subsys_mask != root->subsys_mask || opts.release_agent)
Joe Perchesed3d2612014-04-25 18:28:03 -04001438 pr_warn("option changes via remount are deprecated (pid=%d comm=%s)\n",
Jianyu Zhana2a1f9e2014-04-25 18:28:03 -04001439 task_tgid_nr(current), current->comm);
Tejun Heo8b5a5a92012-04-01 12:09:54 -07001440
Tejun Heof392e512014-04-23 11:13:14 -04001441 added_mask = opts.subsys_mask & ~root->subsys_mask;
1442 removed_mask = root->subsys_mask & ~opts.subsys_mask;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001443
Ben Blumcf5d5942010-03-10 15:22:09 -08001444 /* Don't allow flags or name to change at remount */
Tejun Heo0ce6cba2013-06-27 19:37:26 -07001445 if (((opts.flags ^ root->flags) & CGRP_ROOT_OPTION_MASK) ||
Ben Blumcf5d5942010-03-10 15:22:09 -08001446 (opts.name && strcmp(opts.name, root->name))) {
Tejun Heo69dfa002014-05-04 15:09:13 -04001447 pr_err("option or name mismatch, new: 0x%x \"%s\", old: 0x%x \"%s\"\n",
Tejun Heo0ce6cba2013-06-27 19:37:26 -07001448 opts.flags & CGRP_ROOT_OPTION_MASK, opts.name ?: "",
1449 root->flags & CGRP_ROOT_OPTION_MASK, root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001450 ret = -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001451 goto out_unlock;
1452 }
1453
Tejun Heof172e672013-06-28 17:07:30 -07001454 /* remounting is not allowed for populated hierarchies */
Tejun Heod5c419b2014-05-16 13:22:48 -04001455 if (!list_empty(&root->cgrp.self.children)) {
Tejun Heof172e672013-06-28 17:07:30 -07001456 ret = -EBUSY;
Li Zefan0670e082009-04-02 16:57:30 -07001457 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001458 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001459
Tejun Heo5df36032014-03-19 10:23:54 -04001460 ret = rebind_subsystems(root, added_mask);
Tejun Heo31261212013-06-28 17:07:30 -07001461 if (ret)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001462 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001463
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001464 rebind_subsystems(&cgrp_dfl_root, removed_mask);
Tejun Heo5df36032014-03-19 10:23:54 -04001465
Tejun Heo69e943b2014-02-08 10:36:58 -05001466 if (opts.release_agent) {
1467 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001468 strcpy(root->release_agent_path, opts.release_agent);
Tejun Heo69e943b2014-02-08 10:36:58 -05001469 spin_unlock(&release_agent_path_lock);
1470 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001471 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001472 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001473 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001474 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001475 return ret;
1476}
1477
Tejun Heoafeb0f92014-02-13 06:58:39 -05001478/*
1479 * To reduce the fork() overhead for systems that are not actually using
1480 * their cgroups capability, we don't maintain the lists running through
1481 * each css_set to its tasks until we see the list actually used - in other
1482 * words after the first mount.
1483 */
1484static bool use_task_css_set_links __read_mostly;
1485
1486static void cgroup_enable_task_cg_lists(void)
1487{
1488 struct task_struct *p, *g;
1489
Tejun Heo96d365e2014-02-13 06:58:40 -05001490 down_write(&css_set_rwsem);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001491
1492 if (use_task_css_set_links)
1493 goto out_unlock;
1494
1495 use_task_css_set_links = true;
1496
1497 /*
1498 * We need tasklist_lock because RCU is not safe against
1499 * while_each_thread(). Besides, a forking task that has passed
1500 * cgroup_post_fork() without seeing use_task_css_set_links = 1
1501 * is not guaranteed to have its child immediately visible in the
1502 * tasklist if we walk through it with RCU.
1503 */
1504 read_lock(&tasklist_lock);
1505 do_each_thread(g, p) {
Tejun Heoafeb0f92014-02-13 06:58:39 -05001506 WARN_ON_ONCE(!list_empty(&p->cg_list) ||
1507 task_css_set(p) != &init_css_set);
1508
1509 /*
1510 * We should check if the process is exiting, otherwise
1511 * it will race with cgroup_exit() in that the list
1512 * entry won't be deleted though the process has exited.
Tejun Heof153ad12014-02-25 09:56:49 -05001513 * Do it while holding siglock so that we don't end up
1514 * racing against cgroup_exit().
Tejun Heoafeb0f92014-02-13 06:58:39 -05001515 */
Tejun Heof153ad12014-02-25 09:56:49 -05001516 spin_lock_irq(&p->sighand->siglock);
Tejun Heoeaf797a2014-02-25 10:04:03 -05001517 if (!(p->flags & PF_EXITING)) {
1518 struct css_set *cset = task_css_set(p);
1519
1520 list_add(&p->cg_list, &cset->tasks);
1521 get_css_set(cset);
1522 }
Tejun Heof153ad12014-02-25 09:56:49 -05001523 spin_unlock_irq(&p->sighand->siglock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001524 } while_each_thread(g, p);
1525 read_unlock(&tasklist_lock);
1526out_unlock:
Tejun Heo96d365e2014-02-13 06:58:40 -05001527 up_write(&css_set_rwsem);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001528}
Paul Menageddbcc7e2007-10-18 23:39:30 -07001529
Paul Menagecc31edc2008-10-18 20:28:04 -07001530static void init_cgroup_housekeeping(struct cgroup *cgrp)
1531{
Tejun Heo2d8f2432014-04-23 11:13:15 -04001532 struct cgroup_subsys *ss;
1533 int ssid;
1534
Tejun Heod5c419b2014-05-16 13:22:48 -04001535 INIT_LIST_HEAD(&cgrp->self.sibling);
1536 INIT_LIST_HEAD(&cgrp->self.children);
Tejun Heo69d02062013-06-12 21:04:50 -07001537 INIT_LIST_HEAD(&cgrp->cset_links);
Paul Menagecc31edc2008-10-18 20:28:04 -07001538 INIT_LIST_HEAD(&cgrp->release_list);
Ben Blum72a8cb32009-09-23 15:56:27 -07001539 INIT_LIST_HEAD(&cgrp->pidlists);
1540 mutex_init(&cgrp->pidlist_mutex);
Tejun Heo9d800df2014-05-14 09:15:00 -04001541 cgrp->self.cgroup = cgrp;
Tejun Heo184faf32014-05-16 13:22:51 -04001542 cgrp->self.flags |= CSS_ONLINE;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001543
1544 for_each_subsys(ss, ssid)
1545 INIT_LIST_HEAD(&cgrp->e_csets[ssid]);
Tejun Heof8f22e52014-04-23 11:13:16 -04001546
1547 init_waitqueue_head(&cgrp->offline_waitq);
Paul Menagecc31edc2008-10-18 20:28:04 -07001548}
Paul Menagec6d57f32009-09-23 15:56:19 -07001549
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001550static void init_cgroup_root(struct cgroup_root *root,
Tejun Heo172a2c062014-03-19 10:23:53 -04001551 struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001552{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001553 struct cgroup *cgrp = &root->cgrp;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001554
Paul Menageddbcc7e2007-10-18 23:39:30 -07001555 INIT_LIST_HEAD(&root->root_list);
Tejun Heo3c9c8252014-02-12 09:29:50 -05001556 atomic_set(&root->nr_cgrps, 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001557 cgrp->root = root;
Paul Menagecc31edc2008-10-18 20:28:04 -07001558 init_cgroup_housekeeping(cgrp);
Li Zefan4e96ee82013-07-31 09:50:50 +08001559 idr_init(&root->cgroup_idr);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001560
Paul Menagec6d57f32009-09-23 15:56:19 -07001561 root->flags = opts->flags;
1562 if (opts->release_agent)
1563 strcpy(root->release_agent_path, opts->release_agent);
1564 if (opts->name)
1565 strcpy(root->name, opts->name);
Tejun Heo2260e7f2012-11-19 08:13:38 -08001566 if (opts->cpuset_clone_children)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001567 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001568}
1569
Tejun Heo69dfa002014-05-04 15:09:13 -04001570static int cgroup_setup_root(struct cgroup_root *root, unsigned int ss_mask)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001571{
Tejun Heod427dfe2014-02-11 11:52:48 -05001572 LIST_HEAD(tmp_links);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001573 struct cgroup *root_cgrp = &root->cgrp;
Tejun Heod427dfe2014-02-11 11:52:48 -05001574 struct css_set *cset;
Tejun Heod427dfe2014-02-11 11:52:48 -05001575 int i, ret;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001576
Tejun Heod427dfe2014-02-11 11:52:48 -05001577 lockdep_assert_held(&cgroup_mutex);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001578
Tejun Heo6fa49182014-05-04 15:09:13 -04001579 ret = cgroup_idr_alloc(&root->cgroup_idr, root_cgrp, 1, 2, GFP_NOWAIT);
Tejun Heod427dfe2014-02-11 11:52:48 -05001580 if (ret < 0)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001581 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001582 root_cgrp->id = ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001583
Tejun Heo9d755d32014-05-14 09:15:02 -04001584 ret = percpu_ref_init(&root_cgrp->self.refcnt, css_release);
1585 if (ret)
1586 goto out;
1587
Tejun Heod427dfe2014-02-11 11:52:48 -05001588 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05001589 * We're accessing css_set_count without locking css_set_rwsem here,
Tejun Heod427dfe2014-02-11 11:52:48 -05001590 * but that's OK - it can only be increased by someone holding
1591 * cgroup_lock, and that's us. The worst that can happen is that we
1592 * have some link structures left over
1593 */
1594 ret = allocate_cgrp_cset_links(css_set_count, &tmp_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001595 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001596 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001597
Tejun Heo985ed672014-03-19 10:23:53 -04001598 ret = cgroup_init_root_id(root);
Tejun Heod427dfe2014-02-11 11:52:48 -05001599 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001600 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001601
Tejun Heo2bd59d42014-02-11 11:52:49 -05001602 root->kf_root = kernfs_create_root(&cgroup_kf_syscall_ops,
1603 KERNFS_ROOT_CREATE_DEACTIVATED,
1604 root_cgrp);
1605 if (IS_ERR(root->kf_root)) {
1606 ret = PTR_ERR(root->kf_root);
1607 goto exit_root_id;
1608 }
1609 root_cgrp->kn = root->kf_root->kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001610
Tejun Heod427dfe2014-02-11 11:52:48 -05001611 ret = cgroup_addrm_files(root_cgrp, cgroup_base_files, true);
1612 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001613 goto destroy_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001614
Tejun Heo5df36032014-03-19 10:23:54 -04001615 ret = rebind_subsystems(root, ss_mask);
Tejun Heod427dfe2014-02-11 11:52:48 -05001616 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001617 goto destroy_root;
Al Viro0df6a632010-12-21 13:29:29 -05001618
Tejun Heod427dfe2014-02-11 11:52:48 -05001619 /*
1620 * There must be no failure case after here, since rebinding takes
1621 * care of subsystems' refcounts, which are explicitly dropped in
1622 * the failure exit path.
1623 */
1624 list_add(&root->root_list, &cgroup_roots);
1625 cgroup_root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001626
Tejun Heod427dfe2014-02-11 11:52:48 -05001627 /*
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001628 * Link the root cgroup in this hierarchy into all the css_set
Tejun Heod427dfe2014-02-11 11:52:48 -05001629 * objects.
1630 */
Tejun Heo96d365e2014-02-13 06:58:40 -05001631 down_write(&css_set_rwsem);
Tejun Heod427dfe2014-02-11 11:52:48 -05001632 hash_for_each(css_set_table, i, cset, hlist)
1633 link_css_set(&tmp_links, cset, root_cgrp);
Tejun Heo96d365e2014-02-13 06:58:40 -05001634 up_write(&css_set_rwsem);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001635
Tejun Heod5c419b2014-05-16 13:22:48 -04001636 BUG_ON(!list_empty(&root_cgrp->self.children));
Tejun Heo3c9c8252014-02-12 09:29:50 -05001637 BUG_ON(atomic_read(&root->nr_cgrps) != 1);
Tejun Heod427dfe2014-02-11 11:52:48 -05001638
Tejun Heo2bd59d42014-02-11 11:52:49 -05001639 kernfs_activate(root_cgrp->kn);
Tejun Heod427dfe2014-02-11 11:52:48 -05001640 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001641 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001642
Tejun Heo2bd59d42014-02-11 11:52:49 -05001643destroy_root:
1644 kernfs_destroy_root(root->kf_root);
1645 root->kf_root = NULL;
1646exit_root_id:
Tejun Heod427dfe2014-02-11 11:52:48 -05001647 cgroup_exit_root_id(root);
Tejun Heo9d755d32014-05-14 09:15:02 -04001648cancel_ref:
1649 percpu_ref_cancel_init(&root_cgrp->self.refcnt);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001650out:
Tejun Heod427dfe2014-02-11 11:52:48 -05001651 free_cgrp_cset_links(&tmp_links);
1652 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001653}
1654
Al Virof7e83572010-07-26 13:23:11 +04001655static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001656 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001657 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001658{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001659 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001660 struct cgroup_sb_opts opts;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001661 struct dentry *dentry;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001662 int ret;
Li Zefanc6b3d5b2014-04-04 17:14:41 +08001663 bool new_sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001664
1665 /*
Tejun Heo56fde9e2014-02-13 06:58:38 -05001666 * The first time anyone tries to mount a cgroup, enable the list
1667 * linking each css_set to its tasks and fix up all existing tasks.
Paul Menagec6d57f32009-09-23 15:56:19 -07001668 */
Tejun Heo56fde9e2014-02-13 06:58:38 -05001669 if (!use_task_css_set_links)
1670 cgroup_enable_task_cg_lists();
Li Zefane37a06f2014-04-17 13:53:08 +08001671
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001672 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001673
Paul Menageddbcc7e2007-10-18 23:39:30 -07001674 /* First find the desired set of subsystems */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001675 ret = parse_cgroupfs_options(data, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001676 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001677 goto out_unlock;
Tejun Heoa015edd2014-05-14 09:15:00 -04001678
Tejun Heo2bd59d42014-02-11 11:52:49 -05001679 /* look for a matching existing root */
Tejun Heoa2dd4242014-03-19 10:23:55 -04001680 if (!opts.subsys_mask && !opts.none && !opts.name) {
1681 cgrp_dfl_root_visible = true;
1682 root = &cgrp_dfl_root;
1683 cgroup_get(&root->cgrp);
1684 ret = 0;
1685 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001686 }
1687
Tejun Heo985ed672014-03-19 10:23:53 -04001688 for_each_root(root) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05001689 bool name_match = false;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001690
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001691 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04001692 continue;
Paul Menagec6d57f32009-09-23 15:56:19 -07001693
Paul Menage817929e2007-10-18 23:39:36 -07001694 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05001695 * If we asked for a name then it must match. Also, if
1696 * name matches but sybsys_mask doesn't, we should fail.
1697 * Remember whether name matched.
Paul Menage817929e2007-10-18 23:39:36 -07001698 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05001699 if (opts.name) {
1700 if (strcmp(opts.name, root->name))
1701 continue;
1702 name_match = true;
1703 }
Tejun Heo31261212013-06-28 17:07:30 -07001704
1705 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05001706 * If we asked for subsystems (or explicitly for no
1707 * subsystems) then they must match.
Tejun Heo31261212013-06-28 17:07:30 -07001708 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05001709 if ((opts.subsys_mask || opts.none) &&
Tejun Heof392e512014-04-23 11:13:14 -04001710 (opts.subsys_mask != root->subsys_mask)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05001711 if (!name_match)
1712 continue;
1713 ret = -EBUSY;
1714 goto out_unlock;
1715 }
Tejun Heo873fe092013-04-14 20:15:26 -07001716
Tejun Heoc7ba8282013-06-29 14:06:10 -07001717 if ((root->flags ^ opts.flags) & CGRP_ROOT_OPTION_MASK) {
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001718 if ((root->flags | opts.flags) & CGRP_ROOT_SANE_BEHAVIOR) {
Joe Perchesed3d2612014-04-25 18:28:03 -04001719 pr_err("sane_behavior: new mount options should match the existing superblock\n");
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001720 ret = -EINVAL;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001721 goto out_unlock;
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001722 } else {
Joe Perchesed3d2612014-04-25 18:28:03 -04001723 pr_warn("new mount options do not match the existing superblock, will be ignored\n");
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001724 }
Tejun Heo873fe092013-04-14 20:15:26 -07001725 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05001726
Tejun Heo776f02f2014-02-12 09:29:50 -05001727 /*
Tejun Heo9d755d32014-05-14 09:15:02 -04001728 * A root's lifetime is governed by its root cgroup.
1729 * tryget_live failure indicate that the root is being
1730 * destroyed. Wait for destruction to complete so that the
1731 * subsystems are free. We can use wait_queue for the wait
1732 * but this path is super cold. Let's just sleep for a bit
1733 * and retry.
Tejun Heo776f02f2014-02-12 09:29:50 -05001734 */
Tejun Heo9d755d32014-05-14 09:15:02 -04001735 if (!percpu_ref_tryget_live(&root->cgrp.self.refcnt)) {
Tejun Heo776f02f2014-02-12 09:29:50 -05001736 mutex_unlock(&cgroup_mutex);
Tejun Heo776f02f2014-02-12 09:29:50 -05001737 msleep(10);
Tejun Heoa015edd2014-05-14 09:15:00 -04001738 ret = restart_syscall();
1739 goto out_free;
Tejun Heo776f02f2014-02-12 09:29:50 -05001740 }
1741
1742 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001743 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001744 }
1745
Tejun Heo172a2c062014-03-19 10:23:53 -04001746 /*
1747 * No such thing, create a new one. name= matching without subsys
1748 * specification is allowed for already existing hierarchies but we
1749 * can't create new one without subsys specification.
1750 */
1751 if (!opts.subsys_mask && !opts.none) {
1752 ret = -EINVAL;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001753 goto out_unlock;
1754 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001755
Tejun Heo172a2c062014-03-19 10:23:53 -04001756 root = kzalloc(sizeof(*root), GFP_KERNEL);
1757 if (!root) {
1758 ret = -ENOMEM;
1759 goto out_unlock;
1760 }
1761
1762 init_cgroup_root(root, &opts);
1763
Tejun Heo35585572014-02-13 06:58:38 -05001764 ret = cgroup_setup_root(root, opts.subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001765 if (ret)
1766 cgroup_free_root(root);
1767
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001768out_unlock:
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001769 mutex_unlock(&cgroup_mutex);
Tejun Heoa015edd2014-05-14 09:15:00 -04001770out_free:
Paul Menagec6d57f32009-09-23 15:56:19 -07001771 kfree(opts.release_agent);
1772 kfree(opts.name);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001773
Tejun Heo2bd59d42014-02-11 11:52:49 -05001774 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001775 return ERR_PTR(ret);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001776
Jianyu Zhanc9482a52014-04-26 15:40:28 +08001777 dentry = kernfs_mount(fs_type, flags, root->kf_root,
1778 CGROUP_SUPER_MAGIC, &new_sb);
Li Zefanc6b3d5b2014-04-04 17:14:41 +08001779 if (IS_ERR(dentry) || !new_sb)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001780 cgroup_put(&root->cgrp);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001781 return dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001782}
1783
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09001784static void cgroup_kill_sb(struct super_block *sb)
1785{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001786 struct kernfs_root *kf_root = kernfs_root_from_sb(sb);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001787 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001788
Tejun Heo9d755d32014-05-14 09:15:02 -04001789 /*
1790 * If @root doesn't have any mounts or children, start killing it.
1791 * This prevents new mounts by disabling percpu_ref_tryget_live().
1792 * cgroup_mount() may wait for @root's release.
Li Zefan1f779fb2014-06-04 16:48:15 +08001793 *
1794 * And don't kill the default root.
Tejun Heo9d755d32014-05-14 09:15:02 -04001795 */
Li Zefan1f779fb2014-06-04 16:48:15 +08001796 if (css_has_online_children(&root->cgrp.self) ||
1797 root == &cgrp_dfl_root)
Tejun Heo9d755d32014-05-14 09:15:02 -04001798 cgroup_put(&root->cgrp);
1799 else
1800 percpu_ref_kill(&root->cgrp.self.refcnt);
1801
Tejun Heo2bd59d42014-02-11 11:52:49 -05001802 kernfs_kill_sb(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001803}
1804
1805static struct file_system_type cgroup_fs_type = {
1806 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001807 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001808 .kill_sb = cgroup_kill_sb,
1809};
1810
Greg KH676db4a2010-08-05 13:53:35 -07001811static struct kobject *cgroup_kobj;
1812
Li Zefana043e3b2008-02-23 15:24:09 -08001813/**
Tejun Heo913ffdb2013-07-11 16:34:48 -07001814 * task_cgroup_path - cgroup path of a task in the first cgroup hierarchy
Tejun Heo857a2be2013-04-14 20:50:08 -07001815 * @task: target task
Tejun Heo857a2be2013-04-14 20:50:08 -07001816 * @buf: the buffer to write the path into
1817 * @buflen: the length of the buffer
1818 *
Tejun Heo913ffdb2013-07-11 16:34:48 -07001819 * Determine @task's cgroup on the first (the one with the lowest non-zero
1820 * hierarchy_id) cgroup hierarchy and copy its path into @buf. This
1821 * function grabs cgroup_mutex and shouldn't be used inside locks used by
1822 * cgroup controller callbacks.
1823 *
Tejun Heoe61734c2014-02-12 09:29:50 -05001824 * Return value is the same as kernfs_path().
Tejun Heo857a2be2013-04-14 20:50:08 -07001825 */
Tejun Heoe61734c2014-02-12 09:29:50 -05001826char *task_cgroup_path(struct task_struct *task, char *buf, size_t buflen)
Tejun Heo857a2be2013-04-14 20:50:08 -07001827{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001828 struct cgroup_root *root;
Tejun Heo913ffdb2013-07-11 16:34:48 -07001829 struct cgroup *cgrp;
Tejun Heoe61734c2014-02-12 09:29:50 -05001830 int hierarchy_id = 1;
1831 char *path = NULL;
Tejun Heo857a2be2013-04-14 20:50:08 -07001832
1833 mutex_lock(&cgroup_mutex);
Tejun Heo96d365e2014-02-13 06:58:40 -05001834 down_read(&css_set_rwsem);
Tejun Heo857a2be2013-04-14 20:50:08 -07001835
Tejun Heo913ffdb2013-07-11 16:34:48 -07001836 root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id);
1837
Tejun Heo857a2be2013-04-14 20:50:08 -07001838 if (root) {
1839 cgrp = task_cgroup_from_root(task, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05001840 path = cgroup_path(cgrp, buf, buflen);
Tejun Heo913ffdb2013-07-11 16:34:48 -07001841 } else {
1842 /* if no hierarchy exists, everyone is in "/" */
Tejun Heoe61734c2014-02-12 09:29:50 -05001843 if (strlcpy(buf, "/", buflen) < buflen)
1844 path = buf;
Tejun Heo857a2be2013-04-14 20:50:08 -07001845 }
1846
Tejun Heo96d365e2014-02-13 06:58:40 -05001847 up_read(&css_set_rwsem);
Tejun Heo857a2be2013-04-14 20:50:08 -07001848 mutex_unlock(&cgroup_mutex);
Tejun Heoe61734c2014-02-12 09:29:50 -05001849 return path;
Tejun Heo857a2be2013-04-14 20:50:08 -07001850}
Tejun Heo913ffdb2013-07-11 16:34:48 -07001851EXPORT_SYMBOL_GPL(task_cgroup_path);
Tejun Heo857a2be2013-04-14 20:50:08 -07001852
Tejun Heob3dc0942014-02-25 10:04:01 -05001853/* used to track tasks and other necessary states during migration */
Tejun Heo2f7ee562011-12-12 18:12:21 -08001854struct cgroup_taskset {
Tejun Heob3dc0942014-02-25 10:04:01 -05001855 /* the src and dst cset list running through cset->mg_node */
1856 struct list_head src_csets;
1857 struct list_head dst_csets;
1858
1859 /*
1860 * Fields for cgroup_taskset_*() iteration.
1861 *
1862 * Before migration is committed, the target migration tasks are on
1863 * ->mg_tasks of the csets on ->src_csets. After, on ->mg_tasks of
1864 * the csets on ->dst_csets. ->csets point to either ->src_csets
1865 * or ->dst_csets depending on whether migration is committed.
1866 *
1867 * ->cur_csets and ->cur_task point to the current task position
1868 * during iteration.
1869 */
1870 struct list_head *csets;
1871 struct css_set *cur_cset;
1872 struct task_struct *cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001873};
1874
1875/**
1876 * cgroup_taskset_first - reset taskset and return the first task
1877 * @tset: taskset of interest
1878 *
1879 * @tset iteration is initialized and the first task is returned.
1880 */
1881struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
1882{
Tejun Heob3dc0942014-02-25 10:04:01 -05001883 tset->cur_cset = list_first_entry(tset->csets, struct css_set, mg_node);
1884 tset->cur_task = NULL;
1885
1886 return cgroup_taskset_next(tset);
Tejun Heo2f7ee562011-12-12 18:12:21 -08001887}
Tejun Heo2f7ee562011-12-12 18:12:21 -08001888
1889/**
1890 * cgroup_taskset_next - iterate to the next task in taskset
1891 * @tset: taskset of interest
1892 *
1893 * Return the next task in @tset. Iteration must have been initialized
1894 * with cgroup_taskset_first().
1895 */
1896struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
1897{
Tejun Heob3dc0942014-02-25 10:04:01 -05001898 struct css_set *cset = tset->cur_cset;
1899 struct task_struct *task = tset->cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001900
Tejun Heob3dc0942014-02-25 10:04:01 -05001901 while (&cset->mg_node != tset->csets) {
1902 if (!task)
1903 task = list_first_entry(&cset->mg_tasks,
1904 struct task_struct, cg_list);
1905 else
1906 task = list_next_entry(task, cg_list);
Tejun Heo2f7ee562011-12-12 18:12:21 -08001907
Tejun Heob3dc0942014-02-25 10:04:01 -05001908 if (&task->cg_list != &cset->mg_tasks) {
1909 tset->cur_cset = cset;
1910 tset->cur_task = task;
1911 return task;
1912 }
1913
1914 cset = list_next_entry(cset, mg_node);
1915 task = NULL;
1916 }
1917
1918 return NULL;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001919}
Tejun Heo2f7ee562011-12-12 18:12:21 -08001920
1921/**
Ben Blum74a11662011-05-26 16:25:20 -07001922 * cgroup_task_migrate - move a task from one cgroup to another.
Fabian Frederick60106942014-05-05 20:08:13 +02001923 * @old_cgrp: the cgroup @tsk is being migrated from
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001924 * @tsk: the task being migrated
1925 * @new_cset: the new css_set @tsk is being attached to
Ben Blum74a11662011-05-26 16:25:20 -07001926 *
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001927 * Must be called with cgroup_mutex, threadgroup and css_set_rwsem locked.
Ben Blum74a11662011-05-26 16:25:20 -07001928 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001929static void cgroup_task_migrate(struct cgroup *old_cgrp,
1930 struct task_struct *tsk,
1931 struct css_set *new_cset)
Ben Blum74a11662011-05-26 16:25:20 -07001932{
Tejun Heo5abb8852013-06-12 21:04:49 -07001933 struct css_set *old_cset;
Ben Blum74a11662011-05-26 16:25:20 -07001934
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001935 lockdep_assert_held(&cgroup_mutex);
1936 lockdep_assert_held(&css_set_rwsem);
1937
Ben Blum74a11662011-05-26 16:25:20 -07001938 /*
Mandeep Singh Baines026085e2011-12-21 20:18:35 -08001939 * We are synchronized through threadgroup_lock() against PF_EXITING
1940 * setting such that we can't race against cgroup_exit() changing the
1941 * css_set to init_css_set and dropping the old one.
Ben Blum74a11662011-05-26 16:25:20 -07001942 */
Frederic Weisbeckerc84cdf72011-12-21 20:03:18 +01001943 WARN_ON_ONCE(tsk->flags & PF_EXITING);
Tejun Heoa8ad8052013-06-21 15:52:04 -07001944 old_cset = task_css_set(tsk);
Ben Blum74a11662011-05-26 16:25:20 -07001945
Tejun Heob3dc0942014-02-25 10:04:01 -05001946 get_css_set(new_cset);
Tejun Heo5abb8852013-06-12 21:04:49 -07001947 rcu_assign_pointer(tsk->cgroups, new_cset);
Ben Blum74a11662011-05-26 16:25:20 -07001948
Tejun Heo1b9aba42014-03-19 17:43:21 -04001949 /*
1950 * Use move_tail so that cgroup_taskset_first() still returns the
1951 * leader after migration. This works because cgroup_migrate()
1952 * ensures that the dst_cset of the leader is the first on the
1953 * tset's dst_csets list.
1954 */
1955 list_move_tail(&tsk->cg_list, &new_cset->mg_tasks);
Ben Blum74a11662011-05-26 16:25:20 -07001956
1957 /*
Tejun Heo5abb8852013-06-12 21:04:49 -07001958 * We just gained a reference on old_cset by taking it from the
1959 * task. As trading it for new_cset is protected by cgroup_mutex,
1960 * we're safe to drop it here; it will be freed under RCU.
Ben Blum74a11662011-05-26 16:25:20 -07001961 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001962 set_bit(CGRP_RELEASABLE, &old_cgrp->flags);
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001963 put_css_set_locked(old_cset, false);
Ben Blum74a11662011-05-26 16:25:20 -07001964}
1965
Li Zefana043e3b2008-02-23 15:24:09 -08001966/**
Tejun Heo1958d2d2014-02-25 10:04:03 -05001967 * cgroup_migrate_finish - cleanup after attach
1968 * @preloaded_csets: list of preloaded css_sets
Ben Blum74a11662011-05-26 16:25:20 -07001969 *
Tejun Heo1958d2d2014-02-25 10:04:03 -05001970 * Undo cgroup_migrate_add_src() and cgroup_migrate_prepare_dst(). See
1971 * those functions for details.
Ben Blum74a11662011-05-26 16:25:20 -07001972 */
Tejun Heo1958d2d2014-02-25 10:04:03 -05001973static void cgroup_migrate_finish(struct list_head *preloaded_csets)
Ben Blum74a11662011-05-26 16:25:20 -07001974{
Tejun Heo1958d2d2014-02-25 10:04:03 -05001975 struct css_set *cset, *tmp_cset;
1976
1977 lockdep_assert_held(&cgroup_mutex);
1978
1979 down_write(&css_set_rwsem);
1980 list_for_each_entry_safe(cset, tmp_cset, preloaded_csets, mg_preload_node) {
1981 cset->mg_src_cgrp = NULL;
1982 cset->mg_dst_cset = NULL;
1983 list_del_init(&cset->mg_preload_node);
1984 put_css_set_locked(cset, false);
1985 }
1986 up_write(&css_set_rwsem);
1987}
1988
1989/**
1990 * cgroup_migrate_add_src - add a migration source css_set
1991 * @src_cset: the source css_set to add
1992 * @dst_cgrp: the destination cgroup
1993 * @preloaded_csets: list of preloaded css_sets
1994 *
1995 * Tasks belonging to @src_cset are about to be migrated to @dst_cgrp. Pin
1996 * @src_cset and add it to @preloaded_csets, which should later be cleaned
1997 * up by cgroup_migrate_finish().
1998 *
1999 * This function may be called without holding threadgroup_lock even if the
2000 * target is a process. Threads may be created and destroyed but as long
2001 * as cgroup_mutex is not dropped, no new css_set can be put into play and
2002 * the preloaded css_sets are guaranteed to cover all migrations.
2003 */
2004static void cgroup_migrate_add_src(struct css_set *src_cset,
2005 struct cgroup *dst_cgrp,
2006 struct list_head *preloaded_csets)
2007{
2008 struct cgroup *src_cgrp;
2009
2010 lockdep_assert_held(&cgroup_mutex);
2011 lockdep_assert_held(&css_set_rwsem);
2012
2013 src_cgrp = cset_cgroup_from_root(src_cset, dst_cgrp->root);
2014
Tejun Heo1958d2d2014-02-25 10:04:03 -05002015 if (!list_empty(&src_cset->mg_preload_node))
2016 return;
2017
2018 WARN_ON(src_cset->mg_src_cgrp);
2019 WARN_ON(!list_empty(&src_cset->mg_tasks));
2020 WARN_ON(!list_empty(&src_cset->mg_node));
2021
2022 src_cset->mg_src_cgrp = src_cgrp;
2023 get_css_set(src_cset);
2024 list_add(&src_cset->mg_preload_node, preloaded_csets);
2025}
2026
2027/**
2028 * cgroup_migrate_prepare_dst - prepare destination css_sets for migration
Tejun Heof817de92014-04-23 11:13:16 -04002029 * @dst_cgrp: the destination cgroup (may be %NULL)
Tejun Heo1958d2d2014-02-25 10:04:03 -05002030 * @preloaded_csets: list of preloaded source css_sets
2031 *
2032 * Tasks are about to be moved to @dst_cgrp and all the source css_sets
2033 * have been preloaded to @preloaded_csets. This function looks up and
Tejun Heof817de92014-04-23 11:13:16 -04002034 * pins all destination css_sets, links each to its source, and append them
2035 * to @preloaded_csets. If @dst_cgrp is %NULL, the destination of each
2036 * source css_set is assumed to be its cgroup on the default hierarchy.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002037 *
2038 * This function must be called after cgroup_migrate_add_src() has been
2039 * called on each migration source css_set. After migration is performed
2040 * using cgroup_migrate(), cgroup_migrate_finish() must be called on
2041 * @preloaded_csets.
2042 */
2043static int cgroup_migrate_prepare_dst(struct cgroup *dst_cgrp,
2044 struct list_head *preloaded_csets)
2045{
2046 LIST_HEAD(csets);
Tejun Heof817de92014-04-23 11:13:16 -04002047 struct css_set *src_cset, *tmp_cset;
Tejun Heo1958d2d2014-02-25 10:04:03 -05002048
2049 lockdep_assert_held(&cgroup_mutex);
2050
Tejun Heof8f22e52014-04-23 11:13:16 -04002051 /*
2052 * Except for the root, child_subsys_mask must be zero for a cgroup
2053 * with tasks so that child cgroups don't compete against tasks.
2054 */
Tejun Heod51f39b2014-05-16 13:22:48 -04002055 if (dst_cgrp && cgroup_on_dfl(dst_cgrp) && cgroup_parent(dst_cgrp) &&
Tejun Heof8f22e52014-04-23 11:13:16 -04002056 dst_cgrp->child_subsys_mask)
2057 return -EBUSY;
2058
Tejun Heo1958d2d2014-02-25 10:04:03 -05002059 /* look up the dst cset for each src cset and link it to src */
Tejun Heof817de92014-04-23 11:13:16 -04002060 list_for_each_entry_safe(src_cset, tmp_cset, preloaded_csets, mg_preload_node) {
Tejun Heo1958d2d2014-02-25 10:04:03 -05002061 struct css_set *dst_cset;
2062
Tejun Heof817de92014-04-23 11:13:16 -04002063 dst_cset = find_css_set(src_cset,
2064 dst_cgrp ?: src_cset->dfl_cgrp);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002065 if (!dst_cset)
2066 goto err;
2067
2068 WARN_ON_ONCE(src_cset->mg_dst_cset || dst_cset->mg_dst_cset);
Tejun Heof817de92014-04-23 11:13:16 -04002069
2070 /*
2071 * If src cset equals dst, it's noop. Drop the src.
2072 * cgroup_migrate() will skip the cset too. Note that we
2073 * can't handle src == dst as some nodes are used by both.
2074 */
2075 if (src_cset == dst_cset) {
2076 src_cset->mg_src_cgrp = NULL;
2077 list_del_init(&src_cset->mg_preload_node);
2078 put_css_set(src_cset, false);
2079 put_css_set(dst_cset, false);
2080 continue;
2081 }
2082
Tejun Heo1958d2d2014-02-25 10:04:03 -05002083 src_cset->mg_dst_cset = dst_cset;
2084
2085 if (list_empty(&dst_cset->mg_preload_node))
2086 list_add(&dst_cset->mg_preload_node, &csets);
2087 else
2088 put_css_set(dst_cset, false);
2089 }
2090
Tejun Heof817de92014-04-23 11:13:16 -04002091 list_splice_tail(&csets, preloaded_csets);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002092 return 0;
2093err:
2094 cgroup_migrate_finish(&csets);
2095 return -ENOMEM;
2096}
2097
2098/**
2099 * cgroup_migrate - migrate a process or task to a cgroup
2100 * @cgrp: the destination cgroup
2101 * @leader: the leader of the process or the task to migrate
2102 * @threadgroup: whether @leader points to the whole process or a single task
2103 *
2104 * Migrate a process or task denoted by @leader to @cgrp. If migrating a
2105 * process, the caller must be holding threadgroup_lock of @leader. The
2106 * caller is also responsible for invoking cgroup_migrate_add_src() and
2107 * cgroup_migrate_prepare_dst() on the targets before invoking this
2108 * function and following up with cgroup_migrate_finish().
2109 *
2110 * As long as a controller's ->can_attach() doesn't fail, this function is
2111 * guaranteed to succeed. This means that, excluding ->can_attach()
2112 * failure, when migrating multiple targets, the success or failure can be
2113 * decided for all targets by invoking group_migrate_prepare_dst() before
2114 * actually starting migrating.
2115 */
2116static int cgroup_migrate(struct cgroup *cgrp, struct task_struct *leader,
2117 bool threadgroup)
Ben Blum74a11662011-05-26 16:25:20 -07002118{
Tejun Heob3dc0942014-02-25 10:04:01 -05002119 struct cgroup_taskset tset = {
2120 .src_csets = LIST_HEAD_INIT(tset.src_csets),
2121 .dst_csets = LIST_HEAD_INIT(tset.dst_csets),
2122 .csets = &tset.src_csets,
2123 };
Tejun Heo1c6727a2013-12-06 15:11:56 -05002124 struct cgroup_subsys_state *css, *failed_css = NULL;
Tejun Heob3dc0942014-02-25 10:04:01 -05002125 struct css_set *cset, *tmp_cset;
2126 struct task_struct *task, *tmp_task;
2127 int i, ret;
Ben Blum74a11662011-05-26 16:25:20 -07002128
2129 /*
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002130 * Prevent freeing of tasks while we take a snapshot. Tasks that are
2131 * already PF_EXITING could be freed from underneath us unless we
2132 * take an rcu_read_lock.
2133 */
Tejun Heob3dc0942014-02-25 10:04:01 -05002134 down_write(&css_set_rwsem);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002135 rcu_read_lock();
Tejun Heo9db8de32014-02-13 06:58:43 -05002136 task = leader;
Ben Blum74a11662011-05-26 16:25:20 -07002137 do {
Tejun Heo9db8de32014-02-13 06:58:43 -05002138 /* @task either already exited or can't exit until the end */
2139 if (task->flags & PF_EXITING)
Anjana V Kumarea847532013-10-12 10:59:17 +08002140 goto next;
Tejun Heocd3d0952011-12-12 18:12:21 -08002141
Tejun Heoeaf797a2014-02-25 10:04:03 -05002142 /* leave @task alone if post_fork() hasn't linked it yet */
2143 if (list_empty(&task->cg_list))
Anjana V Kumarea847532013-10-12 10:59:17 +08002144 goto next;
Tejun Heoeaf797a2014-02-25 10:04:03 -05002145
Tejun Heob3dc0942014-02-25 10:04:01 -05002146 cset = task_css_set(task);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002147 if (!cset->mg_src_cgrp)
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08002148 goto next;
Tejun Heob3dc0942014-02-25 10:04:01 -05002149
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002150 /*
Tejun Heo1b9aba42014-03-19 17:43:21 -04002151 * cgroup_taskset_first() must always return the leader.
2152 * Take care to avoid disturbing the ordering.
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002153 */
Tejun Heo1b9aba42014-03-19 17:43:21 -04002154 list_move_tail(&task->cg_list, &cset->mg_tasks);
2155 if (list_empty(&cset->mg_node))
2156 list_add_tail(&cset->mg_node, &tset.src_csets);
2157 if (list_empty(&cset->mg_dst_cset->mg_node))
2158 list_move_tail(&cset->mg_dst_cset->mg_node,
2159 &tset.dst_csets);
Anjana V Kumarea847532013-10-12 10:59:17 +08002160 next:
Li Zefan081aa452013-03-13 09:17:09 +08002161 if (!threadgroup)
2162 break;
Tejun Heo9db8de32014-02-13 06:58:43 -05002163 } while_each_thread(leader, task);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002164 rcu_read_unlock();
Tejun Heob3dc0942014-02-25 10:04:01 -05002165 up_write(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07002166
Tejun Heo134d3372011-12-12 18:12:21 -08002167 /* methods shouldn't be called if no task is actually migrating */
Tejun Heob3dc0942014-02-25 10:04:01 -05002168 if (list_empty(&tset.src_csets))
2169 return 0;
Tejun Heo134d3372011-12-12 18:12:21 -08002170
Tejun Heo1958d2d2014-02-25 10:04:03 -05002171 /* check that we can legitimately attach to the cgroup */
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002172 for_each_e_css(css, i, cgrp) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05002173 if (css->ss->can_attach) {
Tejun Heo9db8de32014-02-13 06:58:43 -05002174 ret = css->ss->can_attach(css, &tset);
2175 if (ret) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05002176 failed_css = css;
Ben Blum74a11662011-05-26 16:25:20 -07002177 goto out_cancel_attach;
2178 }
2179 }
Ben Blum74a11662011-05-26 16:25:20 -07002180 }
2181
2182 /*
Tejun Heo1958d2d2014-02-25 10:04:03 -05002183 * Now that we're guaranteed success, proceed to move all tasks to
2184 * the new cgroup. There are no failure cases after here, so this
2185 * is the commit point.
Ben Blum74a11662011-05-26 16:25:20 -07002186 */
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002187 down_write(&css_set_rwsem);
Tejun Heob3dc0942014-02-25 10:04:01 -05002188 list_for_each_entry(cset, &tset.src_csets, mg_node) {
2189 list_for_each_entry_safe(task, tmp_task, &cset->mg_tasks, cg_list)
2190 cgroup_task_migrate(cset->mg_src_cgrp, task,
2191 cset->mg_dst_cset);
Ben Blum74a11662011-05-26 16:25:20 -07002192 }
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002193 up_write(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07002194
2195 /*
Tejun Heo1958d2d2014-02-25 10:04:03 -05002196 * Migration is committed, all target tasks are now on dst_csets.
2197 * Nothing is sensitive to fork() after this point. Notify
2198 * controllers that migration is complete.
Ben Blum74a11662011-05-26 16:25:20 -07002199 */
Tejun Heob3dc0942014-02-25 10:04:01 -05002200 tset.csets = &tset.dst_csets;
Ben Blum74a11662011-05-26 16:25:20 -07002201
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002202 for_each_e_css(css, i, cgrp)
Tejun Heo1c6727a2013-12-06 15:11:56 -05002203 if (css->ss->attach)
2204 css->ss->attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002205
Tejun Heo9db8de32014-02-13 06:58:43 -05002206 ret = 0;
Tejun Heob3dc0942014-02-25 10:04:01 -05002207 goto out_release_tset;
2208
Ben Blum74a11662011-05-26 16:25:20 -07002209out_cancel_attach:
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002210 for_each_e_css(css, i, cgrp) {
Tejun Heob3dc0942014-02-25 10:04:01 -05002211 if (css == failed_css)
2212 break;
2213 if (css->ss->cancel_attach)
2214 css->ss->cancel_attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002215 }
Tejun Heob3dc0942014-02-25 10:04:01 -05002216out_release_tset:
2217 down_write(&css_set_rwsem);
2218 list_splice_init(&tset.dst_csets, &tset.src_csets);
2219 list_for_each_entry_safe(cset, tmp_cset, &tset.src_csets, mg_node) {
Tejun Heo1b9aba42014-03-19 17:43:21 -04002220 list_splice_tail_init(&cset->mg_tasks, &cset->tasks);
Tejun Heob3dc0942014-02-25 10:04:01 -05002221 list_del_init(&cset->mg_node);
Tejun Heob3dc0942014-02-25 10:04:01 -05002222 }
2223 up_write(&css_set_rwsem);
Tejun Heo9db8de32014-02-13 06:58:43 -05002224 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07002225}
2226
Tejun Heo1958d2d2014-02-25 10:04:03 -05002227/**
2228 * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup
2229 * @dst_cgrp: the cgroup to attach to
2230 * @leader: the task or the leader of the threadgroup to be attached
2231 * @threadgroup: attach the whole threadgroup?
2232 *
Tejun Heo0e1d7682014-02-25 10:04:03 -05002233 * Call holding cgroup_mutex and threadgroup_lock of @leader.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002234 */
2235static int cgroup_attach_task(struct cgroup *dst_cgrp,
2236 struct task_struct *leader, bool threadgroup)
2237{
2238 LIST_HEAD(preloaded_csets);
2239 struct task_struct *task;
2240 int ret;
2241
2242 /* look up all src csets */
2243 down_read(&css_set_rwsem);
2244 rcu_read_lock();
2245 task = leader;
2246 do {
2247 cgroup_migrate_add_src(task_css_set(task), dst_cgrp,
2248 &preloaded_csets);
2249 if (!threadgroup)
2250 break;
2251 } while_each_thread(leader, task);
2252 rcu_read_unlock();
2253 up_read(&css_set_rwsem);
2254
2255 /* prepare dst csets and commit */
2256 ret = cgroup_migrate_prepare_dst(dst_cgrp, &preloaded_csets);
2257 if (!ret)
2258 ret = cgroup_migrate(dst_cgrp, leader, threadgroup);
2259
2260 cgroup_migrate_finish(&preloaded_csets);
2261 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07002262}
2263
2264/*
2265 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08002266 * function to attach either it or all tasks in its threadgroup. Will lock
Tejun Heo0e1d7682014-02-25 10:04:03 -05002267 * cgroup_mutex and threadgroup.
Ben Blum74a11662011-05-26 16:25:20 -07002268 */
Tejun Heoacbef752014-05-13 12:16:22 -04002269static ssize_t __cgroup_procs_write(struct kernfs_open_file *of, char *buf,
2270 size_t nbytes, loff_t off, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002271{
Paul Menagebbcb81d2007-10-18 23:39:32 -07002272 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11002273 const struct cred *cred = current_cred(), *tcred;
Tejun Heoe76ecae2014-05-13 12:19:23 -04002274 struct cgroup *cgrp;
Tejun Heoacbef752014-05-13 12:16:22 -04002275 pid_t pid;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002276 int ret;
2277
Tejun Heoacbef752014-05-13 12:16:22 -04002278 if (kstrtoint(strstrip(buf), 0, &pid) || pid < 0)
2279 return -EINVAL;
2280
Tejun Heoe76ecae2014-05-13 12:19:23 -04002281 cgrp = cgroup_kn_lock_live(of->kn);
2282 if (!cgrp)
Ben Blum74a11662011-05-26 16:25:20 -07002283 return -ENODEV;
2284
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002285retry_find_task:
2286 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002287 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002288 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07002289 if (!tsk) {
Paul Menagebbcb81d2007-10-18 23:39:32 -07002290 rcu_read_unlock();
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09002291 ret = -ESRCH;
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002292 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002293 }
Ben Blum74a11662011-05-26 16:25:20 -07002294 /*
2295 * even if we're attaching all tasks in the thread group, we
2296 * only need to check permissions on one of them.
2297 */
David Howellsc69e8d92008-11-14 10:39:19 +11002298 tcred = __task_cred(tsk);
Eric W. Biederman14a590c2012-03-12 15:44:39 -07002299 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
2300 !uid_eq(cred->euid, tcred->uid) &&
2301 !uid_eq(cred->euid, tcred->suid)) {
David Howellsc69e8d92008-11-14 10:39:19 +11002302 rcu_read_unlock();
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002303 ret = -EACCES;
2304 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002305 }
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002306 } else
2307 tsk = current;
Tejun Heocd3d0952011-12-12 18:12:21 -08002308
2309 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002310 tsk = tsk->group_leader;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002311
2312 /*
Tejun Heo14a40ff2013-03-19 13:45:20 -07002313 * Workqueue threads may acquire PF_NO_SETAFFINITY and become
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002314 * trapped in a cpuset, or RT worker may be born in a cgroup
2315 * with no rt_runtime allocated. Just say no.
2316 */
Tejun Heo14a40ff2013-03-19 13:45:20 -07002317 if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) {
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002318 ret = -EINVAL;
2319 rcu_read_unlock();
2320 goto out_unlock_cgroup;
2321 }
2322
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002323 get_task_struct(tsk);
2324 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08002325
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002326 threadgroup_lock(tsk);
2327 if (threadgroup) {
2328 if (!thread_group_leader(tsk)) {
2329 /*
2330 * a race with de_thread from another thread's exec()
2331 * may strip us of our leadership, if this happens,
2332 * there is no choice but to throw this task away and
2333 * try again; this is
2334 * "double-double-toil-and-trouble-check locking".
2335 */
2336 threadgroup_unlock(tsk);
2337 put_task_struct(tsk);
2338 goto retry_find_task;
2339 }
Li Zefan081aa452013-03-13 09:17:09 +08002340 }
2341
2342 ret = cgroup_attach_task(cgrp, tsk, threadgroup);
2343
Tejun Heocd3d0952011-12-12 18:12:21 -08002344 threadgroup_unlock(tsk);
2345
Paul Menagebbcb81d2007-10-18 23:39:32 -07002346 put_task_struct(tsk);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002347out_unlock_cgroup:
Tejun Heoe76ecae2014-05-13 12:19:23 -04002348 cgroup_kn_unlock(of->kn);
Tejun Heoacbef752014-05-13 12:16:22 -04002349 return ret ?: nbytes;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002350}
2351
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002352/**
2353 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
2354 * @from: attach to all cgroups of a given task
2355 * @tsk: the task to be attached
2356 */
2357int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
2358{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002359 struct cgroup_root *root;
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002360 int retval = 0;
2361
Tejun Heo47cfcd02013-04-07 09:29:51 -07002362 mutex_lock(&cgroup_mutex);
Tejun Heo985ed672014-03-19 10:23:53 -04002363 for_each_root(root) {
Tejun Heo96d365e2014-02-13 06:58:40 -05002364 struct cgroup *from_cgrp;
2365
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002366 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04002367 continue;
2368
Tejun Heo96d365e2014-02-13 06:58:40 -05002369 down_read(&css_set_rwsem);
2370 from_cgrp = task_cgroup_from_root(from, root);
2371 up_read(&css_set_rwsem);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002372
Li Zefan6f4b7e62013-07-31 16:18:36 +08002373 retval = cgroup_attach_task(from_cgrp, tsk, false);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002374 if (retval)
2375 break;
2376 }
Tejun Heo47cfcd02013-04-07 09:29:51 -07002377 mutex_unlock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002378
2379 return retval;
2380}
2381EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
2382
Tejun Heoacbef752014-05-13 12:16:22 -04002383static ssize_t cgroup_tasks_write(struct kernfs_open_file *of,
2384 char *buf, size_t nbytes, loff_t off)
Paul Menageaf351022008-07-25 01:47:01 -07002385{
Tejun Heoacbef752014-05-13 12:16:22 -04002386 return __cgroup_procs_write(of, buf, nbytes, off, false);
Ben Blum74a11662011-05-26 16:25:20 -07002387}
2388
Tejun Heoacbef752014-05-13 12:16:22 -04002389static ssize_t cgroup_procs_write(struct kernfs_open_file *of,
2390 char *buf, size_t nbytes, loff_t off)
Ben Blum74a11662011-05-26 16:25:20 -07002391{
Tejun Heoacbef752014-05-13 12:16:22 -04002392 return __cgroup_procs_write(of, buf, nbytes, off, true);
Paul Menageaf351022008-07-25 01:47:01 -07002393}
2394
Tejun Heo451af502014-05-13 12:16:21 -04002395static ssize_t cgroup_release_agent_write(struct kernfs_open_file *of,
2396 char *buf, size_t nbytes, loff_t off)
Paul Menagee788e062008-07-25 01:46:59 -07002397{
Tejun Heoe76ecae2014-05-13 12:19:23 -04002398 struct cgroup *cgrp;
Tejun Heo5f469902014-02-11 11:52:48 -05002399
Tejun Heoe76ecae2014-05-13 12:19:23 -04002400 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
2401
2402 cgrp = cgroup_kn_lock_live(of->kn);
2403 if (!cgrp)
Paul Menagee788e062008-07-25 01:46:59 -07002404 return -ENODEV;
Tejun Heo69e943b2014-02-08 10:36:58 -05002405 spin_lock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002406 strlcpy(cgrp->root->release_agent_path, strstrip(buf),
2407 sizeof(cgrp->root->release_agent_path));
Tejun Heo69e943b2014-02-08 10:36:58 -05002408 spin_unlock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002409 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04002410 return nbytes;
Paul Menagee788e062008-07-25 01:46:59 -07002411}
2412
Tejun Heo2da8ca82013-12-05 12:28:04 -05002413static int cgroup_release_agent_show(struct seq_file *seq, void *v)
Paul Menagee788e062008-07-25 01:46:59 -07002414{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002415 struct cgroup *cgrp = seq_css(seq)->cgroup;
Tejun Heo182446d2013-08-08 20:11:24 -04002416
Tejun Heo46cfeb02014-05-13 12:11:00 -04002417 spin_lock(&release_agent_path_lock);
Paul Menagee788e062008-07-25 01:46:59 -07002418 seq_puts(seq, cgrp->root->release_agent_path);
Tejun Heo46cfeb02014-05-13 12:11:00 -04002419 spin_unlock(&release_agent_path_lock);
Paul Menagee788e062008-07-25 01:46:59 -07002420 seq_putc(seq, '\n');
Paul Menagee788e062008-07-25 01:46:59 -07002421 return 0;
2422}
2423
Tejun Heo2da8ca82013-12-05 12:28:04 -05002424static int cgroup_sane_behavior_show(struct seq_file *seq, void *v)
Tejun Heo873fe092013-04-14 20:15:26 -07002425{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002426 struct cgroup *cgrp = seq_css(seq)->cgroup;
2427
2428 seq_printf(seq, "%d\n", cgroup_sane_behavior(cgrp));
Paul Menage81a6a5c2007-10-18 23:39:38 -07002429 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002430}
2431
Tejun Heof8f22e52014-04-23 11:13:16 -04002432static void cgroup_print_ss_mask(struct seq_file *seq, unsigned int ss_mask)
2433{
2434 struct cgroup_subsys *ss;
2435 bool printed = false;
2436 int ssid;
2437
2438 for_each_subsys(ss, ssid) {
2439 if (ss_mask & (1 << ssid)) {
2440 if (printed)
2441 seq_putc(seq, ' ');
2442 seq_printf(seq, "%s", ss->name);
2443 printed = true;
2444 }
2445 }
2446 if (printed)
2447 seq_putc(seq, '\n');
2448}
2449
2450/* show controllers which are currently attached to the default hierarchy */
2451static int cgroup_root_controllers_show(struct seq_file *seq, void *v)
2452{
2453 struct cgroup *cgrp = seq_css(seq)->cgroup;
2454
Tejun Heo5533e012014-05-14 19:33:07 -04002455 cgroup_print_ss_mask(seq, cgrp->root->subsys_mask &
2456 ~cgrp_dfl_root_inhibit_ss_mask);
Tejun Heof8f22e52014-04-23 11:13:16 -04002457 return 0;
2458}
2459
2460/* show controllers which are enabled from the parent */
2461static int cgroup_controllers_show(struct seq_file *seq, void *v)
2462{
2463 struct cgroup *cgrp = seq_css(seq)->cgroup;
2464
Tejun Heo667c2492014-07-08 18:02:56 -04002465 cgroup_print_ss_mask(seq, cgroup_parent(cgrp)->subtree_control);
Tejun Heof8f22e52014-04-23 11:13:16 -04002466 return 0;
2467}
2468
2469/* show controllers which are enabled for a given cgroup's children */
2470static int cgroup_subtree_control_show(struct seq_file *seq, void *v)
2471{
2472 struct cgroup *cgrp = seq_css(seq)->cgroup;
2473
Tejun Heo667c2492014-07-08 18:02:56 -04002474 cgroup_print_ss_mask(seq, cgrp->subtree_control);
Tejun Heof8f22e52014-04-23 11:13:16 -04002475 return 0;
2476}
2477
2478/**
2479 * cgroup_update_dfl_csses - update css assoc of a subtree in default hierarchy
2480 * @cgrp: root of the subtree to update csses for
2481 *
2482 * @cgrp's child_subsys_mask has changed and its subtree's (self excluded)
2483 * css associations need to be updated accordingly. This function looks up
2484 * all css_sets which are attached to the subtree, creates the matching
2485 * updated css_sets and migrates the tasks to the new ones.
2486 */
2487static int cgroup_update_dfl_csses(struct cgroup *cgrp)
2488{
2489 LIST_HEAD(preloaded_csets);
2490 struct cgroup_subsys_state *css;
2491 struct css_set *src_cset;
2492 int ret;
2493
Tejun Heof8f22e52014-04-23 11:13:16 -04002494 lockdep_assert_held(&cgroup_mutex);
2495
2496 /* look up all csses currently attached to @cgrp's subtree */
2497 down_read(&css_set_rwsem);
2498 css_for_each_descendant_pre(css, cgroup_css(cgrp, NULL)) {
2499 struct cgrp_cset_link *link;
2500
2501 /* self is not affected by child_subsys_mask change */
2502 if (css->cgroup == cgrp)
2503 continue;
2504
2505 list_for_each_entry(link, &css->cgroup->cset_links, cset_link)
2506 cgroup_migrate_add_src(link->cset, cgrp,
2507 &preloaded_csets);
2508 }
2509 up_read(&css_set_rwsem);
2510
2511 /* NULL dst indicates self on default hierarchy */
2512 ret = cgroup_migrate_prepare_dst(NULL, &preloaded_csets);
2513 if (ret)
2514 goto out_finish;
2515
2516 list_for_each_entry(src_cset, &preloaded_csets, mg_preload_node) {
2517 struct task_struct *last_task = NULL, *task;
2518
2519 /* src_csets precede dst_csets, break on the first dst_cset */
2520 if (!src_cset->mg_src_cgrp)
2521 break;
2522
2523 /*
2524 * All tasks in src_cset need to be migrated to the
2525 * matching dst_cset. Empty it process by process. We
2526 * walk tasks but migrate processes. The leader might even
2527 * belong to a different cset but such src_cset would also
2528 * be among the target src_csets because the default
2529 * hierarchy enforces per-process membership.
2530 */
2531 while (true) {
2532 down_read(&css_set_rwsem);
2533 task = list_first_entry_or_null(&src_cset->tasks,
2534 struct task_struct, cg_list);
2535 if (task) {
2536 task = task->group_leader;
2537 WARN_ON_ONCE(!task_css_set(task)->mg_src_cgrp);
2538 get_task_struct(task);
2539 }
2540 up_read(&css_set_rwsem);
2541
2542 if (!task)
2543 break;
2544
2545 /* guard against possible infinite loop */
2546 if (WARN(last_task == task,
2547 "cgroup: update_dfl_csses failed to make progress, aborting in inconsistent state\n"))
2548 goto out_finish;
2549 last_task = task;
2550
2551 threadgroup_lock(task);
2552 /* raced against de_thread() from another thread? */
2553 if (!thread_group_leader(task)) {
2554 threadgroup_unlock(task);
2555 put_task_struct(task);
2556 continue;
2557 }
2558
2559 ret = cgroup_migrate(src_cset->dfl_cgrp, task, true);
2560
2561 threadgroup_unlock(task);
2562 put_task_struct(task);
2563
2564 if (WARN(ret, "cgroup: failed to update controllers for the default hierarchy (%d), further operations may crash or hang\n", ret))
2565 goto out_finish;
2566 }
2567 }
2568
2569out_finish:
2570 cgroup_migrate_finish(&preloaded_csets);
2571 return ret;
2572}
2573
2574/* change the enabled child controllers for a cgroup in the default hierarchy */
Tejun Heo451af502014-05-13 12:16:21 -04002575static ssize_t cgroup_subtree_control_write(struct kernfs_open_file *of,
2576 char *buf, size_t nbytes,
2577 loff_t off)
Tejun Heof8f22e52014-04-23 11:13:16 -04002578{
Tejun Heo7d331fa2014-05-13 12:11:00 -04002579 unsigned int enable = 0, disable = 0;
Tejun Heoa9746d82014-05-13 12:19:22 -04002580 struct cgroup *cgrp, *child;
Tejun Heof8f22e52014-04-23 11:13:16 -04002581 struct cgroup_subsys *ss;
Tejun Heo451af502014-05-13 12:16:21 -04002582 char *tok;
Tejun Heof8f22e52014-04-23 11:13:16 -04002583 int ssid, ret;
2584
2585 /*
Tejun Heod37167a2014-05-13 12:10:59 -04002586 * Parse input - space separated list of subsystem names prefixed
2587 * with either + or -.
Tejun Heof8f22e52014-04-23 11:13:16 -04002588 */
Tejun Heo451af502014-05-13 12:16:21 -04002589 buf = strstrip(buf);
2590 while ((tok = strsep(&buf, " "))) {
Tejun Heod37167a2014-05-13 12:10:59 -04002591 if (tok[0] == '\0')
2592 continue;
Tejun Heof8f22e52014-04-23 11:13:16 -04002593 for_each_subsys(ss, ssid) {
Tejun Heo5533e012014-05-14 19:33:07 -04002594 if (ss->disabled || strcmp(tok + 1, ss->name) ||
2595 ((1 << ss->id) & cgrp_dfl_root_inhibit_ss_mask))
Tejun Heof8f22e52014-04-23 11:13:16 -04002596 continue;
2597
2598 if (*tok == '+') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04002599 enable |= 1 << ssid;
2600 disable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002601 } else if (*tok == '-') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04002602 disable |= 1 << ssid;
2603 enable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002604 } else {
2605 return -EINVAL;
2606 }
2607 break;
2608 }
2609 if (ssid == CGROUP_SUBSYS_COUNT)
2610 return -EINVAL;
2611 }
2612
Tejun Heoa9746d82014-05-13 12:19:22 -04002613 cgrp = cgroup_kn_lock_live(of->kn);
2614 if (!cgrp)
2615 return -ENODEV;
Tejun Heof8f22e52014-04-23 11:13:16 -04002616
2617 for_each_subsys(ss, ssid) {
2618 if (enable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04002619 if (cgrp->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002620 enable &= ~(1 << ssid);
2621 continue;
2622 }
2623
Tejun Heoc29adf22014-07-08 18:02:56 -04002624 /* unavailable or not enabled on the parent? */
2625 if (!(cgrp_dfl_root.subsys_mask & (1 << ssid)) ||
2626 (cgroup_parent(cgrp) &&
Tejun Heo667c2492014-07-08 18:02:56 -04002627 !(cgroup_parent(cgrp)->subtree_control & (1 << ssid)))) {
Tejun Heoc29adf22014-07-08 18:02:56 -04002628 ret = -ENOENT;
2629 goto out_unlock;
2630 }
2631
Tejun Heof8f22e52014-04-23 11:13:16 -04002632 /*
2633 * Because css offlining is asynchronous, userland
2634 * might try to re-enable the same controller while
2635 * the previous instance is still around. In such
2636 * cases, wait till it's gone using offline_waitq.
2637 */
2638 cgroup_for_each_live_child(child, cgrp) {
Tejun Heo0cee8b72014-05-13 12:10:59 -04002639 DEFINE_WAIT(wait);
Tejun Heof8f22e52014-04-23 11:13:16 -04002640
2641 if (!cgroup_css(child, ss))
2642 continue;
2643
Tejun Heo0cee8b72014-05-13 12:10:59 -04002644 cgroup_get(child);
Tejun Heof8f22e52014-04-23 11:13:16 -04002645 prepare_to_wait(&child->offline_waitq, &wait,
2646 TASK_UNINTERRUPTIBLE);
Tejun Heoa9746d82014-05-13 12:19:22 -04002647 cgroup_kn_unlock(of->kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04002648 schedule();
2649 finish_wait(&child->offline_waitq, &wait);
Tejun Heo0cee8b72014-05-13 12:10:59 -04002650 cgroup_put(child);
Tejun Heo7d331fa2014-05-13 12:11:00 -04002651
Tejun Heoa9746d82014-05-13 12:19:22 -04002652 return restart_syscall();
Tejun Heof8f22e52014-04-23 11:13:16 -04002653 }
Tejun Heof8f22e52014-04-23 11:13:16 -04002654 } else if (disable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04002655 if (!(cgrp->subtree_control & (1 << ssid))) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002656 disable &= ~(1 << ssid);
2657 continue;
2658 }
2659
2660 /* a child has it enabled? */
2661 cgroup_for_each_live_child(child, cgrp) {
Tejun Heo667c2492014-07-08 18:02:56 -04002662 if (child->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002663 ret = -EBUSY;
Tejun Heoddab2b62014-05-13 12:19:22 -04002664 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04002665 }
2666 }
2667 }
2668 }
2669
2670 if (!enable && !disable) {
2671 ret = 0;
Tejun Heoddab2b62014-05-13 12:19:22 -04002672 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04002673 }
2674
2675 /*
Tejun Heo667c2492014-07-08 18:02:56 -04002676 * Except for the root, subtree_control must be zero for a cgroup
Tejun Heof8f22e52014-04-23 11:13:16 -04002677 * with tasks so that child cgroups don't compete against tasks.
2678 */
Tejun Heod51f39b2014-05-16 13:22:48 -04002679 if (enable && cgroup_parent(cgrp) && !list_empty(&cgrp->cset_links)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002680 ret = -EBUSY;
2681 goto out_unlock;
2682 }
2683
Tejun Heo667c2492014-07-08 18:02:56 -04002684 cgrp->subtree_control |= enable;
2685 cgrp->subtree_control &= ~disable;
2686 cgroup_refresh_child_subsys_mask(cgrp);
Tejun Heoc29adf22014-07-08 18:02:56 -04002687
2688 /* create new csses */
Tejun Heof8f22e52014-04-23 11:13:16 -04002689 for_each_subsys(ss, ssid) {
2690 if (!(enable & (1 << ssid)))
2691 continue;
2692
2693 cgroup_for_each_live_child(child, cgrp) {
2694 ret = create_css(child, ss);
2695 if (ret)
2696 goto err_undo_css;
2697 }
2698 }
2699
Tejun Heoc29adf22014-07-08 18:02:56 -04002700 /*
2701 * At this point, cgroup_e_css() results reflect the new csses
2702 * making the following cgroup_update_dfl_csses() properly update
2703 * css associations of all tasks in the subtree.
2704 */
Tejun Heof8f22e52014-04-23 11:13:16 -04002705 ret = cgroup_update_dfl_csses(cgrp);
2706 if (ret)
2707 goto err_undo_css;
2708
2709 /* all tasks are now migrated away from the old csses, kill them */
2710 for_each_subsys(ss, ssid) {
2711 if (!(disable & (1 << ssid)))
2712 continue;
2713
2714 cgroup_for_each_live_child(child, cgrp)
2715 kill_css(cgroup_css(child, ss));
2716 }
2717
2718 kernfs_activate(cgrp->kn);
2719 ret = 0;
2720out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04002721 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04002722 return ret ?: nbytes;
Tejun Heof8f22e52014-04-23 11:13:16 -04002723
2724err_undo_css:
Tejun Heo667c2492014-07-08 18:02:56 -04002725 cgrp->subtree_control &= ~enable;
2726 cgrp->subtree_control |= disable;
2727 cgroup_refresh_child_subsys_mask(cgrp);
Tejun Heof8f22e52014-04-23 11:13:16 -04002728
2729 for_each_subsys(ss, ssid) {
2730 if (!(enable & (1 << ssid)))
2731 continue;
2732
2733 cgroup_for_each_live_child(child, cgrp) {
2734 struct cgroup_subsys_state *css = cgroup_css(child, ss);
2735 if (css)
2736 kill_css(css);
2737 }
2738 }
2739 goto out_unlock;
2740}
2741
Tejun Heo842b5972014-04-25 18:28:02 -04002742static int cgroup_populated_show(struct seq_file *seq, void *v)
2743{
2744 seq_printf(seq, "%d\n", (bool)seq_css(seq)->cgroup->populated_cnt);
2745 return 0;
2746}
2747
Tejun Heo2bd59d42014-02-11 11:52:49 -05002748static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf,
2749 size_t nbytes, loff_t off)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002750{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002751 struct cgroup *cgrp = of->kn->parent->priv;
2752 struct cftype *cft = of->kn->priv;
2753 struct cgroup_subsys_state *css;
Tejun Heoa742c592013-12-05 12:28:03 -05002754 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002755
Tejun Heob4168642014-05-13 12:16:21 -04002756 if (cft->write)
2757 return cft->write(of, buf, nbytes, off);
2758
Tejun Heo2bd59d42014-02-11 11:52:49 -05002759 /*
2760 * kernfs guarantees that a file isn't deleted with operations in
2761 * flight, which means that the matching css is and stays alive and
2762 * doesn't need to be pinned. The RCU locking is not necessary
2763 * either. It's just for the convenience of using cgroup_css().
2764 */
2765 rcu_read_lock();
2766 css = cgroup_css(cgrp, cft->ss);
2767 rcu_read_unlock();
Paul Menageddbcc7e2007-10-18 23:39:30 -07002768
Tejun Heo451af502014-05-13 12:16:21 -04002769 if (cft->write_u64) {
Tejun Heoa742c592013-12-05 12:28:03 -05002770 unsigned long long v;
2771 ret = kstrtoull(buf, 0, &v);
2772 if (!ret)
2773 ret = cft->write_u64(css, cft, v);
2774 } else if (cft->write_s64) {
2775 long long v;
2776 ret = kstrtoll(buf, 0, &v);
2777 if (!ret)
2778 ret = cft->write_s64(css, cft, v);
Tejun Heoa742c592013-12-05 12:28:03 -05002779 } else {
2780 ret = -EINVAL;
2781 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05002782
Tejun Heoa742c592013-12-05 12:28:03 -05002783 return ret ?: nbytes;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002784}
2785
Tejun Heo6612f052013-12-05 12:28:04 -05002786static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos)
Paul Menage91796562008-04-29 01:00:01 -07002787{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002788 return seq_cft(seq)->seq_start(seq, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002789}
2790
2791static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos)
2792{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002793 return seq_cft(seq)->seq_next(seq, v, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002794}
2795
2796static void cgroup_seqfile_stop(struct seq_file *seq, void *v)
2797{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002798 seq_cft(seq)->seq_stop(seq, v);
Paul Menage91796562008-04-29 01:00:01 -07002799}
2800
2801static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2802{
Tejun Heo7da11272013-12-05 12:28:04 -05002803 struct cftype *cft = seq_cft(m);
2804 struct cgroup_subsys_state *css = seq_css(m);
Li Zefane0798ce2013-07-31 17:36:25 +08002805
Tejun Heo2da8ca82013-12-05 12:28:04 -05002806 if (cft->seq_show)
2807 return cft->seq_show(m, arg);
Paul Menage91796562008-04-29 01:00:01 -07002808
Tejun Heo896f5192013-12-05 12:28:04 -05002809 if (cft->read_u64)
2810 seq_printf(m, "%llu\n", cft->read_u64(css, cft));
2811 else if (cft->read_s64)
2812 seq_printf(m, "%lld\n", cft->read_s64(css, cft));
2813 else
2814 return -EINVAL;
2815 return 0;
Paul Menage91796562008-04-29 01:00:01 -07002816}
2817
Tejun Heo2bd59d42014-02-11 11:52:49 -05002818static struct kernfs_ops cgroup_kf_single_ops = {
2819 .atomic_write_len = PAGE_SIZE,
2820 .write = cgroup_file_write,
2821 .seq_show = cgroup_seqfile_show,
Paul Menage91796562008-04-29 01:00:01 -07002822};
2823
Tejun Heo2bd59d42014-02-11 11:52:49 -05002824static struct kernfs_ops cgroup_kf_ops = {
2825 .atomic_write_len = PAGE_SIZE,
2826 .write = cgroup_file_write,
2827 .seq_start = cgroup_seqfile_start,
2828 .seq_next = cgroup_seqfile_next,
2829 .seq_stop = cgroup_seqfile_stop,
2830 .seq_show = cgroup_seqfile_show,
2831};
Paul Menageddbcc7e2007-10-18 23:39:30 -07002832
2833/*
2834 * cgroup_rename - Only allow simple rename of directories in place.
2835 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05002836static int cgroup_rename(struct kernfs_node *kn, struct kernfs_node *new_parent,
2837 const char *new_name_str)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002838{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002839 struct cgroup *cgrp = kn->priv;
Li Zefan65dff752013-03-01 15:01:56 +08002840 int ret;
Li Zefan65dff752013-03-01 15:01:56 +08002841
Tejun Heo2bd59d42014-02-11 11:52:49 -05002842 if (kernfs_type(kn) != KERNFS_DIR)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002843 return -ENOTDIR;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002844 if (kn->parent != new_parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002845 return -EIO;
Li Zefan65dff752013-03-01 15:01:56 +08002846
Tejun Heo6db8e852013-06-14 11:18:22 -07002847 /*
2848 * This isn't a proper migration and its usefulness is very
2849 * limited. Disallow if sane_behavior.
2850 */
2851 if (cgroup_sane_behavior(cgrp))
2852 return -EPERM;
2853
Tejun Heoe1b2dc12014-03-20 11:10:15 -04002854 /*
Tejun Heo8353da12014-05-13 12:19:23 -04002855 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoe1b2dc12014-03-20 11:10:15 -04002856 * active_ref. kernfs_rename() doesn't require active_ref
Tejun Heo8353da12014-05-13 12:19:23 -04002857 * protection. Break them before grabbing cgroup_mutex.
Tejun Heoe1b2dc12014-03-20 11:10:15 -04002858 */
2859 kernfs_break_active_protection(new_parent);
2860 kernfs_break_active_protection(kn);
Li Zefan65dff752013-03-01 15:01:56 +08002861
Tejun Heo2bd59d42014-02-11 11:52:49 -05002862 mutex_lock(&cgroup_mutex);
Li Zefan65dff752013-03-01 15:01:56 +08002863
Tejun Heo2bd59d42014-02-11 11:52:49 -05002864 ret = kernfs_rename(kn, new_parent, new_name_str);
Li Zefan65dff752013-03-01 15:01:56 +08002865
Tejun Heo2bd59d42014-02-11 11:52:49 -05002866 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002867
Tejun Heoe1b2dc12014-03-20 11:10:15 -04002868 kernfs_unbreak_active_protection(kn);
2869 kernfs_unbreak_active_protection(new_parent);
Tejun Heo2bd59d42014-02-11 11:52:49 -05002870 return ret;
Li Zefan099fca32009-04-02 16:57:29 -07002871}
2872
Tejun Heo49957f82014-04-07 16:44:47 -04002873/* set uid and gid of cgroup dirs and files to that of the creator */
2874static int cgroup_kn_set_ugid(struct kernfs_node *kn)
2875{
2876 struct iattr iattr = { .ia_valid = ATTR_UID | ATTR_GID,
2877 .ia_uid = current_fsuid(),
2878 .ia_gid = current_fsgid(), };
2879
2880 if (uid_eq(iattr.ia_uid, GLOBAL_ROOT_UID) &&
2881 gid_eq(iattr.ia_gid, GLOBAL_ROOT_GID))
2882 return 0;
2883
2884 return kernfs_setattr(kn, &iattr);
2885}
2886
Tejun Heo2bb566c2013-08-08 20:11:23 -04002887static int cgroup_add_file(struct cgroup *cgrp, struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002888{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05002889 char name[CGROUP_FILE_NAME_MAX];
Tejun Heo2bd59d42014-02-11 11:52:49 -05002890 struct kernfs_node *kn;
2891 struct lock_class_key *key = NULL;
Tejun Heo49957f82014-04-07 16:44:47 -04002892 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002893
Tejun Heo2bd59d42014-02-11 11:52:49 -05002894#ifdef CONFIG_DEBUG_LOCK_ALLOC
2895 key = &cft->lockdep_key;
2896#endif
2897 kn = __kernfs_create_file(cgrp->kn, cgroup_file_name(cgrp, cft, name),
2898 cgroup_file_mode(cft), 0, cft->kf_ops, cft,
2899 NULL, false, key);
Tejun Heo49957f82014-04-07 16:44:47 -04002900 if (IS_ERR(kn))
2901 return PTR_ERR(kn);
2902
2903 ret = cgroup_kn_set_ugid(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04002904 if (ret) {
Tejun Heo49957f82014-04-07 16:44:47 -04002905 kernfs_remove(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04002906 return ret;
2907 }
2908
Tejun Heob7fc5ad2014-05-13 12:16:22 -04002909 if (cft->seq_show == cgroup_populated_show)
Tejun Heo842b5972014-04-25 18:28:02 -04002910 cgrp->populated_kn = kn;
Tejun Heof8f22e52014-04-23 11:13:16 -04002911 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002912}
2913
Tejun Heob1f28d32013-06-28 16:24:10 -07002914/**
2915 * cgroup_addrm_files - add or remove files to a cgroup directory
2916 * @cgrp: the target cgroup
Tejun Heob1f28d32013-06-28 16:24:10 -07002917 * @cfts: array of cftypes to be added
2918 * @is_add: whether to add or remove
2919 *
2920 * Depending on @is_add, add or remove files defined by @cfts on @cgrp.
Tejun Heo2bb566c2013-08-08 20:11:23 -04002921 * For removals, this function never fails. If addition fails, this
2922 * function doesn't remove files already added. The caller is responsible
2923 * for cleaning up.
Tejun Heob1f28d32013-06-28 16:24:10 -07002924 */
Tejun Heo2bb566c2013-08-08 20:11:23 -04002925static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
2926 bool is_add)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002927{
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002928 struct cftype *cft;
Tejun Heob1f28d32013-06-28 16:24:10 -07002929 int ret;
2930
Tejun Heo01f64742014-05-13 12:19:23 -04002931 lockdep_assert_held(&cgroup_mutex);
Tejun Heodb0416b2012-04-01 12:09:55 -07002932
2933 for (cft = cfts; cft->name[0] != '\0'; cft++) {
Gao fengf33fddc2012-12-06 14:38:57 +08002934 /* does cft->flags tell us to skip this file on @cgrp? */
Tejun Heo8cbbf2c2014-03-19 10:23:55 -04002935 if ((cft->flags & CFTYPE_ONLY_ON_DFL) && !cgroup_on_dfl(cgrp))
2936 continue;
Tejun Heo873fe092013-04-14 20:15:26 -07002937 if ((cft->flags & CFTYPE_INSANE) && cgroup_sane_behavior(cgrp))
2938 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04002939 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08002940 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04002941 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08002942 continue;
2943
Li Zefan2739d3c2013-01-21 18:18:33 +08002944 if (is_add) {
Tejun Heo2bb566c2013-08-08 20:11:23 -04002945 ret = cgroup_add_file(cgrp, cft);
Tejun Heob1f28d32013-06-28 16:24:10 -07002946 if (ret) {
Joe Perchesed3d2612014-04-25 18:28:03 -04002947 pr_warn("%s: failed to add %s, err=%d\n",
2948 __func__, cft->name, ret);
Tejun Heob1f28d32013-06-28 16:24:10 -07002949 return ret;
2950 }
Li Zefan2739d3c2013-01-21 18:18:33 +08002951 } else {
2952 cgroup_rm_file(cgrp, cft);
Tejun Heodb0416b2012-04-01 12:09:55 -07002953 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002954 }
Tejun Heob1f28d32013-06-28 16:24:10 -07002955 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002956}
2957
Tejun Heo21a2d3432014-02-12 09:29:49 -05002958static int cgroup_apply_cftypes(struct cftype *cfts, bool is_add)
Tejun Heo8e3f6542012-04-01 12:09:55 -07002959{
2960 LIST_HEAD(pending);
Tejun Heo2bb566c2013-08-08 20:11:23 -04002961 struct cgroup_subsys *ss = cfts[0].ss;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002962 struct cgroup *root = &ss->root->cgrp;
Tejun Heo492eb212013-08-08 20:11:25 -04002963 struct cgroup_subsys_state *css;
Tejun Heo9ccece82013-06-28 16:24:11 -07002964 int ret = 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002965
Tejun Heo01f64742014-05-13 12:19:23 -04002966 lockdep_assert_held(&cgroup_mutex);
Li Zefane8c82d22013-06-18 18:48:37 +08002967
Li Zefane8c82d22013-06-18 18:48:37 +08002968 /* add/rm files for all cgroups created before */
Tejun Heoca8bdca2013-08-26 18:40:56 -04002969 css_for_each_descendant_pre(css, cgroup_css(root, ss)) {
Tejun Heo492eb212013-08-08 20:11:25 -04002970 struct cgroup *cgrp = css->cgroup;
2971
Li Zefane8c82d22013-06-18 18:48:37 +08002972 if (cgroup_is_dead(cgrp))
2973 continue;
2974
Tejun Heo21a2d3432014-02-12 09:29:49 -05002975 ret = cgroup_addrm_files(cgrp, cfts, is_add);
Tejun Heo9ccece82013-06-28 16:24:11 -07002976 if (ret)
2977 break;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002978 }
Tejun Heo21a2d3432014-02-12 09:29:49 -05002979
2980 if (is_add && !ret)
2981 kernfs_activate(root->kn);
Tejun Heo9ccece82013-06-28 16:24:11 -07002982 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002983}
2984
Tejun Heo2da440a2014-02-11 11:52:48 -05002985static void cgroup_exit_cftypes(struct cftype *cfts)
2986{
2987 struct cftype *cft;
2988
Tejun Heo2bd59d42014-02-11 11:52:49 -05002989 for (cft = cfts; cft->name[0] != '\0'; cft++) {
2990 /* free copy for custom atomic_write_len, see init_cftypes() */
2991 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE)
2992 kfree(cft->kf_ops);
2993 cft->kf_ops = NULL;
Tejun Heo2da440a2014-02-11 11:52:48 -05002994 cft->ss = NULL;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002995 }
Tejun Heo2da440a2014-02-11 11:52:48 -05002996}
2997
Tejun Heo2bd59d42014-02-11 11:52:49 -05002998static int cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo2da440a2014-02-11 11:52:48 -05002999{
3000 struct cftype *cft;
3001
Tejun Heo2bd59d42014-02-11 11:52:49 -05003002 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3003 struct kernfs_ops *kf_ops;
3004
Tejun Heo0adb0702014-02-12 09:29:48 -05003005 WARN_ON(cft->ss || cft->kf_ops);
3006
Tejun Heo2bd59d42014-02-11 11:52:49 -05003007 if (cft->seq_start)
3008 kf_ops = &cgroup_kf_ops;
3009 else
3010 kf_ops = &cgroup_kf_single_ops;
3011
3012 /*
3013 * Ugh... if @cft wants a custom max_write_len, we need to
3014 * make a copy of kf_ops to set its atomic_write_len.
3015 */
3016 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) {
3017 kf_ops = kmemdup(kf_ops, sizeof(*kf_ops), GFP_KERNEL);
3018 if (!kf_ops) {
3019 cgroup_exit_cftypes(cfts);
3020 return -ENOMEM;
3021 }
3022 kf_ops->atomic_write_len = cft->max_write_len;
3023 }
3024
3025 cft->kf_ops = kf_ops;
Tejun Heo2da440a2014-02-11 11:52:48 -05003026 cft->ss = ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003027 }
3028
3029 return 0;
Tejun Heo2da440a2014-02-11 11:52:48 -05003030}
3031
Tejun Heo21a2d3432014-02-12 09:29:49 -05003032static int cgroup_rm_cftypes_locked(struct cftype *cfts)
3033{
Tejun Heo01f64742014-05-13 12:19:23 -04003034 lockdep_assert_held(&cgroup_mutex);
Tejun Heo21a2d3432014-02-12 09:29:49 -05003035
3036 if (!cfts || !cfts[0].ss)
3037 return -ENOENT;
3038
3039 list_del(&cfts->node);
3040 cgroup_apply_cftypes(cfts, false);
3041 cgroup_exit_cftypes(cfts);
3042 return 0;
3043}
3044
Tejun Heo8e3f6542012-04-01 12:09:55 -07003045/**
Tejun Heo80b13582014-02-12 09:29:48 -05003046 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
3047 * @cfts: zero-length name terminated array of cftypes
3048 *
3049 * Unregister @cfts. Files described by @cfts are removed from all
3050 * existing cgroups and all future cgroups won't have them either. This
3051 * function can be called anytime whether @cfts' subsys is attached or not.
3052 *
3053 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
3054 * registered.
3055 */
3056int cgroup_rm_cftypes(struct cftype *cfts)
3057{
Tejun Heo21a2d3432014-02-12 09:29:49 -05003058 int ret;
Tejun Heo80b13582014-02-12 09:29:48 -05003059
Tejun Heo01f64742014-05-13 12:19:23 -04003060 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d3432014-02-12 09:29:49 -05003061 ret = cgroup_rm_cftypes_locked(cfts);
Tejun Heo01f64742014-05-13 12:19:23 -04003062 mutex_unlock(&cgroup_mutex);
Tejun Heo8e3f6542012-04-01 12:09:55 -07003063 return ret;
3064}
3065
3066/**
3067 * cgroup_add_cftypes - add an array of cftypes to a subsystem
3068 * @ss: target cgroup subsystem
3069 * @cfts: zero-length name terminated array of cftypes
3070 *
3071 * Register @cfts to @ss. Files described by @cfts are created for all
3072 * existing cgroups to which @ss is attached and all future cgroups will
3073 * have them too. This function can be called anytime whether @ss is
3074 * attached or not.
3075 *
3076 * Returns 0 on successful registration, -errno on failure. Note that this
3077 * function currently returns 0 as long as @cfts registration is successful
3078 * even if some file creation attempts on existing cgroups fail.
3079 */
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04003080int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003081{
Tejun Heo9ccece82013-06-28 16:24:11 -07003082 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003083
Li Zefanc731ae12014-06-05 17:16:30 +08003084 if (ss->disabled)
3085 return 0;
3086
Li Zefandc5736e2014-02-17 10:41:50 +08003087 if (!cfts || cfts[0].name[0] == '\0')
3088 return 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003089
Tejun Heo2bd59d42014-02-11 11:52:49 -05003090 ret = cgroup_init_cftypes(ss, cfts);
Tejun Heo9ccece82013-06-28 16:24:11 -07003091 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05003092 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003093
Tejun Heo01f64742014-05-13 12:19:23 -04003094 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d3432014-02-12 09:29:49 -05003095
Tejun Heo0adb0702014-02-12 09:29:48 -05003096 list_add_tail(&cfts->node, &ss->cfts);
Tejun Heo21a2d3432014-02-12 09:29:49 -05003097 ret = cgroup_apply_cftypes(cfts, true);
Tejun Heo9ccece82013-06-28 16:24:11 -07003098 if (ret)
Tejun Heo21a2d3432014-02-12 09:29:49 -05003099 cgroup_rm_cftypes_locked(cfts);
3100
Tejun Heo01f64742014-05-13 12:19:23 -04003101 mutex_unlock(&cgroup_mutex);
Tejun Heo9ccece82013-06-28 16:24:11 -07003102 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003103}
Tejun Heo79578622012-04-01 12:09:56 -07003104
3105/**
Li Zefana043e3b2008-02-23 15:24:09 -08003106 * cgroup_task_count - count the number of tasks in a cgroup.
3107 * @cgrp: the cgroup in question
3108 *
3109 * Return the number of tasks in the cgroup.
3110 */
Tejun Heo07bc3562014-02-13 06:58:39 -05003111static int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003112{
3113 int count = 0;
Tejun Heo69d02062013-06-12 21:04:50 -07003114 struct cgrp_cset_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003115
Tejun Heo96d365e2014-02-13 06:58:40 -05003116 down_read(&css_set_rwsem);
Tejun Heo69d02062013-06-12 21:04:50 -07003117 list_for_each_entry(link, &cgrp->cset_links, cset_link)
3118 count += atomic_read(&link->cset->refcount);
Tejun Heo96d365e2014-02-13 06:58:40 -05003119 up_read(&css_set_rwsem);
Paul Menagebbcb81d2007-10-18 23:39:32 -07003120 return count;
3121}
3122
Tejun Heo574bd9f2012-11-09 09:12:29 -08003123/**
Tejun Heo492eb212013-08-08 20:11:25 -04003124 * css_next_child - find the next child of a given css
Tejun Heoc2931b72014-05-16 13:22:51 -04003125 * @pos: the current position (%NULL to initiate traversal)
3126 * @parent: css whose children to walk
Tejun Heo53fa5262013-05-24 10:55:38 +09003127 *
Tejun Heoc2931b72014-05-16 13:22:51 -04003128 * This function returns the next child of @parent and should be called
Tejun Heo87fb54f2013-12-06 15:11:55 -05003129 * under either cgroup_mutex or RCU read lock. The only requirement is
Tejun Heoc2931b72014-05-16 13:22:51 -04003130 * that @parent and @pos are accessible. The next sibling is guaranteed to
3131 * be returned regardless of their states.
3132 *
3133 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3134 * css which finished ->css_online() is guaranteed to be visible in the
3135 * future iterations and will stay visible until the last reference is put.
3136 * A css which hasn't finished ->css_online() or already finished
3137 * ->css_offline() may show up during traversal. It's each subsystem's
3138 * responsibility to synchronize against on/offlining.
Tejun Heo53fa5262013-05-24 10:55:38 +09003139 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003140struct cgroup_subsys_state *css_next_child(struct cgroup_subsys_state *pos,
3141 struct cgroup_subsys_state *parent)
Tejun Heo53fa5262013-05-24 10:55:38 +09003142{
Tejun Heoc2931b72014-05-16 13:22:51 -04003143 struct cgroup_subsys_state *next;
Tejun Heo53fa5262013-05-24 10:55:38 +09003144
Tejun Heo8353da12014-05-13 12:19:23 -04003145 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo53fa5262013-05-24 10:55:38 +09003146
3147 /*
Tejun Heode3f0342014-05-16 13:22:49 -04003148 * @pos could already have been unlinked from the sibling list.
3149 * Once a cgroup is removed, its ->sibling.next is no longer
3150 * updated when its next sibling changes. CSS_RELEASED is set when
3151 * @pos is taken off list, at which time its next pointer is valid,
3152 * and, as releases are serialized, the one pointed to by the next
3153 * pointer is guaranteed to not have started release yet. This
3154 * implies that if we observe !CSS_RELEASED on @pos in this RCU
3155 * critical section, the one pointed to by its next pointer is
3156 * guaranteed to not have finished its RCU grace period even if we
3157 * have dropped rcu_read_lock() inbetween iterations.
Tejun Heo3b287a52013-08-08 20:11:24 -04003158 *
Tejun Heode3f0342014-05-16 13:22:49 -04003159 * If @pos has CSS_RELEASED set, its next pointer can't be
3160 * dereferenced; however, as each css is given a monotonically
3161 * increasing unique serial number and always appended to the
3162 * sibling list, the next one can be found by walking the parent's
3163 * children until the first css with higher serial number than
3164 * @pos's. While this path can be slower, it happens iff iteration
3165 * races against release and the race window is very small.
Tejun Heo53fa5262013-05-24 10:55:38 +09003166 */
Tejun Heo3b287a52013-08-08 20:11:24 -04003167 if (!pos) {
Tejun Heoc2931b72014-05-16 13:22:51 -04003168 next = list_entry_rcu(parent->children.next, struct cgroup_subsys_state, sibling);
3169 } else if (likely(!(pos->flags & CSS_RELEASED))) {
3170 next = list_entry_rcu(pos->sibling.next, struct cgroup_subsys_state, sibling);
Tejun Heo3b287a52013-08-08 20:11:24 -04003171 } else {
Tejun Heoc2931b72014-05-16 13:22:51 -04003172 list_for_each_entry_rcu(next, &parent->children, sibling)
Tejun Heo3b287a52013-08-08 20:11:24 -04003173 if (next->serial_nr > pos->serial_nr)
3174 break;
Tejun Heo53fa5262013-05-24 10:55:38 +09003175 }
3176
Tejun Heo3b281af2014-04-23 11:13:15 -04003177 /*
3178 * @next, if not pointing to the head, can be dereferenced and is
Tejun Heoc2931b72014-05-16 13:22:51 -04003179 * the next sibling.
Tejun Heo3b281af2014-04-23 11:13:15 -04003180 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003181 if (&next->sibling != &parent->children)
3182 return next;
Tejun Heo3b281af2014-04-23 11:13:15 -04003183 return NULL;
Tejun Heo53fa5262013-05-24 10:55:38 +09003184}
Tejun Heo53fa5262013-05-24 10:55:38 +09003185
3186/**
Tejun Heo492eb212013-08-08 20:11:25 -04003187 * css_next_descendant_pre - find the next descendant for pre-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003188 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003189 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003190 *
Tejun Heo492eb212013-08-08 20:11:25 -04003191 * To be used by css_for_each_descendant_pre(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003192 * to visit for pre-order traversal of @root's descendants. @root is
3193 * included in the iteration and the first node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003194 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003195 * While this function requires cgroup_mutex or RCU read locking, it
3196 * doesn't require the whole traversal to be contained in a single critical
3197 * section. This function will return the correct next descendant as long
3198 * as both @pos and @root are accessible and @pos is a descendant of @root.
Tejun Heoc2931b72014-05-16 13:22:51 -04003199 *
3200 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3201 * css which finished ->css_online() is guaranteed to be visible in the
3202 * future iterations and will stay visible until the last reference is put.
3203 * A css which hasn't finished ->css_online() or already finished
3204 * ->css_offline() may show up during traversal. It's each subsystem's
3205 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003206 */
Tejun Heo492eb212013-08-08 20:11:25 -04003207struct cgroup_subsys_state *
3208css_next_descendant_pre(struct cgroup_subsys_state *pos,
3209 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003210{
Tejun Heo492eb212013-08-08 20:11:25 -04003211 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003212
Tejun Heo8353da12014-05-13 12:19:23 -04003213 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003214
Tejun Heobd8815a2013-08-08 20:11:27 -04003215 /* if first iteration, visit @root */
Tejun Heo7805d002013-05-24 10:50:24 +09003216 if (!pos)
Tejun Heobd8815a2013-08-08 20:11:27 -04003217 return root;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003218
3219 /* visit the first child if exists */
Tejun Heo492eb212013-08-08 20:11:25 -04003220 next = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003221 if (next)
3222 return next;
3223
3224 /* no child, visit my or the closest ancestor's next sibling */
Tejun Heo492eb212013-08-08 20:11:25 -04003225 while (pos != root) {
Tejun Heo5c9d5352014-05-16 13:22:48 -04003226 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003227 if (next)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003228 return next;
Tejun Heo5c9d5352014-05-16 13:22:48 -04003229 pos = pos->parent;
Tejun Heo7805d002013-05-24 10:50:24 +09003230 }
Tejun Heo574bd9f2012-11-09 09:12:29 -08003231
3232 return NULL;
3233}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003234
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003235/**
Tejun Heo492eb212013-08-08 20:11:25 -04003236 * css_rightmost_descendant - return the rightmost descendant of a css
3237 * @pos: css of interest
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003238 *
Tejun Heo492eb212013-08-08 20:11:25 -04003239 * Return the rightmost descendant of @pos. If there's no descendant, @pos
3240 * is returned. This can be used during pre-order traversal to skip
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003241 * subtree of @pos.
Tejun Heo75501a62013-05-24 10:55:38 +09003242 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003243 * While this function requires cgroup_mutex or RCU read locking, it
3244 * doesn't require the whole traversal to be contained in a single critical
3245 * section. This function will return the correct rightmost descendant as
3246 * long as @pos is accessible.
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003247 */
Tejun Heo492eb212013-08-08 20:11:25 -04003248struct cgroup_subsys_state *
3249css_rightmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003250{
Tejun Heo492eb212013-08-08 20:11:25 -04003251 struct cgroup_subsys_state *last, *tmp;
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003252
Tejun Heo8353da12014-05-13 12:19:23 -04003253 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003254
3255 do {
3256 last = pos;
3257 /* ->prev isn't RCU safe, walk ->next till the end */
3258 pos = NULL;
Tejun Heo492eb212013-08-08 20:11:25 -04003259 css_for_each_child(tmp, last)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003260 pos = tmp;
3261 } while (pos);
3262
3263 return last;
3264}
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003265
Tejun Heo492eb212013-08-08 20:11:25 -04003266static struct cgroup_subsys_state *
3267css_leftmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003268{
Tejun Heo492eb212013-08-08 20:11:25 -04003269 struct cgroup_subsys_state *last;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003270
3271 do {
3272 last = pos;
Tejun Heo492eb212013-08-08 20:11:25 -04003273 pos = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003274 } while (pos);
3275
3276 return last;
3277}
3278
3279/**
Tejun Heo492eb212013-08-08 20:11:25 -04003280 * css_next_descendant_post - find the next descendant for post-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003281 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003282 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003283 *
Tejun Heo492eb212013-08-08 20:11:25 -04003284 * To be used by css_for_each_descendant_post(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003285 * to visit for post-order traversal of @root's descendants. @root is
3286 * included in the iteration and the last node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003287 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003288 * While this function requires cgroup_mutex or RCU read locking, it
3289 * doesn't require the whole traversal to be contained in a single critical
3290 * section. This function will return the correct next descendant as long
3291 * as both @pos and @cgroup are accessible and @pos is a descendant of
3292 * @cgroup.
Tejun Heoc2931b72014-05-16 13:22:51 -04003293 *
3294 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3295 * css which finished ->css_online() is guaranteed to be visible in the
3296 * future iterations and will stay visible until the last reference is put.
3297 * A css which hasn't finished ->css_online() or already finished
3298 * ->css_offline() may show up during traversal. It's each subsystem's
3299 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003300 */
Tejun Heo492eb212013-08-08 20:11:25 -04003301struct cgroup_subsys_state *
3302css_next_descendant_post(struct cgroup_subsys_state *pos,
3303 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003304{
Tejun Heo492eb212013-08-08 20:11:25 -04003305 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003306
Tejun Heo8353da12014-05-13 12:19:23 -04003307 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003308
Tejun Heo58b79a92013-09-06 15:31:08 -04003309 /* if first iteration, visit leftmost descendant which may be @root */
3310 if (!pos)
3311 return css_leftmost_descendant(root);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003312
Tejun Heobd8815a2013-08-08 20:11:27 -04003313 /* if we visited @root, we're done */
3314 if (pos == root)
3315 return NULL;
3316
Tejun Heo574bd9f2012-11-09 09:12:29 -08003317 /* if there's an unvisited sibling, visit its leftmost descendant */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003318 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003319 if (next)
Tejun Heo492eb212013-08-08 20:11:25 -04003320 return css_leftmost_descendant(next);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003321
3322 /* no sibling left, visit parent */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003323 return pos->parent;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003324}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003325
Tejun Heof3d46502014-05-16 13:22:52 -04003326/**
3327 * css_has_online_children - does a css have online children
3328 * @css: the target css
3329 *
3330 * Returns %true if @css has any online children; otherwise, %false. This
3331 * function can be called from any context but the caller is responsible
3332 * for synchronizing against on/offlining as necessary.
3333 */
3334bool css_has_online_children(struct cgroup_subsys_state *css)
Tejun Heocbc125e2014-05-14 09:15:01 -04003335{
Tejun Heof3d46502014-05-16 13:22:52 -04003336 struct cgroup_subsys_state *child;
3337 bool ret = false;
Tejun Heocbc125e2014-05-14 09:15:01 -04003338
3339 rcu_read_lock();
Tejun Heof3d46502014-05-16 13:22:52 -04003340 css_for_each_child(child, css) {
3341 if (css->flags & CSS_ONLINE) {
3342 ret = true;
3343 break;
Tejun Heocbc125e2014-05-14 09:15:01 -04003344 }
3345 }
3346 rcu_read_unlock();
Tejun Heof3d46502014-05-16 13:22:52 -04003347 return ret;
Cliff Wickman31a7df02008-02-07 00:14:42 -08003348}
3349
Tejun Heo0942eee2013-08-08 20:11:26 -04003350/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003351 * css_advance_task_iter - advance a task itererator to the next css_set
Tejun Heo0942eee2013-08-08 20:11:26 -04003352 * @it: the iterator to advance
3353 *
3354 * Advance @it to the next css_set to walk.
Tejun Heod5158762013-08-08 20:11:26 -04003355 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003356static void css_advance_task_iter(struct css_task_iter *it)
Tejun Heod5158762013-08-08 20:11:26 -04003357{
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003358 struct list_head *l = it->cset_pos;
Tejun Heod5158762013-08-08 20:11:26 -04003359 struct cgrp_cset_link *link;
3360 struct css_set *cset;
3361
3362 /* Advance to the next non-empty css_set */
3363 do {
3364 l = l->next;
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003365 if (l == it->cset_head) {
3366 it->cset_pos = NULL;
Tejun Heod5158762013-08-08 20:11:26 -04003367 return;
3368 }
Tejun Heo3ebb2b62014-04-23 11:13:15 -04003369
3370 if (it->ss) {
3371 cset = container_of(l, struct css_set,
3372 e_cset_node[it->ss->id]);
3373 } else {
3374 link = list_entry(l, struct cgrp_cset_link, cset_link);
3375 cset = link->cset;
3376 }
Tejun Heoc7561122014-02-25 10:04:01 -05003377 } while (list_empty(&cset->tasks) && list_empty(&cset->mg_tasks));
3378
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003379 it->cset_pos = l;
Tejun Heoc7561122014-02-25 10:04:01 -05003380
3381 if (!list_empty(&cset->tasks))
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003382 it->task_pos = cset->tasks.next;
Tejun Heoc7561122014-02-25 10:04:01 -05003383 else
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003384 it->task_pos = cset->mg_tasks.next;
3385
3386 it->tasks_head = &cset->tasks;
3387 it->mg_tasks_head = &cset->mg_tasks;
Tejun Heod5158762013-08-08 20:11:26 -04003388}
3389
Tejun Heo0942eee2013-08-08 20:11:26 -04003390/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003391 * css_task_iter_start - initiate task iteration
3392 * @css: the css to walk tasks of
Tejun Heo0942eee2013-08-08 20:11:26 -04003393 * @it: the task iterator to use
3394 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003395 * Initiate iteration through the tasks of @css. The caller can call
3396 * css_task_iter_next() to walk through the tasks until the function
3397 * returns NULL. On completion of iteration, css_task_iter_end() must be
3398 * called.
Tejun Heo0942eee2013-08-08 20:11:26 -04003399 *
3400 * Note that this function acquires a lock which is released when the
3401 * iteration finishes. The caller can't sleep while iteration is in
3402 * progress.
3403 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003404void css_task_iter_start(struct cgroup_subsys_state *css,
3405 struct css_task_iter *it)
Tejun Heo96d365e2014-02-13 06:58:40 -05003406 __acquires(css_set_rwsem)
Paul Menage817929e2007-10-18 23:39:36 -07003407{
Tejun Heo56fde9e2014-02-13 06:58:38 -05003408 /* no one should try to iterate before mounting cgroups */
3409 WARN_ON_ONCE(!use_task_css_set_links);
Paul Menage817929e2007-10-18 23:39:36 -07003410
Tejun Heo96d365e2014-02-13 06:58:40 -05003411 down_read(&css_set_rwsem);
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003412
Tejun Heo3ebb2b62014-04-23 11:13:15 -04003413 it->ss = css->ss;
3414
3415 if (it->ss)
3416 it->cset_pos = &css->cgroup->e_csets[css->ss->id];
3417 else
3418 it->cset_pos = &css->cgroup->cset_links;
3419
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003420 it->cset_head = it->cset_pos;
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003421
Tejun Heo72ec7022013-08-08 20:11:26 -04003422 css_advance_task_iter(it);
Paul Menagebd89aab2007-10-18 23:40:44 -07003423}
Paul Menage817929e2007-10-18 23:39:36 -07003424
Tejun Heo0942eee2013-08-08 20:11:26 -04003425/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003426 * css_task_iter_next - return the next task for the iterator
Tejun Heo0942eee2013-08-08 20:11:26 -04003427 * @it: the task iterator being iterated
3428 *
3429 * The "next" function for task iteration. @it should have been
Tejun Heo72ec7022013-08-08 20:11:26 -04003430 * initialized via css_task_iter_start(). Returns NULL when the iteration
3431 * reaches the end.
Tejun Heo0942eee2013-08-08 20:11:26 -04003432 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003433struct task_struct *css_task_iter_next(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07003434{
3435 struct task_struct *res;
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003436 struct list_head *l = it->task_pos;
Paul Menage817929e2007-10-18 23:39:36 -07003437
3438 /* If the iterator cg is NULL, we have no tasks */
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003439 if (!it->cset_pos)
Paul Menage817929e2007-10-18 23:39:36 -07003440 return NULL;
3441 res = list_entry(l, struct task_struct, cg_list);
Tejun Heoc7561122014-02-25 10:04:01 -05003442
3443 /*
3444 * Advance iterator to find next entry. cset->tasks is consumed
3445 * first and then ->mg_tasks. After ->mg_tasks, we move onto the
3446 * next cset.
3447 */
Paul Menage817929e2007-10-18 23:39:36 -07003448 l = l->next;
Tejun Heoc7561122014-02-25 10:04:01 -05003449
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003450 if (l == it->tasks_head)
3451 l = it->mg_tasks_head->next;
Tejun Heoc7561122014-02-25 10:04:01 -05003452
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003453 if (l == it->mg_tasks_head)
Tejun Heo72ec7022013-08-08 20:11:26 -04003454 css_advance_task_iter(it);
Tejun Heoc7561122014-02-25 10:04:01 -05003455 else
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003456 it->task_pos = l;
Tejun Heoc7561122014-02-25 10:04:01 -05003457
Paul Menage817929e2007-10-18 23:39:36 -07003458 return res;
3459}
3460
Tejun Heo0942eee2013-08-08 20:11:26 -04003461/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003462 * css_task_iter_end - finish task iteration
Tejun Heo0942eee2013-08-08 20:11:26 -04003463 * @it: the task iterator to finish
3464 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003465 * Finish task iteration started by css_task_iter_start().
Tejun Heo0942eee2013-08-08 20:11:26 -04003466 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003467void css_task_iter_end(struct css_task_iter *it)
Tejun Heo96d365e2014-02-13 06:58:40 -05003468 __releases(css_set_rwsem)
Paul Menage817929e2007-10-18 23:39:36 -07003469{
Tejun Heo96d365e2014-02-13 06:58:40 -05003470 up_read(&css_set_rwsem);
Tejun Heo8cc99342013-04-07 09:29:50 -07003471}
3472
3473/**
3474 * cgroup_trasnsfer_tasks - move tasks from one cgroup to another
3475 * @to: cgroup to which the tasks will be moved
3476 * @from: cgroup in which the tasks currently reside
Tejun Heoeaf797a2014-02-25 10:04:03 -05003477 *
3478 * Locking rules between cgroup_post_fork() and the migration path
3479 * guarantee that, if a task is forking while being migrated, the new child
3480 * is guaranteed to be either visible in the source cgroup after the
3481 * parent's migration is complete or put into the target cgroup. No task
3482 * can slip out of migration through forking.
Tejun Heo8cc99342013-04-07 09:29:50 -07003483 */
3484int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from)
3485{
Tejun Heo952aaa12014-02-25 10:04:03 -05003486 LIST_HEAD(preloaded_csets);
3487 struct cgrp_cset_link *link;
Tejun Heoe406d1c2014-02-13 06:58:39 -05003488 struct css_task_iter it;
3489 struct task_struct *task;
Tejun Heo952aaa12014-02-25 10:04:03 -05003490 int ret;
Tejun Heoe406d1c2014-02-13 06:58:39 -05003491
Tejun Heo952aaa12014-02-25 10:04:03 -05003492 mutex_lock(&cgroup_mutex);
3493
3494 /* all tasks in @from are being moved, all csets are source */
3495 down_read(&css_set_rwsem);
3496 list_for_each_entry(link, &from->cset_links, cset_link)
3497 cgroup_migrate_add_src(link->cset, to, &preloaded_csets);
3498 up_read(&css_set_rwsem);
3499
3500 ret = cgroup_migrate_prepare_dst(to, &preloaded_csets);
3501 if (ret)
3502 goto out_err;
3503
3504 /*
3505 * Migrate tasks one-by-one until @form is empty. This fails iff
3506 * ->can_attach() fails.
3507 */
Tejun Heoe406d1c2014-02-13 06:58:39 -05003508 do {
Tejun Heo9d800df2014-05-14 09:15:00 -04003509 css_task_iter_start(&from->self, &it);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003510 task = css_task_iter_next(&it);
3511 if (task)
3512 get_task_struct(task);
3513 css_task_iter_end(&it);
3514
3515 if (task) {
Tejun Heo952aaa12014-02-25 10:04:03 -05003516 ret = cgroup_migrate(to, task, false);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003517 put_task_struct(task);
3518 }
3519 } while (task && !ret);
Tejun Heo952aaa12014-02-25 10:04:03 -05003520out_err:
3521 cgroup_migrate_finish(&preloaded_csets);
3522 mutex_unlock(&cgroup_mutex);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003523 return ret;
Tejun Heo8cc99342013-04-07 09:29:50 -07003524}
3525
Paul Menage817929e2007-10-18 23:39:36 -07003526/*
Ben Blum102a7752009-09-23 15:56:26 -07003527 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003528 *
3529 * Reading this file can return large amounts of data if a cgroup has
3530 * *lots* of attached tasks. So it may need several calls to read(),
3531 * but we cannot guarantee that the information we produce is correct
3532 * unless we produce it entirely atomically.
3533 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07003534 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003535
Li Zefan24528252012-01-20 11:58:43 +08003536/* which pidlist file are we talking about? */
3537enum cgroup_filetype {
3538 CGROUP_FILE_PROCS,
3539 CGROUP_FILE_TASKS,
3540};
3541
3542/*
3543 * A pidlist is a list of pids that virtually represents the contents of one
3544 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
3545 * a pair (one each for procs, tasks) for each pid namespace that's relevant
3546 * to the cgroup.
3547 */
3548struct cgroup_pidlist {
3549 /*
3550 * used to find which pidlist is wanted. doesn't change as long as
3551 * this particular list stays in the list.
3552 */
3553 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
3554 /* array of xids */
3555 pid_t *list;
3556 /* how many elements the above list has */
3557 int length;
Li Zefan24528252012-01-20 11:58:43 +08003558 /* each of these stored in a list by its cgroup */
3559 struct list_head links;
3560 /* pointer to the cgroup we belong to, for list removal purposes */
3561 struct cgroup *owner;
Tejun Heob1a21362013-11-29 10:42:58 -05003562 /* for delayed destruction */
3563 struct delayed_work destroy_dwork;
Li Zefan24528252012-01-20 11:58:43 +08003564};
3565
Paul Menagebbcb81d2007-10-18 23:39:32 -07003566/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07003567 * The following two functions "fix" the issue where there are more pids
3568 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
3569 * TODO: replace with a kernel-wide solution to this problem
3570 */
3571#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
3572static void *pidlist_allocate(int count)
3573{
3574 if (PIDLIST_TOO_LARGE(count))
3575 return vmalloc(count * sizeof(pid_t));
3576 else
3577 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
3578}
Tejun Heob1a21362013-11-29 10:42:58 -05003579
Ben Blumd1d9fd32009-09-23 15:56:28 -07003580static void pidlist_free(void *p)
3581{
3582 if (is_vmalloc_addr(p))
3583 vfree(p);
3584 else
3585 kfree(p);
3586}
Ben Blumd1d9fd32009-09-23 15:56:28 -07003587
3588/*
Tejun Heob1a21362013-11-29 10:42:58 -05003589 * Used to destroy all pidlists lingering waiting for destroy timer. None
3590 * should be left afterwards.
3591 */
3592static void cgroup_pidlist_destroy_all(struct cgroup *cgrp)
3593{
3594 struct cgroup_pidlist *l, *tmp_l;
3595
3596 mutex_lock(&cgrp->pidlist_mutex);
3597 list_for_each_entry_safe(l, tmp_l, &cgrp->pidlists, links)
3598 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, 0);
3599 mutex_unlock(&cgrp->pidlist_mutex);
3600
3601 flush_workqueue(cgroup_pidlist_destroy_wq);
3602 BUG_ON(!list_empty(&cgrp->pidlists));
3603}
3604
3605static void cgroup_pidlist_destroy_work_fn(struct work_struct *work)
3606{
3607 struct delayed_work *dwork = to_delayed_work(work);
3608 struct cgroup_pidlist *l = container_of(dwork, struct cgroup_pidlist,
3609 destroy_dwork);
3610 struct cgroup_pidlist *tofree = NULL;
3611
3612 mutex_lock(&l->owner->pidlist_mutex);
Tejun Heob1a21362013-11-29 10:42:58 -05003613
3614 /*
Tejun Heo04502362013-11-29 10:42:59 -05003615 * Destroy iff we didn't get queued again. The state won't change
3616 * as destroy_dwork can only be queued while locked.
Tejun Heob1a21362013-11-29 10:42:58 -05003617 */
Tejun Heo04502362013-11-29 10:42:59 -05003618 if (!delayed_work_pending(dwork)) {
Tejun Heob1a21362013-11-29 10:42:58 -05003619 list_del(&l->links);
3620 pidlist_free(l->list);
3621 put_pid_ns(l->key.ns);
3622 tofree = l;
3623 }
3624
Tejun Heob1a21362013-11-29 10:42:58 -05003625 mutex_unlock(&l->owner->pidlist_mutex);
3626 kfree(tofree);
3627}
3628
3629/*
Ben Blum102a7752009-09-23 15:56:26 -07003630 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
Li Zefan6ee211a2013-03-12 15:36:00 -07003631 * Returns the number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003632 */
Li Zefan6ee211a2013-03-12 15:36:00 -07003633static int pidlist_uniq(pid_t *list, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003634{
Ben Blum102a7752009-09-23 15:56:26 -07003635 int src, dest = 1;
Ben Blum102a7752009-09-23 15:56:26 -07003636
3637 /*
3638 * we presume the 0th element is unique, so i starts at 1. trivial
3639 * edge cases first; no work needs to be done for either
3640 */
3641 if (length == 0 || length == 1)
3642 return length;
3643 /* src and dest walk down the list; dest counts unique elements */
3644 for (src = 1; src < length; src++) {
3645 /* find next unique element */
3646 while (list[src] == list[src-1]) {
3647 src++;
3648 if (src == length)
3649 goto after;
3650 }
3651 /* dest always points to where the next unique element goes */
3652 list[dest] = list[src];
3653 dest++;
3654 }
3655after:
Ben Blum102a7752009-09-23 15:56:26 -07003656 return dest;
3657}
3658
Tejun Heoafb2bc12013-11-29 10:42:59 -05003659/*
3660 * The two pid files - task and cgroup.procs - guaranteed that the result
3661 * is sorted, which forced this whole pidlist fiasco. As pid order is
3662 * different per namespace, each namespace needs differently sorted list,
3663 * making it impossible to use, for example, single rbtree of member tasks
3664 * sorted by task pointer. As pidlists can be fairly large, allocating one
3665 * per open file is dangerous, so cgroup had to implement shared pool of
3666 * pidlists keyed by cgroup and namespace.
3667 *
3668 * All this extra complexity was caused by the original implementation
3669 * committing to an entirely unnecessary property. In the long term, we
3670 * want to do away with it. Explicitly scramble sort order if
3671 * sane_behavior so that no such expectation exists in the new interface.
3672 *
3673 * Scrambling is done by swapping every two consecutive bits, which is
3674 * non-identity one-to-one mapping which disturbs sort order sufficiently.
3675 */
3676static pid_t pid_fry(pid_t pid)
3677{
3678 unsigned a = pid & 0x55555555;
3679 unsigned b = pid & 0xAAAAAAAA;
3680
3681 return (a << 1) | (b >> 1);
3682}
3683
3684static pid_t cgroup_pid_fry(struct cgroup *cgrp, pid_t pid)
3685{
3686 if (cgroup_sane_behavior(cgrp))
3687 return pid_fry(pid);
3688 else
3689 return pid;
3690}
3691
Ben Blum102a7752009-09-23 15:56:26 -07003692static int cmppid(const void *a, const void *b)
3693{
3694 return *(pid_t *)a - *(pid_t *)b;
3695}
3696
Tejun Heoafb2bc12013-11-29 10:42:59 -05003697static int fried_cmppid(const void *a, const void *b)
3698{
3699 return pid_fry(*(pid_t *)a) - pid_fry(*(pid_t *)b);
3700}
3701
Ben Blum72a8cb32009-09-23 15:56:27 -07003702static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
3703 enum cgroup_filetype type)
3704{
3705 struct cgroup_pidlist *l;
3706 /* don't need task_nsproxy() if we're looking at ourself */
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08003707 struct pid_namespace *ns = task_active_pid_ns(current);
Li Zefanb70cc5f2010-03-10 15:22:12 -08003708
Tejun Heoe6b81712013-11-29 10:42:59 -05003709 lockdep_assert_held(&cgrp->pidlist_mutex);
3710
3711 list_for_each_entry(l, &cgrp->pidlists, links)
3712 if (l->key.type == type && l->key.ns == ns)
Ben Blum72a8cb32009-09-23 15:56:27 -07003713 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05003714 return NULL;
3715}
3716
Ben Blum72a8cb32009-09-23 15:56:27 -07003717/*
3718 * find the appropriate pidlist for our purpose (given procs vs tasks)
3719 * returns with the lock on that pidlist already held, and takes care
3720 * of the use count, or returns NULL with no locks held if we're out of
3721 * memory.
3722 */
Tejun Heoe6b81712013-11-29 10:42:59 -05003723static struct cgroup_pidlist *cgroup_pidlist_find_create(struct cgroup *cgrp,
3724 enum cgroup_filetype type)
Ben Blum72a8cb32009-09-23 15:56:27 -07003725{
3726 struct cgroup_pidlist *l;
Ben Blum72a8cb32009-09-23 15:56:27 -07003727
Tejun Heoe6b81712013-11-29 10:42:59 -05003728 lockdep_assert_held(&cgrp->pidlist_mutex);
3729
3730 l = cgroup_pidlist_find(cgrp, type);
3731 if (l)
3732 return l;
3733
Ben Blum72a8cb32009-09-23 15:56:27 -07003734 /* entry not found; create a new one */
Tejun Heof4f4be22013-06-12 21:04:51 -07003735 l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
Tejun Heoe6b81712013-11-29 10:42:59 -05003736 if (!l)
Ben Blum72a8cb32009-09-23 15:56:27 -07003737 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05003738
Tejun Heob1a21362013-11-29 10:42:58 -05003739 INIT_DELAYED_WORK(&l->destroy_dwork, cgroup_pidlist_destroy_work_fn);
Ben Blum72a8cb32009-09-23 15:56:27 -07003740 l->key.type = type;
Tejun Heoe6b81712013-11-29 10:42:59 -05003741 /* don't need task_nsproxy() if we're looking at ourself */
3742 l->key.ns = get_pid_ns(task_active_pid_ns(current));
Ben Blum72a8cb32009-09-23 15:56:27 -07003743 l->owner = cgrp;
3744 list_add(&l->links, &cgrp->pidlists);
Ben Blum72a8cb32009-09-23 15:56:27 -07003745 return l;
3746}
3747
3748/*
Ben Blum102a7752009-09-23 15:56:26 -07003749 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
3750 */
Ben Blum72a8cb32009-09-23 15:56:27 -07003751static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
3752 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07003753{
3754 pid_t *array;
3755 int length;
3756 int pid, n = 0; /* used for populating the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04003757 struct css_task_iter it;
Paul Menage817929e2007-10-18 23:39:36 -07003758 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07003759 struct cgroup_pidlist *l;
3760
Tejun Heo4bac00d2013-11-29 10:42:59 -05003761 lockdep_assert_held(&cgrp->pidlist_mutex);
3762
Ben Blum102a7752009-09-23 15:56:26 -07003763 /*
3764 * If cgroup gets more users after we read count, we won't have
3765 * enough space - tough. This race is indistinguishable to the
3766 * caller from the case that the additional cgroup users didn't
3767 * show up until sometime later on.
3768 */
3769 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003770 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07003771 if (!array)
3772 return -ENOMEM;
3773 /* now, populate the array */
Tejun Heo9d800df2014-05-14 09:15:00 -04003774 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04003775 while ((tsk = css_task_iter_next(&it))) {
Ben Blum102a7752009-09-23 15:56:26 -07003776 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07003777 break;
Ben Blum102a7752009-09-23 15:56:26 -07003778 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07003779 if (type == CGROUP_FILE_PROCS)
3780 pid = task_tgid_vnr(tsk);
3781 else
3782 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07003783 if (pid > 0) /* make sure to only use valid results */
3784 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07003785 }
Tejun Heo72ec7022013-08-08 20:11:26 -04003786 css_task_iter_end(&it);
Ben Blum102a7752009-09-23 15:56:26 -07003787 length = n;
3788 /* now sort & (if procs) strip out duplicates */
Tejun Heoafb2bc12013-11-29 10:42:59 -05003789 if (cgroup_sane_behavior(cgrp))
3790 sort(array, length, sizeof(pid_t), fried_cmppid, NULL);
3791 else
3792 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07003793 if (type == CGROUP_FILE_PROCS)
Li Zefan6ee211a2013-03-12 15:36:00 -07003794 length = pidlist_uniq(array, length);
Tejun Heoe6b81712013-11-29 10:42:59 -05003795
Tejun Heoe6b81712013-11-29 10:42:59 -05003796 l = cgroup_pidlist_find_create(cgrp, type);
Ben Blum72a8cb32009-09-23 15:56:27 -07003797 if (!l) {
Tejun Heoe6b81712013-11-29 10:42:59 -05003798 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003799 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07003800 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07003801 }
Tejun Heoe6b81712013-11-29 10:42:59 -05003802
3803 /* store array, freeing old if necessary */
Ben Blumd1d9fd32009-09-23 15:56:28 -07003804 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07003805 l->list = array;
3806 l->length = length;
Ben Blum72a8cb32009-09-23 15:56:27 -07003807 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07003808 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003809}
3810
Balbir Singh846c7bb2007-10-18 23:39:44 -07003811/**
Li Zefana043e3b2008-02-23 15:24:09 -08003812 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07003813 * @stats: cgroupstats to fill information into
3814 * @dentry: A dentry entry belonging to the cgroup for which stats have
3815 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08003816 *
3817 * Build and fill cgroupstats so that taskstats can export it to user
3818 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003819 */
3820int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
3821{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003822 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07003823 struct cgroup *cgrp;
Tejun Heo72ec7022013-08-08 20:11:26 -04003824 struct css_task_iter it;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003825 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08003826
Tejun Heo2bd59d42014-02-11 11:52:49 -05003827 /* it should be kernfs_node belonging to cgroupfs and is a directory */
3828 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
3829 kernfs_type(kn) != KERNFS_DIR)
3830 return -EINVAL;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003831
Li Zefanbad34662014-02-14 16:54:28 +08003832 mutex_lock(&cgroup_mutex);
3833
Tejun Heo2bd59d42014-02-11 11:52:49 -05003834 /*
3835 * We aren't being called from kernfs and there's no guarantee on
Tejun Heoec903c02014-05-13 12:11:01 -04003836 * @kn->priv's validity. For this and css_tryget_online_from_dir(),
Tejun Heo2bd59d42014-02-11 11:52:49 -05003837 * @kn->priv is RCU safe. Let's do the RCU dancing.
3838 */
3839 rcu_read_lock();
3840 cgrp = rcu_dereference(kn->priv);
Li Zefanbad34662014-02-14 16:54:28 +08003841 if (!cgrp || cgroup_is_dead(cgrp)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05003842 rcu_read_unlock();
Li Zefanbad34662014-02-14 16:54:28 +08003843 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003844 return -ENOENT;
3845 }
Li Zefanbad34662014-02-14 16:54:28 +08003846 rcu_read_unlock();
Balbir Singh846c7bb2007-10-18 23:39:44 -07003847
Tejun Heo9d800df2014-05-14 09:15:00 -04003848 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04003849 while ((tsk = css_task_iter_next(&it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07003850 switch (tsk->state) {
3851 case TASK_RUNNING:
3852 stats->nr_running++;
3853 break;
3854 case TASK_INTERRUPTIBLE:
3855 stats->nr_sleeping++;
3856 break;
3857 case TASK_UNINTERRUPTIBLE:
3858 stats->nr_uninterruptible++;
3859 break;
3860 case TASK_STOPPED:
3861 stats->nr_stopped++;
3862 break;
3863 default:
3864 if (delayacct_is_task_waiting_on_io(tsk))
3865 stats->nr_io_wait++;
3866 break;
3867 }
3868 }
Tejun Heo72ec7022013-08-08 20:11:26 -04003869 css_task_iter_end(&it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07003870
Li Zefanbad34662014-02-14 16:54:28 +08003871 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003872 return 0;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003873}
3874
Paul Menage8f3ff202009-09-23 15:56:25 -07003875
Paul Menagecc31edc2008-10-18 20:28:04 -07003876/*
Ben Blum102a7752009-09-23 15:56:26 -07003877 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07003878 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07003879 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07003880 */
3881
Ben Blum102a7752009-09-23 15:56:26 -07003882static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003883{
3884 /*
3885 * Initially we receive a position value that corresponds to
3886 * one more than the last pid shown (or 0 on the first call or
3887 * after a seek to the start). Use a binary-search to find the
3888 * next pid to display, if any
3889 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05003890 struct kernfs_open_file *of = s->private;
Tejun Heo7da11272013-12-05 12:28:04 -05003891 struct cgroup *cgrp = seq_css(s)->cgroup;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003892 struct cgroup_pidlist *l;
Tejun Heo7da11272013-12-05 12:28:04 -05003893 enum cgroup_filetype type = seq_cft(s)->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07003894 int index = 0, pid = *pos;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003895 int *iter, ret;
Paul Menagecc31edc2008-10-18 20:28:04 -07003896
Tejun Heo4bac00d2013-11-29 10:42:59 -05003897 mutex_lock(&cgrp->pidlist_mutex);
3898
3899 /*
Tejun Heo5d224442013-12-05 12:28:04 -05003900 * !NULL @of->priv indicates that this isn't the first start()
Tejun Heo4bac00d2013-11-29 10:42:59 -05003901 * after open. If the matching pidlist is around, we can use that.
Tejun Heo5d224442013-12-05 12:28:04 -05003902 * Look for it. Note that @of->priv can't be used directly. It
Tejun Heo4bac00d2013-11-29 10:42:59 -05003903 * could already have been destroyed.
3904 */
Tejun Heo5d224442013-12-05 12:28:04 -05003905 if (of->priv)
3906 of->priv = cgroup_pidlist_find(cgrp, type);
Tejun Heo4bac00d2013-11-29 10:42:59 -05003907
3908 /*
3909 * Either this is the first start() after open or the matching
3910 * pidlist has been destroyed inbetween. Create a new one.
3911 */
Tejun Heo5d224442013-12-05 12:28:04 -05003912 if (!of->priv) {
3913 ret = pidlist_array_load(cgrp, type,
3914 (struct cgroup_pidlist **)&of->priv);
Tejun Heo4bac00d2013-11-29 10:42:59 -05003915 if (ret)
3916 return ERR_PTR(ret);
3917 }
Tejun Heo5d224442013-12-05 12:28:04 -05003918 l = of->priv;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003919
Paul Menagecc31edc2008-10-18 20:28:04 -07003920 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07003921 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11003922
Paul Menagecc31edc2008-10-18 20:28:04 -07003923 while (index < end) {
3924 int mid = (index + end) / 2;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003925 if (cgroup_pid_fry(cgrp, l->list[mid]) == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07003926 index = mid;
3927 break;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003928 } else if (cgroup_pid_fry(cgrp, l->list[mid]) <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07003929 index = mid + 1;
3930 else
3931 end = mid;
3932 }
3933 }
3934 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07003935 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07003936 return NULL;
3937 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07003938 iter = l->list + index;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003939 *pos = cgroup_pid_fry(cgrp, *iter);
Paul Menagecc31edc2008-10-18 20:28:04 -07003940 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003941}
3942
Ben Blum102a7752009-09-23 15:56:26 -07003943static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003944{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003945 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05003946 struct cgroup_pidlist *l = of->priv;
Tejun Heo62236852013-11-29 10:42:58 -05003947
Tejun Heo5d224442013-12-05 12:28:04 -05003948 if (l)
3949 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork,
Tejun Heo04502362013-11-29 10:42:59 -05003950 CGROUP_PIDLIST_DESTROY_DELAY);
Tejun Heo7da11272013-12-05 12:28:04 -05003951 mutex_unlock(&seq_css(s)->cgroup->pidlist_mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07003952}
3953
Ben Blum102a7752009-09-23 15:56:26 -07003954static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003955{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003956 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05003957 struct cgroup_pidlist *l = of->priv;
Ben Blum102a7752009-09-23 15:56:26 -07003958 pid_t *p = v;
3959 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07003960 /*
3961 * Advance to the next pid in the array. If this goes off the
3962 * end, we're done
3963 */
3964 p++;
3965 if (p >= end) {
3966 return NULL;
3967 } else {
Tejun Heo7da11272013-12-05 12:28:04 -05003968 *pos = cgroup_pid_fry(seq_css(s)->cgroup, *p);
Paul Menagecc31edc2008-10-18 20:28:04 -07003969 return p;
3970 }
3971}
3972
Ben Blum102a7752009-09-23 15:56:26 -07003973static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003974{
3975 return seq_printf(s, "%d\n", *(int *)v);
3976}
3977
Tejun Heo182446d2013-08-08 20:11:24 -04003978static u64 cgroup_read_notify_on_release(struct cgroup_subsys_state *css,
3979 struct cftype *cft)
Paul Menage81a6a5c2007-10-18 23:39:38 -07003980{
Tejun Heo182446d2013-08-08 20:11:24 -04003981 return notify_on_release(css->cgroup);
Paul Menage81a6a5c2007-10-18 23:39:38 -07003982}
3983
Tejun Heo182446d2013-08-08 20:11:24 -04003984static int cgroup_write_notify_on_release(struct cgroup_subsys_state *css,
3985 struct cftype *cft, u64 val)
Paul Menage6379c102008-07-25 01:47:01 -07003986{
Tejun Heo182446d2013-08-08 20:11:24 -04003987 clear_bit(CGRP_RELEASABLE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003988 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04003989 set_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003990 else
Tejun Heo182446d2013-08-08 20:11:24 -04003991 clear_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07003992 return 0;
3993}
3994
Tejun Heo182446d2013-08-08 20:11:24 -04003995static u64 cgroup_clone_children_read(struct cgroup_subsys_state *css,
3996 struct cftype *cft)
Daniel Lezcano97978e62010-10-27 15:33:35 -07003997{
Tejun Heo182446d2013-08-08 20:11:24 -04003998 return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07003999}
4000
Tejun Heo182446d2013-08-08 20:11:24 -04004001static int cgroup_clone_children_write(struct cgroup_subsys_state *css,
4002 struct cftype *cft, u64 val)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004003{
4004 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04004005 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004006 else
Tejun Heo182446d2013-08-08 20:11:24 -04004007 clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004008 return 0;
4009}
4010
Tejun Heod5c56ce2013-06-03 19:14:34 -07004011static struct cftype cgroup_base_files[] = {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004012 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07004013 .name = "cgroup.procs",
Tejun Heo6612f052013-12-05 12:28:04 -05004014 .seq_start = cgroup_pidlist_start,
4015 .seq_next = cgroup_pidlist_next,
4016 .seq_stop = cgroup_pidlist_stop,
4017 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004018 .private = CGROUP_FILE_PROCS,
Tejun Heoacbef752014-05-13 12:16:22 -04004019 .write = cgroup_procs_write,
Ben Blum74a11662011-05-26 16:25:20 -07004020 .mode = S_IRUGO | S_IWUSR,
Ben Blum102a7752009-09-23 15:56:26 -07004021 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07004022 {
Daniel Lezcano97978e62010-10-27 15:33:35 -07004023 .name = "cgroup.clone_children",
Tejun Heo873fe092013-04-14 20:15:26 -07004024 .flags = CFTYPE_INSANE,
Daniel Lezcano97978e62010-10-27 15:33:35 -07004025 .read_u64 = cgroup_clone_children_read,
4026 .write_u64 = cgroup_clone_children_write,
4027 },
Tejun Heo6e6ff252012-04-01 12:09:55 -07004028 {
Tejun Heo873fe092013-04-14 20:15:26 -07004029 .name = "cgroup.sane_behavior",
4030 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004031 .seq_show = cgroup_sane_behavior_show,
Tejun Heo873fe092013-04-14 20:15:26 -07004032 },
Tejun Heof8f22e52014-04-23 11:13:16 -04004033 {
4034 .name = "cgroup.controllers",
4035 .flags = CFTYPE_ONLY_ON_DFL | CFTYPE_ONLY_ON_ROOT,
4036 .seq_show = cgroup_root_controllers_show,
4037 },
4038 {
4039 .name = "cgroup.controllers",
4040 .flags = CFTYPE_ONLY_ON_DFL | CFTYPE_NOT_ON_ROOT,
4041 .seq_show = cgroup_controllers_show,
4042 },
4043 {
4044 .name = "cgroup.subtree_control",
4045 .flags = CFTYPE_ONLY_ON_DFL,
4046 .seq_show = cgroup_subtree_control_show,
Tejun Heo451af502014-05-13 12:16:21 -04004047 .write = cgroup_subtree_control_write,
Tejun Heof8f22e52014-04-23 11:13:16 -04004048 },
Tejun Heo842b5972014-04-25 18:28:02 -04004049 {
4050 .name = "cgroup.populated",
4051 .flags = CFTYPE_ONLY_ON_DFL | CFTYPE_NOT_ON_ROOT,
4052 .seq_show = cgroup_populated_show,
4053 },
Tejun Heod5c56ce2013-06-03 19:14:34 -07004054
4055 /*
4056 * Historical crazy stuff. These don't have "cgroup." prefix and
4057 * don't exist if sane_behavior. If you're depending on these, be
4058 * prepared to be burned.
4059 */
4060 {
4061 .name = "tasks",
4062 .flags = CFTYPE_INSANE, /* use "procs" instead */
Tejun Heo6612f052013-12-05 12:28:04 -05004063 .seq_start = cgroup_pidlist_start,
4064 .seq_next = cgroup_pidlist_next,
4065 .seq_stop = cgroup_pidlist_stop,
4066 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004067 .private = CGROUP_FILE_TASKS,
Tejun Heoacbef752014-05-13 12:16:22 -04004068 .write = cgroup_tasks_write,
Tejun Heod5c56ce2013-06-03 19:14:34 -07004069 .mode = S_IRUGO | S_IWUSR,
4070 },
4071 {
4072 .name = "notify_on_release",
4073 .flags = CFTYPE_INSANE,
4074 .read_u64 = cgroup_read_notify_on_release,
4075 .write_u64 = cgroup_write_notify_on_release,
4076 },
Tejun Heo873fe092013-04-14 20:15:26 -07004077 {
Tejun Heo6e6ff252012-04-01 12:09:55 -07004078 .name = "release_agent",
Tejun Heocc5943a2013-06-03 19:13:55 -07004079 .flags = CFTYPE_INSANE | CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004080 .seq_show = cgroup_release_agent_show,
Tejun Heo451af502014-05-13 12:16:21 -04004081 .write = cgroup_release_agent_write,
Tejun Heo5f469902014-02-11 11:52:48 -05004082 .max_write_len = PATH_MAX - 1,
Tejun Heo6e6ff252012-04-01 12:09:55 -07004083 },
Tejun Heodb0416b2012-04-01 12:09:55 -07004084 { } /* terminate */
Paul Menagebbcb81d2007-10-18 23:39:32 -07004085};
4086
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004087/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07004088 * cgroup_populate_dir - create subsys files in a cgroup directory
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004089 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004090 * @subsys_mask: mask of the subsystem ids whose files should be added
Tejun Heobee55092013-06-28 16:24:11 -07004091 *
4092 * On failure, no file is added.
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004093 */
Tejun Heo69dfa002014-05-04 15:09:13 -04004094static int cgroup_populate_dir(struct cgroup *cgrp, unsigned int subsys_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004095{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004096 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07004097 int i, ret = 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004098
Tejun Heo8e3f6542012-04-01 12:09:55 -07004099 /* process cftsets of each subsystem */
Tejun Heob420ba72013-07-12 12:34:02 -07004100 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -05004101 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -07004102
Tejun Heo69dfa002014-05-04 15:09:13 -04004103 if (!(subsys_mask & (1 << i)))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004104 continue;
Tejun Heo8e3f6542012-04-01 12:09:55 -07004105
Tejun Heo0adb0702014-02-12 09:29:48 -05004106 list_for_each_entry(cfts, &ss->cfts, node) {
4107 ret = cgroup_addrm_files(cgrp, cfts, true);
Tejun Heobee55092013-06-28 16:24:11 -07004108 if (ret < 0)
4109 goto err;
4110 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004111 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004112 return 0;
Tejun Heobee55092013-06-28 16:24:11 -07004113err:
4114 cgroup_clear_dir(cgrp, subsys_mask);
4115 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004116}
4117
Tejun Heo0c21ead2013-08-13 20:22:51 -04004118/*
4119 * css destruction is four-stage process.
4120 *
4121 * 1. Destruction starts. Killing of the percpu_ref is initiated.
4122 * Implemented in kill_css().
4123 *
4124 * 2. When the percpu_ref is confirmed to be visible as killed on all CPUs
Tejun Heoec903c02014-05-13 12:11:01 -04004125 * and thus css_tryget_online() is guaranteed to fail, the css can be
4126 * offlined by invoking offline_css(). After offlining, the base ref is
4127 * put. Implemented in css_killed_work_fn().
Tejun Heo0c21ead2013-08-13 20:22:51 -04004128 *
4129 * 3. When the percpu_ref reaches zero, the only possible remaining
4130 * accessors are inside RCU read sections. css_release() schedules the
4131 * RCU callback.
4132 *
4133 * 4. After the grace period, the css can be freed. Implemented in
4134 * css_free_work_fn().
4135 *
4136 * It is actually hairier because both step 2 and 4 require process context
4137 * and thus involve punting to css->destroy_work adding two additional
4138 * steps to the already complex sequence.
4139 */
Tejun Heo35ef10d2013-08-13 11:01:54 -04004140static void css_free_work_fn(struct work_struct *work)
Tejun Heo48ddbe12012-04-01 12:09:56 -07004141{
4142 struct cgroup_subsys_state *css =
Tejun Heo35ef10d2013-08-13 11:01:54 -04004143 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo0c21ead2013-08-13 20:22:51 -04004144 struct cgroup *cgrp = css->cgroup;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004145
Tejun Heo9d755d32014-05-14 09:15:02 -04004146 if (css->ss) {
4147 /* css free path */
4148 if (css->parent)
4149 css_put(css->parent);
Tejun Heo0ae78e02013-08-13 11:01:54 -04004150
Tejun Heo9d755d32014-05-14 09:15:02 -04004151 css->ss->css_free(css);
4152 cgroup_put(cgrp);
4153 } else {
4154 /* cgroup free path */
4155 atomic_dec(&cgrp->root->nr_cgrps);
4156 cgroup_pidlist_destroy_all(cgrp);
4157
Tejun Heod51f39b2014-05-16 13:22:48 -04004158 if (cgroup_parent(cgrp)) {
Tejun Heo9d755d32014-05-14 09:15:02 -04004159 /*
4160 * We get a ref to the parent, and put the ref when
4161 * this cgroup is being freed, so it's guaranteed
4162 * that the parent won't be destroyed before its
4163 * children.
4164 */
Tejun Heod51f39b2014-05-16 13:22:48 -04004165 cgroup_put(cgroup_parent(cgrp));
Tejun Heo9d755d32014-05-14 09:15:02 -04004166 kernfs_put(cgrp->kn);
4167 kfree(cgrp);
4168 } else {
4169 /*
4170 * This is root cgroup's refcnt reaching zero,
4171 * which indicates that the root should be
4172 * released.
4173 */
4174 cgroup_destroy_root(cgrp->root);
4175 }
4176 }
Tejun Heo0c21ead2013-08-13 20:22:51 -04004177}
4178
4179static void css_free_rcu_fn(struct rcu_head *rcu_head)
4180{
4181 struct cgroup_subsys_state *css =
4182 container_of(rcu_head, struct cgroup_subsys_state, rcu_head);
4183
Tejun Heo0c21ead2013-08-13 20:22:51 -04004184 INIT_WORK(&css->destroy_work, css_free_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05004185 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004186}
4187
Tejun Heo25e15d82014-05-14 09:15:02 -04004188static void css_release_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004189{
4190 struct cgroup_subsys_state *css =
Tejun Heo25e15d82014-05-14 09:15:02 -04004191 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo15a4c832014-05-04 15:09:14 -04004192 struct cgroup_subsys *ss = css->ss;
Tejun Heo9d755d32014-05-14 09:15:02 -04004193 struct cgroup *cgrp = css->cgroup;
Tejun Heod3daf282013-06-13 19:39:16 -07004194
Tejun Heo1fed1b22014-05-16 13:22:49 -04004195 mutex_lock(&cgroup_mutex);
4196
Tejun Heode3f0342014-05-16 13:22:49 -04004197 css->flags |= CSS_RELEASED;
Tejun Heo1fed1b22014-05-16 13:22:49 -04004198 list_del_rcu(&css->sibling);
4199
Tejun Heo9d755d32014-05-14 09:15:02 -04004200 if (ss) {
4201 /* css release path */
4202 cgroup_idr_remove(&ss->css_idr, css->id);
4203 } else {
4204 /* cgroup release path */
Tejun Heo9d755d32014-05-14 09:15:02 -04004205 cgroup_idr_remove(&cgrp->root->cgroup_idr, cgrp->id);
4206 cgrp->id = -1;
4207 }
Tejun Heo15a4c832014-05-04 15:09:14 -04004208
Tejun Heo1fed1b22014-05-16 13:22:49 -04004209 mutex_unlock(&cgroup_mutex);
4210
Tejun Heo0c21ead2013-08-13 20:22:51 -04004211 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004212}
4213
Paul Menageddbcc7e2007-10-18 23:39:30 -07004214static void css_release(struct percpu_ref *ref)
4215{
4216 struct cgroup_subsys_state *css =
4217 container_of(ref, struct cgroup_subsys_state, refcnt);
4218
Tejun Heo25e15d82014-05-14 09:15:02 -04004219 INIT_WORK(&css->destroy_work, css_release_work_fn);
4220 queue_work(cgroup_destroy_wq, &css->destroy_work);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004221}
4222
Tejun Heoddfcada2014-05-04 15:09:14 -04004223static void init_and_link_css(struct cgroup_subsys_state *css,
4224 struct cgroup_subsys *ss, struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004225{
Tejun Heo0cb51d72014-05-16 13:22:49 -04004226 lockdep_assert_held(&cgroup_mutex);
4227
Tejun Heoddfcada2014-05-04 15:09:14 -04004228 cgroup_get(cgrp);
4229
Tejun Heod5c419b2014-05-16 13:22:48 -04004230 memset(css, 0, sizeof(*css));
Paul Menagebd89aab2007-10-18 23:40:44 -07004231 css->cgroup = cgrp;
Tejun Heo72c97e52013-08-08 20:11:22 -04004232 css->ss = ss;
Tejun Heod5c419b2014-05-16 13:22:48 -04004233 INIT_LIST_HEAD(&css->sibling);
4234 INIT_LIST_HEAD(&css->children);
Tejun Heo0cb51d72014-05-16 13:22:49 -04004235 css->serial_nr = css_serial_nr_next++;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004236
Tejun Heod51f39b2014-05-16 13:22:48 -04004237 if (cgroup_parent(cgrp)) {
4238 css->parent = cgroup_css(cgroup_parent(cgrp), ss);
Tejun Heoddfcada2014-05-04 15:09:14 -04004239 css_get(css->parent);
Tejun Heoddfcada2014-05-04 15:09:14 -04004240 }
Tejun Heo0ae78e02013-08-13 11:01:54 -04004241
Tejun Heoca8bdca2013-08-26 18:40:56 -04004242 BUG_ON(cgroup_css(cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004243}
4244
Li Zefan2a4ac632013-07-31 16:16:40 +08004245/* invoke ->css_online() on a new CSS and mark it online if successful */
Tejun Heo623f9262013-08-13 11:01:55 -04004246static int online_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004247{
Tejun Heo623f9262013-08-13 11:01:55 -04004248 struct cgroup_subsys *ss = css->ss;
Tejun Heob1929db2012-11-19 08:13:38 -08004249 int ret = 0;
4250
Tejun Heoa31f2d32012-11-19 08:13:37 -08004251 lockdep_assert_held(&cgroup_mutex);
4252
Tejun Heo92fb9742012-11-19 08:13:38 -08004253 if (ss->css_online)
Tejun Heoeb954192013-08-08 20:11:23 -04004254 ret = ss->css_online(css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004255 if (!ret) {
Tejun Heoeb954192013-08-08 20:11:23 -04004256 css->flags |= CSS_ONLINE;
Tejun Heoaec25022014-02-08 10:36:58 -05004257 rcu_assign_pointer(css->cgroup->subsys[ss->id], css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004258 }
Tejun Heob1929db2012-11-19 08:13:38 -08004259 return ret;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004260}
4261
Li Zefan2a4ac632013-07-31 16:16:40 +08004262/* if the CSS is online, invoke ->css_offline() on it and mark it offline */
Tejun Heo623f9262013-08-13 11:01:55 -04004263static void offline_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004264{
Tejun Heo623f9262013-08-13 11:01:55 -04004265 struct cgroup_subsys *ss = css->ss;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004266
4267 lockdep_assert_held(&cgroup_mutex);
4268
4269 if (!(css->flags & CSS_ONLINE))
4270 return;
4271
Li Zefand7eeac12013-03-12 15:35:59 -07004272 if (ss->css_offline)
Tejun Heoeb954192013-08-08 20:11:23 -04004273 ss->css_offline(css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004274
Tejun Heoeb954192013-08-08 20:11:23 -04004275 css->flags &= ~CSS_ONLINE;
Tejun Heoe3297802014-04-23 11:13:15 -04004276 RCU_INIT_POINTER(css->cgroup->subsys[ss->id], NULL);
Tejun Heof8f22e52014-04-23 11:13:16 -04004277
4278 wake_up_all(&css->cgroup->offline_waitq);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004279}
4280
Tejun Heoc81c925a2013-12-06 15:11:56 -05004281/**
4282 * create_css - create a cgroup_subsys_state
4283 * @cgrp: the cgroup new css will be associated with
4284 * @ss: the subsys of new css
4285 *
4286 * Create a new css associated with @cgrp - @ss pair. On success, the new
4287 * css is online and installed in @cgrp with all interface files created.
4288 * Returns 0 on success, -errno on failure.
4289 */
4290static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss)
4291{
Tejun Heod51f39b2014-05-16 13:22:48 -04004292 struct cgroup *parent = cgroup_parent(cgrp);
Tejun Heo1fed1b22014-05-16 13:22:49 -04004293 struct cgroup_subsys_state *parent_css = cgroup_css(parent, ss);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004294 struct cgroup_subsys_state *css;
4295 int err;
4296
Tejun Heoc81c925a2013-12-06 15:11:56 -05004297 lockdep_assert_held(&cgroup_mutex);
4298
Tejun Heo1fed1b22014-05-16 13:22:49 -04004299 css = ss->css_alloc(parent_css);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004300 if (IS_ERR(css))
4301 return PTR_ERR(css);
4302
Tejun Heoddfcada2014-05-04 15:09:14 -04004303 init_and_link_css(css, ss, cgrp);
Tejun Heoa2bed822014-05-04 15:09:14 -04004304
Tejun Heoc81c925a2013-12-06 15:11:56 -05004305 err = percpu_ref_init(&css->refcnt, css_release);
4306 if (err)
Li Zefan3eb59ec2014-03-18 17:02:36 +08004307 goto err_free_css;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004308
Tejun Heo15a4c832014-05-04 15:09:14 -04004309 err = cgroup_idr_alloc(&ss->css_idr, NULL, 2, 0, GFP_NOWAIT);
4310 if (err < 0)
4311 goto err_free_percpu_ref;
4312 css->id = err;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004313
Tejun Heoaec25022014-02-08 10:36:58 -05004314 err = cgroup_populate_dir(cgrp, 1 << ss->id);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004315 if (err)
Tejun Heo15a4c832014-05-04 15:09:14 -04004316 goto err_free_id;
4317
4318 /* @css is ready to be brought online now, make it visible */
Tejun Heo1fed1b22014-05-16 13:22:49 -04004319 list_add_tail_rcu(&css->sibling, &parent_css->children);
Tejun Heo15a4c832014-05-04 15:09:14 -04004320 cgroup_idr_replace(&ss->css_idr, css, css->id);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004321
4322 err = online_css(css);
4323 if (err)
Tejun Heo1fed1b22014-05-16 13:22:49 -04004324 goto err_list_del;
Tejun Heo94419622014-03-19 10:23:54 -04004325
Tejun Heoc81c925a2013-12-06 15:11:56 -05004326 if (ss->broken_hierarchy && !ss->warned_broken_hierarchy &&
Tejun Heod51f39b2014-05-16 13:22:48 -04004327 cgroup_parent(parent)) {
Joe Perchesed3d2612014-04-25 18:28:03 -04004328 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 -04004329 current->comm, current->pid, ss->name);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004330 if (!strcmp(ss->name, "memory"))
Joe Perchesed3d2612014-04-25 18:28:03 -04004331 pr_warn("\"memory\" requires setting use_hierarchy to 1 on the root\n");
Tejun Heoc81c925a2013-12-06 15:11:56 -05004332 ss->warned_broken_hierarchy = true;
4333 }
4334
4335 return 0;
4336
Tejun Heo1fed1b22014-05-16 13:22:49 -04004337err_list_del:
4338 list_del_rcu(&css->sibling);
Linus Torvalds32d01dc2014-04-03 13:05:42 -07004339 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
Tejun Heo15a4c832014-05-04 15:09:14 -04004340err_free_id:
4341 cgroup_idr_remove(&ss->css_idr, css->id);
Li Zefan3eb59ec2014-03-18 17:02:36 +08004342err_free_percpu_ref:
Tejun Heoc81c925a2013-12-06 15:11:56 -05004343 percpu_ref_cancel_init(&css->refcnt);
Li Zefan3eb59ec2014-03-18 17:02:36 +08004344err_free_css:
Tejun Heoa2bed822014-05-04 15:09:14 -04004345 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004346 return err;
4347}
4348
Tejun Heob3bfd982014-05-13 12:19:22 -04004349static int cgroup_mkdir(struct kernfs_node *parent_kn, const char *name,
4350 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004351{
Tejun Heoa9746d82014-05-13 12:19:22 -04004352 struct cgroup *parent, *cgrp;
4353 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004354 struct cgroup_subsys *ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004355 struct kernfs_node *kn;
Tejun Heob3bfd982014-05-13 12:19:22 -04004356 int ssid, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004357
Tejun Heoa9746d82014-05-13 12:19:22 -04004358 parent = cgroup_kn_lock_live(parent_kn);
4359 if (!parent)
4360 return -ENODEV;
4361 root = parent->root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004362
Tejun Heo0a950f62012-11-19 09:02:12 -08004363 /* allocate the cgroup and its ID, 0 is reserved for the root */
Paul Menagebd89aab2007-10-18 23:40:44 -07004364 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004365 if (!cgrp) {
4366 ret = -ENOMEM;
4367 goto out_unlock;
Li Zefan0ab02ca2014-02-11 16:05:46 +08004368 }
4369
Tejun Heo9d755d32014-05-14 09:15:02 -04004370 ret = percpu_ref_init(&cgrp->self.refcnt, css_release);
4371 if (ret)
4372 goto out_free_cgrp;
4373
Li Zefan0ab02ca2014-02-11 16:05:46 +08004374 /*
4375 * Temporarily set the pointer to NULL, so idr_find() won't return
4376 * a half-baked cgroup.
4377 */
Tejun Heo6fa49182014-05-04 15:09:13 -04004378 cgrp->id = cgroup_idr_alloc(&root->cgroup_idr, NULL, 2, 0, GFP_NOWAIT);
Li Zefan0ab02ca2014-02-11 16:05:46 +08004379 if (cgrp->id < 0) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004380 ret = -ENOMEM;
Tejun Heo9d755d32014-05-14 09:15:02 -04004381 goto out_cancel_ref;
Tejun Heo976c06b2012-11-05 09:16:59 -08004382 }
4383
Paul Menagecc31edc2008-10-18 20:28:04 -07004384 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004385
Tejun Heo9d800df2014-05-14 09:15:00 -04004386 cgrp->self.parent = &parent->self;
Tejun Heoba0f4d72014-05-13 12:19:22 -04004387 cgrp->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004388
Li Zefanb6abdb02008-03-04 14:28:19 -08004389 if (notify_on_release(parent))
4390 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
4391
Tejun Heo2260e7f2012-11-19 08:13:38 -08004392 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags))
4393 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004394
Tejun Heo2bd59d42014-02-11 11:52:49 -05004395 /* create the directory */
Tejun Heoe61734c2014-02-12 09:29:50 -05004396 kn = kernfs_create_dir(parent->kn, name, mode, cgrp);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004397 if (IS_ERR(kn)) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004398 ret = PTR_ERR(kn);
4399 goto out_free_id;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004400 }
4401 cgrp->kn = kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004402
Tejun Heo6f305582014-02-12 09:29:50 -05004403 /*
4404 * This extra ref will be put in cgroup_free_fn() and guarantees
4405 * that @cgrp->kn is always accessible.
4406 */
4407 kernfs_get(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004408
Tejun Heo0cb51d72014-05-16 13:22:49 -04004409 cgrp->self.serial_nr = css_serial_nr_next++;
Tejun Heo53fa5262013-05-24 10:55:38 +09004410
Tejun Heo4e139af2012-11-19 08:13:36 -08004411 /* allocation complete, commit to creation */
Tejun Heod5c419b2014-05-16 13:22:48 -04004412 list_add_tail_rcu(&cgrp->self.sibling, &cgroup_parent(cgrp)->self.children);
Tejun Heo3c9c8252014-02-12 09:29:50 -05004413 atomic_inc(&root->nr_cgrps);
Tejun Heo59f52962014-02-11 11:52:49 -05004414 cgroup_get(parent);
Li Zefan415cf072013-04-08 14:35:02 +08004415
Tejun Heo0d802552013-12-06 15:11:56 -05004416 /*
4417 * @cgrp is now fully operational. If something fails after this
4418 * point, it'll be released via the normal destruction path.
4419 */
Tejun Heo6fa49182014-05-04 15:09:13 -04004420 cgroup_idr_replace(&root->cgroup_idr, cgrp, cgrp->id);
Li Zefan4e96ee82013-07-31 09:50:50 +08004421
Tejun Heoba0f4d72014-05-13 12:19:22 -04004422 ret = cgroup_kn_set_ugid(kn);
4423 if (ret)
4424 goto out_destroy;
Tejun Heo49957f82014-04-07 16:44:47 -04004425
Tejun Heoba0f4d72014-05-13 12:19:22 -04004426 ret = cgroup_addrm_files(cgrp, cgroup_base_files, true);
4427 if (ret)
4428 goto out_destroy;
Tejun Heo628f7cd2013-06-28 16:24:11 -07004429
Tejun Heo9d403e92013-12-06 15:11:56 -05004430 /* let's create and online css's */
Tejun Heob85d2042013-12-06 15:11:57 -05004431 for_each_subsys(ss, ssid) {
Tejun Heof392e512014-04-23 11:13:14 -04004432 if (parent->child_subsys_mask & (1 << ssid)) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004433 ret = create_css(cgrp, ss);
4434 if (ret)
4435 goto out_destroy;
Tejun Heob85d2042013-12-06 15:11:57 -05004436 }
Tejun Heoa8638032012-11-09 09:12:29 -08004437 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004438
Tejun Heobd53d612014-04-23 11:13:16 -04004439 /*
4440 * On the default hierarchy, a child doesn't automatically inherit
Tejun Heo667c2492014-07-08 18:02:56 -04004441 * subtree_control from the parent. Each is configured manually.
Tejun Heobd53d612014-04-23 11:13:16 -04004442 */
Tejun Heo667c2492014-07-08 18:02:56 -04004443 if (!cgroup_on_dfl(cgrp)) {
4444 cgrp->subtree_control = parent->subtree_control;
4445 cgroup_refresh_child_subsys_mask(cgrp);
4446 }
Tejun Heof392e512014-04-23 11:13:14 -04004447
Tejun Heo2bd59d42014-02-11 11:52:49 -05004448 kernfs_activate(kn);
4449
Tejun Heoba0f4d72014-05-13 12:19:22 -04004450 ret = 0;
4451 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004452
Tejun Heoba0f4d72014-05-13 12:19:22 -04004453out_free_id:
Tejun Heo6fa49182014-05-04 15:09:13 -04004454 cgroup_idr_remove(&root->cgroup_idr, cgrp->id);
Tejun Heo9d755d32014-05-14 09:15:02 -04004455out_cancel_ref:
4456 percpu_ref_cancel_init(&cgrp->self.refcnt);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004457out_free_cgrp:
Paul Menagebd89aab2007-10-18 23:40:44 -07004458 kfree(cgrp);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004459out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04004460 cgroup_kn_unlock(parent_kn);
Tejun Heoe1b2dc12014-03-20 11:10:15 -04004461 return ret;
Tejun Heoba0f4d72014-05-13 12:19:22 -04004462
4463out_destroy:
4464 cgroup_destroy_locked(cgrp);
4465 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004466}
4467
Tejun Heo223dbc32013-08-13 20:22:50 -04004468/*
4469 * This is called when the refcnt of a css is confirmed to be killed.
Tejun Heo249f3462014-05-14 09:15:01 -04004470 * css_tryget_online() is now guaranteed to fail. Tell the subsystem to
4471 * initate destruction and put the css ref from kill_css().
Tejun Heo223dbc32013-08-13 20:22:50 -04004472 */
4473static void css_killed_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004474{
Tejun Heo223dbc32013-08-13 20:22:50 -04004475 struct cgroup_subsys_state *css =
4476 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07004477
Tejun Heof20104d2013-08-13 20:22:50 -04004478 mutex_lock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04004479 offline_css(css);
Tejun Heof20104d2013-08-13 20:22:50 -04004480 mutex_unlock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04004481
Tejun Heo09a503ea2013-08-13 20:22:50 -04004482 css_put(css);
Tejun Heod3daf282013-06-13 19:39:16 -07004483}
4484
Tejun Heo223dbc32013-08-13 20:22:50 -04004485/* css kill confirmation processing requires process context, bounce */
4486static void css_killed_ref_fn(struct percpu_ref *ref)
Tejun Heod3daf282013-06-13 19:39:16 -07004487{
4488 struct cgroup_subsys_state *css =
4489 container_of(ref, struct cgroup_subsys_state, refcnt);
4490
Tejun Heo223dbc32013-08-13 20:22:50 -04004491 INIT_WORK(&css->destroy_work, css_killed_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05004492 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07004493}
4494
Tejun Heof392e512014-04-23 11:13:14 -04004495/**
4496 * kill_css - destroy a css
4497 * @css: css to destroy
4498 *
4499 * This function initiates destruction of @css by removing cgroup interface
4500 * files and putting its base reference. ->css_offline() will be invoked
Tejun Heoec903c02014-05-13 12:11:01 -04004501 * asynchronously once css_tryget_online() is guaranteed to fail and when
4502 * the reference count reaches zero, @css will be released.
Tejun Heof392e512014-04-23 11:13:14 -04004503 */
4504static void kill_css(struct cgroup_subsys_state *css)
Tejun Heoedae0c32013-08-13 20:22:51 -04004505{
Tejun Heo01f64742014-05-13 12:19:23 -04004506 lockdep_assert_held(&cgroup_mutex);
Tejun Heo94419622014-03-19 10:23:54 -04004507
Tejun Heo2bd59d42014-02-11 11:52:49 -05004508 /*
4509 * This must happen before css is disassociated with its cgroup.
4510 * See seq_css() for details.
4511 */
Tejun Heoaec25022014-02-08 10:36:58 -05004512 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
Tejun Heo3c14f8b2013-08-13 20:22:51 -04004513
Tejun Heoedae0c32013-08-13 20:22:51 -04004514 /*
4515 * Killing would put the base ref, but we need to keep it alive
4516 * until after ->css_offline().
4517 */
4518 css_get(css);
4519
4520 /*
4521 * cgroup core guarantees that, by the time ->css_offline() is
4522 * invoked, no new css reference will be given out via
Tejun Heoec903c02014-05-13 12:11:01 -04004523 * css_tryget_online(). We can't simply call percpu_ref_kill() and
Tejun Heoedae0c32013-08-13 20:22:51 -04004524 * proceed to offlining css's because percpu_ref_kill() doesn't
4525 * guarantee that the ref is seen as killed on all CPUs on return.
4526 *
4527 * Use percpu_ref_kill_and_confirm() to get notifications as each
4528 * css is confirmed to be seen as killed on all CPUs.
4529 */
4530 percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004531}
4532
4533/**
4534 * cgroup_destroy_locked - the first stage of cgroup destruction
4535 * @cgrp: cgroup to be destroyed
4536 *
4537 * css's make use of percpu refcnts whose killing latency shouldn't be
4538 * exposed to userland and are RCU protected. Also, cgroup core needs to
Tejun Heoec903c02014-05-13 12:11:01 -04004539 * guarantee that css_tryget_online() won't succeed by the time
4540 * ->css_offline() is invoked. To satisfy all the requirements,
4541 * destruction is implemented in the following two steps.
Tejun Heod3daf282013-06-13 19:39:16 -07004542 *
4543 * s1. Verify @cgrp can be destroyed and mark it dying. Remove all
4544 * userland visible parts and start killing the percpu refcnts of
4545 * css's. Set up so that the next stage will be kicked off once all
4546 * the percpu refcnts are confirmed to be killed.
4547 *
4548 * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the
4549 * rest of destruction. Once all cgroup references are gone, the
4550 * cgroup is RCU-freed.
4551 *
4552 * This function implements s1. After this step, @cgrp is gone as far as
4553 * the userland is concerned and a new cgroup with the same name may be
4554 * created. As cgroup doesn't care about the names internally, this
4555 * doesn't cause any problem.
4556 */
Tejun Heo42809dd2012-11-19 08:13:37 -08004557static int cgroup_destroy_locked(struct cgroup *cgrp)
4558 __releases(&cgroup_mutex) __acquires(&cgroup_mutex)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004559{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004560 struct cgroup_subsys_state *css;
Tejun Heoddd69142013-06-12 21:04:54 -07004561 bool empty;
Tejun Heo1c6727a2013-12-06 15:11:56 -05004562 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004563
Tejun Heo42809dd2012-11-19 08:13:37 -08004564 lockdep_assert_held(&cgroup_mutex);
4565
Tejun Heoddd69142013-06-12 21:04:54 -07004566 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05004567 * css_set_rwsem synchronizes access to ->cset_links and prevents
Tejun Heo89c55092014-02-13 06:58:40 -05004568 * @cgrp from being removed while put_css_set() is in progress.
Tejun Heoddd69142013-06-12 21:04:54 -07004569 */
Tejun Heo96d365e2014-02-13 06:58:40 -05004570 down_read(&css_set_rwsem);
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004571 empty = list_empty(&cgrp->cset_links);
Tejun Heo96d365e2014-02-13 06:58:40 -05004572 up_read(&css_set_rwsem);
Tejun Heoddd69142013-06-12 21:04:54 -07004573 if (!empty)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004574 return -EBUSY;
Tejun Heoed9577932012-11-05 09:16:58 -08004575
Tejun Heo1a90dd52012-11-05 09:16:59 -08004576 /*
Tejun Heod5c419b2014-05-16 13:22:48 -04004577 * Make sure there's no live children. We can't test emptiness of
4578 * ->self.children as dead children linger on it while being
4579 * drained; otherwise, "rmdir parent/child parent" may fail.
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004580 */
Tejun Heof3d46502014-05-16 13:22:52 -04004581 if (css_has_online_children(&cgrp->self))
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004582 return -EBUSY;
4583
4584 /*
Tejun Heo455050d2013-06-13 19:27:41 -07004585 * Mark @cgrp dead. This prevents further task migration and child
Tejun Heode3f0342014-05-16 13:22:49 -04004586 * creation by disabling cgroup_lock_live_group().
Tejun Heo455050d2013-06-13 19:27:41 -07004587 */
Tejun Heo184faf32014-05-16 13:22:51 -04004588 cgrp->self.flags &= ~CSS_ONLINE;
Tejun Heo1a90dd52012-11-05 09:16:59 -08004589
Tejun Heo249f3462014-05-14 09:15:01 -04004590 /* initiate massacre of all css's */
Tejun Heo1a90dd52012-11-05 09:16:59 -08004591 for_each_css(css, ssid, cgrp)
Tejun Heo455050d2013-06-13 19:27:41 -07004592 kill_css(css);
4593
Tejun Heo184faf32014-05-16 13:22:51 -04004594 /* CSS_ONLINE is clear, remove from ->release_list for the last time */
Tejun Heo455050d2013-06-13 19:27:41 -07004595 raw_spin_lock(&release_list_lock);
4596 if (!list_empty(&cgrp->release_list))
4597 list_del_init(&cgrp->release_list);
4598 raw_spin_unlock(&release_list_lock);
4599
4600 /*
Tejun Heo01f64742014-05-13 12:19:23 -04004601 * Remove @cgrp directory along with the base files. @cgrp has an
4602 * extra ref on its kn.
Tejun Heo455050d2013-06-13 19:27:41 -07004603 */
Tejun Heo01f64742014-05-13 12:19:23 -04004604 kernfs_remove(cgrp->kn);
Tejun Heof20104d2013-08-13 20:22:50 -04004605
Tejun Heod51f39b2014-05-16 13:22:48 -04004606 set_bit(CGRP_RELEASABLE, &cgroup_parent(cgrp)->flags);
4607 check_for_release(cgroup_parent(cgrp));
Tejun Heo2bd59d42014-02-11 11:52:49 -05004608
Tejun Heo249f3462014-05-14 09:15:01 -04004609 /* put the base reference */
Tejun Heo9d755d32014-05-14 09:15:02 -04004610 percpu_ref_kill(&cgrp->self.refcnt);
Tejun Heo455050d2013-06-13 19:27:41 -07004611
Tejun Heoea15f8c2013-06-13 19:27:42 -07004612 return 0;
4613};
4614
Tejun Heo2bd59d42014-02-11 11:52:49 -05004615static int cgroup_rmdir(struct kernfs_node *kn)
Tejun Heo42809dd2012-11-19 08:13:37 -08004616{
Tejun Heoa9746d82014-05-13 12:19:22 -04004617 struct cgroup *cgrp;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004618 int ret = 0;
Tejun Heo42809dd2012-11-19 08:13:37 -08004619
Tejun Heoa9746d82014-05-13 12:19:22 -04004620 cgrp = cgroup_kn_lock_live(kn);
4621 if (!cgrp)
4622 return 0;
4623 cgroup_get(cgrp); /* for @kn->priv clearing */
Tejun Heo42809dd2012-11-19 08:13:37 -08004624
Tejun Heoa9746d82014-05-13 12:19:22 -04004625 ret = cgroup_destroy_locked(cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -08004626
Tejun Heoa9746d82014-05-13 12:19:22 -04004627 cgroup_kn_unlock(kn);
Tejun Heo42809dd2012-11-19 08:13:37 -08004628
Tejun Heo2bd59d42014-02-11 11:52:49 -05004629 /*
Tejun Heocfc79d52014-05-13 12:19:22 -04004630 * There are two control paths which try to determine cgroup from
4631 * dentry without going through kernfs - cgroupstats_build() and
4632 * css_tryget_online_from_dir(). Those are supported by RCU
4633 * protecting clearing of cgrp->kn->priv backpointer, which should
4634 * happen after all files under it have been removed.
Tejun Heo2bd59d42014-02-11 11:52:49 -05004635 */
Tejun Heocfc79d52014-05-13 12:19:22 -04004636 if (!ret)
4637 RCU_INIT_POINTER(*(void __rcu __force **)&kn->priv, NULL);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004638
Tejun Heo2bd59d42014-02-11 11:52:49 -05004639 cgroup_put(cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -08004640 return ret;
4641}
4642
Tejun Heo2bd59d42014-02-11 11:52:49 -05004643static struct kernfs_syscall_ops cgroup_kf_syscall_ops = {
4644 .remount_fs = cgroup_remount,
4645 .show_options = cgroup_show_options,
4646 .mkdir = cgroup_mkdir,
4647 .rmdir = cgroup_rmdir,
4648 .rename = cgroup_rename,
4649};
Tejun Heo8e3f6542012-04-01 12:09:55 -07004650
Tejun Heo15a4c832014-05-04 15:09:14 -04004651static void __init cgroup_init_subsys(struct cgroup_subsys *ss, bool early)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004652{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004653 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08004654
4655 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004656
Tejun Heo648bb562012-11-19 08:13:36 -08004657 mutex_lock(&cgroup_mutex);
4658
Tejun Heo15a4c832014-05-04 15:09:14 -04004659 idr_init(&ss->css_idr);
Tejun Heo0adb0702014-02-12 09:29:48 -05004660 INIT_LIST_HEAD(&ss->cfts);
Tejun Heo8e3f6542012-04-01 12:09:55 -07004661
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004662 /* Create the root cgroup state for this subsystem */
4663 ss->root = &cgrp_dfl_root;
4664 css = ss->css_alloc(cgroup_css(&cgrp_dfl_root.cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004665 /* We don't handle early failures gracefully */
4666 BUG_ON(IS_ERR(css));
Tejun Heoddfcada2014-05-04 15:09:14 -04004667 init_and_link_css(css, ss, &cgrp_dfl_root.cgrp);
Tejun Heo3b514d22014-05-16 13:22:47 -04004668
4669 /*
4670 * Root csses are never destroyed and we can't initialize
4671 * percpu_ref during early init. Disable refcnting.
4672 */
4673 css->flags |= CSS_NO_REF;
4674
Tejun Heo15a4c832014-05-04 15:09:14 -04004675 if (early) {
Tejun Heo9395a452014-05-14 09:15:02 -04004676 /* allocation can't be done safely during early init */
Tejun Heo15a4c832014-05-04 15:09:14 -04004677 css->id = 1;
4678 } else {
4679 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2, GFP_KERNEL);
4680 BUG_ON(css->id < 0);
4681 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004682
Li Zefane8d55fd2008-04-29 01:00:13 -07004683 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07004684 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07004685 * newly registered, all tasks and hence the
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004686 * init_css_set is in the subsystem's root cgroup. */
Tejun Heoaec25022014-02-08 10:36:58 -05004687 init_css_set.subsys[ss->id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004688
4689 need_forkexit_callback |= ss->fork || ss->exit;
4690
Li Zefane8d55fd2008-04-29 01:00:13 -07004691 /* At system boot, before all subsystems have been
4692 * registered, no tasks have been forked, so we don't
4693 * need to invoke fork callbacks here. */
4694 BUG_ON(!list_empty(&init_task.tasks));
4695
Tejun Heoae7f1642013-08-13 20:22:50 -04004696 BUG_ON(online_css(css));
Tejun Heoa8638032012-11-09 09:12:29 -08004697
Tejun Heo648bb562012-11-19 08:13:36 -08004698 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004699}
4700
4701/**
Li Zefana043e3b2008-02-23 15:24:09 -08004702 * cgroup_init_early - cgroup initialization at system boot
4703 *
4704 * Initialize cgroups at system boot, and initialize any
4705 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004706 */
4707int __init cgroup_init_early(void)
4708{
Tejun Heoa2dd4242014-03-19 10:23:55 -04004709 static struct cgroup_sb_opts __initdata opts =
4710 { .flags = CGRP_ROOT_SANE_BEHAVIOR };
Tejun Heo30159ec2013-06-25 11:53:37 -07004711 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004712 int i;
Tejun Heo30159ec2013-06-25 11:53:37 -07004713
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004714 init_cgroup_root(&cgrp_dfl_root, &opts);
Tejun Heo3b514d22014-05-16 13:22:47 -04004715 cgrp_dfl_root.cgrp.self.flags |= CSS_NO_REF;
4716
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07004717 RCU_INIT_POINTER(init_task.cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07004718
Tejun Heo3ed80a62014-02-08 10:36:58 -05004719 for_each_subsys(ss, i) {
Tejun Heoaec25022014-02-08 10:36:58 -05004720 WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id,
Tejun Heo073219e2014-02-08 10:36:58 -05004721 "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p name:id=%d:%s\n",
4722 i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free,
Tejun Heoaec25022014-02-08 10:36:58 -05004723 ss->id, ss->name);
Tejun Heo073219e2014-02-08 10:36:58 -05004724 WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN,
4725 "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004726
Tejun Heoaec25022014-02-08 10:36:58 -05004727 ss->id = i;
Tejun Heo073219e2014-02-08 10:36:58 -05004728 ss->name = cgroup_subsys_name[i];
Paul Menageddbcc7e2007-10-18 23:39:30 -07004729
4730 if (ss->early_init)
Tejun Heo15a4c832014-05-04 15:09:14 -04004731 cgroup_init_subsys(ss, true);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004732 }
4733 return 0;
4734}
4735
4736/**
Li Zefana043e3b2008-02-23 15:24:09 -08004737 * cgroup_init - cgroup initialization
4738 *
4739 * Register cgroup filesystem and /proc file, and initialize
4740 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004741 */
4742int __init cgroup_init(void)
4743{
Tejun Heo30159ec2013-06-25 11:53:37 -07004744 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +08004745 unsigned long key;
Tejun Heo172a2c062014-03-19 10:23:53 -04004746 int ssid, err;
Paul Menagea4243162007-10-18 23:39:35 -07004747
Tejun Heo2bd59d42014-02-11 11:52:49 -05004748 BUG_ON(cgroup_init_cftypes(NULL, cgroup_base_files));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004749
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004750 mutex_lock(&cgroup_mutex);
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004751
Tejun Heo82fe9b02013-06-25 11:53:37 -07004752 /* Add init_css_set to the hash table */
4753 key = css_set_hash(init_css_set.subsys);
4754 hash_add(css_set_table, &init_css_set.hlist, key);
4755
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004756 BUG_ON(cgroup_setup_root(&cgrp_dfl_root, 0));
Greg KH676db4a2010-08-05 13:53:35 -07004757
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004758 mutex_unlock(&cgroup_mutex);
4759
Tejun Heo172a2c062014-03-19 10:23:53 -04004760 for_each_subsys(ss, ssid) {
Tejun Heo15a4c832014-05-04 15:09:14 -04004761 if (ss->early_init) {
4762 struct cgroup_subsys_state *css =
4763 init_css_set.subsys[ss->id];
4764
4765 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2,
4766 GFP_KERNEL);
4767 BUG_ON(css->id < 0);
4768 } else {
4769 cgroup_init_subsys(ss, false);
4770 }
Tejun Heo172a2c062014-03-19 10:23:53 -04004771
Tejun Heo2d8f2432014-04-23 11:13:15 -04004772 list_add_tail(&init_css_set.e_cset_node[ssid],
4773 &cgrp_dfl_root.cgrp.e_csets[ssid]);
Tejun Heo172a2c062014-03-19 10:23:53 -04004774
4775 /*
Li Zefanc731ae12014-06-05 17:16:30 +08004776 * Setting dfl_root subsys_mask needs to consider the
4777 * disabled flag and cftype registration needs kmalloc,
4778 * both of which aren't available during early_init.
Tejun Heo172a2c062014-03-19 10:23:53 -04004779 */
Li Zefanc731ae12014-06-05 17:16:30 +08004780 if (!ss->disabled) {
4781 cgrp_dfl_root.subsys_mask |= 1 << ss->id;
Tejun Heo172a2c062014-03-19 10:23:53 -04004782 WARN_ON(cgroup_add_cftypes(ss, ss->base_cftypes));
Li Zefanc731ae12014-06-05 17:16:30 +08004783 }
Tejun Heo172a2c062014-03-19 10:23:53 -04004784 }
Greg KH676db4a2010-08-05 13:53:35 -07004785
Paul Menageddbcc7e2007-10-18 23:39:30 -07004786 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004787 if (!cgroup_kobj)
4788 return -ENOMEM;
Paul Menagea4243162007-10-18 23:39:35 -07004789
4790 err = register_filesystem(&cgroup_fs_type);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004791 if (err < 0) {
4792 kobject_put(cgroup_kobj);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004793 return err;
Paul Menagea4243162007-10-18 23:39:35 -07004794 }
4795
4796 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004797 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004798}
Paul Menageb4f48b62007-10-18 23:39:33 -07004799
Tejun Heoe5fca242013-11-22 17:14:39 -05004800static int __init cgroup_wq_init(void)
4801{
4802 /*
4803 * There isn't much point in executing destruction path in
4804 * parallel. Good chunk is serialized with cgroup_mutex anyway.
Tejun Heo1a115332014-02-12 19:06:19 -05004805 * Use 1 for @max_active.
Tejun Heoe5fca242013-11-22 17:14:39 -05004806 *
4807 * We would prefer to do this in cgroup_init() above, but that
4808 * is called before init_workqueues(): so leave this until after.
4809 */
Tejun Heo1a115332014-02-12 19:06:19 -05004810 cgroup_destroy_wq = alloc_workqueue("cgroup_destroy", 0, 1);
Tejun Heoe5fca242013-11-22 17:14:39 -05004811 BUG_ON(!cgroup_destroy_wq);
Tejun Heob1a21362013-11-29 10:42:58 -05004812
4813 /*
4814 * Used to destroy pidlists and separate to serve as flush domain.
4815 * Cap @max_active to 1 too.
4816 */
4817 cgroup_pidlist_destroy_wq = alloc_workqueue("cgroup_pidlist_destroy",
4818 0, 1);
4819 BUG_ON(!cgroup_pidlist_destroy_wq);
4820
Tejun Heoe5fca242013-11-22 17:14:39 -05004821 return 0;
4822}
4823core_initcall(cgroup_wq_init);
4824
Paul Menagea4243162007-10-18 23:39:35 -07004825/*
4826 * proc_cgroup_show()
4827 * - Print task's cgroup paths into seq_file, one line for each hierarchy
4828 * - Used for /proc/<pid>/cgroup.
Paul Menagea4243162007-10-18 23:39:35 -07004829 */
4830
4831/* TODO: Use a proper seq_file iterator */
Al Viro8d8b97b2013-04-19 23:11:24 -04004832int proc_cgroup_show(struct seq_file *m, void *v)
Paul Menagea4243162007-10-18 23:39:35 -07004833{
4834 struct pid *pid;
4835 struct task_struct *tsk;
Tejun Heoe61734c2014-02-12 09:29:50 -05004836 char *buf, *path;
Paul Menagea4243162007-10-18 23:39:35 -07004837 int retval;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004838 struct cgroup_root *root;
Paul Menagea4243162007-10-18 23:39:35 -07004839
4840 retval = -ENOMEM;
Tejun Heoe61734c2014-02-12 09:29:50 -05004841 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagea4243162007-10-18 23:39:35 -07004842 if (!buf)
4843 goto out;
4844
4845 retval = -ESRCH;
4846 pid = m->private;
4847 tsk = get_pid_task(pid, PIDTYPE_PID);
4848 if (!tsk)
4849 goto out_free;
4850
4851 retval = 0;
4852
4853 mutex_lock(&cgroup_mutex);
Tejun Heo96d365e2014-02-13 06:58:40 -05004854 down_read(&css_set_rwsem);
Paul Menagea4243162007-10-18 23:39:35 -07004855
Tejun Heo985ed672014-03-19 10:23:53 -04004856 for_each_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07004857 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07004858 struct cgroup *cgrp;
Tejun Heob85d2042013-12-06 15:11:57 -05004859 int ssid, count = 0;
Paul Menagea4243162007-10-18 23:39:35 -07004860
Tejun Heoa2dd4242014-03-19 10:23:55 -04004861 if (root == &cgrp_dfl_root && !cgrp_dfl_root_visible)
Tejun Heo985ed672014-03-19 10:23:53 -04004862 continue;
4863
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004864 seq_printf(m, "%d:", root->hierarchy_id);
Tejun Heob85d2042013-12-06 15:11:57 -05004865 for_each_subsys(ss, ssid)
Tejun Heof392e512014-04-23 11:13:14 -04004866 if (root->subsys_mask & (1 << ssid))
Tejun Heob85d2042013-12-06 15:11:57 -05004867 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07004868 if (strlen(root->name))
4869 seq_printf(m, "%sname=%s", count ? "," : "",
4870 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07004871 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07004872 cgrp = task_cgroup_from_root(tsk, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05004873 path = cgroup_path(cgrp, buf, PATH_MAX);
4874 if (!path) {
4875 retval = -ENAMETOOLONG;
Paul Menagea4243162007-10-18 23:39:35 -07004876 goto out_unlock;
Tejun Heoe61734c2014-02-12 09:29:50 -05004877 }
4878 seq_puts(m, path);
Paul Menagea4243162007-10-18 23:39:35 -07004879 seq_putc(m, '\n');
4880 }
4881
4882out_unlock:
Tejun Heo96d365e2014-02-13 06:58:40 -05004883 up_read(&css_set_rwsem);
Paul Menagea4243162007-10-18 23:39:35 -07004884 mutex_unlock(&cgroup_mutex);
4885 put_task_struct(tsk);
4886out_free:
4887 kfree(buf);
4888out:
4889 return retval;
4890}
4891
Paul Menagea4243162007-10-18 23:39:35 -07004892/* Display information about each subsystem and each hierarchy */
4893static int proc_cgroupstats_show(struct seq_file *m, void *v)
4894{
Tejun Heo30159ec2013-06-25 11:53:37 -07004895 struct cgroup_subsys *ss;
Paul Menagea4243162007-10-18 23:39:35 -07004896 int i;
Paul Menagea4243162007-10-18 23:39:35 -07004897
Paul Menage8bab8dd2008-04-04 14:29:57 -07004898 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08004899 /*
4900 * ideally we don't want subsystems moving around while we do this.
4901 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
4902 * subsys/hierarchy state.
4903 */
Paul Menagea4243162007-10-18 23:39:35 -07004904 mutex_lock(&cgroup_mutex);
Tejun Heo30159ec2013-06-25 11:53:37 -07004905
4906 for_each_subsys(ss, i)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004907 seq_printf(m, "%s\t%d\t%d\t%d\n",
4908 ss->name, ss->root->hierarchy_id,
Tejun Heo3c9c8252014-02-12 09:29:50 -05004909 atomic_read(&ss->root->nr_cgrps), !ss->disabled);
Tejun Heo30159ec2013-06-25 11:53:37 -07004910
Paul Menagea4243162007-10-18 23:39:35 -07004911 mutex_unlock(&cgroup_mutex);
4912 return 0;
4913}
4914
4915static int cgroupstats_open(struct inode *inode, struct file *file)
4916{
Al Viro9dce07f2008-03-29 03:07:28 +00004917 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07004918}
4919
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004920static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004921 .open = cgroupstats_open,
4922 .read = seq_read,
4923 .llseek = seq_lseek,
4924 .release = single_release,
4925};
4926
Paul Menageb4f48b62007-10-18 23:39:33 -07004927/**
Tejun Heoeaf797a2014-02-25 10:04:03 -05004928 * cgroup_fork - initialize cgroup related fields during copy_process()
Li Zefana043e3b2008-02-23 15:24:09 -08004929 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07004930 *
Tejun Heoeaf797a2014-02-25 10:04:03 -05004931 * A task is associated with the init_css_set until cgroup_post_fork()
4932 * attaches it to the parent's css_set. Empty cg_list indicates that
4933 * @child isn't holding reference to its css_set.
Paul Menageb4f48b62007-10-18 23:39:33 -07004934 */
4935void cgroup_fork(struct task_struct *child)
4936{
Tejun Heoeaf797a2014-02-25 10:04:03 -05004937 RCU_INIT_POINTER(child->cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07004938 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07004939}
4940
4941/**
Li Zefana043e3b2008-02-23 15:24:09 -08004942 * cgroup_post_fork - called on a new task after adding it to the task list
4943 * @child: the task in question
4944 *
Tejun Heo5edee612012-10-16 15:03:14 -07004945 * Adds the task to the list running through its css_set if necessary and
4946 * call the subsystem fork() callbacks. Has to be after the task is
4947 * visible on the task list in case we race with the first call to
Tejun Heo0942eee2013-08-08 20:11:26 -04004948 * cgroup_task_iter_start() - to guarantee that the new task ends up on its
Tejun Heo5edee612012-10-16 15:03:14 -07004949 * list.
Li Zefana043e3b2008-02-23 15:24:09 -08004950 */
Paul Menage817929e2007-10-18 23:39:36 -07004951void cgroup_post_fork(struct task_struct *child)
4952{
Tejun Heo30159ec2013-06-25 11:53:37 -07004953 struct cgroup_subsys *ss;
Tejun Heo5edee612012-10-16 15:03:14 -07004954 int i;
4955
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01004956 /*
Tejun Heoeaf797a2014-02-25 10:04:03 -05004957 * This may race against cgroup_enable_task_cg_links(). As that
4958 * function sets use_task_css_set_links before grabbing
4959 * tasklist_lock and we just went through tasklist_lock to add
4960 * @child, it's guaranteed that either we see the set
4961 * use_task_css_set_links or cgroup_enable_task_cg_lists() sees
4962 * @child during its iteration.
4963 *
4964 * If we won the race, @child is associated with %current's
4965 * css_set. Grabbing css_set_rwsem guarantees both that the
4966 * association is stable, and, on completion of the parent's
4967 * migration, @child is visible in the source of migration or
4968 * already in the destination cgroup. This guarantee is necessary
4969 * when implementing operations which need to migrate all tasks of
4970 * a cgroup to another.
4971 *
4972 * Note that if we lose to cgroup_enable_task_cg_links(), @child
4973 * will remain in init_css_set. This is safe because all tasks are
4974 * in the init_css_set before cg_links is enabled and there's no
4975 * operation which transfers all tasks out of init_css_set.
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01004976 */
Paul Menage817929e2007-10-18 23:39:36 -07004977 if (use_task_css_set_links) {
Tejun Heoeaf797a2014-02-25 10:04:03 -05004978 struct css_set *cset;
4979
Tejun Heo96d365e2014-02-13 06:58:40 -05004980 down_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05004981 cset = task_css_set(current);
Tejun Heoeaf797a2014-02-25 10:04:03 -05004982 if (list_empty(&child->cg_list)) {
4983 rcu_assign_pointer(child->cgroups, cset);
4984 list_add(&child->cg_list, &cset->tasks);
4985 get_css_set(cset);
4986 }
Tejun Heo96d365e2014-02-13 06:58:40 -05004987 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -07004988 }
Tejun Heo5edee612012-10-16 15:03:14 -07004989
4990 /*
4991 * Call ss->fork(). This must happen after @child is linked on
4992 * css_set; otherwise, @child might change state between ->fork()
4993 * and addition to css_set.
4994 */
4995 if (need_forkexit_callback) {
Tejun Heo3ed80a62014-02-08 10:36:58 -05004996 for_each_subsys(ss, i)
Tejun Heo5edee612012-10-16 15:03:14 -07004997 if (ss->fork)
4998 ss->fork(child);
Tejun Heo5edee612012-10-16 15:03:14 -07004999 }
Paul Menage817929e2007-10-18 23:39:36 -07005000}
Tejun Heo5edee612012-10-16 15:03:14 -07005001
Paul Menage817929e2007-10-18 23:39:36 -07005002/**
Paul Menageb4f48b62007-10-18 23:39:33 -07005003 * cgroup_exit - detach cgroup from exiting task
5004 * @tsk: pointer to task_struct of exiting process
5005 *
5006 * Description: Detach cgroup from @tsk and release it.
5007 *
5008 * Note that cgroups marked notify_on_release force every task in
5009 * them to take the global cgroup_mutex mutex when exiting.
5010 * This could impact scaling on very large systems. Be reluctant to
5011 * use notify_on_release cgroups where very high task exit scaling
5012 * is required on large systems.
5013 *
Tejun Heo0e1d7682014-02-25 10:04:03 -05005014 * We set the exiting tasks cgroup to the root cgroup (top_cgroup). We
5015 * call cgroup_exit() while the task is still competent to handle
5016 * notify_on_release(), then leave the task attached to the root cgroup in
5017 * each hierarchy for the remainder of its exit. No need to bother with
5018 * init_css_set refcnting. init_css_set never goes away and we can't race
Li Zefane8604cb2014-03-28 15:18:27 +08005019 * with migration path - PF_EXITING is visible to migration path.
Paul Menageb4f48b62007-10-18 23:39:33 -07005020 */
Li Zefan1ec41832014-03-28 15:22:19 +08005021void cgroup_exit(struct task_struct *tsk)
Paul Menageb4f48b62007-10-18 23:39:33 -07005022{
Tejun Heo30159ec2013-06-25 11:53:37 -07005023 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -07005024 struct css_set *cset;
Tejun Heoeaf797a2014-02-25 10:04:03 -05005025 bool put_cset = false;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005026 int i;
Paul Menage817929e2007-10-18 23:39:36 -07005027
5028 /*
Tejun Heo0e1d7682014-02-25 10:04:03 -05005029 * Unlink from @tsk from its css_set. As migration path can't race
5030 * with us, we can check cg_list without grabbing css_set_rwsem.
Paul Menage817929e2007-10-18 23:39:36 -07005031 */
5032 if (!list_empty(&tsk->cg_list)) {
Tejun Heo96d365e2014-02-13 06:58:40 -05005033 down_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005034 list_del_init(&tsk->cg_list);
Tejun Heo96d365e2014-02-13 06:58:40 -05005035 up_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005036 put_cset = true;
Paul Menage817929e2007-10-18 23:39:36 -07005037 }
5038
Paul Menageb4f48b62007-10-18 23:39:33 -07005039 /* Reassign the task to the init_css_set. */
Tejun Heoa8ad8052013-06-21 15:52:04 -07005040 cset = task_css_set(tsk);
5041 RCU_INIT_POINTER(tsk->cgroups, &init_css_set);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005042
Li Zefan1ec41832014-03-28 15:22:19 +08005043 if (need_forkexit_callback) {
Tejun Heo3ed80a62014-02-08 10:36:58 -05005044 /* see cgroup_post_fork() for details */
5045 for_each_subsys(ss, i) {
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005046 if (ss->exit) {
Tejun Heoeb954192013-08-08 20:11:23 -04005047 struct cgroup_subsys_state *old_css = cset->subsys[i];
5048 struct cgroup_subsys_state *css = task_css(tsk, i);
Tejun Heo30159ec2013-06-25 11:53:37 -07005049
Tejun Heoeb954192013-08-08 20:11:23 -04005050 ss->exit(css, old_css, tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005051 }
5052 }
5053 }
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005054
Tejun Heoeaf797a2014-02-25 10:04:03 -05005055 if (put_cset)
5056 put_css_set(cset, true);
Paul Menageb4f48b62007-10-18 23:39:33 -07005057}
Paul Menage697f4162007-10-18 23:39:34 -07005058
Paul Menagebd89aab2007-10-18 23:40:44 -07005059static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07005060{
Tejun Heof3d46502014-05-16 13:22:52 -04005061 if (cgroup_is_releasable(cgrp) && list_empty(&cgrp->cset_links) &&
5062 !css_has_online_children(&cgrp->self)) {
Li Zefanf50daa72013-03-01 15:06:07 +08005063 /*
5064 * Control Group is currently removeable. If it's not
Paul Menage81a6a5c2007-10-18 23:39:38 -07005065 * already queued for a userspace notification, queue
Li Zefanf50daa72013-03-01 15:06:07 +08005066 * it now
5067 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07005068 int need_schedule_work = 0;
Li Zefanf50daa72013-03-01 15:06:07 +08005069
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005070 raw_spin_lock(&release_list_lock);
Tejun Heo54766d42013-06-12 21:04:53 -07005071 if (!cgroup_is_dead(cgrp) &&
Paul Menagebd89aab2007-10-18 23:40:44 -07005072 list_empty(&cgrp->release_list)) {
5073 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005074 need_schedule_work = 1;
5075 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005076 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005077 if (need_schedule_work)
5078 schedule_work(&release_agent_work);
5079 }
5080}
5081
Paul Menage81a6a5c2007-10-18 23:39:38 -07005082/*
5083 * Notify userspace when a cgroup is released, by running the
5084 * configured release agent with the name of the cgroup (path
5085 * relative to the root of cgroup file system) as the argument.
5086 *
5087 * Most likely, this user command will try to rmdir this cgroup.
5088 *
5089 * This races with the possibility that some other task will be
5090 * attached to this cgroup before it is removed, or that some other
5091 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
5092 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
5093 * unused, and this cgroup will be reprieved from its death sentence,
5094 * to continue to serve a useful existence. Next time it's released,
5095 * we will get notified again, if it still has 'notify_on_release' set.
5096 *
5097 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
5098 * means only wait until the task is successfully execve()'d. The
5099 * separate release agent task is forked by call_usermodehelper(),
5100 * then control in this thread returns here, without waiting for the
5101 * release agent task. We don't bother to wait because the caller of
5102 * this routine has no use for the exit status of the release agent
5103 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07005104 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07005105static void cgroup_release_agent(struct work_struct *work)
5106{
5107 BUG_ON(work != &release_agent_work);
5108 mutex_lock(&cgroup_mutex);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005109 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005110 while (!list_empty(&release_list)) {
5111 char *argv[3], *envp[3];
5112 int i;
Tejun Heoe61734c2014-02-12 09:29:50 -05005113 char *pathbuf = NULL, *agentbuf = NULL, *path;
Paul Menagebd89aab2007-10-18 23:40:44 -07005114 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07005115 struct cgroup,
5116 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07005117 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005118 raw_spin_unlock(&release_list_lock);
Tejun Heoe61734c2014-02-12 09:29:50 -05005119 pathbuf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagee788e062008-07-25 01:46:59 -07005120 if (!pathbuf)
5121 goto continue_free;
Tejun Heoe61734c2014-02-12 09:29:50 -05005122 path = cgroup_path(cgrp, pathbuf, PATH_MAX);
5123 if (!path)
Paul Menagee788e062008-07-25 01:46:59 -07005124 goto continue_free;
5125 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
5126 if (!agentbuf)
5127 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005128
5129 i = 0;
Paul Menagee788e062008-07-25 01:46:59 -07005130 argv[i++] = agentbuf;
Tejun Heoe61734c2014-02-12 09:29:50 -05005131 argv[i++] = path;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005132 argv[i] = NULL;
5133
5134 i = 0;
5135 /* minimal command environment */
5136 envp[i++] = "HOME=/";
5137 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
5138 envp[i] = NULL;
5139
5140 /* Drop the lock while we invoke the usermode helper,
5141 * since the exec could involve hitting disk and hence
5142 * be a slow process */
5143 mutex_unlock(&cgroup_mutex);
5144 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005145 mutex_lock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07005146 continue_free:
5147 kfree(pathbuf);
5148 kfree(agentbuf);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005149 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005150 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005151 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005152 mutex_unlock(&cgroup_mutex);
5153}
Paul Menage8bab8dd2008-04-04 14:29:57 -07005154
5155static int __init cgroup_disable(char *str)
5156{
Tejun Heo30159ec2013-06-25 11:53:37 -07005157 struct cgroup_subsys *ss;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005158 char *token;
Tejun Heo30159ec2013-06-25 11:53:37 -07005159 int i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005160
5161 while ((token = strsep(&str, ",")) != NULL) {
5162 if (!*token)
5163 continue;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005164
Tejun Heo3ed80a62014-02-08 10:36:58 -05005165 for_each_subsys(ss, i) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07005166 if (!strcmp(token, ss->name)) {
5167 ss->disabled = 1;
5168 printk(KERN_INFO "Disabling %s control group"
5169 " subsystem\n", ss->name);
5170 break;
5171 }
5172 }
5173 }
5174 return 1;
5175}
5176__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005177
Tejun Heob77d7b62013-08-13 11:01:54 -04005178/**
Tejun Heoec903c02014-05-13 12:11:01 -04005179 * css_tryget_online_from_dir - get corresponding css from a cgroup dentry
Tejun Heo35cf0832013-08-26 18:40:56 -04005180 * @dentry: directory dentry of interest
5181 * @ss: subsystem of interest
Tejun Heob77d7b62013-08-13 11:01:54 -04005182 *
Tejun Heo5a17f542014-02-11 11:52:47 -05005183 * If @dentry is a directory for a cgroup which has @ss enabled on it, try
5184 * to get the corresponding css and return it. If such css doesn't exist
5185 * or can't be pinned, an ERR_PTR value is returned.
Stephane Eraniane5d13672011-02-14 11:20:01 +02005186 */
Tejun Heoec903c02014-05-13 12:11:01 -04005187struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry,
5188 struct cgroup_subsys *ss)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005189{
Tejun Heo2bd59d42014-02-11 11:52:49 -05005190 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
5191 struct cgroup_subsys_state *css = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005192 struct cgroup *cgrp;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005193
Tejun Heo35cf0832013-08-26 18:40:56 -04005194 /* is @dentry a cgroup dir? */
Tejun Heo2bd59d42014-02-11 11:52:49 -05005195 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
5196 kernfs_type(kn) != KERNFS_DIR)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005197 return ERR_PTR(-EBADF);
5198
Tejun Heo5a17f542014-02-11 11:52:47 -05005199 rcu_read_lock();
5200
Tejun Heo2bd59d42014-02-11 11:52:49 -05005201 /*
5202 * This path doesn't originate from kernfs and @kn could already
5203 * have been or be removed at any point. @kn->priv is RCU
Tejun Heocfc79d52014-05-13 12:19:22 -04005204 * protected for this access. See cgroup_rmdir() for details.
Tejun Heo2bd59d42014-02-11 11:52:49 -05005205 */
5206 cgrp = rcu_dereference(kn->priv);
5207 if (cgrp)
5208 css = cgroup_css(cgrp, ss);
Tejun Heo5a17f542014-02-11 11:52:47 -05005209
Tejun Heoec903c02014-05-13 12:11:01 -04005210 if (!css || !css_tryget_online(css))
Tejun Heo5a17f542014-02-11 11:52:47 -05005211 css = ERR_PTR(-ENOENT);
5212
5213 rcu_read_unlock();
5214 return css;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005215}
Stephane Eraniane5d13672011-02-14 11:20:01 +02005216
Li Zefan1cb650b2013-08-19 10:05:24 +08005217/**
5218 * css_from_id - lookup css by id
5219 * @id: the cgroup id
5220 * @ss: cgroup subsys to be looked into
5221 *
5222 * Returns the css if there's valid one with @id, otherwise returns NULL.
5223 * Should be called under rcu_read_lock().
5224 */
5225struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss)
5226{
Tejun Heo6fa49182014-05-04 15:09:13 -04005227 WARN_ON_ONCE(!rcu_read_lock_held());
Tejun Heo15a4c832014-05-04 15:09:14 -04005228 return idr_find(&ss->css_idr, id);
Stephane Eraniane5d13672011-02-14 11:20:01 +02005229}
5230
Paul Menagefe693432009-09-23 15:56:20 -07005231#ifdef CONFIG_CGROUP_DEBUG
Tejun Heoeb954192013-08-08 20:11:23 -04005232static struct cgroup_subsys_state *
5233debug_css_alloc(struct cgroup_subsys_state *parent_css)
Paul Menagefe693432009-09-23 15:56:20 -07005234{
5235 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
5236
5237 if (!css)
5238 return ERR_PTR(-ENOMEM);
5239
5240 return css;
5241}
5242
Tejun Heoeb954192013-08-08 20:11:23 -04005243static void debug_css_free(struct cgroup_subsys_state *css)
Paul Menagefe693432009-09-23 15:56:20 -07005244{
Tejun Heoeb954192013-08-08 20:11:23 -04005245 kfree(css);
Paul Menagefe693432009-09-23 15:56:20 -07005246}
5247
Tejun Heo182446d2013-08-08 20:11:24 -04005248static u64 debug_taskcount_read(struct cgroup_subsys_state *css,
5249 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005250{
Tejun Heo182446d2013-08-08 20:11:24 -04005251 return cgroup_task_count(css->cgroup);
Paul Menagefe693432009-09-23 15:56:20 -07005252}
5253
Tejun Heo182446d2013-08-08 20:11:24 -04005254static u64 current_css_set_read(struct cgroup_subsys_state *css,
5255 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005256{
5257 return (u64)(unsigned long)current->cgroups;
5258}
5259
Tejun Heo182446d2013-08-08 20:11:24 -04005260static u64 current_css_set_refcount_read(struct cgroup_subsys_state *css,
Li Zefan03c78cb2013-06-14 11:17:19 +08005261 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005262{
5263 u64 count;
5264
5265 rcu_read_lock();
Tejun Heoa8ad8052013-06-21 15:52:04 -07005266 count = atomic_read(&task_css_set(current)->refcount);
Paul Menagefe693432009-09-23 15:56:20 -07005267 rcu_read_unlock();
5268 return count;
5269}
5270
Tejun Heo2da8ca82013-12-05 12:28:04 -05005271static int current_css_set_cg_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005272{
Tejun Heo69d02062013-06-12 21:04:50 -07005273 struct cgrp_cset_link *link;
Tejun Heo5abb8852013-06-12 21:04:49 -07005274 struct css_set *cset;
Tejun Heoe61734c2014-02-12 09:29:50 -05005275 char *name_buf;
Paul Menage7717f7b2009-09-23 15:56:22 -07005276
Tejun Heoe61734c2014-02-12 09:29:50 -05005277 name_buf = kmalloc(NAME_MAX + 1, GFP_KERNEL);
5278 if (!name_buf)
5279 return -ENOMEM;
Paul Menage7717f7b2009-09-23 15:56:22 -07005280
Tejun Heo96d365e2014-02-13 06:58:40 -05005281 down_read(&css_set_rwsem);
Paul Menage7717f7b2009-09-23 15:56:22 -07005282 rcu_read_lock();
Tejun Heo5abb8852013-06-12 21:04:49 -07005283 cset = rcu_dereference(current->cgroups);
Tejun Heo69d02062013-06-12 21:04:50 -07005284 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07005285 struct cgroup *c = link->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -07005286
Tejun Heoa2dd4242014-03-19 10:23:55 -04005287 cgroup_name(c, name_buf, NAME_MAX + 1);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005288 seq_printf(seq, "Root %d group %s\n",
Tejun Heoa2dd4242014-03-19 10:23:55 -04005289 c->root->hierarchy_id, name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07005290 }
5291 rcu_read_unlock();
Tejun Heo96d365e2014-02-13 06:58:40 -05005292 up_read(&css_set_rwsem);
Tejun Heoe61734c2014-02-12 09:29:50 -05005293 kfree(name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07005294 return 0;
5295}
5296
5297#define MAX_TASKS_SHOWN_PER_CSS 25
Tejun Heo2da8ca82013-12-05 12:28:04 -05005298static int cgroup_css_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005299{
Tejun Heo2da8ca82013-12-05 12:28:04 -05005300 struct cgroup_subsys_state *css = seq_css(seq);
Tejun Heo69d02062013-06-12 21:04:50 -07005301 struct cgrp_cset_link *link;
Paul Menage7717f7b2009-09-23 15:56:22 -07005302
Tejun Heo96d365e2014-02-13 06:58:40 -05005303 down_read(&css_set_rwsem);
Tejun Heo182446d2013-08-08 20:11:24 -04005304 list_for_each_entry(link, &css->cgroup->cset_links, cset_link) {
Tejun Heo69d02062013-06-12 21:04:50 -07005305 struct css_set *cset = link->cset;
Paul Menage7717f7b2009-09-23 15:56:22 -07005306 struct task_struct *task;
5307 int count = 0;
Tejun Heoc7561122014-02-25 10:04:01 -05005308
Tejun Heo5abb8852013-06-12 21:04:49 -07005309 seq_printf(seq, "css_set %p\n", cset);
Tejun Heoc7561122014-02-25 10:04:01 -05005310
Tejun Heo5abb8852013-06-12 21:04:49 -07005311 list_for_each_entry(task, &cset->tasks, cg_list) {
Tejun Heoc7561122014-02-25 10:04:01 -05005312 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
5313 goto overflow;
5314 seq_printf(seq, " task %d\n", task_pid_vnr(task));
Paul Menage7717f7b2009-09-23 15:56:22 -07005315 }
Tejun Heoc7561122014-02-25 10:04:01 -05005316
5317 list_for_each_entry(task, &cset->mg_tasks, cg_list) {
5318 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
5319 goto overflow;
5320 seq_printf(seq, " task %d\n", task_pid_vnr(task));
5321 }
5322 continue;
5323 overflow:
5324 seq_puts(seq, " ...\n");
Paul Menage7717f7b2009-09-23 15:56:22 -07005325 }
Tejun Heo96d365e2014-02-13 06:58:40 -05005326 up_read(&css_set_rwsem);
Paul Menage7717f7b2009-09-23 15:56:22 -07005327 return 0;
5328}
5329
Tejun Heo182446d2013-08-08 20:11:24 -04005330static u64 releasable_read(struct cgroup_subsys_state *css, struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005331{
Tejun Heo182446d2013-08-08 20:11:24 -04005332 return test_bit(CGRP_RELEASABLE, &css->cgroup->flags);
Paul Menagefe693432009-09-23 15:56:20 -07005333}
5334
5335static struct cftype debug_files[] = {
5336 {
Paul Menagefe693432009-09-23 15:56:20 -07005337 .name = "taskcount",
5338 .read_u64 = debug_taskcount_read,
5339 },
5340
5341 {
5342 .name = "current_css_set",
5343 .read_u64 = current_css_set_read,
5344 },
5345
5346 {
5347 .name = "current_css_set_refcount",
5348 .read_u64 = current_css_set_refcount_read,
5349 },
5350
5351 {
Paul Menage7717f7b2009-09-23 15:56:22 -07005352 .name = "current_css_set_cg_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005353 .seq_show = current_css_set_cg_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07005354 },
5355
5356 {
5357 .name = "cgroup_css_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005358 .seq_show = cgroup_css_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07005359 },
5360
5361 {
Paul Menagefe693432009-09-23 15:56:20 -07005362 .name = "releasable",
5363 .read_u64 = releasable_read,
5364 },
Paul Menagefe693432009-09-23 15:56:20 -07005365
Tejun Heo4baf6e32012-04-01 12:09:55 -07005366 { } /* terminate */
5367};
Paul Menagefe693432009-09-23 15:56:20 -07005368
Tejun Heo073219e2014-02-08 10:36:58 -05005369struct cgroup_subsys debug_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08005370 .css_alloc = debug_css_alloc,
5371 .css_free = debug_css_free,
Tejun Heo4baf6e32012-04-01 12:09:55 -07005372 .base_cftypes = debug_files,
Paul Menagefe693432009-09-23 15:56:20 -07005373};
5374#endif /* CONFIG_CGROUP_DEBUG */