blob: ba7b3284c2e4cb1b33fe5d891e8dbacb5b6bc1c4 [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 Heo1ed13282015-09-16 12:53:17 -040048#include <linux/percpu-rwsem.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070049#include <linux/string.h>
Paul Menagebbcb81d2007-10-18 23:39:32 -070050#include <linux/sort.h>
Paul Menage81a6a5c2007-10-18 23:39:38 -070051#include <linux/kmod.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070052#include <linux/delayacct.h>
53#include <linux/cgroupstats.h>
Li Zefan0ac801f2013-01-10 11:49:27 +080054#include <linux/hashtable.h>
Li Zefan096b7fe2009-07-29 15:04:04 -070055#include <linux/pid_namespace.h>
Paul Menage2c6ab6d2009-09-23 15:56:23 -070056#include <linux/idr.h>
Ben Blumd1d9fd32009-09-23 15:56:28 -070057#include <linux/vmalloc.h> /* TODO: replace with more sophisticated array */
Mike Galbraithc4c27fb2012-04-21 09:13:46 +020058#include <linux/kthread.h>
Tejun Heo776f02f2014-02-12 09:29:50 -050059#include <linux/delay.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070060
Arun Sharma600634972011-07-26 16:09:06 -070061#include <linux/atomic.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070062
Tejun Heoe25e2cb2011-12-12 18:12:21 -080063/*
Tejun Heob1a21362013-11-29 10:42:58 -050064 * pidlists linger the following amount before being destroyed. The goal
65 * is avoiding frequent destruction in the middle of consecutive read calls
66 * Expiring in the middle is a performance problem not a correctness one.
67 * 1 sec should be enough.
68 */
69#define CGROUP_PIDLIST_DESTROY_DELAY HZ
70
Tejun Heo8d7e6fb2014-02-11 11:52:48 -050071#define CGROUP_FILE_NAME_MAX (MAX_CGROUP_TYPE_NAMELEN + \
72 MAX_CFTYPE_NAME + 2)
73
Tejun Heob1a21362013-11-29 10:42:58 -050074/*
Tejun Heoe25e2cb2011-12-12 18:12:21 -080075 * cgroup_mutex is the master lock. Any modification to cgroup or its
76 * hierarchy must be performed while holding it.
77 *
Tejun Heof0d9a5f2015-10-15 16:41:53 -040078 * css_set_lock protects task->cgroups pointer, the list of css_set
Tejun Heo0e1d7682014-02-25 10:04:03 -050079 * objects, and the chain of tasks off each css_set.
Tejun Heoe25e2cb2011-12-12 18:12:21 -080080 *
Tejun Heo0e1d7682014-02-25 10:04:03 -050081 * These locks are exported if CONFIG_PROVE_RCU so that accessors in
82 * cgroup.h can use them for lockdep annotations.
Tejun Heoe25e2cb2011-12-12 18:12:21 -080083 */
Tejun Heo22194492013-04-07 09:29:51 -070084#ifdef CONFIG_PROVE_RCU
85DEFINE_MUTEX(cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -040086DEFINE_SPINLOCK(css_set_lock);
Tejun Heo0e1d7682014-02-25 10:04:03 -050087EXPORT_SYMBOL_GPL(cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -040088EXPORT_SYMBOL_GPL(css_set_lock);
Tejun Heo22194492013-04-07 09:29:51 -070089#else
Paul Menage81a6a5c2007-10-18 23:39:38 -070090static DEFINE_MUTEX(cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -040091static DEFINE_SPINLOCK(css_set_lock);
Tejun Heo22194492013-04-07 09:29:51 -070092#endif
93
Tejun Heo69e943b2014-02-08 10:36:58 -050094/*
Tejun Heo15a4c832014-05-04 15:09:14 -040095 * Protects cgroup_idr and css_idr so that IDs can be released without
96 * grabbing cgroup_mutex.
Tejun Heo6fa49182014-05-04 15:09:13 -040097 */
98static DEFINE_SPINLOCK(cgroup_idr_lock);
99
100/*
Tejun Heo69e943b2014-02-08 10:36:58 -0500101 * Protects cgroup_subsys->release_agent_path. Modifying it also requires
102 * cgroup_mutex. Reading requires either cgroup_mutex or this spinlock.
103 */
104static DEFINE_SPINLOCK(release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700105
Tejun Heo1ed13282015-09-16 12:53:17 -0400106struct percpu_rw_semaphore cgroup_threadgroup_rwsem;
107
Tejun Heo8353da12014-05-13 12:19:23 -0400108#define cgroup_assert_mutex_or_rcu_locked() \
Paul E. McKenneyf78f5b92015-06-18 15:50:02 -0700109 RCU_LOCKDEP_WARN(!rcu_read_lock_held() && \
110 !lockdep_is_held(&cgroup_mutex), \
Tejun Heo8353da12014-05-13 12:19:23 -0400111 "cgroup_mutex or RCU read lock required");
Tejun Heo780cd8b2013-12-06 15:11:56 -0500112
Ben Blumaae8aab2010-03-10 15:22:07 -0800113/*
Tejun Heoe5fca242013-11-22 17:14:39 -0500114 * cgroup destruction makes heavy use of work items and there can be a lot
115 * of concurrent destructions. Use a separate workqueue so that cgroup
116 * destruction work items don't end up filling up max_active of system_wq
117 * which may lead to deadlock.
118 */
119static struct workqueue_struct *cgroup_destroy_wq;
120
121/*
Tejun Heob1a21362013-11-29 10:42:58 -0500122 * pidlist destructions need to be flushed on cgroup destruction. Use a
123 * separate workqueue as flush domain.
124 */
125static struct workqueue_struct *cgroup_pidlist_destroy_wq;
126
Tejun Heo3ed80a62014-02-08 10:36:58 -0500127/* generate an array of cgroup subsystem pointers */
Tejun Heo073219e2014-02-08 10:36:58 -0500128#define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys,
Tejun Heo3ed80a62014-02-08 10:36:58 -0500129static struct cgroup_subsys *cgroup_subsys[] = {
Paul Menageddbcc7e2007-10-18 23:39:30 -0700130#include <linux/cgroup_subsys.h>
131};
Tejun Heo073219e2014-02-08 10:36:58 -0500132#undef SUBSYS
133
134/* array of cgroup subsystem names */
135#define SUBSYS(_x) [_x ## _cgrp_id] = #_x,
136static const char *cgroup_subsys_name[] = {
137#include <linux/cgroup_subsys.h>
138};
139#undef SUBSYS
Paul Menageddbcc7e2007-10-18 23:39:30 -0700140
Tejun Heo49d1dc42015-09-18 11:56:28 -0400141/* array of static_keys for cgroup_subsys_enabled() and cgroup_subsys_on_dfl() */
142#define SUBSYS(_x) \
143 DEFINE_STATIC_KEY_TRUE(_x ## _cgrp_subsys_enabled_key); \
144 DEFINE_STATIC_KEY_TRUE(_x ## _cgrp_subsys_on_dfl_key); \
145 EXPORT_SYMBOL_GPL(_x ## _cgrp_subsys_enabled_key); \
146 EXPORT_SYMBOL_GPL(_x ## _cgrp_subsys_on_dfl_key);
147#include <linux/cgroup_subsys.h>
148#undef SUBSYS
149
150#define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys_enabled_key,
151static struct static_key_true *cgroup_subsys_enabled_key[] = {
152#include <linux/cgroup_subsys.h>
153};
154#undef SUBSYS
155
156#define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys_on_dfl_key,
157static struct static_key_true *cgroup_subsys_on_dfl_key[] = {
158#include <linux/cgroup_subsys.h>
159};
160#undef SUBSYS
161
Paul Menageddbcc7e2007-10-18 23:39:30 -0700162/*
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400163 * The default hierarchy, reserved for the subsystems that are otherwise
Tejun Heo9871bf92013-06-24 15:21:47 -0700164 * unattached - it never has more than a single cgroup, and all tasks are
165 * part of that cgroup.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700166 */
Tejun Heoa2dd4242014-03-19 10:23:55 -0400167struct cgroup_root cgrp_dfl_root;
Tejun Heod0ec4232015-08-05 16:03:19 -0400168EXPORT_SYMBOL_GPL(cgrp_dfl_root);
Tejun Heo9871bf92013-06-24 15:21:47 -0700169
Tejun Heoa2dd4242014-03-19 10:23:55 -0400170/*
171 * The default hierarchy always exists but is hidden until mounted for the
172 * first time. This is for backward compatibility.
173 */
174static bool cgrp_dfl_root_visible;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700175
Tejun Heoa8ddc822014-07-15 11:05:10 -0400176/*
177 * Set by the boot param of the same name and makes subsystems with NULL
178 * ->dfl_files to use ->legacy_files on the default hierarchy.
179 */
180static bool cgroup_legacy_files_on_dfl;
181
Tejun Heo5533e012014-05-14 19:33:07 -0400182/* some controllers are not supported in the default hierarchy */
Aleksa Sarai8ab456a2015-05-19 00:51:00 +1000183static unsigned long cgrp_dfl_root_inhibit_ss_mask;
Tejun Heo5533e012014-05-14 19:33:07 -0400184
Paul Menageddbcc7e2007-10-18 23:39:30 -0700185/* The list of hierarchy roots */
186
Tejun Heo9871bf92013-06-24 15:21:47 -0700187static LIST_HEAD(cgroup_roots);
188static int cgroup_root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700189
Tejun Heo3417ae12014-02-08 10:37:01 -0500190/* hierarchy ID allocation and mapping, protected by cgroup_mutex */
Tejun Heo1a574232013-04-14 11:36:58 -0700191static DEFINE_IDR(cgroup_hierarchy_idr);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700192
Li Zefan794611a2013-06-18 18:53:53 +0800193/*
Tejun Heo0cb51d72014-05-16 13:22:49 -0400194 * Assign a monotonically increasing serial number to csses. It guarantees
195 * cgroups with bigger numbers are newer than those with smaller numbers.
196 * Also, as csses are always appended to the parent's ->children list, it
197 * guarantees that sibling csses are always sorted in the ascending serial
198 * number order on the list. Protected by cgroup_mutex.
Li Zefan794611a2013-06-18 18:53:53 +0800199 */
Tejun Heo0cb51d72014-05-16 13:22:49 -0400200static u64 css_serial_nr_next = 1;
Li Zefan794611a2013-06-18 18:53:53 +0800201
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000202/*
203 * These bitmask flags indicate whether tasks in the fork and exit paths have
204 * fork/exit handlers to call. This avoids us having to do extra work in the
205 * fork/exit path to check which subsystems have fork/exit callbacks.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700206 */
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000207static unsigned long have_fork_callback __read_mostly;
208static unsigned long have_exit_callback __read_mostly;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700209
Aleksa Sarai7e476822015-06-09 21:32:09 +1000210/* Ditto for the can_fork callback. */
211static unsigned long have_canfork_callback __read_mostly;
212
Tejun Heoa14c6872014-07-15 11:05:09 -0400213static struct cftype cgroup_dfl_base_files[];
214static struct cftype cgroup_legacy_base_files[];
Tejun Heo628f7cd2013-06-28 16:24:11 -0700215
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400216static int rebind_subsystems(struct cgroup_root *dst_root,
Aleksa Sarai8ab456a2015-05-19 00:51:00 +1000217 unsigned long ss_mask);
Tejun Heoed27b9f2015-10-15 16:41:52 -0400218static void css_task_iter_advance(struct css_task_iter *it);
Tejun Heo42809dd2012-11-19 08:13:37 -0800219static int cgroup_destroy_locked(struct cgroup *cgrp);
Tejun Heof63070d2014-07-08 18:02:57 -0400220static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss,
221 bool visible);
Tejun Heo9d755d32014-05-14 09:15:02 -0400222static void css_release(struct percpu_ref *ref);
Tejun Heof8f22e52014-04-23 11:13:16 -0400223static void kill_css(struct cgroup_subsys_state *css);
Tejun Heo4df8dc92015-09-18 17:54:23 -0400224static int cgroup_addrm_files(struct cgroup_subsys_state *css,
225 struct cgroup *cgrp, struct cftype cfts[],
Tejun Heo2bb566c2013-08-08 20:11:23 -0400226 bool is_add);
Tejun Heo42809dd2012-11-19 08:13:37 -0800227
Tejun Heofc5ed1e2015-09-18 11:56:28 -0400228/**
229 * cgroup_ssid_enabled - cgroup subsys enabled test by subsys ID
230 * @ssid: subsys ID of interest
231 *
232 * cgroup_subsys_enabled() can only be used with literal subsys names which
233 * is fine for individual subsystems but unsuitable for cgroup core. This
234 * is slower static_key_enabled() based test indexed by @ssid.
235 */
236static bool cgroup_ssid_enabled(int ssid)
237{
238 return static_key_enabled(cgroup_subsys_enabled_key[ssid]);
239}
240
Tejun Heo9e10a132015-09-18 11:56:28 -0400241/**
242 * cgroup_on_dfl - test whether a cgroup is on the default hierarchy
243 * @cgrp: the cgroup of interest
244 *
245 * The default hierarchy is the v2 interface of cgroup and this function
246 * can be used to test whether a cgroup is on the default hierarchy for
247 * cases where a subsystem should behave differnetly depending on the
248 * interface version.
249 *
250 * The set of behaviors which change on the default hierarchy are still
251 * being determined and the mount option is prefixed with __DEVEL__.
252 *
253 * List of changed behaviors:
254 *
255 * - Mount options "noprefix", "xattr", "clone_children", "release_agent"
256 * and "name" are disallowed.
257 *
258 * - When mounting an existing superblock, mount options should match.
259 *
260 * - Remount is disallowed.
261 *
262 * - rename(2) is disallowed.
263 *
264 * - "tasks" is removed. Everything should be at process granularity. Use
265 * "cgroup.procs" instead.
266 *
267 * - "cgroup.procs" is not sorted. pids will be unique unless they got
268 * recycled inbetween reads.
269 *
270 * - "release_agent" and "notify_on_release" are removed. Replacement
271 * notification mechanism will be implemented.
272 *
273 * - "cgroup.clone_children" is removed.
274 *
275 * - "cgroup.subtree_populated" is available. Its value is 0 if the cgroup
276 * and its descendants contain no task; otherwise, 1. The file also
277 * generates kernfs notification which can be monitored through poll and
278 * [di]notify when the value of the file changes.
279 *
280 * - cpuset: tasks will be kept in empty cpusets when hotplug happens and
281 * take masks of ancestors with non-empty cpus/mems, instead of being
282 * moved to an ancestor.
283 *
284 * - cpuset: a task can be moved into an empty cpuset, and again it takes
285 * masks of ancestors.
286 *
287 * - memcg: use_hierarchy is on by default and the cgroup file for the flag
288 * is not created.
289 *
290 * - blkcg: blk-throttle becomes properly hierarchical.
291 *
292 * - debug: disallowed on the default hierarchy.
293 */
294static bool cgroup_on_dfl(const struct cgroup *cgrp)
295{
296 return cgrp->root == &cgrp_dfl_root;
297}
298
Tejun Heo6fa49182014-05-04 15:09:13 -0400299/* IDR wrappers which synchronize using cgroup_idr_lock */
300static int cgroup_idr_alloc(struct idr *idr, void *ptr, int start, int end,
301 gfp_t gfp_mask)
302{
303 int ret;
304
305 idr_preload(gfp_mask);
Tejun Heo54504e92014-05-13 12:10:59 -0400306 spin_lock_bh(&cgroup_idr_lock);
Vladimir Davydovcf780b72015-08-03 15:32:26 +0300307 ret = idr_alloc(idr, ptr, start, end, gfp_mask & ~__GFP_WAIT);
Tejun Heo54504e92014-05-13 12:10:59 -0400308 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400309 idr_preload_end();
310 return ret;
311}
312
313static void *cgroup_idr_replace(struct idr *idr, void *ptr, int id)
314{
315 void *ret;
316
Tejun Heo54504e92014-05-13 12:10:59 -0400317 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400318 ret = idr_replace(idr, ptr, id);
Tejun Heo54504e92014-05-13 12:10:59 -0400319 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400320 return ret;
321}
322
323static void cgroup_idr_remove(struct idr *idr, int id)
324{
Tejun Heo54504e92014-05-13 12:10:59 -0400325 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400326 idr_remove(idr, id);
Tejun Heo54504e92014-05-13 12:10:59 -0400327 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400328}
329
Tejun Heod51f39b2014-05-16 13:22:48 -0400330static struct cgroup *cgroup_parent(struct cgroup *cgrp)
331{
332 struct cgroup_subsys_state *parent_css = cgrp->self.parent;
333
334 if (parent_css)
335 return container_of(parent_css, struct cgroup, self);
336 return NULL;
337}
338
Tejun Heo95109b62013-08-08 20:11:27 -0400339/**
340 * cgroup_css - obtain a cgroup's css for the specified subsystem
341 * @cgrp: the cgroup of interest
Tejun Heo9d800df2014-05-14 09:15:00 -0400342 * @ss: the subsystem of interest (%NULL returns @cgrp->self)
Tejun Heo95109b62013-08-08 20:11:27 -0400343 *
Tejun Heoca8bdca2013-08-26 18:40:56 -0400344 * Return @cgrp's css (cgroup_subsys_state) associated with @ss. This
345 * function must be called either under cgroup_mutex or rcu_read_lock() and
346 * the caller is responsible for pinning the returned css if it wants to
347 * keep accessing it outside the said locks. This function may return
348 * %NULL if @cgrp doesn't have @subsys_id enabled.
Tejun Heo95109b62013-08-08 20:11:27 -0400349 */
350static struct cgroup_subsys_state *cgroup_css(struct cgroup *cgrp,
Tejun Heoca8bdca2013-08-26 18:40:56 -0400351 struct cgroup_subsys *ss)
Tejun Heo95109b62013-08-08 20:11:27 -0400352{
Tejun Heoca8bdca2013-08-26 18:40:56 -0400353 if (ss)
Tejun Heoaec25022014-02-08 10:36:58 -0500354 return rcu_dereference_check(cgrp->subsys[ss->id],
Tejun Heoace2bee2014-02-11 11:52:47 -0500355 lockdep_is_held(&cgroup_mutex));
Tejun Heoca8bdca2013-08-26 18:40:56 -0400356 else
Tejun Heo9d800df2014-05-14 09:15:00 -0400357 return &cgrp->self;
Tejun Heo95109b62013-08-08 20:11:27 -0400358}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700359
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400360/**
361 * cgroup_e_css - obtain a cgroup's effective css for the specified subsystem
362 * @cgrp: the cgroup of interest
Tejun Heo9d800df2014-05-14 09:15:00 -0400363 * @ss: the subsystem of interest (%NULL returns @cgrp->self)
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400364 *
Chen Hanxiaod0f702e2015-04-23 07:57:33 -0400365 * Similar to cgroup_css() but returns the effective css, which is defined
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400366 * as the matching css of the nearest ancestor including self which has @ss
367 * enabled. If @ss is associated with the hierarchy @cgrp is on, this
368 * function is guaranteed to return non-NULL css.
369 */
370static struct cgroup_subsys_state *cgroup_e_css(struct cgroup *cgrp,
371 struct cgroup_subsys *ss)
372{
373 lockdep_assert_held(&cgroup_mutex);
374
375 if (!ss)
Tejun Heo9d800df2014-05-14 09:15:00 -0400376 return &cgrp->self;
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400377
378 if (!(cgrp->root->subsys_mask & (1 << ss->id)))
379 return NULL;
380
Tejun Heoeeecbd12014-11-18 02:49:52 -0500381 /*
382 * This function is used while updating css associations and thus
383 * can't test the csses directly. Use ->child_subsys_mask.
384 */
Tejun Heod51f39b2014-05-16 13:22:48 -0400385 while (cgroup_parent(cgrp) &&
386 !(cgroup_parent(cgrp)->child_subsys_mask & (1 << ss->id)))
387 cgrp = cgroup_parent(cgrp);
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400388
389 return cgroup_css(cgrp, ss);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700390}
391
Tejun Heoeeecbd12014-11-18 02:49:52 -0500392/**
393 * cgroup_get_e_css - get a cgroup's effective css for the specified subsystem
394 * @cgrp: the cgroup of interest
395 * @ss: the subsystem of interest
396 *
397 * Find and get the effective css of @cgrp for @ss. The effective css is
398 * defined as the matching css of the nearest ancestor including self which
399 * has @ss enabled. If @ss is not mounted on the hierarchy @cgrp is on,
400 * the root css is returned, so this function always returns a valid css.
401 * The returned css must be put using css_put().
402 */
403struct cgroup_subsys_state *cgroup_get_e_css(struct cgroup *cgrp,
404 struct cgroup_subsys *ss)
405{
406 struct cgroup_subsys_state *css;
407
408 rcu_read_lock();
409
410 do {
411 css = cgroup_css(cgrp, ss);
412
413 if (css && css_tryget_online(css))
414 goto out_unlock;
415 cgrp = cgroup_parent(cgrp);
416 } while (cgrp);
417
418 css = init_css_set.subsys[ss->id];
419 css_get(css);
420out_unlock:
421 rcu_read_unlock();
422 return css;
423}
424
Paul Menageddbcc7e2007-10-18 23:39:30 -0700425/* convenient tests for these bits */
Tejun Heo54766d42013-06-12 21:04:53 -0700426static inline bool cgroup_is_dead(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700427{
Tejun Heo184faf32014-05-16 13:22:51 -0400428 return !(cgrp->self.flags & CSS_ONLINE);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700429}
430
Tejun Heo052c3f32015-10-15 16:41:50 -0400431static void cgroup_get(struct cgroup *cgrp)
432{
433 WARN_ON_ONCE(cgroup_is_dead(cgrp));
434 css_get(&cgrp->self);
435}
436
437static bool cgroup_tryget(struct cgroup *cgrp)
438{
439 return css_tryget(&cgrp->self);
440}
441
442static void cgroup_put(struct cgroup *cgrp)
443{
444 css_put(&cgrp->self);
445}
446
Tejun Heob4168642014-05-13 12:16:21 -0400447struct cgroup_subsys_state *of_css(struct kernfs_open_file *of)
Tejun Heo59f52962014-02-11 11:52:49 -0500448{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500449 struct cgroup *cgrp = of->kn->parent->priv;
Tejun Heob4168642014-05-13 12:16:21 -0400450 struct cftype *cft = of_cft(of);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500451
452 /*
453 * This is open and unprotected implementation of cgroup_css().
454 * seq_css() is only called from a kernfs file operation which has
455 * an active reference on the file. Because all the subsystem
456 * files are drained before a css is disassociated with a cgroup,
457 * the matching css from the cgroup's subsys table is guaranteed to
458 * be and stay valid until the enclosing operation is complete.
459 */
460 if (cft->ss)
461 return rcu_dereference_raw(cgrp->subsys[cft->ss->id]);
462 else
Tejun Heo9d800df2014-05-14 09:15:00 -0400463 return &cgrp->self;
Tejun Heo59f52962014-02-11 11:52:49 -0500464}
Tejun Heob4168642014-05-13 12:16:21 -0400465EXPORT_SYMBOL_GPL(of_css);
Tejun Heo59f52962014-02-11 11:52:49 -0500466
Li Zefan78574cf2013-04-08 19:00:38 -0700467/**
468 * cgroup_is_descendant - test ancestry
469 * @cgrp: the cgroup to be tested
470 * @ancestor: possible ancestor of @cgrp
471 *
472 * Test whether @cgrp is a descendant of @ancestor. It also returns %true
473 * if @cgrp == @ancestor. This function is safe to call as long as @cgrp
474 * and @ancestor are accessible.
475 */
476bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor)
477{
478 while (cgrp) {
479 if (cgrp == ancestor)
480 return true;
Tejun Heod51f39b2014-05-16 13:22:48 -0400481 cgrp = cgroup_parent(cgrp);
Li Zefan78574cf2013-04-08 19:00:38 -0700482 }
483 return false;
484}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700485
Adrian Bunke9685a02008-02-07 00:13:46 -0800486static int notify_on_release(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700487{
Paul Menagebd89aab2007-10-18 23:40:44 -0700488 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700489}
490
Tejun Heo30159ec2013-06-25 11:53:37 -0700491/**
Tejun Heo1c6727a2013-12-06 15:11:56 -0500492 * for_each_css - iterate all css's of a cgroup
493 * @css: the iteration cursor
494 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
495 * @cgrp: the target cgroup to iterate css's of
Tejun Heo30159ec2013-06-25 11:53:37 -0700496 *
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400497 * Should be called under cgroup_[tree_]mutex.
Tejun Heo30159ec2013-06-25 11:53:37 -0700498 */
Tejun Heo1c6727a2013-12-06 15:11:56 -0500499#define for_each_css(css, ssid, cgrp) \
500 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
501 if (!((css) = rcu_dereference_check( \
502 (cgrp)->subsys[(ssid)], \
503 lockdep_is_held(&cgroup_mutex)))) { } \
504 else
505
506/**
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400507 * for_each_e_css - iterate all effective css's of a cgroup
508 * @css: the iteration cursor
509 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
510 * @cgrp: the target cgroup to iterate css's of
511 *
512 * Should be called under cgroup_[tree_]mutex.
513 */
514#define for_each_e_css(css, ssid, cgrp) \
515 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
516 if (!((css) = cgroup_e_css(cgrp, cgroup_subsys[(ssid)]))) \
517 ; \
518 else
519
520/**
Tejun Heo3ed80a62014-02-08 10:36:58 -0500521 * for_each_subsys - iterate all enabled cgroup subsystems
Tejun Heo30159ec2013-06-25 11:53:37 -0700522 * @ss: the iteration cursor
Tejun Heo780cd8b2013-12-06 15:11:56 -0500523 * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end
Tejun Heo30159ec2013-06-25 11:53:37 -0700524 */
Tejun Heo780cd8b2013-12-06 15:11:56 -0500525#define for_each_subsys(ss, ssid) \
Tejun Heo3ed80a62014-02-08 10:36:58 -0500526 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT && \
527 (((ss) = cgroup_subsys[ssid]) || true); (ssid)++)
Tejun Heo30159ec2013-06-25 11:53:37 -0700528
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000529/**
530 * for_each_subsys_which - filter for_each_subsys with a bitmask
531 * @ss: the iteration cursor
532 * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end
533 * @ss_maskp: a pointer to the bitmask
534 *
535 * The block will only run for cases where the ssid-th bit (1 << ssid) of
536 * mask is set to 1.
537 */
538#define for_each_subsys_which(ss, ssid, ss_maskp) \
539 if (!CGROUP_SUBSYS_COUNT) /* to avoid spurious gcc warning */ \
Aleksa Sarai4a705c52015-06-09 21:32:07 +1000540 (ssid) = 0; \
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000541 else \
542 for_each_set_bit(ssid, ss_maskp, CGROUP_SUBSYS_COUNT) \
543 if (((ss) = cgroup_subsys[ssid]) && false) \
544 break; \
545 else
546
Tejun Heo985ed672014-03-19 10:23:53 -0400547/* iterate across the hierarchies */
548#define for_each_root(root) \
Tejun Heo5549c492013-06-24 15:21:48 -0700549 list_for_each_entry((root), &cgroup_roots, root_list)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700550
Tejun Heof8f22e52014-04-23 11:13:16 -0400551/* iterate over child cgrps, lock should be held throughout iteration */
552#define cgroup_for_each_live_child(child, cgrp) \
Tejun Heod5c419b2014-05-16 13:22:48 -0400553 list_for_each_entry((child), &(cgrp)->self.children, self.sibling) \
Tejun Heo8353da12014-05-13 12:19:23 -0400554 if (({ lockdep_assert_held(&cgroup_mutex); \
Tejun Heof8f22e52014-04-23 11:13:16 -0400555 cgroup_is_dead(child); })) \
556 ; \
557 else
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700558
Paul Menage81a6a5c2007-10-18 23:39:38 -0700559static void cgroup_release_agent(struct work_struct *work);
Paul Menagebd89aab2007-10-18 23:40:44 -0700560static void check_for_release(struct cgroup *cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700561
Tejun Heo69d02062013-06-12 21:04:50 -0700562/*
563 * A cgroup can be associated with multiple css_sets as different tasks may
564 * belong to different cgroups on different hierarchies. In the other
565 * direction, a css_set is naturally associated with multiple cgroups.
566 * This M:N relationship is represented by the following link structure
567 * which exists for each association and allows traversing the associations
568 * from both sides.
569 */
570struct cgrp_cset_link {
571 /* the cgroup and css_set this link associates */
572 struct cgroup *cgrp;
573 struct css_set *cset;
574
575 /* list of cgrp_cset_links anchored at cgrp->cset_links */
576 struct list_head cset_link;
577
578 /* list of cgrp_cset_links anchored at css_set->cgrp_links */
579 struct list_head cgrp_link;
Paul Menage817929e2007-10-18 23:39:36 -0700580};
581
Tejun Heo172a2c062014-03-19 10:23:53 -0400582/*
583 * The default css_set - used by init and its children prior to any
Paul Menage817929e2007-10-18 23:39:36 -0700584 * hierarchies being mounted. It contains a pointer to the root state
585 * for each subsystem. Also used to anchor the list of css_sets. Not
586 * reference-counted, to improve performance when child cgroups
587 * haven't been created.
588 */
Tejun Heo5024ae22014-05-07 21:31:17 -0400589struct css_set init_css_set = {
Tejun Heo172a2c062014-03-19 10:23:53 -0400590 .refcount = ATOMIC_INIT(1),
591 .cgrp_links = LIST_HEAD_INIT(init_css_set.cgrp_links),
592 .tasks = LIST_HEAD_INIT(init_css_set.tasks),
593 .mg_tasks = LIST_HEAD_INIT(init_css_set.mg_tasks),
594 .mg_preload_node = LIST_HEAD_INIT(init_css_set.mg_preload_node),
595 .mg_node = LIST_HEAD_INIT(init_css_set.mg_node),
Tejun Heoed27b9f2015-10-15 16:41:52 -0400596 .task_iters = LIST_HEAD_INIT(init_css_set.task_iters),
Tejun Heo172a2c062014-03-19 10:23:53 -0400597};
Paul Menage817929e2007-10-18 23:39:36 -0700598
Tejun Heo172a2c062014-03-19 10:23:53 -0400599static int css_set_count = 1; /* 1 for init_css_set */
Paul Menage817929e2007-10-18 23:39:36 -0700600
Tejun Heo842b5972014-04-25 18:28:02 -0400601/**
Tejun Heo0de09422015-10-15 16:41:49 -0400602 * css_set_populated - does a css_set contain any tasks?
603 * @cset: target css_set
604 */
605static bool css_set_populated(struct css_set *cset)
606{
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400607 lockdep_assert_held(&css_set_lock);
Tejun Heo0de09422015-10-15 16:41:49 -0400608
609 return !list_empty(&cset->tasks) || !list_empty(&cset->mg_tasks);
610}
611
612/**
Tejun Heo842b5972014-04-25 18:28:02 -0400613 * cgroup_update_populated - updated populated count of a cgroup
614 * @cgrp: the target cgroup
615 * @populated: inc or dec populated count
616 *
Tejun Heo0de09422015-10-15 16:41:49 -0400617 * One of the css_sets associated with @cgrp is either getting its first
618 * task or losing the last. Update @cgrp->populated_cnt accordingly. The
619 * count is propagated towards root so that a given cgroup's populated_cnt
620 * is zero iff the cgroup and all its descendants don't contain any tasks.
Tejun Heo842b5972014-04-25 18:28:02 -0400621 *
622 * @cgrp's interface file "cgroup.populated" is zero if
623 * @cgrp->populated_cnt is zero and 1 otherwise. When @cgrp->populated_cnt
624 * changes from or to zero, userland is notified that the content of the
625 * interface file has changed. This can be used to detect when @cgrp and
626 * its descendants become populated or empty.
627 */
628static void cgroup_update_populated(struct cgroup *cgrp, bool populated)
629{
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400630 lockdep_assert_held(&css_set_lock);
Tejun Heo842b5972014-04-25 18:28:02 -0400631
632 do {
633 bool trigger;
634
635 if (populated)
636 trigger = !cgrp->populated_cnt++;
637 else
638 trigger = !--cgrp->populated_cnt;
639
640 if (!trigger)
641 break;
642
Tejun Heoad2ed2b2015-10-15 16:41:50 -0400643 check_for_release(cgrp);
Tejun Heo6f60ead2015-09-18 17:54:23 -0400644 cgroup_file_notify(&cgrp->events_file);
645
Tejun Heod51f39b2014-05-16 13:22:48 -0400646 cgrp = cgroup_parent(cgrp);
Tejun Heo842b5972014-04-25 18:28:02 -0400647 } while (cgrp);
648}
649
Tejun Heo0de09422015-10-15 16:41:49 -0400650/**
651 * css_set_update_populated - update populated state of a css_set
652 * @cset: target css_set
653 * @populated: whether @cset is populated or depopulated
654 *
655 * @cset is either getting the first task or losing the last. Update the
656 * ->populated_cnt of all associated cgroups accordingly.
657 */
658static void css_set_update_populated(struct css_set *cset, bool populated)
659{
660 struct cgrp_cset_link *link;
661
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400662 lockdep_assert_held(&css_set_lock);
Tejun Heo0de09422015-10-15 16:41:49 -0400663
664 list_for_each_entry(link, &cset->cgrp_links, cgrp_link)
665 cgroup_update_populated(link->cgrp, populated);
666}
667
Tejun Heof6d7d042015-10-15 16:41:52 -0400668/**
669 * css_set_move_task - move a task from one css_set to another
670 * @task: task being moved
671 * @from_cset: css_set @task currently belongs to (may be NULL)
672 * @to_cset: new css_set @task is being moved to (may be NULL)
673 * @use_mg_tasks: move to @to_cset->mg_tasks instead of ->tasks
674 *
675 * Move @task from @from_cset to @to_cset. If @task didn't belong to any
676 * css_set, @from_cset can be NULL. If @task is being disassociated
677 * instead of moved, @to_cset can be NULL.
678 *
Tejun Heoed27b9f2015-10-15 16:41:52 -0400679 * This function automatically handles populated_cnt updates and
680 * css_task_iter adjustments but the caller is responsible for managing
681 * @from_cset and @to_cset's reference counts.
Tejun Heof6d7d042015-10-15 16:41:52 -0400682 */
683static void css_set_move_task(struct task_struct *task,
684 struct css_set *from_cset, struct css_set *to_cset,
685 bool use_mg_tasks)
686{
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400687 lockdep_assert_held(&css_set_lock);
Tejun Heof6d7d042015-10-15 16:41:52 -0400688
689 if (from_cset) {
Tejun Heoed27b9f2015-10-15 16:41:52 -0400690 struct css_task_iter *it, *pos;
691
Tejun Heof6d7d042015-10-15 16:41:52 -0400692 WARN_ON_ONCE(list_empty(&task->cg_list));
Tejun Heoed27b9f2015-10-15 16:41:52 -0400693
694 /*
695 * @task is leaving, advance task iterators which are
696 * pointing to it so that they can resume at the next
697 * position. Advancing an iterator might remove it from
698 * the list, use safe walk. See css_task_iter_advance*()
699 * for details.
700 */
701 list_for_each_entry_safe(it, pos, &from_cset->task_iters,
702 iters_node)
703 if (it->task_pos == &task->cg_list)
704 css_task_iter_advance(it);
705
Tejun Heof6d7d042015-10-15 16:41:52 -0400706 list_del_init(&task->cg_list);
707 if (!css_set_populated(from_cset))
708 css_set_update_populated(from_cset, false);
709 } else {
710 WARN_ON_ONCE(!list_empty(&task->cg_list));
711 }
712
713 if (to_cset) {
714 /*
715 * We are synchronized through cgroup_threadgroup_rwsem
716 * against PF_EXITING setting such that we can't race
717 * against cgroup_exit() changing the css_set to
718 * init_css_set and dropping the old one.
719 */
720 WARN_ON_ONCE(task->flags & PF_EXITING);
721
722 if (!css_set_populated(to_cset))
723 css_set_update_populated(to_cset, true);
724 rcu_assign_pointer(task->cgroups, to_cset);
725 list_add_tail(&task->cg_list, use_mg_tasks ? &to_cset->mg_tasks :
726 &to_cset->tasks);
727 }
728}
729
Paul Menage7717f7b2009-09-23 15:56:22 -0700730/*
731 * hash table for cgroup groups. This improves the performance to find
732 * an existing css_set. This hash doesn't (currently) take into
733 * account cgroups in empty hierarchies.
734 */
Li Zefan472b1052008-04-29 01:00:11 -0700735#define CSS_SET_HASH_BITS 7
Li Zefan0ac801f2013-01-10 11:49:27 +0800736static DEFINE_HASHTABLE(css_set_table, CSS_SET_HASH_BITS);
Li Zefan472b1052008-04-29 01:00:11 -0700737
Li Zefan0ac801f2013-01-10 11:49:27 +0800738static unsigned long css_set_hash(struct cgroup_subsys_state *css[])
Li Zefan472b1052008-04-29 01:00:11 -0700739{
Li Zefan0ac801f2013-01-10 11:49:27 +0800740 unsigned long key = 0UL;
Tejun Heo30159ec2013-06-25 11:53:37 -0700741 struct cgroup_subsys *ss;
742 int i;
Li Zefan472b1052008-04-29 01:00:11 -0700743
Tejun Heo30159ec2013-06-25 11:53:37 -0700744 for_each_subsys(ss, i)
Li Zefan0ac801f2013-01-10 11:49:27 +0800745 key += (unsigned long)css[i];
746 key = (key >> 16) ^ key;
Li Zefan472b1052008-04-29 01:00:11 -0700747
Li Zefan0ac801f2013-01-10 11:49:27 +0800748 return key;
Li Zefan472b1052008-04-29 01:00:11 -0700749}
750
Zefan Lia25eb522014-09-19 16:51:00 +0800751static void put_css_set_locked(struct css_set *cset)
Paul Menageb4f48b62007-10-18 23:39:33 -0700752{
Tejun Heo69d02062013-06-12 21:04:50 -0700753 struct cgrp_cset_link *link, *tmp_link;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400754 struct cgroup_subsys *ss;
755 int ssid;
Tejun Heo5abb8852013-06-12 21:04:49 -0700756
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400757 lockdep_assert_held(&css_set_lock);
Tejun Heo89c55092014-02-13 06:58:40 -0500758
759 if (!atomic_dec_and_test(&cset->refcount))
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700760 return;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700761
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700762 /* This css_set is dead. unlink it and release cgroup refcounts */
Tejun Heo2d8f2432014-04-23 11:13:15 -0400763 for_each_subsys(ss, ssid)
764 list_del(&cset->e_cset_node[ssid]);
Tejun Heo5abb8852013-06-12 21:04:49 -0700765 hash_del(&cset->hlist);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700766 css_set_count--;
767
Tejun Heo69d02062013-06-12 21:04:50 -0700768 list_for_each_entry_safe(link, tmp_link, &cset->cgrp_links, cgrp_link) {
Tejun Heo69d02062013-06-12 21:04:50 -0700769 list_del(&link->cset_link);
770 list_del(&link->cgrp_link);
Tejun Heo2ceb2312015-10-15 16:41:51 -0400771 if (cgroup_parent(link->cgrp))
772 cgroup_put(link->cgrp);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700773 kfree(link);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700774 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700775
Tejun Heo5abb8852013-06-12 21:04:49 -0700776 kfree_rcu(cset, rcu_head);
Paul Menage817929e2007-10-18 23:39:36 -0700777}
778
Zefan Lia25eb522014-09-19 16:51:00 +0800779static void put_css_set(struct css_set *cset)
Tejun Heo89c55092014-02-13 06:58:40 -0500780{
781 /*
782 * Ensure that the refcount doesn't hit zero while any readers
783 * can see it. Similar to atomic_dec_and_lock(), but for an
784 * rwlock
785 */
786 if (atomic_add_unless(&cset->refcount, -1, 1))
787 return;
788
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400789 spin_lock_bh(&css_set_lock);
Zefan Lia25eb522014-09-19 16:51:00 +0800790 put_css_set_locked(cset);
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400791 spin_unlock_bh(&css_set_lock);
Tejun Heo89c55092014-02-13 06:58:40 -0500792}
793
Paul Menage817929e2007-10-18 23:39:36 -0700794/*
795 * refcounted get/put for css_set objects
796 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700797static inline void get_css_set(struct css_set *cset)
Paul Menage817929e2007-10-18 23:39:36 -0700798{
Tejun Heo5abb8852013-06-12 21:04:49 -0700799 atomic_inc(&cset->refcount);
Paul Menage817929e2007-10-18 23:39:36 -0700800}
801
Tejun Heob326f9d2013-06-24 15:21:48 -0700802/**
Paul Menage7717f7b2009-09-23 15:56:22 -0700803 * compare_css_sets - helper function for find_existing_css_set().
Tejun Heo5abb8852013-06-12 21:04:49 -0700804 * @cset: candidate css_set being tested
805 * @old_cset: existing css_set for a task
Paul Menage7717f7b2009-09-23 15:56:22 -0700806 * @new_cgrp: cgroup that's being entered by the task
807 * @template: desired set of css pointers in css_set (pre-calculated)
808 *
Li Zefan6f4b7e62013-07-31 16:18:36 +0800809 * Returns true if "cset" matches "old_cset" except for the hierarchy
Paul Menage7717f7b2009-09-23 15:56:22 -0700810 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
811 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700812static bool compare_css_sets(struct css_set *cset,
813 struct css_set *old_cset,
Paul Menage7717f7b2009-09-23 15:56:22 -0700814 struct cgroup *new_cgrp,
815 struct cgroup_subsys_state *template[])
816{
817 struct list_head *l1, *l2;
818
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400819 /*
820 * On the default hierarchy, there can be csets which are
821 * associated with the same set of cgroups but different csses.
822 * Let's first ensure that csses match.
823 */
824 if (memcmp(template, cset->subsys, sizeof(cset->subsys)))
Paul Menage7717f7b2009-09-23 15:56:22 -0700825 return false;
Paul Menage7717f7b2009-09-23 15:56:22 -0700826
827 /*
828 * Compare cgroup pointers in order to distinguish between
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400829 * different cgroups in hierarchies. As different cgroups may
830 * share the same effective css, this comparison is always
831 * necessary.
Paul Menage7717f7b2009-09-23 15:56:22 -0700832 */
Tejun Heo69d02062013-06-12 21:04:50 -0700833 l1 = &cset->cgrp_links;
834 l2 = &old_cset->cgrp_links;
Paul Menage7717f7b2009-09-23 15:56:22 -0700835 while (1) {
Tejun Heo69d02062013-06-12 21:04:50 -0700836 struct cgrp_cset_link *link1, *link2;
Tejun Heo5abb8852013-06-12 21:04:49 -0700837 struct cgroup *cgrp1, *cgrp2;
Paul Menage7717f7b2009-09-23 15:56:22 -0700838
839 l1 = l1->next;
840 l2 = l2->next;
841 /* See if we reached the end - both lists are equal length. */
Tejun Heo69d02062013-06-12 21:04:50 -0700842 if (l1 == &cset->cgrp_links) {
843 BUG_ON(l2 != &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700844 break;
845 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700846 BUG_ON(l2 == &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700847 }
848 /* Locate the cgroups associated with these links. */
Tejun Heo69d02062013-06-12 21:04:50 -0700849 link1 = list_entry(l1, struct cgrp_cset_link, cgrp_link);
850 link2 = list_entry(l2, struct cgrp_cset_link, cgrp_link);
851 cgrp1 = link1->cgrp;
852 cgrp2 = link2->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700853 /* Hierarchies should be linked in the same order. */
Tejun Heo5abb8852013-06-12 21:04:49 -0700854 BUG_ON(cgrp1->root != cgrp2->root);
Paul Menage7717f7b2009-09-23 15:56:22 -0700855
856 /*
857 * If this hierarchy is the hierarchy of the cgroup
858 * that's changing, then we need to check that this
859 * css_set points to the new cgroup; if it's any other
860 * hierarchy, then this css_set should point to the
861 * same cgroup as the old css_set.
862 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700863 if (cgrp1->root == new_cgrp->root) {
864 if (cgrp1 != new_cgrp)
Paul Menage7717f7b2009-09-23 15:56:22 -0700865 return false;
866 } else {
Tejun Heo5abb8852013-06-12 21:04:49 -0700867 if (cgrp1 != cgrp2)
Paul Menage7717f7b2009-09-23 15:56:22 -0700868 return false;
869 }
870 }
871 return true;
872}
873
Tejun Heob326f9d2013-06-24 15:21:48 -0700874/**
875 * find_existing_css_set - init css array and find the matching css_set
876 * @old_cset: the css_set that we're using before the cgroup transition
877 * @cgrp: the cgroup that we're moving into
878 * @template: out param for the new set of csses, should be clear on entry
Paul Menage817929e2007-10-18 23:39:36 -0700879 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700880static struct css_set *find_existing_css_set(struct css_set *old_cset,
881 struct cgroup *cgrp,
882 struct cgroup_subsys_state *template[])
Paul Menage817929e2007-10-18 23:39:36 -0700883{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400884 struct cgroup_root *root = cgrp->root;
Tejun Heo30159ec2013-06-25 11:53:37 -0700885 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -0700886 struct css_set *cset;
Li Zefan0ac801f2013-01-10 11:49:27 +0800887 unsigned long key;
Tejun Heob326f9d2013-06-24 15:21:48 -0700888 int i;
Paul Menage817929e2007-10-18 23:39:36 -0700889
Ben Blumaae8aab2010-03-10 15:22:07 -0800890 /*
891 * Build the set of subsystem state objects that we want to see in the
892 * new css_set. while subsystems can change globally, the entries here
893 * won't change, so no need for locking.
894 */
Tejun Heo30159ec2013-06-25 11:53:37 -0700895 for_each_subsys(ss, i) {
Tejun Heof392e512014-04-23 11:13:14 -0400896 if (root->subsys_mask & (1UL << i)) {
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400897 /*
898 * @ss is in this hierarchy, so we want the
899 * effective css from @cgrp.
900 */
901 template[i] = cgroup_e_css(cgrp, ss);
Paul Menage817929e2007-10-18 23:39:36 -0700902 } else {
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400903 /*
904 * @ss is not in this hierarchy, so we don't want
905 * to change the css.
906 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700907 template[i] = old_cset->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700908 }
909 }
910
Li Zefan0ac801f2013-01-10 11:49:27 +0800911 key = css_set_hash(template);
Tejun Heo5abb8852013-06-12 21:04:49 -0700912 hash_for_each_possible(css_set_table, cset, hlist, key) {
913 if (!compare_css_sets(cset, old_cset, cgrp, template))
Paul Menage7717f7b2009-09-23 15:56:22 -0700914 continue;
915
916 /* This css_set matches what we need */
Tejun Heo5abb8852013-06-12 21:04:49 -0700917 return cset;
Li Zefan472b1052008-04-29 01:00:11 -0700918 }
Paul Menage817929e2007-10-18 23:39:36 -0700919
920 /* No existing cgroup group matched */
921 return NULL;
922}
923
Tejun Heo69d02062013-06-12 21:04:50 -0700924static void free_cgrp_cset_links(struct list_head *links_to_free)
Paul Menage817929e2007-10-18 23:39:36 -0700925{
Tejun Heo69d02062013-06-12 21:04:50 -0700926 struct cgrp_cset_link *link, *tmp_link;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700927
Tejun Heo69d02062013-06-12 21:04:50 -0700928 list_for_each_entry_safe(link, tmp_link, links_to_free, cset_link) {
929 list_del(&link->cset_link);
Paul Menage817929e2007-10-18 23:39:36 -0700930 kfree(link);
931 }
932}
933
Tejun Heo69d02062013-06-12 21:04:50 -0700934/**
935 * allocate_cgrp_cset_links - allocate cgrp_cset_links
936 * @count: the number of links to allocate
937 * @tmp_links: list_head the allocated links are put on
938 *
939 * Allocate @count cgrp_cset_link structures and chain them on @tmp_links
940 * through ->cset_link. Returns 0 on success or -errno.
Li Zefan36553432008-07-29 22:33:19 -0700941 */
Tejun Heo69d02062013-06-12 21:04:50 -0700942static int allocate_cgrp_cset_links(int count, struct list_head *tmp_links)
Li Zefan36553432008-07-29 22:33:19 -0700943{
Tejun Heo69d02062013-06-12 21:04:50 -0700944 struct cgrp_cset_link *link;
Li Zefan36553432008-07-29 22:33:19 -0700945 int i;
Tejun Heo69d02062013-06-12 21:04:50 -0700946
947 INIT_LIST_HEAD(tmp_links);
948
Li Zefan36553432008-07-29 22:33:19 -0700949 for (i = 0; i < count; i++) {
Tejun Heof4f4be22013-06-12 21:04:51 -0700950 link = kzalloc(sizeof(*link), GFP_KERNEL);
Li Zefan36553432008-07-29 22:33:19 -0700951 if (!link) {
Tejun Heo69d02062013-06-12 21:04:50 -0700952 free_cgrp_cset_links(tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700953 return -ENOMEM;
954 }
Tejun Heo69d02062013-06-12 21:04:50 -0700955 list_add(&link->cset_link, tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700956 }
957 return 0;
958}
959
Li Zefanc12f65d2009-01-07 18:07:42 -0800960/**
961 * link_css_set - a helper function to link a css_set to a cgroup
Tejun Heo69d02062013-06-12 21:04:50 -0700962 * @tmp_links: cgrp_cset_link objects allocated by allocate_cgrp_cset_links()
Tejun Heo5abb8852013-06-12 21:04:49 -0700963 * @cset: the css_set to be linked
Li Zefanc12f65d2009-01-07 18:07:42 -0800964 * @cgrp: the destination cgroup
965 */
Tejun Heo69d02062013-06-12 21:04:50 -0700966static void link_css_set(struct list_head *tmp_links, struct css_set *cset,
967 struct cgroup *cgrp)
Li Zefanc12f65d2009-01-07 18:07:42 -0800968{
Tejun Heo69d02062013-06-12 21:04:50 -0700969 struct cgrp_cset_link *link;
Li Zefanc12f65d2009-01-07 18:07:42 -0800970
Tejun Heo69d02062013-06-12 21:04:50 -0700971 BUG_ON(list_empty(tmp_links));
Tejun Heo6803c002014-04-23 11:13:16 -0400972
973 if (cgroup_on_dfl(cgrp))
974 cset->dfl_cgrp = cgrp;
975
Tejun Heo69d02062013-06-12 21:04:50 -0700976 link = list_first_entry(tmp_links, struct cgrp_cset_link, cset_link);
977 link->cset = cset;
Paul Menage7717f7b2009-09-23 15:56:22 -0700978 link->cgrp = cgrp;
Tejun Heo842b5972014-04-25 18:28:02 -0400979
Paul Menage7717f7b2009-09-23 15:56:22 -0700980 /*
Tejun Heo389b9c12015-10-15 16:41:51 -0400981 * Always add links to the tail of the lists so that the lists are
982 * in choronological order.
Paul Menage7717f7b2009-09-23 15:56:22 -0700983 */
Tejun Heo389b9c12015-10-15 16:41:51 -0400984 list_move_tail(&link->cset_link, &cgrp->cset_links);
Tejun Heo69d02062013-06-12 21:04:50 -0700985 list_add_tail(&link->cgrp_link, &cset->cgrp_links);
Tejun Heo2ceb2312015-10-15 16:41:51 -0400986
987 if (cgroup_parent(cgrp))
988 cgroup_get(cgrp);
Li Zefanc12f65d2009-01-07 18:07:42 -0800989}
990
Tejun Heob326f9d2013-06-24 15:21:48 -0700991/**
992 * find_css_set - return a new css_set with one cgroup updated
993 * @old_cset: the baseline css_set
994 * @cgrp: the cgroup to be updated
995 *
996 * Return a new css_set that's equivalent to @old_cset, but with @cgrp
997 * substituted into the appropriate hierarchy.
Paul Menage817929e2007-10-18 23:39:36 -0700998 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700999static struct css_set *find_css_set(struct css_set *old_cset,
1000 struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -07001001{
Tejun Heob326f9d2013-06-24 15:21:48 -07001002 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT] = { };
Tejun Heo5abb8852013-06-12 21:04:49 -07001003 struct css_set *cset;
Tejun Heo69d02062013-06-12 21:04:50 -07001004 struct list_head tmp_links;
1005 struct cgrp_cset_link *link;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001006 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +08001007 unsigned long key;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001008 int ssid;
Li Zefan472b1052008-04-29 01:00:11 -07001009
Tejun Heob326f9d2013-06-24 15:21:48 -07001010 lockdep_assert_held(&cgroup_mutex);
1011
Paul Menage817929e2007-10-18 23:39:36 -07001012 /* First see if we already have a cgroup group that matches
1013 * the desired set */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001014 spin_lock_bh(&css_set_lock);
Tejun Heo5abb8852013-06-12 21:04:49 -07001015 cset = find_existing_css_set(old_cset, cgrp, template);
1016 if (cset)
1017 get_css_set(cset);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001018 spin_unlock_bh(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -07001019
Tejun Heo5abb8852013-06-12 21:04:49 -07001020 if (cset)
1021 return cset;
Paul Menage817929e2007-10-18 23:39:36 -07001022
Tejun Heof4f4be22013-06-12 21:04:51 -07001023 cset = kzalloc(sizeof(*cset), GFP_KERNEL);
Tejun Heo5abb8852013-06-12 21:04:49 -07001024 if (!cset)
Paul Menage817929e2007-10-18 23:39:36 -07001025 return NULL;
1026
Tejun Heo69d02062013-06-12 21:04:50 -07001027 /* Allocate all the cgrp_cset_link objects that we'll need */
Tejun Heo9871bf92013-06-24 15:21:47 -07001028 if (allocate_cgrp_cset_links(cgroup_root_count, &tmp_links) < 0) {
Tejun Heo5abb8852013-06-12 21:04:49 -07001029 kfree(cset);
Paul Menage817929e2007-10-18 23:39:36 -07001030 return NULL;
1031 }
1032
Tejun Heo5abb8852013-06-12 21:04:49 -07001033 atomic_set(&cset->refcount, 1);
Tejun Heo69d02062013-06-12 21:04:50 -07001034 INIT_LIST_HEAD(&cset->cgrp_links);
Tejun Heo5abb8852013-06-12 21:04:49 -07001035 INIT_LIST_HEAD(&cset->tasks);
Tejun Heoc7561122014-02-25 10:04:01 -05001036 INIT_LIST_HEAD(&cset->mg_tasks);
Tejun Heo1958d2d2014-02-25 10:04:03 -05001037 INIT_LIST_HEAD(&cset->mg_preload_node);
Tejun Heob3dc0942014-02-25 10:04:01 -05001038 INIT_LIST_HEAD(&cset->mg_node);
Tejun Heoed27b9f2015-10-15 16:41:52 -04001039 INIT_LIST_HEAD(&cset->task_iters);
Tejun Heo5abb8852013-06-12 21:04:49 -07001040 INIT_HLIST_NODE(&cset->hlist);
Paul Menage817929e2007-10-18 23:39:36 -07001041
1042 /* Copy the set of subsystem state objects generated in
1043 * find_existing_css_set() */
Tejun Heo5abb8852013-06-12 21:04:49 -07001044 memcpy(cset->subsys, template, sizeof(cset->subsys));
Paul Menage817929e2007-10-18 23:39:36 -07001045
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001046 spin_lock_bh(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -07001047 /* Add reference counts and links from the new css_set. */
Tejun Heo69d02062013-06-12 21:04:50 -07001048 list_for_each_entry(link, &old_cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07001049 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -07001050
Paul Menage7717f7b2009-09-23 15:56:22 -07001051 if (c->root == cgrp->root)
1052 c = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -07001053 link_css_set(&tmp_links, cset, c);
Paul Menage7717f7b2009-09-23 15:56:22 -07001054 }
Paul Menage817929e2007-10-18 23:39:36 -07001055
Tejun Heo69d02062013-06-12 21:04:50 -07001056 BUG_ON(!list_empty(&tmp_links));
Paul Menage817929e2007-10-18 23:39:36 -07001057
Paul Menage817929e2007-10-18 23:39:36 -07001058 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -07001059
Tejun Heo2d8f2432014-04-23 11:13:15 -04001060 /* Add @cset to the hash table */
Tejun Heo5abb8852013-06-12 21:04:49 -07001061 key = css_set_hash(cset->subsys);
1062 hash_add(css_set_table, &cset->hlist, key);
Li Zefan472b1052008-04-29 01:00:11 -07001063
Tejun Heo2d8f2432014-04-23 11:13:15 -04001064 for_each_subsys(ss, ssid)
1065 list_add_tail(&cset->e_cset_node[ssid],
1066 &cset->subsys[ssid]->cgroup->e_csets[ssid]);
1067
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001068 spin_unlock_bh(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -07001069
Tejun Heo5abb8852013-06-12 21:04:49 -07001070 return cset;
Paul Menageb4f48b62007-10-18 23:39:33 -07001071}
1072
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001073static struct cgroup_root *cgroup_root_from_kf(struct kernfs_root *kf_root)
Paul Menage7717f7b2009-09-23 15:56:22 -07001074{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001075 struct cgroup *root_cgrp = kf_root->kn->priv;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001076
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001077 return root_cgrp->root;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001078}
1079
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001080static int cgroup_init_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -05001081{
1082 int id;
1083
1084 lockdep_assert_held(&cgroup_mutex);
1085
Tejun Heo985ed672014-03-19 10:23:53 -04001086 id = idr_alloc_cyclic(&cgroup_hierarchy_idr, root, 0, 0, GFP_KERNEL);
Tejun Heof2e85d52014-02-11 11:52:49 -05001087 if (id < 0)
1088 return id;
1089
1090 root->hierarchy_id = id;
1091 return 0;
1092}
1093
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001094static void cgroup_exit_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -05001095{
1096 lockdep_assert_held(&cgroup_mutex);
1097
1098 if (root->hierarchy_id) {
1099 idr_remove(&cgroup_hierarchy_idr, root->hierarchy_id);
1100 root->hierarchy_id = 0;
1101 }
1102}
1103
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001104static void cgroup_free_root(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -05001105{
1106 if (root) {
Chen Hanxiaod0f702e2015-04-23 07:57:33 -04001107 /* hierarchy ID should already have been released */
Tejun Heof2e85d52014-02-11 11:52:49 -05001108 WARN_ON_ONCE(root->hierarchy_id);
1109
1110 idr_destroy(&root->cgroup_idr);
1111 kfree(root);
1112 }
1113}
1114
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001115static void cgroup_destroy_root(struct cgroup_root *root)
Tejun Heo59f52962014-02-11 11:52:49 -05001116{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001117 struct cgroup *cgrp = &root->cgrp;
Tejun Heof2e85d52014-02-11 11:52:49 -05001118 struct cgrp_cset_link *link, *tmp_link;
Tejun Heof2e85d52014-02-11 11:52:49 -05001119
Tejun Heo2bd59d42014-02-11 11:52:49 -05001120 mutex_lock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -05001121
Tejun Heo776f02f2014-02-12 09:29:50 -05001122 BUG_ON(atomic_read(&root->nr_cgrps));
Tejun Heod5c419b2014-05-16 13:22:48 -04001123 BUG_ON(!list_empty(&cgrp->self.children));
Tejun Heof2e85d52014-02-11 11:52:49 -05001124
Tejun Heof2e85d52014-02-11 11:52:49 -05001125 /* Rebind all subsystems back to the default hierarchy */
Tejun Heof392e512014-04-23 11:13:14 -04001126 rebind_subsystems(&cgrp_dfl_root, root->subsys_mask);
Tejun Heof2e85d52014-02-11 11:52:49 -05001127
1128 /*
1129 * Release all the links from cset_links to this hierarchy's
1130 * root cgroup
1131 */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001132 spin_lock_bh(&css_set_lock);
Tejun Heof2e85d52014-02-11 11:52:49 -05001133
1134 list_for_each_entry_safe(link, tmp_link, &cgrp->cset_links, cset_link) {
1135 list_del(&link->cset_link);
1136 list_del(&link->cgrp_link);
1137 kfree(link);
1138 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001139
1140 spin_unlock_bh(&css_set_lock);
Tejun Heof2e85d52014-02-11 11:52:49 -05001141
1142 if (!list_empty(&root->root_list)) {
1143 list_del(&root->root_list);
1144 cgroup_root_count--;
1145 }
1146
1147 cgroup_exit_root_id(root);
1148
1149 mutex_unlock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -05001150
Tejun Heo2bd59d42014-02-11 11:52:49 -05001151 kernfs_destroy_root(root->kf_root);
Tejun Heof2e85d52014-02-11 11:52:49 -05001152 cgroup_free_root(root);
1153}
1154
Tejun Heoceb6a082014-02-25 10:04:02 -05001155/* look up cgroup associated with given css_set on the specified hierarchy */
1156static struct cgroup *cset_cgroup_from_root(struct css_set *cset,
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001157 struct cgroup_root *root)
Paul Menage7717f7b2009-09-23 15:56:22 -07001158{
Paul Menage7717f7b2009-09-23 15:56:22 -07001159 struct cgroup *res = NULL;
1160
Tejun Heo96d365e2014-02-13 06:58:40 -05001161 lockdep_assert_held(&cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001162 lockdep_assert_held(&css_set_lock);
Tejun Heo96d365e2014-02-13 06:58:40 -05001163
Tejun Heo5abb8852013-06-12 21:04:49 -07001164 if (cset == &init_css_set) {
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001165 res = &root->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -07001166 } else {
Tejun Heo69d02062013-06-12 21:04:50 -07001167 struct cgrp_cset_link *link;
1168
1169 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07001170 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -07001171
Paul Menage7717f7b2009-09-23 15:56:22 -07001172 if (c->root == root) {
1173 res = c;
1174 break;
1175 }
1176 }
1177 }
Tejun Heo96d365e2014-02-13 06:58:40 -05001178
Paul Menage7717f7b2009-09-23 15:56:22 -07001179 BUG_ON(!res);
1180 return res;
1181}
1182
1183/*
Tejun Heoceb6a082014-02-25 10:04:02 -05001184 * Return the cgroup for "task" from the given hierarchy. Must be
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001185 * called with cgroup_mutex and css_set_lock held.
Tejun Heoceb6a082014-02-25 10:04:02 -05001186 */
1187static struct cgroup *task_cgroup_from_root(struct task_struct *task,
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001188 struct cgroup_root *root)
Tejun Heoceb6a082014-02-25 10:04:02 -05001189{
1190 /*
1191 * No need to lock the task - since we hold cgroup_mutex the
1192 * task can't change groups, so the only thing that can happen
1193 * is that it exits and its css is set back to init_css_set.
1194 */
1195 return cset_cgroup_from_root(task_css_set(task), root);
1196}
1197
1198/*
Paul Menageddbcc7e2007-10-18 23:39:30 -07001199 * A task must hold cgroup_mutex to modify cgroups.
1200 *
1201 * Any task can increment and decrement the count field without lock.
1202 * So in general, code holding cgroup_mutex can't rely on the count
1203 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -08001204 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -07001205 * means that no tasks are currently attached, therefore there is no
1206 * way a task attached to that cgroup can fork (the other way to
1207 * increment the count). So code holding cgroup_mutex can safely
1208 * assume that if the count is zero, it will stay zero. Similarly, if
1209 * a task holds cgroup_mutex on a cgroup with zero count, it
1210 * knows that the cgroup won't be removed, as cgroup_rmdir()
1211 * needs that mutex.
1212 *
Paul Menageddbcc7e2007-10-18 23:39:30 -07001213 * A cgroup can only be deleted if both its 'count' of using tasks
1214 * is zero, and its list of 'children' cgroups is empty. Since all
1215 * tasks in the system use _some_ cgroup, and since there is always at
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001216 * least one task in the system (init, pid == 1), therefore, root cgroup
Paul Menageddbcc7e2007-10-18 23:39:30 -07001217 * always has either children cgroups and/or using tasks. So we don't
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001218 * need a special hack to ensure that root cgroup cannot be deleted.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001219 *
1220 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -08001221 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -07001222 */
1223
Tejun Heo2bd59d42014-02-11 11:52:49 -05001224static struct kernfs_syscall_ops cgroup_kf_syscall_ops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001225static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -07001226
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05001227static char *cgroup_file_name(struct cgroup *cgrp, const struct cftype *cft,
1228 char *buf)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001229{
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07001230 struct cgroup_subsys *ss = cft->ss;
1231
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05001232 if (cft->ss && !(cft->flags & CFTYPE_NO_PREFIX) &&
1233 !(cgrp->root->flags & CGRP_ROOT_NOPREFIX))
1234 snprintf(buf, CGROUP_FILE_NAME_MAX, "%s.%s",
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07001235 cgroup_on_dfl(cgrp) ? ss->name : ss->legacy_name,
1236 cft->name);
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05001237 else
1238 strncpy(buf, cft->name, CGROUP_FILE_NAME_MAX);
1239 return buf;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001240}
1241
Tejun Heof2e85d52014-02-11 11:52:49 -05001242/**
1243 * cgroup_file_mode - deduce file mode of a control file
1244 * @cft: the control file in question
1245 *
Tejun Heo7dbdb192015-09-18 17:54:23 -04001246 * S_IRUGO for read, S_IWUSR for write.
Tejun Heof2e85d52014-02-11 11:52:49 -05001247 */
1248static umode_t cgroup_file_mode(const struct cftype *cft)
Li Zefan65dff752013-03-01 15:01:56 +08001249{
Tejun Heof2e85d52014-02-11 11:52:49 -05001250 umode_t mode = 0;
Li Zefan65dff752013-03-01 15:01:56 +08001251
Tejun Heof2e85d52014-02-11 11:52:49 -05001252 if (cft->read_u64 || cft->read_s64 || cft->seq_show)
1253 mode |= S_IRUGO;
1254
Tejun Heo7dbdb192015-09-18 17:54:23 -04001255 if (cft->write_u64 || cft->write_s64 || cft->write) {
1256 if (cft->flags & CFTYPE_WORLD_WRITABLE)
1257 mode |= S_IWUGO;
1258 else
1259 mode |= S_IWUSR;
1260 }
Tejun Heof2e85d52014-02-11 11:52:49 -05001261
1262 return mode;
Li Zefan65dff752013-03-01 15:01:56 +08001263}
1264
Tejun Heoa9746d82014-05-13 12:19:22 -04001265/**
Tejun Heo0f060de2014-11-18 02:49:50 -05001266 * cgroup_calc_child_subsys_mask - calculate child_subsys_mask
Tejun Heoaf0ba672014-07-08 18:02:57 -04001267 * @cgrp: the target cgroup
Tejun Heo0f060de2014-11-18 02:49:50 -05001268 * @subtree_control: the new subtree_control mask to consider
Tejun Heoaf0ba672014-07-08 18:02:57 -04001269 *
1270 * On the default hierarchy, a subsystem may request other subsystems to be
1271 * enabled together through its ->depends_on mask. In such cases, more
1272 * subsystems than specified in "cgroup.subtree_control" may be enabled.
1273 *
Tejun Heo0f060de2014-11-18 02:49:50 -05001274 * This function calculates which subsystems need to be enabled if
1275 * @subtree_control is to be applied to @cgrp. The returned mask is always
1276 * a superset of @subtree_control and follows the usual hierarchy rules.
Tejun Heoaf0ba672014-07-08 18:02:57 -04001277 */
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001278static unsigned long cgroup_calc_child_subsys_mask(struct cgroup *cgrp,
1279 unsigned long subtree_control)
Tejun Heo667c2492014-07-08 18:02:56 -04001280{
Tejun Heoaf0ba672014-07-08 18:02:57 -04001281 struct cgroup *parent = cgroup_parent(cgrp);
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001282 unsigned long cur_ss_mask = subtree_control;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001283 struct cgroup_subsys *ss;
1284 int ssid;
1285
1286 lockdep_assert_held(&cgroup_mutex);
1287
Tejun Heo0f060de2014-11-18 02:49:50 -05001288 if (!cgroup_on_dfl(cgrp))
1289 return cur_ss_mask;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001290
1291 while (true) {
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001292 unsigned long new_ss_mask = cur_ss_mask;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001293
Aleksa Saraia966a4e2015-06-06 10:02:15 +10001294 for_each_subsys_which(ss, ssid, &cur_ss_mask)
1295 new_ss_mask |= ss->depends_on;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001296
1297 /*
1298 * Mask out subsystems which aren't available. This can
1299 * happen only if some depended-upon subsystems were bound
1300 * to non-default hierarchies.
1301 */
1302 if (parent)
1303 new_ss_mask &= parent->child_subsys_mask;
1304 else
1305 new_ss_mask &= cgrp->root->subsys_mask;
1306
1307 if (new_ss_mask == cur_ss_mask)
1308 break;
1309 cur_ss_mask = new_ss_mask;
1310 }
1311
Tejun Heo0f060de2014-11-18 02:49:50 -05001312 return cur_ss_mask;
1313}
1314
1315/**
1316 * cgroup_refresh_child_subsys_mask - update child_subsys_mask
1317 * @cgrp: the target cgroup
1318 *
1319 * Update @cgrp->child_subsys_mask according to the current
1320 * @cgrp->subtree_control using cgroup_calc_child_subsys_mask().
1321 */
1322static void cgroup_refresh_child_subsys_mask(struct cgroup *cgrp)
1323{
1324 cgrp->child_subsys_mask =
1325 cgroup_calc_child_subsys_mask(cgrp, cgrp->subtree_control);
Tejun Heo667c2492014-07-08 18:02:56 -04001326}
1327
Tejun Heoa9746d82014-05-13 12:19:22 -04001328/**
1329 * cgroup_kn_unlock - unlocking helper for cgroup kernfs methods
1330 * @kn: the kernfs_node being serviced
1331 *
1332 * This helper undoes cgroup_kn_lock_live() and should be invoked before
1333 * the method finishes if locking succeeded. Note that once this function
1334 * returns the cgroup returned by cgroup_kn_lock_live() may become
1335 * inaccessible any time. If the caller intends to continue to access the
1336 * cgroup, it should pin it before invoking this function.
1337 */
1338static void cgroup_kn_unlock(struct kernfs_node *kn)
1339{
1340 struct cgroup *cgrp;
1341
1342 if (kernfs_type(kn) == KERNFS_DIR)
1343 cgrp = kn->priv;
1344 else
1345 cgrp = kn->parent->priv;
1346
1347 mutex_unlock(&cgroup_mutex);
Tejun Heoa9746d82014-05-13 12:19:22 -04001348
1349 kernfs_unbreak_active_protection(kn);
1350 cgroup_put(cgrp);
1351}
1352
1353/**
1354 * cgroup_kn_lock_live - locking helper for cgroup kernfs methods
1355 * @kn: the kernfs_node being serviced
1356 *
1357 * This helper is to be used by a cgroup kernfs method currently servicing
1358 * @kn. It breaks the active protection, performs cgroup locking and
1359 * verifies that the associated cgroup is alive. Returns the cgroup if
1360 * alive; otherwise, %NULL. A successful return should be undone by a
1361 * matching cgroup_kn_unlock() invocation.
1362 *
1363 * Any cgroup kernfs method implementation which requires locking the
1364 * associated cgroup should use this helper. It avoids nesting cgroup
1365 * locking under kernfs active protection and allows all kernfs operations
1366 * including self-removal.
1367 */
1368static struct cgroup *cgroup_kn_lock_live(struct kernfs_node *kn)
1369{
1370 struct cgroup *cgrp;
1371
1372 if (kernfs_type(kn) == KERNFS_DIR)
1373 cgrp = kn->priv;
1374 else
1375 cgrp = kn->parent->priv;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001376
Tejun Heo2bd59d42014-02-11 11:52:49 -05001377 /*
Tejun Heo01f64742014-05-13 12:19:23 -04001378 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoa9746d82014-05-13 12:19:22 -04001379 * active_ref. cgroup liveliness check alone provides enough
1380 * protection against removal. Ensure @cgrp stays accessible and
1381 * break the active_ref protection.
Tejun Heo2bd59d42014-02-11 11:52:49 -05001382 */
Li Zefanaa323622014-09-04 14:43:38 +08001383 if (!cgroup_tryget(cgrp))
1384 return NULL;
Tejun Heoa9746d82014-05-13 12:19:22 -04001385 kernfs_break_active_protection(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001386
Tejun Heoa9746d82014-05-13 12:19:22 -04001387 mutex_lock(&cgroup_mutex);
1388
1389 if (!cgroup_is_dead(cgrp))
1390 return cgrp;
1391
1392 cgroup_kn_unlock(kn);
1393 return NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001394}
1395
Li Zefan2739d3c2013-01-21 18:18:33 +08001396static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001397{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001398 char name[CGROUP_FILE_NAME_MAX];
Paul Menageddbcc7e2007-10-18 23:39:30 -07001399
Tejun Heo01f64742014-05-13 12:19:23 -04001400 lockdep_assert_held(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001401 kernfs_remove_by_name(cgrp->kn, cgroup_file_name(cgrp, cft, name));
Tejun Heo05ef1d72012-04-01 12:09:56 -07001402}
1403
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001404/**
Tejun Heo4df8dc92015-09-18 17:54:23 -04001405 * css_clear_dir - remove subsys files in a cgroup directory
1406 * @css: taget css
1407 * @cgrp_override: specify if target cgroup is different from css->cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001408 */
Tejun Heo4df8dc92015-09-18 17:54:23 -04001409static void css_clear_dir(struct cgroup_subsys_state *css,
1410 struct cgroup *cgrp_override)
Tejun Heo05ef1d72012-04-01 12:09:56 -07001411{
Tejun Heo4df8dc92015-09-18 17:54:23 -04001412 struct cgroup *cgrp = cgrp_override ?: css->cgroup;
1413 struct cftype *cfts;
Tejun Heo05ef1d72012-04-01 12:09:56 -07001414
Tejun Heo4df8dc92015-09-18 17:54:23 -04001415 list_for_each_entry(cfts, &css->ss->cfts, node)
1416 cgroup_addrm_files(css, cgrp, cfts, false);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001417}
1418
Tejun Heoccdca212015-09-18 17:54:23 -04001419/**
Tejun Heo4df8dc92015-09-18 17:54:23 -04001420 * css_populate_dir - create subsys files in a cgroup directory
1421 * @css: target css
1422 * @cgrp_overried: specify if target cgroup is different from css->cgroup
Tejun Heoccdca212015-09-18 17:54:23 -04001423 *
1424 * On failure, no file is added.
1425 */
Tejun Heo4df8dc92015-09-18 17:54:23 -04001426static int css_populate_dir(struct cgroup_subsys_state *css,
1427 struct cgroup *cgrp_override)
Tejun Heoccdca212015-09-18 17:54:23 -04001428{
Tejun Heo4df8dc92015-09-18 17:54:23 -04001429 struct cgroup *cgrp = cgrp_override ?: css->cgroup;
1430 struct cftype *cfts, *failed_cfts;
1431 int ret;
Tejun Heoccdca212015-09-18 17:54:23 -04001432
Tejun Heo4df8dc92015-09-18 17:54:23 -04001433 if (!css->ss) {
1434 if (cgroup_on_dfl(cgrp))
1435 cfts = cgroup_dfl_base_files;
1436 else
1437 cfts = cgroup_legacy_base_files;
Tejun Heoccdca212015-09-18 17:54:23 -04001438
Tejun Heo4df8dc92015-09-18 17:54:23 -04001439 return cgroup_addrm_files(&cgrp->self, cgrp, cfts, true);
1440 }
Tejun Heoccdca212015-09-18 17:54:23 -04001441
Tejun Heo4df8dc92015-09-18 17:54:23 -04001442 list_for_each_entry(cfts, &css->ss->cfts, node) {
1443 ret = cgroup_addrm_files(css, cgrp, cfts, true);
1444 if (ret < 0) {
1445 failed_cfts = cfts;
1446 goto err;
Tejun Heoccdca212015-09-18 17:54:23 -04001447 }
1448 }
1449 return 0;
1450err:
Tejun Heo4df8dc92015-09-18 17:54:23 -04001451 list_for_each_entry(cfts, &css->ss->cfts, node) {
1452 if (cfts == failed_cfts)
1453 break;
1454 cgroup_addrm_files(css, cgrp, cfts, false);
1455 }
Tejun Heoccdca212015-09-18 17:54:23 -04001456 return ret;
1457}
1458
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001459static int rebind_subsystems(struct cgroup_root *dst_root,
1460 unsigned long ss_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001461{
Tejun Heo1ada4832015-09-18 17:54:23 -04001462 struct cgroup *dcgrp = &dst_root->cgrp;
Tejun Heo30159ec2013-06-25 11:53:37 -07001463 struct cgroup_subsys *ss;
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001464 unsigned long tmp_ss_mask;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001465 int ssid, i, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001466
Tejun Heoace2bee2014-02-11 11:52:47 -05001467 lockdep_assert_held(&cgroup_mutex);
Ben Blumaae8aab2010-03-10 15:22:07 -08001468
Aleksa Saraia966a4e2015-06-06 10:02:15 +10001469 for_each_subsys_which(ss, ssid, &ss_mask) {
Tejun Heo7fd8c562014-04-23 11:13:16 -04001470 /* if @ss has non-root csses attached to it, can't move */
1471 if (css_next_child(NULL, cgroup_css(&ss->root->cgrp, ss)))
Tejun Heo3ed80a62014-02-08 10:36:58 -05001472 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001473
Tejun Heo5df36032014-03-19 10:23:54 -04001474 /* can't move between two non-dummy roots either */
Tejun Heo7fd8c562014-04-23 11:13:16 -04001475 if (ss->root != &cgrp_dfl_root && dst_root != &cgrp_dfl_root)
Tejun Heo5df36032014-03-19 10:23:54 -04001476 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001477 }
1478
Tejun Heo5533e012014-05-14 19:33:07 -04001479 /* skip creating root files on dfl_root for inhibited subsystems */
1480 tmp_ss_mask = ss_mask;
1481 if (dst_root == &cgrp_dfl_root)
1482 tmp_ss_mask &= ~cgrp_dfl_root_inhibit_ss_mask;
1483
Tejun Heo4df8dc92015-09-18 17:54:23 -04001484 for_each_subsys_which(ss, ssid, &tmp_ss_mask) {
1485 struct cgroup *scgrp = &ss->root->cgrp;
1486 int tssid;
1487
1488 ret = css_populate_dir(cgroup_css(scgrp, ss), dcgrp);
1489 if (!ret)
1490 continue;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001491
Tejun Heoa2dd4242014-03-19 10:23:55 -04001492 /*
1493 * Rebinding back to the default root is not allowed to
1494 * fail. Using both default and non-default roots should
1495 * be rare. Moving subsystems back and forth even more so.
1496 * Just warn about it and continue.
1497 */
Tejun Heo4df8dc92015-09-18 17:54:23 -04001498 if (dst_root == &cgrp_dfl_root) {
1499 if (cgrp_dfl_root_visible) {
1500 pr_warn("failed to create files (%d) while rebinding 0x%lx to default root\n",
1501 ret, ss_mask);
1502 pr_warn("you may retry by moving them to a different hierarchy and unbinding\n");
1503 }
1504 continue;
Tejun Heoa2dd4242014-03-19 10:23:55 -04001505 }
Tejun Heo4df8dc92015-09-18 17:54:23 -04001506
1507 for_each_subsys_which(ss, tssid, &tmp_ss_mask) {
1508 if (tssid == ssid)
1509 break;
1510 css_clear_dir(cgroup_css(scgrp, ss), dcgrp);
1511 }
1512 return ret;
Tejun Heo5df36032014-03-19 10:23:54 -04001513 }
Tejun Heo31261212013-06-28 17:07:30 -07001514
1515 /*
1516 * Nothing can fail from this point on. Remove files for the
1517 * removed subsystems and rebind each subsystem.
1518 */
Aleksa Saraia966a4e2015-06-06 10:02:15 +10001519 for_each_subsys_which(ss, ssid, &ss_mask) {
Tejun Heo1ada4832015-09-18 17:54:23 -04001520 struct cgroup_root *src_root = ss->root;
1521 struct cgroup *scgrp = &src_root->cgrp;
1522 struct cgroup_subsys_state *css = cgroup_css(scgrp, ss);
Tejun Heo2d8f2432014-04-23 11:13:15 -04001523 struct css_set *cset;
Tejun Heo30159ec2013-06-25 11:53:37 -07001524
Tejun Heo1ada4832015-09-18 17:54:23 -04001525 WARN_ON(!css || cgroup_css(dcgrp, ss));
Tejun Heo73e80ed2013-08-13 11:01:55 -04001526
Tejun Heo4df8dc92015-09-18 17:54:23 -04001527 css_clear_dir(css, NULL);
1528
Tejun Heo1ada4832015-09-18 17:54:23 -04001529 RCU_INIT_POINTER(scgrp->subsys[ssid], NULL);
1530 rcu_assign_pointer(dcgrp->subsys[ssid], css);
Tejun Heo5df36032014-03-19 10:23:54 -04001531 ss->root = dst_root;
Tejun Heo1ada4832015-09-18 17:54:23 -04001532 css->cgroup = dcgrp;
Tejun Heoa8a648c2013-06-24 15:21:47 -07001533
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001534 spin_lock_bh(&css_set_lock);
Tejun Heo2d8f2432014-04-23 11:13:15 -04001535 hash_for_each(css_set_table, i, cset, hlist)
1536 list_move_tail(&cset->e_cset_node[ss->id],
Tejun Heo1ada4832015-09-18 17:54:23 -04001537 &dcgrp->e_csets[ss->id]);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001538 spin_unlock_bh(&css_set_lock);
Tejun Heo2d8f2432014-04-23 11:13:15 -04001539
Tejun Heof392e512014-04-23 11:13:14 -04001540 src_root->subsys_mask &= ~(1 << ssid);
Tejun Heo1ada4832015-09-18 17:54:23 -04001541 scgrp->subtree_control &= ~(1 << ssid);
1542 cgroup_refresh_child_subsys_mask(scgrp);
Tejun Heof392e512014-04-23 11:13:14 -04001543
Tejun Heobd53d612014-04-23 11:13:16 -04001544 /* default hierarchy doesn't enable controllers by default */
Tejun Heof392e512014-04-23 11:13:14 -04001545 dst_root->subsys_mask |= 1 << ssid;
Tejun Heo49d1dc42015-09-18 11:56:28 -04001546 if (dst_root == &cgrp_dfl_root) {
1547 static_branch_enable(cgroup_subsys_on_dfl_key[ssid]);
1548 } else {
Tejun Heo1ada4832015-09-18 17:54:23 -04001549 dcgrp->subtree_control |= 1 << ssid;
1550 cgroup_refresh_child_subsys_mask(dcgrp);
Tejun Heo49d1dc42015-09-18 11:56:28 -04001551 static_branch_disable(cgroup_subsys_on_dfl_key[ssid]);
Tejun Heo667c2492014-07-08 18:02:56 -04001552 }
Tejun Heo73e80ed2013-08-13 11:01:55 -04001553
Tejun Heo5df36032014-03-19 10:23:54 -04001554 if (ss->bind)
1555 ss->bind(css);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001556 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001557
Tejun Heo1ada4832015-09-18 17:54:23 -04001558 kernfs_activate(dcgrp->kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001559 return 0;
1560}
1561
Tejun Heo2bd59d42014-02-11 11:52:49 -05001562static int cgroup_show_options(struct seq_file *seq,
1563 struct kernfs_root *kf_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001564{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001565 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001566 struct cgroup_subsys *ss;
Tejun Heob85d2042013-12-06 15:11:57 -05001567 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001568
Tejun Heod98817d2015-08-18 13:58:16 -07001569 if (root != &cgrp_dfl_root)
1570 for_each_subsys(ss, ssid)
1571 if (root->subsys_mask & (1 << ssid))
Kees Cook61e57c02015-09-08 14:58:22 -07001572 seq_show_option(seq, ss->legacy_name, NULL);
Tejun Heo93438622013-04-14 20:15:25 -07001573 if (root->flags & CGRP_ROOT_NOPREFIX)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001574 seq_puts(seq, ",noprefix");
Tejun Heo93438622013-04-14 20:15:25 -07001575 if (root->flags & CGRP_ROOT_XATTR)
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001576 seq_puts(seq, ",xattr");
Tejun Heo69e943b2014-02-08 10:36:58 -05001577
1578 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001579 if (strlen(root->release_agent_path))
Kees Cooka068acf2015-09-04 15:44:57 -07001580 seq_show_option(seq, "release_agent",
1581 root->release_agent_path);
Tejun Heo69e943b2014-02-08 10:36:58 -05001582 spin_unlock(&release_agent_path_lock);
1583
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001584 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags))
Daniel Lezcano97978e62010-10-27 15:33:35 -07001585 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001586 if (strlen(root->name))
Kees Cooka068acf2015-09-04 15:44:57 -07001587 seq_show_option(seq, "name", root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001588 return 0;
1589}
1590
1591struct cgroup_sb_opts {
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001592 unsigned long subsys_mask;
Tejun Heo69dfa002014-05-04 15:09:13 -04001593 unsigned int flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001594 char *release_agent;
Tejun Heo2260e7f2012-11-19 08:13:38 -08001595 bool cpuset_clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001596 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001597 /* User explicitly requested empty subsystem */
1598 bool none;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001599};
1600
Ben Blumcf5d5942010-03-10 15:22:09 -08001601static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001602{
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001603 char *token, *o = data;
1604 bool all_ss = false, one_ss = false;
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001605 unsigned long mask = -1UL;
Tejun Heo30159ec2013-06-25 11:53:37 -07001606 struct cgroup_subsys *ss;
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001607 int nr_opts = 0;
Tejun Heo30159ec2013-06-25 11:53:37 -07001608 int i;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001609
1610#ifdef CONFIG_CPUSETS
Tejun Heo69dfa002014-05-04 15:09:13 -04001611 mask = ~(1U << cpuset_cgrp_id);
Li Zefanf9ab5b52009-06-17 16:26:33 -07001612#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001613
Paul Menagec6d57f32009-09-23 15:56:19 -07001614 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001615
1616 while ((token = strsep(&o, ",")) != NULL) {
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001617 nr_opts++;
1618
Paul Menageddbcc7e2007-10-18 23:39:30 -07001619 if (!*token)
1620 return -EINVAL;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001621 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001622 /* Explicitly have no subsystems */
1623 opts->none = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001624 continue;
1625 }
1626 if (!strcmp(token, "all")) {
1627 /* Mutually exclusive option 'all' + subsystem name */
1628 if (one_ss)
1629 return -EINVAL;
1630 all_ss = true;
1631 continue;
1632 }
Tejun Heo873fe092013-04-14 20:15:26 -07001633 if (!strcmp(token, "__DEVEL__sane_behavior")) {
1634 opts->flags |= CGRP_ROOT_SANE_BEHAVIOR;
1635 continue;
1636 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001637 if (!strcmp(token, "noprefix")) {
Tejun Heo93438622013-04-14 20:15:25 -07001638 opts->flags |= CGRP_ROOT_NOPREFIX;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001639 continue;
1640 }
1641 if (!strcmp(token, "clone_children")) {
Tejun Heo2260e7f2012-11-19 08:13:38 -08001642 opts->cpuset_clone_children = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001643 continue;
1644 }
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001645 if (!strcmp(token, "xattr")) {
Tejun Heo93438622013-04-14 20:15:25 -07001646 opts->flags |= CGRP_ROOT_XATTR;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001647 continue;
1648 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001649 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001650 /* Specifying two release agents is forbidden */
1651 if (opts->release_agent)
1652 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001653 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001654 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001655 if (!opts->release_agent)
1656 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001657 continue;
1658 }
1659 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001660 const char *name = token + 5;
1661 /* Can't specify an empty name */
1662 if (!strlen(name))
1663 return -EINVAL;
1664 /* Must match [\w.-]+ */
1665 for (i = 0; i < strlen(name); i++) {
1666 char c = name[i];
1667 if (isalnum(c))
1668 continue;
1669 if ((c == '.') || (c == '-') || (c == '_'))
1670 continue;
1671 return -EINVAL;
1672 }
1673 /* Specifying two names is forbidden */
1674 if (opts->name)
1675 return -EINVAL;
1676 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001677 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001678 GFP_KERNEL);
1679 if (!opts->name)
1680 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001681
1682 continue;
1683 }
1684
Tejun Heo30159ec2013-06-25 11:53:37 -07001685 for_each_subsys(ss, i) {
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07001686 if (strcmp(token, ss->legacy_name))
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001687 continue;
Tejun Heofc5ed1e2015-09-18 11:56:28 -04001688 if (!cgroup_ssid_enabled(i))
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001689 continue;
1690
1691 /* Mutually exclusive option 'all' + subsystem name */
1692 if (all_ss)
1693 return -EINVAL;
Tejun Heo69dfa002014-05-04 15:09:13 -04001694 opts->subsys_mask |= (1 << i);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001695 one_ss = true;
1696
1697 break;
1698 }
1699 if (i == CGROUP_SUBSYS_COUNT)
1700 return -ENOENT;
1701 }
1702
Tejun Heo873fe092013-04-14 20:15:26 -07001703 if (opts->flags & CGRP_ROOT_SANE_BEHAVIOR) {
Joe Perchesed3d2612014-04-25 18:28:03 -04001704 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 -04001705 if (nr_opts != 1) {
1706 pr_err("sane_behavior: no other mount options allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001707 return -EINVAL;
1708 }
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001709 return 0;
Tejun Heo873fe092013-04-14 20:15:26 -07001710 }
1711
Li Zefanf9ab5b52009-06-17 16:26:33 -07001712 /*
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001713 * If the 'all' option was specified select all the subsystems,
1714 * otherwise if 'none', 'name=' and a subsystem name options were
1715 * not specified, let's default to 'all'
1716 */
1717 if (all_ss || (!one_ss && !opts->none && !opts->name))
1718 for_each_subsys(ss, i)
Tejun Heofc5ed1e2015-09-18 11:56:28 -04001719 if (cgroup_ssid_enabled(i))
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001720 opts->subsys_mask |= (1 << i);
1721
1722 /*
1723 * We either have to specify by name or by subsystems. (So all
1724 * empty hierarchies must have a name).
1725 */
1726 if (!opts->subsys_mask && !opts->name)
1727 return -EINVAL;
1728
1729 /*
Li Zefanf9ab5b52009-06-17 16:26:33 -07001730 * Option noprefix was introduced just for backward compatibility
1731 * with the old cpuset, so we allow noprefix only if mounting just
1732 * the cpuset subsystem.
1733 */
Tejun Heo93438622013-04-14 20:15:25 -07001734 if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask))
Li Zefanf9ab5b52009-06-17 16:26:33 -07001735 return -EINVAL;
1736
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001737 /* Can't specify "none" and some subsystems */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001738 if (opts->subsys_mask && opts->none)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001739 return -EINVAL;
1740
Paul Menageddbcc7e2007-10-18 23:39:30 -07001741 return 0;
1742}
1743
Tejun Heo2bd59d42014-02-11 11:52:49 -05001744static int cgroup_remount(struct kernfs_root *kf_root, int *flags, char *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001745{
1746 int ret = 0;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001747 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001748 struct cgroup_sb_opts opts;
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001749 unsigned long added_mask, removed_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001750
Tejun Heoaa6ec292014-07-09 10:08:08 -04001751 if (root == &cgrp_dfl_root) {
1752 pr_err("remount is not allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001753 return -EINVAL;
1754 }
1755
Paul Menageddbcc7e2007-10-18 23:39:30 -07001756 mutex_lock(&cgroup_mutex);
1757
1758 /* See what subsystems are wanted */
1759 ret = parse_cgroupfs_options(data, &opts);
1760 if (ret)
1761 goto out_unlock;
1762
Tejun Heof392e512014-04-23 11:13:14 -04001763 if (opts.subsys_mask != root->subsys_mask || opts.release_agent)
Joe Perchesed3d2612014-04-25 18:28:03 -04001764 pr_warn("option changes via remount are deprecated (pid=%d comm=%s)\n",
Jianyu Zhana2a1f9e2014-04-25 18:28:03 -04001765 task_tgid_nr(current), current->comm);
Tejun Heo8b5a5a92012-04-01 12:09:54 -07001766
Tejun Heof392e512014-04-23 11:13:14 -04001767 added_mask = opts.subsys_mask & ~root->subsys_mask;
1768 removed_mask = root->subsys_mask & ~opts.subsys_mask;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001769
Ben Blumcf5d5942010-03-10 15:22:09 -08001770 /* Don't allow flags or name to change at remount */
Tejun Heo7450e902014-07-09 10:08:07 -04001771 if ((opts.flags ^ root->flags) ||
Ben Blumcf5d5942010-03-10 15:22:09 -08001772 (opts.name && strcmp(opts.name, root->name))) {
Tejun Heo69dfa002014-05-04 15:09:13 -04001773 pr_err("option or name mismatch, new: 0x%x \"%s\", old: 0x%x \"%s\"\n",
Tejun Heo7450e902014-07-09 10:08:07 -04001774 opts.flags, opts.name ?: "", root->flags, root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001775 ret = -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001776 goto out_unlock;
1777 }
1778
Tejun Heof172e672013-06-28 17:07:30 -07001779 /* remounting is not allowed for populated hierarchies */
Tejun Heod5c419b2014-05-16 13:22:48 -04001780 if (!list_empty(&root->cgrp.self.children)) {
Tejun Heof172e672013-06-28 17:07:30 -07001781 ret = -EBUSY;
Li Zefan0670e082009-04-02 16:57:30 -07001782 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001783 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001784
Tejun Heo5df36032014-03-19 10:23:54 -04001785 ret = rebind_subsystems(root, added_mask);
Tejun Heo31261212013-06-28 17:07:30 -07001786 if (ret)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001787 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001788
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001789 rebind_subsystems(&cgrp_dfl_root, removed_mask);
Tejun Heo5df36032014-03-19 10:23:54 -04001790
Tejun Heo69e943b2014-02-08 10:36:58 -05001791 if (opts.release_agent) {
1792 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001793 strcpy(root->release_agent_path, opts.release_agent);
Tejun Heo69e943b2014-02-08 10:36:58 -05001794 spin_unlock(&release_agent_path_lock);
1795 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001796 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001797 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001798 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001799 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001800 return ret;
1801}
1802
Tejun Heoafeb0f92014-02-13 06:58:39 -05001803/*
1804 * To reduce the fork() overhead for systems that are not actually using
1805 * their cgroups capability, we don't maintain the lists running through
1806 * each css_set to its tasks until we see the list actually used - in other
1807 * words after the first mount.
1808 */
1809static bool use_task_css_set_links __read_mostly;
1810
1811static void cgroup_enable_task_cg_lists(void)
1812{
1813 struct task_struct *p, *g;
1814
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001815 spin_lock_bh(&css_set_lock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001816
1817 if (use_task_css_set_links)
1818 goto out_unlock;
1819
1820 use_task_css_set_links = true;
1821
1822 /*
1823 * We need tasklist_lock because RCU is not safe against
1824 * while_each_thread(). Besides, a forking task that has passed
1825 * cgroup_post_fork() without seeing use_task_css_set_links = 1
1826 * is not guaranteed to have its child immediately visible in the
1827 * tasklist if we walk through it with RCU.
1828 */
1829 read_lock(&tasklist_lock);
1830 do_each_thread(g, p) {
Tejun Heoafeb0f92014-02-13 06:58:39 -05001831 WARN_ON_ONCE(!list_empty(&p->cg_list) ||
1832 task_css_set(p) != &init_css_set);
1833
1834 /*
1835 * We should check if the process is exiting, otherwise
1836 * it will race with cgroup_exit() in that the list
1837 * entry won't be deleted though the process has exited.
Tejun Heof153ad12014-02-25 09:56:49 -05001838 * Do it while holding siglock so that we don't end up
1839 * racing against cgroup_exit().
Tejun Heoafeb0f92014-02-13 06:58:39 -05001840 */
Tejun Heof153ad12014-02-25 09:56:49 -05001841 spin_lock_irq(&p->sighand->siglock);
Tejun Heoeaf797a2014-02-25 10:04:03 -05001842 if (!(p->flags & PF_EXITING)) {
1843 struct css_set *cset = task_css_set(p);
1844
Tejun Heo0de09422015-10-15 16:41:49 -04001845 if (!css_set_populated(cset))
1846 css_set_update_populated(cset, true);
Tejun Heo389b9c12015-10-15 16:41:51 -04001847 list_add_tail(&p->cg_list, &cset->tasks);
Tejun Heoeaf797a2014-02-25 10:04:03 -05001848 get_css_set(cset);
1849 }
Tejun Heof153ad12014-02-25 09:56:49 -05001850 spin_unlock_irq(&p->sighand->siglock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001851 } while_each_thread(g, p);
1852 read_unlock(&tasklist_lock);
1853out_unlock:
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001854 spin_unlock_bh(&css_set_lock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001855}
Paul Menageddbcc7e2007-10-18 23:39:30 -07001856
Paul Menagecc31edc2008-10-18 20:28:04 -07001857static void init_cgroup_housekeeping(struct cgroup *cgrp)
1858{
Tejun Heo2d8f2432014-04-23 11:13:15 -04001859 struct cgroup_subsys *ss;
1860 int ssid;
1861
Tejun Heod5c419b2014-05-16 13:22:48 -04001862 INIT_LIST_HEAD(&cgrp->self.sibling);
1863 INIT_LIST_HEAD(&cgrp->self.children);
Tejun Heo6f60ead2015-09-18 17:54:23 -04001864 INIT_LIST_HEAD(&cgrp->self.files);
Tejun Heo69d02062013-06-12 21:04:50 -07001865 INIT_LIST_HEAD(&cgrp->cset_links);
Ben Blum72a8cb32009-09-23 15:56:27 -07001866 INIT_LIST_HEAD(&cgrp->pidlists);
1867 mutex_init(&cgrp->pidlist_mutex);
Tejun Heo9d800df2014-05-14 09:15:00 -04001868 cgrp->self.cgroup = cgrp;
Tejun Heo184faf32014-05-16 13:22:51 -04001869 cgrp->self.flags |= CSS_ONLINE;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001870
1871 for_each_subsys(ss, ssid)
1872 INIT_LIST_HEAD(&cgrp->e_csets[ssid]);
Tejun Heof8f22e52014-04-23 11:13:16 -04001873
1874 init_waitqueue_head(&cgrp->offline_waitq);
Zefan Li971ff492014-09-18 16:06:19 +08001875 INIT_WORK(&cgrp->release_agent_work, cgroup_release_agent);
Paul Menagecc31edc2008-10-18 20:28:04 -07001876}
Paul Menagec6d57f32009-09-23 15:56:19 -07001877
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001878static void init_cgroup_root(struct cgroup_root *root,
Tejun Heo172a2c062014-03-19 10:23:53 -04001879 struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001880{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001881 struct cgroup *cgrp = &root->cgrp;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001882
Paul Menageddbcc7e2007-10-18 23:39:30 -07001883 INIT_LIST_HEAD(&root->root_list);
Tejun Heo3c9c8252014-02-12 09:29:50 -05001884 atomic_set(&root->nr_cgrps, 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001885 cgrp->root = root;
Paul Menagecc31edc2008-10-18 20:28:04 -07001886 init_cgroup_housekeeping(cgrp);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08001887 idr_init(&root->cgroup_idr);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001888
Paul Menagec6d57f32009-09-23 15:56:19 -07001889 root->flags = opts->flags;
1890 if (opts->release_agent)
1891 strcpy(root->release_agent_path, opts->release_agent);
1892 if (opts->name)
1893 strcpy(root->name, opts->name);
Tejun Heo2260e7f2012-11-19 08:13:38 -08001894 if (opts->cpuset_clone_children)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001895 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001896}
1897
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001898static int cgroup_setup_root(struct cgroup_root *root, unsigned long ss_mask)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001899{
Tejun Heod427dfe2014-02-11 11:52:48 -05001900 LIST_HEAD(tmp_links);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001901 struct cgroup *root_cgrp = &root->cgrp;
Tejun Heod427dfe2014-02-11 11:52:48 -05001902 struct css_set *cset;
Tejun Heod427dfe2014-02-11 11:52:48 -05001903 int i, ret;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001904
Tejun Heod427dfe2014-02-11 11:52:48 -05001905 lockdep_assert_held(&cgroup_mutex);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001906
Vladimir Davydovcf780b72015-08-03 15:32:26 +03001907 ret = cgroup_idr_alloc(&root->cgroup_idr, root_cgrp, 1, 2, GFP_KERNEL);
Tejun Heod427dfe2014-02-11 11:52:48 -05001908 if (ret < 0)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001909 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001910 root_cgrp->id = ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001911
Tejun Heo2aad2a82014-09-24 13:31:50 -04001912 ret = percpu_ref_init(&root_cgrp->self.refcnt, css_release, 0,
1913 GFP_KERNEL);
Tejun Heo9d755d32014-05-14 09:15:02 -04001914 if (ret)
1915 goto out;
1916
Tejun Heod427dfe2014-02-11 11:52:48 -05001917 /*
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001918 * We're accessing css_set_count without locking css_set_lock here,
Tejun Heod427dfe2014-02-11 11:52:48 -05001919 * but that's OK - it can only be increased by someone holding
1920 * cgroup_lock, and that's us. The worst that can happen is that we
1921 * have some link structures left over
1922 */
1923 ret = allocate_cgrp_cset_links(css_set_count, &tmp_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001924 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001925 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001926
Tejun Heo985ed672014-03-19 10:23:53 -04001927 ret = cgroup_init_root_id(root);
Tejun Heod427dfe2014-02-11 11:52:48 -05001928 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001929 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001930
Tejun Heo2bd59d42014-02-11 11:52:49 -05001931 root->kf_root = kernfs_create_root(&cgroup_kf_syscall_ops,
1932 KERNFS_ROOT_CREATE_DEACTIVATED,
1933 root_cgrp);
1934 if (IS_ERR(root->kf_root)) {
1935 ret = PTR_ERR(root->kf_root);
1936 goto exit_root_id;
1937 }
1938 root_cgrp->kn = root->kf_root->kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001939
Tejun Heo4df8dc92015-09-18 17:54:23 -04001940 ret = css_populate_dir(&root_cgrp->self, NULL);
Tejun Heod427dfe2014-02-11 11:52:48 -05001941 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001942 goto destroy_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001943
Tejun Heo5df36032014-03-19 10:23:54 -04001944 ret = rebind_subsystems(root, ss_mask);
Tejun Heod427dfe2014-02-11 11:52:48 -05001945 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001946 goto destroy_root;
Al Viro0df6a632010-12-21 13:29:29 -05001947
Tejun Heod427dfe2014-02-11 11:52:48 -05001948 /*
1949 * There must be no failure case after here, since rebinding takes
1950 * care of subsystems' refcounts, which are explicitly dropped in
1951 * the failure exit path.
1952 */
1953 list_add(&root->root_list, &cgroup_roots);
1954 cgroup_root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001955
Tejun Heod427dfe2014-02-11 11:52:48 -05001956 /*
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001957 * Link the root cgroup in this hierarchy into all the css_set
Tejun Heod427dfe2014-02-11 11:52:48 -05001958 * objects.
1959 */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001960 spin_lock_bh(&css_set_lock);
Tejun Heo0de09422015-10-15 16:41:49 -04001961 hash_for_each(css_set_table, i, cset, hlist) {
Tejun Heod427dfe2014-02-11 11:52:48 -05001962 link_css_set(&tmp_links, cset, root_cgrp);
Tejun Heo0de09422015-10-15 16:41:49 -04001963 if (css_set_populated(cset))
1964 cgroup_update_populated(root_cgrp, true);
1965 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001966 spin_unlock_bh(&css_set_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001967
Tejun Heod5c419b2014-05-16 13:22:48 -04001968 BUG_ON(!list_empty(&root_cgrp->self.children));
Tejun Heo3c9c8252014-02-12 09:29:50 -05001969 BUG_ON(atomic_read(&root->nr_cgrps) != 1);
Tejun Heod427dfe2014-02-11 11:52:48 -05001970
Tejun Heo2bd59d42014-02-11 11:52:49 -05001971 kernfs_activate(root_cgrp->kn);
Tejun Heod427dfe2014-02-11 11:52:48 -05001972 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001973 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001974
Tejun Heo2bd59d42014-02-11 11:52:49 -05001975destroy_root:
1976 kernfs_destroy_root(root->kf_root);
1977 root->kf_root = NULL;
1978exit_root_id:
Tejun Heod427dfe2014-02-11 11:52:48 -05001979 cgroup_exit_root_id(root);
Tejun Heo9d755d32014-05-14 09:15:02 -04001980cancel_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04001981 percpu_ref_exit(&root_cgrp->self.refcnt);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001982out:
Tejun Heod427dfe2014-02-11 11:52:48 -05001983 free_cgrp_cset_links(&tmp_links);
1984 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001985}
1986
Al Virof7e83572010-07-26 13:23:11 +04001987static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001988 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001989 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001990{
Li Zefan3a32bd72014-06-30 11:50:59 +08001991 struct super_block *pinned_sb = NULL;
Li Zefan970317a2014-06-30 11:49:58 +08001992 struct cgroup_subsys *ss;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001993 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001994 struct cgroup_sb_opts opts;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001995 struct dentry *dentry;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001996 int ret;
Li Zefan970317a2014-06-30 11:49:58 +08001997 int i;
Li Zefanc6b3d5b2014-04-04 17:14:41 +08001998 bool new_sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001999
2000 /*
Tejun Heo56fde9e2014-02-13 06:58:38 -05002001 * The first time anyone tries to mount a cgroup, enable the list
2002 * linking each css_set to its tasks and fix up all existing tasks.
Paul Menagec6d57f32009-09-23 15:56:19 -07002003 */
Tejun Heo56fde9e2014-02-13 06:58:38 -05002004 if (!use_task_css_set_links)
2005 cgroup_enable_task_cg_lists();
Li Zefane37a06f2014-04-17 13:53:08 +08002006
Tejun Heo8e30e2b2014-02-11 11:52:48 -05002007 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002008
Paul Menageddbcc7e2007-10-18 23:39:30 -07002009 /* First find the desired set of subsystems */
Paul Menageddbcc7e2007-10-18 23:39:30 -07002010 ret = parse_cgroupfs_options(data, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002011 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05002012 goto out_unlock;
Tejun Heoa015edd2014-05-14 09:15:00 -04002013
Tejun Heo2bd59d42014-02-11 11:52:49 -05002014 /* look for a matching existing root */
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04002015 if (opts.flags & CGRP_ROOT_SANE_BEHAVIOR) {
Tejun Heoa2dd4242014-03-19 10:23:55 -04002016 cgrp_dfl_root_visible = true;
2017 root = &cgrp_dfl_root;
2018 cgroup_get(&root->cgrp);
2019 ret = 0;
2020 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002021 }
2022
Li Zefan970317a2014-06-30 11:49:58 +08002023 /*
2024 * Destruction of cgroup root is asynchronous, so subsystems may
2025 * still be dying after the previous unmount. Let's drain the
2026 * dying subsystems. We just need to ensure that the ones
2027 * unmounted previously finish dying and don't care about new ones
2028 * starting. Testing ref liveliness is good enough.
2029 */
2030 for_each_subsys(ss, i) {
2031 if (!(opts.subsys_mask & (1 << i)) ||
2032 ss->root == &cgrp_dfl_root)
2033 continue;
2034
2035 if (!percpu_ref_tryget_live(&ss->root->cgrp.self.refcnt)) {
2036 mutex_unlock(&cgroup_mutex);
2037 msleep(10);
2038 ret = restart_syscall();
2039 goto out_free;
2040 }
2041 cgroup_put(&ss->root->cgrp);
2042 }
2043
Tejun Heo985ed672014-03-19 10:23:53 -04002044 for_each_root(root) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05002045 bool name_match = false;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002046
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002047 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04002048 continue;
Paul Menagec6d57f32009-09-23 15:56:19 -07002049
Paul Menage817929e2007-10-18 23:39:36 -07002050 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05002051 * If we asked for a name then it must match. Also, if
2052 * name matches but sybsys_mask doesn't, we should fail.
2053 * Remember whether name matched.
Paul Menage817929e2007-10-18 23:39:36 -07002054 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05002055 if (opts.name) {
2056 if (strcmp(opts.name, root->name))
2057 continue;
2058 name_match = true;
2059 }
Tejun Heo31261212013-06-28 17:07:30 -07002060
2061 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05002062 * If we asked for subsystems (or explicitly for no
2063 * subsystems) then they must match.
Tejun Heo31261212013-06-28 17:07:30 -07002064 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05002065 if ((opts.subsys_mask || opts.none) &&
Tejun Heof392e512014-04-23 11:13:14 -04002066 (opts.subsys_mask != root->subsys_mask)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05002067 if (!name_match)
2068 continue;
2069 ret = -EBUSY;
2070 goto out_unlock;
2071 }
Tejun Heo873fe092013-04-14 20:15:26 -07002072
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04002073 if (root->flags ^ opts.flags)
2074 pr_warn("new mount options do not match the existing superblock, will be ignored\n");
Tejun Heo2bd59d42014-02-11 11:52:49 -05002075
Tejun Heo776f02f2014-02-12 09:29:50 -05002076 /*
Li Zefan3a32bd72014-06-30 11:50:59 +08002077 * We want to reuse @root whose lifetime is governed by its
2078 * ->cgrp. Let's check whether @root is alive and keep it
2079 * that way. As cgroup_kill_sb() can happen anytime, we
2080 * want to block it by pinning the sb so that @root doesn't
2081 * get killed before mount is complete.
2082 *
2083 * With the sb pinned, tryget_live can reliably indicate
2084 * whether @root can be reused. If it's being killed,
2085 * drain it. We can use wait_queue for the wait but this
2086 * path is super cold. Let's just sleep a bit and retry.
Tejun Heo776f02f2014-02-12 09:29:50 -05002087 */
Li Zefan3a32bd72014-06-30 11:50:59 +08002088 pinned_sb = kernfs_pin_sb(root->kf_root, NULL);
2089 if (IS_ERR(pinned_sb) ||
2090 !percpu_ref_tryget_live(&root->cgrp.self.refcnt)) {
Tejun Heo776f02f2014-02-12 09:29:50 -05002091 mutex_unlock(&cgroup_mutex);
Li Zefan3a32bd72014-06-30 11:50:59 +08002092 if (!IS_ERR_OR_NULL(pinned_sb))
2093 deactivate_super(pinned_sb);
Tejun Heo776f02f2014-02-12 09:29:50 -05002094 msleep(10);
Tejun Heoa015edd2014-05-14 09:15:00 -04002095 ret = restart_syscall();
2096 goto out_free;
Tejun Heo776f02f2014-02-12 09:29:50 -05002097 }
2098
2099 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002100 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002101 }
2102
Tejun Heo172a2c062014-03-19 10:23:53 -04002103 /*
2104 * No such thing, create a new one. name= matching without subsys
2105 * specification is allowed for already existing hierarchies but we
2106 * can't create new one without subsys specification.
2107 */
2108 if (!opts.subsys_mask && !opts.none) {
2109 ret = -EINVAL;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002110 goto out_unlock;
2111 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002112
Tejun Heo172a2c062014-03-19 10:23:53 -04002113 root = kzalloc(sizeof(*root), GFP_KERNEL);
2114 if (!root) {
2115 ret = -ENOMEM;
2116 goto out_unlock;
2117 }
2118
2119 init_cgroup_root(root, &opts);
2120
Tejun Heo35585572014-02-13 06:58:38 -05002121 ret = cgroup_setup_root(root, opts.subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -05002122 if (ret)
2123 cgroup_free_root(root);
2124
Tejun Heo8e30e2b2014-02-11 11:52:48 -05002125out_unlock:
Tejun Heoe25e2cb2011-12-12 18:12:21 -08002126 mutex_unlock(&cgroup_mutex);
Tejun Heoa015edd2014-05-14 09:15:00 -04002127out_free:
Paul Menagec6d57f32009-09-23 15:56:19 -07002128 kfree(opts.release_agent);
2129 kfree(opts.name);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05002130
Tejun Heo2bd59d42014-02-11 11:52:49 -05002131 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05002132 return ERR_PTR(ret);
Tejun Heo2bd59d42014-02-11 11:52:49 -05002133
Jianyu Zhanc9482a52014-04-26 15:40:28 +08002134 dentry = kernfs_mount(fs_type, flags, root->kf_root,
2135 CGROUP_SUPER_MAGIC, &new_sb);
Li Zefanc6b3d5b2014-04-04 17:14:41 +08002136 if (IS_ERR(dentry) || !new_sb)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002137 cgroup_put(&root->cgrp);
Li Zefan3a32bd72014-06-30 11:50:59 +08002138
2139 /*
2140 * If @pinned_sb, we're reusing an existing root and holding an
2141 * extra ref on its sb. Mount is complete. Put the extra ref.
2142 */
2143 if (pinned_sb) {
2144 WARN_ON(new_sb);
2145 deactivate_super(pinned_sb);
2146 }
2147
Tejun Heo2bd59d42014-02-11 11:52:49 -05002148 return dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002149}
2150
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09002151static void cgroup_kill_sb(struct super_block *sb)
2152{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002153 struct kernfs_root *kf_root = kernfs_root_from_sb(sb);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002154 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002155
Tejun Heo9d755d32014-05-14 09:15:02 -04002156 /*
2157 * If @root doesn't have any mounts or children, start killing it.
2158 * This prevents new mounts by disabling percpu_ref_tryget_live().
2159 * cgroup_mount() may wait for @root's release.
Li Zefan1f779fb2014-06-04 16:48:15 +08002160 *
2161 * And don't kill the default root.
Tejun Heo9d755d32014-05-14 09:15:02 -04002162 */
Johannes Weiner3c606d32015-01-22 10:19:43 -05002163 if (!list_empty(&root->cgrp.self.children) ||
Li Zefan1f779fb2014-06-04 16:48:15 +08002164 root == &cgrp_dfl_root)
Tejun Heo9d755d32014-05-14 09:15:02 -04002165 cgroup_put(&root->cgrp);
2166 else
2167 percpu_ref_kill(&root->cgrp.self.refcnt);
2168
Tejun Heo2bd59d42014-02-11 11:52:49 -05002169 kernfs_kill_sb(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002170}
2171
2172static struct file_system_type cgroup_fs_type = {
2173 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04002174 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002175 .kill_sb = cgroup_kill_sb,
2176};
2177
Li Zefana043e3b2008-02-23 15:24:09 -08002178/**
Tejun Heo913ffdb2013-07-11 16:34:48 -07002179 * task_cgroup_path - cgroup path of a task in the first cgroup hierarchy
Tejun Heo857a2be2013-04-14 20:50:08 -07002180 * @task: target task
Tejun Heo857a2be2013-04-14 20:50:08 -07002181 * @buf: the buffer to write the path into
2182 * @buflen: the length of the buffer
2183 *
Tejun Heo913ffdb2013-07-11 16:34:48 -07002184 * Determine @task's cgroup on the first (the one with the lowest non-zero
2185 * hierarchy_id) cgroup hierarchy and copy its path into @buf. This
2186 * function grabs cgroup_mutex and shouldn't be used inside locks used by
2187 * cgroup controller callbacks.
2188 *
Tejun Heoe61734c2014-02-12 09:29:50 -05002189 * Return value is the same as kernfs_path().
Tejun Heo857a2be2013-04-14 20:50:08 -07002190 */
Tejun Heoe61734c2014-02-12 09:29:50 -05002191char *task_cgroup_path(struct task_struct *task, char *buf, size_t buflen)
Tejun Heo857a2be2013-04-14 20:50:08 -07002192{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002193 struct cgroup_root *root;
Tejun Heo913ffdb2013-07-11 16:34:48 -07002194 struct cgroup *cgrp;
Tejun Heoe61734c2014-02-12 09:29:50 -05002195 int hierarchy_id = 1;
2196 char *path = NULL;
Tejun Heo857a2be2013-04-14 20:50:08 -07002197
2198 mutex_lock(&cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002199 spin_lock_bh(&css_set_lock);
Tejun Heo857a2be2013-04-14 20:50:08 -07002200
Tejun Heo913ffdb2013-07-11 16:34:48 -07002201 root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id);
2202
Tejun Heo857a2be2013-04-14 20:50:08 -07002203 if (root) {
2204 cgrp = task_cgroup_from_root(task, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05002205 path = cgroup_path(cgrp, buf, buflen);
Tejun Heo913ffdb2013-07-11 16:34:48 -07002206 } else {
2207 /* if no hierarchy exists, everyone is in "/" */
Tejun Heoe61734c2014-02-12 09:29:50 -05002208 if (strlcpy(buf, "/", buflen) < buflen)
2209 path = buf;
Tejun Heo857a2be2013-04-14 20:50:08 -07002210 }
2211
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002212 spin_unlock_bh(&css_set_lock);
Tejun Heo857a2be2013-04-14 20:50:08 -07002213 mutex_unlock(&cgroup_mutex);
Tejun Heoe61734c2014-02-12 09:29:50 -05002214 return path;
Tejun Heo857a2be2013-04-14 20:50:08 -07002215}
Tejun Heo913ffdb2013-07-11 16:34:48 -07002216EXPORT_SYMBOL_GPL(task_cgroup_path);
Tejun Heo857a2be2013-04-14 20:50:08 -07002217
Tejun Heob3dc0942014-02-25 10:04:01 -05002218/* used to track tasks and other necessary states during migration */
Tejun Heo2f7ee562011-12-12 18:12:21 -08002219struct cgroup_taskset {
Tejun Heob3dc0942014-02-25 10:04:01 -05002220 /* the src and dst cset list running through cset->mg_node */
2221 struct list_head src_csets;
2222 struct list_head dst_csets;
2223
2224 /*
2225 * Fields for cgroup_taskset_*() iteration.
2226 *
2227 * Before migration is committed, the target migration tasks are on
2228 * ->mg_tasks of the csets on ->src_csets. After, on ->mg_tasks of
2229 * the csets on ->dst_csets. ->csets point to either ->src_csets
2230 * or ->dst_csets depending on whether migration is committed.
2231 *
2232 * ->cur_csets and ->cur_task point to the current task position
2233 * during iteration.
2234 */
2235 struct list_head *csets;
2236 struct css_set *cur_cset;
2237 struct task_struct *cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002238};
2239
Tejun Heoadaae5d2015-09-11 15:00:21 -04002240#define CGROUP_TASKSET_INIT(tset) (struct cgroup_taskset){ \
2241 .src_csets = LIST_HEAD_INIT(tset.src_csets), \
2242 .dst_csets = LIST_HEAD_INIT(tset.dst_csets), \
2243 .csets = &tset.src_csets, \
2244}
2245
2246/**
2247 * cgroup_taskset_add - try to add a migration target task to a taskset
2248 * @task: target task
2249 * @tset: target taskset
2250 *
2251 * Add @task, which is a migration target, to @tset. This function becomes
2252 * noop if @task doesn't need to be migrated. @task's css_set should have
2253 * been added as a migration source and @task->cg_list will be moved from
2254 * the css_set's tasks list to mg_tasks one.
2255 */
2256static void cgroup_taskset_add(struct task_struct *task,
2257 struct cgroup_taskset *tset)
2258{
2259 struct css_set *cset;
2260
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002261 lockdep_assert_held(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002262
2263 /* @task either already exited or can't exit until the end */
2264 if (task->flags & PF_EXITING)
2265 return;
2266
2267 /* leave @task alone if post_fork() hasn't linked it yet */
2268 if (list_empty(&task->cg_list))
2269 return;
2270
2271 cset = task_css_set(task);
2272 if (!cset->mg_src_cgrp)
2273 return;
2274
2275 list_move_tail(&task->cg_list, &cset->mg_tasks);
2276 if (list_empty(&cset->mg_node))
2277 list_add_tail(&cset->mg_node, &tset->src_csets);
2278 if (list_empty(&cset->mg_dst_cset->mg_node))
2279 list_move_tail(&cset->mg_dst_cset->mg_node,
2280 &tset->dst_csets);
2281}
2282
Tejun Heo2f7ee562011-12-12 18:12:21 -08002283/**
2284 * cgroup_taskset_first - reset taskset and return the first task
2285 * @tset: taskset of interest
2286 *
2287 * @tset iteration is initialized and the first task is returned.
2288 */
2289struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
2290{
Tejun Heob3dc0942014-02-25 10:04:01 -05002291 tset->cur_cset = list_first_entry(tset->csets, struct css_set, mg_node);
2292 tset->cur_task = NULL;
2293
2294 return cgroup_taskset_next(tset);
Tejun Heo2f7ee562011-12-12 18:12:21 -08002295}
Tejun Heo2f7ee562011-12-12 18:12:21 -08002296
2297/**
2298 * cgroup_taskset_next - iterate to the next task in taskset
2299 * @tset: taskset of interest
2300 *
2301 * Return the next task in @tset. Iteration must have been initialized
2302 * with cgroup_taskset_first().
2303 */
2304struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
2305{
Tejun Heob3dc0942014-02-25 10:04:01 -05002306 struct css_set *cset = tset->cur_cset;
2307 struct task_struct *task = tset->cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002308
Tejun Heob3dc0942014-02-25 10:04:01 -05002309 while (&cset->mg_node != tset->csets) {
2310 if (!task)
2311 task = list_first_entry(&cset->mg_tasks,
2312 struct task_struct, cg_list);
2313 else
2314 task = list_next_entry(task, cg_list);
Tejun Heo2f7ee562011-12-12 18:12:21 -08002315
Tejun Heob3dc0942014-02-25 10:04:01 -05002316 if (&task->cg_list != &cset->mg_tasks) {
2317 tset->cur_cset = cset;
2318 tset->cur_task = task;
2319 return task;
2320 }
2321
2322 cset = list_next_entry(cset, mg_node);
2323 task = NULL;
2324 }
2325
2326 return NULL;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002327}
Tejun Heo2f7ee562011-12-12 18:12:21 -08002328
2329/**
Tejun Heoadaae5d2015-09-11 15:00:21 -04002330 * cgroup_taskset_migrate - migrate a taskset to a cgroup
2331 * @tset: taget taskset
2332 * @dst_cgrp: destination cgroup
2333 *
2334 * Migrate tasks in @tset to @dst_cgrp. This function fails iff one of the
2335 * ->can_attach callbacks fails and guarantees that either all or none of
2336 * the tasks in @tset are migrated. @tset is consumed regardless of
2337 * success.
2338 */
2339static int cgroup_taskset_migrate(struct cgroup_taskset *tset,
2340 struct cgroup *dst_cgrp)
2341{
2342 struct cgroup_subsys_state *css, *failed_css = NULL;
2343 struct task_struct *task, *tmp_task;
2344 struct css_set *cset, *tmp_cset;
2345 int i, ret;
2346
2347 /* methods shouldn't be called if no task is actually migrating */
2348 if (list_empty(&tset->src_csets))
2349 return 0;
2350
2351 /* check that we can legitimately attach to the cgroup */
2352 for_each_e_css(css, i, dst_cgrp) {
2353 if (css->ss->can_attach) {
2354 ret = css->ss->can_attach(css, tset);
2355 if (ret) {
2356 failed_css = css;
2357 goto out_cancel_attach;
2358 }
2359 }
2360 }
2361
2362 /*
2363 * Now that we're guaranteed success, proceed to move all tasks to
2364 * the new cgroup. There are no failure cases after here, so this
2365 * is the commit point.
2366 */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002367 spin_lock_bh(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002368 list_for_each_entry(cset, &tset->src_csets, mg_node) {
Tejun Heof6d7d042015-10-15 16:41:52 -04002369 list_for_each_entry_safe(task, tmp_task, &cset->mg_tasks, cg_list) {
2370 struct css_set *from_cset = task_css_set(task);
2371 struct css_set *to_cset = cset->mg_dst_cset;
2372
2373 get_css_set(to_cset);
2374 css_set_move_task(task, from_cset, to_cset, true);
2375 put_css_set_locked(from_cset);
2376 }
Tejun Heoadaae5d2015-09-11 15:00:21 -04002377 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002378 spin_unlock_bh(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002379
2380 /*
2381 * Migration is committed, all target tasks are now on dst_csets.
2382 * Nothing is sensitive to fork() after this point. Notify
2383 * controllers that migration is complete.
2384 */
2385 tset->csets = &tset->dst_csets;
2386
2387 for_each_e_css(css, i, dst_cgrp)
2388 if (css->ss->attach)
2389 css->ss->attach(css, tset);
2390
2391 ret = 0;
2392 goto out_release_tset;
2393
2394out_cancel_attach:
2395 for_each_e_css(css, i, dst_cgrp) {
2396 if (css == failed_css)
2397 break;
2398 if (css->ss->cancel_attach)
2399 css->ss->cancel_attach(css, tset);
2400 }
2401out_release_tset:
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002402 spin_lock_bh(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002403 list_splice_init(&tset->dst_csets, &tset->src_csets);
2404 list_for_each_entry_safe(cset, tmp_cset, &tset->src_csets, mg_node) {
2405 list_splice_tail_init(&cset->mg_tasks, &cset->tasks);
2406 list_del_init(&cset->mg_node);
2407 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002408 spin_unlock_bh(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002409 return ret;
2410}
2411
2412/**
Tejun Heo1958d2d2014-02-25 10:04:03 -05002413 * cgroup_migrate_finish - cleanup after attach
2414 * @preloaded_csets: list of preloaded css_sets
Ben Blum74a11662011-05-26 16:25:20 -07002415 *
Tejun Heo1958d2d2014-02-25 10:04:03 -05002416 * Undo cgroup_migrate_add_src() and cgroup_migrate_prepare_dst(). See
2417 * those functions for details.
Ben Blum74a11662011-05-26 16:25:20 -07002418 */
Tejun Heo1958d2d2014-02-25 10:04:03 -05002419static void cgroup_migrate_finish(struct list_head *preloaded_csets)
Ben Blum74a11662011-05-26 16:25:20 -07002420{
Tejun Heo1958d2d2014-02-25 10:04:03 -05002421 struct css_set *cset, *tmp_cset;
2422
2423 lockdep_assert_held(&cgroup_mutex);
2424
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002425 spin_lock_bh(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002426 list_for_each_entry_safe(cset, tmp_cset, preloaded_csets, mg_preload_node) {
2427 cset->mg_src_cgrp = NULL;
2428 cset->mg_dst_cset = NULL;
2429 list_del_init(&cset->mg_preload_node);
Zefan Lia25eb522014-09-19 16:51:00 +08002430 put_css_set_locked(cset);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002431 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002432 spin_unlock_bh(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002433}
2434
2435/**
2436 * cgroup_migrate_add_src - add a migration source css_set
2437 * @src_cset: the source css_set to add
2438 * @dst_cgrp: the destination cgroup
2439 * @preloaded_csets: list of preloaded css_sets
2440 *
2441 * Tasks belonging to @src_cset are about to be migrated to @dst_cgrp. Pin
2442 * @src_cset and add it to @preloaded_csets, which should later be cleaned
2443 * up by cgroup_migrate_finish().
2444 *
Tejun Heo1ed13282015-09-16 12:53:17 -04002445 * This function may be called without holding cgroup_threadgroup_rwsem
2446 * even if the target is a process. Threads may be created and destroyed
2447 * but as long as cgroup_mutex is not dropped, no new css_set can be put
2448 * into play and the preloaded css_sets are guaranteed to cover all
2449 * migrations.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002450 */
2451static void cgroup_migrate_add_src(struct css_set *src_cset,
2452 struct cgroup *dst_cgrp,
2453 struct list_head *preloaded_csets)
2454{
2455 struct cgroup *src_cgrp;
2456
2457 lockdep_assert_held(&cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002458 lockdep_assert_held(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002459
2460 src_cgrp = cset_cgroup_from_root(src_cset, dst_cgrp->root);
2461
Tejun Heo1958d2d2014-02-25 10:04:03 -05002462 if (!list_empty(&src_cset->mg_preload_node))
2463 return;
2464
2465 WARN_ON(src_cset->mg_src_cgrp);
2466 WARN_ON(!list_empty(&src_cset->mg_tasks));
2467 WARN_ON(!list_empty(&src_cset->mg_node));
2468
2469 src_cset->mg_src_cgrp = src_cgrp;
2470 get_css_set(src_cset);
2471 list_add(&src_cset->mg_preload_node, preloaded_csets);
2472}
2473
2474/**
2475 * cgroup_migrate_prepare_dst - prepare destination css_sets for migration
Tejun Heof817de92014-04-23 11:13:16 -04002476 * @dst_cgrp: the destination cgroup (may be %NULL)
Tejun Heo1958d2d2014-02-25 10:04:03 -05002477 * @preloaded_csets: list of preloaded source css_sets
2478 *
2479 * Tasks are about to be moved to @dst_cgrp and all the source css_sets
2480 * have been preloaded to @preloaded_csets. This function looks up and
Tejun Heof817de92014-04-23 11:13:16 -04002481 * pins all destination css_sets, links each to its source, and append them
2482 * to @preloaded_csets. If @dst_cgrp is %NULL, the destination of each
2483 * source css_set is assumed to be its cgroup on the default hierarchy.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002484 *
2485 * This function must be called after cgroup_migrate_add_src() has been
2486 * called on each migration source css_set. After migration is performed
2487 * using cgroup_migrate(), cgroup_migrate_finish() must be called on
2488 * @preloaded_csets.
2489 */
2490static int cgroup_migrate_prepare_dst(struct cgroup *dst_cgrp,
2491 struct list_head *preloaded_csets)
2492{
2493 LIST_HEAD(csets);
Tejun Heof817de92014-04-23 11:13:16 -04002494 struct css_set *src_cset, *tmp_cset;
Tejun Heo1958d2d2014-02-25 10:04:03 -05002495
2496 lockdep_assert_held(&cgroup_mutex);
2497
Tejun Heof8f22e52014-04-23 11:13:16 -04002498 /*
2499 * Except for the root, child_subsys_mask must be zero for a cgroup
2500 * with tasks so that child cgroups don't compete against tasks.
2501 */
Tejun Heod51f39b2014-05-16 13:22:48 -04002502 if (dst_cgrp && cgroup_on_dfl(dst_cgrp) && cgroup_parent(dst_cgrp) &&
Tejun Heof8f22e52014-04-23 11:13:16 -04002503 dst_cgrp->child_subsys_mask)
2504 return -EBUSY;
2505
Tejun Heo1958d2d2014-02-25 10:04:03 -05002506 /* look up the dst cset for each src cset and link it to src */
Tejun Heof817de92014-04-23 11:13:16 -04002507 list_for_each_entry_safe(src_cset, tmp_cset, preloaded_csets, mg_preload_node) {
Tejun Heo1958d2d2014-02-25 10:04:03 -05002508 struct css_set *dst_cset;
2509
Tejun Heof817de92014-04-23 11:13:16 -04002510 dst_cset = find_css_set(src_cset,
2511 dst_cgrp ?: src_cset->dfl_cgrp);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002512 if (!dst_cset)
2513 goto err;
2514
2515 WARN_ON_ONCE(src_cset->mg_dst_cset || dst_cset->mg_dst_cset);
Tejun Heof817de92014-04-23 11:13:16 -04002516
2517 /*
2518 * If src cset equals dst, it's noop. Drop the src.
2519 * cgroup_migrate() will skip the cset too. Note that we
2520 * can't handle src == dst as some nodes are used by both.
2521 */
2522 if (src_cset == dst_cset) {
2523 src_cset->mg_src_cgrp = NULL;
2524 list_del_init(&src_cset->mg_preload_node);
Zefan Lia25eb522014-09-19 16:51:00 +08002525 put_css_set(src_cset);
2526 put_css_set(dst_cset);
Tejun Heof817de92014-04-23 11:13:16 -04002527 continue;
2528 }
2529
Tejun Heo1958d2d2014-02-25 10:04:03 -05002530 src_cset->mg_dst_cset = dst_cset;
2531
2532 if (list_empty(&dst_cset->mg_preload_node))
2533 list_add(&dst_cset->mg_preload_node, &csets);
2534 else
Zefan Lia25eb522014-09-19 16:51:00 +08002535 put_css_set(dst_cset);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002536 }
2537
Tejun Heof817de92014-04-23 11:13:16 -04002538 list_splice_tail(&csets, preloaded_csets);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002539 return 0;
2540err:
2541 cgroup_migrate_finish(&csets);
2542 return -ENOMEM;
2543}
2544
2545/**
2546 * cgroup_migrate - migrate a process or task to a cgroup
Tejun Heo1958d2d2014-02-25 10:04:03 -05002547 * @leader: the leader of the process or the task to migrate
2548 * @threadgroup: whether @leader points to the whole process or a single task
Tejun Heo9af2ec42015-09-11 15:00:20 -04002549 * @cgrp: the destination cgroup
Tejun Heo1958d2d2014-02-25 10:04:03 -05002550 *
2551 * Migrate a process or task denoted by @leader to @cgrp. If migrating a
Tejun Heo1ed13282015-09-16 12:53:17 -04002552 * process, the caller must be holding cgroup_threadgroup_rwsem. The
Tejun Heo1958d2d2014-02-25 10:04:03 -05002553 * caller is also responsible for invoking cgroup_migrate_add_src() and
2554 * cgroup_migrate_prepare_dst() on the targets before invoking this
2555 * function and following up with cgroup_migrate_finish().
2556 *
2557 * As long as a controller's ->can_attach() doesn't fail, this function is
2558 * guaranteed to succeed. This means that, excluding ->can_attach()
2559 * failure, when migrating multiple targets, the success or failure can be
2560 * decided for all targets by invoking group_migrate_prepare_dst() before
2561 * actually starting migrating.
2562 */
Tejun Heo9af2ec42015-09-11 15:00:20 -04002563static int cgroup_migrate(struct task_struct *leader, bool threadgroup,
2564 struct cgroup *cgrp)
Ben Blum74a11662011-05-26 16:25:20 -07002565{
Tejun Heoadaae5d2015-09-11 15:00:21 -04002566 struct cgroup_taskset tset = CGROUP_TASKSET_INIT(tset);
2567 struct task_struct *task;
Ben Blum74a11662011-05-26 16:25:20 -07002568
2569 /*
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002570 * Prevent freeing of tasks while we take a snapshot. Tasks that are
2571 * already PF_EXITING could be freed from underneath us unless we
2572 * take an rcu_read_lock.
2573 */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002574 spin_lock_bh(&css_set_lock);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002575 rcu_read_lock();
Tejun Heo9db8de32014-02-13 06:58:43 -05002576 task = leader;
Ben Blum74a11662011-05-26 16:25:20 -07002577 do {
Tejun Heoadaae5d2015-09-11 15:00:21 -04002578 cgroup_taskset_add(task, &tset);
Li Zefan081aa452013-03-13 09:17:09 +08002579 if (!threadgroup)
2580 break;
Tejun Heo9db8de32014-02-13 06:58:43 -05002581 } while_each_thread(leader, task);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002582 rcu_read_unlock();
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002583 spin_unlock_bh(&css_set_lock);
Ben Blum74a11662011-05-26 16:25:20 -07002584
Tejun Heoadaae5d2015-09-11 15:00:21 -04002585 return cgroup_taskset_migrate(&tset, cgrp);
Ben Blum74a11662011-05-26 16:25:20 -07002586}
2587
Tejun Heo1958d2d2014-02-25 10:04:03 -05002588/**
2589 * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup
2590 * @dst_cgrp: the cgroup to attach to
2591 * @leader: the task or the leader of the threadgroup to be attached
2592 * @threadgroup: attach the whole threadgroup?
2593 *
Tejun Heo1ed13282015-09-16 12:53:17 -04002594 * Call holding cgroup_mutex and cgroup_threadgroup_rwsem.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002595 */
2596static int cgroup_attach_task(struct cgroup *dst_cgrp,
2597 struct task_struct *leader, bool threadgroup)
2598{
2599 LIST_HEAD(preloaded_csets);
2600 struct task_struct *task;
2601 int ret;
2602
2603 /* look up all src csets */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002604 spin_lock_bh(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002605 rcu_read_lock();
2606 task = leader;
2607 do {
2608 cgroup_migrate_add_src(task_css_set(task), dst_cgrp,
2609 &preloaded_csets);
2610 if (!threadgroup)
2611 break;
2612 } while_each_thread(leader, task);
2613 rcu_read_unlock();
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002614 spin_unlock_bh(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002615
2616 /* prepare dst csets and commit */
2617 ret = cgroup_migrate_prepare_dst(dst_cgrp, &preloaded_csets);
2618 if (!ret)
Tejun Heo9af2ec42015-09-11 15:00:20 -04002619 ret = cgroup_migrate(leader, threadgroup, dst_cgrp);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002620
2621 cgroup_migrate_finish(&preloaded_csets);
2622 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07002623}
2624
Tejun Heo187fe842015-06-18 16:54:28 -04002625static int cgroup_procs_write_permission(struct task_struct *task,
2626 struct cgroup *dst_cgrp,
2627 struct kernfs_open_file *of)
Tejun Heodedf22e2015-06-18 16:54:28 -04002628{
2629 const struct cred *cred = current_cred();
2630 const struct cred *tcred = get_task_cred(task);
2631 int ret = 0;
2632
2633 /*
2634 * even if we're attaching all tasks in the thread group, we only
2635 * need to check permissions on one of them.
2636 */
2637 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
2638 !uid_eq(cred->euid, tcred->uid) &&
2639 !uid_eq(cred->euid, tcred->suid))
2640 ret = -EACCES;
2641
Tejun Heo187fe842015-06-18 16:54:28 -04002642 if (!ret && cgroup_on_dfl(dst_cgrp)) {
2643 struct super_block *sb = of->file->f_path.dentry->d_sb;
2644 struct cgroup *cgrp;
2645 struct inode *inode;
2646
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002647 spin_lock_bh(&css_set_lock);
Tejun Heo187fe842015-06-18 16:54:28 -04002648 cgrp = task_cgroup_from_root(task, &cgrp_dfl_root);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002649 spin_unlock_bh(&css_set_lock);
Tejun Heo187fe842015-06-18 16:54:28 -04002650
2651 while (!cgroup_is_descendant(dst_cgrp, cgrp))
2652 cgrp = cgroup_parent(cgrp);
2653
2654 ret = -ENOMEM;
Tejun Heo6f60ead2015-09-18 17:54:23 -04002655 inode = kernfs_get_inode(sb, cgrp->procs_file.kn);
Tejun Heo187fe842015-06-18 16:54:28 -04002656 if (inode) {
2657 ret = inode_permission(inode, MAY_WRITE);
2658 iput(inode);
2659 }
2660 }
2661
Tejun Heodedf22e2015-06-18 16:54:28 -04002662 put_cred(tcred);
2663 return ret;
2664}
2665
Ben Blum74a11662011-05-26 16:25:20 -07002666/*
2667 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08002668 * function to attach either it or all tasks in its threadgroup. Will lock
Tejun Heo0e1d7682014-02-25 10:04:03 -05002669 * cgroup_mutex and threadgroup.
Ben Blum74a11662011-05-26 16:25:20 -07002670 */
Tejun Heoacbef752014-05-13 12:16:22 -04002671static ssize_t __cgroup_procs_write(struct kernfs_open_file *of, char *buf,
2672 size_t nbytes, loff_t off, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002673{
Paul Menagebbcb81d2007-10-18 23:39:32 -07002674 struct task_struct *tsk;
Tejun Heoe76ecae2014-05-13 12:19:23 -04002675 struct cgroup *cgrp;
Tejun Heoacbef752014-05-13 12:16:22 -04002676 pid_t pid;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002677 int ret;
2678
Tejun Heoacbef752014-05-13 12:16:22 -04002679 if (kstrtoint(strstrip(buf), 0, &pid) || pid < 0)
2680 return -EINVAL;
2681
Tejun Heoe76ecae2014-05-13 12:19:23 -04002682 cgrp = cgroup_kn_lock_live(of->kn);
2683 if (!cgrp)
Ben Blum74a11662011-05-26 16:25:20 -07002684 return -ENODEV;
2685
Tejun Heo3014dde2015-09-16 13:03:02 -04002686 percpu_down_write(&cgroup_threadgroup_rwsem);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002687 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002688 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002689 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07002690 if (!tsk) {
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09002691 ret = -ESRCH;
Tejun Heo3014dde2015-09-16 13:03:02 -04002692 goto out_unlock_rcu;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002693 }
Tejun Heodedf22e2015-06-18 16:54:28 -04002694 } else {
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002695 tsk = current;
Tejun Heodedf22e2015-06-18 16:54:28 -04002696 }
Tejun Heocd3d0952011-12-12 18:12:21 -08002697
2698 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002699 tsk = tsk->group_leader;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002700
2701 /*
Tejun Heo14a40ff2013-03-19 13:45:20 -07002702 * Workqueue threads may acquire PF_NO_SETAFFINITY and become
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002703 * trapped in a cpuset, or RT worker may be born in a cgroup
2704 * with no rt_runtime allocated. Just say no.
2705 */
Tejun Heo14a40ff2013-03-19 13:45:20 -07002706 if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) {
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002707 ret = -EINVAL;
Tejun Heo3014dde2015-09-16 13:03:02 -04002708 goto out_unlock_rcu;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002709 }
2710
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002711 get_task_struct(tsk);
2712 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08002713
Tejun Heo187fe842015-06-18 16:54:28 -04002714 ret = cgroup_procs_write_permission(tsk, cgrp, of);
Tejun Heodedf22e2015-06-18 16:54:28 -04002715 if (!ret)
2716 ret = cgroup_attach_task(cgrp, tsk, threadgroup);
Li Zefan081aa452013-03-13 09:17:09 +08002717
Tejun Heof9f9e7b2015-09-16 11:51:12 -04002718 put_task_struct(tsk);
Tejun Heo3014dde2015-09-16 13:03:02 -04002719 goto out_unlock_threadgroup;
2720
2721out_unlock_rcu:
2722 rcu_read_unlock();
2723out_unlock_threadgroup:
2724 percpu_up_write(&cgroup_threadgroup_rwsem);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002725 cgroup_kn_unlock(of->kn);
Tejun Heoacbef752014-05-13 12:16:22 -04002726 return ret ?: nbytes;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002727}
2728
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002729/**
2730 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
2731 * @from: attach to all cgroups of a given task
2732 * @tsk: the task to be attached
2733 */
2734int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
2735{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002736 struct cgroup_root *root;
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002737 int retval = 0;
2738
Tejun Heo47cfcd02013-04-07 09:29:51 -07002739 mutex_lock(&cgroup_mutex);
Tejun Heo985ed672014-03-19 10:23:53 -04002740 for_each_root(root) {
Tejun Heo96d365e2014-02-13 06:58:40 -05002741 struct cgroup *from_cgrp;
2742
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002743 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04002744 continue;
2745
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002746 spin_lock_bh(&css_set_lock);
Tejun Heo96d365e2014-02-13 06:58:40 -05002747 from_cgrp = task_cgroup_from_root(from, root);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002748 spin_unlock_bh(&css_set_lock);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002749
Li Zefan6f4b7e62013-07-31 16:18:36 +08002750 retval = cgroup_attach_task(from_cgrp, tsk, false);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002751 if (retval)
2752 break;
2753 }
Tejun Heo47cfcd02013-04-07 09:29:51 -07002754 mutex_unlock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002755
2756 return retval;
2757}
2758EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
2759
Tejun Heoacbef752014-05-13 12:16:22 -04002760static ssize_t cgroup_tasks_write(struct kernfs_open_file *of,
2761 char *buf, size_t nbytes, loff_t off)
Paul Menageaf351022008-07-25 01:47:01 -07002762{
Tejun Heoacbef752014-05-13 12:16:22 -04002763 return __cgroup_procs_write(of, buf, nbytes, off, false);
Ben Blum74a11662011-05-26 16:25:20 -07002764}
2765
Tejun Heoacbef752014-05-13 12:16:22 -04002766static ssize_t cgroup_procs_write(struct kernfs_open_file *of,
2767 char *buf, size_t nbytes, loff_t off)
Ben Blum74a11662011-05-26 16:25:20 -07002768{
Tejun Heoacbef752014-05-13 12:16:22 -04002769 return __cgroup_procs_write(of, buf, nbytes, off, true);
Paul Menageaf351022008-07-25 01:47:01 -07002770}
2771
Tejun Heo451af502014-05-13 12:16:21 -04002772static ssize_t cgroup_release_agent_write(struct kernfs_open_file *of,
2773 char *buf, size_t nbytes, loff_t off)
Paul Menagee788e062008-07-25 01:46:59 -07002774{
Tejun Heoe76ecae2014-05-13 12:19:23 -04002775 struct cgroup *cgrp;
Tejun Heo5f469902014-02-11 11:52:48 -05002776
Tejun Heoe76ecae2014-05-13 12:19:23 -04002777 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
2778
2779 cgrp = cgroup_kn_lock_live(of->kn);
2780 if (!cgrp)
Paul Menagee788e062008-07-25 01:46:59 -07002781 return -ENODEV;
Tejun Heo69e943b2014-02-08 10:36:58 -05002782 spin_lock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002783 strlcpy(cgrp->root->release_agent_path, strstrip(buf),
2784 sizeof(cgrp->root->release_agent_path));
Tejun Heo69e943b2014-02-08 10:36:58 -05002785 spin_unlock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002786 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04002787 return nbytes;
Paul Menagee788e062008-07-25 01:46:59 -07002788}
2789
Tejun Heo2da8ca82013-12-05 12:28:04 -05002790static int cgroup_release_agent_show(struct seq_file *seq, void *v)
Paul Menagee788e062008-07-25 01:46:59 -07002791{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002792 struct cgroup *cgrp = seq_css(seq)->cgroup;
Tejun Heo182446d2013-08-08 20:11:24 -04002793
Tejun Heo46cfeb02014-05-13 12:11:00 -04002794 spin_lock(&release_agent_path_lock);
Paul Menagee788e062008-07-25 01:46:59 -07002795 seq_puts(seq, cgrp->root->release_agent_path);
Tejun Heo46cfeb02014-05-13 12:11:00 -04002796 spin_unlock(&release_agent_path_lock);
Paul Menagee788e062008-07-25 01:46:59 -07002797 seq_putc(seq, '\n');
Paul Menagee788e062008-07-25 01:46:59 -07002798 return 0;
2799}
2800
Tejun Heo2da8ca82013-12-05 12:28:04 -05002801static int cgroup_sane_behavior_show(struct seq_file *seq, void *v)
Tejun Heo873fe092013-04-14 20:15:26 -07002802{
Tejun Heoc1d5d422014-07-09 10:08:08 -04002803 seq_puts(seq, "0\n");
Paul Menage81a6a5c2007-10-18 23:39:38 -07002804 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002805}
2806
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10002807static void cgroup_print_ss_mask(struct seq_file *seq, unsigned long ss_mask)
Tejun Heof8f22e52014-04-23 11:13:16 -04002808{
2809 struct cgroup_subsys *ss;
2810 bool printed = false;
2811 int ssid;
2812
Aleksa Saraia966a4e2015-06-06 10:02:15 +10002813 for_each_subsys_which(ss, ssid, &ss_mask) {
2814 if (printed)
2815 seq_putc(seq, ' ');
2816 seq_printf(seq, "%s", ss->name);
2817 printed = true;
Tejun Heof8f22e52014-04-23 11:13:16 -04002818 }
2819 if (printed)
2820 seq_putc(seq, '\n');
2821}
2822
2823/* show controllers which are currently attached to the default hierarchy */
2824static int cgroup_root_controllers_show(struct seq_file *seq, void *v)
2825{
2826 struct cgroup *cgrp = seq_css(seq)->cgroup;
2827
Tejun Heo5533e012014-05-14 19:33:07 -04002828 cgroup_print_ss_mask(seq, cgrp->root->subsys_mask &
2829 ~cgrp_dfl_root_inhibit_ss_mask);
Tejun Heof8f22e52014-04-23 11:13:16 -04002830 return 0;
2831}
2832
2833/* show controllers which are enabled from the parent */
2834static int cgroup_controllers_show(struct seq_file *seq, void *v)
2835{
2836 struct cgroup *cgrp = seq_css(seq)->cgroup;
2837
Tejun Heo667c2492014-07-08 18:02:56 -04002838 cgroup_print_ss_mask(seq, cgroup_parent(cgrp)->subtree_control);
Tejun Heof8f22e52014-04-23 11:13:16 -04002839 return 0;
2840}
2841
2842/* show controllers which are enabled for a given cgroup's children */
2843static int cgroup_subtree_control_show(struct seq_file *seq, void *v)
2844{
2845 struct cgroup *cgrp = seq_css(seq)->cgroup;
2846
Tejun Heo667c2492014-07-08 18:02:56 -04002847 cgroup_print_ss_mask(seq, cgrp->subtree_control);
Tejun Heof8f22e52014-04-23 11:13:16 -04002848 return 0;
2849}
2850
2851/**
2852 * cgroup_update_dfl_csses - update css assoc of a subtree in default hierarchy
2853 * @cgrp: root of the subtree to update csses for
2854 *
2855 * @cgrp's child_subsys_mask has changed and its subtree's (self excluded)
2856 * css associations need to be updated accordingly. This function looks up
2857 * all css_sets which are attached to the subtree, creates the matching
2858 * updated css_sets and migrates the tasks to the new ones.
2859 */
2860static int cgroup_update_dfl_csses(struct cgroup *cgrp)
2861{
2862 LIST_HEAD(preloaded_csets);
Tejun Heo10265072015-09-11 15:00:22 -04002863 struct cgroup_taskset tset = CGROUP_TASKSET_INIT(tset);
Tejun Heof8f22e52014-04-23 11:13:16 -04002864 struct cgroup_subsys_state *css;
2865 struct css_set *src_cset;
2866 int ret;
2867
Tejun Heof8f22e52014-04-23 11:13:16 -04002868 lockdep_assert_held(&cgroup_mutex);
2869
Tejun Heo3014dde2015-09-16 13:03:02 -04002870 percpu_down_write(&cgroup_threadgroup_rwsem);
2871
Tejun Heof8f22e52014-04-23 11:13:16 -04002872 /* look up all csses currently attached to @cgrp's subtree */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002873 spin_lock_bh(&css_set_lock);
Tejun Heof8f22e52014-04-23 11:13:16 -04002874 css_for_each_descendant_pre(css, cgroup_css(cgrp, NULL)) {
2875 struct cgrp_cset_link *link;
2876
2877 /* self is not affected by child_subsys_mask change */
2878 if (css->cgroup == cgrp)
2879 continue;
2880
2881 list_for_each_entry(link, &css->cgroup->cset_links, cset_link)
2882 cgroup_migrate_add_src(link->cset, cgrp,
2883 &preloaded_csets);
2884 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002885 spin_unlock_bh(&css_set_lock);
Tejun Heof8f22e52014-04-23 11:13:16 -04002886
2887 /* NULL dst indicates self on default hierarchy */
2888 ret = cgroup_migrate_prepare_dst(NULL, &preloaded_csets);
2889 if (ret)
2890 goto out_finish;
2891
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002892 spin_lock_bh(&css_set_lock);
Tejun Heof8f22e52014-04-23 11:13:16 -04002893 list_for_each_entry(src_cset, &preloaded_csets, mg_preload_node) {
Tejun Heo10265072015-09-11 15:00:22 -04002894 struct task_struct *task, *ntask;
Tejun Heof8f22e52014-04-23 11:13:16 -04002895
2896 /* src_csets precede dst_csets, break on the first dst_cset */
2897 if (!src_cset->mg_src_cgrp)
2898 break;
2899
Tejun Heo10265072015-09-11 15:00:22 -04002900 /* all tasks in src_csets need to be migrated */
2901 list_for_each_entry_safe(task, ntask, &src_cset->tasks, cg_list)
2902 cgroup_taskset_add(task, &tset);
Tejun Heof8f22e52014-04-23 11:13:16 -04002903 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002904 spin_unlock_bh(&css_set_lock);
Tejun Heof8f22e52014-04-23 11:13:16 -04002905
Tejun Heo10265072015-09-11 15:00:22 -04002906 ret = cgroup_taskset_migrate(&tset, cgrp);
Tejun Heof8f22e52014-04-23 11:13:16 -04002907out_finish:
2908 cgroup_migrate_finish(&preloaded_csets);
Tejun Heo3014dde2015-09-16 13:03:02 -04002909 percpu_up_write(&cgroup_threadgroup_rwsem);
Tejun Heof8f22e52014-04-23 11:13:16 -04002910 return ret;
2911}
2912
2913/* change the enabled child controllers for a cgroup in the default hierarchy */
Tejun Heo451af502014-05-13 12:16:21 -04002914static ssize_t cgroup_subtree_control_write(struct kernfs_open_file *of,
2915 char *buf, size_t nbytes,
2916 loff_t off)
Tejun Heof8f22e52014-04-23 11:13:16 -04002917{
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10002918 unsigned long enable = 0, disable = 0;
2919 unsigned long css_enable, css_disable, old_sc, new_sc, old_ss, new_ss;
Tejun Heoa9746d82014-05-13 12:19:22 -04002920 struct cgroup *cgrp, *child;
Tejun Heof8f22e52014-04-23 11:13:16 -04002921 struct cgroup_subsys *ss;
Tejun Heo451af502014-05-13 12:16:21 -04002922 char *tok;
Tejun Heof8f22e52014-04-23 11:13:16 -04002923 int ssid, ret;
2924
2925 /*
Tejun Heod37167a2014-05-13 12:10:59 -04002926 * Parse input - space separated list of subsystem names prefixed
2927 * with either + or -.
Tejun Heof8f22e52014-04-23 11:13:16 -04002928 */
Tejun Heo451af502014-05-13 12:16:21 -04002929 buf = strstrip(buf);
2930 while ((tok = strsep(&buf, " "))) {
Aleksa Saraia966a4e2015-06-06 10:02:15 +10002931 unsigned long tmp_ss_mask = ~cgrp_dfl_root_inhibit_ss_mask;
2932
Tejun Heod37167a2014-05-13 12:10:59 -04002933 if (tok[0] == '\0')
2934 continue;
Aleksa Saraia966a4e2015-06-06 10:02:15 +10002935 for_each_subsys_which(ss, ssid, &tmp_ss_mask) {
Tejun Heofc5ed1e2015-09-18 11:56:28 -04002936 if (!cgroup_ssid_enabled(ssid) ||
2937 strcmp(tok + 1, ss->name))
Tejun Heof8f22e52014-04-23 11:13:16 -04002938 continue;
2939
2940 if (*tok == '+') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04002941 enable |= 1 << ssid;
2942 disable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002943 } else if (*tok == '-') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04002944 disable |= 1 << ssid;
2945 enable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002946 } else {
2947 return -EINVAL;
2948 }
2949 break;
2950 }
2951 if (ssid == CGROUP_SUBSYS_COUNT)
2952 return -EINVAL;
2953 }
2954
Tejun Heoa9746d82014-05-13 12:19:22 -04002955 cgrp = cgroup_kn_lock_live(of->kn);
2956 if (!cgrp)
2957 return -ENODEV;
Tejun Heof8f22e52014-04-23 11:13:16 -04002958
2959 for_each_subsys(ss, ssid) {
2960 if (enable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04002961 if (cgrp->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002962 enable &= ~(1 << ssid);
2963 continue;
2964 }
2965
Tejun Heoc29adf22014-07-08 18:02:56 -04002966 /* unavailable or not enabled on the parent? */
2967 if (!(cgrp_dfl_root.subsys_mask & (1 << ssid)) ||
2968 (cgroup_parent(cgrp) &&
Tejun Heo667c2492014-07-08 18:02:56 -04002969 !(cgroup_parent(cgrp)->subtree_control & (1 << ssid)))) {
Tejun Heoc29adf22014-07-08 18:02:56 -04002970 ret = -ENOENT;
2971 goto out_unlock;
2972 }
Tejun Heof8f22e52014-04-23 11:13:16 -04002973 } else if (disable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04002974 if (!(cgrp->subtree_control & (1 << ssid))) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002975 disable &= ~(1 << ssid);
2976 continue;
2977 }
2978
2979 /* a child has it enabled? */
2980 cgroup_for_each_live_child(child, cgrp) {
Tejun Heo667c2492014-07-08 18:02:56 -04002981 if (child->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002982 ret = -EBUSY;
Tejun Heoddab2b62014-05-13 12:19:22 -04002983 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04002984 }
2985 }
2986 }
2987 }
2988
2989 if (!enable && !disable) {
2990 ret = 0;
Tejun Heoddab2b62014-05-13 12:19:22 -04002991 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04002992 }
2993
2994 /*
Tejun Heo667c2492014-07-08 18:02:56 -04002995 * Except for the root, subtree_control must be zero for a cgroup
Tejun Heof8f22e52014-04-23 11:13:16 -04002996 * with tasks so that child cgroups don't compete against tasks.
2997 */
Tejun Heod51f39b2014-05-16 13:22:48 -04002998 if (enable && cgroup_parent(cgrp) && !list_empty(&cgrp->cset_links)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002999 ret = -EBUSY;
3000 goto out_unlock;
3001 }
3002
3003 /*
Tejun Heof63070d2014-07-08 18:02:57 -04003004 * Update subsys masks and calculate what needs to be done. More
3005 * subsystems than specified may need to be enabled or disabled
3006 * depending on subsystem dependencies.
3007 */
Tejun Heo755bf5e2014-11-18 02:49:50 -05003008 old_sc = cgrp->subtree_control;
3009 old_ss = cgrp->child_subsys_mask;
3010 new_sc = (old_sc | enable) & ~disable;
3011 new_ss = cgroup_calc_child_subsys_mask(cgrp, new_sc);
Tejun Heoc29adf22014-07-08 18:02:56 -04003012
Tejun Heo755bf5e2014-11-18 02:49:50 -05003013 css_enable = ~old_ss & new_ss;
3014 css_disable = old_ss & ~new_ss;
Tejun Heof63070d2014-07-08 18:02:57 -04003015 enable |= css_enable;
3016 disable |= css_disable;
3017
Tejun Heodb6e3052014-11-18 02:49:51 -05003018 /*
3019 * Because css offlining is asynchronous, userland might try to
3020 * re-enable the same controller while the previous instance is
3021 * still around. In such cases, wait till it's gone using
3022 * offline_waitq.
3023 */
Aleksa Saraia966a4e2015-06-06 10:02:15 +10003024 for_each_subsys_which(ss, ssid, &css_enable) {
Tejun Heodb6e3052014-11-18 02:49:51 -05003025 cgroup_for_each_live_child(child, cgrp) {
3026 DEFINE_WAIT(wait);
3027
3028 if (!cgroup_css(child, ss))
3029 continue;
3030
3031 cgroup_get(child);
3032 prepare_to_wait(&child->offline_waitq, &wait,
3033 TASK_UNINTERRUPTIBLE);
3034 cgroup_kn_unlock(of->kn);
3035 schedule();
3036 finish_wait(&child->offline_waitq, &wait);
3037 cgroup_put(child);
3038
3039 return restart_syscall();
3040 }
3041 }
3042
Tejun Heo755bf5e2014-11-18 02:49:50 -05003043 cgrp->subtree_control = new_sc;
3044 cgrp->child_subsys_mask = new_ss;
3045
Tejun Heof63070d2014-07-08 18:02:57 -04003046 /*
3047 * Create new csses or make the existing ones visible. A css is
3048 * created invisible if it's being implicitly enabled through
3049 * dependency. An invisible css is made visible when the userland
3050 * explicitly enables it.
Tejun Heof8f22e52014-04-23 11:13:16 -04003051 */
3052 for_each_subsys(ss, ssid) {
3053 if (!(enable & (1 << ssid)))
3054 continue;
3055
3056 cgroup_for_each_live_child(child, cgrp) {
Tejun Heof63070d2014-07-08 18:02:57 -04003057 if (css_enable & (1 << ssid))
3058 ret = create_css(child, ss,
3059 cgrp->subtree_control & (1 << ssid));
3060 else
Tejun Heo4df8dc92015-09-18 17:54:23 -04003061 ret = css_populate_dir(cgroup_css(child, ss),
3062 NULL);
Tejun Heof8f22e52014-04-23 11:13:16 -04003063 if (ret)
3064 goto err_undo_css;
3065 }
3066 }
3067
Tejun Heoc29adf22014-07-08 18:02:56 -04003068 /*
3069 * At this point, cgroup_e_css() results reflect the new csses
3070 * making the following cgroup_update_dfl_csses() properly update
3071 * css associations of all tasks in the subtree.
3072 */
Tejun Heof8f22e52014-04-23 11:13:16 -04003073 ret = cgroup_update_dfl_csses(cgrp);
3074 if (ret)
3075 goto err_undo_css;
3076
Tejun Heof63070d2014-07-08 18:02:57 -04003077 /*
3078 * All tasks are migrated out of disabled csses. Kill or hide
3079 * them. A css is hidden when the userland requests it to be
Tejun Heob4536f0ca2014-07-08 18:02:57 -04003080 * disabled while other subsystems are still depending on it. The
3081 * css must not actively control resources and be in the vanilla
3082 * state if it's made visible again later. Controllers which may
3083 * be depended upon should provide ->css_reset() for this purpose.
Tejun Heof63070d2014-07-08 18:02:57 -04003084 */
Tejun Heof8f22e52014-04-23 11:13:16 -04003085 for_each_subsys(ss, ssid) {
3086 if (!(disable & (1 << ssid)))
3087 continue;
3088
Tejun Heof63070d2014-07-08 18:02:57 -04003089 cgroup_for_each_live_child(child, cgrp) {
Tejun Heob4536f0ca2014-07-08 18:02:57 -04003090 struct cgroup_subsys_state *css = cgroup_css(child, ss);
3091
3092 if (css_disable & (1 << ssid)) {
3093 kill_css(css);
3094 } else {
Tejun Heo4df8dc92015-09-18 17:54:23 -04003095 css_clear_dir(css, NULL);
Tejun Heob4536f0ca2014-07-08 18:02:57 -04003096 if (ss->css_reset)
3097 ss->css_reset(css);
3098 }
Tejun Heof63070d2014-07-08 18:02:57 -04003099 }
Tejun Heof8f22e52014-04-23 11:13:16 -04003100 }
3101
Tejun Heo56c807b2014-11-18 02:49:51 -05003102 /*
3103 * The effective csses of all the descendants (excluding @cgrp) may
3104 * have changed. Subsystems can optionally subscribe to this event
3105 * by implementing ->css_e_css_changed() which is invoked if any of
3106 * the effective csses seen from the css's cgroup may have changed.
3107 */
3108 for_each_subsys(ss, ssid) {
3109 struct cgroup_subsys_state *this_css = cgroup_css(cgrp, ss);
3110 struct cgroup_subsys_state *css;
3111
3112 if (!ss->css_e_css_changed || !this_css)
3113 continue;
3114
3115 css_for_each_descendant_pre(css, this_css)
3116 if (css != this_css)
3117 ss->css_e_css_changed(css);
3118 }
3119
Tejun Heof8f22e52014-04-23 11:13:16 -04003120 kernfs_activate(cgrp->kn);
3121 ret = 0;
3122out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04003123 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04003124 return ret ?: nbytes;
Tejun Heof8f22e52014-04-23 11:13:16 -04003125
3126err_undo_css:
Tejun Heo755bf5e2014-11-18 02:49:50 -05003127 cgrp->subtree_control = old_sc;
3128 cgrp->child_subsys_mask = old_ss;
Tejun Heof8f22e52014-04-23 11:13:16 -04003129
3130 for_each_subsys(ss, ssid) {
3131 if (!(enable & (1 << ssid)))
3132 continue;
3133
3134 cgroup_for_each_live_child(child, cgrp) {
3135 struct cgroup_subsys_state *css = cgroup_css(child, ss);
Tejun Heof63070d2014-07-08 18:02:57 -04003136
3137 if (!css)
3138 continue;
3139
3140 if (css_enable & (1 << ssid))
Tejun Heof8f22e52014-04-23 11:13:16 -04003141 kill_css(css);
Tejun Heof63070d2014-07-08 18:02:57 -04003142 else
Tejun Heo4df8dc92015-09-18 17:54:23 -04003143 css_clear_dir(css, NULL);
Tejun Heof8f22e52014-04-23 11:13:16 -04003144 }
3145 }
3146 goto out_unlock;
3147}
3148
Tejun Heo4a07c222015-09-18 17:54:22 -04003149static int cgroup_events_show(struct seq_file *seq, void *v)
Tejun Heo842b5972014-04-25 18:28:02 -04003150{
Tejun Heo4a07c222015-09-18 17:54:22 -04003151 seq_printf(seq, "populated %d\n",
Tejun Heo27bd4db2015-10-15 16:41:50 -04003152 cgroup_is_populated(seq_css(seq)->cgroup));
Tejun Heo842b5972014-04-25 18:28:02 -04003153 return 0;
3154}
3155
Tejun Heo2bd59d42014-02-11 11:52:49 -05003156static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf,
3157 size_t nbytes, loff_t off)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003158{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003159 struct cgroup *cgrp = of->kn->parent->priv;
3160 struct cftype *cft = of->kn->priv;
3161 struct cgroup_subsys_state *css;
Tejun Heoa742c592013-12-05 12:28:03 -05003162 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003163
Tejun Heob4168642014-05-13 12:16:21 -04003164 if (cft->write)
3165 return cft->write(of, buf, nbytes, off);
3166
Tejun Heo2bd59d42014-02-11 11:52:49 -05003167 /*
3168 * kernfs guarantees that a file isn't deleted with operations in
3169 * flight, which means that the matching css is and stays alive and
3170 * doesn't need to be pinned. The RCU locking is not necessary
3171 * either. It's just for the convenience of using cgroup_css().
3172 */
3173 rcu_read_lock();
3174 css = cgroup_css(cgrp, cft->ss);
3175 rcu_read_unlock();
Paul Menageddbcc7e2007-10-18 23:39:30 -07003176
Tejun Heo451af502014-05-13 12:16:21 -04003177 if (cft->write_u64) {
Tejun Heoa742c592013-12-05 12:28:03 -05003178 unsigned long long v;
3179 ret = kstrtoull(buf, 0, &v);
3180 if (!ret)
3181 ret = cft->write_u64(css, cft, v);
3182 } else if (cft->write_s64) {
3183 long long v;
3184 ret = kstrtoll(buf, 0, &v);
3185 if (!ret)
3186 ret = cft->write_s64(css, cft, v);
Tejun Heoa742c592013-12-05 12:28:03 -05003187 } else {
3188 ret = -EINVAL;
3189 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05003190
Tejun Heoa742c592013-12-05 12:28:03 -05003191 return ret ?: nbytes;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003192}
3193
Tejun Heo6612f052013-12-05 12:28:04 -05003194static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos)
Paul Menage91796562008-04-29 01:00:01 -07003195{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003196 return seq_cft(seq)->seq_start(seq, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05003197}
3198
3199static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos)
3200{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003201 return seq_cft(seq)->seq_next(seq, v, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05003202}
3203
3204static void cgroup_seqfile_stop(struct seq_file *seq, void *v)
3205{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003206 seq_cft(seq)->seq_stop(seq, v);
Paul Menage91796562008-04-29 01:00:01 -07003207}
3208
3209static int cgroup_seqfile_show(struct seq_file *m, void *arg)
3210{
Tejun Heo7da11272013-12-05 12:28:04 -05003211 struct cftype *cft = seq_cft(m);
3212 struct cgroup_subsys_state *css = seq_css(m);
Li Zefane0798ce2013-07-31 17:36:25 +08003213
Tejun Heo2da8ca82013-12-05 12:28:04 -05003214 if (cft->seq_show)
3215 return cft->seq_show(m, arg);
Paul Menage91796562008-04-29 01:00:01 -07003216
Tejun Heo896f5192013-12-05 12:28:04 -05003217 if (cft->read_u64)
3218 seq_printf(m, "%llu\n", cft->read_u64(css, cft));
3219 else if (cft->read_s64)
3220 seq_printf(m, "%lld\n", cft->read_s64(css, cft));
3221 else
3222 return -EINVAL;
3223 return 0;
Paul Menage91796562008-04-29 01:00:01 -07003224}
3225
Tejun Heo2bd59d42014-02-11 11:52:49 -05003226static struct kernfs_ops cgroup_kf_single_ops = {
3227 .atomic_write_len = PAGE_SIZE,
3228 .write = cgroup_file_write,
3229 .seq_show = cgroup_seqfile_show,
Paul Menage91796562008-04-29 01:00:01 -07003230};
3231
Tejun Heo2bd59d42014-02-11 11:52:49 -05003232static struct kernfs_ops cgroup_kf_ops = {
3233 .atomic_write_len = PAGE_SIZE,
3234 .write = cgroup_file_write,
3235 .seq_start = cgroup_seqfile_start,
3236 .seq_next = cgroup_seqfile_next,
3237 .seq_stop = cgroup_seqfile_stop,
3238 .seq_show = cgroup_seqfile_show,
3239};
Paul Menageddbcc7e2007-10-18 23:39:30 -07003240
3241/*
3242 * cgroup_rename - Only allow simple rename of directories in place.
3243 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05003244static int cgroup_rename(struct kernfs_node *kn, struct kernfs_node *new_parent,
3245 const char *new_name_str)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003246{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003247 struct cgroup *cgrp = kn->priv;
Li Zefan65dff752013-03-01 15:01:56 +08003248 int ret;
Li Zefan65dff752013-03-01 15:01:56 +08003249
Tejun Heo2bd59d42014-02-11 11:52:49 -05003250 if (kernfs_type(kn) != KERNFS_DIR)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003251 return -ENOTDIR;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003252 if (kn->parent != new_parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003253 return -EIO;
Li Zefan65dff752013-03-01 15:01:56 +08003254
Tejun Heo6db8e852013-06-14 11:18:22 -07003255 /*
3256 * This isn't a proper migration and its usefulness is very
Tejun Heoaa6ec292014-07-09 10:08:08 -04003257 * limited. Disallow on the default hierarchy.
Tejun Heo6db8e852013-06-14 11:18:22 -07003258 */
Tejun Heoaa6ec292014-07-09 10:08:08 -04003259 if (cgroup_on_dfl(cgrp))
Tejun Heo6db8e852013-06-14 11:18:22 -07003260 return -EPERM;
3261
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003262 /*
Tejun Heo8353da12014-05-13 12:19:23 -04003263 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003264 * active_ref. kernfs_rename() doesn't require active_ref
Tejun Heo8353da12014-05-13 12:19:23 -04003265 * protection. Break them before grabbing cgroup_mutex.
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003266 */
3267 kernfs_break_active_protection(new_parent);
3268 kernfs_break_active_protection(kn);
Li Zefan65dff752013-03-01 15:01:56 +08003269
Tejun Heo2bd59d42014-02-11 11:52:49 -05003270 mutex_lock(&cgroup_mutex);
Li Zefan65dff752013-03-01 15:01:56 +08003271
Tejun Heo2bd59d42014-02-11 11:52:49 -05003272 ret = kernfs_rename(kn, new_parent, new_name_str);
Li Zefan65dff752013-03-01 15:01:56 +08003273
Tejun Heo2bd59d42014-02-11 11:52:49 -05003274 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003275
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003276 kernfs_unbreak_active_protection(kn);
3277 kernfs_unbreak_active_protection(new_parent);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003278 return ret;
Li Zefan099fca32009-04-02 16:57:29 -07003279}
3280
Tejun Heo49957f82014-04-07 16:44:47 -04003281/* set uid and gid of cgroup dirs and files to that of the creator */
3282static int cgroup_kn_set_ugid(struct kernfs_node *kn)
3283{
3284 struct iattr iattr = { .ia_valid = ATTR_UID | ATTR_GID,
3285 .ia_uid = current_fsuid(),
3286 .ia_gid = current_fsgid(), };
3287
3288 if (uid_eq(iattr.ia_uid, GLOBAL_ROOT_UID) &&
3289 gid_eq(iattr.ia_gid, GLOBAL_ROOT_GID))
3290 return 0;
3291
3292 return kernfs_setattr(kn, &iattr);
3293}
3294
Tejun Heo4df8dc92015-09-18 17:54:23 -04003295static int cgroup_add_file(struct cgroup_subsys_state *css, struct cgroup *cgrp,
3296 struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003297{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05003298 char name[CGROUP_FILE_NAME_MAX];
Tejun Heo2bd59d42014-02-11 11:52:49 -05003299 struct kernfs_node *kn;
3300 struct lock_class_key *key = NULL;
Tejun Heo49957f82014-04-07 16:44:47 -04003301 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003302
Tejun Heo2bd59d42014-02-11 11:52:49 -05003303#ifdef CONFIG_DEBUG_LOCK_ALLOC
3304 key = &cft->lockdep_key;
3305#endif
3306 kn = __kernfs_create_file(cgrp->kn, cgroup_file_name(cgrp, cft, name),
3307 cgroup_file_mode(cft), 0, cft->kf_ops, cft,
Tejun Heodfeb07502015-02-13 14:36:31 -08003308 NULL, key);
Tejun Heo49957f82014-04-07 16:44:47 -04003309 if (IS_ERR(kn))
3310 return PTR_ERR(kn);
3311
3312 ret = cgroup_kn_set_ugid(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04003313 if (ret) {
Tejun Heo49957f82014-04-07 16:44:47 -04003314 kernfs_remove(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04003315 return ret;
3316 }
3317
Tejun Heo6f60ead2015-09-18 17:54:23 -04003318 if (cft->file_offset) {
3319 struct cgroup_file *cfile = (void *)css + cft->file_offset;
3320
3321 kernfs_get(kn);
3322 cfile->kn = kn;
3323 list_add(&cfile->node, &css->files);
3324 }
3325
Tejun Heof8f22e52014-04-23 11:13:16 -04003326 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003327}
3328
Tejun Heob1f28d32013-06-28 16:24:10 -07003329/**
3330 * cgroup_addrm_files - add or remove files to a cgroup directory
Tejun Heo4df8dc92015-09-18 17:54:23 -04003331 * @css: the target css
3332 * @cgrp: the target cgroup (usually css->cgroup)
Tejun Heob1f28d32013-06-28 16:24:10 -07003333 * @cfts: array of cftypes to be added
3334 * @is_add: whether to add or remove
3335 *
3336 * Depending on @is_add, add or remove files defined by @cfts on @cgrp.
Tejun Heo6732ed82015-09-18 17:54:23 -04003337 * For removals, this function never fails.
Tejun Heob1f28d32013-06-28 16:24:10 -07003338 */
Tejun Heo4df8dc92015-09-18 17:54:23 -04003339static int cgroup_addrm_files(struct cgroup_subsys_state *css,
3340 struct cgroup *cgrp, struct cftype cfts[],
Tejun Heo2bb566c2013-08-08 20:11:23 -04003341 bool is_add)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003342{
Tejun Heo6732ed82015-09-18 17:54:23 -04003343 struct cftype *cft, *cft_end = NULL;
Tejun Heob1f28d32013-06-28 16:24:10 -07003344 int ret;
3345
Tejun Heo01f64742014-05-13 12:19:23 -04003346 lockdep_assert_held(&cgroup_mutex);
Tejun Heodb0416b2012-04-01 12:09:55 -07003347
Tejun Heo6732ed82015-09-18 17:54:23 -04003348restart:
3349 for (cft = cfts; cft != cft_end && cft->name[0] != '\0'; cft++) {
Gao fengf33fddc2012-12-06 14:38:57 +08003350 /* does cft->flags tell us to skip this file on @cgrp? */
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003351 if ((cft->flags & __CFTYPE_ONLY_ON_DFL) && !cgroup_on_dfl(cgrp))
Tejun Heo8cbbf2c2014-03-19 10:23:55 -04003352 continue;
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003353 if ((cft->flags & __CFTYPE_NOT_ON_DFL) && cgroup_on_dfl(cgrp))
Tejun Heo873fe092013-04-14 20:15:26 -07003354 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04003355 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08003356 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04003357 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08003358 continue;
3359
Li Zefan2739d3c2013-01-21 18:18:33 +08003360 if (is_add) {
Tejun Heo4df8dc92015-09-18 17:54:23 -04003361 ret = cgroup_add_file(css, cgrp, cft);
Tejun Heob1f28d32013-06-28 16:24:10 -07003362 if (ret) {
Joe Perchesed3d2612014-04-25 18:28:03 -04003363 pr_warn("%s: failed to add %s, err=%d\n",
3364 __func__, cft->name, ret);
Tejun Heo6732ed82015-09-18 17:54:23 -04003365 cft_end = cft;
3366 is_add = false;
3367 goto restart;
Tejun Heob1f28d32013-06-28 16:24:10 -07003368 }
Li Zefan2739d3c2013-01-21 18:18:33 +08003369 } else {
3370 cgroup_rm_file(cgrp, cft);
Tejun Heodb0416b2012-04-01 12:09:55 -07003371 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003372 }
Tejun Heob1f28d32013-06-28 16:24:10 -07003373 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003374}
3375
Tejun Heo21a2d342014-02-12 09:29:49 -05003376static int cgroup_apply_cftypes(struct cftype *cfts, bool is_add)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003377{
3378 LIST_HEAD(pending);
Tejun Heo2bb566c2013-08-08 20:11:23 -04003379 struct cgroup_subsys *ss = cfts[0].ss;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04003380 struct cgroup *root = &ss->root->cgrp;
Tejun Heo492eb212013-08-08 20:11:25 -04003381 struct cgroup_subsys_state *css;
Tejun Heo9ccece82013-06-28 16:24:11 -07003382 int ret = 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003383
Tejun Heo01f64742014-05-13 12:19:23 -04003384 lockdep_assert_held(&cgroup_mutex);
Li Zefane8c82d22013-06-18 18:48:37 +08003385
Li Zefane8c82d22013-06-18 18:48:37 +08003386 /* add/rm files for all cgroups created before */
Tejun Heoca8bdca2013-08-26 18:40:56 -04003387 css_for_each_descendant_pre(css, cgroup_css(root, ss)) {
Tejun Heo492eb212013-08-08 20:11:25 -04003388 struct cgroup *cgrp = css->cgroup;
3389
Li Zefane8c82d22013-06-18 18:48:37 +08003390 if (cgroup_is_dead(cgrp))
3391 continue;
3392
Tejun Heo4df8dc92015-09-18 17:54:23 -04003393 ret = cgroup_addrm_files(css, cgrp, cfts, is_add);
Tejun Heo9ccece82013-06-28 16:24:11 -07003394 if (ret)
3395 break;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003396 }
Tejun Heo21a2d342014-02-12 09:29:49 -05003397
3398 if (is_add && !ret)
3399 kernfs_activate(root->kn);
Tejun Heo9ccece82013-06-28 16:24:11 -07003400 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003401}
3402
Tejun Heo2da440a2014-02-11 11:52:48 -05003403static void cgroup_exit_cftypes(struct cftype *cfts)
3404{
3405 struct cftype *cft;
3406
Tejun Heo2bd59d42014-02-11 11:52:49 -05003407 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3408 /* free copy for custom atomic_write_len, see init_cftypes() */
3409 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE)
3410 kfree(cft->kf_ops);
3411 cft->kf_ops = NULL;
Tejun Heo2da440a2014-02-11 11:52:48 -05003412 cft->ss = NULL;
Tejun Heoa8ddc822014-07-15 11:05:10 -04003413
3414 /* revert flags set by cgroup core while adding @cfts */
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003415 cft->flags &= ~(__CFTYPE_ONLY_ON_DFL | __CFTYPE_NOT_ON_DFL);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003416 }
Tejun Heo2da440a2014-02-11 11:52:48 -05003417}
3418
Tejun Heo2bd59d42014-02-11 11:52:49 -05003419static int cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo2da440a2014-02-11 11:52:48 -05003420{
3421 struct cftype *cft;
3422
Tejun Heo2bd59d42014-02-11 11:52:49 -05003423 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3424 struct kernfs_ops *kf_ops;
3425
Tejun Heo0adb0702014-02-12 09:29:48 -05003426 WARN_ON(cft->ss || cft->kf_ops);
3427
Tejun Heo2bd59d42014-02-11 11:52:49 -05003428 if (cft->seq_start)
3429 kf_ops = &cgroup_kf_ops;
3430 else
3431 kf_ops = &cgroup_kf_single_ops;
3432
3433 /*
3434 * Ugh... if @cft wants a custom max_write_len, we need to
3435 * make a copy of kf_ops to set its atomic_write_len.
3436 */
3437 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) {
3438 kf_ops = kmemdup(kf_ops, sizeof(*kf_ops), GFP_KERNEL);
3439 if (!kf_ops) {
3440 cgroup_exit_cftypes(cfts);
3441 return -ENOMEM;
3442 }
3443 kf_ops->atomic_write_len = cft->max_write_len;
3444 }
3445
3446 cft->kf_ops = kf_ops;
Tejun Heo2da440a2014-02-11 11:52:48 -05003447 cft->ss = ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003448 }
3449
3450 return 0;
Tejun Heo2da440a2014-02-11 11:52:48 -05003451}
3452
Tejun Heo21a2d342014-02-12 09:29:49 -05003453static int cgroup_rm_cftypes_locked(struct cftype *cfts)
3454{
Tejun Heo01f64742014-05-13 12:19:23 -04003455 lockdep_assert_held(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003456
3457 if (!cfts || !cfts[0].ss)
3458 return -ENOENT;
3459
3460 list_del(&cfts->node);
3461 cgroup_apply_cftypes(cfts, false);
3462 cgroup_exit_cftypes(cfts);
3463 return 0;
3464}
3465
Tejun Heo8e3f6542012-04-01 12:09:55 -07003466/**
Tejun Heo80b13582014-02-12 09:29:48 -05003467 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
3468 * @cfts: zero-length name terminated array of cftypes
3469 *
3470 * Unregister @cfts. Files described by @cfts are removed from all
3471 * existing cgroups and all future cgroups won't have them either. This
3472 * function can be called anytime whether @cfts' subsys is attached or not.
3473 *
3474 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
3475 * registered.
3476 */
3477int cgroup_rm_cftypes(struct cftype *cfts)
3478{
Tejun Heo21a2d342014-02-12 09:29:49 -05003479 int ret;
Tejun Heo80b13582014-02-12 09:29:48 -05003480
Tejun Heo01f64742014-05-13 12:19:23 -04003481 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003482 ret = cgroup_rm_cftypes_locked(cfts);
Tejun Heo01f64742014-05-13 12:19:23 -04003483 mutex_unlock(&cgroup_mutex);
Tejun Heo8e3f6542012-04-01 12:09:55 -07003484 return ret;
3485}
3486
3487/**
3488 * cgroup_add_cftypes - add an array of cftypes to a subsystem
3489 * @ss: target cgroup subsystem
3490 * @cfts: zero-length name terminated array of cftypes
3491 *
3492 * Register @cfts to @ss. Files described by @cfts are created for all
3493 * existing cgroups to which @ss is attached and all future cgroups will
3494 * have them too. This function can be called anytime whether @ss is
3495 * attached or not.
3496 *
3497 * Returns 0 on successful registration, -errno on failure. Note that this
3498 * function currently returns 0 as long as @cfts registration is successful
3499 * even if some file creation attempts on existing cgroups fail.
3500 */
Tejun Heo2cf669a2014-07-15 11:05:09 -04003501static int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003502{
Tejun Heo9ccece82013-06-28 16:24:11 -07003503 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003504
Tejun Heofc5ed1e2015-09-18 11:56:28 -04003505 if (!cgroup_ssid_enabled(ss->id))
Li Zefanc731ae12014-06-05 17:16:30 +08003506 return 0;
3507
Li Zefandc5736e2014-02-17 10:41:50 +08003508 if (!cfts || cfts[0].name[0] == '\0')
3509 return 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003510
Tejun Heo2bd59d42014-02-11 11:52:49 -05003511 ret = cgroup_init_cftypes(ss, cfts);
Tejun Heo9ccece82013-06-28 16:24:11 -07003512 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05003513 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003514
Tejun Heo01f64742014-05-13 12:19:23 -04003515 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003516
Tejun Heo0adb0702014-02-12 09:29:48 -05003517 list_add_tail(&cfts->node, &ss->cfts);
Tejun Heo21a2d342014-02-12 09:29:49 -05003518 ret = cgroup_apply_cftypes(cfts, true);
Tejun Heo9ccece82013-06-28 16:24:11 -07003519 if (ret)
Tejun Heo21a2d342014-02-12 09:29:49 -05003520 cgroup_rm_cftypes_locked(cfts);
3521
Tejun Heo01f64742014-05-13 12:19:23 -04003522 mutex_unlock(&cgroup_mutex);
Tejun Heo9ccece82013-06-28 16:24:11 -07003523 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003524}
Tejun Heo79578622012-04-01 12:09:56 -07003525
3526/**
Tejun Heoa8ddc822014-07-15 11:05:10 -04003527 * cgroup_add_dfl_cftypes - add an array of cftypes for default hierarchy
3528 * @ss: target cgroup subsystem
3529 * @cfts: zero-length name terminated array of cftypes
3530 *
3531 * Similar to cgroup_add_cftypes() but the added files are only used for
3532 * the default hierarchy.
3533 */
3534int cgroup_add_dfl_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
3535{
3536 struct cftype *cft;
3537
3538 for (cft = cfts; cft && cft->name[0] != '\0'; cft++)
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003539 cft->flags |= __CFTYPE_ONLY_ON_DFL;
Tejun Heoa8ddc822014-07-15 11:05:10 -04003540 return cgroup_add_cftypes(ss, cfts);
3541}
3542
3543/**
3544 * cgroup_add_legacy_cftypes - add an array of cftypes for legacy hierarchies
3545 * @ss: target cgroup subsystem
3546 * @cfts: zero-length name terminated array of cftypes
3547 *
3548 * Similar to cgroup_add_cftypes() but the added files are only used for
3549 * the legacy hierarchies.
3550 */
Tejun Heo2cf669a2014-07-15 11:05:09 -04003551int cgroup_add_legacy_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
3552{
Tejun Heoa8ddc822014-07-15 11:05:10 -04003553 struct cftype *cft;
3554
Vivek Goyalfa8137b2014-08-08 11:44:03 -04003555 /*
3556 * If legacy_flies_on_dfl, we want to show the legacy files on the
3557 * dfl hierarchy but iff the target subsystem hasn't been updated
3558 * for the dfl hierarchy yet.
3559 */
3560 if (!cgroup_legacy_files_on_dfl ||
3561 ss->dfl_cftypes != ss->legacy_cftypes) {
3562 for (cft = cfts; cft && cft->name[0] != '\0'; cft++)
3563 cft->flags |= __CFTYPE_NOT_ON_DFL;
3564 }
3565
Tejun Heo2cf669a2014-07-15 11:05:09 -04003566 return cgroup_add_cftypes(ss, cfts);
3567}
3568
Li Zefana043e3b2008-02-23 15:24:09 -08003569/**
3570 * cgroup_task_count - count the number of tasks in a cgroup.
3571 * @cgrp: the cgroup in question
3572 *
3573 * Return the number of tasks in the cgroup.
3574 */
Tejun Heo07bc3562014-02-13 06:58:39 -05003575static int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003576{
3577 int count = 0;
Tejun Heo69d02062013-06-12 21:04:50 -07003578 struct cgrp_cset_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003579
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003580 spin_lock_bh(&css_set_lock);
Tejun Heo69d02062013-06-12 21:04:50 -07003581 list_for_each_entry(link, &cgrp->cset_links, cset_link)
3582 count += atomic_read(&link->cset->refcount);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003583 spin_unlock_bh(&css_set_lock);
Paul Menagebbcb81d2007-10-18 23:39:32 -07003584 return count;
3585}
3586
Tejun Heo574bd9f2012-11-09 09:12:29 -08003587/**
Tejun Heo492eb212013-08-08 20:11:25 -04003588 * css_next_child - find the next child of a given css
Tejun Heoc2931b72014-05-16 13:22:51 -04003589 * @pos: the current position (%NULL to initiate traversal)
3590 * @parent: css whose children to walk
Tejun Heo53fa5262013-05-24 10:55:38 +09003591 *
Tejun Heoc2931b72014-05-16 13:22:51 -04003592 * This function returns the next child of @parent and should be called
Tejun Heo87fb54f2013-12-06 15:11:55 -05003593 * under either cgroup_mutex or RCU read lock. The only requirement is
Tejun Heoc2931b72014-05-16 13:22:51 -04003594 * that @parent and @pos are accessible. The next sibling is guaranteed to
3595 * be returned regardless of their states.
3596 *
3597 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3598 * css which finished ->css_online() is guaranteed to be visible in the
3599 * future iterations and will stay visible until the last reference is put.
3600 * A css which hasn't finished ->css_online() or already finished
3601 * ->css_offline() may show up during traversal. It's each subsystem's
3602 * responsibility to synchronize against on/offlining.
Tejun Heo53fa5262013-05-24 10:55:38 +09003603 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003604struct cgroup_subsys_state *css_next_child(struct cgroup_subsys_state *pos,
3605 struct cgroup_subsys_state *parent)
Tejun Heo53fa5262013-05-24 10:55:38 +09003606{
Tejun Heoc2931b72014-05-16 13:22:51 -04003607 struct cgroup_subsys_state *next;
Tejun Heo53fa5262013-05-24 10:55:38 +09003608
Tejun Heo8353da12014-05-13 12:19:23 -04003609 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo53fa5262013-05-24 10:55:38 +09003610
3611 /*
Tejun Heode3f0342014-05-16 13:22:49 -04003612 * @pos could already have been unlinked from the sibling list.
3613 * Once a cgroup is removed, its ->sibling.next is no longer
3614 * updated when its next sibling changes. CSS_RELEASED is set when
3615 * @pos is taken off list, at which time its next pointer is valid,
3616 * and, as releases are serialized, the one pointed to by the next
3617 * pointer is guaranteed to not have started release yet. This
3618 * implies that if we observe !CSS_RELEASED on @pos in this RCU
3619 * critical section, the one pointed to by its next pointer is
3620 * guaranteed to not have finished its RCU grace period even if we
3621 * have dropped rcu_read_lock() inbetween iterations.
Tejun Heo3b287a52013-08-08 20:11:24 -04003622 *
Tejun Heode3f0342014-05-16 13:22:49 -04003623 * If @pos has CSS_RELEASED set, its next pointer can't be
3624 * dereferenced; however, as each css is given a monotonically
3625 * increasing unique serial number and always appended to the
3626 * sibling list, the next one can be found by walking the parent's
3627 * children until the first css with higher serial number than
3628 * @pos's. While this path can be slower, it happens iff iteration
3629 * races against release and the race window is very small.
Tejun Heo53fa5262013-05-24 10:55:38 +09003630 */
Tejun Heo3b287a52013-08-08 20:11:24 -04003631 if (!pos) {
Tejun Heoc2931b72014-05-16 13:22:51 -04003632 next = list_entry_rcu(parent->children.next, struct cgroup_subsys_state, sibling);
3633 } else if (likely(!(pos->flags & CSS_RELEASED))) {
3634 next = list_entry_rcu(pos->sibling.next, struct cgroup_subsys_state, sibling);
Tejun Heo3b287a52013-08-08 20:11:24 -04003635 } else {
Tejun Heoc2931b72014-05-16 13:22:51 -04003636 list_for_each_entry_rcu(next, &parent->children, sibling)
Tejun Heo3b287a52013-08-08 20:11:24 -04003637 if (next->serial_nr > pos->serial_nr)
3638 break;
Tejun Heo53fa5262013-05-24 10:55:38 +09003639 }
3640
Tejun Heo3b281af2014-04-23 11:13:15 -04003641 /*
3642 * @next, if not pointing to the head, can be dereferenced and is
Tejun Heoc2931b72014-05-16 13:22:51 -04003643 * the next sibling.
Tejun Heo3b281af2014-04-23 11:13:15 -04003644 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003645 if (&next->sibling != &parent->children)
3646 return next;
Tejun Heo3b281af2014-04-23 11:13:15 -04003647 return NULL;
Tejun Heo53fa5262013-05-24 10:55:38 +09003648}
Tejun Heo53fa5262013-05-24 10:55:38 +09003649
3650/**
Tejun Heo492eb212013-08-08 20:11:25 -04003651 * css_next_descendant_pre - find the next descendant for pre-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003652 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003653 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003654 *
Tejun Heo492eb212013-08-08 20:11:25 -04003655 * To be used by css_for_each_descendant_pre(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003656 * to visit for pre-order traversal of @root's descendants. @root is
3657 * included in the iteration and the first node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003658 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003659 * While this function requires cgroup_mutex or RCU read locking, it
3660 * doesn't require the whole traversal to be contained in a single critical
3661 * section. This function will return the correct next descendant as long
3662 * as both @pos and @root are accessible and @pos is a descendant of @root.
Tejun Heoc2931b72014-05-16 13:22:51 -04003663 *
3664 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3665 * css which finished ->css_online() is guaranteed to be visible in the
3666 * future iterations and will stay visible until the last reference is put.
3667 * A css which hasn't finished ->css_online() or already finished
3668 * ->css_offline() may show up during traversal. It's each subsystem's
3669 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003670 */
Tejun Heo492eb212013-08-08 20:11:25 -04003671struct cgroup_subsys_state *
3672css_next_descendant_pre(struct cgroup_subsys_state *pos,
3673 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003674{
Tejun Heo492eb212013-08-08 20:11:25 -04003675 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003676
Tejun Heo8353da12014-05-13 12:19:23 -04003677 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003678
Tejun Heobd8815a2013-08-08 20:11:27 -04003679 /* if first iteration, visit @root */
Tejun Heo7805d002013-05-24 10:50:24 +09003680 if (!pos)
Tejun Heobd8815a2013-08-08 20:11:27 -04003681 return root;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003682
3683 /* visit the first child if exists */
Tejun Heo492eb212013-08-08 20:11:25 -04003684 next = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003685 if (next)
3686 return next;
3687
3688 /* no child, visit my or the closest ancestor's next sibling */
Tejun Heo492eb212013-08-08 20:11:25 -04003689 while (pos != root) {
Tejun Heo5c9d5352014-05-16 13:22:48 -04003690 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003691 if (next)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003692 return next;
Tejun Heo5c9d5352014-05-16 13:22:48 -04003693 pos = pos->parent;
Tejun Heo7805d002013-05-24 10:50:24 +09003694 }
Tejun Heo574bd9f2012-11-09 09:12:29 -08003695
3696 return NULL;
3697}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003698
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003699/**
Tejun Heo492eb212013-08-08 20:11:25 -04003700 * css_rightmost_descendant - return the rightmost descendant of a css
3701 * @pos: css of interest
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003702 *
Tejun Heo492eb212013-08-08 20:11:25 -04003703 * Return the rightmost descendant of @pos. If there's no descendant, @pos
3704 * is returned. This can be used during pre-order traversal to skip
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003705 * subtree of @pos.
Tejun Heo75501a62013-05-24 10:55:38 +09003706 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003707 * While this function requires cgroup_mutex or RCU read locking, it
3708 * doesn't require the whole traversal to be contained in a single critical
3709 * section. This function will return the correct rightmost descendant as
3710 * long as @pos is accessible.
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003711 */
Tejun Heo492eb212013-08-08 20:11:25 -04003712struct cgroup_subsys_state *
3713css_rightmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003714{
Tejun Heo492eb212013-08-08 20:11:25 -04003715 struct cgroup_subsys_state *last, *tmp;
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003716
Tejun Heo8353da12014-05-13 12:19:23 -04003717 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003718
3719 do {
3720 last = pos;
3721 /* ->prev isn't RCU safe, walk ->next till the end */
3722 pos = NULL;
Tejun Heo492eb212013-08-08 20:11:25 -04003723 css_for_each_child(tmp, last)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003724 pos = tmp;
3725 } while (pos);
3726
3727 return last;
3728}
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003729
Tejun Heo492eb212013-08-08 20:11:25 -04003730static struct cgroup_subsys_state *
3731css_leftmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003732{
Tejun Heo492eb212013-08-08 20:11:25 -04003733 struct cgroup_subsys_state *last;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003734
3735 do {
3736 last = pos;
Tejun Heo492eb212013-08-08 20:11:25 -04003737 pos = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003738 } while (pos);
3739
3740 return last;
3741}
3742
3743/**
Tejun Heo492eb212013-08-08 20:11:25 -04003744 * css_next_descendant_post - find the next descendant for post-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003745 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003746 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003747 *
Tejun Heo492eb212013-08-08 20:11:25 -04003748 * To be used by css_for_each_descendant_post(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003749 * to visit for post-order traversal of @root's descendants. @root is
3750 * included in the iteration and the last node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003751 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003752 * While this function requires cgroup_mutex or RCU read locking, it
3753 * doesn't require the whole traversal to be contained in a single critical
3754 * section. This function will return the correct next descendant as long
3755 * as both @pos and @cgroup are accessible and @pos is a descendant of
3756 * @cgroup.
Tejun Heoc2931b72014-05-16 13:22:51 -04003757 *
3758 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3759 * css which finished ->css_online() is guaranteed to be visible in the
3760 * future iterations and will stay visible until the last reference is put.
3761 * A css which hasn't finished ->css_online() or already finished
3762 * ->css_offline() may show up during traversal. It's each subsystem's
3763 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003764 */
Tejun Heo492eb212013-08-08 20:11:25 -04003765struct cgroup_subsys_state *
3766css_next_descendant_post(struct cgroup_subsys_state *pos,
3767 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003768{
Tejun Heo492eb212013-08-08 20:11:25 -04003769 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003770
Tejun Heo8353da12014-05-13 12:19:23 -04003771 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003772
Tejun Heo58b79a92013-09-06 15:31:08 -04003773 /* if first iteration, visit leftmost descendant which may be @root */
3774 if (!pos)
3775 return css_leftmost_descendant(root);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003776
Tejun Heobd8815a2013-08-08 20:11:27 -04003777 /* if we visited @root, we're done */
3778 if (pos == root)
3779 return NULL;
3780
Tejun Heo574bd9f2012-11-09 09:12:29 -08003781 /* if there's an unvisited sibling, visit its leftmost descendant */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003782 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003783 if (next)
Tejun Heo492eb212013-08-08 20:11:25 -04003784 return css_leftmost_descendant(next);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003785
3786 /* no sibling left, visit parent */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003787 return pos->parent;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003788}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003789
Tejun Heof3d46502014-05-16 13:22:52 -04003790/**
3791 * css_has_online_children - does a css have online children
3792 * @css: the target css
3793 *
3794 * Returns %true if @css has any online children; otherwise, %false. This
3795 * function can be called from any context but the caller is responsible
3796 * for synchronizing against on/offlining as necessary.
3797 */
3798bool css_has_online_children(struct cgroup_subsys_state *css)
Tejun Heocbc125e2014-05-14 09:15:01 -04003799{
Tejun Heof3d46502014-05-16 13:22:52 -04003800 struct cgroup_subsys_state *child;
3801 bool ret = false;
Tejun Heocbc125e2014-05-14 09:15:01 -04003802
3803 rcu_read_lock();
Tejun Heof3d46502014-05-16 13:22:52 -04003804 css_for_each_child(child, css) {
Li Zefan99bae5f2014-06-12 14:31:31 +08003805 if (child->flags & CSS_ONLINE) {
Tejun Heof3d46502014-05-16 13:22:52 -04003806 ret = true;
3807 break;
Tejun Heocbc125e2014-05-14 09:15:01 -04003808 }
3809 }
3810 rcu_read_unlock();
Tejun Heof3d46502014-05-16 13:22:52 -04003811 return ret;
Cliff Wickman31a7df02008-02-07 00:14:42 -08003812}
3813
Tejun Heo0942eee2013-08-08 20:11:26 -04003814/**
Tejun Heoecb9d532015-10-15 16:41:52 -04003815 * css_task_iter_advance_css_set - advance a task itererator to the next css_set
Tejun Heo0942eee2013-08-08 20:11:26 -04003816 * @it: the iterator to advance
3817 *
3818 * Advance @it to the next css_set to walk.
Tejun Heod5158762013-08-08 20:11:26 -04003819 */
Tejun Heoecb9d532015-10-15 16:41:52 -04003820static void css_task_iter_advance_css_set(struct css_task_iter *it)
Tejun Heod5158762013-08-08 20:11:26 -04003821{
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003822 struct list_head *l = it->cset_pos;
Tejun Heod5158762013-08-08 20:11:26 -04003823 struct cgrp_cset_link *link;
3824 struct css_set *cset;
3825
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003826 lockdep_assert_held(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04003827
Tejun Heod5158762013-08-08 20:11:26 -04003828 /* Advance to the next non-empty css_set */
3829 do {
3830 l = l->next;
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003831 if (l == it->cset_head) {
3832 it->cset_pos = NULL;
Tejun Heoecb9d532015-10-15 16:41:52 -04003833 it->task_pos = NULL;
Tejun Heod5158762013-08-08 20:11:26 -04003834 return;
3835 }
Tejun Heo3ebb2b62014-04-23 11:13:15 -04003836
3837 if (it->ss) {
3838 cset = container_of(l, struct css_set,
3839 e_cset_node[it->ss->id]);
3840 } else {
3841 link = list_entry(l, struct cgrp_cset_link, cset_link);
3842 cset = link->cset;
3843 }
Tejun Heo0de09422015-10-15 16:41:49 -04003844 } while (!css_set_populated(cset));
Tejun Heoc7561122014-02-25 10:04:01 -05003845
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003846 it->cset_pos = l;
Tejun Heoc7561122014-02-25 10:04:01 -05003847
3848 if (!list_empty(&cset->tasks))
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003849 it->task_pos = cset->tasks.next;
Tejun Heoc7561122014-02-25 10:04:01 -05003850 else
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003851 it->task_pos = cset->mg_tasks.next;
3852
3853 it->tasks_head = &cset->tasks;
3854 it->mg_tasks_head = &cset->mg_tasks;
Tejun Heoed27b9f2015-10-15 16:41:52 -04003855
3856 /*
3857 * We don't keep css_sets locked across iteration steps and thus
3858 * need to take steps to ensure that iteration can be resumed after
3859 * the lock is re-acquired. Iteration is performed at two levels -
3860 * css_sets and tasks in them.
3861 *
3862 * Once created, a css_set never leaves its cgroup lists, so a
3863 * pinned css_set is guaranteed to stay put and we can resume
3864 * iteration afterwards.
3865 *
3866 * Tasks may leave @cset across iteration steps. This is resolved
3867 * by registering each iterator with the css_set currently being
3868 * walked and making css_set_move_task() advance iterators whose
3869 * next task is leaving.
3870 */
3871 if (it->cur_cset) {
3872 list_del(&it->iters_node);
3873 put_css_set_locked(it->cur_cset);
3874 }
3875 get_css_set(cset);
3876 it->cur_cset = cset;
3877 list_add(&it->iters_node, &cset->task_iters);
Tejun Heod5158762013-08-08 20:11:26 -04003878}
3879
Tejun Heoecb9d532015-10-15 16:41:52 -04003880static void css_task_iter_advance(struct css_task_iter *it)
3881{
3882 struct list_head *l = it->task_pos;
3883
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003884 lockdep_assert_held(&css_set_lock);
Tejun Heoecb9d532015-10-15 16:41:52 -04003885 WARN_ON_ONCE(!l);
3886
3887 /*
3888 * Advance iterator to find next entry. cset->tasks is consumed
3889 * first and then ->mg_tasks. After ->mg_tasks, we move onto the
3890 * next cset.
3891 */
3892 l = l->next;
3893
3894 if (l == it->tasks_head)
3895 l = it->mg_tasks_head->next;
3896
3897 if (l == it->mg_tasks_head)
3898 css_task_iter_advance_css_set(it);
3899 else
3900 it->task_pos = l;
3901}
3902
Tejun Heo0942eee2013-08-08 20:11:26 -04003903/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003904 * css_task_iter_start - initiate task iteration
3905 * @css: the css to walk tasks of
Tejun Heo0942eee2013-08-08 20:11:26 -04003906 * @it: the task iterator to use
3907 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003908 * Initiate iteration through the tasks of @css. The caller can call
3909 * css_task_iter_next() to walk through the tasks until the function
3910 * returns NULL. On completion of iteration, css_task_iter_end() must be
3911 * called.
Tejun Heo0942eee2013-08-08 20:11:26 -04003912 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003913void css_task_iter_start(struct cgroup_subsys_state *css,
3914 struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07003915{
Tejun Heo56fde9e2014-02-13 06:58:38 -05003916 /* no one should try to iterate before mounting cgroups */
3917 WARN_ON_ONCE(!use_task_css_set_links);
Paul Menage817929e2007-10-18 23:39:36 -07003918
Tejun Heoed27b9f2015-10-15 16:41:52 -04003919 memset(it, 0, sizeof(*it));
3920
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003921 spin_lock_bh(&css_set_lock);
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003922
Tejun Heo3ebb2b62014-04-23 11:13:15 -04003923 it->ss = css->ss;
3924
3925 if (it->ss)
3926 it->cset_pos = &css->cgroup->e_csets[css->ss->id];
3927 else
3928 it->cset_pos = &css->cgroup->cset_links;
3929
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003930 it->cset_head = it->cset_pos;
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003931
Tejun Heoecb9d532015-10-15 16:41:52 -04003932 css_task_iter_advance_css_set(it);
Tejun Heoed27b9f2015-10-15 16:41:52 -04003933
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003934 spin_unlock_bh(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07003935}
Paul Menage817929e2007-10-18 23:39:36 -07003936
Tejun Heo0942eee2013-08-08 20:11:26 -04003937/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003938 * css_task_iter_next - return the next task for the iterator
Tejun Heo0942eee2013-08-08 20:11:26 -04003939 * @it: the task iterator being iterated
3940 *
3941 * The "next" function for task iteration. @it should have been
Tejun Heo72ec7022013-08-08 20:11:26 -04003942 * initialized via css_task_iter_start(). Returns NULL when the iteration
3943 * reaches the end.
Tejun Heo0942eee2013-08-08 20:11:26 -04003944 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003945struct task_struct *css_task_iter_next(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07003946{
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003947 if (!it->cset_pos)
Paul Menage817929e2007-10-18 23:39:36 -07003948 return NULL;
Tejun Heoc7561122014-02-25 10:04:01 -05003949
Tejun Heoed27b9f2015-10-15 16:41:52 -04003950 if (it->cur_task)
3951 put_task_struct(it->cur_task);
3952
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003953 spin_lock_bh(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04003954
3955 it->cur_task = list_entry(it->task_pos, struct task_struct, cg_list);
3956 get_task_struct(it->cur_task);
3957
Tejun Heoecb9d532015-10-15 16:41:52 -04003958 css_task_iter_advance(it);
Tejun Heoed27b9f2015-10-15 16:41:52 -04003959
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003960 spin_unlock_bh(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04003961
3962 return it->cur_task;
Paul Menage817929e2007-10-18 23:39:36 -07003963}
3964
Tejun Heo0942eee2013-08-08 20:11:26 -04003965/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003966 * css_task_iter_end - finish task iteration
Tejun Heo0942eee2013-08-08 20:11:26 -04003967 * @it: the task iterator to finish
3968 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003969 * Finish task iteration started by css_task_iter_start().
Tejun Heo0942eee2013-08-08 20:11:26 -04003970 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003971void css_task_iter_end(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07003972{
Tejun Heoed27b9f2015-10-15 16:41:52 -04003973 if (it->cur_cset) {
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003974 spin_lock_bh(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04003975 list_del(&it->iters_node);
3976 put_css_set_locked(it->cur_cset);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003977 spin_unlock_bh(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04003978 }
3979
3980 if (it->cur_task)
3981 put_task_struct(it->cur_task);
Tejun Heo8cc99342013-04-07 09:29:50 -07003982}
3983
3984/**
3985 * cgroup_trasnsfer_tasks - move tasks from one cgroup to another
3986 * @to: cgroup to which the tasks will be moved
3987 * @from: cgroup in which the tasks currently reside
Tejun Heoeaf797a2014-02-25 10:04:03 -05003988 *
3989 * Locking rules between cgroup_post_fork() and the migration path
3990 * guarantee that, if a task is forking while being migrated, the new child
3991 * is guaranteed to be either visible in the source cgroup after the
3992 * parent's migration is complete or put into the target cgroup. No task
3993 * can slip out of migration through forking.
Tejun Heo8cc99342013-04-07 09:29:50 -07003994 */
3995int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from)
3996{
Tejun Heo952aaa12014-02-25 10:04:03 -05003997 LIST_HEAD(preloaded_csets);
3998 struct cgrp_cset_link *link;
Tejun Heoe406d1c2014-02-13 06:58:39 -05003999 struct css_task_iter it;
4000 struct task_struct *task;
Tejun Heo952aaa12014-02-25 10:04:03 -05004001 int ret;
Tejun Heoe406d1c2014-02-13 06:58:39 -05004002
Tejun Heo952aaa12014-02-25 10:04:03 -05004003 mutex_lock(&cgroup_mutex);
4004
4005 /* all tasks in @from are being moved, all csets are source */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04004006 spin_lock_bh(&css_set_lock);
Tejun Heo952aaa12014-02-25 10:04:03 -05004007 list_for_each_entry(link, &from->cset_links, cset_link)
4008 cgroup_migrate_add_src(link->cset, to, &preloaded_csets);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04004009 spin_unlock_bh(&css_set_lock);
Tejun Heo952aaa12014-02-25 10:04:03 -05004010
4011 ret = cgroup_migrate_prepare_dst(to, &preloaded_csets);
4012 if (ret)
4013 goto out_err;
4014
4015 /*
4016 * Migrate tasks one-by-one until @form is empty. This fails iff
4017 * ->can_attach() fails.
4018 */
Tejun Heoe406d1c2014-02-13 06:58:39 -05004019 do {
Tejun Heo9d800df2014-05-14 09:15:00 -04004020 css_task_iter_start(&from->self, &it);
Tejun Heoe406d1c2014-02-13 06:58:39 -05004021 task = css_task_iter_next(&it);
4022 if (task)
4023 get_task_struct(task);
4024 css_task_iter_end(&it);
4025
4026 if (task) {
Tejun Heo9af2ec42015-09-11 15:00:20 -04004027 ret = cgroup_migrate(task, false, to);
Tejun Heoe406d1c2014-02-13 06:58:39 -05004028 put_task_struct(task);
4029 }
4030 } while (task && !ret);
Tejun Heo952aaa12014-02-25 10:04:03 -05004031out_err:
4032 cgroup_migrate_finish(&preloaded_csets);
4033 mutex_unlock(&cgroup_mutex);
Tejun Heoe406d1c2014-02-13 06:58:39 -05004034 return ret;
Tejun Heo8cc99342013-04-07 09:29:50 -07004035}
4036
Paul Menage817929e2007-10-18 23:39:36 -07004037/*
Ben Blum102a7752009-09-23 15:56:26 -07004038 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07004039 *
4040 * Reading this file can return large amounts of data if a cgroup has
4041 * *lots* of attached tasks. So it may need several calls to read(),
4042 * but we cannot guarantee that the information we produce is correct
4043 * unless we produce it entirely atomically.
4044 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07004045 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07004046
Li Zefan24528252012-01-20 11:58:43 +08004047/* which pidlist file are we talking about? */
4048enum cgroup_filetype {
4049 CGROUP_FILE_PROCS,
4050 CGROUP_FILE_TASKS,
4051};
4052
4053/*
4054 * A pidlist is a list of pids that virtually represents the contents of one
4055 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
4056 * a pair (one each for procs, tasks) for each pid namespace that's relevant
4057 * to the cgroup.
4058 */
4059struct cgroup_pidlist {
4060 /*
4061 * used to find which pidlist is wanted. doesn't change as long as
4062 * this particular list stays in the list.
4063 */
4064 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
4065 /* array of xids */
4066 pid_t *list;
4067 /* how many elements the above list has */
4068 int length;
Li Zefan24528252012-01-20 11:58:43 +08004069 /* each of these stored in a list by its cgroup */
4070 struct list_head links;
4071 /* pointer to the cgroup we belong to, for list removal purposes */
4072 struct cgroup *owner;
Tejun Heob1a21362013-11-29 10:42:58 -05004073 /* for delayed destruction */
4074 struct delayed_work destroy_dwork;
Li Zefan24528252012-01-20 11:58:43 +08004075};
4076
Paul Menagebbcb81d2007-10-18 23:39:32 -07004077/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07004078 * The following two functions "fix" the issue where there are more pids
4079 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
4080 * TODO: replace with a kernel-wide solution to this problem
4081 */
4082#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
4083static void *pidlist_allocate(int count)
4084{
4085 if (PIDLIST_TOO_LARGE(count))
4086 return vmalloc(count * sizeof(pid_t));
4087 else
4088 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
4089}
Tejun Heob1a21362013-11-29 10:42:58 -05004090
Ben Blumd1d9fd32009-09-23 15:56:28 -07004091static void pidlist_free(void *p)
4092{
Bandan Das58794512015-03-02 17:51:10 -05004093 kvfree(p);
Ben Blumd1d9fd32009-09-23 15:56:28 -07004094}
Ben Blumd1d9fd32009-09-23 15:56:28 -07004095
4096/*
Tejun Heob1a21362013-11-29 10:42:58 -05004097 * Used to destroy all pidlists lingering waiting for destroy timer. None
4098 * should be left afterwards.
4099 */
4100static void cgroup_pidlist_destroy_all(struct cgroup *cgrp)
4101{
4102 struct cgroup_pidlist *l, *tmp_l;
4103
4104 mutex_lock(&cgrp->pidlist_mutex);
4105 list_for_each_entry_safe(l, tmp_l, &cgrp->pidlists, links)
4106 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, 0);
4107 mutex_unlock(&cgrp->pidlist_mutex);
4108
4109 flush_workqueue(cgroup_pidlist_destroy_wq);
4110 BUG_ON(!list_empty(&cgrp->pidlists));
4111}
4112
4113static void cgroup_pidlist_destroy_work_fn(struct work_struct *work)
4114{
4115 struct delayed_work *dwork = to_delayed_work(work);
4116 struct cgroup_pidlist *l = container_of(dwork, struct cgroup_pidlist,
4117 destroy_dwork);
4118 struct cgroup_pidlist *tofree = NULL;
4119
4120 mutex_lock(&l->owner->pidlist_mutex);
Tejun Heob1a21362013-11-29 10:42:58 -05004121
4122 /*
Tejun Heo04502362013-11-29 10:42:59 -05004123 * Destroy iff we didn't get queued again. The state won't change
4124 * as destroy_dwork can only be queued while locked.
Tejun Heob1a21362013-11-29 10:42:58 -05004125 */
Tejun Heo04502362013-11-29 10:42:59 -05004126 if (!delayed_work_pending(dwork)) {
Tejun Heob1a21362013-11-29 10:42:58 -05004127 list_del(&l->links);
4128 pidlist_free(l->list);
4129 put_pid_ns(l->key.ns);
4130 tofree = l;
4131 }
4132
Tejun Heob1a21362013-11-29 10:42:58 -05004133 mutex_unlock(&l->owner->pidlist_mutex);
4134 kfree(tofree);
4135}
4136
4137/*
Ben Blum102a7752009-09-23 15:56:26 -07004138 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
Li Zefan6ee211a2013-03-12 15:36:00 -07004139 * Returns the number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07004140 */
Li Zefan6ee211a2013-03-12 15:36:00 -07004141static int pidlist_uniq(pid_t *list, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07004142{
Ben Blum102a7752009-09-23 15:56:26 -07004143 int src, dest = 1;
Ben Blum102a7752009-09-23 15:56:26 -07004144
4145 /*
4146 * we presume the 0th element is unique, so i starts at 1. trivial
4147 * edge cases first; no work needs to be done for either
4148 */
4149 if (length == 0 || length == 1)
4150 return length;
4151 /* src and dest walk down the list; dest counts unique elements */
4152 for (src = 1; src < length; src++) {
4153 /* find next unique element */
4154 while (list[src] == list[src-1]) {
4155 src++;
4156 if (src == length)
4157 goto after;
4158 }
4159 /* dest always points to where the next unique element goes */
4160 list[dest] = list[src];
4161 dest++;
4162 }
4163after:
Ben Blum102a7752009-09-23 15:56:26 -07004164 return dest;
4165}
4166
Tejun Heoafb2bc12013-11-29 10:42:59 -05004167/*
4168 * The two pid files - task and cgroup.procs - guaranteed that the result
4169 * is sorted, which forced this whole pidlist fiasco. As pid order is
4170 * different per namespace, each namespace needs differently sorted list,
4171 * making it impossible to use, for example, single rbtree of member tasks
4172 * sorted by task pointer. As pidlists can be fairly large, allocating one
4173 * per open file is dangerous, so cgroup had to implement shared pool of
4174 * pidlists keyed by cgroup and namespace.
4175 *
4176 * All this extra complexity was caused by the original implementation
4177 * committing to an entirely unnecessary property. In the long term, we
Tejun Heoaa6ec292014-07-09 10:08:08 -04004178 * want to do away with it. Explicitly scramble sort order if on the
4179 * default hierarchy so that no such expectation exists in the new
4180 * interface.
Tejun Heoafb2bc12013-11-29 10:42:59 -05004181 *
4182 * Scrambling is done by swapping every two consecutive bits, which is
4183 * non-identity one-to-one mapping which disturbs sort order sufficiently.
4184 */
4185static pid_t pid_fry(pid_t pid)
4186{
4187 unsigned a = pid & 0x55555555;
4188 unsigned b = pid & 0xAAAAAAAA;
4189
4190 return (a << 1) | (b >> 1);
4191}
4192
4193static pid_t cgroup_pid_fry(struct cgroup *cgrp, pid_t pid)
4194{
Tejun Heoaa6ec292014-07-09 10:08:08 -04004195 if (cgroup_on_dfl(cgrp))
Tejun Heoafb2bc12013-11-29 10:42:59 -05004196 return pid_fry(pid);
4197 else
4198 return pid;
4199}
4200
Ben Blum102a7752009-09-23 15:56:26 -07004201static int cmppid(const void *a, const void *b)
4202{
4203 return *(pid_t *)a - *(pid_t *)b;
4204}
4205
Tejun Heoafb2bc12013-11-29 10:42:59 -05004206static int fried_cmppid(const void *a, const void *b)
4207{
4208 return pid_fry(*(pid_t *)a) - pid_fry(*(pid_t *)b);
4209}
4210
Ben Blum72a8cb32009-09-23 15:56:27 -07004211static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
4212 enum cgroup_filetype type)
4213{
4214 struct cgroup_pidlist *l;
4215 /* don't need task_nsproxy() if we're looking at ourself */
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08004216 struct pid_namespace *ns = task_active_pid_ns(current);
Li Zefanb70cc5f2010-03-10 15:22:12 -08004217
Tejun Heoe6b81712013-11-29 10:42:59 -05004218 lockdep_assert_held(&cgrp->pidlist_mutex);
4219
4220 list_for_each_entry(l, &cgrp->pidlists, links)
4221 if (l->key.type == type && l->key.ns == ns)
Ben Blum72a8cb32009-09-23 15:56:27 -07004222 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05004223 return NULL;
4224}
4225
Ben Blum72a8cb32009-09-23 15:56:27 -07004226/*
4227 * find the appropriate pidlist for our purpose (given procs vs tasks)
4228 * returns with the lock on that pidlist already held, and takes care
4229 * of the use count, or returns NULL with no locks held if we're out of
4230 * memory.
4231 */
Tejun Heoe6b81712013-11-29 10:42:59 -05004232static struct cgroup_pidlist *cgroup_pidlist_find_create(struct cgroup *cgrp,
4233 enum cgroup_filetype type)
Ben Blum72a8cb32009-09-23 15:56:27 -07004234{
4235 struct cgroup_pidlist *l;
Ben Blum72a8cb32009-09-23 15:56:27 -07004236
Tejun Heoe6b81712013-11-29 10:42:59 -05004237 lockdep_assert_held(&cgrp->pidlist_mutex);
4238
4239 l = cgroup_pidlist_find(cgrp, type);
4240 if (l)
4241 return l;
4242
Ben Blum72a8cb32009-09-23 15:56:27 -07004243 /* entry not found; create a new one */
Tejun Heof4f4be22013-06-12 21:04:51 -07004244 l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
Tejun Heoe6b81712013-11-29 10:42:59 -05004245 if (!l)
Ben Blum72a8cb32009-09-23 15:56:27 -07004246 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05004247
Tejun Heob1a21362013-11-29 10:42:58 -05004248 INIT_DELAYED_WORK(&l->destroy_dwork, cgroup_pidlist_destroy_work_fn);
Ben Blum72a8cb32009-09-23 15:56:27 -07004249 l->key.type = type;
Tejun Heoe6b81712013-11-29 10:42:59 -05004250 /* don't need task_nsproxy() if we're looking at ourself */
4251 l->key.ns = get_pid_ns(task_active_pid_ns(current));
Ben Blum72a8cb32009-09-23 15:56:27 -07004252 l->owner = cgrp;
4253 list_add(&l->links, &cgrp->pidlists);
Ben Blum72a8cb32009-09-23 15:56:27 -07004254 return l;
4255}
4256
4257/*
Ben Blum102a7752009-09-23 15:56:26 -07004258 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
4259 */
Ben Blum72a8cb32009-09-23 15:56:27 -07004260static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
4261 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07004262{
4263 pid_t *array;
4264 int length;
4265 int pid, n = 0; /* used for populating the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04004266 struct css_task_iter it;
Paul Menage817929e2007-10-18 23:39:36 -07004267 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07004268 struct cgroup_pidlist *l;
4269
Tejun Heo4bac00d2013-11-29 10:42:59 -05004270 lockdep_assert_held(&cgrp->pidlist_mutex);
4271
Ben Blum102a7752009-09-23 15:56:26 -07004272 /*
4273 * If cgroup gets more users after we read count, we won't have
4274 * enough space - tough. This race is indistinguishable to the
4275 * caller from the case that the additional cgroup users didn't
4276 * show up until sometime later on.
4277 */
4278 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07004279 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07004280 if (!array)
4281 return -ENOMEM;
4282 /* now, populate the array */
Tejun Heo9d800df2014-05-14 09:15:00 -04004283 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04004284 while ((tsk = css_task_iter_next(&it))) {
Ben Blum102a7752009-09-23 15:56:26 -07004285 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07004286 break;
Ben Blum102a7752009-09-23 15:56:26 -07004287 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07004288 if (type == CGROUP_FILE_PROCS)
4289 pid = task_tgid_vnr(tsk);
4290 else
4291 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07004292 if (pid > 0) /* make sure to only use valid results */
4293 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07004294 }
Tejun Heo72ec7022013-08-08 20:11:26 -04004295 css_task_iter_end(&it);
Ben Blum102a7752009-09-23 15:56:26 -07004296 length = n;
4297 /* now sort & (if procs) strip out duplicates */
Tejun Heoaa6ec292014-07-09 10:08:08 -04004298 if (cgroup_on_dfl(cgrp))
Tejun Heoafb2bc12013-11-29 10:42:59 -05004299 sort(array, length, sizeof(pid_t), fried_cmppid, NULL);
4300 else
4301 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07004302 if (type == CGROUP_FILE_PROCS)
Li Zefan6ee211a2013-03-12 15:36:00 -07004303 length = pidlist_uniq(array, length);
Tejun Heoe6b81712013-11-29 10:42:59 -05004304
Tejun Heoe6b81712013-11-29 10:42:59 -05004305 l = cgroup_pidlist_find_create(cgrp, type);
Ben Blum72a8cb32009-09-23 15:56:27 -07004306 if (!l) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07004307 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07004308 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07004309 }
Tejun Heoe6b81712013-11-29 10:42:59 -05004310
4311 /* store array, freeing old if necessary */
Ben Blumd1d9fd32009-09-23 15:56:28 -07004312 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07004313 l->list = array;
4314 l->length = length;
Ben Blum72a8cb32009-09-23 15:56:27 -07004315 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07004316 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004317}
4318
Balbir Singh846c7bb2007-10-18 23:39:44 -07004319/**
Li Zefana043e3b2008-02-23 15:24:09 -08004320 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07004321 * @stats: cgroupstats to fill information into
4322 * @dentry: A dentry entry belonging to the cgroup for which stats have
4323 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08004324 *
4325 * Build and fill cgroupstats so that taskstats can export it to user
4326 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07004327 */
4328int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
4329{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004330 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07004331 struct cgroup *cgrp;
Tejun Heo72ec7022013-08-08 20:11:26 -04004332 struct css_task_iter it;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004333 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08004334
Tejun Heo2bd59d42014-02-11 11:52:49 -05004335 /* it should be kernfs_node belonging to cgroupfs and is a directory */
4336 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
4337 kernfs_type(kn) != KERNFS_DIR)
4338 return -EINVAL;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004339
Li Zefanbad34662014-02-14 16:54:28 +08004340 mutex_lock(&cgroup_mutex);
4341
Tejun Heo2bd59d42014-02-11 11:52:49 -05004342 /*
4343 * We aren't being called from kernfs and there's no guarantee on
Tejun Heoec903c02014-05-13 12:11:01 -04004344 * @kn->priv's validity. For this and css_tryget_online_from_dir(),
Tejun Heo2bd59d42014-02-11 11:52:49 -05004345 * @kn->priv is RCU safe. Let's do the RCU dancing.
4346 */
4347 rcu_read_lock();
4348 cgrp = rcu_dereference(kn->priv);
Li Zefanbad34662014-02-14 16:54:28 +08004349 if (!cgrp || cgroup_is_dead(cgrp)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05004350 rcu_read_unlock();
Li Zefanbad34662014-02-14 16:54:28 +08004351 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004352 return -ENOENT;
4353 }
Li Zefanbad34662014-02-14 16:54:28 +08004354 rcu_read_unlock();
Balbir Singh846c7bb2007-10-18 23:39:44 -07004355
Tejun Heo9d800df2014-05-14 09:15:00 -04004356 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04004357 while ((tsk = css_task_iter_next(&it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07004358 switch (tsk->state) {
4359 case TASK_RUNNING:
4360 stats->nr_running++;
4361 break;
4362 case TASK_INTERRUPTIBLE:
4363 stats->nr_sleeping++;
4364 break;
4365 case TASK_UNINTERRUPTIBLE:
4366 stats->nr_uninterruptible++;
4367 break;
4368 case TASK_STOPPED:
4369 stats->nr_stopped++;
4370 break;
4371 default:
4372 if (delayacct_is_task_waiting_on_io(tsk))
4373 stats->nr_io_wait++;
4374 break;
4375 }
4376 }
Tejun Heo72ec7022013-08-08 20:11:26 -04004377 css_task_iter_end(&it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07004378
Li Zefanbad34662014-02-14 16:54:28 +08004379 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004380 return 0;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004381}
4382
Paul Menage8f3ff202009-09-23 15:56:25 -07004383
Paul Menagecc31edc2008-10-18 20:28:04 -07004384/*
Ben Blum102a7752009-09-23 15:56:26 -07004385 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07004386 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07004387 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07004388 */
4389
Ben Blum102a7752009-09-23 15:56:26 -07004390static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07004391{
4392 /*
4393 * Initially we receive a position value that corresponds to
4394 * one more than the last pid shown (or 0 on the first call or
4395 * after a seek to the start). Use a binary-search to find the
4396 * next pid to display, if any
4397 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05004398 struct kernfs_open_file *of = s->private;
Tejun Heo7da11272013-12-05 12:28:04 -05004399 struct cgroup *cgrp = seq_css(s)->cgroup;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004400 struct cgroup_pidlist *l;
Tejun Heo7da11272013-12-05 12:28:04 -05004401 enum cgroup_filetype type = seq_cft(s)->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07004402 int index = 0, pid = *pos;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004403 int *iter, ret;
Paul Menagecc31edc2008-10-18 20:28:04 -07004404
Tejun Heo4bac00d2013-11-29 10:42:59 -05004405 mutex_lock(&cgrp->pidlist_mutex);
4406
4407 /*
Tejun Heo5d224442013-12-05 12:28:04 -05004408 * !NULL @of->priv indicates that this isn't the first start()
Tejun Heo4bac00d2013-11-29 10:42:59 -05004409 * after open. If the matching pidlist is around, we can use that.
Tejun Heo5d224442013-12-05 12:28:04 -05004410 * Look for it. Note that @of->priv can't be used directly. It
Tejun Heo4bac00d2013-11-29 10:42:59 -05004411 * could already have been destroyed.
4412 */
Tejun Heo5d224442013-12-05 12:28:04 -05004413 if (of->priv)
4414 of->priv = cgroup_pidlist_find(cgrp, type);
Tejun Heo4bac00d2013-11-29 10:42:59 -05004415
4416 /*
4417 * Either this is the first start() after open or the matching
4418 * pidlist has been destroyed inbetween. Create a new one.
4419 */
Tejun Heo5d224442013-12-05 12:28:04 -05004420 if (!of->priv) {
4421 ret = pidlist_array_load(cgrp, type,
4422 (struct cgroup_pidlist **)&of->priv);
Tejun Heo4bac00d2013-11-29 10:42:59 -05004423 if (ret)
4424 return ERR_PTR(ret);
4425 }
Tejun Heo5d224442013-12-05 12:28:04 -05004426 l = of->priv;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004427
Paul Menagecc31edc2008-10-18 20:28:04 -07004428 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07004429 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11004430
Paul Menagecc31edc2008-10-18 20:28:04 -07004431 while (index < end) {
4432 int mid = (index + end) / 2;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004433 if (cgroup_pid_fry(cgrp, l->list[mid]) == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07004434 index = mid;
4435 break;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004436 } else if (cgroup_pid_fry(cgrp, l->list[mid]) <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07004437 index = mid + 1;
4438 else
4439 end = mid;
4440 }
4441 }
4442 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07004443 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07004444 return NULL;
4445 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07004446 iter = l->list + index;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004447 *pos = cgroup_pid_fry(cgrp, *iter);
Paul Menagecc31edc2008-10-18 20:28:04 -07004448 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004449}
4450
Ben Blum102a7752009-09-23 15:56:26 -07004451static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07004452{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004453 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05004454 struct cgroup_pidlist *l = of->priv;
Tejun Heo62236852013-11-29 10:42:58 -05004455
Tejun Heo5d224442013-12-05 12:28:04 -05004456 if (l)
4457 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork,
Tejun Heo04502362013-11-29 10:42:59 -05004458 CGROUP_PIDLIST_DESTROY_DELAY);
Tejun Heo7da11272013-12-05 12:28:04 -05004459 mutex_unlock(&seq_css(s)->cgroup->pidlist_mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07004460}
4461
Ben Blum102a7752009-09-23 15:56:26 -07004462static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07004463{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004464 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05004465 struct cgroup_pidlist *l = of->priv;
Ben Blum102a7752009-09-23 15:56:26 -07004466 pid_t *p = v;
4467 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07004468 /*
4469 * Advance to the next pid in the array. If this goes off the
4470 * end, we're done
4471 */
4472 p++;
4473 if (p >= end) {
4474 return NULL;
4475 } else {
Tejun Heo7da11272013-12-05 12:28:04 -05004476 *pos = cgroup_pid_fry(seq_css(s)->cgroup, *p);
Paul Menagecc31edc2008-10-18 20:28:04 -07004477 return p;
4478 }
4479}
4480
Ben Blum102a7752009-09-23 15:56:26 -07004481static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07004482{
Joe Perches94ff2122015-04-15 16:18:20 -07004483 seq_printf(s, "%d\n", *(int *)v);
4484
4485 return 0;
Paul Menagecc31edc2008-10-18 20:28:04 -07004486}
4487
Tejun Heo182446d2013-08-08 20:11:24 -04004488static u64 cgroup_read_notify_on_release(struct cgroup_subsys_state *css,
4489 struct cftype *cft)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004490{
Tejun Heo182446d2013-08-08 20:11:24 -04004491 return notify_on_release(css->cgroup);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004492}
4493
Tejun Heo182446d2013-08-08 20:11:24 -04004494static int cgroup_write_notify_on_release(struct cgroup_subsys_state *css,
4495 struct cftype *cft, u64 val)
Paul Menage6379c102008-07-25 01:47:01 -07004496{
Paul Menage6379c102008-07-25 01:47:01 -07004497 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04004498 set_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004499 else
Tejun Heo182446d2013-08-08 20:11:24 -04004500 clear_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004501 return 0;
4502}
4503
Tejun Heo182446d2013-08-08 20:11:24 -04004504static u64 cgroup_clone_children_read(struct cgroup_subsys_state *css,
4505 struct cftype *cft)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004506{
Tejun Heo182446d2013-08-08 20:11:24 -04004507 return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004508}
4509
Tejun Heo182446d2013-08-08 20:11:24 -04004510static int cgroup_clone_children_write(struct cgroup_subsys_state *css,
4511 struct cftype *cft, u64 val)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004512{
4513 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04004514 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004515 else
Tejun Heo182446d2013-08-08 20:11:24 -04004516 clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004517 return 0;
4518}
4519
Tejun Heoa14c6872014-07-15 11:05:09 -04004520/* cgroup core interface files for the default hierarchy */
4521static struct cftype cgroup_dfl_base_files[] = {
4522 {
4523 .name = "cgroup.procs",
Tejun Heo6f60ead2015-09-18 17:54:23 -04004524 .file_offset = offsetof(struct cgroup, procs_file),
Tejun Heoa14c6872014-07-15 11:05:09 -04004525 .seq_start = cgroup_pidlist_start,
4526 .seq_next = cgroup_pidlist_next,
4527 .seq_stop = cgroup_pidlist_stop,
4528 .seq_show = cgroup_pidlist_show,
4529 .private = CGROUP_FILE_PROCS,
4530 .write = cgroup_procs_write,
Tejun Heoa14c6872014-07-15 11:05:09 -04004531 },
4532 {
4533 .name = "cgroup.controllers",
4534 .flags = CFTYPE_ONLY_ON_ROOT,
4535 .seq_show = cgroup_root_controllers_show,
4536 },
4537 {
4538 .name = "cgroup.controllers",
4539 .flags = CFTYPE_NOT_ON_ROOT,
4540 .seq_show = cgroup_controllers_show,
4541 },
4542 {
4543 .name = "cgroup.subtree_control",
4544 .seq_show = cgroup_subtree_control_show,
4545 .write = cgroup_subtree_control_write,
4546 },
4547 {
Tejun Heo4a07c222015-09-18 17:54:22 -04004548 .name = "cgroup.events",
Tejun Heoa14c6872014-07-15 11:05:09 -04004549 .flags = CFTYPE_NOT_ON_ROOT,
Tejun Heo6f60ead2015-09-18 17:54:23 -04004550 .file_offset = offsetof(struct cgroup, events_file),
Tejun Heo4a07c222015-09-18 17:54:22 -04004551 .seq_show = cgroup_events_show,
Tejun Heoa14c6872014-07-15 11:05:09 -04004552 },
4553 { } /* terminate */
4554};
4555
4556/* cgroup core interface files for the legacy hierarchies */
4557static struct cftype cgroup_legacy_base_files[] = {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004558 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07004559 .name = "cgroup.procs",
Tejun Heo6612f052013-12-05 12:28:04 -05004560 .seq_start = cgroup_pidlist_start,
4561 .seq_next = cgroup_pidlist_next,
4562 .seq_stop = cgroup_pidlist_stop,
4563 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004564 .private = CGROUP_FILE_PROCS,
Tejun Heoacbef752014-05-13 12:16:22 -04004565 .write = cgroup_procs_write,
Ben Blum102a7752009-09-23 15:56:26 -07004566 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07004567 {
Daniel Lezcano97978e62010-10-27 15:33:35 -07004568 .name = "cgroup.clone_children",
4569 .read_u64 = cgroup_clone_children_read,
4570 .write_u64 = cgroup_clone_children_write,
4571 },
Tejun Heo6e6ff252012-04-01 12:09:55 -07004572 {
Tejun Heo873fe092013-04-14 20:15:26 -07004573 .name = "cgroup.sane_behavior",
4574 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004575 .seq_show = cgroup_sane_behavior_show,
Tejun Heo873fe092013-04-14 20:15:26 -07004576 },
Tejun Heof8f22e52014-04-23 11:13:16 -04004577 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07004578 .name = "tasks",
Tejun Heo6612f052013-12-05 12:28:04 -05004579 .seq_start = cgroup_pidlist_start,
4580 .seq_next = cgroup_pidlist_next,
4581 .seq_stop = cgroup_pidlist_stop,
4582 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004583 .private = CGROUP_FILE_TASKS,
Tejun Heoacbef752014-05-13 12:16:22 -04004584 .write = cgroup_tasks_write,
Tejun Heod5c56ce2013-06-03 19:14:34 -07004585 },
4586 {
4587 .name = "notify_on_release",
Tejun Heod5c56ce2013-06-03 19:14:34 -07004588 .read_u64 = cgroup_read_notify_on_release,
4589 .write_u64 = cgroup_write_notify_on_release,
4590 },
Tejun Heo873fe092013-04-14 20:15:26 -07004591 {
Tejun Heo6e6ff252012-04-01 12:09:55 -07004592 .name = "release_agent",
Tejun Heoa14c6872014-07-15 11:05:09 -04004593 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004594 .seq_show = cgroup_release_agent_show,
Tejun Heo451af502014-05-13 12:16:21 -04004595 .write = cgroup_release_agent_write,
Tejun Heo5f469902014-02-11 11:52:48 -05004596 .max_write_len = PATH_MAX - 1,
Tejun Heo6e6ff252012-04-01 12:09:55 -07004597 },
Tejun Heodb0416b2012-04-01 12:09:55 -07004598 { } /* terminate */
Paul Menagebbcb81d2007-10-18 23:39:32 -07004599};
4600
Tejun Heo0c21ead2013-08-13 20:22:51 -04004601/*
4602 * css destruction is four-stage process.
4603 *
4604 * 1. Destruction starts. Killing of the percpu_ref is initiated.
4605 * Implemented in kill_css().
4606 *
4607 * 2. When the percpu_ref is confirmed to be visible as killed on all CPUs
Tejun Heoec903c02014-05-13 12:11:01 -04004608 * and thus css_tryget_online() is guaranteed to fail, the css can be
4609 * offlined by invoking offline_css(). After offlining, the base ref is
4610 * put. Implemented in css_killed_work_fn().
Tejun Heo0c21ead2013-08-13 20:22:51 -04004611 *
4612 * 3. When the percpu_ref reaches zero, the only possible remaining
4613 * accessors are inside RCU read sections. css_release() schedules the
4614 * RCU callback.
4615 *
4616 * 4. After the grace period, the css can be freed. Implemented in
4617 * css_free_work_fn().
4618 *
4619 * It is actually hairier because both step 2 and 4 require process context
4620 * and thus involve punting to css->destroy_work adding two additional
4621 * steps to the already complex sequence.
4622 */
Tejun Heo35ef10d2013-08-13 11:01:54 -04004623static void css_free_work_fn(struct work_struct *work)
Tejun Heo48ddbe12012-04-01 12:09:56 -07004624{
4625 struct cgroup_subsys_state *css =
Tejun Heo35ef10d2013-08-13 11:01:54 -04004626 container_of(work, struct cgroup_subsys_state, destroy_work);
Vladimir Davydov01e58652015-02-12 14:59:26 -08004627 struct cgroup_subsys *ss = css->ss;
Tejun Heo0c21ead2013-08-13 20:22:51 -04004628 struct cgroup *cgrp = css->cgroup;
Tejun Heo6f60ead2015-09-18 17:54:23 -04004629 struct cgroup_file *cfile;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004630
Tejun Heo9a1049d2014-06-28 08:10:14 -04004631 percpu_ref_exit(&css->refcnt);
4632
Tejun Heo6f60ead2015-09-18 17:54:23 -04004633 list_for_each_entry(cfile, &css->files, node)
4634 kernfs_put(cfile->kn);
4635
Vladimir Davydov01e58652015-02-12 14:59:26 -08004636 if (ss) {
Tejun Heo9d755d32014-05-14 09:15:02 -04004637 /* css free path */
Vladimir Davydov01e58652015-02-12 14:59:26 -08004638 int id = css->id;
4639
Tejun Heo9d755d32014-05-14 09:15:02 -04004640 if (css->parent)
4641 css_put(css->parent);
Tejun Heo0ae78e02013-08-13 11:01:54 -04004642
Vladimir Davydov01e58652015-02-12 14:59:26 -08004643 ss->css_free(css);
4644 cgroup_idr_remove(&ss->css_idr, id);
Tejun Heo9d755d32014-05-14 09:15:02 -04004645 cgroup_put(cgrp);
4646 } else {
4647 /* cgroup free path */
4648 atomic_dec(&cgrp->root->nr_cgrps);
4649 cgroup_pidlist_destroy_all(cgrp);
Zefan Li971ff492014-09-18 16:06:19 +08004650 cancel_work_sync(&cgrp->release_agent_work);
Tejun Heo9d755d32014-05-14 09:15:02 -04004651
Tejun Heod51f39b2014-05-16 13:22:48 -04004652 if (cgroup_parent(cgrp)) {
Tejun Heo9d755d32014-05-14 09:15:02 -04004653 /*
4654 * We get a ref to the parent, and put the ref when
4655 * this cgroup is being freed, so it's guaranteed
4656 * that the parent won't be destroyed before its
4657 * children.
4658 */
Tejun Heod51f39b2014-05-16 13:22:48 -04004659 cgroup_put(cgroup_parent(cgrp));
Tejun Heo9d755d32014-05-14 09:15:02 -04004660 kernfs_put(cgrp->kn);
4661 kfree(cgrp);
4662 } else {
4663 /*
4664 * This is root cgroup's refcnt reaching zero,
4665 * which indicates that the root should be
4666 * released.
4667 */
4668 cgroup_destroy_root(cgrp->root);
4669 }
4670 }
Tejun Heo0c21ead2013-08-13 20:22:51 -04004671}
4672
4673static void css_free_rcu_fn(struct rcu_head *rcu_head)
4674{
4675 struct cgroup_subsys_state *css =
4676 container_of(rcu_head, struct cgroup_subsys_state, rcu_head);
4677
Tejun Heo0c21ead2013-08-13 20:22:51 -04004678 INIT_WORK(&css->destroy_work, css_free_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05004679 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004680}
4681
Tejun Heo25e15d82014-05-14 09:15:02 -04004682static void css_release_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004683{
4684 struct cgroup_subsys_state *css =
Tejun Heo25e15d82014-05-14 09:15:02 -04004685 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo15a4c832014-05-04 15:09:14 -04004686 struct cgroup_subsys *ss = css->ss;
Tejun Heo9d755d32014-05-14 09:15:02 -04004687 struct cgroup *cgrp = css->cgroup;
Tejun Heod3daf282013-06-13 19:39:16 -07004688
Tejun Heo1fed1b22014-05-16 13:22:49 -04004689 mutex_lock(&cgroup_mutex);
4690
Tejun Heode3f0342014-05-16 13:22:49 -04004691 css->flags |= CSS_RELEASED;
Tejun Heo1fed1b22014-05-16 13:22:49 -04004692 list_del_rcu(&css->sibling);
4693
Tejun Heo9d755d32014-05-14 09:15:02 -04004694 if (ss) {
4695 /* css release path */
Vladimir Davydov01e58652015-02-12 14:59:26 -08004696 cgroup_idr_replace(&ss->css_idr, NULL, css->id);
Tejun Heo7d172cc2014-11-18 02:49:51 -05004697 if (ss->css_released)
4698 ss->css_released(css);
Tejun Heo9d755d32014-05-14 09:15:02 -04004699 } else {
4700 /* cgroup release path */
Tejun Heo9d755d32014-05-14 09:15:02 -04004701 cgroup_idr_remove(&cgrp->root->cgroup_idr, cgrp->id);
4702 cgrp->id = -1;
Li Zefana4189482014-09-04 14:43:07 +08004703
4704 /*
4705 * There are two control paths which try to determine
4706 * cgroup from dentry without going through kernfs -
4707 * cgroupstats_build() and css_tryget_online_from_dir().
4708 * Those are supported by RCU protecting clearing of
4709 * cgrp->kn->priv backpointer.
4710 */
4711 RCU_INIT_POINTER(*(void __rcu __force **)&cgrp->kn->priv, NULL);
Tejun Heo9d755d32014-05-14 09:15:02 -04004712 }
Tejun Heo15a4c832014-05-04 15:09:14 -04004713
Tejun Heo1fed1b22014-05-16 13:22:49 -04004714 mutex_unlock(&cgroup_mutex);
4715
Tejun Heo0c21ead2013-08-13 20:22:51 -04004716 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004717}
4718
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004719static void css_release(struct percpu_ref *ref)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004720{
4721 struct cgroup_subsys_state *css =
4722 container_of(ref, struct cgroup_subsys_state, refcnt);
4723
Tejun Heo25e15d82014-05-14 09:15:02 -04004724 INIT_WORK(&css->destroy_work, css_release_work_fn);
4725 queue_work(cgroup_destroy_wq, &css->destroy_work);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004726}
4727
Tejun Heoddfcada2014-05-04 15:09:14 -04004728static void init_and_link_css(struct cgroup_subsys_state *css,
4729 struct cgroup_subsys *ss, struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004730{
Tejun Heo0cb51d72014-05-16 13:22:49 -04004731 lockdep_assert_held(&cgroup_mutex);
4732
Tejun Heoddfcada2014-05-04 15:09:14 -04004733 cgroup_get(cgrp);
4734
Tejun Heod5c419b2014-05-16 13:22:48 -04004735 memset(css, 0, sizeof(*css));
Paul Menagebd89aab2007-10-18 23:40:44 -07004736 css->cgroup = cgrp;
Tejun Heo72c97e52013-08-08 20:11:22 -04004737 css->ss = ss;
Tejun Heod5c419b2014-05-16 13:22:48 -04004738 INIT_LIST_HEAD(&css->sibling);
4739 INIT_LIST_HEAD(&css->children);
Tejun Heo6f60ead2015-09-18 17:54:23 -04004740 INIT_LIST_HEAD(&css->files);
Tejun Heo0cb51d72014-05-16 13:22:49 -04004741 css->serial_nr = css_serial_nr_next++;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004742
Tejun Heod51f39b2014-05-16 13:22:48 -04004743 if (cgroup_parent(cgrp)) {
4744 css->parent = cgroup_css(cgroup_parent(cgrp), ss);
Tejun Heoddfcada2014-05-04 15:09:14 -04004745 css_get(css->parent);
Tejun Heoddfcada2014-05-04 15:09:14 -04004746 }
Tejun Heo0ae78e02013-08-13 11:01:54 -04004747
Tejun Heoca8bdca2013-08-26 18:40:56 -04004748 BUG_ON(cgroup_css(cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004749}
4750
Li Zefan2a4ac632013-07-31 16:16:40 +08004751/* invoke ->css_online() on a new CSS and mark it online if successful */
Tejun Heo623f9262013-08-13 11:01:55 -04004752static int online_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004753{
Tejun Heo623f9262013-08-13 11:01:55 -04004754 struct cgroup_subsys *ss = css->ss;
Tejun Heob1929db2012-11-19 08:13:38 -08004755 int ret = 0;
4756
Tejun Heoa31f2d32012-11-19 08:13:37 -08004757 lockdep_assert_held(&cgroup_mutex);
4758
Tejun Heo92fb9742012-11-19 08:13:38 -08004759 if (ss->css_online)
Tejun Heoeb954192013-08-08 20:11:23 -04004760 ret = ss->css_online(css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004761 if (!ret) {
Tejun Heoeb954192013-08-08 20:11:23 -04004762 css->flags |= CSS_ONLINE;
Tejun Heoaec25022014-02-08 10:36:58 -05004763 rcu_assign_pointer(css->cgroup->subsys[ss->id], css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004764 }
Tejun Heob1929db2012-11-19 08:13:38 -08004765 return ret;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004766}
4767
Li Zefan2a4ac632013-07-31 16:16:40 +08004768/* if the CSS is online, invoke ->css_offline() on it and mark it offline */
Tejun Heo623f9262013-08-13 11:01:55 -04004769static void offline_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004770{
Tejun Heo623f9262013-08-13 11:01:55 -04004771 struct cgroup_subsys *ss = css->ss;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004772
4773 lockdep_assert_held(&cgroup_mutex);
4774
4775 if (!(css->flags & CSS_ONLINE))
4776 return;
4777
Li Zefand7eeac12013-03-12 15:35:59 -07004778 if (ss->css_offline)
Tejun Heoeb954192013-08-08 20:11:23 -04004779 ss->css_offline(css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004780
Tejun Heoeb954192013-08-08 20:11:23 -04004781 css->flags &= ~CSS_ONLINE;
Tejun Heoe3297802014-04-23 11:13:15 -04004782 RCU_INIT_POINTER(css->cgroup->subsys[ss->id], NULL);
Tejun Heof8f22e52014-04-23 11:13:16 -04004783
4784 wake_up_all(&css->cgroup->offline_waitq);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004785}
4786
Tejun Heoc81c925a2013-12-06 15:11:56 -05004787/**
4788 * create_css - create a cgroup_subsys_state
4789 * @cgrp: the cgroup new css will be associated with
4790 * @ss: the subsys of new css
Tejun Heof63070d2014-07-08 18:02:57 -04004791 * @visible: whether to create control knobs for the new css or not
Tejun Heoc81c925a2013-12-06 15:11:56 -05004792 *
4793 * Create a new css associated with @cgrp - @ss pair. On success, the new
Tejun Heof63070d2014-07-08 18:02:57 -04004794 * css is online and installed in @cgrp with all interface files created if
4795 * @visible. Returns 0 on success, -errno on failure.
Tejun Heoc81c925a2013-12-06 15:11:56 -05004796 */
Tejun Heof63070d2014-07-08 18:02:57 -04004797static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss,
4798 bool visible)
Tejun Heoc81c925a2013-12-06 15:11:56 -05004799{
Tejun Heod51f39b2014-05-16 13:22:48 -04004800 struct cgroup *parent = cgroup_parent(cgrp);
Tejun Heo1fed1b22014-05-16 13:22:49 -04004801 struct cgroup_subsys_state *parent_css = cgroup_css(parent, ss);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004802 struct cgroup_subsys_state *css;
4803 int err;
4804
Tejun Heoc81c925a2013-12-06 15:11:56 -05004805 lockdep_assert_held(&cgroup_mutex);
4806
Tejun Heo1fed1b22014-05-16 13:22:49 -04004807 css = ss->css_alloc(parent_css);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004808 if (IS_ERR(css))
4809 return PTR_ERR(css);
4810
Tejun Heoddfcada2014-05-04 15:09:14 -04004811 init_and_link_css(css, ss, cgrp);
Tejun Heoa2bed822014-05-04 15:09:14 -04004812
Tejun Heo2aad2a82014-09-24 13:31:50 -04004813 err = percpu_ref_init(&css->refcnt, css_release, 0, GFP_KERNEL);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004814 if (err)
Li Zefan3eb59ec2014-03-18 17:02:36 +08004815 goto err_free_css;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004816
Vladimir Davydovcf780b72015-08-03 15:32:26 +03004817 err = cgroup_idr_alloc(&ss->css_idr, NULL, 2, 0, GFP_KERNEL);
Tejun Heo15a4c832014-05-04 15:09:14 -04004818 if (err < 0)
4819 goto err_free_percpu_ref;
4820 css->id = err;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004821
Tejun Heof63070d2014-07-08 18:02:57 -04004822 if (visible) {
Tejun Heo4df8dc92015-09-18 17:54:23 -04004823 err = css_populate_dir(css, NULL);
Tejun Heof63070d2014-07-08 18:02:57 -04004824 if (err)
4825 goto err_free_id;
4826 }
Tejun Heo15a4c832014-05-04 15:09:14 -04004827
4828 /* @css is ready to be brought online now, make it visible */
Tejun Heo1fed1b22014-05-16 13:22:49 -04004829 list_add_tail_rcu(&css->sibling, &parent_css->children);
Tejun Heo15a4c832014-05-04 15:09:14 -04004830 cgroup_idr_replace(&ss->css_idr, css, css->id);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004831
4832 err = online_css(css);
4833 if (err)
Tejun Heo1fed1b22014-05-16 13:22:49 -04004834 goto err_list_del;
Tejun Heo94419622014-03-19 10:23:54 -04004835
Tejun Heoc81c925a2013-12-06 15:11:56 -05004836 if (ss->broken_hierarchy && !ss->warned_broken_hierarchy &&
Tejun Heod51f39b2014-05-16 13:22:48 -04004837 cgroup_parent(parent)) {
Joe Perchesed3d2612014-04-25 18:28:03 -04004838 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 -04004839 current->comm, current->pid, ss->name);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004840 if (!strcmp(ss->name, "memory"))
Joe Perchesed3d2612014-04-25 18:28:03 -04004841 pr_warn("\"memory\" requires setting use_hierarchy to 1 on the root\n");
Tejun Heoc81c925a2013-12-06 15:11:56 -05004842 ss->warned_broken_hierarchy = true;
4843 }
4844
4845 return 0;
4846
Tejun Heo1fed1b22014-05-16 13:22:49 -04004847err_list_del:
4848 list_del_rcu(&css->sibling);
Tejun Heo4df8dc92015-09-18 17:54:23 -04004849 css_clear_dir(css, NULL);
Tejun Heo15a4c832014-05-04 15:09:14 -04004850err_free_id:
4851 cgroup_idr_remove(&ss->css_idr, css->id);
Li Zefan3eb59ec2014-03-18 17:02:36 +08004852err_free_percpu_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04004853 percpu_ref_exit(&css->refcnt);
Li Zefan3eb59ec2014-03-18 17:02:36 +08004854err_free_css:
Tejun Heoa2bed822014-05-04 15:09:14 -04004855 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004856 return err;
4857}
4858
Tejun Heob3bfd982014-05-13 12:19:22 -04004859static int cgroup_mkdir(struct kernfs_node *parent_kn, const char *name,
4860 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004861{
Tejun Heoa9746d82014-05-13 12:19:22 -04004862 struct cgroup *parent, *cgrp;
4863 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004864 struct cgroup_subsys *ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004865 struct kernfs_node *kn;
Tejun Heob3bfd982014-05-13 12:19:22 -04004866 int ssid, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004867
Alban Crequy71b1fb52014-08-18 12:20:20 +01004868 /* Do not accept '\n' to prevent making /proc/<pid>/cgroup unparsable.
4869 */
4870 if (strchr(name, '\n'))
4871 return -EINVAL;
4872
Tejun Heoa9746d82014-05-13 12:19:22 -04004873 parent = cgroup_kn_lock_live(parent_kn);
4874 if (!parent)
4875 return -ENODEV;
4876 root = parent->root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004877
Tejun Heo0a950f62012-11-19 09:02:12 -08004878 /* allocate the cgroup and its ID, 0 is reserved for the root */
Paul Menagebd89aab2007-10-18 23:40:44 -07004879 cgrp = kzalloc(sizeof(*cgrp), GFP_KERNEL);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004880 if (!cgrp) {
4881 ret = -ENOMEM;
4882 goto out_unlock;
Li Zefan0ab02ca2014-02-11 16:05:46 +08004883 }
4884
Tejun Heo2aad2a82014-09-24 13:31:50 -04004885 ret = percpu_ref_init(&cgrp->self.refcnt, css_release, 0, GFP_KERNEL);
Tejun Heo9d755d32014-05-14 09:15:02 -04004886 if (ret)
4887 goto out_free_cgrp;
4888
Li Zefan0ab02ca2014-02-11 16:05:46 +08004889 /*
4890 * Temporarily set the pointer to NULL, so idr_find() won't return
4891 * a half-baked cgroup.
4892 */
Vladimir Davydovcf780b72015-08-03 15:32:26 +03004893 cgrp->id = cgroup_idr_alloc(&root->cgroup_idr, NULL, 2, 0, GFP_KERNEL);
Li Zefan0ab02ca2014-02-11 16:05:46 +08004894 if (cgrp->id < 0) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004895 ret = -ENOMEM;
Tejun Heo9d755d32014-05-14 09:15:02 -04004896 goto out_cancel_ref;
Tejun Heo976c06b2012-11-05 09:16:59 -08004897 }
4898
Paul Menagecc31edc2008-10-18 20:28:04 -07004899 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004900
Tejun Heo9d800df2014-05-14 09:15:00 -04004901 cgrp->self.parent = &parent->self;
Tejun Heoba0f4d72014-05-13 12:19:22 -04004902 cgrp->root = root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004903
Li Zefanb6abdb02008-03-04 14:28:19 -08004904 if (notify_on_release(parent))
4905 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
4906
Tejun Heo2260e7f2012-11-19 08:13:38 -08004907 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags))
4908 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004909
Tejun Heo2bd59d42014-02-11 11:52:49 -05004910 /* create the directory */
Tejun Heoe61734c2014-02-12 09:29:50 -05004911 kn = kernfs_create_dir(parent->kn, name, mode, cgrp);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004912 if (IS_ERR(kn)) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004913 ret = PTR_ERR(kn);
4914 goto out_free_id;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004915 }
4916 cgrp->kn = kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004917
Tejun Heo6f305582014-02-12 09:29:50 -05004918 /*
4919 * This extra ref will be put in cgroup_free_fn() and guarantees
4920 * that @cgrp->kn is always accessible.
4921 */
4922 kernfs_get(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004923
Tejun Heo0cb51d72014-05-16 13:22:49 -04004924 cgrp->self.serial_nr = css_serial_nr_next++;
Tejun Heo53fa5262013-05-24 10:55:38 +09004925
Tejun Heo4e139af2012-11-19 08:13:36 -08004926 /* allocation complete, commit to creation */
Tejun Heod5c419b2014-05-16 13:22:48 -04004927 list_add_tail_rcu(&cgrp->self.sibling, &cgroup_parent(cgrp)->self.children);
Tejun Heo3c9c8252014-02-12 09:29:50 -05004928 atomic_inc(&root->nr_cgrps);
Tejun Heo59f52962014-02-11 11:52:49 -05004929 cgroup_get(parent);
Li Zefan415cf072013-04-08 14:35:02 +08004930
Tejun Heo0d802552013-12-06 15:11:56 -05004931 /*
4932 * @cgrp is now fully operational. If something fails after this
4933 * point, it'll be released via the normal destruction path.
4934 */
Tejun Heo6fa49182014-05-04 15:09:13 -04004935 cgroup_idr_replace(&root->cgroup_idr, cgrp, cgrp->id);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08004936
Tejun Heoba0f4d72014-05-13 12:19:22 -04004937 ret = cgroup_kn_set_ugid(kn);
4938 if (ret)
4939 goto out_destroy;
Tejun Heo49957f82014-04-07 16:44:47 -04004940
Tejun Heo4df8dc92015-09-18 17:54:23 -04004941 ret = css_populate_dir(&cgrp->self, NULL);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004942 if (ret)
4943 goto out_destroy;
Tejun Heo628f7cd2013-06-28 16:24:11 -07004944
Tejun Heo9d403e92013-12-06 15:11:56 -05004945 /* let's create and online css's */
Tejun Heob85d2042013-12-06 15:11:57 -05004946 for_each_subsys(ss, ssid) {
Tejun Heof392e512014-04-23 11:13:14 -04004947 if (parent->child_subsys_mask & (1 << ssid)) {
Tejun Heof63070d2014-07-08 18:02:57 -04004948 ret = create_css(cgrp, ss,
4949 parent->subtree_control & (1 << ssid));
Tejun Heoba0f4d72014-05-13 12:19:22 -04004950 if (ret)
4951 goto out_destroy;
Tejun Heob85d2042013-12-06 15:11:57 -05004952 }
Tejun Heoa8638032012-11-09 09:12:29 -08004953 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004954
Tejun Heobd53d612014-04-23 11:13:16 -04004955 /*
4956 * On the default hierarchy, a child doesn't automatically inherit
Tejun Heo667c2492014-07-08 18:02:56 -04004957 * subtree_control from the parent. Each is configured manually.
Tejun Heobd53d612014-04-23 11:13:16 -04004958 */
Tejun Heo667c2492014-07-08 18:02:56 -04004959 if (!cgroup_on_dfl(cgrp)) {
4960 cgrp->subtree_control = parent->subtree_control;
4961 cgroup_refresh_child_subsys_mask(cgrp);
4962 }
Tejun Heof392e512014-04-23 11:13:14 -04004963
Tejun Heo2bd59d42014-02-11 11:52:49 -05004964 kernfs_activate(kn);
4965
Tejun Heoba0f4d72014-05-13 12:19:22 -04004966 ret = 0;
4967 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004968
Tejun Heoba0f4d72014-05-13 12:19:22 -04004969out_free_id:
Tejun Heo6fa49182014-05-04 15:09:13 -04004970 cgroup_idr_remove(&root->cgroup_idr, cgrp->id);
Tejun Heo9d755d32014-05-14 09:15:02 -04004971out_cancel_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04004972 percpu_ref_exit(&cgrp->self.refcnt);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004973out_free_cgrp:
Paul Menagebd89aab2007-10-18 23:40:44 -07004974 kfree(cgrp);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004975out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04004976 cgroup_kn_unlock(parent_kn);
Tejun Heoe1b2dc12014-03-20 11:10:15 -04004977 return ret;
Tejun Heoba0f4d72014-05-13 12:19:22 -04004978
4979out_destroy:
4980 cgroup_destroy_locked(cgrp);
4981 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004982}
4983
Tejun Heo223dbc32013-08-13 20:22:50 -04004984/*
4985 * This is called when the refcnt of a css is confirmed to be killed.
Tejun Heo249f3462014-05-14 09:15:01 -04004986 * css_tryget_online() is now guaranteed to fail. Tell the subsystem to
4987 * initate destruction and put the css ref from kill_css().
Tejun Heo223dbc32013-08-13 20:22:50 -04004988 */
4989static void css_killed_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004990{
Tejun Heo223dbc32013-08-13 20:22:50 -04004991 struct cgroup_subsys_state *css =
4992 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07004993
Tejun Heof20104d2013-08-13 20:22:50 -04004994 mutex_lock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04004995 offline_css(css);
Tejun Heof20104d2013-08-13 20:22:50 -04004996 mutex_unlock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04004997
Tejun Heo09a503ea2013-08-13 20:22:50 -04004998 css_put(css);
Tejun Heod3daf282013-06-13 19:39:16 -07004999}
5000
Tejun Heo223dbc32013-08-13 20:22:50 -04005001/* css kill confirmation processing requires process context, bounce */
5002static void css_killed_ref_fn(struct percpu_ref *ref)
Tejun Heod3daf282013-06-13 19:39:16 -07005003{
5004 struct cgroup_subsys_state *css =
5005 container_of(ref, struct cgroup_subsys_state, refcnt);
5006
Tejun Heo223dbc32013-08-13 20:22:50 -04005007 INIT_WORK(&css->destroy_work, css_killed_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05005008 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07005009}
5010
Tejun Heof392e512014-04-23 11:13:14 -04005011/**
5012 * kill_css - destroy a css
5013 * @css: css to destroy
5014 *
5015 * This function initiates destruction of @css by removing cgroup interface
5016 * files and putting its base reference. ->css_offline() will be invoked
Tejun Heoec903c02014-05-13 12:11:01 -04005017 * asynchronously once css_tryget_online() is guaranteed to fail and when
5018 * the reference count reaches zero, @css will be released.
Tejun Heof392e512014-04-23 11:13:14 -04005019 */
5020static void kill_css(struct cgroup_subsys_state *css)
Tejun Heoedae0c32013-08-13 20:22:51 -04005021{
Tejun Heo01f64742014-05-13 12:19:23 -04005022 lockdep_assert_held(&cgroup_mutex);
Tejun Heo94419622014-03-19 10:23:54 -04005023
Tejun Heo2bd59d42014-02-11 11:52:49 -05005024 /*
5025 * This must happen before css is disassociated with its cgroup.
5026 * See seq_css() for details.
5027 */
Tejun Heo4df8dc92015-09-18 17:54:23 -04005028 css_clear_dir(css, NULL);
Tejun Heo3c14f8b2013-08-13 20:22:51 -04005029
Tejun Heoedae0c32013-08-13 20:22:51 -04005030 /*
5031 * Killing would put the base ref, but we need to keep it alive
5032 * until after ->css_offline().
5033 */
5034 css_get(css);
5035
5036 /*
5037 * cgroup core guarantees that, by the time ->css_offline() is
5038 * invoked, no new css reference will be given out via
Tejun Heoec903c02014-05-13 12:11:01 -04005039 * css_tryget_online(). We can't simply call percpu_ref_kill() and
Tejun Heoedae0c32013-08-13 20:22:51 -04005040 * proceed to offlining css's because percpu_ref_kill() doesn't
5041 * guarantee that the ref is seen as killed on all CPUs on return.
5042 *
5043 * Use percpu_ref_kill_and_confirm() to get notifications as each
5044 * css is confirmed to be seen as killed on all CPUs.
5045 */
5046 percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07005047}
5048
5049/**
5050 * cgroup_destroy_locked - the first stage of cgroup destruction
5051 * @cgrp: cgroup to be destroyed
5052 *
5053 * css's make use of percpu refcnts whose killing latency shouldn't be
5054 * exposed to userland and are RCU protected. Also, cgroup core needs to
Tejun Heoec903c02014-05-13 12:11:01 -04005055 * guarantee that css_tryget_online() won't succeed by the time
5056 * ->css_offline() is invoked. To satisfy all the requirements,
5057 * destruction is implemented in the following two steps.
Tejun Heod3daf282013-06-13 19:39:16 -07005058 *
5059 * s1. Verify @cgrp can be destroyed and mark it dying. Remove all
5060 * userland visible parts and start killing the percpu refcnts of
5061 * css's. Set up so that the next stage will be kicked off once all
5062 * the percpu refcnts are confirmed to be killed.
5063 *
5064 * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the
5065 * rest of destruction. Once all cgroup references are gone, the
5066 * cgroup is RCU-freed.
5067 *
5068 * This function implements s1. After this step, @cgrp is gone as far as
5069 * the userland is concerned and a new cgroup with the same name may be
5070 * created. As cgroup doesn't care about the names internally, this
5071 * doesn't cause any problem.
5072 */
Tejun Heo42809dd2012-11-19 08:13:37 -08005073static int cgroup_destroy_locked(struct cgroup *cgrp)
5074 __releases(&cgroup_mutex) __acquires(&cgroup_mutex)
Paul Menageddbcc7e2007-10-18 23:39:30 -07005075{
Tejun Heo2bd59d42014-02-11 11:52:49 -05005076 struct cgroup_subsys_state *css;
Tejun Heo1c6727a2013-12-06 15:11:56 -05005077 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005078
Tejun Heo42809dd2012-11-19 08:13:37 -08005079 lockdep_assert_held(&cgroup_mutex);
5080
Tejun Heo91486f62015-10-15 16:41:51 -04005081 /*
5082 * Only migration can raise populated from zero and we're already
5083 * holding cgroup_mutex.
5084 */
5085 if (cgroup_is_populated(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07005086 return -EBUSY;
Tejun Heoed9577932012-11-05 09:16:58 -08005087
Tejun Heo1a90dd52012-11-05 09:16:59 -08005088 /*
Tejun Heod5c419b2014-05-16 13:22:48 -04005089 * Make sure there's no live children. We can't test emptiness of
5090 * ->self.children as dead children linger on it while being
5091 * drained; otherwise, "rmdir parent/child parent" may fail.
Hugh Dickinsbb78a922013-08-28 16:31:23 -07005092 */
Tejun Heof3d46502014-05-16 13:22:52 -04005093 if (css_has_online_children(&cgrp->self))
Hugh Dickinsbb78a922013-08-28 16:31:23 -07005094 return -EBUSY;
5095
5096 /*
Tejun Heo455050d2013-06-13 19:27:41 -07005097 * Mark @cgrp dead. This prevents further task migration and child
Tejun Heode3f0342014-05-16 13:22:49 -04005098 * creation by disabling cgroup_lock_live_group().
Tejun Heo455050d2013-06-13 19:27:41 -07005099 */
Tejun Heo184faf32014-05-16 13:22:51 -04005100 cgrp->self.flags &= ~CSS_ONLINE;
Tejun Heo1a90dd52012-11-05 09:16:59 -08005101
Tejun Heo249f3462014-05-14 09:15:01 -04005102 /* initiate massacre of all css's */
Tejun Heo1a90dd52012-11-05 09:16:59 -08005103 for_each_css(css, ssid, cgrp)
Tejun Heo455050d2013-06-13 19:27:41 -07005104 kill_css(css);
5105
Tejun Heo455050d2013-06-13 19:27:41 -07005106 /*
Tejun Heo01f64742014-05-13 12:19:23 -04005107 * Remove @cgrp directory along with the base files. @cgrp has an
5108 * extra ref on its kn.
Tejun Heo455050d2013-06-13 19:27:41 -07005109 */
Tejun Heo01f64742014-05-13 12:19:23 -04005110 kernfs_remove(cgrp->kn);
Tejun Heof20104d2013-08-13 20:22:50 -04005111
Tejun Heod51f39b2014-05-16 13:22:48 -04005112 check_for_release(cgroup_parent(cgrp));
Tejun Heo2bd59d42014-02-11 11:52:49 -05005113
Tejun Heo249f3462014-05-14 09:15:01 -04005114 /* put the base reference */
Tejun Heo9d755d32014-05-14 09:15:02 -04005115 percpu_ref_kill(&cgrp->self.refcnt);
Tejun Heo455050d2013-06-13 19:27:41 -07005116
Tejun Heoea15f8c2013-06-13 19:27:42 -07005117 return 0;
5118};
5119
Tejun Heo2bd59d42014-02-11 11:52:49 -05005120static int cgroup_rmdir(struct kernfs_node *kn)
Tejun Heo42809dd2012-11-19 08:13:37 -08005121{
Tejun Heoa9746d82014-05-13 12:19:22 -04005122 struct cgroup *cgrp;
Tejun Heo2bd59d42014-02-11 11:52:49 -05005123 int ret = 0;
Tejun Heo42809dd2012-11-19 08:13:37 -08005124
Tejun Heoa9746d82014-05-13 12:19:22 -04005125 cgrp = cgroup_kn_lock_live(kn);
5126 if (!cgrp)
5127 return 0;
Tejun Heo42809dd2012-11-19 08:13:37 -08005128
Tejun Heoa9746d82014-05-13 12:19:22 -04005129 ret = cgroup_destroy_locked(cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -08005130
Tejun Heoa9746d82014-05-13 12:19:22 -04005131 cgroup_kn_unlock(kn);
Tejun Heo42809dd2012-11-19 08:13:37 -08005132 return ret;
5133}
5134
Tejun Heo2bd59d42014-02-11 11:52:49 -05005135static struct kernfs_syscall_ops cgroup_kf_syscall_ops = {
5136 .remount_fs = cgroup_remount,
5137 .show_options = cgroup_show_options,
5138 .mkdir = cgroup_mkdir,
5139 .rmdir = cgroup_rmdir,
5140 .rename = cgroup_rename,
5141};
Tejun Heo8e3f6542012-04-01 12:09:55 -07005142
Tejun Heo15a4c832014-05-04 15:09:14 -04005143static void __init cgroup_init_subsys(struct cgroup_subsys *ss, bool early)
Paul Menageddbcc7e2007-10-18 23:39:30 -07005144{
Paul Menageddbcc7e2007-10-18 23:39:30 -07005145 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08005146
5147 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005148
Tejun Heo648bb562012-11-19 08:13:36 -08005149 mutex_lock(&cgroup_mutex);
5150
Tejun Heo15a4c832014-05-04 15:09:14 -04005151 idr_init(&ss->css_idr);
Tejun Heo0adb0702014-02-12 09:29:48 -05005152 INIT_LIST_HEAD(&ss->cfts);
Tejun Heo8e3f6542012-04-01 12:09:55 -07005153
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005154 /* Create the root cgroup state for this subsystem */
5155 ss->root = &cgrp_dfl_root;
5156 css = ss->css_alloc(cgroup_css(&cgrp_dfl_root.cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07005157 /* We don't handle early failures gracefully */
5158 BUG_ON(IS_ERR(css));
Tejun Heoddfcada2014-05-04 15:09:14 -04005159 init_and_link_css(css, ss, &cgrp_dfl_root.cgrp);
Tejun Heo3b514d22014-05-16 13:22:47 -04005160
5161 /*
5162 * Root csses are never destroyed and we can't initialize
5163 * percpu_ref during early init. Disable refcnting.
5164 */
5165 css->flags |= CSS_NO_REF;
5166
Tejun Heo15a4c832014-05-04 15:09:14 -04005167 if (early) {
Tejun Heo9395a452014-05-14 09:15:02 -04005168 /* allocation can't be done safely during early init */
Tejun Heo15a4c832014-05-04 15:09:14 -04005169 css->id = 1;
5170 } else {
5171 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2, GFP_KERNEL);
5172 BUG_ON(css->id < 0);
5173 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07005174
Li Zefane8d55fd2008-04-29 01:00:13 -07005175 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07005176 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07005177 * newly registered, all tasks and hence the
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005178 * init_css_set is in the subsystem's root cgroup. */
Tejun Heoaec25022014-02-08 10:36:58 -05005179 init_css_set.subsys[ss->id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005180
Aleksa Saraicb4a3162015-06-06 10:02:14 +10005181 have_fork_callback |= (bool)ss->fork << ss->id;
5182 have_exit_callback |= (bool)ss->exit << ss->id;
Aleksa Sarai7e476822015-06-09 21:32:09 +10005183 have_canfork_callback |= (bool)ss->can_fork << ss->id;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005184
Li Zefane8d55fd2008-04-29 01:00:13 -07005185 /* At system boot, before all subsystems have been
5186 * registered, no tasks have been forked, so we don't
5187 * need to invoke fork callbacks here. */
5188 BUG_ON(!list_empty(&init_task.tasks));
5189
Tejun Heoae7f1642013-08-13 20:22:50 -04005190 BUG_ON(online_css(css));
Tejun Heoa8638032012-11-09 09:12:29 -08005191
Tejun Heo648bb562012-11-19 08:13:36 -08005192 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005193}
5194
5195/**
Li Zefana043e3b2008-02-23 15:24:09 -08005196 * cgroup_init_early - cgroup initialization at system boot
5197 *
5198 * Initialize cgroups at system boot, and initialize any
5199 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07005200 */
5201int __init cgroup_init_early(void)
5202{
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04005203 static struct cgroup_sb_opts __initdata opts;
Tejun Heo30159ec2013-06-25 11:53:37 -07005204 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005205 int i;
Tejun Heo30159ec2013-06-25 11:53:37 -07005206
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005207 init_cgroup_root(&cgrp_dfl_root, &opts);
Tejun Heo3b514d22014-05-16 13:22:47 -04005208 cgrp_dfl_root.cgrp.self.flags |= CSS_NO_REF;
5209
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07005210 RCU_INIT_POINTER(init_task.cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07005211
Tejun Heo3ed80a62014-02-08 10:36:58 -05005212 for_each_subsys(ss, i) {
Tejun Heoaec25022014-02-08 10:36:58 -05005213 WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id,
Tejun Heo073219e2014-02-08 10:36:58 -05005214 "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p name:id=%d:%s\n",
5215 i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free,
Tejun Heoaec25022014-02-08 10:36:58 -05005216 ss->id, ss->name);
Tejun Heo073219e2014-02-08 10:36:58 -05005217 WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN,
5218 "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005219
Tejun Heoaec25022014-02-08 10:36:58 -05005220 ss->id = i;
Tejun Heo073219e2014-02-08 10:36:58 -05005221 ss->name = cgroup_subsys_name[i];
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005222 if (!ss->legacy_name)
5223 ss->legacy_name = cgroup_subsys_name[i];
Paul Menageddbcc7e2007-10-18 23:39:30 -07005224
5225 if (ss->early_init)
Tejun Heo15a4c832014-05-04 15:09:14 -04005226 cgroup_init_subsys(ss, true);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005227 }
5228 return 0;
5229}
5230
Tejun Heoa3e72732015-09-25 16:24:27 -04005231static unsigned long cgroup_disable_mask __initdata;
5232
Paul Menageddbcc7e2007-10-18 23:39:30 -07005233/**
Li Zefana043e3b2008-02-23 15:24:09 -08005234 * cgroup_init - cgroup initialization
5235 *
5236 * Register cgroup filesystem and /proc file, and initialize
5237 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07005238 */
5239int __init cgroup_init(void)
5240{
Tejun Heo30159ec2013-06-25 11:53:37 -07005241 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +08005242 unsigned long key;
Tejun Heo172a2c062014-03-19 10:23:53 -04005243 int ssid, err;
Paul Menagea4243162007-10-18 23:39:35 -07005244
Tejun Heo1ed13282015-09-16 12:53:17 -04005245 BUG_ON(percpu_init_rwsem(&cgroup_threadgroup_rwsem));
Tejun Heoa14c6872014-07-15 11:05:09 -04005246 BUG_ON(cgroup_init_cftypes(NULL, cgroup_dfl_base_files));
5247 BUG_ON(cgroup_init_cftypes(NULL, cgroup_legacy_base_files));
Paul Menageddbcc7e2007-10-18 23:39:30 -07005248
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005249 mutex_lock(&cgroup_mutex);
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005250
Tejun Heo82fe9b02013-06-25 11:53:37 -07005251 /* Add init_css_set to the hash table */
5252 key = css_set_hash(init_css_set.subsys);
5253 hash_add(css_set_table, &init_css_set.hlist, key);
5254
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005255 BUG_ON(cgroup_setup_root(&cgrp_dfl_root, 0));
Greg KH676db4a2010-08-05 13:53:35 -07005256
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005257 mutex_unlock(&cgroup_mutex);
5258
Tejun Heo172a2c062014-03-19 10:23:53 -04005259 for_each_subsys(ss, ssid) {
Tejun Heo15a4c832014-05-04 15:09:14 -04005260 if (ss->early_init) {
5261 struct cgroup_subsys_state *css =
5262 init_css_set.subsys[ss->id];
5263
5264 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2,
5265 GFP_KERNEL);
5266 BUG_ON(css->id < 0);
5267 } else {
5268 cgroup_init_subsys(ss, false);
5269 }
Tejun Heo172a2c062014-03-19 10:23:53 -04005270
Tejun Heo2d8f2432014-04-23 11:13:15 -04005271 list_add_tail(&init_css_set.e_cset_node[ssid],
5272 &cgrp_dfl_root.cgrp.e_csets[ssid]);
Tejun Heo172a2c062014-03-19 10:23:53 -04005273
5274 /*
Li Zefanc731ae12014-06-05 17:16:30 +08005275 * Setting dfl_root subsys_mask needs to consider the
5276 * disabled flag and cftype registration needs kmalloc,
5277 * both of which aren't available during early_init.
Tejun Heo172a2c062014-03-19 10:23:53 -04005278 */
Tejun Heoa3e72732015-09-25 16:24:27 -04005279 if (cgroup_disable_mask & (1 << ssid)) {
5280 static_branch_disable(cgroup_subsys_enabled_key[ssid]);
5281 printk(KERN_INFO "Disabling %s control group subsystem\n",
5282 ss->name);
Tejun Heoa8ddc822014-07-15 11:05:10 -04005283 continue;
Tejun Heoa3e72732015-09-25 16:24:27 -04005284 }
Tejun Heoa8ddc822014-07-15 11:05:10 -04005285
5286 cgrp_dfl_root.subsys_mask |= 1 << ss->id;
5287
5288 if (cgroup_legacy_files_on_dfl && !ss->dfl_cftypes)
5289 ss->dfl_cftypes = ss->legacy_cftypes;
5290
Tejun Heo5de4fa12014-07-15 11:05:10 -04005291 if (!ss->dfl_cftypes)
5292 cgrp_dfl_root_inhibit_ss_mask |= 1 << ss->id;
5293
Tejun Heoa8ddc822014-07-15 11:05:10 -04005294 if (ss->dfl_cftypes == ss->legacy_cftypes) {
5295 WARN_ON(cgroup_add_cftypes(ss, ss->dfl_cftypes));
5296 } else {
5297 WARN_ON(cgroup_add_dfl_cftypes(ss, ss->dfl_cftypes));
5298 WARN_ON(cgroup_add_legacy_cftypes(ss, ss->legacy_cftypes));
Li Zefanc731ae12014-06-05 17:16:30 +08005299 }
Vladimir Davydov295458e2015-02-19 17:34:46 +03005300
5301 if (ss->bind)
5302 ss->bind(init_css_set.subsys[ssid]);
Tejun Heo172a2c062014-03-19 10:23:53 -04005303 }
Greg KH676db4a2010-08-05 13:53:35 -07005304
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -05005305 err = sysfs_create_mount_point(fs_kobj, "cgroup");
5306 if (err)
5307 return err;
Paul Menagea4243162007-10-18 23:39:35 -07005308
5309 err = register_filesystem(&cgroup_fs_type);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005310 if (err < 0) {
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -05005311 sysfs_remove_mount_point(fs_kobj, "cgroup");
Tejun Heo2bd59d42014-02-11 11:52:49 -05005312 return err;
Paul Menagea4243162007-10-18 23:39:35 -07005313 }
5314
5315 proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations);
Tejun Heo2bd59d42014-02-11 11:52:49 -05005316 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005317}
Paul Menageb4f48b62007-10-18 23:39:33 -07005318
Tejun Heoe5fca242013-11-22 17:14:39 -05005319static int __init cgroup_wq_init(void)
5320{
5321 /*
5322 * There isn't much point in executing destruction path in
5323 * parallel. Good chunk is serialized with cgroup_mutex anyway.
Tejun Heo1a115332014-02-12 19:06:19 -05005324 * Use 1 for @max_active.
Tejun Heoe5fca242013-11-22 17:14:39 -05005325 *
5326 * We would prefer to do this in cgroup_init() above, but that
5327 * is called before init_workqueues(): so leave this until after.
5328 */
Tejun Heo1a115332014-02-12 19:06:19 -05005329 cgroup_destroy_wq = alloc_workqueue("cgroup_destroy", 0, 1);
Tejun Heoe5fca242013-11-22 17:14:39 -05005330 BUG_ON(!cgroup_destroy_wq);
Tejun Heob1a21362013-11-29 10:42:58 -05005331
5332 /*
5333 * Used to destroy pidlists and separate to serve as flush domain.
5334 * Cap @max_active to 1 too.
5335 */
5336 cgroup_pidlist_destroy_wq = alloc_workqueue("cgroup_pidlist_destroy",
5337 0, 1);
5338 BUG_ON(!cgroup_pidlist_destroy_wq);
5339
Tejun Heoe5fca242013-11-22 17:14:39 -05005340 return 0;
5341}
5342core_initcall(cgroup_wq_init);
5343
Paul Menagea4243162007-10-18 23:39:35 -07005344/*
5345 * proc_cgroup_show()
5346 * - Print task's cgroup paths into seq_file, one line for each hierarchy
5347 * - Used for /proc/<pid>/cgroup.
Paul Menagea4243162007-10-18 23:39:35 -07005348 */
Zefan Li006f4ac2014-09-18 16:03:15 +08005349int proc_cgroup_show(struct seq_file *m, struct pid_namespace *ns,
5350 struct pid *pid, struct task_struct *tsk)
Paul Menagea4243162007-10-18 23:39:35 -07005351{
Tejun Heoe61734c2014-02-12 09:29:50 -05005352 char *buf, *path;
Paul Menagea4243162007-10-18 23:39:35 -07005353 int retval;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005354 struct cgroup_root *root;
Paul Menagea4243162007-10-18 23:39:35 -07005355
5356 retval = -ENOMEM;
Tejun Heoe61734c2014-02-12 09:29:50 -05005357 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagea4243162007-10-18 23:39:35 -07005358 if (!buf)
5359 goto out;
5360
Paul Menagea4243162007-10-18 23:39:35 -07005361 mutex_lock(&cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005362 spin_lock_bh(&css_set_lock);
Paul Menagea4243162007-10-18 23:39:35 -07005363
Tejun Heo985ed672014-03-19 10:23:53 -04005364 for_each_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07005365 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07005366 struct cgroup *cgrp;
Tejun Heob85d2042013-12-06 15:11:57 -05005367 int ssid, count = 0;
Paul Menagea4243162007-10-18 23:39:35 -07005368
Tejun Heoa2dd4242014-03-19 10:23:55 -04005369 if (root == &cgrp_dfl_root && !cgrp_dfl_root_visible)
Tejun Heo985ed672014-03-19 10:23:53 -04005370 continue;
5371
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005372 seq_printf(m, "%d:", root->hierarchy_id);
Tejun Heod98817d2015-08-18 13:58:16 -07005373 if (root != &cgrp_dfl_root)
5374 for_each_subsys(ss, ssid)
5375 if (root->subsys_mask & (1 << ssid))
5376 seq_printf(m, "%s%s", count++ ? "," : "",
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005377 ss->legacy_name);
Paul Menagec6d57f32009-09-23 15:56:19 -07005378 if (strlen(root->name))
5379 seq_printf(m, "%sname=%s", count ? "," : "",
5380 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07005381 seq_putc(m, ':');
Paul Menage7717f7b2009-09-23 15:56:22 -07005382 cgrp = task_cgroup_from_root(tsk, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05005383 path = cgroup_path(cgrp, buf, PATH_MAX);
5384 if (!path) {
5385 retval = -ENAMETOOLONG;
Paul Menagea4243162007-10-18 23:39:35 -07005386 goto out_unlock;
Tejun Heoe61734c2014-02-12 09:29:50 -05005387 }
5388 seq_puts(m, path);
Paul Menagea4243162007-10-18 23:39:35 -07005389 seq_putc(m, '\n');
5390 }
5391
Zefan Li006f4ac2014-09-18 16:03:15 +08005392 retval = 0;
Paul Menagea4243162007-10-18 23:39:35 -07005393out_unlock:
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005394 spin_unlock_bh(&css_set_lock);
Paul Menagea4243162007-10-18 23:39:35 -07005395 mutex_unlock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07005396 kfree(buf);
5397out:
5398 return retval;
5399}
5400
Paul Menagea4243162007-10-18 23:39:35 -07005401/* Display information about each subsystem and each hierarchy */
5402static int proc_cgroupstats_show(struct seq_file *m, void *v)
5403{
Tejun Heo30159ec2013-06-25 11:53:37 -07005404 struct cgroup_subsys *ss;
Paul Menagea4243162007-10-18 23:39:35 -07005405 int i;
Paul Menagea4243162007-10-18 23:39:35 -07005406
Paul Menage8bab8dd2008-04-04 14:29:57 -07005407 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08005408 /*
5409 * ideally we don't want subsystems moving around while we do this.
5410 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
5411 * subsys/hierarchy state.
5412 */
Paul Menagea4243162007-10-18 23:39:35 -07005413 mutex_lock(&cgroup_mutex);
Tejun Heo30159ec2013-06-25 11:53:37 -07005414
5415 for_each_subsys(ss, i)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005416 seq_printf(m, "%s\t%d\t%d\t%d\n",
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005417 ss->legacy_name, ss->root->hierarchy_id,
Tejun Heofc5ed1e2015-09-18 11:56:28 -04005418 atomic_read(&ss->root->nr_cgrps),
5419 cgroup_ssid_enabled(i));
Tejun Heo30159ec2013-06-25 11:53:37 -07005420
Paul Menagea4243162007-10-18 23:39:35 -07005421 mutex_unlock(&cgroup_mutex);
5422 return 0;
5423}
5424
5425static int cgroupstats_open(struct inode *inode, struct file *file)
5426{
Al Viro9dce07f2008-03-29 03:07:28 +00005427 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07005428}
5429
Alexey Dobriyan828c0952009-10-01 15:43:56 -07005430static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07005431 .open = cgroupstats_open,
5432 .read = seq_read,
5433 .llseek = seq_lseek,
5434 .release = single_release,
5435};
5436
Aleksa Sarai7e476822015-06-09 21:32:09 +10005437static void **subsys_canfork_priv_p(void *ss_priv[CGROUP_CANFORK_COUNT], int i)
5438{
5439 if (CGROUP_CANFORK_START <= i && i < CGROUP_CANFORK_END)
5440 return &ss_priv[i - CGROUP_CANFORK_START];
5441 return NULL;
5442}
5443
5444static void *subsys_canfork_priv(void *ss_priv[CGROUP_CANFORK_COUNT], int i)
5445{
5446 void **private = subsys_canfork_priv_p(ss_priv, i);
5447 return private ? *private : NULL;
5448}
5449
Paul Menageb4f48b62007-10-18 23:39:33 -07005450/**
Tejun Heoeaf797a2014-02-25 10:04:03 -05005451 * cgroup_fork - initialize cgroup related fields during copy_process()
Li Zefana043e3b2008-02-23 15:24:09 -08005452 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07005453 *
Tejun Heoeaf797a2014-02-25 10:04:03 -05005454 * A task is associated with the init_css_set until cgroup_post_fork()
5455 * attaches it to the parent's css_set. Empty cg_list indicates that
5456 * @child isn't holding reference to its css_set.
Paul Menageb4f48b62007-10-18 23:39:33 -07005457 */
5458void cgroup_fork(struct task_struct *child)
5459{
Tejun Heoeaf797a2014-02-25 10:04:03 -05005460 RCU_INIT_POINTER(child->cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07005461 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07005462}
5463
5464/**
Aleksa Sarai7e476822015-06-09 21:32:09 +10005465 * cgroup_can_fork - called on a new task before the process is exposed
5466 * @child: the task in question.
5467 *
5468 * This calls the subsystem can_fork() callbacks. If the can_fork() callback
5469 * returns an error, the fork aborts with that error code. This allows for
5470 * a cgroup subsystem to conditionally allow or deny new forks.
5471 */
5472int cgroup_can_fork(struct task_struct *child,
5473 void *ss_priv[CGROUP_CANFORK_COUNT])
5474{
5475 struct cgroup_subsys *ss;
5476 int i, j, ret;
5477
5478 for_each_subsys_which(ss, i, &have_canfork_callback) {
5479 ret = ss->can_fork(child, subsys_canfork_priv_p(ss_priv, i));
5480 if (ret)
5481 goto out_revert;
5482 }
5483
5484 return 0;
5485
5486out_revert:
5487 for_each_subsys(ss, j) {
5488 if (j >= i)
5489 break;
5490 if (ss->cancel_fork)
5491 ss->cancel_fork(child, subsys_canfork_priv(ss_priv, j));
5492 }
5493
5494 return ret;
5495}
5496
5497/**
5498 * cgroup_cancel_fork - called if a fork failed after cgroup_can_fork()
5499 * @child: the task in question
5500 *
5501 * This calls the cancel_fork() callbacks if a fork failed *after*
5502 * cgroup_can_fork() succeded.
5503 */
5504void cgroup_cancel_fork(struct task_struct *child,
5505 void *ss_priv[CGROUP_CANFORK_COUNT])
5506{
5507 struct cgroup_subsys *ss;
5508 int i;
5509
5510 for_each_subsys(ss, i)
5511 if (ss->cancel_fork)
5512 ss->cancel_fork(child, subsys_canfork_priv(ss_priv, i));
5513}
5514
5515/**
Li Zefana043e3b2008-02-23 15:24:09 -08005516 * cgroup_post_fork - called on a new task after adding it to the task list
5517 * @child: the task in question
5518 *
Tejun Heo5edee612012-10-16 15:03:14 -07005519 * Adds the task to the list running through its css_set if necessary and
5520 * call the subsystem fork() callbacks. Has to be after the task is
5521 * visible on the task list in case we race with the first call to
Tejun Heo0942eee2013-08-08 20:11:26 -04005522 * cgroup_task_iter_start() - to guarantee that the new task ends up on its
Tejun Heo5edee612012-10-16 15:03:14 -07005523 * list.
Li Zefana043e3b2008-02-23 15:24:09 -08005524 */
Aleksa Sarai7e476822015-06-09 21:32:09 +10005525void cgroup_post_fork(struct task_struct *child,
5526 void *old_ss_priv[CGROUP_CANFORK_COUNT])
Paul Menage817929e2007-10-18 23:39:36 -07005527{
Tejun Heo30159ec2013-06-25 11:53:37 -07005528 struct cgroup_subsys *ss;
Tejun Heo5edee612012-10-16 15:03:14 -07005529 int i;
5530
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005531 /*
Dongsheng Yang251f8c02014-08-25 19:27:52 +08005532 * This may race against cgroup_enable_task_cg_lists(). As that
Tejun Heoeaf797a2014-02-25 10:04:03 -05005533 * function sets use_task_css_set_links before grabbing
5534 * tasklist_lock and we just went through tasklist_lock to add
5535 * @child, it's guaranteed that either we see the set
5536 * use_task_css_set_links or cgroup_enable_task_cg_lists() sees
5537 * @child during its iteration.
5538 *
5539 * If we won the race, @child is associated with %current's
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005540 * css_set. Grabbing css_set_lock guarantees both that the
Tejun Heoeaf797a2014-02-25 10:04:03 -05005541 * association is stable, and, on completion of the parent's
5542 * migration, @child is visible in the source of migration or
5543 * already in the destination cgroup. This guarantee is necessary
5544 * when implementing operations which need to migrate all tasks of
5545 * a cgroup to another.
5546 *
Dongsheng Yang251f8c02014-08-25 19:27:52 +08005547 * Note that if we lose to cgroup_enable_task_cg_lists(), @child
Tejun Heoeaf797a2014-02-25 10:04:03 -05005548 * will remain in init_css_set. This is safe because all tasks are
5549 * in the init_css_set before cg_links is enabled and there's no
5550 * operation which transfers all tasks out of init_css_set.
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005551 */
Paul Menage817929e2007-10-18 23:39:36 -07005552 if (use_task_css_set_links) {
Tejun Heoeaf797a2014-02-25 10:04:03 -05005553 struct css_set *cset;
5554
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005555 spin_lock_bh(&css_set_lock);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005556 cset = task_css_set(current);
Tejun Heoeaf797a2014-02-25 10:04:03 -05005557 if (list_empty(&child->cg_list)) {
Tejun Heoeaf797a2014-02-25 10:04:03 -05005558 get_css_set(cset);
Tejun Heof6d7d042015-10-15 16:41:52 -04005559 css_set_move_task(child, NULL, cset, false);
Tejun Heoeaf797a2014-02-25 10:04:03 -05005560 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005561 spin_unlock_bh(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -07005562 }
Tejun Heo5edee612012-10-16 15:03:14 -07005563
5564 /*
5565 * Call ss->fork(). This must happen after @child is linked on
5566 * css_set; otherwise, @child might change state between ->fork()
5567 * and addition to css_set.
5568 */
Aleksa Saraicb4a3162015-06-06 10:02:14 +10005569 for_each_subsys_which(ss, i, &have_fork_callback)
Aleksa Sarai7e476822015-06-09 21:32:09 +10005570 ss->fork(child, subsys_canfork_priv(old_ss_priv, i));
Paul Menage817929e2007-10-18 23:39:36 -07005571}
Tejun Heo5edee612012-10-16 15:03:14 -07005572
Paul Menage817929e2007-10-18 23:39:36 -07005573/**
Paul Menageb4f48b62007-10-18 23:39:33 -07005574 * cgroup_exit - detach cgroup from exiting task
5575 * @tsk: pointer to task_struct of exiting process
5576 *
5577 * Description: Detach cgroup from @tsk and release it.
5578 *
5579 * Note that cgroups marked notify_on_release force every task in
5580 * them to take the global cgroup_mutex mutex when exiting.
5581 * This could impact scaling on very large systems. Be reluctant to
5582 * use notify_on_release cgroups where very high task exit scaling
5583 * is required on large systems.
5584 *
Tejun Heo0e1d7682014-02-25 10:04:03 -05005585 * We set the exiting tasks cgroup to the root cgroup (top_cgroup). We
5586 * call cgroup_exit() while the task is still competent to handle
5587 * notify_on_release(), then leave the task attached to the root cgroup in
5588 * each hierarchy for the remainder of its exit. No need to bother with
5589 * init_css_set refcnting. init_css_set never goes away and we can't race
Li Zefane8604cb2014-03-28 15:18:27 +08005590 * with migration path - PF_EXITING is visible to migration path.
Paul Menageb4f48b62007-10-18 23:39:33 -07005591 */
Li Zefan1ec41832014-03-28 15:22:19 +08005592void cgroup_exit(struct task_struct *tsk)
Paul Menageb4f48b62007-10-18 23:39:33 -07005593{
Tejun Heo30159ec2013-06-25 11:53:37 -07005594 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -07005595 struct css_set *cset;
Tejun Heoeaf797a2014-02-25 10:04:03 -05005596 bool put_cset = false;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005597 int i;
Paul Menage817929e2007-10-18 23:39:36 -07005598
5599 /*
Tejun Heo0e1d7682014-02-25 10:04:03 -05005600 * Unlink from @tsk from its css_set. As migration path can't race
Tejun Heo0de09422015-10-15 16:41:49 -04005601 * with us, we can check css_set and cg_list without synchronization.
Paul Menage817929e2007-10-18 23:39:36 -07005602 */
Tejun Heo0de09422015-10-15 16:41:49 -04005603 cset = task_css_set(tsk);
5604
Paul Menage817929e2007-10-18 23:39:36 -07005605 if (!list_empty(&tsk->cg_list)) {
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005606 spin_lock_bh(&css_set_lock);
Tejun Heof6d7d042015-10-15 16:41:52 -04005607 css_set_move_task(tsk, cset, NULL, false);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005608 spin_unlock_bh(&css_set_lock);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005609 put_cset = true;
Paul Menage817929e2007-10-18 23:39:36 -07005610 }
5611
Paul Menageb4f48b62007-10-18 23:39:33 -07005612 /* Reassign the task to the init_css_set. */
Tejun Heoa8ad8052013-06-21 15:52:04 -07005613 RCU_INIT_POINTER(tsk->cgroups, &init_css_set);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005614
Aleksa Saraicb4a3162015-06-06 10:02:14 +10005615 /* see cgroup_post_fork() for details */
5616 for_each_subsys_which(ss, i, &have_exit_callback) {
5617 struct cgroup_subsys_state *old_css = cset->subsys[i];
5618 struct cgroup_subsys_state *css = task_css(tsk, i);
Tejun Heo30159ec2013-06-25 11:53:37 -07005619
Aleksa Saraicb4a3162015-06-06 10:02:14 +10005620 ss->exit(css, old_css, tsk);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005621 }
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005622
Tejun Heoeaf797a2014-02-25 10:04:03 -05005623 if (put_cset)
Zefan Lia25eb522014-09-19 16:51:00 +08005624 put_css_set(cset);
Paul Menageb4f48b62007-10-18 23:39:33 -07005625}
Paul Menage697f4162007-10-18 23:39:34 -07005626
Paul Menagebd89aab2007-10-18 23:40:44 -07005627static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07005628{
Tejun Heo27bd4db2015-10-15 16:41:50 -04005629 if (notify_on_release(cgrp) && !cgroup_is_populated(cgrp) &&
Zefan Li971ff492014-09-18 16:06:19 +08005630 !css_has_online_children(&cgrp->self) && !cgroup_is_dead(cgrp))
5631 schedule_work(&cgrp->release_agent_work);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005632}
5633
Paul Menage81a6a5c2007-10-18 23:39:38 -07005634/*
5635 * Notify userspace when a cgroup is released, by running the
5636 * configured release agent with the name of the cgroup (path
5637 * relative to the root of cgroup file system) as the argument.
5638 *
5639 * Most likely, this user command will try to rmdir this cgroup.
5640 *
5641 * This races with the possibility that some other task will be
5642 * attached to this cgroup before it is removed, or that some other
5643 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
5644 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
5645 * unused, and this cgroup will be reprieved from its death sentence,
5646 * to continue to serve a useful existence. Next time it's released,
5647 * we will get notified again, if it still has 'notify_on_release' set.
5648 *
5649 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
5650 * means only wait until the task is successfully execve()'d. The
5651 * separate release agent task is forked by call_usermodehelper(),
5652 * then control in this thread returns here, without waiting for the
5653 * release agent task. We don't bother to wait because the caller of
5654 * this routine has no use for the exit status of the release agent
5655 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07005656 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07005657static void cgroup_release_agent(struct work_struct *work)
5658{
Zefan Li971ff492014-09-18 16:06:19 +08005659 struct cgroup *cgrp =
5660 container_of(work, struct cgroup, release_agent_work);
5661 char *pathbuf = NULL, *agentbuf = NULL, *path;
5662 char *argv[3], *envp[3];
5663
Paul Menage81a6a5c2007-10-18 23:39:38 -07005664 mutex_lock(&cgroup_mutex);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005665
Zefan Li971ff492014-09-18 16:06:19 +08005666 pathbuf = kmalloc(PATH_MAX, GFP_KERNEL);
5667 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
5668 if (!pathbuf || !agentbuf)
5669 goto out;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005670
Zefan Li971ff492014-09-18 16:06:19 +08005671 path = cgroup_path(cgrp, pathbuf, PATH_MAX);
5672 if (!path)
5673 goto out;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005674
Zefan Li971ff492014-09-18 16:06:19 +08005675 argv[0] = agentbuf;
5676 argv[1] = path;
5677 argv[2] = NULL;
5678
5679 /* minimal command environment */
5680 envp[0] = "HOME=/";
5681 envp[1] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
5682 envp[2] = NULL;
5683
Paul Menage81a6a5c2007-10-18 23:39:38 -07005684 mutex_unlock(&cgroup_mutex);
Zefan Li971ff492014-09-18 16:06:19 +08005685 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Zefan Li3e2cd912014-09-20 14:35:43 +08005686 goto out_free;
Zefan Li971ff492014-09-18 16:06:19 +08005687out:
Zefan Li3e2cd912014-09-20 14:35:43 +08005688 mutex_unlock(&cgroup_mutex);
5689out_free:
Zefan Li971ff492014-09-18 16:06:19 +08005690 kfree(agentbuf);
5691 kfree(pathbuf);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005692}
Paul Menage8bab8dd2008-04-04 14:29:57 -07005693
5694static int __init cgroup_disable(char *str)
5695{
Tejun Heo30159ec2013-06-25 11:53:37 -07005696 struct cgroup_subsys *ss;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005697 char *token;
Tejun Heo30159ec2013-06-25 11:53:37 -07005698 int i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005699
5700 while ((token = strsep(&str, ",")) != NULL) {
5701 if (!*token)
5702 continue;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005703
Tejun Heo3ed80a62014-02-08 10:36:58 -05005704 for_each_subsys(ss, i) {
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005705 if (strcmp(token, ss->name) &&
5706 strcmp(token, ss->legacy_name))
5707 continue;
Tejun Heoa3e72732015-09-25 16:24:27 -04005708 cgroup_disable_mask |= 1 << i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005709 }
5710 }
5711 return 1;
5712}
5713__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005714
Tejun Heoa8ddc822014-07-15 11:05:10 -04005715static int __init cgroup_set_legacy_files_on_dfl(char *str)
5716{
5717 printk("cgroup: using legacy files on the default hierarchy\n");
5718 cgroup_legacy_files_on_dfl = true;
5719 return 0;
5720}
5721__setup("cgroup__DEVEL__legacy_files_on_dfl", cgroup_set_legacy_files_on_dfl);
5722
Tejun Heob77d7b62013-08-13 11:01:54 -04005723/**
Tejun Heoec903c02014-05-13 12:11:01 -04005724 * css_tryget_online_from_dir - get corresponding css from a cgroup dentry
Tejun Heo35cf0832013-08-26 18:40:56 -04005725 * @dentry: directory dentry of interest
5726 * @ss: subsystem of interest
Tejun Heob77d7b62013-08-13 11:01:54 -04005727 *
Tejun Heo5a17f542014-02-11 11:52:47 -05005728 * If @dentry is a directory for a cgroup which has @ss enabled on it, try
5729 * to get the corresponding css and return it. If such css doesn't exist
5730 * or can't be pinned, an ERR_PTR value is returned.
Stephane Eraniane5d13672011-02-14 11:20:01 +02005731 */
Tejun Heoec903c02014-05-13 12:11:01 -04005732struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry,
5733 struct cgroup_subsys *ss)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005734{
Tejun Heo2bd59d42014-02-11 11:52:49 -05005735 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
5736 struct cgroup_subsys_state *css = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005737 struct cgroup *cgrp;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005738
Tejun Heo35cf0832013-08-26 18:40:56 -04005739 /* is @dentry a cgroup dir? */
Tejun Heo2bd59d42014-02-11 11:52:49 -05005740 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
5741 kernfs_type(kn) != KERNFS_DIR)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005742 return ERR_PTR(-EBADF);
5743
Tejun Heo5a17f542014-02-11 11:52:47 -05005744 rcu_read_lock();
5745
Tejun Heo2bd59d42014-02-11 11:52:49 -05005746 /*
5747 * This path doesn't originate from kernfs and @kn could already
5748 * have been or be removed at any point. @kn->priv is RCU
Li Zefana4189482014-09-04 14:43:07 +08005749 * protected for this access. See css_release_work_fn() for details.
Tejun Heo2bd59d42014-02-11 11:52:49 -05005750 */
5751 cgrp = rcu_dereference(kn->priv);
5752 if (cgrp)
5753 css = cgroup_css(cgrp, ss);
Tejun Heo5a17f542014-02-11 11:52:47 -05005754
Tejun Heoec903c02014-05-13 12:11:01 -04005755 if (!css || !css_tryget_online(css))
Tejun Heo5a17f542014-02-11 11:52:47 -05005756 css = ERR_PTR(-ENOENT);
5757
5758 rcu_read_unlock();
5759 return css;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005760}
Stephane Eraniane5d13672011-02-14 11:20:01 +02005761
Li Zefan1cb650b2013-08-19 10:05:24 +08005762/**
5763 * css_from_id - lookup css by id
5764 * @id: the cgroup id
5765 * @ss: cgroup subsys to be looked into
5766 *
5767 * Returns the css if there's valid one with @id, otherwise returns NULL.
5768 * Should be called under rcu_read_lock().
5769 */
5770struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss)
5771{
Tejun Heo6fa49182014-05-04 15:09:13 -04005772 WARN_ON_ONCE(!rcu_read_lock_held());
Vladimir Davydovadbe4272015-04-15 16:13:00 -07005773 return id > 0 ? idr_find(&ss->css_idr, id) : NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005774}
5775
Paul Menagefe693432009-09-23 15:56:20 -07005776#ifdef CONFIG_CGROUP_DEBUG
Tejun Heoeb954192013-08-08 20:11:23 -04005777static struct cgroup_subsys_state *
5778debug_css_alloc(struct cgroup_subsys_state *parent_css)
Paul Menagefe693432009-09-23 15:56:20 -07005779{
5780 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
5781
5782 if (!css)
5783 return ERR_PTR(-ENOMEM);
5784
5785 return css;
5786}
5787
Tejun Heoeb954192013-08-08 20:11:23 -04005788static void debug_css_free(struct cgroup_subsys_state *css)
Paul Menagefe693432009-09-23 15:56:20 -07005789{
Tejun Heoeb954192013-08-08 20:11:23 -04005790 kfree(css);
Paul Menagefe693432009-09-23 15:56:20 -07005791}
5792
Tejun Heo182446d2013-08-08 20:11:24 -04005793static u64 debug_taskcount_read(struct cgroup_subsys_state *css,
5794 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005795{
Tejun Heo182446d2013-08-08 20:11:24 -04005796 return cgroup_task_count(css->cgroup);
Paul Menagefe693432009-09-23 15:56:20 -07005797}
5798
Tejun Heo182446d2013-08-08 20:11:24 -04005799static u64 current_css_set_read(struct cgroup_subsys_state *css,
5800 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005801{
5802 return (u64)(unsigned long)current->cgroups;
5803}
5804
Tejun Heo182446d2013-08-08 20:11:24 -04005805static u64 current_css_set_refcount_read(struct cgroup_subsys_state *css,
Li Zefan03c78cb2013-06-14 11:17:19 +08005806 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005807{
5808 u64 count;
5809
5810 rcu_read_lock();
Tejun Heoa8ad8052013-06-21 15:52:04 -07005811 count = atomic_read(&task_css_set(current)->refcount);
Paul Menagefe693432009-09-23 15:56:20 -07005812 rcu_read_unlock();
5813 return count;
5814}
5815
Tejun Heo2da8ca82013-12-05 12:28:04 -05005816static int current_css_set_cg_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005817{
Tejun Heo69d02062013-06-12 21:04:50 -07005818 struct cgrp_cset_link *link;
Tejun Heo5abb8852013-06-12 21:04:49 -07005819 struct css_set *cset;
Tejun Heoe61734c2014-02-12 09:29:50 -05005820 char *name_buf;
Paul Menage7717f7b2009-09-23 15:56:22 -07005821
Tejun Heoe61734c2014-02-12 09:29:50 -05005822 name_buf = kmalloc(NAME_MAX + 1, GFP_KERNEL);
5823 if (!name_buf)
5824 return -ENOMEM;
Paul Menage7717f7b2009-09-23 15:56:22 -07005825
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005826 spin_lock_bh(&css_set_lock);
Paul Menage7717f7b2009-09-23 15:56:22 -07005827 rcu_read_lock();
Tejun Heo5abb8852013-06-12 21:04:49 -07005828 cset = rcu_dereference(current->cgroups);
Tejun Heo69d02062013-06-12 21:04:50 -07005829 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07005830 struct cgroup *c = link->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -07005831
Tejun Heoa2dd4242014-03-19 10:23:55 -04005832 cgroup_name(c, name_buf, NAME_MAX + 1);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005833 seq_printf(seq, "Root %d group %s\n",
Tejun Heoa2dd4242014-03-19 10:23:55 -04005834 c->root->hierarchy_id, name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07005835 }
5836 rcu_read_unlock();
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005837 spin_unlock_bh(&css_set_lock);
Tejun Heoe61734c2014-02-12 09:29:50 -05005838 kfree(name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07005839 return 0;
5840}
5841
5842#define MAX_TASKS_SHOWN_PER_CSS 25
Tejun Heo2da8ca82013-12-05 12:28:04 -05005843static int cgroup_css_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005844{
Tejun Heo2da8ca82013-12-05 12:28:04 -05005845 struct cgroup_subsys_state *css = seq_css(seq);
Tejun Heo69d02062013-06-12 21:04:50 -07005846 struct cgrp_cset_link *link;
Paul Menage7717f7b2009-09-23 15:56:22 -07005847
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005848 spin_lock_bh(&css_set_lock);
Tejun Heo182446d2013-08-08 20:11:24 -04005849 list_for_each_entry(link, &css->cgroup->cset_links, cset_link) {
Tejun Heo69d02062013-06-12 21:04:50 -07005850 struct css_set *cset = link->cset;
Paul Menage7717f7b2009-09-23 15:56:22 -07005851 struct task_struct *task;
5852 int count = 0;
Tejun Heoc7561122014-02-25 10:04:01 -05005853
Tejun Heo5abb8852013-06-12 21:04:49 -07005854 seq_printf(seq, "css_set %p\n", cset);
Tejun Heoc7561122014-02-25 10:04:01 -05005855
Tejun Heo5abb8852013-06-12 21:04:49 -07005856 list_for_each_entry(task, &cset->tasks, cg_list) {
Tejun Heoc7561122014-02-25 10:04:01 -05005857 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
5858 goto overflow;
5859 seq_printf(seq, " task %d\n", task_pid_vnr(task));
Paul Menage7717f7b2009-09-23 15:56:22 -07005860 }
Tejun Heoc7561122014-02-25 10:04:01 -05005861
5862 list_for_each_entry(task, &cset->mg_tasks, cg_list) {
5863 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
5864 goto overflow;
5865 seq_printf(seq, " task %d\n", task_pid_vnr(task));
5866 }
5867 continue;
5868 overflow:
5869 seq_puts(seq, " ...\n");
Paul Menage7717f7b2009-09-23 15:56:22 -07005870 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005871 spin_unlock_bh(&css_set_lock);
Paul Menage7717f7b2009-09-23 15:56:22 -07005872 return 0;
5873}
5874
Tejun Heo182446d2013-08-08 20:11:24 -04005875static u64 releasable_read(struct cgroup_subsys_state *css, struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005876{
Tejun Heo27bd4db2015-10-15 16:41:50 -04005877 return (!cgroup_is_populated(css->cgroup) &&
Zefan Lia25eb522014-09-19 16:51:00 +08005878 !css_has_online_children(&css->cgroup->self));
Paul Menagefe693432009-09-23 15:56:20 -07005879}
5880
5881static struct cftype debug_files[] = {
5882 {
Paul Menagefe693432009-09-23 15:56:20 -07005883 .name = "taskcount",
5884 .read_u64 = debug_taskcount_read,
5885 },
5886
5887 {
5888 .name = "current_css_set",
5889 .read_u64 = current_css_set_read,
5890 },
5891
5892 {
5893 .name = "current_css_set_refcount",
5894 .read_u64 = current_css_set_refcount_read,
5895 },
5896
5897 {
Paul Menage7717f7b2009-09-23 15:56:22 -07005898 .name = "current_css_set_cg_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005899 .seq_show = current_css_set_cg_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07005900 },
5901
5902 {
5903 .name = "cgroup_css_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005904 .seq_show = cgroup_css_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07005905 },
5906
5907 {
Paul Menagefe693432009-09-23 15:56:20 -07005908 .name = "releasable",
5909 .read_u64 = releasable_read,
5910 },
Paul Menagefe693432009-09-23 15:56:20 -07005911
Tejun Heo4baf6e32012-04-01 12:09:55 -07005912 { } /* terminate */
5913};
Paul Menagefe693432009-09-23 15:56:20 -07005914
Tejun Heo073219e2014-02-08 10:36:58 -05005915struct cgroup_subsys debug_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08005916 .css_alloc = debug_css_alloc,
5917 .css_free = debug_css_free,
Tejun Heo55779642014-07-15 11:05:09 -04005918 .legacy_cftypes = debug_files,
Paul Menagefe693432009-09-23 15:56:20 -07005919};
5920#endif /* CONFIG_CGROUP_DEBUG */