blob: a59dd1a6b74a80db6b1568951c66434ec46e66e0 [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>
Tejun Heod59cfc02015-05-13 16:35:17 -040049#include <linux/percpu-rwsem.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070050#include <linux/string.h>
Paul Menagebbcb81d2007-10-18 23:39:32 -070051#include <linux/sort.h>
Paul Menage81a6a5c2007-10-18 23:39:38 -070052#include <linux/kmod.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070053#include <linux/delayacct.h>
54#include <linux/cgroupstats.h>
Li Zefan0ac801f2013-01-10 11:49:27 +080055#include <linux/hashtable.h>
Li Zefan096b7fe2009-07-29 15:04:04 -070056#include <linux/pid_namespace.h>
Paul Menage2c6ab6d2009-09-23 15:56:23 -070057#include <linux/idr.h>
Ben Blumd1d9fd32009-09-23 15:56:28 -070058#include <linux/vmalloc.h> /* TODO: replace with more sophisticated array */
Mike Galbraithc4c27fb2012-04-21 09:13:46 +020059#include <linux/kthread.h>
Tejun Heo776f02f2014-02-12 09:29:50 -050060#include <linux/delay.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070061
Arun Sharma600634972011-07-26 16:09:06 -070062#include <linux/atomic.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070063
Tejun Heoe25e2cb2011-12-12 18:12:21 -080064/*
Tejun Heob1a21362013-11-29 10:42:58 -050065 * pidlists linger the following amount before being destroyed. The goal
66 * is avoiding frequent destruction in the middle of consecutive read calls
67 * Expiring in the middle is a performance problem not a correctness one.
68 * 1 sec should be enough.
69 */
70#define CGROUP_PIDLIST_DESTROY_DELAY HZ
71
Tejun Heo8d7e6fb2014-02-11 11:52:48 -050072#define CGROUP_FILE_NAME_MAX (MAX_CGROUP_TYPE_NAMELEN + \
73 MAX_CFTYPE_NAME + 2)
74
Tejun Heob1a21362013-11-29 10:42:58 -050075/*
Tejun Heoe25e2cb2011-12-12 18:12:21 -080076 * cgroup_mutex is the master lock. Any modification to cgroup or its
77 * hierarchy must be performed while holding it.
78 *
Tejun Heo0e1d7682014-02-25 10:04:03 -050079 * css_set_rwsem protects task->cgroups pointer, the list of css_set
80 * objects, and the chain of tasks off each css_set.
Tejun Heoe25e2cb2011-12-12 18:12:21 -080081 *
Tejun Heo0e1d7682014-02-25 10:04:03 -050082 * These locks are exported if CONFIG_PROVE_RCU so that accessors in
83 * cgroup.h can use them for lockdep annotations.
Tejun Heoe25e2cb2011-12-12 18:12:21 -080084 */
Tejun Heo22194492013-04-07 09:29:51 -070085#ifdef CONFIG_PROVE_RCU
86DEFINE_MUTEX(cgroup_mutex);
Tejun Heo0e1d7682014-02-25 10:04:03 -050087DECLARE_RWSEM(css_set_rwsem);
88EXPORT_SYMBOL_GPL(cgroup_mutex);
89EXPORT_SYMBOL_GPL(css_set_rwsem);
Tejun Heo22194492013-04-07 09:29:51 -070090#else
Paul Menage81a6a5c2007-10-18 23:39:38 -070091static DEFINE_MUTEX(cgroup_mutex);
Tejun Heo0e1d7682014-02-25 10:04:03 -050092static DECLARE_RWSEM(css_set_rwsem);
Tejun Heo22194492013-04-07 09:29:51 -070093#endif
94
Tejun Heo69e943b2014-02-08 10:36:58 -050095/*
Tejun Heo15a4c832014-05-04 15:09:14 -040096 * Protects cgroup_idr and css_idr so that IDs can be released without
97 * grabbing cgroup_mutex.
Tejun Heo6fa49182014-05-04 15:09:13 -040098 */
99static DEFINE_SPINLOCK(cgroup_idr_lock);
100
101/*
Tejun Heo69e943b2014-02-08 10:36:58 -0500102 * Protects cgroup_subsys->release_agent_path. Modifying it also requires
103 * cgroup_mutex. Reading requires either cgroup_mutex or this spinlock.
104 */
105static DEFINE_SPINLOCK(release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700106
Tejun Heod59cfc02015-05-13 16:35:17 -0400107struct percpu_rw_semaphore cgroup_threadgroup_rwsem;
108
Tejun Heo8353da12014-05-13 12:19:23 -0400109#define cgroup_assert_mutex_or_rcu_locked() \
Tejun Heo87fb54f2013-12-06 15:11:55 -0500110 rcu_lockdep_assert(rcu_read_lock_held() || \
111 lockdep_is_held(&cgroup_mutex), \
Tejun Heo8353da12014-05-13 12:19:23 -0400112 "cgroup_mutex or RCU read lock required");
Tejun Heo780cd8b2013-12-06 15:11:56 -0500113
Ben Blumaae8aab2010-03-10 15:22:07 -0800114/*
Tejun Heoe5fca242013-11-22 17:14:39 -0500115 * cgroup destruction makes heavy use of work items and there can be a lot
116 * of concurrent destructions. Use a separate workqueue so that cgroup
117 * destruction work items don't end up filling up max_active of system_wq
118 * which may lead to deadlock.
119 */
120static struct workqueue_struct *cgroup_destroy_wq;
121
122/*
Tejun Heob1a21362013-11-29 10:42:58 -0500123 * pidlist destructions need to be flushed on cgroup destruction. Use a
124 * separate workqueue as flush domain.
125 */
126static struct workqueue_struct *cgroup_pidlist_destroy_wq;
127
Tejun Heo3ed80a62014-02-08 10:36:58 -0500128/* generate an array of cgroup subsystem pointers */
Tejun Heo073219e2014-02-08 10:36:58 -0500129#define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys,
Tejun Heo3ed80a62014-02-08 10:36:58 -0500130static struct cgroup_subsys *cgroup_subsys[] = {
Paul Menageddbcc7e2007-10-18 23:39:30 -0700131#include <linux/cgroup_subsys.h>
132};
Tejun Heo073219e2014-02-08 10:36:58 -0500133#undef SUBSYS
134
135/* array of cgroup subsystem names */
136#define SUBSYS(_x) [_x ## _cgrp_id] = #_x,
137static const char *cgroup_subsys_name[] = {
138#include <linux/cgroup_subsys.h>
139};
140#undef SUBSYS
Paul Menageddbcc7e2007-10-18 23:39:30 -0700141
Paul Menageddbcc7e2007-10-18 23:39:30 -0700142/*
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400143 * The default hierarchy, reserved for the subsystems that are otherwise
Tejun Heo9871bf92013-06-24 15:21:47 -0700144 * unattached - it never has more than a single cgroup, and all tasks are
145 * part of that cgroup.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700146 */
Tejun Heoa2dd4242014-03-19 10:23:55 -0400147struct cgroup_root cgrp_dfl_root;
Tejun Heo9871bf92013-06-24 15:21:47 -0700148
Tejun Heoa2dd4242014-03-19 10:23:55 -0400149/*
150 * The default hierarchy always exists but is hidden until mounted for the
151 * first time. This is for backward compatibility.
152 */
153static bool cgrp_dfl_root_visible;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700154
Tejun Heoa8ddc822014-07-15 11:05:10 -0400155/*
156 * Set by the boot param of the same name and makes subsystems with NULL
157 * ->dfl_files to use ->legacy_files on the default hierarchy.
158 */
159static bool cgroup_legacy_files_on_dfl;
160
Tejun Heo5533e012014-05-14 19:33:07 -0400161/* some controllers are not supported in the default hierarchy */
Aleksa Sarai8ab456a2015-05-19 00:51:00 +1000162static unsigned long cgrp_dfl_root_inhibit_ss_mask;
Tejun Heo5533e012014-05-14 19:33:07 -0400163
Paul Menageddbcc7e2007-10-18 23:39:30 -0700164/* The list of hierarchy roots */
165
Tejun Heo9871bf92013-06-24 15:21:47 -0700166static LIST_HEAD(cgroup_roots);
167static int cgroup_root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700168
Tejun Heo3417ae12014-02-08 10:37:01 -0500169/* hierarchy ID allocation and mapping, protected by cgroup_mutex */
Tejun Heo1a574232013-04-14 11:36:58 -0700170static DEFINE_IDR(cgroup_hierarchy_idr);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700171
Li Zefan794611a2013-06-18 18:53:53 +0800172/*
Tejun Heo0cb51d72014-05-16 13:22:49 -0400173 * Assign a monotonically increasing serial number to csses. It guarantees
174 * cgroups with bigger numbers are newer than those with smaller numbers.
175 * Also, as csses are always appended to the parent's ->children list, it
176 * guarantees that sibling csses are always sorted in the ascending serial
177 * number order on the list. Protected by cgroup_mutex.
Li Zefan794611a2013-06-18 18:53:53 +0800178 */
Tejun Heo0cb51d72014-05-16 13:22:49 -0400179static u64 css_serial_nr_next = 1;
Li Zefan794611a2013-06-18 18:53:53 +0800180
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000181/*
182 * These bitmask flags indicate whether tasks in the fork and exit paths have
183 * fork/exit handlers to call. This avoids us having to do extra work in the
184 * fork/exit path to check which subsystems have fork/exit callbacks.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700185 */
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000186static unsigned long have_fork_callback __read_mostly;
187static unsigned long have_exit_callback __read_mostly;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700188
Aleksa Sarai7e476822015-06-09 21:32:09 +1000189/* Ditto for the can_fork callback. */
190static unsigned long have_canfork_callback __read_mostly;
191
Tejun Heoa14c6872014-07-15 11:05:09 -0400192static struct cftype cgroup_dfl_base_files[];
193static struct cftype cgroup_legacy_base_files[];
Tejun Heo628f7cd2013-06-28 16:24:11 -0700194
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400195static int rebind_subsystems(struct cgroup_root *dst_root,
Aleksa Sarai8ab456a2015-05-19 00:51:00 +1000196 unsigned long ss_mask);
Tejun Heo42809dd2012-11-19 08:13:37 -0800197static int cgroup_destroy_locked(struct cgroup *cgrp);
Tejun Heof63070d2014-07-08 18:02:57 -0400198static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss,
199 bool visible);
Tejun Heo9d755d32014-05-14 09:15:02 -0400200static void css_release(struct percpu_ref *ref);
Tejun Heof8f22e52014-04-23 11:13:16 -0400201static void kill_css(struct cgroup_subsys_state *css);
Tejun Heo2bb566c2013-08-08 20:11:23 -0400202static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
203 bool is_add);
Tejun Heo42809dd2012-11-19 08:13:37 -0800204
Tejun Heo6fa49182014-05-04 15:09:13 -0400205/* IDR wrappers which synchronize using cgroup_idr_lock */
206static int cgroup_idr_alloc(struct idr *idr, void *ptr, int start, int end,
207 gfp_t gfp_mask)
208{
209 int ret;
210
211 idr_preload(gfp_mask);
Tejun Heo54504e92014-05-13 12:10:59 -0400212 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400213 ret = idr_alloc(idr, ptr, start, end, gfp_mask);
Tejun Heo54504e92014-05-13 12:10:59 -0400214 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400215 idr_preload_end();
216 return ret;
217}
218
219static void *cgroup_idr_replace(struct idr *idr, void *ptr, int id)
220{
221 void *ret;
222
Tejun Heo54504e92014-05-13 12:10:59 -0400223 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400224 ret = idr_replace(idr, ptr, id);
Tejun Heo54504e92014-05-13 12:10:59 -0400225 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400226 return ret;
227}
228
229static void cgroup_idr_remove(struct idr *idr, int id)
230{
Tejun Heo54504e92014-05-13 12:10:59 -0400231 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400232 idr_remove(idr, id);
Tejun Heo54504e92014-05-13 12:10:59 -0400233 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400234}
235
Tejun Heod51f39b2014-05-16 13:22:48 -0400236static struct cgroup *cgroup_parent(struct cgroup *cgrp)
237{
238 struct cgroup_subsys_state *parent_css = cgrp->self.parent;
239
240 if (parent_css)
241 return container_of(parent_css, struct cgroup, self);
242 return NULL;
243}
244
Tejun Heo95109b62013-08-08 20:11:27 -0400245/**
246 * cgroup_css - obtain a cgroup's css for the specified subsystem
247 * @cgrp: the cgroup of interest
Tejun Heo9d800df2014-05-14 09:15:00 -0400248 * @ss: the subsystem of interest (%NULL returns @cgrp->self)
Tejun Heo95109b62013-08-08 20:11:27 -0400249 *
Tejun Heoca8bdca2013-08-26 18:40:56 -0400250 * Return @cgrp's css (cgroup_subsys_state) associated with @ss. This
251 * function must be called either under cgroup_mutex or rcu_read_lock() and
252 * the caller is responsible for pinning the returned css if it wants to
253 * keep accessing it outside the said locks. This function may return
254 * %NULL if @cgrp doesn't have @subsys_id enabled.
Tejun Heo95109b62013-08-08 20:11:27 -0400255 */
256static struct cgroup_subsys_state *cgroup_css(struct cgroup *cgrp,
Tejun Heoca8bdca2013-08-26 18:40:56 -0400257 struct cgroup_subsys *ss)
Tejun Heo95109b62013-08-08 20:11:27 -0400258{
Tejun Heoca8bdca2013-08-26 18:40:56 -0400259 if (ss)
Tejun Heoaec25022014-02-08 10:36:58 -0500260 return rcu_dereference_check(cgrp->subsys[ss->id],
Tejun Heoace2bee2014-02-11 11:52:47 -0500261 lockdep_is_held(&cgroup_mutex));
Tejun Heoca8bdca2013-08-26 18:40:56 -0400262 else
Tejun Heo9d800df2014-05-14 09:15:00 -0400263 return &cgrp->self;
Tejun Heo95109b62013-08-08 20:11:27 -0400264}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700265
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400266/**
267 * cgroup_e_css - obtain a cgroup's effective css for the specified subsystem
268 * @cgrp: the cgroup of interest
Tejun Heo9d800df2014-05-14 09:15:00 -0400269 * @ss: the subsystem of interest (%NULL returns @cgrp->self)
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400270 *
Chen Hanxiaod0f702e2015-04-23 07:57:33 -0400271 * Similar to cgroup_css() but returns the effective css, which is defined
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400272 * as the matching css of the nearest ancestor including self which has @ss
273 * enabled. If @ss is associated with the hierarchy @cgrp is on, this
274 * function is guaranteed to return non-NULL css.
275 */
276static struct cgroup_subsys_state *cgroup_e_css(struct cgroup *cgrp,
277 struct cgroup_subsys *ss)
278{
279 lockdep_assert_held(&cgroup_mutex);
280
281 if (!ss)
Tejun Heo9d800df2014-05-14 09:15:00 -0400282 return &cgrp->self;
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400283
284 if (!(cgrp->root->subsys_mask & (1 << ss->id)))
285 return NULL;
286
Tejun Heoeeecbd12014-11-18 02:49:52 -0500287 /*
288 * This function is used while updating css associations and thus
289 * can't test the csses directly. Use ->child_subsys_mask.
290 */
Tejun Heod51f39b2014-05-16 13:22:48 -0400291 while (cgroup_parent(cgrp) &&
292 !(cgroup_parent(cgrp)->child_subsys_mask & (1 << ss->id)))
293 cgrp = cgroup_parent(cgrp);
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400294
295 return cgroup_css(cgrp, ss);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700296}
297
Tejun Heoeeecbd12014-11-18 02:49:52 -0500298/**
299 * cgroup_get_e_css - get a cgroup's effective css for the specified subsystem
300 * @cgrp: the cgroup of interest
301 * @ss: the subsystem of interest
302 *
303 * Find and get the effective css of @cgrp for @ss. The effective css is
304 * defined as the matching css of the nearest ancestor including self which
305 * has @ss enabled. If @ss is not mounted on the hierarchy @cgrp is on,
306 * the root css is returned, so this function always returns a valid css.
307 * The returned css must be put using css_put().
308 */
309struct cgroup_subsys_state *cgroup_get_e_css(struct cgroup *cgrp,
310 struct cgroup_subsys *ss)
311{
312 struct cgroup_subsys_state *css;
313
314 rcu_read_lock();
315
316 do {
317 css = cgroup_css(cgrp, ss);
318
319 if (css && css_tryget_online(css))
320 goto out_unlock;
321 cgrp = cgroup_parent(cgrp);
322 } while (cgrp);
323
324 css = init_css_set.subsys[ss->id];
325 css_get(css);
326out_unlock:
327 rcu_read_unlock();
328 return css;
329}
330
Paul Menageddbcc7e2007-10-18 23:39:30 -0700331/* convenient tests for these bits */
Tejun Heo54766d42013-06-12 21:04:53 -0700332static inline bool cgroup_is_dead(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700333{
Tejun Heo184faf32014-05-16 13:22:51 -0400334 return !(cgrp->self.flags & CSS_ONLINE);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700335}
336
Tejun Heob4168642014-05-13 12:16:21 -0400337struct cgroup_subsys_state *of_css(struct kernfs_open_file *of)
Tejun Heo59f52962014-02-11 11:52:49 -0500338{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500339 struct cgroup *cgrp = of->kn->parent->priv;
Tejun Heob4168642014-05-13 12:16:21 -0400340 struct cftype *cft = of_cft(of);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500341
342 /*
343 * This is open and unprotected implementation of cgroup_css().
344 * seq_css() is only called from a kernfs file operation which has
345 * an active reference on the file. Because all the subsystem
346 * files are drained before a css is disassociated with a cgroup,
347 * the matching css from the cgroup's subsys table is guaranteed to
348 * be and stay valid until the enclosing operation is complete.
349 */
350 if (cft->ss)
351 return rcu_dereference_raw(cgrp->subsys[cft->ss->id]);
352 else
Tejun Heo9d800df2014-05-14 09:15:00 -0400353 return &cgrp->self;
Tejun Heo59f52962014-02-11 11:52:49 -0500354}
Tejun Heob4168642014-05-13 12:16:21 -0400355EXPORT_SYMBOL_GPL(of_css);
Tejun Heo59f52962014-02-11 11:52:49 -0500356
Li Zefan78574cf2013-04-08 19:00:38 -0700357/**
358 * cgroup_is_descendant - test ancestry
359 * @cgrp: the cgroup to be tested
360 * @ancestor: possible ancestor of @cgrp
361 *
362 * Test whether @cgrp is a descendant of @ancestor. It also returns %true
363 * if @cgrp == @ancestor. This function is safe to call as long as @cgrp
364 * and @ancestor are accessible.
365 */
366bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor)
367{
368 while (cgrp) {
369 if (cgrp == ancestor)
370 return true;
Tejun Heod51f39b2014-05-16 13:22:48 -0400371 cgrp = cgroup_parent(cgrp);
Li Zefan78574cf2013-04-08 19:00:38 -0700372 }
373 return false;
374}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700375
Adrian Bunke9685a02008-02-07 00:13:46 -0800376static int notify_on_release(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700377{
Paul Menagebd89aab2007-10-18 23:40:44 -0700378 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700379}
380
Tejun Heo30159ec2013-06-25 11:53:37 -0700381/**
Tejun Heo1c6727a2013-12-06 15:11:56 -0500382 * for_each_css - iterate all css's of a cgroup
383 * @css: the iteration cursor
384 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
385 * @cgrp: the target cgroup to iterate css's of
Tejun Heo30159ec2013-06-25 11:53:37 -0700386 *
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400387 * Should be called under cgroup_[tree_]mutex.
Tejun Heo30159ec2013-06-25 11:53:37 -0700388 */
Tejun Heo1c6727a2013-12-06 15:11:56 -0500389#define for_each_css(css, ssid, cgrp) \
390 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
391 if (!((css) = rcu_dereference_check( \
392 (cgrp)->subsys[(ssid)], \
393 lockdep_is_held(&cgroup_mutex)))) { } \
394 else
395
396/**
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400397 * for_each_e_css - iterate all effective css's of a cgroup
398 * @css: the iteration cursor
399 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
400 * @cgrp: the target cgroup to iterate css's of
401 *
402 * Should be called under cgroup_[tree_]mutex.
403 */
404#define for_each_e_css(css, ssid, cgrp) \
405 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
406 if (!((css) = cgroup_e_css(cgrp, cgroup_subsys[(ssid)]))) \
407 ; \
408 else
409
410/**
Tejun Heo3ed80a62014-02-08 10:36:58 -0500411 * for_each_subsys - iterate all enabled cgroup subsystems
Tejun Heo30159ec2013-06-25 11:53:37 -0700412 * @ss: the iteration cursor
Tejun Heo780cd8b2013-12-06 15:11:56 -0500413 * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end
Tejun Heo30159ec2013-06-25 11:53:37 -0700414 */
Tejun Heo780cd8b2013-12-06 15:11:56 -0500415#define for_each_subsys(ss, ssid) \
Tejun Heo3ed80a62014-02-08 10:36:58 -0500416 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT && \
417 (((ss) = cgroup_subsys[ssid]) || true); (ssid)++)
Tejun Heo30159ec2013-06-25 11:53:37 -0700418
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000419/**
420 * for_each_subsys_which - filter for_each_subsys with a bitmask
421 * @ss: the iteration cursor
422 * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end
423 * @ss_maskp: a pointer to the bitmask
424 *
425 * The block will only run for cases where the ssid-th bit (1 << ssid) of
426 * mask is set to 1.
427 */
428#define for_each_subsys_which(ss, ssid, ss_maskp) \
429 if (!CGROUP_SUBSYS_COUNT) /* to avoid spurious gcc warning */ \
Aleksa Sarai4a705c52015-06-09 21:32:07 +1000430 (ssid) = 0; \
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000431 else \
432 for_each_set_bit(ssid, ss_maskp, CGROUP_SUBSYS_COUNT) \
433 if (((ss) = cgroup_subsys[ssid]) && false) \
434 break; \
435 else
436
Tejun Heo985ed672014-03-19 10:23:53 -0400437/* iterate across the hierarchies */
438#define for_each_root(root) \
Tejun Heo5549c492013-06-24 15:21:48 -0700439 list_for_each_entry((root), &cgroup_roots, root_list)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700440
Tejun Heof8f22e52014-04-23 11:13:16 -0400441/* iterate over child cgrps, lock should be held throughout iteration */
442#define cgroup_for_each_live_child(child, cgrp) \
Tejun Heod5c419b2014-05-16 13:22:48 -0400443 list_for_each_entry((child), &(cgrp)->self.children, self.sibling) \
Tejun Heo8353da12014-05-13 12:19:23 -0400444 if (({ lockdep_assert_held(&cgroup_mutex); \
Tejun Heof8f22e52014-04-23 11:13:16 -0400445 cgroup_is_dead(child); })) \
446 ; \
447 else
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700448
Paul Menage81a6a5c2007-10-18 23:39:38 -0700449static void cgroup_release_agent(struct work_struct *work);
Paul Menagebd89aab2007-10-18 23:40:44 -0700450static void check_for_release(struct cgroup *cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700451
Tejun Heo69d02062013-06-12 21:04:50 -0700452/*
453 * A cgroup can be associated with multiple css_sets as different tasks may
454 * belong to different cgroups on different hierarchies. In the other
455 * direction, a css_set is naturally associated with multiple cgroups.
456 * This M:N relationship is represented by the following link structure
457 * which exists for each association and allows traversing the associations
458 * from both sides.
459 */
460struct cgrp_cset_link {
461 /* the cgroup and css_set this link associates */
462 struct cgroup *cgrp;
463 struct css_set *cset;
464
465 /* list of cgrp_cset_links anchored at cgrp->cset_links */
466 struct list_head cset_link;
467
468 /* list of cgrp_cset_links anchored at css_set->cgrp_links */
469 struct list_head cgrp_link;
Paul Menage817929e2007-10-18 23:39:36 -0700470};
471
Tejun Heo172a2c062014-03-19 10:23:53 -0400472/*
473 * The default css_set - used by init and its children prior to any
Paul Menage817929e2007-10-18 23:39:36 -0700474 * hierarchies being mounted. It contains a pointer to the root state
475 * for each subsystem. Also used to anchor the list of css_sets. Not
476 * reference-counted, to improve performance when child cgroups
477 * haven't been created.
478 */
Tejun Heo5024ae22014-05-07 21:31:17 -0400479struct css_set init_css_set = {
Tejun Heo172a2c062014-03-19 10:23:53 -0400480 .refcount = ATOMIC_INIT(1),
481 .cgrp_links = LIST_HEAD_INIT(init_css_set.cgrp_links),
482 .tasks = LIST_HEAD_INIT(init_css_set.tasks),
483 .mg_tasks = LIST_HEAD_INIT(init_css_set.mg_tasks),
484 .mg_preload_node = LIST_HEAD_INIT(init_css_set.mg_preload_node),
485 .mg_node = LIST_HEAD_INIT(init_css_set.mg_node),
486};
Paul Menage817929e2007-10-18 23:39:36 -0700487
Tejun Heo172a2c062014-03-19 10:23:53 -0400488static int css_set_count = 1; /* 1 for init_css_set */
Paul Menage817929e2007-10-18 23:39:36 -0700489
Tejun Heo842b5972014-04-25 18:28:02 -0400490/**
491 * cgroup_update_populated - updated populated count of a cgroup
492 * @cgrp: the target cgroup
493 * @populated: inc or dec populated count
494 *
495 * @cgrp is either getting the first task (css_set) or losing the last.
496 * Update @cgrp->populated_cnt accordingly. The count is propagated
497 * towards root so that a given cgroup's populated_cnt is zero iff the
498 * cgroup and all its descendants are empty.
499 *
500 * @cgrp's interface file "cgroup.populated" is zero if
501 * @cgrp->populated_cnt is zero and 1 otherwise. When @cgrp->populated_cnt
502 * changes from or to zero, userland is notified that the content of the
503 * interface file has changed. This can be used to detect when @cgrp and
504 * its descendants become populated or empty.
505 */
506static void cgroup_update_populated(struct cgroup *cgrp, bool populated)
507{
508 lockdep_assert_held(&css_set_rwsem);
509
510 do {
511 bool trigger;
512
513 if (populated)
514 trigger = !cgrp->populated_cnt++;
515 else
516 trigger = !--cgrp->populated_cnt;
517
518 if (!trigger)
519 break;
520
521 if (cgrp->populated_kn)
522 kernfs_notify(cgrp->populated_kn);
Tejun Heod51f39b2014-05-16 13:22:48 -0400523 cgrp = cgroup_parent(cgrp);
Tejun Heo842b5972014-04-25 18:28:02 -0400524 } while (cgrp);
525}
526
Paul Menage7717f7b2009-09-23 15:56:22 -0700527/*
528 * hash table for cgroup groups. This improves the performance to find
529 * an existing css_set. This hash doesn't (currently) take into
530 * account cgroups in empty hierarchies.
531 */
Li Zefan472b1052008-04-29 01:00:11 -0700532#define CSS_SET_HASH_BITS 7
Li Zefan0ac801f2013-01-10 11:49:27 +0800533static DEFINE_HASHTABLE(css_set_table, CSS_SET_HASH_BITS);
Li Zefan472b1052008-04-29 01:00:11 -0700534
Li Zefan0ac801f2013-01-10 11:49:27 +0800535static unsigned long css_set_hash(struct cgroup_subsys_state *css[])
Li Zefan472b1052008-04-29 01:00:11 -0700536{
Li Zefan0ac801f2013-01-10 11:49:27 +0800537 unsigned long key = 0UL;
Tejun Heo30159ec2013-06-25 11:53:37 -0700538 struct cgroup_subsys *ss;
539 int i;
Li Zefan472b1052008-04-29 01:00:11 -0700540
Tejun Heo30159ec2013-06-25 11:53:37 -0700541 for_each_subsys(ss, i)
Li Zefan0ac801f2013-01-10 11:49:27 +0800542 key += (unsigned long)css[i];
543 key = (key >> 16) ^ key;
Li Zefan472b1052008-04-29 01:00:11 -0700544
Li Zefan0ac801f2013-01-10 11:49:27 +0800545 return key;
Li Zefan472b1052008-04-29 01:00:11 -0700546}
547
Zefan Lia25eb522014-09-19 16:51:00 +0800548static void put_css_set_locked(struct css_set *cset)
Paul Menageb4f48b62007-10-18 23:39:33 -0700549{
Tejun Heo69d02062013-06-12 21:04:50 -0700550 struct cgrp_cset_link *link, *tmp_link;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400551 struct cgroup_subsys *ss;
552 int ssid;
Tejun Heo5abb8852013-06-12 21:04:49 -0700553
Tejun Heo89c55092014-02-13 06:58:40 -0500554 lockdep_assert_held(&css_set_rwsem);
555
556 if (!atomic_dec_and_test(&cset->refcount))
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700557 return;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700558
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700559 /* This css_set is dead. unlink it and release cgroup refcounts */
Tejun Heo2d8f2432014-04-23 11:13:15 -0400560 for_each_subsys(ss, ssid)
561 list_del(&cset->e_cset_node[ssid]);
Tejun Heo5abb8852013-06-12 21:04:49 -0700562 hash_del(&cset->hlist);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700563 css_set_count--;
564
Tejun Heo69d02062013-06-12 21:04:50 -0700565 list_for_each_entry_safe(link, tmp_link, &cset->cgrp_links, cgrp_link) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700566 struct cgroup *cgrp = link->cgrp;
Tejun Heo5abb8852013-06-12 21:04:49 -0700567
Tejun Heo69d02062013-06-12 21:04:50 -0700568 list_del(&link->cset_link);
569 list_del(&link->cgrp_link);
Li Zefan71b57072013-01-24 14:43:28 +0800570
Tejun Heo96d365e2014-02-13 06:58:40 -0500571 /* @cgrp can't go away while we're holding css_set_rwsem */
Tejun Heo842b5972014-04-25 18:28:02 -0400572 if (list_empty(&cgrp->cset_links)) {
573 cgroup_update_populated(cgrp, false);
Zefan Lia25eb522014-09-19 16:51:00 +0800574 check_for_release(cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700575 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700576
577 kfree(link);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700578 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700579
Tejun Heo5abb8852013-06-12 21:04:49 -0700580 kfree_rcu(cset, rcu_head);
Paul Menage817929e2007-10-18 23:39:36 -0700581}
582
Zefan Lia25eb522014-09-19 16:51:00 +0800583static void put_css_set(struct css_set *cset)
Tejun Heo89c55092014-02-13 06:58:40 -0500584{
585 /*
586 * Ensure that the refcount doesn't hit zero while any readers
587 * can see it. Similar to atomic_dec_and_lock(), but for an
588 * rwlock
589 */
590 if (atomic_add_unless(&cset->refcount, -1, 1))
591 return;
592
593 down_write(&css_set_rwsem);
Zefan Lia25eb522014-09-19 16:51:00 +0800594 put_css_set_locked(cset);
Tejun Heo89c55092014-02-13 06:58:40 -0500595 up_write(&css_set_rwsem);
596}
597
Paul Menage817929e2007-10-18 23:39:36 -0700598/*
599 * refcounted get/put for css_set objects
600 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700601static inline void get_css_set(struct css_set *cset)
Paul Menage817929e2007-10-18 23:39:36 -0700602{
Tejun Heo5abb8852013-06-12 21:04:49 -0700603 atomic_inc(&cset->refcount);
Paul Menage817929e2007-10-18 23:39:36 -0700604}
605
Tejun Heob326f9d2013-06-24 15:21:48 -0700606/**
Paul Menage7717f7b2009-09-23 15:56:22 -0700607 * compare_css_sets - helper function for find_existing_css_set().
Tejun Heo5abb8852013-06-12 21:04:49 -0700608 * @cset: candidate css_set being tested
609 * @old_cset: existing css_set for a task
Paul Menage7717f7b2009-09-23 15:56:22 -0700610 * @new_cgrp: cgroup that's being entered by the task
611 * @template: desired set of css pointers in css_set (pre-calculated)
612 *
Li Zefan6f4b7e62013-07-31 16:18:36 +0800613 * Returns true if "cset" matches "old_cset" except for the hierarchy
Paul Menage7717f7b2009-09-23 15:56:22 -0700614 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
615 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700616static bool compare_css_sets(struct css_set *cset,
617 struct css_set *old_cset,
Paul Menage7717f7b2009-09-23 15:56:22 -0700618 struct cgroup *new_cgrp,
619 struct cgroup_subsys_state *template[])
620{
621 struct list_head *l1, *l2;
622
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400623 /*
624 * On the default hierarchy, there can be csets which are
625 * associated with the same set of cgroups but different csses.
626 * Let's first ensure that csses match.
627 */
628 if (memcmp(template, cset->subsys, sizeof(cset->subsys)))
Paul Menage7717f7b2009-09-23 15:56:22 -0700629 return false;
Paul Menage7717f7b2009-09-23 15:56:22 -0700630
631 /*
632 * Compare cgroup pointers in order to distinguish between
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400633 * different cgroups in hierarchies. As different cgroups may
634 * share the same effective css, this comparison is always
635 * necessary.
Paul Menage7717f7b2009-09-23 15:56:22 -0700636 */
Tejun Heo69d02062013-06-12 21:04:50 -0700637 l1 = &cset->cgrp_links;
638 l2 = &old_cset->cgrp_links;
Paul Menage7717f7b2009-09-23 15:56:22 -0700639 while (1) {
Tejun Heo69d02062013-06-12 21:04:50 -0700640 struct cgrp_cset_link *link1, *link2;
Tejun Heo5abb8852013-06-12 21:04:49 -0700641 struct cgroup *cgrp1, *cgrp2;
Paul Menage7717f7b2009-09-23 15:56:22 -0700642
643 l1 = l1->next;
644 l2 = l2->next;
645 /* See if we reached the end - both lists are equal length. */
Tejun Heo69d02062013-06-12 21:04:50 -0700646 if (l1 == &cset->cgrp_links) {
647 BUG_ON(l2 != &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700648 break;
649 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700650 BUG_ON(l2 == &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700651 }
652 /* Locate the cgroups associated with these links. */
Tejun Heo69d02062013-06-12 21:04:50 -0700653 link1 = list_entry(l1, struct cgrp_cset_link, cgrp_link);
654 link2 = list_entry(l2, struct cgrp_cset_link, cgrp_link);
655 cgrp1 = link1->cgrp;
656 cgrp2 = link2->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700657 /* Hierarchies should be linked in the same order. */
Tejun Heo5abb8852013-06-12 21:04:49 -0700658 BUG_ON(cgrp1->root != cgrp2->root);
Paul Menage7717f7b2009-09-23 15:56:22 -0700659
660 /*
661 * If this hierarchy is the hierarchy of the cgroup
662 * that's changing, then we need to check that this
663 * css_set points to the new cgroup; if it's any other
664 * hierarchy, then this css_set should point to the
665 * same cgroup as the old css_set.
666 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700667 if (cgrp1->root == new_cgrp->root) {
668 if (cgrp1 != new_cgrp)
Paul Menage7717f7b2009-09-23 15:56:22 -0700669 return false;
670 } else {
Tejun Heo5abb8852013-06-12 21:04:49 -0700671 if (cgrp1 != cgrp2)
Paul Menage7717f7b2009-09-23 15:56:22 -0700672 return false;
673 }
674 }
675 return true;
676}
677
Tejun Heob326f9d2013-06-24 15:21:48 -0700678/**
679 * find_existing_css_set - init css array and find the matching css_set
680 * @old_cset: the css_set that we're using before the cgroup transition
681 * @cgrp: the cgroup that we're moving into
682 * @template: out param for the new set of csses, should be clear on entry
Paul Menage817929e2007-10-18 23:39:36 -0700683 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700684static struct css_set *find_existing_css_set(struct css_set *old_cset,
685 struct cgroup *cgrp,
686 struct cgroup_subsys_state *template[])
Paul Menage817929e2007-10-18 23:39:36 -0700687{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400688 struct cgroup_root *root = cgrp->root;
Tejun Heo30159ec2013-06-25 11:53:37 -0700689 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -0700690 struct css_set *cset;
Li Zefan0ac801f2013-01-10 11:49:27 +0800691 unsigned long key;
Tejun Heob326f9d2013-06-24 15:21:48 -0700692 int i;
Paul Menage817929e2007-10-18 23:39:36 -0700693
Ben Blumaae8aab2010-03-10 15:22:07 -0800694 /*
695 * Build the set of subsystem state objects that we want to see in the
696 * new css_set. while subsystems can change globally, the entries here
697 * won't change, so no need for locking.
698 */
Tejun Heo30159ec2013-06-25 11:53:37 -0700699 for_each_subsys(ss, i) {
Tejun Heof392e512014-04-23 11:13:14 -0400700 if (root->subsys_mask & (1UL << i)) {
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400701 /*
702 * @ss is in this hierarchy, so we want the
703 * effective css from @cgrp.
704 */
705 template[i] = cgroup_e_css(cgrp, ss);
Paul Menage817929e2007-10-18 23:39:36 -0700706 } else {
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400707 /*
708 * @ss is not in this hierarchy, so we don't want
709 * to change the css.
710 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700711 template[i] = old_cset->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700712 }
713 }
714
Li Zefan0ac801f2013-01-10 11:49:27 +0800715 key = css_set_hash(template);
Tejun Heo5abb8852013-06-12 21:04:49 -0700716 hash_for_each_possible(css_set_table, cset, hlist, key) {
717 if (!compare_css_sets(cset, old_cset, cgrp, template))
Paul Menage7717f7b2009-09-23 15:56:22 -0700718 continue;
719
720 /* This css_set matches what we need */
Tejun Heo5abb8852013-06-12 21:04:49 -0700721 return cset;
Li Zefan472b1052008-04-29 01:00:11 -0700722 }
Paul Menage817929e2007-10-18 23:39:36 -0700723
724 /* No existing cgroup group matched */
725 return NULL;
726}
727
Tejun Heo69d02062013-06-12 21:04:50 -0700728static void free_cgrp_cset_links(struct list_head *links_to_free)
Paul Menage817929e2007-10-18 23:39:36 -0700729{
Tejun Heo69d02062013-06-12 21:04:50 -0700730 struct cgrp_cset_link *link, *tmp_link;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700731
Tejun Heo69d02062013-06-12 21:04:50 -0700732 list_for_each_entry_safe(link, tmp_link, links_to_free, cset_link) {
733 list_del(&link->cset_link);
Paul Menage817929e2007-10-18 23:39:36 -0700734 kfree(link);
735 }
736}
737
Tejun Heo69d02062013-06-12 21:04:50 -0700738/**
739 * allocate_cgrp_cset_links - allocate cgrp_cset_links
740 * @count: the number of links to allocate
741 * @tmp_links: list_head the allocated links are put on
742 *
743 * Allocate @count cgrp_cset_link structures and chain them on @tmp_links
744 * through ->cset_link. Returns 0 on success or -errno.
Li Zefan36553432008-07-29 22:33:19 -0700745 */
Tejun Heo69d02062013-06-12 21:04:50 -0700746static int allocate_cgrp_cset_links(int count, struct list_head *tmp_links)
Li Zefan36553432008-07-29 22:33:19 -0700747{
Tejun Heo69d02062013-06-12 21:04:50 -0700748 struct cgrp_cset_link *link;
Li Zefan36553432008-07-29 22:33:19 -0700749 int i;
Tejun Heo69d02062013-06-12 21:04:50 -0700750
751 INIT_LIST_HEAD(tmp_links);
752
Li Zefan36553432008-07-29 22:33:19 -0700753 for (i = 0; i < count; i++) {
Tejun Heof4f4be22013-06-12 21:04:51 -0700754 link = kzalloc(sizeof(*link), GFP_KERNEL);
Li Zefan36553432008-07-29 22:33:19 -0700755 if (!link) {
Tejun Heo69d02062013-06-12 21:04:50 -0700756 free_cgrp_cset_links(tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700757 return -ENOMEM;
758 }
Tejun Heo69d02062013-06-12 21:04:50 -0700759 list_add(&link->cset_link, tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700760 }
761 return 0;
762}
763
Li Zefanc12f65d2009-01-07 18:07:42 -0800764/**
765 * link_css_set - a helper function to link a css_set to a cgroup
Tejun Heo69d02062013-06-12 21:04:50 -0700766 * @tmp_links: cgrp_cset_link objects allocated by allocate_cgrp_cset_links()
Tejun Heo5abb8852013-06-12 21:04:49 -0700767 * @cset: the css_set to be linked
Li Zefanc12f65d2009-01-07 18:07:42 -0800768 * @cgrp: the destination cgroup
769 */
Tejun Heo69d02062013-06-12 21:04:50 -0700770static void link_css_set(struct list_head *tmp_links, struct css_set *cset,
771 struct cgroup *cgrp)
Li Zefanc12f65d2009-01-07 18:07:42 -0800772{
Tejun Heo69d02062013-06-12 21:04:50 -0700773 struct cgrp_cset_link *link;
Li Zefanc12f65d2009-01-07 18:07:42 -0800774
Tejun Heo69d02062013-06-12 21:04:50 -0700775 BUG_ON(list_empty(tmp_links));
Tejun Heo6803c002014-04-23 11:13:16 -0400776
777 if (cgroup_on_dfl(cgrp))
778 cset->dfl_cgrp = cgrp;
779
Tejun Heo69d02062013-06-12 21:04:50 -0700780 link = list_first_entry(tmp_links, struct cgrp_cset_link, cset_link);
781 link->cset = cset;
Paul Menage7717f7b2009-09-23 15:56:22 -0700782 link->cgrp = cgrp;
Tejun Heo842b5972014-04-25 18:28:02 -0400783
784 if (list_empty(&cgrp->cset_links))
785 cgroup_update_populated(cgrp, true);
Tejun Heo69d02062013-06-12 21:04:50 -0700786 list_move(&link->cset_link, &cgrp->cset_links);
Tejun Heo842b5972014-04-25 18:28:02 -0400787
Paul Menage7717f7b2009-09-23 15:56:22 -0700788 /*
789 * Always add links to the tail of the list so that the list
790 * is sorted by order of hierarchy creation
791 */
Tejun Heo69d02062013-06-12 21:04:50 -0700792 list_add_tail(&link->cgrp_link, &cset->cgrp_links);
Li Zefanc12f65d2009-01-07 18:07:42 -0800793}
794
Tejun Heob326f9d2013-06-24 15:21:48 -0700795/**
796 * find_css_set - return a new css_set with one cgroup updated
797 * @old_cset: the baseline css_set
798 * @cgrp: the cgroup to be updated
799 *
800 * Return a new css_set that's equivalent to @old_cset, but with @cgrp
801 * substituted into the appropriate hierarchy.
Paul Menage817929e2007-10-18 23:39:36 -0700802 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700803static struct css_set *find_css_set(struct css_set *old_cset,
804 struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700805{
Tejun Heob326f9d2013-06-24 15:21:48 -0700806 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT] = { };
Tejun Heo5abb8852013-06-12 21:04:49 -0700807 struct css_set *cset;
Tejun Heo69d02062013-06-12 21:04:50 -0700808 struct list_head tmp_links;
809 struct cgrp_cset_link *link;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400810 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +0800811 unsigned long key;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400812 int ssid;
Li Zefan472b1052008-04-29 01:00:11 -0700813
Tejun Heob326f9d2013-06-24 15:21:48 -0700814 lockdep_assert_held(&cgroup_mutex);
815
Paul Menage817929e2007-10-18 23:39:36 -0700816 /* First see if we already have a cgroup group that matches
817 * the desired set */
Tejun Heo96d365e2014-02-13 06:58:40 -0500818 down_read(&css_set_rwsem);
Tejun Heo5abb8852013-06-12 21:04:49 -0700819 cset = find_existing_css_set(old_cset, cgrp, template);
820 if (cset)
821 get_css_set(cset);
Tejun Heo96d365e2014-02-13 06:58:40 -0500822 up_read(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700823
Tejun Heo5abb8852013-06-12 21:04:49 -0700824 if (cset)
825 return cset;
Paul Menage817929e2007-10-18 23:39:36 -0700826
Tejun Heof4f4be22013-06-12 21:04:51 -0700827 cset = kzalloc(sizeof(*cset), GFP_KERNEL);
Tejun Heo5abb8852013-06-12 21:04:49 -0700828 if (!cset)
Paul Menage817929e2007-10-18 23:39:36 -0700829 return NULL;
830
Tejun Heo69d02062013-06-12 21:04:50 -0700831 /* Allocate all the cgrp_cset_link objects that we'll need */
Tejun Heo9871bf92013-06-24 15:21:47 -0700832 if (allocate_cgrp_cset_links(cgroup_root_count, &tmp_links) < 0) {
Tejun Heo5abb8852013-06-12 21:04:49 -0700833 kfree(cset);
Paul Menage817929e2007-10-18 23:39:36 -0700834 return NULL;
835 }
836
Tejun Heo5abb8852013-06-12 21:04:49 -0700837 atomic_set(&cset->refcount, 1);
Tejun Heo69d02062013-06-12 21:04:50 -0700838 INIT_LIST_HEAD(&cset->cgrp_links);
Tejun Heo5abb8852013-06-12 21:04:49 -0700839 INIT_LIST_HEAD(&cset->tasks);
Tejun Heoc7561122014-02-25 10:04:01 -0500840 INIT_LIST_HEAD(&cset->mg_tasks);
Tejun Heo1958d2d2014-02-25 10:04:03 -0500841 INIT_LIST_HEAD(&cset->mg_preload_node);
Tejun Heob3dc0942014-02-25 10:04:01 -0500842 INIT_LIST_HEAD(&cset->mg_node);
Tejun Heo5abb8852013-06-12 21:04:49 -0700843 INIT_HLIST_NODE(&cset->hlist);
Paul Menage817929e2007-10-18 23:39:36 -0700844
845 /* Copy the set of subsystem state objects generated in
846 * find_existing_css_set() */
Tejun Heo5abb8852013-06-12 21:04:49 -0700847 memcpy(cset->subsys, template, sizeof(cset->subsys));
Paul Menage817929e2007-10-18 23:39:36 -0700848
Tejun Heo96d365e2014-02-13 06:58:40 -0500849 down_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700850 /* Add reference counts and links from the new css_set. */
Tejun Heo69d02062013-06-12 21:04:50 -0700851 list_for_each_entry(link, &old_cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700852 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700853
Paul Menage7717f7b2009-09-23 15:56:22 -0700854 if (c->root == cgrp->root)
855 c = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700856 link_css_set(&tmp_links, cset, c);
Paul Menage7717f7b2009-09-23 15:56:22 -0700857 }
Paul Menage817929e2007-10-18 23:39:36 -0700858
Tejun Heo69d02062013-06-12 21:04:50 -0700859 BUG_ON(!list_empty(&tmp_links));
Paul Menage817929e2007-10-18 23:39:36 -0700860
Paul Menage817929e2007-10-18 23:39:36 -0700861 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -0700862
Tejun Heo2d8f2432014-04-23 11:13:15 -0400863 /* Add @cset to the hash table */
Tejun Heo5abb8852013-06-12 21:04:49 -0700864 key = css_set_hash(cset->subsys);
865 hash_add(css_set_table, &cset->hlist, key);
Li Zefan472b1052008-04-29 01:00:11 -0700866
Tejun Heo2d8f2432014-04-23 11:13:15 -0400867 for_each_subsys(ss, ssid)
868 list_add_tail(&cset->e_cset_node[ssid],
869 &cset->subsys[ssid]->cgroup->e_csets[ssid]);
870
Tejun Heo96d365e2014-02-13 06:58:40 -0500871 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -0700872
Tejun Heo5abb8852013-06-12 21:04:49 -0700873 return cset;
Paul Menageb4f48b62007-10-18 23:39:33 -0700874}
875
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400876static struct cgroup_root *cgroup_root_from_kf(struct kernfs_root *kf_root)
Paul Menage7717f7b2009-09-23 15:56:22 -0700877{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400878 struct cgroup *root_cgrp = kf_root->kn->priv;
Tejun Heo2bd59d42014-02-11 11:52:49 -0500879
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400880 return root_cgrp->root;
Tejun Heo2bd59d42014-02-11 11:52:49 -0500881}
882
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400883static int cgroup_init_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -0500884{
885 int id;
886
887 lockdep_assert_held(&cgroup_mutex);
888
Tejun Heo985ed672014-03-19 10:23:53 -0400889 id = idr_alloc_cyclic(&cgroup_hierarchy_idr, root, 0, 0, GFP_KERNEL);
Tejun Heof2e85d52014-02-11 11:52:49 -0500890 if (id < 0)
891 return id;
892
893 root->hierarchy_id = id;
894 return 0;
895}
896
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400897static void cgroup_exit_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -0500898{
899 lockdep_assert_held(&cgroup_mutex);
900
901 if (root->hierarchy_id) {
902 idr_remove(&cgroup_hierarchy_idr, root->hierarchy_id);
903 root->hierarchy_id = 0;
904 }
905}
906
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400907static void cgroup_free_root(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -0500908{
909 if (root) {
Chen Hanxiaod0f702e2015-04-23 07:57:33 -0400910 /* hierarchy ID should already have been released */
Tejun Heof2e85d52014-02-11 11:52:49 -0500911 WARN_ON_ONCE(root->hierarchy_id);
912
913 idr_destroy(&root->cgroup_idr);
914 kfree(root);
915 }
916}
917
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400918static void cgroup_destroy_root(struct cgroup_root *root)
Tejun Heo59f52962014-02-11 11:52:49 -0500919{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400920 struct cgroup *cgrp = &root->cgrp;
Tejun Heof2e85d52014-02-11 11:52:49 -0500921 struct cgrp_cset_link *link, *tmp_link;
Tejun Heof2e85d52014-02-11 11:52:49 -0500922
Tejun Heo2bd59d42014-02-11 11:52:49 -0500923 mutex_lock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -0500924
Tejun Heo776f02f2014-02-12 09:29:50 -0500925 BUG_ON(atomic_read(&root->nr_cgrps));
Tejun Heod5c419b2014-05-16 13:22:48 -0400926 BUG_ON(!list_empty(&cgrp->self.children));
Tejun Heof2e85d52014-02-11 11:52:49 -0500927
Tejun Heof2e85d52014-02-11 11:52:49 -0500928 /* Rebind all subsystems back to the default hierarchy */
Tejun Heof392e512014-04-23 11:13:14 -0400929 rebind_subsystems(&cgrp_dfl_root, root->subsys_mask);
Tejun Heof2e85d52014-02-11 11:52:49 -0500930
931 /*
932 * Release all the links from cset_links to this hierarchy's
933 * root cgroup
934 */
Tejun Heo96d365e2014-02-13 06:58:40 -0500935 down_write(&css_set_rwsem);
Tejun Heof2e85d52014-02-11 11:52:49 -0500936
937 list_for_each_entry_safe(link, tmp_link, &cgrp->cset_links, cset_link) {
938 list_del(&link->cset_link);
939 list_del(&link->cgrp_link);
940 kfree(link);
941 }
Tejun Heo96d365e2014-02-13 06:58:40 -0500942 up_write(&css_set_rwsem);
Tejun Heof2e85d52014-02-11 11:52:49 -0500943
944 if (!list_empty(&root->root_list)) {
945 list_del(&root->root_list);
946 cgroup_root_count--;
947 }
948
949 cgroup_exit_root_id(root);
950
951 mutex_unlock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -0500952
Tejun Heo2bd59d42014-02-11 11:52:49 -0500953 kernfs_destroy_root(root->kf_root);
Tejun Heof2e85d52014-02-11 11:52:49 -0500954 cgroup_free_root(root);
955}
956
Tejun Heoceb6a082014-02-25 10:04:02 -0500957/* look up cgroup associated with given css_set on the specified hierarchy */
958static struct cgroup *cset_cgroup_from_root(struct css_set *cset,
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400959 struct cgroup_root *root)
Paul Menage7717f7b2009-09-23 15:56:22 -0700960{
Paul Menage7717f7b2009-09-23 15:56:22 -0700961 struct cgroup *res = NULL;
962
Tejun Heo96d365e2014-02-13 06:58:40 -0500963 lockdep_assert_held(&cgroup_mutex);
964 lockdep_assert_held(&css_set_rwsem);
965
Tejun Heo5abb8852013-06-12 21:04:49 -0700966 if (cset == &init_css_set) {
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400967 res = &root->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700968 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700969 struct cgrp_cset_link *link;
970
971 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -0700972 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -0700973
Paul Menage7717f7b2009-09-23 15:56:22 -0700974 if (c->root == root) {
975 res = c;
976 break;
977 }
978 }
979 }
Tejun Heo96d365e2014-02-13 06:58:40 -0500980
Paul Menage7717f7b2009-09-23 15:56:22 -0700981 BUG_ON(!res);
982 return res;
983}
984
985/*
Tejun Heoceb6a082014-02-25 10:04:02 -0500986 * Return the cgroup for "task" from the given hierarchy. Must be
987 * called with cgroup_mutex and css_set_rwsem held.
988 */
989static struct cgroup *task_cgroup_from_root(struct task_struct *task,
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400990 struct cgroup_root *root)
Tejun Heoceb6a082014-02-25 10:04:02 -0500991{
992 /*
993 * No need to lock the task - since we hold cgroup_mutex the
994 * task can't change groups, so the only thing that can happen
995 * is that it exits and its css is set back to init_css_set.
996 */
997 return cset_cgroup_from_root(task_css_set(task), root);
998}
999
1000/*
Paul Menageddbcc7e2007-10-18 23:39:30 -07001001 * A task must hold cgroup_mutex to modify cgroups.
1002 *
1003 * Any task can increment and decrement the count field without lock.
1004 * So in general, code holding cgroup_mutex can't rely on the count
1005 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -08001006 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -07001007 * means that no tasks are currently attached, therefore there is no
1008 * way a task attached to that cgroup can fork (the other way to
1009 * increment the count). So code holding cgroup_mutex can safely
1010 * assume that if the count is zero, it will stay zero. Similarly, if
1011 * a task holds cgroup_mutex on a cgroup with zero count, it
1012 * knows that the cgroup won't be removed, as cgroup_rmdir()
1013 * needs that mutex.
1014 *
Paul Menageddbcc7e2007-10-18 23:39:30 -07001015 * A cgroup can only be deleted if both its 'count' of using tasks
1016 * is zero, and its list of 'children' cgroups is empty. Since all
1017 * tasks in the system use _some_ cgroup, and since there is always at
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001018 * least one task in the system (init, pid == 1), therefore, root cgroup
Paul Menageddbcc7e2007-10-18 23:39:30 -07001019 * always has either children cgroups and/or using tasks. So we don't
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001020 * need a special hack to ensure that root cgroup cannot be deleted.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001021 *
1022 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -08001023 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -07001024 */
1025
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001026static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001027static struct kernfs_syscall_ops cgroup_kf_syscall_ops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001028static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -07001029
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05001030static char *cgroup_file_name(struct cgroup *cgrp, const struct cftype *cft,
1031 char *buf)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001032{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05001033 if (cft->ss && !(cft->flags & CFTYPE_NO_PREFIX) &&
1034 !(cgrp->root->flags & CGRP_ROOT_NOPREFIX))
1035 snprintf(buf, CGROUP_FILE_NAME_MAX, "%s.%s",
1036 cft->ss->name, cft->name);
1037 else
1038 strncpy(buf, cft->name, CGROUP_FILE_NAME_MAX);
1039 return buf;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001040}
1041
Tejun Heof2e85d52014-02-11 11:52:49 -05001042/**
1043 * cgroup_file_mode - deduce file mode of a control file
1044 * @cft: the control file in question
1045 *
1046 * returns cft->mode if ->mode is not 0
1047 * returns S_IRUGO|S_IWUSR if it has both a read and a write handler
1048 * returns S_IRUGO if it has only a read handler
1049 * returns S_IWUSR if it has only a write hander
1050 */
1051static umode_t cgroup_file_mode(const struct cftype *cft)
Li Zefan65dff752013-03-01 15:01:56 +08001052{
Tejun Heof2e85d52014-02-11 11:52:49 -05001053 umode_t mode = 0;
Li Zefan65dff752013-03-01 15:01:56 +08001054
Tejun Heof2e85d52014-02-11 11:52:49 -05001055 if (cft->mode)
1056 return cft->mode;
1057
1058 if (cft->read_u64 || cft->read_s64 || cft->seq_show)
1059 mode |= S_IRUGO;
1060
Tejun Heo6770c642014-05-13 12:16:21 -04001061 if (cft->write_u64 || cft->write_s64 || cft->write)
Tejun Heof2e85d52014-02-11 11:52:49 -05001062 mode |= S_IWUSR;
1063
1064 return mode;
Li Zefan65dff752013-03-01 15:01:56 +08001065}
1066
Tejun Heo59f52962014-02-11 11:52:49 -05001067static void cgroup_get(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001068{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001069 WARN_ON_ONCE(cgroup_is_dead(cgrp));
Tejun Heo9d755d32014-05-14 09:15:02 -04001070 css_get(&cgrp->self);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001071}
1072
Li Zefanaa323622014-09-04 14:43:38 +08001073static bool cgroup_tryget(struct cgroup *cgrp)
1074{
1075 return css_tryget(&cgrp->self);
1076}
1077
Tejun Heo59f52962014-02-11 11:52:49 -05001078static void cgroup_put(struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001079{
Tejun Heo9d755d32014-05-14 09:15:02 -04001080 css_put(&cgrp->self);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001081}
1082
Tejun Heoa9746d82014-05-13 12:19:22 -04001083/**
Tejun Heo0f060de2014-11-18 02:49:50 -05001084 * cgroup_calc_child_subsys_mask - calculate child_subsys_mask
Tejun Heoaf0ba672014-07-08 18:02:57 -04001085 * @cgrp: the target cgroup
Tejun Heo0f060de2014-11-18 02:49:50 -05001086 * @subtree_control: the new subtree_control mask to consider
Tejun Heoaf0ba672014-07-08 18:02:57 -04001087 *
1088 * On the default hierarchy, a subsystem may request other subsystems to be
1089 * enabled together through its ->depends_on mask. In such cases, more
1090 * subsystems than specified in "cgroup.subtree_control" may be enabled.
1091 *
Tejun Heo0f060de2014-11-18 02:49:50 -05001092 * This function calculates which subsystems need to be enabled if
1093 * @subtree_control is to be applied to @cgrp. The returned mask is always
1094 * a superset of @subtree_control and follows the usual hierarchy rules.
Tejun Heoaf0ba672014-07-08 18:02:57 -04001095 */
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001096static unsigned long cgroup_calc_child_subsys_mask(struct cgroup *cgrp,
1097 unsigned long subtree_control)
Tejun Heo667c2492014-07-08 18:02:56 -04001098{
Tejun Heoaf0ba672014-07-08 18:02:57 -04001099 struct cgroup *parent = cgroup_parent(cgrp);
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001100 unsigned long cur_ss_mask = subtree_control;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001101 struct cgroup_subsys *ss;
1102 int ssid;
1103
1104 lockdep_assert_held(&cgroup_mutex);
1105
Tejun Heo0f060de2014-11-18 02:49:50 -05001106 if (!cgroup_on_dfl(cgrp))
1107 return cur_ss_mask;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001108
1109 while (true) {
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001110 unsigned long new_ss_mask = cur_ss_mask;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001111
Aleksa Saraia966a4e2015-06-06 10:02:15 +10001112 for_each_subsys_which(ss, ssid, &cur_ss_mask)
1113 new_ss_mask |= ss->depends_on;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001114
1115 /*
1116 * Mask out subsystems which aren't available. This can
1117 * happen only if some depended-upon subsystems were bound
1118 * to non-default hierarchies.
1119 */
1120 if (parent)
1121 new_ss_mask &= parent->child_subsys_mask;
1122 else
1123 new_ss_mask &= cgrp->root->subsys_mask;
1124
1125 if (new_ss_mask == cur_ss_mask)
1126 break;
1127 cur_ss_mask = new_ss_mask;
1128 }
1129
Tejun Heo0f060de2014-11-18 02:49:50 -05001130 return cur_ss_mask;
1131}
1132
1133/**
1134 * cgroup_refresh_child_subsys_mask - update child_subsys_mask
1135 * @cgrp: the target cgroup
1136 *
1137 * Update @cgrp->child_subsys_mask according to the current
1138 * @cgrp->subtree_control using cgroup_calc_child_subsys_mask().
1139 */
1140static void cgroup_refresh_child_subsys_mask(struct cgroup *cgrp)
1141{
1142 cgrp->child_subsys_mask =
1143 cgroup_calc_child_subsys_mask(cgrp, cgrp->subtree_control);
Tejun Heo667c2492014-07-08 18:02:56 -04001144}
1145
Tejun Heoa9746d82014-05-13 12:19:22 -04001146/**
1147 * cgroup_kn_unlock - unlocking helper for cgroup kernfs methods
1148 * @kn: the kernfs_node being serviced
1149 *
1150 * This helper undoes cgroup_kn_lock_live() and should be invoked before
1151 * the method finishes if locking succeeded. Note that once this function
1152 * returns the cgroup returned by cgroup_kn_lock_live() may become
1153 * inaccessible any time. If the caller intends to continue to access the
1154 * cgroup, it should pin it before invoking this function.
1155 */
1156static void cgroup_kn_unlock(struct kernfs_node *kn)
1157{
1158 struct cgroup *cgrp;
1159
1160 if (kernfs_type(kn) == KERNFS_DIR)
1161 cgrp = kn->priv;
1162 else
1163 cgrp = kn->parent->priv;
1164
1165 mutex_unlock(&cgroup_mutex);
Tejun Heoa9746d82014-05-13 12:19:22 -04001166
1167 kernfs_unbreak_active_protection(kn);
1168 cgroup_put(cgrp);
1169}
1170
1171/**
1172 * cgroup_kn_lock_live - locking helper for cgroup kernfs methods
1173 * @kn: the kernfs_node being serviced
1174 *
1175 * This helper is to be used by a cgroup kernfs method currently servicing
1176 * @kn. It breaks the active protection, performs cgroup locking and
1177 * verifies that the associated cgroup is alive. Returns the cgroup if
1178 * alive; otherwise, %NULL. A successful return should be undone by a
1179 * matching cgroup_kn_unlock() invocation.
1180 *
1181 * Any cgroup kernfs method implementation which requires locking the
1182 * associated cgroup should use this helper. It avoids nesting cgroup
1183 * locking under kernfs active protection and allows all kernfs operations
1184 * including self-removal.
1185 */
1186static struct cgroup *cgroup_kn_lock_live(struct kernfs_node *kn)
1187{
1188 struct cgroup *cgrp;
1189
1190 if (kernfs_type(kn) == KERNFS_DIR)
1191 cgrp = kn->priv;
1192 else
1193 cgrp = kn->parent->priv;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001194
1195 /*
Tejun Heo01f64742014-05-13 12:19:23 -04001196 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoa9746d82014-05-13 12:19:22 -04001197 * active_ref. cgroup liveliness check alone provides enough
1198 * protection against removal. Ensure @cgrp stays accessible and
1199 * break the active_ref protection.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001200 */
Li Zefanaa323622014-09-04 14:43:38 +08001201 if (!cgroup_tryget(cgrp))
1202 return NULL;
Tejun Heoa9746d82014-05-13 12:19:22 -04001203 kernfs_break_active_protection(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001204
Tejun Heoa9746d82014-05-13 12:19:22 -04001205 mutex_lock(&cgroup_mutex);
1206
1207 if (!cgroup_is_dead(cgrp))
1208 return cgrp;
1209
1210 cgroup_kn_unlock(kn);
1211 return NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001212}
1213
Li Zefan2739d3c2013-01-21 18:18:33 +08001214static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001215{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001216 char name[CGROUP_FILE_NAME_MAX];
Paul Menageddbcc7e2007-10-18 23:39:30 -07001217
Tejun Heo01f64742014-05-13 12:19:23 -04001218 lockdep_assert_held(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001219 kernfs_remove_by_name(cgrp->kn, cgroup_file_name(cgrp, cft, name));
Tejun Heo05ef1d72012-04-01 12:09:56 -07001220}
1221
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001222/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07001223 * cgroup_clear_dir - remove subsys files in a cgroup directory
Tejun Heo8f891402013-06-28 16:24:10 -07001224 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001225 * @subsys_mask: mask of the subsystem ids whose files should be removed
1226 */
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001227static void cgroup_clear_dir(struct cgroup *cgrp, unsigned long subsys_mask)
Tejun Heo05ef1d72012-04-01 12:09:56 -07001228{
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001229 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07001230 int i;
Tejun Heo05ef1d72012-04-01 12:09:56 -07001231
Tejun Heob420ba72013-07-12 12:34:02 -07001232 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -05001233 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -07001234
Tejun Heo69dfa002014-05-04 15:09:13 -04001235 if (!(subsys_mask & (1 << i)))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001236 continue;
Tejun Heo0adb0702014-02-12 09:29:48 -05001237 list_for_each_entry(cfts, &ss->cfts, node)
1238 cgroup_addrm_files(cgrp, cfts, false);
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001239 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001240}
1241
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001242static int rebind_subsystems(struct cgroup_root *dst_root,
1243 unsigned long ss_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001244{
Tejun Heo30159ec2013-06-25 11:53:37 -07001245 struct cgroup_subsys *ss;
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001246 unsigned long tmp_ss_mask;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001247 int ssid, i, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001248
Tejun Heoace2bee2014-02-11 11:52:47 -05001249 lockdep_assert_held(&cgroup_mutex);
Ben Blumaae8aab2010-03-10 15:22:07 -08001250
Aleksa Saraia966a4e2015-06-06 10:02:15 +10001251 for_each_subsys_which(ss, ssid, &ss_mask) {
Tejun Heo7fd8c562014-04-23 11:13:16 -04001252 /* if @ss has non-root csses attached to it, can't move */
1253 if (css_next_child(NULL, cgroup_css(&ss->root->cgrp, ss)))
Tejun Heo3ed80a62014-02-08 10:36:58 -05001254 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001255
Tejun Heo5df36032014-03-19 10:23:54 -04001256 /* can't move between two non-dummy roots either */
Tejun Heo7fd8c562014-04-23 11:13:16 -04001257 if (ss->root != &cgrp_dfl_root && dst_root != &cgrp_dfl_root)
Tejun Heo5df36032014-03-19 10:23:54 -04001258 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001259 }
1260
Tejun Heo5533e012014-05-14 19:33:07 -04001261 /* skip creating root files on dfl_root for inhibited subsystems */
1262 tmp_ss_mask = ss_mask;
1263 if (dst_root == &cgrp_dfl_root)
1264 tmp_ss_mask &= ~cgrp_dfl_root_inhibit_ss_mask;
1265
1266 ret = cgroup_populate_dir(&dst_root->cgrp, tmp_ss_mask);
Tejun Heoa2dd4242014-03-19 10:23:55 -04001267 if (ret) {
1268 if (dst_root != &cgrp_dfl_root)
Tejun Heo5df36032014-03-19 10:23:54 -04001269 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001270
Tejun Heoa2dd4242014-03-19 10:23:55 -04001271 /*
1272 * Rebinding back to the default root is not allowed to
1273 * fail. Using both default and non-default roots should
1274 * be rare. Moving subsystems back and forth even more so.
1275 * Just warn about it and continue.
1276 */
1277 if (cgrp_dfl_root_visible) {
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001278 pr_warn("failed to create files (%d) while rebinding 0x%lx to default root\n",
Jianyu Zhana2a1f9e2014-04-25 18:28:03 -04001279 ret, ss_mask);
Joe Perchesed3d2612014-04-25 18:28:03 -04001280 pr_warn("you may retry by moving them to a different hierarchy and unbinding\n");
Tejun Heoa2dd4242014-03-19 10:23:55 -04001281 }
Tejun Heo5df36032014-03-19 10:23:54 -04001282 }
Tejun Heo31261212013-06-28 17:07:30 -07001283
1284 /*
1285 * Nothing can fail from this point on. Remove files for the
1286 * removed subsystems and rebind each subsystem.
1287 */
Aleksa Saraia966a4e2015-06-06 10:02:15 +10001288 for_each_subsys_which(ss, ssid, &ss_mask)
1289 cgroup_clear_dir(&ss->root->cgrp, 1 << ssid);
Tejun Heo31261212013-06-28 17:07:30 -07001290
Aleksa Saraia966a4e2015-06-06 10:02:15 +10001291 for_each_subsys_which(ss, ssid, &ss_mask) {
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001292 struct cgroup_root *src_root;
Tejun Heo5df36032014-03-19 10:23:54 -04001293 struct cgroup_subsys_state *css;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001294 struct css_set *cset;
Tejun Heo30159ec2013-06-25 11:53:37 -07001295
Tejun Heo5df36032014-03-19 10:23:54 -04001296 src_root = ss->root;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001297 css = cgroup_css(&src_root->cgrp, ss);
Tejun Heo73e80ed2013-08-13 11:01:55 -04001298
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001299 WARN_ON(!css || cgroup_css(&dst_root->cgrp, ss));
Tejun Heoa8a648c2013-06-24 15:21:47 -07001300
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001301 RCU_INIT_POINTER(src_root->cgrp.subsys[ssid], NULL);
1302 rcu_assign_pointer(dst_root->cgrp.subsys[ssid], css);
Tejun Heo5df36032014-03-19 10:23:54 -04001303 ss->root = dst_root;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001304 css->cgroup = &dst_root->cgrp;
Tejun Heoa8a648c2013-06-24 15:21:47 -07001305
Tejun Heo2d8f2432014-04-23 11:13:15 -04001306 down_write(&css_set_rwsem);
1307 hash_for_each(css_set_table, i, cset, hlist)
1308 list_move_tail(&cset->e_cset_node[ss->id],
1309 &dst_root->cgrp.e_csets[ss->id]);
1310 up_write(&css_set_rwsem);
1311
Tejun Heof392e512014-04-23 11:13:14 -04001312 src_root->subsys_mask &= ~(1 << ssid);
Tejun Heo667c2492014-07-08 18:02:56 -04001313 src_root->cgrp.subtree_control &= ~(1 << ssid);
1314 cgroup_refresh_child_subsys_mask(&src_root->cgrp);
Tejun Heof392e512014-04-23 11:13:14 -04001315
Tejun Heobd53d612014-04-23 11:13:16 -04001316 /* default hierarchy doesn't enable controllers by default */
Tejun Heof392e512014-04-23 11:13:14 -04001317 dst_root->subsys_mask |= 1 << ssid;
Tejun Heo667c2492014-07-08 18:02:56 -04001318 if (dst_root != &cgrp_dfl_root) {
1319 dst_root->cgrp.subtree_control |= 1 << ssid;
1320 cgroup_refresh_child_subsys_mask(&dst_root->cgrp);
1321 }
Tejun Heo73e80ed2013-08-13 11:01:55 -04001322
Tejun Heo5df36032014-03-19 10:23:54 -04001323 if (ss->bind)
1324 ss->bind(css);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001325 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001326
Tejun Heoa2dd4242014-03-19 10:23:55 -04001327 kernfs_activate(dst_root->cgrp.kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001328 return 0;
1329}
1330
Tejun Heo2bd59d42014-02-11 11:52:49 -05001331static int cgroup_show_options(struct seq_file *seq,
1332 struct kernfs_root *kf_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001333{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001334 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001335 struct cgroup_subsys *ss;
Tejun Heob85d2042013-12-06 15:11:57 -05001336 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001337
Tejun Heob85d2042013-12-06 15:11:57 -05001338 for_each_subsys(ss, ssid)
Tejun Heof392e512014-04-23 11:13:14 -04001339 if (root->subsys_mask & (1 << ssid))
Tejun Heob85d2042013-12-06 15:11:57 -05001340 seq_printf(seq, ",%s", ss->name);
Tejun Heo93438622013-04-14 20:15:25 -07001341 if (root->flags & CGRP_ROOT_NOPREFIX)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001342 seq_puts(seq, ",noprefix");
Tejun Heo93438622013-04-14 20:15:25 -07001343 if (root->flags & CGRP_ROOT_XATTR)
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001344 seq_puts(seq, ",xattr");
Tejun Heo69e943b2014-02-08 10:36:58 -05001345
1346 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001347 if (strlen(root->release_agent_path))
1348 seq_printf(seq, ",release_agent=%s", root->release_agent_path);
Tejun Heo69e943b2014-02-08 10:36:58 -05001349 spin_unlock(&release_agent_path_lock);
1350
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001351 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags))
Daniel Lezcano97978e62010-10-27 15:33:35 -07001352 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001353 if (strlen(root->name))
1354 seq_printf(seq, ",name=%s", root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001355 return 0;
1356}
1357
1358struct cgroup_sb_opts {
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001359 unsigned long subsys_mask;
Tejun Heo69dfa002014-05-04 15:09:13 -04001360 unsigned int flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001361 char *release_agent;
Tejun Heo2260e7f2012-11-19 08:13:38 -08001362 bool cpuset_clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001363 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001364 /* User explicitly requested empty subsystem */
1365 bool none;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001366};
1367
Ben Blumcf5d5942010-03-10 15:22:09 -08001368static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001369{
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001370 char *token, *o = data;
1371 bool all_ss = false, one_ss = false;
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001372 unsigned long mask = -1UL;
Tejun Heo30159ec2013-06-25 11:53:37 -07001373 struct cgroup_subsys *ss;
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001374 int nr_opts = 0;
Tejun Heo30159ec2013-06-25 11:53:37 -07001375 int i;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001376
1377#ifdef CONFIG_CPUSETS
Tejun Heo69dfa002014-05-04 15:09:13 -04001378 mask = ~(1U << cpuset_cgrp_id);
Li Zefanf9ab5b52009-06-17 16:26:33 -07001379#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001380
Paul Menagec6d57f32009-09-23 15:56:19 -07001381 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001382
1383 while ((token = strsep(&o, ",")) != NULL) {
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001384 nr_opts++;
1385
Paul Menageddbcc7e2007-10-18 23:39:30 -07001386 if (!*token)
1387 return -EINVAL;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001388 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001389 /* Explicitly have no subsystems */
1390 opts->none = true;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001391 continue;
1392 }
1393 if (!strcmp(token, "all")) {
1394 /* Mutually exclusive option 'all' + subsystem name */
1395 if (one_ss)
1396 return -EINVAL;
1397 all_ss = true;
1398 continue;
1399 }
Tejun Heo873fe092013-04-14 20:15:26 -07001400 if (!strcmp(token, "__DEVEL__sane_behavior")) {
1401 opts->flags |= CGRP_ROOT_SANE_BEHAVIOR;
1402 continue;
1403 }
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001404 if (!strcmp(token, "noprefix")) {
Tejun Heo93438622013-04-14 20:15:25 -07001405 opts->flags |= CGRP_ROOT_NOPREFIX;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001406 continue;
1407 }
1408 if (!strcmp(token, "clone_children")) {
Tejun Heo2260e7f2012-11-19 08:13:38 -08001409 opts->cpuset_clone_children = true;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001410 continue;
1411 }
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001412 if (!strcmp(token, "xattr")) {
Tejun Heo93438622013-04-14 20:15:25 -07001413 opts->flags |= CGRP_ROOT_XATTR;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001414 continue;
1415 }
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001416 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001417 /* Specifying two release agents is forbidden */
1418 if (opts->release_agent)
1419 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001420 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001421 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001422 if (!opts->release_agent)
1423 return -ENOMEM;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001424 continue;
1425 }
1426 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001427 const char *name = token + 5;
1428 /* Can't specify an empty name */
1429 if (!strlen(name))
1430 return -EINVAL;
1431 /* Must match [\w.-]+ */
1432 for (i = 0; i < strlen(name); i++) {
1433 char c = name[i];
1434 if (isalnum(c))
1435 continue;
1436 if ((c == '.') || (c == '-') || (c == '_'))
1437 continue;
1438 return -EINVAL;
1439 }
1440 /* Specifying two names is forbidden */
1441 if (opts->name)
1442 return -EINVAL;
1443 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001444 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001445 GFP_KERNEL);
1446 if (!opts->name)
1447 return -ENOMEM;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001448
1449 continue;
1450 }
1451
Tejun Heo30159ec2013-06-25 11:53:37 -07001452 for_each_subsys(ss, i) {
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001453 if (strcmp(token, ss->name))
1454 continue;
1455 if (ss->disabled)
1456 continue;
1457
1458 /* Mutually exclusive option 'all' + subsystem name */
1459 if (all_ss)
1460 return -EINVAL;
Tejun Heo69dfa002014-05-04 15:09:13 -04001461 opts->subsys_mask |= (1 << i);
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001462 one_ss = true;
1463
1464 break;
1465 }
1466 if (i == CGROUP_SUBSYS_COUNT)
1467 return -ENOENT;
1468 }
1469
Tejun Heo873fe092013-04-14 20:15:26 -07001470 if (opts->flags & CGRP_ROOT_SANE_BEHAVIOR) {
Joe Perchesed3d2612014-04-25 18:28:03 -04001471 pr_warn("sane_behavior: this is still under development and its behaviors will change, proceed at your own risk\n");
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001472 if (nr_opts != 1) {
1473 pr_err("sane_behavior: no other mount options allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001474 return -EINVAL;
1475 }
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001476 return 0;
Tejun Heo873fe092013-04-14 20:15:26 -07001477 }
1478
Li Zefanf9ab5b52009-06-17 16:26:33 -07001479 /*
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001480 * If the 'all' option was specified select all the subsystems,
1481 * otherwise if 'none', 'name=' and a subsystem name options were
1482 * not specified, let's default to 'all'
1483 */
1484 if (all_ss || (!one_ss && !opts->none && !opts->name))
1485 for_each_subsys(ss, i)
1486 if (!ss->disabled)
1487 opts->subsys_mask |= (1 << i);
1488
1489 /*
1490 * We either have to specify by name or by subsystems. (So all
1491 * empty hierarchies must have a name).
1492 */
1493 if (!opts->subsys_mask && !opts->name)
1494 return -EINVAL;
1495
1496 /*
Li Zefanf9ab5b52009-06-17 16:26:33 -07001497 * Option noprefix was introduced just for backward compatibility
1498 * with the old cpuset, so we allow noprefix only if mounting just
1499 * the cpuset subsystem.
1500 */
Tejun Heo93438622013-04-14 20:15:25 -07001501 if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask))
Li Zefanf9ab5b52009-06-17 16:26:33 -07001502 return -EINVAL;
1503
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001504 /* Can't specify "none" and some subsystems */
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001505 if (opts->subsys_mask && opts->none)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001506 return -EINVAL;
1507
Paul Menageddbcc7e2007-10-18 23:39:30 -07001508 return 0;
1509}
1510
Tejun Heo2bd59d42014-02-11 11:52:49 -05001511static int cgroup_remount(struct kernfs_root *kf_root, int *flags, char *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001512{
1513 int ret = 0;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001514 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001515 struct cgroup_sb_opts opts;
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001516 unsigned long added_mask, removed_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001517
Tejun Heoaa6ec292014-07-09 10:08:08 -04001518 if (root == &cgrp_dfl_root) {
1519 pr_err("remount is not allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001520 return -EINVAL;
1521 }
1522
Paul Menageddbcc7e2007-10-18 23:39:30 -07001523 mutex_lock(&cgroup_mutex);
1524
1525 /* See what subsystems are wanted */
1526 ret = parse_cgroupfs_options(data, &opts);
1527 if (ret)
1528 goto out_unlock;
1529
Tejun Heof392e512014-04-23 11:13:14 -04001530 if (opts.subsys_mask != root->subsys_mask || opts.release_agent)
Joe Perchesed3d2612014-04-25 18:28:03 -04001531 pr_warn("option changes via remount are deprecated (pid=%d comm=%s)\n",
Jianyu Zhana2a1f9e2014-04-25 18:28:03 -04001532 task_tgid_nr(current), current->comm);
Tejun Heo8b5a5a92012-04-01 12:09:54 -07001533
Tejun Heof392e512014-04-23 11:13:14 -04001534 added_mask = opts.subsys_mask & ~root->subsys_mask;
1535 removed_mask = root->subsys_mask & ~opts.subsys_mask;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001536
Ben Blumcf5d5942010-03-10 15:22:09 -08001537 /* Don't allow flags or name to change at remount */
Tejun Heo7450e902014-07-09 10:08:07 -04001538 if ((opts.flags ^ root->flags) ||
Ben Blumcf5d5942010-03-10 15:22:09 -08001539 (opts.name && strcmp(opts.name, root->name))) {
Tejun Heo69dfa002014-05-04 15:09:13 -04001540 pr_err("option or name mismatch, new: 0x%x \"%s\", old: 0x%x \"%s\"\n",
Tejun Heo7450e902014-07-09 10:08:07 -04001541 opts.flags, opts.name ?: "", root->flags, root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001542 ret = -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001543 goto out_unlock;
1544 }
1545
Tejun Heof172e672013-06-28 17:07:30 -07001546 /* remounting is not allowed for populated hierarchies */
Tejun Heod5c419b2014-05-16 13:22:48 -04001547 if (!list_empty(&root->cgrp.self.children)) {
Tejun Heof172e672013-06-28 17:07:30 -07001548 ret = -EBUSY;
Li Zefan0670e082009-04-02 16:57:30 -07001549 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001550 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001551
Tejun Heo5df36032014-03-19 10:23:54 -04001552 ret = rebind_subsystems(root, added_mask);
Tejun Heo31261212013-06-28 17:07:30 -07001553 if (ret)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001554 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001555
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001556 rebind_subsystems(&cgrp_dfl_root, removed_mask);
Tejun Heo5df36032014-03-19 10:23:54 -04001557
Tejun Heo69e943b2014-02-08 10:36:58 -05001558 if (opts.release_agent) {
1559 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001560 strcpy(root->release_agent_path, opts.release_agent);
Tejun Heo69e943b2014-02-08 10:36:58 -05001561 spin_unlock(&release_agent_path_lock);
1562 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001563 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001564 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001565 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001566 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001567 return ret;
1568}
1569
Tejun Heoafeb0f92014-02-13 06:58:39 -05001570/*
1571 * To reduce the fork() overhead for systems that are not actually using
1572 * their cgroups capability, we don't maintain the lists running through
1573 * each css_set to its tasks until we see the list actually used - in other
1574 * words after the first mount.
1575 */
1576static bool use_task_css_set_links __read_mostly;
1577
1578static void cgroup_enable_task_cg_lists(void)
1579{
1580 struct task_struct *p, *g;
1581
Tejun Heo96d365e2014-02-13 06:58:40 -05001582 down_write(&css_set_rwsem);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001583
1584 if (use_task_css_set_links)
1585 goto out_unlock;
1586
1587 use_task_css_set_links = true;
1588
1589 /*
1590 * We need tasklist_lock because RCU is not safe against
1591 * while_each_thread(). Besides, a forking task that has passed
1592 * cgroup_post_fork() without seeing use_task_css_set_links = 1
1593 * is not guaranteed to have its child immediately visible in the
1594 * tasklist if we walk through it with RCU.
1595 */
1596 read_lock(&tasklist_lock);
1597 do_each_thread(g, p) {
Tejun Heoafeb0f92014-02-13 06:58:39 -05001598 WARN_ON_ONCE(!list_empty(&p->cg_list) ||
1599 task_css_set(p) != &init_css_set);
1600
1601 /*
1602 * We should check if the process is exiting, otherwise
1603 * it will race with cgroup_exit() in that the list
1604 * entry won't be deleted though the process has exited.
Tejun Heof153ad12014-02-25 09:56:49 -05001605 * Do it while holding siglock so that we don't end up
1606 * racing against cgroup_exit().
Tejun Heoafeb0f92014-02-13 06:58:39 -05001607 */
Tejun Heof153ad12014-02-25 09:56:49 -05001608 spin_lock_irq(&p->sighand->siglock);
Tejun Heoeaf797a2014-02-25 10:04:03 -05001609 if (!(p->flags & PF_EXITING)) {
1610 struct css_set *cset = task_css_set(p);
1611
1612 list_add(&p->cg_list, &cset->tasks);
1613 get_css_set(cset);
1614 }
Tejun Heof153ad12014-02-25 09:56:49 -05001615 spin_unlock_irq(&p->sighand->siglock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001616 } while_each_thread(g, p);
1617 read_unlock(&tasklist_lock);
1618out_unlock:
Tejun Heo96d365e2014-02-13 06:58:40 -05001619 up_write(&css_set_rwsem);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001620}
Paul Menageddbcc7e2007-10-18 23:39:30 -07001621
Paul Menagecc31edc2008-10-18 20:28:04 -07001622static void init_cgroup_housekeeping(struct cgroup *cgrp)
1623{
Tejun Heo2d8f2432014-04-23 11:13:15 -04001624 struct cgroup_subsys *ss;
1625 int ssid;
1626
Tejun Heod5c419b2014-05-16 13:22:48 -04001627 INIT_LIST_HEAD(&cgrp->self.sibling);
1628 INIT_LIST_HEAD(&cgrp->self.children);
Tejun Heo69d02062013-06-12 21:04:50 -07001629 INIT_LIST_HEAD(&cgrp->cset_links);
Ben Blum72a8cb32009-09-23 15:56:27 -07001630 INIT_LIST_HEAD(&cgrp->pidlists);
1631 mutex_init(&cgrp->pidlist_mutex);
Tejun Heo9d800df2014-05-14 09:15:00 -04001632 cgrp->self.cgroup = cgrp;
Tejun Heo184faf32014-05-16 13:22:51 -04001633 cgrp->self.flags |= CSS_ONLINE;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001634
1635 for_each_subsys(ss, ssid)
1636 INIT_LIST_HEAD(&cgrp->e_csets[ssid]);
Tejun Heof8f22e52014-04-23 11:13:16 -04001637
1638 init_waitqueue_head(&cgrp->offline_waitq);
Zefan Li971ff492014-09-18 16:06:19 +08001639 INIT_WORK(&cgrp->release_agent_work, cgroup_release_agent);
Paul Menagecc31edc2008-10-18 20:28:04 -07001640}
Paul Menagec6d57f32009-09-23 15:56:19 -07001641
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001642static void init_cgroup_root(struct cgroup_root *root,
Tejun Heo172a2c062014-03-19 10:23:53 -04001643 struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001644{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001645 struct cgroup *cgrp = &root->cgrp;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001646
Paul Menageddbcc7e2007-10-18 23:39:30 -07001647 INIT_LIST_HEAD(&root->root_list);
Tejun Heo3c9c8252014-02-12 09:29:50 -05001648 atomic_set(&root->nr_cgrps, 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001649 cgrp->root = root;
Paul Menagecc31edc2008-10-18 20:28:04 -07001650 init_cgroup_housekeeping(cgrp);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08001651 idr_init(&root->cgroup_idr);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001652
Paul Menagec6d57f32009-09-23 15:56:19 -07001653 root->flags = opts->flags;
1654 if (opts->release_agent)
1655 strcpy(root->release_agent_path, opts->release_agent);
1656 if (opts->name)
1657 strcpy(root->name, opts->name);
Tejun Heo2260e7f2012-11-19 08:13:38 -08001658 if (opts->cpuset_clone_children)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001659 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001660}
1661
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001662static int cgroup_setup_root(struct cgroup_root *root, unsigned long ss_mask)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001663{
Tejun Heod427dfe2014-02-11 11:52:48 -05001664 LIST_HEAD(tmp_links);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001665 struct cgroup *root_cgrp = &root->cgrp;
Tejun Heoa14c6872014-07-15 11:05:09 -04001666 struct cftype *base_files;
Tejun Heod427dfe2014-02-11 11:52:48 -05001667 struct css_set *cset;
Tejun Heod427dfe2014-02-11 11:52:48 -05001668 int i, ret;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001669
Tejun Heod427dfe2014-02-11 11:52:48 -05001670 lockdep_assert_held(&cgroup_mutex);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001671
Tejun Heo6fa49182014-05-04 15:09:13 -04001672 ret = cgroup_idr_alloc(&root->cgroup_idr, root_cgrp, 1, 2, GFP_NOWAIT);
Tejun Heod427dfe2014-02-11 11:52:48 -05001673 if (ret < 0)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001674 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001675 root_cgrp->id = ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001676
Tejun Heo2aad2a82014-09-24 13:31:50 -04001677 ret = percpu_ref_init(&root_cgrp->self.refcnt, css_release, 0,
1678 GFP_KERNEL);
Tejun Heo9d755d32014-05-14 09:15:02 -04001679 if (ret)
1680 goto out;
1681
Tejun Heod427dfe2014-02-11 11:52:48 -05001682 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05001683 * We're accessing css_set_count without locking css_set_rwsem here,
Tejun Heod427dfe2014-02-11 11:52:48 -05001684 * but that's OK - it can only be increased by someone holding
1685 * cgroup_lock, and that's us. The worst that can happen is that we
1686 * have some link structures left over
1687 */
1688 ret = allocate_cgrp_cset_links(css_set_count, &tmp_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001689 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001690 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001691
Tejun Heo985ed672014-03-19 10:23:53 -04001692 ret = cgroup_init_root_id(root);
Tejun Heod427dfe2014-02-11 11:52:48 -05001693 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001694 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001695
Tejun Heo2bd59d42014-02-11 11:52:49 -05001696 root->kf_root = kernfs_create_root(&cgroup_kf_syscall_ops,
1697 KERNFS_ROOT_CREATE_DEACTIVATED,
1698 root_cgrp);
1699 if (IS_ERR(root->kf_root)) {
1700 ret = PTR_ERR(root->kf_root);
1701 goto exit_root_id;
1702 }
1703 root_cgrp->kn = root->kf_root->kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001704
Tejun Heoa14c6872014-07-15 11:05:09 -04001705 if (root == &cgrp_dfl_root)
1706 base_files = cgroup_dfl_base_files;
1707 else
1708 base_files = cgroup_legacy_base_files;
1709
1710 ret = cgroup_addrm_files(root_cgrp, base_files, true);
Tejun Heod427dfe2014-02-11 11:52:48 -05001711 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001712 goto destroy_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001713
Tejun Heo5df36032014-03-19 10:23:54 -04001714 ret = rebind_subsystems(root, ss_mask);
Tejun Heod427dfe2014-02-11 11:52:48 -05001715 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001716 goto destroy_root;
Al Viro0df6a632010-12-21 13:29:29 -05001717
Tejun Heod427dfe2014-02-11 11:52:48 -05001718 /*
1719 * There must be no failure case after here, since rebinding takes
1720 * care of subsystems' refcounts, which are explicitly dropped in
1721 * the failure exit path.
1722 */
1723 list_add(&root->root_list, &cgroup_roots);
1724 cgroup_root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001725
Tejun Heod427dfe2014-02-11 11:52:48 -05001726 /*
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001727 * Link the root cgroup in this hierarchy into all the css_set
Tejun Heod427dfe2014-02-11 11:52:48 -05001728 * objects.
1729 */
Tejun Heo96d365e2014-02-13 06:58:40 -05001730 down_write(&css_set_rwsem);
Tejun Heod427dfe2014-02-11 11:52:48 -05001731 hash_for_each(css_set_table, i, cset, hlist)
1732 link_css_set(&tmp_links, cset, root_cgrp);
Tejun Heo96d365e2014-02-13 06:58:40 -05001733 up_write(&css_set_rwsem);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001734
Tejun Heod5c419b2014-05-16 13:22:48 -04001735 BUG_ON(!list_empty(&root_cgrp->self.children));
Tejun Heo3c9c8252014-02-12 09:29:50 -05001736 BUG_ON(atomic_read(&root->nr_cgrps) != 1);
Tejun Heod427dfe2014-02-11 11:52:48 -05001737
Tejun Heo2bd59d42014-02-11 11:52:49 -05001738 kernfs_activate(root_cgrp->kn);
Tejun Heod427dfe2014-02-11 11:52:48 -05001739 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001740 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001741
Tejun Heo2bd59d42014-02-11 11:52:49 -05001742destroy_root:
1743 kernfs_destroy_root(root->kf_root);
1744 root->kf_root = NULL;
1745exit_root_id:
Tejun Heod427dfe2014-02-11 11:52:48 -05001746 cgroup_exit_root_id(root);
Tejun Heo9d755d32014-05-14 09:15:02 -04001747cancel_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04001748 percpu_ref_exit(&root_cgrp->self.refcnt);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001749out:
Tejun Heod427dfe2014-02-11 11:52:48 -05001750 free_cgrp_cset_links(&tmp_links);
1751 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001752}
1753
Al Virof7e83572010-07-26 13:23:11 +04001754static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001755 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001756 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001757{
Li Zefan3a32bd72014-06-30 11:50:59 +08001758 struct super_block *pinned_sb = NULL;
Li Zefan970317a2014-06-30 11:49:58 +08001759 struct cgroup_subsys *ss;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001760 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001761 struct cgroup_sb_opts opts;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001762 struct dentry *dentry;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001763 int ret;
Li Zefan970317a2014-06-30 11:49:58 +08001764 int i;
Li Zefanc6b3d5b2014-04-04 17:14:41 +08001765 bool new_sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001766
1767 /*
Tejun Heo56fde9e2014-02-13 06:58:38 -05001768 * The first time anyone tries to mount a cgroup, enable the list
1769 * linking each css_set to its tasks and fix up all existing tasks.
Paul Menagec6d57f32009-09-23 15:56:19 -07001770 */
Tejun Heo56fde9e2014-02-13 06:58:38 -05001771 if (!use_task_css_set_links)
1772 cgroup_enable_task_cg_lists();
Li Zefane37a06f2014-04-17 13:53:08 +08001773
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001774 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001775
Paul Menageddbcc7e2007-10-18 23:39:30 -07001776 /* First find the desired set of subsystems */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001777 ret = parse_cgroupfs_options(data, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001778 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001779 goto out_unlock;
Tejun Heoa015edd2014-05-14 09:15:00 -04001780
Tejun Heo2bd59d42014-02-11 11:52:49 -05001781 /* look for a matching existing root */
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001782 if (opts.flags & CGRP_ROOT_SANE_BEHAVIOR) {
Tejun Heoa2dd4242014-03-19 10:23:55 -04001783 cgrp_dfl_root_visible = true;
1784 root = &cgrp_dfl_root;
1785 cgroup_get(&root->cgrp);
1786 ret = 0;
1787 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001788 }
1789
Li Zefan970317a2014-06-30 11:49:58 +08001790 /*
1791 * Destruction of cgroup root is asynchronous, so subsystems may
1792 * still be dying after the previous unmount. Let's drain the
1793 * dying subsystems. We just need to ensure that the ones
1794 * unmounted previously finish dying and don't care about new ones
1795 * starting. Testing ref liveliness is good enough.
1796 */
1797 for_each_subsys(ss, i) {
1798 if (!(opts.subsys_mask & (1 << i)) ||
1799 ss->root == &cgrp_dfl_root)
1800 continue;
1801
1802 if (!percpu_ref_tryget_live(&ss->root->cgrp.self.refcnt)) {
1803 mutex_unlock(&cgroup_mutex);
1804 msleep(10);
1805 ret = restart_syscall();
1806 goto out_free;
1807 }
1808 cgroup_put(&ss->root->cgrp);
1809 }
1810
Tejun Heo985ed672014-03-19 10:23:53 -04001811 for_each_root(root) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05001812 bool name_match = false;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001813
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001814 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04001815 continue;
Paul Menagec6d57f32009-09-23 15:56:19 -07001816
Paul Menage817929e2007-10-18 23:39:36 -07001817 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05001818 * If we asked for a name then it must match. Also, if
1819 * name matches but sybsys_mask doesn't, we should fail.
1820 * Remember whether name matched.
Paul Menage817929e2007-10-18 23:39:36 -07001821 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05001822 if (opts.name) {
1823 if (strcmp(opts.name, root->name))
1824 continue;
1825 name_match = true;
1826 }
Tejun Heo31261212013-06-28 17:07:30 -07001827
1828 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05001829 * If we asked for subsystems (or explicitly for no
1830 * subsystems) then they must match.
Tejun Heo31261212013-06-28 17:07:30 -07001831 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05001832 if ((opts.subsys_mask || opts.none) &&
Tejun Heof392e512014-04-23 11:13:14 -04001833 (opts.subsys_mask != root->subsys_mask)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05001834 if (!name_match)
1835 continue;
1836 ret = -EBUSY;
1837 goto out_unlock;
1838 }
Tejun Heo873fe092013-04-14 20:15:26 -07001839
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001840 if (root->flags ^ opts.flags)
1841 pr_warn("new mount options do not match the existing superblock, will be ignored\n");
Tejun Heo2bd59d42014-02-11 11:52:49 -05001842
Tejun Heo776f02f2014-02-12 09:29:50 -05001843 /*
Li Zefan3a32bd72014-06-30 11:50:59 +08001844 * We want to reuse @root whose lifetime is governed by its
1845 * ->cgrp. Let's check whether @root is alive and keep it
1846 * that way. As cgroup_kill_sb() can happen anytime, we
1847 * want to block it by pinning the sb so that @root doesn't
1848 * get killed before mount is complete.
1849 *
1850 * With the sb pinned, tryget_live can reliably indicate
1851 * whether @root can be reused. If it's being killed,
1852 * drain it. We can use wait_queue for the wait but this
1853 * path is super cold. Let's just sleep a bit and retry.
Tejun Heo776f02f2014-02-12 09:29:50 -05001854 */
Li Zefan3a32bd72014-06-30 11:50:59 +08001855 pinned_sb = kernfs_pin_sb(root->kf_root, NULL);
1856 if (IS_ERR(pinned_sb) ||
1857 !percpu_ref_tryget_live(&root->cgrp.self.refcnt)) {
Tejun Heo776f02f2014-02-12 09:29:50 -05001858 mutex_unlock(&cgroup_mutex);
Li Zefan3a32bd72014-06-30 11:50:59 +08001859 if (!IS_ERR_OR_NULL(pinned_sb))
1860 deactivate_super(pinned_sb);
Tejun Heo776f02f2014-02-12 09:29:50 -05001861 msleep(10);
Tejun Heoa015edd2014-05-14 09:15:00 -04001862 ret = restart_syscall();
1863 goto out_free;
Tejun Heo776f02f2014-02-12 09:29:50 -05001864 }
1865
1866 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001867 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001868 }
1869
Tejun Heo172a2c062014-03-19 10:23:53 -04001870 /*
1871 * No such thing, create a new one. name= matching without subsys
1872 * specification is allowed for already existing hierarchies but we
1873 * can't create new one without subsys specification.
1874 */
1875 if (!opts.subsys_mask && !opts.none) {
1876 ret = -EINVAL;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001877 goto out_unlock;
1878 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001879
Tejun Heo172a2c062014-03-19 10:23:53 -04001880 root = kzalloc(sizeof(*root), GFP_KERNEL);
1881 if (!root) {
1882 ret = -ENOMEM;
1883 goto out_unlock;
1884 }
1885
1886 init_cgroup_root(root, &opts);
1887
Tejun Heo35585572014-02-13 06:58:38 -05001888 ret = cgroup_setup_root(root, opts.subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001889 if (ret)
1890 cgroup_free_root(root);
1891
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001892out_unlock:
Tejun Heoe25e2cb2011-12-12 18:12:21 -08001893 mutex_unlock(&cgroup_mutex);
Tejun Heoa015edd2014-05-14 09:15:00 -04001894out_free:
Paul Menagec6d57f32009-09-23 15:56:19 -07001895 kfree(opts.release_agent);
1896 kfree(opts.name);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001897
Tejun Heo2bd59d42014-02-11 11:52:49 -05001898 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001899 return ERR_PTR(ret);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001900
Jianyu Zhanc9482a52014-04-26 15:40:28 +08001901 dentry = kernfs_mount(fs_type, flags, root->kf_root,
1902 CGROUP_SUPER_MAGIC, &new_sb);
Li Zefanc6b3d5b2014-04-04 17:14:41 +08001903 if (IS_ERR(dentry) || !new_sb)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001904 cgroup_put(&root->cgrp);
Li Zefan3a32bd72014-06-30 11:50:59 +08001905
1906 /*
1907 * If @pinned_sb, we're reusing an existing root and holding an
1908 * extra ref on its sb. Mount is complete. Put the extra ref.
1909 */
1910 if (pinned_sb) {
1911 WARN_ON(new_sb);
1912 deactivate_super(pinned_sb);
1913 }
1914
Tejun Heo2bd59d42014-02-11 11:52:49 -05001915 return dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001916}
1917
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09001918static void cgroup_kill_sb(struct super_block *sb)
1919{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001920 struct kernfs_root *kf_root = kernfs_root_from_sb(sb);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001921 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001922
Tejun Heo9d755d32014-05-14 09:15:02 -04001923 /*
1924 * If @root doesn't have any mounts or children, start killing it.
1925 * This prevents new mounts by disabling percpu_ref_tryget_live().
1926 * cgroup_mount() may wait for @root's release.
Li Zefan1f779fb2014-06-04 16:48:15 +08001927 *
1928 * And don't kill the default root.
Tejun Heo9d755d32014-05-14 09:15:02 -04001929 */
Johannes Weiner3c606d32015-01-22 10:19:43 -05001930 if (!list_empty(&root->cgrp.self.children) ||
Li Zefan1f779fb2014-06-04 16:48:15 +08001931 root == &cgrp_dfl_root)
Tejun Heo9d755d32014-05-14 09:15:02 -04001932 cgroup_put(&root->cgrp);
1933 else
1934 percpu_ref_kill(&root->cgrp.self.refcnt);
1935
Tejun Heo2bd59d42014-02-11 11:52:49 -05001936 kernfs_kill_sb(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001937}
1938
1939static struct file_system_type cgroup_fs_type = {
1940 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04001941 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001942 .kill_sb = cgroup_kill_sb,
1943};
1944
Li Zefana043e3b2008-02-23 15:24:09 -08001945/**
Tejun Heo913ffdb2013-07-11 16:34:48 -07001946 * task_cgroup_path - cgroup path of a task in the first cgroup hierarchy
Tejun Heo857a2be2013-04-14 20:50:08 -07001947 * @task: target task
Tejun Heo857a2be2013-04-14 20:50:08 -07001948 * @buf: the buffer to write the path into
1949 * @buflen: the length of the buffer
1950 *
Tejun Heo913ffdb2013-07-11 16:34:48 -07001951 * Determine @task's cgroup on the first (the one with the lowest non-zero
1952 * hierarchy_id) cgroup hierarchy and copy its path into @buf. This
1953 * function grabs cgroup_mutex and shouldn't be used inside locks used by
1954 * cgroup controller callbacks.
1955 *
Tejun Heoe61734c2014-02-12 09:29:50 -05001956 * Return value is the same as kernfs_path().
Tejun Heo857a2be2013-04-14 20:50:08 -07001957 */
Tejun Heoe61734c2014-02-12 09:29:50 -05001958char *task_cgroup_path(struct task_struct *task, char *buf, size_t buflen)
Tejun Heo857a2be2013-04-14 20:50:08 -07001959{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001960 struct cgroup_root *root;
Tejun Heo913ffdb2013-07-11 16:34:48 -07001961 struct cgroup *cgrp;
Tejun Heoe61734c2014-02-12 09:29:50 -05001962 int hierarchy_id = 1;
1963 char *path = NULL;
Tejun Heo857a2be2013-04-14 20:50:08 -07001964
1965 mutex_lock(&cgroup_mutex);
Tejun Heo96d365e2014-02-13 06:58:40 -05001966 down_read(&css_set_rwsem);
Tejun Heo857a2be2013-04-14 20:50:08 -07001967
Tejun Heo913ffdb2013-07-11 16:34:48 -07001968 root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id);
1969
Tejun Heo857a2be2013-04-14 20:50:08 -07001970 if (root) {
1971 cgrp = task_cgroup_from_root(task, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05001972 path = cgroup_path(cgrp, buf, buflen);
Tejun Heo913ffdb2013-07-11 16:34:48 -07001973 } else {
1974 /* if no hierarchy exists, everyone is in "/" */
Tejun Heoe61734c2014-02-12 09:29:50 -05001975 if (strlcpy(buf, "/", buflen) < buflen)
1976 path = buf;
Tejun Heo857a2be2013-04-14 20:50:08 -07001977 }
1978
Tejun Heo96d365e2014-02-13 06:58:40 -05001979 up_read(&css_set_rwsem);
Tejun Heo857a2be2013-04-14 20:50:08 -07001980 mutex_unlock(&cgroup_mutex);
Tejun Heoe61734c2014-02-12 09:29:50 -05001981 return path;
Tejun Heo857a2be2013-04-14 20:50:08 -07001982}
Tejun Heo913ffdb2013-07-11 16:34:48 -07001983EXPORT_SYMBOL_GPL(task_cgroup_path);
Tejun Heo857a2be2013-04-14 20:50:08 -07001984
Tejun Heob3dc0942014-02-25 10:04:01 -05001985/* used to track tasks and other necessary states during migration */
Tejun Heo2f7ee562011-12-12 18:12:21 -08001986struct cgroup_taskset {
Tejun Heob3dc0942014-02-25 10:04:01 -05001987 /* the src and dst cset list running through cset->mg_node */
1988 struct list_head src_csets;
1989 struct list_head dst_csets;
1990
1991 /*
1992 * Fields for cgroup_taskset_*() iteration.
1993 *
1994 * Before migration is committed, the target migration tasks are on
1995 * ->mg_tasks of the csets on ->src_csets. After, on ->mg_tasks of
1996 * the csets on ->dst_csets. ->csets point to either ->src_csets
1997 * or ->dst_csets depending on whether migration is committed.
1998 *
1999 * ->cur_csets and ->cur_task point to the current task position
2000 * during iteration.
2001 */
2002 struct list_head *csets;
2003 struct css_set *cur_cset;
2004 struct task_struct *cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002005};
2006
2007/**
2008 * cgroup_taskset_first - reset taskset and return the first task
2009 * @tset: taskset of interest
2010 *
2011 * @tset iteration is initialized and the first task is returned.
2012 */
2013struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
2014{
Tejun Heob3dc0942014-02-25 10:04:01 -05002015 tset->cur_cset = list_first_entry(tset->csets, struct css_set, mg_node);
2016 tset->cur_task = NULL;
2017
2018 return cgroup_taskset_next(tset);
Tejun Heo2f7ee562011-12-12 18:12:21 -08002019}
Tejun Heo2f7ee562011-12-12 18:12:21 -08002020
2021/**
2022 * cgroup_taskset_next - iterate to the next task in taskset
2023 * @tset: taskset of interest
2024 *
2025 * Return the next task in @tset. Iteration must have been initialized
2026 * with cgroup_taskset_first().
2027 */
2028struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
2029{
Tejun Heob3dc0942014-02-25 10:04:01 -05002030 struct css_set *cset = tset->cur_cset;
2031 struct task_struct *task = tset->cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002032
Tejun Heob3dc0942014-02-25 10:04:01 -05002033 while (&cset->mg_node != tset->csets) {
2034 if (!task)
2035 task = list_first_entry(&cset->mg_tasks,
2036 struct task_struct, cg_list);
2037 else
2038 task = list_next_entry(task, cg_list);
Tejun Heo2f7ee562011-12-12 18:12:21 -08002039
Tejun Heob3dc0942014-02-25 10:04:01 -05002040 if (&task->cg_list != &cset->mg_tasks) {
2041 tset->cur_cset = cset;
2042 tset->cur_task = task;
2043 return task;
2044 }
2045
2046 cset = list_next_entry(cset, mg_node);
2047 task = NULL;
2048 }
2049
2050 return NULL;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002051}
Tejun Heo2f7ee562011-12-12 18:12:21 -08002052
2053/**
Ben Blum74a11662011-05-26 16:25:20 -07002054 * cgroup_task_migrate - move a task from one cgroup to another.
Fabian Frederick60106942014-05-05 20:08:13 +02002055 * @old_cgrp: the cgroup @tsk is being migrated from
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002056 * @tsk: the task being migrated
2057 * @new_cset: the new css_set @tsk is being attached to
Ben Blum74a11662011-05-26 16:25:20 -07002058 *
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002059 * Must be called with cgroup_mutex, threadgroup and css_set_rwsem locked.
Ben Blum74a11662011-05-26 16:25:20 -07002060 */
Tejun Heo5abb8852013-06-12 21:04:49 -07002061static void cgroup_task_migrate(struct cgroup *old_cgrp,
2062 struct task_struct *tsk,
2063 struct css_set *new_cset)
Ben Blum74a11662011-05-26 16:25:20 -07002064{
Tejun Heo5abb8852013-06-12 21:04:49 -07002065 struct css_set *old_cset;
Ben Blum74a11662011-05-26 16:25:20 -07002066
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002067 lockdep_assert_held(&cgroup_mutex);
2068 lockdep_assert_held(&css_set_rwsem);
2069
Ben Blum74a11662011-05-26 16:25:20 -07002070 /*
Tejun Heod59cfc02015-05-13 16:35:17 -04002071 * We are synchronized through cgroup_threadgroup_rwsem against
2072 * PF_EXITING setting such that we can't race against cgroup_exit()
2073 * changing the css_set to init_css_set and dropping the old one.
Ben Blum74a11662011-05-26 16:25:20 -07002074 */
Frederic Weisbeckerc84cdf72011-12-21 20:03:18 +01002075 WARN_ON_ONCE(tsk->flags & PF_EXITING);
Tejun Heoa8ad8052013-06-21 15:52:04 -07002076 old_cset = task_css_set(tsk);
Ben Blum74a11662011-05-26 16:25:20 -07002077
Tejun Heob3dc0942014-02-25 10:04:01 -05002078 get_css_set(new_cset);
Tejun Heo5abb8852013-06-12 21:04:49 -07002079 rcu_assign_pointer(tsk->cgroups, new_cset);
Ben Blum74a11662011-05-26 16:25:20 -07002080
Tejun Heo1b9aba42014-03-19 17:43:21 -04002081 /*
2082 * Use move_tail so that cgroup_taskset_first() still returns the
2083 * leader after migration. This works because cgroup_migrate()
2084 * ensures that the dst_cset of the leader is the first on the
2085 * tset's dst_csets list.
2086 */
2087 list_move_tail(&tsk->cg_list, &new_cset->mg_tasks);
Ben Blum74a11662011-05-26 16:25:20 -07002088
2089 /*
Tejun Heo5abb8852013-06-12 21:04:49 -07002090 * We just gained a reference on old_cset by taking it from the
2091 * task. As trading it for new_cset is protected by cgroup_mutex,
2092 * we're safe to drop it here; it will be freed under RCU.
Ben Blum74a11662011-05-26 16:25:20 -07002093 */
Zefan Lia25eb522014-09-19 16:51:00 +08002094 put_css_set_locked(old_cset);
Ben Blum74a11662011-05-26 16:25:20 -07002095}
2096
Li Zefana043e3b2008-02-23 15:24:09 -08002097/**
Tejun Heo1958d2d2014-02-25 10:04:03 -05002098 * cgroup_migrate_finish - cleanup after attach
2099 * @preloaded_csets: list of preloaded css_sets
Ben Blum74a11662011-05-26 16:25:20 -07002100 *
Tejun Heo1958d2d2014-02-25 10:04:03 -05002101 * Undo cgroup_migrate_add_src() and cgroup_migrate_prepare_dst(). See
2102 * those functions for details.
Ben Blum74a11662011-05-26 16:25:20 -07002103 */
Tejun Heo1958d2d2014-02-25 10:04:03 -05002104static void cgroup_migrate_finish(struct list_head *preloaded_csets)
Ben Blum74a11662011-05-26 16:25:20 -07002105{
Tejun Heo1958d2d2014-02-25 10:04:03 -05002106 struct css_set *cset, *tmp_cset;
2107
2108 lockdep_assert_held(&cgroup_mutex);
2109
2110 down_write(&css_set_rwsem);
2111 list_for_each_entry_safe(cset, tmp_cset, preloaded_csets, mg_preload_node) {
2112 cset->mg_src_cgrp = NULL;
2113 cset->mg_dst_cset = NULL;
2114 list_del_init(&cset->mg_preload_node);
Zefan Lia25eb522014-09-19 16:51:00 +08002115 put_css_set_locked(cset);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002116 }
2117 up_write(&css_set_rwsem);
2118}
2119
2120/**
2121 * cgroup_migrate_add_src - add a migration source css_set
2122 * @src_cset: the source css_set to add
2123 * @dst_cgrp: the destination cgroup
2124 * @preloaded_csets: list of preloaded css_sets
2125 *
2126 * Tasks belonging to @src_cset are about to be migrated to @dst_cgrp. Pin
2127 * @src_cset and add it to @preloaded_csets, which should later be cleaned
2128 * up by cgroup_migrate_finish().
2129 *
Tejun Heod59cfc02015-05-13 16:35:17 -04002130 * This function may be called without holding cgroup_threadgroup_rwsem
2131 * even if the target is a process. Threads may be created and destroyed
2132 * but as long as cgroup_mutex is not dropped, no new css_set can be put
2133 * into play and the preloaded css_sets are guaranteed to cover all
2134 * migrations.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002135 */
2136static void cgroup_migrate_add_src(struct css_set *src_cset,
2137 struct cgroup *dst_cgrp,
2138 struct list_head *preloaded_csets)
2139{
2140 struct cgroup *src_cgrp;
2141
2142 lockdep_assert_held(&cgroup_mutex);
2143 lockdep_assert_held(&css_set_rwsem);
2144
2145 src_cgrp = cset_cgroup_from_root(src_cset, dst_cgrp->root);
2146
Tejun Heo1958d2d2014-02-25 10:04:03 -05002147 if (!list_empty(&src_cset->mg_preload_node))
2148 return;
2149
2150 WARN_ON(src_cset->mg_src_cgrp);
2151 WARN_ON(!list_empty(&src_cset->mg_tasks));
2152 WARN_ON(!list_empty(&src_cset->mg_node));
2153
2154 src_cset->mg_src_cgrp = src_cgrp;
2155 get_css_set(src_cset);
2156 list_add(&src_cset->mg_preload_node, preloaded_csets);
2157}
2158
2159/**
2160 * cgroup_migrate_prepare_dst - prepare destination css_sets for migration
Tejun Heof817de92014-04-23 11:13:16 -04002161 * @dst_cgrp: the destination cgroup (may be %NULL)
Tejun Heo1958d2d2014-02-25 10:04:03 -05002162 * @preloaded_csets: list of preloaded source css_sets
2163 *
2164 * Tasks are about to be moved to @dst_cgrp and all the source css_sets
2165 * have been preloaded to @preloaded_csets. This function looks up and
Tejun Heof817de92014-04-23 11:13:16 -04002166 * pins all destination css_sets, links each to its source, and append them
2167 * to @preloaded_csets. If @dst_cgrp is %NULL, the destination of each
2168 * source css_set is assumed to be its cgroup on the default hierarchy.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002169 *
2170 * This function must be called after cgroup_migrate_add_src() has been
2171 * called on each migration source css_set. After migration is performed
2172 * using cgroup_migrate(), cgroup_migrate_finish() must be called on
2173 * @preloaded_csets.
2174 */
2175static int cgroup_migrate_prepare_dst(struct cgroup *dst_cgrp,
2176 struct list_head *preloaded_csets)
2177{
2178 LIST_HEAD(csets);
Tejun Heof817de92014-04-23 11:13:16 -04002179 struct css_set *src_cset, *tmp_cset;
Tejun Heo1958d2d2014-02-25 10:04:03 -05002180
2181 lockdep_assert_held(&cgroup_mutex);
2182
Tejun Heof8f22e52014-04-23 11:13:16 -04002183 /*
2184 * Except for the root, child_subsys_mask must be zero for a cgroup
2185 * with tasks so that child cgroups don't compete against tasks.
2186 */
Tejun Heod51f39b2014-05-16 13:22:48 -04002187 if (dst_cgrp && cgroup_on_dfl(dst_cgrp) && cgroup_parent(dst_cgrp) &&
Tejun Heof8f22e52014-04-23 11:13:16 -04002188 dst_cgrp->child_subsys_mask)
2189 return -EBUSY;
2190
Tejun Heo1958d2d2014-02-25 10:04:03 -05002191 /* look up the dst cset for each src cset and link it to src */
Tejun Heof817de92014-04-23 11:13:16 -04002192 list_for_each_entry_safe(src_cset, tmp_cset, preloaded_csets, mg_preload_node) {
Tejun Heo1958d2d2014-02-25 10:04:03 -05002193 struct css_set *dst_cset;
2194
Tejun Heof817de92014-04-23 11:13:16 -04002195 dst_cset = find_css_set(src_cset,
2196 dst_cgrp ?: src_cset->dfl_cgrp);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002197 if (!dst_cset)
2198 goto err;
2199
2200 WARN_ON_ONCE(src_cset->mg_dst_cset || dst_cset->mg_dst_cset);
Tejun Heof817de92014-04-23 11:13:16 -04002201
2202 /*
2203 * If src cset equals dst, it's noop. Drop the src.
2204 * cgroup_migrate() will skip the cset too. Note that we
2205 * can't handle src == dst as some nodes are used by both.
2206 */
2207 if (src_cset == dst_cset) {
2208 src_cset->mg_src_cgrp = NULL;
2209 list_del_init(&src_cset->mg_preload_node);
Zefan Lia25eb522014-09-19 16:51:00 +08002210 put_css_set(src_cset);
2211 put_css_set(dst_cset);
Tejun Heof817de92014-04-23 11:13:16 -04002212 continue;
2213 }
2214
Tejun Heo1958d2d2014-02-25 10:04:03 -05002215 src_cset->mg_dst_cset = dst_cset;
2216
2217 if (list_empty(&dst_cset->mg_preload_node))
2218 list_add(&dst_cset->mg_preload_node, &csets);
2219 else
Zefan Lia25eb522014-09-19 16:51:00 +08002220 put_css_set(dst_cset);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002221 }
2222
Tejun Heof817de92014-04-23 11:13:16 -04002223 list_splice_tail(&csets, preloaded_csets);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002224 return 0;
2225err:
2226 cgroup_migrate_finish(&csets);
2227 return -ENOMEM;
2228}
2229
2230/**
2231 * cgroup_migrate - migrate a process or task to a cgroup
2232 * @cgrp: the destination cgroup
2233 * @leader: the leader of the process or the task to migrate
2234 * @threadgroup: whether @leader points to the whole process or a single task
2235 *
2236 * Migrate a process or task denoted by @leader to @cgrp. If migrating a
Tejun Heod59cfc02015-05-13 16:35:17 -04002237 * process, the caller must be holding cgroup_threadgroup_rwsem. The
Tejun Heo1958d2d2014-02-25 10:04:03 -05002238 * caller is also responsible for invoking cgroup_migrate_add_src() and
2239 * cgroup_migrate_prepare_dst() on the targets before invoking this
2240 * function and following up with cgroup_migrate_finish().
2241 *
2242 * As long as a controller's ->can_attach() doesn't fail, this function is
2243 * guaranteed to succeed. This means that, excluding ->can_attach()
2244 * failure, when migrating multiple targets, the success or failure can be
2245 * decided for all targets by invoking group_migrate_prepare_dst() before
2246 * actually starting migrating.
2247 */
2248static int cgroup_migrate(struct cgroup *cgrp, struct task_struct *leader,
2249 bool threadgroup)
Ben Blum74a11662011-05-26 16:25:20 -07002250{
Tejun Heob3dc0942014-02-25 10:04:01 -05002251 struct cgroup_taskset tset = {
2252 .src_csets = LIST_HEAD_INIT(tset.src_csets),
2253 .dst_csets = LIST_HEAD_INIT(tset.dst_csets),
2254 .csets = &tset.src_csets,
2255 };
Tejun Heo1c6727a2013-12-06 15:11:56 -05002256 struct cgroup_subsys_state *css, *failed_css = NULL;
Tejun Heob3dc0942014-02-25 10:04:01 -05002257 struct css_set *cset, *tmp_cset;
2258 struct task_struct *task, *tmp_task;
2259 int i, ret;
Ben Blum74a11662011-05-26 16:25:20 -07002260
2261 /*
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002262 * Prevent freeing of tasks while we take a snapshot. Tasks that are
2263 * already PF_EXITING could be freed from underneath us unless we
2264 * take an rcu_read_lock.
2265 */
Tejun Heob3dc0942014-02-25 10:04:01 -05002266 down_write(&css_set_rwsem);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002267 rcu_read_lock();
Tejun Heo9db8de32014-02-13 06:58:43 -05002268 task = leader;
Ben Blum74a11662011-05-26 16:25:20 -07002269 do {
Tejun Heo9db8de32014-02-13 06:58:43 -05002270 /* @task either already exited or can't exit until the end */
2271 if (task->flags & PF_EXITING)
Anjana V Kumarea847532013-10-12 10:59:17 +08002272 goto next;
Tejun Heocd3d0952011-12-12 18:12:21 -08002273
Tejun Heoeaf797a2014-02-25 10:04:03 -05002274 /* leave @task alone if post_fork() hasn't linked it yet */
2275 if (list_empty(&task->cg_list))
Anjana V Kumarea847532013-10-12 10:59:17 +08002276 goto next;
Tejun Heoeaf797a2014-02-25 10:04:03 -05002277
Tejun Heob3dc0942014-02-25 10:04:01 -05002278 cset = task_css_set(task);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002279 if (!cset->mg_src_cgrp)
Mandeep Singh Baines892a2b92011-12-21 20:18:37 -08002280 goto next;
Tejun Heob3dc0942014-02-25 10:04:01 -05002281
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002282 /*
Tejun Heo1b9aba42014-03-19 17:43:21 -04002283 * cgroup_taskset_first() must always return the leader.
2284 * Take care to avoid disturbing the ordering.
Mandeep Singh Baines61d1d212012-01-30 12:51:56 -08002285 */
Tejun Heo1b9aba42014-03-19 17:43:21 -04002286 list_move_tail(&task->cg_list, &cset->mg_tasks);
2287 if (list_empty(&cset->mg_node))
2288 list_add_tail(&cset->mg_node, &tset.src_csets);
2289 if (list_empty(&cset->mg_dst_cset->mg_node))
2290 list_move_tail(&cset->mg_dst_cset->mg_node,
2291 &tset.dst_csets);
Anjana V Kumarea847532013-10-12 10:59:17 +08002292 next:
Li Zefan081aa452013-03-13 09:17:09 +08002293 if (!threadgroup)
2294 break;
Tejun Heo9db8de32014-02-13 06:58:43 -05002295 } while_each_thread(leader, task);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002296 rcu_read_unlock();
Tejun Heob3dc0942014-02-25 10:04:01 -05002297 up_write(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07002298
Tejun Heo134d3372011-12-12 18:12:21 -08002299 /* methods shouldn't be called if no task is actually migrating */
Tejun Heob3dc0942014-02-25 10:04:01 -05002300 if (list_empty(&tset.src_csets))
2301 return 0;
Tejun Heo134d3372011-12-12 18:12:21 -08002302
Tejun Heo1958d2d2014-02-25 10:04:03 -05002303 /* check that we can legitimately attach to the cgroup */
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002304 for_each_e_css(css, i, cgrp) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05002305 if (css->ss->can_attach) {
Tejun Heo9db8de32014-02-13 06:58:43 -05002306 ret = css->ss->can_attach(css, &tset);
2307 if (ret) {
Tejun Heo1c6727a2013-12-06 15:11:56 -05002308 failed_css = css;
Ben Blum74a11662011-05-26 16:25:20 -07002309 goto out_cancel_attach;
2310 }
2311 }
Ben Blum74a11662011-05-26 16:25:20 -07002312 }
2313
2314 /*
Tejun Heo1958d2d2014-02-25 10:04:03 -05002315 * Now that we're guaranteed success, proceed to move all tasks to
2316 * the new cgroup. There are no failure cases after here, so this
2317 * is the commit point.
Ben Blum74a11662011-05-26 16:25:20 -07002318 */
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002319 down_write(&css_set_rwsem);
Tejun Heob3dc0942014-02-25 10:04:01 -05002320 list_for_each_entry(cset, &tset.src_csets, mg_node) {
2321 list_for_each_entry_safe(task, tmp_task, &cset->mg_tasks, cg_list)
2322 cgroup_task_migrate(cset->mg_src_cgrp, task,
2323 cset->mg_dst_cset);
Ben Blum74a11662011-05-26 16:25:20 -07002324 }
Tejun Heocb0f1fe2014-02-13 06:58:41 -05002325 up_write(&css_set_rwsem);
Ben Blum74a11662011-05-26 16:25:20 -07002326
2327 /*
Tejun Heo1958d2d2014-02-25 10:04:03 -05002328 * Migration is committed, all target tasks are now on dst_csets.
2329 * Nothing is sensitive to fork() after this point. Notify
2330 * controllers that migration is complete.
Ben Blum74a11662011-05-26 16:25:20 -07002331 */
Tejun Heob3dc0942014-02-25 10:04:01 -05002332 tset.csets = &tset.dst_csets;
Ben Blum74a11662011-05-26 16:25:20 -07002333
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002334 for_each_e_css(css, i, cgrp)
Tejun Heo1c6727a2013-12-06 15:11:56 -05002335 if (css->ss->attach)
2336 css->ss->attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002337
Tejun Heo9db8de32014-02-13 06:58:43 -05002338 ret = 0;
Tejun Heob3dc0942014-02-25 10:04:01 -05002339 goto out_release_tset;
2340
Ben Blum74a11662011-05-26 16:25:20 -07002341out_cancel_attach:
Tejun Heoaec3dfc2014-04-23 11:13:14 -04002342 for_each_e_css(css, i, cgrp) {
Tejun Heob3dc0942014-02-25 10:04:01 -05002343 if (css == failed_css)
2344 break;
2345 if (css->ss->cancel_attach)
2346 css->ss->cancel_attach(css, &tset);
Ben Blum74a11662011-05-26 16:25:20 -07002347 }
Tejun Heob3dc0942014-02-25 10:04:01 -05002348out_release_tset:
2349 down_write(&css_set_rwsem);
2350 list_splice_init(&tset.dst_csets, &tset.src_csets);
2351 list_for_each_entry_safe(cset, tmp_cset, &tset.src_csets, mg_node) {
Tejun Heo1b9aba42014-03-19 17:43:21 -04002352 list_splice_tail_init(&cset->mg_tasks, &cset->tasks);
Tejun Heob3dc0942014-02-25 10:04:01 -05002353 list_del_init(&cset->mg_node);
Tejun Heob3dc0942014-02-25 10:04:01 -05002354 }
2355 up_write(&css_set_rwsem);
Tejun Heo9db8de32014-02-13 06:58:43 -05002356 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07002357}
2358
Tejun Heo1958d2d2014-02-25 10:04:03 -05002359/**
2360 * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup
2361 * @dst_cgrp: the cgroup to attach to
2362 * @leader: the task or the leader of the threadgroup to be attached
2363 * @threadgroup: attach the whole threadgroup?
2364 *
Tejun Heod59cfc02015-05-13 16:35:17 -04002365 * Call holding cgroup_mutex and cgroup_threadgroup_rwsem.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002366 */
2367static int cgroup_attach_task(struct cgroup *dst_cgrp,
2368 struct task_struct *leader, bool threadgroup)
2369{
2370 LIST_HEAD(preloaded_csets);
2371 struct task_struct *task;
2372 int ret;
2373
2374 /* look up all src csets */
2375 down_read(&css_set_rwsem);
2376 rcu_read_lock();
2377 task = leader;
2378 do {
2379 cgroup_migrate_add_src(task_css_set(task), dst_cgrp,
2380 &preloaded_csets);
2381 if (!threadgroup)
2382 break;
2383 } while_each_thread(leader, task);
2384 rcu_read_unlock();
2385 up_read(&css_set_rwsem);
2386
2387 /* prepare dst csets and commit */
2388 ret = cgroup_migrate_prepare_dst(dst_cgrp, &preloaded_csets);
2389 if (!ret)
2390 ret = cgroup_migrate(dst_cgrp, leader, threadgroup);
2391
2392 cgroup_migrate_finish(&preloaded_csets);
2393 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07002394}
2395
Tejun Heo187fe842015-06-18 16:54:28 -04002396static int cgroup_procs_write_permission(struct task_struct *task,
2397 struct cgroup *dst_cgrp,
2398 struct kernfs_open_file *of)
Tejun Heodedf22e2015-06-18 16:54:28 -04002399{
2400 const struct cred *cred = current_cred();
2401 const struct cred *tcred = get_task_cred(task);
2402 int ret = 0;
2403
2404 /*
2405 * even if we're attaching all tasks in the thread group, we only
2406 * need to check permissions on one of them.
2407 */
2408 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
2409 !uid_eq(cred->euid, tcred->uid) &&
2410 !uid_eq(cred->euid, tcred->suid))
2411 ret = -EACCES;
2412
Tejun Heo187fe842015-06-18 16:54:28 -04002413 if (!ret && cgroup_on_dfl(dst_cgrp)) {
2414 struct super_block *sb = of->file->f_path.dentry->d_sb;
2415 struct cgroup *cgrp;
2416 struct inode *inode;
2417
2418 down_read(&css_set_rwsem);
2419 cgrp = task_cgroup_from_root(task, &cgrp_dfl_root);
2420 up_read(&css_set_rwsem);
2421
2422 while (!cgroup_is_descendant(dst_cgrp, cgrp))
2423 cgrp = cgroup_parent(cgrp);
2424
2425 ret = -ENOMEM;
2426 inode = kernfs_get_inode(sb, cgrp->procs_kn);
2427 if (inode) {
2428 ret = inode_permission(inode, MAY_WRITE);
2429 iput(inode);
2430 }
2431 }
2432
Tejun Heodedf22e2015-06-18 16:54:28 -04002433 put_cred(tcred);
2434 return ret;
2435}
2436
Ben Blum74a11662011-05-26 16:25:20 -07002437/*
2438 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08002439 * function to attach either it or all tasks in its threadgroup. Will lock
Tejun Heo0e1d7682014-02-25 10:04:03 -05002440 * cgroup_mutex and threadgroup.
Ben Blum74a11662011-05-26 16:25:20 -07002441 */
Tejun Heoacbef752014-05-13 12:16:22 -04002442static ssize_t __cgroup_procs_write(struct kernfs_open_file *of, char *buf,
2443 size_t nbytes, loff_t off, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002444{
Paul Menagebbcb81d2007-10-18 23:39:32 -07002445 struct task_struct *tsk;
Tejun Heoe76ecae2014-05-13 12:19:23 -04002446 struct cgroup *cgrp;
Tejun Heoacbef752014-05-13 12:16:22 -04002447 pid_t pid;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002448 int ret;
2449
Tejun Heoacbef752014-05-13 12:16:22 -04002450 if (kstrtoint(strstrip(buf), 0, &pid) || pid < 0)
2451 return -EINVAL;
2452
Tejun Heoe76ecae2014-05-13 12:19:23 -04002453 cgrp = cgroup_kn_lock_live(of->kn);
2454 if (!cgrp)
Ben Blum74a11662011-05-26 16:25:20 -07002455 return -ENODEV;
2456
Tejun Heob5ba75b2015-05-13 16:35:18 -04002457 percpu_down_write(&cgroup_threadgroup_rwsem);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002458 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002459 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002460 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07002461 if (!tsk) {
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09002462 ret = -ESRCH;
Tejun Heob5ba75b2015-05-13 16:35:18 -04002463 goto out_unlock_rcu;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002464 }
Tejun Heodedf22e2015-06-18 16:54:28 -04002465 } else {
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002466 tsk = current;
Tejun Heodedf22e2015-06-18 16:54:28 -04002467 }
Tejun Heocd3d0952011-12-12 18:12:21 -08002468
2469 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002470 tsk = tsk->group_leader;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002471
2472 /*
Tejun Heo14a40ff2013-03-19 13:45:20 -07002473 * Workqueue threads may acquire PF_NO_SETAFFINITY and become
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002474 * trapped in a cpuset, or RT worker may be born in a cgroup
2475 * with no rt_runtime allocated. Just say no.
2476 */
Tejun Heo14a40ff2013-03-19 13:45:20 -07002477 if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) {
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002478 ret = -EINVAL;
Tejun Heob5ba75b2015-05-13 16:35:18 -04002479 goto out_unlock_rcu;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002480 }
2481
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002482 get_task_struct(tsk);
2483 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08002484
Tejun Heo187fe842015-06-18 16:54:28 -04002485 ret = cgroup_procs_write_permission(tsk, cgrp, of);
Tejun Heodedf22e2015-06-18 16:54:28 -04002486 if (!ret)
2487 ret = cgroup_attach_task(cgrp, tsk, threadgroup);
Li Zefan081aa452013-03-13 09:17:09 +08002488
Paul Menagebbcb81d2007-10-18 23:39:32 -07002489 put_task_struct(tsk);
Tejun Heob5ba75b2015-05-13 16:35:18 -04002490 goto out_unlock_threadgroup;
2491
2492out_unlock_rcu:
2493 rcu_read_unlock();
2494out_unlock_threadgroup:
2495 percpu_up_write(&cgroup_threadgroup_rwsem);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002496 cgroup_kn_unlock(of->kn);
Tejun Heoacbef752014-05-13 12:16:22 -04002497 return ret ?: nbytes;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002498}
2499
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002500/**
2501 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
2502 * @from: attach to all cgroups of a given task
2503 * @tsk: the task to be attached
2504 */
2505int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
2506{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002507 struct cgroup_root *root;
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002508 int retval = 0;
2509
Tejun Heo47cfcd02013-04-07 09:29:51 -07002510 mutex_lock(&cgroup_mutex);
Tejun Heo985ed672014-03-19 10:23:53 -04002511 for_each_root(root) {
Tejun Heo96d365e2014-02-13 06:58:40 -05002512 struct cgroup *from_cgrp;
2513
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002514 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04002515 continue;
2516
Tejun Heo96d365e2014-02-13 06:58:40 -05002517 down_read(&css_set_rwsem);
2518 from_cgrp = task_cgroup_from_root(from, root);
2519 up_read(&css_set_rwsem);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002520
Li Zefan6f4b7e62013-07-31 16:18:36 +08002521 retval = cgroup_attach_task(from_cgrp, tsk, false);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002522 if (retval)
2523 break;
2524 }
Tejun Heo47cfcd02013-04-07 09:29:51 -07002525 mutex_unlock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002526
2527 return retval;
2528}
2529EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
2530
Tejun Heoacbef752014-05-13 12:16:22 -04002531static ssize_t cgroup_tasks_write(struct kernfs_open_file *of,
2532 char *buf, size_t nbytes, loff_t off)
Paul Menageaf351022008-07-25 01:47:01 -07002533{
Tejun Heoacbef752014-05-13 12:16:22 -04002534 return __cgroup_procs_write(of, buf, nbytes, off, false);
Ben Blum74a11662011-05-26 16:25:20 -07002535}
2536
Tejun Heoacbef752014-05-13 12:16:22 -04002537static ssize_t cgroup_procs_write(struct kernfs_open_file *of,
2538 char *buf, size_t nbytes, loff_t off)
Ben Blum74a11662011-05-26 16:25:20 -07002539{
Tejun Heoacbef752014-05-13 12:16:22 -04002540 return __cgroup_procs_write(of, buf, nbytes, off, true);
Paul Menageaf351022008-07-25 01:47:01 -07002541}
2542
Tejun Heo451af502014-05-13 12:16:21 -04002543static ssize_t cgroup_release_agent_write(struct kernfs_open_file *of,
2544 char *buf, size_t nbytes, loff_t off)
Paul Menagee788e0662008-07-25 01:46:59 -07002545{
Tejun Heoe76ecae2014-05-13 12:19:23 -04002546 struct cgroup *cgrp;
Tejun Heo5f469902014-02-11 11:52:48 -05002547
Tejun Heoe76ecae2014-05-13 12:19:23 -04002548 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
2549
2550 cgrp = cgroup_kn_lock_live(of->kn);
2551 if (!cgrp)
Paul Menagee788e0662008-07-25 01:46:59 -07002552 return -ENODEV;
Tejun Heo69e943b2014-02-08 10:36:58 -05002553 spin_lock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002554 strlcpy(cgrp->root->release_agent_path, strstrip(buf),
2555 sizeof(cgrp->root->release_agent_path));
Tejun Heo69e943b2014-02-08 10:36:58 -05002556 spin_unlock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002557 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04002558 return nbytes;
Paul Menagee788e0662008-07-25 01:46:59 -07002559}
2560
Tejun Heo2da8ca82013-12-05 12:28:04 -05002561static int cgroup_release_agent_show(struct seq_file *seq, void *v)
Paul Menagee788e0662008-07-25 01:46:59 -07002562{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002563 struct cgroup *cgrp = seq_css(seq)->cgroup;
Tejun Heo182446d2013-08-08 20:11:24 -04002564
Tejun Heo46cfeb02014-05-13 12:11:00 -04002565 spin_lock(&release_agent_path_lock);
Paul Menagee788e0662008-07-25 01:46:59 -07002566 seq_puts(seq, cgrp->root->release_agent_path);
Tejun Heo46cfeb02014-05-13 12:11:00 -04002567 spin_unlock(&release_agent_path_lock);
Paul Menagee788e0662008-07-25 01:46:59 -07002568 seq_putc(seq, '\n');
Paul Menagee788e0662008-07-25 01:46:59 -07002569 return 0;
2570}
2571
Tejun Heo2da8ca82013-12-05 12:28:04 -05002572static int cgroup_sane_behavior_show(struct seq_file *seq, void *v)
Tejun Heo873fe092013-04-14 20:15:26 -07002573{
Tejun Heoc1d5d422014-07-09 10:08:08 -04002574 seq_puts(seq, "0\n");
Paul Menage81a6a5c2007-10-18 23:39:38 -07002575 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002576}
2577
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10002578static void cgroup_print_ss_mask(struct seq_file *seq, unsigned long ss_mask)
Tejun Heof8f22e52014-04-23 11:13:16 -04002579{
2580 struct cgroup_subsys *ss;
2581 bool printed = false;
2582 int ssid;
2583
Aleksa Saraia966a4e2015-06-06 10:02:15 +10002584 for_each_subsys_which(ss, ssid, &ss_mask) {
2585 if (printed)
2586 seq_putc(seq, ' ');
2587 seq_printf(seq, "%s", ss->name);
2588 printed = true;
Tejun Heof8f22e52014-04-23 11:13:16 -04002589 }
2590 if (printed)
2591 seq_putc(seq, '\n');
2592}
2593
2594/* show controllers which are currently attached to the default hierarchy */
2595static int cgroup_root_controllers_show(struct seq_file *seq, void *v)
2596{
2597 struct cgroup *cgrp = seq_css(seq)->cgroup;
2598
Tejun Heo5533e012014-05-14 19:33:07 -04002599 cgroup_print_ss_mask(seq, cgrp->root->subsys_mask &
2600 ~cgrp_dfl_root_inhibit_ss_mask);
Tejun Heof8f22e52014-04-23 11:13:16 -04002601 return 0;
2602}
2603
2604/* show controllers which are enabled from the parent */
2605static int cgroup_controllers_show(struct seq_file *seq, void *v)
2606{
2607 struct cgroup *cgrp = seq_css(seq)->cgroup;
2608
Tejun Heo667c2492014-07-08 18:02:56 -04002609 cgroup_print_ss_mask(seq, cgroup_parent(cgrp)->subtree_control);
Tejun Heof8f22e52014-04-23 11:13:16 -04002610 return 0;
2611}
2612
2613/* show controllers which are enabled for a given cgroup's children */
2614static int cgroup_subtree_control_show(struct seq_file *seq, void *v)
2615{
2616 struct cgroup *cgrp = seq_css(seq)->cgroup;
2617
Tejun Heo667c2492014-07-08 18:02:56 -04002618 cgroup_print_ss_mask(seq, cgrp->subtree_control);
Tejun Heof8f22e52014-04-23 11:13:16 -04002619 return 0;
2620}
2621
2622/**
2623 * cgroup_update_dfl_csses - update css assoc of a subtree in default hierarchy
2624 * @cgrp: root of the subtree to update csses for
2625 *
2626 * @cgrp's child_subsys_mask has changed and its subtree's (self excluded)
2627 * css associations need to be updated accordingly. This function looks up
2628 * all css_sets which are attached to the subtree, creates the matching
2629 * updated css_sets and migrates the tasks to the new ones.
2630 */
2631static int cgroup_update_dfl_csses(struct cgroup *cgrp)
2632{
2633 LIST_HEAD(preloaded_csets);
2634 struct cgroup_subsys_state *css;
2635 struct css_set *src_cset;
2636 int ret;
2637
Tejun Heof8f22e52014-04-23 11:13:16 -04002638 lockdep_assert_held(&cgroup_mutex);
2639
Tejun Heob5ba75b2015-05-13 16:35:18 -04002640 percpu_down_write(&cgroup_threadgroup_rwsem);
2641
Tejun Heof8f22e52014-04-23 11:13:16 -04002642 /* look up all csses currently attached to @cgrp's subtree */
2643 down_read(&css_set_rwsem);
2644 css_for_each_descendant_pre(css, cgroup_css(cgrp, NULL)) {
2645 struct cgrp_cset_link *link;
2646
2647 /* self is not affected by child_subsys_mask change */
2648 if (css->cgroup == cgrp)
2649 continue;
2650
2651 list_for_each_entry(link, &css->cgroup->cset_links, cset_link)
2652 cgroup_migrate_add_src(link->cset, cgrp,
2653 &preloaded_csets);
2654 }
2655 up_read(&css_set_rwsem);
2656
2657 /* NULL dst indicates self on default hierarchy */
2658 ret = cgroup_migrate_prepare_dst(NULL, &preloaded_csets);
2659 if (ret)
2660 goto out_finish;
2661
2662 list_for_each_entry(src_cset, &preloaded_csets, mg_preload_node) {
2663 struct task_struct *last_task = NULL, *task;
2664
2665 /* src_csets precede dst_csets, break on the first dst_cset */
2666 if (!src_cset->mg_src_cgrp)
2667 break;
2668
2669 /*
2670 * All tasks in src_cset need to be migrated to the
2671 * matching dst_cset. Empty it process by process. We
2672 * walk tasks but migrate processes. The leader might even
2673 * belong to a different cset but such src_cset would also
2674 * be among the target src_csets because the default
2675 * hierarchy enforces per-process membership.
2676 */
2677 while (true) {
2678 down_read(&css_set_rwsem);
2679 task = list_first_entry_or_null(&src_cset->tasks,
2680 struct task_struct, cg_list);
2681 if (task) {
2682 task = task->group_leader;
2683 WARN_ON_ONCE(!task_css_set(task)->mg_src_cgrp);
2684 get_task_struct(task);
2685 }
2686 up_read(&css_set_rwsem);
2687
2688 if (!task)
2689 break;
2690
2691 /* guard against possible infinite loop */
2692 if (WARN(last_task == task,
2693 "cgroup: update_dfl_csses failed to make progress, aborting in inconsistent state\n"))
2694 goto out_finish;
2695 last_task = task;
2696
Tejun Heof8f22e52014-04-23 11:13:16 -04002697 ret = cgroup_migrate(src_cset->dfl_cgrp, task, true);
2698
Tejun Heof8f22e52014-04-23 11:13:16 -04002699 put_task_struct(task);
2700
2701 if (WARN(ret, "cgroup: failed to update controllers for the default hierarchy (%d), further operations may crash or hang\n", ret))
2702 goto out_finish;
2703 }
2704 }
2705
2706out_finish:
2707 cgroup_migrate_finish(&preloaded_csets);
Tejun Heob5ba75b2015-05-13 16:35:18 -04002708 percpu_up_write(&cgroup_threadgroup_rwsem);
Tejun Heof8f22e52014-04-23 11:13:16 -04002709 return ret;
2710}
2711
2712/* change the enabled child controllers for a cgroup in the default hierarchy */
Tejun Heo451af502014-05-13 12:16:21 -04002713static ssize_t cgroup_subtree_control_write(struct kernfs_open_file *of,
2714 char *buf, size_t nbytes,
2715 loff_t off)
Tejun Heof8f22e52014-04-23 11:13:16 -04002716{
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10002717 unsigned long enable = 0, disable = 0;
2718 unsigned long css_enable, css_disable, old_sc, new_sc, old_ss, new_ss;
Tejun Heoa9746d82014-05-13 12:19:22 -04002719 struct cgroup *cgrp, *child;
Tejun Heof8f22e52014-04-23 11:13:16 -04002720 struct cgroup_subsys *ss;
Tejun Heo451af502014-05-13 12:16:21 -04002721 char *tok;
Tejun Heof8f22e52014-04-23 11:13:16 -04002722 int ssid, ret;
2723
2724 /*
Tejun Heod37167a2014-05-13 12:10:59 -04002725 * Parse input - space separated list of subsystem names prefixed
2726 * with either + or -.
Tejun Heof8f22e52014-04-23 11:13:16 -04002727 */
Tejun Heo451af502014-05-13 12:16:21 -04002728 buf = strstrip(buf);
2729 while ((tok = strsep(&buf, " "))) {
Aleksa Saraia966a4e2015-06-06 10:02:15 +10002730 unsigned long tmp_ss_mask = ~cgrp_dfl_root_inhibit_ss_mask;
2731
Tejun Heod37167a2014-05-13 12:10:59 -04002732 if (tok[0] == '\0')
2733 continue;
Aleksa Saraia966a4e2015-06-06 10:02:15 +10002734 for_each_subsys_which(ss, ssid, &tmp_ss_mask) {
2735 if (ss->disabled || strcmp(tok + 1, ss->name))
Tejun Heof8f22e52014-04-23 11:13:16 -04002736 continue;
2737
2738 if (*tok == '+') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04002739 enable |= 1 << ssid;
2740 disable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002741 } else if (*tok == '-') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04002742 disable |= 1 << ssid;
2743 enable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002744 } else {
2745 return -EINVAL;
2746 }
2747 break;
2748 }
2749 if (ssid == CGROUP_SUBSYS_COUNT)
2750 return -EINVAL;
2751 }
2752
Tejun Heoa9746d82014-05-13 12:19:22 -04002753 cgrp = cgroup_kn_lock_live(of->kn);
2754 if (!cgrp)
2755 return -ENODEV;
Tejun Heof8f22e52014-04-23 11:13:16 -04002756
2757 for_each_subsys(ss, ssid) {
2758 if (enable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04002759 if (cgrp->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002760 enable &= ~(1 << ssid);
2761 continue;
2762 }
2763
Tejun Heoc29adf22014-07-08 18:02:56 -04002764 /* unavailable or not enabled on the parent? */
2765 if (!(cgrp_dfl_root.subsys_mask & (1 << ssid)) ||
2766 (cgroup_parent(cgrp) &&
Tejun Heo667c2492014-07-08 18:02:56 -04002767 !(cgroup_parent(cgrp)->subtree_control & (1 << ssid)))) {
Tejun Heoc29adf22014-07-08 18:02:56 -04002768 ret = -ENOENT;
2769 goto out_unlock;
2770 }
Tejun Heof8f22e52014-04-23 11:13:16 -04002771 } else if (disable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04002772 if (!(cgrp->subtree_control & (1 << ssid))) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002773 disable &= ~(1 << ssid);
2774 continue;
2775 }
2776
2777 /* a child has it enabled? */
2778 cgroup_for_each_live_child(child, cgrp) {
Tejun Heo667c2492014-07-08 18:02:56 -04002779 if (child->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002780 ret = -EBUSY;
Tejun Heoddab2b62014-05-13 12:19:22 -04002781 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04002782 }
2783 }
2784 }
2785 }
2786
2787 if (!enable && !disable) {
2788 ret = 0;
Tejun Heoddab2b62014-05-13 12:19:22 -04002789 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04002790 }
2791
2792 /*
Tejun Heo667c2492014-07-08 18:02:56 -04002793 * Except for the root, subtree_control must be zero for a cgroup
Tejun Heof8f22e52014-04-23 11:13:16 -04002794 * with tasks so that child cgroups don't compete against tasks.
2795 */
Tejun Heod51f39b2014-05-16 13:22:48 -04002796 if (enable && cgroup_parent(cgrp) && !list_empty(&cgrp->cset_links)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002797 ret = -EBUSY;
2798 goto out_unlock;
2799 }
2800
2801 /*
Tejun Heof63070d2014-07-08 18:02:57 -04002802 * Update subsys masks and calculate what needs to be done. More
2803 * subsystems than specified may need to be enabled or disabled
2804 * depending on subsystem dependencies.
2805 */
Tejun Heo755bf5e2014-11-18 02:49:50 -05002806 old_sc = cgrp->subtree_control;
2807 old_ss = cgrp->child_subsys_mask;
2808 new_sc = (old_sc | enable) & ~disable;
2809 new_ss = cgroup_calc_child_subsys_mask(cgrp, new_sc);
Tejun Heoc29adf22014-07-08 18:02:56 -04002810
Tejun Heo755bf5e2014-11-18 02:49:50 -05002811 css_enable = ~old_ss & new_ss;
2812 css_disable = old_ss & ~new_ss;
Tejun Heof63070d2014-07-08 18:02:57 -04002813 enable |= css_enable;
2814 disable |= css_disable;
2815
Tejun Heodb6e3052014-11-18 02:49:51 -05002816 /*
2817 * Because css offlining is asynchronous, userland might try to
2818 * re-enable the same controller while the previous instance is
2819 * still around. In such cases, wait till it's gone using
2820 * offline_waitq.
2821 */
Aleksa Saraia966a4e2015-06-06 10:02:15 +10002822 for_each_subsys_which(ss, ssid, &css_enable) {
Tejun Heodb6e3052014-11-18 02:49:51 -05002823 cgroup_for_each_live_child(child, cgrp) {
2824 DEFINE_WAIT(wait);
2825
2826 if (!cgroup_css(child, ss))
2827 continue;
2828
2829 cgroup_get(child);
2830 prepare_to_wait(&child->offline_waitq, &wait,
2831 TASK_UNINTERRUPTIBLE);
2832 cgroup_kn_unlock(of->kn);
2833 schedule();
2834 finish_wait(&child->offline_waitq, &wait);
2835 cgroup_put(child);
2836
2837 return restart_syscall();
2838 }
2839 }
2840
Tejun Heo755bf5e2014-11-18 02:49:50 -05002841 cgrp->subtree_control = new_sc;
2842 cgrp->child_subsys_mask = new_ss;
2843
Tejun Heof63070d2014-07-08 18:02:57 -04002844 /*
2845 * Create new csses or make the existing ones visible. A css is
2846 * created invisible if it's being implicitly enabled through
2847 * dependency. An invisible css is made visible when the userland
2848 * explicitly enables it.
Tejun Heof8f22e52014-04-23 11:13:16 -04002849 */
2850 for_each_subsys(ss, ssid) {
2851 if (!(enable & (1 << ssid)))
2852 continue;
2853
2854 cgroup_for_each_live_child(child, cgrp) {
Tejun Heof63070d2014-07-08 18:02:57 -04002855 if (css_enable & (1 << ssid))
2856 ret = create_css(child, ss,
2857 cgrp->subtree_control & (1 << ssid));
2858 else
2859 ret = cgroup_populate_dir(child, 1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002860 if (ret)
2861 goto err_undo_css;
2862 }
2863 }
2864
Tejun Heoc29adf22014-07-08 18:02:56 -04002865 /*
2866 * At this point, cgroup_e_css() results reflect the new csses
2867 * making the following cgroup_update_dfl_csses() properly update
2868 * css associations of all tasks in the subtree.
2869 */
Tejun Heof8f22e52014-04-23 11:13:16 -04002870 ret = cgroup_update_dfl_csses(cgrp);
2871 if (ret)
2872 goto err_undo_css;
2873
Tejun Heof63070d2014-07-08 18:02:57 -04002874 /*
2875 * All tasks are migrated out of disabled csses. Kill or hide
2876 * them. A css is hidden when the userland requests it to be
Tejun Heob4536f0ca2014-07-08 18:02:57 -04002877 * disabled while other subsystems are still depending on it. The
2878 * css must not actively control resources and be in the vanilla
2879 * state if it's made visible again later. Controllers which may
2880 * be depended upon should provide ->css_reset() for this purpose.
Tejun Heof63070d2014-07-08 18:02:57 -04002881 */
Tejun Heof8f22e52014-04-23 11:13:16 -04002882 for_each_subsys(ss, ssid) {
2883 if (!(disable & (1 << ssid)))
2884 continue;
2885
Tejun Heof63070d2014-07-08 18:02:57 -04002886 cgroup_for_each_live_child(child, cgrp) {
Tejun Heob4536f0ca2014-07-08 18:02:57 -04002887 struct cgroup_subsys_state *css = cgroup_css(child, ss);
2888
2889 if (css_disable & (1 << ssid)) {
2890 kill_css(css);
2891 } else {
Tejun Heof63070d2014-07-08 18:02:57 -04002892 cgroup_clear_dir(child, 1 << ssid);
Tejun Heob4536f0ca2014-07-08 18:02:57 -04002893 if (ss->css_reset)
2894 ss->css_reset(css);
2895 }
Tejun Heof63070d2014-07-08 18:02:57 -04002896 }
Tejun Heof8f22e52014-04-23 11:13:16 -04002897 }
2898
Tejun Heo56c807b2014-11-18 02:49:51 -05002899 /*
2900 * The effective csses of all the descendants (excluding @cgrp) may
2901 * have changed. Subsystems can optionally subscribe to this event
2902 * by implementing ->css_e_css_changed() which is invoked if any of
2903 * the effective csses seen from the css's cgroup may have changed.
2904 */
2905 for_each_subsys(ss, ssid) {
2906 struct cgroup_subsys_state *this_css = cgroup_css(cgrp, ss);
2907 struct cgroup_subsys_state *css;
2908
2909 if (!ss->css_e_css_changed || !this_css)
2910 continue;
2911
2912 css_for_each_descendant_pre(css, this_css)
2913 if (css != this_css)
2914 ss->css_e_css_changed(css);
2915 }
2916
Tejun Heof8f22e52014-04-23 11:13:16 -04002917 kernfs_activate(cgrp->kn);
2918 ret = 0;
2919out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04002920 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04002921 return ret ?: nbytes;
Tejun Heof8f22e52014-04-23 11:13:16 -04002922
2923err_undo_css:
Tejun Heo755bf5e2014-11-18 02:49:50 -05002924 cgrp->subtree_control = old_sc;
2925 cgrp->child_subsys_mask = old_ss;
Tejun Heof8f22e52014-04-23 11:13:16 -04002926
2927 for_each_subsys(ss, ssid) {
2928 if (!(enable & (1 << ssid)))
2929 continue;
2930
2931 cgroup_for_each_live_child(child, cgrp) {
2932 struct cgroup_subsys_state *css = cgroup_css(child, ss);
Tejun Heof63070d2014-07-08 18:02:57 -04002933
2934 if (!css)
2935 continue;
2936
2937 if (css_enable & (1 << ssid))
Tejun Heof8f22e52014-04-23 11:13:16 -04002938 kill_css(css);
Tejun Heof63070d2014-07-08 18:02:57 -04002939 else
2940 cgroup_clear_dir(child, 1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002941 }
2942 }
2943 goto out_unlock;
2944}
2945
Tejun Heo842b5972014-04-25 18:28:02 -04002946static int cgroup_populated_show(struct seq_file *seq, void *v)
2947{
2948 seq_printf(seq, "%d\n", (bool)seq_css(seq)->cgroup->populated_cnt);
2949 return 0;
2950}
2951
Tejun Heo2bd59d42014-02-11 11:52:49 -05002952static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf,
2953 size_t nbytes, loff_t off)
Paul Menageddbcc7e2007-10-18 23:39:30 -07002954{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002955 struct cgroup *cgrp = of->kn->parent->priv;
2956 struct cftype *cft = of->kn->priv;
2957 struct cgroup_subsys_state *css;
Tejun Heoa742c592013-12-05 12:28:03 -05002958 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002959
Tejun Heob4168642014-05-13 12:16:21 -04002960 if (cft->write)
2961 return cft->write(of, buf, nbytes, off);
2962
Tejun Heo2bd59d42014-02-11 11:52:49 -05002963 /*
2964 * kernfs guarantees that a file isn't deleted with operations in
2965 * flight, which means that the matching css is and stays alive and
2966 * doesn't need to be pinned. The RCU locking is not necessary
2967 * either. It's just for the convenience of using cgroup_css().
2968 */
2969 rcu_read_lock();
2970 css = cgroup_css(cgrp, cft->ss);
2971 rcu_read_unlock();
Paul Menageddbcc7e2007-10-18 23:39:30 -07002972
Tejun Heo451af502014-05-13 12:16:21 -04002973 if (cft->write_u64) {
Tejun Heoa742c592013-12-05 12:28:03 -05002974 unsigned long long v;
2975 ret = kstrtoull(buf, 0, &v);
2976 if (!ret)
2977 ret = cft->write_u64(css, cft, v);
2978 } else if (cft->write_s64) {
2979 long long v;
2980 ret = kstrtoll(buf, 0, &v);
2981 if (!ret)
2982 ret = cft->write_s64(css, cft, v);
Tejun Heoa742c592013-12-05 12:28:03 -05002983 } else {
2984 ret = -EINVAL;
2985 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05002986
Tejun Heoa742c592013-12-05 12:28:03 -05002987 return ret ?: nbytes;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002988}
2989
Tejun Heo6612f052013-12-05 12:28:04 -05002990static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos)
Paul Menage91796562008-04-29 01:00:01 -07002991{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002992 return seq_cft(seq)->seq_start(seq, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002993}
2994
2995static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos)
2996{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002997 return seq_cft(seq)->seq_next(seq, v, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05002998}
2999
3000static void cgroup_seqfile_stop(struct seq_file *seq, void *v)
3001{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003002 seq_cft(seq)->seq_stop(seq, v);
Paul Menage91796562008-04-29 01:00:01 -07003003}
3004
3005static int cgroup_seqfile_show(struct seq_file *m, void *arg)
3006{
Tejun Heo7da11272013-12-05 12:28:04 -05003007 struct cftype *cft = seq_cft(m);
3008 struct cgroup_subsys_state *css = seq_css(m);
Li Zefane0798ce2013-07-31 17:36:25 +08003009
Tejun Heo2da8ca82013-12-05 12:28:04 -05003010 if (cft->seq_show)
3011 return cft->seq_show(m, arg);
Paul Menage91796562008-04-29 01:00:01 -07003012
Tejun Heo896f5192013-12-05 12:28:04 -05003013 if (cft->read_u64)
3014 seq_printf(m, "%llu\n", cft->read_u64(css, cft));
3015 else if (cft->read_s64)
3016 seq_printf(m, "%lld\n", cft->read_s64(css, cft));
3017 else
3018 return -EINVAL;
3019 return 0;
Paul Menage91796562008-04-29 01:00:01 -07003020}
3021
Tejun Heo2bd59d42014-02-11 11:52:49 -05003022static struct kernfs_ops cgroup_kf_single_ops = {
3023 .atomic_write_len = PAGE_SIZE,
3024 .write = cgroup_file_write,
3025 .seq_show = cgroup_seqfile_show,
Paul Menage91796562008-04-29 01:00:01 -07003026};
3027
Tejun Heo2bd59d42014-02-11 11:52:49 -05003028static struct kernfs_ops cgroup_kf_ops = {
3029 .atomic_write_len = PAGE_SIZE,
3030 .write = cgroup_file_write,
3031 .seq_start = cgroup_seqfile_start,
3032 .seq_next = cgroup_seqfile_next,
3033 .seq_stop = cgroup_seqfile_stop,
3034 .seq_show = cgroup_seqfile_show,
3035};
Paul Menageddbcc7e2007-10-18 23:39:30 -07003036
3037/*
3038 * cgroup_rename - Only allow simple rename of directories in place.
3039 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05003040static int cgroup_rename(struct kernfs_node *kn, struct kernfs_node *new_parent,
3041 const char *new_name_str)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003042{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003043 struct cgroup *cgrp = kn->priv;
Li Zefan65dff752013-03-01 15:01:56 +08003044 int ret;
Li Zefan65dff752013-03-01 15:01:56 +08003045
Tejun Heo2bd59d42014-02-11 11:52:49 -05003046 if (kernfs_type(kn) != KERNFS_DIR)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003047 return -ENOTDIR;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003048 if (kn->parent != new_parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003049 return -EIO;
Li Zefan65dff752013-03-01 15:01:56 +08003050
Tejun Heo6db8e852013-06-14 11:18:22 -07003051 /*
3052 * This isn't a proper migration and its usefulness is very
Tejun Heoaa6ec292014-07-09 10:08:08 -04003053 * limited. Disallow on the default hierarchy.
Tejun Heo6db8e852013-06-14 11:18:22 -07003054 */
Tejun Heoaa6ec292014-07-09 10:08:08 -04003055 if (cgroup_on_dfl(cgrp))
Tejun Heo6db8e852013-06-14 11:18:22 -07003056 return -EPERM;
3057
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003058 /*
Tejun Heo8353da12014-05-13 12:19:23 -04003059 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003060 * active_ref. kernfs_rename() doesn't require active_ref
Tejun Heo8353da12014-05-13 12:19:23 -04003061 * protection. Break them before grabbing cgroup_mutex.
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003062 */
3063 kernfs_break_active_protection(new_parent);
3064 kernfs_break_active_protection(kn);
Li Zefan65dff752013-03-01 15:01:56 +08003065
Tejun Heo2bd59d42014-02-11 11:52:49 -05003066 mutex_lock(&cgroup_mutex);
Li Zefan65dff752013-03-01 15:01:56 +08003067
Tejun Heo2bd59d42014-02-11 11:52:49 -05003068 ret = kernfs_rename(kn, new_parent, new_name_str);
Li Zefan65dff752013-03-01 15:01:56 +08003069
Tejun Heo2bd59d42014-02-11 11:52:49 -05003070 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003071
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003072 kernfs_unbreak_active_protection(kn);
3073 kernfs_unbreak_active_protection(new_parent);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003074 return ret;
Li Zefan099fca32009-04-02 16:57:29 -07003075}
3076
Tejun Heo49957f82014-04-07 16:44:47 -04003077/* set uid and gid of cgroup dirs and files to that of the creator */
3078static int cgroup_kn_set_ugid(struct kernfs_node *kn)
3079{
3080 struct iattr iattr = { .ia_valid = ATTR_UID | ATTR_GID,
3081 .ia_uid = current_fsuid(),
3082 .ia_gid = current_fsgid(), };
3083
3084 if (uid_eq(iattr.ia_uid, GLOBAL_ROOT_UID) &&
3085 gid_eq(iattr.ia_gid, GLOBAL_ROOT_GID))
3086 return 0;
3087
3088 return kernfs_setattr(kn, &iattr);
3089}
3090
Tejun Heo2bb566c2013-08-08 20:11:23 -04003091static int cgroup_add_file(struct cgroup *cgrp, struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003092{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05003093 char name[CGROUP_FILE_NAME_MAX];
Tejun Heo2bd59d42014-02-11 11:52:49 -05003094 struct kernfs_node *kn;
3095 struct lock_class_key *key = NULL;
Tejun Heo49957f82014-04-07 16:44:47 -04003096 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003097
Tejun Heo2bd59d42014-02-11 11:52:49 -05003098#ifdef CONFIG_DEBUG_LOCK_ALLOC
3099 key = &cft->lockdep_key;
3100#endif
3101 kn = __kernfs_create_file(cgrp->kn, cgroup_file_name(cgrp, cft, name),
3102 cgroup_file_mode(cft), 0, cft->kf_ops, cft,
Tejun Heodfeb07502015-02-13 14:36:31 -08003103 NULL, key);
Tejun Heo49957f82014-04-07 16:44:47 -04003104 if (IS_ERR(kn))
3105 return PTR_ERR(kn);
3106
3107 ret = cgroup_kn_set_ugid(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04003108 if (ret) {
Tejun Heo49957f82014-04-07 16:44:47 -04003109 kernfs_remove(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04003110 return ret;
3111 }
3112
Tejun Heo187fe842015-06-18 16:54:28 -04003113 if (cft->write == cgroup_procs_write)
3114 cgrp->procs_kn = kn;
3115 else if (cft->seq_show == cgroup_populated_show)
Tejun Heo842b5972014-04-25 18:28:02 -04003116 cgrp->populated_kn = kn;
Tejun Heof8f22e52014-04-23 11:13:16 -04003117 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003118}
3119
Tejun Heob1f28d32013-06-28 16:24:10 -07003120/**
3121 * cgroup_addrm_files - add or remove files to a cgroup directory
3122 * @cgrp: the target cgroup
Tejun Heob1f28d32013-06-28 16:24:10 -07003123 * @cfts: array of cftypes to be added
3124 * @is_add: whether to add or remove
3125 *
3126 * Depending on @is_add, add or remove files defined by @cfts on @cgrp.
Tejun Heo2bb566c2013-08-08 20:11:23 -04003127 * For removals, this function never fails. If addition fails, this
3128 * function doesn't remove files already added. The caller is responsible
3129 * for cleaning up.
Tejun Heob1f28d32013-06-28 16:24:10 -07003130 */
Tejun Heo2bb566c2013-08-08 20:11:23 -04003131static int cgroup_addrm_files(struct cgroup *cgrp, struct cftype cfts[],
3132 bool is_add)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003133{
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04003134 struct cftype *cft;
Tejun Heob1f28d32013-06-28 16:24:10 -07003135 int ret;
3136
Tejun Heo01f64742014-05-13 12:19:23 -04003137 lockdep_assert_held(&cgroup_mutex);
Tejun Heodb0416b2012-04-01 12:09:55 -07003138
3139 for (cft = cfts; cft->name[0] != '\0'; cft++) {
Gao fengf33fddc2012-12-06 14:38:57 +08003140 /* does cft->flags tell us to skip this file on @cgrp? */
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003141 if ((cft->flags & __CFTYPE_ONLY_ON_DFL) && !cgroup_on_dfl(cgrp))
Tejun Heo8cbbf2c2014-03-19 10:23:55 -04003142 continue;
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003143 if ((cft->flags & __CFTYPE_NOT_ON_DFL) && cgroup_on_dfl(cgrp))
Tejun Heo873fe092013-04-14 20:15:26 -07003144 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04003145 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08003146 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04003147 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08003148 continue;
3149
Li Zefan2739d3c2013-01-21 18:18:33 +08003150 if (is_add) {
Tejun Heo2bb566c2013-08-08 20:11:23 -04003151 ret = cgroup_add_file(cgrp, cft);
Tejun Heob1f28d32013-06-28 16:24:10 -07003152 if (ret) {
Joe Perchesed3d2612014-04-25 18:28:03 -04003153 pr_warn("%s: failed to add %s, err=%d\n",
3154 __func__, cft->name, ret);
Tejun Heob1f28d32013-06-28 16:24:10 -07003155 return ret;
3156 }
Li Zefan2739d3c2013-01-21 18:18:33 +08003157 } else {
3158 cgroup_rm_file(cgrp, cft);
Tejun Heodb0416b2012-04-01 12:09:55 -07003159 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003160 }
Tejun Heob1f28d32013-06-28 16:24:10 -07003161 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003162}
3163
Tejun Heo21a2d342014-02-12 09:29:49 -05003164static int cgroup_apply_cftypes(struct cftype *cfts, bool is_add)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003165{
3166 LIST_HEAD(pending);
Tejun Heo2bb566c2013-08-08 20:11:23 -04003167 struct cgroup_subsys *ss = cfts[0].ss;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04003168 struct cgroup *root = &ss->root->cgrp;
Tejun Heo492eb212013-08-08 20:11:25 -04003169 struct cgroup_subsys_state *css;
Tejun Heo9ccece82013-06-28 16:24:11 -07003170 int ret = 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003171
Tejun Heo01f64742014-05-13 12:19:23 -04003172 lockdep_assert_held(&cgroup_mutex);
Li Zefane8c82d22013-06-18 18:48:37 +08003173
Li Zefane8c82d22013-06-18 18:48:37 +08003174 /* add/rm files for all cgroups created before */
Tejun Heoca8bdca2013-08-26 18:40:56 -04003175 css_for_each_descendant_pre(css, cgroup_css(root, ss)) {
Tejun Heo492eb212013-08-08 20:11:25 -04003176 struct cgroup *cgrp = css->cgroup;
3177
Li Zefane8c82d22013-06-18 18:48:37 +08003178 if (cgroup_is_dead(cgrp))
3179 continue;
3180
Tejun Heo21a2d342014-02-12 09:29:49 -05003181 ret = cgroup_addrm_files(cgrp, cfts, is_add);
Tejun Heo9ccece82013-06-28 16:24:11 -07003182 if (ret)
3183 break;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003184 }
Tejun Heo21a2d342014-02-12 09:29:49 -05003185
3186 if (is_add && !ret)
3187 kernfs_activate(root->kn);
Tejun Heo9ccece82013-06-28 16:24:11 -07003188 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003189}
3190
Tejun Heo2da440a2014-02-11 11:52:48 -05003191static void cgroup_exit_cftypes(struct cftype *cfts)
3192{
3193 struct cftype *cft;
3194
Tejun Heo2bd59d42014-02-11 11:52:49 -05003195 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3196 /* free copy for custom atomic_write_len, see init_cftypes() */
3197 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE)
3198 kfree(cft->kf_ops);
3199 cft->kf_ops = NULL;
Tejun Heo2da440a2014-02-11 11:52:48 -05003200 cft->ss = NULL;
Tejun Heoa8ddc822014-07-15 11:05:10 -04003201
3202 /* revert flags set by cgroup core while adding @cfts */
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003203 cft->flags &= ~(__CFTYPE_ONLY_ON_DFL | __CFTYPE_NOT_ON_DFL);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003204 }
Tejun Heo2da440a2014-02-11 11:52:48 -05003205}
3206
Tejun Heo2bd59d42014-02-11 11:52:49 -05003207static int cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo2da440a2014-02-11 11:52:48 -05003208{
3209 struct cftype *cft;
3210
Tejun Heo2bd59d42014-02-11 11:52:49 -05003211 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3212 struct kernfs_ops *kf_ops;
3213
Tejun Heo0adb0702014-02-12 09:29:48 -05003214 WARN_ON(cft->ss || cft->kf_ops);
3215
Tejun Heo2bd59d42014-02-11 11:52:49 -05003216 if (cft->seq_start)
3217 kf_ops = &cgroup_kf_ops;
3218 else
3219 kf_ops = &cgroup_kf_single_ops;
3220
3221 /*
3222 * Ugh... if @cft wants a custom max_write_len, we need to
3223 * make a copy of kf_ops to set its atomic_write_len.
3224 */
3225 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) {
3226 kf_ops = kmemdup(kf_ops, sizeof(*kf_ops), GFP_KERNEL);
3227 if (!kf_ops) {
3228 cgroup_exit_cftypes(cfts);
3229 return -ENOMEM;
3230 }
3231 kf_ops->atomic_write_len = cft->max_write_len;
3232 }
3233
3234 cft->kf_ops = kf_ops;
Tejun Heo2da440a2014-02-11 11:52:48 -05003235 cft->ss = ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003236 }
3237
3238 return 0;
Tejun Heo2da440a2014-02-11 11:52:48 -05003239}
3240
Tejun Heo21a2d342014-02-12 09:29:49 -05003241static int cgroup_rm_cftypes_locked(struct cftype *cfts)
3242{
Tejun Heo01f64742014-05-13 12:19:23 -04003243 lockdep_assert_held(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003244
3245 if (!cfts || !cfts[0].ss)
3246 return -ENOENT;
3247
3248 list_del(&cfts->node);
3249 cgroup_apply_cftypes(cfts, false);
3250 cgroup_exit_cftypes(cfts);
3251 return 0;
3252}
3253
Tejun Heo8e3f6542012-04-01 12:09:55 -07003254/**
Tejun Heo80b13582014-02-12 09:29:48 -05003255 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
3256 * @cfts: zero-length name terminated array of cftypes
3257 *
3258 * Unregister @cfts. Files described by @cfts are removed from all
3259 * existing cgroups and all future cgroups won't have them either. This
3260 * function can be called anytime whether @cfts' subsys is attached or not.
3261 *
3262 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
3263 * registered.
3264 */
3265int cgroup_rm_cftypes(struct cftype *cfts)
3266{
Tejun Heo21a2d342014-02-12 09:29:49 -05003267 int ret;
Tejun Heo80b13582014-02-12 09:29:48 -05003268
Tejun Heo01f64742014-05-13 12:19:23 -04003269 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003270 ret = cgroup_rm_cftypes_locked(cfts);
Tejun Heo01f64742014-05-13 12:19:23 -04003271 mutex_unlock(&cgroup_mutex);
Tejun Heo8e3f6542012-04-01 12:09:55 -07003272 return ret;
3273}
3274
3275/**
3276 * cgroup_add_cftypes - add an array of cftypes to a subsystem
3277 * @ss: target cgroup subsystem
3278 * @cfts: zero-length name terminated array of cftypes
3279 *
3280 * Register @cfts to @ss. Files described by @cfts are created for all
3281 * existing cgroups to which @ss is attached and all future cgroups will
3282 * have them too. This function can be called anytime whether @ss is
3283 * attached or not.
3284 *
3285 * Returns 0 on successful registration, -errno on failure. Note that this
3286 * function currently returns 0 as long as @cfts registration is successful
3287 * even if some file creation attempts on existing cgroups fail.
3288 */
Tejun Heo2cf669a2014-07-15 11:05:09 -04003289static int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003290{
Tejun Heo9ccece82013-06-28 16:24:11 -07003291 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003292
Li Zefanc731ae12014-06-05 17:16:30 +08003293 if (ss->disabled)
3294 return 0;
3295
Li Zefandc5736e2014-02-17 10:41:50 +08003296 if (!cfts || cfts[0].name[0] == '\0')
3297 return 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003298
Tejun Heo2bd59d42014-02-11 11:52:49 -05003299 ret = cgroup_init_cftypes(ss, cfts);
Tejun Heo9ccece82013-06-28 16:24:11 -07003300 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05003301 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003302
Tejun Heo01f64742014-05-13 12:19:23 -04003303 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003304
Tejun Heo0adb0702014-02-12 09:29:48 -05003305 list_add_tail(&cfts->node, &ss->cfts);
Tejun Heo21a2d342014-02-12 09:29:49 -05003306 ret = cgroup_apply_cftypes(cfts, true);
Tejun Heo9ccece82013-06-28 16:24:11 -07003307 if (ret)
Tejun Heo21a2d342014-02-12 09:29:49 -05003308 cgroup_rm_cftypes_locked(cfts);
3309
Tejun Heo01f64742014-05-13 12:19:23 -04003310 mutex_unlock(&cgroup_mutex);
Tejun Heo9ccece82013-06-28 16:24:11 -07003311 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003312}
Tejun Heo79578622012-04-01 12:09:56 -07003313
3314/**
Tejun Heoa8ddc822014-07-15 11:05:10 -04003315 * cgroup_add_dfl_cftypes - add an array of cftypes for default hierarchy
3316 * @ss: target cgroup subsystem
3317 * @cfts: zero-length name terminated array of cftypes
3318 *
3319 * Similar to cgroup_add_cftypes() but the added files are only used for
3320 * the default hierarchy.
3321 */
3322int cgroup_add_dfl_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
3323{
3324 struct cftype *cft;
3325
3326 for (cft = cfts; cft && cft->name[0] != '\0'; cft++)
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003327 cft->flags |= __CFTYPE_ONLY_ON_DFL;
Tejun Heoa8ddc822014-07-15 11:05:10 -04003328 return cgroup_add_cftypes(ss, cfts);
3329}
3330
3331/**
3332 * cgroup_add_legacy_cftypes - add an array of cftypes for legacy hierarchies
3333 * @ss: target cgroup subsystem
3334 * @cfts: zero-length name terminated array of cftypes
3335 *
3336 * Similar to cgroup_add_cftypes() but the added files are only used for
3337 * the legacy hierarchies.
3338 */
Tejun Heo2cf669a2014-07-15 11:05:09 -04003339int cgroup_add_legacy_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
3340{
Tejun Heoa8ddc822014-07-15 11:05:10 -04003341 struct cftype *cft;
3342
Vivek Goyalfa8137b2014-08-08 11:44:03 -04003343 /*
3344 * If legacy_flies_on_dfl, we want to show the legacy files on the
3345 * dfl hierarchy but iff the target subsystem hasn't been updated
3346 * for the dfl hierarchy yet.
3347 */
3348 if (!cgroup_legacy_files_on_dfl ||
3349 ss->dfl_cftypes != ss->legacy_cftypes) {
3350 for (cft = cfts; cft && cft->name[0] != '\0'; cft++)
3351 cft->flags |= __CFTYPE_NOT_ON_DFL;
3352 }
3353
Tejun Heo2cf669a2014-07-15 11:05:09 -04003354 return cgroup_add_cftypes(ss, cfts);
3355}
3356
Li Zefana043e3b2008-02-23 15:24:09 -08003357/**
3358 * cgroup_task_count - count the number of tasks in a cgroup.
3359 * @cgrp: the cgroup in question
3360 *
3361 * Return the number of tasks in the cgroup.
3362 */
Tejun Heo07bc3562014-02-13 06:58:39 -05003363static int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003364{
3365 int count = 0;
Tejun Heo69d02062013-06-12 21:04:50 -07003366 struct cgrp_cset_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003367
Tejun Heo96d365e2014-02-13 06:58:40 -05003368 down_read(&css_set_rwsem);
Tejun Heo69d02062013-06-12 21:04:50 -07003369 list_for_each_entry(link, &cgrp->cset_links, cset_link)
3370 count += atomic_read(&link->cset->refcount);
Tejun Heo96d365e2014-02-13 06:58:40 -05003371 up_read(&css_set_rwsem);
Paul Menagebbcb81d2007-10-18 23:39:32 -07003372 return count;
3373}
3374
Tejun Heo574bd9f2012-11-09 09:12:29 -08003375/**
Tejun Heo492eb212013-08-08 20:11:25 -04003376 * css_next_child - find the next child of a given css
Tejun Heoc2931b72014-05-16 13:22:51 -04003377 * @pos: the current position (%NULL to initiate traversal)
3378 * @parent: css whose children to walk
Tejun Heo53fa5262013-05-24 10:55:38 +09003379 *
Tejun Heoc2931b72014-05-16 13:22:51 -04003380 * This function returns the next child of @parent and should be called
Tejun Heo87fb54f2013-12-06 15:11:55 -05003381 * under either cgroup_mutex or RCU read lock. The only requirement is
Tejun Heoc2931b72014-05-16 13:22:51 -04003382 * that @parent and @pos are accessible. The next sibling is guaranteed to
3383 * be returned regardless of their states.
3384 *
3385 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3386 * css which finished ->css_online() is guaranteed to be visible in the
3387 * future iterations and will stay visible until the last reference is put.
3388 * A css which hasn't finished ->css_online() or already finished
3389 * ->css_offline() may show up during traversal. It's each subsystem's
3390 * responsibility to synchronize against on/offlining.
Tejun Heo53fa5262013-05-24 10:55:38 +09003391 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003392struct cgroup_subsys_state *css_next_child(struct cgroup_subsys_state *pos,
3393 struct cgroup_subsys_state *parent)
Tejun Heo53fa5262013-05-24 10:55:38 +09003394{
Tejun Heoc2931b72014-05-16 13:22:51 -04003395 struct cgroup_subsys_state *next;
Tejun Heo53fa5262013-05-24 10:55:38 +09003396
Tejun Heo8353da12014-05-13 12:19:23 -04003397 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo53fa5262013-05-24 10:55:38 +09003398
3399 /*
Tejun Heode3f0342014-05-16 13:22:49 -04003400 * @pos could already have been unlinked from the sibling list.
3401 * Once a cgroup is removed, its ->sibling.next is no longer
3402 * updated when its next sibling changes. CSS_RELEASED is set when
3403 * @pos is taken off list, at which time its next pointer is valid,
3404 * and, as releases are serialized, the one pointed to by the next
3405 * pointer is guaranteed to not have started release yet. This
3406 * implies that if we observe !CSS_RELEASED on @pos in this RCU
3407 * critical section, the one pointed to by its next pointer is
3408 * guaranteed to not have finished its RCU grace period even if we
3409 * have dropped rcu_read_lock() inbetween iterations.
Tejun Heo3b287a52013-08-08 20:11:24 -04003410 *
Tejun Heode3f0342014-05-16 13:22:49 -04003411 * If @pos has CSS_RELEASED set, its next pointer can't be
3412 * dereferenced; however, as each css is given a monotonically
3413 * increasing unique serial number and always appended to the
3414 * sibling list, the next one can be found by walking the parent's
3415 * children until the first css with higher serial number than
3416 * @pos's. While this path can be slower, it happens iff iteration
3417 * races against release and the race window is very small.
Tejun Heo53fa5262013-05-24 10:55:38 +09003418 */
Tejun Heo3b287a52013-08-08 20:11:24 -04003419 if (!pos) {
Tejun Heoc2931b72014-05-16 13:22:51 -04003420 next = list_entry_rcu(parent->children.next, struct cgroup_subsys_state, sibling);
3421 } else if (likely(!(pos->flags & CSS_RELEASED))) {
3422 next = list_entry_rcu(pos->sibling.next, struct cgroup_subsys_state, sibling);
Tejun Heo3b287a52013-08-08 20:11:24 -04003423 } else {
Tejun Heoc2931b72014-05-16 13:22:51 -04003424 list_for_each_entry_rcu(next, &parent->children, sibling)
Tejun Heo3b287a52013-08-08 20:11:24 -04003425 if (next->serial_nr > pos->serial_nr)
3426 break;
Tejun Heo53fa5262013-05-24 10:55:38 +09003427 }
3428
Tejun Heo3b281af2014-04-23 11:13:15 -04003429 /*
3430 * @next, if not pointing to the head, can be dereferenced and is
Tejun Heoc2931b72014-05-16 13:22:51 -04003431 * the next sibling.
Tejun Heo3b281af2014-04-23 11:13:15 -04003432 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003433 if (&next->sibling != &parent->children)
3434 return next;
Tejun Heo3b281af2014-04-23 11:13:15 -04003435 return NULL;
Tejun Heo53fa5262013-05-24 10:55:38 +09003436}
Tejun Heo53fa5262013-05-24 10:55:38 +09003437
3438/**
Tejun Heo492eb212013-08-08 20:11:25 -04003439 * css_next_descendant_pre - find the next descendant for pre-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003440 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003441 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003442 *
Tejun Heo492eb212013-08-08 20:11:25 -04003443 * To be used by css_for_each_descendant_pre(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003444 * to visit for pre-order traversal of @root's descendants. @root is
3445 * included in the iteration and the first node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003446 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003447 * While this function requires cgroup_mutex or RCU read locking, it
3448 * doesn't require the whole traversal to be contained in a single critical
3449 * section. This function will return the correct next descendant as long
3450 * as both @pos and @root are accessible and @pos is a descendant of @root.
Tejun Heoc2931b72014-05-16 13:22:51 -04003451 *
3452 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3453 * css which finished ->css_online() is guaranteed to be visible in the
3454 * future iterations and will stay visible until the last reference is put.
3455 * A css which hasn't finished ->css_online() or already finished
3456 * ->css_offline() may show up during traversal. It's each subsystem's
3457 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003458 */
Tejun Heo492eb212013-08-08 20:11:25 -04003459struct cgroup_subsys_state *
3460css_next_descendant_pre(struct cgroup_subsys_state *pos,
3461 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003462{
Tejun Heo492eb212013-08-08 20:11:25 -04003463 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003464
Tejun Heo8353da12014-05-13 12:19:23 -04003465 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003466
Tejun Heobd8815a2013-08-08 20:11:27 -04003467 /* if first iteration, visit @root */
Tejun Heo7805d002013-05-24 10:50:24 +09003468 if (!pos)
Tejun Heobd8815a2013-08-08 20:11:27 -04003469 return root;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003470
3471 /* visit the first child if exists */
Tejun Heo492eb212013-08-08 20:11:25 -04003472 next = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003473 if (next)
3474 return next;
3475
3476 /* no child, visit my or the closest ancestor's next sibling */
Tejun Heo492eb212013-08-08 20:11:25 -04003477 while (pos != root) {
Tejun Heo5c9d5352014-05-16 13:22:48 -04003478 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003479 if (next)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003480 return next;
Tejun Heo5c9d5352014-05-16 13:22:48 -04003481 pos = pos->parent;
Tejun Heo7805d002013-05-24 10:50:24 +09003482 }
Tejun Heo574bd9f2012-11-09 09:12:29 -08003483
3484 return NULL;
3485}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003486
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003487/**
Tejun Heo492eb212013-08-08 20:11:25 -04003488 * css_rightmost_descendant - return the rightmost descendant of a css
3489 * @pos: css of interest
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003490 *
Tejun Heo492eb212013-08-08 20:11:25 -04003491 * Return the rightmost descendant of @pos. If there's no descendant, @pos
3492 * is returned. This can be used during pre-order traversal to skip
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003493 * subtree of @pos.
Tejun Heo75501a62013-05-24 10:55:38 +09003494 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003495 * While this function requires cgroup_mutex or RCU read locking, it
3496 * doesn't require the whole traversal to be contained in a single critical
3497 * section. This function will return the correct rightmost descendant as
3498 * long as @pos is accessible.
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003499 */
Tejun Heo492eb212013-08-08 20:11:25 -04003500struct cgroup_subsys_state *
3501css_rightmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003502{
Tejun Heo492eb212013-08-08 20:11:25 -04003503 struct cgroup_subsys_state *last, *tmp;
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003504
Tejun Heo8353da12014-05-13 12:19:23 -04003505 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003506
3507 do {
3508 last = pos;
3509 /* ->prev isn't RCU safe, walk ->next till the end */
3510 pos = NULL;
Tejun Heo492eb212013-08-08 20:11:25 -04003511 css_for_each_child(tmp, last)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003512 pos = tmp;
3513 } while (pos);
3514
3515 return last;
3516}
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003517
Tejun Heo492eb212013-08-08 20:11:25 -04003518static struct cgroup_subsys_state *
3519css_leftmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003520{
Tejun Heo492eb212013-08-08 20:11:25 -04003521 struct cgroup_subsys_state *last;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003522
3523 do {
3524 last = pos;
Tejun Heo492eb212013-08-08 20:11:25 -04003525 pos = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003526 } while (pos);
3527
3528 return last;
3529}
3530
3531/**
Tejun Heo492eb212013-08-08 20:11:25 -04003532 * css_next_descendant_post - find the next descendant for post-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003533 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003534 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003535 *
Tejun Heo492eb212013-08-08 20:11:25 -04003536 * To be used by css_for_each_descendant_post(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003537 * to visit for post-order traversal of @root's descendants. @root is
3538 * included in the iteration and the last node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003539 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003540 * While this function requires cgroup_mutex or RCU read locking, it
3541 * doesn't require the whole traversal to be contained in a single critical
3542 * section. This function will return the correct next descendant as long
3543 * as both @pos and @cgroup are accessible and @pos is a descendant of
3544 * @cgroup.
Tejun Heoc2931b72014-05-16 13:22:51 -04003545 *
3546 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3547 * css which finished ->css_online() is guaranteed to be visible in the
3548 * future iterations and will stay visible until the last reference is put.
3549 * A css which hasn't finished ->css_online() or already finished
3550 * ->css_offline() may show up during traversal. It's each subsystem's
3551 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003552 */
Tejun Heo492eb212013-08-08 20:11:25 -04003553struct cgroup_subsys_state *
3554css_next_descendant_post(struct cgroup_subsys_state *pos,
3555 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003556{
Tejun Heo492eb212013-08-08 20:11:25 -04003557 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003558
Tejun Heo8353da12014-05-13 12:19:23 -04003559 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003560
Tejun Heo58b79a92013-09-06 15:31:08 -04003561 /* if first iteration, visit leftmost descendant which may be @root */
3562 if (!pos)
3563 return css_leftmost_descendant(root);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003564
Tejun Heobd8815a2013-08-08 20:11:27 -04003565 /* if we visited @root, we're done */
3566 if (pos == root)
3567 return NULL;
3568
Tejun Heo574bd9f2012-11-09 09:12:29 -08003569 /* if there's an unvisited sibling, visit its leftmost descendant */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003570 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003571 if (next)
Tejun Heo492eb212013-08-08 20:11:25 -04003572 return css_leftmost_descendant(next);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003573
3574 /* no sibling left, visit parent */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003575 return pos->parent;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003576}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003577
Tejun Heof3d46502014-05-16 13:22:52 -04003578/**
3579 * css_has_online_children - does a css have online children
3580 * @css: the target css
3581 *
3582 * Returns %true if @css has any online children; otherwise, %false. This
3583 * function can be called from any context but the caller is responsible
3584 * for synchronizing against on/offlining as necessary.
3585 */
3586bool css_has_online_children(struct cgroup_subsys_state *css)
Tejun Heocbc125e2014-05-14 09:15:01 -04003587{
Tejun Heof3d46502014-05-16 13:22:52 -04003588 struct cgroup_subsys_state *child;
3589 bool ret = false;
Tejun Heocbc125e2014-05-14 09:15:01 -04003590
3591 rcu_read_lock();
Tejun Heof3d46502014-05-16 13:22:52 -04003592 css_for_each_child(child, css) {
Li Zefan99bae5f2014-06-12 14:31:31 +08003593 if (child->flags & CSS_ONLINE) {
Tejun Heof3d46502014-05-16 13:22:52 -04003594 ret = true;
3595 break;
Tejun Heocbc125e2014-05-14 09:15:01 -04003596 }
3597 }
3598 rcu_read_unlock();
Tejun Heof3d46502014-05-16 13:22:52 -04003599 return ret;
Cliff Wickman31a7df02008-02-07 00:14:42 -08003600}
3601
Tejun Heo0942eee2013-08-08 20:11:26 -04003602/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003603 * css_advance_task_iter - advance a task itererator to the next css_set
Tejun Heo0942eee2013-08-08 20:11:26 -04003604 * @it: the iterator to advance
3605 *
3606 * Advance @it to the next css_set to walk.
Tejun Heod5158762013-08-08 20:11:26 -04003607 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003608static void css_advance_task_iter(struct css_task_iter *it)
Tejun Heod5158762013-08-08 20:11:26 -04003609{
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003610 struct list_head *l = it->cset_pos;
Tejun Heod5158762013-08-08 20:11:26 -04003611 struct cgrp_cset_link *link;
3612 struct css_set *cset;
3613
3614 /* Advance to the next non-empty css_set */
3615 do {
3616 l = l->next;
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003617 if (l == it->cset_head) {
3618 it->cset_pos = NULL;
Tejun Heod5158762013-08-08 20:11:26 -04003619 return;
3620 }
Tejun Heo3ebb2b62014-04-23 11:13:15 -04003621
3622 if (it->ss) {
3623 cset = container_of(l, struct css_set,
3624 e_cset_node[it->ss->id]);
3625 } else {
3626 link = list_entry(l, struct cgrp_cset_link, cset_link);
3627 cset = link->cset;
3628 }
Tejun Heoc7561122014-02-25 10:04:01 -05003629 } while (list_empty(&cset->tasks) && list_empty(&cset->mg_tasks));
3630
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003631 it->cset_pos = l;
Tejun Heoc7561122014-02-25 10:04:01 -05003632
3633 if (!list_empty(&cset->tasks))
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003634 it->task_pos = cset->tasks.next;
Tejun Heoc7561122014-02-25 10:04:01 -05003635 else
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003636 it->task_pos = cset->mg_tasks.next;
3637
3638 it->tasks_head = &cset->tasks;
3639 it->mg_tasks_head = &cset->mg_tasks;
Tejun Heod5158762013-08-08 20:11:26 -04003640}
3641
Tejun Heo0942eee2013-08-08 20:11:26 -04003642/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003643 * css_task_iter_start - initiate task iteration
3644 * @css: the css to walk tasks of
Tejun Heo0942eee2013-08-08 20:11:26 -04003645 * @it: the task iterator to use
3646 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003647 * Initiate iteration through the tasks of @css. The caller can call
3648 * css_task_iter_next() to walk through the tasks until the function
3649 * returns NULL. On completion of iteration, css_task_iter_end() must be
3650 * called.
Tejun Heo0942eee2013-08-08 20:11:26 -04003651 *
3652 * Note that this function acquires a lock which is released when the
3653 * iteration finishes. The caller can't sleep while iteration is in
3654 * progress.
3655 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003656void css_task_iter_start(struct cgroup_subsys_state *css,
3657 struct css_task_iter *it)
Tejun Heo96d365e2014-02-13 06:58:40 -05003658 __acquires(css_set_rwsem)
Paul Menage817929e2007-10-18 23:39:36 -07003659{
Tejun Heo56fde9e2014-02-13 06:58:38 -05003660 /* no one should try to iterate before mounting cgroups */
3661 WARN_ON_ONCE(!use_task_css_set_links);
Paul Menage817929e2007-10-18 23:39:36 -07003662
Tejun Heo96d365e2014-02-13 06:58:40 -05003663 down_read(&css_set_rwsem);
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003664
Tejun Heo3ebb2b62014-04-23 11:13:15 -04003665 it->ss = css->ss;
3666
3667 if (it->ss)
3668 it->cset_pos = &css->cgroup->e_csets[css->ss->id];
3669 else
3670 it->cset_pos = &css->cgroup->cset_links;
3671
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003672 it->cset_head = it->cset_pos;
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003673
Tejun Heo72ec7022013-08-08 20:11:26 -04003674 css_advance_task_iter(it);
Paul Menagebd89aab2007-10-18 23:40:44 -07003675}
Paul Menage817929e2007-10-18 23:39:36 -07003676
Tejun Heo0942eee2013-08-08 20:11:26 -04003677/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003678 * css_task_iter_next - return the next task for the iterator
Tejun Heo0942eee2013-08-08 20:11:26 -04003679 * @it: the task iterator being iterated
3680 *
3681 * The "next" function for task iteration. @it should have been
Tejun Heo72ec7022013-08-08 20:11:26 -04003682 * initialized via css_task_iter_start(). Returns NULL when the iteration
3683 * reaches the end.
Tejun Heo0942eee2013-08-08 20:11:26 -04003684 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003685struct task_struct *css_task_iter_next(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07003686{
3687 struct task_struct *res;
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003688 struct list_head *l = it->task_pos;
Paul Menage817929e2007-10-18 23:39:36 -07003689
3690 /* If the iterator cg is NULL, we have no tasks */
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003691 if (!it->cset_pos)
Paul Menage817929e2007-10-18 23:39:36 -07003692 return NULL;
3693 res = list_entry(l, struct task_struct, cg_list);
Tejun Heoc7561122014-02-25 10:04:01 -05003694
3695 /*
3696 * Advance iterator to find next entry. cset->tasks is consumed
3697 * first and then ->mg_tasks. After ->mg_tasks, we move onto the
3698 * next cset.
3699 */
Paul Menage817929e2007-10-18 23:39:36 -07003700 l = l->next;
Tejun Heoc7561122014-02-25 10:04:01 -05003701
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003702 if (l == it->tasks_head)
3703 l = it->mg_tasks_head->next;
Tejun Heoc7561122014-02-25 10:04:01 -05003704
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003705 if (l == it->mg_tasks_head)
Tejun Heo72ec7022013-08-08 20:11:26 -04003706 css_advance_task_iter(it);
Tejun Heoc7561122014-02-25 10:04:01 -05003707 else
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003708 it->task_pos = l;
Tejun Heoc7561122014-02-25 10:04:01 -05003709
Paul Menage817929e2007-10-18 23:39:36 -07003710 return res;
3711}
3712
Tejun Heo0942eee2013-08-08 20:11:26 -04003713/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003714 * css_task_iter_end - finish task iteration
Tejun Heo0942eee2013-08-08 20:11:26 -04003715 * @it: the task iterator to finish
3716 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003717 * Finish task iteration started by css_task_iter_start().
Tejun Heo0942eee2013-08-08 20:11:26 -04003718 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003719void css_task_iter_end(struct css_task_iter *it)
Tejun Heo96d365e2014-02-13 06:58:40 -05003720 __releases(css_set_rwsem)
Paul Menage817929e2007-10-18 23:39:36 -07003721{
Tejun Heo96d365e2014-02-13 06:58:40 -05003722 up_read(&css_set_rwsem);
Tejun Heo8cc99342013-04-07 09:29:50 -07003723}
3724
3725/**
3726 * cgroup_trasnsfer_tasks - move tasks from one cgroup to another
3727 * @to: cgroup to which the tasks will be moved
3728 * @from: cgroup in which the tasks currently reside
Tejun Heoeaf797a2014-02-25 10:04:03 -05003729 *
3730 * Locking rules between cgroup_post_fork() and the migration path
3731 * guarantee that, if a task is forking while being migrated, the new child
3732 * is guaranteed to be either visible in the source cgroup after the
3733 * parent's migration is complete or put into the target cgroup. No task
3734 * can slip out of migration through forking.
Tejun Heo8cc99342013-04-07 09:29:50 -07003735 */
3736int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from)
3737{
Tejun Heo952aaa12014-02-25 10:04:03 -05003738 LIST_HEAD(preloaded_csets);
3739 struct cgrp_cset_link *link;
Tejun Heoe406d1c2014-02-13 06:58:39 -05003740 struct css_task_iter it;
3741 struct task_struct *task;
Tejun Heo952aaa12014-02-25 10:04:03 -05003742 int ret;
Tejun Heoe406d1c2014-02-13 06:58:39 -05003743
Tejun Heo952aaa12014-02-25 10:04:03 -05003744 mutex_lock(&cgroup_mutex);
3745
3746 /* all tasks in @from are being moved, all csets are source */
3747 down_read(&css_set_rwsem);
3748 list_for_each_entry(link, &from->cset_links, cset_link)
3749 cgroup_migrate_add_src(link->cset, to, &preloaded_csets);
3750 up_read(&css_set_rwsem);
3751
3752 ret = cgroup_migrate_prepare_dst(to, &preloaded_csets);
3753 if (ret)
3754 goto out_err;
3755
3756 /*
3757 * Migrate tasks one-by-one until @form is empty. This fails iff
3758 * ->can_attach() fails.
3759 */
Tejun Heoe406d1c2014-02-13 06:58:39 -05003760 do {
Tejun Heo9d800df2014-05-14 09:15:00 -04003761 css_task_iter_start(&from->self, &it);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003762 task = css_task_iter_next(&it);
3763 if (task)
3764 get_task_struct(task);
3765 css_task_iter_end(&it);
3766
3767 if (task) {
Tejun Heo952aaa12014-02-25 10:04:03 -05003768 ret = cgroup_migrate(to, task, false);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003769 put_task_struct(task);
3770 }
3771 } while (task && !ret);
Tejun Heo952aaa12014-02-25 10:04:03 -05003772out_err:
3773 cgroup_migrate_finish(&preloaded_csets);
3774 mutex_unlock(&cgroup_mutex);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003775 return ret;
Tejun Heo8cc99342013-04-07 09:29:50 -07003776}
3777
Paul Menage817929e2007-10-18 23:39:36 -07003778/*
Ben Blum102a7752009-09-23 15:56:26 -07003779 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003780 *
3781 * Reading this file can return large amounts of data if a cgroup has
3782 * *lots* of attached tasks. So it may need several calls to read(),
3783 * but we cannot guarantee that the information we produce is correct
3784 * unless we produce it entirely atomically.
3785 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07003786 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07003787
Li Zefan24528252012-01-20 11:58:43 +08003788/* which pidlist file are we talking about? */
3789enum cgroup_filetype {
3790 CGROUP_FILE_PROCS,
3791 CGROUP_FILE_TASKS,
3792};
3793
3794/*
3795 * A pidlist is a list of pids that virtually represents the contents of one
3796 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
3797 * a pair (one each for procs, tasks) for each pid namespace that's relevant
3798 * to the cgroup.
3799 */
3800struct cgroup_pidlist {
3801 /*
3802 * used to find which pidlist is wanted. doesn't change as long as
3803 * this particular list stays in the list.
3804 */
3805 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
3806 /* array of xids */
3807 pid_t *list;
3808 /* how many elements the above list has */
3809 int length;
Li Zefan24528252012-01-20 11:58:43 +08003810 /* each of these stored in a list by its cgroup */
3811 struct list_head links;
3812 /* pointer to the cgroup we belong to, for list removal purposes */
3813 struct cgroup *owner;
Tejun Heob1a21362013-11-29 10:42:58 -05003814 /* for delayed destruction */
3815 struct delayed_work destroy_dwork;
Li Zefan24528252012-01-20 11:58:43 +08003816};
3817
Paul Menagebbcb81d2007-10-18 23:39:32 -07003818/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07003819 * The following two functions "fix" the issue where there are more pids
3820 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
3821 * TODO: replace with a kernel-wide solution to this problem
3822 */
3823#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
3824static void *pidlist_allocate(int count)
3825{
3826 if (PIDLIST_TOO_LARGE(count))
3827 return vmalloc(count * sizeof(pid_t));
3828 else
3829 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
3830}
Tejun Heob1a21362013-11-29 10:42:58 -05003831
Ben Blumd1d9fd32009-09-23 15:56:28 -07003832static void pidlist_free(void *p)
3833{
Bandan Das58794512015-03-02 17:51:10 -05003834 kvfree(p);
Ben Blumd1d9fd32009-09-23 15:56:28 -07003835}
Ben Blumd1d9fd32009-09-23 15:56:28 -07003836
3837/*
Tejun Heob1a21362013-11-29 10:42:58 -05003838 * Used to destroy all pidlists lingering waiting for destroy timer. None
3839 * should be left afterwards.
3840 */
3841static void cgroup_pidlist_destroy_all(struct cgroup *cgrp)
3842{
3843 struct cgroup_pidlist *l, *tmp_l;
3844
3845 mutex_lock(&cgrp->pidlist_mutex);
3846 list_for_each_entry_safe(l, tmp_l, &cgrp->pidlists, links)
3847 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, 0);
3848 mutex_unlock(&cgrp->pidlist_mutex);
3849
3850 flush_workqueue(cgroup_pidlist_destroy_wq);
3851 BUG_ON(!list_empty(&cgrp->pidlists));
3852}
3853
3854static void cgroup_pidlist_destroy_work_fn(struct work_struct *work)
3855{
3856 struct delayed_work *dwork = to_delayed_work(work);
3857 struct cgroup_pidlist *l = container_of(dwork, struct cgroup_pidlist,
3858 destroy_dwork);
3859 struct cgroup_pidlist *tofree = NULL;
3860
3861 mutex_lock(&l->owner->pidlist_mutex);
Tejun Heob1a21362013-11-29 10:42:58 -05003862
3863 /*
Tejun Heo04502362013-11-29 10:42:59 -05003864 * Destroy iff we didn't get queued again. The state won't change
3865 * as destroy_dwork can only be queued while locked.
Tejun Heob1a21362013-11-29 10:42:58 -05003866 */
Tejun Heo04502362013-11-29 10:42:59 -05003867 if (!delayed_work_pending(dwork)) {
Tejun Heob1a21362013-11-29 10:42:58 -05003868 list_del(&l->links);
3869 pidlist_free(l->list);
3870 put_pid_ns(l->key.ns);
3871 tofree = l;
3872 }
3873
Tejun Heob1a21362013-11-29 10:42:58 -05003874 mutex_unlock(&l->owner->pidlist_mutex);
3875 kfree(tofree);
3876}
3877
3878/*
Ben Blum102a7752009-09-23 15:56:26 -07003879 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
Li Zefan6ee211a2013-03-12 15:36:00 -07003880 * Returns the number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07003881 */
Li Zefan6ee211a2013-03-12 15:36:00 -07003882static int pidlist_uniq(pid_t *list, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003883{
Ben Blum102a7752009-09-23 15:56:26 -07003884 int src, dest = 1;
Ben Blum102a7752009-09-23 15:56:26 -07003885
3886 /*
3887 * we presume the 0th element is unique, so i starts at 1. trivial
3888 * edge cases first; no work needs to be done for either
3889 */
3890 if (length == 0 || length == 1)
3891 return length;
3892 /* src and dest walk down the list; dest counts unique elements */
3893 for (src = 1; src < length; src++) {
3894 /* find next unique element */
3895 while (list[src] == list[src-1]) {
3896 src++;
3897 if (src == length)
3898 goto after;
3899 }
3900 /* dest always points to where the next unique element goes */
3901 list[dest] = list[src];
3902 dest++;
3903 }
3904after:
Ben Blum102a7752009-09-23 15:56:26 -07003905 return dest;
3906}
3907
Tejun Heoafb2bc12013-11-29 10:42:59 -05003908/*
3909 * The two pid files - task and cgroup.procs - guaranteed that the result
3910 * is sorted, which forced this whole pidlist fiasco. As pid order is
3911 * different per namespace, each namespace needs differently sorted list,
3912 * making it impossible to use, for example, single rbtree of member tasks
3913 * sorted by task pointer. As pidlists can be fairly large, allocating one
3914 * per open file is dangerous, so cgroup had to implement shared pool of
3915 * pidlists keyed by cgroup and namespace.
3916 *
3917 * All this extra complexity was caused by the original implementation
3918 * committing to an entirely unnecessary property. In the long term, we
Tejun Heoaa6ec292014-07-09 10:08:08 -04003919 * want to do away with it. Explicitly scramble sort order if on the
3920 * default hierarchy so that no such expectation exists in the new
3921 * interface.
Tejun Heoafb2bc12013-11-29 10:42:59 -05003922 *
3923 * Scrambling is done by swapping every two consecutive bits, which is
3924 * non-identity one-to-one mapping which disturbs sort order sufficiently.
3925 */
3926static pid_t pid_fry(pid_t pid)
3927{
3928 unsigned a = pid & 0x55555555;
3929 unsigned b = pid & 0xAAAAAAAA;
3930
3931 return (a << 1) | (b >> 1);
3932}
3933
3934static pid_t cgroup_pid_fry(struct cgroup *cgrp, pid_t pid)
3935{
Tejun Heoaa6ec292014-07-09 10:08:08 -04003936 if (cgroup_on_dfl(cgrp))
Tejun Heoafb2bc12013-11-29 10:42:59 -05003937 return pid_fry(pid);
3938 else
3939 return pid;
3940}
3941
Ben Blum102a7752009-09-23 15:56:26 -07003942static int cmppid(const void *a, const void *b)
3943{
3944 return *(pid_t *)a - *(pid_t *)b;
3945}
3946
Tejun Heoafb2bc12013-11-29 10:42:59 -05003947static int fried_cmppid(const void *a, const void *b)
3948{
3949 return pid_fry(*(pid_t *)a) - pid_fry(*(pid_t *)b);
3950}
3951
Ben Blum72a8cb32009-09-23 15:56:27 -07003952static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
3953 enum cgroup_filetype type)
3954{
3955 struct cgroup_pidlist *l;
3956 /* don't need task_nsproxy() if we're looking at ourself */
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08003957 struct pid_namespace *ns = task_active_pid_ns(current);
Li Zefanb70cc5f2010-03-10 15:22:12 -08003958
Tejun Heoe6b81712013-11-29 10:42:59 -05003959 lockdep_assert_held(&cgrp->pidlist_mutex);
3960
3961 list_for_each_entry(l, &cgrp->pidlists, links)
3962 if (l->key.type == type && l->key.ns == ns)
Ben Blum72a8cb32009-09-23 15:56:27 -07003963 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05003964 return NULL;
3965}
3966
Ben Blum72a8cb32009-09-23 15:56:27 -07003967/*
3968 * find the appropriate pidlist for our purpose (given procs vs tasks)
3969 * returns with the lock on that pidlist already held, and takes care
3970 * of the use count, or returns NULL with no locks held if we're out of
3971 * memory.
3972 */
Tejun Heoe6b81712013-11-29 10:42:59 -05003973static struct cgroup_pidlist *cgroup_pidlist_find_create(struct cgroup *cgrp,
3974 enum cgroup_filetype type)
Ben Blum72a8cb32009-09-23 15:56:27 -07003975{
3976 struct cgroup_pidlist *l;
Ben Blum72a8cb32009-09-23 15:56:27 -07003977
Tejun Heoe6b81712013-11-29 10:42:59 -05003978 lockdep_assert_held(&cgrp->pidlist_mutex);
3979
3980 l = cgroup_pidlist_find(cgrp, type);
3981 if (l)
3982 return l;
3983
Ben Blum72a8cb32009-09-23 15:56:27 -07003984 /* entry not found; create a new one */
Tejun Heof4f4be22013-06-12 21:04:51 -07003985 l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
Tejun Heoe6b81712013-11-29 10:42:59 -05003986 if (!l)
Ben Blum72a8cb32009-09-23 15:56:27 -07003987 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05003988
Tejun Heob1a21362013-11-29 10:42:58 -05003989 INIT_DELAYED_WORK(&l->destroy_dwork, cgroup_pidlist_destroy_work_fn);
Ben Blum72a8cb32009-09-23 15:56:27 -07003990 l->key.type = type;
Tejun Heoe6b81712013-11-29 10:42:59 -05003991 /* don't need task_nsproxy() if we're looking at ourself */
3992 l->key.ns = get_pid_ns(task_active_pid_ns(current));
Ben Blum72a8cb32009-09-23 15:56:27 -07003993 l->owner = cgrp;
3994 list_add(&l->links, &cgrp->pidlists);
Ben Blum72a8cb32009-09-23 15:56:27 -07003995 return l;
3996}
3997
3998/*
Ben Blum102a7752009-09-23 15:56:26 -07003999 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
4000 */
Ben Blum72a8cb32009-09-23 15:56:27 -07004001static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
4002 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07004003{
4004 pid_t *array;
4005 int length;
4006 int pid, n = 0; /* used for populating the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04004007 struct css_task_iter it;
Paul Menage817929e2007-10-18 23:39:36 -07004008 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07004009 struct cgroup_pidlist *l;
4010
Tejun Heo4bac00d2013-11-29 10:42:59 -05004011 lockdep_assert_held(&cgrp->pidlist_mutex);
4012
Ben Blum102a7752009-09-23 15:56:26 -07004013 /*
4014 * If cgroup gets more users after we read count, we won't have
4015 * enough space - tough. This race is indistinguishable to the
4016 * caller from the case that the additional cgroup users didn't
4017 * show up until sometime later on.
4018 */
4019 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07004020 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07004021 if (!array)
4022 return -ENOMEM;
4023 /* now, populate the array */
Tejun Heo9d800df2014-05-14 09:15:00 -04004024 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04004025 while ((tsk = css_task_iter_next(&it))) {
Ben Blum102a7752009-09-23 15:56:26 -07004026 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07004027 break;
Ben Blum102a7752009-09-23 15:56:26 -07004028 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07004029 if (type == CGROUP_FILE_PROCS)
4030 pid = task_tgid_vnr(tsk);
4031 else
4032 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07004033 if (pid > 0) /* make sure to only use valid results */
4034 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07004035 }
Tejun Heo72ec7022013-08-08 20:11:26 -04004036 css_task_iter_end(&it);
Ben Blum102a7752009-09-23 15:56:26 -07004037 length = n;
4038 /* now sort & (if procs) strip out duplicates */
Tejun Heoaa6ec292014-07-09 10:08:08 -04004039 if (cgroup_on_dfl(cgrp))
Tejun Heoafb2bc12013-11-29 10:42:59 -05004040 sort(array, length, sizeof(pid_t), fried_cmppid, NULL);
4041 else
4042 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07004043 if (type == CGROUP_FILE_PROCS)
Li Zefan6ee211a2013-03-12 15:36:00 -07004044 length = pidlist_uniq(array, length);
Tejun Heoe6b81712013-11-29 10:42:59 -05004045
Tejun Heoe6b81712013-11-29 10:42:59 -05004046 l = cgroup_pidlist_find_create(cgrp, type);
Ben Blum72a8cb32009-09-23 15:56:27 -07004047 if (!l) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07004048 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07004049 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07004050 }
Tejun Heoe6b81712013-11-29 10:42:59 -05004051
4052 /* store array, freeing old if necessary */
Ben Blumd1d9fd32009-09-23 15:56:28 -07004053 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07004054 l->list = array;
4055 l->length = length;
Ben Blum72a8cb32009-09-23 15:56:27 -07004056 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07004057 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004058}
4059
Balbir Singh846c7bb2007-10-18 23:39:44 -07004060/**
Li Zefana043e3b2008-02-23 15:24:09 -08004061 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07004062 * @stats: cgroupstats to fill information into
4063 * @dentry: A dentry entry belonging to the cgroup for which stats have
4064 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08004065 *
4066 * Build and fill cgroupstats so that taskstats can export it to user
4067 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07004068 */
4069int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
4070{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004071 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07004072 struct cgroup *cgrp;
Tejun Heo72ec7022013-08-08 20:11:26 -04004073 struct css_task_iter it;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004074 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08004075
Tejun Heo2bd59d42014-02-11 11:52:49 -05004076 /* it should be kernfs_node belonging to cgroupfs and is a directory */
4077 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
4078 kernfs_type(kn) != KERNFS_DIR)
4079 return -EINVAL;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004080
Li Zefanbad34662014-02-14 16:54:28 +08004081 mutex_lock(&cgroup_mutex);
4082
Tejun Heo2bd59d42014-02-11 11:52:49 -05004083 /*
4084 * We aren't being called from kernfs and there's no guarantee on
Tejun Heoec903c02014-05-13 12:11:01 -04004085 * @kn->priv's validity. For this and css_tryget_online_from_dir(),
Tejun Heo2bd59d42014-02-11 11:52:49 -05004086 * @kn->priv is RCU safe. Let's do the RCU dancing.
4087 */
4088 rcu_read_lock();
4089 cgrp = rcu_dereference(kn->priv);
Li Zefanbad34662014-02-14 16:54:28 +08004090 if (!cgrp || cgroup_is_dead(cgrp)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05004091 rcu_read_unlock();
Li Zefanbad34662014-02-14 16:54:28 +08004092 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004093 return -ENOENT;
4094 }
Li Zefanbad34662014-02-14 16:54:28 +08004095 rcu_read_unlock();
Balbir Singh846c7bb2007-10-18 23:39:44 -07004096
Tejun Heo9d800df2014-05-14 09:15:00 -04004097 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04004098 while ((tsk = css_task_iter_next(&it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07004099 switch (tsk->state) {
4100 case TASK_RUNNING:
4101 stats->nr_running++;
4102 break;
4103 case TASK_INTERRUPTIBLE:
4104 stats->nr_sleeping++;
4105 break;
4106 case TASK_UNINTERRUPTIBLE:
4107 stats->nr_uninterruptible++;
4108 break;
4109 case TASK_STOPPED:
4110 stats->nr_stopped++;
4111 break;
4112 default:
4113 if (delayacct_is_task_waiting_on_io(tsk))
4114 stats->nr_io_wait++;
4115 break;
4116 }
4117 }
Tejun Heo72ec7022013-08-08 20:11:26 -04004118 css_task_iter_end(&it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07004119
Li Zefanbad34662014-02-14 16:54:28 +08004120 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004121 return 0;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004122}
4123
Paul Menage8f3ff202009-09-23 15:56:25 -07004124
Paul Menagecc31edc2008-10-18 20:28:04 -07004125/*
Ben Blum102a7752009-09-23 15:56:26 -07004126 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07004127 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07004128 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07004129 */
4130
Ben Blum102a7752009-09-23 15:56:26 -07004131static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07004132{
4133 /*
4134 * Initially we receive a position value that corresponds to
4135 * one more than the last pid shown (or 0 on the first call or
4136 * after a seek to the start). Use a binary-search to find the
4137 * next pid to display, if any
4138 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05004139 struct kernfs_open_file *of = s->private;
Tejun Heo7da11272013-12-05 12:28:04 -05004140 struct cgroup *cgrp = seq_css(s)->cgroup;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004141 struct cgroup_pidlist *l;
Tejun Heo7da11272013-12-05 12:28:04 -05004142 enum cgroup_filetype type = seq_cft(s)->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07004143 int index = 0, pid = *pos;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004144 int *iter, ret;
Paul Menagecc31edc2008-10-18 20:28:04 -07004145
Tejun Heo4bac00d2013-11-29 10:42:59 -05004146 mutex_lock(&cgrp->pidlist_mutex);
4147
4148 /*
Tejun Heo5d224442013-12-05 12:28:04 -05004149 * !NULL @of->priv indicates that this isn't the first start()
Tejun Heo4bac00d2013-11-29 10:42:59 -05004150 * after open. If the matching pidlist is around, we can use that.
Tejun Heo5d224442013-12-05 12:28:04 -05004151 * Look for it. Note that @of->priv can't be used directly. It
Tejun Heo4bac00d2013-11-29 10:42:59 -05004152 * could already have been destroyed.
4153 */
Tejun Heo5d224442013-12-05 12:28:04 -05004154 if (of->priv)
4155 of->priv = cgroup_pidlist_find(cgrp, type);
Tejun Heo4bac00d2013-11-29 10:42:59 -05004156
4157 /*
4158 * Either this is the first start() after open or the matching
4159 * pidlist has been destroyed inbetween. Create a new one.
4160 */
Tejun Heo5d224442013-12-05 12:28:04 -05004161 if (!of->priv) {
4162 ret = pidlist_array_load(cgrp, type,
4163 (struct cgroup_pidlist **)&of->priv);
Tejun Heo4bac00d2013-11-29 10:42:59 -05004164 if (ret)
4165 return ERR_PTR(ret);
4166 }
Tejun Heo5d224442013-12-05 12:28:04 -05004167 l = of->priv;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004168
Paul Menagecc31edc2008-10-18 20:28:04 -07004169 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07004170 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11004171
Paul Menagecc31edc2008-10-18 20:28:04 -07004172 while (index < end) {
4173 int mid = (index + end) / 2;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004174 if (cgroup_pid_fry(cgrp, l->list[mid]) == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07004175 index = mid;
4176 break;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004177 } else if (cgroup_pid_fry(cgrp, l->list[mid]) <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07004178 index = mid + 1;
4179 else
4180 end = mid;
4181 }
4182 }
4183 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07004184 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07004185 return NULL;
4186 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07004187 iter = l->list + index;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004188 *pos = cgroup_pid_fry(cgrp, *iter);
Paul Menagecc31edc2008-10-18 20:28:04 -07004189 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004190}
4191
Ben Blum102a7752009-09-23 15:56:26 -07004192static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07004193{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004194 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05004195 struct cgroup_pidlist *l = of->priv;
Tejun Heo62236852013-11-29 10:42:58 -05004196
Tejun Heo5d224442013-12-05 12:28:04 -05004197 if (l)
4198 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork,
Tejun Heo04502362013-11-29 10:42:59 -05004199 CGROUP_PIDLIST_DESTROY_DELAY);
Tejun Heo7da11272013-12-05 12:28:04 -05004200 mutex_unlock(&seq_css(s)->cgroup->pidlist_mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07004201}
4202
Ben Blum102a7752009-09-23 15:56:26 -07004203static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07004204{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004205 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05004206 struct cgroup_pidlist *l = of->priv;
Ben Blum102a7752009-09-23 15:56:26 -07004207 pid_t *p = v;
4208 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07004209 /*
4210 * Advance to the next pid in the array. If this goes off the
4211 * end, we're done
4212 */
4213 p++;
4214 if (p >= end) {
4215 return NULL;
4216 } else {
Tejun Heo7da11272013-12-05 12:28:04 -05004217 *pos = cgroup_pid_fry(seq_css(s)->cgroup, *p);
Paul Menagecc31edc2008-10-18 20:28:04 -07004218 return p;
4219 }
4220}
4221
Ben Blum102a7752009-09-23 15:56:26 -07004222static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07004223{
Joe Perches94ff2122015-04-15 16:18:20 -07004224 seq_printf(s, "%d\n", *(int *)v);
4225
4226 return 0;
Paul Menagecc31edc2008-10-18 20:28:04 -07004227}
4228
Tejun Heo182446d2013-08-08 20:11:24 -04004229static u64 cgroup_read_notify_on_release(struct cgroup_subsys_state *css,
4230 struct cftype *cft)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004231{
Tejun Heo182446d2013-08-08 20:11:24 -04004232 return notify_on_release(css->cgroup);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004233}
4234
Tejun Heo182446d2013-08-08 20:11:24 -04004235static int cgroup_write_notify_on_release(struct cgroup_subsys_state *css,
4236 struct cftype *cft, u64 val)
Paul Menage6379c102008-07-25 01:47:01 -07004237{
Paul Menage6379c102008-07-25 01:47:01 -07004238 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04004239 set_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004240 else
Tejun Heo182446d2013-08-08 20:11:24 -04004241 clear_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004242 return 0;
4243}
4244
Tejun Heo182446d2013-08-08 20:11:24 -04004245static u64 cgroup_clone_children_read(struct cgroup_subsys_state *css,
4246 struct cftype *cft)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004247{
Tejun Heo182446d2013-08-08 20:11:24 -04004248 return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004249}
4250
Tejun Heo182446d2013-08-08 20:11:24 -04004251static int cgroup_clone_children_write(struct cgroup_subsys_state *css,
4252 struct cftype *cft, u64 val)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004253{
4254 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04004255 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004256 else
Tejun Heo182446d2013-08-08 20:11:24 -04004257 clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004258 return 0;
4259}
4260
Tejun Heoa14c6872014-07-15 11:05:09 -04004261/* cgroup core interface files for the default hierarchy */
4262static struct cftype cgroup_dfl_base_files[] = {
4263 {
4264 .name = "cgroup.procs",
4265 .seq_start = cgroup_pidlist_start,
4266 .seq_next = cgroup_pidlist_next,
4267 .seq_stop = cgroup_pidlist_stop,
4268 .seq_show = cgroup_pidlist_show,
4269 .private = CGROUP_FILE_PROCS,
4270 .write = cgroup_procs_write,
4271 .mode = S_IRUGO | S_IWUSR,
4272 },
4273 {
4274 .name = "cgroup.controllers",
4275 .flags = CFTYPE_ONLY_ON_ROOT,
4276 .seq_show = cgroup_root_controllers_show,
4277 },
4278 {
4279 .name = "cgroup.controllers",
4280 .flags = CFTYPE_NOT_ON_ROOT,
4281 .seq_show = cgroup_controllers_show,
4282 },
4283 {
4284 .name = "cgroup.subtree_control",
4285 .seq_show = cgroup_subtree_control_show,
4286 .write = cgroup_subtree_control_write,
4287 },
4288 {
4289 .name = "cgroup.populated",
4290 .flags = CFTYPE_NOT_ON_ROOT,
4291 .seq_show = cgroup_populated_show,
4292 },
4293 { } /* terminate */
4294};
4295
4296/* cgroup core interface files for the legacy hierarchies */
4297static struct cftype cgroup_legacy_base_files[] = {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004298 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07004299 .name = "cgroup.procs",
Tejun Heo6612f052013-12-05 12:28:04 -05004300 .seq_start = cgroup_pidlist_start,
4301 .seq_next = cgroup_pidlist_next,
4302 .seq_stop = cgroup_pidlist_stop,
4303 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004304 .private = CGROUP_FILE_PROCS,
Tejun Heoacbef752014-05-13 12:16:22 -04004305 .write = cgroup_procs_write,
Ben Blum74a11662011-05-26 16:25:20 -07004306 .mode = S_IRUGO | S_IWUSR,
Ben Blum102a7752009-09-23 15:56:26 -07004307 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07004308 {
Daniel Lezcano97978e62010-10-27 15:33:35 -07004309 .name = "cgroup.clone_children",
4310 .read_u64 = cgroup_clone_children_read,
4311 .write_u64 = cgroup_clone_children_write,
4312 },
Tejun Heo6e6ff252012-04-01 12:09:55 -07004313 {
Tejun Heo873fe092013-04-14 20:15:26 -07004314 .name = "cgroup.sane_behavior",
4315 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004316 .seq_show = cgroup_sane_behavior_show,
Tejun Heo873fe092013-04-14 20:15:26 -07004317 },
Tejun Heof8f22e52014-04-23 11:13:16 -04004318 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07004319 .name = "tasks",
Tejun Heo6612f052013-12-05 12:28:04 -05004320 .seq_start = cgroup_pidlist_start,
4321 .seq_next = cgroup_pidlist_next,
4322 .seq_stop = cgroup_pidlist_stop,
4323 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004324 .private = CGROUP_FILE_TASKS,
Tejun Heoacbef752014-05-13 12:16:22 -04004325 .write = cgroup_tasks_write,
Tejun Heod5c56ce2013-06-03 19:14:34 -07004326 .mode = S_IRUGO | S_IWUSR,
4327 },
4328 {
4329 .name = "notify_on_release",
Tejun Heod5c56ce2013-06-03 19:14:34 -07004330 .read_u64 = cgroup_read_notify_on_release,
4331 .write_u64 = cgroup_write_notify_on_release,
4332 },
Tejun Heo873fe092013-04-14 20:15:26 -07004333 {
Tejun Heo6e6ff252012-04-01 12:09:55 -07004334 .name = "release_agent",
Tejun Heoa14c6872014-07-15 11:05:09 -04004335 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004336 .seq_show = cgroup_release_agent_show,
Tejun Heo451af502014-05-13 12:16:21 -04004337 .write = cgroup_release_agent_write,
Tejun Heo5f469902014-02-11 11:52:48 -05004338 .max_write_len = PATH_MAX - 1,
Tejun Heo6e6ff252012-04-01 12:09:55 -07004339 },
Tejun Heodb0416b2012-04-01 12:09:55 -07004340 { } /* terminate */
Paul Menagebbcb81d2007-10-18 23:39:32 -07004341};
4342
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004343/**
Tejun Heo628f7cd2013-06-28 16:24:11 -07004344 * cgroup_populate_dir - create subsys files in a cgroup directory
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004345 * @cgrp: target cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004346 * @subsys_mask: mask of the subsystem ids whose files should be added
Tejun Heobee55092013-06-28 16:24:11 -07004347 *
4348 * On failure, no file is added.
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004349 */
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10004350static int cgroup_populate_dir(struct cgroup *cgrp, unsigned long subsys_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004351{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004352 struct cgroup_subsys *ss;
Tejun Heob420ba72013-07-12 12:34:02 -07004353 int i, ret = 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004354
Tejun Heo8e3f6542012-04-01 12:09:55 -07004355 /* process cftsets of each subsystem */
Tejun Heob420ba72013-07-12 12:34:02 -07004356 for_each_subsys(ss, i) {
Tejun Heo0adb0702014-02-12 09:29:48 -05004357 struct cftype *cfts;
Tejun Heob420ba72013-07-12 12:34:02 -07004358
Tejun Heo69dfa002014-05-04 15:09:13 -04004359 if (!(subsys_mask & (1 << i)))
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04004360 continue;
Tejun Heo8e3f6542012-04-01 12:09:55 -07004361
Tejun Heo0adb0702014-02-12 09:29:48 -05004362 list_for_each_entry(cfts, &ss->cfts, node) {
4363 ret = cgroup_addrm_files(cgrp, cfts, true);
Tejun Heobee55092013-06-28 16:24:11 -07004364 if (ret < 0)
4365 goto err;
4366 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004367 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004368 return 0;
Tejun Heobee55092013-06-28 16:24:11 -07004369err:
4370 cgroup_clear_dir(cgrp, subsys_mask);
4371 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004372}
4373
Tejun Heo0c21ead2013-08-13 20:22:51 -04004374/*
4375 * css destruction is four-stage process.
4376 *
4377 * 1. Destruction starts. Killing of the percpu_ref is initiated.
4378 * Implemented in kill_css().
4379 *
4380 * 2. When the percpu_ref is confirmed to be visible as killed on all CPUs
Tejun Heoec903c02014-05-13 12:11:01 -04004381 * and thus css_tryget_online() is guaranteed to fail, the css can be
4382 * offlined by invoking offline_css(). After offlining, the base ref is
4383 * put. Implemented in css_killed_work_fn().
Tejun Heo0c21ead2013-08-13 20:22:51 -04004384 *
4385 * 3. When the percpu_ref reaches zero, the only possible remaining
4386 * accessors are inside RCU read sections. css_release() schedules the
4387 * RCU callback.
4388 *
4389 * 4. After the grace period, the css can be freed. Implemented in
4390 * css_free_work_fn().
4391 *
4392 * It is actually hairier because both step 2 and 4 require process context
4393 * and thus involve punting to css->destroy_work adding two additional
4394 * steps to the already complex sequence.
4395 */
Tejun Heo35ef10d2013-08-13 11:01:54 -04004396static void css_free_work_fn(struct work_struct *work)
Tejun Heo48ddbe12012-04-01 12:09:56 -07004397{
4398 struct cgroup_subsys_state *css =
Tejun Heo35ef10d2013-08-13 11:01:54 -04004399 container_of(work, struct cgroup_subsys_state, destroy_work);
Vladimir Davydov01e58652015-02-12 14:59:26 -08004400 struct cgroup_subsys *ss = css->ss;
Tejun Heo0c21ead2013-08-13 20:22:51 -04004401 struct cgroup *cgrp = css->cgroup;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004402
Tejun Heo9a1049d2014-06-28 08:10:14 -04004403 percpu_ref_exit(&css->refcnt);
4404
Vladimir Davydov01e58652015-02-12 14:59:26 -08004405 if (ss) {
Tejun Heo9d755d32014-05-14 09:15:02 -04004406 /* css free path */
Vladimir Davydov01e58652015-02-12 14:59:26 -08004407 int id = css->id;
4408
Tejun Heo9d755d32014-05-14 09:15:02 -04004409 if (css->parent)
4410 css_put(css->parent);
Tejun Heo0ae78e02013-08-13 11:01:54 -04004411
Vladimir Davydov01e58652015-02-12 14:59:26 -08004412 ss->css_free(css);
4413 cgroup_idr_remove(&ss->css_idr, id);
Tejun Heo9d755d32014-05-14 09:15:02 -04004414 cgroup_put(cgrp);
4415 } else {
4416 /* cgroup free path */
4417 atomic_dec(&cgrp->root->nr_cgrps);
4418 cgroup_pidlist_destroy_all(cgrp);
Zefan Li971ff492014-09-18 16:06:19 +08004419 cancel_work_sync(&cgrp->release_agent_work);
Tejun Heo9d755d32014-05-14 09:15:02 -04004420
Tejun Heod51f39b2014-05-16 13:22:48 -04004421 if (cgroup_parent(cgrp)) {
Tejun Heo9d755d32014-05-14 09:15:02 -04004422 /*
4423 * We get a ref to the parent, and put the ref when
4424 * this cgroup is being freed, so it's guaranteed
4425 * that the parent won't be destroyed before its
4426 * children.
4427 */
Tejun Heod51f39b2014-05-16 13:22:48 -04004428 cgroup_put(cgroup_parent(cgrp));
Tejun Heo9d755d32014-05-14 09:15:02 -04004429 kernfs_put(cgrp->kn);
4430 kfree(cgrp);
4431 } else {
4432 /*
4433 * This is root cgroup's refcnt reaching zero,
4434 * which indicates that the root should be
4435 * released.
4436 */
4437 cgroup_destroy_root(cgrp->root);
4438 }
4439 }
Tejun Heo0c21ead2013-08-13 20:22:51 -04004440}
4441
4442static void css_free_rcu_fn(struct rcu_head *rcu_head)
4443{
4444 struct cgroup_subsys_state *css =
4445 container_of(rcu_head, struct cgroup_subsys_state, rcu_head);
4446
Tejun Heo0c21ead2013-08-13 20:22:51 -04004447 INIT_WORK(&css->destroy_work, css_free_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05004448 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004449}
4450
Tejun Heo25e15d82014-05-14 09:15:02 -04004451static void css_release_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004452{
4453 struct cgroup_subsys_state *css =
Tejun Heo25e15d82014-05-14 09:15:02 -04004454 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo15a4c832014-05-04 15:09:14 -04004455 struct cgroup_subsys *ss = css->ss;
Tejun Heo9d755d32014-05-14 09:15:02 -04004456 struct cgroup *cgrp = css->cgroup;
Tejun Heod3daf282013-06-13 19:39:16 -07004457
Tejun Heo1fed1b22014-05-16 13:22:49 -04004458 mutex_lock(&cgroup_mutex);
4459
Tejun Heode3f0342014-05-16 13:22:49 -04004460 css->flags |= CSS_RELEASED;
Tejun Heo1fed1b22014-05-16 13:22:49 -04004461 list_del_rcu(&css->sibling);
4462
Tejun Heo9d755d32014-05-14 09:15:02 -04004463 if (ss) {
4464 /* css release path */
Vladimir Davydov01e58652015-02-12 14:59:26 -08004465 cgroup_idr_replace(&ss->css_idr, NULL, css->id);
Tejun Heo7d172cc2014-11-18 02:49:51 -05004466 if (ss->css_released)
4467 ss->css_released(css);
Tejun Heo9d755d32014-05-14 09:15:02 -04004468 } else {
4469 /* cgroup release path */
Tejun Heo9d755d32014-05-14 09:15:02 -04004470 cgroup_idr_remove(&cgrp->root->cgroup_idr, cgrp->id);
4471 cgrp->id = -1;
Li Zefana4189482014-09-04 14:43:07 +08004472
4473 /*
4474 * There are two control paths which try to determine
4475 * cgroup from dentry without going through kernfs -
4476 * cgroupstats_build() and css_tryget_online_from_dir().
4477 * Those are supported by RCU protecting clearing of
4478 * cgrp->kn->priv backpointer.
4479 */
4480 RCU_INIT_POINTER(*(void __rcu __force **)&cgrp->kn->priv, NULL);
Tejun Heo9d755d32014-05-14 09:15:02 -04004481 }
Tejun Heo15a4c832014-05-04 15:09:14 -04004482
Tejun Heo1fed1b22014-05-16 13:22:49 -04004483 mutex_unlock(&cgroup_mutex);
4484
Tejun Heo0c21ead2013-08-13 20:22:51 -04004485 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004486}
4487
Paul Menageddbcc7e2007-10-18 23:39:30 -07004488static void css_release(struct percpu_ref *ref)
4489{
4490 struct cgroup_subsys_state *css =
4491 container_of(ref, struct cgroup_subsys_state, refcnt);
4492
Tejun Heo25e15d82014-05-14 09:15:02 -04004493 INIT_WORK(&css->destroy_work, css_release_work_fn);
4494 queue_work(cgroup_destroy_wq, &css->destroy_work);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004495}
4496
Tejun Heoddfcada2014-05-04 15:09:14 -04004497static void init_and_link_css(struct cgroup_subsys_state *css,
4498 struct cgroup_subsys *ss, struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004499{
Tejun Heo0cb51d72014-05-16 13:22:49 -04004500 lockdep_assert_held(&cgroup_mutex);
4501
Tejun Heoddfcada2014-05-04 15:09:14 -04004502 cgroup_get(cgrp);
4503
Tejun Heod5c419b2014-05-16 13:22:48 -04004504 memset(css, 0, sizeof(*css));
Paul Menagebd89aab2007-10-18 23:40:44 -07004505 css->cgroup = cgrp;
Tejun Heo72c97e52013-08-08 20:11:22 -04004506 css->ss = ss;
Tejun Heod5c419b2014-05-16 13:22:48 -04004507 INIT_LIST_HEAD(&css->sibling);
4508 INIT_LIST_HEAD(&css->children);
Tejun Heo0cb51d72014-05-16 13:22:49 -04004509 css->serial_nr = css_serial_nr_next++;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004510
Tejun Heod51f39b2014-05-16 13:22:48 -04004511 if (cgroup_parent(cgrp)) {
4512 css->parent = cgroup_css(cgroup_parent(cgrp), ss);
Tejun Heoddfcada2014-05-04 15:09:14 -04004513 css_get(css->parent);
Tejun Heoddfcada2014-05-04 15:09:14 -04004514 }
Tejun Heo0ae78e02013-08-13 11:01:54 -04004515
Tejun Heoca8bdca2013-08-26 18:40:56 -04004516 BUG_ON(cgroup_css(cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004517}
4518
Li Zefan2a4ac632013-07-31 16:16:40 +08004519/* invoke ->css_online() on a new CSS and mark it online if successful */
Tejun Heo623f9262013-08-13 11:01:55 -04004520static int online_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004521{
Tejun Heo623f9262013-08-13 11:01:55 -04004522 struct cgroup_subsys *ss = css->ss;
Tejun Heob1929db2012-11-19 08:13:38 -08004523 int ret = 0;
4524
Tejun Heoa31f2d32012-11-19 08:13:37 -08004525 lockdep_assert_held(&cgroup_mutex);
4526
Tejun Heo92fb9742012-11-19 08:13:38 -08004527 if (ss->css_online)
Tejun Heoeb954192013-08-08 20:11:23 -04004528 ret = ss->css_online(css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004529 if (!ret) {
Tejun Heoeb954192013-08-08 20:11:23 -04004530 css->flags |= CSS_ONLINE;
Tejun Heoaec25022014-02-08 10:36:58 -05004531 rcu_assign_pointer(css->cgroup->subsys[ss->id], css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004532 }
Tejun Heob1929db2012-11-19 08:13:38 -08004533 return ret;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004534}
4535
Li Zefan2a4ac632013-07-31 16:16:40 +08004536/* if the CSS is online, invoke ->css_offline() on it and mark it offline */
Tejun Heo623f9262013-08-13 11:01:55 -04004537static void offline_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004538{
Tejun Heo623f9262013-08-13 11:01:55 -04004539 struct cgroup_subsys *ss = css->ss;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004540
4541 lockdep_assert_held(&cgroup_mutex);
4542
4543 if (!(css->flags & CSS_ONLINE))
4544 return;
4545
Li Zefand7eeac12013-03-12 15:35:59 -07004546 if (ss->css_offline)
Tejun Heoeb954192013-08-08 20:11:23 -04004547 ss->css_offline(css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004548
Tejun Heoeb954192013-08-08 20:11:23 -04004549 css->flags &= ~CSS_ONLINE;
Tejun Heoe3297802014-04-23 11:13:15 -04004550 RCU_INIT_POINTER(css->cgroup->subsys[ss->id], NULL);
Tejun Heof8f22e52014-04-23 11:13:16 -04004551
4552 wake_up_all(&css->cgroup->offline_waitq);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004553}
4554
Tejun Heoc81c925a2013-12-06 15:11:56 -05004555/**
4556 * create_css - create a cgroup_subsys_state
4557 * @cgrp: the cgroup new css will be associated with
4558 * @ss: the subsys of new css
Tejun Heof63070d2014-07-08 18:02:57 -04004559 * @visible: whether to create control knobs for the new css or not
Tejun Heoc81c925a2013-12-06 15:11:56 -05004560 *
4561 * Create a new css associated with @cgrp - @ss pair. On success, the new
Tejun Heof63070d2014-07-08 18:02:57 -04004562 * css is online and installed in @cgrp with all interface files created if
4563 * @visible. Returns 0 on success, -errno on failure.
Tejun Heoc81c925a2013-12-06 15:11:56 -05004564 */
Tejun Heof63070d2014-07-08 18:02:57 -04004565static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss,
4566 bool visible)
Tejun Heoc81c925a2013-12-06 15:11:56 -05004567{
Tejun Heod51f39b2014-05-16 13:22:48 -04004568 struct cgroup *parent = cgroup_parent(cgrp);
Tejun Heo1fed1b22014-05-16 13:22:49 -04004569 struct cgroup_subsys_state *parent_css = cgroup_css(parent, ss);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004570 struct cgroup_subsys_state *css;
4571 int err;
4572
Tejun Heoc81c925a2013-12-06 15:11:56 -05004573 lockdep_assert_held(&cgroup_mutex);
4574
Tejun Heo1fed1b22014-05-16 13:22:49 -04004575 css = ss->css_alloc(parent_css);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004576 if (IS_ERR(css))
4577 return PTR_ERR(css);
4578
Tejun Heoddfcada2014-05-04 15:09:14 -04004579 init_and_link_css(css, ss, cgrp);
Tejun Heoa2bed822014-05-04 15:09:14 -04004580
Tejun Heo2aad2a82014-09-24 13:31:50 -04004581 err = percpu_ref_init(&css->refcnt, css_release, 0, GFP_KERNEL);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004582 if (err)
Li Zefan3eb59ec2014-03-18 17:02:36 +08004583 goto err_free_css;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004584
Tejun Heo15a4c832014-05-04 15:09:14 -04004585 err = cgroup_idr_alloc(&ss->css_idr, NULL, 2, 0, GFP_NOWAIT);
4586 if (err < 0)
4587 goto err_free_percpu_ref;
4588 css->id = err;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004589
Tejun Heof63070d2014-07-08 18:02:57 -04004590 if (visible) {
4591 err = cgroup_populate_dir(cgrp, 1 << ss->id);
4592 if (err)
4593 goto err_free_id;
4594 }
Tejun Heo15a4c832014-05-04 15:09:14 -04004595
4596 /* @css is ready to be brought online now, make it visible */
Tejun Heo1fed1b22014-05-16 13:22:49 -04004597 list_add_tail_rcu(&css->sibling, &parent_css->children);
Tejun Heo15a4c832014-05-04 15:09:14 -04004598 cgroup_idr_replace(&ss->css_idr, css, css->id);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004599
4600 err = online_css(css);
4601 if (err)
Tejun Heo1fed1b22014-05-16 13:22:49 -04004602 goto err_list_del;
Tejun Heo94419622014-03-19 10:23:54 -04004603
Tejun Heoc81c925a2013-12-06 15:11:56 -05004604 if (ss->broken_hierarchy && !ss->warned_broken_hierarchy &&
Tejun Heod51f39b2014-05-16 13:22:48 -04004605 cgroup_parent(parent)) {
Joe Perchesed3d2612014-04-25 18:28:03 -04004606 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 -04004607 current->comm, current->pid, ss->name);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004608 if (!strcmp(ss->name, "memory"))
Joe Perchesed3d2612014-04-25 18:28:03 -04004609 pr_warn("\"memory\" requires setting use_hierarchy to 1 on the root\n");
Tejun Heoc81c925a2013-12-06 15:11:56 -05004610 ss->warned_broken_hierarchy = true;
4611 }
4612
4613 return 0;
4614
Tejun Heo1fed1b22014-05-16 13:22:49 -04004615err_list_del:
4616 list_del_rcu(&css->sibling);
Linus Torvalds32d01dc2014-04-03 13:05:42 -07004617 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
Tejun Heo15a4c832014-05-04 15:09:14 -04004618err_free_id:
4619 cgroup_idr_remove(&ss->css_idr, css->id);
Li Zefan3eb59ec2014-03-18 17:02:36 +08004620err_free_percpu_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04004621 percpu_ref_exit(&css->refcnt);
Li Zefan3eb59ec2014-03-18 17:02:36 +08004622err_free_css:
Tejun Heoa2bed822014-05-04 15:09:14 -04004623 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004624 return err;
4625}
4626
Tejun Heob3bfd982014-05-13 12:19:22 -04004627static int cgroup_mkdir(struct kernfs_node *parent_kn, const char *name,
4628 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004629{
Tejun Heoa9746d82014-05-13 12:19:22 -04004630 struct cgroup *parent, *cgrp;
4631 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004632 struct cgroup_subsys *ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004633 struct kernfs_node *kn;
Tejun Heoa14c6872014-07-15 11:05:09 -04004634 struct cftype *base_files;
Tejun Heob3bfd982014-05-13 12:19:22 -04004635 int ssid, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004636
Alban Crequy71b1fb52014-08-18 12:20:20 +01004637 /* Do not accept '\n' to prevent making /proc/<pid>/cgroup unparsable.
4638 */
4639 if (strchr(name, '\n'))
4640 return -EINVAL;
4641
Tejun Heoa9746d82014-05-13 12:19:22 -04004642 parent = cgroup_kn_lock_live(parent_kn);
4643 if (!parent)
4644 return -ENODEV;
4645 root = parent->root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004646
Tejun Heo0a950f62012-11-19 09:02:12 -08004647 /* allocate the cgroup and its ID, 0 is reserved for the root */
Paul Menagebd89aab2007-10-18 23:40:44 -07004648 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004649 if (!cgrp) {
4650 ret = -ENOMEM;
4651 goto out_unlock;
Li Zefan0ab02ca2014-02-11 16:05:46 +08004652 }
4653
Tejun Heo2aad2a82014-09-24 13:31:50 -04004654 ret = percpu_ref_init(&cgrp->self.refcnt, css_release, 0, GFP_KERNEL);
Tejun Heo9d755d32014-05-14 09:15:02 -04004655 if (ret)
4656 goto out_free_cgrp;
4657
Li Zefan0ab02ca2014-02-11 16:05:46 +08004658 /*
4659 * Temporarily set the pointer to NULL, so idr_find() won't return
4660 * a half-baked cgroup.
4661 */
Tejun Heo6fa49182014-05-04 15:09:13 -04004662 cgrp->id = cgroup_idr_alloc(&root->cgroup_idr, NULL, 2, 0, GFP_NOWAIT);
Li Zefan0ab02ca2014-02-11 16:05:46 +08004663 if (cgrp->id < 0) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004664 ret = -ENOMEM;
Tejun Heo9d755d32014-05-14 09:15:02 -04004665 goto out_cancel_ref;
Tejun Heo976c06b2012-11-05 09:16:59 -08004666 }
4667
Paul Menagecc31edc2008-10-18 20:28:04 -07004668 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004669
Tejun Heo9d800df2014-05-14 09:15:00 -04004670 cgrp->self.parent = &parent->self;
Tejun Heoba0f4d72014-05-13 12:19:22 -04004671 cgrp->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004672
Li Zefanb6abdb02008-03-04 14:28:19 -08004673 if (notify_on_release(parent))
4674 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
4675
Tejun Heo2260e7f2012-11-19 08:13:38 -08004676 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags))
4677 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004678
Tejun Heo2bd59d42014-02-11 11:52:49 -05004679 /* create the directory */
Tejun Heoe61734c2014-02-12 09:29:50 -05004680 kn = kernfs_create_dir(parent->kn, name, mode, cgrp);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004681 if (IS_ERR(kn)) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004682 ret = PTR_ERR(kn);
4683 goto out_free_id;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004684 }
4685 cgrp->kn = kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004686
Tejun Heo6f305582014-02-12 09:29:50 -05004687 /*
4688 * This extra ref will be put in cgroup_free_fn() and guarantees
4689 * that @cgrp->kn is always accessible.
4690 */
4691 kernfs_get(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004692
Tejun Heo0cb51d72014-05-16 13:22:49 -04004693 cgrp->self.serial_nr = css_serial_nr_next++;
Tejun Heo53fa5262013-05-24 10:55:38 +09004694
Tejun Heo4e139af2012-11-19 08:13:36 -08004695 /* allocation complete, commit to creation */
Tejun Heod5c419b2014-05-16 13:22:48 -04004696 list_add_tail_rcu(&cgrp->self.sibling, &cgroup_parent(cgrp)->self.children);
Tejun Heo3c9c8252014-02-12 09:29:50 -05004697 atomic_inc(&root->nr_cgrps);
Tejun Heo59f52962014-02-11 11:52:49 -05004698 cgroup_get(parent);
Li Zefan415cf072013-04-08 14:35:02 +08004699
Tejun Heo0d802552013-12-06 15:11:56 -05004700 /*
4701 * @cgrp is now fully operational. If something fails after this
4702 * point, it'll be released via the normal destruction path.
4703 */
Tejun Heo6fa49182014-05-04 15:09:13 -04004704 cgroup_idr_replace(&root->cgroup_idr, cgrp, cgrp->id);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08004705
Tejun Heoba0f4d72014-05-13 12:19:22 -04004706 ret = cgroup_kn_set_ugid(kn);
4707 if (ret)
4708 goto out_destroy;
Tejun Heo49957f82014-04-07 16:44:47 -04004709
Tejun Heoa14c6872014-07-15 11:05:09 -04004710 if (cgroup_on_dfl(cgrp))
4711 base_files = cgroup_dfl_base_files;
4712 else
4713 base_files = cgroup_legacy_base_files;
4714
4715 ret = cgroup_addrm_files(cgrp, base_files, true);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004716 if (ret)
4717 goto out_destroy;
Tejun Heo628f7cd2013-06-28 16:24:11 -07004718
Tejun Heo9d403e92013-12-06 15:11:56 -05004719 /* let's create and online css's */
Tejun Heob85d2042013-12-06 15:11:57 -05004720 for_each_subsys(ss, ssid) {
Tejun Heof392e512014-04-23 11:13:14 -04004721 if (parent->child_subsys_mask & (1 << ssid)) {
Tejun Heof63070d2014-07-08 18:02:57 -04004722 ret = create_css(cgrp, ss,
4723 parent->subtree_control & (1 << ssid));
Tejun Heoba0f4d72014-05-13 12:19:22 -04004724 if (ret)
4725 goto out_destroy;
Tejun Heob85d2042013-12-06 15:11:57 -05004726 }
Tejun Heoa8638032012-11-09 09:12:29 -08004727 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004728
Tejun Heobd53d612014-04-23 11:13:16 -04004729 /*
4730 * On the default hierarchy, a child doesn't automatically inherit
Tejun Heo667c2492014-07-08 18:02:56 -04004731 * subtree_control from the parent. Each is configured manually.
Tejun Heobd53d612014-04-23 11:13:16 -04004732 */
Tejun Heo667c2492014-07-08 18:02:56 -04004733 if (!cgroup_on_dfl(cgrp)) {
4734 cgrp->subtree_control = parent->subtree_control;
4735 cgroup_refresh_child_subsys_mask(cgrp);
4736 }
Tejun Heof392e512014-04-23 11:13:14 -04004737
Tejun Heo2bd59d42014-02-11 11:52:49 -05004738 kernfs_activate(kn);
4739
Tejun Heoba0f4d72014-05-13 12:19:22 -04004740 ret = 0;
4741 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004742
Tejun Heoba0f4d72014-05-13 12:19:22 -04004743out_free_id:
Tejun Heo6fa49182014-05-04 15:09:13 -04004744 cgroup_idr_remove(&root->cgroup_idr, cgrp->id);
Tejun Heo9d755d32014-05-14 09:15:02 -04004745out_cancel_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04004746 percpu_ref_exit(&cgrp->self.refcnt);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004747out_free_cgrp:
Paul Menagebd89aab2007-10-18 23:40:44 -07004748 kfree(cgrp);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004749out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04004750 cgroup_kn_unlock(parent_kn);
Tejun Heoe1b2dc12014-03-20 11:10:15 -04004751 return ret;
Tejun Heoba0f4d72014-05-13 12:19:22 -04004752
4753out_destroy:
4754 cgroup_destroy_locked(cgrp);
4755 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004756}
4757
Tejun Heo223dbc32013-08-13 20:22:50 -04004758/*
4759 * This is called when the refcnt of a css is confirmed to be killed.
Tejun Heo249f3462014-05-14 09:15:01 -04004760 * css_tryget_online() is now guaranteed to fail. Tell the subsystem to
4761 * initate destruction and put the css ref from kill_css().
Tejun Heo223dbc32013-08-13 20:22:50 -04004762 */
4763static void css_killed_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004764{
Tejun Heo223dbc32013-08-13 20:22:50 -04004765 struct cgroup_subsys_state *css =
4766 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07004767
Tejun Heof20104d2013-08-13 20:22:50 -04004768 mutex_lock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04004769 offline_css(css);
Tejun Heof20104d2013-08-13 20:22:50 -04004770 mutex_unlock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04004771
Tejun Heo09a503ea2013-08-13 20:22:50 -04004772 css_put(css);
Tejun Heod3daf282013-06-13 19:39:16 -07004773}
4774
Tejun Heo223dbc32013-08-13 20:22:50 -04004775/* css kill confirmation processing requires process context, bounce */
4776static void css_killed_ref_fn(struct percpu_ref *ref)
Tejun Heod3daf282013-06-13 19:39:16 -07004777{
4778 struct cgroup_subsys_state *css =
4779 container_of(ref, struct cgroup_subsys_state, refcnt);
4780
Tejun Heo223dbc32013-08-13 20:22:50 -04004781 INIT_WORK(&css->destroy_work, css_killed_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05004782 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07004783}
4784
Tejun Heof392e512014-04-23 11:13:14 -04004785/**
4786 * kill_css - destroy a css
4787 * @css: css to destroy
4788 *
4789 * This function initiates destruction of @css by removing cgroup interface
4790 * files and putting its base reference. ->css_offline() will be invoked
Tejun Heoec903c02014-05-13 12:11:01 -04004791 * asynchronously once css_tryget_online() is guaranteed to fail and when
4792 * the reference count reaches zero, @css will be released.
Tejun Heof392e512014-04-23 11:13:14 -04004793 */
4794static void kill_css(struct cgroup_subsys_state *css)
Tejun Heoedae0c32013-08-13 20:22:51 -04004795{
Tejun Heo01f64742014-05-13 12:19:23 -04004796 lockdep_assert_held(&cgroup_mutex);
Tejun Heo94419622014-03-19 10:23:54 -04004797
Tejun Heo2bd59d42014-02-11 11:52:49 -05004798 /*
4799 * This must happen before css is disassociated with its cgroup.
4800 * See seq_css() for details.
4801 */
Tejun Heoaec25022014-02-08 10:36:58 -05004802 cgroup_clear_dir(css->cgroup, 1 << css->ss->id);
Tejun Heo3c14f8b2013-08-13 20:22:51 -04004803
Tejun Heoedae0c32013-08-13 20:22:51 -04004804 /*
4805 * Killing would put the base ref, but we need to keep it alive
4806 * until after ->css_offline().
4807 */
4808 css_get(css);
4809
4810 /*
4811 * cgroup core guarantees that, by the time ->css_offline() is
4812 * invoked, no new css reference will be given out via
Tejun Heoec903c02014-05-13 12:11:01 -04004813 * css_tryget_online(). We can't simply call percpu_ref_kill() and
Tejun Heoedae0c32013-08-13 20:22:51 -04004814 * proceed to offlining css's because percpu_ref_kill() doesn't
4815 * guarantee that the ref is seen as killed on all CPUs on return.
4816 *
4817 * Use percpu_ref_kill_and_confirm() to get notifications as each
4818 * css is confirmed to be seen as killed on all CPUs.
4819 */
4820 percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004821}
4822
4823/**
4824 * cgroup_destroy_locked - the first stage of cgroup destruction
4825 * @cgrp: cgroup to be destroyed
4826 *
4827 * css's make use of percpu refcnts whose killing latency shouldn't be
4828 * exposed to userland and are RCU protected. Also, cgroup core needs to
Tejun Heoec903c02014-05-13 12:11:01 -04004829 * guarantee that css_tryget_online() won't succeed by the time
4830 * ->css_offline() is invoked. To satisfy all the requirements,
4831 * destruction is implemented in the following two steps.
Tejun Heod3daf282013-06-13 19:39:16 -07004832 *
4833 * s1. Verify @cgrp can be destroyed and mark it dying. Remove all
4834 * userland visible parts and start killing the percpu refcnts of
4835 * css's. Set up so that the next stage will be kicked off once all
4836 * the percpu refcnts are confirmed to be killed.
4837 *
4838 * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the
4839 * rest of destruction. Once all cgroup references are gone, the
4840 * cgroup is RCU-freed.
4841 *
4842 * This function implements s1. After this step, @cgrp is gone as far as
4843 * the userland is concerned and a new cgroup with the same name may be
4844 * created. As cgroup doesn't care about the names internally, this
4845 * doesn't cause any problem.
4846 */
Tejun Heo42809dd2012-11-19 08:13:37 -08004847static int cgroup_destroy_locked(struct cgroup *cgrp)
4848 __releases(&cgroup_mutex) __acquires(&cgroup_mutex)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004849{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004850 struct cgroup_subsys_state *css;
Tejun Heoddd69142013-06-12 21:04:54 -07004851 bool empty;
Tejun Heo1c6727a2013-12-06 15:11:56 -05004852 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004853
Tejun Heo42809dd2012-11-19 08:13:37 -08004854 lockdep_assert_held(&cgroup_mutex);
4855
Tejun Heoddd69142013-06-12 21:04:54 -07004856 /*
Tejun Heo96d365e2014-02-13 06:58:40 -05004857 * css_set_rwsem synchronizes access to ->cset_links and prevents
Tejun Heo89c55092014-02-13 06:58:40 -05004858 * @cgrp from being removed while put_css_set() is in progress.
Tejun Heoddd69142013-06-12 21:04:54 -07004859 */
Tejun Heo96d365e2014-02-13 06:58:40 -05004860 down_read(&css_set_rwsem);
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004861 empty = list_empty(&cgrp->cset_links);
Tejun Heo96d365e2014-02-13 06:58:40 -05004862 up_read(&css_set_rwsem);
Tejun Heoddd69142013-06-12 21:04:54 -07004863 if (!empty)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004864 return -EBUSY;
Tejun Heoed9577932012-11-05 09:16:58 -08004865
Tejun Heo1a90dd52012-11-05 09:16:59 -08004866 /*
Tejun Heod5c419b2014-05-16 13:22:48 -04004867 * Make sure there's no live children. We can't test emptiness of
4868 * ->self.children as dead children linger on it while being
4869 * drained; otherwise, "rmdir parent/child parent" may fail.
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004870 */
Tejun Heof3d46502014-05-16 13:22:52 -04004871 if (css_has_online_children(&cgrp->self))
Hugh Dickinsbb78a922013-08-28 16:31:23 -07004872 return -EBUSY;
4873
4874 /*
Tejun Heo455050d2013-06-13 19:27:41 -07004875 * Mark @cgrp dead. This prevents further task migration and child
Tejun Heode3f0342014-05-16 13:22:49 -04004876 * creation by disabling cgroup_lock_live_group().
Tejun Heo455050d2013-06-13 19:27:41 -07004877 */
Tejun Heo184faf32014-05-16 13:22:51 -04004878 cgrp->self.flags &= ~CSS_ONLINE;
Tejun Heo1a90dd52012-11-05 09:16:59 -08004879
Tejun Heo249f3462014-05-14 09:15:01 -04004880 /* initiate massacre of all css's */
Tejun Heo1a90dd52012-11-05 09:16:59 -08004881 for_each_css(css, ssid, cgrp)
Tejun Heo455050d2013-06-13 19:27:41 -07004882 kill_css(css);
4883
Tejun Heo455050d2013-06-13 19:27:41 -07004884 /*
Tejun Heo01f64742014-05-13 12:19:23 -04004885 * Remove @cgrp directory along with the base files. @cgrp has an
4886 * extra ref on its kn.
Tejun Heo455050d2013-06-13 19:27:41 -07004887 */
Tejun Heo01f64742014-05-13 12:19:23 -04004888 kernfs_remove(cgrp->kn);
Tejun Heof20104d2013-08-13 20:22:50 -04004889
Tejun Heod51f39b2014-05-16 13:22:48 -04004890 check_for_release(cgroup_parent(cgrp));
Tejun Heo2bd59d42014-02-11 11:52:49 -05004891
Tejun Heo249f3462014-05-14 09:15:01 -04004892 /* put the base reference */
Tejun Heo9d755d32014-05-14 09:15:02 -04004893 percpu_ref_kill(&cgrp->self.refcnt);
Tejun Heo455050d2013-06-13 19:27:41 -07004894
Tejun Heoea15f8c2013-06-13 19:27:42 -07004895 return 0;
4896};
4897
Tejun Heo2bd59d42014-02-11 11:52:49 -05004898static int cgroup_rmdir(struct kernfs_node *kn)
Tejun Heo42809dd2012-11-19 08:13:37 -08004899{
Tejun Heoa9746d82014-05-13 12:19:22 -04004900 struct cgroup *cgrp;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004901 int ret = 0;
Tejun Heo42809dd2012-11-19 08:13:37 -08004902
Tejun Heoa9746d82014-05-13 12:19:22 -04004903 cgrp = cgroup_kn_lock_live(kn);
4904 if (!cgrp)
4905 return 0;
Tejun Heo42809dd2012-11-19 08:13:37 -08004906
Tejun Heoa9746d82014-05-13 12:19:22 -04004907 ret = cgroup_destroy_locked(cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -08004908
Tejun Heoa9746d82014-05-13 12:19:22 -04004909 cgroup_kn_unlock(kn);
Tejun Heo42809dd2012-11-19 08:13:37 -08004910 return ret;
4911}
4912
Tejun Heo2bd59d42014-02-11 11:52:49 -05004913static struct kernfs_syscall_ops cgroup_kf_syscall_ops = {
4914 .remount_fs = cgroup_remount,
4915 .show_options = cgroup_show_options,
4916 .mkdir = cgroup_mkdir,
4917 .rmdir = cgroup_rmdir,
4918 .rename = cgroup_rename,
4919};
Tejun Heo8e3f6542012-04-01 12:09:55 -07004920
Tejun Heo15a4c832014-05-04 15:09:14 -04004921static void __init cgroup_init_subsys(struct cgroup_subsys *ss, bool early)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004922{
Paul Menageddbcc7e2007-10-18 23:39:30 -07004923 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08004924
4925 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004926
Tejun Heo648bb562012-11-19 08:13:36 -08004927 mutex_lock(&cgroup_mutex);
4928
Tejun Heo15a4c832014-05-04 15:09:14 -04004929 idr_init(&ss->css_idr);
Tejun Heo0adb0702014-02-12 09:29:48 -05004930 INIT_LIST_HEAD(&ss->cfts);
Tejun Heo8e3f6542012-04-01 12:09:55 -07004931
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004932 /* Create the root cgroup state for this subsystem */
4933 ss->root = &cgrp_dfl_root;
4934 css = ss->css_alloc(cgroup_css(&cgrp_dfl_root.cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004935 /* We don't handle early failures gracefully */
4936 BUG_ON(IS_ERR(css));
Tejun Heoddfcada2014-05-04 15:09:14 -04004937 init_and_link_css(css, ss, &cgrp_dfl_root.cgrp);
Tejun Heo3b514d22014-05-16 13:22:47 -04004938
4939 /*
4940 * Root csses are never destroyed and we can't initialize
4941 * percpu_ref during early init. Disable refcnting.
4942 */
4943 css->flags |= CSS_NO_REF;
4944
Tejun Heo15a4c832014-05-04 15:09:14 -04004945 if (early) {
Tejun Heo9395a452014-05-14 09:15:02 -04004946 /* allocation can't be done safely during early init */
Tejun Heo15a4c832014-05-04 15:09:14 -04004947 css->id = 1;
4948 } else {
4949 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2, GFP_KERNEL);
4950 BUG_ON(css->id < 0);
4951 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004952
Li Zefane8d55fd2008-04-29 01:00:13 -07004953 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07004954 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07004955 * newly registered, all tasks and hence the
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004956 * init_css_set is in the subsystem's root cgroup. */
Tejun Heoaec25022014-02-08 10:36:58 -05004957 init_css_set.subsys[ss->id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004958
Aleksa Saraicb4a3162015-06-06 10:02:14 +10004959 have_fork_callback |= (bool)ss->fork << ss->id;
4960 have_exit_callback |= (bool)ss->exit << ss->id;
Aleksa Sarai7e476822015-06-09 21:32:09 +10004961 have_canfork_callback |= (bool)ss->can_fork << ss->id;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004962
Li Zefane8d55fd2008-04-29 01:00:13 -07004963 /* At system boot, before all subsystems have been
4964 * registered, no tasks have been forked, so we don't
4965 * need to invoke fork callbacks here. */
4966 BUG_ON(!list_empty(&init_task.tasks));
4967
Tejun Heoae7f1642013-08-13 20:22:50 -04004968 BUG_ON(online_css(css));
Tejun Heoa8638032012-11-09 09:12:29 -08004969
Tejun Heo648bb562012-11-19 08:13:36 -08004970 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004971}
4972
4973/**
Li Zefana043e3b2008-02-23 15:24:09 -08004974 * cgroup_init_early - cgroup initialization at system boot
4975 *
4976 * Initialize cgroups at system boot, and initialize any
4977 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07004978 */
4979int __init cgroup_init_early(void)
4980{
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04004981 static struct cgroup_sb_opts __initdata opts;
Tejun Heo30159ec2013-06-25 11:53:37 -07004982 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004983 int i;
Tejun Heo30159ec2013-06-25 11:53:37 -07004984
Tejun Heo3dd06ff2014-03-19 10:23:54 -04004985 init_cgroup_root(&cgrp_dfl_root, &opts);
Tejun Heo3b514d22014-05-16 13:22:47 -04004986 cgrp_dfl_root.cgrp.self.flags |= CSS_NO_REF;
4987
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07004988 RCU_INIT_POINTER(init_task.cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07004989
Tejun Heo3ed80a62014-02-08 10:36:58 -05004990 for_each_subsys(ss, i) {
Tejun Heoaec25022014-02-08 10:36:58 -05004991 WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id,
Tejun Heo073219e2014-02-08 10:36:58 -05004992 "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p name:id=%d:%s\n",
4993 i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free,
Tejun Heoaec25022014-02-08 10:36:58 -05004994 ss->id, ss->name);
Tejun Heo073219e2014-02-08 10:36:58 -05004995 WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN,
4996 "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004997
Tejun Heoaec25022014-02-08 10:36:58 -05004998 ss->id = i;
Tejun Heo073219e2014-02-08 10:36:58 -05004999 ss->name = cgroup_subsys_name[i];
Paul Menageddbcc7e2007-10-18 23:39:30 -07005000
5001 if (ss->early_init)
Tejun Heo15a4c832014-05-04 15:09:14 -04005002 cgroup_init_subsys(ss, true);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005003 }
5004 return 0;
5005}
5006
5007/**
Li Zefana043e3b2008-02-23 15:24:09 -08005008 * cgroup_init - cgroup initialization
5009 *
5010 * Register cgroup filesystem and /proc file, and initialize
5011 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07005012 */
5013int __init cgroup_init(void)
5014{
Tejun Heo30159ec2013-06-25 11:53:37 -07005015 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +08005016 unsigned long key;
Tejun Heo172a2c062014-03-19 10:23:53 -04005017 int ssid, err;
Paul Menagea4243162007-10-18 23:39:35 -07005018
Tejun Heod59cfc02015-05-13 16:35:17 -04005019 BUG_ON(percpu_init_rwsem(&cgroup_threadgroup_rwsem));
Tejun Heoa14c6872014-07-15 11:05:09 -04005020 BUG_ON(cgroup_init_cftypes(NULL, cgroup_dfl_base_files));
5021 BUG_ON(cgroup_init_cftypes(NULL, cgroup_legacy_base_files));
Paul Menageddbcc7e2007-10-18 23:39:30 -07005022
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005023 mutex_lock(&cgroup_mutex);
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005024
Tejun Heo82fe9b02013-06-25 11:53:37 -07005025 /* Add init_css_set to the hash table */
5026 key = css_set_hash(init_css_set.subsys);
5027 hash_add(css_set_table, &init_css_set.hlist, key);
5028
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005029 BUG_ON(cgroup_setup_root(&cgrp_dfl_root, 0));
Greg KH676db4a2010-08-05 13:53:35 -07005030
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005031 mutex_unlock(&cgroup_mutex);
5032
Tejun Heo172a2c062014-03-19 10:23:53 -04005033 for_each_subsys(ss, ssid) {
Tejun Heo15a4c832014-05-04 15:09:14 -04005034 if (ss->early_init) {
5035 struct cgroup_subsys_state *css =
5036 init_css_set.subsys[ss->id];
5037
5038 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2,
5039 GFP_KERNEL);
5040 BUG_ON(css->id < 0);
5041 } else {
5042 cgroup_init_subsys(ss, false);
5043 }
Tejun Heo172a2c062014-03-19 10:23:53 -04005044
Tejun Heo2d8f2432014-04-23 11:13:15 -04005045 list_add_tail(&init_css_set.e_cset_node[ssid],
5046 &cgrp_dfl_root.cgrp.e_csets[ssid]);
Tejun Heo172a2c062014-03-19 10:23:53 -04005047
5048 /*
Li Zefanc731ae12014-06-05 17:16:30 +08005049 * Setting dfl_root subsys_mask needs to consider the
5050 * disabled flag and cftype registration needs kmalloc,
5051 * both of which aren't available during early_init.
Tejun Heo172a2c062014-03-19 10:23:53 -04005052 */
Tejun Heoa8ddc822014-07-15 11:05:10 -04005053 if (ss->disabled)
5054 continue;
5055
5056 cgrp_dfl_root.subsys_mask |= 1 << ss->id;
5057
5058 if (cgroup_legacy_files_on_dfl && !ss->dfl_cftypes)
5059 ss->dfl_cftypes = ss->legacy_cftypes;
5060
Tejun Heo5de4fa12014-07-15 11:05:10 -04005061 if (!ss->dfl_cftypes)
5062 cgrp_dfl_root_inhibit_ss_mask |= 1 << ss->id;
5063
Tejun Heoa8ddc822014-07-15 11:05:10 -04005064 if (ss->dfl_cftypes == ss->legacy_cftypes) {
5065 WARN_ON(cgroup_add_cftypes(ss, ss->dfl_cftypes));
5066 } else {
5067 WARN_ON(cgroup_add_dfl_cftypes(ss, ss->dfl_cftypes));
5068 WARN_ON(cgroup_add_legacy_cftypes(ss, ss->legacy_cftypes));
Li Zefanc731ae12014-06-05 17:16:30 +08005069 }
Vladimir Davydov295458e2015-02-19 17:34:46 +03005070
5071 if (ss->bind)
5072 ss->bind(init_css_set.subsys[ssid]);
Tejun Heo172a2c062014-03-19 10:23:53 -04005073 }
Greg KH676db4a2010-08-05 13:53:35 -07005074
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -05005075 err = sysfs_create_mount_point(fs_kobj, "cgroup");
5076 if (err)
5077 return err;
Paul Menagea4243162007-10-18 23:39:35 -07005078
5079 err = register_filesystem(&cgroup_fs_type);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005080 if (err < 0) {
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -05005081 sysfs_remove_mount_point(fs_kobj, "cgroup");
Tejun Heo2bd59d42014-02-11 11:52:49 -05005082 return err;
Paul Menagea4243162007-10-18 23:39:35 -07005083 }
5084
5085 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Tejun Heo2bd59d42014-02-11 11:52:49 -05005086 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005087}
Paul Menageb4f48b62007-10-18 23:39:33 -07005088
Tejun Heoe5fca242013-11-22 17:14:39 -05005089static int __init cgroup_wq_init(void)
5090{
5091 /*
5092 * There isn't much point in executing destruction path in
5093 * parallel. Good chunk is serialized with cgroup_mutex anyway.
Tejun Heo1a115332014-02-12 19:06:19 -05005094 * Use 1 for @max_active.
Tejun Heoe5fca242013-11-22 17:14:39 -05005095 *
5096 * We would prefer to do this in cgroup_init() above, but that
5097 * is called before init_workqueues(): so leave this until after.
5098 */
Tejun Heo1a115332014-02-12 19:06:19 -05005099 cgroup_destroy_wq = alloc_workqueue("cgroup_destroy", 0, 1);
Tejun Heoe5fca242013-11-22 17:14:39 -05005100 BUG_ON(!cgroup_destroy_wq);
Tejun Heob1a21362013-11-29 10:42:58 -05005101
5102 /*
5103 * Used to destroy pidlists and separate to serve as flush domain.
5104 * Cap @max_active to 1 too.
5105 */
5106 cgroup_pidlist_destroy_wq = alloc_workqueue("cgroup_pidlist_destroy",
5107 0, 1);
5108 BUG_ON(!cgroup_pidlist_destroy_wq);
5109
Tejun Heoe5fca242013-11-22 17:14:39 -05005110 return 0;
5111}
5112core_initcall(cgroup_wq_init);
5113
Paul Menagea4243162007-10-18 23:39:35 -07005114/*
5115 * proc_cgroup_show()
5116 * - Print task's cgroup paths into seq_file, one line for each hierarchy
5117 * - Used for /proc/<pid>/cgroup.
Paul Menagea4243162007-10-18 23:39:35 -07005118 */
Zefan Li006f4ac2014-09-18 16:03:15 +08005119int proc_cgroup_show(struct seq_file *m, struct pid_namespace *ns,
5120 struct pid *pid, struct task_struct *tsk)
Paul Menagea4243162007-10-18 23:39:35 -07005121{
Tejun Heoe61734c2014-02-12 09:29:50 -05005122 char *buf, *path;
Paul Menagea4243162007-10-18 23:39:35 -07005123 int retval;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005124 struct cgroup_root *root;
Paul Menagea4243162007-10-18 23:39:35 -07005125
5126 retval = -ENOMEM;
Tejun Heoe61734c2014-02-12 09:29:50 -05005127 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagea4243162007-10-18 23:39:35 -07005128 if (!buf)
5129 goto out;
5130
Paul Menagea4243162007-10-18 23:39:35 -07005131 mutex_lock(&cgroup_mutex);
Tejun Heo96d365e2014-02-13 06:58:40 -05005132 down_read(&css_set_rwsem);
Paul Menagea4243162007-10-18 23:39:35 -07005133
Tejun Heo985ed672014-03-19 10:23:53 -04005134 for_each_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07005135 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07005136 struct cgroup *cgrp;
Tejun Heob85d2042013-12-06 15:11:57 -05005137 int ssid, count = 0;
Paul Menagea4243162007-10-18 23:39:35 -07005138
Tejun Heoa2dd4242014-03-19 10:23:55 -04005139 if (root == &cgrp_dfl_root && !cgrp_dfl_root_visible)
Tejun Heo985ed672014-03-19 10:23:53 -04005140 continue;
5141
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005142 seq_printf(m, "%d:", root->hierarchy_id);
Tejun Heob85d2042013-12-06 15:11:57 -05005143 for_each_subsys(ss, ssid)
Tejun Heof392e512014-04-23 11:13:14 -04005144 if (root->subsys_mask & (1 << ssid))
Tejun Heob85d2042013-12-06 15:11:57 -05005145 seq_printf(m, "%s%s", count++ ? "," : "", ss->name);
Paul Menagec6d57f32009-09-23 15:56:19 -07005146 if (strlen(root->name))
5147 seq_printf(m, "%sname=%s", count ? "," : "",
5148 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07005149 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07005150 cgrp = task_cgroup_from_root(tsk, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05005151 path = cgroup_path(cgrp, buf, PATH_MAX);
5152 if (!path) {
5153 retval = -ENAMETOOLONG;
Paul Menagea4243162007-10-18 23:39:35 -07005154 goto out_unlock;
Tejun Heoe61734c2014-02-12 09:29:50 -05005155 }
5156 seq_puts(m, path);
Paul Menagea4243162007-10-18 23:39:35 -07005157 seq_putc(m, '\n');
5158 }
5159
Zefan Li006f4ac2014-09-18 16:03:15 +08005160 retval = 0;
Paul Menagea4243162007-10-18 23:39:35 -07005161out_unlock:
Tejun Heo96d365e2014-02-13 06:58:40 -05005162 up_read(&css_set_rwsem);
Paul Menagea4243162007-10-18 23:39:35 -07005163 mutex_unlock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07005164 kfree(buf);
5165out:
5166 return retval;
5167}
5168
Paul Menagea4243162007-10-18 23:39:35 -07005169/* Display information about each subsystem and each hierarchy */
5170static int proc_cgroupstats_show(struct seq_file *m, void *v)
5171{
Tejun Heo30159ec2013-06-25 11:53:37 -07005172 struct cgroup_subsys *ss;
Paul Menagea4243162007-10-18 23:39:35 -07005173 int i;
Paul Menagea4243162007-10-18 23:39:35 -07005174
Paul Menage8bab8dd2008-04-04 14:29:57 -07005175 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08005176 /*
5177 * ideally we don't want subsystems moving around while we do this.
5178 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
5179 * subsys/hierarchy state.
5180 */
Paul Menagea4243162007-10-18 23:39:35 -07005181 mutex_lock(&cgroup_mutex);
Tejun Heo30159ec2013-06-25 11:53:37 -07005182
5183 for_each_subsys(ss, i)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005184 seq_printf(m, "%s\t%d\t%d\t%d\n",
5185 ss->name, ss->root->hierarchy_id,
Tejun Heo3c9c8252014-02-12 09:29:50 -05005186 atomic_read(&ss->root->nr_cgrps), !ss->disabled);
Tejun Heo30159ec2013-06-25 11:53:37 -07005187
Paul Menagea4243162007-10-18 23:39:35 -07005188 mutex_unlock(&cgroup_mutex);
5189 return 0;
5190}
5191
5192static int cgroupstats_open(struct inode *inode, struct file *file)
5193{
Al Viro9dce07f2008-03-29 03:07:28 +00005194 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07005195}
5196
Alexey Dobriyan828c0952009-10-01 15:43:56 -07005197static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07005198 .open = cgroupstats_open,
5199 .read = seq_read,
5200 .llseek = seq_lseek,
5201 .release = single_release,
5202};
5203
Aleksa Sarai7e476822015-06-09 21:32:09 +10005204static void **subsys_canfork_priv_p(void *ss_priv[CGROUP_CANFORK_COUNT], int i)
5205{
5206 if (CGROUP_CANFORK_START <= i && i < CGROUP_CANFORK_END)
5207 return &ss_priv[i - CGROUP_CANFORK_START];
5208 return NULL;
5209}
5210
5211static void *subsys_canfork_priv(void *ss_priv[CGROUP_CANFORK_COUNT], int i)
5212{
5213 void **private = subsys_canfork_priv_p(ss_priv, i);
5214 return private ? *private : NULL;
5215}
5216
Paul Menageb4f48b62007-10-18 23:39:33 -07005217/**
Tejun Heoeaf797a2014-02-25 10:04:03 -05005218 * cgroup_fork - initialize cgroup related fields during copy_process()
Li Zefana043e3b2008-02-23 15:24:09 -08005219 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07005220 *
Tejun Heoeaf797a2014-02-25 10:04:03 -05005221 * A task is associated with the init_css_set until cgroup_post_fork()
5222 * attaches it to the parent's css_set. Empty cg_list indicates that
5223 * @child isn't holding reference to its css_set.
Paul Menageb4f48b62007-10-18 23:39:33 -07005224 */
5225void cgroup_fork(struct task_struct *child)
5226{
Tejun Heoeaf797a2014-02-25 10:04:03 -05005227 RCU_INIT_POINTER(child->cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07005228 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07005229}
5230
5231/**
Aleksa Sarai7e476822015-06-09 21:32:09 +10005232 * cgroup_can_fork - called on a new task before the process is exposed
5233 * @child: the task in question.
5234 *
5235 * This calls the subsystem can_fork() callbacks. If the can_fork() callback
5236 * returns an error, the fork aborts with that error code. This allows for
5237 * a cgroup subsystem to conditionally allow or deny new forks.
5238 */
5239int cgroup_can_fork(struct task_struct *child,
5240 void *ss_priv[CGROUP_CANFORK_COUNT])
5241{
5242 struct cgroup_subsys *ss;
5243 int i, j, ret;
5244
5245 for_each_subsys_which(ss, i, &have_canfork_callback) {
5246 ret = ss->can_fork(child, subsys_canfork_priv_p(ss_priv, i));
5247 if (ret)
5248 goto out_revert;
5249 }
5250
5251 return 0;
5252
5253out_revert:
5254 for_each_subsys(ss, j) {
5255 if (j >= i)
5256 break;
5257 if (ss->cancel_fork)
5258 ss->cancel_fork(child, subsys_canfork_priv(ss_priv, j));
5259 }
5260
5261 return ret;
5262}
5263
5264/**
5265 * cgroup_cancel_fork - called if a fork failed after cgroup_can_fork()
5266 * @child: the task in question
5267 *
5268 * This calls the cancel_fork() callbacks if a fork failed *after*
5269 * cgroup_can_fork() succeded.
5270 */
5271void cgroup_cancel_fork(struct task_struct *child,
5272 void *ss_priv[CGROUP_CANFORK_COUNT])
5273{
5274 struct cgroup_subsys *ss;
5275 int i;
5276
5277 for_each_subsys(ss, i)
5278 if (ss->cancel_fork)
5279 ss->cancel_fork(child, subsys_canfork_priv(ss_priv, i));
5280}
5281
5282/**
Li Zefana043e3b2008-02-23 15:24:09 -08005283 * cgroup_post_fork - called on a new task after adding it to the task list
5284 * @child: the task in question
5285 *
Tejun Heo5edee612012-10-16 15:03:14 -07005286 * Adds the task to the list running through its css_set if necessary and
5287 * call the subsystem fork() callbacks. Has to be after the task is
5288 * visible on the task list in case we race with the first call to
Tejun Heo0942eee2013-08-08 20:11:26 -04005289 * cgroup_task_iter_start() - to guarantee that the new task ends up on its
Tejun Heo5edee612012-10-16 15:03:14 -07005290 * list.
Li Zefana043e3b2008-02-23 15:24:09 -08005291 */
Aleksa Sarai7e476822015-06-09 21:32:09 +10005292void cgroup_post_fork(struct task_struct *child,
5293 void *old_ss_priv[CGROUP_CANFORK_COUNT])
Paul Menage817929e2007-10-18 23:39:36 -07005294{
Tejun Heo30159ec2013-06-25 11:53:37 -07005295 struct cgroup_subsys *ss;
Tejun Heo5edee612012-10-16 15:03:14 -07005296 int i;
5297
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005298 /*
Dongsheng Yang251f8c02014-08-25 19:27:52 +08005299 * This may race against cgroup_enable_task_cg_lists(). As that
Tejun Heoeaf797a2014-02-25 10:04:03 -05005300 * function sets use_task_css_set_links before grabbing
5301 * tasklist_lock and we just went through tasklist_lock to add
5302 * @child, it's guaranteed that either we see the set
5303 * use_task_css_set_links or cgroup_enable_task_cg_lists() sees
5304 * @child during its iteration.
5305 *
5306 * If we won the race, @child is associated with %current's
5307 * css_set. Grabbing css_set_rwsem guarantees both that the
5308 * association is stable, and, on completion of the parent's
5309 * migration, @child is visible in the source of migration or
5310 * already in the destination cgroup. This guarantee is necessary
5311 * when implementing operations which need to migrate all tasks of
5312 * a cgroup to another.
5313 *
Dongsheng Yang251f8c02014-08-25 19:27:52 +08005314 * Note that if we lose to cgroup_enable_task_cg_lists(), @child
Tejun Heoeaf797a2014-02-25 10:04:03 -05005315 * will remain in init_css_set. This is safe because all tasks are
5316 * in the init_css_set before cg_links is enabled and there's no
5317 * operation which transfers all tasks out of init_css_set.
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005318 */
Paul Menage817929e2007-10-18 23:39:36 -07005319 if (use_task_css_set_links) {
Tejun Heoeaf797a2014-02-25 10:04:03 -05005320 struct css_set *cset;
5321
Tejun Heo96d365e2014-02-13 06:58:40 -05005322 down_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005323 cset = task_css_set(current);
Tejun Heoeaf797a2014-02-25 10:04:03 -05005324 if (list_empty(&child->cg_list)) {
5325 rcu_assign_pointer(child->cgroups, cset);
5326 list_add(&child->cg_list, &cset->tasks);
5327 get_css_set(cset);
5328 }
Tejun Heo96d365e2014-02-13 06:58:40 -05005329 up_write(&css_set_rwsem);
Paul Menage817929e2007-10-18 23:39:36 -07005330 }
Tejun Heo5edee612012-10-16 15:03:14 -07005331
5332 /*
5333 * Call ss->fork(). This must happen after @child is linked on
5334 * css_set; otherwise, @child might change state between ->fork()
5335 * and addition to css_set.
5336 */
Aleksa Saraicb4a3162015-06-06 10:02:14 +10005337 for_each_subsys_which(ss, i, &have_fork_callback)
Aleksa Sarai7e476822015-06-09 21:32:09 +10005338 ss->fork(child, subsys_canfork_priv(old_ss_priv, i));
Paul Menage817929e2007-10-18 23:39:36 -07005339}
Tejun Heo5edee612012-10-16 15:03:14 -07005340
Paul Menage817929e2007-10-18 23:39:36 -07005341/**
Paul Menageb4f48b62007-10-18 23:39:33 -07005342 * cgroup_exit - detach cgroup from exiting task
5343 * @tsk: pointer to task_struct of exiting process
5344 *
5345 * Description: Detach cgroup from @tsk and release it.
5346 *
5347 * Note that cgroups marked notify_on_release force every task in
5348 * them to take the global cgroup_mutex mutex when exiting.
5349 * This could impact scaling on very large systems. Be reluctant to
5350 * use notify_on_release cgroups where very high task exit scaling
5351 * is required on large systems.
5352 *
Tejun Heo0e1d7682014-02-25 10:04:03 -05005353 * We set the exiting tasks cgroup to the root cgroup (top_cgroup). We
5354 * call cgroup_exit() while the task is still competent to handle
5355 * notify_on_release(), then leave the task attached to the root cgroup in
5356 * each hierarchy for the remainder of its exit. No need to bother with
5357 * init_css_set refcnting. init_css_set never goes away and we can't race
Li Zefane8604cb2014-03-28 15:18:27 +08005358 * with migration path - PF_EXITING is visible to migration path.
Paul Menageb4f48b62007-10-18 23:39:33 -07005359 */
Li Zefan1ec41832014-03-28 15:22:19 +08005360void cgroup_exit(struct task_struct *tsk)
Paul Menageb4f48b62007-10-18 23:39:33 -07005361{
Tejun Heo30159ec2013-06-25 11:53:37 -07005362 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -07005363 struct css_set *cset;
Tejun Heoeaf797a2014-02-25 10:04:03 -05005364 bool put_cset = false;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005365 int i;
Paul Menage817929e2007-10-18 23:39:36 -07005366
5367 /*
Tejun Heo0e1d7682014-02-25 10:04:03 -05005368 * Unlink from @tsk from its css_set. As migration path can't race
5369 * with us, we can check cg_list without grabbing css_set_rwsem.
Paul Menage817929e2007-10-18 23:39:36 -07005370 */
5371 if (!list_empty(&tsk->cg_list)) {
Tejun Heo96d365e2014-02-13 06:58:40 -05005372 down_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005373 list_del_init(&tsk->cg_list);
Tejun Heo96d365e2014-02-13 06:58:40 -05005374 up_write(&css_set_rwsem);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005375 put_cset = true;
Paul Menage817929e2007-10-18 23:39:36 -07005376 }
5377
Paul Menageb4f48b62007-10-18 23:39:33 -07005378 /* Reassign the task to the init_css_set. */
Tejun Heoa8ad8052013-06-21 15:52:04 -07005379 cset = task_css_set(tsk);
5380 RCU_INIT_POINTER(tsk->cgroups, &init_css_set);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005381
Aleksa Saraicb4a3162015-06-06 10:02:14 +10005382 /* see cgroup_post_fork() for details */
5383 for_each_subsys_which(ss, i, &have_exit_callback) {
5384 struct cgroup_subsys_state *old_css = cset->subsys[i];
5385 struct cgroup_subsys_state *css = task_css(tsk, i);
Tejun Heo30159ec2013-06-25 11:53:37 -07005386
Aleksa Saraicb4a3162015-06-06 10:02:14 +10005387 ss->exit(css, old_css, tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005388 }
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005389
Tejun Heoeaf797a2014-02-25 10:04:03 -05005390 if (put_cset)
Zefan Lia25eb522014-09-19 16:51:00 +08005391 put_css_set(cset);
Paul Menageb4f48b62007-10-18 23:39:33 -07005392}
Paul Menage697f4162007-10-18 23:39:34 -07005393
Paul Menagebd89aab2007-10-18 23:40:44 -07005394static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07005395{
Zefan Lia25eb522014-09-19 16:51:00 +08005396 if (notify_on_release(cgrp) && !cgroup_has_tasks(cgrp) &&
Zefan Li971ff492014-09-18 16:06:19 +08005397 !css_has_online_children(&cgrp->self) && !cgroup_is_dead(cgrp))
5398 schedule_work(&cgrp->release_agent_work);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005399}
5400
Paul Menage81a6a5c2007-10-18 23:39:38 -07005401/*
5402 * Notify userspace when a cgroup is released, by running the
5403 * configured release agent with the name of the cgroup (path
5404 * relative to the root of cgroup file system) as the argument.
5405 *
5406 * Most likely, this user command will try to rmdir this cgroup.
5407 *
5408 * This races with the possibility that some other task will be
5409 * attached to this cgroup before it is removed, or that some other
5410 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
5411 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
5412 * unused, and this cgroup will be reprieved from its death sentence,
5413 * to continue to serve a useful existence. Next time it's released,
5414 * we will get notified again, if it still has 'notify_on_release' set.
5415 *
5416 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
5417 * means only wait until the task is successfully execve()'d. The
5418 * separate release agent task is forked by call_usermodehelper(),
5419 * then control in this thread returns here, without waiting for the
5420 * release agent task. We don't bother to wait because the caller of
5421 * this routine has no use for the exit status of the release agent
5422 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07005423 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07005424static void cgroup_release_agent(struct work_struct *work)
5425{
Zefan Li971ff492014-09-18 16:06:19 +08005426 struct cgroup *cgrp =
5427 container_of(work, struct cgroup, release_agent_work);
5428 char *pathbuf = NULL, *agentbuf = NULL, *path;
5429 char *argv[3], *envp[3];
5430
Paul Menage81a6a5c2007-10-18 23:39:38 -07005431 mutex_lock(&cgroup_mutex);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005432
Zefan Li971ff492014-09-18 16:06:19 +08005433 pathbuf = kmalloc(PATH_MAX, GFP_KERNEL);
5434 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
5435 if (!pathbuf || !agentbuf)
5436 goto out;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005437
Zefan Li971ff492014-09-18 16:06:19 +08005438 path = cgroup_path(cgrp, pathbuf, PATH_MAX);
5439 if (!path)
5440 goto out;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005441
Zefan Li971ff492014-09-18 16:06:19 +08005442 argv[0] = agentbuf;
5443 argv[1] = path;
5444 argv[2] = NULL;
5445
5446 /* minimal command environment */
5447 envp[0] = "HOME=/";
5448 envp[1] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
5449 envp[2] = NULL;
5450
Paul Menage81a6a5c2007-10-18 23:39:38 -07005451 mutex_unlock(&cgroup_mutex);
Zefan Li971ff492014-09-18 16:06:19 +08005452 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Zefan Li3e2cd912014-09-20 14:35:43 +08005453 goto out_free;
Zefan Li971ff492014-09-18 16:06:19 +08005454out:
Zefan Li3e2cd912014-09-20 14:35:43 +08005455 mutex_unlock(&cgroup_mutex);
5456out_free:
Zefan Li971ff492014-09-18 16:06:19 +08005457 kfree(agentbuf);
5458 kfree(pathbuf);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005459}
Paul Menage8bab8dd2008-04-04 14:29:57 -07005460
5461static int __init cgroup_disable(char *str)
5462{
Tejun Heo30159ec2013-06-25 11:53:37 -07005463 struct cgroup_subsys *ss;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005464 char *token;
Tejun Heo30159ec2013-06-25 11:53:37 -07005465 int i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005466
5467 while ((token = strsep(&str, ",")) != NULL) {
5468 if (!*token)
5469 continue;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005470
Tejun Heo3ed80a62014-02-08 10:36:58 -05005471 for_each_subsys(ss, i) {
Paul Menage8bab8dd2008-04-04 14:29:57 -07005472 if (!strcmp(token, ss->name)) {
5473 ss->disabled = 1;
5474 printk(KERN_INFO "Disabling %s control group"
5475 " subsystem\n", ss->name);
5476 break;
5477 }
5478 }
5479 }
5480 return 1;
5481}
5482__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005483
Tejun Heoa8ddc822014-07-15 11:05:10 -04005484static int __init cgroup_set_legacy_files_on_dfl(char *str)
5485{
5486 printk("cgroup: using legacy files on the default hierarchy\n");
5487 cgroup_legacy_files_on_dfl = true;
5488 return 0;
5489}
5490__setup("cgroup__DEVEL__legacy_files_on_dfl", cgroup_set_legacy_files_on_dfl);
5491
Tejun Heob77d7b62013-08-13 11:01:54 -04005492/**
Tejun Heoec903c02014-05-13 12:11:01 -04005493 * css_tryget_online_from_dir - get corresponding css from a cgroup dentry
Tejun Heo35cf0832013-08-26 18:40:56 -04005494 * @dentry: directory dentry of interest
5495 * @ss: subsystem of interest
Tejun Heob77d7b62013-08-13 11:01:54 -04005496 *
Tejun Heo5a17f542014-02-11 11:52:47 -05005497 * If @dentry is a directory for a cgroup which has @ss enabled on it, try
5498 * to get the corresponding css and return it. If such css doesn't exist
5499 * or can't be pinned, an ERR_PTR value is returned.
Stephane Eraniane5d13672011-02-14 11:20:01 +02005500 */
Tejun Heoec903c02014-05-13 12:11:01 -04005501struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry,
5502 struct cgroup_subsys *ss)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005503{
Tejun Heo2bd59d42014-02-11 11:52:49 -05005504 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
5505 struct cgroup_subsys_state *css = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005506 struct cgroup *cgrp;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005507
Tejun Heo35cf0832013-08-26 18:40:56 -04005508 /* is @dentry a cgroup dir? */
Tejun Heo2bd59d42014-02-11 11:52:49 -05005509 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
5510 kernfs_type(kn) != KERNFS_DIR)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005511 return ERR_PTR(-EBADF);
5512
Tejun Heo5a17f542014-02-11 11:52:47 -05005513 rcu_read_lock();
5514
Tejun Heo2bd59d42014-02-11 11:52:49 -05005515 /*
5516 * This path doesn't originate from kernfs and @kn could already
5517 * have been or be removed at any point. @kn->priv is RCU
Li Zefana4189482014-09-04 14:43:07 +08005518 * protected for this access. See css_release_work_fn() for details.
Tejun Heo2bd59d42014-02-11 11:52:49 -05005519 */
5520 cgrp = rcu_dereference(kn->priv);
5521 if (cgrp)
5522 css = cgroup_css(cgrp, ss);
Tejun Heo5a17f542014-02-11 11:52:47 -05005523
Tejun Heoec903c02014-05-13 12:11:01 -04005524 if (!css || !css_tryget_online(css))
Tejun Heo5a17f542014-02-11 11:52:47 -05005525 css = ERR_PTR(-ENOENT);
5526
5527 rcu_read_unlock();
5528 return css;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005529}
Stephane Eraniane5d13672011-02-14 11:20:01 +02005530
Li Zefan1cb650b2013-08-19 10:05:24 +08005531/**
5532 * css_from_id - lookup css by id
5533 * @id: the cgroup id
5534 * @ss: cgroup subsys to be looked into
5535 *
5536 * Returns the css if there's valid one with @id, otherwise returns NULL.
5537 * Should be called under rcu_read_lock().
5538 */
5539struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss)
5540{
Tejun Heo6fa49182014-05-04 15:09:13 -04005541 WARN_ON_ONCE(!rcu_read_lock_held());
Vladimir Davydovadbe4272015-04-15 16:13:00 -07005542 return id > 0 ? idr_find(&ss->css_idr, id) : NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005543}
5544
Paul Menagefe693432009-09-23 15:56:20 -07005545#ifdef CONFIG_CGROUP_DEBUG
Tejun Heoeb954192013-08-08 20:11:23 -04005546static struct cgroup_subsys_state *
5547debug_css_alloc(struct cgroup_subsys_state *parent_css)
Paul Menagefe693432009-09-23 15:56:20 -07005548{
5549 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
5550
5551 if (!css)
5552 return ERR_PTR(-ENOMEM);
5553
5554 return css;
5555}
5556
Tejun Heoeb954192013-08-08 20:11:23 -04005557static void debug_css_free(struct cgroup_subsys_state *css)
Paul Menagefe693432009-09-23 15:56:20 -07005558{
Tejun Heoeb954192013-08-08 20:11:23 -04005559 kfree(css);
Paul Menagefe693432009-09-23 15:56:20 -07005560}
5561
Tejun Heo182446d2013-08-08 20:11:24 -04005562static u64 debug_taskcount_read(struct cgroup_subsys_state *css,
5563 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005564{
Tejun Heo182446d2013-08-08 20:11:24 -04005565 return cgroup_task_count(css->cgroup);
Paul Menagefe693432009-09-23 15:56:20 -07005566}
5567
Tejun Heo182446d2013-08-08 20:11:24 -04005568static u64 current_css_set_read(struct cgroup_subsys_state *css,
5569 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005570{
5571 return (u64)(unsigned long)current->cgroups;
5572}
5573
Tejun Heo182446d2013-08-08 20:11:24 -04005574static u64 current_css_set_refcount_read(struct cgroup_subsys_state *css,
Li Zefan03c78cb2013-06-14 11:17:19 +08005575 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005576{
5577 u64 count;
5578
5579 rcu_read_lock();
Tejun Heoa8ad8052013-06-21 15:52:04 -07005580 count = atomic_read(&task_css_set(current)->refcount);
Paul Menagefe693432009-09-23 15:56:20 -07005581 rcu_read_unlock();
5582 return count;
5583}
5584
Tejun Heo2da8ca82013-12-05 12:28:04 -05005585static int current_css_set_cg_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005586{
Tejun Heo69d02062013-06-12 21:04:50 -07005587 struct cgrp_cset_link *link;
Tejun Heo5abb8852013-06-12 21:04:49 -07005588 struct css_set *cset;
Tejun Heoe61734c2014-02-12 09:29:50 -05005589 char *name_buf;
Paul Menage7717f7b2009-09-23 15:56:22 -07005590
Tejun Heoe61734c2014-02-12 09:29:50 -05005591 name_buf = kmalloc(NAME_MAX + 1, GFP_KERNEL);
5592 if (!name_buf)
5593 return -ENOMEM;
Paul Menage7717f7b2009-09-23 15:56:22 -07005594
Tejun Heo96d365e2014-02-13 06:58:40 -05005595 down_read(&css_set_rwsem);
Paul Menage7717f7b2009-09-23 15:56:22 -07005596 rcu_read_lock();
Tejun Heo5abb8852013-06-12 21:04:49 -07005597 cset = rcu_dereference(current->cgroups);
Tejun Heo69d02062013-06-12 21:04:50 -07005598 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07005599 struct cgroup *c = link->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -07005600
Tejun Heoa2dd4242014-03-19 10:23:55 -04005601 cgroup_name(c, name_buf, NAME_MAX + 1);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005602 seq_printf(seq, "Root %d group %s\n",
Tejun Heoa2dd4242014-03-19 10:23:55 -04005603 c->root->hierarchy_id, name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07005604 }
5605 rcu_read_unlock();
Tejun Heo96d365e2014-02-13 06:58:40 -05005606 up_read(&css_set_rwsem);
Tejun Heoe61734c2014-02-12 09:29:50 -05005607 kfree(name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07005608 return 0;
5609}
5610
5611#define MAX_TASKS_SHOWN_PER_CSS 25
Tejun Heo2da8ca82013-12-05 12:28:04 -05005612static int cgroup_css_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005613{
Tejun Heo2da8ca82013-12-05 12:28:04 -05005614 struct cgroup_subsys_state *css = seq_css(seq);
Tejun Heo69d02062013-06-12 21:04:50 -07005615 struct cgrp_cset_link *link;
Paul Menage7717f7b2009-09-23 15:56:22 -07005616
Tejun Heo96d365e2014-02-13 06:58:40 -05005617 down_read(&css_set_rwsem);
Tejun Heo182446d2013-08-08 20:11:24 -04005618 list_for_each_entry(link, &css->cgroup->cset_links, cset_link) {
Tejun Heo69d02062013-06-12 21:04:50 -07005619 struct css_set *cset = link->cset;
Paul Menage7717f7b2009-09-23 15:56:22 -07005620 struct task_struct *task;
5621 int count = 0;
Tejun Heoc7561122014-02-25 10:04:01 -05005622
Tejun Heo5abb8852013-06-12 21:04:49 -07005623 seq_printf(seq, "css_set %p\n", cset);
Tejun Heoc7561122014-02-25 10:04:01 -05005624
Tejun Heo5abb8852013-06-12 21:04:49 -07005625 list_for_each_entry(task, &cset->tasks, cg_list) {
Tejun Heoc7561122014-02-25 10:04:01 -05005626 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
5627 goto overflow;
5628 seq_printf(seq, " task %d\n", task_pid_vnr(task));
Paul Menage7717f7b2009-09-23 15:56:22 -07005629 }
Tejun Heoc7561122014-02-25 10:04:01 -05005630
5631 list_for_each_entry(task, &cset->mg_tasks, cg_list) {
5632 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
5633 goto overflow;
5634 seq_printf(seq, " task %d\n", task_pid_vnr(task));
5635 }
5636 continue;
5637 overflow:
5638 seq_puts(seq, " ...\n");
Paul Menage7717f7b2009-09-23 15:56:22 -07005639 }
Tejun Heo96d365e2014-02-13 06:58:40 -05005640 up_read(&css_set_rwsem);
Paul Menage7717f7b2009-09-23 15:56:22 -07005641 return 0;
5642}
5643
Tejun Heo182446d2013-08-08 20:11:24 -04005644static u64 releasable_read(struct cgroup_subsys_state *css, struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005645{
Zefan Lia25eb522014-09-19 16:51:00 +08005646 return (!cgroup_has_tasks(css->cgroup) &&
5647 !css_has_online_children(&css->cgroup->self));
Paul Menagefe693432009-09-23 15:56:20 -07005648}
5649
5650static struct cftype debug_files[] = {
5651 {
Paul Menagefe693432009-09-23 15:56:20 -07005652 .name = "taskcount",
5653 .read_u64 = debug_taskcount_read,
5654 },
5655
5656 {
5657 .name = "current_css_set",
5658 .read_u64 = current_css_set_read,
5659 },
5660
5661 {
5662 .name = "current_css_set_refcount",
5663 .read_u64 = current_css_set_refcount_read,
5664 },
5665
5666 {
Paul Menage7717f7b2009-09-23 15:56:22 -07005667 .name = "current_css_set_cg_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005668 .seq_show = current_css_set_cg_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07005669 },
5670
5671 {
5672 .name = "cgroup_css_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005673 .seq_show = cgroup_css_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07005674 },
5675
5676 {
Paul Menagefe693432009-09-23 15:56:20 -07005677 .name = "releasable",
5678 .read_u64 = releasable_read,
5679 },
Paul Menagefe693432009-09-23 15:56:20 -07005680
Tejun Heo4baf6e32012-04-01 12:09:55 -07005681 { } /* terminate */
5682};
Paul Menagefe693432009-09-23 15:56:20 -07005683
Tejun Heo073219e2014-02-08 10:36:58 -05005684struct cgroup_subsys debug_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08005685 .css_alloc = debug_css_alloc,
5686 .css_free = debug_css_free,
Tejun Heo55779642014-07-15 11:05:09 -04005687 .legacy_cftypes = debug_files,
Paul Menagefe693432009-09-23 15:56:20 -07005688};
5689#endif /* CONFIG_CGROUP_DEBUG */