blob: 3a6b77d7ba4a3f6edef08748714254ffa9194ab6 [file] [log] [blame]
Paul Menageddbcc7e2007-10-18 23:39:30 -07001/*
Paul Menageddbcc7e2007-10-18 23:39:30 -07002 * Generic process-grouping system.
3 *
4 * Based originally on the cpuset system, extracted by Paul Menage
5 * Copyright (C) 2006 Google, Inc
6 *
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08007 * Notifications support
8 * Copyright (C) 2009 Nokia Corporation
9 * Author: Kirill A. Shutemov
10 *
Paul Menageddbcc7e2007-10-18 23:39:30 -070011 * Copyright notices from the original cpuset code:
12 * --------------------------------------------------
13 * Copyright (C) 2003 BULL SA.
14 * Copyright (C) 2004-2006 Silicon Graphics, Inc.
15 *
16 * Portions derived from Patrick Mochel's sysfs code.
17 * sysfs is Copyright (c) 2001-3 Patrick Mochel
18 *
19 * 2003-10-10 Written by Simon Derr.
20 * 2003-10-22 Updates by Stephen Hemminger.
21 * 2004 May-July Rework by Paul Jackson.
22 * ---------------------------------------------------
23 *
24 * This file is subject to the terms and conditions of the GNU General Public
25 * License. See the file COPYING in the main directory of the Linux
26 * distribution for more details.
27 */
28
Joe Perchesed3d2612014-04-25 18:28:03 -040029#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30
Paul Menageddbcc7e2007-10-18 23:39:30 -070031#include <linux/cgroup.h>
eparis@redhat2ce97382011-06-02 21:20:51 +100032#include <linux/cred.h>
Paul Menagec6d57f32009-09-23 15:56:19 -070033#include <linux/ctype.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070034#include <linux/errno.h>
eparis@redhat2ce97382011-06-02 21:20:51 +100035#include <linux/init_task.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070036#include <linux/kernel.h>
37#include <linux/list.h>
Jianyu Zhanc9482a52014-04-26 15:40:28 +080038#include <linux/magic.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070039#include <linux/mm.h>
40#include <linux/mutex.h>
41#include <linux/mount.h>
42#include <linux/pagemap.h>
Paul Menagea4243162007-10-18 23:39:35 -070043#include <linux/proc_fs.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070044#include <linux/rcupdate.h>
45#include <linux/sched.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070046#include <linux/slab.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070047#include <linux/spinlock.h>
Tejun Heo96d365e2014-02-13 06:58:40 -050048#include <linux/rwsem.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070049#include <linux/string.h>
Paul Menagebbcb81d2007-10-18 23:39:32 -070050#include <linux/sort.h>
Paul Menage81a6a5c2007-10-18 23:39:38 -070051#include <linux/kmod.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070052#include <linux/delayacct.h>
53#include <linux/cgroupstats.h>
Li Zefan0ac801f2013-01-10 11:49:27 +080054#include <linux/hashtable.h>
Li Zefan096b7fe2009-07-29 15:04:04 -070055#include <linux/pid_namespace.h>
Paul Menage2c6ab6d2009-09-23 15:56:23 -070056#include <linux/idr.h>
Ben Blumd1d9fd32009-09-23 15:56:28 -070057#include <linux/vmalloc.h> /* TODO: replace with more sophisticated array */
Mike Galbraithc4c27fb2012-04-21 09:13:46 +020058#include <linux/kthread.h>
Tejun Heo776f02f2014-02-12 09:29:50 -050059#include <linux/delay.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070060
Arun Sharma600634972011-07-26 16:09:06 -070061#include <linux/atomic.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070062
Tejun Heoe25e2cb2011-12-12 18:12:21 -080063/*
Tejun Heob1a21362013-11-29 10:42:58 -050064 * pidlists linger the following amount before being destroyed. The goal
65 * is avoiding frequent destruction in the middle of consecutive read calls
66 * Expiring in the middle is a performance problem not a correctness one.
67 * 1 sec should be enough.
68 */
69#define CGROUP_PIDLIST_DESTROY_DELAY HZ
70
Tejun Heo8d7e6fb2014-02-11 11:52:48 -050071#define CGROUP_FILE_NAME_MAX (MAX_CGROUP_TYPE_NAMELEN + \
72 MAX_CFTYPE_NAME + 2)
73
Tejun Heob1a21362013-11-29 10:42:58 -050074/*
Tejun Heoe25e2cb2011-12-12 18:12:21 -080075 * cgroup_mutex is the master lock. Any modification to cgroup or its
76 * hierarchy must be performed while holding it.
77 *
Tejun Heo0e1d7682014-02-25 10:04:03 -050078 * css_set_rwsem protects task->cgroups pointer, the list of css_set
79 * objects, and the chain of tasks off each css_set.
Tejun Heoe25e2cb2011-12-12 18:12:21 -080080 *
Tejun Heo0e1d7682014-02-25 10:04:03 -050081 * These locks are exported if CONFIG_PROVE_RCU so that accessors in
82 * cgroup.h can use them for lockdep annotations.
Tejun Heoe25e2cb2011-12-12 18:12:21 -080083 */
Tejun Heo22194492013-04-07 09:29:51 -070084#ifdef CONFIG_PROVE_RCU
85DEFINE_MUTEX(cgroup_mutex);
Tejun Heo0e1d7682014-02-25 10:04:03 -050086DECLARE_RWSEM(css_set_rwsem);
87EXPORT_SYMBOL_GPL(cgroup_mutex);
88EXPORT_SYMBOL_GPL(css_set_rwsem);
Tejun Heo22194492013-04-07 09:29:51 -070089#else
Paul Menage81a6a5c2007-10-18 23:39:38 -070090static DEFINE_MUTEX(cgroup_mutex);
Tejun Heo0e1d7682014-02-25 10:04:03 -050091static DECLARE_RWSEM(css_set_rwsem);
Tejun Heo22194492013-04-07 09:29:51 -070092#endif
93
Tejun Heo69e943b2014-02-08 10:36:58 -050094/*
Tejun Heo15a4c832014-05-04 15:09:14 -040095 * Protects cgroup_idr and css_idr so that IDs can be released without
96 * grabbing cgroup_mutex.
Tejun Heo6fa49182014-05-04 15:09:13 -040097 */
98static DEFINE_SPINLOCK(cgroup_idr_lock);
99
100/*
Tejun Heo69e943b2014-02-08 10:36:58 -0500101 * Protects cgroup_subsys->release_agent_path. Modifying it also requires
102 * cgroup_mutex. Reading requires either cgroup_mutex or this spinlock.
103 */
104static DEFINE_SPINLOCK(release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700105
Tejun Heo8353da12014-05-13 12:19:23 -0400106#define cgroup_assert_mutex_or_rcu_locked() \
Tejun Heo87fb54f2013-12-06 15:11:55 -0500107 rcu_lockdep_assert(rcu_read_lock_held() || \
108 lockdep_is_held(&cgroup_mutex), \
Tejun Heo8353da12014-05-13 12:19:23 -0400109 "cgroup_mutex or RCU read lock required");
Tejun Heo780cd8b2013-12-06 15:11:56 -0500110
Ben Blumaae8aab2010-03-10 15:22:07 -0800111/*
Tejun Heoe5fca242013-11-22 17:14:39 -0500112 * cgroup destruction makes heavy use of work items and there can be a lot
113 * of concurrent destructions. Use a separate workqueue so that cgroup
114 * destruction work items don't end up filling up max_active of system_wq
115 * which may lead to deadlock.
116 */
117static struct workqueue_struct *cgroup_destroy_wq;
118
119/*
Tejun Heob1a21362013-11-29 10:42:58 -0500120 * pidlist destructions need to be flushed on cgroup destruction. Use a
121 * separate workqueue as flush domain.
122 */
123static struct workqueue_struct *cgroup_pidlist_destroy_wq;
124
Tejun Heo3ed80a62014-02-08 10:36:58 -0500125/* generate an array of cgroup subsystem pointers */
Tejun Heo073219e2014-02-08 10:36:58 -0500126#define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys,
Tejun Heo3ed80a62014-02-08 10:36:58 -0500127static struct cgroup_subsys *cgroup_subsys[] = {
Paul Menageddbcc7e2007-10-18 23:39:30 -0700128#include <linux/cgroup_subsys.h>
129};
Tejun Heo073219e2014-02-08 10:36:58 -0500130#undef SUBSYS
131
132/* array of cgroup subsystem names */
133#define SUBSYS(_x) [_x ## _cgrp_id] = #_x,
134static const char *cgroup_subsys_name[] = {
135#include <linux/cgroup_subsys.h>
136};
137#undef SUBSYS
Paul Menageddbcc7e2007-10-18 23:39:30 -0700138
Paul Menageddbcc7e2007-10-18 23:39:30 -0700139/*
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400140 * The default hierarchy, reserved for the subsystems that are otherwise
Tejun Heo9871bf92013-06-24 15:21:47 -0700141 * unattached - it never has more than a single cgroup, and all tasks are
142 * part of that cgroup.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700143 */
Tejun Heoa2dd4242014-03-19 10:23:55 -0400144struct cgroup_root cgrp_dfl_root;
Tejun Heo9871bf92013-06-24 15:21:47 -0700145
Tejun Heoa2dd4242014-03-19 10:23:55 -0400146/*
147 * The default hierarchy always exists but is hidden until mounted for the
148 * first time. This is for backward compatibility.
149 */
150static bool cgrp_dfl_root_visible;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700151
Tejun Heo5533e012014-05-14 19:33:07 -0400152/* some controllers are not supported in the default hierarchy */
153static const unsigned int cgrp_dfl_root_inhibit_ss_mask = 0
154#ifdef CONFIG_CGROUP_DEBUG
155 | (1 << debug_cgrp_id)
156#endif
157 ;
158
Paul Menageddbcc7e2007-10-18 23:39:30 -0700159/* The list of hierarchy roots */
160
Tejun Heo9871bf92013-06-24 15:21:47 -0700161static LIST_HEAD(cgroup_roots);
162static int cgroup_root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700163
Tejun Heo3417ae12014-02-08 10:37:01 -0500164/* hierarchy ID allocation and mapping, protected by cgroup_mutex */
Tejun Heo1a574232013-04-14 11:36:58 -0700165static DEFINE_IDR(cgroup_hierarchy_idr);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700166
Li Zefan794611a2013-06-18 18:53:53 +0800167/*
Tejun Heo0cb51d72014-05-16 13:22:49 -0400168 * Assign a monotonically increasing serial number to csses. It guarantees
169 * cgroups with bigger numbers are newer than those with smaller numbers.
170 * Also, as csses are always appended to the parent's ->children list, it
171 * guarantees that sibling csses are always sorted in the ascending serial
172 * number order on the list. Protected by cgroup_mutex.
Li Zefan794611a2013-06-18 18:53:53 +0800173 */
Tejun Heo0cb51d72014-05-16 13:22:49 -0400174static u64 css_serial_nr_next = 1;
Li Zefan794611a2013-06-18 18:53:53 +0800175
Paul Menageddbcc7e2007-10-18 23:39:30 -0700176/* This flag indicates whether tasks in the fork and exit paths should
Li Zefana043e3b2008-02-23 15:24:09 -0800177 * check for fork/exit handlers to call. This avoids us having to do
178 * extra work in the fork/exit path if none of the subsystems need to
179 * be called.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700180 */
Li Zefan8947f9d2008-07-25 01:46:56 -0700181static int need_forkexit_callback __read_mostly;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700182
Tejun Heo628f7cd2013-06-28 16:24:11 -0700183static struct cftype cgroup_base_files[];
184
Tejun Heo59f52962014-02-11 11:52:49 -0500185static void cgroup_put(struct cgroup *cgrp);
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400186static int rebind_subsystems(struct cgroup_root *dst_root,
Tejun Heo69dfa002014-05-04 15:09:13 -0400187 unsigned int ss_mask);
Tejun Heo42809dd2012-11-19 08:13:37 -0800188static int cgroup_destroy_locked(struct cgroup *cgrp);
Tejun Heof63070d2014-07-08 18:02:57 -0400189static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss,
190 bool visible);
Tejun Heo9d755d32014-05-14 09:15:02 -0400191static void css_release(struct percpu_ref *ref);
Tejun Heof8f22e52014-04-23 11:13:16 -0400192static void kill_css(struct cgroup_subsys_state *css);
Tejun Heo2bb566c2013-08-08 20:11:23 -0400193static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
194 bool is_add);
Tejun Heob1a21362013-11-29 10:42:58 -0500195static void cgroup_pidlist_destroy_all(struct cgroup *cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -0800196
Tejun Heo6fa49182014-05-04 15:09:13 -0400197/* IDR wrappers which synchronize using cgroup_idr_lock */
198static int cgroup_idr_alloc(struct idr *idr, void *ptr, int start, int end,
199 gfp_t gfp_mask)
200{
201 int ret;
202
203 idr_preload(gfp_mask);
Tejun Heo54504e92014-05-13 12:10:59 -0400204 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400205 ret = idr_alloc(idr, ptr, start, end, gfp_mask);
Tejun Heo54504e92014-05-13 12:10:59 -0400206 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400207 idr_preload_end();
208 return ret;
209}
210
211static void *cgroup_idr_replace(struct idr *idr, void *ptr, int id)
212{
213 void *ret;
214
Tejun Heo54504e92014-05-13 12:10:59 -0400215 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400216 ret = idr_replace(idr, ptr, id);
Tejun Heo54504e92014-05-13 12:10:59 -0400217 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400218 return ret;
219}
220
221static void cgroup_idr_remove(struct idr *idr, int id)
222{
Tejun Heo54504e92014-05-13 12:10:59 -0400223 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400224 idr_remove(idr, id);
Tejun Heo54504e92014-05-13 12:10:59 -0400225 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400226}
227
Tejun Heod51f39b2014-05-16 13:22:48 -0400228static struct cgroup *cgroup_parent(struct cgroup *cgrp)
229{
230 struct cgroup_subsys_state *parent_css = cgrp->self.parent;
231
232 if (parent_css)
233 return container_of(parent_css, struct cgroup, self);
234 return NULL;
235}
236
Tejun Heo95109b62013-08-08 20:11:27 -0400237/**
238 * cgroup_css - obtain a cgroup's css for the specified subsystem
239 * @cgrp: the cgroup of interest
Tejun Heo9d800df2014-05-14 09:15:00 -0400240 * @ss: the subsystem of interest (%NULL returns @cgrp->self)
Tejun Heo95109b62013-08-08 20:11:27 -0400241 *
Tejun Heoca8bdca2013-08-26 18:40:56 -0400242 * Return @cgrp's css (cgroup_subsys_state) associated with @ss. This
243 * function must be called either under cgroup_mutex or rcu_read_lock() and
244 * the caller is responsible for pinning the returned css if it wants to
245 * keep accessing it outside the said locks. This function may return
246 * %NULL if @cgrp doesn't have @subsys_id enabled.
Tejun Heo95109b62013-08-08 20:11:27 -0400247 */
248static struct cgroup_subsys_state *cgroup_css(struct cgroup *cgrp,
Tejun Heoca8bdca2013-08-26 18:40:56 -0400249 struct cgroup_subsys *ss)
Tejun Heo95109b62013-08-08 20:11:27 -0400250{
Tejun Heoca8bdca2013-08-26 18:40:56 -0400251 if (ss)
Tejun Heoaec25022014-02-08 10:36:58 -0500252 return rcu_dereference_check(cgrp->subsys[ss->id],
Tejun Heoace2bee2014-02-11 11:52:47 -0500253 lockdep_is_held(&cgroup_mutex));
Tejun Heoca8bdca2013-08-26 18:40:56 -0400254 else
Tejun Heo9d800df2014-05-14 09:15:00 -0400255 return &cgrp->self;
Tejun Heo95109b62013-08-08 20:11:27 -0400256}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700257
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400258/**
259 * cgroup_e_css - obtain a cgroup's effective css for the specified subsystem
260 * @cgrp: the cgroup of interest
Tejun Heo9d800df2014-05-14 09:15:00 -0400261 * @ss: the subsystem of interest (%NULL returns @cgrp->self)
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400262 *
263 * Similar to cgroup_css() but returns the effctive css, which is defined
264 * as the matching css of the nearest ancestor including self which has @ss
265 * enabled. If @ss is associated with the hierarchy @cgrp is on, this
266 * function is guaranteed to return non-NULL css.
267 */
268static struct cgroup_subsys_state *cgroup_e_css(struct cgroup *cgrp,
269 struct cgroup_subsys *ss)
270{
271 lockdep_assert_held(&cgroup_mutex);
272
273 if (!ss)
Tejun Heo9d800df2014-05-14 09:15:00 -0400274 return &cgrp->self;
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400275
276 if (!(cgrp->root->subsys_mask & (1 << ss->id)))
277 return NULL;
278
Tejun Heod51f39b2014-05-16 13:22:48 -0400279 while (cgroup_parent(cgrp) &&
280 !(cgroup_parent(cgrp)->child_subsys_mask & (1 << ss->id)))
281 cgrp = cgroup_parent(cgrp);
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400282
283 return cgroup_css(cgrp, ss);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700284}
285
Paul Menageddbcc7e2007-10-18 23:39:30 -0700286/* convenient tests for these bits */
Tejun Heo54766d42013-06-12 21:04:53 -0700287static inline bool cgroup_is_dead(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700288{
Tejun Heo184faf32014-05-16 13:22:51 -0400289 return !(cgrp->self.flags & CSS_ONLINE);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700290}
291
Tejun Heob4168642014-05-13 12:16:21 -0400292struct cgroup_subsys_state *of_css(struct kernfs_open_file *of)
Tejun Heo59f52962014-02-11 11:52:49 -0500293{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500294 struct cgroup *cgrp = of->kn->parent->priv;
Tejun Heob4168642014-05-13 12:16:21 -0400295 struct cftype *cft = of_cft(of);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500296
297 /*
298 * This is open and unprotected implementation of cgroup_css().
299 * seq_css() is only called from a kernfs file operation which has
300 * an active reference on the file. Because all the subsystem
301 * files are drained before a css is disassociated with a cgroup,
302 * the matching css from the cgroup's subsys table is guaranteed to
303 * be and stay valid until the enclosing operation is complete.
304 */
305 if (cft->ss)
306 return rcu_dereference_raw(cgrp->subsys[cft->ss->id]);
307 else
Tejun Heo9d800df2014-05-14 09:15:00 -0400308 return &cgrp->self;
Tejun Heo59f52962014-02-11 11:52:49 -0500309}
Tejun Heob4168642014-05-13 12:16:21 -0400310EXPORT_SYMBOL_GPL(of_css);
Tejun Heo59f52962014-02-11 11:52:49 -0500311
Li Zefan78574cf2013-04-08 19:00:38 -0700312/**
313 * cgroup_is_descendant - test ancestry
314 * @cgrp: the cgroup to be tested
315 * @ancestor: possible ancestor of @cgrp
316 *
317 * Test whether @cgrp is a descendant of @ancestor. It also returns %true
318 * if @cgrp == @ancestor. This function is safe to call as long as @cgrp
319 * and @ancestor are accessible.
320 */
321bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor)
322{
323 while (cgrp) {
324 if (cgrp == ancestor)
325 return true;
Tejun Heod51f39b2014-05-16 13:22:48 -0400326 cgrp = cgroup_parent(cgrp);
Li Zefan78574cf2013-04-08 19:00:38 -0700327 }
328 return false;
329}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700330
Adrian Bunke9685a02008-02-07 00:13:46 -0800331static int cgroup_is_releasable(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700332{
333 const int bits =
Paul Menagebd89aab2007-10-18 23:40:44 -0700334 (1 << CGRP_RELEASABLE) |
335 (1 << CGRP_NOTIFY_ON_RELEASE);
336 return (cgrp->flags & bits) == bits;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700337}
338
Adrian Bunke9685a02008-02-07 00:13:46 -0800339static int notify_on_release(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700340{
Paul Menagebd89aab2007-10-18 23:40:44 -0700341 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700342}
343
Tejun Heo30159ec2013-06-25 11:53:37 -0700344/**
Tejun Heo1c6727a2013-12-06 15:11:56 -0500345 * for_each_css - iterate all css's of a cgroup
346 * @css: the iteration cursor
347 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
348 * @cgrp: the target cgroup to iterate css's of
Tejun Heo30159ec2013-06-25 11:53:37 -0700349 *
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400350 * Should be called under cgroup_[tree_]mutex.
Tejun Heo30159ec2013-06-25 11:53:37 -0700351 */
Tejun Heo1c6727a2013-12-06 15:11:56 -0500352#define for_each_css(css, ssid, cgrp) \
353 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
354 if (!((css) = rcu_dereference_check( \
355 (cgrp)->subsys[(ssid)], \
356 lockdep_is_held(&cgroup_mutex)))) { } \
357 else
358
359/**
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400360 * for_each_e_css - iterate all effective css's of a cgroup
361 * @css: the iteration cursor
362 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
363 * @cgrp: the target cgroup to iterate css's of
364 *
365 * Should be called under cgroup_[tree_]mutex.
366 */
367#define for_each_e_css(css, ssid, cgrp) \
368 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
369 if (!((css) = cgroup_e_css(cgrp, cgroup_subsys[(ssid)]))) \
370 ; \
371 else
372
373/**
Tejun Heo3ed80a62014-02-08 10:36:58 -0500374 * for_each_subsys - iterate all enabled cgroup subsystems
Tejun Heo30159ec2013-06-25 11:53:37 -0700375 * @ss: the iteration cursor
Tejun Heo780cd8b2013-12-06 15:11:56 -0500376 * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end
Tejun Heo30159ec2013-06-25 11:53:37 -0700377 */
Tejun Heo780cd8b2013-12-06 15:11:56 -0500378#define for_each_subsys(ss, ssid) \
Tejun Heo3ed80a62014-02-08 10:36:58 -0500379 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT && \
380 (((ss) = cgroup_subsys[ssid]) || true); (ssid)++)
Tejun Heo30159ec2013-06-25 11:53:37 -0700381
Tejun Heo985ed672014-03-19 10:23:53 -0400382/* iterate across the hierarchies */
383#define for_each_root(root) \
Tejun Heo5549c492013-06-24 15:21:48 -0700384 list_for_each_entry((root), &cgroup_roots, root_list)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700385
Tejun Heof8f22e52014-04-23 11:13:16 -0400386/* iterate over child cgrps, lock should be held throughout iteration */
387#define cgroup_for_each_live_child(child, cgrp) \
Tejun Heod5c419b2014-05-16 13:22:48 -0400388 list_for_each_entry((child), &(cgrp)->self.children, self.sibling) \
Tejun Heo8353da12014-05-13 12:19:23 -0400389 if (({ lockdep_assert_held(&cgroup_mutex); \
Tejun Heof8f22e52014-04-23 11:13:16 -0400390 cgroup_is_dead(child); })) \
391 ; \
392 else
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700393
Paul Menage81a6a5c2007-10-18 23:39:38 -0700394/* the list of cgroups eligible for automatic release. Protected by
395 * release_list_lock */
396static LIST_HEAD(release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +0200397static DEFINE_RAW_SPINLOCK(release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700398static void cgroup_release_agent(struct work_struct *work);
399static DECLARE_WORK(release_agent_work, cgroup_release_agent);
Paul Menagebd89aab2007-10-18 23:40:44 -0700400static void check_for_release(struct cgroup *cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700401
Tejun Heo69d02062013-06-12 21:04:50 -0700402/*
403 * A cgroup can be associated with multiple css_sets as different tasks may
404 * belong to different cgroups on different hierarchies. In the other
405 * direction, a css_set is naturally associated with multiple cgroups.
406 * This M:N relationship is represented by the following link structure
407 * which exists for each association and allows traversing the associations
408 * from both sides.
409 */
410struct cgrp_cset_link {
411 /* the cgroup and css_set this link associates */
412 struct cgroup *cgrp;
413 struct css_set *cset;
414
415 /* list of cgrp_cset_links anchored at cgrp->cset_links */
416 struct list_head cset_link;
417
418 /* list of cgrp_cset_links anchored at css_set->cgrp_links */
419 struct list_head cgrp_link;
Paul Menage817929e2007-10-18 23:39:36 -0700420};
421
Tejun Heo172a2c062014-03-19 10:23:53 -0400422/*
423 * The default css_set - used by init and its children prior to any
Paul Menage817929e2007-10-18 23:39:36 -0700424 * hierarchies being mounted. It contains a pointer to the root state
425 * for each subsystem. Also used to anchor the list of css_sets. Not
426 * reference-counted, to improve performance when child cgroups
427 * haven't been created.
428 */
Tejun Heo5024ae22014-05-07 21:31:17 -0400429struct css_set init_css_set = {
Tejun Heo172a2c062014-03-19 10:23:53 -0400430 .refcount = ATOMIC_INIT(1),
431 .cgrp_links = LIST_HEAD_INIT(init_css_set.cgrp_links),
432 .tasks = LIST_HEAD_INIT(init_css_set.tasks),
433 .mg_tasks = LIST_HEAD_INIT(init_css_set.mg_tasks),
434 .mg_preload_node = LIST_HEAD_INIT(init_css_set.mg_preload_node),
435 .mg_node = LIST_HEAD_INIT(init_css_set.mg_node),
436};
Paul Menage817929e2007-10-18 23:39:36 -0700437
Tejun Heo172a2c062014-03-19 10:23:53 -0400438static int css_set_count = 1; /* 1 for init_css_set */
Paul Menage817929e2007-10-18 23:39:36 -0700439
Tejun Heo842b5972014-04-25 18:28:02 -0400440/**
441 * cgroup_update_populated - updated populated count of a cgroup
442 * @cgrp: the target cgroup
443 * @populated: inc or dec populated count
444 *
445 * @cgrp is either getting the first task (css_set) or losing the last.
446 * Update @cgrp->populated_cnt accordingly. The count is propagated
447 * towards root so that a given cgroup's populated_cnt is zero iff the
448 * cgroup and all its descendants are empty.
449 *
450 * @cgrp's interface file "cgroup.populated" is zero if
451 * @cgrp->populated_cnt is zero and 1 otherwise. When @cgrp->populated_cnt
452 * changes from or to zero, userland is notified that the content of the
453 * interface file has changed. This can be used to detect when @cgrp and
454 * its descendants become populated or empty.
455 */
456static void cgroup_update_populated(struct cgroup *cgrp, bool populated)
457{
458 lockdep_assert_held(&css_set_rwsem);
459
460 do {
461 bool trigger;
462
463 if (populated)
464 trigger = !cgrp->populated_cnt++;
465 else
466 trigger = !--cgrp->populated_cnt;
467
468 if (!trigger)
469 break;
470
471 if (cgrp->populated_kn)
472 kernfs_notify(cgrp->populated_kn);
Tejun Heod51f39b2014-05-16 13:22:48 -0400473 cgrp = cgroup_parent(cgrp);
Tejun Heo842b5972014-04-25 18:28:02 -0400474 } while (cgrp);
475}
476
Paul Menage7717f7b2009-09-23 15:56:22 -0700477/*
478 * hash table for cgroup groups. This improves the performance to find
479 * an existing css_set. This hash doesn't (currently) take into
480 * account cgroups in empty hierarchies.
481 */
Li Zefan472b1052008-04-29 01:00:11 -0700482#define CSS_SET_HASH_BITS 7
Li Zefan0ac801f2013-01-10 11:49:27 +0800483static DEFINE_HASHTABLE(css_set_table, CSS_SET_HASH_BITS);
Li Zefan472b1052008-04-29 01:00:11 -0700484
Li Zefan0ac801f2013-01-10 11:49:27 +0800485static unsigned long css_set_hash(struct cgroup_subsys_state *css[])
Li Zefan472b1052008-04-29 01:00:11 -0700486{
Li Zefan0ac801f2013-01-10 11:49:27 +0800487 unsigned long key = 0UL;
Tejun Heo30159ec2013-06-25 11:53:37 -0700488 struct cgroup_subsys *ss;
489 int i;
Li Zefan472b1052008-04-29 01:00:11 -0700490
Tejun Heo30159ec2013-06-25 11:53:37 -0700491 for_each_subsys(ss, i)
Li Zefan0ac801f2013-01-10 11:49:27 +0800492 key += (unsigned long)css[i];
493 key = (key >> 16) ^ key;
Li Zefan472b1052008-04-29 01:00:11 -0700494
Li Zefan0ac801f2013-01-10 11:49:27 +0800495 return key;
Li Zefan472b1052008-04-29 01:00:11 -0700496}
497
Tejun Heo89c55092014-02-13 06:58:40 -0500498static void put_css_set_locked(struct css_set *cset, bool taskexit)
Paul Menageb4f48b62007-10-18 23:39:33 -0700499{
Tejun Heo69d02062013-06-12 21:04:50 -0700500 struct cgrp_cset_link *link, *tmp_link;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400501 struct cgroup_subsys *ss;
502 int ssid;
Tejun Heo5abb8852013-06-12 21:04:49 -0700503
Tejun Heo89c55092014-02-13 06:58:40 -0500504 lockdep_assert_held(&css_set_rwsem);
505
506 if (!atomic_dec_and_test(&cset->refcount))
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700507 return;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700508
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700509 /* This css_set is dead. unlink it and release cgroup refcounts */
Tejun Heo2d8f2432014-04-23 11:13:15 -0400510 for_each_subsys(ss, ssid)
511 list_del(&cset->e_cset_node[ssid]);
Tejun Heo5abb8852013-06-12 21:04:49 -0700512 hash_del(&cset->hlist);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700513 css_set_count--;
514
Tejun Heo69d02062013-06-12 21:04:50 -0700515 list_for_each_entry_safe(link, tmp_link, &cset->cgrp_links, cgrp_link) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700516 struct cgroup *cgrp = link->cgrp;
Tejun Heo5abb8852013-06-12 21:04:49 -0700517
Tejun Heo69d02062013-06-12 21:04:50 -0700518 list_del(&link->cset_link);
519 list_del(&link->cgrp_link);
Li Zefan71b57072013-01-24 14:43:28 +0800520
Tejun Heo96d365e2014-02-13 06:58:40 -0500521 /* @cgrp can't go away while we're holding css_set_rwsem */
Tejun Heo842b5972014-04-25 18:28:02 -0400522 if (list_empty(&cgrp->cset_links)) {
523 cgroup_update_populated(cgrp, false);
524 if (notify_on_release(cgrp)) {
525 if (taskexit)
526 set_bit(CGRP_RELEASABLE, &cgrp->flags);
527 check_for_release(cgrp);
528 }
Paul Menage81a6a5c2007-10-18 23:39:38 -0700529 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700530
531 kfree(link);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700532 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700533
Tejun Heo5abb8852013-06-12 21:04:49 -0700534 kfree_rcu(cset, rcu_head);
Paul Menage817929e2007-10-18 23:39:36 -0700535}
536
Tejun Heo89c55092014-02-13 06:58:40 -0500537static void put_css_set(struct css_set *cset, bool taskexit)
538{
539 /*
540 * Ensure that the refcount doesn't hit zero while any readers
541 * can see it. Similar to atomic_dec_and_lock(), but for an
542 * rwlock
543 */
544 if (atomic_add_unless(&cset->refcount, -1, 1))
545 return;
546
547 down_write(&css_set_rwsem);
548 put_css_set_locked(cset, taskexit);
549 up_write(&css_set_rwsem);
550}
551
Paul Menage817929e2007-10-18 23:39:36 -0700552/*
553 * refcounted get/put for css_set objects
554 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700555static inline void get_css_set(struct css_set *cset)
Paul Menage817929e2007-10-18 23:39:36 -0700556{
Tejun Heo5abb8852013-06-12 21:04:49 -0700557 atomic_inc(&cset->refcount);
Paul Menage817929e2007-10-18 23:39:36 -0700558}
559
Tejun Heob326f9d2013-06-24 15:21:48 -0700560/**
Paul Menage7717f7b2009-09-23 15:56:22 -0700561 * compare_css_sets - helper function for find_existing_css_set().
Tejun Heo5abb8852013-06-12 21:04:49 -0700562 * @cset: candidate css_set being tested
563 * @old_cset: existing css_set for a task
Paul Menage7717f7b2009-09-23 15:56:22 -0700564 * @new_cgrp: cgroup that's being entered by the task
565 * @template: desired set of css pointers in css_set (pre-calculated)
566 *
Li Zefan6f4b7e62013-07-31 16:18:36 +0800567 * Returns true if "cset" matches "old_cset" except for the hierarchy
Paul Menage7717f7b2009-09-23 15:56:22 -0700568 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
569 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700570static bool compare_css_sets(struct css_set *cset,
571 struct css_set *old_cset,
Paul Menage7717f7b2009-09-23 15:56:22 -0700572 struct cgroup *new_cgrp,
573 struct cgroup_subsys_state *template[])
574{
575 struct list_head *l1, *l2;
576
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400577 /*
578 * On the default hierarchy, there can be csets which are
579 * associated with the same set of cgroups but different csses.
580 * Let's first ensure that csses match.
581 */
582 if (memcmp(template, cset->subsys, sizeof(cset->subsys)))
Paul Menage7717f7b2009-09-23 15:56:22 -0700583 return false;
Paul Menage7717f7b2009-09-23 15:56:22 -0700584
585 /*
586 * Compare cgroup pointers in order to distinguish between
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400587 * different cgroups in hierarchies. As different cgroups may
588 * share the same effective css, this comparison is always
589 * necessary.
Paul Menage7717f7b2009-09-23 15:56:22 -0700590 */
Tejun Heo69d02062013-06-12 21:04:50 -0700591 l1 = &cset->cgrp_links;
592 l2 = &old_cset->cgrp_links;
Paul Menage7717f7b2009-09-23 15:56:22 -0700593 while (1) {
Tejun Heo69d02062013-06-12 21:04:50 -0700594 struct cgrp_cset_link *link1, *link2;
Tejun Heo5abb8852013-06-12 21:04:49 -0700595 struct cgroup *cgrp1, *cgrp2;
Paul Menage7717f7b2009-09-23 15:56:22 -0700596
597 l1 = l1->next;
598 l2 = l2->next;
599 /* See if we reached the end - both lists are equal length. */
Tejun Heo69d02062013-06-12 21:04:50 -0700600 if (l1 == &cset->cgrp_links) {
601 BUG_ON(l2 != &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700602 break;
603 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700604 BUG_ON(l2 == &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700605 }
606 /* Locate the cgroups associated with these links. */
Tejun Heo69d02062013-06-12 21:04:50 -0700607 link1 = list_entry(l1, struct cgrp_cset_link, cgrp_link);
608 link2 = list_entry(l2, struct cgrp_cset_link, cgrp_link);
609 cgrp1 = link1->cgrp;
610 cgrp2 = link2->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700611 /* Hierarchies should be linked in the same order. */
Tejun Heo5abb8852013-06-12 21:04:49 -0700612 BUG_ON(cgrp1->root != cgrp2->root);
Paul Menage7717f7b2009-09-23 15:56:22 -0700613
614 /*
615 * If this hierarchy is the hierarchy of the cgroup
616 * that's changing, then we need to check that this
617 * css_set points to the new cgroup; if it's any other
618 * hierarchy, then this css_set should point to the
619 * same cgroup as the old css_set.
620 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700621 if (cgrp1->root == new_cgrp->root) {
622 if (cgrp1 != new_cgrp)
Paul Menage7717f7b2009-09-23 15:56:22 -0700623 return false;
624 } else {
Tejun Heo5abb8852013-06-12 21:04:49 -0700625 if (cgrp1 != cgrp2)
Paul Menage7717f7b2009-09-23 15:56:22 -0700626 return false;
627 }
628 }
629 return true;
630}
631
Tejun Heob326f9d2013-06-24 15:21:48 -0700632/**
633 * find_existing_css_set - init css array and find the matching css_set
634 * @old_cset: the css_set that we're using before the cgroup transition
635 * @cgrp: the cgroup that we're moving into
636 * @template: out param for the new set of csses, should be clear on entry
Paul Menage817929e2007-10-18 23:39:36 -0700637 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700638static struct css_set *find_existing_css_set(struct css_set *old_cset,
639 struct cgroup *cgrp,
640 struct cgroup_subsys_state *template[])
Paul Menage817929e2007-10-18 23:39:36 -0700641{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400642 struct cgroup_root *root = cgrp->root;
Tejun Heo30159ec2013-06-25 11:53:37 -0700643 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -0700644 struct css_set *cset;
Li Zefan0ac801f2013-01-10 11:49:27 +0800645 unsigned long key;
Tejun Heob326f9d2013-06-24 15:21:48 -0700646 int i;
Paul Menage817929e2007-10-18 23:39:36 -0700647
Ben Blumaae8aab2010-03-10 15:22:07 -0800648 /*
649 * Build the set of subsystem state objects that we want to see in the
650 * new css_set. while subsystems can change globally, the entries here
651 * won't change, so no need for locking.
652 */
Tejun Heo30159ec2013-06-25 11:53:37 -0700653 for_each_subsys(ss, i) {
Tejun Heof392e512014-04-23 11:13:14 -0400654 if (root->subsys_mask & (1UL << i)) {
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400655 /*
656 * @ss is in this hierarchy, so we want the
657 * effective css from @cgrp.
658 */
659 template[i] = cgroup_e_css(cgrp, ss);
Paul Menage817929e2007-10-18 23:39:36 -0700660 } else {
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400661 /*
662 * @ss is not in this hierarchy, so we don't want
663 * to change the css.
664 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700665 template[i] = old_cset->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700666 }
667 }
668
Li Zefan0ac801f2013-01-10 11:49:27 +0800669 key = css_set_hash(template);
Tejun Heo5abb8852013-06-12 21:04:49 -0700670 hash_for_each_possible(css_set_table, cset, hlist, key) {
671 if (!compare_css_sets(cset, old_cset, cgrp, template))
Paul Menage7717f7b2009-09-23 15:56:22 -0700672 continue;
673
674 /* This css_set matches what we need */
Tejun Heo5abb8852013-06-12 21:04:49 -0700675 return cset;
Li Zefan472b1052008-04-29 01:00:11 -0700676 }
Paul Menage817929e2007-10-18 23:39:36 -0700677
678 /* No existing cgroup group matched */
679 return NULL;
680}
681
Tejun Heo69d02062013-06-12 21:04:50 -0700682static void free_cgrp_cset_links(struct list_head *links_to_free)
Paul Menage817929e2007-10-18 23:39:36 -0700683{
Tejun Heo69d02062013-06-12 21:04:50 -0700684 struct cgrp_cset_link *link, *tmp_link;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700685
Tejun Heo69d02062013-06-12 21:04:50 -0700686 list_for_each_entry_safe(link, tmp_link, links_to_free, cset_link) {
687 list_del(&link->cset_link);
Paul Menage817929e2007-10-18 23:39:36 -0700688 kfree(link);
689 }
690}
691
Tejun Heo69d02062013-06-12 21:04:50 -0700692/**
693 * allocate_cgrp_cset_links - allocate cgrp_cset_links
694 * @count: the number of links to allocate
695 * @tmp_links: list_head the allocated links are put on
696 *
697 * Allocate @count cgrp_cset_link structures and chain them on @tmp_links
698 * through ->cset_link. Returns 0 on success or -errno.
Li Zefan36553432008-07-29 22:33:19 -0700699 */
Tejun Heo69d02062013-06-12 21:04:50 -0700700static int allocate_cgrp_cset_links(int count, struct list_head *tmp_links)
Li Zefan36553432008-07-29 22:33:19 -0700701{
Tejun Heo69d02062013-06-12 21:04:50 -0700702 struct cgrp_cset_link *link;
Li Zefan36553432008-07-29 22:33:19 -0700703 int i;
Tejun Heo69d02062013-06-12 21:04:50 -0700704
705 INIT_LIST_HEAD(tmp_links);
706
Li Zefan36553432008-07-29 22:33:19 -0700707 for (i = 0; i < count; i++) {
Tejun Heof4f4be22013-06-12 21:04:51 -0700708 link = kzalloc(sizeof(*link), GFP_KERNEL);
Li Zefan36553432008-07-29 22:33:19 -0700709 if (!link) {
Tejun Heo69d02062013-06-12 21:04:50 -0700710 free_cgrp_cset_links(tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700711 return -ENOMEM;
712 }
Tejun Heo69d02062013-06-12 21:04:50 -0700713 list_add(&link->cset_link, tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700714 }
715 return 0;
716}
717
Li Zefanc12f65d2009-01-07 18:07:42 -0800718/**
719 * link_css_set - a helper function to link a css_set to a cgroup
Tejun Heo69d02062013-06-12 21:04:50 -0700720 * @tmp_links: cgrp_cset_link objects allocated by allocate_cgrp_cset_links()
Tejun Heo5abb8852013-06-12 21:04:49 -0700721 * @cset: the css_set to be linked
Li Zefanc12f65d2009-01-07 18:07:42 -0800722 * @cgrp: the destination cgroup
723 */
Tejun Heo69d02062013-06-12 21:04:50 -0700724static void link_css_set(struct list_head *tmp_links, struct css_set *cset,
725 struct cgroup *cgrp)
Li Zefanc12f65d2009-01-07 18:07:42 -0800726{
Tejun Heo69d02062013-06-12 21:04:50 -0700727 struct cgrp_cset_link *link;
Li Zefanc12f65d2009-01-07 18:07:42 -0800728
Tejun Heo69d02062013-06-12 21:04:50 -0700729 BUG_ON(list_empty(tmp_links));
Tejun Heo6803c002014-04-23 11:13:16 -0400730
731 if (cgroup_on_dfl(cgrp))
732 cset->dfl_cgrp = cgrp;
733
Tejun Heo69d02062013-06-12 21:04:50 -0700734 link = list_first_entry(tmp_links, struct cgrp_cset_link, cset_link);
735 link->cset = cset;
Paul Menage7717f7b2009-09-23 15:56:22 -0700736 link->cgrp = cgrp;
Tejun Heo842b5972014-04-25 18:28:02 -0400737
738 if (list_empty(&cgrp->cset_links))
739 cgroup_update_populated(cgrp, true);
Tejun Heo69d02062013-06-12 21:04:50 -0700740 list_move(&link->cset_link, &cgrp->cset_links);
Tejun Heo842b5972014-04-25 18:28:02 -0400741
Paul Menage7717f7b2009-09-23 15:56:22 -0700742 /*
743 * Always add links to the tail of the list so that the list
744 * is sorted by order of hierarchy creation
745 */
Tejun Heo69d02062013-06-12 21:04:50 -0700746 list_add_tail(&link->cgrp_link, &cset->cgrp_links);
Li Zefanc12f65d2009-01-07 18:07:42 -0800747}
748
Tejun Heob326f9d2013-06-24 15:21:48 -0700749/**
750 * find_css_set - return a new css_set with one cgroup updated
751 * @old_cset: the baseline css_set
752 * @cgrp: the cgroup to be updated
753 *
754 * Return a new css_set that's equivalent to @old_cset, but with @cgrp
755 * substituted into the appropriate hierarchy.
Paul Menage817929e2007-10-18 23:39:36 -0700756 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700757static struct css_set *find_css_set(struct css_set *old_cset,
758 struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700759{
Tejun Heob326f9d2013-06-24 15:21:48 -0700760 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT] = { };
Tejun Heo5abb8852013-06-12 21:04:49 -0700761 struct css_set *cset;
Tejun Heo69d02062013-06-12 21:04:50 -0700762 struct list_head tmp_links;
763 struct cgrp_cset_link *link;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400764 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +0800765 unsigned long key;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400766 int ssid;
Li Zefan472b1052008-04-29 01:00:11 -0700767
Tejun Heob326f9d2013-06-24 15:21:48 -0700768 lockdep_assert_held(&cgroup_mutex);
769
Paul Menage817929e2007-10-18 23:39:36 -0700770 /* First see if we already have a cgroup group that matches
771 * the desired set */
Tejun Heo96d365e2014-02-13 06:58:40 -0500772 down_read(&css_set_rwsem);
Tejun Heo5abb8852013-06-12 21:04:49 -0700773 cset = find_existing_css_set(old_cset, cgrp, template);
774 if (cset)
775 get_css_set(cset);
Tejun Heo96d365e2014-02-13 06:58:40 -0500776 up_read(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700777
Tejun Heo5abb8852013-06-12 21:04:49 -0700778 if (cset)
779 return cset;
Paul Menage817929e2007-10-18 23:39:36 -0700780
Tejun Heof4f4be22013-06-12 21:04:51 -0700781 cset = kzalloc(sizeof(*cset), GFP_KERNEL);
Tejun Heo5abb8852013-06-12 21:04:49 -0700782 if (!cset)
Paul Menage817929e2007-10-18 23:39:36 -0700783 return NULL;
784
Tejun Heo69d02062013-06-12 21:04:50 -0700785 /* Allocate all the cgrp_cset_link objects that we'll need */
Tejun Heo9871bf92013-06-24 15:21:47 -0700786 if (allocate_cgrp_cset_links(cgroup_root_count, &tmp_links) < 0) {
Tejun Heo5abb8852013-06-12 21:04:49 -0700787 kfree(cset);
Paul Menage817929e2007-10-18 23:39:36 -0700788 return NULL;
789 }
790
Tejun Heo5abb8852013-06-12 21:04:49 -0700791 atomic_set(&cset->refcount, 1);
Tejun Heo69d02062013-06-12 21:04:50 -0700792 INIT_LIST_HEAD(&cset->cgrp_links);
Tejun Heo5abb8852013-06-12 21:04:49 -0700793 INIT_LIST_HEAD(&cset->tasks);
Tejun Heoc7561122014-02-25 10:04:01 -0500794 INIT_LIST_HEAD(&cset->mg_tasks);
Tejun Heo1958d2d2014-02-25 10:04:03 -0500795 INIT_LIST_HEAD(&cset->mg_preload_node);
Tejun Heob3dc0942014-02-25 10:04:01 -0500796 INIT_LIST_HEAD(&cset->mg_node);
Tejun Heo5abb8852013-06-12 21:04:49 -0700797 INIT_HLIST_NODE(&cset->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700798
799 /* Copy the set of subsystem state objects generated in
800 * find_existing_css_set() */
Tejun Heo5abb8852013-06-12 21:04:49 -0700801 memcpy(cset->subsys, template, sizeof(cset->subsys));
Paul Menage817929e2007-10-18 23:39:36 -0700802
Tejun Heo96d365e2014-02-13 06:58:40 -0500803 down_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700804 /* Add reference counts and links from the new css_set. */
Tejun Heo69d02062013-06-12 21:04:50 -0700805 list_for_each_entry(link, &old_cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700806 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700807
Paul Menage7717f7b2009-09-23 15:56:22 -0700808 if (c->root == cgrp->root)
809 c = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700810 link_css_set(&tmp_links, cset, c);
Paul Menage7717f7b2009-09-23 15:56:22 -0700811 }
Paul Menage817929e2007-10-18 23:39:36 -0700812
Tejun Heo69d02062013-06-12 21:04:50 -0700813 BUG_ON(!list_empty(&tmp_links));
Paul Menage817929e2007-10-18 23:39:36 -0700814
Paul Menage817929e2007-10-18 23:39:36 -0700815 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -0700816
Tejun Heo2d8f2432014-04-23 11:13:15 -0400817 /* Add @cset to the hash table */
Tejun Heo5abb8852013-06-12 21:04:49 -0700818 key = css_set_hash(cset->subsys);
819 hash_add(css_set_table, &cset->hlist, key);
Li Zefan472b1052008-04-29 01:00:11 -0700820
Tejun Heo2d8f2432014-04-23 11:13:15 -0400821 for_each_subsys(ss, ssid)
822 list_add_tail(&cset->e_cset_node[ssid],
823 &cset->subsys[ssid]->cgroup->e_csets[ssid]);
824
Tejun Heo96d365e2014-02-13 06:58:40 -0500825 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700826
Tejun Heo5abb8852013-06-12 21:04:49 -0700827 return cset;
Paul Menageb4f48b62007-10-18 23:39:33 -0700828}
829
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400830static struct cgroup_root *cgroup_root_from_kf(struct kernfs_root *kf_root)
Paul Menage7717f7b2009-09-23 15:56:22 -0700831{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400832 struct cgroup *root_cgrp = kf_root->kn->priv;
Tejun Heo2bd59d42014-02-11 11:52:49 -0500833
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400834 return root_cgrp->root;
Tejun Heo2bd59d42014-02-11 11:52:49 -0500835}
836
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400837static int cgroup_init_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -0500838{
839 int id;
840
841 lockdep_assert_held(&cgroup_mutex);
842
Tejun Heo985ed672014-03-19 10:23:53 -0400843 id = idr_alloc_cyclic(&cgroup_hierarchy_idr, root, 0, 0, GFP_KERNEL);
Tejun Heof2e85d52014-02-11 11:52:49 -0500844 if (id < 0)
845 return id;
846
847 root->hierarchy_id = id;
848 return 0;
849}
850
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400851static void cgroup_exit_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -0500852{
853 lockdep_assert_held(&cgroup_mutex);
854
855 if (root->hierarchy_id) {
856 idr_remove(&cgroup_hierarchy_idr, root->hierarchy_id);
857 root->hierarchy_id = 0;
858 }
859}
860
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400861static void cgroup_free_root(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -0500862{
863 if (root) {
864 /* hierarhcy ID shoulid already have been released */
865 WARN_ON_ONCE(root->hierarchy_id);
866
867 idr_destroy(&root->cgroup_idr);
868 kfree(root);
869 }
870}
871
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400872static void cgroup_destroy_root(struct cgroup_root *root)
Tejun Heo59f52962014-02-11 11:52:49 -0500873{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400874 struct cgroup *cgrp = &root->cgrp;
Tejun Heof2e85d52014-02-11 11:52:49 -0500875 struct cgrp_cset_link *link, *tmp_link;
Tejun Heof2e85d52014-02-11 11:52:49 -0500876
Tejun Heo2bd59d42014-02-11 11:52:49 -0500877 mutex_lock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -0500878
Tejun Heo776f02f2014-02-12 09:29:50 -0500879 BUG_ON(atomic_read(&root->nr_cgrps));
Tejun Heod5c419b2014-05-16 13:22:48 -0400880 BUG_ON(!list_empty(&cgrp->self.children));
Tejun Heof2e85d52014-02-11 11:52:49 -0500881
Tejun Heof2e85d52014-02-11 11:52:49 -0500882 /* Rebind all subsystems back to the default hierarchy */
Tejun Heof392e512014-04-23 11:13:14 -0400883 rebind_subsystems(&cgrp_dfl_root, root->subsys_mask);
Tejun Heof2e85d52014-02-11 11:52:49 -0500884
885 /*
886 * Release all the links from cset_links to this hierarchy's
887 * root cgroup
888 */
Tejun Heo96d365e2014-02-13 06:58:40 -0500889 down_write(&css_set_rwsem);
Tejun Heof2e85d52014-02-11 11:52:49 -0500890
891 list_for_each_entry_safe(link, tmp_link, &cgrp->cset_links, cset_link) {
892 list_del(&link->cset_link);
893 list_del(&link->cgrp_link);
894 kfree(link);
895 }
Tejun Heo96d365e2014-02-13 06:58:40 -0500896 up_write(&css_set_rwsem);
Tejun Heof2e85d52014-02-11 11:52:49 -0500897
898 if (!list_empty(&root->root_list)) {
899 list_del(&root->root_list);
900 cgroup_root_count--;
901 }
902
903 cgroup_exit_root_id(root);
904
905 mutex_unlock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -0500906
Tejun Heo2bd59d42014-02-11 11:52:49 -0500907 kernfs_destroy_root(root->kf_root);
Tejun Heof2e85d52014-02-11 11:52:49 -0500908 cgroup_free_root(root);
909}
910
Tejun Heoceb6a082014-02-25 10:04:02 -0500911/* look up cgroup associated with given css_set on the specified hierarchy */
912static struct cgroup *cset_cgroup_from_root(struct css_set *cset,
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400913 struct cgroup_root *root)
Paul Menage7717f7b2009-09-23 15:56:22 -0700914{
Paul Menage7717f7b2009-09-23 15:56:22 -0700915 struct cgroup *res = NULL;
916
Tejun Heo96d365e2014-02-13 06:58:40 -0500917 lockdep_assert_held(&cgroup_mutex);
918 lockdep_assert_held(&css_set_rwsem);
919
Tejun Heo5abb8852013-06-12 21:04:49 -0700920 if (cset == &init_css_set) {
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400921 res = &root->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700922 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700923 struct cgrp_cset_link *link;
924
925 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700926 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700927
Paul Menage7717f7b2009-09-23 15:56:22 -0700928 if (c->root == root) {
929 res = c;
930 break;
931 }
932 }
933 }
Tejun Heo96d365e2014-02-13 06:58:40 -0500934
Paul Menage7717f7b2009-09-23 15:56:22 -0700935 BUG_ON(!res);
936 return res;
937}
938
939/*
Tejun Heoceb6a082014-02-25 10:04:02 -0500940 * Return the cgroup for "task" from the given hierarchy. Must be
941 * called with cgroup_mutex and css_set_rwsem held.
942 */
943static struct cgroup *task_cgroup_from_root(struct task_struct *task,
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400944 struct cgroup_root *root)
Tejun Heoceb6a082014-02-25 10:04:02 -0500945{
946 /*
947 * No need to lock the task - since we hold cgroup_mutex the
948 * task can't change groups, so the only thing that can happen
949 * is that it exits and its css is set back to init_css_set.
950 */
951 return cset_cgroup_from_root(task_css_set(task), root);
952}
953
954/*
Paul Menageddbcc7e2007-10-18 23:39:30 -0700955 * A task must hold cgroup_mutex to modify cgroups.
956 *
957 * Any task can increment and decrement the count field without lock.
958 * So in general, code holding cgroup_mutex can't rely on the count
959 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -0800960 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -0700961 * means that no tasks are currently attached, therefore there is no
962 * way a task attached to that cgroup can fork (the other way to
963 * increment the count). So code holding cgroup_mutex can safely
964 * assume that if the count is zero, it will stay zero. Similarly, if
965 * a task holds cgroup_mutex on a cgroup with zero count, it
966 * knows that the cgroup won't be removed, as cgroup_rmdir()
967 * needs that mutex.
968 *
Paul Menageddbcc7e2007-10-18 23:39:30 -0700969 * The fork and exit callbacks cgroup_fork() and cgroup_exit(), don't
970 * (usually) take cgroup_mutex. These are the two most performance
971 * critical pieces of code here. The exception occurs on cgroup_exit(),
972 * when a task in a notify_on_release cgroup exits. Then cgroup_mutex
973 * is taken, and if the cgroup count is zero, a usermode call made
Li Zefana043e3b2008-02-23 15:24:09 -0800974 * to the release agent with the name of the cgroup (path relative to
975 * the root of cgroup file system) as the argument.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700976 *
977 * A cgroup can only be deleted if both its 'count' of using tasks
978 * is zero, and its list of 'children' cgroups is empty. Since all
979 * tasks in the system use _some_ cgroup, and since there is always at
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400980 * least one task in the system (init, pid == 1), therefore, root cgroup
Paul Menageddbcc7e2007-10-18 23:39:30 -0700981 * always has either children cgroups and/or using tasks. So we don't
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400982 * need a special hack to ensure that root cgroup cannot be deleted.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700983 *
984 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -0800985 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700986 */
987
Tejun Heo69dfa002014-05-04 15:09:13 -0400988static int cgroup_populate_dir(struct cgroup *cgrp, unsigned int subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500989static struct kernfs_syscall_ops cgroup_kf_syscall_ops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700990static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -0700991
Tejun Heo8d7e6fb2014-02-11 11:52:48 -0500992static char *cgroup_file_name(struct cgroup *cgrp, const struct cftype *cft,
993 char *buf)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700994{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -0500995 if (cft->ss && !(cft->flags & CFTYPE_NO_PREFIX) &&
996 !(cgrp->root->flags & CGRP_ROOT_NOPREFIX))
997 snprintf(buf, CGROUP_FILE_NAME_MAX, "%s.%s",
998 cft->ss->name, cft->name);
999 else
1000 strncpy(buf, cft->name, CGROUP_FILE_NAME_MAX);
1001 return buf;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001002}
1003
Tejun Heof2e85d52014-02-11 11:52:49 -05001004/**
1005 * cgroup_file_mode - deduce file mode of a control file
1006 * @cft: the control file in question
1007 *
1008 * returns cft->mode if ->mode is not 0
1009 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
1010 * returns S_IRUGO if it has only a read handler
1011 * returns S_IWUSR if it has only a write hander
1012 */
1013static umode_t cgroup_file_mode(const struct cftype *cft)
Li Zefan65dff752013-03-01 15:01:56 +08001014{
Tejun Heof2e85d52014-02-11 11:52:49 -05001015 umode_t mode = 0;
Li Zefan65dff752013-03-01 15:01:56 +08001016
Tejun Heof2e85d52014-02-11 11:52:49 -05001017 if (cft->mode)
1018 return cft->mode;
1019
1020 if (cft->read_u64 || cft->read_s64 || cft->seq_show)
1021 mode |= S_IRUGO;
1022
Tejun Heo6770c642014-05-13 12:16:21 -04001023 if (cft->write_u64 || cft->write_s64 || cft->write)
Tejun Heof2e85d52014-02-11 11:52:49 -05001024 mode |= S_IWUSR;
1025
1026 return mode;
Li Zefan65dff752013-03-01 15:01:56 +08001027}
1028
Tejun Heo59f52962014-02-11 11:52:49 -05001029static void cgroup_get(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001030{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001031 WARN_ON_ONCE(cgroup_is_dead(cgrp));
Tejun Heo9d755d32014-05-14 09:15:02 -04001032 css_get(&cgrp->self);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001033}
1034
Tejun Heo59f52962014-02-11 11:52:49 -05001035static void cgroup_put(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001036{
Tejun Heo9d755d32014-05-14 09:15:02 -04001037 css_put(&cgrp->self);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001038}
1039
Tejun Heo667c2492014-07-08 18:02:56 -04001040static void cgroup_refresh_child_subsys_mask(struct cgroup *cgrp)
1041{
1042 cgrp->child_subsys_mask = cgrp->subtree_control;
1043}
1044
Tejun Heoa9746d82014-05-13 12:19:22 -04001045/**
1046 * cgroup_kn_unlock - unlocking helper for cgroup kernfs methods
1047 * @kn: the kernfs_node being serviced
1048 *
1049 * This helper undoes cgroup_kn_lock_live() and should be invoked before
1050 * the method finishes if locking succeeded. Note that once this function
1051 * returns the cgroup returned by cgroup_kn_lock_live() may become
1052 * inaccessible any time. If the caller intends to continue to access the
1053 * cgroup, it should pin it before invoking this function.
1054 */
1055static void cgroup_kn_unlock(struct kernfs_node *kn)
1056{
1057 struct cgroup *cgrp;
1058
1059 if (kernfs_type(kn) == KERNFS_DIR)
1060 cgrp = kn->priv;
1061 else
1062 cgrp = kn->parent->priv;
1063
1064 mutex_unlock(&cgroup_mutex);
Tejun Heoa9746d82014-05-13 12:19:22 -04001065
1066 kernfs_unbreak_active_protection(kn);
1067 cgroup_put(cgrp);
1068}
1069
1070/**
1071 * cgroup_kn_lock_live - locking helper for cgroup kernfs methods
1072 * @kn: the kernfs_node being serviced
1073 *
1074 * This helper is to be used by a cgroup kernfs method currently servicing
1075 * @kn. It breaks the active protection, performs cgroup locking and
1076 * verifies that the associated cgroup is alive. Returns the cgroup if
1077 * alive; otherwise, %NULL. A successful return should be undone by a
1078 * matching cgroup_kn_unlock() invocation.
1079 *
1080 * Any cgroup kernfs method implementation which requires locking the
1081 * associated cgroup should use this helper. It avoids nesting cgroup
1082 * locking under kernfs active protection and allows all kernfs operations
1083 * including self-removal.
1084 */
1085static struct cgroup *cgroup_kn_lock_live(struct kernfs_node *kn)
1086{
1087 struct cgroup *cgrp;
1088
1089 if (kernfs_type(kn) == KERNFS_DIR)
1090 cgrp = kn->priv;
1091 else
1092 cgrp = kn->parent->priv;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001093
1094 /*
Tejun Heo01f64742014-05-13 12:19:23 -04001095 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoa9746d82014-05-13 12:19:22 -04001096 * active_ref. cgroup liveliness check alone provides enough
1097 * protection against removal. Ensure @cgrp stays accessible and
1098 * break the active_ref protection.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001099 */
Tejun Heoa9746d82014-05-13 12:19:22 -04001100 cgroup_get(cgrp);
1101 kernfs_break_active_protection(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001102
Tejun Heoa9746d82014-05-13 12:19:22 -04001103 mutex_lock(&cgroup_mutex);
1104
1105 if (!cgroup_is_dead(cgrp))
1106 return cgrp;
1107
1108 cgroup_kn_unlock(kn);
1109 return NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001110}
1111
Li Zefan2739d3c2013-01-21 18:18:33 +08001112static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001113{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001114 char name[CGROUP_FILE_NAME_MAX];
Paul Menageddbcc7e2007-10-18 23:39:30 -07001115
Tejun Heo01f64742014-05-13 12:19:23 -04001116 lockdep_assert_held(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001117 kernfs_remove_by_name(cgrp->kn, cgroup_file_name(cgrp, cft, name));
Tejun Heo05ef1d72012-04-01 12:09:56 -07001118}
1119
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001120/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07001121 * cgroup_clear_dir - remove subsys files in a cgroup directory
Tejun Heo8f891402013-06-28 16:24:10 -07001122 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001123 * @subsys_mask: mask of the subsystem ids whose files should be removed
1124 */
Tejun Heo69dfa002014-05-04 15:09:13 -04001125static void cgroup_clear_dir(struct cgroup *cgrp, unsigned int subsys_mask)
Tejun Heo05ef1d72012-04-01 12:09:56 -07001126{
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001127 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07001128 int i;
Tejun Heo05ef1d72012-04-01 12:09:56 -07001129
Tejun Heob420ba72013-07-12 12:34:02 -07001130 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -05001131 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -07001132
Tejun Heo69dfa002014-05-04 15:09:13 -04001133 if (!(subsys_mask & (1 << i)))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001134 continue;
Tejun Heo0adb0702014-02-12 09:29:48 -05001135 list_for_each_entry(cfts, &ss->cfts, node)
1136 cgroup_addrm_files(cgrp, cfts, false);
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001137 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001138}
1139
Tejun Heo69dfa002014-05-04 15:09:13 -04001140static int rebind_subsystems(struct cgroup_root *dst_root, unsigned int ss_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001141{
Tejun Heo30159ec2013-06-25 11:53:37 -07001142 struct cgroup_subsys *ss;
Tejun Heo5533e012014-05-14 19:33:07 -04001143 unsigned int tmp_ss_mask;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001144 int ssid, i, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001145
Tejun Heoace2bee2014-02-11 11:52:47 -05001146 lockdep_assert_held(&cgroup_mutex);
Ben Blumaae8aab2010-03-10 15:22:07 -08001147
Tejun Heo5df36032014-03-19 10:23:54 -04001148 for_each_subsys(ss, ssid) {
1149 if (!(ss_mask & (1 << ssid)))
Paul Menageddbcc7e2007-10-18 23:39:30 -07001150 continue;
Tejun Heo30159ec2013-06-25 11:53:37 -07001151
Tejun Heo7fd8c562014-04-23 11:13:16 -04001152 /* if @ss has non-root csses attached to it, can't move */
1153 if (css_next_child(NULL, cgroup_css(&ss->root->cgrp, ss)))
Tejun Heo3ed80a62014-02-08 10:36:58 -05001154 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001155
Tejun Heo5df36032014-03-19 10:23:54 -04001156 /* can't move between two non-dummy roots either */
Tejun Heo7fd8c562014-04-23 11:13:16 -04001157 if (ss->root != &cgrp_dfl_root && dst_root != &cgrp_dfl_root)
Tejun Heo5df36032014-03-19 10:23:54 -04001158 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001159 }
1160
Tejun Heo5533e012014-05-14 19:33:07 -04001161 /* skip creating root files on dfl_root for inhibited subsystems */
1162 tmp_ss_mask = ss_mask;
1163 if (dst_root == &cgrp_dfl_root)
1164 tmp_ss_mask &= ~cgrp_dfl_root_inhibit_ss_mask;
1165
1166 ret = cgroup_populate_dir(&dst_root->cgrp, tmp_ss_mask);
Tejun Heoa2dd4242014-03-19 10:23:55 -04001167 if (ret) {
1168 if (dst_root != &cgrp_dfl_root)
Tejun Heo5df36032014-03-19 10:23:54 -04001169 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001170
Tejun Heoa2dd4242014-03-19 10:23:55 -04001171 /*
1172 * Rebinding back to the default root is not allowed to
1173 * fail. Using both default and non-default roots should
1174 * be rare. Moving subsystems back and forth even more so.
1175 * Just warn about it and continue.
1176 */
1177 if (cgrp_dfl_root_visible) {
Tejun Heo69dfa002014-05-04 15:09:13 -04001178 pr_warn("failed to create files (%d) while rebinding 0x%x to default root\n",
Jianyu Zhana2a1f9e2014-04-25 18:28:03 -04001179 ret, ss_mask);
Joe Perchesed3d2612014-04-25 18:28:03 -04001180 pr_warn("you may retry by moving them to a different hierarchy and unbinding\n");
Tejun Heoa2dd4242014-03-19 10:23:55 -04001181 }
Tejun Heo5df36032014-03-19 10:23:54 -04001182 }
Tejun Heo31261212013-06-28 17:07:30 -07001183
1184 /*
1185 * Nothing can fail from this point on. Remove files for the
1186 * removed subsystems and rebind each subsystem.
1187 */
Tejun Heo5df36032014-03-19 10:23:54 -04001188 for_each_subsys(ss, ssid)
Tejun Heoa2dd4242014-03-19 10:23:55 -04001189 if (ss_mask & (1 << ssid))
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001190 cgroup_clear_dir(&ss->root->cgrp, 1 << ssid);
Tejun Heo31261212013-06-28 17:07:30 -07001191
Tejun Heo5df36032014-03-19 10:23:54 -04001192 for_each_subsys(ss, ssid) {
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001193 struct cgroup_root *src_root;
Tejun Heo5df36032014-03-19 10:23:54 -04001194 struct cgroup_subsys_state *css;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001195 struct css_set *cset;
Tejun Heo30159ec2013-06-25 11:53:37 -07001196
Tejun Heo5df36032014-03-19 10:23:54 -04001197 if (!(ss_mask & (1 << ssid)))
1198 continue;
Tejun Heoa8a648c2013-06-24 15:21:47 -07001199
Tejun Heo5df36032014-03-19 10:23:54 -04001200 src_root = ss->root;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001201 css = cgroup_css(&src_root->cgrp, ss);
Tejun Heo73e80ed2013-08-13 11:01:55 -04001202
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001203 WARN_ON(!css || cgroup_css(&dst_root->cgrp, ss));
Tejun Heoa8a648c2013-06-24 15:21:47 -07001204
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001205 RCU_INIT_POINTER(src_root->cgrp.subsys[ssid], NULL);
1206 rcu_assign_pointer(dst_root->cgrp.subsys[ssid], css);
Tejun Heo5df36032014-03-19 10:23:54 -04001207 ss->root = dst_root;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001208 css->cgroup = &dst_root->cgrp;
Tejun Heoa8a648c2013-06-24 15:21:47 -07001209
Tejun Heo2d8f2432014-04-23 11:13:15 -04001210 down_write(&css_set_rwsem);
1211 hash_for_each(css_set_table, i, cset, hlist)
1212 list_move_tail(&cset->e_cset_node[ss->id],
1213 &dst_root->cgrp.e_csets[ss->id]);
1214 up_write(&css_set_rwsem);
1215
Tejun Heof392e512014-04-23 11:13:14 -04001216 src_root->subsys_mask &= ~(1 << ssid);
Tejun Heo667c2492014-07-08 18:02:56 -04001217 src_root->cgrp.subtree_control &= ~(1 << ssid);
1218 cgroup_refresh_child_subsys_mask(&src_root->cgrp);
Tejun Heof392e512014-04-23 11:13:14 -04001219
Tejun Heobd53d612014-04-23 11:13:16 -04001220 /* default hierarchy doesn't enable controllers by default */
Tejun Heof392e512014-04-23 11:13:14 -04001221 dst_root->subsys_mask |= 1 << ssid;
Tejun Heo667c2492014-07-08 18:02:56 -04001222 if (dst_root != &cgrp_dfl_root) {
1223 dst_root->cgrp.subtree_control |= 1 << ssid;
1224 cgroup_refresh_child_subsys_mask(&dst_root->cgrp);
1225 }
Tejun Heo73e80ed2013-08-13 11:01:55 -04001226
Tejun Heo5df36032014-03-19 10:23:54 -04001227 if (ss->bind)
1228 ss->bind(css);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001229 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001230
Tejun Heoa2dd4242014-03-19 10:23:55 -04001231 kernfs_activate(dst_root->cgrp.kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001232 return 0;
1233}
1234
Tejun Heo2bd59d42014-02-11 11:52:49 -05001235static int cgroup_show_options(struct seq_file *seq,
1236 struct kernfs_root *kf_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001237{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001238 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001239 struct cgroup_subsys *ss;
Tejun Heob85d2042013-12-06 15:11:57 -05001240 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001241
Tejun Heob85d2042013-12-06 15:11:57 -05001242 for_each_subsys(ss, ssid)
Tejun Heof392e512014-04-23 11:13:14 -04001243 if (root->subsys_mask & (1 << ssid))
Tejun Heob85d2042013-12-06 15:11:57 -05001244 seq_printf(seq, ",%s", ss->name);
Tejun Heo873fe092013-04-14 20:15:26 -07001245 if (root->flags & CGRP_ROOT_SANE_BEHAVIOR)
1246 seq_puts(seq, ",sane_behavior");
Tejun Heo93438622013-04-14 20:15:25 -07001247 if (root->flags & CGRP_ROOT_NOPREFIX)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001248 seq_puts(seq, ",noprefix");
Tejun Heo93438622013-04-14 20:15:25 -07001249 if (root->flags & CGRP_ROOT_XATTR)
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001250 seq_puts(seq, ",xattr");
Tejun Heo69e943b2014-02-08 10:36:58 -05001251
1252 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001253 if (strlen(root->release_agent_path))
1254 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Tejun Heo69e943b2014-02-08 10:36:58 -05001255 spin_unlock(&release_agent_path_lock);
1256
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001257 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags))
Daniel Lezcano97978e62010-10-27 15:33:35 -07001258 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001259 if (strlen(root->name))
1260 seq_printf(seq, ",name=%s", root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001261 return 0;
1262}
1263
1264struct cgroup_sb_opts {
Tejun Heo69dfa002014-05-04 15:09:13 -04001265 unsigned int subsys_mask;
1266 unsigned int flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001267 char *release_agent;
Tejun Heo2260e7f2012-11-19 08:13:38 -08001268 bool cpuset_clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001269 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001270 /* User explicitly requested empty subsystem */
1271 bool none;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001272};
1273
Ben Blumcf5d5942010-03-10 15:22:09 -08001274static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001275{
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001276 char *token, *o = data;
1277 bool all_ss = false, one_ss = false;
Tejun Heo69dfa002014-05-04 15:09:13 -04001278 unsigned int mask = -1U;
Tejun Heo30159ec2013-06-25 11:53:37 -07001279 struct cgroup_subsys *ss;
1280 int i;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001281
1282#ifdef CONFIG_CPUSETS
Tejun Heo69dfa002014-05-04 15:09:13 -04001283 mask = ~(1U << cpuset_cgrp_id);
Li Zefanf9ab5b52009-06-17 16:26:33 -07001284#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001285
Paul Menagec6d57f32009-09-23 15:56:19 -07001286 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001287
1288 while ((token = strsep(&o, ",")) != NULL) {
1289 if (!*token)
1290 return -EINVAL;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001291 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001292 /* Explicitly have no subsystems */
1293 opts->none = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001294 continue;
1295 }
1296 if (!strcmp(token, "all")) {
1297 /* Mutually exclusive option 'all' + subsystem name */
1298 if (one_ss)
1299 return -EINVAL;
1300 all_ss = true;
1301 continue;
1302 }
Tejun Heo873fe092013-04-14 20:15:26 -07001303 if (!strcmp(token, "__DEVEL__sane_behavior")) {
1304 opts->flags |= CGRP_ROOT_SANE_BEHAVIOR;
1305 continue;
1306 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001307 if (!strcmp(token, "noprefix")) {
Tejun Heo93438622013-04-14 20:15:25 -07001308 opts->flags |= CGRP_ROOT_NOPREFIX;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001309 continue;
1310 }
1311 if (!strcmp(token, "clone_children")) {
Tejun Heo2260e7f2012-11-19 08:13:38 -08001312 opts->cpuset_clone_children = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001313 continue;
1314 }
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001315 if (!strcmp(token, "xattr")) {
Tejun Heo93438622013-04-14 20:15:25 -07001316 opts->flags |= CGRP_ROOT_XATTR;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001317 continue;
1318 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001319 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001320 /* Specifying two release agents is forbidden */
1321 if (opts->release_agent)
1322 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001323 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001324 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001325 if (!opts->release_agent)
1326 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001327 continue;
1328 }
1329 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001330 const char *name = token + 5;
1331 /* Can't specify an empty name */
1332 if (!strlen(name))
1333 return -EINVAL;
1334 /* Must match [\w.-]+ */
1335 for (i = 0; i < strlen(name); i++) {
1336 char c = name[i];
1337 if (isalnum(c))
1338 continue;
1339 if ((c == '.') || (c == '-') || (c == '_'))
1340 continue;
1341 return -EINVAL;
1342 }
1343 /* Specifying two names is forbidden */
1344 if (opts->name)
1345 return -EINVAL;
1346 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001347 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001348 GFP_KERNEL);
1349 if (!opts->name)
1350 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001351
1352 continue;
1353 }
1354
Tejun Heo30159ec2013-06-25 11:53:37 -07001355 for_each_subsys(ss, i) {
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001356 if (strcmp(token, ss->name))
1357 continue;
1358 if (ss->disabled)
1359 continue;
1360
1361 /* Mutually exclusive option 'all' + subsystem name */
1362 if (all_ss)
1363 return -EINVAL;
Tejun Heo69dfa002014-05-04 15:09:13 -04001364 opts->subsys_mask |= (1 << i);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001365 one_ss = true;
1366
1367 break;
1368 }
1369 if (i == CGROUP_SUBSYS_COUNT)
1370 return -ENOENT;
1371 }
1372
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001373 /* Consistency checks */
1374
Tejun Heo873fe092013-04-14 20:15:26 -07001375 if (opts->flags & CGRP_ROOT_SANE_BEHAVIOR) {
Joe Perchesed3d2612014-04-25 18:28:03 -04001376 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 -07001377
Tejun Heod3ba07c2014-02-13 06:58:38 -05001378 if ((opts->flags & (CGRP_ROOT_NOPREFIX | CGRP_ROOT_XATTR)) ||
1379 opts->cpuset_clone_children || opts->release_agent ||
1380 opts->name) {
Joe Perchesed3d2612014-04-25 18:28:03 -04001381 pr_err("sane_behavior: noprefix, xattr, clone_children, release_agent and name are not allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001382 return -EINVAL;
1383 }
Tejun Heoa2dd4242014-03-19 10:23:55 -04001384 } else {
1385 /*
1386 * If the 'all' option was specified select all the
1387 * subsystems, otherwise if 'none', 'name=' and a subsystem
1388 * name options were not specified, let's default to 'all'
1389 */
1390 if (all_ss || (!one_ss && !opts->none && !opts->name))
1391 for_each_subsys(ss, i)
1392 if (!ss->disabled)
Tejun Heo69dfa002014-05-04 15:09:13 -04001393 opts->subsys_mask |= (1 << i);
Tejun Heo873fe092013-04-14 20:15:26 -07001394
Tejun Heoa2dd4242014-03-19 10:23:55 -04001395 /*
1396 * We either have to specify by name or by subsystems. (So
1397 * all empty hierarchies must have a name).
1398 */
1399 if (!opts->subsys_mask && !opts->name)
Tejun Heo873fe092013-04-14 20:15:26 -07001400 return -EINVAL;
Tejun Heo873fe092013-04-14 20:15:26 -07001401 }
1402
Li Zefanf9ab5b52009-06-17 16:26:33 -07001403 /*
1404 * Option noprefix was introduced just for backward compatibility
1405 * with the old cpuset, so we allow noprefix only if mounting just
1406 * the cpuset subsystem.
1407 */
Tejun Heo93438622013-04-14 20:15:25 -07001408 if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask))
Li Zefanf9ab5b52009-06-17 16:26:33 -07001409 return -EINVAL;
1410
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001411
1412 /* Can't specify "none" and some subsystems */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001413 if (opts->subsys_mask && opts->none)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001414 return -EINVAL;
1415
Paul Menageddbcc7e2007-10-18 23:39:30 -07001416 return 0;
1417}
1418
Tejun Heo2bd59d42014-02-11 11:52:49 -05001419static int cgroup_remount(struct kernfs_root *kf_root, int *flags, char *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001420{
1421 int ret = 0;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001422 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001423 struct cgroup_sb_opts opts;
Tejun Heo69dfa002014-05-04 15:09:13 -04001424 unsigned int added_mask, removed_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001425
Tejun Heo873fe092013-04-14 20:15:26 -07001426 if (root->flags & CGRP_ROOT_SANE_BEHAVIOR) {
Joe Perchesed3d2612014-04-25 18:28:03 -04001427 pr_err("sane_behavior: remount is not allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001428 return -EINVAL;
1429 }
1430
Paul Menageddbcc7e2007-10-18 23:39:30 -07001431 mutex_lock(&cgroup_mutex);
1432
1433 /* See what subsystems are wanted */
1434 ret = parse_cgroupfs_options(data, &opts);
1435 if (ret)
1436 goto out_unlock;
1437
Tejun Heof392e512014-04-23 11:13:14 -04001438 if (opts.subsys_mask != root->subsys_mask || opts.release_agent)
Joe Perchesed3d2612014-04-25 18:28:03 -04001439 pr_warn("option changes via remount are deprecated (pid=%d comm=%s)\n",
Jianyu Zhana2a1f9e2014-04-25 18:28:03 -04001440 task_tgid_nr(current), current->comm);
Tejun Heo8b5a5a92012-04-01 12:09:54 -07001441
Tejun Heof392e512014-04-23 11:13:14 -04001442 added_mask = opts.subsys_mask & ~root->subsys_mask;
1443 removed_mask = root->subsys_mask & ~opts.subsys_mask;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001444
Ben Blumcf5d5942010-03-10 15:22:09 -08001445 /* Don't allow flags or name to change at remount */
Tejun Heo0ce6cba2013-06-27 19:37:26 -07001446 if (((opts.flags ^ root->flags) & CGRP_ROOT_OPTION_MASK) ||
Ben Blumcf5d5942010-03-10 15:22:09 -08001447 (opts.name && strcmp(opts.name, root->name))) {
Tejun Heo69dfa002014-05-04 15:09:13 -04001448 pr_err("option or name mismatch, new: 0x%x \"%s\", old: 0x%x \"%s\"\n",
Tejun Heo0ce6cba2013-06-27 19:37:26 -07001449 opts.flags & CGRP_ROOT_OPTION_MASK, opts.name ?: "",
1450 root->flags & CGRP_ROOT_OPTION_MASK, root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001451 ret = -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001452 goto out_unlock;
1453 }
1454
Tejun Heof172e672013-06-28 17:07:30 -07001455 /* remounting is not allowed for populated hierarchies */
Tejun Heod5c419b2014-05-16 13:22:48 -04001456 if (!list_empty(&root->cgrp.self.children)) {
Tejun Heof172e672013-06-28 17:07:30 -07001457 ret = -EBUSY;
Li Zefan0670e082009-04-02 16:57:30 -07001458 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001459 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001460
Tejun Heo5df36032014-03-19 10:23:54 -04001461 ret = rebind_subsystems(root, added_mask);
Tejun Heo31261212013-06-28 17:07:30 -07001462 if (ret)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001463 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001464
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001465 rebind_subsystems(&cgrp_dfl_root, removed_mask);
Tejun Heo5df36032014-03-19 10:23:54 -04001466
Tejun Heo69e943b2014-02-08 10:36:58 -05001467 if (opts.release_agent) {
1468 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001469 strcpy(root->release_agent_path, opts.release_agent);
Tejun Heo69e943b2014-02-08 10:36:58 -05001470 spin_unlock(&release_agent_path_lock);
1471 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001472 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001473 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001474 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001475 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001476 return ret;
1477}
1478
Tejun Heoafeb0f92014-02-13 06:58:39 -05001479/*
1480 * To reduce the fork() overhead for systems that are not actually using
1481 * their cgroups capability, we don't maintain the lists running through
1482 * each css_set to its tasks until we see the list actually used - in other
1483 * words after the first mount.
1484 */
1485static bool use_task_css_set_links __read_mostly;
1486
1487static void cgroup_enable_task_cg_lists(void)
1488{
1489 struct task_struct *p, *g;
1490
Tejun Heo96d365e2014-02-13 06:58:40 -05001491 down_write(&css_set_rwsem);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001492
1493 if (use_task_css_set_links)
1494 goto out_unlock;
1495
1496 use_task_css_set_links = true;
1497
1498 /*
1499 * We need tasklist_lock because RCU is not safe against
1500 * while_each_thread(). Besides, a forking task that has passed
1501 * cgroup_post_fork() without seeing use_task_css_set_links = 1
1502 * is not guaranteed to have its child immediately visible in the
1503 * tasklist if we walk through it with RCU.
1504 */
1505 read_lock(&tasklist_lock);
1506 do_each_thread(g, p) {
Tejun Heoafeb0f92014-02-13 06:58:39 -05001507 WARN_ON_ONCE(!list_empty(&p->cg_list) ||
1508 task_css_set(p) != &init_css_set);
1509
1510 /*
1511 * We should check if the process is exiting, otherwise
1512 * it will race with cgroup_exit() in that the list
1513 * entry won't be deleted though the process has exited.
Tejun Heof153ad12014-02-25 09:56:49 -05001514 * Do it while holding siglock so that we don't end up
1515 * racing against cgroup_exit().
Tejun Heoafeb0f92014-02-13 06:58:39 -05001516 */
Tejun Heof153ad12014-02-25 09:56:49 -05001517 spin_lock_irq(&p->sighand->siglock);
Tejun Heoeaf797a2014-02-25 10:04:03 -05001518 if (!(p->flags & PF_EXITING)) {
1519 struct css_set *cset = task_css_set(p);
1520
1521 list_add(&p->cg_list, &cset->tasks);
1522 get_css_set(cset);
1523 }
Tejun Heof153ad12014-02-25 09:56:49 -05001524 spin_unlock_irq(&p->sighand->siglock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001525 } while_each_thread(g, p);
1526 read_unlock(&tasklist_lock);
1527out_unlock:
Tejun Heo96d365e2014-02-13 06:58:40 -05001528 up_write(&css_set_rwsem);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001529}
Paul Menageddbcc7e2007-10-18 23:39:30 -07001530
Paul Menagecc31edc2008-10-18 20:28:04 -07001531static void init_cgroup_housekeeping(struct cgroup *cgrp)
1532{
Tejun Heo2d8f2432014-04-23 11:13:15 -04001533 struct cgroup_subsys *ss;
1534 int ssid;
1535
Tejun Heod5c419b2014-05-16 13:22:48 -04001536 INIT_LIST_HEAD(&cgrp->self.sibling);
1537 INIT_LIST_HEAD(&cgrp->self.children);
Tejun Heo69d02062013-06-12 21:04:50 -07001538 INIT_LIST_HEAD(&cgrp->cset_links);
Paul Menagecc31edc2008-10-18 20:28:04 -07001539 INIT_LIST_HEAD(&cgrp->release_list);
Ben Blum72a8cb32009-09-23 15:56:27 -07001540 INIT_LIST_HEAD(&cgrp->pidlists);
1541 mutex_init(&cgrp->pidlist_mutex);
Tejun Heo9d800df2014-05-14 09:15:00 -04001542 cgrp->self.cgroup = cgrp;
Tejun Heo184faf32014-05-16 13:22:51 -04001543 cgrp->self.flags |= CSS_ONLINE;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001544
1545 for_each_subsys(ss, ssid)
1546 INIT_LIST_HEAD(&cgrp->e_csets[ssid]);
Tejun Heof8f22e52014-04-23 11:13:16 -04001547
1548 init_waitqueue_head(&cgrp->offline_waitq);
Paul Menagecc31edc2008-10-18 20:28:04 -07001549}
Paul Menagec6d57f32009-09-23 15:56:19 -07001550
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001551static void init_cgroup_root(struct cgroup_root *root,
Tejun Heo172a2c062014-03-19 10:23:53 -04001552 struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001553{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001554 struct cgroup *cgrp = &root->cgrp;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001555
Paul Menageddbcc7e2007-10-18 23:39:30 -07001556 INIT_LIST_HEAD(&root->root_list);
Tejun Heo3c9c8252014-02-12 09:29:50 -05001557 atomic_set(&root->nr_cgrps, 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001558 cgrp->root = root;
Paul Menagecc31edc2008-10-18 20:28:04 -07001559 init_cgroup_housekeeping(cgrp);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08001560 idr_init(&root->cgroup_idr);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001561
Paul Menagec6d57f32009-09-23 15:56:19 -07001562 root->flags = opts->flags;
1563 if (opts->release_agent)
1564 strcpy(root->release_agent_path, opts->release_agent);
1565 if (opts->name)
1566 strcpy(root->name, opts->name);
Tejun Heo2260e7f2012-11-19 08:13:38 -08001567 if (opts->cpuset_clone_children)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001568 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001569}
1570
Tejun Heo69dfa002014-05-04 15:09:13 -04001571static int cgroup_setup_root(struct cgroup_root *root, unsigned int ss_mask)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001572{
Tejun Heod427dfe2014-02-11 11:52:48 -05001573 LIST_HEAD(tmp_links);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001574 struct cgroup *root_cgrp = &root->cgrp;
Tejun Heod427dfe2014-02-11 11:52:48 -05001575 struct css_set *cset;
Tejun Heod427dfe2014-02-11 11:52:48 -05001576 int i, ret;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001577
Tejun Heod427dfe2014-02-11 11:52:48 -05001578 lockdep_assert_held(&cgroup_mutex);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001579
Tejun Heo6fa49182014-05-04 15:09:13 -04001580 ret = cgroup_idr_alloc(&root->cgroup_idr, root_cgrp, 1, 2, GFP_NOWAIT);
Tejun Heod427dfe2014-02-11 11:52:48 -05001581 if (ret < 0)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001582 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001583 root_cgrp->id = ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001584
Tejun Heo9d755d32014-05-14 09:15:02 -04001585 ret = percpu_ref_init(&root_cgrp->self.refcnt, css_release);
1586 if (ret)
1587 goto out;
1588
Tejun Heod427dfe2014-02-11 11:52:48 -05001589 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05001590 * We're accessing css_set_count without locking css_set_rwsem here,
Tejun Heod427dfe2014-02-11 11:52:48 -05001591 * but that's OK - it can only be increased by someone holding
1592 * cgroup_lock, and that's us. The worst that can happen is that we
1593 * have some link structures left over
1594 */
1595 ret = allocate_cgrp_cset_links(css_set_count, &tmp_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001596 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001597 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001598
Tejun Heo985ed672014-03-19 10:23:53 -04001599 ret = cgroup_init_root_id(root);
Tejun Heod427dfe2014-02-11 11:52:48 -05001600 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001601 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001602
Tejun Heo2bd59d42014-02-11 11:52:49 -05001603 root->kf_root = kernfs_create_root(&cgroup_kf_syscall_ops,
1604 KERNFS_ROOT_CREATE_DEACTIVATED,
1605 root_cgrp);
1606 if (IS_ERR(root->kf_root)) {
1607 ret = PTR_ERR(root->kf_root);
1608 goto exit_root_id;
1609 }
1610 root_cgrp->kn = root->kf_root->kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001611
Tejun Heod427dfe2014-02-11 11:52:48 -05001612 ret = cgroup_addrm_files(root_cgrp, cgroup_base_files, true);
1613 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001614 goto destroy_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001615
Tejun Heo5df36032014-03-19 10:23:54 -04001616 ret = rebind_subsystems(root, ss_mask);
Tejun Heod427dfe2014-02-11 11:52:48 -05001617 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001618 goto destroy_root;
Al Viro0df6a632010-12-21 13:29:29 -05001619
Tejun Heod427dfe2014-02-11 11:52:48 -05001620 /*
1621 * There must be no failure case after here, since rebinding takes
1622 * care of subsystems' refcounts, which are explicitly dropped in
1623 * the failure exit path.
1624 */
1625 list_add(&root->root_list, &cgroup_roots);
1626 cgroup_root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001627
Tejun Heod427dfe2014-02-11 11:52:48 -05001628 /*
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001629 * Link the root cgroup in this hierarchy into all the css_set
Tejun Heod427dfe2014-02-11 11:52:48 -05001630 * objects.
1631 */
Tejun Heo96d365e2014-02-13 06:58:40 -05001632 down_write(&css_set_rwsem);
Tejun Heod427dfe2014-02-11 11:52:48 -05001633 hash_for_each(css_set_table, i, cset, hlist)
1634 link_css_set(&tmp_links, cset, root_cgrp);
Tejun Heo96d365e2014-02-13 06:58:40 -05001635 up_write(&css_set_rwsem);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001636
Tejun Heod5c419b2014-05-16 13:22:48 -04001637 BUG_ON(!list_empty(&root_cgrp->self.children));
Tejun Heo3c9c8252014-02-12 09:29:50 -05001638 BUG_ON(atomic_read(&root->nr_cgrps) != 1);
Tejun Heod427dfe2014-02-11 11:52:48 -05001639
Tejun Heo2bd59d42014-02-11 11:52:49 -05001640 kernfs_activate(root_cgrp->kn);
Tejun Heod427dfe2014-02-11 11:52:48 -05001641 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001642 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001643
Tejun Heo2bd59d42014-02-11 11:52:49 -05001644destroy_root:
1645 kernfs_destroy_root(root->kf_root);
1646 root->kf_root = NULL;
1647exit_root_id:
Tejun Heod427dfe2014-02-11 11:52:48 -05001648 cgroup_exit_root_id(root);
Tejun Heo9d755d32014-05-14 09:15:02 -04001649cancel_ref:
1650 percpu_ref_cancel_init(&root_cgrp->self.refcnt);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001651out:
Tejun Heod427dfe2014-02-11 11:52:48 -05001652 free_cgrp_cset_links(&tmp_links);
1653 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001654}
1655
Al Virof7e83572010-07-26 13:23:11 +04001656static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001657 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001658 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001659{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001660 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001661 struct cgroup_sb_opts opts;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001662 struct dentry *dentry;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001663 int ret;
Li Zefanc6b3d5b2014-04-04 17:14:41 +08001664 bool new_sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001665
1666 /*
Tejun Heo56fde9e2014-02-13 06:58:38 -05001667 * The first time anyone tries to mount a cgroup, enable the list
1668 * linking each css_set to its tasks and fix up all existing tasks.
Paul Menagec6d57f32009-09-23 15:56:19 -07001669 */
Tejun Heo56fde9e2014-02-13 06:58:38 -05001670 if (!use_task_css_set_links)
1671 cgroup_enable_task_cg_lists();
Li Zefane37a06f2014-04-17 13:53:08 +08001672
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001673 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001674
Paul Menageddbcc7e2007-10-18 23:39:30 -07001675 /* First find the desired set of subsystems */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001676 ret = parse_cgroupfs_options(data, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001677 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001678 goto out_unlock;
Tejun Heoa015edd2014-05-14 09:15:00 -04001679
Tejun Heo2bd59d42014-02-11 11:52:49 -05001680 /* look for a matching existing root */
Tejun Heoa2dd4242014-03-19 10:23:55 -04001681 if (!opts.subsys_mask && !opts.none && !opts.name) {
1682 cgrp_dfl_root_visible = true;
1683 root = &cgrp_dfl_root;
1684 cgroup_get(&root->cgrp);
1685 ret = 0;
1686 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001687 }
1688
Tejun Heo985ed672014-03-19 10:23:53 -04001689 for_each_root(root) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05001690 bool name_match = false;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001691
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001692 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04001693 continue;
Paul Menagec6d57f32009-09-23 15:56:19 -07001694
Paul Menage817929e2007-10-18 23:39:36 -07001695 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05001696 * If we asked for a name then it must match. Also, if
1697 * name matches but sybsys_mask doesn't, we should fail.
1698 * Remember whether name matched.
Paul Menage817929e2007-10-18 23:39:36 -07001699 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05001700 if (opts.name) {
1701 if (strcmp(opts.name, root->name))
1702 continue;
1703 name_match = true;
1704 }
Tejun Heo31261212013-06-28 17:07:30 -07001705
1706 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05001707 * If we asked for subsystems (or explicitly for no
1708 * subsystems) then they must match.
Tejun Heo31261212013-06-28 17:07:30 -07001709 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05001710 if ((opts.subsys_mask || opts.none) &&
Tejun Heof392e512014-04-23 11:13:14 -04001711 (opts.subsys_mask != root->subsys_mask)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05001712 if (!name_match)
1713 continue;
1714 ret = -EBUSY;
1715 goto out_unlock;
1716 }
Tejun Heo873fe092013-04-14 20:15:26 -07001717
Tejun Heoc7ba8282013-06-29 14:06:10 -07001718 if ((root->flags ^ opts.flags) & CGRP_ROOT_OPTION_MASK) {
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001719 if ((root->flags | opts.flags) & CGRP_ROOT_SANE_BEHAVIOR) {
Joe Perchesed3d2612014-04-25 18:28:03 -04001720 pr_err("sane_behavior: new mount options should match the existing superblock\n");
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001721 ret = -EINVAL;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001722 goto out_unlock;
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001723 } else {
Joe Perchesed3d2612014-04-25 18:28:03 -04001724 pr_warn("new mount options do not match the existing superblock, will be ignored\n");
Jeff Liu2a0ff3f2013-05-26 21:33:09 +08001725 }
Tejun Heo873fe092013-04-14 20:15:26 -07001726 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05001727
Tejun Heo776f02f2014-02-12 09:29:50 -05001728 /*
Tejun Heo9d755d32014-05-14 09:15:02 -04001729 * A root's lifetime is governed by its root cgroup.
1730 * tryget_live failure indicate that the root is being
1731 * destroyed. Wait for destruction to complete so that the
1732 * subsystems are free. We can use wait_queue for the wait
1733 * but this path is super cold. Let's just sleep for a bit
1734 * and retry.
Tejun Heo776f02f2014-02-12 09:29:50 -05001735 */
Tejun Heo9d755d32014-05-14 09:15:02 -04001736 if (!percpu_ref_tryget_live(&root->cgrp.self.refcnt)) {
Tejun Heo776f02f2014-02-12 09:29:50 -05001737 mutex_unlock(&cgroup_mutex);
Tejun Heo776f02f2014-02-12 09:29:50 -05001738 msleep(10);
Tejun Heoa015edd2014-05-14 09:15:00 -04001739 ret = restart_syscall();
1740 goto out_free;
Tejun Heo776f02f2014-02-12 09:29:50 -05001741 }
1742
1743 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001744 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001745 }
1746
Tejun Heo172a2c062014-03-19 10:23:53 -04001747 /*
1748 * No such thing, create a new one. name= matching without subsys
1749 * specification is allowed for already existing hierarchies but we
1750 * can't create new one without subsys specification.
1751 */
1752 if (!opts.subsys_mask && !opts.none) {
1753 ret = -EINVAL;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001754 goto out_unlock;
1755 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001756
Tejun Heo172a2c062014-03-19 10:23:53 -04001757 root = kzalloc(sizeof(*root), GFP_KERNEL);
1758 if (!root) {
1759 ret = -ENOMEM;
1760 goto out_unlock;
1761 }
1762
1763 init_cgroup_root(root, &opts);
1764
Tejun Heo35585572014-02-13 06:58:38 -05001765 ret = cgroup_setup_root(root, opts.subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001766 if (ret)
1767 cgroup_free_root(root);
1768
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001769out_unlock:
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001770 mutex_unlock(&cgroup_mutex);
Tejun Heoa015edd2014-05-14 09:15:00 -04001771out_free:
Paul Menagec6d57f32009-09-23 15:56:19 -07001772 kfree(opts.release_agent);
1773 kfree(opts.name);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001774
Tejun Heo2bd59d42014-02-11 11:52:49 -05001775 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001776 return ERR_PTR(ret);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001777
Jianyu Zhanc9482a52014-04-26 15:40:28 +08001778 dentry = kernfs_mount(fs_type, flags, root->kf_root,
1779 CGROUP_SUPER_MAGIC, &new_sb);
Li Zefanc6b3d5b2014-04-04 17:14:41 +08001780 if (IS_ERR(dentry) || !new_sb)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001781 cgroup_put(&root->cgrp);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001782 return dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001783}
1784
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09001785static void cgroup_kill_sb(struct super_block *sb)
1786{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001787 struct kernfs_root *kf_root = kernfs_root_from_sb(sb);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001788 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001789
Tejun Heo9d755d32014-05-14 09:15:02 -04001790 /*
1791 * If @root doesn't have any mounts or children, start killing it.
1792 * This prevents new mounts by disabling percpu_ref_tryget_live().
1793 * cgroup_mount() may wait for @root's release.
Li Zefan1f779fb2014-06-04 16:48:15 +08001794 *
1795 * And don't kill the default root.
Tejun Heo9d755d32014-05-14 09:15:02 -04001796 */
Li Zefan1f779fb2014-06-04 16:48:15 +08001797 if (css_has_online_children(&root->cgrp.self) ||
1798 root == &cgrp_dfl_root)
Tejun Heo9d755d32014-05-14 09:15:02 -04001799 cgroup_put(&root->cgrp);
1800 else
1801 percpu_ref_kill(&root->cgrp.self.refcnt);
1802
Tejun Heo2bd59d42014-02-11 11:52:49 -05001803 kernfs_kill_sb(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001804}
1805
1806static struct file_system_type cgroup_fs_type = {
1807 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001808 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001809 .kill_sb = cgroup_kill_sb,
1810};
1811
Greg KH676db4a2010-08-05 13:53:35 -07001812static struct kobject *cgroup_kobj;
1813
Li Zefana043e3b2008-02-23 15:24:09 -08001814/**
Tejun Heo913ffdb2013-07-11 16:34:48 -07001815 * task_cgroup_path - cgroup path of a task in the first cgroup hierarchy
Tejun Heo857a2be2013-04-14 20:50:08 -07001816 * @task: target task
Tejun Heo857a2be2013-04-14 20:50:08 -07001817 * @buf: the buffer to write the path into
1818 * @buflen: the length of the buffer
1819 *
Tejun Heo913ffdb2013-07-11 16:34:48 -07001820 * Determine @task's cgroup on the first (the one with the lowest non-zero
1821 * hierarchy_id) cgroup hierarchy and copy its path into @buf. This
1822 * function grabs cgroup_mutex and shouldn't be used inside locks used by
1823 * cgroup controller callbacks.
1824 *
Tejun Heoe61734c2014-02-12 09:29:50 -05001825 * Return value is the same as kernfs_path().
Tejun Heo857a2be2013-04-14 20:50:08 -07001826 */
Tejun Heoe61734c2014-02-12 09:29:50 -05001827char *task_cgroup_path(struct task_struct *task, char *buf, size_t buflen)
Tejun Heo857a2be2013-04-14 20:50:08 -07001828{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001829 struct cgroup_root *root;
Tejun Heo913ffdb2013-07-11 16:34:48 -07001830 struct cgroup *cgrp;
Tejun Heoe61734c2014-02-12 09:29:50 -05001831 int hierarchy_id = 1;
1832 char *path = NULL;
Tejun Heo857a2be2013-04-14 20:50:08 -07001833
1834 mutex_lock(&cgroup_mutex);
Tejun Heo96d365e2014-02-13 06:58:40 -05001835 down_read(&css_set_rwsem);
Tejun Heo857a2be2013-04-14 20:50:08 -07001836
Tejun Heo913ffdb2013-07-11 16:34:48 -07001837 root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id);
1838
Tejun Heo857a2be2013-04-14 20:50:08 -07001839 if (root) {
1840 cgrp = task_cgroup_from_root(task, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05001841 path = cgroup_path(cgrp, buf, buflen);
Tejun Heo913ffdb2013-07-11 16:34:48 -07001842 } else {
1843 /* if no hierarchy exists, everyone is in "/" */
Tejun Heoe61734c2014-02-12 09:29:50 -05001844 if (strlcpy(buf, "/", buflen) < buflen)
1845 path = buf;
Tejun Heo857a2be2013-04-14 20:50:08 -07001846 }
1847
Tejun Heo96d365e2014-02-13 06:58:40 -05001848 up_read(&css_set_rwsem);
Tejun Heo857a2be2013-04-14 20:50:08 -07001849 mutex_unlock(&cgroup_mutex);
Tejun Heoe61734c2014-02-12 09:29:50 -05001850 return path;
Tejun Heo857a2be2013-04-14 20:50:08 -07001851}
Tejun Heo913ffdb2013-07-11 16:34:48 -07001852EXPORT_SYMBOL_GPL(task_cgroup_path);
Tejun Heo857a2be2013-04-14 20:50:08 -07001853
Tejun Heob3dc0942014-02-25 10:04:01 -05001854/* used to track tasks and other necessary states during migration */
Tejun Heo2f7ee562011-12-12 18:12:21 -08001855struct cgroup_taskset {
Tejun Heob3dc0942014-02-25 10:04:01 -05001856 /* the src and dst cset list running through cset->mg_node */
1857 struct list_head src_csets;
1858 struct list_head dst_csets;
1859
1860 /*
1861 * Fields for cgroup_taskset_*() iteration.
1862 *
1863 * Before migration is committed, the target migration tasks are on
1864 * ->mg_tasks of the csets on ->src_csets. After, on ->mg_tasks of
1865 * the csets on ->dst_csets. ->csets point to either ->src_csets
1866 * or ->dst_csets depending on whether migration is committed.
1867 *
1868 * ->cur_csets and ->cur_task point to the current task position
1869 * during iteration.
1870 */
1871 struct list_head *csets;
1872 struct css_set *cur_cset;
1873 struct task_struct *cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001874};
1875
1876/**
1877 * cgroup_taskset_first - reset taskset and return the first task
1878 * @tset: taskset of interest
1879 *
1880 * @tset iteration is initialized and the first task is returned.
1881 */
1882struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
1883{
Tejun Heob3dc0942014-02-25 10:04:01 -05001884 tset->cur_cset = list_first_entry(tset->csets, struct css_set, mg_node);
1885 tset->cur_task = NULL;
1886
1887 return cgroup_taskset_next(tset);
Tejun Heo2f7ee562011-12-12 18:12:21 -08001888}
Tejun Heo2f7ee562011-12-12 18:12:21 -08001889
1890/**
1891 * cgroup_taskset_next - iterate to the next task in taskset
1892 * @tset: taskset of interest
1893 *
1894 * Return the next task in @tset. Iteration must have been initialized
1895 * with cgroup_taskset_first().
1896 */
1897struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
1898{
Tejun Heob3dc0942014-02-25 10:04:01 -05001899 struct css_set *cset = tset->cur_cset;
1900 struct task_struct *task = tset->cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001901
Tejun Heob3dc0942014-02-25 10:04:01 -05001902 while (&cset->mg_node != tset->csets) {
1903 if (!task)
1904 task = list_first_entry(&cset->mg_tasks,
1905 struct task_struct, cg_list);
1906 else
1907 task = list_next_entry(task, cg_list);
Tejun Heo2f7ee562011-12-12 18:12:21 -08001908
Tejun Heob3dc0942014-02-25 10:04:01 -05001909 if (&task->cg_list != &cset->mg_tasks) {
1910 tset->cur_cset = cset;
1911 tset->cur_task = task;
1912 return task;
1913 }
1914
1915 cset = list_next_entry(cset, mg_node);
1916 task = NULL;
1917 }
1918
1919 return NULL;
Tejun Heo2f7ee562011-12-12 18:12:21 -08001920}
Tejun Heo2f7ee562011-12-12 18:12:21 -08001921
1922/**
Ben Blum74a11662011-05-26 16:25:20 -07001923 * cgroup_task_migrate - move a task from one cgroup to another.
Fabian Frederick60106942014-05-05 20:08:13 +02001924 * @old_cgrp: the cgroup @tsk is being migrated from
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001925 * @tsk: the task being migrated
1926 * @new_cset: the new css_set @tsk is being attached to
Ben Blum74a11662011-05-26 16:25:20 -07001927 *
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001928 * Must be called with cgroup_mutex, threadgroup and css_set_rwsem locked.
Ben Blum74a11662011-05-26 16:25:20 -07001929 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001930static void cgroup_task_migrate(struct cgroup *old_cgrp,
1931 struct task_struct *tsk,
1932 struct css_set *new_cset)
Ben Blum74a11662011-05-26 16:25:20 -07001933{
Tejun Heo5abb8852013-06-12 21:04:49 -07001934 struct css_set *old_cset;
Ben Blum74a11662011-05-26 16:25:20 -07001935
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001936 lockdep_assert_held(&cgroup_mutex);
1937 lockdep_assert_held(&css_set_rwsem);
1938
Ben Blum74a11662011-05-26 16:25:20 -07001939 /*
Mandeep Singh Baines026085e2011-12-21 20:18:35 -08001940 * We are synchronized through threadgroup_lock() against PF_EXITING
1941 * setting such that we can't race against cgroup_exit() changing the
1942 * css_set to init_css_set and dropping the old one.
Ben Blum74a11662011-05-26 16:25:20 -07001943 */
Frederic Weisbeckerc84cdf72011-12-21 20:03:18 +01001944 WARN_ON_ONCE(tsk->flags & PF_EXITING);
Tejun Heoa8ad8052013-06-21 15:52:04 -07001945 old_cset = task_css_set(tsk);
Ben Blum74a11662011-05-26 16:25:20 -07001946
Tejun Heob3dc0942014-02-25 10:04:01 -05001947 get_css_set(new_cset);
Tejun Heo5abb8852013-06-12 21:04:49 -07001948 rcu_assign_pointer(tsk->cgroups, new_cset);
Ben Blum74a11662011-05-26 16:25:20 -07001949
Tejun Heo1b9aba42014-03-19 17:43:21 -04001950 /*
1951 * Use move_tail so that cgroup_taskset_first() still returns the
1952 * leader after migration. This works because cgroup_migrate()
1953 * ensures that the dst_cset of the leader is the first on the
1954 * tset's dst_csets list.
1955 */
1956 list_move_tail(&tsk->cg_list, &new_cset->mg_tasks);
Ben Blum74a11662011-05-26 16:25:20 -07001957
1958 /*
Tejun Heo5abb8852013-06-12 21:04:49 -07001959 * We just gained a reference on old_cset by taking it from the
1960 * task. As trading it for new_cset is protected by cgroup_mutex,
1961 * we're safe to drop it here; it will be freed under RCU.
Ben Blum74a11662011-05-26 16:25:20 -07001962 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001963 set_bit(CGRP_RELEASABLE, &old_cgrp->flags);
Tejun Heocb0f1fe2014-02-13 06:58:41 -05001964 put_css_set_locked(old_cset, false);
Ben Blum74a11662011-05-26 16:25:20 -07001965}
1966
Li Zefana043e3b2008-02-23 15:24:09 -08001967/**
Tejun Heo1958d2d2014-02-25 10:04:03 -05001968 * cgroup_migrate_finish - cleanup after attach
1969 * @preloaded_csets: list of preloaded css_sets
Ben Blum74a11662011-05-26 16:25:20 -07001970 *
Tejun Heo1958d2d2014-02-25 10:04:03 -05001971 * Undo cgroup_migrate_add_src() and cgroup_migrate_prepare_dst(). See
1972 * those functions for details.
Ben Blum74a11662011-05-26 16:25:20 -07001973 */
Tejun Heo1958d2d2014-02-25 10:04:03 -05001974static void cgroup_migrate_finish(struct list_head *preloaded_csets)
Ben Blum74a11662011-05-26 16:25:20 -07001975{
Tejun Heo1958d2d2014-02-25 10:04:03 -05001976 struct css_set *cset, *tmp_cset;
1977
1978 lockdep_assert_held(&cgroup_mutex);
1979
1980 down_write(&css_set_rwsem);
1981 list_for_each_entry_safe(cset, tmp_cset, preloaded_csets, mg_preload_node) {
1982 cset->mg_src_cgrp = NULL;
1983 cset->mg_dst_cset = NULL;
1984 list_del_init(&cset->mg_preload_node);
1985 put_css_set_locked(cset, false);
1986 }
1987 up_write(&css_set_rwsem);
1988}
1989
1990/**
1991 * cgroup_migrate_add_src - add a migration source css_set
1992 * @src_cset: the source css_set to add
1993 * @dst_cgrp: the destination cgroup
1994 * @preloaded_csets: list of preloaded css_sets
1995 *
1996 * Tasks belonging to @src_cset are about to be migrated to @dst_cgrp. Pin
1997 * @src_cset and add it to @preloaded_csets, which should later be cleaned
1998 * up by cgroup_migrate_finish().
1999 *
2000 * This function may be called without holding threadgroup_lock even if the
2001 * target is a process. Threads may be created and destroyed but as long
2002 * as cgroup_mutex is not dropped, no new css_set can be put into play and
2003 * the preloaded css_sets are guaranteed to cover all migrations.
2004 */
2005static void cgroup_migrate_add_src(struct css_set *src_cset,
2006 struct cgroup *dst_cgrp,
2007 struct list_head *preloaded_csets)
2008{
2009 struct cgroup *src_cgrp;
2010
2011 lockdep_assert_held(&cgroup_mutex);
2012 lockdep_assert_held(&css_set_rwsem);
2013
2014 src_cgrp = cset_cgroup_from_root(src_cset, dst_cgrp->root);
2015
Tejun Heo1958d2d2014-02-25 10:04:03 -05002016 if (!list_empty(&src_cset->mg_preload_node))
2017 return;
2018
2019 WARN_ON(src_cset->mg_src_cgrp);
2020 WARN_ON(!list_empty(&src_cset->mg_tasks));
2021 WARN_ON(!list_empty(&src_cset->mg_node));
2022
2023 src_cset->mg_src_cgrp = src_cgrp;
2024 get_css_set(src_cset);
2025 list_add(&src_cset->mg_preload_node, preloaded_csets);
2026}
2027
2028/**
2029 * cgroup_migrate_prepare_dst - prepare destination css_sets for migration
Tejun Heof817de92014-04-23 11:13:16 -04002030 * @dst_cgrp: the destination cgroup (may be %NULL)
Tejun Heo1958d2d2014-02-25 10:04:03 -05002031 * @preloaded_csets: list of preloaded source css_sets
2032 *
2033 * Tasks are about to be moved to @dst_cgrp and all the source css_sets
2034 * have been preloaded to @preloaded_csets. This function looks up and
Tejun Heof817de92014-04-23 11:13:16 -04002035 * pins all destination css_sets, links each to its source, and append them
2036 * to @preloaded_csets. If @dst_cgrp is %NULL, the destination of each
2037 * source css_set is assumed to be its cgroup on the default hierarchy.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002038 *
2039 * This function must be called after cgroup_migrate_add_src() has been
2040 * called on each migration source css_set. After migration is performed
2041 * using cgroup_migrate(), cgroup_migrate_finish() must be called on
2042 * @preloaded_csets.
2043 */
2044static int cgroup_migrate_prepare_dst(struct cgroup *dst_cgrp,
2045 struct list_head *preloaded_csets)
2046{
2047 LIST_HEAD(csets);
Tejun Heof817de92014-04-23 11:13:16 -04002048 struct css_set *src_cset, *tmp_cset;
Tejun Heo1958d2d2014-02-25 10:04:03 -05002049
2050 lockdep_assert_held(&cgroup_mutex);
2051
Tejun Heof8f22e52014-04-23 11:13:16 -04002052 /*
2053 * Except for the root, child_subsys_mask must be zero for a cgroup
2054 * with tasks so that child cgroups don't compete against tasks.
2055 */
Tejun Heod51f39b2014-05-16 13:22:48 -04002056 if (dst_cgrp && cgroup_on_dfl(dst_cgrp) && cgroup_parent(dst_cgrp) &&
Tejun Heof8f22e52014-04-23 11:13:16 -04002057 dst_cgrp->child_subsys_mask)
2058 return -EBUSY;
2059
Tejun Heo1958d2d2014-02-25 10:04:03 -05002060 /* look up the dst cset for each src cset and link it to src */
Tejun Heof817de92014-04-23 11:13:16 -04002061 list_for_each_entry_safe(src_cset, tmp_cset, preloaded_csets, mg_preload_node) {
Tejun Heo1958d2d2014-02-25 10:04:03 -05002062 struct css_set *dst_cset;
2063
Tejun Heof817de92014-04-23 11:13:16 -04002064 dst_cset = find_css_set(src_cset,
2065 dst_cgrp ?: src_cset->dfl_cgrp);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002066 if (!dst_cset)
2067 goto err;
2068
2069 WARN_ON_ONCE(src_cset->mg_dst_cset || dst_cset->mg_dst_cset);
Tejun Heof817de92014-04-23 11:13:16 -04002070
2071 /*
2072 * If src cset equals dst, it's noop. Drop the src.
2073 * cgroup_migrate() will skip the cset too. Note that we
2074 * can't handle src == dst as some nodes are used by both.
2075 */
2076 if (src_cset == dst_cset) {
2077 src_cset->mg_src_cgrp = NULL;
2078 list_del_init(&src_cset->mg_preload_node);
2079 put_css_set(src_cset, false);
2080 put_css_set(dst_cset, false);
2081 continue;
2082 }
2083
Tejun Heo1958d2d2014-02-25 10:04:03 -05002084 src_cset->mg_dst_cset = dst_cset;
2085
2086 if (list_empty(&dst_cset->mg_preload_node))
2087 list_add(&dst_cset->mg_preload_node, &csets);
2088 else
2089 put_css_set(dst_cset, false);
2090 }
2091
Tejun Heof817de92014-04-23 11:13:16 -04002092 list_splice_tail(&csets, preloaded_csets);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002093 return 0;
2094err:
2095 cgroup_migrate_finish(&csets);
2096 return -ENOMEM;
2097}
2098
2099/**
2100 * cgroup_migrate - migrate a process or task to a cgroup
2101 * @cgrp: the destination cgroup
2102 * @leader: the leader of the process or the task to migrate
2103 * @threadgroup: whether @leader points to the whole process or a single task
2104 *
2105 * Migrate a process or task denoted by @leader to @cgrp. If migrating a
2106 * process, the caller must be holding threadgroup_lock of @leader. The
2107 * caller is also responsible for invoking cgroup_migrate_add_src() and
2108 * cgroup_migrate_prepare_dst() on the targets before invoking this
2109 * function and following up with cgroup_migrate_finish().
2110 *
2111 * As long as a controller's ->can_attach() doesn't fail, this function is
2112 * guaranteed to succeed. This means that, excluding ->can_attach()
2113 * failure, when migrating multiple targets, the success or failure can be
2114 * decided for all targets by invoking group_migrate_prepare_dst() before
2115 * actually starting migrating.
2116 */
2117static int cgroup_migrate(struct cgroup *cgrp, struct task_struct *leader,
2118 bool threadgroup)
Ben Blum74a11662011-05-26 16:25:20 -07002119{
Tejun Heob3dc0942014-02-25 10:04:01 -05002120 struct cgroup_taskset tset = {
2121 .src_csets = LIST_HEAD_INIT(tset.src_csets),
2122 .dst_csets = LIST_HEAD_INIT(tset.dst_csets),
2123 .csets = &tset.src_csets,
2124 };
Tejun Heo1c6727a2013-12-06 15:11:56 -05002125 struct cgroup_subsys_state *css, *failed_css = NULL;
Tejun Heob3dc0942014-02-25 10:04:01 -05002126 struct css_set *cset, *tmp_cset;
2127 struct task_struct *task, *tmp_task;
2128 int i, ret;
Ben Blum74a11662011-05-26 16:25:20 -07002129
2130 /*
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002131 * Prevent freeing of tasks while we take a snapshot. Tasks that are
2132 * already PF_EXITING could be freed from underneath us unless we
2133 * take an rcu_read_lock.
2134 */
Tejun Heob3dc0942014-02-25 10:04:01 -05002135 down_write(&css_set_rwsem);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002136 rcu_read_lock();
Tejun Heo9db8de32014-02-13 06:58:43 -05002137 task = leader;
Ben Blum74a11662011-05-26 16:25:20 -07002138 do {
Tejun Heo9db8de32014-02-13 06:58:43 -05002139 /* @task either already exited or can't exit until the end */
2140 if (task->flags & PF_EXITING)
Anjana V Kumarea847532013-10-12 10:59:17 +08002141 goto next;
Tejun Heocd3d0952011-12-12 18:12:21 -08002142
Tejun Heoeaf797a2014-02-25 10:04:03 -05002143 /* leave @task alone if post_fork() hasn't linked it yet */
2144 if (list_empty(&task->cg_list))
Anjana V Kumarea847532013-10-12 10:59:17 +08002145 goto next;
Tejun Heoeaf797a2014-02-25 10:04:03 -05002146
Tejun Heob3dc0942014-02-25 10:04:01 -05002147 cset = task_css_set(task);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002148 if (!cset->mg_src_cgrp)
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08002149 goto next;
Tejun Heob3dc0942014-02-25 10:04:01 -05002150
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002151 /*
Tejun Heo1b9aba42014-03-19 17:43:21 -04002152 * cgroup_taskset_first() must always return the leader.
2153 * Take care to avoid disturbing the ordering.
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002154 */
Tejun Heo1b9aba42014-03-19 17:43:21 -04002155 list_move_tail(&task->cg_list, &cset->mg_tasks);
2156 if (list_empty(&cset->mg_node))
2157 list_add_tail(&cset->mg_node, &tset.src_csets);
2158 if (list_empty(&cset->mg_dst_cset->mg_node))
2159 list_move_tail(&cset->mg_dst_cset->mg_node,
2160 &tset.dst_csets);
Anjana V Kumarea847532013-10-12 10:59:17 +08002161 next:
Li Zefan081aa452013-03-13 09:17:09 +08002162 if (!threadgroup)
2163 break;
Tejun Heo9db8de32014-02-13 06:58:43 -05002164 } while_each_thread(leader, task);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002165 rcu_read_unlock();
Tejun Heob3dc0942014-02-25 10:04:01 -05002166 up_write(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07002167
Tejun Heo134d3372011-12-12 18:12:21 -08002168 /* methods shouldn't be called if no task is actually migrating */
Tejun Heob3dc0942014-02-25 10:04:01 -05002169 if (list_empty(&tset.src_csets))
2170 return 0;
Tejun Heo134d3372011-12-12 18:12:21 -08002171
Tejun Heo1958d2d2014-02-25 10:04:03 -05002172 /* check that we can legitimately attach to the cgroup */
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002173 for_each_e_css(css, i, cgrp) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05002174 if (css->ss->can_attach) {
Tejun Heo9db8de32014-02-13 06:58:43 -05002175 ret = css->ss->can_attach(css, &tset);
2176 if (ret) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05002177 failed_css = css;
Ben Blum74a11662011-05-26 16:25:20 -07002178 goto out_cancel_attach;
2179 }
2180 }
Ben Blum74a11662011-05-26 16:25:20 -07002181 }
2182
2183 /*
Tejun Heo1958d2d2014-02-25 10:04:03 -05002184 * Now that we're guaranteed success, proceed to move all tasks to
2185 * the new cgroup. There are no failure cases after here, so this
2186 * is the commit point.
Ben Blum74a11662011-05-26 16:25:20 -07002187 */
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002188 down_write(&css_set_rwsem);
Tejun Heob3dc0942014-02-25 10:04:01 -05002189 list_for_each_entry(cset, &tset.src_csets, mg_node) {
2190 list_for_each_entry_safe(task, tmp_task, &cset->mg_tasks, cg_list)
2191 cgroup_task_migrate(cset->mg_src_cgrp, task,
2192 cset->mg_dst_cset);
Ben Blum74a11662011-05-26 16:25:20 -07002193 }
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002194 up_write(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07002195
2196 /*
Tejun Heo1958d2d2014-02-25 10:04:03 -05002197 * Migration is committed, all target tasks are now on dst_csets.
2198 * Nothing is sensitive to fork() after this point. Notify
2199 * controllers that migration is complete.
Ben Blum74a11662011-05-26 16:25:20 -07002200 */
Tejun Heob3dc0942014-02-25 10:04:01 -05002201 tset.csets = &tset.dst_csets;
Ben Blum74a11662011-05-26 16:25:20 -07002202
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002203 for_each_e_css(css, i, cgrp)
Tejun Heo1c6727a2013-12-06 15:11:56 -05002204 if (css->ss->attach)
2205 css->ss->attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002206
Tejun Heo9db8de32014-02-13 06:58:43 -05002207 ret = 0;
Tejun Heob3dc0942014-02-25 10:04:01 -05002208 goto out_release_tset;
2209
Ben Blum74a11662011-05-26 16:25:20 -07002210out_cancel_attach:
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002211 for_each_e_css(css, i, cgrp) {
Tejun Heob3dc0942014-02-25 10:04:01 -05002212 if (css == failed_css)
2213 break;
2214 if (css->ss->cancel_attach)
2215 css->ss->cancel_attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002216 }
Tejun Heob3dc0942014-02-25 10:04:01 -05002217out_release_tset:
2218 down_write(&css_set_rwsem);
2219 list_splice_init(&tset.dst_csets, &tset.src_csets);
2220 list_for_each_entry_safe(cset, tmp_cset, &tset.src_csets, mg_node) {
Tejun Heo1b9aba42014-03-19 17:43:21 -04002221 list_splice_tail_init(&cset->mg_tasks, &cset->tasks);
Tejun Heob3dc0942014-02-25 10:04:01 -05002222 list_del_init(&cset->mg_node);
Tejun Heob3dc0942014-02-25 10:04:01 -05002223 }
2224 up_write(&css_set_rwsem);
Tejun Heo9db8de32014-02-13 06:58:43 -05002225 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07002226}
2227
Tejun Heo1958d2d2014-02-25 10:04:03 -05002228/**
2229 * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup
2230 * @dst_cgrp: the cgroup to attach to
2231 * @leader: the task or the leader of the threadgroup to be attached
2232 * @threadgroup: attach the whole threadgroup?
2233 *
Tejun Heo0e1d7682014-02-25 10:04:03 -05002234 * Call holding cgroup_mutex and threadgroup_lock of @leader.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002235 */
2236static int cgroup_attach_task(struct cgroup *dst_cgrp,
2237 struct task_struct *leader, bool threadgroup)
2238{
2239 LIST_HEAD(preloaded_csets);
2240 struct task_struct *task;
2241 int ret;
2242
2243 /* look up all src csets */
2244 down_read(&css_set_rwsem);
2245 rcu_read_lock();
2246 task = leader;
2247 do {
2248 cgroup_migrate_add_src(task_css_set(task), dst_cgrp,
2249 &preloaded_csets);
2250 if (!threadgroup)
2251 break;
2252 } while_each_thread(leader, task);
2253 rcu_read_unlock();
2254 up_read(&css_set_rwsem);
2255
2256 /* prepare dst csets and commit */
2257 ret = cgroup_migrate_prepare_dst(dst_cgrp, &preloaded_csets);
2258 if (!ret)
2259 ret = cgroup_migrate(dst_cgrp, leader, threadgroup);
2260
2261 cgroup_migrate_finish(&preloaded_csets);
2262 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07002263}
2264
2265/*
2266 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08002267 * function to attach either it or all tasks in its threadgroup. Will lock
Tejun Heo0e1d7682014-02-25 10:04:03 -05002268 * cgroup_mutex and threadgroup.
Ben Blum74a11662011-05-26 16:25:20 -07002269 */
Tejun Heoacbef752014-05-13 12:16:22 -04002270static ssize_t __cgroup_procs_write(struct kernfs_open_file *of, char *buf,
2271 size_t nbytes, loff_t off, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002272{
Paul Menagebbcb81d2007-10-18 23:39:32 -07002273 struct task_struct *tsk;
David Howellsc69e8d92008-11-14 10:39:19 +11002274 const struct cred *cred = current_cred(), *tcred;
Tejun Heoe76ecae2014-05-13 12:19:23 -04002275 struct cgroup *cgrp;
Tejun Heoacbef752014-05-13 12:16:22 -04002276 pid_t pid;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002277 int ret;
2278
Tejun Heoacbef752014-05-13 12:16:22 -04002279 if (kstrtoint(strstrip(buf), 0, &pid) || pid < 0)
2280 return -EINVAL;
2281
Tejun Heoe76ecae2014-05-13 12:19:23 -04002282 cgrp = cgroup_kn_lock_live(of->kn);
2283 if (!cgrp)
Ben Blum74a11662011-05-26 16:25:20 -07002284 return -ENODEV;
2285
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002286retry_find_task:
2287 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002288 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002289 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07002290 if (!tsk) {
Paul Menagebbcb81d2007-10-18 23:39:32 -07002291 rcu_read_unlock();
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09002292 ret = -ESRCH;
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002293 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002294 }
Ben Blum74a11662011-05-26 16:25:20 -07002295 /*
2296 * even if we're attaching all tasks in the thread group, we
2297 * only need to check permissions on one of them.
2298 */
David Howellsc69e8d92008-11-14 10:39:19 +11002299 tcred = __task_cred(tsk);
Eric W. Biederman14a590c2012-03-12 15:44:39 -07002300 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
2301 !uid_eq(cred->euid, tcred->uid) &&
2302 !uid_eq(cred->euid, tcred->suid)) {
David Howellsc69e8d92008-11-14 10:39:19 +11002303 rcu_read_unlock();
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002304 ret = -EACCES;
2305 goto out_unlock_cgroup;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002306 }
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002307 } else
2308 tsk = current;
Tejun Heocd3d0952011-12-12 18:12:21 -08002309
2310 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002311 tsk = tsk->group_leader;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002312
2313 /*
Tejun Heo14a40ff2013-03-19 13:45:20 -07002314 * Workqueue threads may acquire PF_NO_SETAFFINITY and become
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002315 * trapped in a cpuset, or RT worker may be born in a cgroup
2316 * with no rt_runtime allocated. Just say no.
2317 */
Tejun Heo14a40ff2013-03-19 13:45:20 -07002318 if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) {
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002319 ret = -EINVAL;
2320 rcu_read_unlock();
2321 goto out_unlock_cgroup;
2322 }
2323
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002324 get_task_struct(tsk);
2325 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08002326
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002327 threadgroup_lock(tsk);
2328 if (threadgroup) {
2329 if (!thread_group_leader(tsk)) {
2330 /*
2331 * a race with de_thread from another thread's exec()
2332 * may strip us of our leadership, if this happens,
2333 * there is no choice but to throw this task away and
2334 * try again; this is
2335 * "double-double-toil-and-trouble-check locking".
2336 */
2337 threadgroup_unlock(tsk);
2338 put_task_struct(tsk);
2339 goto retry_find_task;
2340 }
Li Zefan081aa452013-03-13 09:17:09 +08002341 }
2342
2343 ret = cgroup_attach_task(cgrp, tsk, threadgroup);
2344
Tejun Heocd3d0952011-12-12 18:12:21 -08002345 threadgroup_unlock(tsk);
2346
Paul Menagebbcb81d2007-10-18 23:39:32 -07002347 put_task_struct(tsk);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002348out_unlock_cgroup:
Tejun Heoe76ecae2014-05-13 12:19:23 -04002349 cgroup_kn_unlock(of->kn);
Tejun Heoacbef752014-05-13 12:16:22 -04002350 return ret ?: nbytes;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002351}
2352
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002353/**
2354 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
2355 * @from: attach to all cgroups of a given task
2356 * @tsk: the task to be attached
2357 */
2358int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
2359{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002360 struct cgroup_root *root;
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002361 int retval = 0;
2362
Tejun Heo47cfcd02013-04-07 09:29:51 -07002363 mutex_lock(&cgroup_mutex);
Tejun Heo985ed672014-03-19 10:23:53 -04002364 for_each_root(root) {
Tejun Heo96d365e2014-02-13 06:58:40 -05002365 struct cgroup *from_cgrp;
2366
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002367 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04002368 continue;
2369
Tejun Heo96d365e2014-02-13 06:58:40 -05002370 down_read(&css_set_rwsem);
2371 from_cgrp = task_cgroup_from_root(from, root);
2372 up_read(&css_set_rwsem);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002373
Li Zefan6f4b7e62013-07-31 16:18:36 +08002374 retval = cgroup_attach_task(from_cgrp, tsk, false);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002375 if (retval)
2376 break;
2377 }
Tejun Heo47cfcd02013-04-07 09:29:51 -07002378 mutex_unlock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002379
2380 return retval;
2381}
2382EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
2383
Tejun Heoacbef752014-05-13 12:16:22 -04002384static ssize_t cgroup_tasks_write(struct kernfs_open_file *of,
2385 char *buf, size_t nbytes, loff_t off)
Paul Menageaf351022008-07-25 01:47:01 -07002386{
Tejun Heoacbef752014-05-13 12:16:22 -04002387 return __cgroup_procs_write(of, buf, nbytes, off, false);
Ben Blum74a11662011-05-26 16:25:20 -07002388}
2389
Tejun Heoacbef752014-05-13 12:16:22 -04002390static ssize_t cgroup_procs_write(struct kernfs_open_file *of,
2391 char *buf, size_t nbytes, loff_t off)
Ben Blum74a11662011-05-26 16:25:20 -07002392{
Tejun Heoacbef752014-05-13 12:16:22 -04002393 return __cgroup_procs_write(of, buf, nbytes, off, true);
Paul Menageaf351022008-07-25 01:47:01 -07002394}
2395
Tejun Heo451af502014-05-13 12:16:21 -04002396static ssize_t cgroup_release_agent_write(struct kernfs_open_file *of,
2397 char *buf, size_t nbytes, loff_t off)
Paul Menagee788e062008-07-25 01:46:59 -07002398{
Tejun Heoe76ecae2014-05-13 12:19:23 -04002399 struct cgroup *cgrp;
Tejun Heo5f469902014-02-11 11:52:48 -05002400
Tejun Heoe76ecae2014-05-13 12:19:23 -04002401 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
2402
2403 cgrp = cgroup_kn_lock_live(of->kn);
2404 if (!cgrp)
Paul Menagee788e062008-07-25 01:46:59 -07002405 return -ENODEV;
Tejun Heo69e943b2014-02-08 10:36:58 -05002406 spin_lock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002407 strlcpy(cgrp->root->release_agent_path, strstrip(buf),
2408 sizeof(cgrp->root->release_agent_path));
Tejun Heo69e943b2014-02-08 10:36:58 -05002409 spin_unlock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002410 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04002411 return nbytes;
Paul Menagee788e062008-07-25 01:46:59 -07002412}
2413
Tejun Heo2da8ca82013-12-05 12:28:04 -05002414static int cgroup_release_agent_show(struct seq_file *seq, void *v)
Paul Menagee788e062008-07-25 01:46:59 -07002415{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002416 struct cgroup *cgrp = seq_css(seq)->cgroup;
Tejun Heo182446d2013-08-08 20:11:24 -04002417
Tejun Heo46cfeb02014-05-13 12:11:00 -04002418 spin_lock(&release_agent_path_lock);
Paul Menagee788e062008-07-25 01:46:59 -07002419 seq_puts(seq, cgrp->root->release_agent_path);
Tejun Heo46cfeb02014-05-13 12:11:00 -04002420 spin_unlock(&release_agent_path_lock);
Paul Menagee788e062008-07-25 01:46:59 -07002421 seq_putc(seq, '\n');
Paul Menagee788e062008-07-25 01:46:59 -07002422 return 0;
2423}
2424
Tejun Heo2da8ca82013-12-05 12:28:04 -05002425static int cgroup_sane_behavior_show(struct seq_file *seq, void *v)
Tejun Heo873fe092013-04-14 20:15:26 -07002426{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002427 struct cgroup *cgrp = seq_css(seq)->cgroup;
2428
2429 seq_printf(seq, "%d\n", cgroup_sane_behavior(cgrp));
Paul Menage81a6a5c2007-10-18 23:39:38 -07002430 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002431}
2432
Tejun Heof8f22e52014-04-23 11:13:16 -04002433static void cgroup_print_ss_mask(struct seq_file *seq, unsigned int ss_mask)
2434{
2435 struct cgroup_subsys *ss;
2436 bool printed = false;
2437 int ssid;
2438
2439 for_each_subsys(ss, ssid) {
2440 if (ss_mask & (1 << ssid)) {
2441 if (printed)
2442 seq_putc(seq, ' ');
2443 seq_printf(seq, "%s", ss->name);
2444 printed = true;
2445 }
2446 }
2447 if (printed)
2448 seq_putc(seq, '\n');
2449}
2450
2451/* show controllers which are currently attached to the default hierarchy */
2452static int cgroup_root_controllers_show(struct seq_file *seq, void *v)
2453{
2454 struct cgroup *cgrp = seq_css(seq)->cgroup;
2455
Tejun Heo5533e012014-05-14 19:33:07 -04002456 cgroup_print_ss_mask(seq, cgrp->root->subsys_mask &
2457 ~cgrp_dfl_root_inhibit_ss_mask);
Tejun Heof8f22e52014-04-23 11:13:16 -04002458 return 0;
2459}
2460
2461/* show controllers which are enabled from the parent */
2462static int cgroup_controllers_show(struct seq_file *seq, void *v)
2463{
2464 struct cgroup *cgrp = seq_css(seq)->cgroup;
2465
Tejun Heo667c2492014-07-08 18:02:56 -04002466 cgroup_print_ss_mask(seq, cgroup_parent(cgrp)->subtree_control);
Tejun Heof8f22e52014-04-23 11:13:16 -04002467 return 0;
2468}
2469
2470/* show controllers which are enabled for a given cgroup's children */
2471static int cgroup_subtree_control_show(struct seq_file *seq, void *v)
2472{
2473 struct cgroup *cgrp = seq_css(seq)->cgroup;
2474
Tejun Heo667c2492014-07-08 18:02:56 -04002475 cgroup_print_ss_mask(seq, cgrp->subtree_control);
Tejun Heof8f22e52014-04-23 11:13:16 -04002476 return 0;
2477}
2478
2479/**
2480 * cgroup_update_dfl_csses - update css assoc of a subtree in default hierarchy
2481 * @cgrp: root of the subtree to update csses for
2482 *
2483 * @cgrp's child_subsys_mask has changed and its subtree's (self excluded)
2484 * css associations need to be updated accordingly. This function looks up
2485 * all css_sets which are attached to the subtree, creates the matching
2486 * updated css_sets and migrates the tasks to the new ones.
2487 */
2488static int cgroup_update_dfl_csses(struct cgroup *cgrp)
2489{
2490 LIST_HEAD(preloaded_csets);
2491 struct cgroup_subsys_state *css;
2492 struct css_set *src_cset;
2493 int ret;
2494
Tejun Heof8f22e52014-04-23 11:13:16 -04002495 lockdep_assert_held(&cgroup_mutex);
2496
2497 /* look up all csses currently attached to @cgrp's subtree */
2498 down_read(&css_set_rwsem);
2499 css_for_each_descendant_pre(css, cgroup_css(cgrp, NULL)) {
2500 struct cgrp_cset_link *link;
2501
2502 /* self is not affected by child_subsys_mask change */
2503 if (css->cgroup == cgrp)
2504 continue;
2505
2506 list_for_each_entry(link, &css->cgroup->cset_links, cset_link)
2507 cgroup_migrate_add_src(link->cset, cgrp,
2508 &preloaded_csets);
2509 }
2510 up_read(&css_set_rwsem);
2511
2512 /* NULL dst indicates self on default hierarchy */
2513 ret = cgroup_migrate_prepare_dst(NULL, &preloaded_csets);
2514 if (ret)
2515 goto out_finish;
2516
2517 list_for_each_entry(src_cset, &preloaded_csets, mg_preload_node) {
2518 struct task_struct *last_task = NULL, *task;
2519
2520 /* src_csets precede dst_csets, break on the first dst_cset */
2521 if (!src_cset->mg_src_cgrp)
2522 break;
2523
2524 /*
2525 * All tasks in src_cset need to be migrated to the
2526 * matching dst_cset. Empty it process by process. We
2527 * walk tasks but migrate processes. The leader might even
2528 * belong to a different cset but such src_cset would also
2529 * be among the target src_csets because the default
2530 * hierarchy enforces per-process membership.
2531 */
2532 while (true) {
2533 down_read(&css_set_rwsem);
2534 task = list_first_entry_or_null(&src_cset->tasks,
2535 struct task_struct, cg_list);
2536 if (task) {
2537 task = task->group_leader;
2538 WARN_ON_ONCE(!task_css_set(task)->mg_src_cgrp);
2539 get_task_struct(task);
2540 }
2541 up_read(&css_set_rwsem);
2542
2543 if (!task)
2544 break;
2545
2546 /* guard against possible infinite loop */
2547 if (WARN(last_task == task,
2548 "cgroup: update_dfl_csses failed to make progress, aborting in inconsistent state\n"))
2549 goto out_finish;
2550 last_task = task;
2551
2552 threadgroup_lock(task);
2553 /* raced against de_thread() from another thread? */
2554 if (!thread_group_leader(task)) {
2555 threadgroup_unlock(task);
2556 put_task_struct(task);
2557 continue;
2558 }
2559
2560 ret = cgroup_migrate(src_cset->dfl_cgrp, task, true);
2561
2562 threadgroup_unlock(task);
2563 put_task_struct(task);
2564
2565 if (WARN(ret, "cgroup: failed to update controllers for the default hierarchy (%d), further operations may crash or hang\n", ret))
2566 goto out_finish;
2567 }
2568 }
2569
2570out_finish:
2571 cgroup_migrate_finish(&preloaded_csets);
2572 return ret;
2573}
2574
2575/* change the enabled child controllers for a cgroup in the default hierarchy */
Tejun Heo451af502014-05-13 12:16:21 -04002576static ssize_t cgroup_subtree_control_write(struct kernfs_open_file *of,
2577 char *buf, size_t nbytes,
2578 loff_t off)
Tejun Heof8f22e52014-04-23 11:13:16 -04002579{
Tejun Heo7d331fa2014-05-13 12:11:00 -04002580 unsigned int enable = 0, disable = 0;
Tejun Heof63070d2014-07-08 18:02:57 -04002581 unsigned int css_enable, css_disable, old_ctrl, new_ctrl;
Tejun Heoa9746d82014-05-13 12:19:22 -04002582 struct cgroup *cgrp, *child;
Tejun Heof8f22e52014-04-23 11:13:16 -04002583 struct cgroup_subsys *ss;
Tejun Heo451af502014-05-13 12:16:21 -04002584 char *tok;
Tejun Heof8f22e52014-04-23 11:13:16 -04002585 int ssid, ret;
2586
2587 /*
Tejun Heod37167a2014-05-13 12:10:59 -04002588 * Parse input - space separated list of subsystem names prefixed
2589 * with either + or -.
Tejun Heof8f22e52014-04-23 11:13:16 -04002590 */
Tejun Heo451af502014-05-13 12:16:21 -04002591 buf = strstrip(buf);
2592 while ((tok = strsep(&buf, " "))) {
Tejun Heod37167a2014-05-13 12:10:59 -04002593 if (tok[0] == '\0')
2594 continue;
Tejun Heof8f22e52014-04-23 11:13:16 -04002595 for_each_subsys(ss, ssid) {
Tejun Heo5533e012014-05-14 19:33:07 -04002596 if (ss->disabled || strcmp(tok + 1, ss->name) ||
2597 ((1 << ss->id) & cgrp_dfl_root_inhibit_ss_mask))
Tejun Heof8f22e52014-04-23 11:13:16 -04002598 continue;
2599
2600 if (*tok == '+') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04002601 enable |= 1 << ssid;
2602 disable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002603 } else if (*tok == '-') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04002604 disable |= 1 << ssid;
2605 enable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002606 } else {
2607 return -EINVAL;
2608 }
2609 break;
2610 }
2611 if (ssid == CGROUP_SUBSYS_COUNT)
2612 return -EINVAL;
2613 }
2614
Tejun Heoa9746d82014-05-13 12:19:22 -04002615 cgrp = cgroup_kn_lock_live(of->kn);
2616 if (!cgrp)
2617 return -ENODEV;
Tejun Heof8f22e52014-04-23 11:13:16 -04002618
2619 for_each_subsys(ss, ssid) {
2620 if (enable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04002621 if (cgrp->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002622 enable &= ~(1 << ssid);
2623 continue;
2624 }
2625
Tejun Heoc29adf22014-07-08 18:02:56 -04002626 /* unavailable or not enabled on the parent? */
2627 if (!(cgrp_dfl_root.subsys_mask & (1 << ssid)) ||
2628 (cgroup_parent(cgrp) &&
Tejun Heo667c2492014-07-08 18:02:56 -04002629 !(cgroup_parent(cgrp)->subtree_control & (1 << ssid)))) {
Tejun Heoc29adf22014-07-08 18:02:56 -04002630 ret = -ENOENT;
2631 goto out_unlock;
2632 }
2633
Tejun Heof8f22e52014-04-23 11:13:16 -04002634 /*
Tejun Heof63070d2014-07-08 18:02:57 -04002635 * @ss is already enabled through dependency and
2636 * we'll just make it visible. Skip draining.
2637 */
2638 if (cgrp->child_subsys_mask & (1 << ssid))
2639 continue;
2640
2641 /*
Tejun Heof8f22e52014-04-23 11:13:16 -04002642 * Because css offlining is asynchronous, userland
2643 * might try to re-enable the same controller while
2644 * the previous instance is still around. In such
2645 * cases, wait till it's gone using offline_waitq.
2646 */
2647 cgroup_for_each_live_child(child, cgrp) {
Tejun Heo0cee8b72014-05-13 12:10:59 -04002648 DEFINE_WAIT(wait);
Tejun Heof8f22e52014-04-23 11:13:16 -04002649
2650 if (!cgroup_css(child, ss))
2651 continue;
2652
Tejun Heo0cee8b72014-05-13 12:10:59 -04002653 cgroup_get(child);
Tejun Heof8f22e52014-04-23 11:13:16 -04002654 prepare_to_wait(&child->offline_waitq, &wait,
2655 TASK_UNINTERRUPTIBLE);
Tejun Heoa9746d82014-05-13 12:19:22 -04002656 cgroup_kn_unlock(of->kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04002657 schedule();
2658 finish_wait(&child->offline_waitq, &wait);
Tejun Heo0cee8b72014-05-13 12:10:59 -04002659 cgroup_put(child);
Tejun Heo7d331fa2014-05-13 12:11:00 -04002660
Tejun Heoa9746d82014-05-13 12:19:22 -04002661 return restart_syscall();
Tejun Heof8f22e52014-04-23 11:13:16 -04002662 }
Tejun Heof8f22e52014-04-23 11:13:16 -04002663 } else if (disable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04002664 if (!(cgrp->subtree_control & (1 << ssid))) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002665 disable &= ~(1 << ssid);
2666 continue;
2667 }
2668
2669 /* a child has it enabled? */
2670 cgroup_for_each_live_child(child, cgrp) {
Tejun Heo667c2492014-07-08 18:02:56 -04002671 if (child->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002672 ret = -EBUSY;
Tejun Heoddab2b62014-05-13 12:19:22 -04002673 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04002674 }
2675 }
2676 }
2677 }
2678
2679 if (!enable && !disable) {
2680 ret = 0;
Tejun Heoddab2b62014-05-13 12:19:22 -04002681 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04002682 }
2683
2684 /*
Tejun Heo667c2492014-07-08 18:02:56 -04002685 * Except for the root, subtree_control must be zero for a cgroup
Tejun Heof8f22e52014-04-23 11:13:16 -04002686 * with tasks so that child cgroups don't compete against tasks.
2687 */
Tejun Heod51f39b2014-05-16 13:22:48 -04002688 if (enable && cgroup_parent(cgrp) && !list_empty(&cgrp->cset_links)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002689 ret = -EBUSY;
2690 goto out_unlock;
2691 }
2692
Tejun Heof63070d2014-07-08 18:02:57 -04002693 /*
2694 * Update subsys masks and calculate what needs to be done. More
2695 * subsystems than specified may need to be enabled or disabled
2696 * depending on subsystem dependencies.
2697 */
Tejun Heo667c2492014-07-08 18:02:56 -04002698 cgrp->subtree_control |= enable;
2699 cgrp->subtree_control &= ~disable;
Tejun Heoc29adf22014-07-08 18:02:56 -04002700
Tejun Heof63070d2014-07-08 18:02:57 -04002701 old_ctrl = cgrp->child_subsys_mask;
2702 cgroup_refresh_child_subsys_mask(cgrp);
2703 new_ctrl = cgrp->child_subsys_mask;
2704
2705 css_enable = ~old_ctrl & new_ctrl;
2706 css_disable = old_ctrl & ~new_ctrl;
2707 enable |= css_enable;
2708 disable |= css_disable;
2709
2710 /*
2711 * Create new csses or make the existing ones visible. A css is
2712 * created invisible if it's being implicitly enabled through
2713 * dependency. An invisible css is made visible when the userland
2714 * explicitly enables it.
2715 */
Tejun Heof8f22e52014-04-23 11:13:16 -04002716 for_each_subsys(ss, ssid) {
2717 if (!(enable & (1 << ssid)))
2718 continue;
2719
2720 cgroup_for_each_live_child(child, cgrp) {
Tejun Heof63070d2014-07-08 18:02:57 -04002721 if (css_enable & (1 << ssid))
2722 ret = create_css(child, ss,
2723 cgrp->subtree_control & (1 << ssid));
2724 else
2725 ret = cgroup_populate_dir(child, 1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002726 if (ret)
2727 goto err_undo_css;
2728 }
2729 }
2730
Tejun Heoc29adf22014-07-08 18:02:56 -04002731 /*
2732 * At this point, cgroup_e_css() results reflect the new csses
2733 * making the following cgroup_update_dfl_csses() properly update
2734 * css associations of all tasks in the subtree.
2735 */
Tejun Heof8f22e52014-04-23 11:13:16 -04002736 ret = cgroup_update_dfl_csses(cgrp);
2737 if (ret)
2738 goto err_undo_css;
2739
Tejun Heof63070d2014-07-08 18:02:57 -04002740 /*
2741 * All tasks are migrated out of disabled csses. Kill or hide
2742 * them. A css is hidden when the userland requests it to be
Tejun Heob4536f0ca2014-07-08 18:02:57 -04002743 * disabled while other subsystems are still depending on it. The
2744 * css must not actively control resources and be in the vanilla
2745 * state if it's made visible again later. Controllers which may
2746 * be depended upon should provide ->css_reset() for this purpose.
Tejun Heof63070d2014-07-08 18:02:57 -04002747 */
Tejun Heof8f22e52014-04-23 11:13:16 -04002748 for_each_subsys(ss, ssid) {
2749 if (!(disable & (1 << ssid)))
2750 continue;
2751
Tejun Heof63070d2014-07-08 18:02:57 -04002752 cgroup_for_each_live_child(child, cgrp) {
Tejun Heob4536f0ca2014-07-08 18:02:57 -04002753 struct cgroup_subsys_state *css = cgroup_css(child, ss);
2754
2755 if (css_disable & (1 << ssid)) {
2756 kill_css(css);
2757 } else {
Tejun Heof63070d2014-07-08 18:02:57 -04002758 cgroup_clear_dir(child, 1 << ssid);
Tejun Heob4536f0ca2014-07-08 18:02:57 -04002759 if (ss->css_reset)
2760 ss->css_reset(css);
2761 }
Tejun Heof63070d2014-07-08 18:02:57 -04002762 }
Tejun Heof8f22e52014-04-23 11:13:16 -04002763 }
2764
2765 kernfs_activate(cgrp->kn);
2766 ret = 0;
2767out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04002768 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04002769 return ret ?: nbytes;
Tejun Heof8f22e52014-04-23 11:13:16 -04002770
2771err_undo_css:
Tejun Heo667c2492014-07-08 18:02:56 -04002772 cgrp->subtree_control &= ~enable;
2773 cgrp->subtree_control |= disable;
2774 cgroup_refresh_child_subsys_mask(cgrp);
Tejun Heof8f22e52014-04-23 11:13:16 -04002775
2776 for_each_subsys(ss, ssid) {
2777 if (!(enable & (1 << ssid)))
2778 continue;
2779
2780 cgroup_for_each_live_child(child, cgrp) {
2781 struct cgroup_subsys_state *css = cgroup_css(child, ss);
Tejun Heof63070d2014-07-08 18:02:57 -04002782
2783 if (!css)
2784 continue;
2785
2786 if (css_enable & (1 << ssid))
Tejun Heof8f22e52014-04-23 11:13:16 -04002787 kill_css(css);
Tejun Heof63070d2014-07-08 18:02:57 -04002788 else
2789 cgroup_clear_dir(child, 1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002790 }
2791 }
2792 goto out_unlock;
2793}
2794
Tejun Heo842b5972014-04-25 18:28:02 -04002795static int cgroup_populated_show(struct seq_file *seq, void *v)
2796{
2797 seq_printf(seq, "%d\n", (bool)seq_css(seq)->cgroup->populated_cnt);
2798 return 0;
2799}
2800
Tejun Heo2bd59d42014-02-11 11:52:49 -05002801static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf,
2802 size_t nbytes, loff_t off)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002803{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002804 struct cgroup *cgrp = of->kn->parent->priv;
2805 struct cftype *cft = of->kn->priv;
2806 struct cgroup_subsys_state *css;
Tejun Heoa742c592013-12-05 12:28:03 -05002807 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002808
Tejun Heob4168642014-05-13 12:16:21 -04002809 if (cft->write)
2810 return cft->write(of, buf, nbytes, off);
2811
Tejun Heo2bd59d42014-02-11 11:52:49 -05002812 /*
2813 * kernfs guarantees that a file isn't deleted with operations in
2814 * flight, which means that the matching css is and stays alive and
2815 * doesn't need to be pinned. The RCU locking is not necessary
2816 * either. It's just for the convenience of using cgroup_css().
2817 */
2818 rcu_read_lock();
2819 css = cgroup_css(cgrp, cft->ss);
2820 rcu_read_unlock();
Paul Menageddbcc7e2007-10-18 23:39:30 -07002821
Tejun Heo451af502014-05-13 12:16:21 -04002822 if (cft->write_u64) {
Tejun Heoa742c592013-12-05 12:28:03 -05002823 unsigned long long v;
2824 ret = kstrtoull(buf, 0, &v);
2825 if (!ret)
2826 ret = cft->write_u64(css, cft, v);
2827 } else if (cft->write_s64) {
2828 long long v;
2829 ret = kstrtoll(buf, 0, &v);
2830 if (!ret)
2831 ret = cft->write_s64(css, cft, v);
Tejun Heoa742c592013-12-05 12:28:03 -05002832 } else {
2833 ret = -EINVAL;
2834 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05002835
Tejun Heoa742c592013-12-05 12:28:03 -05002836 return ret ?: nbytes;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002837}
2838
Tejun Heo6612f052013-12-05 12:28:04 -05002839static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos)
Paul Menage91796562008-04-29 01:00:01 -07002840{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002841 return seq_cft(seq)->seq_start(seq, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002842}
2843
2844static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos)
2845{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002846 return seq_cft(seq)->seq_next(seq, v, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002847}
2848
2849static void cgroup_seqfile_stop(struct seq_file *seq, void *v)
2850{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002851 seq_cft(seq)->seq_stop(seq, v);
Paul Menage91796562008-04-29 01:00:01 -07002852}
2853
2854static int cgroup_seqfile_show(struct seq_file *m, void *arg)
2855{
Tejun Heo7da11272013-12-05 12:28:04 -05002856 struct cftype *cft = seq_cft(m);
2857 struct cgroup_subsys_state *css = seq_css(m);
Li Zefane0798ce2013-07-31 17:36:25 +08002858
Tejun Heo2da8ca82013-12-05 12:28:04 -05002859 if (cft->seq_show)
2860 return cft->seq_show(m, arg);
Paul Menage91796562008-04-29 01:00:01 -07002861
Tejun Heo896f5192013-12-05 12:28:04 -05002862 if (cft->read_u64)
2863 seq_printf(m, "%llu\n", cft->read_u64(css, cft));
2864 else if (cft->read_s64)
2865 seq_printf(m, "%lld\n", cft->read_s64(css, cft));
2866 else
2867 return -EINVAL;
2868 return 0;
Paul Menage91796562008-04-29 01:00:01 -07002869}
2870
Tejun Heo2bd59d42014-02-11 11:52:49 -05002871static struct kernfs_ops cgroup_kf_single_ops = {
2872 .atomic_write_len = PAGE_SIZE,
2873 .write = cgroup_file_write,
2874 .seq_show = cgroup_seqfile_show,
Paul Menage91796562008-04-29 01:00:01 -07002875};
2876
Tejun Heo2bd59d42014-02-11 11:52:49 -05002877static struct kernfs_ops cgroup_kf_ops = {
2878 .atomic_write_len = PAGE_SIZE,
2879 .write = cgroup_file_write,
2880 .seq_start = cgroup_seqfile_start,
2881 .seq_next = cgroup_seqfile_next,
2882 .seq_stop = cgroup_seqfile_stop,
2883 .seq_show = cgroup_seqfile_show,
2884};
Paul Menageddbcc7e2007-10-18 23:39:30 -07002885
2886/*
2887 * cgroup_rename - Only allow simple rename of directories in place.
2888 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05002889static int cgroup_rename(struct kernfs_node *kn, struct kernfs_node *new_parent,
2890 const char *new_name_str)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002891{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002892 struct cgroup *cgrp = kn->priv;
Li Zefan65dff752013-03-01 15:01:56 +08002893 int ret;
Li Zefan65dff752013-03-01 15:01:56 +08002894
Tejun Heo2bd59d42014-02-11 11:52:49 -05002895 if (kernfs_type(kn) != KERNFS_DIR)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002896 return -ENOTDIR;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002897 if (kn->parent != new_parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002898 return -EIO;
Li Zefan65dff752013-03-01 15:01:56 +08002899
Tejun Heo6db8e852013-06-14 11:18:22 -07002900 /*
2901 * This isn't a proper migration and its usefulness is very
2902 * limited. Disallow if sane_behavior.
2903 */
2904 if (cgroup_sane_behavior(cgrp))
2905 return -EPERM;
2906
Tejun Heoe1b2dc12014-03-20 11:10:15 -04002907 /*
Tejun Heo8353da12014-05-13 12:19:23 -04002908 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoe1b2dc12014-03-20 11:10:15 -04002909 * active_ref. kernfs_rename() doesn't require active_ref
Tejun Heo8353da12014-05-13 12:19:23 -04002910 * protection. Break them before grabbing cgroup_mutex.
Tejun Heoe1b2dc12014-03-20 11:10:15 -04002911 */
2912 kernfs_break_active_protection(new_parent);
2913 kernfs_break_active_protection(kn);
Li Zefan65dff752013-03-01 15:01:56 +08002914
Tejun Heo2bd59d42014-02-11 11:52:49 -05002915 mutex_lock(&cgroup_mutex);
Li Zefan65dff752013-03-01 15:01:56 +08002916
Tejun Heo2bd59d42014-02-11 11:52:49 -05002917 ret = kernfs_rename(kn, new_parent, new_name_str);
Li Zefan65dff752013-03-01 15:01:56 +08002918
Tejun Heo2bd59d42014-02-11 11:52:49 -05002919 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002920
Tejun Heoe1b2dc12014-03-20 11:10:15 -04002921 kernfs_unbreak_active_protection(kn);
2922 kernfs_unbreak_active_protection(new_parent);
Tejun Heo2bd59d42014-02-11 11:52:49 -05002923 return ret;
Li Zefan099fca32009-04-02 16:57:29 -07002924}
2925
Tejun Heo49957f82014-04-07 16:44:47 -04002926/* set uid and gid of cgroup dirs and files to that of the creator */
2927static int cgroup_kn_set_ugid(struct kernfs_node *kn)
2928{
2929 struct iattr iattr = { .ia_valid = ATTR_UID | ATTR_GID,
2930 .ia_uid = current_fsuid(),
2931 .ia_gid = current_fsgid(), };
2932
2933 if (uid_eq(iattr.ia_uid, GLOBAL_ROOT_UID) &&
2934 gid_eq(iattr.ia_gid, GLOBAL_ROOT_GID))
2935 return 0;
2936
2937 return kernfs_setattr(kn, &iattr);
2938}
2939
Tejun Heo2bb566c2013-08-08 20:11:23 -04002940static int cgroup_add_file(struct cgroup *cgrp, struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002941{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05002942 char name[CGROUP_FILE_NAME_MAX];
Tejun Heo2bd59d42014-02-11 11:52:49 -05002943 struct kernfs_node *kn;
2944 struct lock_class_key *key = NULL;
Tejun Heo49957f82014-04-07 16:44:47 -04002945 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07002946
Tejun Heo2bd59d42014-02-11 11:52:49 -05002947#ifdef CONFIG_DEBUG_LOCK_ALLOC
2948 key = &cft->lockdep_key;
2949#endif
2950 kn = __kernfs_create_file(cgrp->kn, cgroup_file_name(cgrp, cft, name),
2951 cgroup_file_mode(cft), 0, cft->kf_ops, cft,
2952 NULL, false, key);
Tejun Heo49957f82014-04-07 16:44:47 -04002953 if (IS_ERR(kn))
2954 return PTR_ERR(kn);
2955
2956 ret = cgroup_kn_set_ugid(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04002957 if (ret) {
Tejun Heo49957f82014-04-07 16:44:47 -04002958 kernfs_remove(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04002959 return ret;
2960 }
2961
Tejun Heob7fc5ad2014-05-13 12:16:22 -04002962 if (cft->seq_show == cgroup_populated_show)
Tejun Heo842b5972014-04-25 18:28:02 -04002963 cgrp->populated_kn = kn;
Tejun Heof8f22e52014-04-23 11:13:16 -04002964 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002965}
2966
Tejun Heob1f28d32013-06-28 16:24:10 -07002967/**
2968 * cgroup_addrm_files - add or remove files to a cgroup directory
2969 * @cgrp: the target cgroup
Tejun Heob1f28d32013-06-28 16:24:10 -07002970 * @cfts: array of cftypes to be added
2971 * @is_add: whether to add or remove
2972 *
2973 * Depending on @is_add, add or remove files defined by @cfts on @cgrp.
Tejun Heo2bb566c2013-08-08 20:11:23 -04002974 * For removals, this function never fails. If addition fails, this
2975 * function doesn't remove files already added. The caller is responsible
2976 * for cleaning up.
Tejun Heob1f28d32013-06-28 16:24:10 -07002977 */
Tejun Heo2bb566c2013-08-08 20:11:23 -04002978static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
2979 bool is_add)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002980{
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04002981 struct cftype *cft;
Tejun Heob1f28d32013-06-28 16:24:10 -07002982 int ret;
2983
Tejun Heo01f64742014-05-13 12:19:23 -04002984 lockdep_assert_held(&cgroup_mutex);
Tejun Heodb0416b2012-04-01 12:09:55 -07002985
2986 for (cft = cfts; cft->name[0] != '\0'; cft++) {
Gao fengf33fddc2012-12-06 14:38:57 +08002987 /* does cft->flags tell us to skip this file on @cgrp? */
Tejun Heo8cbbf2c2014-03-19 10:23:55 -04002988 if ((cft->flags & CFTYPE_ONLY_ON_DFL) && !cgroup_on_dfl(cgrp))
2989 continue;
Tejun Heo873fe092013-04-14 20:15:26 -07002990 if ((cft->flags & CFTYPE_INSANE) && cgroup_sane_behavior(cgrp))
2991 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04002992 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08002993 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04002994 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08002995 continue;
2996
Li Zefan2739d3c2013-01-21 18:18:33 +08002997 if (is_add) {
Tejun Heo2bb566c2013-08-08 20:11:23 -04002998 ret = cgroup_add_file(cgrp, cft);
Tejun Heob1f28d32013-06-28 16:24:10 -07002999 if (ret) {
Joe Perchesed3d2612014-04-25 18:28:03 -04003000 pr_warn("%s: failed to add %s, err=%d\n",
3001 __func__, cft->name, ret);
Tejun Heob1f28d32013-06-28 16:24:10 -07003002 return ret;
3003 }
Li Zefan2739d3c2013-01-21 18:18:33 +08003004 } else {
3005 cgroup_rm_file(cgrp, cft);
Tejun Heodb0416b2012-04-01 12:09:55 -07003006 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003007 }
Tejun Heob1f28d32013-06-28 16:24:10 -07003008 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003009}
3010
Tejun Heo21a2d342014-02-12 09:29:49 -05003011static int cgroup_apply_cftypes(struct cftype *cfts, bool is_add)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003012{
3013 LIST_HEAD(pending);
Tejun Heo2bb566c2013-08-08 20:11:23 -04003014 struct cgroup_subsys *ss = cfts[0].ss;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04003015 struct cgroup *root = &ss->root->cgrp;
Tejun Heo492eb212013-08-08 20:11:25 -04003016 struct cgroup_subsys_state *css;
Tejun Heo9ccece82013-06-28 16:24:11 -07003017 int ret = 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003018
Tejun Heo01f64742014-05-13 12:19:23 -04003019 lockdep_assert_held(&cgroup_mutex);
Li Zefane8c82d22013-06-18 18:48:37 +08003020
Li Zefane8c82d22013-06-18 18:48:37 +08003021 /* add/rm files for all cgroups created before */
Tejun Heoca8bdca2013-08-26 18:40:56 -04003022 css_for_each_descendant_pre(css, cgroup_css(root, ss)) {
Tejun Heo492eb212013-08-08 20:11:25 -04003023 struct cgroup *cgrp = css->cgroup;
3024
Li Zefane8c82d22013-06-18 18:48:37 +08003025 if (cgroup_is_dead(cgrp))
3026 continue;
3027
Tejun Heo21a2d342014-02-12 09:29:49 -05003028 ret = cgroup_addrm_files(cgrp, cfts, is_add);
Tejun Heo9ccece82013-06-28 16:24:11 -07003029 if (ret)
3030 break;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003031 }
Tejun Heo21a2d342014-02-12 09:29:49 -05003032
3033 if (is_add && !ret)
3034 kernfs_activate(root->kn);
Tejun Heo9ccece82013-06-28 16:24:11 -07003035 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003036}
3037
Tejun Heo2da440a2014-02-11 11:52:48 -05003038static void cgroup_exit_cftypes(struct cftype *cfts)
3039{
3040 struct cftype *cft;
3041
Tejun Heo2bd59d42014-02-11 11:52:49 -05003042 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3043 /* free copy for custom atomic_write_len, see init_cftypes() */
3044 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE)
3045 kfree(cft->kf_ops);
3046 cft->kf_ops = NULL;
Tejun Heo2da440a2014-02-11 11:52:48 -05003047 cft->ss = NULL;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003048 }
Tejun Heo2da440a2014-02-11 11:52:48 -05003049}
3050
Tejun Heo2bd59d42014-02-11 11:52:49 -05003051static int cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo2da440a2014-02-11 11:52:48 -05003052{
3053 struct cftype *cft;
3054
Tejun Heo2bd59d42014-02-11 11:52:49 -05003055 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3056 struct kernfs_ops *kf_ops;
3057
Tejun Heo0adb0702014-02-12 09:29:48 -05003058 WARN_ON(cft->ss || cft->kf_ops);
3059
Tejun Heo2bd59d42014-02-11 11:52:49 -05003060 if (cft->seq_start)
3061 kf_ops = &cgroup_kf_ops;
3062 else
3063 kf_ops = &cgroup_kf_single_ops;
3064
3065 /*
3066 * Ugh... if @cft wants a custom max_write_len, we need to
3067 * make a copy of kf_ops to set its atomic_write_len.
3068 */
3069 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) {
3070 kf_ops = kmemdup(kf_ops, sizeof(*kf_ops), GFP_KERNEL);
3071 if (!kf_ops) {
3072 cgroup_exit_cftypes(cfts);
3073 return -ENOMEM;
3074 }
3075 kf_ops->atomic_write_len = cft->max_write_len;
3076 }
3077
3078 cft->kf_ops = kf_ops;
Tejun Heo2da440a2014-02-11 11:52:48 -05003079 cft->ss = ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003080 }
3081
3082 return 0;
Tejun Heo2da440a2014-02-11 11:52:48 -05003083}
3084
Tejun Heo21a2d342014-02-12 09:29:49 -05003085static int cgroup_rm_cftypes_locked(struct cftype *cfts)
3086{
Tejun Heo01f64742014-05-13 12:19:23 -04003087 lockdep_assert_held(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003088
3089 if (!cfts || !cfts[0].ss)
3090 return -ENOENT;
3091
3092 list_del(&cfts->node);
3093 cgroup_apply_cftypes(cfts, false);
3094 cgroup_exit_cftypes(cfts);
3095 return 0;
3096}
3097
Tejun Heo8e3f6542012-04-01 12:09:55 -07003098/**
Tejun Heo80b13582014-02-12 09:29:48 -05003099 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
3100 * @cfts: zero-length name terminated array of cftypes
3101 *
3102 * Unregister @cfts. Files described by @cfts are removed from all
3103 * existing cgroups and all future cgroups won't have them either. This
3104 * function can be called anytime whether @cfts' subsys is attached or not.
3105 *
3106 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
3107 * registered.
3108 */
3109int cgroup_rm_cftypes(struct cftype *cfts)
3110{
Tejun Heo21a2d342014-02-12 09:29:49 -05003111 int ret;
Tejun Heo80b13582014-02-12 09:29:48 -05003112
Tejun Heo01f64742014-05-13 12:19:23 -04003113 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003114 ret = cgroup_rm_cftypes_locked(cfts);
Tejun Heo01f64742014-05-13 12:19:23 -04003115 mutex_unlock(&cgroup_mutex);
Tejun Heo8e3f6542012-04-01 12:09:55 -07003116 return ret;
3117}
3118
3119/**
3120 * cgroup_add_cftypes - add an array of cftypes to a subsystem
3121 * @ss: target cgroup subsystem
3122 * @cfts: zero-length name terminated array of cftypes
3123 *
3124 * Register @cfts to @ss. Files described by @cfts are created for all
3125 * existing cgroups to which @ss is attached and all future cgroups will
3126 * have them too. This function can be called anytime whether @ss is
3127 * attached or not.
3128 *
3129 * Returns 0 on successful registration, -errno on failure. Note that this
3130 * function currently returns 0 as long as @cfts registration is successful
3131 * even if some file creation attempts on existing cgroups fail.
3132 */
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04003133int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003134{
Tejun Heo9ccece82013-06-28 16:24:11 -07003135 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003136
Li Zefanc731ae12014-06-05 17:16:30 +08003137 if (ss->disabled)
3138 return 0;
3139
Li Zefandc5736e2014-02-17 10:41:50 +08003140 if (!cfts || cfts[0].name[0] == '\0')
3141 return 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003142
Tejun Heo2bd59d42014-02-11 11:52:49 -05003143 ret = cgroup_init_cftypes(ss, cfts);
Tejun Heo9ccece82013-06-28 16:24:11 -07003144 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05003145 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003146
Tejun Heo01f64742014-05-13 12:19:23 -04003147 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003148
Tejun Heo0adb0702014-02-12 09:29:48 -05003149 list_add_tail(&cfts->node, &ss->cfts);
Tejun Heo21a2d342014-02-12 09:29:49 -05003150 ret = cgroup_apply_cftypes(cfts, true);
Tejun Heo9ccece82013-06-28 16:24:11 -07003151 if (ret)
Tejun Heo21a2d342014-02-12 09:29:49 -05003152 cgroup_rm_cftypes_locked(cfts);
3153
Tejun Heo01f64742014-05-13 12:19:23 -04003154 mutex_unlock(&cgroup_mutex);
Tejun Heo9ccece82013-06-28 16:24:11 -07003155 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003156}
Tejun Heo79578622012-04-01 12:09:56 -07003157
3158/**
Li Zefana043e3b2008-02-23 15:24:09 -08003159 * cgroup_task_count - count the number of tasks in a cgroup.
3160 * @cgrp: the cgroup in question
3161 *
3162 * Return the number of tasks in the cgroup.
3163 */
Tejun Heo07bc3562014-02-13 06:58:39 -05003164static int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003165{
3166 int count = 0;
Tejun Heo69d02062013-06-12 21:04:50 -07003167 struct cgrp_cset_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003168
Tejun Heo96d365e2014-02-13 06:58:40 -05003169 down_read(&css_set_rwsem);
Tejun Heo69d02062013-06-12 21:04:50 -07003170 list_for_each_entry(link, &cgrp->cset_links, cset_link)
3171 count += atomic_read(&link->cset->refcount);
Tejun Heo96d365e2014-02-13 06:58:40 -05003172 up_read(&css_set_rwsem);
Paul Menagebbcb81d2007-10-18 23:39:32 -07003173 return count;
3174}
3175
Tejun Heo574bd9f2012-11-09 09:12:29 -08003176/**
Tejun Heo492eb212013-08-08 20:11:25 -04003177 * css_next_child - find the next child of a given css
Tejun Heoc2931b72014-05-16 13:22:51 -04003178 * @pos: the current position (%NULL to initiate traversal)
3179 * @parent: css whose children to walk
Tejun Heo53fa5262013-05-24 10:55:38 +09003180 *
Tejun Heoc2931b72014-05-16 13:22:51 -04003181 * This function returns the next child of @parent and should be called
Tejun Heo87fb54f2013-12-06 15:11:55 -05003182 * under either cgroup_mutex or RCU read lock. The only requirement is
Tejun Heoc2931b72014-05-16 13:22:51 -04003183 * that @parent and @pos are accessible. The next sibling is guaranteed to
3184 * be returned regardless of their states.
3185 *
3186 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3187 * css which finished ->css_online() is guaranteed to be visible in the
3188 * future iterations and will stay visible until the last reference is put.
3189 * A css which hasn't finished ->css_online() or already finished
3190 * ->css_offline() may show up during traversal. It's each subsystem's
3191 * responsibility to synchronize against on/offlining.
Tejun Heo53fa5262013-05-24 10:55:38 +09003192 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003193struct cgroup_subsys_state *css_next_child(struct cgroup_subsys_state *pos,
3194 struct cgroup_subsys_state *parent)
Tejun Heo53fa5262013-05-24 10:55:38 +09003195{
Tejun Heoc2931b72014-05-16 13:22:51 -04003196 struct cgroup_subsys_state *next;
Tejun Heo53fa5262013-05-24 10:55:38 +09003197
Tejun Heo8353da12014-05-13 12:19:23 -04003198 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo53fa5262013-05-24 10:55:38 +09003199
3200 /*
Tejun Heode3f0342014-05-16 13:22:49 -04003201 * @pos could already have been unlinked from the sibling list.
3202 * Once a cgroup is removed, its ->sibling.next is no longer
3203 * updated when its next sibling changes. CSS_RELEASED is set when
3204 * @pos is taken off list, at which time its next pointer is valid,
3205 * and, as releases are serialized, the one pointed to by the next
3206 * pointer is guaranteed to not have started release yet. This
3207 * implies that if we observe !CSS_RELEASED on @pos in this RCU
3208 * critical section, the one pointed to by its next pointer is
3209 * guaranteed to not have finished its RCU grace period even if we
3210 * have dropped rcu_read_lock() inbetween iterations.
Tejun Heo3b287a52013-08-08 20:11:24 -04003211 *
Tejun Heode3f0342014-05-16 13:22:49 -04003212 * If @pos has CSS_RELEASED set, its next pointer can't be
3213 * dereferenced; however, as each css is given a monotonically
3214 * increasing unique serial number and always appended to the
3215 * sibling list, the next one can be found by walking the parent's
3216 * children until the first css with higher serial number than
3217 * @pos's. While this path can be slower, it happens iff iteration
3218 * races against release and the race window is very small.
Tejun Heo53fa5262013-05-24 10:55:38 +09003219 */
Tejun Heo3b287a52013-08-08 20:11:24 -04003220 if (!pos) {
Tejun Heoc2931b72014-05-16 13:22:51 -04003221 next = list_entry_rcu(parent->children.next, struct cgroup_subsys_state, sibling);
3222 } else if (likely(!(pos->flags & CSS_RELEASED))) {
3223 next = list_entry_rcu(pos->sibling.next, struct cgroup_subsys_state, sibling);
Tejun Heo3b287a52013-08-08 20:11:24 -04003224 } else {
Tejun Heoc2931b72014-05-16 13:22:51 -04003225 list_for_each_entry_rcu(next, &parent->children, sibling)
Tejun Heo3b287a52013-08-08 20:11:24 -04003226 if (next->serial_nr > pos->serial_nr)
3227 break;
Tejun Heo53fa5262013-05-24 10:55:38 +09003228 }
3229
Tejun Heo3b281af2014-04-23 11:13:15 -04003230 /*
3231 * @next, if not pointing to the head, can be dereferenced and is
Tejun Heoc2931b72014-05-16 13:22:51 -04003232 * the next sibling.
Tejun Heo3b281af2014-04-23 11:13:15 -04003233 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003234 if (&next->sibling != &parent->children)
3235 return next;
Tejun Heo3b281af2014-04-23 11:13:15 -04003236 return NULL;
Tejun Heo53fa5262013-05-24 10:55:38 +09003237}
Tejun Heo53fa5262013-05-24 10:55:38 +09003238
3239/**
Tejun Heo492eb212013-08-08 20:11:25 -04003240 * css_next_descendant_pre - find the next descendant for pre-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003241 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003242 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003243 *
Tejun Heo492eb212013-08-08 20:11:25 -04003244 * To be used by css_for_each_descendant_pre(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003245 * to visit for pre-order traversal of @root's descendants. @root is
3246 * included in the iteration and the first node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003247 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003248 * While this function requires cgroup_mutex or RCU read locking, it
3249 * doesn't require the whole traversal to be contained in a single critical
3250 * section. This function will return the correct next descendant as long
3251 * as both @pos and @root are accessible and @pos is a descendant of @root.
Tejun Heoc2931b72014-05-16 13:22:51 -04003252 *
3253 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3254 * css which finished ->css_online() is guaranteed to be visible in the
3255 * future iterations and will stay visible until the last reference is put.
3256 * A css which hasn't finished ->css_online() or already finished
3257 * ->css_offline() may show up during traversal. It's each subsystem's
3258 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003259 */
Tejun Heo492eb212013-08-08 20:11:25 -04003260struct cgroup_subsys_state *
3261css_next_descendant_pre(struct cgroup_subsys_state *pos,
3262 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003263{
Tejun Heo492eb212013-08-08 20:11:25 -04003264 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003265
Tejun Heo8353da12014-05-13 12:19:23 -04003266 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003267
Tejun Heobd8815a2013-08-08 20:11:27 -04003268 /* if first iteration, visit @root */
Tejun Heo7805d002013-05-24 10:50:24 +09003269 if (!pos)
Tejun Heobd8815a2013-08-08 20:11:27 -04003270 return root;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003271
3272 /* visit the first child if exists */
Tejun Heo492eb212013-08-08 20:11:25 -04003273 next = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003274 if (next)
3275 return next;
3276
3277 /* no child, visit my or the closest ancestor's next sibling */
Tejun Heo492eb212013-08-08 20:11:25 -04003278 while (pos != root) {
Tejun Heo5c9d5352014-05-16 13:22:48 -04003279 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003280 if (next)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003281 return next;
Tejun Heo5c9d5352014-05-16 13:22:48 -04003282 pos = pos->parent;
Tejun Heo7805d002013-05-24 10:50:24 +09003283 }
Tejun Heo574bd9f2012-11-09 09:12:29 -08003284
3285 return NULL;
3286}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003287
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003288/**
Tejun Heo492eb212013-08-08 20:11:25 -04003289 * css_rightmost_descendant - return the rightmost descendant of a css
3290 * @pos: css of interest
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003291 *
Tejun Heo492eb212013-08-08 20:11:25 -04003292 * Return the rightmost descendant of @pos. If there's no descendant, @pos
3293 * is returned. This can be used during pre-order traversal to skip
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003294 * subtree of @pos.
Tejun Heo75501a62013-05-24 10:55:38 +09003295 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003296 * While this function requires cgroup_mutex or RCU read locking, it
3297 * doesn't require the whole traversal to be contained in a single critical
3298 * section. This function will return the correct rightmost descendant as
3299 * long as @pos is accessible.
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003300 */
Tejun Heo492eb212013-08-08 20:11:25 -04003301struct cgroup_subsys_state *
3302css_rightmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003303{
Tejun Heo492eb212013-08-08 20:11:25 -04003304 struct cgroup_subsys_state *last, *tmp;
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003305
Tejun Heo8353da12014-05-13 12:19:23 -04003306 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003307
3308 do {
3309 last = pos;
3310 /* ->prev isn't RCU safe, walk ->next till the end */
3311 pos = NULL;
Tejun Heo492eb212013-08-08 20:11:25 -04003312 css_for_each_child(tmp, last)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003313 pos = tmp;
3314 } while (pos);
3315
3316 return last;
3317}
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003318
Tejun Heo492eb212013-08-08 20:11:25 -04003319static struct cgroup_subsys_state *
3320css_leftmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003321{
Tejun Heo492eb212013-08-08 20:11:25 -04003322 struct cgroup_subsys_state *last;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003323
3324 do {
3325 last = pos;
Tejun Heo492eb212013-08-08 20:11:25 -04003326 pos = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003327 } while (pos);
3328
3329 return last;
3330}
3331
3332/**
Tejun Heo492eb212013-08-08 20:11:25 -04003333 * css_next_descendant_post - find the next descendant for post-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003334 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003335 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003336 *
Tejun Heo492eb212013-08-08 20:11:25 -04003337 * To be used by css_for_each_descendant_post(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003338 * to visit for post-order traversal of @root's descendants. @root is
3339 * included in the iteration and the last node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003340 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003341 * While this function requires cgroup_mutex or RCU read locking, it
3342 * doesn't require the whole traversal to be contained in a single critical
3343 * section. This function will return the correct next descendant as long
3344 * as both @pos and @cgroup are accessible and @pos is a descendant of
3345 * @cgroup.
Tejun Heoc2931b72014-05-16 13:22:51 -04003346 *
3347 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3348 * css which finished ->css_online() is guaranteed to be visible in the
3349 * future iterations and will stay visible until the last reference is put.
3350 * A css which hasn't finished ->css_online() or already finished
3351 * ->css_offline() may show up during traversal. It's each subsystem's
3352 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003353 */
Tejun Heo492eb212013-08-08 20:11:25 -04003354struct cgroup_subsys_state *
3355css_next_descendant_post(struct cgroup_subsys_state *pos,
3356 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003357{
Tejun Heo492eb212013-08-08 20:11:25 -04003358 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003359
Tejun Heo8353da12014-05-13 12:19:23 -04003360 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003361
Tejun Heo58b79a92013-09-06 15:31:08 -04003362 /* if first iteration, visit leftmost descendant which may be @root */
3363 if (!pos)
3364 return css_leftmost_descendant(root);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003365
Tejun Heobd8815a2013-08-08 20:11:27 -04003366 /* if we visited @root, we're done */
3367 if (pos == root)
3368 return NULL;
3369
Tejun Heo574bd9f2012-11-09 09:12:29 -08003370 /* if there's an unvisited sibling, visit its leftmost descendant */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003371 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003372 if (next)
Tejun Heo492eb212013-08-08 20:11:25 -04003373 return css_leftmost_descendant(next);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003374
3375 /* no sibling left, visit parent */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003376 return pos->parent;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003377}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003378
Tejun Heof3d46502014-05-16 13:22:52 -04003379/**
3380 * css_has_online_children - does a css have online children
3381 * @css: the target css
3382 *
3383 * Returns %true if @css has any online children; otherwise, %false. This
3384 * function can be called from any context but the caller is responsible
3385 * for synchronizing against on/offlining as necessary.
3386 */
3387bool css_has_online_children(struct cgroup_subsys_state *css)
Tejun Heocbc125e2014-05-14 09:15:01 -04003388{
Tejun Heof3d46502014-05-16 13:22:52 -04003389 struct cgroup_subsys_state *child;
3390 bool ret = false;
Tejun Heocbc125e2014-05-14 09:15:01 -04003391
3392 rcu_read_lock();
Tejun Heof3d46502014-05-16 13:22:52 -04003393 css_for_each_child(child, css) {
3394 if (css->flags & CSS_ONLINE) {
3395 ret = true;
3396 break;
Tejun Heocbc125e2014-05-14 09:15:01 -04003397 }
3398 }
3399 rcu_read_unlock();
Tejun Heof3d46502014-05-16 13:22:52 -04003400 return ret;
Cliff Wickman31a7df02008-02-07 00:14:42 -08003401}
3402
Tejun Heo0942eee2013-08-08 20:11:26 -04003403/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003404 * css_advance_task_iter - advance a task itererator to the next css_set
Tejun Heo0942eee2013-08-08 20:11:26 -04003405 * @it: the iterator to advance
3406 *
3407 * Advance @it to the next css_set to walk.
Tejun Heod5158762013-08-08 20:11:26 -04003408 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003409static void css_advance_task_iter(struct css_task_iter *it)
Tejun Heod5158762013-08-08 20:11:26 -04003410{
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003411 struct list_head *l = it->cset_pos;
Tejun Heod5158762013-08-08 20:11:26 -04003412 struct cgrp_cset_link *link;
3413 struct css_set *cset;
3414
3415 /* Advance to the next non-empty css_set */
3416 do {
3417 l = l->next;
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003418 if (l == it->cset_head) {
3419 it->cset_pos = NULL;
Tejun Heod5158762013-08-08 20:11:26 -04003420 return;
3421 }
Tejun Heo3ebb2b62014-04-23 11:13:15 -04003422
3423 if (it->ss) {
3424 cset = container_of(l, struct css_set,
3425 e_cset_node[it->ss->id]);
3426 } else {
3427 link = list_entry(l, struct cgrp_cset_link, cset_link);
3428 cset = link->cset;
3429 }
Tejun Heoc7561122014-02-25 10:04:01 -05003430 } while (list_empty(&cset->tasks) && list_empty(&cset->mg_tasks));
3431
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003432 it->cset_pos = l;
Tejun Heoc7561122014-02-25 10:04:01 -05003433
3434 if (!list_empty(&cset->tasks))
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003435 it->task_pos = cset->tasks.next;
Tejun Heoc7561122014-02-25 10:04:01 -05003436 else
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003437 it->task_pos = cset->mg_tasks.next;
3438
3439 it->tasks_head = &cset->tasks;
3440 it->mg_tasks_head = &cset->mg_tasks;
Tejun Heod5158762013-08-08 20:11:26 -04003441}
3442
Tejun Heo0942eee2013-08-08 20:11:26 -04003443/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003444 * css_task_iter_start - initiate task iteration
3445 * @css: the css to walk tasks of
Tejun Heo0942eee2013-08-08 20:11:26 -04003446 * @it: the task iterator to use
3447 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003448 * Initiate iteration through the tasks of @css. The caller can call
3449 * css_task_iter_next() to walk through the tasks until the function
3450 * returns NULL. On completion of iteration, css_task_iter_end() must be
3451 * called.
Tejun Heo0942eee2013-08-08 20:11:26 -04003452 *
3453 * Note that this function acquires a lock which is released when the
3454 * iteration finishes. The caller can't sleep while iteration is in
3455 * progress.
3456 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003457void css_task_iter_start(struct cgroup_subsys_state *css,
3458 struct css_task_iter *it)
Tejun Heo96d365e2014-02-13 06:58:40 -05003459 __acquires(css_set_rwsem)
Paul Menage817929e2007-10-18 23:39:36 -07003460{
Tejun Heo56fde9e2014-02-13 06:58:38 -05003461 /* no one should try to iterate before mounting cgroups */
3462 WARN_ON_ONCE(!use_task_css_set_links);
Paul Menage817929e2007-10-18 23:39:36 -07003463
Tejun Heo96d365e2014-02-13 06:58:40 -05003464 down_read(&css_set_rwsem);
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003465
Tejun Heo3ebb2b62014-04-23 11:13:15 -04003466 it->ss = css->ss;
3467
3468 if (it->ss)
3469 it->cset_pos = &css->cgroup->e_csets[css->ss->id];
3470 else
3471 it->cset_pos = &css->cgroup->cset_links;
3472
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003473 it->cset_head = it->cset_pos;
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003474
Tejun Heo72ec7022013-08-08 20:11:26 -04003475 css_advance_task_iter(it);
Paul Menagebd89aab2007-10-18 23:40:44 -07003476}
Paul Menage817929e2007-10-18 23:39:36 -07003477
Tejun Heo0942eee2013-08-08 20:11:26 -04003478/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003479 * css_task_iter_next - return the next task for the iterator
Tejun Heo0942eee2013-08-08 20:11:26 -04003480 * @it: the task iterator being iterated
3481 *
3482 * The "next" function for task iteration. @it should have been
Tejun Heo72ec7022013-08-08 20:11:26 -04003483 * initialized via css_task_iter_start(). Returns NULL when the iteration
3484 * reaches the end.
Tejun Heo0942eee2013-08-08 20:11:26 -04003485 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003486struct task_struct *css_task_iter_next(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07003487{
3488 struct task_struct *res;
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003489 struct list_head *l = it->task_pos;
Paul Menage817929e2007-10-18 23:39:36 -07003490
3491 /* If the iterator cg is NULL, we have no tasks */
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003492 if (!it->cset_pos)
Paul Menage817929e2007-10-18 23:39:36 -07003493 return NULL;
3494 res = list_entry(l, struct task_struct, cg_list);
Tejun Heoc7561122014-02-25 10:04:01 -05003495
3496 /*
3497 * Advance iterator to find next entry. cset->tasks is consumed
3498 * first and then ->mg_tasks. After ->mg_tasks, we move onto the
3499 * next cset.
3500 */
Paul Menage817929e2007-10-18 23:39:36 -07003501 l = l->next;
Tejun Heoc7561122014-02-25 10:04:01 -05003502
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003503 if (l == it->tasks_head)
3504 l = it->mg_tasks_head->next;
Tejun Heoc7561122014-02-25 10:04:01 -05003505
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003506 if (l == it->mg_tasks_head)
Tejun Heo72ec7022013-08-08 20:11:26 -04003507 css_advance_task_iter(it);
Tejun Heoc7561122014-02-25 10:04:01 -05003508 else
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003509 it->task_pos = l;
Tejun Heoc7561122014-02-25 10:04:01 -05003510
Paul Menage817929e2007-10-18 23:39:36 -07003511 return res;
3512}
3513
Tejun Heo0942eee2013-08-08 20:11:26 -04003514/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003515 * css_task_iter_end - finish task iteration
Tejun Heo0942eee2013-08-08 20:11:26 -04003516 * @it: the task iterator to finish
3517 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003518 * Finish task iteration started by css_task_iter_start().
Tejun Heo0942eee2013-08-08 20:11:26 -04003519 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003520void css_task_iter_end(struct css_task_iter *it)
Tejun Heo96d365e2014-02-13 06:58:40 -05003521 __releases(css_set_rwsem)
Paul Menage817929e2007-10-18 23:39:36 -07003522{
Tejun Heo96d365e2014-02-13 06:58:40 -05003523 up_read(&css_set_rwsem);
Tejun Heo8cc99342013-04-07 09:29:50 -07003524}
3525
3526/**
3527 * cgroup_trasnsfer_tasks - move tasks from one cgroup to another
3528 * @to: cgroup to which the tasks will be moved
3529 * @from: cgroup in which the tasks currently reside
Tejun Heoeaf797a2014-02-25 10:04:03 -05003530 *
3531 * Locking rules between cgroup_post_fork() and the migration path
3532 * guarantee that, if a task is forking while being migrated, the new child
3533 * is guaranteed to be either visible in the source cgroup after the
3534 * parent's migration is complete or put into the target cgroup. No task
3535 * can slip out of migration through forking.
Tejun Heo8cc99342013-04-07 09:29:50 -07003536 */
3537int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from)
3538{
Tejun Heo952aaa12014-02-25 10:04:03 -05003539 LIST_HEAD(preloaded_csets);
3540 struct cgrp_cset_link *link;
Tejun Heoe406d1c2014-02-13 06:58:39 -05003541 struct css_task_iter it;
3542 struct task_struct *task;
Tejun Heo952aaa12014-02-25 10:04:03 -05003543 int ret;
Tejun Heoe406d1c2014-02-13 06:58:39 -05003544
Tejun Heo952aaa12014-02-25 10:04:03 -05003545 mutex_lock(&cgroup_mutex);
3546
3547 /* all tasks in @from are being moved, all csets are source */
3548 down_read(&css_set_rwsem);
3549 list_for_each_entry(link, &from->cset_links, cset_link)
3550 cgroup_migrate_add_src(link->cset, to, &preloaded_csets);
3551 up_read(&css_set_rwsem);
3552
3553 ret = cgroup_migrate_prepare_dst(to, &preloaded_csets);
3554 if (ret)
3555 goto out_err;
3556
3557 /*
3558 * Migrate tasks one-by-one until @form is empty. This fails iff
3559 * ->can_attach() fails.
3560 */
Tejun Heoe406d1c2014-02-13 06:58:39 -05003561 do {
Tejun Heo9d800df2014-05-14 09:15:00 -04003562 css_task_iter_start(&from->self, &it);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003563 task = css_task_iter_next(&it);
3564 if (task)
3565 get_task_struct(task);
3566 css_task_iter_end(&it);
3567
3568 if (task) {
Tejun Heo952aaa12014-02-25 10:04:03 -05003569 ret = cgroup_migrate(to, task, false);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003570 put_task_struct(task);
3571 }
3572 } while (task && !ret);
Tejun Heo952aaa12014-02-25 10:04:03 -05003573out_err:
3574 cgroup_migrate_finish(&preloaded_csets);
3575 mutex_unlock(&cgroup_mutex);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003576 return ret;
Tejun Heo8cc99342013-04-07 09:29:50 -07003577}
3578
Paul Menage817929e2007-10-18 23:39:36 -07003579/*
Ben Blum102a7752009-09-23 15:56:26 -07003580 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003581 *
3582 * Reading this file can return large amounts of data if a cgroup has
3583 * *lots* of attached tasks. So it may need several calls to read(),
3584 * but we cannot guarantee that the information we produce is correct
3585 * unless we produce it entirely atomically.
3586 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07003587 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003588
Li Zefan24528252012-01-20 11:58:43 +08003589/* which pidlist file are we talking about? */
3590enum cgroup_filetype {
3591 CGROUP_FILE_PROCS,
3592 CGROUP_FILE_TASKS,
3593};
3594
3595/*
3596 * A pidlist is a list of pids that virtually represents the contents of one
3597 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
3598 * a pair (one each for procs, tasks) for each pid namespace that's relevant
3599 * to the cgroup.
3600 */
3601struct cgroup_pidlist {
3602 /*
3603 * used to find which pidlist is wanted. doesn't change as long as
3604 * this particular list stays in the list.
3605 */
3606 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
3607 /* array of xids */
3608 pid_t *list;
3609 /* how many elements the above list has */
3610 int length;
Li Zefan24528252012-01-20 11:58:43 +08003611 /* each of these stored in a list by its cgroup */
3612 struct list_head links;
3613 /* pointer to the cgroup we belong to, for list removal purposes */
3614 struct cgroup *owner;
Tejun Heob1a21362013-11-29 10:42:58 -05003615 /* for delayed destruction */
3616 struct delayed_work destroy_dwork;
Li Zefan24528252012-01-20 11:58:43 +08003617};
3618
Paul Menagebbcb81d2007-10-18 23:39:32 -07003619/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07003620 * The following two functions "fix" the issue where there are more pids
3621 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
3622 * TODO: replace with a kernel-wide solution to this problem
3623 */
3624#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
3625static void *pidlist_allocate(int count)
3626{
3627 if (PIDLIST_TOO_LARGE(count))
3628 return vmalloc(count * sizeof(pid_t));
3629 else
3630 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
3631}
Tejun Heob1a21362013-11-29 10:42:58 -05003632
Ben Blumd1d9fd32009-09-23 15:56:28 -07003633static void pidlist_free(void *p)
3634{
3635 if (is_vmalloc_addr(p))
3636 vfree(p);
3637 else
3638 kfree(p);
3639}
Ben Blumd1d9fd32009-09-23 15:56:28 -07003640
3641/*
Tejun Heob1a21362013-11-29 10:42:58 -05003642 * Used to destroy all pidlists lingering waiting for destroy timer. None
3643 * should be left afterwards.
3644 */
3645static void cgroup_pidlist_destroy_all(struct cgroup *cgrp)
3646{
3647 struct cgroup_pidlist *l, *tmp_l;
3648
3649 mutex_lock(&cgrp->pidlist_mutex);
3650 list_for_each_entry_safe(l, tmp_l, &cgrp->pidlists, links)
3651 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, 0);
3652 mutex_unlock(&cgrp->pidlist_mutex);
3653
3654 flush_workqueue(cgroup_pidlist_destroy_wq);
3655 BUG_ON(!list_empty(&cgrp->pidlists));
3656}
3657
3658static void cgroup_pidlist_destroy_work_fn(struct work_struct *work)
3659{
3660 struct delayed_work *dwork = to_delayed_work(work);
3661 struct cgroup_pidlist *l = container_of(dwork, struct cgroup_pidlist,
3662 destroy_dwork);
3663 struct cgroup_pidlist *tofree = NULL;
3664
3665 mutex_lock(&l->owner->pidlist_mutex);
Tejun Heob1a21362013-11-29 10:42:58 -05003666
3667 /*
Tejun Heo04502362013-11-29 10:42:59 -05003668 * Destroy iff we didn't get queued again. The state won't change
3669 * as destroy_dwork can only be queued while locked.
Tejun Heob1a21362013-11-29 10:42:58 -05003670 */
Tejun Heo04502362013-11-29 10:42:59 -05003671 if (!delayed_work_pending(dwork)) {
Tejun Heob1a21362013-11-29 10:42:58 -05003672 list_del(&l->links);
3673 pidlist_free(l->list);
3674 put_pid_ns(l->key.ns);
3675 tofree = l;
3676 }
3677
Tejun Heob1a21362013-11-29 10:42:58 -05003678 mutex_unlock(&l->owner->pidlist_mutex);
3679 kfree(tofree);
3680}
3681
3682/*
Ben Blum102a7752009-09-23 15:56:26 -07003683 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
Li Zefan6ee211a2013-03-12 15:36:00 -07003684 * Returns the number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003685 */
Li Zefan6ee211a2013-03-12 15:36:00 -07003686static int pidlist_uniq(pid_t *list, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003687{
Ben Blum102a7752009-09-23 15:56:26 -07003688 int src, dest = 1;
Ben Blum102a7752009-09-23 15:56:26 -07003689
3690 /*
3691 * we presume the 0th element is unique, so i starts at 1. trivial
3692 * edge cases first; no work needs to be done for either
3693 */
3694 if (length == 0 || length == 1)
3695 return length;
3696 /* src and dest walk down the list; dest counts unique elements */
3697 for (src = 1; src < length; src++) {
3698 /* find next unique element */
3699 while (list[src] == list[src-1]) {
3700 src++;
3701 if (src == length)
3702 goto after;
3703 }
3704 /* dest always points to where the next unique element goes */
3705 list[dest] = list[src];
3706 dest++;
3707 }
3708after:
Ben Blum102a7752009-09-23 15:56:26 -07003709 return dest;
3710}
3711
Tejun Heoafb2bc12013-11-29 10:42:59 -05003712/*
3713 * The two pid files - task and cgroup.procs - guaranteed that the result
3714 * is sorted, which forced this whole pidlist fiasco. As pid order is
3715 * different per namespace, each namespace needs differently sorted list,
3716 * making it impossible to use, for example, single rbtree of member tasks
3717 * sorted by task pointer. As pidlists can be fairly large, allocating one
3718 * per open file is dangerous, so cgroup had to implement shared pool of
3719 * pidlists keyed by cgroup and namespace.
3720 *
3721 * All this extra complexity was caused by the original implementation
3722 * committing to an entirely unnecessary property. In the long term, we
3723 * want to do away with it. Explicitly scramble sort order if
3724 * sane_behavior so that no such expectation exists in the new interface.
3725 *
3726 * Scrambling is done by swapping every two consecutive bits, which is
3727 * non-identity one-to-one mapping which disturbs sort order sufficiently.
3728 */
3729static pid_t pid_fry(pid_t pid)
3730{
3731 unsigned a = pid & 0x55555555;
3732 unsigned b = pid & 0xAAAAAAAA;
3733
3734 return (a << 1) | (b >> 1);
3735}
3736
3737static pid_t cgroup_pid_fry(struct cgroup *cgrp, pid_t pid)
3738{
3739 if (cgroup_sane_behavior(cgrp))
3740 return pid_fry(pid);
3741 else
3742 return pid;
3743}
3744
Ben Blum102a7752009-09-23 15:56:26 -07003745static int cmppid(const void *a, const void *b)
3746{
3747 return *(pid_t *)a - *(pid_t *)b;
3748}
3749
Tejun Heoafb2bc12013-11-29 10:42:59 -05003750static int fried_cmppid(const void *a, const void *b)
3751{
3752 return pid_fry(*(pid_t *)a) - pid_fry(*(pid_t *)b);
3753}
3754
Ben Blum72a8cb32009-09-23 15:56:27 -07003755static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
3756 enum cgroup_filetype type)
3757{
3758 struct cgroup_pidlist *l;
3759 /* don't need task_nsproxy() if we're looking at ourself */
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08003760 struct pid_namespace *ns = task_active_pid_ns(current);
Li Zefanb70cc5f2010-03-10 15:22:12 -08003761
Tejun Heoe6b81712013-11-29 10:42:59 -05003762 lockdep_assert_held(&cgrp->pidlist_mutex);
3763
3764 list_for_each_entry(l, &cgrp->pidlists, links)
3765 if (l->key.type == type && l->key.ns == ns)
Ben Blum72a8cb32009-09-23 15:56:27 -07003766 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05003767 return NULL;
3768}
3769
Ben Blum72a8cb32009-09-23 15:56:27 -07003770/*
3771 * find the appropriate pidlist for our purpose (given procs vs tasks)
3772 * returns with the lock on that pidlist already held, and takes care
3773 * of the use count, or returns NULL with no locks held if we're out of
3774 * memory.
3775 */
Tejun Heoe6b81712013-11-29 10:42:59 -05003776static struct cgroup_pidlist *cgroup_pidlist_find_create(struct cgroup *cgrp,
3777 enum cgroup_filetype type)
Ben Blum72a8cb32009-09-23 15:56:27 -07003778{
3779 struct cgroup_pidlist *l;
Ben Blum72a8cb32009-09-23 15:56:27 -07003780
Tejun Heoe6b81712013-11-29 10:42:59 -05003781 lockdep_assert_held(&cgrp->pidlist_mutex);
3782
3783 l = cgroup_pidlist_find(cgrp, type);
3784 if (l)
3785 return l;
3786
Ben Blum72a8cb32009-09-23 15:56:27 -07003787 /* entry not found; create a new one */
Tejun Heof4f4be22013-06-12 21:04:51 -07003788 l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
Tejun Heoe6b81712013-11-29 10:42:59 -05003789 if (!l)
Ben Blum72a8cb32009-09-23 15:56:27 -07003790 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05003791
Tejun Heob1a21362013-11-29 10:42:58 -05003792 INIT_DELAYED_WORK(&l->destroy_dwork, cgroup_pidlist_destroy_work_fn);
Ben Blum72a8cb32009-09-23 15:56:27 -07003793 l->key.type = type;
Tejun Heoe6b81712013-11-29 10:42:59 -05003794 /* don't need task_nsproxy() if we're looking at ourself */
3795 l->key.ns = get_pid_ns(task_active_pid_ns(current));
Ben Blum72a8cb32009-09-23 15:56:27 -07003796 l->owner = cgrp;
3797 list_add(&l->links, &cgrp->pidlists);
Ben Blum72a8cb32009-09-23 15:56:27 -07003798 return l;
3799}
3800
3801/*
Ben Blum102a7752009-09-23 15:56:26 -07003802 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
3803 */
Ben Blum72a8cb32009-09-23 15:56:27 -07003804static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
3805 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07003806{
3807 pid_t *array;
3808 int length;
3809 int pid, n = 0; /* used for populating the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04003810 struct css_task_iter it;
Paul Menage817929e2007-10-18 23:39:36 -07003811 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07003812 struct cgroup_pidlist *l;
3813
Tejun Heo4bac00d2013-11-29 10:42:59 -05003814 lockdep_assert_held(&cgrp->pidlist_mutex);
3815
Ben Blum102a7752009-09-23 15:56:26 -07003816 /*
3817 * If cgroup gets more users after we read count, we won't have
3818 * enough space - tough. This race is indistinguishable to the
3819 * caller from the case that the additional cgroup users didn't
3820 * show up until sometime later on.
3821 */
3822 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003823 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07003824 if (!array)
3825 return -ENOMEM;
3826 /* now, populate the array */
Tejun Heo9d800df2014-05-14 09:15:00 -04003827 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04003828 while ((tsk = css_task_iter_next(&it))) {
Ben Blum102a7752009-09-23 15:56:26 -07003829 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07003830 break;
Ben Blum102a7752009-09-23 15:56:26 -07003831 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07003832 if (type == CGROUP_FILE_PROCS)
3833 pid = task_tgid_vnr(tsk);
3834 else
3835 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07003836 if (pid > 0) /* make sure to only use valid results */
3837 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07003838 }
Tejun Heo72ec7022013-08-08 20:11:26 -04003839 css_task_iter_end(&it);
Ben Blum102a7752009-09-23 15:56:26 -07003840 length = n;
3841 /* now sort & (if procs) strip out duplicates */
Tejun Heoafb2bc12013-11-29 10:42:59 -05003842 if (cgroup_sane_behavior(cgrp))
3843 sort(array, length, sizeof(pid_t), fried_cmppid, NULL);
3844 else
3845 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07003846 if (type == CGROUP_FILE_PROCS)
Li Zefan6ee211a2013-03-12 15:36:00 -07003847 length = pidlist_uniq(array, length);
Tejun Heoe6b81712013-11-29 10:42:59 -05003848
Tejun Heoe6b81712013-11-29 10:42:59 -05003849 l = cgroup_pidlist_find_create(cgrp, type);
Ben Blum72a8cb32009-09-23 15:56:27 -07003850 if (!l) {
Tejun Heoe6b81712013-11-29 10:42:59 -05003851 mutex_unlock(&cgrp->pidlist_mutex);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003852 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07003853 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07003854 }
Tejun Heoe6b81712013-11-29 10:42:59 -05003855
3856 /* store array, freeing old if necessary */
Ben Blumd1d9fd32009-09-23 15:56:28 -07003857 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07003858 l->list = array;
3859 l->length = length;
Ben Blum72a8cb32009-09-23 15:56:27 -07003860 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07003861 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003862}
3863
Balbir Singh846c7bb2007-10-18 23:39:44 -07003864/**
Li Zefana043e3b2008-02-23 15:24:09 -08003865 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07003866 * @stats: cgroupstats to fill information into
3867 * @dentry: A dentry entry belonging to the cgroup for which stats have
3868 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08003869 *
3870 * Build and fill cgroupstats so that taskstats can export it to user
3871 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07003872 */
3873int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
3874{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003875 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07003876 struct cgroup *cgrp;
Tejun Heo72ec7022013-08-08 20:11:26 -04003877 struct css_task_iter it;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003878 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08003879
Tejun Heo2bd59d42014-02-11 11:52:49 -05003880 /* it should be kernfs_node belonging to cgroupfs and is a directory */
3881 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
3882 kernfs_type(kn) != KERNFS_DIR)
3883 return -EINVAL;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003884
Li Zefanbad34662014-02-14 16:54:28 +08003885 mutex_lock(&cgroup_mutex);
3886
Tejun Heo2bd59d42014-02-11 11:52:49 -05003887 /*
3888 * We aren't being called from kernfs and there's no guarantee on
Tejun Heoec903c02014-05-13 12:11:01 -04003889 * @kn->priv's validity. For this and css_tryget_online_from_dir(),
Tejun Heo2bd59d42014-02-11 11:52:49 -05003890 * @kn->priv is RCU safe. Let's do the RCU dancing.
3891 */
3892 rcu_read_lock();
3893 cgrp = rcu_dereference(kn->priv);
Li Zefanbad34662014-02-14 16:54:28 +08003894 if (!cgrp || cgroup_is_dead(cgrp)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05003895 rcu_read_unlock();
Li Zefanbad34662014-02-14 16:54:28 +08003896 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003897 return -ENOENT;
3898 }
Li Zefanbad34662014-02-14 16:54:28 +08003899 rcu_read_unlock();
Balbir Singh846c7bb2007-10-18 23:39:44 -07003900
Tejun Heo9d800df2014-05-14 09:15:00 -04003901 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04003902 while ((tsk = css_task_iter_next(&it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07003903 switch (tsk->state) {
3904 case TASK_RUNNING:
3905 stats->nr_running++;
3906 break;
3907 case TASK_INTERRUPTIBLE:
3908 stats->nr_sleeping++;
3909 break;
3910 case TASK_UNINTERRUPTIBLE:
3911 stats->nr_uninterruptible++;
3912 break;
3913 case TASK_STOPPED:
3914 stats->nr_stopped++;
3915 break;
3916 default:
3917 if (delayacct_is_task_waiting_on_io(tsk))
3918 stats->nr_io_wait++;
3919 break;
3920 }
3921 }
Tejun Heo72ec7022013-08-08 20:11:26 -04003922 css_task_iter_end(&it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07003923
Li Zefanbad34662014-02-14 16:54:28 +08003924 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003925 return 0;
Balbir Singh846c7bb2007-10-18 23:39:44 -07003926}
3927
Paul Menage8f3ff202009-09-23 15:56:25 -07003928
Paul Menagecc31edc2008-10-18 20:28:04 -07003929/*
Ben Blum102a7752009-09-23 15:56:26 -07003930 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07003931 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07003932 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07003933 */
3934
Ben Blum102a7752009-09-23 15:56:26 -07003935static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07003936{
3937 /*
3938 * Initially we receive a position value that corresponds to
3939 * one more than the last pid shown (or 0 on the first call or
3940 * after a seek to the start). Use a binary-search to find the
3941 * next pid to display, if any
3942 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05003943 struct kernfs_open_file *of = s->private;
Tejun Heo7da11272013-12-05 12:28:04 -05003944 struct cgroup *cgrp = seq_css(s)->cgroup;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003945 struct cgroup_pidlist *l;
Tejun Heo7da11272013-12-05 12:28:04 -05003946 enum cgroup_filetype type = seq_cft(s)->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07003947 int index = 0, pid = *pos;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003948 int *iter, ret;
Paul Menagecc31edc2008-10-18 20:28:04 -07003949
Tejun Heo4bac00d2013-11-29 10:42:59 -05003950 mutex_lock(&cgrp->pidlist_mutex);
3951
3952 /*
Tejun Heo5d224442013-12-05 12:28:04 -05003953 * !NULL @of->priv indicates that this isn't the first start()
Tejun Heo4bac00d2013-11-29 10:42:59 -05003954 * after open. If the matching pidlist is around, we can use that.
Tejun Heo5d224442013-12-05 12:28:04 -05003955 * Look for it. Note that @of->priv can't be used directly. It
Tejun Heo4bac00d2013-11-29 10:42:59 -05003956 * could already have been destroyed.
3957 */
Tejun Heo5d224442013-12-05 12:28:04 -05003958 if (of->priv)
3959 of->priv = cgroup_pidlist_find(cgrp, type);
Tejun Heo4bac00d2013-11-29 10:42:59 -05003960
3961 /*
3962 * Either this is the first start() after open or the matching
3963 * pidlist has been destroyed inbetween. Create a new one.
3964 */
Tejun Heo5d224442013-12-05 12:28:04 -05003965 if (!of->priv) {
3966 ret = pidlist_array_load(cgrp, type,
3967 (struct cgroup_pidlist **)&of->priv);
Tejun Heo4bac00d2013-11-29 10:42:59 -05003968 if (ret)
3969 return ERR_PTR(ret);
3970 }
Tejun Heo5d224442013-12-05 12:28:04 -05003971 l = of->priv;
Tejun Heo4bac00d2013-11-29 10:42:59 -05003972
Paul Menagecc31edc2008-10-18 20:28:04 -07003973 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07003974 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11003975
Paul Menagecc31edc2008-10-18 20:28:04 -07003976 while (index < end) {
3977 int mid = (index + end) / 2;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003978 if (cgroup_pid_fry(cgrp, l->list[mid]) == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07003979 index = mid;
3980 break;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003981 } else if (cgroup_pid_fry(cgrp, l->list[mid]) <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07003982 index = mid + 1;
3983 else
3984 end = mid;
3985 }
3986 }
3987 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07003988 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07003989 return NULL;
3990 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07003991 iter = l->list + index;
Tejun Heoafb2bc12013-11-29 10:42:59 -05003992 *pos = cgroup_pid_fry(cgrp, *iter);
Paul Menagecc31edc2008-10-18 20:28:04 -07003993 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003994}
3995
Ben Blum102a7752009-09-23 15:56:26 -07003996static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07003997{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003998 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05003999 struct cgroup_pidlist *l = of->priv;
Tejun Heo62236852013-11-29 10:42:58 -05004000
Tejun Heo5d224442013-12-05 12:28:04 -05004001 if (l)
4002 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork,
Tejun Heo04502362013-11-29 10:42:59 -05004003 CGROUP_PIDLIST_DESTROY_DELAY);
Tejun Heo7da11272013-12-05 12:28:04 -05004004 mutex_unlock(&seq_css(s)->cgroup->pidlist_mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07004005}
4006
Ben Blum102a7752009-09-23 15:56:26 -07004007static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07004008{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004009 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05004010 struct cgroup_pidlist *l = of->priv;
Ben Blum102a7752009-09-23 15:56:26 -07004011 pid_t *p = v;
4012 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07004013 /*
4014 * Advance to the next pid in the array. If this goes off the
4015 * end, we're done
4016 */
4017 p++;
4018 if (p >= end) {
4019 return NULL;
4020 } else {
Tejun Heo7da11272013-12-05 12:28:04 -05004021 *pos = cgroup_pid_fry(seq_css(s)->cgroup, *p);
Paul Menagecc31edc2008-10-18 20:28:04 -07004022 return p;
4023 }
4024}
4025
Ben Blum102a7752009-09-23 15:56:26 -07004026static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07004027{
4028 return seq_printf(s, "%d\n", *(int *)v);
4029}
4030
Tejun Heo182446d2013-08-08 20:11:24 -04004031static u64 cgroup_read_notify_on_release(struct cgroup_subsys_state *css,
4032 struct cftype *cft)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004033{
Tejun Heo182446d2013-08-08 20:11:24 -04004034 return notify_on_release(css->cgroup);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004035}
4036
Tejun Heo182446d2013-08-08 20:11:24 -04004037static int cgroup_write_notify_on_release(struct cgroup_subsys_state *css,
4038 struct cftype *cft, u64 val)
Paul Menage6379c102008-07-25 01:47:01 -07004039{
Tejun Heo182446d2013-08-08 20:11:24 -04004040 clear_bit(CGRP_RELEASABLE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004041 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04004042 set_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004043 else
Tejun Heo182446d2013-08-08 20:11:24 -04004044 clear_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004045 return 0;
4046}
4047
Tejun Heo182446d2013-08-08 20:11:24 -04004048static u64 cgroup_clone_children_read(struct cgroup_subsys_state *css,
4049 struct cftype *cft)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004050{
Tejun Heo182446d2013-08-08 20:11:24 -04004051 return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004052}
4053
Tejun Heo182446d2013-08-08 20:11:24 -04004054static int cgroup_clone_children_write(struct cgroup_subsys_state *css,
4055 struct cftype *cft, u64 val)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004056{
4057 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04004058 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004059 else
Tejun Heo182446d2013-08-08 20:11:24 -04004060 clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004061 return 0;
4062}
4063
Tejun Heod5c56ce2013-06-03 19:14:34 -07004064static struct cftype cgroup_base_files[] = {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004065 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07004066 .name = "cgroup.procs",
Tejun Heo6612f052013-12-05 12:28:04 -05004067 .seq_start = cgroup_pidlist_start,
4068 .seq_next = cgroup_pidlist_next,
4069 .seq_stop = cgroup_pidlist_stop,
4070 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004071 .private = CGROUP_FILE_PROCS,
Tejun Heoacbef752014-05-13 12:16:22 -04004072 .write = cgroup_procs_write,
Ben Blum74a11662011-05-26 16:25:20 -07004073 .mode = S_IRUGO | S_IWUSR,
Ben Blum102a7752009-09-23 15:56:26 -07004074 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07004075 {
Daniel Lezcano97978e62010-10-27 15:33:35 -07004076 .name = "cgroup.clone_children",
Tejun Heo873fe092013-04-14 20:15:26 -07004077 .flags = CFTYPE_INSANE,
Daniel Lezcano97978e62010-10-27 15:33:35 -07004078 .read_u64 = cgroup_clone_children_read,
4079 .write_u64 = cgroup_clone_children_write,
4080 },
Tejun Heo6e6ff252012-04-01 12:09:55 -07004081 {
Tejun Heo873fe092013-04-14 20:15:26 -07004082 .name = "cgroup.sane_behavior",
4083 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004084 .seq_show = cgroup_sane_behavior_show,
Tejun Heo873fe092013-04-14 20:15:26 -07004085 },
Tejun Heof8f22e52014-04-23 11:13:16 -04004086 {
4087 .name = "cgroup.controllers",
4088 .flags = CFTYPE_ONLY_ON_DFL | CFTYPE_ONLY_ON_ROOT,
4089 .seq_show = cgroup_root_controllers_show,
4090 },
4091 {
4092 .name = "cgroup.controllers",
4093 .flags = CFTYPE_ONLY_ON_DFL | CFTYPE_NOT_ON_ROOT,
4094 .seq_show = cgroup_controllers_show,
4095 },
4096 {
4097 .name = "cgroup.subtree_control",
4098 .flags = CFTYPE_ONLY_ON_DFL,
4099 .seq_show = cgroup_subtree_control_show,
Tejun Heo451af502014-05-13 12:16:21 -04004100 .write = cgroup_subtree_control_write,
Tejun Heof8f22e52014-04-23 11:13:16 -04004101 },
Tejun Heo842b5972014-04-25 18:28:02 -04004102 {
4103 .name = "cgroup.populated",
4104 .flags = CFTYPE_ONLY_ON_DFL | CFTYPE_NOT_ON_ROOT,
4105 .seq_show = cgroup_populated_show,
4106 },
Tejun Heod5c56ce2013-06-03 19:14:34 -07004107
4108 /*
4109 * Historical crazy stuff. These don't have "cgroup." prefix and
4110 * don't exist if sane_behavior. If you're depending on these, be
4111 * prepared to be burned.
4112 */
4113 {
4114 .name = "tasks",
4115 .flags = CFTYPE_INSANE, /* use "procs" instead */
Tejun Heo6612f052013-12-05 12:28:04 -05004116 .seq_start = cgroup_pidlist_start,
4117 .seq_next = cgroup_pidlist_next,
4118 .seq_stop = cgroup_pidlist_stop,
4119 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004120 .private = CGROUP_FILE_TASKS,
Tejun Heoacbef752014-05-13 12:16:22 -04004121 .write = cgroup_tasks_write,
Tejun Heod5c56ce2013-06-03 19:14:34 -07004122 .mode = S_IRUGO | S_IWUSR,
4123 },
4124 {
4125 .name = "notify_on_release",
4126 .flags = CFTYPE_INSANE,
4127 .read_u64 = cgroup_read_notify_on_release,
4128 .write_u64 = cgroup_write_notify_on_release,
4129 },
Tejun Heo873fe092013-04-14 20:15:26 -07004130 {
Tejun Heo6e6ff252012-04-01 12:09:55 -07004131 .name = "release_agent",
Tejun Heocc5943a2013-06-03 19:13:55 -07004132 .flags = CFTYPE_INSANE | CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004133 .seq_show = cgroup_release_agent_show,
Tejun Heo451af502014-05-13 12:16:21 -04004134 .write = cgroup_release_agent_write,
Tejun Heo5f469902014-02-11 11:52:48 -05004135 .max_write_len = PATH_MAX - 1,
Tejun Heo6e6ff252012-04-01 12:09:55 -07004136 },
Tejun Heodb0416b2012-04-01 12:09:55 -07004137 { } /* terminate */
Paul Menagebbcb81d2007-10-18 23:39:32 -07004138};
4139
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004140/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07004141 * cgroup_populate_dir - create subsys files in a cgroup directory
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004142 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004143 * @subsys_mask: mask of the subsystem ids whose files should be added
Tejun Heobee55092013-06-28 16:24:11 -07004144 *
4145 * On failure, no file is added.
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004146 */
Tejun Heo69dfa002014-05-04 15:09:13 -04004147static int cgroup_populate_dir(struct cgroup *cgrp, unsigned int subsys_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004148{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004149 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07004150 int i, ret = 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004151
Tejun Heo8e3f6542012-04-01 12:09:55 -07004152 /* process cftsets of each subsystem */
Tejun Heob420ba72013-07-12 12:34:02 -07004153 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -05004154 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -07004155
Tejun Heo69dfa002014-05-04 15:09:13 -04004156 if (!(subsys_mask & (1 << i)))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004157 continue;
Tejun Heo8e3f6542012-04-01 12:09:55 -07004158
Tejun Heo0adb0702014-02-12 09:29:48 -05004159 list_for_each_entry(cfts, &ss->cfts, node) {
4160 ret = cgroup_addrm_files(cgrp, cfts, true);
Tejun Heobee55092013-06-28 16:24:11 -07004161 if (ret < 0)
4162 goto err;
4163 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004164 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004165 return 0;
Tejun Heobee55092013-06-28 16:24:11 -07004166err:
4167 cgroup_clear_dir(cgrp, subsys_mask);
4168 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004169}
4170
Tejun Heo0c21ead2013-08-13 20:22:51 -04004171/*
4172 * css destruction is four-stage process.
4173 *
4174 * 1. Destruction starts. Killing of the percpu_ref is initiated.
4175 * Implemented in kill_css().
4176 *
4177 * 2. When the percpu_ref is confirmed to be visible as killed on all CPUs
Tejun Heoec903c02014-05-13 12:11:01 -04004178 * and thus css_tryget_online() is guaranteed to fail, the css can be
4179 * offlined by invoking offline_css(). After offlining, the base ref is
4180 * put. Implemented in css_killed_work_fn().
Tejun Heo0c21ead2013-08-13 20:22:51 -04004181 *
4182 * 3. When the percpu_ref reaches zero, the only possible remaining
4183 * accessors are inside RCU read sections. css_release() schedules the
4184 * RCU callback.
4185 *
4186 * 4. After the grace period, the css can be freed. Implemented in
4187 * css_free_work_fn().
4188 *
4189 * It is actually hairier because both step 2 and 4 require process context
4190 * and thus involve punting to css->destroy_work adding two additional
4191 * steps to the already complex sequence.
4192 */
Tejun Heo35ef10d2013-08-13 11:01:54 -04004193static void css_free_work_fn(struct work_struct *work)
Tejun Heo48ddbe12012-04-01 12:09:56 -07004194{
4195 struct cgroup_subsys_state *css =
Tejun Heo35ef10d2013-08-13 11:01:54 -04004196 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo0c21ead2013-08-13 20:22:51 -04004197 struct cgroup *cgrp = css->cgroup;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004198
Tejun Heo9d755d32014-05-14 09:15:02 -04004199 if (css->ss) {
4200 /* css free path */
4201 if (css->parent)
4202 css_put(css->parent);
Tejun Heo0ae78e02013-08-13 11:01:54 -04004203
Tejun Heo9d755d32014-05-14 09:15:02 -04004204 css->ss->css_free(css);
4205 cgroup_put(cgrp);
4206 } else {
4207 /* cgroup free path */
4208 atomic_dec(&cgrp->root->nr_cgrps);
4209 cgroup_pidlist_destroy_all(cgrp);
4210
Tejun Heod51f39b2014-05-16 13:22:48 -04004211 if (cgroup_parent(cgrp)) {
Tejun Heo9d755d32014-05-14 09:15:02 -04004212 /*
4213 * We get a ref to the parent, and put the ref when
4214 * this cgroup is being freed, so it's guaranteed
4215 * that the parent won't be destroyed before its
4216 * children.
4217 */
Tejun Heod51f39b2014-05-16 13:22:48 -04004218 cgroup_put(cgroup_parent(cgrp));
Tejun Heo9d755d32014-05-14 09:15:02 -04004219 kernfs_put(cgrp->kn);
4220 kfree(cgrp);
4221 } else {
4222 /*
4223 * This is root cgroup's refcnt reaching zero,
4224 * which indicates that the root should be
4225 * released.
4226 */
4227 cgroup_destroy_root(cgrp->root);
4228 }
4229 }
Tejun Heo0c21ead2013-08-13 20:22:51 -04004230}
4231
4232static void css_free_rcu_fn(struct rcu_head *rcu_head)
4233{
4234 struct cgroup_subsys_state *css =
4235 container_of(rcu_head, struct cgroup_subsys_state, rcu_head);
4236
Tejun Heo0c21ead2013-08-13 20:22:51 -04004237 INIT_WORK(&css->destroy_work, css_free_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05004238 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004239}
4240
Tejun Heo25e15d82014-05-14 09:15:02 -04004241static void css_release_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004242{
4243 struct cgroup_subsys_state *css =
Tejun Heo25e15d82014-05-14 09:15:02 -04004244 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo15a4c832014-05-04 15:09:14 -04004245 struct cgroup_subsys *ss = css->ss;
Tejun Heo9d755d32014-05-14 09:15:02 -04004246 struct cgroup *cgrp = css->cgroup;
Tejun Heod3daf282013-06-13 19:39:16 -07004247
Tejun Heo1fed1b22014-05-16 13:22:49 -04004248 mutex_lock(&cgroup_mutex);
4249
Tejun Heode3f0342014-05-16 13:22:49 -04004250 css->flags |= CSS_RELEASED;
Tejun Heo1fed1b22014-05-16 13:22:49 -04004251 list_del_rcu(&css->sibling);
4252
Tejun Heo9d755d32014-05-14 09:15:02 -04004253 if (ss) {
4254 /* css release path */
4255 cgroup_idr_remove(&ss->css_idr, css->id);
4256 } else {
4257 /* cgroup release path */
Tejun Heo9d755d32014-05-14 09:15:02 -04004258 cgroup_idr_remove(&cgrp->root->cgroup_idr, cgrp->id);
4259 cgrp->id = -1;
4260 }
Tejun Heo15a4c832014-05-04 15:09:14 -04004261
Tejun Heo1fed1b22014-05-16 13:22:49 -04004262 mutex_unlock(&cgroup_mutex);
4263
Tejun Heo0c21ead2013-08-13 20:22:51 -04004264 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004265}
4266
Paul Menageddbcc7e2007-10-18 23:39:30 -07004267static void css_release(struct percpu_ref *ref)
4268{
4269 struct cgroup_subsys_state *css =
4270 container_of(ref, struct cgroup_subsys_state, refcnt);
4271
Tejun Heo25e15d82014-05-14 09:15:02 -04004272 INIT_WORK(&css->destroy_work, css_release_work_fn);
4273 queue_work(cgroup_destroy_wq, &css->destroy_work);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004274}
4275
Tejun Heoddfcada2014-05-04 15:09:14 -04004276static void init_and_link_css(struct cgroup_subsys_state *css,
4277 struct cgroup_subsys *ss, struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004278{
Tejun Heo0cb51d72014-05-16 13:22:49 -04004279 lockdep_assert_held(&cgroup_mutex);
4280
Tejun Heoddfcada2014-05-04 15:09:14 -04004281 cgroup_get(cgrp);
4282
Tejun Heod5c419b2014-05-16 13:22:48 -04004283 memset(css, 0, sizeof(*css));
Paul Menagebd89aab2007-10-18 23:40:44 -07004284 css->cgroup = cgrp;
Tejun Heo72c97e52013-08-08 20:11:22 -04004285 css->ss = ss;
Tejun Heod5c419b2014-05-16 13:22:48 -04004286 INIT_LIST_HEAD(&css->sibling);
4287 INIT_LIST_HEAD(&css->children);
Tejun Heo0cb51d72014-05-16 13:22:49 -04004288 css->serial_nr = css_serial_nr_next++;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004289
Tejun Heod51f39b2014-05-16 13:22:48 -04004290 if (cgroup_parent(cgrp)) {
4291 css->parent = cgroup_css(cgroup_parent(cgrp), ss);
Tejun Heoddfcada2014-05-04 15:09:14 -04004292 css_get(css->parent);
Tejun Heoddfcada2014-05-04 15:09:14 -04004293 }
Tejun Heo0ae78e02013-08-13 11:01:54 -04004294
Tejun Heoca8bdca2013-08-26 18:40:56 -04004295 BUG_ON(cgroup_css(cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004296}
4297
Li Zefan2a4ac632013-07-31 16:16:40 +08004298/* invoke ->css_online() on a new CSS and mark it online if successful */
Tejun Heo623f9262013-08-13 11:01:55 -04004299static int online_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004300{
Tejun Heo623f9262013-08-13 11:01:55 -04004301 struct cgroup_subsys *ss = css->ss;
Tejun Heob1929db2012-11-19 08:13:38 -08004302 int ret = 0;
4303
Tejun Heoa31f2d32012-11-19 08:13:37 -08004304 lockdep_assert_held(&cgroup_mutex);
4305
Tejun Heo92fb9742012-11-19 08:13:38 -08004306 if (ss->css_online)
Tejun Heoeb954192013-08-08 20:11:23 -04004307 ret = ss->css_online(css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004308 if (!ret) {
Tejun Heoeb954192013-08-08 20:11:23 -04004309 css->flags |= CSS_ONLINE;
Tejun Heoaec25022014-02-08 10:36:58 -05004310 rcu_assign_pointer(css->cgroup->subsys[ss->id], css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004311 }
Tejun Heob1929db2012-11-19 08:13:38 -08004312 return ret;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004313}
4314
Li Zefan2a4ac632013-07-31 16:16:40 +08004315/* if the CSS is online, invoke ->css_offline() on it and mark it offline */
Tejun Heo623f9262013-08-13 11:01:55 -04004316static void offline_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004317{
Tejun Heo623f9262013-08-13 11:01:55 -04004318 struct cgroup_subsys *ss = css->ss;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004319
4320 lockdep_assert_held(&cgroup_mutex);
4321
4322 if (!(css->flags & CSS_ONLINE))
4323 return;
4324
Li Zefand7eeac12013-03-12 15:35:59 -07004325 if (ss->css_offline)
Tejun Heoeb954192013-08-08 20:11:23 -04004326 ss->css_offline(css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004327
Tejun Heoeb954192013-08-08 20:11:23 -04004328 css->flags &= ~CSS_ONLINE;
Tejun Heoe3297802014-04-23 11:13:15 -04004329 RCU_INIT_POINTER(css->cgroup->subsys[ss->id], NULL);
Tejun Heof8f22e52014-04-23 11:13:16 -04004330
4331 wake_up_all(&css->cgroup->offline_waitq);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004332}
4333
Tejun Heoc81c925a2013-12-06 15:11:56 -05004334/**
4335 * create_css - create a cgroup_subsys_state
4336 * @cgrp: the cgroup new css will be associated with
4337 * @ss: the subsys of new css
Tejun Heof63070d2014-07-08 18:02:57 -04004338 * @visible: whether to create control knobs for the new css or not
Tejun Heoc81c925a2013-12-06 15:11:56 -05004339 *
4340 * Create a new css associated with @cgrp - @ss pair. On success, the new
Tejun Heof63070d2014-07-08 18:02:57 -04004341 * css is online and installed in @cgrp with all interface files created if
4342 * @visible. Returns 0 on success, -errno on failure.
Tejun Heoc81c925a2013-12-06 15:11:56 -05004343 */
Tejun Heof63070d2014-07-08 18:02:57 -04004344static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss,
4345 bool visible)
Tejun Heoc81c925a2013-12-06 15:11:56 -05004346{
Tejun Heod51f39b2014-05-16 13:22:48 -04004347 struct cgroup *parent = cgroup_parent(cgrp);
Tejun Heo1fed1b22014-05-16 13:22:49 -04004348 struct cgroup_subsys_state *parent_css = cgroup_css(parent, ss);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004349 struct cgroup_subsys_state *css;
4350 int err;
4351
Tejun Heoc81c925a2013-12-06 15:11:56 -05004352 lockdep_assert_held(&cgroup_mutex);
4353
Tejun Heo1fed1b22014-05-16 13:22:49 -04004354 css = ss->css_alloc(parent_css);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004355 if (IS_ERR(css))
4356 return PTR_ERR(css);
4357
Tejun Heoddfcada2014-05-04 15:09:14 -04004358 init_and_link_css(css, ss, cgrp);
Tejun Heoa2bed822014-05-04 15:09:14 -04004359
Tejun Heoc81c925a2013-12-06 15:11:56 -05004360 err = percpu_ref_init(&css->refcnt, css_release);
4361 if (err)
Li Zefan3eb59ec2014-03-18 17:02:36 +08004362 goto err_free_css;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004363
Tejun Heo15a4c832014-05-04 15:09:14 -04004364 err = cgroup_idr_alloc(&ss->css_idr, NULL, 2, 0, GFP_NOWAIT);
4365 if (err < 0)
4366 goto err_free_percpu_ref;
4367 css->id = err;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004368
Tejun Heof63070d2014-07-08 18:02:57 -04004369 if (visible) {
4370 err = cgroup_populate_dir(cgrp, 1 << ss->id);
4371 if (err)
4372 goto err_free_id;
4373 }
Tejun Heo15a4c832014-05-04 15:09:14 -04004374
4375 /* @css is ready to be brought online now, make it visible */
Tejun Heo1fed1b22014-05-16 13:22:49 -04004376 list_add_tail_rcu(&css->sibling, &parent_css->children);
Tejun Heo15a4c832014-05-04 15:09:14 -04004377 cgroup_idr_replace(&ss->css_idr, css, css->id);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004378
4379 err = online_css(css);
4380 if (err)
Tejun Heo1fed1b22014-05-16 13:22:49 -04004381 goto err_list_del;
Tejun Heo94419622014-03-19 10:23:54 -04004382
Tejun Heoc81c925a2013-12-06 15:11:56 -05004383 if (ss->broken_hierarchy && !ss->warned_broken_hierarchy &&
Tejun Heod51f39b2014-05-16 13:22:48 -04004384 cgroup_parent(parent)) {
Joe Perchesed3d2612014-04-25 18:28:03 -04004385 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 -04004386 current->comm, current->pid, ss->name);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004387 if (!strcmp(ss->name, "memory"))
Joe Perchesed3d2612014-04-25 18:28:03 -04004388 pr_warn("\"memory\" requires setting use_hierarchy to 1 on the root\n");
Tejun Heoc81c925a2013-12-06 15:11:56 -05004389 ss->warned_broken_hierarchy = true;
4390 }
4391
4392 return 0;
4393
Tejun Heo1fed1b22014-05-16 13:22:49 -04004394err_list_del:
4395 list_del_rcu(&css->sibling);
Linus Torvalds32d01dc2014-04-03 13:05:42 -07004396 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
Tejun Heo15a4c832014-05-04 15:09:14 -04004397err_free_id:
4398 cgroup_idr_remove(&ss->css_idr, css->id);
Li Zefan3eb59ec2014-03-18 17:02:36 +08004399err_free_percpu_ref:
Tejun Heoc81c925a2013-12-06 15:11:56 -05004400 percpu_ref_cancel_init(&css->refcnt);
Li Zefan3eb59ec2014-03-18 17:02:36 +08004401err_free_css:
Tejun Heoa2bed822014-05-04 15:09:14 -04004402 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004403 return err;
4404}
4405
Tejun Heob3bfd982014-05-13 12:19:22 -04004406static int cgroup_mkdir(struct kernfs_node *parent_kn, const char *name,
4407 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004408{
Tejun Heoa9746d82014-05-13 12:19:22 -04004409 struct cgroup *parent, *cgrp;
4410 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004411 struct cgroup_subsys *ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004412 struct kernfs_node *kn;
Tejun Heob3bfd982014-05-13 12:19:22 -04004413 int ssid, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004414
Tejun Heoa9746d82014-05-13 12:19:22 -04004415 parent = cgroup_kn_lock_live(parent_kn);
4416 if (!parent)
4417 return -ENODEV;
4418 root = parent->root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004419
Tejun Heo0a950f62012-11-19 09:02:12 -08004420 /* allocate the cgroup and its ID, 0 is reserved for the root */
Paul Menagebd89aab2007-10-18 23:40:44 -07004421 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004422 if (!cgrp) {
4423 ret = -ENOMEM;
4424 goto out_unlock;
Li Zefan0ab02ca2014-02-11 16:05:46 +08004425 }
4426
Tejun Heo9d755d32014-05-14 09:15:02 -04004427 ret = percpu_ref_init(&cgrp->self.refcnt, css_release);
4428 if (ret)
4429 goto out_free_cgrp;
4430
Li Zefan0ab02ca2014-02-11 16:05:46 +08004431 /*
4432 * Temporarily set the pointer to NULL, so idr_find() won't return
4433 * a half-baked cgroup.
4434 */
Tejun Heo6fa49182014-05-04 15:09:13 -04004435 cgrp->id = cgroup_idr_alloc(&root->cgroup_idr, NULL, 2, 0, GFP_NOWAIT);
Li Zefan0ab02ca2014-02-11 16:05:46 +08004436 if (cgrp->id < 0) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004437 ret = -ENOMEM;
Tejun Heo9d755d32014-05-14 09:15:02 -04004438 goto out_cancel_ref;
Tejun Heo976c06b2012-11-05 09:16:59 -08004439 }
4440
Paul Menagecc31edc2008-10-18 20:28:04 -07004441 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004442
Tejun Heo9d800df2014-05-14 09:15:00 -04004443 cgrp->self.parent = &parent->self;
Tejun Heoba0f4d72014-05-13 12:19:22 -04004444 cgrp->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004445
Li Zefanb6abdb02008-03-04 14:28:19 -08004446 if (notify_on_release(parent))
4447 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
4448
Tejun Heo2260e7f2012-11-19 08:13:38 -08004449 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags))
4450 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004451
Tejun Heo2bd59d42014-02-11 11:52:49 -05004452 /* create the directory */
Tejun Heoe61734c2014-02-12 09:29:50 -05004453 kn = kernfs_create_dir(parent->kn, name, mode, cgrp);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004454 if (IS_ERR(kn)) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004455 ret = PTR_ERR(kn);
4456 goto out_free_id;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004457 }
4458 cgrp->kn = kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004459
Tejun Heo6f305582014-02-12 09:29:50 -05004460 /*
4461 * This extra ref will be put in cgroup_free_fn() and guarantees
4462 * that @cgrp->kn is always accessible.
4463 */
4464 kernfs_get(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004465
Tejun Heo0cb51d72014-05-16 13:22:49 -04004466 cgrp->self.serial_nr = css_serial_nr_next++;
Tejun Heo53fa5262013-05-24 10:55:38 +09004467
Tejun Heo4e139af2012-11-19 08:13:36 -08004468 /* allocation complete, commit to creation */
Tejun Heod5c419b2014-05-16 13:22:48 -04004469 list_add_tail_rcu(&cgrp->self.sibling, &cgroup_parent(cgrp)->self.children);
Tejun Heo3c9c8252014-02-12 09:29:50 -05004470 atomic_inc(&root->nr_cgrps);
Tejun Heo59f52962014-02-11 11:52:49 -05004471 cgroup_get(parent);
Li Zefan415cf072013-04-08 14:35:02 +08004472
Tejun Heo0d802552013-12-06 15:11:56 -05004473 /*
4474 * @cgrp is now fully operational. If something fails after this
4475 * point, it'll be released via the normal destruction path.
4476 */
Tejun Heo6fa49182014-05-04 15:09:13 -04004477 cgroup_idr_replace(&root->cgroup_idr, cgrp, cgrp->id);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08004478
Tejun Heoba0f4d72014-05-13 12:19:22 -04004479 ret = cgroup_kn_set_ugid(kn);
4480 if (ret)
4481 goto out_destroy;
Tejun Heo49957f82014-04-07 16:44:47 -04004482
Tejun Heoba0f4d72014-05-13 12:19:22 -04004483 ret = cgroup_addrm_files(cgrp, cgroup_base_files, true);
4484 if (ret)
4485 goto out_destroy;
Tejun Heo628f7cd2013-06-28 16:24:11 -07004486
Tejun Heo9d403e92013-12-06 15:11:56 -05004487 /* let's create and online css's */
Tejun Heob85d2042013-12-06 15:11:57 -05004488 for_each_subsys(ss, ssid) {
Tejun Heof392e512014-04-23 11:13:14 -04004489 if (parent->child_subsys_mask & (1 << ssid)) {
Tejun Heof63070d2014-07-08 18:02:57 -04004490 ret = create_css(cgrp, ss,
4491 parent->subtree_control & (1 << ssid));
Tejun Heoba0f4d72014-05-13 12:19:22 -04004492 if (ret)
4493 goto out_destroy;
Tejun Heob85d2042013-12-06 15:11:57 -05004494 }
Tejun Heoa8638032012-11-09 09:12:29 -08004495 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004496
Tejun Heobd53d612014-04-23 11:13:16 -04004497 /*
4498 * On the default hierarchy, a child doesn't automatically inherit
Tejun Heo667c2492014-07-08 18:02:56 -04004499 * subtree_control from the parent. Each is configured manually.
Tejun Heobd53d612014-04-23 11:13:16 -04004500 */
Tejun Heo667c2492014-07-08 18:02:56 -04004501 if (!cgroup_on_dfl(cgrp)) {
4502 cgrp->subtree_control = parent->subtree_control;
4503 cgroup_refresh_child_subsys_mask(cgrp);
4504 }
Tejun Heof392e512014-04-23 11:13:14 -04004505
Tejun Heo2bd59d42014-02-11 11:52:49 -05004506 kernfs_activate(kn);
4507
Tejun Heoba0f4d72014-05-13 12:19:22 -04004508 ret = 0;
4509 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004510
Tejun Heoba0f4d72014-05-13 12:19:22 -04004511out_free_id:
Tejun Heo6fa49182014-05-04 15:09:13 -04004512 cgroup_idr_remove(&root->cgroup_idr, cgrp->id);
Tejun Heo9d755d32014-05-14 09:15:02 -04004513out_cancel_ref:
4514 percpu_ref_cancel_init(&cgrp->self.refcnt);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004515out_free_cgrp:
Paul Menagebd89aab2007-10-18 23:40:44 -07004516 kfree(cgrp);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004517out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04004518 cgroup_kn_unlock(parent_kn);
Tejun Heoe1b2dc12014-03-20 11:10:15 -04004519 return ret;
Tejun Heoba0f4d72014-05-13 12:19:22 -04004520
4521out_destroy:
4522 cgroup_destroy_locked(cgrp);
4523 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004524}
4525
Tejun Heo223dbc32013-08-13 20:22:50 -04004526/*
4527 * This is called when the refcnt of a css is confirmed to be killed.
Tejun Heo249f3462014-05-14 09:15:01 -04004528 * css_tryget_online() is now guaranteed to fail. Tell the subsystem to
4529 * initate destruction and put the css ref from kill_css().
Tejun Heo223dbc32013-08-13 20:22:50 -04004530 */
4531static void css_killed_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004532{
Tejun Heo223dbc32013-08-13 20:22:50 -04004533 struct cgroup_subsys_state *css =
4534 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07004535
Tejun Heof20104d2013-08-13 20:22:50 -04004536 mutex_lock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04004537 offline_css(css);
Tejun Heof20104d2013-08-13 20:22:50 -04004538 mutex_unlock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04004539
Tejun Heo09a503ea2013-08-13 20:22:50 -04004540 css_put(css);
Tejun Heod3daf282013-06-13 19:39:16 -07004541}
4542
Tejun Heo223dbc32013-08-13 20:22:50 -04004543/* css kill confirmation processing requires process context, bounce */
4544static void css_killed_ref_fn(struct percpu_ref *ref)
Tejun Heod3daf282013-06-13 19:39:16 -07004545{
4546 struct cgroup_subsys_state *css =
4547 container_of(ref, struct cgroup_subsys_state, refcnt);
4548
Tejun Heo223dbc32013-08-13 20:22:50 -04004549 INIT_WORK(&css->destroy_work, css_killed_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05004550 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07004551}
4552
Tejun Heof392e512014-04-23 11:13:14 -04004553/**
4554 * kill_css - destroy a css
4555 * @css: css to destroy
4556 *
4557 * This function initiates destruction of @css by removing cgroup interface
4558 * files and putting its base reference. ->css_offline() will be invoked
Tejun Heoec903c02014-05-13 12:11:01 -04004559 * asynchronously once css_tryget_online() is guaranteed to fail and when
4560 * the reference count reaches zero, @css will be released.
Tejun Heof392e512014-04-23 11:13:14 -04004561 */
4562static void kill_css(struct cgroup_subsys_state *css)
Tejun Heoedae0c32013-08-13 20:22:51 -04004563{
Tejun Heo01f64742014-05-13 12:19:23 -04004564 lockdep_assert_held(&cgroup_mutex);
Tejun Heo94419622014-03-19 10:23:54 -04004565
Tejun Heo2bd59d42014-02-11 11:52:49 -05004566 /*
4567 * This must happen before css is disassociated with its cgroup.
4568 * See seq_css() for details.
4569 */
Tejun Heoaec25022014-02-08 10:36:58 -05004570 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
Tejun Heo3c14f8b2013-08-13 20:22:51 -04004571
Tejun Heoedae0c32013-08-13 20:22:51 -04004572 /*
4573 * Killing would put the base ref, but we need to keep it alive
4574 * until after ->css_offline().
4575 */
4576 css_get(css);
4577
4578 /*
4579 * cgroup core guarantees that, by the time ->css_offline() is
4580 * invoked, no new css reference will be given out via
Tejun Heoec903c02014-05-13 12:11:01 -04004581 * css_tryget_online(). We can't simply call percpu_ref_kill() and
Tejun Heoedae0c32013-08-13 20:22:51 -04004582 * proceed to offlining css's because percpu_ref_kill() doesn't
4583 * guarantee that the ref is seen as killed on all CPUs on return.
4584 *
4585 * Use percpu_ref_kill_and_confirm() to get notifications as each
4586 * css is confirmed to be seen as killed on all CPUs.
4587 */
4588 percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004589}
4590
4591/**
4592 * cgroup_destroy_locked - the first stage of cgroup destruction
4593 * @cgrp: cgroup to be destroyed
4594 *
4595 * css's make use of percpu refcnts whose killing latency shouldn't be
4596 * exposed to userland and are RCU protected. Also, cgroup core needs to
Tejun Heoec903c02014-05-13 12:11:01 -04004597 * guarantee that css_tryget_online() won't succeed by the time
4598 * ->css_offline() is invoked. To satisfy all the requirements,
4599 * destruction is implemented in the following two steps.
Tejun Heod3daf282013-06-13 19:39:16 -07004600 *
4601 * s1. Verify @cgrp can be destroyed and mark it dying. Remove all
4602 * userland visible parts and start killing the percpu refcnts of
4603 * css's. Set up so that the next stage will be kicked off once all
4604 * the percpu refcnts are confirmed to be killed.
4605 *
4606 * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the
4607 * rest of destruction. Once all cgroup references are gone, the
4608 * cgroup is RCU-freed.
4609 *
4610 * This function implements s1. After this step, @cgrp is gone as far as
4611 * the userland is concerned and a new cgroup with the same name may be
4612 * created. As cgroup doesn't care about the names internally, this
4613 * doesn't cause any problem.
4614 */
Tejun Heo42809dd2012-11-19 08:13:37 -08004615static int cgroup_destroy_locked(struct cgroup *cgrp)
4616 __releases(&cgroup_mutex) __acquires(&cgroup_mutex)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004617{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004618 struct cgroup_subsys_state *css;
Tejun Heoddd69142013-06-12 21:04:54 -07004619 bool empty;
Tejun Heo1c6727a2013-12-06 15:11:56 -05004620 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004621
Tejun Heo42809dd2012-11-19 08:13:37 -08004622 lockdep_assert_held(&cgroup_mutex);
4623
Tejun Heoddd69142013-06-12 21:04:54 -07004624 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05004625 * css_set_rwsem synchronizes access to ->cset_links and prevents
Tejun Heo89c55092014-02-13 06:58:40 -05004626 * @cgrp from being removed while put_css_set() is in progress.
Tejun Heoddd69142013-06-12 21:04:54 -07004627 */
Tejun Heo96d365e2014-02-13 06:58:40 -05004628 down_read(&css_set_rwsem);
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004629 empty = list_empty(&cgrp->cset_links);
Tejun Heo96d365e2014-02-13 06:58:40 -05004630 up_read(&css_set_rwsem);
Tejun Heoddd69142013-06-12 21:04:54 -07004631 if (!empty)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004632 return -EBUSY;
Tejun Heoed9577932012-11-05 09:16:58 -08004633
Tejun Heo1a90dd52012-11-05 09:16:59 -08004634 /*
Tejun Heod5c419b2014-05-16 13:22:48 -04004635 * Make sure there's no live children. We can't test emptiness of
4636 * ->self.children as dead children linger on it while being
4637 * drained; otherwise, "rmdir parent/child parent" may fail.
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004638 */
Tejun Heof3d46502014-05-16 13:22:52 -04004639 if (css_has_online_children(&cgrp->self))
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004640 return -EBUSY;
4641
4642 /*
Tejun Heo455050d2013-06-13 19:27:41 -07004643 * Mark @cgrp dead. This prevents further task migration and child
Tejun Heode3f0342014-05-16 13:22:49 -04004644 * creation by disabling cgroup_lock_live_group().
Tejun Heo455050d2013-06-13 19:27:41 -07004645 */
Tejun Heo184faf32014-05-16 13:22:51 -04004646 cgrp->self.flags &= ~CSS_ONLINE;
Tejun Heo1a90dd52012-11-05 09:16:59 -08004647
Tejun Heo249f3462014-05-14 09:15:01 -04004648 /* initiate massacre of all css's */
Tejun Heo1a90dd52012-11-05 09:16:59 -08004649 for_each_css(css, ssid, cgrp)
Tejun Heo455050d2013-06-13 19:27:41 -07004650 kill_css(css);
4651
Tejun Heo184faf32014-05-16 13:22:51 -04004652 /* CSS_ONLINE is clear, remove from ->release_list for the last time */
Tejun Heo455050d2013-06-13 19:27:41 -07004653 raw_spin_lock(&release_list_lock);
4654 if (!list_empty(&cgrp->release_list))
4655 list_del_init(&cgrp->release_list);
4656 raw_spin_unlock(&release_list_lock);
4657
4658 /*
Tejun Heo01f64742014-05-13 12:19:23 -04004659 * Remove @cgrp directory along with the base files. @cgrp has an
4660 * extra ref on its kn.
Tejun Heo455050d2013-06-13 19:27:41 -07004661 */
Tejun Heo01f64742014-05-13 12:19:23 -04004662 kernfs_remove(cgrp->kn);
Tejun Heof20104d2013-08-13 20:22:50 -04004663
Tejun Heod51f39b2014-05-16 13:22:48 -04004664 set_bit(CGRP_RELEASABLE, &cgroup_parent(cgrp)->flags);
4665 check_for_release(cgroup_parent(cgrp));
Tejun Heo2bd59d42014-02-11 11:52:49 -05004666
Tejun Heo249f3462014-05-14 09:15:01 -04004667 /* put the base reference */
Tejun Heo9d755d32014-05-14 09:15:02 -04004668 percpu_ref_kill(&cgrp->self.refcnt);
Tejun Heo455050d2013-06-13 19:27:41 -07004669
Tejun Heoea15f8c2013-06-13 19:27:42 -07004670 return 0;
4671};
4672
Tejun Heo2bd59d42014-02-11 11:52:49 -05004673static int cgroup_rmdir(struct kernfs_node *kn)
Tejun Heo42809dd2012-11-19 08:13:37 -08004674{
Tejun Heoa9746d82014-05-13 12:19:22 -04004675 struct cgroup *cgrp;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004676 int ret = 0;
Tejun Heo42809dd2012-11-19 08:13:37 -08004677
Tejun Heoa9746d82014-05-13 12:19:22 -04004678 cgrp = cgroup_kn_lock_live(kn);
4679 if (!cgrp)
4680 return 0;
4681 cgroup_get(cgrp); /* for @kn->priv clearing */
Tejun Heo42809dd2012-11-19 08:13:37 -08004682
Tejun Heoa9746d82014-05-13 12:19:22 -04004683 ret = cgroup_destroy_locked(cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -08004684
Tejun Heoa9746d82014-05-13 12:19:22 -04004685 cgroup_kn_unlock(kn);
Tejun Heo42809dd2012-11-19 08:13:37 -08004686
Tejun Heo2bd59d42014-02-11 11:52:49 -05004687 /*
Tejun Heocfc79d52014-05-13 12:19:22 -04004688 * There are two control paths which try to determine cgroup from
4689 * dentry without going through kernfs - cgroupstats_build() and
4690 * css_tryget_online_from_dir(). Those are supported by RCU
4691 * protecting clearing of cgrp->kn->priv backpointer, which should
4692 * happen after all files under it have been removed.
Tejun Heo2bd59d42014-02-11 11:52:49 -05004693 */
Tejun Heocfc79d52014-05-13 12:19:22 -04004694 if (!ret)
4695 RCU_INIT_POINTER(*(void __rcu __force **)&kn->priv, NULL);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004696
Tejun Heo2bd59d42014-02-11 11:52:49 -05004697 cgroup_put(cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -08004698 return ret;
4699}
4700
Tejun Heo2bd59d42014-02-11 11:52:49 -05004701static struct kernfs_syscall_ops cgroup_kf_syscall_ops = {
4702 .remount_fs = cgroup_remount,
4703 .show_options = cgroup_show_options,
4704 .mkdir = cgroup_mkdir,
4705 .rmdir = cgroup_rmdir,
4706 .rename = cgroup_rename,
4707};
Tejun Heo8e3f6542012-04-01 12:09:55 -07004708
Tejun Heo15a4c832014-05-04 15:09:14 -04004709static void __init cgroup_init_subsys(struct cgroup_subsys *ss, bool early)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004710{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004711 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08004712
4713 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004714
Tejun Heo648bb562012-11-19 08:13:36 -08004715 mutex_lock(&cgroup_mutex);
4716
Tejun Heo15a4c832014-05-04 15:09:14 -04004717 idr_init(&ss->css_idr);
Tejun Heo0adb0702014-02-12 09:29:48 -05004718 INIT_LIST_HEAD(&ss->cfts);
Tejun Heo8e3f6542012-04-01 12:09:55 -07004719
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004720 /* Create the root cgroup state for this subsystem */
4721 ss->root = &cgrp_dfl_root;
4722 css = ss->css_alloc(cgroup_css(&cgrp_dfl_root.cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004723 /* We don't handle early failures gracefully */
4724 BUG_ON(IS_ERR(css));
Tejun Heoddfcada2014-05-04 15:09:14 -04004725 init_and_link_css(css, ss, &cgrp_dfl_root.cgrp);
Tejun Heo3b514d22014-05-16 13:22:47 -04004726
4727 /*
4728 * Root csses are never destroyed and we can't initialize
4729 * percpu_ref during early init. Disable refcnting.
4730 */
4731 css->flags |= CSS_NO_REF;
4732
Tejun Heo15a4c832014-05-04 15:09:14 -04004733 if (early) {
Tejun Heo9395a452014-05-14 09:15:02 -04004734 /* allocation can't be done safely during early init */
Tejun Heo15a4c832014-05-04 15:09:14 -04004735 css->id = 1;
4736 } else {
4737 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2, GFP_KERNEL);
4738 BUG_ON(css->id < 0);
4739 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004740
Li Zefane8d55fd2008-04-29 01:00:13 -07004741 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07004742 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07004743 * newly registered, all tasks and hence the
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004744 * init_css_set is in the subsystem's root cgroup. */
Tejun Heoaec25022014-02-08 10:36:58 -05004745 init_css_set.subsys[ss->id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004746
4747 need_forkexit_callback |= ss->fork || ss->exit;
4748
Li Zefane8d55fd2008-04-29 01:00:13 -07004749 /* At system boot, before all subsystems have been
4750 * registered, no tasks have been forked, so we don't
4751 * need to invoke fork callbacks here. */
4752 BUG_ON(!list_empty(&init_task.tasks));
4753
Tejun Heoae7f1642013-08-13 20:22:50 -04004754 BUG_ON(online_css(css));
Tejun Heoa8638032012-11-09 09:12:29 -08004755
Tejun Heo648bb562012-11-19 08:13:36 -08004756 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004757}
4758
4759/**
Li Zefana043e3b2008-02-23 15:24:09 -08004760 * cgroup_init_early - cgroup initialization at system boot
4761 *
4762 * Initialize cgroups at system boot, and initialize any
4763 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004764 */
4765int __init cgroup_init_early(void)
4766{
Tejun Heoa2dd4242014-03-19 10:23:55 -04004767 static struct cgroup_sb_opts __initdata opts =
4768 { .flags = CGRP_ROOT_SANE_BEHAVIOR };
Tejun Heo30159ec2013-06-25 11:53:37 -07004769 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004770 int i;
Tejun Heo30159ec2013-06-25 11:53:37 -07004771
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004772 init_cgroup_root(&cgrp_dfl_root, &opts);
Tejun Heo3b514d22014-05-16 13:22:47 -04004773 cgrp_dfl_root.cgrp.self.flags |= CSS_NO_REF;
4774
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07004775 RCU_INIT_POINTER(init_task.cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07004776
Tejun Heo3ed80a62014-02-08 10:36:58 -05004777 for_each_subsys(ss, i) {
Tejun Heoaec25022014-02-08 10:36:58 -05004778 WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id,
Tejun Heo073219e2014-02-08 10:36:58 -05004779 "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p name:id=%d:%s\n",
4780 i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free,
Tejun Heoaec25022014-02-08 10:36:58 -05004781 ss->id, ss->name);
Tejun Heo073219e2014-02-08 10:36:58 -05004782 WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN,
4783 "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004784
Tejun Heoaec25022014-02-08 10:36:58 -05004785 ss->id = i;
Tejun Heo073219e2014-02-08 10:36:58 -05004786 ss->name = cgroup_subsys_name[i];
Paul Menageddbcc7e2007-10-18 23:39:30 -07004787
4788 if (ss->early_init)
Tejun Heo15a4c832014-05-04 15:09:14 -04004789 cgroup_init_subsys(ss, true);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004790 }
4791 return 0;
4792}
4793
4794/**
Li Zefana043e3b2008-02-23 15:24:09 -08004795 * cgroup_init - cgroup initialization
4796 *
4797 * Register cgroup filesystem and /proc file, and initialize
4798 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004799 */
4800int __init cgroup_init(void)
4801{
Tejun Heo30159ec2013-06-25 11:53:37 -07004802 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +08004803 unsigned long key;
Tejun Heo172a2c062014-03-19 10:23:53 -04004804 int ssid, err;
Paul Menagea4243162007-10-18 23:39:35 -07004805
Tejun Heo2bd59d42014-02-11 11:52:49 -05004806 BUG_ON(cgroup_init_cftypes(NULL, cgroup_base_files));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004807
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004808 mutex_lock(&cgroup_mutex);
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004809
Tejun Heo82fe9b02013-06-25 11:53:37 -07004810 /* Add init_css_set to the hash table */
4811 key = css_set_hash(init_css_set.subsys);
4812 hash_add(css_set_table, &init_css_set.hlist, key);
4813
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004814 BUG_ON(cgroup_setup_root(&cgrp_dfl_root, 0));
Greg KH676db4a2010-08-05 13:53:35 -07004815
Tejun Heo54e7b4e2013-04-14 11:36:57 -07004816 mutex_unlock(&cgroup_mutex);
4817
Tejun Heo172a2c062014-03-19 10:23:53 -04004818 for_each_subsys(ss, ssid) {
Tejun Heo15a4c832014-05-04 15:09:14 -04004819 if (ss->early_init) {
4820 struct cgroup_subsys_state *css =
4821 init_css_set.subsys[ss->id];
4822
4823 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2,
4824 GFP_KERNEL);
4825 BUG_ON(css->id < 0);
4826 } else {
4827 cgroup_init_subsys(ss, false);
4828 }
Tejun Heo172a2c062014-03-19 10:23:53 -04004829
Tejun Heo2d8f2432014-04-23 11:13:15 -04004830 list_add_tail(&init_css_set.e_cset_node[ssid],
4831 &cgrp_dfl_root.cgrp.e_csets[ssid]);
Tejun Heo172a2c062014-03-19 10:23:53 -04004832
4833 /*
Li Zefanc731ae12014-06-05 17:16:30 +08004834 * Setting dfl_root subsys_mask needs to consider the
4835 * disabled flag and cftype registration needs kmalloc,
4836 * both of which aren't available during early_init.
Tejun Heo172a2c062014-03-19 10:23:53 -04004837 */
Li Zefanc731ae12014-06-05 17:16:30 +08004838 if (!ss->disabled) {
4839 cgrp_dfl_root.subsys_mask |= 1 << ss->id;
Tejun Heo172a2c062014-03-19 10:23:53 -04004840 WARN_ON(cgroup_add_cftypes(ss, ss->base_cftypes));
Li Zefanc731ae12014-06-05 17:16:30 +08004841 }
Tejun Heo172a2c062014-03-19 10:23:53 -04004842 }
Greg KH676db4a2010-08-05 13:53:35 -07004843
Paul Menageddbcc7e2007-10-18 23:39:30 -07004844 cgroup_kobj = kobject_create_and_add("cgroup", fs_kobj);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004845 if (!cgroup_kobj)
4846 return -ENOMEM;
Paul Menagea4243162007-10-18 23:39:35 -07004847
4848 err = register_filesystem(&cgroup_fs_type);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004849 if (err < 0) {
4850 kobject_put(cgroup_kobj);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004851 return err;
Paul Menagea4243162007-10-18 23:39:35 -07004852 }
4853
4854 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004855 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004856}
Paul Menageb4f48b62007-10-18 23:39:33 -07004857
Tejun Heoe5fca242013-11-22 17:14:39 -05004858static int __init cgroup_wq_init(void)
4859{
4860 /*
4861 * There isn't much point in executing destruction path in
4862 * parallel. Good chunk is serialized with cgroup_mutex anyway.
Tejun Heo1a115332014-02-12 19:06:19 -05004863 * Use 1 for @max_active.
Tejun Heoe5fca242013-11-22 17:14:39 -05004864 *
4865 * We would prefer to do this in cgroup_init() above, but that
4866 * is called before init_workqueues(): so leave this until after.
4867 */
Tejun Heo1a115332014-02-12 19:06:19 -05004868 cgroup_destroy_wq = alloc_workqueue("cgroup_destroy", 0, 1);
Tejun Heoe5fca242013-11-22 17:14:39 -05004869 BUG_ON(!cgroup_destroy_wq);
Tejun Heob1a21362013-11-29 10:42:58 -05004870
4871 /*
4872 * Used to destroy pidlists and separate to serve as flush domain.
4873 * Cap @max_active to 1 too.
4874 */
4875 cgroup_pidlist_destroy_wq = alloc_workqueue("cgroup_pidlist_destroy",
4876 0, 1);
4877 BUG_ON(!cgroup_pidlist_destroy_wq);
4878
Tejun Heoe5fca242013-11-22 17:14:39 -05004879 return 0;
4880}
4881core_initcall(cgroup_wq_init);
4882
Paul Menagea4243162007-10-18 23:39:35 -07004883/*
4884 * proc_cgroup_show()
4885 * - Print task's cgroup paths into seq_file, one line for each hierarchy
4886 * - Used for /proc/<pid>/cgroup.
Paul Menagea4243162007-10-18 23:39:35 -07004887 */
4888
4889/* TODO: Use a proper seq_file iterator */
Al Viro8d8b97b2013-04-19 23:11:24 -04004890int proc_cgroup_show(struct seq_file *m, void *v)
Paul Menagea4243162007-10-18 23:39:35 -07004891{
4892 struct pid *pid;
4893 struct task_struct *tsk;
Tejun Heoe61734c2014-02-12 09:29:50 -05004894 char *buf, *path;
Paul Menagea4243162007-10-18 23:39:35 -07004895 int retval;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004896 struct cgroup_root *root;
Paul Menagea4243162007-10-18 23:39:35 -07004897
4898 retval = -ENOMEM;
Tejun Heoe61734c2014-02-12 09:29:50 -05004899 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagea4243162007-10-18 23:39:35 -07004900 if (!buf)
4901 goto out;
4902
4903 retval = -ESRCH;
4904 pid = m->private;
4905 tsk = get_pid_task(pid, PIDTYPE_PID);
4906 if (!tsk)
4907 goto out_free;
4908
4909 retval = 0;
4910
4911 mutex_lock(&cgroup_mutex);
Tejun Heo96d365e2014-02-13 06:58:40 -05004912 down_read(&css_set_rwsem);
Paul Menagea4243162007-10-18 23:39:35 -07004913
Tejun Heo985ed672014-03-19 10:23:53 -04004914 for_each_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07004915 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07004916 struct cgroup *cgrp;
Tejun Heob85d2042013-12-06 15:11:57 -05004917 int ssid, count = 0;
Paul Menagea4243162007-10-18 23:39:35 -07004918
Tejun Heoa2dd4242014-03-19 10:23:55 -04004919 if (root == &cgrp_dfl_root && !cgrp_dfl_root_visible)
Tejun Heo985ed672014-03-19 10:23:53 -04004920 continue;
4921
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004922 seq_printf(m, "%d:", root->hierarchy_id);
Tejun Heob85d2042013-12-06 15:11:57 -05004923 for_each_subsys(ss, ssid)
Tejun Heof392e512014-04-23 11:13:14 -04004924 if (root->subsys_mask & (1 << ssid))
Tejun Heob85d2042013-12-06 15:11:57 -05004925 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07004926 if (strlen(root->name))
4927 seq_printf(m, "%sname=%s", count ? "," : "",
4928 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07004929 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07004930 cgrp = task_cgroup_from_root(tsk, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05004931 path = cgroup_path(cgrp, buf, PATH_MAX);
4932 if (!path) {
4933 retval = -ENAMETOOLONG;
Paul Menagea4243162007-10-18 23:39:35 -07004934 goto out_unlock;
Tejun Heoe61734c2014-02-12 09:29:50 -05004935 }
4936 seq_puts(m, path);
Paul Menagea4243162007-10-18 23:39:35 -07004937 seq_putc(m, '\n');
4938 }
4939
4940out_unlock:
Tejun Heo96d365e2014-02-13 06:58:40 -05004941 up_read(&css_set_rwsem);
Paul Menagea4243162007-10-18 23:39:35 -07004942 mutex_unlock(&cgroup_mutex);
4943 put_task_struct(tsk);
4944out_free:
4945 kfree(buf);
4946out:
4947 return retval;
4948}
4949
Paul Menagea4243162007-10-18 23:39:35 -07004950/* Display information about each subsystem and each hierarchy */
4951static int proc_cgroupstats_show(struct seq_file *m, void *v)
4952{
Tejun Heo30159ec2013-06-25 11:53:37 -07004953 struct cgroup_subsys *ss;
Paul Menagea4243162007-10-18 23:39:35 -07004954 int i;
Paul Menagea4243162007-10-18 23:39:35 -07004955
Paul Menage8bab8dd2008-04-04 14:29:57 -07004956 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08004957 /*
4958 * ideally we don't want subsystems moving around while we do this.
4959 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
4960 * subsys/hierarchy state.
4961 */
Paul Menagea4243162007-10-18 23:39:35 -07004962 mutex_lock(&cgroup_mutex);
Tejun Heo30159ec2013-06-25 11:53:37 -07004963
4964 for_each_subsys(ss, i)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07004965 seq_printf(m, "%s\t%d\t%d\t%d\n",
4966 ss->name, ss->root->hierarchy_id,
Tejun Heo3c9c8252014-02-12 09:29:50 -05004967 atomic_read(&ss->root->nr_cgrps), !ss->disabled);
Tejun Heo30159ec2013-06-25 11:53:37 -07004968
Paul Menagea4243162007-10-18 23:39:35 -07004969 mutex_unlock(&cgroup_mutex);
4970 return 0;
4971}
4972
4973static int cgroupstats_open(struct inode *inode, struct file *file)
4974{
Al Viro9dce07f2008-03-29 03:07:28 +00004975 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07004976}
4977
Alexey Dobriyan828c0952009-10-01 15:43:56 -07004978static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07004979 .open = cgroupstats_open,
4980 .read = seq_read,
4981 .llseek = seq_lseek,
4982 .release = single_release,
4983};
4984
Paul Menageb4f48b62007-10-18 23:39:33 -07004985/**
Tejun Heoeaf797a2014-02-25 10:04:03 -05004986 * cgroup_fork - initialize cgroup related fields during copy_process()
Li Zefana043e3b2008-02-23 15:24:09 -08004987 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07004988 *
Tejun Heoeaf797a2014-02-25 10:04:03 -05004989 * A task is associated with the init_css_set until cgroup_post_fork()
4990 * attaches it to the parent's css_set. Empty cg_list indicates that
4991 * @child isn't holding reference to its css_set.
Paul Menageb4f48b62007-10-18 23:39:33 -07004992 */
4993void cgroup_fork(struct task_struct *child)
4994{
Tejun Heoeaf797a2014-02-25 10:04:03 -05004995 RCU_INIT_POINTER(child->cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07004996 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07004997}
4998
4999/**
Li Zefana043e3b2008-02-23 15:24:09 -08005000 * cgroup_post_fork - called on a new task after adding it to the task list
5001 * @child: the task in question
5002 *
Tejun Heo5edee612012-10-16 15:03:14 -07005003 * Adds the task to the list running through its css_set if necessary and
5004 * call the subsystem fork() callbacks. Has to be after the task is
5005 * visible on the task list in case we race with the first call to
Tejun Heo0942eee2013-08-08 20:11:26 -04005006 * cgroup_task_iter_start() - to guarantee that the new task ends up on its
Tejun Heo5edee612012-10-16 15:03:14 -07005007 * list.
Li Zefana043e3b2008-02-23 15:24:09 -08005008 */
Paul Menage817929e2007-10-18 23:39:36 -07005009void cgroup_post_fork(struct task_struct *child)
5010{
Tejun Heo30159ec2013-06-25 11:53:37 -07005011 struct cgroup_subsys *ss;
Tejun Heo5edee612012-10-16 15:03:14 -07005012 int i;
5013
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005014 /*
Tejun Heoeaf797a2014-02-25 10:04:03 -05005015 * This may race against cgroup_enable_task_cg_links(). As that
5016 * function sets use_task_css_set_links before grabbing
5017 * tasklist_lock and we just went through tasklist_lock to add
5018 * @child, it's guaranteed that either we see the set
5019 * use_task_css_set_links or cgroup_enable_task_cg_lists() sees
5020 * @child during its iteration.
5021 *
5022 * If we won the race, @child is associated with %current's
5023 * css_set. Grabbing css_set_rwsem guarantees both that the
5024 * association is stable, and, on completion of the parent's
5025 * migration, @child is visible in the source of migration or
5026 * already in the destination cgroup. This guarantee is necessary
5027 * when implementing operations which need to migrate all tasks of
5028 * a cgroup to another.
5029 *
5030 * Note that if we lose to cgroup_enable_task_cg_links(), @child
5031 * will remain in init_css_set. This is safe because all tasks are
5032 * in the init_css_set before cg_links is enabled and there's no
5033 * operation which transfers all tasks out of init_css_set.
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005034 */
Paul Menage817929e2007-10-18 23:39:36 -07005035 if (use_task_css_set_links) {
Tejun Heoeaf797a2014-02-25 10:04:03 -05005036 struct css_set *cset;
5037
Tejun Heo96d365e2014-02-13 06:58:40 -05005038 down_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005039 cset = task_css_set(current);
Tejun Heoeaf797a2014-02-25 10:04:03 -05005040 if (list_empty(&child->cg_list)) {
5041 rcu_assign_pointer(child->cgroups, cset);
5042 list_add(&child->cg_list, &cset->tasks);
5043 get_css_set(cset);
5044 }
Tejun Heo96d365e2014-02-13 06:58:40 -05005045 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -07005046 }
Tejun Heo5edee612012-10-16 15:03:14 -07005047
5048 /*
5049 * Call ss->fork(). This must happen after @child is linked on
5050 * css_set; otherwise, @child might change state between ->fork()
5051 * and addition to css_set.
5052 */
5053 if (need_forkexit_callback) {
Tejun Heo3ed80a62014-02-08 10:36:58 -05005054 for_each_subsys(ss, i)
Tejun Heo5edee612012-10-16 15:03:14 -07005055 if (ss->fork)
5056 ss->fork(child);
Tejun Heo5edee612012-10-16 15:03:14 -07005057 }
Paul Menage817929e2007-10-18 23:39:36 -07005058}
Tejun Heo5edee612012-10-16 15:03:14 -07005059
Paul Menage817929e2007-10-18 23:39:36 -07005060/**
Paul Menageb4f48b62007-10-18 23:39:33 -07005061 * cgroup_exit - detach cgroup from exiting task
5062 * @tsk: pointer to task_struct of exiting process
5063 *
5064 * Description: Detach cgroup from @tsk and release it.
5065 *
5066 * Note that cgroups marked notify_on_release force every task in
5067 * them to take the global cgroup_mutex mutex when exiting.
5068 * This could impact scaling on very large systems. Be reluctant to
5069 * use notify_on_release cgroups where very high task exit scaling
5070 * is required on large systems.
5071 *
Tejun Heo0e1d7682014-02-25 10:04:03 -05005072 * We set the exiting tasks cgroup to the root cgroup (top_cgroup). We
5073 * call cgroup_exit() while the task is still competent to handle
5074 * notify_on_release(), then leave the task attached to the root cgroup in
5075 * each hierarchy for the remainder of its exit. No need to bother with
5076 * init_css_set refcnting. init_css_set never goes away and we can't race
Li Zefane8604cb2014-03-28 15:18:27 +08005077 * with migration path - PF_EXITING is visible to migration path.
Paul Menageb4f48b62007-10-18 23:39:33 -07005078 */
Li Zefan1ec41832014-03-28 15:22:19 +08005079void cgroup_exit(struct task_struct *tsk)
Paul Menageb4f48b62007-10-18 23:39:33 -07005080{
Tejun Heo30159ec2013-06-25 11:53:37 -07005081 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -07005082 struct css_set *cset;
Tejun Heoeaf797a2014-02-25 10:04:03 -05005083 bool put_cset = false;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005084 int i;
Paul Menage817929e2007-10-18 23:39:36 -07005085
5086 /*
Tejun Heo0e1d7682014-02-25 10:04:03 -05005087 * Unlink from @tsk from its css_set. As migration path can't race
5088 * with us, we can check cg_list without grabbing css_set_rwsem.
Paul Menage817929e2007-10-18 23:39:36 -07005089 */
5090 if (!list_empty(&tsk->cg_list)) {
Tejun Heo96d365e2014-02-13 06:58:40 -05005091 down_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005092 list_del_init(&tsk->cg_list);
Tejun Heo96d365e2014-02-13 06:58:40 -05005093 up_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005094 put_cset = true;
Paul Menage817929e2007-10-18 23:39:36 -07005095 }
5096
Paul Menageb4f48b62007-10-18 23:39:33 -07005097 /* Reassign the task to the init_css_set. */
Tejun Heoa8ad8052013-06-21 15:52:04 -07005098 cset = task_css_set(tsk);
5099 RCU_INIT_POINTER(tsk->cgroups, &init_css_set);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005100
Li Zefan1ec41832014-03-28 15:22:19 +08005101 if (need_forkexit_callback) {
Tejun Heo3ed80a62014-02-08 10:36:58 -05005102 /* see cgroup_post_fork() for details */
5103 for_each_subsys(ss, i) {
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005104 if (ss->exit) {
Tejun Heoeb954192013-08-08 20:11:23 -04005105 struct cgroup_subsys_state *old_css = cset->subsys[i];
5106 struct cgroup_subsys_state *css = task_css(tsk, i);
Tejun Heo30159ec2013-06-25 11:53:37 -07005107
Tejun Heoeb954192013-08-08 20:11:23 -04005108 ss->exit(css, old_css, tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005109 }
5110 }
5111 }
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005112
Tejun Heoeaf797a2014-02-25 10:04:03 -05005113 if (put_cset)
5114 put_css_set(cset, true);
Paul Menageb4f48b62007-10-18 23:39:33 -07005115}
Paul Menage697f4162007-10-18 23:39:34 -07005116
Paul Menagebd89aab2007-10-18 23:40:44 -07005117static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07005118{
Tejun Heof3d46502014-05-16 13:22:52 -04005119 if (cgroup_is_releasable(cgrp) && list_empty(&cgrp->cset_links) &&
5120 !css_has_online_children(&cgrp->self)) {
Li Zefanf50daa72013-03-01 15:06:07 +08005121 /*
5122 * Control Group is currently removeable. If it's not
Paul Menage81a6a5c2007-10-18 23:39:38 -07005123 * already queued for a userspace notification, queue
Li Zefanf50daa72013-03-01 15:06:07 +08005124 * it now
5125 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07005126 int need_schedule_work = 0;
Li Zefanf50daa72013-03-01 15:06:07 +08005127
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005128 raw_spin_lock(&release_list_lock);
Tejun Heo54766d42013-06-12 21:04:53 -07005129 if (!cgroup_is_dead(cgrp) &&
Paul Menagebd89aab2007-10-18 23:40:44 -07005130 list_empty(&cgrp->release_list)) {
5131 list_add(&cgrp->release_list, &release_list);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005132 need_schedule_work = 1;
5133 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005134 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005135 if (need_schedule_work)
5136 schedule_work(&release_agent_work);
5137 }
5138}
5139
Paul Menage81a6a5c2007-10-18 23:39:38 -07005140/*
5141 * Notify userspace when a cgroup is released, by running the
5142 * configured release agent with the name of the cgroup (path
5143 * relative to the root of cgroup file system) as the argument.
5144 *
5145 * Most likely, this user command will try to rmdir this cgroup.
5146 *
5147 * This races with the possibility that some other task will be
5148 * attached to this cgroup before it is removed, or that some other
5149 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
5150 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
5151 * unused, and this cgroup will be reprieved from its death sentence,
5152 * to continue to serve a useful existence. Next time it's released,
5153 * we will get notified again, if it still has 'notify_on_release' set.
5154 *
5155 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
5156 * means only wait until the task is successfully execve()'d. The
5157 * separate release agent task is forked by call_usermodehelper(),
5158 * then control in this thread returns here, without waiting for the
5159 * release agent task. We don't bother to wait because the caller of
5160 * this routine has no use for the exit status of the release agent
5161 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07005162 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07005163static void cgroup_release_agent(struct work_struct *work)
5164{
5165 BUG_ON(work != &release_agent_work);
5166 mutex_lock(&cgroup_mutex);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005167 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005168 while (!list_empty(&release_list)) {
5169 char *argv[3], *envp[3];
5170 int i;
Tejun Heoe61734c2014-02-12 09:29:50 -05005171 char *pathbuf = NULL, *agentbuf = NULL, *path;
Paul Menagebd89aab2007-10-18 23:40:44 -07005172 struct cgroup *cgrp = list_entry(release_list.next,
Paul Menage81a6a5c2007-10-18 23:39:38 -07005173 struct cgroup,
5174 release_list);
Paul Menagebd89aab2007-10-18 23:40:44 -07005175 list_del_init(&cgrp->release_list);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005176 raw_spin_unlock(&release_list_lock);
Tejun Heoe61734c2014-02-12 09:29:50 -05005177 pathbuf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagee788e062008-07-25 01:46:59 -07005178 if (!pathbuf)
5179 goto continue_free;
Tejun Heoe61734c2014-02-12 09:29:50 -05005180 path = cgroup_path(cgrp, pathbuf, PATH_MAX);
5181 if (!path)
Paul Menagee788e062008-07-25 01:46:59 -07005182 goto continue_free;
5183 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
5184 if (!agentbuf)
5185 goto continue_free;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005186
5187 i = 0;
Paul Menagee788e062008-07-25 01:46:59 -07005188 argv[i++] = agentbuf;
Tejun Heoe61734c2014-02-12 09:29:50 -05005189 argv[i++] = path;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005190 argv[i] = NULL;
5191
5192 i = 0;
5193 /* minimal command environment */
5194 envp[i++] = "HOME=/";
5195 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
5196 envp[i] = NULL;
5197
5198 /* Drop the lock while we invoke the usermode helper,
5199 * since the exec could involve hitting disk and hence
5200 * be a slow process */
5201 mutex_unlock(&cgroup_mutex);
5202 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005203 mutex_lock(&cgroup_mutex);
Paul Menagee788e062008-07-25 01:46:59 -07005204 continue_free:
5205 kfree(pathbuf);
5206 kfree(agentbuf);
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005207 raw_spin_lock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005208 }
Thomas Gleixnercdcc1362009-07-25 16:47:45 +02005209 raw_spin_unlock(&release_list_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005210 mutex_unlock(&cgroup_mutex);
5211}
Paul Menage8bab8dd2008-04-04 14:29:57 -07005212
5213static int __init cgroup_disable(char *str)
5214{
Tejun Heo30159ec2013-06-25 11:53:37 -07005215 struct cgroup_subsys *ss;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005216 char *token;
Tejun Heo30159ec2013-06-25 11:53:37 -07005217 int i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005218
5219 while ((token = strsep(&str, ",")) != NULL) {
5220 if (!*token)
5221 continue;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005222
Tejun Heo3ed80a62014-02-08 10:36:58 -05005223 for_each_subsys(ss, i) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07005224 if (!strcmp(token, ss->name)) {
5225 ss->disabled = 1;
5226 printk(KERN_INFO "Disabling %s control group"
5227 " subsystem\n", ss->name);
5228 break;
5229 }
5230 }
5231 }
5232 return 1;
5233}
5234__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005235
Tejun Heob77d7b62013-08-13 11:01:54 -04005236/**
Tejun Heoec903c02014-05-13 12:11:01 -04005237 * css_tryget_online_from_dir - get corresponding css from a cgroup dentry
Tejun Heo35cf0832013-08-26 18:40:56 -04005238 * @dentry: directory dentry of interest
5239 * @ss: subsystem of interest
Tejun Heob77d7b62013-08-13 11:01:54 -04005240 *
Tejun Heo5a17f542014-02-11 11:52:47 -05005241 * If @dentry is a directory for a cgroup which has @ss enabled on it, try
5242 * to get the corresponding css and return it. If such css doesn't exist
5243 * or can't be pinned, an ERR_PTR value is returned.
Stephane Eraniane5d13672011-02-14 11:20:01 +02005244 */
Tejun Heoec903c02014-05-13 12:11:01 -04005245struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry,
5246 struct cgroup_subsys *ss)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005247{
Tejun Heo2bd59d42014-02-11 11:52:49 -05005248 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
5249 struct cgroup_subsys_state *css = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005250 struct cgroup *cgrp;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005251
Tejun Heo35cf0832013-08-26 18:40:56 -04005252 /* is @dentry a cgroup dir? */
Tejun Heo2bd59d42014-02-11 11:52:49 -05005253 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
5254 kernfs_type(kn) != KERNFS_DIR)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005255 return ERR_PTR(-EBADF);
5256
Tejun Heo5a17f542014-02-11 11:52:47 -05005257 rcu_read_lock();
5258
Tejun Heo2bd59d42014-02-11 11:52:49 -05005259 /*
5260 * This path doesn't originate from kernfs and @kn could already
5261 * have been or be removed at any point. @kn->priv is RCU
Tejun Heocfc79d52014-05-13 12:19:22 -04005262 * protected for this access. See cgroup_rmdir() for details.
Tejun Heo2bd59d42014-02-11 11:52:49 -05005263 */
5264 cgrp = rcu_dereference(kn->priv);
5265 if (cgrp)
5266 css = cgroup_css(cgrp, ss);
Tejun Heo5a17f542014-02-11 11:52:47 -05005267
Tejun Heoec903c02014-05-13 12:11:01 -04005268 if (!css || !css_tryget_online(css))
Tejun Heo5a17f542014-02-11 11:52:47 -05005269 css = ERR_PTR(-ENOENT);
5270
5271 rcu_read_unlock();
5272 return css;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005273}
Stephane Eraniane5d13672011-02-14 11:20:01 +02005274
Li Zefan1cb650b2013-08-19 10:05:24 +08005275/**
5276 * css_from_id - lookup css by id
5277 * @id: the cgroup id
5278 * @ss: cgroup subsys to be looked into
5279 *
5280 * Returns the css if there's valid one with @id, otherwise returns NULL.
5281 * Should be called under rcu_read_lock().
5282 */
5283struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss)
5284{
Tejun Heo6fa49182014-05-04 15:09:13 -04005285 WARN_ON_ONCE(!rcu_read_lock_held());
Tejun Heo15a4c832014-05-04 15:09:14 -04005286 return idr_find(&ss->css_idr, id);
Stephane Eraniane5d13672011-02-14 11:20:01 +02005287}
5288
Paul Menagefe693432009-09-23 15:56:20 -07005289#ifdef CONFIG_CGROUP_DEBUG
Tejun Heoeb954192013-08-08 20:11:23 -04005290static struct cgroup_subsys_state *
5291debug_css_alloc(struct cgroup_subsys_state *parent_css)
Paul Menagefe693432009-09-23 15:56:20 -07005292{
5293 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
5294
5295 if (!css)
5296 return ERR_PTR(-ENOMEM);
5297
5298 return css;
5299}
5300
Tejun Heoeb954192013-08-08 20:11:23 -04005301static void debug_css_free(struct cgroup_subsys_state *css)
Paul Menagefe693432009-09-23 15:56:20 -07005302{
Tejun Heoeb954192013-08-08 20:11:23 -04005303 kfree(css);
Paul Menagefe693432009-09-23 15:56:20 -07005304}
5305
Tejun Heo182446d2013-08-08 20:11:24 -04005306static u64 debug_taskcount_read(struct cgroup_subsys_state *css,
5307 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005308{
Tejun Heo182446d2013-08-08 20:11:24 -04005309 return cgroup_task_count(css->cgroup);
Paul Menagefe693432009-09-23 15:56:20 -07005310}
5311
Tejun Heo182446d2013-08-08 20:11:24 -04005312static u64 current_css_set_read(struct cgroup_subsys_state *css,
5313 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005314{
5315 return (u64)(unsigned long)current->cgroups;
5316}
5317
Tejun Heo182446d2013-08-08 20:11:24 -04005318static u64 current_css_set_refcount_read(struct cgroup_subsys_state *css,
Li Zefan03c78cb2013-06-14 11:17:19 +08005319 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005320{
5321 u64 count;
5322
5323 rcu_read_lock();
Tejun Heoa8ad8052013-06-21 15:52:04 -07005324 count = atomic_read(&task_css_set(current)->refcount);
Paul Menagefe693432009-09-23 15:56:20 -07005325 rcu_read_unlock();
5326 return count;
5327}
5328
Tejun Heo2da8ca82013-12-05 12:28:04 -05005329static int current_css_set_cg_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005330{
Tejun Heo69d02062013-06-12 21:04:50 -07005331 struct cgrp_cset_link *link;
Tejun Heo5abb8852013-06-12 21:04:49 -07005332 struct css_set *cset;
Tejun Heoe61734c2014-02-12 09:29:50 -05005333 char *name_buf;
Paul Menage7717f7b2009-09-23 15:56:22 -07005334
Tejun Heoe61734c2014-02-12 09:29:50 -05005335 name_buf = kmalloc(NAME_MAX + 1, GFP_KERNEL);
5336 if (!name_buf)
5337 return -ENOMEM;
Paul Menage7717f7b2009-09-23 15:56:22 -07005338
Tejun Heo96d365e2014-02-13 06:58:40 -05005339 down_read(&css_set_rwsem);
Paul Menage7717f7b2009-09-23 15:56:22 -07005340 rcu_read_lock();
Tejun Heo5abb8852013-06-12 21:04:49 -07005341 cset = rcu_dereference(current->cgroups);
Tejun Heo69d02062013-06-12 21:04:50 -07005342 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07005343 struct cgroup *c = link->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -07005344
Tejun Heoa2dd4242014-03-19 10:23:55 -04005345 cgroup_name(c, name_buf, NAME_MAX + 1);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005346 seq_printf(seq, "Root %d group %s\n",
Tejun Heoa2dd4242014-03-19 10:23:55 -04005347 c->root->hierarchy_id, name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07005348 }
5349 rcu_read_unlock();
Tejun Heo96d365e2014-02-13 06:58:40 -05005350 up_read(&css_set_rwsem);
Tejun Heoe61734c2014-02-12 09:29:50 -05005351 kfree(name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07005352 return 0;
5353}
5354
5355#define MAX_TASKS_SHOWN_PER_CSS 25
Tejun Heo2da8ca82013-12-05 12:28:04 -05005356static int cgroup_css_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005357{
Tejun Heo2da8ca82013-12-05 12:28:04 -05005358 struct cgroup_subsys_state *css = seq_css(seq);
Tejun Heo69d02062013-06-12 21:04:50 -07005359 struct cgrp_cset_link *link;
Paul Menage7717f7b2009-09-23 15:56:22 -07005360
Tejun Heo96d365e2014-02-13 06:58:40 -05005361 down_read(&css_set_rwsem);
Tejun Heo182446d2013-08-08 20:11:24 -04005362 list_for_each_entry(link, &css->cgroup->cset_links, cset_link) {
Tejun Heo69d02062013-06-12 21:04:50 -07005363 struct css_set *cset = link->cset;
Paul Menage7717f7b2009-09-23 15:56:22 -07005364 struct task_struct *task;
5365 int count = 0;
Tejun Heoc7561122014-02-25 10:04:01 -05005366
Tejun Heo5abb8852013-06-12 21:04:49 -07005367 seq_printf(seq, "css_set %p\n", cset);
Tejun Heoc7561122014-02-25 10:04:01 -05005368
Tejun Heo5abb8852013-06-12 21:04:49 -07005369 list_for_each_entry(task, &cset->tasks, cg_list) {
Tejun Heoc7561122014-02-25 10:04:01 -05005370 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
5371 goto overflow;
5372 seq_printf(seq, " task %d\n", task_pid_vnr(task));
Paul Menage7717f7b2009-09-23 15:56:22 -07005373 }
Tejun Heoc7561122014-02-25 10:04:01 -05005374
5375 list_for_each_entry(task, &cset->mg_tasks, cg_list) {
5376 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
5377 goto overflow;
5378 seq_printf(seq, " task %d\n", task_pid_vnr(task));
5379 }
5380 continue;
5381 overflow:
5382 seq_puts(seq, " ...\n");
Paul Menage7717f7b2009-09-23 15:56:22 -07005383 }
Tejun Heo96d365e2014-02-13 06:58:40 -05005384 up_read(&css_set_rwsem);
Paul Menage7717f7b2009-09-23 15:56:22 -07005385 return 0;
5386}
5387
Tejun Heo182446d2013-08-08 20:11:24 -04005388static u64 releasable_read(struct cgroup_subsys_state *css, struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005389{
Tejun Heo182446d2013-08-08 20:11:24 -04005390 return test_bit(CGRP_RELEASABLE, &css->cgroup->flags);
Paul Menagefe693432009-09-23 15:56:20 -07005391}
5392
5393static struct cftype debug_files[] = {
5394 {
Paul Menagefe693432009-09-23 15:56:20 -07005395 .name = "taskcount",
5396 .read_u64 = debug_taskcount_read,
5397 },
5398
5399 {
5400 .name = "current_css_set",
5401 .read_u64 = current_css_set_read,
5402 },
5403
5404 {
5405 .name = "current_css_set_refcount",
5406 .read_u64 = current_css_set_refcount_read,
5407 },
5408
5409 {
Paul Menage7717f7b2009-09-23 15:56:22 -07005410 .name = "current_css_set_cg_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005411 .seq_show = current_css_set_cg_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07005412 },
5413
5414 {
5415 .name = "cgroup_css_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005416 .seq_show = cgroup_css_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07005417 },
5418
5419 {
Paul Menagefe693432009-09-23 15:56:20 -07005420 .name = "releasable",
5421 .read_u64 = releasable_read,
5422 },
Paul Menagefe693432009-09-23 15:56:20 -07005423
Tejun Heo4baf6e32012-04-01 12:09:55 -07005424 { } /* terminate */
5425};
Paul Menagefe693432009-09-23 15:56:20 -07005426
Tejun Heo073219e2014-02-08 10:36:58 -05005427struct cgroup_subsys debug_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08005428 .css_alloc = debug_css_alloc,
5429 .css_free = debug_css_free,
Tejun Heo4baf6e32012-04-01 12:09:55 -07005430 .base_cftypes = debug_files,
Paul Menagefe693432009-09-23 15:56:20 -07005431};
5432#endif /* CONFIG_CGROUP_DEBUG */