blob: a6d484a667aa485ca7cf330fb6a1892c9f548f9c [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>
Arun Sharma600634972011-07-26 16:09:06 -070060#include <linux/atomic.h>
Tejun Heoe93ad192016-01-19 12:18:41 -050061#include <linux/cpuset.h>
Tejun Heobd1060a2015-12-07 17:38:53 -050062#include <net/sock.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070063
Tejun Heoe25e2cb2011-12-12 18:12:21 -080064/*
Tejun Heob1a21362013-11-29 10:42:58 -050065 * pidlists linger the following amount before being destroyed. The goal
66 * is avoiding frequent destruction in the middle of consecutive read calls
67 * Expiring in the middle is a performance problem not a correctness one.
68 * 1 sec should be enough.
69 */
70#define CGROUP_PIDLIST_DESTROY_DELAY HZ
71
Tejun Heo8d7e6fb2014-02-11 11:52:48 -050072#define CGROUP_FILE_NAME_MAX (MAX_CGROUP_TYPE_NAMELEN + \
73 MAX_CFTYPE_NAME + 2)
74
Tejun Heob1a21362013-11-29 10:42:58 -050075/*
Tejun Heoe25e2cb2011-12-12 18:12:21 -080076 * cgroup_mutex is the master lock. Any modification to cgroup or its
77 * hierarchy must be performed while holding it.
78 *
Tejun Heof0d9a5f2015-10-15 16:41:53 -040079 * css_set_lock protects task->cgroups pointer, the list of css_set
Tejun Heo0e1d7682014-02-25 10:04:03 -050080 * objects, and the chain of tasks off each css_set.
Tejun Heoe25e2cb2011-12-12 18:12:21 -080081 *
Tejun Heo0e1d7682014-02-25 10:04:03 -050082 * These locks are exported if CONFIG_PROVE_RCU so that accessors in
83 * cgroup.h can use them for lockdep annotations.
Tejun Heoe25e2cb2011-12-12 18:12:21 -080084 */
Tejun Heo22194492013-04-07 09:29:51 -070085#ifdef CONFIG_PROVE_RCU
86DEFINE_MUTEX(cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -040087DEFINE_SPINLOCK(css_set_lock);
Tejun Heo0e1d7682014-02-25 10:04:03 -050088EXPORT_SYMBOL_GPL(cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -040089EXPORT_SYMBOL_GPL(css_set_lock);
Tejun Heo22194492013-04-07 09:29:51 -070090#else
Paul Menage81a6a5c2007-10-18 23:39:38 -070091static DEFINE_MUTEX(cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -040092static DEFINE_SPINLOCK(css_set_lock);
Tejun Heo22194492013-04-07 09:29:51 -070093#endif
94
Tejun Heo69e943b2014-02-08 10:36:58 -050095/*
Tejun Heo15a4c832014-05-04 15:09:14 -040096 * Protects cgroup_idr and css_idr so that IDs can be released without
97 * grabbing cgroup_mutex.
Tejun Heo6fa49182014-05-04 15:09:13 -040098 */
99static DEFINE_SPINLOCK(cgroup_idr_lock);
100
101/*
Tejun Heo34c06252015-11-05 00:12:24 -0500102 * Protects cgroup_file->kn for !self csses. It synchronizes notifications
103 * against file removal/re-creation across css hiding.
104 */
105static DEFINE_SPINLOCK(cgroup_file_kn_lock);
106
107/*
Tejun Heo69e943b2014-02-08 10:36:58 -0500108 * Protects cgroup_subsys->release_agent_path. Modifying it also requires
109 * cgroup_mutex. Reading requires either cgroup_mutex or this spinlock.
110 */
111static DEFINE_SPINLOCK(release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700112
Tejun Heo1ed13282015-09-16 12:53:17 -0400113struct percpu_rw_semaphore cgroup_threadgroup_rwsem;
114
Tejun Heo8353da12014-05-13 12:19:23 -0400115#define cgroup_assert_mutex_or_rcu_locked() \
Paul E. McKenneyf78f5b92015-06-18 15:50:02 -0700116 RCU_LOCKDEP_WARN(!rcu_read_lock_held() && \
117 !lockdep_is_held(&cgroup_mutex), \
Tejun Heo8353da12014-05-13 12:19:23 -0400118 "cgroup_mutex or RCU read lock required");
Tejun Heo780cd8b2013-12-06 15:11:56 -0500119
Ben Blumaae8aab2010-03-10 15:22:07 -0800120/*
Tejun Heoe5fca242013-11-22 17:14:39 -0500121 * cgroup destruction makes heavy use of work items and there can be a lot
122 * of concurrent destructions. Use a separate workqueue so that cgroup
123 * destruction work items don't end up filling up max_active of system_wq
124 * which may lead to deadlock.
125 */
126static struct workqueue_struct *cgroup_destroy_wq;
127
128/*
Tejun Heob1a21362013-11-29 10:42:58 -0500129 * pidlist destructions need to be flushed on cgroup destruction. Use a
130 * separate workqueue as flush domain.
131 */
132static struct workqueue_struct *cgroup_pidlist_destroy_wq;
133
Tejun Heo3ed80a62014-02-08 10:36:58 -0500134/* generate an array of cgroup subsystem pointers */
Tejun Heo073219e2014-02-08 10:36:58 -0500135#define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys,
Tejun Heo3ed80a62014-02-08 10:36:58 -0500136static struct cgroup_subsys *cgroup_subsys[] = {
Paul Menageddbcc7e2007-10-18 23:39:30 -0700137#include <linux/cgroup_subsys.h>
138};
Tejun Heo073219e2014-02-08 10:36:58 -0500139#undef SUBSYS
140
141/* array of cgroup subsystem names */
142#define SUBSYS(_x) [_x ## _cgrp_id] = #_x,
143static const char *cgroup_subsys_name[] = {
144#include <linux/cgroup_subsys.h>
145};
146#undef SUBSYS
Paul Menageddbcc7e2007-10-18 23:39:30 -0700147
Tejun Heo49d1dc42015-09-18 11:56:28 -0400148/* array of static_keys for cgroup_subsys_enabled() and cgroup_subsys_on_dfl() */
149#define SUBSYS(_x) \
150 DEFINE_STATIC_KEY_TRUE(_x ## _cgrp_subsys_enabled_key); \
151 DEFINE_STATIC_KEY_TRUE(_x ## _cgrp_subsys_on_dfl_key); \
152 EXPORT_SYMBOL_GPL(_x ## _cgrp_subsys_enabled_key); \
153 EXPORT_SYMBOL_GPL(_x ## _cgrp_subsys_on_dfl_key);
154#include <linux/cgroup_subsys.h>
155#undef SUBSYS
156
157#define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys_enabled_key,
158static struct static_key_true *cgroup_subsys_enabled_key[] = {
159#include <linux/cgroup_subsys.h>
160};
161#undef SUBSYS
162
163#define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys_on_dfl_key,
164static struct static_key_true *cgroup_subsys_on_dfl_key[] = {
165#include <linux/cgroup_subsys.h>
166};
167#undef SUBSYS
168
Paul Menageddbcc7e2007-10-18 23:39:30 -0700169/*
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400170 * The default hierarchy, reserved for the subsystems that are otherwise
Tejun Heo9871bf92013-06-24 15:21:47 -0700171 * unattached - it never has more than a single cgroup, and all tasks are
172 * part of that cgroup.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700173 */
Tejun Heoa2dd4242014-03-19 10:23:55 -0400174struct cgroup_root cgrp_dfl_root;
Tejun Heod0ec4232015-08-05 16:03:19 -0400175EXPORT_SYMBOL_GPL(cgrp_dfl_root);
Tejun Heo9871bf92013-06-24 15:21:47 -0700176
Tejun Heoa2dd4242014-03-19 10:23:55 -0400177/*
178 * The default hierarchy always exists but is hidden until mounted for the
179 * first time. This is for backward compatibility.
180 */
Tejun Heoa7165262016-02-23 10:00:50 -0500181static bool cgrp_dfl_visible;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700182
Johannes Weiner223ffb22016-02-11 13:34:49 -0500183/* Controllers blocked by the commandline in v1 */
Tejun Heo6e5c8302016-02-22 22:25:47 -0500184static u16 cgroup_no_v1_mask;
Johannes Weiner223ffb22016-02-11 13:34:49 -0500185
Tejun Heo5533e012014-05-14 19:33:07 -0400186/* some controllers are not supported in the default hierarchy */
Tejun Heoa7165262016-02-23 10:00:50 -0500187static u16 cgrp_dfl_inhibit_ss_mask;
Tejun Heo5533e012014-05-14 19:33:07 -0400188
Paul Menageddbcc7e2007-10-18 23:39:30 -0700189/* The list of hierarchy roots */
190
Tejun Heo9871bf92013-06-24 15:21:47 -0700191static LIST_HEAD(cgroup_roots);
192static int cgroup_root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700193
Tejun Heo3417ae12014-02-08 10:37:01 -0500194/* hierarchy ID allocation and mapping, protected by cgroup_mutex */
Tejun Heo1a574232013-04-14 11:36:58 -0700195static DEFINE_IDR(cgroup_hierarchy_idr);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700196
Li Zefan794611a2013-06-18 18:53:53 +0800197/*
Tejun Heo0cb51d72014-05-16 13:22:49 -0400198 * Assign a monotonically increasing serial number to csses. It guarantees
199 * cgroups with bigger numbers are newer than those with smaller numbers.
200 * Also, as csses are always appended to the parent's ->children list, it
201 * guarantees that sibling csses are always sorted in the ascending serial
202 * number order on the list. Protected by cgroup_mutex.
Li Zefan794611a2013-06-18 18:53:53 +0800203 */
Tejun Heo0cb51d72014-05-16 13:22:49 -0400204static u64 css_serial_nr_next = 1;
Li Zefan794611a2013-06-18 18:53:53 +0800205
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000206/*
207 * These bitmask flags indicate whether tasks in the fork and exit paths have
208 * fork/exit handlers to call. This avoids us having to do extra work in the
209 * fork/exit path to check which subsystems have fork/exit callbacks.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700210 */
Tejun Heo6e5c8302016-02-22 22:25:47 -0500211static u16 have_fork_callback __read_mostly;
212static u16 have_exit_callback __read_mostly;
213static u16 have_free_callback __read_mostly;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700214
Aleksa Sarai7e476822015-06-09 21:32:09 +1000215/* Ditto for the can_fork callback. */
Tejun Heo6e5c8302016-02-22 22:25:47 -0500216static u16 have_canfork_callback __read_mostly;
Aleksa Sarai7e476822015-06-09 21:32:09 +1000217
Tejun Heo67e9c742015-11-16 11:13:34 -0500218static struct file_system_type cgroup2_fs_type;
Tejun Heoa14c6872014-07-15 11:05:09 -0400219static struct cftype cgroup_dfl_base_files[];
220static struct cftype cgroup_legacy_base_files[];
Tejun Heo628f7cd2013-06-28 16:24:11 -0700221
Tejun Heo6e5c8302016-02-22 22:25:47 -0500222static int rebind_subsystems(struct cgroup_root *dst_root, u16 ss_mask);
Tejun Heoed27b9f2015-10-15 16:41:52 -0400223static void css_task_iter_advance(struct css_task_iter *it);
Tejun Heo42809dd2012-11-19 08:13:37 -0800224static int cgroup_destroy_locked(struct cgroup *cgrp);
Tejun Heo6cd0f5b2016-03-03 09:57:58 -0500225static struct cgroup_subsys_state *css_create(struct cgroup *cgrp,
226 struct cgroup_subsys *ss);
Tejun Heo9d755d32014-05-14 09:15:02 -0400227static void css_release(struct percpu_ref *ref);
Tejun Heof8f22e52014-04-23 11:13:16 -0400228static void kill_css(struct cgroup_subsys_state *css);
Tejun Heo4df8dc92015-09-18 17:54:23 -0400229static int cgroup_addrm_files(struct cgroup_subsys_state *css,
230 struct cgroup *cgrp, struct cftype cfts[],
Tejun Heo2bb566c2013-08-08 20:11:23 -0400231 bool is_add);
Tejun Heo42809dd2012-11-19 08:13:37 -0800232
Tejun Heofc5ed1e2015-09-18 11:56:28 -0400233/**
234 * cgroup_ssid_enabled - cgroup subsys enabled test by subsys ID
235 * @ssid: subsys ID of interest
236 *
237 * cgroup_subsys_enabled() can only be used with literal subsys names which
238 * is fine for individual subsystems but unsuitable for cgroup core. This
239 * is slower static_key_enabled() based test indexed by @ssid.
240 */
241static bool cgroup_ssid_enabled(int ssid)
242{
243 return static_key_enabled(cgroup_subsys_enabled_key[ssid]);
244}
245
Johannes Weiner223ffb22016-02-11 13:34:49 -0500246static bool cgroup_ssid_no_v1(int ssid)
247{
248 return cgroup_no_v1_mask & (1 << ssid);
249}
250
Tejun Heo9e10a132015-09-18 11:56:28 -0400251/**
252 * cgroup_on_dfl - test whether a cgroup is on the default hierarchy
253 * @cgrp: the cgroup of interest
254 *
255 * The default hierarchy is the v2 interface of cgroup and this function
256 * can be used to test whether a cgroup is on the default hierarchy for
257 * cases where a subsystem should behave differnetly depending on the
258 * interface version.
259 *
260 * The set of behaviors which change on the default hierarchy are still
261 * being determined and the mount option is prefixed with __DEVEL__.
262 *
263 * List of changed behaviors:
264 *
265 * - Mount options "noprefix", "xattr", "clone_children", "release_agent"
266 * and "name" are disallowed.
267 *
268 * - When mounting an existing superblock, mount options should match.
269 *
270 * - Remount is disallowed.
271 *
272 * - rename(2) is disallowed.
273 *
274 * - "tasks" is removed. Everything should be at process granularity. Use
275 * "cgroup.procs" instead.
276 *
277 * - "cgroup.procs" is not sorted. pids will be unique unless they got
278 * recycled inbetween reads.
279 *
280 * - "release_agent" and "notify_on_release" are removed. Replacement
281 * notification mechanism will be implemented.
282 *
283 * - "cgroup.clone_children" is removed.
284 *
285 * - "cgroup.subtree_populated" is available. Its value is 0 if the cgroup
286 * and its descendants contain no task; otherwise, 1. The file also
287 * generates kernfs notification which can be monitored through poll and
288 * [di]notify when the value of the file changes.
289 *
290 * - cpuset: tasks will be kept in empty cpusets when hotplug happens and
291 * take masks of ancestors with non-empty cpus/mems, instead of being
292 * moved to an ancestor.
293 *
294 * - cpuset: a task can be moved into an empty cpuset, and again it takes
295 * masks of ancestors.
296 *
297 * - memcg: use_hierarchy is on by default and the cgroup file for the flag
298 * is not created.
299 *
300 * - blkcg: blk-throttle becomes properly hierarchical.
301 *
302 * - debug: disallowed on the default hierarchy.
303 */
304static bool cgroup_on_dfl(const struct cgroup *cgrp)
305{
306 return cgrp->root == &cgrp_dfl_root;
307}
308
Tejun Heo6fa49182014-05-04 15:09:13 -0400309/* IDR wrappers which synchronize using cgroup_idr_lock */
310static int cgroup_idr_alloc(struct idr *idr, void *ptr, int start, int end,
311 gfp_t gfp_mask)
312{
313 int ret;
314
315 idr_preload(gfp_mask);
Tejun Heo54504e92014-05-13 12:10:59 -0400316 spin_lock_bh(&cgroup_idr_lock);
Mel Gormand0164ad2015-11-06 16:28:21 -0800317 ret = idr_alloc(idr, ptr, start, end, gfp_mask & ~__GFP_DIRECT_RECLAIM);
Tejun Heo54504e92014-05-13 12:10:59 -0400318 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400319 idr_preload_end();
320 return ret;
321}
322
323static void *cgroup_idr_replace(struct idr *idr, void *ptr, int id)
324{
325 void *ret;
326
Tejun Heo54504e92014-05-13 12:10:59 -0400327 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400328 ret = idr_replace(idr, ptr, id);
Tejun Heo54504e92014-05-13 12:10:59 -0400329 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400330 return ret;
331}
332
333static void cgroup_idr_remove(struct idr *idr, int id)
334{
Tejun Heo54504e92014-05-13 12:10:59 -0400335 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400336 idr_remove(idr, id);
Tejun Heo54504e92014-05-13 12:10:59 -0400337 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400338}
339
Tejun Heod51f39b2014-05-16 13:22:48 -0400340static struct cgroup *cgroup_parent(struct cgroup *cgrp)
341{
342 struct cgroup_subsys_state *parent_css = cgrp->self.parent;
343
344 if (parent_css)
345 return container_of(parent_css, struct cgroup, self);
346 return NULL;
347}
348
Tejun Heo95109b62013-08-08 20:11:27 -0400349/**
350 * cgroup_css - obtain a cgroup's css for the specified subsystem
351 * @cgrp: the cgroup of interest
Tejun Heo9d800df2014-05-14 09:15:00 -0400352 * @ss: the subsystem of interest (%NULL returns @cgrp->self)
Tejun Heo95109b62013-08-08 20:11:27 -0400353 *
Tejun Heoca8bdca2013-08-26 18:40:56 -0400354 * Return @cgrp's css (cgroup_subsys_state) associated with @ss. This
355 * function must be called either under cgroup_mutex or rcu_read_lock() and
356 * the caller is responsible for pinning the returned css if it wants to
357 * keep accessing it outside the said locks. This function may return
358 * %NULL if @cgrp doesn't have @subsys_id enabled.
Tejun Heo95109b62013-08-08 20:11:27 -0400359 */
360static struct cgroup_subsys_state *cgroup_css(struct cgroup *cgrp,
Tejun Heoca8bdca2013-08-26 18:40:56 -0400361 struct cgroup_subsys *ss)
Tejun Heo95109b62013-08-08 20:11:27 -0400362{
Tejun Heoca8bdca2013-08-26 18:40:56 -0400363 if (ss)
Tejun Heoaec25022014-02-08 10:36:58 -0500364 return rcu_dereference_check(cgrp->subsys[ss->id],
Tejun Heoace2bee2014-02-11 11:52:47 -0500365 lockdep_is_held(&cgroup_mutex));
Tejun Heoca8bdca2013-08-26 18:40:56 -0400366 else
Tejun Heo9d800df2014-05-14 09:15:00 -0400367 return &cgrp->self;
Tejun Heo95109b62013-08-08 20:11:27 -0400368}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700369
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400370/**
371 * cgroup_e_css - obtain a cgroup's effective css for the specified subsystem
372 * @cgrp: the cgroup of interest
Tejun Heo9d800df2014-05-14 09:15:00 -0400373 * @ss: the subsystem of interest (%NULL returns @cgrp->self)
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400374 *
Chen Hanxiaod0f702e2015-04-23 07:57:33 -0400375 * Similar to cgroup_css() but returns the effective css, which is defined
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400376 * as the matching css of the nearest ancestor including self which has @ss
377 * enabled. If @ss is associated with the hierarchy @cgrp is on, this
378 * function is guaranteed to return non-NULL css.
379 */
380static struct cgroup_subsys_state *cgroup_e_css(struct cgroup *cgrp,
381 struct cgroup_subsys *ss)
382{
383 lockdep_assert_held(&cgroup_mutex);
384
385 if (!ss)
Tejun Heo9d800df2014-05-14 09:15:00 -0400386 return &cgrp->self;
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400387
388 if (!(cgrp->root->subsys_mask & (1 << ss->id)))
389 return NULL;
390
Tejun Heoeeecbd12014-11-18 02:49:52 -0500391 /*
392 * This function is used while updating css associations and thus
Tejun Heo8699b772016-02-22 22:25:46 -0500393 * can't test the csses directly. Use ->subtree_ss_mask.
Tejun Heoeeecbd12014-11-18 02:49:52 -0500394 */
Tejun Heod51f39b2014-05-16 13:22:48 -0400395 while (cgroup_parent(cgrp) &&
Tejun Heo8699b772016-02-22 22:25:46 -0500396 !(cgroup_parent(cgrp)->subtree_ss_mask & (1 << ss->id)))
Tejun Heod51f39b2014-05-16 13:22:48 -0400397 cgrp = cgroup_parent(cgrp);
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400398
399 return cgroup_css(cgrp, ss);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700400}
401
Tejun Heoeeecbd12014-11-18 02:49:52 -0500402/**
403 * cgroup_get_e_css - get a cgroup's effective css for the specified subsystem
404 * @cgrp: the cgroup of interest
405 * @ss: the subsystem of interest
406 *
407 * Find and get the effective css of @cgrp for @ss. The effective css is
408 * defined as the matching css of the nearest ancestor including self which
409 * has @ss enabled. If @ss is not mounted on the hierarchy @cgrp is on,
410 * the root css is returned, so this function always returns a valid css.
411 * The returned css must be put using css_put().
412 */
413struct cgroup_subsys_state *cgroup_get_e_css(struct cgroup *cgrp,
414 struct cgroup_subsys *ss)
415{
416 struct cgroup_subsys_state *css;
417
418 rcu_read_lock();
419
420 do {
421 css = cgroup_css(cgrp, ss);
422
423 if (css && css_tryget_online(css))
424 goto out_unlock;
425 cgrp = cgroup_parent(cgrp);
426 } while (cgrp);
427
428 css = init_css_set.subsys[ss->id];
429 css_get(css);
430out_unlock:
431 rcu_read_unlock();
432 return css;
433}
434
Paul Menageddbcc7e2007-10-18 23:39:30 -0700435/* convenient tests for these bits */
Tejun Heo54766d42013-06-12 21:04:53 -0700436static inline bool cgroup_is_dead(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700437{
Tejun Heo184faf32014-05-16 13:22:51 -0400438 return !(cgrp->self.flags & CSS_ONLINE);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700439}
440
Tejun Heo052c3f32015-10-15 16:41:50 -0400441static void cgroup_get(struct cgroup *cgrp)
442{
443 WARN_ON_ONCE(cgroup_is_dead(cgrp));
444 css_get(&cgrp->self);
445}
446
447static bool cgroup_tryget(struct cgroup *cgrp)
448{
449 return css_tryget(&cgrp->self);
450}
451
Tejun Heob4168642014-05-13 12:16:21 -0400452struct cgroup_subsys_state *of_css(struct kernfs_open_file *of)
Tejun Heo59f52962014-02-11 11:52:49 -0500453{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500454 struct cgroup *cgrp = of->kn->parent->priv;
Tejun Heob4168642014-05-13 12:16:21 -0400455 struct cftype *cft = of_cft(of);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500456
457 /*
458 * This is open and unprotected implementation of cgroup_css().
459 * seq_css() is only called from a kernfs file operation which has
460 * an active reference on the file. Because all the subsystem
461 * files are drained before a css is disassociated with a cgroup,
462 * the matching css from the cgroup's subsys table is guaranteed to
463 * be and stay valid until the enclosing operation is complete.
464 */
465 if (cft->ss)
466 return rcu_dereference_raw(cgrp->subsys[cft->ss->id]);
467 else
Tejun Heo9d800df2014-05-14 09:15:00 -0400468 return &cgrp->self;
Tejun Heo59f52962014-02-11 11:52:49 -0500469}
Tejun Heob4168642014-05-13 12:16:21 -0400470EXPORT_SYMBOL_GPL(of_css);
Tejun Heo59f52962014-02-11 11:52:49 -0500471
Adrian Bunke9685a02008-02-07 00:13:46 -0800472static int notify_on_release(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700473{
Paul Menagebd89aab2007-10-18 23:40:44 -0700474 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700475}
476
Tejun Heo30159ec2013-06-25 11:53:37 -0700477/**
Tejun Heo1c6727a2013-12-06 15:11:56 -0500478 * for_each_css - iterate all css's of a cgroup
479 * @css: the iteration cursor
480 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
481 * @cgrp: the target cgroup to iterate css's of
Tejun Heo30159ec2013-06-25 11:53:37 -0700482 *
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400483 * Should be called under cgroup_[tree_]mutex.
Tejun Heo30159ec2013-06-25 11:53:37 -0700484 */
Tejun Heo1c6727a2013-12-06 15:11:56 -0500485#define for_each_css(css, ssid, cgrp) \
486 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
487 if (!((css) = rcu_dereference_check( \
488 (cgrp)->subsys[(ssid)], \
489 lockdep_is_held(&cgroup_mutex)))) { } \
490 else
491
492/**
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400493 * for_each_e_css - iterate all effective css's of a cgroup
494 * @css: the iteration cursor
495 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
496 * @cgrp: the target cgroup to iterate css's of
497 *
498 * Should be called under cgroup_[tree_]mutex.
499 */
500#define for_each_e_css(css, ssid, cgrp) \
501 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
502 if (!((css) = cgroup_e_css(cgrp, cgroup_subsys[(ssid)]))) \
503 ; \
504 else
505
506/**
Tejun Heo3ed80a62014-02-08 10:36:58 -0500507 * for_each_subsys - iterate all enabled cgroup subsystems
Tejun Heo30159ec2013-06-25 11:53:37 -0700508 * @ss: the iteration cursor
Tejun Heo780cd8b2013-12-06 15:11:56 -0500509 * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end
Tejun Heo30159ec2013-06-25 11:53:37 -0700510 */
Tejun Heo780cd8b2013-12-06 15:11:56 -0500511#define for_each_subsys(ss, ssid) \
Tejun Heo3ed80a62014-02-08 10:36:58 -0500512 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT && \
513 (((ss) = cgroup_subsys[ssid]) || true); (ssid)++)
Tejun Heo30159ec2013-06-25 11:53:37 -0700514
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000515/**
Tejun Heob4e0eea2016-02-22 22:25:46 -0500516 * do_each_subsys_mask - filter for_each_subsys with a bitmask
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000517 * @ss: the iteration cursor
518 * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end
Tejun Heob4e0eea2016-02-22 22:25:46 -0500519 * @ss_mask: the bitmask
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000520 *
521 * The block will only run for cases where the ssid-th bit (1 << ssid) of
Tejun Heob4e0eea2016-02-22 22:25:46 -0500522 * @ss_mask is set.
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000523 */
Tejun Heob4e0eea2016-02-22 22:25:46 -0500524#define do_each_subsys_mask(ss, ssid, ss_mask) do { \
525 unsigned long __ss_mask = (ss_mask); \
526 if (!CGROUP_SUBSYS_COUNT) { /* to avoid spurious gcc warning */ \
Aleksa Sarai4a705c52015-06-09 21:32:07 +1000527 (ssid) = 0; \
Tejun Heob4e0eea2016-02-22 22:25:46 -0500528 break; \
529 } \
530 for_each_set_bit(ssid, &__ss_mask, CGROUP_SUBSYS_COUNT) { \
531 (ss) = cgroup_subsys[ssid]; \
532 {
533
534#define while_each_subsys_mask() \
535 } \
536 } \
537} while (false)
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000538
Tejun Heo985ed672014-03-19 10:23:53 -0400539/* iterate across the hierarchies */
540#define for_each_root(root) \
Tejun Heo5549c492013-06-24 15:21:48 -0700541 list_for_each_entry((root), &cgroup_roots, root_list)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700542
Tejun Heof8f22e52014-04-23 11:13:16 -0400543/* iterate over child cgrps, lock should be held throughout iteration */
544#define cgroup_for_each_live_child(child, cgrp) \
Tejun Heod5c419b2014-05-16 13:22:48 -0400545 list_for_each_entry((child), &(cgrp)->self.children, self.sibling) \
Tejun Heo8353da12014-05-13 12:19:23 -0400546 if (({ lockdep_assert_held(&cgroup_mutex); \
Tejun Heof8f22e52014-04-23 11:13:16 -0400547 cgroup_is_dead(child); })) \
548 ; \
549 else
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700550
Paul Menage81a6a5c2007-10-18 23:39:38 -0700551static void cgroup_release_agent(struct work_struct *work);
Paul Menagebd89aab2007-10-18 23:40:44 -0700552static void check_for_release(struct cgroup *cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700553
Tejun Heo69d02062013-06-12 21:04:50 -0700554/*
555 * A cgroup can be associated with multiple css_sets as different tasks may
556 * belong to different cgroups on different hierarchies. In the other
557 * direction, a css_set is naturally associated with multiple cgroups.
558 * This M:N relationship is represented by the following link structure
559 * which exists for each association and allows traversing the associations
560 * from both sides.
561 */
562struct cgrp_cset_link {
563 /* the cgroup and css_set this link associates */
564 struct cgroup *cgrp;
565 struct css_set *cset;
566
567 /* list of cgrp_cset_links anchored at cgrp->cset_links */
568 struct list_head cset_link;
569
570 /* list of cgrp_cset_links anchored at css_set->cgrp_links */
571 struct list_head cgrp_link;
Paul Menage817929e2007-10-18 23:39:36 -0700572};
573
Tejun Heo172a2c062014-03-19 10:23:53 -0400574/*
575 * The default css_set - used by init and its children prior to any
Paul Menage817929e2007-10-18 23:39:36 -0700576 * hierarchies being mounted. It contains a pointer to the root state
577 * for each subsystem. Also used to anchor the list of css_sets. Not
578 * reference-counted, to improve performance when child cgroups
579 * haven't been created.
580 */
Tejun Heo5024ae22014-05-07 21:31:17 -0400581struct css_set init_css_set = {
Tejun Heo172a2c062014-03-19 10:23:53 -0400582 .refcount = ATOMIC_INIT(1),
583 .cgrp_links = LIST_HEAD_INIT(init_css_set.cgrp_links),
584 .tasks = LIST_HEAD_INIT(init_css_set.tasks),
585 .mg_tasks = LIST_HEAD_INIT(init_css_set.mg_tasks),
586 .mg_preload_node = LIST_HEAD_INIT(init_css_set.mg_preload_node),
587 .mg_node = LIST_HEAD_INIT(init_css_set.mg_node),
Tejun Heoed27b9f2015-10-15 16:41:52 -0400588 .task_iters = LIST_HEAD_INIT(init_css_set.task_iters),
Tejun Heo172a2c062014-03-19 10:23:53 -0400589};
Paul Menage817929e2007-10-18 23:39:36 -0700590
Tejun Heo172a2c062014-03-19 10:23:53 -0400591static int css_set_count = 1; /* 1 for init_css_set */
Paul Menage817929e2007-10-18 23:39:36 -0700592
Tejun Heo842b5972014-04-25 18:28:02 -0400593/**
Tejun Heo0de09422015-10-15 16:41:49 -0400594 * css_set_populated - does a css_set contain any tasks?
595 * @cset: target css_set
596 */
597static bool css_set_populated(struct css_set *cset)
598{
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400599 lockdep_assert_held(&css_set_lock);
Tejun Heo0de09422015-10-15 16:41:49 -0400600
601 return !list_empty(&cset->tasks) || !list_empty(&cset->mg_tasks);
602}
603
604/**
Tejun Heo842b5972014-04-25 18:28:02 -0400605 * cgroup_update_populated - updated populated count of a cgroup
606 * @cgrp: the target cgroup
607 * @populated: inc or dec populated count
608 *
Tejun Heo0de09422015-10-15 16:41:49 -0400609 * One of the css_sets associated with @cgrp is either getting its first
610 * task or losing the last. Update @cgrp->populated_cnt accordingly. The
611 * count is propagated towards root so that a given cgroup's populated_cnt
612 * is zero iff the cgroup and all its descendants don't contain any tasks.
Tejun Heo842b5972014-04-25 18:28:02 -0400613 *
614 * @cgrp's interface file "cgroup.populated" is zero if
615 * @cgrp->populated_cnt is zero and 1 otherwise. When @cgrp->populated_cnt
616 * changes from or to zero, userland is notified that the content of the
617 * interface file has changed. This can be used to detect when @cgrp and
618 * its descendants become populated or empty.
619 */
620static void cgroup_update_populated(struct cgroup *cgrp, bool populated)
621{
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400622 lockdep_assert_held(&css_set_lock);
Tejun Heo842b5972014-04-25 18:28:02 -0400623
624 do {
625 bool trigger;
626
627 if (populated)
628 trigger = !cgrp->populated_cnt++;
629 else
630 trigger = !--cgrp->populated_cnt;
631
632 if (!trigger)
633 break;
634
Tejun Heoad2ed2b2015-10-15 16:41:50 -0400635 check_for_release(cgrp);
Tejun Heo6f60ead2015-09-18 17:54:23 -0400636 cgroup_file_notify(&cgrp->events_file);
637
Tejun Heod51f39b2014-05-16 13:22:48 -0400638 cgrp = cgroup_parent(cgrp);
Tejun Heo842b5972014-04-25 18:28:02 -0400639 } while (cgrp);
640}
641
Tejun Heo0de09422015-10-15 16:41:49 -0400642/**
643 * css_set_update_populated - update populated state of a css_set
644 * @cset: target css_set
645 * @populated: whether @cset is populated or depopulated
646 *
647 * @cset is either getting the first task or losing the last. Update the
648 * ->populated_cnt of all associated cgroups accordingly.
649 */
650static void css_set_update_populated(struct css_set *cset, bool populated)
651{
652 struct cgrp_cset_link *link;
653
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400654 lockdep_assert_held(&css_set_lock);
Tejun Heo0de09422015-10-15 16:41:49 -0400655
656 list_for_each_entry(link, &cset->cgrp_links, cgrp_link)
657 cgroup_update_populated(link->cgrp, populated);
658}
659
Tejun Heof6d7d042015-10-15 16:41:52 -0400660/**
661 * css_set_move_task - move a task from one css_set to another
662 * @task: task being moved
663 * @from_cset: css_set @task currently belongs to (may be NULL)
664 * @to_cset: new css_set @task is being moved to (may be NULL)
665 * @use_mg_tasks: move to @to_cset->mg_tasks instead of ->tasks
666 *
667 * Move @task from @from_cset to @to_cset. If @task didn't belong to any
668 * css_set, @from_cset can be NULL. If @task is being disassociated
669 * instead of moved, @to_cset can be NULL.
670 *
Tejun Heoed27b9f2015-10-15 16:41:52 -0400671 * This function automatically handles populated_cnt updates and
672 * css_task_iter adjustments but the caller is responsible for managing
673 * @from_cset and @to_cset's reference counts.
Tejun Heof6d7d042015-10-15 16:41:52 -0400674 */
675static void css_set_move_task(struct task_struct *task,
676 struct css_set *from_cset, struct css_set *to_cset,
677 bool use_mg_tasks)
678{
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400679 lockdep_assert_held(&css_set_lock);
Tejun Heof6d7d042015-10-15 16:41:52 -0400680
Tejun Heo20b454a2016-03-03 09:57:57 -0500681 if (to_cset && !css_set_populated(to_cset))
682 css_set_update_populated(to_cset, true);
683
Tejun Heof6d7d042015-10-15 16:41:52 -0400684 if (from_cset) {
Tejun Heoed27b9f2015-10-15 16:41:52 -0400685 struct css_task_iter *it, *pos;
686
Tejun Heof6d7d042015-10-15 16:41:52 -0400687 WARN_ON_ONCE(list_empty(&task->cg_list));
Tejun Heoed27b9f2015-10-15 16:41:52 -0400688
689 /*
690 * @task is leaving, advance task iterators which are
691 * pointing to it so that they can resume at the next
692 * position. Advancing an iterator might remove it from
693 * the list, use safe walk. See css_task_iter_advance*()
694 * for details.
695 */
696 list_for_each_entry_safe(it, pos, &from_cset->task_iters,
697 iters_node)
698 if (it->task_pos == &task->cg_list)
699 css_task_iter_advance(it);
700
Tejun Heof6d7d042015-10-15 16:41:52 -0400701 list_del_init(&task->cg_list);
702 if (!css_set_populated(from_cset))
703 css_set_update_populated(from_cset, false);
704 } else {
705 WARN_ON_ONCE(!list_empty(&task->cg_list));
706 }
707
708 if (to_cset) {
709 /*
710 * We are synchronized through cgroup_threadgroup_rwsem
711 * against PF_EXITING setting such that we can't race
712 * against cgroup_exit() changing the css_set to
713 * init_css_set and dropping the old one.
714 */
715 WARN_ON_ONCE(task->flags & PF_EXITING);
716
Tejun Heof6d7d042015-10-15 16:41:52 -0400717 rcu_assign_pointer(task->cgroups, to_cset);
718 list_add_tail(&task->cg_list, use_mg_tasks ? &to_cset->mg_tasks :
719 &to_cset->tasks);
720 }
721}
722
Paul Menage7717f7b2009-09-23 15:56:22 -0700723/*
724 * hash table for cgroup groups. This improves the performance to find
725 * an existing css_set. This hash doesn't (currently) take into
726 * account cgroups in empty hierarchies.
727 */
Li Zefan472b1052008-04-29 01:00:11 -0700728#define CSS_SET_HASH_BITS 7
Li Zefan0ac801f2013-01-10 11:49:27 +0800729static DEFINE_HASHTABLE(css_set_table, CSS_SET_HASH_BITS);
Li Zefan472b1052008-04-29 01:00:11 -0700730
Li Zefan0ac801f2013-01-10 11:49:27 +0800731static unsigned long css_set_hash(struct cgroup_subsys_state *css[])
Li Zefan472b1052008-04-29 01:00:11 -0700732{
Li Zefan0ac801f2013-01-10 11:49:27 +0800733 unsigned long key = 0UL;
Tejun Heo30159ec2013-06-25 11:53:37 -0700734 struct cgroup_subsys *ss;
735 int i;
Li Zefan472b1052008-04-29 01:00:11 -0700736
Tejun Heo30159ec2013-06-25 11:53:37 -0700737 for_each_subsys(ss, i)
Li Zefan0ac801f2013-01-10 11:49:27 +0800738 key += (unsigned long)css[i];
739 key = (key >> 16) ^ key;
Li Zefan472b1052008-04-29 01:00:11 -0700740
Li Zefan0ac801f2013-01-10 11:49:27 +0800741 return key;
Li Zefan472b1052008-04-29 01:00:11 -0700742}
743
Zefan Lia25eb522014-09-19 16:51:00 +0800744static void put_css_set_locked(struct css_set *cset)
Paul Menageb4f48b62007-10-18 23:39:33 -0700745{
Tejun Heo69d02062013-06-12 21:04:50 -0700746 struct cgrp_cset_link *link, *tmp_link;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400747 struct cgroup_subsys *ss;
748 int ssid;
Tejun Heo5abb8852013-06-12 21:04:49 -0700749
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400750 lockdep_assert_held(&css_set_lock);
Tejun Heo89c55092014-02-13 06:58:40 -0500751
752 if (!atomic_dec_and_test(&cset->refcount))
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700753 return;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700754
Tejun Heo53254f92015-11-23 14:55:41 -0500755 /* This css_set is dead. unlink it and release cgroup and css refs */
756 for_each_subsys(ss, ssid) {
Tejun Heo2d8f2432014-04-23 11:13:15 -0400757 list_del(&cset->e_cset_node[ssid]);
Tejun Heo53254f92015-11-23 14:55:41 -0500758 css_put(cset->subsys[ssid]);
759 }
Tejun Heo5abb8852013-06-12 21:04:49 -0700760 hash_del(&cset->hlist);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700761 css_set_count--;
762
Tejun Heo69d02062013-06-12 21:04:50 -0700763 list_for_each_entry_safe(link, tmp_link, &cset->cgrp_links, cgrp_link) {
Tejun Heo69d02062013-06-12 21:04:50 -0700764 list_del(&link->cset_link);
765 list_del(&link->cgrp_link);
Tejun Heo2ceb2312015-10-15 16:41:51 -0400766 if (cgroup_parent(link->cgrp))
767 cgroup_put(link->cgrp);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700768 kfree(link);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700769 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700770
Tejun Heo5abb8852013-06-12 21:04:49 -0700771 kfree_rcu(cset, rcu_head);
Paul Menage817929e2007-10-18 23:39:36 -0700772}
773
Zefan Lia25eb522014-09-19 16:51:00 +0800774static void put_css_set(struct css_set *cset)
Tejun Heo89c55092014-02-13 06:58:40 -0500775{
776 /*
777 * Ensure that the refcount doesn't hit zero while any readers
778 * can see it. Similar to atomic_dec_and_lock(), but for an
779 * rwlock
780 */
781 if (atomic_add_unless(&cset->refcount, -1, 1))
782 return;
783
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400784 spin_lock_bh(&css_set_lock);
Zefan Lia25eb522014-09-19 16:51:00 +0800785 put_css_set_locked(cset);
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400786 spin_unlock_bh(&css_set_lock);
Tejun Heo89c55092014-02-13 06:58:40 -0500787}
788
Paul Menage817929e2007-10-18 23:39:36 -0700789/*
790 * refcounted get/put for css_set objects
791 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700792static inline void get_css_set(struct css_set *cset)
Paul Menage817929e2007-10-18 23:39:36 -0700793{
Tejun Heo5abb8852013-06-12 21:04:49 -0700794 atomic_inc(&cset->refcount);
Paul Menage817929e2007-10-18 23:39:36 -0700795}
796
Tejun Heob326f9d2013-06-24 15:21:48 -0700797/**
Paul Menage7717f7b2009-09-23 15:56:22 -0700798 * compare_css_sets - helper function for find_existing_css_set().
Tejun Heo5abb8852013-06-12 21:04:49 -0700799 * @cset: candidate css_set being tested
800 * @old_cset: existing css_set for a task
Paul Menage7717f7b2009-09-23 15:56:22 -0700801 * @new_cgrp: cgroup that's being entered by the task
802 * @template: desired set of css pointers in css_set (pre-calculated)
803 *
Li Zefan6f4b7e62013-07-31 16:18:36 +0800804 * Returns true if "cset" matches "old_cset" except for the hierarchy
Paul Menage7717f7b2009-09-23 15:56:22 -0700805 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
806 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700807static bool compare_css_sets(struct css_set *cset,
808 struct css_set *old_cset,
Paul Menage7717f7b2009-09-23 15:56:22 -0700809 struct cgroup *new_cgrp,
810 struct cgroup_subsys_state *template[])
811{
812 struct list_head *l1, *l2;
813
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400814 /*
815 * On the default hierarchy, there can be csets which are
816 * associated with the same set of cgroups but different csses.
817 * Let's first ensure that csses match.
818 */
819 if (memcmp(template, cset->subsys, sizeof(cset->subsys)))
Paul Menage7717f7b2009-09-23 15:56:22 -0700820 return false;
Paul Menage7717f7b2009-09-23 15:56:22 -0700821
822 /*
823 * Compare cgroup pointers in order to distinguish between
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400824 * different cgroups in hierarchies. As different cgroups may
825 * share the same effective css, this comparison is always
826 * necessary.
Paul Menage7717f7b2009-09-23 15:56:22 -0700827 */
Tejun Heo69d02062013-06-12 21:04:50 -0700828 l1 = &cset->cgrp_links;
829 l2 = &old_cset->cgrp_links;
Paul Menage7717f7b2009-09-23 15:56:22 -0700830 while (1) {
Tejun Heo69d02062013-06-12 21:04:50 -0700831 struct cgrp_cset_link *link1, *link2;
Tejun Heo5abb8852013-06-12 21:04:49 -0700832 struct cgroup *cgrp1, *cgrp2;
Paul Menage7717f7b2009-09-23 15:56:22 -0700833
834 l1 = l1->next;
835 l2 = l2->next;
836 /* See if we reached the end - both lists are equal length. */
Tejun Heo69d02062013-06-12 21:04:50 -0700837 if (l1 == &cset->cgrp_links) {
838 BUG_ON(l2 != &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700839 break;
840 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700841 BUG_ON(l2 == &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700842 }
843 /* Locate the cgroups associated with these links. */
Tejun Heo69d02062013-06-12 21:04:50 -0700844 link1 = list_entry(l1, struct cgrp_cset_link, cgrp_link);
845 link2 = list_entry(l2, struct cgrp_cset_link, cgrp_link);
846 cgrp1 = link1->cgrp;
847 cgrp2 = link2->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700848 /* Hierarchies should be linked in the same order. */
Tejun Heo5abb8852013-06-12 21:04:49 -0700849 BUG_ON(cgrp1->root != cgrp2->root);
Paul Menage7717f7b2009-09-23 15:56:22 -0700850
851 /*
852 * If this hierarchy is the hierarchy of the cgroup
853 * that's changing, then we need to check that this
854 * css_set points to the new cgroup; if it's any other
855 * hierarchy, then this css_set should point to the
856 * same cgroup as the old css_set.
857 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700858 if (cgrp1->root == new_cgrp->root) {
859 if (cgrp1 != new_cgrp)
Paul Menage7717f7b2009-09-23 15:56:22 -0700860 return false;
861 } else {
Tejun Heo5abb8852013-06-12 21:04:49 -0700862 if (cgrp1 != cgrp2)
Paul Menage7717f7b2009-09-23 15:56:22 -0700863 return false;
864 }
865 }
866 return true;
867}
868
Tejun Heob326f9d2013-06-24 15:21:48 -0700869/**
870 * find_existing_css_set - init css array and find the matching css_set
871 * @old_cset: the css_set that we're using before the cgroup transition
872 * @cgrp: the cgroup that we're moving into
873 * @template: out param for the new set of csses, should be clear on entry
Paul Menage817929e2007-10-18 23:39:36 -0700874 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700875static struct css_set *find_existing_css_set(struct css_set *old_cset,
876 struct cgroup *cgrp,
877 struct cgroup_subsys_state *template[])
Paul Menage817929e2007-10-18 23:39:36 -0700878{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400879 struct cgroup_root *root = cgrp->root;
Tejun Heo30159ec2013-06-25 11:53:37 -0700880 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -0700881 struct css_set *cset;
Li Zefan0ac801f2013-01-10 11:49:27 +0800882 unsigned long key;
Tejun Heob326f9d2013-06-24 15:21:48 -0700883 int i;
Paul Menage817929e2007-10-18 23:39:36 -0700884
Ben Blumaae8aab2010-03-10 15:22:07 -0800885 /*
886 * Build the set of subsystem state objects that we want to see in the
887 * new css_set. while subsystems can change globally, the entries here
888 * won't change, so no need for locking.
889 */
Tejun Heo30159ec2013-06-25 11:53:37 -0700890 for_each_subsys(ss, i) {
Tejun Heof392e512014-04-23 11:13:14 -0400891 if (root->subsys_mask & (1UL << i)) {
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400892 /*
893 * @ss is in this hierarchy, so we want the
894 * effective css from @cgrp.
895 */
896 template[i] = cgroup_e_css(cgrp, ss);
Paul Menage817929e2007-10-18 23:39:36 -0700897 } else {
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400898 /*
899 * @ss is not in this hierarchy, so we don't want
900 * to change the css.
901 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700902 template[i] = old_cset->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700903 }
904 }
905
Li Zefan0ac801f2013-01-10 11:49:27 +0800906 key = css_set_hash(template);
Tejun Heo5abb8852013-06-12 21:04:49 -0700907 hash_for_each_possible(css_set_table, cset, hlist, key) {
908 if (!compare_css_sets(cset, old_cset, cgrp, template))
Paul Menage7717f7b2009-09-23 15:56:22 -0700909 continue;
910
911 /* This css_set matches what we need */
Tejun Heo5abb8852013-06-12 21:04:49 -0700912 return cset;
Li Zefan472b1052008-04-29 01:00:11 -0700913 }
Paul Menage817929e2007-10-18 23:39:36 -0700914
915 /* No existing cgroup group matched */
916 return NULL;
917}
918
Tejun Heo69d02062013-06-12 21:04:50 -0700919static void free_cgrp_cset_links(struct list_head *links_to_free)
Paul Menage817929e2007-10-18 23:39:36 -0700920{
Tejun Heo69d02062013-06-12 21:04:50 -0700921 struct cgrp_cset_link *link, *tmp_link;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700922
Tejun Heo69d02062013-06-12 21:04:50 -0700923 list_for_each_entry_safe(link, tmp_link, links_to_free, cset_link) {
924 list_del(&link->cset_link);
Paul Menage817929e2007-10-18 23:39:36 -0700925 kfree(link);
926 }
927}
928
Tejun Heo69d02062013-06-12 21:04:50 -0700929/**
930 * allocate_cgrp_cset_links - allocate cgrp_cset_links
931 * @count: the number of links to allocate
932 * @tmp_links: list_head the allocated links are put on
933 *
934 * Allocate @count cgrp_cset_link structures and chain them on @tmp_links
935 * through ->cset_link. Returns 0 on success or -errno.
Li Zefan36553432008-07-29 22:33:19 -0700936 */
Tejun Heo69d02062013-06-12 21:04:50 -0700937static int allocate_cgrp_cset_links(int count, struct list_head *tmp_links)
Li Zefan36553432008-07-29 22:33:19 -0700938{
Tejun Heo69d02062013-06-12 21:04:50 -0700939 struct cgrp_cset_link *link;
Li Zefan36553432008-07-29 22:33:19 -0700940 int i;
Tejun Heo69d02062013-06-12 21:04:50 -0700941
942 INIT_LIST_HEAD(tmp_links);
943
Li Zefan36553432008-07-29 22:33:19 -0700944 for (i = 0; i < count; i++) {
Tejun Heof4f4be22013-06-12 21:04:51 -0700945 link = kzalloc(sizeof(*link), GFP_KERNEL);
Li Zefan36553432008-07-29 22:33:19 -0700946 if (!link) {
Tejun Heo69d02062013-06-12 21:04:50 -0700947 free_cgrp_cset_links(tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700948 return -ENOMEM;
949 }
Tejun Heo69d02062013-06-12 21:04:50 -0700950 list_add(&link->cset_link, tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700951 }
952 return 0;
953}
954
Li Zefanc12f65d2009-01-07 18:07:42 -0800955/**
956 * link_css_set - a helper function to link a css_set to a cgroup
Tejun Heo69d02062013-06-12 21:04:50 -0700957 * @tmp_links: cgrp_cset_link objects allocated by allocate_cgrp_cset_links()
Tejun Heo5abb8852013-06-12 21:04:49 -0700958 * @cset: the css_set to be linked
Li Zefanc12f65d2009-01-07 18:07:42 -0800959 * @cgrp: the destination cgroup
960 */
Tejun Heo69d02062013-06-12 21:04:50 -0700961static void link_css_set(struct list_head *tmp_links, struct css_set *cset,
962 struct cgroup *cgrp)
Li Zefanc12f65d2009-01-07 18:07:42 -0800963{
Tejun Heo69d02062013-06-12 21:04:50 -0700964 struct cgrp_cset_link *link;
Li Zefanc12f65d2009-01-07 18:07:42 -0800965
Tejun Heo69d02062013-06-12 21:04:50 -0700966 BUG_ON(list_empty(tmp_links));
Tejun Heo6803c002014-04-23 11:13:16 -0400967
968 if (cgroup_on_dfl(cgrp))
969 cset->dfl_cgrp = cgrp;
970
Tejun Heo69d02062013-06-12 21:04:50 -0700971 link = list_first_entry(tmp_links, struct cgrp_cset_link, cset_link);
972 link->cset = cset;
Paul Menage7717f7b2009-09-23 15:56:22 -0700973 link->cgrp = cgrp;
Tejun Heo842b5972014-04-25 18:28:02 -0400974
Paul Menage7717f7b2009-09-23 15:56:22 -0700975 /*
Tejun Heo389b9c12015-10-15 16:41:51 -0400976 * Always add links to the tail of the lists so that the lists are
977 * in choronological order.
Paul Menage7717f7b2009-09-23 15:56:22 -0700978 */
Tejun Heo389b9c12015-10-15 16:41:51 -0400979 list_move_tail(&link->cset_link, &cgrp->cset_links);
Tejun Heo69d02062013-06-12 21:04:50 -0700980 list_add_tail(&link->cgrp_link, &cset->cgrp_links);
Tejun Heo2ceb2312015-10-15 16:41:51 -0400981
982 if (cgroup_parent(cgrp))
983 cgroup_get(cgrp);
Li Zefanc12f65d2009-01-07 18:07:42 -0800984}
985
Tejun Heob326f9d2013-06-24 15:21:48 -0700986/**
987 * find_css_set - return a new css_set with one cgroup updated
988 * @old_cset: the baseline css_set
989 * @cgrp: the cgroup to be updated
990 *
991 * Return a new css_set that's equivalent to @old_cset, but with @cgrp
992 * substituted into the appropriate hierarchy.
Paul Menage817929e2007-10-18 23:39:36 -0700993 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700994static struct css_set *find_css_set(struct css_set *old_cset,
995 struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700996{
Tejun Heob326f9d2013-06-24 15:21:48 -0700997 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT] = { };
Tejun Heo5abb8852013-06-12 21:04:49 -0700998 struct css_set *cset;
Tejun Heo69d02062013-06-12 21:04:50 -0700999 struct list_head tmp_links;
1000 struct cgrp_cset_link *link;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001001 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +08001002 unsigned long key;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001003 int ssid;
Li Zefan472b1052008-04-29 01:00:11 -07001004
Tejun Heob326f9d2013-06-24 15:21:48 -07001005 lockdep_assert_held(&cgroup_mutex);
1006
Paul Menage817929e2007-10-18 23:39:36 -07001007 /* First see if we already have a cgroup group that matches
1008 * the desired set */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001009 spin_lock_bh(&css_set_lock);
Tejun Heo5abb8852013-06-12 21:04:49 -07001010 cset = find_existing_css_set(old_cset, cgrp, template);
1011 if (cset)
1012 get_css_set(cset);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001013 spin_unlock_bh(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -07001014
Tejun Heo5abb8852013-06-12 21:04:49 -07001015 if (cset)
1016 return cset;
Paul Menage817929e2007-10-18 23:39:36 -07001017
Tejun Heof4f4be22013-06-12 21:04:51 -07001018 cset = kzalloc(sizeof(*cset), GFP_KERNEL);
Tejun Heo5abb8852013-06-12 21:04:49 -07001019 if (!cset)
Paul Menage817929e2007-10-18 23:39:36 -07001020 return NULL;
1021
Tejun Heo69d02062013-06-12 21:04:50 -07001022 /* Allocate all the cgrp_cset_link objects that we'll need */
Tejun Heo9871bf92013-06-24 15:21:47 -07001023 if (allocate_cgrp_cset_links(cgroup_root_count, &tmp_links) < 0) {
Tejun Heo5abb8852013-06-12 21:04:49 -07001024 kfree(cset);
Paul Menage817929e2007-10-18 23:39:36 -07001025 return NULL;
1026 }
1027
Tejun Heo5abb8852013-06-12 21:04:49 -07001028 atomic_set(&cset->refcount, 1);
Tejun Heo69d02062013-06-12 21:04:50 -07001029 INIT_LIST_HEAD(&cset->cgrp_links);
Tejun Heo5abb8852013-06-12 21:04:49 -07001030 INIT_LIST_HEAD(&cset->tasks);
Tejun Heoc7561122014-02-25 10:04:01 -05001031 INIT_LIST_HEAD(&cset->mg_tasks);
Tejun Heo1958d2d2014-02-25 10:04:03 -05001032 INIT_LIST_HEAD(&cset->mg_preload_node);
Tejun Heob3dc0942014-02-25 10:04:01 -05001033 INIT_LIST_HEAD(&cset->mg_node);
Tejun Heoed27b9f2015-10-15 16:41:52 -04001034 INIT_LIST_HEAD(&cset->task_iters);
Tejun Heo5abb8852013-06-12 21:04:49 -07001035 INIT_HLIST_NODE(&cset->hlist);
Paul Menage817929e2007-10-18 23:39:36 -07001036
1037 /* Copy the set of subsystem state objects generated in
1038 * find_existing_css_set() */
Tejun Heo5abb8852013-06-12 21:04:49 -07001039 memcpy(cset->subsys, template, sizeof(cset->subsys));
Paul Menage817929e2007-10-18 23:39:36 -07001040
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001041 spin_lock_bh(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -07001042 /* Add reference counts and links from the new css_set. */
Tejun Heo69d02062013-06-12 21:04:50 -07001043 list_for_each_entry(link, &old_cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07001044 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -07001045
Paul Menage7717f7b2009-09-23 15:56:22 -07001046 if (c->root == cgrp->root)
1047 c = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -07001048 link_css_set(&tmp_links, cset, c);
Paul Menage7717f7b2009-09-23 15:56:22 -07001049 }
Paul Menage817929e2007-10-18 23:39:36 -07001050
Tejun Heo69d02062013-06-12 21:04:50 -07001051 BUG_ON(!list_empty(&tmp_links));
Paul Menage817929e2007-10-18 23:39:36 -07001052
Paul Menage817929e2007-10-18 23:39:36 -07001053 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -07001054
Tejun Heo2d8f2432014-04-23 11:13:15 -04001055 /* Add @cset to the hash table */
Tejun Heo5abb8852013-06-12 21:04:49 -07001056 key = css_set_hash(cset->subsys);
1057 hash_add(css_set_table, &cset->hlist, key);
Li Zefan472b1052008-04-29 01:00:11 -07001058
Tejun Heo53254f92015-11-23 14:55:41 -05001059 for_each_subsys(ss, ssid) {
1060 struct cgroup_subsys_state *css = cset->subsys[ssid];
1061
Tejun Heo2d8f2432014-04-23 11:13:15 -04001062 list_add_tail(&cset->e_cset_node[ssid],
Tejun Heo53254f92015-11-23 14:55:41 -05001063 &css->cgroup->e_csets[ssid]);
1064 css_get(css);
1065 }
Tejun Heo2d8f2432014-04-23 11:13:15 -04001066
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001067 spin_unlock_bh(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -07001068
Tejun Heo5abb8852013-06-12 21:04:49 -07001069 return cset;
Paul Menageb4f48b62007-10-18 23:39:33 -07001070}
1071
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001072static struct cgroup_root *cgroup_root_from_kf(struct kernfs_root *kf_root)
Paul Menage7717f7b2009-09-23 15:56:22 -07001073{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001074 struct cgroup *root_cgrp = kf_root->kn->priv;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001075
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001076 return root_cgrp->root;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001077}
1078
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001079static int cgroup_init_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -05001080{
1081 int id;
1082
1083 lockdep_assert_held(&cgroup_mutex);
1084
Tejun Heo985ed672014-03-19 10:23:53 -04001085 id = idr_alloc_cyclic(&cgroup_hierarchy_idr, root, 0, 0, GFP_KERNEL);
Tejun Heof2e85d52014-02-11 11:52:49 -05001086 if (id < 0)
1087 return id;
1088
1089 root->hierarchy_id = id;
1090 return 0;
1091}
1092
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001093static void cgroup_exit_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -05001094{
1095 lockdep_assert_held(&cgroup_mutex);
1096
1097 if (root->hierarchy_id) {
1098 idr_remove(&cgroup_hierarchy_idr, root->hierarchy_id);
1099 root->hierarchy_id = 0;
1100 }
1101}
1102
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001103static void cgroup_free_root(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -05001104{
1105 if (root) {
Chen Hanxiaod0f702e2015-04-23 07:57:33 -04001106 /* hierarchy ID should already have been released */
Tejun Heof2e85d52014-02-11 11:52:49 -05001107 WARN_ON_ONCE(root->hierarchy_id);
1108
1109 idr_destroy(&root->cgroup_idr);
1110 kfree(root);
1111 }
1112}
1113
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001114static void cgroup_destroy_root(struct cgroup_root *root)
Tejun Heo59f52962014-02-11 11:52:49 -05001115{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001116 struct cgroup *cgrp = &root->cgrp;
Tejun Heof2e85d52014-02-11 11:52:49 -05001117 struct cgrp_cset_link *link, *tmp_link;
Tejun Heof2e85d52014-02-11 11:52:49 -05001118
Tejun Heo2bd59d42014-02-11 11:52:49 -05001119 mutex_lock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -05001120
Tejun Heo776f02f2014-02-12 09:29:50 -05001121 BUG_ON(atomic_read(&root->nr_cgrps));
Tejun Heod5c419b2014-05-16 13:22:48 -04001122 BUG_ON(!list_empty(&cgrp->self.children));
Tejun Heof2e85d52014-02-11 11:52:49 -05001123
Tejun Heof2e85d52014-02-11 11:52:49 -05001124 /* Rebind all subsystems back to the default hierarchy */
Tejun Heof392e512014-04-23 11:13:14 -04001125 rebind_subsystems(&cgrp_dfl_root, root->subsys_mask);
Tejun Heof2e85d52014-02-11 11:52:49 -05001126
1127 /*
1128 * Release all the links from cset_links to this hierarchy's
1129 * root cgroup
1130 */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001131 spin_lock_bh(&css_set_lock);
Tejun Heof2e85d52014-02-11 11:52:49 -05001132
1133 list_for_each_entry_safe(link, tmp_link, &cgrp->cset_links, cset_link) {
1134 list_del(&link->cset_link);
1135 list_del(&link->cgrp_link);
1136 kfree(link);
1137 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001138
1139 spin_unlock_bh(&css_set_lock);
Tejun Heof2e85d52014-02-11 11:52:49 -05001140
1141 if (!list_empty(&root->root_list)) {
1142 list_del(&root->root_list);
1143 cgroup_root_count--;
1144 }
1145
1146 cgroup_exit_root_id(root);
1147
1148 mutex_unlock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -05001149
Tejun Heo2bd59d42014-02-11 11:52:49 -05001150 kernfs_destroy_root(root->kf_root);
Tejun Heof2e85d52014-02-11 11:52:49 -05001151 cgroup_free_root(root);
1152}
1153
Tejun Heoceb6a082014-02-25 10:04:02 -05001154/* look up cgroup associated with given css_set on the specified hierarchy */
1155static struct cgroup *cset_cgroup_from_root(struct css_set *cset,
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001156 struct cgroup_root *root)
Paul Menage7717f7b2009-09-23 15:56:22 -07001157{
Paul Menage7717f7b2009-09-23 15:56:22 -07001158 struct cgroup *res = NULL;
1159
Tejun Heo96d365e2014-02-13 06:58:40 -05001160 lockdep_assert_held(&cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001161 lockdep_assert_held(&css_set_lock);
Tejun Heo96d365e2014-02-13 06:58:40 -05001162
Tejun Heo5abb8852013-06-12 21:04:49 -07001163 if (cset == &init_css_set) {
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001164 res = &root->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -07001165 } else {
Tejun Heo69d02062013-06-12 21:04:50 -07001166 struct cgrp_cset_link *link;
1167
1168 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07001169 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -07001170
Paul Menage7717f7b2009-09-23 15:56:22 -07001171 if (c->root == root) {
1172 res = c;
1173 break;
1174 }
1175 }
1176 }
Tejun Heo96d365e2014-02-13 06:58:40 -05001177
Paul Menage7717f7b2009-09-23 15:56:22 -07001178 BUG_ON(!res);
1179 return res;
1180}
1181
1182/*
Tejun Heoceb6a082014-02-25 10:04:02 -05001183 * Return the cgroup for "task" from the given hierarchy. Must be
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001184 * called with cgroup_mutex and css_set_lock held.
Tejun Heoceb6a082014-02-25 10:04:02 -05001185 */
1186static struct cgroup *task_cgroup_from_root(struct task_struct *task,
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001187 struct cgroup_root *root)
Tejun Heoceb6a082014-02-25 10:04:02 -05001188{
1189 /*
1190 * No need to lock the task - since we hold cgroup_mutex the
1191 * task can't change groups, so the only thing that can happen
1192 * is that it exits and its css is set back to init_css_set.
1193 */
1194 return cset_cgroup_from_root(task_css_set(task), root);
1195}
1196
1197/*
Paul Menageddbcc7e2007-10-18 23:39:30 -07001198 * A task must hold cgroup_mutex to modify cgroups.
1199 *
1200 * Any task can increment and decrement the count field without lock.
1201 * So in general, code holding cgroup_mutex can't rely on the count
1202 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -08001203 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -07001204 * means that no tasks are currently attached, therefore there is no
1205 * way a task attached to that cgroup can fork (the other way to
1206 * increment the count). So code holding cgroup_mutex can safely
1207 * assume that if the count is zero, it will stay zero. Similarly, if
1208 * a task holds cgroup_mutex on a cgroup with zero count, it
1209 * knows that the cgroup won't be removed, as cgroup_rmdir()
1210 * needs that mutex.
1211 *
Paul Menageddbcc7e2007-10-18 23:39:30 -07001212 * A cgroup can only be deleted if both its 'count' of using tasks
1213 * is zero, and its list of 'children' cgroups is empty. Since all
1214 * tasks in the system use _some_ cgroup, and since there is always at
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001215 * least one task in the system (init, pid == 1), therefore, root cgroup
Paul Menageddbcc7e2007-10-18 23:39:30 -07001216 * always has either children cgroups and/or using tasks. So we don't
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001217 * need a special hack to ensure that root cgroup cannot be deleted.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001218 *
1219 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -08001220 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -07001221 */
1222
Tejun Heo2bd59d42014-02-11 11:52:49 -05001223static struct kernfs_syscall_ops cgroup_kf_syscall_ops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001224static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -07001225
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05001226static char *cgroup_file_name(struct cgroup *cgrp, const struct cftype *cft,
1227 char *buf)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001228{
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07001229 struct cgroup_subsys *ss = cft->ss;
1230
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05001231 if (cft->ss && !(cft->flags & CFTYPE_NO_PREFIX) &&
1232 !(cgrp->root->flags & CGRP_ROOT_NOPREFIX))
1233 snprintf(buf, CGROUP_FILE_NAME_MAX, "%s.%s",
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07001234 cgroup_on_dfl(cgrp) ? ss->name : ss->legacy_name,
1235 cft->name);
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05001236 else
1237 strncpy(buf, cft->name, CGROUP_FILE_NAME_MAX);
1238 return buf;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001239}
1240
Tejun Heof2e85d52014-02-11 11:52:49 -05001241/**
1242 * cgroup_file_mode - deduce file mode of a control file
1243 * @cft: the control file in question
1244 *
Tejun Heo7dbdb192015-09-18 17:54:23 -04001245 * S_IRUGO for read, S_IWUSR for write.
Tejun Heof2e85d52014-02-11 11:52:49 -05001246 */
1247static umode_t cgroup_file_mode(const struct cftype *cft)
Li Zefan65dff752013-03-01 15:01:56 +08001248{
Tejun Heof2e85d52014-02-11 11:52:49 -05001249 umode_t mode = 0;
Li Zefan65dff752013-03-01 15:01:56 +08001250
Tejun Heof2e85d52014-02-11 11:52:49 -05001251 if (cft->read_u64 || cft->read_s64 || cft->seq_show)
1252 mode |= S_IRUGO;
1253
Tejun Heo7dbdb192015-09-18 17:54:23 -04001254 if (cft->write_u64 || cft->write_s64 || cft->write) {
1255 if (cft->flags & CFTYPE_WORLD_WRITABLE)
1256 mode |= S_IWUGO;
1257 else
1258 mode |= S_IWUSR;
1259 }
Tejun Heof2e85d52014-02-11 11:52:49 -05001260
1261 return mode;
Li Zefan65dff752013-03-01 15:01:56 +08001262}
1263
Tejun Heoa9746d82014-05-13 12:19:22 -04001264/**
Tejun Heo8699b772016-02-22 22:25:46 -05001265 * cgroup_calc_subtree_ss_mask - calculate subtree_ss_mask
Tejun Heoaf0ba672014-07-08 18:02:57 -04001266 * @cgrp: the target cgroup
Tejun Heo0f060de2014-11-18 02:49:50 -05001267 * @subtree_control: the new subtree_control mask to consider
Tejun Heoaf0ba672014-07-08 18:02:57 -04001268 *
1269 * On the default hierarchy, a subsystem may request other subsystems to be
1270 * enabled together through its ->depends_on mask. In such cases, more
1271 * subsystems than specified in "cgroup.subtree_control" may be enabled.
1272 *
Tejun Heo0f060de2014-11-18 02:49:50 -05001273 * This function calculates which subsystems need to be enabled if
1274 * @subtree_control is to be applied to @cgrp. The returned mask is always
1275 * a superset of @subtree_control and follows the usual hierarchy rules.
Tejun Heoaf0ba672014-07-08 18:02:57 -04001276 */
Tejun Heo6e5c8302016-02-22 22:25:47 -05001277static u16 cgroup_calc_subtree_ss_mask(struct cgroup *cgrp, u16 subtree_control)
Tejun Heo667c2492014-07-08 18:02:56 -04001278{
Tejun Heoaf0ba672014-07-08 18:02:57 -04001279 struct cgroup *parent = cgroup_parent(cgrp);
Tejun Heo6e5c8302016-02-22 22:25:47 -05001280 u16 cur_ss_mask = subtree_control;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001281 struct cgroup_subsys *ss;
1282 int ssid;
1283
1284 lockdep_assert_held(&cgroup_mutex);
1285
Tejun Heo0f060de2014-11-18 02:49:50 -05001286 if (!cgroup_on_dfl(cgrp))
1287 return cur_ss_mask;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001288
1289 while (true) {
Tejun Heo6e5c8302016-02-22 22:25:47 -05001290 u16 new_ss_mask = cur_ss_mask;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001291
Tejun Heob4e0eea2016-02-22 22:25:46 -05001292 do_each_subsys_mask(ss, ssid, cur_ss_mask) {
Aleksa Saraia966a4e2015-06-06 10:02:15 +10001293 new_ss_mask |= ss->depends_on;
Tejun Heob4e0eea2016-02-22 22:25:46 -05001294 } while_each_subsys_mask();
Tejun Heoaf0ba672014-07-08 18:02:57 -04001295
1296 /*
1297 * Mask out subsystems which aren't available. This can
1298 * happen only if some depended-upon subsystems were bound
1299 * to non-default hierarchies.
1300 */
1301 if (parent)
Tejun Heo8699b772016-02-22 22:25:46 -05001302 new_ss_mask &= parent->subtree_ss_mask;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001303 else
1304 new_ss_mask &= cgrp->root->subsys_mask;
1305
1306 if (new_ss_mask == cur_ss_mask)
1307 break;
1308 cur_ss_mask = new_ss_mask;
1309 }
1310
Tejun Heo0f060de2014-11-18 02:49:50 -05001311 return cur_ss_mask;
1312}
1313
1314/**
Tejun Heo8699b772016-02-22 22:25:46 -05001315 * cgroup_refresh_subtree_ss_mask - update subtree_ss_mask
Tejun Heo0f060de2014-11-18 02:49:50 -05001316 * @cgrp: the target cgroup
1317 *
Tejun Heo8699b772016-02-22 22:25:46 -05001318 * Update @cgrp->subtree_ss_mask according to the current
1319 * @cgrp->subtree_control using cgroup_calc_subtree_ss_mask().
Tejun Heo0f060de2014-11-18 02:49:50 -05001320 */
Tejun Heo8699b772016-02-22 22:25:46 -05001321static void cgroup_refresh_subtree_ss_mask(struct cgroup *cgrp)
Tejun Heo0f060de2014-11-18 02:49:50 -05001322{
Tejun Heo8699b772016-02-22 22:25:46 -05001323 cgrp->subtree_ss_mask =
1324 cgroup_calc_subtree_ss_mask(cgrp, cgrp->subtree_control);
Tejun Heo667c2492014-07-08 18:02:56 -04001325}
1326
Tejun Heoa9746d82014-05-13 12:19:22 -04001327/**
1328 * cgroup_kn_unlock - unlocking helper for cgroup kernfs methods
1329 * @kn: the kernfs_node being serviced
1330 *
1331 * This helper undoes cgroup_kn_lock_live() and should be invoked before
1332 * the method finishes if locking succeeded. Note that once this function
1333 * returns the cgroup returned by cgroup_kn_lock_live() may become
1334 * inaccessible any time. If the caller intends to continue to access the
1335 * cgroup, it should pin it before invoking this function.
1336 */
1337static void cgroup_kn_unlock(struct kernfs_node *kn)
1338{
1339 struct cgroup *cgrp;
1340
1341 if (kernfs_type(kn) == KERNFS_DIR)
1342 cgrp = kn->priv;
1343 else
1344 cgrp = kn->parent->priv;
1345
1346 mutex_unlock(&cgroup_mutex);
Tejun Heoa9746d82014-05-13 12:19:22 -04001347
1348 kernfs_unbreak_active_protection(kn);
1349 cgroup_put(cgrp);
1350}
1351
1352/**
1353 * cgroup_kn_lock_live - locking helper for cgroup kernfs methods
1354 * @kn: the kernfs_node being serviced
1355 *
1356 * This helper is to be used by a cgroup kernfs method currently servicing
1357 * @kn. It breaks the active protection, performs cgroup locking and
1358 * verifies that the associated cgroup is alive. Returns the cgroup if
1359 * alive; otherwise, %NULL. A successful return should be undone by a
1360 * matching cgroup_kn_unlock() invocation.
1361 *
1362 * Any cgroup kernfs method implementation which requires locking the
1363 * associated cgroup should use this helper. It avoids nesting cgroup
1364 * locking under kernfs active protection and allows all kernfs operations
1365 * including self-removal.
1366 */
1367static struct cgroup *cgroup_kn_lock_live(struct kernfs_node *kn)
1368{
1369 struct cgroup *cgrp;
1370
1371 if (kernfs_type(kn) == KERNFS_DIR)
1372 cgrp = kn->priv;
1373 else
1374 cgrp = kn->parent->priv;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001375
Tejun Heo2bd59d42014-02-11 11:52:49 -05001376 /*
Tejun Heo01f64742014-05-13 12:19:23 -04001377 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoa9746d82014-05-13 12:19:22 -04001378 * active_ref. cgroup liveliness check alone provides enough
1379 * protection against removal. Ensure @cgrp stays accessible and
1380 * break the active_ref protection.
Tejun Heo2bd59d42014-02-11 11:52:49 -05001381 */
Li Zefanaa323622014-09-04 14:43:38 +08001382 if (!cgroup_tryget(cgrp))
1383 return NULL;
Tejun Heoa9746d82014-05-13 12:19:22 -04001384 kernfs_break_active_protection(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001385
Tejun Heoa9746d82014-05-13 12:19:22 -04001386 mutex_lock(&cgroup_mutex);
1387
1388 if (!cgroup_is_dead(cgrp))
1389 return cgrp;
1390
1391 cgroup_kn_unlock(kn);
1392 return NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001393}
1394
Li Zefan2739d3c2013-01-21 18:18:33 +08001395static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001396{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001397 char name[CGROUP_FILE_NAME_MAX];
Paul Menageddbcc7e2007-10-18 23:39:30 -07001398
Tejun Heo01f64742014-05-13 12:19:23 -04001399 lockdep_assert_held(&cgroup_mutex);
Tejun Heo34c06252015-11-05 00:12:24 -05001400
1401 if (cft->file_offset) {
1402 struct cgroup_subsys_state *css = cgroup_css(cgrp, cft->ss);
1403 struct cgroup_file *cfile = (void *)css + cft->file_offset;
1404
1405 spin_lock_irq(&cgroup_file_kn_lock);
1406 cfile->kn = NULL;
1407 spin_unlock_irq(&cgroup_file_kn_lock);
1408 }
1409
Tejun Heo2bd59d42014-02-11 11:52:49 -05001410 kernfs_remove_by_name(cgrp->kn, cgroup_file_name(cgrp, cft, name));
Tejun Heo05ef1d72012-04-01 12:09:56 -07001411}
1412
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001413/**
Tejun Heo4df8dc92015-09-18 17:54:23 -04001414 * css_clear_dir - remove subsys files in a cgroup directory
1415 * @css: taget css
1416 * @cgrp_override: specify if target cgroup is different from css->cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001417 */
Tejun Heo4df8dc92015-09-18 17:54:23 -04001418static void css_clear_dir(struct cgroup_subsys_state *css,
1419 struct cgroup *cgrp_override)
Tejun Heo05ef1d72012-04-01 12:09:56 -07001420{
Tejun Heo4df8dc92015-09-18 17:54:23 -04001421 struct cgroup *cgrp = cgrp_override ?: css->cgroup;
1422 struct cftype *cfts;
Tejun Heo05ef1d72012-04-01 12:09:56 -07001423
Tejun Heo88cb04b2016-03-03 09:57:58 -05001424 if (!(css->flags & CSS_VISIBLE))
1425 return;
1426
1427 css->flags &= ~CSS_VISIBLE;
1428
Tejun Heo4df8dc92015-09-18 17:54:23 -04001429 list_for_each_entry(cfts, &css->ss->cfts, node)
1430 cgroup_addrm_files(css, cgrp, cfts, false);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001431}
1432
Tejun Heoccdca212015-09-18 17:54:23 -04001433/**
Tejun Heo4df8dc92015-09-18 17:54:23 -04001434 * css_populate_dir - create subsys files in a cgroup directory
1435 * @css: target css
1436 * @cgrp_overried: specify if target cgroup is different from css->cgroup
Tejun Heoccdca212015-09-18 17:54:23 -04001437 *
1438 * On failure, no file is added.
1439 */
Tejun Heo4df8dc92015-09-18 17:54:23 -04001440static int css_populate_dir(struct cgroup_subsys_state *css,
1441 struct cgroup *cgrp_override)
Tejun Heoccdca212015-09-18 17:54:23 -04001442{
Tejun Heo4df8dc92015-09-18 17:54:23 -04001443 struct cgroup *cgrp = cgrp_override ?: css->cgroup;
1444 struct cftype *cfts, *failed_cfts;
1445 int ret;
Tejun Heoccdca212015-09-18 17:54:23 -04001446
Tejun Heo88cb04b2016-03-03 09:57:58 -05001447 if (css->flags & CSS_VISIBLE)
1448 return 0;
1449
Tejun Heo4df8dc92015-09-18 17:54:23 -04001450 if (!css->ss) {
1451 if (cgroup_on_dfl(cgrp))
1452 cfts = cgroup_dfl_base_files;
1453 else
1454 cfts = cgroup_legacy_base_files;
Tejun Heoccdca212015-09-18 17:54:23 -04001455
Tejun Heo4df8dc92015-09-18 17:54:23 -04001456 return cgroup_addrm_files(&cgrp->self, cgrp, cfts, true);
1457 }
Tejun Heoccdca212015-09-18 17:54:23 -04001458
Tejun Heo4df8dc92015-09-18 17:54:23 -04001459 list_for_each_entry(cfts, &css->ss->cfts, node) {
1460 ret = cgroup_addrm_files(css, cgrp, cfts, true);
1461 if (ret < 0) {
1462 failed_cfts = cfts;
1463 goto err;
Tejun Heoccdca212015-09-18 17:54:23 -04001464 }
1465 }
Tejun Heo88cb04b2016-03-03 09:57:58 -05001466
1467 css->flags |= CSS_VISIBLE;
1468
Tejun Heoccdca212015-09-18 17:54:23 -04001469 return 0;
1470err:
Tejun Heo4df8dc92015-09-18 17:54:23 -04001471 list_for_each_entry(cfts, &css->ss->cfts, node) {
1472 if (cfts == failed_cfts)
1473 break;
1474 cgroup_addrm_files(css, cgrp, cfts, false);
1475 }
Tejun Heoccdca212015-09-18 17:54:23 -04001476 return ret;
1477}
1478
Tejun Heo6e5c8302016-02-22 22:25:47 -05001479static int rebind_subsystems(struct cgroup_root *dst_root, u16 ss_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001480{
Tejun Heo1ada4832015-09-18 17:54:23 -04001481 struct cgroup *dcgrp = &dst_root->cgrp;
Tejun Heo30159ec2013-06-25 11:53:37 -07001482 struct cgroup_subsys *ss;
Tejun Heo6e5c8302016-02-22 22:25:47 -05001483 u16 tmp_ss_mask;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001484 int ssid, i, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001485
Tejun Heoace2bee2014-02-11 11:52:47 -05001486 lockdep_assert_held(&cgroup_mutex);
Ben Blumaae8aab2010-03-10 15:22:07 -08001487
Tejun Heob4e0eea2016-02-22 22:25:46 -05001488 do_each_subsys_mask(ss, ssid, ss_mask) {
Tejun Heo7fd8c562014-04-23 11:13:16 -04001489 /* if @ss has non-root csses attached to it, can't move */
1490 if (css_next_child(NULL, cgroup_css(&ss->root->cgrp, ss)))
Tejun Heo3ed80a62014-02-08 10:36:58 -05001491 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001492
Tejun Heo5df36032014-03-19 10:23:54 -04001493 /* can't move between two non-dummy roots either */
Tejun Heo7fd8c562014-04-23 11:13:16 -04001494 if (ss->root != &cgrp_dfl_root && dst_root != &cgrp_dfl_root)
Tejun Heo5df36032014-03-19 10:23:54 -04001495 return -EBUSY;
Tejun Heob4e0eea2016-02-22 22:25:46 -05001496 } while_each_subsys_mask();
Paul Menageddbcc7e2007-10-18 23:39:30 -07001497
Tejun Heo5533e012014-05-14 19:33:07 -04001498 /* skip creating root files on dfl_root for inhibited subsystems */
1499 tmp_ss_mask = ss_mask;
1500 if (dst_root == &cgrp_dfl_root)
Tejun Heoa7165262016-02-23 10:00:50 -05001501 tmp_ss_mask &= ~cgrp_dfl_inhibit_ss_mask;
Tejun Heo5533e012014-05-14 19:33:07 -04001502
Tejun Heob4e0eea2016-02-22 22:25:46 -05001503 do_each_subsys_mask(ss, ssid, tmp_ss_mask) {
Tejun Heo4df8dc92015-09-18 17:54:23 -04001504 struct cgroup *scgrp = &ss->root->cgrp;
1505 int tssid;
1506
1507 ret = css_populate_dir(cgroup_css(scgrp, ss), dcgrp);
1508 if (!ret)
1509 continue;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001510
Tejun Heoa2dd4242014-03-19 10:23:55 -04001511 /*
1512 * Rebinding back to the default root is not allowed to
1513 * fail. Using both default and non-default roots should
1514 * be rare. Moving subsystems back and forth even more so.
1515 * Just warn about it and continue.
1516 */
Tejun Heo4df8dc92015-09-18 17:54:23 -04001517 if (dst_root == &cgrp_dfl_root) {
Tejun Heoa7165262016-02-23 10:00:50 -05001518 if (cgrp_dfl_visible) {
Tejun Heo6e5c8302016-02-22 22:25:47 -05001519 pr_warn("failed to create files (%d) while rebinding 0x%x to default root\n",
Tejun Heo4df8dc92015-09-18 17:54:23 -04001520 ret, ss_mask);
1521 pr_warn("you may retry by moving them to a different hierarchy and unbinding\n");
1522 }
1523 continue;
Tejun Heoa2dd4242014-03-19 10:23:55 -04001524 }
Tejun Heo4df8dc92015-09-18 17:54:23 -04001525
Tejun Heob4e0eea2016-02-22 22:25:46 -05001526 do_each_subsys_mask(ss, tssid, tmp_ss_mask) {
Tejun Heo4df8dc92015-09-18 17:54:23 -04001527 if (tssid == ssid)
1528 break;
1529 css_clear_dir(cgroup_css(scgrp, ss), dcgrp);
Tejun Heob4e0eea2016-02-22 22:25:46 -05001530 } while_each_subsys_mask();
Tejun Heo4df8dc92015-09-18 17:54:23 -04001531 return ret;
Tejun Heob4e0eea2016-02-22 22:25:46 -05001532 } while_each_subsys_mask();
Tejun Heo31261212013-06-28 17:07:30 -07001533
1534 /*
1535 * Nothing can fail from this point on. Remove files for the
1536 * removed subsystems and rebind each subsystem.
1537 */
Tejun Heob4e0eea2016-02-22 22:25:46 -05001538 do_each_subsys_mask(ss, ssid, ss_mask) {
Tejun Heo1ada4832015-09-18 17:54:23 -04001539 struct cgroup_root *src_root = ss->root;
1540 struct cgroup *scgrp = &src_root->cgrp;
1541 struct cgroup_subsys_state *css = cgroup_css(scgrp, ss);
Tejun Heo2d8f2432014-04-23 11:13:15 -04001542 struct css_set *cset;
Tejun Heo30159ec2013-06-25 11:53:37 -07001543
Tejun Heo1ada4832015-09-18 17:54:23 -04001544 WARN_ON(!css || cgroup_css(dcgrp, ss));
Tejun Heo73e80ed2013-08-13 11:01:55 -04001545
Tejun Heo4df8dc92015-09-18 17:54:23 -04001546 css_clear_dir(css, NULL);
1547
Tejun Heo1ada4832015-09-18 17:54:23 -04001548 RCU_INIT_POINTER(scgrp->subsys[ssid], NULL);
1549 rcu_assign_pointer(dcgrp->subsys[ssid], css);
Tejun Heo5df36032014-03-19 10:23:54 -04001550 ss->root = dst_root;
Tejun Heo1ada4832015-09-18 17:54:23 -04001551 css->cgroup = dcgrp;
Tejun Heoa8a648c2013-06-24 15:21:47 -07001552
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001553 spin_lock_bh(&css_set_lock);
Tejun Heo2d8f2432014-04-23 11:13:15 -04001554 hash_for_each(css_set_table, i, cset, hlist)
1555 list_move_tail(&cset->e_cset_node[ss->id],
Tejun Heo1ada4832015-09-18 17:54:23 -04001556 &dcgrp->e_csets[ss->id]);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001557 spin_unlock_bh(&css_set_lock);
Tejun Heo2d8f2432014-04-23 11:13:15 -04001558
Tejun Heof392e512014-04-23 11:13:14 -04001559 src_root->subsys_mask &= ~(1 << ssid);
Tejun Heo1ada4832015-09-18 17:54:23 -04001560 scgrp->subtree_control &= ~(1 << ssid);
Tejun Heo8699b772016-02-22 22:25:46 -05001561 cgroup_refresh_subtree_ss_mask(scgrp);
Tejun Heof392e512014-04-23 11:13:14 -04001562
Tejun Heobd53d612014-04-23 11:13:16 -04001563 /* default hierarchy doesn't enable controllers by default */
Tejun Heof392e512014-04-23 11:13:14 -04001564 dst_root->subsys_mask |= 1 << ssid;
Tejun Heo49d1dc42015-09-18 11:56:28 -04001565 if (dst_root == &cgrp_dfl_root) {
1566 static_branch_enable(cgroup_subsys_on_dfl_key[ssid]);
1567 } else {
Tejun Heo1ada4832015-09-18 17:54:23 -04001568 dcgrp->subtree_control |= 1 << ssid;
Tejun Heo8699b772016-02-22 22:25:46 -05001569 cgroup_refresh_subtree_ss_mask(dcgrp);
Tejun Heo49d1dc42015-09-18 11:56:28 -04001570 static_branch_disable(cgroup_subsys_on_dfl_key[ssid]);
Tejun Heo667c2492014-07-08 18:02:56 -04001571 }
Tejun Heo73e80ed2013-08-13 11:01:55 -04001572
Tejun Heo5df36032014-03-19 10:23:54 -04001573 if (ss->bind)
1574 ss->bind(css);
Tejun Heob4e0eea2016-02-22 22:25:46 -05001575 } while_each_subsys_mask();
Paul Menageddbcc7e2007-10-18 23:39:30 -07001576
Tejun Heo1ada4832015-09-18 17:54:23 -04001577 kernfs_activate(dcgrp->kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001578 return 0;
1579}
1580
Tejun Heo2bd59d42014-02-11 11:52:49 -05001581static int cgroup_show_options(struct seq_file *seq,
1582 struct kernfs_root *kf_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001583{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001584 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001585 struct cgroup_subsys *ss;
Tejun Heob85d2042013-12-06 15:11:57 -05001586 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001587
Tejun Heod98817d2015-08-18 13:58:16 -07001588 if (root != &cgrp_dfl_root)
1589 for_each_subsys(ss, ssid)
1590 if (root->subsys_mask & (1 << ssid))
Kees Cook61e57c02015-09-08 14:58:22 -07001591 seq_show_option(seq, ss->legacy_name, NULL);
Tejun Heo93438622013-04-14 20:15:25 -07001592 if (root->flags & CGRP_ROOT_NOPREFIX)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001593 seq_puts(seq, ",noprefix");
Tejun Heo93438622013-04-14 20:15:25 -07001594 if (root->flags & CGRP_ROOT_XATTR)
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001595 seq_puts(seq, ",xattr");
Tejun Heo69e943b2014-02-08 10:36:58 -05001596
1597 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001598 if (strlen(root->release_agent_path))
Kees Cooka068acf2015-09-04 15:44:57 -07001599 seq_show_option(seq, "release_agent",
1600 root->release_agent_path);
Tejun Heo69e943b2014-02-08 10:36:58 -05001601 spin_unlock(&release_agent_path_lock);
1602
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001603 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags))
Daniel Lezcano97978e62010-10-27 15:33:35 -07001604 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001605 if (strlen(root->name))
Kees Cooka068acf2015-09-04 15:44:57 -07001606 seq_show_option(seq, "name", root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001607 return 0;
1608}
1609
1610struct cgroup_sb_opts {
Tejun Heo6e5c8302016-02-22 22:25:47 -05001611 u16 subsys_mask;
Tejun Heo69dfa002014-05-04 15:09:13 -04001612 unsigned int flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001613 char *release_agent;
Tejun Heo2260e7f2012-11-19 08:13:38 -08001614 bool cpuset_clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001615 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001616 /* User explicitly requested empty subsystem */
1617 bool none;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001618};
1619
Ben Blumcf5d5942010-03-10 15:22:09 -08001620static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001621{
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001622 char *token, *o = data;
1623 bool all_ss = false, one_ss = false;
Tejun Heo6e5c8302016-02-22 22:25:47 -05001624 u16 mask = U16_MAX;
Tejun Heo30159ec2013-06-25 11:53:37 -07001625 struct cgroup_subsys *ss;
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001626 int nr_opts = 0;
Tejun Heo30159ec2013-06-25 11:53:37 -07001627 int i;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001628
1629#ifdef CONFIG_CPUSETS
Tejun Heo6e5c8302016-02-22 22:25:47 -05001630 mask = ~((u16)1 << cpuset_cgrp_id);
Li Zefanf9ab5b52009-06-17 16:26:33 -07001631#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001632
Paul Menagec6d57f32009-09-23 15:56:19 -07001633 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001634
1635 while ((token = strsep(&o, ",")) != NULL) {
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001636 nr_opts++;
1637
Paul Menageddbcc7e2007-10-18 23:39:30 -07001638 if (!*token)
1639 return -EINVAL;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001640 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001641 /* Explicitly have no subsystems */
1642 opts->none = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001643 continue;
1644 }
1645 if (!strcmp(token, "all")) {
1646 /* Mutually exclusive option 'all' + subsystem name */
1647 if (one_ss)
1648 return -EINVAL;
1649 all_ss = true;
1650 continue;
1651 }
1652 if (!strcmp(token, "noprefix")) {
Tejun Heo93438622013-04-14 20:15:25 -07001653 opts->flags |= CGRP_ROOT_NOPREFIX;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001654 continue;
1655 }
1656 if (!strcmp(token, "clone_children")) {
Tejun Heo2260e7f2012-11-19 08:13:38 -08001657 opts->cpuset_clone_children = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001658 continue;
1659 }
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001660 if (!strcmp(token, "xattr")) {
Tejun Heo93438622013-04-14 20:15:25 -07001661 opts->flags |= CGRP_ROOT_XATTR;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001662 continue;
1663 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001664 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001665 /* Specifying two release agents is forbidden */
1666 if (opts->release_agent)
1667 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001668 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001669 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001670 if (!opts->release_agent)
1671 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001672 continue;
1673 }
1674 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001675 const char *name = token + 5;
1676 /* Can't specify an empty name */
1677 if (!strlen(name))
1678 return -EINVAL;
1679 /* Must match [\w.-]+ */
1680 for (i = 0; i < strlen(name); i++) {
1681 char c = name[i];
1682 if (isalnum(c))
1683 continue;
1684 if ((c == '.') || (c == '-') || (c == '_'))
1685 continue;
1686 return -EINVAL;
1687 }
1688 /* Specifying two names is forbidden */
1689 if (opts->name)
1690 return -EINVAL;
1691 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001692 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001693 GFP_KERNEL);
1694 if (!opts->name)
1695 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001696
1697 continue;
1698 }
1699
Tejun Heo30159ec2013-06-25 11:53:37 -07001700 for_each_subsys(ss, i) {
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07001701 if (strcmp(token, ss->legacy_name))
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001702 continue;
Tejun Heofc5ed1e2015-09-18 11:56:28 -04001703 if (!cgroup_ssid_enabled(i))
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001704 continue;
Johannes Weiner223ffb22016-02-11 13:34:49 -05001705 if (cgroup_ssid_no_v1(i))
1706 continue;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001707
1708 /* Mutually exclusive option 'all' + subsystem name */
1709 if (all_ss)
1710 return -EINVAL;
Tejun Heo69dfa002014-05-04 15:09:13 -04001711 opts->subsys_mask |= (1 << i);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001712 one_ss = true;
1713
1714 break;
1715 }
1716 if (i == CGROUP_SUBSYS_COUNT)
1717 return -ENOENT;
1718 }
1719
Li Zefanf9ab5b52009-06-17 16:26:33 -07001720 /*
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001721 * If the 'all' option was specified select all the subsystems,
1722 * otherwise if 'none', 'name=' and a subsystem name options were
1723 * not specified, let's default to 'all'
1724 */
1725 if (all_ss || (!one_ss && !opts->none && !opts->name))
1726 for_each_subsys(ss, i)
Johannes Weiner223ffb22016-02-11 13:34:49 -05001727 if (cgroup_ssid_enabled(i) && !cgroup_ssid_no_v1(i))
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001728 opts->subsys_mask |= (1 << i);
1729
1730 /*
1731 * We either have to specify by name or by subsystems. (So all
1732 * empty hierarchies must have a name).
1733 */
1734 if (!opts->subsys_mask && !opts->name)
1735 return -EINVAL;
1736
1737 /*
Li Zefanf9ab5b52009-06-17 16:26:33 -07001738 * Option noprefix was introduced just for backward compatibility
1739 * with the old cpuset, so we allow noprefix only if mounting just
1740 * the cpuset subsystem.
1741 */
Tejun Heo93438622013-04-14 20:15:25 -07001742 if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask))
Li Zefanf9ab5b52009-06-17 16:26:33 -07001743 return -EINVAL;
1744
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001745 /* Can't specify "none" and some subsystems */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001746 if (opts->subsys_mask && opts->none)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001747 return -EINVAL;
1748
Paul Menageddbcc7e2007-10-18 23:39:30 -07001749 return 0;
1750}
1751
Tejun Heo2bd59d42014-02-11 11:52:49 -05001752static int cgroup_remount(struct kernfs_root *kf_root, int *flags, char *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001753{
1754 int ret = 0;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001755 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001756 struct cgroup_sb_opts opts;
Tejun Heo6e5c8302016-02-22 22:25:47 -05001757 u16 added_mask, removed_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001758
Tejun Heoaa6ec292014-07-09 10:08:08 -04001759 if (root == &cgrp_dfl_root) {
1760 pr_err("remount is not allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001761 return -EINVAL;
1762 }
1763
Paul Menageddbcc7e2007-10-18 23:39:30 -07001764 mutex_lock(&cgroup_mutex);
1765
1766 /* See what subsystems are wanted */
1767 ret = parse_cgroupfs_options(data, &opts);
1768 if (ret)
1769 goto out_unlock;
1770
Tejun Heof392e512014-04-23 11:13:14 -04001771 if (opts.subsys_mask != root->subsys_mask || opts.release_agent)
Joe Perchesed3d2612014-04-25 18:28:03 -04001772 pr_warn("option changes via remount are deprecated (pid=%d comm=%s)\n",
Jianyu Zhana2a1f9e2014-04-25 18:28:03 -04001773 task_tgid_nr(current), current->comm);
Tejun Heo8b5a5a92012-04-01 12:09:54 -07001774
Tejun Heof392e512014-04-23 11:13:14 -04001775 added_mask = opts.subsys_mask & ~root->subsys_mask;
1776 removed_mask = root->subsys_mask & ~opts.subsys_mask;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001777
Ben Blumcf5d5942010-03-10 15:22:09 -08001778 /* Don't allow flags or name to change at remount */
Tejun Heo7450e902014-07-09 10:08:07 -04001779 if ((opts.flags ^ root->flags) ||
Ben Blumcf5d5942010-03-10 15:22:09 -08001780 (opts.name && strcmp(opts.name, root->name))) {
Tejun Heo69dfa002014-05-04 15:09:13 -04001781 pr_err("option or name mismatch, new: 0x%x \"%s\", old: 0x%x \"%s\"\n",
Tejun Heo7450e902014-07-09 10:08:07 -04001782 opts.flags, opts.name ?: "", root->flags, root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001783 ret = -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001784 goto out_unlock;
1785 }
1786
Tejun Heof172e672013-06-28 17:07:30 -07001787 /* remounting is not allowed for populated hierarchies */
Tejun Heod5c419b2014-05-16 13:22:48 -04001788 if (!list_empty(&root->cgrp.self.children)) {
Tejun Heof172e672013-06-28 17:07:30 -07001789 ret = -EBUSY;
Li Zefan0670e082009-04-02 16:57:30 -07001790 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001791 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001792
Tejun Heo5df36032014-03-19 10:23:54 -04001793 ret = rebind_subsystems(root, added_mask);
Tejun Heo31261212013-06-28 17:07:30 -07001794 if (ret)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001795 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001796
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001797 rebind_subsystems(&cgrp_dfl_root, removed_mask);
Tejun Heo5df36032014-03-19 10:23:54 -04001798
Tejun Heo69e943b2014-02-08 10:36:58 -05001799 if (opts.release_agent) {
1800 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001801 strcpy(root->release_agent_path, opts.release_agent);
Tejun Heo69e943b2014-02-08 10:36:58 -05001802 spin_unlock(&release_agent_path_lock);
1803 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001804 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001805 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001806 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001807 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001808 return ret;
1809}
1810
Tejun Heoafeb0f92014-02-13 06:58:39 -05001811/*
1812 * To reduce the fork() overhead for systems that are not actually using
1813 * their cgroups capability, we don't maintain the lists running through
1814 * each css_set to its tasks until we see the list actually used - in other
1815 * words after the first mount.
1816 */
1817static bool use_task_css_set_links __read_mostly;
1818
1819static void cgroup_enable_task_cg_lists(void)
1820{
1821 struct task_struct *p, *g;
1822
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001823 spin_lock_bh(&css_set_lock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001824
1825 if (use_task_css_set_links)
1826 goto out_unlock;
1827
1828 use_task_css_set_links = true;
1829
1830 /*
1831 * We need tasklist_lock because RCU is not safe against
1832 * while_each_thread(). Besides, a forking task that has passed
1833 * cgroup_post_fork() without seeing use_task_css_set_links = 1
1834 * is not guaranteed to have its child immediately visible in the
1835 * tasklist if we walk through it with RCU.
1836 */
1837 read_lock(&tasklist_lock);
1838 do_each_thread(g, p) {
Tejun Heoafeb0f92014-02-13 06:58:39 -05001839 WARN_ON_ONCE(!list_empty(&p->cg_list) ||
1840 task_css_set(p) != &init_css_set);
1841
1842 /*
1843 * We should check if the process is exiting, otherwise
1844 * it will race with cgroup_exit() in that the list
1845 * entry won't be deleted though the process has exited.
Tejun Heof153ad12014-02-25 09:56:49 -05001846 * Do it while holding siglock so that we don't end up
1847 * racing against cgroup_exit().
Tejun Heoafeb0f92014-02-13 06:58:39 -05001848 */
Tejun Heof153ad12014-02-25 09:56:49 -05001849 spin_lock_irq(&p->sighand->siglock);
Tejun Heoeaf797a2014-02-25 10:04:03 -05001850 if (!(p->flags & PF_EXITING)) {
1851 struct css_set *cset = task_css_set(p);
1852
Tejun Heo0de09422015-10-15 16:41:49 -04001853 if (!css_set_populated(cset))
1854 css_set_update_populated(cset, true);
Tejun Heo389b9c12015-10-15 16:41:51 -04001855 list_add_tail(&p->cg_list, &cset->tasks);
Tejun Heoeaf797a2014-02-25 10:04:03 -05001856 get_css_set(cset);
1857 }
Tejun Heof153ad12014-02-25 09:56:49 -05001858 spin_unlock_irq(&p->sighand->siglock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001859 } while_each_thread(g, p);
1860 read_unlock(&tasklist_lock);
1861out_unlock:
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001862 spin_unlock_bh(&css_set_lock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001863}
Paul Menageddbcc7e2007-10-18 23:39:30 -07001864
Paul Menagecc31edc2008-10-18 20:28:04 -07001865static void init_cgroup_housekeeping(struct cgroup *cgrp)
1866{
Tejun Heo2d8f2432014-04-23 11:13:15 -04001867 struct cgroup_subsys *ss;
1868 int ssid;
1869
Tejun Heod5c419b2014-05-16 13:22:48 -04001870 INIT_LIST_HEAD(&cgrp->self.sibling);
1871 INIT_LIST_HEAD(&cgrp->self.children);
Tejun Heo69d02062013-06-12 21:04:50 -07001872 INIT_LIST_HEAD(&cgrp->cset_links);
Ben Blum72a8cb32009-09-23 15:56:27 -07001873 INIT_LIST_HEAD(&cgrp->pidlists);
1874 mutex_init(&cgrp->pidlist_mutex);
Tejun Heo9d800df2014-05-14 09:15:00 -04001875 cgrp->self.cgroup = cgrp;
Tejun Heo184faf32014-05-16 13:22:51 -04001876 cgrp->self.flags |= CSS_ONLINE;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001877
1878 for_each_subsys(ss, ssid)
1879 INIT_LIST_HEAD(&cgrp->e_csets[ssid]);
Tejun Heof8f22e52014-04-23 11:13:16 -04001880
1881 init_waitqueue_head(&cgrp->offline_waitq);
Zefan Li971ff492014-09-18 16:06:19 +08001882 INIT_WORK(&cgrp->release_agent_work, cgroup_release_agent);
Paul Menagecc31edc2008-10-18 20:28:04 -07001883}
Paul Menagec6d57f32009-09-23 15:56:19 -07001884
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001885static void init_cgroup_root(struct cgroup_root *root,
Tejun Heo172a2c062014-03-19 10:23:53 -04001886 struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001887{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001888 struct cgroup *cgrp = &root->cgrp;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001889
Paul Menageddbcc7e2007-10-18 23:39:30 -07001890 INIT_LIST_HEAD(&root->root_list);
Tejun Heo3c9c8252014-02-12 09:29:50 -05001891 atomic_set(&root->nr_cgrps, 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001892 cgrp->root = root;
Paul Menagecc31edc2008-10-18 20:28:04 -07001893 init_cgroup_housekeeping(cgrp);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08001894 idr_init(&root->cgroup_idr);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001895
Paul Menagec6d57f32009-09-23 15:56:19 -07001896 root->flags = opts->flags;
1897 if (opts->release_agent)
1898 strcpy(root->release_agent_path, opts->release_agent);
1899 if (opts->name)
1900 strcpy(root->name, opts->name);
Tejun Heo2260e7f2012-11-19 08:13:38 -08001901 if (opts->cpuset_clone_children)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001902 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001903}
1904
Tejun Heo6e5c8302016-02-22 22:25:47 -05001905static int cgroup_setup_root(struct cgroup_root *root, u16 ss_mask)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001906{
Tejun Heod427dfe2014-02-11 11:52:48 -05001907 LIST_HEAD(tmp_links);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001908 struct cgroup *root_cgrp = &root->cgrp;
Tejun Heod427dfe2014-02-11 11:52:48 -05001909 struct css_set *cset;
Tejun Heod427dfe2014-02-11 11:52:48 -05001910 int i, ret;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001911
Tejun Heod427dfe2014-02-11 11:52:48 -05001912 lockdep_assert_held(&cgroup_mutex);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001913
Vladimir Davydovcf780b72015-08-03 15:32:26 +03001914 ret = cgroup_idr_alloc(&root->cgroup_idr, root_cgrp, 1, 2, GFP_KERNEL);
Tejun Heod427dfe2014-02-11 11:52:48 -05001915 if (ret < 0)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001916 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001917 root_cgrp->id = ret;
Tejun Heob11cfb52015-11-20 15:55:52 -05001918 root_cgrp->ancestor_ids[0] = ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001919
Tejun Heo2aad2a82014-09-24 13:31:50 -04001920 ret = percpu_ref_init(&root_cgrp->self.refcnt, css_release, 0,
1921 GFP_KERNEL);
Tejun Heo9d755d32014-05-14 09:15:02 -04001922 if (ret)
1923 goto out;
1924
Tejun Heod427dfe2014-02-11 11:52:48 -05001925 /*
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001926 * We're accessing css_set_count without locking css_set_lock here,
Tejun Heod427dfe2014-02-11 11:52:48 -05001927 * but that's OK - it can only be increased by someone holding
1928 * cgroup_lock, and that's us. The worst that can happen is that we
1929 * have some link structures left over
1930 */
1931 ret = allocate_cgrp_cset_links(css_set_count, &tmp_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001932 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001933 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001934
Tejun Heo985ed672014-03-19 10:23:53 -04001935 ret = cgroup_init_root_id(root);
Tejun Heod427dfe2014-02-11 11:52:48 -05001936 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001937 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001938
Tejun Heo2bd59d42014-02-11 11:52:49 -05001939 root->kf_root = kernfs_create_root(&cgroup_kf_syscall_ops,
1940 KERNFS_ROOT_CREATE_DEACTIVATED,
1941 root_cgrp);
1942 if (IS_ERR(root->kf_root)) {
1943 ret = PTR_ERR(root->kf_root);
1944 goto exit_root_id;
1945 }
1946 root_cgrp->kn = root->kf_root->kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001947
Tejun Heo4df8dc92015-09-18 17:54:23 -04001948 ret = css_populate_dir(&root_cgrp->self, NULL);
Tejun Heod427dfe2014-02-11 11:52:48 -05001949 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001950 goto destroy_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001951
Tejun Heo5df36032014-03-19 10:23:54 -04001952 ret = rebind_subsystems(root, ss_mask);
Tejun Heod427dfe2014-02-11 11:52:48 -05001953 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001954 goto destroy_root;
Al Viro0df6a632010-12-21 13:29:29 -05001955
Tejun Heod427dfe2014-02-11 11:52:48 -05001956 /*
1957 * There must be no failure case after here, since rebinding takes
1958 * care of subsystems' refcounts, which are explicitly dropped in
1959 * the failure exit path.
1960 */
1961 list_add(&root->root_list, &cgroup_roots);
1962 cgroup_root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001963
Tejun Heod427dfe2014-02-11 11:52:48 -05001964 /*
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001965 * Link the root cgroup in this hierarchy into all the css_set
Tejun Heod427dfe2014-02-11 11:52:48 -05001966 * objects.
1967 */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001968 spin_lock_bh(&css_set_lock);
Tejun Heo0de09422015-10-15 16:41:49 -04001969 hash_for_each(css_set_table, i, cset, hlist) {
Tejun Heod427dfe2014-02-11 11:52:48 -05001970 link_css_set(&tmp_links, cset, root_cgrp);
Tejun Heo0de09422015-10-15 16:41:49 -04001971 if (css_set_populated(cset))
1972 cgroup_update_populated(root_cgrp, true);
1973 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001974 spin_unlock_bh(&css_set_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001975
Tejun Heod5c419b2014-05-16 13:22:48 -04001976 BUG_ON(!list_empty(&root_cgrp->self.children));
Tejun Heo3c9c8252014-02-12 09:29:50 -05001977 BUG_ON(atomic_read(&root->nr_cgrps) != 1);
Tejun Heod427dfe2014-02-11 11:52:48 -05001978
Tejun Heo2bd59d42014-02-11 11:52:49 -05001979 kernfs_activate(root_cgrp->kn);
Tejun Heod427dfe2014-02-11 11:52:48 -05001980 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001981 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001982
Tejun Heo2bd59d42014-02-11 11:52:49 -05001983destroy_root:
1984 kernfs_destroy_root(root->kf_root);
1985 root->kf_root = NULL;
1986exit_root_id:
Tejun Heod427dfe2014-02-11 11:52:48 -05001987 cgroup_exit_root_id(root);
Tejun Heo9d755d32014-05-14 09:15:02 -04001988cancel_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04001989 percpu_ref_exit(&root_cgrp->self.refcnt);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001990out:
Tejun Heod427dfe2014-02-11 11:52:48 -05001991 free_cgrp_cset_links(&tmp_links);
1992 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001993}
1994
Al Virof7e83572010-07-26 13:23:11 +04001995static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001996 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001997 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001998{
Tejun Heo67e9c742015-11-16 11:13:34 -05001999 bool is_v2 = fs_type == &cgroup2_fs_type;
Li Zefan3a32bd72014-06-30 11:50:59 +08002000 struct super_block *pinned_sb = NULL;
Li Zefan970317a2014-06-30 11:49:58 +08002001 struct cgroup_subsys *ss;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002002 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002003 struct cgroup_sb_opts opts;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002004 struct dentry *dentry;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05002005 int ret;
Li Zefan970317a2014-06-30 11:49:58 +08002006 int i;
Li Zefanc6b3d5b2014-04-04 17:14:41 +08002007 bool new_sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07002008
2009 /*
Tejun Heo56fde9e2014-02-13 06:58:38 -05002010 * The first time anyone tries to mount a cgroup, enable the list
2011 * linking each css_set to its tasks and fix up all existing tasks.
Paul Menagec6d57f32009-09-23 15:56:19 -07002012 */
Tejun Heo56fde9e2014-02-13 06:58:38 -05002013 if (!use_task_css_set_links)
2014 cgroup_enable_task_cg_lists();
Li Zefane37a06f2014-04-17 13:53:08 +08002015
Tejun Heo67e9c742015-11-16 11:13:34 -05002016 if (is_v2) {
2017 if (data) {
2018 pr_err("cgroup2: unknown option \"%s\"\n", (char *)data);
2019 return ERR_PTR(-EINVAL);
2020 }
Tejun Heoa7165262016-02-23 10:00:50 -05002021 cgrp_dfl_visible = true;
Tejun Heo67e9c742015-11-16 11:13:34 -05002022 root = &cgrp_dfl_root;
2023 cgroup_get(&root->cgrp);
2024 goto out_mount;
2025 }
2026
Tejun Heo8e30e2b2014-02-11 11:52:48 -05002027 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002028
Paul Menageddbcc7e2007-10-18 23:39:30 -07002029 /* First find the desired set of subsystems */
Paul Menageddbcc7e2007-10-18 23:39:30 -07002030 ret = parse_cgroupfs_options(data, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002031 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05002032 goto out_unlock;
Tejun Heoa015edd2014-05-14 09:15:00 -04002033
Li Zefan970317a2014-06-30 11:49:58 +08002034 /*
2035 * Destruction of cgroup root is asynchronous, so subsystems may
2036 * still be dying after the previous unmount. Let's drain the
2037 * dying subsystems. We just need to ensure that the ones
2038 * unmounted previously finish dying and don't care about new ones
2039 * starting. Testing ref liveliness is good enough.
2040 */
2041 for_each_subsys(ss, i) {
2042 if (!(opts.subsys_mask & (1 << i)) ||
2043 ss->root == &cgrp_dfl_root)
2044 continue;
2045
2046 if (!percpu_ref_tryget_live(&ss->root->cgrp.self.refcnt)) {
2047 mutex_unlock(&cgroup_mutex);
2048 msleep(10);
2049 ret = restart_syscall();
2050 goto out_free;
2051 }
2052 cgroup_put(&ss->root->cgrp);
2053 }
2054
Tejun Heo985ed672014-03-19 10:23:53 -04002055 for_each_root(root) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05002056 bool name_match = false;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002057
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002058 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04002059 continue;
Paul Menagec6d57f32009-09-23 15:56:19 -07002060
Paul Menage817929e2007-10-18 23:39:36 -07002061 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05002062 * If we asked for a name then it must match. Also, if
2063 * name matches but sybsys_mask doesn't, we should fail.
2064 * Remember whether name matched.
Paul Menage817929e2007-10-18 23:39:36 -07002065 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05002066 if (opts.name) {
2067 if (strcmp(opts.name, root->name))
2068 continue;
2069 name_match = true;
2070 }
Tejun Heo31261212013-06-28 17:07:30 -07002071
2072 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05002073 * If we asked for subsystems (or explicitly for no
2074 * subsystems) then they must match.
Tejun Heo31261212013-06-28 17:07:30 -07002075 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05002076 if ((opts.subsys_mask || opts.none) &&
Tejun Heof392e512014-04-23 11:13:14 -04002077 (opts.subsys_mask != root->subsys_mask)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05002078 if (!name_match)
2079 continue;
2080 ret = -EBUSY;
2081 goto out_unlock;
2082 }
Tejun Heo873fe092013-04-14 20:15:26 -07002083
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04002084 if (root->flags ^ opts.flags)
2085 pr_warn("new mount options do not match the existing superblock, will be ignored\n");
Tejun Heo2bd59d42014-02-11 11:52:49 -05002086
Tejun Heo776f02f2014-02-12 09:29:50 -05002087 /*
Li Zefan3a32bd72014-06-30 11:50:59 +08002088 * We want to reuse @root whose lifetime is governed by its
2089 * ->cgrp. Let's check whether @root is alive and keep it
2090 * that way. As cgroup_kill_sb() can happen anytime, we
2091 * want to block it by pinning the sb so that @root doesn't
2092 * get killed before mount is complete.
2093 *
2094 * With the sb pinned, tryget_live can reliably indicate
2095 * whether @root can be reused. If it's being killed,
2096 * drain it. We can use wait_queue for the wait but this
2097 * path is super cold. Let's just sleep a bit and retry.
Tejun Heo776f02f2014-02-12 09:29:50 -05002098 */
Li Zefan3a32bd72014-06-30 11:50:59 +08002099 pinned_sb = kernfs_pin_sb(root->kf_root, NULL);
2100 if (IS_ERR(pinned_sb) ||
2101 !percpu_ref_tryget_live(&root->cgrp.self.refcnt)) {
Tejun Heo776f02f2014-02-12 09:29:50 -05002102 mutex_unlock(&cgroup_mutex);
Li Zefan3a32bd72014-06-30 11:50:59 +08002103 if (!IS_ERR_OR_NULL(pinned_sb))
2104 deactivate_super(pinned_sb);
Tejun Heo776f02f2014-02-12 09:29:50 -05002105 msleep(10);
Tejun Heoa015edd2014-05-14 09:15:00 -04002106 ret = restart_syscall();
2107 goto out_free;
Tejun Heo776f02f2014-02-12 09:29:50 -05002108 }
2109
2110 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002111 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002112 }
2113
Tejun Heo172a2c062014-03-19 10:23:53 -04002114 /*
2115 * No such thing, create a new one. name= matching without subsys
2116 * specification is allowed for already existing hierarchies but we
2117 * can't create new one without subsys specification.
2118 */
2119 if (!opts.subsys_mask && !opts.none) {
2120 ret = -EINVAL;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002121 goto out_unlock;
2122 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002123
Tejun Heo172a2c062014-03-19 10:23:53 -04002124 root = kzalloc(sizeof(*root), GFP_KERNEL);
2125 if (!root) {
2126 ret = -ENOMEM;
2127 goto out_unlock;
2128 }
2129
2130 init_cgroup_root(root, &opts);
2131
Tejun Heo35585572014-02-13 06:58:38 -05002132 ret = cgroup_setup_root(root, opts.subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -05002133 if (ret)
2134 cgroup_free_root(root);
2135
Tejun Heo8e30e2b2014-02-11 11:52:48 -05002136out_unlock:
Tejun Heoe25e2cb2011-12-12 18:12:21 -08002137 mutex_unlock(&cgroup_mutex);
Tejun Heoa015edd2014-05-14 09:15:00 -04002138out_free:
Paul Menagec6d57f32009-09-23 15:56:19 -07002139 kfree(opts.release_agent);
2140 kfree(opts.name);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05002141
Tejun Heo2bd59d42014-02-11 11:52:49 -05002142 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05002143 return ERR_PTR(ret);
Tejun Heo67e9c742015-11-16 11:13:34 -05002144out_mount:
Jianyu Zhanc9482a52014-04-26 15:40:28 +08002145 dentry = kernfs_mount(fs_type, flags, root->kf_root,
Tejun Heo67e9c742015-11-16 11:13:34 -05002146 is_v2 ? CGROUP2_SUPER_MAGIC : CGROUP_SUPER_MAGIC,
2147 &new_sb);
Li Zefanc6b3d5b2014-04-04 17:14:41 +08002148 if (IS_ERR(dentry) || !new_sb)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002149 cgroup_put(&root->cgrp);
Li Zefan3a32bd72014-06-30 11:50:59 +08002150
2151 /*
2152 * If @pinned_sb, we're reusing an existing root and holding an
2153 * extra ref on its sb. Mount is complete. Put the extra ref.
2154 */
2155 if (pinned_sb) {
2156 WARN_ON(new_sb);
2157 deactivate_super(pinned_sb);
2158 }
2159
Tejun Heo2bd59d42014-02-11 11:52:49 -05002160 return dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002161}
2162
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09002163static void cgroup_kill_sb(struct super_block *sb)
2164{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002165 struct kernfs_root *kf_root = kernfs_root_from_sb(sb);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002166 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002167
Tejun Heo9d755d32014-05-14 09:15:02 -04002168 /*
2169 * If @root doesn't have any mounts or children, start killing it.
2170 * This prevents new mounts by disabling percpu_ref_tryget_live().
2171 * cgroup_mount() may wait for @root's release.
Li Zefan1f779fb2014-06-04 16:48:15 +08002172 *
2173 * And don't kill the default root.
Tejun Heo9d755d32014-05-14 09:15:02 -04002174 */
Johannes Weiner3c606d32015-01-22 10:19:43 -05002175 if (!list_empty(&root->cgrp.self.children) ||
Li Zefan1f779fb2014-06-04 16:48:15 +08002176 root == &cgrp_dfl_root)
Tejun Heo9d755d32014-05-14 09:15:02 -04002177 cgroup_put(&root->cgrp);
2178 else
2179 percpu_ref_kill(&root->cgrp.self.refcnt);
2180
Tejun Heo2bd59d42014-02-11 11:52:49 -05002181 kernfs_kill_sb(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002182}
2183
2184static struct file_system_type cgroup_fs_type = {
2185 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04002186 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002187 .kill_sb = cgroup_kill_sb,
2188};
2189
Tejun Heo67e9c742015-11-16 11:13:34 -05002190static struct file_system_type cgroup2_fs_type = {
2191 .name = "cgroup2",
2192 .mount = cgroup_mount,
2193 .kill_sb = cgroup_kill_sb,
2194};
2195
Li Zefana043e3b2008-02-23 15:24:09 -08002196/**
Tejun Heo913ffdb2013-07-11 16:34:48 -07002197 * task_cgroup_path - cgroup path of a task in the first cgroup hierarchy
Tejun Heo857a2be2013-04-14 20:50:08 -07002198 * @task: target task
Tejun Heo857a2be2013-04-14 20:50:08 -07002199 * @buf: the buffer to write the path into
2200 * @buflen: the length of the buffer
2201 *
Tejun Heo913ffdb2013-07-11 16:34:48 -07002202 * Determine @task's cgroup on the first (the one with the lowest non-zero
2203 * hierarchy_id) cgroup hierarchy and copy its path into @buf. This
2204 * function grabs cgroup_mutex and shouldn't be used inside locks used by
2205 * cgroup controller callbacks.
2206 *
Tejun Heoe61734c2014-02-12 09:29:50 -05002207 * Return value is the same as kernfs_path().
Tejun Heo857a2be2013-04-14 20:50:08 -07002208 */
Tejun Heoe61734c2014-02-12 09:29:50 -05002209char *task_cgroup_path(struct task_struct *task, char *buf, size_t buflen)
Tejun Heo857a2be2013-04-14 20:50:08 -07002210{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002211 struct cgroup_root *root;
Tejun Heo913ffdb2013-07-11 16:34:48 -07002212 struct cgroup *cgrp;
Tejun Heoe61734c2014-02-12 09:29:50 -05002213 int hierarchy_id = 1;
2214 char *path = NULL;
Tejun Heo857a2be2013-04-14 20:50:08 -07002215
2216 mutex_lock(&cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002217 spin_lock_bh(&css_set_lock);
Tejun Heo857a2be2013-04-14 20:50:08 -07002218
Tejun Heo913ffdb2013-07-11 16:34:48 -07002219 root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id);
2220
Tejun Heo857a2be2013-04-14 20:50:08 -07002221 if (root) {
2222 cgrp = task_cgroup_from_root(task, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05002223 path = cgroup_path(cgrp, buf, buflen);
Tejun Heo913ffdb2013-07-11 16:34:48 -07002224 } else {
2225 /* if no hierarchy exists, everyone is in "/" */
Tejun Heoe61734c2014-02-12 09:29:50 -05002226 if (strlcpy(buf, "/", buflen) < buflen)
2227 path = buf;
Tejun Heo857a2be2013-04-14 20:50:08 -07002228 }
2229
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002230 spin_unlock_bh(&css_set_lock);
Tejun Heo857a2be2013-04-14 20:50:08 -07002231 mutex_unlock(&cgroup_mutex);
Tejun Heoe61734c2014-02-12 09:29:50 -05002232 return path;
Tejun Heo857a2be2013-04-14 20:50:08 -07002233}
Tejun Heo913ffdb2013-07-11 16:34:48 -07002234EXPORT_SYMBOL_GPL(task_cgroup_path);
Tejun Heo857a2be2013-04-14 20:50:08 -07002235
Tejun Heob3dc0942014-02-25 10:04:01 -05002236/* used to track tasks and other necessary states during migration */
Tejun Heo2f7ee562011-12-12 18:12:21 -08002237struct cgroup_taskset {
Tejun Heob3dc0942014-02-25 10:04:01 -05002238 /* the src and dst cset list running through cset->mg_node */
2239 struct list_head src_csets;
2240 struct list_head dst_csets;
2241
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002242 /* the subsys currently being processed */
2243 int ssid;
2244
Tejun Heob3dc0942014-02-25 10:04:01 -05002245 /*
2246 * Fields for cgroup_taskset_*() iteration.
2247 *
2248 * Before migration is committed, the target migration tasks are on
2249 * ->mg_tasks of the csets on ->src_csets. After, on ->mg_tasks of
2250 * the csets on ->dst_csets. ->csets point to either ->src_csets
2251 * or ->dst_csets depending on whether migration is committed.
2252 *
2253 * ->cur_csets and ->cur_task point to the current task position
2254 * during iteration.
2255 */
2256 struct list_head *csets;
2257 struct css_set *cur_cset;
2258 struct task_struct *cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002259};
2260
Tejun Heoadaae5d2015-09-11 15:00:21 -04002261#define CGROUP_TASKSET_INIT(tset) (struct cgroup_taskset){ \
2262 .src_csets = LIST_HEAD_INIT(tset.src_csets), \
2263 .dst_csets = LIST_HEAD_INIT(tset.dst_csets), \
2264 .csets = &tset.src_csets, \
2265}
2266
2267/**
2268 * cgroup_taskset_add - try to add a migration target task to a taskset
2269 * @task: target task
2270 * @tset: target taskset
2271 *
2272 * Add @task, which is a migration target, to @tset. This function becomes
2273 * noop if @task doesn't need to be migrated. @task's css_set should have
2274 * been added as a migration source and @task->cg_list will be moved from
2275 * the css_set's tasks list to mg_tasks one.
2276 */
2277static void cgroup_taskset_add(struct task_struct *task,
2278 struct cgroup_taskset *tset)
2279{
2280 struct css_set *cset;
2281
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002282 lockdep_assert_held(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002283
2284 /* @task either already exited or can't exit until the end */
2285 if (task->flags & PF_EXITING)
2286 return;
2287
2288 /* leave @task alone if post_fork() hasn't linked it yet */
2289 if (list_empty(&task->cg_list))
2290 return;
2291
2292 cset = task_css_set(task);
2293 if (!cset->mg_src_cgrp)
2294 return;
2295
2296 list_move_tail(&task->cg_list, &cset->mg_tasks);
2297 if (list_empty(&cset->mg_node))
2298 list_add_tail(&cset->mg_node, &tset->src_csets);
2299 if (list_empty(&cset->mg_dst_cset->mg_node))
2300 list_move_tail(&cset->mg_dst_cset->mg_node,
2301 &tset->dst_csets);
2302}
2303
Tejun Heo2f7ee562011-12-12 18:12:21 -08002304/**
2305 * cgroup_taskset_first - reset taskset and return the first task
2306 * @tset: taskset of interest
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002307 * @dst_cssp: output variable for the destination css
Tejun Heo2f7ee562011-12-12 18:12:21 -08002308 *
2309 * @tset iteration is initialized and the first task is returned.
2310 */
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002311struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset,
2312 struct cgroup_subsys_state **dst_cssp)
Tejun Heo2f7ee562011-12-12 18:12:21 -08002313{
Tejun Heob3dc0942014-02-25 10:04:01 -05002314 tset->cur_cset = list_first_entry(tset->csets, struct css_set, mg_node);
2315 tset->cur_task = NULL;
2316
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002317 return cgroup_taskset_next(tset, dst_cssp);
Tejun Heo2f7ee562011-12-12 18:12:21 -08002318}
Tejun Heo2f7ee562011-12-12 18:12:21 -08002319
2320/**
2321 * cgroup_taskset_next - iterate to the next task in taskset
2322 * @tset: taskset of interest
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002323 * @dst_cssp: output variable for the destination css
Tejun Heo2f7ee562011-12-12 18:12:21 -08002324 *
2325 * Return the next task in @tset. Iteration must have been initialized
2326 * with cgroup_taskset_first().
2327 */
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002328struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset,
2329 struct cgroup_subsys_state **dst_cssp)
Tejun Heo2f7ee562011-12-12 18:12:21 -08002330{
Tejun Heob3dc0942014-02-25 10:04:01 -05002331 struct css_set *cset = tset->cur_cset;
2332 struct task_struct *task = tset->cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002333
Tejun Heob3dc0942014-02-25 10:04:01 -05002334 while (&cset->mg_node != tset->csets) {
2335 if (!task)
2336 task = list_first_entry(&cset->mg_tasks,
2337 struct task_struct, cg_list);
2338 else
2339 task = list_next_entry(task, cg_list);
Tejun Heo2f7ee562011-12-12 18:12:21 -08002340
Tejun Heob3dc0942014-02-25 10:04:01 -05002341 if (&task->cg_list != &cset->mg_tasks) {
2342 tset->cur_cset = cset;
2343 tset->cur_task = task;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002344
2345 /*
2346 * This function may be called both before and
2347 * after cgroup_taskset_migrate(). The two cases
2348 * can be distinguished by looking at whether @cset
2349 * has its ->mg_dst_cset set.
2350 */
2351 if (cset->mg_dst_cset)
2352 *dst_cssp = cset->mg_dst_cset->subsys[tset->ssid];
2353 else
2354 *dst_cssp = cset->subsys[tset->ssid];
2355
Tejun Heob3dc0942014-02-25 10:04:01 -05002356 return task;
2357 }
2358
2359 cset = list_next_entry(cset, mg_node);
2360 task = NULL;
2361 }
2362
2363 return NULL;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002364}
Tejun Heo2f7ee562011-12-12 18:12:21 -08002365
2366/**
Tejun Heoadaae5d2015-09-11 15:00:21 -04002367 * cgroup_taskset_migrate - migrate a taskset to a cgroup
2368 * @tset: taget taskset
2369 * @dst_cgrp: destination cgroup
2370 *
2371 * Migrate tasks in @tset to @dst_cgrp. This function fails iff one of the
2372 * ->can_attach callbacks fails and guarantees that either all or none of
2373 * the tasks in @tset are migrated. @tset is consumed regardless of
2374 * success.
2375 */
2376static int cgroup_taskset_migrate(struct cgroup_taskset *tset,
2377 struct cgroup *dst_cgrp)
2378{
2379 struct cgroup_subsys_state *css, *failed_css = NULL;
2380 struct task_struct *task, *tmp_task;
2381 struct css_set *cset, *tmp_cset;
2382 int i, ret;
2383
2384 /* methods shouldn't be called if no task is actually migrating */
2385 if (list_empty(&tset->src_csets))
2386 return 0;
2387
2388 /* check that we can legitimately attach to the cgroup */
2389 for_each_e_css(css, i, dst_cgrp) {
2390 if (css->ss->can_attach) {
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002391 tset->ssid = i;
2392 ret = css->ss->can_attach(tset);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002393 if (ret) {
2394 failed_css = css;
2395 goto out_cancel_attach;
2396 }
2397 }
2398 }
2399
2400 /*
2401 * Now that we're guaranteed success, proceed to move all tasks to
2402 * the new cgroup. There are no failure cases after here, so this
2403 * is the commit point.
2404 */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002405 spin_lock_bh(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002406 list_for_each_entry(cset, &tset->src_csets, mg_node) {
Tejun Heof6d7d042015-10-15 16:41:52 -04002407 list_for_each_entry_safe(task, tmp_task, &cset->mg_tasks, cg_list) {
2408 struct css_set *from_cset = task_css_set(task);
2409 struct css_set *to_cset = cset->mg_dst_cset;
2410
2411 get_css_set(to_cset);
2412 css_set_move_task(task, from_cset, to_cset, true);
2413 put_css_set_locked(from_cset);
2414 }
Tejun Heoadaae5d2015-09-11 15:00:21 -04002415 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002416 spin_unlock_bh(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002417
2418 /*
2419 * Migration is committed, all target tasks are now on dst_csets.
2420 * Nothing is sensitive to fork() after this point. Notify
2421 * controllers that migration is complete.
2422 */
2423 tset->csets = &tset->dst_csets;
2424
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002425 for_each_e_css(css, i, dst_cgrp) {
2426 if (css->ss->attach) {
2427 tset->ssid = i;
2428 css->ss->attach(tset);
2429 }
2430 }
Tejun Heoadaae5d2015-09-11 15:00:21 -04002431
2432 ret = 0;
2433 goto out_release_tset;
2434
2435out_cancel_attach:
2436 for_each_e_css(css, i, dst_cgrp) {
2437 if (css == failed_css)
2438 break;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002439 if (css->ss->cancel_attach) {
2440 tset->ssid = i;
2441 css->ss->cancel_attach(tset);
2442 }
Tejun Heoadaae5d2015-09-11 15:00:21 -04002443 }
2444out_release_tset:
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002445 spin_lock_bh(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002446 list_splice_init(&tset->dst_csets, &tset->src_csets);
2447 list_for_each_entry_safe(cset, tmp_cset, &tset->src_csets, mg_node) {
2448 list_splice_tail_init(&cset->mg_tasks, &cset->tasks);
2449 list_del_init(&cset->mg_node);
2450 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002451 spin_unlock_bh(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002452 return ret;
2453}
2454
2455/**
Tejun Heo1958d2d2014-02-25 10:04:03 -05002456 * cgroup_migrate_finish - cleanup after attach
2457 * @preloaded_csets: list of preloaded css_sets
Ben Blum74a11662011-05-26 16:25:20 -07002458 *
Tejun Heo1958d2d2014-02-25 10:04:03 -05002459 * Undo cgroup_migrate_add_src() and cgroup_migrate_prepare_dst(). See
2460 * those functions for details.
Ben Blum74a11662011-05-26 16:25:20 -07002461 */
Tejun Heo1958d2d2014-02-25 10:04:03 -05002462static void cgroup_migrate_finish(struct list_head *preloaded_csets)
Ben Blum74a11662011-05-26 16:25:20 -07002463{
Tejun Heo1958d2d2014-02-25 10:04:03 -05002464 struct css_set *cset, *tmp_cset;
2465
2466 lockdep_assert_held(&cgroup_mutex);
2467
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002468 spin_lock_bh(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002469 list_for_each_entry_safe(cset, tmp_cset, preloaded_csets, mg_preload_node) {
2470 cset->mg_src_cgrp = NULL;
2471 cset->mg_dst_cset = NULL;
2472 list_del_init(&cset->mg_preload_node);
Zefan Lia25eb522014-09-19 16:51:00 +08002473 put_css_set_locked(cset);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002474 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002475 spin_unlock_bh(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002476}
2477
2478/**
2479 * cgroup_migrate_add_src - add a migration source css_set
2480 * @src_cset: the source css_set to add
2481 * @dst_cgrp: the destination cgroup
2482 * @preloaded_csets: list of preloaded css_sets
2483 *
2484 * Tasks belonging to @src_cset are about to be migrated to @dst_cgrp. Pin
2485 * @src_cset and add it to @preloaded_csets, which should later be cleaned
2486 * up by cgroup_migrate_finish().
2487 *
Tejun Heo1ed13282015-09-16 12:53:17 -04002488 * This function may be called without holding cgroup_threadgroup_rwsem
2489 * even if the target is a process. Threads may be created and destroyed
2490 * but as long as cgroup_mutex is not dropped, no new css_set can be put
2491 * into play and the preloaded css_sets are guaranteed to cover all
2492 * migrations.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002493 */
2494static void cgroup_migrate_add_src(struct css_set *src_cset,
2495 struct cgroup *dst_cgrp,
2496 struct list_head *preloaded_csets)
2497{
2498 struct cgroup *src_cgrp;
2499
2500 lockdep_assert_held(&cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002501 lockdep_assert_held(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002502
2503 src_cgrp = cset_cgroup_from_root(src_cset, dst_cgrp->root);
2504
Tejun Heo1958d2d2014-02-25 10:04:03 -05002505 if (!list_empty(&src_cset->mg_preload_node))
2506 return;
2507
2508 WARN_ON(src_cset->mg_src_cgrp);
2509 WARN_ON(!list_empty(&src_cset->mg_tasks));
2510 WARN_ON(!list_empty(&src_cset->mg_node));
2511
2512 src_cset->mg_src_cgrp = src_cgrp;
2513 get_css_set(src_cset);
2514 list_add(&src_cset->mg_preload_node, preloaded_csets);
2515}
2516
2517/**
2518 * cgroup_migrate_prepare_dst - prepare destination css_sets for migration
Tejun Heof817de92014-04-23 11:13:16 -04002519 * @dst_cgrp: the destination cgroup (may be %NULL)
Tejun Heo1958d2d2014-02-25 10:04:03 -05002520 * @preloaded_csets: list of preloaded source css_sets
2521 *
2522 * Tasks are about to be moved to @dst_cgrp and all the source css_sets
2523 * have been preloaded to @preloaded_csets. This function looks up and
Tejun Heof817de92014-04-23 11:13:16 -04002524 * pins all destination css_sets, links each to its source, and append them
2525 * to @preloaded_csets. If @dst_cgrp is %NULL, the destination of each
2526 * source css_set is assumed to be its cgroup on the default hierarchy.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002527 *
2528 * This function must be called after cgroup_migrate_add_src() has been
2529 * called on each migration source css_set. After migration is performed
2530 * using cgroup_migrate(), cgroup_migrate_finish() must be called on
2531 * @preloaded_csets.
2532 */
2533static int cgroup_migrate_prepare_dst(struct cgroup *dst_cgrp,
2534 struct list_head *preloaded_csets)
2535{
2536 LIST_HEAD(csets);
Tejun Heof817de92014-04-23 11:13:16 -04002537 struct css_set *src_cset, *tmp_cset;
Tejun Heo1958d2d2014-02-25 10:04:03 -05002538
2539 lockdep_assert_held(&cgroup_mutex);
2540
Tejun Heof8f22e52014-04-23 11:13:16 -04002541 /*
Tejun Heo62716ea2016-02-23 10:00:51 -05002542 * Except for the root, subtree_control must be zero for a cgroup
Tejun Heof8f22e52014-04-23 11:13:16 -04002543 * with tasks so that child cgroups don't compete against tasks.
2544 */
Tejun Heod51f39b2014-05-16 13:22:48 -04002545 if (dst_cgrp && cgroup_on_dfl(dst_cgrp) && cgroup_parent(dst_cgrp) &&
Tejun Heo62716ea2016-02-23 10:00:51 -05002546 dst_cgrp->subtree_control)
Tejun Heof8f22e52014-04-23 11:13:16 -04002547 return -EBUSY;
2548
Tejun Heo1958d2d2014-02-25 10:04:03 -05002549 /* look up the dst cset for each src cset and link it to src */
Tejun Heof817de92014-04-23 11:13:16 -04002550 list_for_each_entry_safe(src_cset, tmp_cset, preloaded_csets, mg_preload_node) {
Tejun Heo1958d2d2014-02-25 10:04:03 -05002551 struct css_set *dst_cset;
2552
Tejun Heof817de92014-04-23 11:13:16 -04002553 dst_cset = find_css_set(src_cset,
2554 dst_cgrp ?: src_cset->dfl_cgrp);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002555 if (!dst_cset)
2556 goto err;
2557
2558 WARN_ON_ONCE(src_cset->mg_dst_cset || dst_cset->mg_dst_cset);
Tejun Heof817de92014-04-23 11:13:16 -04002559
2560 /*
2561 * If src cset equals dst, it's noop. Drop the src.
2562 * cgroup_migrate() will skip the cset too. Note that we
2563 * can't handle src == dst as some nodes are used by both.
2564 */
2565 if (src_cset == dst_cset) {
2566 src_cset->mg_src_cgrp = NULL;
2567 list_del_init(&src_cset->mg_preload_node);
Zefan Lia25eb522014-09-19 16:51:00 +08002568 put_css_set(src_cset);
2569 put_css_set(dst_cset);
Tejun Heof817de92014-04-23 11:13:16 -04002570 continue;
2571 }
2572
Tejun Heo1958d2d2014-02-25 10:04:03 -05002573 src_cset->mg_dst_cset = dst_cset;
2574
2575 if (list_empty(&dst_cset->mg_preload_node))
2576 list_add(&dst_cset->mg_preload_node, &csets);
2577 else
Zefan Lia25eb522014-09-19 16:51:00 +08002578 put_css_set(dst_cset);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002579 }
2580
Tejun Heof817de92014-04-23 11:13:16 -04002581 list_splice_tail(&csets, preloaded_csets);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002582 return 0;
2583err:
2584 cgroup_migrate_finish(&csets);
2585 return -ENOMEM;
2586}
2587
2588/**
2589 * cgroup_migrate - migrate a process or task to a cgroup
Tejun Heo1958d2d2014-02-25 10:04:03 -05002590 * @leader: the leader of the process or the task to migrate
2591 * @threadgroup: whether @leader points to the whole process or a single task
Tejun Heo9af2ec42015-09-11 15:00:20 -04002592 * @cgrp: the destination cgroup
Tejun Heo1958d2d2014-02-25 10:04:03 -05002593 *
2594 * Migrate a process or task denoted by @leader to @cgrp. If migrating a
Tejun Heo1ed13282015-09-16 12:53:17 -04002595 * process, the caller must be holding cgroup_threadgroup_rwsem. The
Tejun Heo1958d2d2014-02-25 10:04:03 -05002596 * caller is also responsible for invoking cgroup_migrate_add_src() and
2597 * cgroup_migrate_prepare_dst() on the targets before invoking this
2598 * function and following up with cgroup_migrate_finish().
2599 *
2600 * As long as a controller's ->can_attach() doesn't fail, this function is
2601 * guaranteed to succeed. This means that, excluding ->can_attach()
2602 * failure, when migrating multiple targets, the success or failure can be
2603 * decided for all targets by invoking group_migrate_prepare_dst() before
2604 * actually starting migrating.
2605 */
Tejun Heo9af2ec42015-09-11 15:00:20 -04002606static int cgroup_migrate(struct task_struct *leader, bool threadgroup,
2607 struct cgroup *cgrp)
Ben Blum74a11662011-05-26 16:25:20 -07002608{
Tejun Heoadaae5d2015-09-11 15:00:21 -04002609 struct cgroup_taskset tset = CGROUP_TASKSET_INIT(tset);
2610 struct task_struct *task;
Ben Blum74a11662011-05-26 16:25:20 -07002611
2612 /*
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002613 * Prevent freeing of tasks while we take a snapshot. Tasks that are
2614 * already PF_EXITING could be freed from underneath us unless we
2615 * take an rcu_read_lock.
2616 */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002617 spin_lock_bh(&css_set_lock);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002618 rcu_read_lock();
Tejun Heo9db8de32014-02-13 06:58:43 -05002619 task = leader;
Ben Blum74a11662011-05-26 16:25:20 -07002620 do {
Tejun Heoadaae5d2015-09-11 15:00:21 -04002621 cgroup_taskset_add(task, &tset);
Li Zefan081aa452013-03-13 09:17:09 +08002622 if (!threadgroup)
2623 break;
Tejun Heo9db8de32014-02-13 06:58:43 -05002624 } while_each_thread(leader, task);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002625 rcu_read_unlock();
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002626 spin_unlock_bh(&css_set_lock);
Ben Blum74a11662011-05-26 16:25:20 -07002627
Tejun Heoadaae5d2015-09-11 15:00:21 -04002628 return cgroup_taskset_migrate(&tset, cgrp);
Ben Blum74a11662011-05-26 16:25:20 -07002629}
2630
Tejun Heo1958d2d2014-02-25 10:04:03 -05002631/**
2632 * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup
2633 * @dst_cgrp: the cgroup to attach to
2634 * @leader: the task or the leader of the threadgroup to be attached
2635 * @threadgroup: attach the whole threadgroup?
2636 *
Tejun Heo1ed13282015-09-16 12:53:17 -04002637 * Call holding cgroup_mutex and cgroup_threadgroup_rwsem.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002638 */
2639static int cgroup_attach_task(struct cgroup *dst_cgrp,
2640 struct task_struct *leader, bool threadgroup)
2641{
2642 LIST_HEAD(preloaded_csets);
2643 struct task_struct *task;
2644 int ret;
2645
2646 /* look up all src csets */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002647 spin_lock_bh(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002648 rcu_read_lock();
2649 task = leader;
2650 do {
2651 cgroup_migrate_add_src(task_css_set(task), dst_cgrp,
2652 &preloaded_csets);
2653 if (!threadgroup)
2654 break;
2655 } while_each_thread(leader, task);
2656 rcu_read_unlock();
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002657 spin_unlock_bh(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002658
2659 /* prepare dst csets and commit */
2660 ret = cgroup_migrate_prepare_dst(dst_cgrp, &preloaded_csets);
2661 if (!ret)
Tejun Heo9af2ec42015-09-11 15:00:20 -04002662 ret = cgroup_migrate(leader, threadgroup, dst_cgrp);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002663
2664 cgroup_migrate_finish(&preloaded_csets);
2665 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07002666}
2667
Tejun Heo187fe842015-06-18 16:54:28 -04002668static int cgroup_procs_write_permission(struct task_struct *task,
2669 struct cgroup *dst_cgrp,
2670 struct kernfs_open_file *of)
Tejun Heodedf22e2015-06-18 16:54:28 -04002671{
2672 const struct cred *cred = current_cred();
2673 const struct cred *tcred = get_task_cred(task);
2674 int ret = 0;
2675
2676 /*
2677 * even if we're attaching all tasks in the thread group, we only
2678 * need to check permissions on one of them.
2679 */
2680 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
2681 !uid_eq(cred->euid, tcred->uid) &&
2682 !uid_eq(cred->euid, tcred->suid))
2683 ret = -EACCES;
2684
Tejun Heo187fe842015-06-18 16:54:28 -04002685 if (!ret && cgroup_on_dfl(dst_cgrp)) {
2686 struct super_block *sb = of->file->f_path.dentry->d_sb;
2687 struct cgroup *cgrp;
2688 struct inode *inode;
2689
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002690 spin_lock_bh(&css_set_lock);
Tejun Heo187fe842015-06-18 16:54:28 -04002691 cgrp = task_cgroup_from_root(task, &cgrp_dfl_root);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002692 spin_unlock_bh(&css_set_lock);
Tejun Heo187fe842015-06-18 16:54:28 -04002693
2694 while (!cgroup_is_descendant(dst_cgrp, cgrp))
2695 cgrp = cgroup_parent(cgrp);
2696
2697 ret = -ENOMEM;
Tejun Heo6f60ead2015-09-18 17:54:23 -04002698 inode = kernfs_get_inode(sb, cgrp->procs_file.kn);
Tejun Heo187fe842015-06-18 16:54:28 -04002699 if (inode) {
2700 ret = inode_permission(inode, MAY_WRITE);
2701 iput(inode);
2702 }
2703 }
2704
Tejun Heodedf22e2015-06-18 16:54:28 -04002705 put_cred(tcred);
2706 return ret;
2707}
2708
Ben Blum74a11662011-05-26 16:25:20 -07002709/*
2710 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08002711 * function to attach either it or all tasks in its threadgroup. Will lock
Tejun Heo0e1d7682014-02-25 10:04:03 -05002712 * cgroup_mutex and threadgroup.
Ben Blum74a11662011-05-26 16:25:20 -07002713 */
Tejun Heoacbef752014-05-13 12:16:22 -04002714static ssize_t __cgroup_procs_write(struct kernfs_open_file *of, char *buf,
2715 size_t nbytes, loff_t off, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002716{
Paul Menagebbcb81d2007-10-18 23:39:32 -07002717 struct task_struct *tsk;
Tejun Heoe76ecae2014-05-13 12:19:23 -04002718 struct cgroup *cgrp;
Tejun Heoacbef752014-05-13 12:16:22 -04002719 pid_t pid;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002720 int ret;
2721
Tejun Heoacbef752014-05-13 12:16:22 -04002722 if (kstrtoint(strstrip(buf), 0, &pid) || pid < 0)
2723 return -EINVAL;
2724
Tejun Heoe76ecae2014-05-13 12:19:23 -04002725 cgrp = cgroup_kn_lock_live(of->kn);
2726 if (!cgrp)
Ben Blum74a11662011-05-26 16:25:20 -07002727 return -ENODEV;
2728
Tejun Heo3014dde2015-09-16 13:03:02 -04002729 percpu_down_write(&cgroup_threadgroup_rwsem);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002730 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002731 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002732 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07002733 if (!tsk) {
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09002734 ret = -ESRCH;
Tejun Heo3014dde2015-09-16 13:03:02 -04002735 goto out_unlock_rcu;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002736 }
Tejun Heodedf22e2015-06-18 16:54:28 -04002737 } else {
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002738 tsk = current;
Tejun Heodedf22e2015-06-18 16:54:28 -04002739 }
Tejun Heocd3d0952011-12-12 18:12:21 -08002740
2741 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002742 tsk = tsk->group_leader;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002743
2744 /*
Tejun Heo14a40ff2013-03-19 13:45:20 -07002745 * Workqueue threads may acquire PF_NO_SETAFFINITY and become
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002746 * trapped in a cpuset, or RT worker may be born in a cgroup
2747 * with no rt_runtime allocated. Just say no.
2748 */
Tejun Heo14a40ff2013-03-19 13:45:20 -07002749 if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) {
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002750 ret = -EINVAL;
Tejun Heo3014dde2015-09-16 13:03:02 -04002751 goto out_unlock_rcu;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002752 }
2753
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002754 get_task_struct(tsk);
2755 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08002756
Tejun Heo187fe842015-06-18 16:54:28 -04002757 ret = cgroup_procs_write_permission(tsk, cgrp, of);
Tejun Heodedf22e2015-06-18 16:54:28 -04002758 if (!ret)
2759 ret = cgroup_attach_task(cgrp, tsk, threadgroup);
Li Zefan081aa452013-03-13 09:17:09 +08002760
Tejun Heof9f9e7b2015-09-16 11:51:12 -04002761 put_task_struct(tsk);
Tejun Heo3014dde2015-09-16 13:03:02 -04002762 goto out_unlock_threadgroup;
2763
2764out_unlock_rcu:
2765 rcu_read_unlock();
2766out_unlock_threadgroup:
2767 percpu_up_write(&cgroup_threadgroup_rwsem);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002768 cgroup_kn_unlock(of->kn);
Tejun Heoe93ad192016-01-19 12:18:41 -05002769 cpuset_post_attach_flush();
Tejun Heoacbef752014-05-13 12:16:22 -04002770 return ret ?: nbytes;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002771}
2772
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002773/**
2774 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
2775 * @from: attach to all cgroups of a given task
2776 * @tsk: the task to be attached
2777 */
2778int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
2779{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002780 struct cgroup_root *root;
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002781 int retval = 0;
2782
Tejun Heo47cfcd02013-04-07 09:29:51 -07002783 mutex_lock(&cgroup_mutex);
Tejun Heo985ed672014-03-19 10:23:53 -04002784 for_each_root(root) {
Tejun Heo96d365e2014-02-13 06:58:40 -05002785 struct cgroup *from_cgrp;
2786
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002787 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04002788 continue;
2789
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002790 spin_lock_bh(&css_set_lock);
Tejun Heo96d365e2014-02-13 06:58:40 -05002791 from_cgrp = task_cgroup_from_root(from, root);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002792 spin_unlock_bh(&css_set_lock);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002793
Li Zefan6f4b7e62013-07-31 16:18:36 +08002794 retval = cgroup_attach_task(from_cgrp, tsk, false);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002795 if (retval)
2796 break;
2797 }
Tejun Heo47cfcd02013-04-07 09:29:51 -07002798 mutex_unlock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002799
2800 return retval;
2801}
2802EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
2803
Tejun Heoacbef752014-05-13 12:16:22 -04002804static ssize_t cgroup_tasks_write(struct kernfs_open_file *of,
2805 char *buf, size_t nbytes, loff_t off)
Paul Menageaf351022008-07-25 01:47:01 -07002806{
Tejun Heoacbef752014-05-13 12:16:22 -04002807 return __cgroup_procs_write(of, buf, nbytes, off, false);
Ben Blum74a11662011-05-26 16:25:20 -07002808}
2809
Tejun Heoacbef752014-05-13 12:16:22 -04002810static ssize_t cgroup_procs_write(struct kernfs_open_file *of,
2811 char *buf, size_t nbytes, loff_t off)
Ben Blum74a11662011-05-26 16:25:20 -07002812{
Tejun Heoacbef752014-05-13 12:16:22 -04002813 return __cgroup_procs_write(of, buf, nbytes, off, true);
Paul Menageaf351022008-07-25 01:47:01 -07002814}
2815
Tejun Heo451af502014-05-13 12:16:21 -04002816static ssize_t cgroup_release_agent_write(struct kernfs_open_file *of,
2817 char *buf, size_t nbytes, loff_t off)
Paul Menagee788e062008-07-25 01:46:59 -07002818{
Tejun Heoe76ecae2014-05-13 12:19:23 -04002819 struct cgroup *cgrp;
Tejun Heo5f469902014-02-11 11:52:48 -05002820
Tejun Heoe76ecae2014-05-13 12:19:23 -04002821 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
2822
2823 cgrp = cgroup_kn_lock_live(of->kn);
2824 if (!cgrp)
Paul Menagee788e062008-07-25 01:46:59 -07002825 return -ENODEV;
Tejun Heo69e943b2014-02-08 10:36:58 -05002826 spin_lock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002827 strlcpy(cgrp->root->release_agent_path, strstrip(buf),
2828 sizeof(cgrp->root->release_agent_path));
Tejun Heo69e943b2014-02-08 10:36:58 -05002829 spin_unlock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002830 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04002831 return nbytes;
Paul Menagee788e062008-07-25 01:46:59 -07002832}
2833
Tejun Heo2da8ca82013-12-05 12:28:04 -05002834static int cgroup_release_agent_show(struct seq_file *seq, void *v)
Paul Menagee788e062008-07-25 01:46:59 -07002835{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002836 struct cgroup *cgrp = seq_css(seq)->cgroup;
Tejun Heo182446d2013-08-08 20:11:24 -04002837
Tejun Heo46cfeb02014-05-13 12:11:00 -04002838 spin_lock(&release_agent_path_lock);
Paul Menagee788e062008-07-25 01:46:59 -07002839 seq_puts(seq, cgrp->root->release_agent_path);
Tejun Heo46cfeb02014-05-13 12:11:00 -04002840 spin_unlock(&release_agent_path_lock);
Paul Menagee788e062008-07-25 01:46:59 -07002841 seq_putc(seq, '\n');
Paul Menagee788e062008-07-25 01:46:59 -07002842 return 0;
2843}
2844
Tejun Heo2da8ca82013-12-05 12:28:04 -05002845static int cgroup_sane_behavior_show(struct seq_file *seq, void *v)
Tejun Heo873fe092013-04-14 20:15:26 -07002846{
Tejun Heoc1d5d422014-07-09 10:08:08 -04002847 seq_puts(seq, "0\n");
Paul Menage81a6a5c2007-10-18 23:39:38 -07002848 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002849}
2850
Tejun Heo6e5c8302016-02-22 22:25:47 -05002851static void cgroup_print_ss_mask(struct seq_file *seq, u16 ss_mask)
Tejun Heof8f22e52014-04-23 11:13:16 -04002852{
2853 struct cgroup_subsys *ss;
2854 bool printed = false;
2855 int ssid;
2856
Tejun Heob4e0eea2016-02-22 22:25:46 -05002857 do_each_subsys_mask(ss, ssid, ss_mask) {
Aleksa Saraia966a4e2015-06-06 10:02:15 +10002858 if (printed)
2859 seq_putc(seq, ' ');
2860 seq_printf(seq, "%s", ss->name);
2861 printed = true;
Tejun Heob4e0eea2016-02-22 22:25:46 -05002862 } while_each_subsys_mask();
Tejun Heof8f22e52014-04-23 11:13:16 -04002863 if (printed)
2864 seq_putc(seq, '\n');
2865}
2866
2867/* show controllers which are currently attached to the default hierarchy */
2868static int cgroup_root_controllers_show(struct seq_file *seq, void *v)
2869{
2870 struct cgroup *cgrp = seq_css(seq)->cgroup;
2871
Tejun Heo5533e012014-05-14 19:33:07 -04002872 cgroup_print_ss_mask(seq, cgrp->root->subsys_mask &
Tejun Heoa7165262016-02-23 10:00:50 -05002873 ~cgrp_dfl_inhibit_ss_mask);
Tejun Heof8f22e52014-04-23 11:13:16 -04002874 return 0;
2875}
2876
2877/* show controllers which are enabled from the parent */
2878static int cgroup_controllers_show(struct seq_file *seq, void *v)
2879{
2880 struct cgroup *cgrp = seq_css(seq)->cgroup;
2881
Tejun Heo667c2492014-07-08 18:02:56 -04002882 cgroup_print_ss_mask(seq, cgroup_parent(cgrp)->subtree_control);
Tejun Heof8f22e52014-04-23 11:13:16 -04002883 return 0;
2884}
2885
2886/* show controllers which are enabled for a given cgroup's children */
2887static int cgroup_subtree_control_show(struct seq_file *seq, void *v)
2888{
2889 struct cgroup *cgrp = seq_css(seq)->cgroup;
2890
Tejun Heo667c2492014-07-08 18:02:56 -04002891 cgroup_print_ss_mask(seq, cgrp->subtree_control);
Tejun Heof8f22e52014-04-23 11:13:16 -04002892 return 0;
2893}
2894
2895/**
2896 * cgroup_update_dfl_csses - update css assoc of a subtree in default hierarchy
2897 * @cgrp: root of the subtree to update csses for
2898 *
Tejun Heo8699b772016-02-22 22:25:46 -05002899 * @cgrp's subtree_ss_mask has changed and its subtree's (self excluded)
Tejun Heof8f22e52014-04-23 11:13:16 -04002900 * css associations need to be updated accordingly. This function looks up
2901 * all css_sets which are attached to the subtree, creates the matching
2902 * updated css_sets and migrates the tasks to the new ones.
2903 */
2904static int cgroup_update_dfl_csses(struct cgroup *cgrp)
2905{
2906 LIST_HEAD(preloaded_csets);
Tejun Heo10265072015-09-11 15:00:22 -04002907 struct cgroup_taskset tset = CGROUP_TASKSET_INIT(tset);
Tejun Heof8f22e52014-04-23 11:13:16 -04002908 struct cgroup_subsys_state *css;
2909 struct css_set *src_cset;
2910 int ret;
2911
Tejun Heof8f22e52014-04-23 11:13:16 -04002912 lockdep_assert_held(&cgroup_mutex);
2913
Tejun Heo3014dde2015-09-16 13:03:02 -04002914 percpu_down_write(&cgroup_threadgroup_rwsem);
2915
Tejun Heof8f22e52014-04-23 11:13:16 -04002916 /* look up all csses currently attached to @cgrp's subtree */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002917 spin_lock_bh(&css_set_lock);
Tejun Heof8f22e52014-04-23 11:13:16 -04002918 css_for_each_descendant_pre(css, cgroup_css(cgrp, NULL)) {
2919 struct cgrp_cset_link *link;
2920
Tejun Heo8699b772016-02-22 22:25:46 -05002921 /* self is not affected by subtree_ss_mask change */
Tejun Heof8f22e52014-04-23 11:13:16 -04002922 if (css->cgroup == cgrp)
2923 continue;
2924
2925 list_for_each_entry(link, &css->cgroup->cset_links, cset_link)
2926 cgroup_migrate_add_src(link->cset, cgrp,
2927 &preloaded_csets);
2928 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002929 spin_unlock_bh(&css_set_lock);
Tejun Heof8f22e52014-04-23 11:13:16 -04002930
2931 /* NULL dst indicates self on default hierarchy */
2932 ret = cgroup_migrate_prepare_dst(NULL, &preloaded_csets);
2933 if (ret)
2934 goto out_finish;
2935
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002936 spin_lock_bh(&css_set_lock);
Tejun Heof8f22e52014-04-23 11:13:16 -04002937 list_for_each_entry(src_cset, &preloaded_csets, mg_preload_node) {
Tejun Heo10265072015-09-11 15:00:22 -04002938 struct task_struct *task, *ntask;
Tejun Heof8f22e52014-04-23 11:13:16 -04002939
2940 /* src_csets precede dst_csets, break on the first dst_cset */
2941 if (!src_cset->mg_src_cgrp)
2942 break;
2943
Tejun Heo10265072015-09-11 15:00:22 -04002944 /* all tasks in src_csets need to be migrated */
2945 list_for_each_entry_safe(task, ntask, &src_cset->tasks, cg_list)
2946 cgroup_taskset_add(task, &tset);
Tejun Heof8f22e52014-04-23 11:13:16 -04002947 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002948 spin_unlock_bh(&css_set_lock);
Tejun Heof8f22e52014-04-23 11:13:16 -04002949
Tejun Heo10265072015-09-11 15:00:22 -04002950 ret = cgroup_taskset_migrate(&tset, cgrp);
Tejun Heof8f22e52014-04-23 11:13:16 -04002951out_finish:
2952 cgroup_migrate_finish(&preloaded_csets);
Tejun Heo3014dde2015-09-16 13:03:02 -04002953 percpu_up_write(&cgroup_threadgroup_rwsem);
Tejun Heof8f22e52014-04-23 11:13:16 -04002954 return ret;
2955}
2956
2957/* change the enabled child controllers for a cgroup in the default hierarchy */
Tejun Heo451af502014-05-13 12:16:21 -04002958static ssize_t cgroup_subtree_control_write(struct kernfs_open_file *of,
2959 char *buf, size_t nbytes,
2960 loff_t off)
Tejun Heof8f22e52014-04-23 11:13:16 -04002961{
Tejun Heo6e5c8302016-02-22 22:25:47 -05002962 u16 enable = 0, disable = 0;
2963 u16 css_enable, css_disable, old_sc, new_sc, old_ss, new_ss;
Tejun Heoa9746d82014-05-13 12:19:22 -04002964 struct cgroup *cgrp, *child;
Tejun Heof8f22e52014-04-23 11:13:16 -04002965 struct cgroup_subsys *ss;
Tejun Heo451af502014-05-13 12:16:21 -04002966 char *tok;
Tejun Heof8f22e52014-04-23 11:13:16 -04002967 int ssid, ret;
2968
2969 /*
Tejun Heod37167a2014-05-13 12:10:59 -04002970 * Parse input - space separated list of subsystem names prefixed
2971 * with either + or -.
Tejun Heof8f22e52014-04-23 11:13:16 -04002972 */
Tejun Heo451af502014-05-13 12:16:21 -04002973 buf = strstrip(buf);
2974 while ((tok = strsep(&buf, " "))) {
Tejun Heod37167a2014-05-13 12:10:59 -04002975 if (tok[0] == '\0')
2976 continue;
Tejun Heoa7165262016-02-23 10:00:50 -05002977 do_each_subsys_mask(ss, ssid, ~cgrp_dfl_inhibit_ss_mask) {
Tejun Heofc5ed1e2015-09-18 11:56:28 -04002978 if (!cgroup_ssid_enabled(ssid) ||
2979 strcmp(tok + 1, ss->name))
Tejun Heof8f22e52014-04-23 11:13:16 -04002980 continue;
2981
2982 if (*tok == '+') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04002983 enable |= 1 << ssid;
2984 disable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002985 } else if (*tok == '-') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04002986 disable |= 1 << ssid;
2987 enable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002988 } else {
2989 return -EINVAL;
2990 }
2991 break;
Tejun Heob4e0eea2016-02-22 22:25:46 -05002992 } while_each_subsys_mask();
Tejun Heof8f22e52014-04-23 11:13:16 -04002993 if (ssid == CGROUP_SUBSYS_COUNT)
2994 return -EINVAL;
2995 }
2996
Tejun Heoa9746d82014-05-13 12:19:22 -04002997 cgrp = cgroup_kn_lock_live(of->kn);
2998 if (!cgrp)
2999 return -ENODEV;
Tejun Heof8f22e52014-04-23 11:13:16 -04003000
3001 for_each_subsys(ss, ssid) {
3002 if (enable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04003003 if (cgrp->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04003004 enable &= ~(1 << ssid);
3005 continue;
3006 }
3007
Tejun Heoc29adf22014-07-08 18:02:56 -04003008 /* unavailable or not enabled on the parent? */
3009 if (!(cgrp_dfl_root.subsys_mask & (1 << ssid)) ||
3010 (cgroup_parent(cgrp) &&
Tejun Heo667c2492014-07-08 18:02:56 -04003011 !(cgroup_parent(cgrp)->subtree_control & (1 << ssid)))) {
Tejun Heoc29adf22014-07-08 18:02:56 -04003012 ret = -ENOENT;
3013 goto out_unlock;
3014 }
Tejun Heof8f22e52014-04-23 11:13:16 -04003015 } else if (disable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04003016 if (!(cgrp->subtree_control & (1 << ssid))) {
Tejun Heof8f22e52014-04-23 11:13:16 -04003017 disable &= ~(1 << ssid);
3018 continue;
3019 }
3020
3021 /* a child has it enabled? */
3022 cgroup_for_each_live_child(child, cgrp) {
Tejun Heo667c2492014-07-08 18:02:56 -04003023 if (child->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04003024 ret = -EBUSY;
Tejun Heoddab2b62014-05-13 12:19:22 -04003025 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04003026 }
3027 }
3028 }
3029 }
3030
3031 if (!enable && !disable) {
3032 ret = 0;
Tejun Heoddab2b62014-05-13 12:19:22 -04003033 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04003034 }
3035
3036 /*
Tejun Heo667c2492014-07-08 18:02:56 -04003037 * Except for the root, subtree_control must be zero for a cgroup
Tejun Heof8f22e52014-04-23 11:13:16 -04003038 * with tasks so that child cgroups don't compete against tasks.
3039 */
Tejun Heod51f39b2014-05-16 13:22:48 -04003040 if (enable && cgroup_parent(cgrp) && !list_empty(&cgrp->cset_links)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04003041 ret = -EBUSY;
3042 goto out_unlock;
3043 }
3044
3045 /*
Tejun Heof63070d2014-07-08 18:02:57 -04003046 * Update subsys masks and calculate what needs to be done. More
3047 * subsystems than specified may need to be enabled or disabled
3048 * depending on subsystem dependencies.
3049 */
Tejun Heo755bf5e2014-11-18 02:49:50 -05003050 old_sc = cgrp->subtree_control;
Tejun Heo8699b772016-02-22 22:25:46 -05003051 old_ss = cgrp->subtree_ss_mask;
Tejun Heo755bf5e2014-11-18 02:49:50 -05003052 new_sc = (old_sc | enable) & ~disable;
Tejun Heo8699b772016-02-22 22:25:46 -05003053 new_ss = cgroup_calc_subtree_ss_mask(cgrp, new_sc);
Tejun Heoc29adf22014-07-08 18:02:56 -04003054
Tejun Heo755bf5e2014-11-18 02:49:50 -05003055 css_enable = ~old_ss & new_ss;
3056 css_disable = old_ss & ~new_ss;
Tejun Heof63070d2014-07-08 18:02:57 -04003057 enable |= css_enable;
3058 disable |= css_disable;
3059
Tejun Heodb6e3052014-11-18 02:49:51 -05003060 /*
3061 * Because css offlining is asynchronous, userland might try to
3062 * re-enable the same controller while the previous instance is
3063 * still around. In such cases, wait till it's gone using
3064 * offline_waitq.
3065 */
Tejun Heob4e0eea2016-02-22 22:25:46 -05003066 do_each_subsys_mask(ss, ssid, css_enable) {
Tejun Heodb6e3052014-11-18 02:49:51 -05003067 cgroup_for_each_live_child(child, cgrp) {
3068 DEFINE_WAIT(wait);
3069
3070 if (!cgroup_css(child, ss))
3071 continue;
3072
3073 cgroup_get(child);
3074 prepare_to_wait(&child->offline_waitq, &wait,
3075 TASK_UNINTERRUPTIBLE);
3076 cgroup_kn_unlock(of->kn);
3077 schedule();
3078 finish_wait(&child->offline_waitq, &wait);
3079 cgroup_put(child);
3080
3081 return restart_syscall();
3082 }
Tejun Heob4e0eea2016-02-22 22:25:46 -05003083 } while_each_subsys_mask();
Tejun Heodb6e3052014-11-18 02:49:51 -05003084
Tejun Heo755bf5e2014-11-18 02:49:50 -05003085 cgrp->subtree_control = new_sc;
Tejun Heo8699b772016-02-22 22:25:46 -05003086 cgrp->subtree_ss_mask = new_ss;
Tejun Heo755bf5e2014-11-18 02:49:50 -05003087
Tejun Heof63070d2014-07-08 18:02:57 -04003088 /*
3089 * Create new csses or make the existing ones visible. A css is
3090 * created invisible if it's being implicitly enabled through
3091 * dependency. An invisible css is made visible when the userland
3092 * explicitly enables it.
Tejun Heof8f22e52014-04-23 11:13:16 -04003093 */
Tejun Heo996cd1f2016-02-22 22:25:46 -05003094 do_each_subsys_mask(ss, ssid, enable) {
Tejun Heof8f22e52014-04-23 11:13:16 -04003095 cgroup_for_each_live_child(child, cgrp) {
Tejun Heo6cd0f5b2016-03-03 09:57:58 -05003096 if (css_enable & (1 << ssid)) {
3097 struct cgroup_subsys_state *css;
3098
3099 css = css_create(child, ss);
3100 if (IS_ERR(css)) {
3101 ret = PTR_ERR(css);
3102 goto err_undo_css;
3103 }
3104
3105 if (cgrp->subtree_control & (1 << ssid)) {
3106 ret = css_populate_dir(css, NULL);
3107 if (ret)
3108 goto err_undo_css;
3109 }
3110 } else {
Tejun Heo4df8dc92015-09-18 17:54:23 -04003111 ret = css_populate_dir(cgroup_css(child, ss),
3112 NULL);
Tejun Heo6cd0f5b2016-03-03 09:57:58 -05003113 if (ret)
3114 goto err_undo_css;
3115 }
Tejun Heof8f22e52014-04-23 11:13:16 -04003116 }
Tejun Heo996cd1f2016-02-22 22:25:46 -05003117 } while_each_subsys_mask();
Tejun Heof8f22e52014-04-23 11:13:16 -04003118
Tejun Heoc29adf22014-07-08 18:02:56 -04003119 /*
3120 * At this point, cgroup_e_css() results reflect the new csses
3121 * making the following cgroup_update_dfl_csses() properly update
3122 * css associations of all tasks in the subtree.
3123 */
Tejun Heof8f22e52014-04-23 11:13:16 -04003124 ret = cgroup_update_dfl_csses(cgrp);
3125 if (ret)
3126 goto err_undo_css;
3127
Tejun Heof63070d2014-07-08 18:02:57 -04003128 /*
3129 * All tasks are migrated out of disabled csses. Kill or hide
3130 * them. A css is hidden when the userland requests it to be
Tejun Heob4536f0ca2014-07-08 18:02:57 -04003131 * disabled while other subsystems are still depending on it. The
3132 * css must not actively control resources and be in the vanilla
3133 * state if it's made visible again later. Controllers which may
3134 * be depended upon should provide ->css_reset() for this purpose.
Tejun Heof63070d2014-07-08 18:02:57 -04003135 */
Tejun Heo996cd1f2016-02-22 22:25:46 -05003136 do_each_subsys_mask(ss, ssid, disable) {
Tejun Heof63070d2014-07-08 18:02:57 -04003137 cgroup_for_each_live_child(child, cgrp) {
Tejun Heob4536f0ca2014-07-08 18:02:57 -04003138 struct cgroup_subsys_state *css = cgroup_css(child, ss);
3139
3140 if (css_disable & (1 << ssid)) {
3141 kill_css(css);
3142 } else {
Tejun Heo4df8dc92015-09-18 17:54:23 -04003143 css_clear_dir(css, NULL);
Tejun Heob4536f0ca2014-07-08 18:02:57 -04003144 if (ss->css_reset)
3145 ss->css_reset(css);
3146 }
Tejun Heof63070d2014-07-08 18:02:57 -04003147 }
Tejun Heo996cd1f2016-02-22 22:25:46 -05003148 } while_each_subsys_mask();
Tejun Heof8f22e52014-04-23 11:13:16 -04003149
3150 kernfs_activate(cgrp->kn);
3151 ret = 0;
3152out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04003153 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04003154 return ret ?: nbytes;
Tejun Heof8f22e52014-04-23 11:13:16 -04003155
3156err_undo_css:
Tejun Heo755bf5e2014-11-18 02:49:50 -05003157 cgrp->subtree_control = old_sc;
Tejun Heo8699b772016-02-22 22:25:46 -05003158 cgrp->subtree_ss_mask = old_ss;
Tejun Heof8f22e52014-04-23 11:13:16 -04003159
Tejun Heo996cd1f2016-02-22 22:25:46 -05003160 do_each_subsys_mask(ss, ssid, enable) {
Tejun Heof8f22e52014-04-23 11:13:16 -04003161 cgroup_for_each_live_child(child, cgrp) {
3162 struct cgroup_subsys_state *css = cgroup_css(child, ss);
Tejun Heof63070d2014-07-08 18:02:57 -04003163
3164 if (!css)
3165 continue;
3166
3167 if (css_enable & (1 << ssid))
Tejun Heof8f22e52014-04-23 11:13:16 -04003168 kill_css(css);
Tejun Heof63070d2014-07-08 18:02:57 -04003169 else
Tejun Heo4df8dc92015-09-18 17:54:23 -04003170 css_clear_dir(css, NULL);
Tejun Heof8f22e52014-04-23 11:13:16 -04003171 }
Tejun Heo996cd1f2016-02-22 22:25:46 -05003172 } while_each_subsys_mask();
Tejun Heof8f22e52014-04-23 11:13:16 -04003173 goto out_unlock;
3174}
3175
Tejun Heo4a07c222015-09-18 17:54:22 -04003176static int cgroup_events_show(struct seq_file *seq, void *v)
Tejun Heo842b5972014-04-25 18:28:02 -04003177{
Tejun Heo4a07c222015-09-18 17:54:22 -04003178 seq_printf(seq, "populated %d\n",
Tejun Heo27bd4db2015-10-15 16:41:50 -04003179 cgroup_is_populated(seq_css(seq)->cgroup));
Tejun Heo842b5972014-04-25 18:28:02 -04003180 return 0;
3181}
3182
Tejun Heo2bd59d42014-02-11 11:52:49 -05003183static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf,
3184 size_t nbytes, loff_t off)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003185{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003186 struct cgroup *cgrp = of->kn->parent->priv;
3187 struct cftype *cft = of->kn->priv;
3188 struct cgroup_subsys_state *css;
Tejun Heoa742c592013-12-05 12:28:03 -05003189 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003190
Tejun Heob4168642014-05-13 12:16:21 -04003191 if (cft->write)
3192 return cft->write(of, buf, nbytes, off);
3193
Tejun Heo2bd59d42014-02-11 11:52:49 -05003194 /*
3195 * kernfs guarantees that a file isn't deleted with operations in
3196 * flight, which means that the matching css is and stays alive and
3197 * doesn't need to be pinned. The RCU locking is not necessary
3198 * either. It's just for the convenience of using cgroup_css().
3199 */
3200 rcu_read_lock();
3201 css = cgroup_css(cgrp, cft->ss);
3202 rcu_read_unlock();
Paul Menageddbcc7e2007-10-18 23:39:30 -07003203
Tejun Heo451af502014-05-13 12:16:21 -04003204 if (cft->write_u64) {
Tejun Heoa742c592013-12-05 12:28:03 -05003205 unsigned long long v;
3206 ret = kstrtoull(buf, 0, &v);
3207 if (!ret)
3208 ret = cft->write_u64(css, cft, v);
3209 } else if (cft->write_s64) {
3210 long long v;
3211 ret = kstrtoll(buf, 0, &v);
3212 if (!ret)
3213 ret = cft->write_s64(css, cft, v);
Tejun Heoa742c592013-12-05 12:28:03 -05003214 } else {
3215 ret = -EINVAL;
3216 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05003217
Tejun Heoa742c592013-12-05 12:28:03 -05003218 return ret ?: nbytes;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003219}
3220
Tejun Heo6612f052013-12-05 12:28:04 -05003221static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos)
Paul Menage91796562008-04-29 01:00:01 -07003222{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003223 return seq_cft(seq)->seq_start(seq, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05003224}
3225
3226static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos)
3227{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003228 return seq_cft(seq)->seq_next(seq, v, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05003229}
3230
3231static void cgroup_seqfile_stop(struct seq_file *seq, void *v)
3232{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003233 seq_cft(seq)->seq_stop(seq, v);
Paul Menage91796562008-04-29 01:00:01 -07003234}
3235
3236static int cgroup_seqfile_show(struct seq_file *m, void *arg)
3237{
Tejun Heo7da11272013-12-05 12:28:04 -05003238 struct cftype *cft = seq_cft(m);
3239 struct cgroup_subsys_state *css = seq_css(m);
Li Zefane0798ce2013-07-31 17:36:25 +08003240
Tejun Heo2da8ca82013-12-05 12:28:04 -05003241 if (cft->seq_show)
3242 return cft->seq_show(m, arg);
Paul Menage91796562008-04-29 01:00:01 -07003243
Tejun Heo896f5192013-12-05 12:28:04 -05003244 if (cft->read_u64)
3245 seq_printf(m, "%llu\n", cft->read_u64(css, cft));
3246 else if (cft->read_s64)
3247 seq_printf(m, "%lld\n", cft->read_s64(css, cft));
3248 else
3249 return -EINVAL;
3250 return 0;
Paul Menage91796562008-04-29 01:00:01 -07003251}
3252
Tejun Heo2bd59d42014-02-11 11:52:49 -05003253static struct kernfs_ops cgroup_kf_single_ops = {
3254 .atomic_write_len = PAGE_SIZE,
3255 .write = cgroup_file_write,
3256 .seq_show = cgroup_seqfile_show,
Paul Menage91796562008-04-29 01:00:01 -07003257};
3258
Tejun Heo2bd59d42014-02-11 11:52:49 -05003259static struct kernfs_ops cgroup_kf_ops = {
3260 .atomic_write_len = PAGE_SIZE,
3261 .write = cgroup_file_write,
3262 .seq_start = cgroup_seqfile_start,
3263 .seq_next = cgroup_seqfile_next,
3264 .seq_stop = cgroup_seqfile_stop,
3265 .seq_show = cgroup_seqfile_show,
3266};
Paul Menageddbcc7e2007-10-18 23:39:30 -07003267
3268/*
3269 * cgroup_rename - Only allow simple rename of directories in place.
3270 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05003271static int cgroup_rename(struct kernfs_node *kn, struct kernfs_node *new_parent,
3272 const char *new_name_str)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003273{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003274 struct cgroup *cgrp = kn->priv;
Li Zefan65dff752013-03-01 15:01:56 +08003275 int ret;
Li Zefan65dff752013-03-01 15:01:56 +08003276
Tejun Heo2bd59d42014-02-11 11:52:49 -05003277 if (kernfs_type(kn) != KERNFS_DIR)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003278 return -ENOTDIR;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003279 if (kn->parent != new_parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003280 return -EIO;
Li Zefan65dff752013-03-01 15:01:56 +08003281
Tejun Heo6db8e852013-06-14 11:18:22 -07003282 /*
3283 * This isn't a proper migration and its usefulness is very
Tejun Heoaa6ec292014-07-09 10:08:08 -04003284 * limited. Disallow on the default hierarchy.
Tejun Heo6db8e852013-06-14 11:18:22 -07003285 */
Tejun Heoaa6ec292014-07-09 10:08:08 -04003286 if (cgroup_on_dfl(cgrp))
Tejun Heo6db8e852013-06-14 11:18:22 -07003287 return -EPERM;
3288
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003289 /*
Tejun Heo8353da12014-05-13 12:19:23 -04003290 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003291 * active_ref. kernfs_rename() doesn't require active_ref
Tejun Heo8353da12014-05-13 12:19:23 -04003292 * protection. Break them before grabbing cgroup_mutex.
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003293 */
3294 kernfs_break_active_protection(new_parent);
3295 kernfs_break_active_protection(kn);
Li Zefan65dff752013-03-01 15:01:56 +08003296
Tejun Heo2bd59d42014-02-11 11:52:49 -05003297 mutex_lock(&cgroup_mutex);
Li Zefan65dff752013-03-01 15:01:56 +08003298
Tejun Heo2bd59d42014-02-11 11:52:49 -05003299 ret = kernfs_rename(kn, new_parent, new_name_str);
Li Zefan65dff752013-03-01 15:01:56 +08003300
Tejun Heo2bd59d42014-02-11 11:52:49 -05003301 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003302
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003303 kernfs_unbreak_active_protection(kn);
3304 kernfs_unbreak_active_protection(new_parent);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003305 return ret;
Li Zefan099fca32009-04-02 16:57:29 -07003306}
3307
Tejun Heo49957f82014-04-07 16:44:47 -04003308/* set uid and gid of cgroup dirs and files to that of the creator */
3309static int cgroup_kn_set_ugid(struct kernfs_node *kn)
3310{
3311 struct iattr iattr = { .ia_valid = ATTR_UID | ATTR_GID,
3312 .ia_uid = current_fsuid(),
3313 .ia_gid = current_fsgid(), };
3314
3315 if (uid_eq(iattr.ia_uid, GLOBAL_ROOT_UID) &&
3316 gid_eq(iattr.ia_gid, GLOBAL_ROOT_GID))
3317 return 0;
3318
3319 return kernfs_setattr(kn, &iattr);
3320}
3321
Tejun Heo4df8dc92015-09-18 17:54:23 -04003322static int cgroup_add_file(struct cgroup_subsys_state *css, struct cgroup *cgrp,
3323 struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003324{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05003325 char name[CGROUP_FILE_NAME_MAX];
Tejun Heo2bd59d42014-02-11 11:52:49 -05003326 struct kernfs_node *kn;
3327 struct lock_class_key *key = NULL;
Tejun Heo49957f82014-04-07 16:44:47 -04003328 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003329
Tejun Heo2bd59d42014-02-11 11:52:49 -05003330#ifdef CONFIG_DEBUG_LOCK_ALLOC
3331 key = &cft->lockdep_key;
3332#endif
3333 kn = __kernfs_create_file(cgrp->kn, cgroup_file_name(cgrp, cft, name),
3334 cgroup_file_mode(cft), 0, cft->kf_ops, cft,
Tejun Heodfeb07502015-02-13 14:36:31 -08003335 NULL, key);
Tejun Heo49957f82014-04-07 16:44:47 -04003336 if (IS_ERR(kn))
3337 return PTR_ERR(kn);
3338
3339 ret = cgroup_kn_set_ugid(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04003340 if (ret) {
Tejun Heo49957f82014-04-07 16:44:47 -04003341 kernfs_remove(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04003342 return ret;
3343 }
3344
Tejun Heo6f60ead2015-09-18 17:54:23 -04003345 if (cft->file_offset) {
3346 struct cgroup_file *cfile = (void *)css + cft->file_offset;
3347
Tejun Heo34c06252015-11-05 00:12:24 -05003348 spin_lock_irq(&cgroup_file_kn_lock);
Tejun Heo6f60ead2015-09-18 17:54:23 -04003349 cfile->kn = kn;
Tejun Heo34c06252015-11-05 00:12:24 -05003350 spin_unlock_irq(&cgroup_file_kn_lock);
Tejun Heo6f60ead2015-09-18 17:54:23 -04003351 }
3352
Tejun Heof8f22e52014-04-23 11:13:16 -04003353 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003354}
3355
Tejun Heob1f28d32013-06-28 16:24:10 -07003356/**
3357 * cgroup_addrm_files - add or remove files to a cgroup directory
Tejun Heo4df8dc92015-09-18 17:54:23 -04003358 * @css: the target css
3359 * @cgrp: the target cgroup (usually css->cgroup)
Tejun Heob1f28d32013-06-28 16:24:10 -07003360 * @cfts: array of cftypes to be added
3361 * @is_add: whether to add or remove
3362 *
3363 * Depending on @is_add, add or remove files defined by @cfts on @cgrp.
Tejun Heo6732ed82015-09-18 17:54:23 -04003364 * For removals, this function never fails.
Tejun Heob1f28d32013-06-28 16:24:10 -07003365 */
Tejun Heo4df8dc92015-09-18 17:54:23 -04003366static int cgroup_addrm_files(struct cgroup_subsys_state *css,
3367 struct cgroup *cgrp, struct cftype cfts[],
Tejun Heo2bb566c2013-08-08 20:11:23 -04003368 bool is_add)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003369{
Tejun Heo6732ed82015-09-18 17:54:23 -04003370 struct cftype *cft, *cft_end = NULL;
Tejun Heob598dde2016-02-22 22:25:45 -05003371 int ret = 0;
Tejun Heob1f28d32013-06-28 16:24:10 -07003372
Tejun Heo01f64742014-05-13 12:19:23 -04003373 lockdep_assert_held(&cgroup_mutex);
Tejun Heodb0416b2012-04-01 12:09:55 -07003374
Tejun Heo6732ed82015-09-18 17:54:23 -04003375restart:
3376 for (cft = cfts; cft != cft_end && cft->name[0] != '\0'; cft++) {
Gao fengf33fddc2012-12-06 14:38:57 +08003377 /* does cft->flags tell us to skip this file on @cgrp? */
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003378 if ((cft->flags & __CFTYPE_ONLY_ON_DFL) && !cgroup_on_dfl(cgrp))
Tejun Heo8cbbf2c2014-03-19 10:23:55 -04003379 continue;
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003380 if ((cft->flags & __CFTYPE_NOT_ON_DFL) && cgroup_on_dfl(cgrp))
Tejun Heo873fe092013-04-14 20:15:26 -07003381 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04003382 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08003383 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04003384 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08003385 continue;
3386
Li Zefan2739d3c2013-01-21 18:18:33 +08003387 if (is_add) {
Tejun Heo4df8dc92015-09-18 17:54:23 -04003388 ret = cgroup_add_file(css, cgrp, cft);
Tejun Heob1f28d32013-06-28 16:24:10 -07003389 if (ret) {
Joe Perchesed3d2612014-04-25 18:28:03 -04003390 pr_warn("%s: failed to add %s, err=%d\n",
3391 __func__, cft->name, ret);
Tejun Heo6732ed82015-09-18 17:54:23 -04003392 cft_end = cft;
3393 is_add = false;
3394 goto restart;
Tejun Heob1f28d32013-06-28 16:24:10 -07003395 }
Li Zefan2739d3c2013-01-21 18:18:33 +08003396 } else {
3397 cgroup_rm_file(cgrp, cft);
Tejun Heodb0416b2012-04-01 12:09:55 -07003398 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003399 }
Tejun Heob598dde2016-02-22 22:25:45 -05003400 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003401}
3402
Tejun Heo21a2d342014-02-12 09:29:49 -05003403static int cgroup_apply_cftypes(struct cftype *cfts, bool is_add)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003404{
3405 LIST_HEAD(pending);
Tejun Heo2bb566c2013-08-08 20:11:23 -04003406 struct cgroup_subsys *ss = cfts[0].ss;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04003407 struct cgroup *root = &ss->root->cgrp;
Tejun Heo492eb212013-08-08 20:11:25 -04003408 struct cgroup_subsys_state *css;
Tejun Heo9ccece82013-06-28 16:24:11 -07003409 int ret = 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003410
Tejun Heo01f64742014-05-13 12:19:23 -04003411 lockdep_assert_held(&cgroup_mutex);
Li Zefane8c82d22013-06-18 18:48:37 +08003412
Li Zefane8c82d22013-06-18 18:48:37 +08003413 /* add/rm files for all cgroups created before */
Tejun Heoca8bdca2013-08-26 18:40:56 -04003414 css_for_each_descendant_pre(css, cgroup_css(root, ss)) {
Tejun Heo492eb212013-08-08 20:11:25 -04003415 struct cgroup *cgrp = css->cgroup;
3416
Tejun Heo88cb04b2016-03-03 09:57:58 -05003417 if (!(css->flags & CSS_VISIBLE))
Li Zefane8c82d22013-06-18 18:48:37 +08003418 continue;
3419
Tejun Heo4df8dc92015-09-18 17:54:23 -04003420 ret = cgroup_addrm_files(css, cgrp, cfts, is_add);
Tejun Heo9ccece82013-06-28 16:24:11 -07003421 if (ret)
3422 break;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003423 }
Tejun Heo21a2d342014-02-12 09:29:49 -05003424
3425 if (is_add && !ret)
3426 kernfs_activate(root->kn);
Tejun Heo9ccece82013-06-28 16:24:11 -07003427 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003428}
3429
Tejun Heo2da440a2014-02-11 11:52:48 -05003430static void cgroup_exit_cftypes(struct cftype *cfts)
3431{
3432 struct cftype *cft;
3433
Tejun Heo2bd59d42014-02-11 11:52:49 -05003434 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3435 /* free copy for custom atomic_write_len, see init_cftypes() */
3436 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE)
3437 kfree(cft->kf_ops);
3438 cft->kf_ops = NULL;
Tejun Heo2da440a2014-02-11 11:52:48 -05003439 cft->ss = NULL;
Tejun Heoa8ddc822014-07-15 11:05:10 -04003440
3441 /* revert flags set by cgroup core while adding @cfts */
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003442 cft->flags &= ~(__CFTYPE_ONLY_ON_DFL | __CFTYPE_NOT_ON_DFL);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003443 }
Tejun Heo2da440a2014-02-11 11:52:48 -05003444}
3445
Tejun Heo2bd59d42014-02-11 11:52:49 -05003446static int cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo2da440a2014-02-11 11:52:48 -05003447{
3448 struct cftype *cft;
3449
Tejun Heo2bd59d42014-02-11 11:52:49 -05003450 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3451 struct kernfs_ops *kf_ops;
3452
Tejun Heo0adb0702014-02-12 09:29:48 -05003453 WARN_ON(cft->ss || cft->kf_ops);
3454
Tejun Heo2bd59d42014-02-11 11:52:49 -05003455 if (cft->seq_start)
3456 kf_ops = &cgroup_kf_ops;
3457 else
3458 kf_ops = &cgroup_kf_single_ops;
3459
3460 /*
3461 * Ugh... if @cft wants a custom max_write_len, we need to
3462 * make a copy of kf_ops to set its atomic_write_len.
3463 */
3464 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) {
3465 kf_ops = kmemdup(kf_ops, sizeof(*kf_ops), GFP_KERNEL);
3466 if (!kf_ops) {
3467 cgroup_exit_cftypes(cfts);
3468 return -ENOMEM;
3469 }
3470 kf_ops->atomic_write_len = cft->max_write_len;
3471 }
3472
3473 cft->kf_ops = kf_ops;
Tejun Heo2da440a2014-02-11 11:52:48 -05003474 cft->ss = ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003475 }
3476
3477 return 0;
Tejun Heo2da440a2014-02-11 11:52:48 -05003478}
3479
Tejun Heo21a2d342014-02-12 09:29:49 -05003480static int cgroup_rm_cftypes_locked(struct cftype *cfts)
3481{
Tejun Heo01f64742014-05-13 12:19:23 -04003482 lockdep_assert_held(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003483
3484 if (!cfts || !cfts[0].ss)
3485 return -ENOENT;
3486
3487 list_del(&cfts->node);
3488 cgroup_apply_cftypes(cfts, false);
3489 cgroup_exit_cftypes(cfts);
3490 return 0;
3491}
3492
Tejun Heo8e3f6542012-04-01 12:09:55 -07003493/**
Tejun Heo80b13582014-02-12 09:29:48 -05003494 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
3495 * @cfts: zero-length name terminated array of cftypes
3496 *
3497 * Unregister @cfts. Files described by @cfts are removed from all
3498 * existing cgroups and all future cgroups won't have them either. This
3499 * function can be called anytime whether @cfts' subsys is attached or not.
3500 *
3501 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
3502 * registered.
3503 */
3504int cgroup_rm_cftypes(struct cftype *cfts)
3505{
Tejun Heo21a2d342014-02-12 09:29:49 -05003506 int ret;
Tejun Heo80b13582014-02-12 09:29:48 -05003507
Tejun Heo01f64742014-05-13 12:19:23 -04003508 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003509 ret = cgroup_rm_cftypes_locked(cfts);
Tejun Heo01f64742014-05-13 12:19:23 -04003510 mutex_unlock(&cgroup_mutex);
Tejun Heo8e3f6542012-04-01 12:09:55 -07003511 return ret;
3512}
3513
3514/**
3515 * cgroup_add_cftypes - add an array of cftypes to a subsystem
3516 * @ss: target cgroup subsystem
3517 * @cfts: zero-length name terminated array of cftypes
3518 *
3519 * Register @cfts to @ss. Files described by @cfts are created for all
3520 * existing cgroups to which @ss is attached and all future cgroups will
3521 * have them too. This function can be called anytime whether @ss is
3522 * attached or not.
3523 *
3524 * Returns 0 on successful registration, -errno on failure. Note that this
3525 * function currently returns 0 as long as @cfts registration is successful
3526 * even if some file creation attempts on existing cgroups fail.
3527 */
Tejun Heo2cf669a2014-07-15 11:05:09 -04003528static int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003529{
Tejun Heo9ccece82013-06-28 16:24:11 -07003530 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003531
Tejun Heofc5ed1e2015-09-18 11:56:28 -04003532 if (!cgroup_ssid_enabled(ss->id))
Li Zefanc731ae12014-06-05 17:16:30 +08003533 return 0;
3534
Li Zefandc5736e2014-02-17 10:41:50 +08003535 if (!cfts || cfts[0].name[0] == '\0')
3536 return 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003537
Tejun Heo2bd59d42014-02-11 11:52:49 -05003538 ret = cgroup_init_cftypes(ss, cfts);
Tejun Heo9ccece82013-06-28 16:24:11 -07003539 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05003540 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003541
Tejun Heo01f64742014-05-13 12:19:23 -04003542 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003543
Tejun Heo0adb0702014-02-12 09:29:48 -05003544 list_add_tail(&cfts->node, &ss->cfts);
Tejun Heo21a2d342014-02-12 09:29:49 -05003545 ret = cgroup_apply_cftypes(cfts, true);
Tejun Heo9ccece82013-06-28 16:24:11 -07003546 if (ret)
Tejun Heo21a2d342014-02-12 09:29:49 -05003547 cgroup_rm_cftypes_locked(cfts);
3548
Tejun Heo01f64742014-05-13 12:19:23 -04003549 mutex_unlock(&cgroup_mutex);
Tejun Heo9ccece82013-06-28 16:24:11 -07003550 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003551}
Tejun Heo79578622012-04-01 12:09:56 -07003552
3553/**
Tejun Heoa8ddc822014-07-15 11:05:10 -04003554 * cgroup_add_dfl_cftypes - add an array of cftypes for default hierarchy
3555 * @ss: target cgroup subsystem
3556 * @cfts: zero-length name terminated array of cftypes
3557 *
3558 * Similar to cgroup_add_cftypes() but the added files are only used for
3559 * the default hierarchy.
3560 */
3561int cgroup_add_dfl_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
3562{
3563 struct cftype *cft;
3564
3565 for (cft = cfts; cft && cft->name[0] != '\0'; cft++)
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003566 cft->flags |= __CFTYPE_ONLY_ON_DFL;
Tejun Heoa8ddc822014-07-15 11:05:10 -04003567 return cgroup_add_cftypes(ss, cfts);
3568}
3569
3570/**
3571 * cgroup_add_legacy_cftypes - add an array of cftypes for legacy hierarchies
3572 * @ss: target cgroup subsystem
3573 * @cfts: zero-length name terminated array of cftypes
3574 *
3575 * Similar to cgroup_add_cftypes() but the added files are only used for
3576 * the legacy hierarchies.
3577 */
Tejun Heo2cf669a2014-07-15 11:05:09 -04003578int cgroup_add_legacy_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
3579{
Tejun Heoa8ddc822014-07-15 11:05:10 -04003580 struct cftype *cft;
3581
Tejun Heoe4b70372015-10-15 17:00:43 -04003582 for (cft = cfts; cft && cft->name[0] != '\0'; cft++)
3583 cft->flags |= __CFTYPE_NOT_ON_DFL;
Tejun Heo2cf669a2014-07-15 11:05:09 -04003584 return cgroup_add_cftypes(ss, cfts);
3585}
3586
Li Zefana043e3b2008-02-23 15:24:09 -08003587/**
Tejun Heo34c06252015-11-05 00:12:24 -05003588 * cgroup_file_notify - generate a file modified event for a cgroup_file
3589 * @cfile: target cgroup_file
3590 *
3591 * @cfile must have been obtained by setting cftype->file_offset.
3592 */
3593void cgroup_file_notify(struct cgroup_file *cfile)
3594{
3595 unsigned long flags;
3596
3597 spin_lock_irqsave(&cgroup_file_kn_lock, flags);
3598 if (cfile->kn)
3599 kernfs_notify(cfile->kn);
3600 spin_unlock_irqrestore(&cgroup_file_kn_lock, flags);
3601}
3602
3603/**
Li Zefana043e3b2008-02-23 15:24:09 -08003604 * cgroup_task_count - count the number of tasks in a cgroup.
3605 * @cgrp: the cgroup in question
3606 *
3607 * Return the number of tasks in the cgroup.
3608 */
Tejun Heo07bc3562014-02-13 06:58:39 -05003609static int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003610{
3611 int count = 0;
Tejun Heo69d02062013-06-12 21:04:50 -07003612 struct cgrp_cset_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003613
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003614 spin_lock_bh(&css_set_lock);
Tejun Heo69d02062013-06-12 21:04:50 -07003615 list_for_each_entry(link, &cgrp->cset_links, cset_link)
3616 count += atomic_read(&link->cset->refcount);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003617 spin_unlock_bh(&css_set_lock);
Paul Menagebbcb81d2007-10-18 23:39:32 -07003618 return count;
3619}
3620
Tejun Heo574bd9f2012-11-09 09:12:29 -08003621/**
Tejun Heo492eb212013-08-08 20:11:25 -04003622 * css_next_child - find the next child of a given css
Tejun Heoc2931b72014-05-16 13:22:51 -04003623 * @pos: the current position (%NULL to initiate traversal)
3624 * @parent: css whose children to walk
Tejun Heo53fa5262013-05-24 10:55:38 +09003625 *
Tejun Heoc2931b72014-05-16 13:22:51 -04003626 * This function returns the next child of @parent and should be called
Tejun Heo87fb54f2013-12-06 15:11:55 -05003627 * under either cgroup_mutex or RCU read lock. The only requirement is
Tejun Heoc2931b72014-05-16 13:22:51 -04003628 * that @parent and @pos are accessible. The next sibling is guaranteed to
3629 * be returned regardless of their states.
3630 *
3631 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3632 * css which finished ->css_online() is guaranteed to be visible in the
3633 * future iterations and will stay visible until the last reference is put.
3634 * A css which hasn't finished ->css_online() or already finished
3635 * ->css_offline() may show up during traversal. It's each subsystem's
3636 * responsibility to synchronize against on/offlining.
Tejun Heo53fa5262013-05-24 10:55:38 +09003637 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003638struct cgroup_subsys_state *css_next_child(struct cgroup_subsys_state *pos,
3639 struct cgroup_subsys_state *parent)
Tejun Heo53fa5262013-05-24 10:55:38 +09003640{
Tejun Heoc2931b72014-05-16 13:22:51 -04003641 struct cgroup_subsys_state *next;
Tejun Heo53fa5262013-05-24 10:55:38 +09003642
Tejun Heo8353da12014-05-13 12:19:23 -04003643 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo53fa5262013-05-24 10:55:38 +09003644
3645 /*
Tejun Heode3f0342014-05-16 13:22:49 -04003646 * @pos could already have been unlinked from the sibling list.
3647 * Once a cgroup is removed, its ->sibling.next is no longer
3648 * updated when its next sibling changes. CSS_RELEASED is set when
3649 * @pos is taken off list, at which time its next pointer is valid,
3650 * and, as releases are serialized, the one pointed to by the next
3651 * pointer is guaranteed to not have started release yet. This
3652 * implies that if we observe !CSS_RELEASED on @pos in this RCU
3653 * critical section, the one pointed to by its next pointer is
3654 * guaranteed to not have finished its RCU grace period even if we
3655 * have dropped rcu_read_lock() inbetween iterations.
Tejun Heo3b287a52013-08-08 20:11:24 -04003656 *
Tejun Heode3f0342014-05-16 13:22:49 -04003657 * If @pos has CSS_RELEASED set, its next pointer can't be
3658 * dereferenced; however, as each css is given a monotonically
3659 * increasing unique serial number and always appended to the
3660 * sibling list, the next one can be found by walking the parent's
3661 * children until the first css with higher serial number than
3662 * @pos's. While this path can be slower, it happens iff iteration
3663 * races against release and the race window is very small.
Tejun Heo53fa5262013-05-24 10:55:38 +09003664 */
Tejun Heo3b287a52013-08-08 20:11:24 -04003665 if (!pos) {
Tejun Heoc2931b72014-05-16 13:22:51 -04003666 next = list_entry_rcu(parent->children.next, struct cgroup_subsys_state, sibling);
3667 } else if (likely(!(pos->flags & CSS_RELEASED))) {
3668 next = list_entry_rcu(pos->sibling.next, struct cgroup_subsys_state, sibling);
Tejun Heo3b287a52013-08-08 20:11:24 -04003669 } else {
Tejun Heoc2931b72014-05-16 13:22:51 -04003670 list_for_each_entry_rcu(next, &parent->children, sibling)
Tejun Heo3b287a52013-08-08 20:11:24 -04003671 if (next->serial_nr > pos->serial_nr)
3672 break;
Tejun Heo53fa5262013-05-24 10:55:38 +09003673 }
3674
Tejun Heo3b281af2014-04-23 11:13:15 -04003675 /*
3676 * @next, if not pointing to the head, can be dereferenced and is
Tejun Heoc2931b72014-05-16 13:22:51 -04003677 * the next sibling.
Tejun Heo3b281af2014-04-23 11:13:15 -04003678 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003679 if (&next->sibling != &parent->children)
3680 return next;
Tejun Heo3b281af2014-04-23 11:13:15 -04003681 return NULL;
Tejun Heo53fa5262013-05-24 10:55:38 +09003682}
Tejun Heo53fa5262013-05-24 10:55:38 +09003683
3684/**
Tejun Heo492eb212013-08-08 20:11:25 -04003685 * css_next_descendant_pre - find the next descendant for pre-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003686 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003687 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003688 *
Tejun Heo492eb212013-08-08 20:11:25 -04003689 * To be used by css_for_each_descendant_pre(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003690 * to visit for pre-order traversal of @root's descendants. @root is
3691 * included in the iteration and the first node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003692 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003693 * While this function requires cgroup_mutex or RCU read locking, it
3694 * doesn't require the whole traversal to be contained in a single critical
3695 * section. This function will return the correct next descendant as long
3696 * as both @pos and @root are accessible and @pos is a descendant of @root.
Tejun Heoc2931b72014-05-16 13:22:51 -04003697 *
3698 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3699 * css which finished ->css_online() is guaranteed to be visible in the
3700 * future iterations and will stay visible until the last reference is put.
3701 * A css which hasn't finished ->css_online() or already finished
3702 * ->css_offline() may show up during traversal. It's each subsystem's
3703 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003704 */
Tejun Heo492eb212013-08-08 20:11:25 -04003705struct cgroup_subsys_state *
3706css_next_descendant_pre(struct cgroup_subsys_state *pos,
3707 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003708{
Tejun Heo492eb212013-08-08 20:11:25 -04003709 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003710
Tejun Heo8353da12014-05-13 12:19:23 -04003711 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003712
Tejun Heobd8815a2013-08-08 20:11:27 -04003713 /* if first iteration, visit @root */
Tejun Heo7805d002013-05-24 10:50:24 +09003714 if (!pos)
Tejun Heobd8815a2013-08-08 20:11:27 -04003715 return root;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003716
3717 /* visit the first child if exists */
Tejun Heo492eb212013-08-08 20:11:25 -04003718 next = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003719 if (next)
3720 return next;
3721
3722 /* no child, visit my or the closest ancestor's next sibling */
Tejun Heo492eb212013-08-08 20:11:25 -04003723 while (pos != root) {
Tejun Heo5c9d5352014-05-16 13:22:48 -04003724 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003725 if (next)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003726 return next;
Tejun Heo5c9d5352014-05-16 13:22:48 -04003727 pos = pos->parent;
Tejun Heo7805d002013-05-24 10:50:24 +09003728 }
Tejun Heo574bd9f2012-11-09 09:12:29 -08003729
3730 return NULL;
3731}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003732
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003733/**
Tejun Heo492eb212013-08-08 20:11:25 -04003734 * css_rightmost_descendant - return the rightmost descendant of a css
3735 * @pos: css of interest
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003736 *
Tejun Heo492eb212013-08-08 20:11:25 -04003737 * Return the rightmost descendant of @pos. If there's no descendant, @pos
3738 * is returned. This can be used during pre-order traversal to skip
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003739 * subtree of @pos.
Tejun Heo75501a62013-05-24 10:55:38 +09003740 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003741 * While this function requires cgroup_mutex or RCU read locking, it
3742 * doesn't require the whole traversal to be contained in a single critical
3743 * section. This function will return the correct rightmost descendant as
3744 * long as @pos is accessible.
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003745 */
Tejun Heo492eb212013-08-08 20:11:25 -04003746struct cgroup_subsys_state *
3747css_rightmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003748{
Tejun Heo492eb212013-08-08 20:11:25 -04003749 struct cgroup_subsys_state *last, *tmp;
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003750
Tejun Heo8353da12014-05-13 12:19:23 -04003751 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003752
3753 do {
3754 last = pos;
3755 /* ->prev isn't RCU safe, walk ->next till the end */
3756 pos = NULL;
Tejun Heo492eb212013-08-08 20:11:25 -04003757 css_for_each_child(tmp, last)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003758 pos = tmp;
3759 } while (pos);
3760
3761 return last;
3762}
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003763
Tejun Heo492eb212013-08-08 20:11:25 -04003764static struct cgroup_subsys_state *
3765css_leftmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003766{
Tejun Heo492eb212013-08-08 20:11:25 -04003767 struct cgroup_subsys_state *last;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003768
3769 do {
3770 last = pos;
Tejun Heo492eb212013-08-08 20:11:25 -04003771 pos = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003772 } while (pos);
3773
3774 return last;
3775}
3776
3777/**
Tejun Heo492eb212013-08-08 20:11:25 -04003778 * css_next_descendant_post - find the next descendant for post-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003779 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003780 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003781 *
Tejun Heo492eb212013-08-08 20:11:25 -04003782 * To be used by css_for_each_descendant_post(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003783 * to visit for post-order traversal of @root's descendants. @root is
3784 * included in the iteration and the last node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003785 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003786 * While this function requires cgroup_mutex or RCU read locking, it
3787 * doesn't require the whole traversal to be contained in a single critical
3788 * section. This function will return the correct next descendant as long
3789 * as both @pos and @cgroup are accessible and @pos is a descendant of
3790 * @cgroup.
Tejun Heoc2931b72014-05-16 13:22:51 -04003791 *
3792 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3793 * css which finished ->css_online() is guaranteed to be visible in the
3794 * future iterations and will stay visible until the last reference is put.
3795 * A css which hasn't finished ->css_online() or already finished
3796 * ->css_offline() may show up during traversal. It's each subsystem's
3797 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003798 */
Tejun Heo492eb212013-08-08 20:11:25 -04003799struct cgroup_subsys_state *
3800css_next_descendant_post(struct cgroup_subsys_state *pos,
3801 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003802{
Tejun Heo492eb212013-08-08 20:11:25 -04003803 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003804
Tejun Heo8353da12014-05-13 12:19:23 -04003805 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003806
Tejun Heo58b79a92013-09-06 15:31:08 -04003807 /* if first iteration, visit leftmost descendant which may be @root */
3808 if (!pos)
3809 return css_leftmost_descendant(root);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003810
Tejun Heobd8815a2013-08-08 20:11:27 -04003811 /* if we visited @root, we're done */
3812 if (pos == root)
3813 return NULL;
3814
Tejun Heo574bd9f2012-11-09 09:12:29 -08003815 /* if there's an unvisited sibling, visit its leftmost descendant */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003816 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003817 if (next)
Tejun Heo492eb212013-08-08 20:11:25 -04003818 return css_leftmost_descendant(next);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003819
3820 /* no sibling left, visit parent */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003821 return pos->parent;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003822}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003823
Tejun Heof3d46502014-05-16 13:22:52 -04003824/**
3825 * css_has_online_children - does a css have online children
3826 * @css: the target css
3827 *
3828 * Returns %true if @css has any online children; otherwise, %false. This
3829 * function can be called from any context but the caller is responsible
3830 * for synchronizing against on/offlining as necessary.
3831 */
3832bool css_has_online_children(struct cgroup_subsys_state *css)
Tejun Heocbc125e2014-05-14 09:15:01 -04003833{
Tejun Heof3d46502014-05-16 13:22:52 -04003834 struct cgroup_subsys_state *child;
3835 bool ret = false;
Tejun Heocbc125e2014-05-14 09:15:01 -04003836
3837 rcu_read_lock();
Tejun Heof3d46502014-05-16 13:22:52 -04003838 css_for_each_child(child, css) {
Li Zefan99bae5f2014-06-12 14:31:31 +08003839 if (child->flags & CSS_ONLINE) {
Tejun Heof3d46502014-05-16 13:22:52 -04003840 ret = true;
3841 break;
Tejun Heocbc125e2014-05-14 09:15:01 -04003842 }
3843 }
3844 rcu_read_unlock();
Tejun Heof3d46502014-05-16 13:22:52 -04003845 return ret;
Cliff Wickman31a7df02008-02-07 00:14:42 -08003846}
3847
Tejun Heo0942eee2013-08-08 20:11:26 -04003848/**
Tejun Heoecb9d532015-10-15 16:41:52 -04003849 * css_task_iter_advance_css_set - advance a task itererator to the next css_set
Tejun Heo0942eee2013-08-08 20:11:26 -04003850 * @it: the iterator to advance
3851 *
3852 * Advance @it to the next css_set to walk.
Tejun Heod5158762013-08-08 20:11:26 -04003853 */
Tejun Heoecb9d532015-10-15 16:41:52 -04003854static void css_task_iter_advance_css_set(struct css_task_iter *it)
Tejun Heod5158762013-08-08 20:11:26 -04003855{
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003856 struct list_head *l = it->cset_pos;
Tejun Heod5158762013-08-08 20:11:26 -04003857 struct cgrp_cset_link *link;
3858 struct css_set *cset;
3859
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003860 lockdep_assert_held(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04003861
Tejun Heod5158762013-08-08 20:11:26 -04003862 /* Advance to the next non-empty css_set */
3863 do {
3864 l = l->next;
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003865 if (l == it->cset_head) {
3866 it->cset_pos = NULL;
Tejun Heoecb9d532015-10-15 16:41:52 -04003867 it->task_pos = NULL;
Tejun Heod5158762013-08-08 20:11:26 -04003868 return;
3869 }
Tejun Heo3ebb2b62014-04-23 11:13:15 -04003870
3871 if (it->ss) {
3872 cset = container_of(l, struct css_set,
3873 e_cset_node[it->ss->id]);
3874 } else {
3875 link = list_entry(l, struct cgrp_cset_link, cset_link);
3876 cset = link->cset;
3877 }
Tejun Heo0de09422015-10-15 16:41:49 -04003878 } while (!css_set_populated(cset));
Tejun Heoc7561122014-02-25 10:04:01 -05003879
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003880 it->cset_pos = l;
Tejun Heoc7561122014-02-25 10:04:01 -05003881
3882 if (!list_empty(&cset->tasks))
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003883 it->task_pos = cset->tasks.next;
Tejun Heoc7561122014-02-25 10:04:01 -05003884 else
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003885 it->task_pos = cset->mg_tasks.next;
3886
3887 it->tasks_head = &cset->tasks;
3888 it->mg_tasks_head = &cset->mg_tasks;
Tejun Heoed27b9f2015-10-15 16:41:52 -04003889
3890 /*
3891 * We don't keep css_sets locked across iteration steps and thus
3892 * need to take steps to ensure that iteration can be resumed after
3893 * the lock is re-acquired. Iteration is performed at two levels -
3894 * css_sets and tasks in them.
3895 *
3896 * Once created, a css_set never leaves its cgroup lists, so a
3897 * pinned css_set is guaranteed to stay put and we can resume
3898 * iteration afterwards.
3899 *
3900 * Tasks may leave @cset across iteration steps. This is resolved
3901 * by registering each iterator with the css_set currently being
3902 * walked and making css_set_move_task() advance iterators whose
3903 * next task is leaving.
3904 */
3905 if (it->cur_cset) {
3906 list_del(&it->iters_node);
3907 put_css_set_locked(it->cur_cset);
3908 }
3909 get_css_set(cset);
3910 it->cur_cset = cset;
3911 list_add(&it->iters_node, &cset->task_iters);
Tejun Heod5158762013-08-08 20:11:26 -04003912}
3913
Tejun Heoecb9d532015-10-15 16:41:52 -04003914static void css_task_iter_advance(struct css_task_iter *it)
3915{
3916 struct list_head *l = it->task_pos;
3917
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003918 lockdep_assert_held(&css_set_lock);
Tejun Heoecb9d532015-10-15 16:41:52 -04003919 WARN_ON_ONCE(!l);
3920
3921 /*
3922 * Advance iterator to find next entry. cset->tasks is consumed
3923 * first and then ->mg_tasks. After ->mg_tasks, we move onto the
3924 * next cset.
3925 */
3926 l = l->next;
3927
3928 if (l == it->tasks_head)
3929 l = it->mg_tasks_head->next;
3930
3931 if (l == it->mg_tasks_head)
3932 css_task_iter_advance_css_set(it);
3933 else
3934 it->task_pos = l;
3935}
3936
Tejun Heo0942eee2013-08-08 20:11:26 -04003937/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003938 * css_task_iter_start - initiate task iteration
3939 * @css: the css to walk tasks of
Tejun Heo0942eee2013-08-08 20:11:26 -04003940 * @it: the task iterator to use
3941 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003942 * Initiate iteration through the tasks of @css. The caller can call
3943 * css_task_iter_next() to walk through the tasks until the function
3944 * returns NULL. On completion of iteration, css_task_iter_end() must be
3945 * called.
Tejun Heo0942eee2013-08-08 20:11:26 -04003946 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003947void css_task_iter_start(struct cgroup_subsys_state *css,
3948 struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07003949{
Tejun Heo56fde9e2014-02-13 06:58:38 -05003950 /* no one should try to iterate before mounting cgroups */
3951 WARN_ON_ONCE(!use_task_css_set_links);
Paul Menage817929e2007-10-18 23:39:36 -07003952
Tejun Heoed27b9f2015-10-15 16:41:52 -04003953 memset(it, 0, sizeof(*it));
3954
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003955 spin_lock_bh(&css_set_lock);
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003956
Tejun Heo3ebb2b62014-04-23 11:13:15 -04003957 it->ss = css->ss;
3958
3959 if (it->ss)
3960 it->cset_pos = &css->cgroup->e_csets[css->ss->id];
3961 else
3962 it->cset_pos = &css->cgroup->cset_links;
3963
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003964 it->cset_head = it->cset_pos;
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003965
Tejun Heoecb9d532015-10-15 16:41:52 -04003966 css_task_iter_advance_css_set(it);
Tejun Heoed27b9f2015-10-15 16:41:52 -04003967
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003968 spin_unlock_bh(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07003969}
Paul Menage817929e2007-10-18 23:39:36 -07003970
Tejun Heo0942eee2013-08-08 20:11:26 -04003971/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003972 * css_task_iter_next - return the next task for the iterator
Tejun Heo0942eee2013-08-08 20:11:26 -04003973 * @it: the task iterator being iterated
3974 *
3975 * The "next" function for task iteration. @it should have been
Tejun Heo72ec7022013-08-08 20:11:26 -04003976 * initialized via css_task_iter_start(). Returns NULL when the iteration
3977 * reaches the end.
Tejun Heo0942eee2013-08-08 20:11:26 -04003978 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003979struct task_struct *css_task_iter_next(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07003980{
Tejun Heod5745672015-10-29 11:43:05 +09003981 if (it->cur_task) {
Tejun Heoed27b9f2015-10-15 16:41:52 -04003982 put_task_struct(it->cur_task);
Tejun Heod5745672015-10-29 11:43:05 +09003983 it->cur_task = NULL;
3984 }
Tejun Heoed27b9f2015-10-15 16:41:52 -04003985
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003986 spin_lock_bh(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04003987
Tejun Heod5745672015-10-29 11:43:05 +09003988 if (it->task_pos) {
3989 it->cur_task = list_entry(it->task_pos, struct task_struct,
3990 cg_list);
3991 get_task_struct(it->cur_task);
3992 css_task_iter_advance(it);
3993 }
Tejun Heoed27b9f2015-10-15 16:41:52 -04003994
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003995 spin_unlock_bh(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04003996
3997 return it->cur_task;
Paul Menage817929e2007-10-18 23:39:36 -07003998}
3999
Tejun Heo0942eee2013-08-08 20:11:26 -04004000/**
Tejun Heo72ec7022013-08-08 20:11:26 -04004001 * css_task_iter_end - finish task iteration
Tejun Heo0942eee2013-08-08 20:11:26 -04004002 * @it: the task iterator to finish
4003 *
Tejun Heo72ec7022013-08-08 20:11:26 -04004004 * Finish task iteration started by css_task_iter_start().
Tejun Heo0942eee2013-08-08 20:11:26 -04004005 */
Tejun Heo72ec7022013-08-08 20:11:26 -04004006void css_task_iter_end(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07004007{
Tejun Heoed27b9f2015-10-15 16:41:52 -04004008 if (it->cur_cset) {
Tejun Heof0d9a5f2015-10-15 16:41:53 -04004009 spin_lock_bh(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04004010 list_del(&it->iters_node);
4011 put_css_set_locked(it->cur_cset);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04004012 spin_unlock_bh(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04004013 }
4014
4015 if (it->cur_task)
4016 put_task_struct(it->cur_task);
Tejun Heo8cc99342013-04-07 09:29:50 -07004017}
4018
4019/**
4020 * cgroup_trasnsfer_tasks - move tasks from one cgroup to another
4021 * @to: cgroup to which the tasks will be moved
4022 * @from: cgroup in which the tasks currently reside
Tejun Heoeaf797a2014-02-25 10:04:03 -05004023 *
4024 * Locking rules between cgroup_post_fork() and the migration path
4025 * guarantee that, if a task is forking while being migrated, the new child
4026 * is guaranteed to be either visible in the source cgroup after the
4027 * parent's migration is complete or put into the target cgroup. No task
4028 * can slip out of migration through forking.
Tejun Heo8cc99342013-04-07 09:29:50 -07004029 */
4030int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from)
4031{
Tejun Heo952aaa12014-02-25 10:04:03 -05004032 LIST_HEAD(preloaded_csets);
4033 struct cgrp_cset_link *link;
Tejun Heoe406d1c2014-02-13 06:58:39 -05004034 struct css_task_iter it;
4035 struct task_struct *task;
Tejun Heo952aaa12014-02-25 10:04:03 -05004036 int ret;
Tejun Heoe406d1c2014-02-13 06:58:39 -05004037
Tejun Heo952aaa12014-02-25 10:04:03 -05004038 mutex_lock(&cgroup_mutex);
4039
4040 /* all tasks in @from are being moved, all csets are source */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04004041 spin_lock_bh(&css_set_lock);
Tejun Heo952aaa12014-02-25 10:04:03 -05004042 list_for_each_entry(link, &from->cset_links, cset_link)
4043 cgroup_migrate_add_src(link->cset, to, &preloaded_csets);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04004044 spin_unlock_bh(&css_set_lock);
Tejun Heo952aaa12014-02-25 10:04:03 -05004045
4046 ret = cgroup_migrate_prepare_dst(to, &preloaded_csets);
4047 if (ret)
4048 goto out_err;
4049
4050 /*
Rami Rosen2cfa2b12016-01-09 23:33:06 +02004051 * Migrate tasks one-by-one until @from is empty. This fails iff
Tejun Heo952aaa12014-02-25 10:04:03 -05004052 * ->can_attach() fails.
4053 */
Tejun Heoe406d1c2014-02-13 06:58:39 -05004054 do {
Tejun Heo9d800df2014-05-14 09:15:00 -04004055 css_task_iter_start(&from->self, &it);
Tejun Heoe406d1c2014-02-13 06:58:39 -05004056 task = css_task_iter_next(&it);
4057 if (task)
4058 get_task_struct(task);
4059 css_task_iter_end(&it);
4060
4061 if (task) {
Tejun Heo9af2ec42015-09-11 15:00:20 -04004062 ret = cgroup_migrate(task, false, to);
Tejun Heoe406d1c2014-02-13 06:58:39 -05004063 put_task_struct(task);
4064 }
4065 } while (task && !ret);
Tejun Heo952aaa12014-02-25 10:04:03 -05004066out_err:
4067 cgroup_migrate_finish(&preloaded_csets);
4068 mutex_unlock(&cgroup_mutex);
Tejun Heoe406d1c2014-02-13 06:58:39 -05004069 return ret;
Tejun Heo8cc99342013-04-07 09:29:50 -07004070}
4071
Paul Menage817929e2007-10-18 23:39:36 -07004072/*
Ben Blum102a7752009-09-23 15:56:26 -07004073 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07004074 *
4075 * Reading this file can return large amounts of data if a cgroup has
4076 * *lots* of attached tasks. So it may need several calls to read(),
4077 * but we cannot guarantee that the information we produce is correct
4078 * unless we produce it entirely atomically.
4079 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07004080 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07004081
Li Zefan24528252012-01-20 11:58:43 +08004082/* which pidlist file are we talking about? */
4083enum cgroup_filetype {
4084 CGROUP_FILE_PROCS,
4085 CGROUP_FILE_TASKS,
4086};
4087
4088/*
4089 * A pidlist is a list of pids that virtually represents the contents of one
4090 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
4091 * a pair (one each for procs, tasks) for each pid namespace that's relevant
4092 * to the cgroup.
4093 */
4094struct cgroup_pidlist {
4095 /*
4096 * used to find which pidlist is wanted. doesn't change as long as
4097 * this particular list stays in the list.
4098 */
4099 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
4100 /* array of xids */
4101 pid_t *list;
4102 /* how many elements the above list has */
4103 int length;
Li Zefan24528252012-01-20 11:58:43 +08004104 /* each of these stored in a list by its cgroup */
4105 struct list_head links;
4106 /* pointer to the cgroup we belong to, for list removal purposes */
4107 struct cgroup *owner;
Tejun Heob1a21362013-11-29 10:42:58 -05004108 /* for delayed destruction */
4109 struct delayed_work destroy_dwork;
Li Zefan24528252012-01-20 11:58:43 +08004110};
4111
Paul Menagebbcb81d2007-10-18 23:39:32 -07004112/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07004113 * The following two functions "fix" the issue where there are more pids
4114 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
4115 * TODO: replace with a kernel-wide solution to this problem
4116 */
4117#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
4118static void *pidlist_allocate(int count)
4119{
4120 if (PIDLIST_TOO_LARGE(count))
4121 return vmalloc(count * sizeof(pid_t));
4122 else
4123 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
4124}
Tejun Heob1a21362013-11-29 10:42:58 -05004125
Ben Blumd1d9fd32009-09-23 15:56:28 -07004126static void pidlist_free(void *p)
4127{
Bandan Das58794512015-03-02 17:51:10 -05004128 kvfree(p);
Ben Blumd1d9fd32009-09-23 15:56:28 -07004129}
Ben Blumd1d9fd32009-09-23 15:56:28 -07004130
4131/*
Tejun Heob1a21362013-11-29 10:42:58 -05004132 * Used to destroy all pidlists lingering waiting for destroy timer. None
4133 * should be left afterwards.
4134 */
4135static void cgroup_pidlist_destroy_all(struct cgroup *cgrp)
4136{
4137 struct cgroup_pidlist *l, *tmp_l;
4138
4139 mutex_lock(&cgrp->pidlist_mutex);
4140 list_for_each_entry_safe(l, tmp_l, &cgrp->pidlists, links)
4141 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, 0);
4142 mutex_unlock(&cgrp->pidlist_mutex);
4143
4144 flush_workqueue(cgroup_pidlist_destroy_wq);
4145 BUG_ON(!list_empty(&cgrp->pidlists));
4146}
4147
4148static void cgroup_pidlist_destroy_work_fn(struct work_struct *work)
4149{
4150 struct delayed_work *dwork = to_delayed_work(work);
4151 struct cgroup_pidlist *l = container_of(dwork, struct cgroup_pidlist,
4152 destroy_dwork);
4153 struct cgroup_pidlist *tofree = NULL;
4154
4155 mutex_lock(&l->owner->pidlist_mutex);
Tejun Heob1a21362013-11-29 10:42:58 -05004156
4157 /*
Tejun Heo04502362013-11-29 10:42:59 -05004158 * Destroy iff we didn't get queued again. The state won't change
4159 * as destroy_dwork can only be queued while locked.
Tejun Heob1a21362013-11-29 10:42:58 -05004160 */
Tejun Heo04502362013-11-29 10:42:59 -05004161 if (!delayed_work_pending(dwork)) {
Tejun Heob1a21362013-11-29 10:42:58 -05004162 list_del(&l->links);
4163 pidlist_free(l->list);
4164 put_pid_ns(l->key.ns);
4165 tofree = l;
4166 }
4167
Tejun Heob1a21362013-11-29 10:42:58 -05004168 mutex_unlock(&l->owner->pidlist_mutex);
4169 kfree(tofree);
4170}
4171
4172/*
Ben Blum102a7752009-09-23 15:56:26 -07004173 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
Li Zefan6ee211a2013-03-12 15:36:00 -07004174 * Returns the number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07004175 */
Li Zefan6ee211a2013-03-12 15:36:00 -07004176static int pidlist_uniq(pid_t *list, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07004177{
Ben Blum102a7752009-09-23 15:56:26 -07004178 int src, dest = 1;
Ben Blum102a7752009-09-23 15:56:26 -07004179
4180 /*
4181 * we presume the 0th element is unique, so i starts at 1. trivial
4182 * edge cases first; no work needs to be done for either
4183 */
4184 if (length == 0 || length == 1)
4185 return length;
4186 /* src and dest walk down the list; dest counts unique elements */
4187 for (src = 1; src < length; src++) {
4188 /* find next unique element */
4189 while (list[src] == list[src-1]) {
4190 src++;
4191 if (src == length)
4192 goto after;
4193 }
4194 /* dest always points to where the next unique element goes */
4195 list[dest] = list[src];
4196 dest++;
4197 }
4198after:
Ben Blum102a7752009-09-23 15:56:26 -07004199 return dest;
4200}
4201
Tejun Heoafb2bc12013-11-29 10:42:59 -05004202/*
4203 * The two pid files - task and cgroup.procs - guaranteed that the result
4204 * is sorted, which forced this whole pidlist fiasco. As pid order is
4205 * different per namespace, each namespace needs differently sorted list,
4206 * making it impossible to use, for example, single rbtree of member tasks
4207 * sorted by task pointer. As pidlists can be fairly large, allocating one
4208 * per open file is dangerous, so cgroup had to implement shared pool of
4209 * pidlists keyed by cgroup and namespace.
4210 *
4211 * All this extra complexity was caused by the original implementation
4212 * committing to an entirely unnecessary property. In the long term, we
Tejun Heoaa6ec292014-07-09 10:08:08 -04004213 * want to do away with it. Explicitly scramble sort order if on the
4214 * default hierarchy so that no such expectation exists in the new
4215 * interface.
Tejun Heoafb2bc12013-11-29 10:42:59 -05004216 *
4217 * Scrambling is done by swapping every two consecutive bits, which is
4218 * non-identity one-to-one mapping which disturbs sort order sufficiently.
4219 */
4220static pid_t pid_fry(pid_t pid)
4221{
4222 unsigned a = pid & 0x55555555;
4223 unsigned b = pid & 0xAAAAAAAA;
4224
4225 return (a << 1) | (b >> 1);
4226}
4227
4228static pid_t cgroup_pid_fry(struct cgroup *cgrp, pid_t pid)
4229{
Tejun Heoaa6ec292014-07-09 10:08:08 -04004230 if (cgroup_on_dfl(cgrp))
Tejun Heoafb2bc12013-11-29 10:42:59 -05004231 return pid_fry(pid);
4232 else
4233 return pid;
4234}
4235
Ben Blum102a7752009-09-23 15:56:26 -07004236static int cmppid(const void *a, const void *b)
4237{
4238 return *(pid_t *)a - *(pid_t *)b;
4239}
4240
Tejun Heoafb2bc12013-11-29 10:42:59 -05004241static int fried_cmppid(const void *a, const void *b)
4242{
4243 return pid_fry(*(pid_t *)a) - pid_fry(*(pid_t *)b);
4244}
4245
Ben Blum72a8cb32009-09-23 15:56:27 -07004246static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
4247 enum cgroup_filetype type)
4248{
4249 struct cgroup_pidlist *l;
4250 /* don't need task_nsproxy() if we're looking at ourself */
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08004251 struct pid_namespace *ns = task_active_pid_ns(current);
Li Zefanb70cc5f2010-03-10 15:22:12 -08004252
Tejun Heoe6b81712013-11-29 10:42:59 -05004253 lockdep_assert_held(&cgrp->pidlist_mutex);
4254
4255 list_for_each_entry(l, &cgrp->pidlists, links)
4256 if (l->key.type == type && l->key.ns == ns)
Ben Blum72a8cb32009-09-23 15:56:27 -07004257 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05004258 return NULL;
4259}
4260
Ben Blum72a8cb32009-09-23 15:56:27 -07004261/*
4262 * find the appropriate pidlist for our purpose (given procs vs tasks)
4263 * returns with the lock on that pidlist already held, and takes care
4264 * of the use count, or returns NULL with no locks held if we're out of
4265 * memory.
4266 */
Tejun Heoe6b81712013-11-29 10:42:59 -05004267static struct cgroup_pidlist *cgroup_pidlist_find_create(struct cgroup *cgrp,
4268 enum cgroup_filetype type)
Ben Blum72a8cb32009-09-23 15:56:27 -07004269{
4270 struct cgroup_pidlist *l;
Ben Blum72a8cb32009-09-23 15:56:27 -07004271
Tejun Heoe6b81712013-11-29 10:42:59 -05004272 lockdep_assert_held(&cgrp->pidlist_mutex);
4273
4274 l = cgroup_pidlist_find(cgrp, type);
4275 if (l)
4276 return l;
4277
Ben Blum72a8cb32009-09-23 15:56:27 -07004278 /* entry not found; create a new one */
Tejun Heof4f4be22013-06-12 21:04:51 -07004279 l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
Tejun Heoe6b81712013-11-29 10:42:59 -05004280 if (!l)
Ben Blum72a8cb32009-09-23 15:56:27 -07004281 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05004282
Tejun Heob1a21362013-11-29 10:42:58 -05004283 INIT_DELAYED_WORK(&l->destroy_dwork, cgroup_pidlist_destroy_work_fn);
Ben Blum72a8cb32009-09-23 15:56:27 -07004284 l->key.type = type;
Tejun Heoe6b81712013-11-29 10:42:59 -05004285 /* don't need task_nsproxy() if we're looking at ourself */
4286 l->key.ns = get_pid_ns(task_active_pid_ns(current));
Ben Blum72a8cb32009-09-23 15:56:27 -07004287 l->owner = cgrp;
4288 list_add(&l->links, &cgrp->pidlists);
Ben Blum72a8cb32009-09-23 15:56:27 -07004289 return l;
4290}
4291
4292/*
Ben Blum102a7752009-09-23 15:56:26 -07004293 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
4294 */
Ben Blum72a8cb32009-09-23 15:56:27 -07004295static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
4296 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07004297{
4298 pid_t *array;
4299 int length;
4300 int pid, n = 0; /* used for populating the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04004301 struct css_task_iter it;
Paul Menage817929e2007-10-18 23:39:36 -07004302 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07004303 struct cgroup_pidlist *l;
4304
Tejun Heo4bac00d2013-11-29 10:42:59 -05004305 lockdep_assert_held(&cgrp->pidlist_mutex);
4306
Ben Blum102a7752009-09-23 15:56:26 -07004307 /*
4308 * If cgroup gets more users after we read count, we won't have
4309 * enough space - tough. This race is indistinguishable to the
4310 * caller from the case that the additional cgroup users didn't
4311 * show up until sometime later on.
4312 */
4313 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07004314 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07004315 if (!array)
4316 return -ENOMEM;
4317 /* now, populate the array */
Tejun Heo9d800df2014-05-14 09:15:00 -04004318 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04004319 while ((tsk = css_task_iter_next(&it))) {
Ben Blum102a7752009-09-23 15:56:26 -07004320 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07004321 break;
Ben Blum102a7752009-09-23 15:56:26 -07004322 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07004323 if (type == CGROUP_FILE_PROCS)
4324 pid = task_tgid_vnr(tsk);
4325 else
4326 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07004327 if (pid > 0) /* make sure to only use valid results */
4328 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07004329 }
Tejun Heo72ec7022013-08-08 20:11:26 -04004330 css_task_iter_end(&it);
Ben Blum102a7752009-09-23 15:56:26 -07004331 length = n;
4332 /* now sort & (if procs) strip out duplicates */
Tejun Heoaa6ec292014-07-09 10:08:08 -04004333 if (cgroup_on_dfl(cgrp))
Tejun Heoafb2bc12013-11-29 10:42:59 -05004334 sort(array, length, sizeof(pid_t), fried_cmppid, NULL);
4335 else
4336 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07004337 if (type == CGROUP_FILE_PROCS)
Li Zefan6ee211a2013-03-12 15:36:00 -07004338 length = pidlist_uniq(array, length);
Tejun Heoe6b81712013-11-29 10:42:59 -05004339
Tejun Heoe6b81712013-11-29 10:42:59 -05004340 l = cgroup_pidlist_find_create(cgrp, type);
Ben Blum72a8cb32009-09-23 15:56:27 -07004341 if (!l) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07004342 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07004343 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07004344 }
Tejun Heoe6b81712013-11-29 10:42:59 -05004345
4346 /* store array, freeing old if necessary */
Ben Blumd1d9fd32009-09-23 15:56:28 -07004347 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07004348 l->list = array;
4349 l->length = length;
Ben Blum72a8cb32009-09-23 15:56:27 -07004350 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07004351 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004352}
4353
Balbir Singh846c7bb2007-10-18 23:39:44 -07004354/**
Li Zefana043e3b2008-02-23 15:24:09 -08004355 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07004356 * @stats: cgroupstats to fill information into
4357 * @dentry: A dentry entry belonging to the cgroup for which stats have
4358 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08004359 *
4360 * Build and fill cgroupstats so that taskstats can export it to user
4361 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07004362 */
4363int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
4364{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004365 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07004366 struct cgroup *cgrp;
Tejun Heo72ec7022013-08-08 20:11:26 -04004367 struct css_task_iter it;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004368 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08004369
Tejun Heo2bd59d42014-02-11 11:52:49 -05004370 /* it should be kernfs_node belonging to cgroupfs and is a directory */
4371 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
4372 kernfs_type(kn) != KERNFS_DIR)
4373 return -EINVAL;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004374
Li Zefanbad34662014-02-14 16:54:28 +08004375 mutex_lock(&cgroup_mutex);
4376
Tejun Heo2bd59d42014-02-11 11:52:49 -05004377 /*
4378 * We aren't being called from kernfs and there's no guarantee on
Tejun Heoec903c02014-05-13 12:11:01 -04004379 * @kn->priv's validity. For this and css_tryget_online_from_dir(),
Tejun Heo2bd59d42014-02-11 11:52:49 -05004380 * @kn->priv is RCU safe. Let's do the RCU dancing.
4381 */
4382 rcu_read_lock();
4383 cgrp = rcu_dereference(kn->priv);
Li Zefanbad34662014-02-14 16:54:28 +08004384 if (!cgrp || cgroup_is_dead(cgrp)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05004385 rcu_read_unlock();
Li Zefanbad34662014-02-14 16:54:28 +08004386 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004387 return -ENOENT;
4388 }
Li Zefanbad34662014-02-14 16:54:28 +08004389 rcu_read_unlock();
Balbir Singh846c7bb2007-10-18 23:39:44 -07004390
Tejun Heo9d800df2014-05-14 09:15:00 -04004391 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04004392 while ((tsk = css_task_iter_next(&it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07004393 switch (tsk->state) {
4394 case TASK_RUNNING:
4395 stats->nr_running++;
4396 break;
4397 case TASK_INTERRUPTIBLE:
4398 stats->nr_sleeping++;
4399 break;
4400 case TASK_UNINTERRUPTIBLE:
4401 stats->nr_uninterruptible++;
4402 break;
4403 case TASK_STOPPED:
4404 stats->nr_stopped++;
4405 break;
4406 default:
4407 if (delayacct_is_task_waiting_on_io(tsk))
4408 stats->nr_io_wait++;
4409 break;
4410 }
4411 }
Tejun Heo72ec7022013-08-08 20:11:26 -04004412 css_task_iter_end(&it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07004413
Li Zefanbad34662014-02-14 16:54:28 +08004414 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004415 return 0;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004416}
4417
Paul Menage8f3ff202009-09-23 15:56:25 -07004418
Paul Menagecc31edc2008-10-18 20:28:04 -07004419/*
Ben Blum102a7752009-09-23 15:56:26 -07004420 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07004421 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07004422 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07004423 */
4424
Ben Blum102a7752009-09-23 15:56:26 -07004425static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07004426{
4427 /*
4428 * Initially we receive a position value that corresponds to
4429 * one more than the last pid shown (or 0 on the first call or
4430 * after a seek to the start). Use a binary-search to find the
4431 * next pid to display, if any
4432 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05004433 struct kernfs_open_file *of = s->private;
Tejun Heo7da11272013-12-05 12:28:04 -05004434 struct cgroup *cgrp = seq_css(s)->cgroup;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004435 struct cgroup_pidlist *l;
Tejun Heo7da11272013-12-05 12:28:04 -05004436 enum cgroup_filetype type = seq_cft(s)->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07004437 int index = 0, pid = *pos;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004438 int *iter, ret;
Paul Menagecc31edc2008-10-18 20:28:04 -07004439
Tejun Heo4bac00d2013-11-29 10:42:59 -05004440 mutex_lock(&cgrp->pidlist_mutex);
4441
4442 /*
Tejun Heo5d224442013-12-05 12:28:04 -05004443 * !NULL @of->priv indicates that this isn't the first start()
Tejun Heo4bac00d2013-11-29 10:42:59 -05004444 * after open. If the matching pidlist is around, we can use that.
Tejun Heo5d224442013-12-05 12:28:04 -05004445 * Look for it. Note that @of->priv can't be used directly. It
Tejun Heo4bac00d2013-11-29 10:42:59 -05004446 * could already have been destroyed.
4447 */
Tejun Heo5d224442013-12-05 12:28:04 -05004448 if (of->priv)
4449 of->priv = cgroup_pidlist_find(cgrp, type);
Tejun Heo4bac00d2013-11-29 10:42:59 -05004450
4451 /*
4452 * Either this is the first start() after open or the matching
4453 * pidlist has been destroyed inbetween. Create a new one.
4454 */
Tejun Heo5d224442013-12-05 12:28:04 -05004455 if (!of->priv) {
4456 ret = pidlist_array_load(cgrp, type,
4457 (struct cgroup_pidlist **)&of->priv);
Tejun Heo4bac00d2013-11-29 10:42:59 -05004458 if (ret)
4459 return ERR_PTR(ret);
4460 }
Tejun Heo5d224442013-12-05 12:28:04 -05004461 l = of->priv;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004462
Paul Menagecc31edc2008-10-18 20:28:04 -07004463 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07004464 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11004465
Paul Menagecc31edc2008-10-18 20:28:04 -07004466 while (index < end) {
4467 int mid = (index + end) / 2;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004468 if (cgroup_pid_fry(cgrp, l->list[mid]) == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07004469 index = mid;
4470 break;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004471 } else if (cgroup_pid_fry(cgrp, l->list[mid]) <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07004472 index = mid + 1;
4473 else
4474 end = mid;
4475 }
4476 }
4477 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07004478 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07004479 return NULL;
4480 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07004481 iter = l->list + index;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004482 *pos = cgroup_pid_fry(cgrp, *iter);
Paul Menagecc31edc2008-10-18 20:28:04 -07004483 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004484}
4485
Ben Blum102a7752009-09-23 15:56:26 -07004486static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07004487{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004488 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05004489 struct cgroup_pidlist *l = of->priv;
Tejun Heo62236852013-11-29 10:42:58 -05004490
Tejun Heo5d224442013-12-05 12:28:04 -05004491 if (l)
4492 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork,
Tejun Heo04502362013-11-29 10:42:59 -05004493 CGROUP_PIDLIST_DESTROY_DELAY);
Tejun Heo7da11272013-12-05 12:28:04 -05004494 mutex_unlock(&seq_css(s)->cgroup->pidlist_mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07004495}
4496
Ben Blum102a7752009-09-23 15:56:26 -07004497static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07004498{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004499 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05004500 struct cgroup_pidlist *l = of->priv;
Ben Blum102a7752009-09-23 15:56:26 -07004501 pid_t *p = v;
4502 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07004503 /*
4504 * Advance to the next pid in the array. If this goes off the
4505 * end, we're done
4506 */
4507 p++;
4508 if (p >= end) {
4509 return NULL;
4510 } else {
Tejun Heo7da11272013-12-05 12:28:04 -05004511 *pos = cgroup_pid_fry(seq_css(s)->cgroup, *p);
Paul Menagecc31edc2008-10-18 20:28:04 -07004512 return p;
4513 }
4514}
4515
Ben Blum102a7752009-09-23 15:56:26 -07004516static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07004517{
Joe Perches94ff2122015-04-15 16:18:20 -07004518 seq_printf(s, "%d\n", *(int *)v);
4519
4520 return 0;
Paul Menagecc31edc2008-10-18 20:28:04 -07004521}
4522
Tejun Heo182446d2013-08-08 20:11:24 -04004523static u64 cgroup_read_notify_on_release(struct cgroup_subsys_state *css,
4524 struct cftype *cft)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004525{
Tejun Heo182446d2013-08-08 20:11:24 -04004526 return notify_on_release(css->cgroup);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004527}
4528
Tejun Heo182446d2013-08-08 20:11:24 -04004529static int cgroup_write_notify_on_release(struct cgroup_subsys_state *css,
4530 struct cftype *cft, u64 val)
Paul Menage6379c102008-07-25 01:47:01 -07004531{
Paul Menage6379c102008-07-25 01:47:01 -07004532 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04004533 set_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004534 else
Tejun Heo182446d2013-08-08 20:11:24 -04004535 clear_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004536 return 0;
4537}
4538
Tejun Heo182446d2013-08-08 20:11:24 -04004539static u64 cgroup_clone_children_read(struct cgroup_subsys_state *css,
4540 struct cftype *cft)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004541{
Tejun Heo182446d2013-08-08 20:11:24 -04004542 return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004543}
4544
Tejun Heo182446d2013-08-08 20:11:24 -04004545static int cgroup_clone_children_write(struct cgroup_subsys_state *css,
4546 struct cftype *cft, u64 val)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004547{
4548 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04004549 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004550 else
Tejun Heo182446d2013-08-08 20:11:24 -04004551 clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004552 return 0;
4553}
4554
Tejun Heoa14c6872014-07-15 11:05:09 -04004555/* cgroup core interface files for the default hierarchy */
4556static struct cftype cgroup_dfl_base_files[] = {
4557 {
4558 .name = "cgroup.procs",
Tejun Heo6f60ead2015-09-18 17:54:23 -04004559 .file_offset = offsetof(struct cgroup, procs_file),
Tejun Heoa14c6872014-07-15 11:05:09 -04004560 .seq_start = cgroup_pidlist_start,
4561 .seq_next = cgroup_pidlist_next,
4562 .seq_stop = cgroup_pidlist_stop,
4563 .seq_show = cgroup_pidlist_show,
4564 .private = CGROUP_FILE_PROCS,
4565 .write = cgroup_procs_write,
Tejun Heoa14c6872014-07-15 11:05:09 -04004566 },
4567 {
4568 .name = "cgroup.controllers",
4569 .flags = CFTYPE_ONLY_ON_ROOT,
4570 .seq_show = cgroup_root_controllers_show,
4571 },
4572 {
4573 .name = "cgroup.controllers",
4574 .flags = CFTYPE_NOT_ON_ROOT,
4575 .seq_show = cgroup_controllers_show,
4576 },
4577 {
4578 .name = "cgroup.subtree_control",
4579 .seq_show = cgroup_subtree_control_show,
4580 .write = cgroup_subtree_control_write,
4581 },
4582 {
Tejun Heo4a07c222015-09-18 17:54:22 -04004583 .name = "cgroup.events",
Tejun Heoa14c6872014-07-15 11:05:09 -04004584 .flags = CFTYPE_NOT_ON_ROOT,
Tejun Heo6f60ead2015-09-18 17:54:23 -04004585 .file_offset = offsetof(struct cgroup, events_file),
Tejun Heo4a07c222015-09-18 17:54:22 -04004586 .seq_show = cgroup_events_show,
Tejun Heoa14c6872014-07-15 11:05:09 -04004587 },
4588 { } /* terminate */
4589};
4590
4591/* cgroup core interface files for the legacy hierarchies */
4592static struct cftype cgroup_legacy_base_files[] = {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004593 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07004594 .name = "cgroup.procs",
Tejun Heo6612f052013-12-05 12:28:04 -05004595 .seq_start = cgroup_pidlist_start,
4596 .seq_next = cgroup_pidlist_next,
4597 .seq_stop = cgroup_pidlist_stop,
4598 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004599 .private = CGROUP_FILE_PROCS,
Tejun Heoacbef752014-05-13 12:16:22 -04004600 .write = cgroup_procs_write,
Ben Blum102a7752009-09-23 15:56:26 -07004601 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07004602 {
Daniel Lezcano97978e62010-10-27 15:33:35 -07004603 .name = "cgroup.clone_children",
4604 .read_u64 = cgroup_clone_children_read,
4605 .write_u64 = cgroup_clone_children_write,
4606 },
Tejun Heo6e6ff252012-04-01 12:09:55 -07004607 {
Tejun Heo873fe092013-04-14 20:15:26 -07004608 .name = "cgroup.sane_behavior",
4609 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004610 .seq_show = cgroup_sane_behavior_show,
Tejun Heo873fe092013-04-14 20:15:26 -07004611 },
Tejun Heof8f22e52014-04-23 11:13:16 -04004612 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07004613 .name = "tasks",
Tejun Heo6612f052013-12-05 12:28:04 -05004614 .seq_start = cgroup_pidlist_start,
4615 .seq_next = cgroup_pidlist_next,
4616 .seq_stop = cgroup_pidlist_stop,
4617 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004618 .private = CGROUP_FILE_TASKS,
Tejun Heoacbef752014-05-13 12:16:22 -04004619 .write = cgroup_tasks_write,
Tejun Heod5c56ce2013-06-03 19:14:34 -07004620 },
4621 {
4622 .name = "notify_on_release",
Tejun Heod5c56ce2013-06-03 19:14:34 -07004623 .read_u64 = cgroup_read_notify_on_release,
4624 .write_u64 = cgroup_write_notify_on_release,
4625 },
Tejun Heo873fe092013-04-14 20:15:26 -07004626 {
Tejun Heo6e6ff252012-04-01 12:09:55 -07004627 .name = "release_agent",
Tejun Heoa14c6872014-07-15 11:05:09 -04004628 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004629 .seq_show = cgroup_release_agent_show,
Tejun Heo451af502014-05-13 12:16:21 -04004630 .write = cgroup_release_agent_write,
Tejun Heo5f469902014-02-11 11:52:48 -05004631 .max_write_len = PATH_MAX - 1,
Tejun Heo6e6ff252012-04-01 12:09:55 -07004632 },
Tejun Heodb0416b2012-04-01 12:09:55 -07004633 { } /* terminate */
Paul Menagebbcb81d2007-10-18 23:39:32 -07004634};
4635
Tejun Heo0c21ead2013-08-13 20:22:51 -04004636/*
4637 * css destruction is four-stage process.
4638 *
4639 * 1. Destruction starts. Killing of the percpu_ref is initiated.
4640 * Implemented in kill_css().
4641 *
4642 * 2. When the percpu_ref is confirmed to be visible as killed on all CPUs
Tejun Heoec903c02014-05-13 12:11:01 -04004643 * and thus css_tryget_online() is guaranteed to fail, the css can be
4644 * offlined by invoking offline_css(). After offlining, the base ref is
4645 * put. Implemented in css_killed_work_fn().
Tejun Heo0c21ead2013-08-13 20:22:51 -04004646 *
4647 * 3. When the percpu_ref reaches zero, the only possible remaining
4648 * accessors are inside RCU read sections. css_release() schedules the
4649 * RCU callback.
4650 *
4651 * 4. After the grace period, the css can be freed. Implemented in
4652 * css_free_work_fn().
4653 *
4654 * It is actually hairier because both step 2 and 4 require process context
4655 * and thus involve punting to css->destroy_work adding two additional
4656 * steps to the already complex sequence.
4657 */
Tejun Heo35ef10d2013-08-13 11:01:54 -04004658static void css_free_work_fn(struct work_struct *work)
Tejun Heo48ddbe12012-04-01 12:09:56 -07004659{
4660 struct cgroup_subsys_state *css =
Tejun Heo35ef10d2013-08-13 11:01:54 -04004661 container_of(work, struct cgroup_subsys_state, destroy_work);
Vladimir Davydov01e58652015-02-12 14:59:26 -08004662 struct cgroup_subsys *ss = css->ss;
Tejun Heo0c21ead2013-08-13 20:22:51 -04004663 struct cgroup *cgrp = css->cgroup;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004664
Tejun Heo9a1049d2014-06-28 08:10:14 -04004665 percpu_ref_exit(&css->refcnt);
4666
Vladimir Davydov01e58652015-02-12 14:59:26 -08004667 if (ss) {
Tejun Heo9d755d32014-05-14 09:15:02 -04004668 /* css free path */
Tejun Heo8bb5ef72016-01-21 15:32:15 -05004669 struct cgroup_subsys_state *parent = css->parent;
Vladimir Davydov01e58652015-02-12 14:59:26 -08004670 int id = css->id;
4671
Vladimir Davydov01e58652015-02-12 14:59:26 -08004672 ss->css_free(css);
4673 cgroup_idr_remove(&ss->css_idr, id);
Tejun Heo9d755d32014-05-14 09:15:02 -04004674 cgroup_put(cgrp);
Tejun Heo8bb5ef72016-01-21 15:32:15 -05004675
4676 if (parent)
4677 css_put(parent);
Tejun Heo9d755d32014-05-14 09:15:02 -04004678 } else {
4679 /* cgroup free path */
4680 atomic_dec(&cgrp->root->nr_cgrps);
4681 cgroup_pidlist_destroy_all(cgrp);
Zefan Li971ff492014-09-18 16:06:19 +08004682 cancel_work_sync(&cgrp->release_agent_work);
Tejun Heo9d755d32014-05-14 09:15:02 -04004683
Tejun Heod51f39b2014-05-16 13:22:48 -04004684 if (cgroup_parent(cgrp)) {
Tejun Heo9d755d32014-05-14 09:15:02 -04004685 /*
4686 * We get a ref to the parent, and put the ref when
4687 * this cgroup is being freed, so it's guaranteed
4688 * that the parent won't be destroyed before its
4689 * children.
4690 */
Tejun Heod51f39b2014-05-16 13:22:48 -04004691 cgroup_put(cgroup_parent(cgrp));
Tejun Heo9d755d32014-05-14 09:15:02 -04004692 kernfs_put(cgrp->kn);
4693 kfree(cgrp);
4694 } else {
4695 /*
4696 * This is root cgroup's refcnt reaching zero,
4697 * which indicates that the root should be
4698 * released.
4699 */
4700 cgroup_destroy_root(cgrp->root);
4701 }
4702 }
Tejun Heo0c21ead2013-08-13 20:22:51 -04004703}
4704
4705static void css_free_rcu_fn(struct rcu_head *rcu_head)
4706{
4707 struct cgroup_subsys_state *css =
4708 container_of(rcu_head, struct cgroup_subsys_state, rcu_head);
4709
Tejun Heo0c21ead2013-08-13 20:22:51 -04004710 INIT_WORK(&css->destroy_work, css_free_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05004711 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004712}
4713
Tejun Heo25e15d82014-05-14 09:15:02 -04004714static void css_release_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004715{
4716 struct cgroup_subsys_state *css =
Tejun Heo25e15d82014-05-14 09:15:02 -04004717 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo15a4c832014-05-04 15:09:14 -04004718 struct cgroup_subsys *ss = css->ss;
Tejun Heo9d755d32014-05-14 09:15:02 -04004719 struct cgroup *cgrp = css->cgroup;
Tejun Heod3daf282013-06-13 19:39:16 -07004720
Tejun Heo1fed1b22014-05-16 13:22:49 -04004721 mutex_lock(&cgroup_mutex);
4722
Tejun Heode3f0342014-05-16 13:22:49 -04004723 css->flags |= CSS_RELEASED;
Tejun Heo1fed1b22014-05-16 13:22:49 -04004724 list_del_rcu(&css->sibling);
4725
Tejun Heo9d755d32014-05-14 09:15:02 -04004726 if (ss) {
4727 /* css release path */
Vladimir Davydov01e58652015-02-12 14:59:26 -08004728 cgroup_idr_replace(&ss->css_idr, NULL, css->id);
Tejun Heo7d172cc2014-11-18 02:49:51 -05004729 if (ss->css_released)
4730 ss->css_released(css);
Tejun Heo9d755d32014-05-14 09:15:02 -04004731 } else {
4732 /* cgroup release path */
Tejun Heo9d755d32014-05-14 09:15:02 -04004733 cgroup_idr_remove(&cgrp->root->cgroup_idr, cgrp->id);
4734 cgrp->id = -1;
Li Zefana4189482014-09-04 14:43:07 +08004735
4736 /*
4737 * There are two control paths which try to determine
4738 * cgroup from dentry without going through kernfs -
4739 * cgroupstats_build() and css_tryget_online_from_dir().
4740 * Those are supported by RCU protecting clearing of
4741 * cgrp->kn->priv backpointer.
4742 */
Tejun Heo6cd0f5b2016-03-03 09:57:58 -05004743 if (cgrp->kn)
4744 RCU_INIT_POINTER(*(void __rcu __force **)&cgrp->kn->priv,
4745 NULL);
Tejun Heo9d755d32014-05-14 09:15:02 -04004746 }
Tejun Heo15a4c832014-05-04 15:09:14 -04004747
Tejun Heo1fed1b22014-05-16 13:22:49 -04004748 mutex_unlock(&cgroup_mutex);
4749
Tejun Heo0c21ead2013-08-13 20:22:51 -04004750 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004751}
4752
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004753static void css_release(struct percpu_ref *ref)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004754{
4755 struct cgroup_subsys_state *css =
4756 container_of(ref, struct cgroup_subsys_state, refcnt);
4757
Tejun Heo25e15d82014-05-14 09:15:02 -04004758 INIT_WORK(&css->destroy_work, css_release_work_fn);
4759 queue_work(cgroup_destroy_wq, &css->destroy_work);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004760}
4761
Tejun Heoddfcada2014-05-04 15:09:14 -04004762static void init_and_link_css(struct cgroup_subsys_state *css,
4763 struct cgroup_subsys *ss, struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004764{
Tejun Heo0cb51d72014-05-16 13:22:49 -04004765 lockdep_assert_held(&cgroup_mutex);
4766
Tejun Heoddfcada2014-05-04 15:09:14 -04004767 cgroup_get(cgrp);
4768
Tejun Heod5c419b2014-05-16 13:22:48 -04004769 memset(css, 0, sizeof(*css));
Paul Menagebd89aab2007-10-18 23:40:44 -07004770 css->cgroup = cgrp;
Tejun Heo72c97e52013-08-08 20:11:22 -04004771 css->ss = ss;
Tejun Heod5c419b2014-05-16 13:22:48 -04004772 INIT_LIST_HEAD(&css->sibling);
4773 INIT_LIST_HEAD(&css->children);
Tejun Heo0cb51d72014-05-16 13:22:49 -04004774 css->serial_nr = css_serial_nr_next++;
Tejun Heoaa226ff2016-01-21 15:31:11 -05004775 atomic_set(&css->online_cnt, 0);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004776
Tejun Heod51f39b2014-05-16 13:22:48 -04004777 if (cgroup_parent(cgrp)) {
4778 css->parent = cgroup_css(cgroup_parent(cgrp), ss);
Tejun Heoddfcada2014-05-04 15:09:14 -04004779 css_get(css->parent);
Tejun Heoddfcada2014-05-04 15:09:14 -04004780 }
Tejun Heo0ae78e02013-08-13 11:01:54 -04004781
Tejun Heoca8bdca2013-08-26 18:40:56 -04004782 BUG_ON(cgroup_css(cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004783}
4784
Li Zefan2a4ac632013-07-31 16:16:40 +08004785/* invoke ->css_online() on a new CSS and mark it online if successful */
Tejun Heo623f9262013-08-13 11:01:55 -04004786static int online_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004787{
Tejun Heo623f9262013-08-13 11:01:55 -04004788 struct cgroup_subsys *ss = css->ss;
Tejun Heob1929db2012-11-19 08:13:38 -08004789 int ret = 0;
4790
Tejun Heoa31f2d32012-11-19 08:13:37 -08004791 lockdep_assert_held(&cgroup_mutex);
4792
Tejun Heo92fb9742012-11-19 08:13:38 -08004793 if (ss->css_online)
Tejun Heoeb954192013-08-08 20:11:23 -04004794 ret = ss->css_online(css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004795 if (!ret) {
Tejun Heoeb954192013-08-08 20:11:23 -04004796 css->flags |= CSS_ONLINE;
Tejun Heoaec25022014-02-08 10:36:58 -05004797 rcu_assign_pointer(css->cgroup->subsys[ss->id], css);
Tejun Heoaa226ff2016-01-21 15:31:11 -05004798
4799 atomic_inc(&css->online_cnt);
4800 if (css->parent)
4801 atomic_inc(&css->parent->online_cnt);
Tejun Heoae7f1642013-08-13 20:22:50 -04004802 }
Tejun Heob1929db2012-11-19 08:13:38 -08004803 return ret;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004804}
4805
Li Zefan2a4ac632013-07-31 16:16:40 +08004806/* if the CSS is online, invoke ->css_offline() on it and mark it offline */
Tejun Heo623f9262013-08-13 11:01:55 -04004807static void offline_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004808{
Tejun Heo623f9262013-08-13 11:01:55 -04004809 struct cgroup_subsys *ss = css->ss;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004810
4811 lockdep_assert_held(&cgroup_mutex);
4812
4813 if (!(css->flags & CSS_ONLINE))
4814 return;
4815
Vladimir Davydovfa062352016-03-01 19:56:30 +03004816 if (ss->css_reset)
4817 ss->css_reset(css);
4818
Li Zefand7eeac12013-03-12 15:35:59 -07004819 if (ss->css_offline)
Tejun Heoeb954192013-08-08 20:11:23 -04004820 ss->css_offline(css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004821
Tejun Heoeb954192013-08-08 20:11:23 -04004822 css->flags &= ~CSS_ONLINE;
Tejun Heoe3297802014-04-23 11:13:15 -04004823 RCU_INIT_POINTER(css->cgroup->subsys[ss->id], NULL);
Tejun Heof8f22e52014-04-23 11:13:16 -04004824
4825 wake_up_all(&css->cgroup->offline_waitq);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004826}
4827
Tejun Heoc81c925a2013-12-06 15:11:56 -05004828/**
Tejun Heo6cd0f5b2016-03-03 09:57:58 -05004829 * css_create - create a cgroup_subsys_state
Tejun Heoc81c925a2013-12-06 15:11:56 -05004830 * @cgrp: the cgroup new css will be associated with
4831 * @ss: the subsys of new css
4832 *
4833 * Create a new css associated with @cgrp - @ss pair. On success, the new
Tejun Heo6cd0f5b2016-03-03 09:57:58 -05004834 * css is online and installed in @cgrp. This function doesn't create the
4835 * interface files. Returns 0 on success, -errno on failure.
Tejun Heoc81c925a2013-12-06 15:11:56 -05004836 */
Tejun Heo6cd0f5b2016-03-03 09:57:58 -05004837static struct cgroup_subsys_state *css_create(struct cgroup *cgrp,
4838 struct cgroup_subsys *ss)
Tejun Heoc81c925a2013-12-06 15:11:56 -05004839{
Tejun Heod51f39b2014-05-16 13:22:48 -04004840 struct cgroup *parent = cgroup_parent(cgrp);
Tejun Heo1fed1b22014-05-16 13:22:49 -04004841 struct cgroup_subsys_state *parent_css = cgroup_css(parent, ss);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004842 struct cgroup_subsys_state *css;
4843 int err;
4844
Tejun Heoc81c925a2013-12-06 15:11:56 -05004845 lockdep_assert_held(&cgroup_mutex);
4846
Tejun Heo1fed1b22014-05-16 13:22:49 -04004847 css = ss->css_alloc(parent_css);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004848 if (IS_ERR(css))
Tejun Heo6cd0f5b2016-03-03 09:57:58 -05004849 return css;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004850
Tejun Heoddfcada2014-05-04 15:09:14 -04004851 init_and_link_css(css, ss, cgrp);
Tejun Heoa2bed822014-05-04 15:09:14 -04004852
Tejun Heo2aad2a82014-09-24 13:31:50 -04004853 err = percpu_ref_init(&css->refcnt, css_release, 0, GFP_KERNEL);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004854 if (err)
Li Zefan3eb59ec2014-03-18 17:02:36 +08004855 goto err_free_css;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004856
Vladimir Davydovcf780b72015-08-03 15:32:26 +03004857 err = cgroup_idr_alloc(&ss->css_idr, NULL, 2, 0, GFP_KERNEL);
Tejun Heo15a4c832014-05-04 15:09:14 -04004858 if (err < 0)
4859 goto err_free_percpu_ref;
4860 css->id = err;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004861
Tejun Heo15a4c832014-05-04 15:09:14 -04004862 /* @css is ready to be brought online now, make it visible */
Tejun Heo1fed1b22014-05-16 13:22:49 -04004863 list_add_tail_rcu(&css->sibling, &parent_css->children);
Tejun Heo15a4c832014-05-04 15:09:14 -04004864 cgroup_idr_replace(&ss->css_idr, css, css->id);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004865
4866 err = online_css(css);
4867 if (err)
Tejun Heo1fed1b22014-05-16 13:22:49 -04004868 goto err_list_del;
Tejun Heo94419622014-03-19 10:23:54 -04004869
Tejun Heoc81c925a2013-12-06 15:11:56 -05004870 if (ss->broken_hierarchy && !ss->warned_broken_hierarchy &&
Tejun Heod51f39b2014-05-16 13:22:48 -04004871 cgroup_parent(parent)) {
Joe Perchesed3d2612014-04-25 18:28:03 -04004872 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 -04004873 current->comm, current->pid, ss->name);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004874 if (!strcmp(ss->name, "memory"))
Joe Perchesed3d2612014-04-25 18:28:03 -04004875 pr_warn("\"memory\" requires setting use_hierarchy to 1 on the root\n");
Tejun Heoc81c925a2013-12-06 15:11:56 -05004876 ss->warned_broken_hierarchy = true;
4877 }
4878
Tejun Heo6cd0f5b2016-03-03 09:57:58 -05004879 return css;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004880
Tejun Heo1fed1b22014-05-16 13:22:49 -04004881err_list_del:
4882 list_del_rcu(&css->sibling);
Tejun Heo15a4c832014-05-04 15:09:14 -04004883 cgroup_idr_remove(&ss->css_idr, css->id);
Li Zefan3eb59ec2014-03-18 17:02:36 +08004884err_free_percpu_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04004885 percpu_ref_exit(&css->refcnt);
Li Zefan3eb59ec2014-03-18 17:02:36 +08004886err_free_css:
Tejun Heoa2bed822014-05-04 15:09:14 -04004887 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heo6cd0f5b2016-03-03 09:57:58 -05004888 return ERR_PTR(err);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004889}
4890
Tejun Heob3bfd982014-05-13 12:19:22 -04004891static int cgroup_mkdir(struct kernfs_node *parent_kn, const char *name,
4892 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004893{
Tejun Heob11cfb52015-11-20 15:55:52 -05004894 struct cgroup *parent, *cgrp, *tcgrp;
Tejun Heoa9746d82014-05-13 12:19:22 -04004895 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004896 struct cgroup_subsys *ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004897 struct kernfs_node *kn;
Tejun Heob11cfb52015-11-20 15:55:52 -05004898 int level, ssid, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004899
Alban Crequy71b1fb52014-08-18 12:20:20 +01004900 /* Do not accept '\n' to prevent making /proc/<pid>/cgroup unparsable.
4901 */
4902 if (strchr(name, '\n'))
4903 return -EINVAL;
4904
Tejun Heoa9746d82014-05-13 12:19:22 -04004905 parent = cgroup_kn_lock_live(parent_kn);
4906 if (!parent)
4907 return -ENODEV;
4908 root = parent->root;
Tejun Heob11cfb52015-11-20 15:55:52 -05004909 level = parent->level + 1;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004910
Tejun Heo0a950f62012-11-19 09:02:12 -08004911 /* allocate the cgroup and its ID, 0 is reserved for the root */
Tejun Heob11cfb52015-11-20 15:55:52 -05004912 cgrp = kzalloc(sizeof(*cgrp) +
4913 sizeof(cgrp->ancestor_ids[0]) * (level + 1), GFP_KERNEL);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004914 if (!cgrp) {
4915 ret = -ENOMEM;
4916 goto out_unlock;
Li Zefan0ab02ca2014-02-11 16:05:46 +08004917 }
4918
Tejun Heo2aad2a82014-09-24 13:31:50 -04004919 ret = percpu_ref_init(&cgrp->self.refcnt, css_release, 0, GFP_KERNEL);
Tejun Heo9d755d32014-05-14 09:15:02 -04004920 if (ret)
4921 goto out_free_cgrp;
4922
Li Zefan0ab02ca2014-02-11 16:05:46 +08004923 /*
4924 * Temporarily set the pointer to NULL, so idr_find() won't return
4925 * a half-baked cgroup.
4926 */
Vladimir Davydovcf780b72015-08-03 15:32:26 +03004927 cgrp->id = cgroup_idr_alloc(&root->cgroup_idr, NULL, 2, 0, GFP_KERNEL);
Li Zefan0ab02ca2014-02-11 16:05:46 +08004928 if (cgrp->id < 0) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004929 ret = -ENOMEM;
Tejun Heo9d755d32014-05-14 09:15:02 -04004930 goto out_cancel_ref;
Tejun Heo976c06b2012-11-05 09:16:59 -08004931 }
4932
Paul Menagecc31edc2008-10-18 20:28:04 -07004933 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004934
Tejun Heo9d800df2014-05-14 09:15:00 -04004935 cgrp->self.parent = &parent->self;
Tejun Heoba0f4d72014-05-13 12:19:22 -04004936 cgrp->root = root;
Tejun Heob11cfb52015-11-20 15:55:52 -05004937 cgrp->level = level;
4938
4939 for (tcgrp = cgrp; tcgrp; tcgrp = cgroup_parent(tcgrp))
4940 cgrp->ancestor_ids[tcgrp->level] = tcgrp->id;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004941
Li Zefanb6abdb02008-03-04 14:28:19 -08004942 if (notify_on_release(parent))
4943 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
4944
Tejun Heo2260e7f2012-11-19 08:13:38 -08004945 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags))
4946 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004947
Tejun Heo0cb51d72014-05-16 13:22:49 -04004948 cgrp->self.serial_nr = css_serial_nr_next++;
Tejun Heo53fa5262013-05-24 10:55:38 +09004949
Tejun Heo4e139af2012-11-19 08:13:36 -08004950 /* allocation complete, commit to creation */
Tejun Heod5c419b2014-05-16 13:22:48 -04004951 list_add_tail_rcu(&cgrp->self.sibling, &cgroup_parent(cgrp)->self.children);
Tejun Heo3c9c8252014-02-12 09:29:50 -05004952 atomic_inc(&root->nr_cgrps);
Tejun Heo59f52962014-02-11 11:52:49 -05004953 cgroup_get(parent);
Li Zefan415cf072013-04-08 14:35:02 +08004954
Tejun Heo0d802552013-12-06 15:11:56 -05004955 /*
4956 * @cgrp is now fully operational. If something fails after this
4957 * point, it'll be released via the normal destruction path.
4958 */
Tejun Heo6fa49182014-05-04 15:09:13 -04004959 cgroup_idr_replace(&root->cgroup_idr, cgrp, cgrp->id);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08004960
Tejun Heo195e9b62016-03-03 09:57:58 -05004961 /* create the csses */
Tejun Heo996cd1f2016-02-22 22:25:46 -05004962 do_each_subsys_mask(ss, ssid, parent->subtree_ss_mask) {
Tejun Heo6cd0f5b2016-03-03 09:57:58 -05004963 struct cgroup_subsys_state *css;
4964
4965 css = css_create(cgrp, ss);
4966 if (IS_ERR(css)) {
4967 ret = PTR_ERR(css);
Tejun Heo996cd1f2016-02-22 22:25:46 -05004968 goto out_destroy;
Tejun Heo6cd0f5b2016-03-03 09:57:58 -05004969 }
Tejun Heo996cd1f2016-02-22 22:25:46 -05004970 } while_each_subsys_mask();
Paul Menageddbcc7e2007-10-18 23:39:30 -07004971
Tejun Heobd53d612014-04-23 11:13:16 -04004972 /*
4973 * On the default hierarchy, a child doesn't automatically inherit
Tejun Heo667c2492014-07-08 18:02:56 -04004974 * subtree_control from the parent. Each is configured manually.
Tejun Heobd53d612014-04-23 11:13:16 -04004975 */
Tejun Heo667c2492014-07-08 18:02:56 -04004976 if (!cgroup_on_dfl(cgrp)) {
4977 cgrp->subtree_control = parent->subtree_control;
Tejun Heo8699b772016-02-22 22:25:46 -05004978 cgroup_refresh_subtree_ss_mask(cgrp);
Tejun Heo667c2492014-07-08 18:02:56 -04004979 }
Tejun Heof392e512014-04-23 11:13:14 -04004980
Tejun Heo195e9b62016-03-03 09:57:58 -05004981 /* create the directory */
4982 kn = kernfs_create_dir(parent->kn, name, mode, cgrp);
4983 if (IS_ERR(kn)) {
4984 ret = PTR_ERR(kn);
4985 goto out_destroy;
4986 }
4987 cgrp->kn = kn;
4988
4989 /*
4990 * This extra ref will be put in cgroup_free_fn() and guarantees
4991 * that @cgrp->kn is always accessible.
4992 */
4993 kernfs_get(kn);
4994
4995 ret = cgroup_kn_set_ugid(kn);
4996 if (ret)
4997 goto out_destroy;
4998
4999 ret = css_populate_dir(&cgrp->self, NULL);
5000 if (ret)
5001 goto out_destroy;
5002
5003 do_each_subsys_mask(ss, ssid, parent->subtree_control) {
5004 ret = css_populate_dir(cgroup_css(cgrp, ss), NULL);
5005 if (ret)
5006 goto out_destroy;
5007 } while_each_subsys_mask();
5008
5009 /* let's create and online css's */
Tejun Heo2bd59d42014-02-11 11:52:49 -05005010 kernfs_activate(kn);
5011
Tejun Heoba0f4d72014-05-13 12:19:22 -04005012 ret = 0;
5013 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005014
Tejun Heo9d755d32014-05-14 09:15:02 -04005015out_cancel_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04005016 percpu_ref_exit(&cgrp->self.refcnt);
Tejun Heoba0f4d72014-05-13 12:19:22 -04005017out_free_cgrp:
Paul Menagebd89aab2007-10-18 23:40:44 -07005018 kfree(cgrp);
Tejun Heoba0f4d72014-05-13 12:19:22 -04005019out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04005020 cgroup_kn_unlock(parent_kn);
Tejun Heoe1b2dc12014-03-20 11:10:15 -04005021 return ret;
Tejun Heoba0f4d72014-05-13 12:19:22 -04005022
5023out_destroy:
5024 cgroup_destroy_locked(cgrp);
5025 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005026}
5027
Tejun Heo223dbc32013-08-13 20:22:50 -04005028/*
5029 * This is called when the refcnt of a css is confirmed to be killed.
Tejun Heo249f3462014-05-14 09:15:01 -04005030 * css_tryget_online() is now guaranteed to fail. Tell the subsystem to
5031 * initate destruction and put the css ref from kill_css().
Tejun Heo223dbc32013-08-13 20:22:50 -04005032 */
5033static void css_killed_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07005034{
Tejun Heo223dbc32013-08-13 20:22:50 -04005035 struct cgroup_subsys_state *css =
5036 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07005037
Tejun Heof20104d2013-08-13 20:22:50 -04005038 mutex_lock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04005039
Tejun Heoaa226ff2016-01-21 15:31:11 -05005040 do {
5041 offline_css(css);
5042 css_put(css);
5043 /* @css can't go away while we're holding cgroup_mutex */
5044 css = css->parent;
5045 } while (css && atomic_dec_and_test(&css->online_cnt));
5046
5047 mutex_unlock(&cgroup_mutex);
Tejun Heod3daf282013-06-13 19:39:16 -07005048}
5049
Tejun Heo223dbc32013-08-13 20:22:50 -04005050/* css kill confirmation processing requires process context, bounce */
5051static void css_killed_ref_fn(struct percpu_ref *ref)
Tejun Heod3daf282013-06-13 19:39:16 -07005052{
5053 struct cgroup_subsys_state *css =
5054 container_of(ref, struct cgroup_subsys_state, refcnt);
5055
Tejun Heoaa226ff2016-01-21 15:31:11 -05005056 if (atomic_dec_and_test(&css->online_cnt)) {
5057 INIT_WORK(&css->destroy_work, css_killed_work_fn);
5058 queue_work(cgroup_destroy_wq, &css->destroy_work);
5059 }
Tejun Heod3daf282013-06-13 19:39:16 -07005060}
5061
Tejun Heof392e512014-04-23 11:13:14 -04005062/**
5063 * kill_css - destroy a css
5064 * @css: css to destroy
5065 *
5066 * This function initiates destruction of @css by removing cgroup interface
5067 * files and putting its base reference. ->css_offline() will be invoked
Tejun Heoec903c02014-05-13 12:11:01 -04005068 * asynchronously once css_tryget_online() is guaranteed to fail and when
5069 * the reference count reaches zero, @css will be released.
Tejun Heof392e512014-04-23 11:13:14 -04005070 */
5071static void kill_css(struct cgroup_subsys_state *css)
Tejun Heoedae0c32013-08-13 20:22:51 -04005072{
Tejun Heo01f64742014-05-13 12:19:23 -04005073 lockdep_assert_held(&cgroup_mutex);
Tejun Heo94419622014-03-19 10:23:54 -04005074
Tejun Heo2bd59d42014-02-11 11:52:49 -05005075 /*
5076 * This must happen before css is disassociated with its cgroup.
5077 * See seq_css() for details.
5078 */
Tejun Heo4df8dc92015-09-18 17:54:23 -04005079 css_clear_dir(css, NULL);
Tejun Heo3c14f8b2013-08-13 20:22:51 -04005080
Tejun Heoedae0c32013-08-13 20:22:51 -04005081 /*
5082 * Killing would put the base ref, but we need to keep it alive
5083 * until after ->css_offline().
5084 */
5085 css_get(css);
5086
5087 /*
5088 * cgroup core guarantees that, by the time ->css_offline() is
5089 * invoked, no new css reference will be given out via
Tejun Heoec903c02014-05-13 12:11:01 -04005090 * css_tryget_online(). We can't simply call percpu_ref_kill() and
Tejun Heoedae0c32013-08-13 20:22:51 -04005091 * proceed to offlining css's because percpu_ref_kill() doesn't
5092 * guarantee that the ref is seen as killed on all CPUs on return.
5093 *
5094 * Use percpu_ref_kill_and_confirm() to get notifications as each
5095 * css is confirmed to be seen as killed on all CPUs.
5096 */
5097 percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07005098}
5099
5100/**
5101 * cgroup_destroy_locked - the first stage of cgroup destruction
5102 * @cgrp: cgroup to be destroyed
5103 *
5104 * css's make use of percpu refcnts whose killing latency shouldn't be
5105 * exposed to userland and are RCU protected. Also, cgroup core needs to
Tejun Heoec903c02014-05-13 12:11:01 -04005106 * guarantee that css_tryget_online() won't succeed by the time
5107 * ->css_offline() is invoked. To satisfy all the requirements,
5108 * destruction is implemented in the following two steps.
Tejun Heod3daf282013-06-13 19:39:16 -07005109 *
5110 * s1. Verify @cgrp can be destroyed and mark it dying. Remove all
5111 * userland visible parts and start killing the percpu refcnts of
5112 * css's. Set up so that the next stage will be kicked off once all
5113 * the percpu refcnts are confirmed to be killed.
5114 *
5115 * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the
5116 * rest of destruction. Once all cgroup references are gone, the
5117 * cgroup is RCU-freed.
5118 *
5119 * This function implements s1. After this step, @cgrp is gone as far as
5120 * the userland is concerned and a new cgroup with the same name may be
5121 * created. As cgroup doesn't care about the names internally, this
5122 * doesn't cause any problem.
5123 */
Tejun Heo42809dd2012-11-19 08:13:37 -08005124static int cgroup_destroy_locked(struct cgroup *cgrp)
5125 __releases(&cgroup_mutex) __acquires(&cgroup_mutex)
Paul Menageddbcc7e2007-10-18 23:39:30 -07005126{
Tejun Heo2bd59d42014-02-11 11:52:49 -05005127 struct cgroup_subsys_state *css;
Tejun Heo1c6727a2013-12-06 15:11:56 -05005128 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005129
Tejun Heo42809dd2012-11-19 08:13:37 -08005130 lockdep_assert_held(&cgroup_mutex);
5131
Tejun Heo91486f62015-10-15 16:41:51 -04005132 /*
5133 * Only migration can raise populated from zero and we're already
5134 * holding cgroup_mutex.
5135 */
5136 if (cgroup_is_populated(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07005137 return -EBUSY;
Tejun Heoed9577932012-11-05 09:16:58 -08005138
Tejun Heo1a90dd52012-11-05 09:16:59 -08005139 /*
Tejun Heod5c419b2014-05-16 13:22:48 -04005140 * Make sure there's no live children. We can't test emptiness of
5141 * ->self.children as dead children linger on it while being
5142 * drained; otherwise, "rmdir parent/child parent" may fail.
Hugh Dickinsbb78a922013-08-28 16:31:23 -07005143 */
Tejun Heof3d46502014-05-16 13:22:52 -04005144 if (css_has_online_children(&cgrp->self))
Hugh Dickinsbb78a922013-08-28 16:31:23 -07005145 return -EBUSY;
5146
5147 /*
Tejun Heo455050d2013-06-13 19:27:41 -07005148 * Mark @cgrp dead. This prevents further task migration and child
Tejun Heode3f0342014-05-16 13:22:49 -04005149 * creation by disabling cgroup_lock_live_group().
Tejun Heo455050d2013-06-13 19:27:41 -07005150 */
Tejun Heo184faf32014-05-16 13:22:51 -04005151 cgrp->self.flags &= ~CSS_ONLINE;
Tejun Heo1a90dd52012-11-05 09:16:59 -08005152
Tejun Heo249f3462014-05-14 09:15:01 -04005153 /* initiate massacre of all css's */
Tejun Heo1a90dd52012-11-05 09:16:59 -08005154 for_each_css(css, ssid, cgrp)
Tejun Heo455050d2013-06-13 19:27:41 -07005155 kill_css(css);
5156
Tejun Heo455050d2013-06-13 19:27:41 -07005157 /*
Tejun Heo01f64742014-05-13 12:19:23 -04005158 * Remove @cgrp directory along with the base files. @cgrp has an
5159 * extra ref on its kn.
Tejun Heo455050d2013-06-13 19:27:41 -07005160 */
Tejun Heo01f64742014-05-13 12:19:23 -04005161 kernfs_remove(cgrp->kn);
Tejun Heof20104d2013-08-13 20:22:50 -04005162
Tejun Heod51f39b2014-05-16 13:22:48 -04005163 check_for_release(cgroup_parent(cgrp));
Tejun Heo2bd59d42014-02-11 11:52:49 -05005164
Tejun Heo249f3462014-05-14 09:15:01 -04005165 /* put the base reference */
Tejun Heo9d755d32014-05-14 09:15:02 -04005166 percpu_ref_kill(&cgrp->self.refcnt);
Tejun Heo455050d2013-06-13 19:27:41 -07005167
Tejun Heoea15f8c2013-06-13 19:27:42 -07005168 return 0;
5169};
5170
Tejun Heo2bd59d42014-02-11 11:52:49 -05005171static int cgroup_rmdir(struct kernfs_node *kn)
Tejun Heo42809dd2012-11-19 08:13:37 -08005172{
Tejun Heoa9746d82014-05-13 12:19:22 -04005173 struct cgroup *cgrp;
Tejun Heo2bd59d42014-02-11 11:52:49 -05005174 int ret = 0;
Tejun Heo42809dd2012-11-19 08:13:37 -08005175
Tejun Heoa9746d82014-05-13 12:19:22 -04005176 cgrp = cgroup_kn_lock_live(kn);
5177 if (!cgrp)
5178 return 0;
Tejun Heo42809dd2012-11-19 08:13:37 -08005179
Tejun Heoa9746d82014-05-13 12:19:22 -04005180 ret = cgroup_destroy_locked(cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -08005181
Tejun Heoa9746d82014-05-13 12:19:22 -04005182 cgroup_kn_unlock(kn);
Tejun Heo42809dd2012-11-19 08:13:37 -08005183 return ret;
5184}
5185
Tejun Heo2bd59d42014-02-11 11:52:49 -05005186static struct kernfs_syscall_ops cgroup_kf_syscall_ops = {
5187 .remount_fs = cgroup_remount,
5188 .show_options = cgroup_show_options,
5189 .mkdir = cgroup_mkdir,
5190 .rmdir = cgroup_rmdir,
5191 .rename = cgroup_rename,
5192};
Tejun Heo8e3f6542012-04-01 12:09:55 -07005193
Tejun Heo15a4c832014-05-04 15:09:14 -04005194static void __init cgroup_init_subsys(struct cgroup_subsys *ss, bool early)
Paul Menageddbcc7e2007-10-18 23:39:30 -07005195{
Paul Menageddbcc7e2007-10-18 23:39:30 -07005196 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08005197
Tejun Heoa5ae9892015-12-29 14:53:56 -05005198 pr_debug("Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005199
Tejun Heo648bb562012-11-19 08:13:36 -08005200 mutex_lock(&cgroup_mutex);
5201
Tejun Heo15a4c832014-05-04 15:09:14 -04005202 idr_init(&ss->css_idr);
Tejun Heo0adb0702014-02-12 09:29:48 -05005203 INIT_LIST_HEAD(&ss->cfts);
Tejun Heo8e3f6542012-04-01 12:09:55 -07005204
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005205 /* Create the root cgroup state for this subsystem */
5206 ss->root = &cgrp_dfl_root;
5207 css = ss->css_alloc(cgroup_css(&cgrp_dfl_root.cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07005208 /* We don't handle early failures gracefully */
5209 BUG_ON(IS_ERR(css));
Tejun Heoddfcada2014-05-04 15:09:14 -04005210 init_and_link_css(css, ss, &cgrp_dfl_root.cgrp);
Tejun Heo3b514d22014-05-16 13:22:47 -04005211
5212 /*
5213 * Root csses are never destroyed and we can't initialize
5214 * percpu_ref during early init. Disable refcnting.
5215 */
5216 css->flags |= CSS_NO_REF;
5217
Tejun Heo15a4c832014-05-04 15:09:14 -04005218 if (early) {
Tejun Heo9395a452014-05-14 09:15:02 -04005219 /* allocation can't be done safely during early init */
Tejun Heo15a4c832014-05-04 15:09:14 -04005220 css->id = 1;
5221 } else {
5222 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2, GFP_KERNEL);
5223 BUG_ON(css->id < 0);
5224 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07005225
Li Zefane8d55fd2008-04-29 01:00:13 -07005226 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07005227 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07005228 * newly registered, all tasks and hence the
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005229 * init_css_set is in the subsystem's root cgroup. */
Tejun Heoaec25022014-02-08 10:36:58 -05005230 init_css_set.subsys[ss->id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005231
Aleksa Saraicb4a3162015-06-06 10:02:14 +10005232 have_fork_callback |= (bool)ss->fork << ss->id;
5233 have_exit_callback |= (bool)ss->exit << ss->id;
Tejun Heoafcf6c82015-10-15 16:41:53 -04005234 have_free_callback |= (bool)ss->free << ss->id;
Aleksa Sarai7e476822015-06-09 21:32:09 +10005235 have_canfork_callback |= (bool)ss->can_fork << ss->id;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005236
Li Zefane8d55fd2008-04-29 01:00:13 -07005237 /* At system boot, before all subsystems have been
5238 * registered, no tasks have been forked, so we don't
5239 * need to invoke fork callbacks here. */
5240 BUG_ON(!list_empty(&init_task.tasks));
5241
Tejun Heoae7f1642013-08-13 20:22:50 -04005242 BUG_ON(online_css(css));
Tejun Heoa8638032012-11-09 09:12:29 -08005243
Tejun Heo648bb562012-11-19 08:13:36 -08005244 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005245}
5246
5247/**
Li Zefana043e3b2008-02-23 15:24:09 -08005248 * cgroup_init_early - cgroup initialization at system boot
5249 *
5250 * Initialize cgroups at system boot, and initialize any
5251 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07005252 */
5253int __init cgroup_init_early(void)
5254{
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04005255 static struct cgroup_sb_opts __initdata opts;
Tejun Heo30159ec2013-06-25 11:53:37 -07005256 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005257 int i;
Tejun Heo30159ec2013-06-25 11:53:37 -07005258
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005259 init_cgroup_root(&cgrp_dfl_root, &opts);
Tejun Heo3b514d22014-05-16 13:22:47 -04005260 cgrp_dfl_root.cgrp.self.flags |= CSS_NO_REF;
5261
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07005262 RCU_INIT_POINTER(init_task.cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07005263
Tejun Heo3ed80a62014-02-08 10:36:58 -05005264 for_each_subsys(ss, i) {
Tejun Heoaec25022014-02-08 10:36:58 -05005265 WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id,
Xiubo Li63253ad2016-02-26 13:07:38 +08005266 "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p id:name=%d:%s\n",
Tejun Heo073219e2014-02-08 10:36:58 -05005267 i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free,
Tejun Heoaec25022014-02-08 10:36:58 -05005268 ss->id, ss->name);
Tejun Heo073219e2014-02-08 10:36:58 -05005269 WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN,
5270 "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005271
Tejun Heoaec25022014-02-08 10:36:58 -05005272 ss->id = i;
Tejun Heo073219e2014-02-08 10:36:58 -05005273 ss->name = cgroup_subsys_name[i];
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005274 if (!ss->legacy_name)
5275 ss->legacy_name = cgroup_subsys_name[i];
Paul Menageddbcc7e2007-10-18 23:39:30 -07005276
5277 if (ss->early_init)
Tejun Heo15a4c832014-05-04 15:09:14 -04005278 cgroup_init_subsys(ss, true);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005279 }
5280 return 0;
5281}
5282
Tejun Heo6e5c8302016-02-22 22:25:47 -05005283static u16 cgroup_disable_mask __initdata;
Tejun Heoa3e72732015-09-25 16:24:27 -04005284
Paul Menageddbcc7e2007-10-18 23:39:30 -07005285/**
Li Zefana043e3b2008-02-23 15:24:09 -08005286 * cgroup_init - cgroup initialization
5287 *
5288 * Register cgroup filesystem and /proc file, and initialize
5289 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07005290 */
5291int __init cgroup_init(void)
5292{
Tejun Heo30159ec2013-06-25 11:53:37 -07005293 struct cgroup_subsys *ss;
Tejun Heo035f4f52015-10-15 17:00:43 -04005294 int ssid;
Paul Menagea4243162007-10-18 23:39:35 -07005295
Tejun Heo6e5c8302016-02-22 22:25:47 -05005296 BUILD_BUG_ON(CGROUP_SUBSYS_COUNT > 16);
Tejun Heo1ed13282015-09-16 12:53:17 -04005297 BUG_ON(percpu_init_rwsem(&cgroup_threadgroup_rwsem));
Tejun Heoa14c6872014-07-15 11:05:09 -04005298 BUG_ON(cgroup_init_cftypes(NULL, cgroup_dfl_base_files));
5299 BUG_ON(cgroup_init_cftypes(NULL, cgroup_legacy_base_files));
Paul Menageddbcc7e2007-10-18 23:39:30 -07005300
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005301 mutex_lock(&cgroup_mutex);
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005302
Tejun Heo2378d8b2016-03-03 09:57:57 -05005303 /*
5304 * Add init_css_set to the hash table so that dfl_root can link to
5305 * it during init.
5306 */
5307 hash_add(css_set_table, &init_css_set.hlist,
5308 css_set_hash(init_css_set.subsys));
Tejun Heo82fe9b02013-06-25 11:53:37 -07005309
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005310 BUG_ON(cgroup_setup_root(&cgrp_dfl_root, 0));
Greg KH676db4a2010-08-05 13:53:35 -07005311
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005312 mutex_unlock(&cgroup_mutex);
5313
Tejun Heo172a2c062014-03-19 10:23:53 -04005314 for_each_subsys(ss, ssid) {
Tejun Heo15a4c832014-05-04 15:09:14 -04005315 if (ss->early_init) {
5316 struct cgroup_subsys_state *css =
5317 init_css_set.subsys[ss->id];
5318
5319 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2,
5320 GFP_KERNEL);
5321 BUG_ON(css->id < 0);
5322 } else {
5323 cgroup_init_subsys(ss, false);
5324 }
Tejun Heo172a2c062014-03-19 10:23:53 -04005325
Tejun Heo2d8f2432014-04-23 11:13:15 -04005326 list_add_tail(&init_css_set.e_cset_node[ssid],
5327 &cgrp_dfl_root.cgrp.e_csets[ssid]);
Tejun Heo172a2c062014-03-19 10:23:53 -04005328
5329 /*
Li Zefanc731ae12014-06-05 17:16:30 +08005330 * Setting dfl_root subsys_mask needs to consider the
5331 * disabled flag and cftype registration needs kmalloc,
5332 * both of which aren't available during early_init.
Tejun Heo172a2c062014-03-19 10:23:53 -04005333 */
Tejun Heoa3e72732015-09-25 16:24:27 -04005334 if (cgroup_disable_mask & (1 << ssid)) {
5335 static_branch_disable(cgroup_subsys_enabled_key[ssid]);
5336 printk(KERN_INFO "Disabling %s control group subsystem\n",
5337 ss->name);
Tejun Heoa8ddc822014-07-15 11:05:10 -04005338 continue;
Tejun Heoa3e72732015-09-25 16:24:27 -04005339 }
Tejun Heoa8ddc822014-07-15 11:05:10 -04005340
Johannes Weiner223ffb22016-02-11 13:34:49 -05005341 if (cgroup_ssid_no_v1(ssid))
5342 printk(KERN_INFO "Disabling %s control group subsystem in v1 mounts\n",
5343 ss->name);
5344
Tejun Heoa8ddc822014-07-15 11:05:10 -04005345 cgrp_dfl_root.subsys_mask |= 1 << ss->id;
5346
Tejun Heo5de4fa12014-07-15 11:05:10 -04005347 if (!ss->dfl_cftypes)
Tejun Heoa7165262016-02-23 10:00:50 -05005348 cgrp_dfl_inhibit_ss_mask |= 1 << ss->id;
Tejun Heo5de4fa12014-07-15 11:05:10 -04005349
Tejun Heoa8ddc822014-07-15 11:05:10 -04005350 if (ss->dfl_cftypes == ss->legacy_cftypes) {
5351 WARN_ON(cgroup_add_cftypes(ss, ss->dfl_cftypes));
5352 } else {
5353 WARN_ON(cgroup_add_dfl_cftypes(ss, ss->dfl_cftypes));
5354 WARN_ON(cgroup_add_legacy_cftypes(ss, ss->legacy_cftypes));
Li Zefanc731ae12014-06-05 17:16:30 +08005355 }
Vladimir Davydov295458e2015-02-19 17:34:46 +03005356
5357 if (ss->bind)
5358 ss->bind(init_css_set.subsys[ssid]);
Tejun Heo172a2c062014-03-19 10:23:53 -04005359 }
Greg KH676db4a2010-08-05 13:53:35 -07005360
Tejun Heo2378d8b2016-03-03 09:57:57 -05005361 /* init_css_set.subsys[] has been updated, re-hash */
5362 hash_del(&init_css_set.hlist);
5363 hash_add(css_set_table, &init_css_set.hlist,
5364 css_set_hash(init_css_set.subsys));
5365
Tejun Heo035f4f52015-10-15 17:00:43 -04005366 WARN_ON(sysfs_create_mount_point(fs_kobj, "cgroup"));
5367 WARN_ON(register_filesystem(&cgroup_fs_type));
Tejun Heo67e9c742015-11-16 11:13:34 -05005368 WARN_ON(register_filesystem(&cgroup2_fs_type));
Tejun Heo035f4f52015-10-15 17:00:43 -04005369 WARN_ON(!proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations));
Paul Menagea4243162007-10-18 23:39:35 -07005370
Tejun Heo2bd59d42014-02-11 11:52:49 -05005371 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005372}
Paul Menageb4f48b62007-10-18 23:39:33 -07005373
Tejun Heoe5fca242013-11-22 17:14:39 -05005374static int __init cgroup_wq_init(void)
5375{
5376 /*
5377 * There isn't much point in executing destruction path in
5378 * parallel. Good chunk is serialized with cgroup_mutex anyway.
Tejun Heo1a115332014-02-12 19:06:19 -05005379 * Use 1 for @max_active.
Tejun Heoe5fca242013-11-22 17:14:39 -05005380 *
5381 * We would prefer to do this in cgroup_init() above, but that
5382 * is called before init_workqueues(): so leave this until after.
5383 */
Tejun Heo1a115332014-02-12 19:06:19 -05005384 cgroup_destroy_wq = alloc_workqueue("cgroup_destroy", 0, 1);
Tejun Heoe5fca242013-11-22 17:14:39 -05005385 BUG_ON(!cgroup_destroy_wq);
Tejun Heob1a21362013-11-29 10:42:58 -05005386
5387 /*
5388 * Used to destroy pidlists and separate to serve as flush domain.
5389 * Cap @max_active to 1 too.
5390 */
5391 cgroup_pidlist_destroy_wq = alloc_workqueue("cgroup_pidlist_destroy",
5392 0, 1);
5393 BUG_ON(!cgroup_pidlist_destroy_wq);
5394
Tejun Heoe5fca242013-11-22 17:14:39 -05005395 return 0;
5396}
5397core_initcall(cgroup_wq_init);
5398
Paul Menagea4243162007-10-18 23:39:35 -07005399/*
5400 * proc_cgroup_show()
5401 * - Print task's cgroup paths into seq_file, one line for each hierarchy
5402 * - Used for /proc/<pid>/cgroup.
Paul Menagea4243162007-10-18 23:39:35 -07005403 */
Zefan Li006f4ac2014-09-18 16:03:15 +08005404int proc_cgroup_show(struct seq_file *m, struct pid_namespace *ns,
5405 struct pid *pid, struct task_struct *tsk)
Paul Menagea4243162007-10-18 23:39:35 -07005406{
Tejun Heoe61734c2014-02-12 09:29:50 -05005407 char *buf, *path;
Paul Menagea4243162007-10-18 23:39:35 -07005408 int retval;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005409 struct cgroup_root *root;
Paul Menagea4243162007-10-18 23:39:35 -07005410
5411 retval = -ENOMEM;
Tejun Heoe61734c2014-02-12 09:29:50 -05005412 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagea4243162007-10-18 23:39:35 -07005413 if (!buf)
5414 goto out;
5415
Paul Menagea4243162007-10-18 23:39:35 -07005416 mutex_lock(&cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005417 spin_lock_bh(&css_set_lock);
Paul Menagea4243162007-10-18 23:39:35 -07005418
Tejun Heo985ed672014-03-19 10:23:53 -04005419 for_each_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07005420 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07005421 struct cgroup *cgrp;
Tejun Heob85d2042013-12-06 15:11:57 -05005422 int ssid, count = 0;
Paul Menagea4243162007-10-18 23:39:35 -07005423
Tejun Heoa7165262016-02-23 10:00:50 -05005424 if (root == &cgrp_dfl_root && !cgrp_dfl_visible)
Tejun Heo985ed672014-03-19 10:23:53 -04005425 continue;
5426
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005427 seq_printf(m, "%d:", root->hierarchy_id);
Tejun Heod98817d2015-08-18 13:58:16 -07005428 if (root != &cgrp_dfl_root)
5429 for_each_subsys(ss, ssid)
5430 if (root->subsys_mask & (1 << ssid))
5431 seq_printf(m, "%s%s", count++ ? "," : "",
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005432 ss->legacy_name);
Paul Menagec6d57f32009-09-23 15:56:19 -07005433 if (strlen(root->name))
5434 seq_printf(m, "%sname=%s", count ? "," : "",
5435 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07005436 seq_putc(m, ':');
Tejun Heo2e91fa72015-10-15 16:41:53 -04005437
Paul Menage7717f7b2009-09-23 15:56:22 -07005438 cgrp = task_cgroup_from_root(tsk, root);
Tejun Heo2e91fa72015-10-15 16:41:53 -04005439
5440 /*
5441 * On traditional hierarchies, all zombie tasks show up as
5442 * belonging to the root cgroup. On the default hierarchy,
5443 * while a zombie doesn't show up in "cgroup.procs" and
5444 * thus can't be migrated, its /proc/PID/cgroup keeps
5445 * reporting the cgroup it belonged to before exiting. If
5446 * the cgroup is removed before the zombie is reaped,
5447 * " (deleted)" is appended to the cgroup path.
5448 */
5449 if (cgroup_on_dfl(cgrp) || !(tsk->flags & PF_EXITING)) {
5450 path = cgroup_path(cgrp, buf, PATH_MAX);
5451 if (!path) {
5452 retval = -ENAMETOOLONG;
5453 goto out_unlock;
5454 }
5455 } else {
5456 path = "/";
Tejun Heoe61734c2014-02-12 09:29:50 -05005457 }
Tejun Heo2e91fa72015-10-15 16:41:53 -04005458
Tejun Heoe61734c2014-02-12 09:29:50 -05005459 seq_puts(m, path);
Tejun Heo2e91fa72015-10-15 16:41:53 -04005460
5461 if (cgroup_on_dfl(cgrp) && cgroup_is_dead(cgrp))
5462 seq_puts(m, " (deleted)\n");
5463 else
5464 seq_putc(m, '\n');
Paul Menagea4243162007-10-18 23:39:35 -07005465 }
5466
Zefan Li006f4ac2014-09-18 16:03:15 +08005467 retval = 0;
Paul Menagea4243162007-10-18 23:39:35 -07005468out_unlock:
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005469 spin_unlock_bh(&css_set_lock);
Paul Menagea4243162007-10-18 23:39:35 -07005470 mutex_unlock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07005471 kfree(buf);
5472out:
5473 return retval;
5474}
5475
Paul Menagea4243162007-10-18 23:39:35 -07005476/* Display information about each subsystem and each hierarchy */
5477static int proc_cgroupstats_show(struct seq_file *m, void *v)
5478{
Tejun Heo30159ec2013-06-25 11:53:37 -07005479 struct cgroup_subsys *ss;
Paul Menagea4243162007-10-18 23:39:35 -07005480 int i;
Paul Menagea4243162007-10-18 23:39:35 -07005481
Paul Menage8bab8dd2008-04-04 14:29:57 -07005482 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08005483 /*
5484 * ideally we don't want subsystems moving around while we do this.
5485 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
5486 * subsys/hierarchy state.
5487 */
Paul Menagea4243162007-10-18 23:39:35 -07005488 mutex_lock(&cgroup_mutex);
Tejun Heo30159ec2013-06-25 11:53:37 -07005489
5490 for_each_subsys(ss, i)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005491 seq_printf(m, "%s\t%d\t%d\t%d\n",
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005492 ss->legacy_name, ss->root->hierarchy_id,
Tejun Heofc5ed1e2015-09-18 11:56:28 -04005493 atomic_read(&ss->root->nr_cgrps),
5494 cgroup_ssid_enabled(i));
Tejun Heo30159ec2013-06-25 11:53:37 -07005495
Paul Menagea4243162007-10-18 23:39:35 -07005496 mutex_unlock(&cgroup_mutex);
5497 return 0;
5498}
5499
5500static int cgroupstats_open(struct inode *inode, struct file *file)
5501{
Al Viro9dce07f2008-03-29 03:07:28 +00005502 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07005503}
5504
Alexey Dobriyan828c0952009-10-01 15:43:56 -07005505static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07005506 .open = cgroupstats_open,
5507 .read = seq_read,
5508 .llseek = seq_lseek,
5509 .release = single_release,
5510};
5511
Paul Menageb4f48b62007-10-18 23:39:33 -07005512/**
Tejun Heoeaf797a2014-02-25 10:04:03 -05005513 * cgroup_fork - initialize cgroup related fields during copy_process()
Li Zefana043e3b2008-02-23 15:24:09 -08005514 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07005515 *
Tejun Heoeaf797a2014-02-25 10:04:03 -05005516 * A task is associated with the init_css_set until cgroup_post_fork()
5517 * attaches it to the parent's css_set. Empty cg_list indicates that
5518 * @child isn't holding reference to its css_set.
Paul Menageb4f48b62007-10-18 23:39:33 -07005519 */
5520void cgroup_fork(struct task_struct *child)
5521{
Tejun Heoeaf797a2014-02-25 10:04:03 -05005522 RCU_INIT_POINTER(child->cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07005523 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07005524}
5525
5526/**
Aleksa Sarai7e476822015-06-09 21:32:09 +10005527 * cgroup_can_fork - called on a new task before the process is exposed
5528 * @child: the task in question.
5529 *
5530 * This calls the subsystem can_fork() callbacks. If the can_fork() callback
5531 * returns an error, the fork aborts with that error code. This allows for
5532 * a cgroup subsystem to conditionally allow or deny new forks.
5533 */
Oleg Nesterovb53202e2015-12-03 10:24:08 -05005534int cgroup_can_fork(struct task_struct *child)
Aleksa Sarai7e476822015-06-09 21:32:09 +10005535{
5536 struct cgroup_subsys *ss;
5537 int i, j, ret;
5538
Tejun Heob4e0eea2016-02-22 22:25:46 -05005539 do_each_subsys_mask(ss, i, have_canfork_callback) {
Oleg Nesterovb53202e2015-12-03 10:24:08 -05005540 ret = ss->can_fork(child);
Aleksa Sarai7e476822015-06-09 21:32:09 +10005541 if (ret)
5542 goto out_revert;
Tejun Heob4e0eea2016-02-22 22:25:46 -05005543 } while_each_subsys_mask();
Aleksa Sarai7e476822015-06-09 21:32:09 +10005544
5545 return 0;
5546
5547out_revert:
5548 for_each_subsys(ss, j) {
5549 if (j >= i)
5550 break;
5551 if (ss->cancel_fork)
Oleg Nesterovb53202e2015-12-03 10:24:08 -05005552 ss->cancel_fork(child);
Aleksa Sarai7e476822015-06-09 21:32:09 +10005553 }
5554
5555 return ret;
5556}
5557
5558/**
5559 * cgroup_cancel_fork - called if a fork failed after cgroup_can_fork()
5560 * @child: the task in question
5561 *
5562 * This calls the cancel_fork() callbacks if a fork failed *after*
5563 * cgroup_can_fork() succeded.
5564 */
Oleg Nesterovb53202e2015-12-03 10:24:08 -05005565void cgroup_cancel_fork(struct task_struct *child)
Aleksa Sarai7e476822015-06-09 21:32:09 +10005566{
5567 struct cgroup_subsys *ss;
5568 int i;
5569
5570 for_each_subsys(ss, i)
5571 if (ss->cancel_fork)
Oleg Nesterovb53202e2015-12-03 10:24:08 -05005572 ss->cancel_fork(child);
Aleksa Sarai7e476822015-06-09 21:32:09 +10005573}
5574
5575/**
Li Zefana043e3b2008-02-23 15:24:09 -08005576 * cgroup_post_fork - called on a new task after adding it to the task list
5577 * @child: the task in question
5578 *
Tejun Heo5edee612012-10-16 15:03:14 -07005579 * Adds the task to the list running through its css_set if necessary and
5580 * call the subsystem fork() callbacks. Has to be after the task is
5581 * visible on the task list in case we race with the first call to
Tejun Heo0942eee2013-08-08 20:11:26 -04005582 * cgroup_task_iter_start() - to guarantee that the new task ends up on its
Tejun Heo5edee612012-10-16 15:03:14 -07005583 * list.
Li Zefana043e3b2008-02-23 15:24:09 -08005584 */
Oleg Nesterovb53202e2015-12-03 10:24:08 -05005585void cgroup_post_fork(struct task_struct *child)
Paul Menage817929e2007-10-18 23:39:36 -07005586{
Tejun Heo30159ec2013-06-25 11:53:37 -07005587 struct cgroup_subsys *ss;
Tejun Heo5edee612012-10-16 15:03:14 -07005588 int i;
5589
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005590 /*
Dongsheng Yang251f8c02014-08-25 19:27:52 +08005591 * This may race against cgroup_enable_task_cg_lists(). As that
Tejun Heoeaf797a2014-02-25 10:04:03 -05005592 * function sets use_task_css_set_links before grabbing
5593 * tasklist_lock and we just went through tasklist_lock to add
5594 * @child, it's guaranteed that either we see the set
5595 * use_task_css_set_links or cgroup_enable_task_cg_lists() sees
5596 * @child during its iteration.
5597 *
5598 * If we won the race, @child is associated with %current's
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005599 * css_set. Grabbing css_set_lock guarantees both that the
Tejun Heoeaf797a2014-02-25 10:04:03 -05005600 * association is stable, and, on completion of the parent's
5601 * migration, @child is visible in the source of migration or
5602 * already in the destination cgroup. This guarantee is necessary
5603 * when implementing operations which need to migrate all tasks of
5604 * a cgroup to another.
5605 *
Dongsheng Yang251f8c02014-08-25 19:27:52 +08005606 * Note that if we lose to cgroup_enable_task_cg_lists(), @child
Tejun Heoeaf797a2014-02-25 10:04:03 -05005607 * will remain in init_css_set. This is safe because all tasks are
5608 * in the init_css_set before cg_links is enabled and there's no
5609 * operation which transfers all tasks out of init_css_set.
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005610 */
Paul Menage817929e2007-10-18 23:39:36 -07005611 if (use_task_css_set_links) {
Tejun Heoeaf797a2014-02-25 10:04:03 -05005612 struct css_set *cset;
5613
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005614 spin_lock_bh(&css_set_lock);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005615 cset = task_css_set(current);
Tejun Heoeaf797a2014-02-25 10:04:03 -05005616 if (list_empty(&child->cg_list)) {
Tejun Heoeaf797a2014-02-25 10:04:03 -05005617 get_css_set(cset);
Tejun Heof6d7d042015-10-15 16:41:52 -04005618 css_set_move_task(child, NULL, cset, false);
Tejun Heoeaf797a2014-02-25 10:04:03 -05005619 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005620 spin_unlock_bh(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -07005621 }
Tejun Heo5edee612012-10-16 15:03:14 -07005622
5623 /*
5624 * Call ss->fork(). This must happen after @child is linked on
5625 * css_set; otherwise, @child might change state between ->fork()
5626 * and addition to css_set.
5627 */
Tejun Heob4e0eea2016-02-22 22:25:46 -05005628 do_each_subsys_mask(ss, i, have_fork_callback) {
Oleg Nesterovb53202e2015-12-03 10:24:08 -05005629 ss->fork(child);
Tejun Heob4e0eea2016-02-22 22:25:46 -05005630 } while_each_subsys_mask();
Paul Menage817929e2007-10-18 23:39:36 -07005631}
Tejun Heo5edee612012-10-16 15:03:14 -07005632
Paul Menage817929e2007-10-18 23:39:36 -07005633/**
Paul Menageb4f48b62007-10-18 23:39:33 -07005634 * cgroup_exit - detach cgroup from exiting task
5635 * @tsk: pointer to task_struct of exiting process
5636 *
5637 * Description: Detach cgroup from @tsk and release it.
5638 *
5639 * Note that cgroups marked notify_on_release force every task in
5640 * them to take the global cgroup_mutex mutex when exiting.
5641 * This could impact scaling on very large systems. Be reluctant to
5642 * use notify_on_release cgroups where very high task exit scaling
5643 * is required on large systems.
5644 *
Tejun Heo0e1d7682014-02-25 10:04:03 -05005645 * We set the exiting tasks cgroup to the root cgroup (top_cgroup). We
5646 * call cgroup_exit() while the task is still competent to handle
5647 * notify_on_release(), then leave the task attached to the root cgroup in
5648 * each hierarchy for the remainder of its exit. No need to bother with
5649 * init_css_set refcnting. init_css_set never goes away and we can't race
Li Zefane8604cb2014-03-28 15:18:27 +08005650 * with migration path - PF_EXITING is visible to migration path.
Paul Menageb4f48b62007-10-18 23:39:33 -07005651 */
Li Zefan1ec41832014-03-28 15:22:19 +08005652void cgroup_exit(struct task_struct *tsk)
Paul Menageb4f48b62007-10-18 23:39:33 -07005653{
Tejun Heo30159ec2013-06-25 11:53:37 -07005654 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -07005655 struct css_set *cset;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005656 int i;
Paul Menage817929e2007-10-18 23:39:36 -07005657
5658 /*
Tejun Heo0e1d7682014-02-25 10:04:03 -05005659 * Unlink from @tsk from its css_set. As migration path can't race
Tejun Heo0de09422015-10-15 16:41:49 -04005660 * with us, we can check css_set and cg_list without synchronization.
Paul Menage817929e2007-10-18 23:39:36 -07005661 */
Tejun Heo0de09422015-10-15 16:41:49 -04005662 cset = task_css_set(tsk);
5663
Paul Menage817929e2007-10-18 23:39:36 -07005664 if (!list_empty(&tsk->cg_list)) {
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005665 spin_lock_bh(&css_set_lock);
Tejun Heof6d7d042015-10-15 16:41:52 -04005666 css_set_move_task(tsk, cset, NULL, false);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005667 spin_unlock_bh(&css_set_lock);
Tejun Heo2e91fa72015-10-15 16:41:53 -04005668 } else {
5669 get_css_set(cset);
Paul Menage817929e2007-10-18 23:39:36 -07005670 }
5671
Aleksa Saraicb4a3162015-06-06 10:02:14 +10005672 /* see cgroup_post_fork() for details */
Tejun Heob4e0eea2016-02-22 22:25:46 -05005673 do_each_subsys_mask(ss, i, have_exit_callback) {
Tejun Heo2e91fa72015-10-15 16:41:53 -04005674 ss->exit(tsk);
Tejun Heob4e0eea2016-02-22 22:25:46 -05005675 } while_each_subsys_mask();
Tejun Heo2e91fa72015-10-15 16:41:53 -04005676}
Tejun Heo30159ec2013-06-25 11:53:37 -07005677
Tejun Heo2e91fa72015-10-15 16:41:53 -04005678void cgroup_free(struct task_struct *task)
5679{
5680 struct css_set *cset = task_css_set(task);
Tejun Heoafcf6c82015-10-15 16:41:53 -04005681 struct cgroup_subsys *ss;
5682 int ssid;
5683
Tejun Heob4e0eea2016-02-22 22:25:46 -05005684 do_each_subsys_mask(ss, ssid, have_free_callback) {
Tejun Heoafcf6c82015-10-15 16:41:53 -04005685 ss->free(task);
Tejun Heob4e0eea2016-02-22 22:25:46 -05005686 } while_each_subsys_mask();
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005687
Tejun Heo2e91fa72015-10-15 16:41:53 -04005688 put_css_set(cset);
Paul Menageb4f48b62007-10-18 23:39:33 -07005689}
Paul Menage697f4162007-10-18 23:39:34 -07005690
Paul Menagebd89aab2007-10-18 23:40:44 -07005691static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07005692{
Tejun Heo27bd4db2015-10-15 16:41:50 -04005693 if (notify_on_release(cgrp) && !cgroup_is_populated(cgrp) &&
Zefan Li971ff492014-09-18 16:06:19 +08005694 !css_has_online_children(&cgrp->self) && !cgroup_is_dead(cgrp))
5695 schedule_work(&cgrp->release_agent_work);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005696}
5697
Paul Menage81a6a5c2007-10-18 23:39:38 -07005698/*
5699 * Notify userspace when a cgroup is released, by running the
5700 * configured release agent with the name of the cgroup (path
5701 * relative to the root of cgroup file system) as the argument.
5702 *
5703 * Most likely, this user command will try to rmdir this cgroup.
5704 *
5705 * This races with the possibility that some other task will be
5706 * attached to this cgroup before it is removed, or that some other
5707 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
5708 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
5709 * unused, and this cgroup will be reprieved from its death sentence,
5710 * to continue to serve a useful existence. Next time it's released,
5711 * we will get notified again, if it still has 'notify_on_release' set.
5712 *
5713 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
5714 * means only wait until the task is successfully execve()'d. The
5715 * separate release agent task is forked by call_usermodehelper(),
5716 * then control in this thread returns here, without waiting for the
5717 * release agent task. We don't bother to wait because the caller of
5718 * this routine has no use for the exit status of the release agent
5719 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07005720 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07005721static void cgroup_release_agent(struct work_struct *work)
5722{
Zefan Li971ff492014-09-18 16:06:19 +08005723 struct cgroup *cgrp =
5724 container_of(work, struct cgroup, release_agent_work);
5725 char *pathbuf = NULL, *agentbuf = NULL, *path;
5726 char *argv[3], *envp[3];
5727
Paul Menage81a6a5c2007-10-18 23:39:38 -07005728 mutex_lock(&cgroup_mutex);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005729
Zefan Li971ff492014-09-18 16:06:19 +08005730 pathbuf = kmalloc(PATH_MAX, GFP_KERNEL);
5731 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
5732 if (!pathbuf || !agentbuf)
5733 goto out;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005734
Zefan Li971ff492014-09-18 16:06:19 +08005735 path = cgroup_path(cgrp, pathbuf, PATH_MAX);
5736 if (!path)
5737 goto out;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005738
Zefan Li971ff492014-09-18 16:06:19 +08005739 argv[0] = agentbuf;
5740 argv[1] = path;
5741 argv[2] = NULL;
5742
5743 /* minimal command environment */
5744 envp[0] = "HOME=/";
5745 envp[1] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
5746 envp[2] = NULL;
5747
Paul Menage81a6a5c2007-10-18 23:39:38 -07005748 mutex_unlock(&cgroup_mutex);
Zefan Li971ff492014-09-18 16:06:19 +08005749 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Zefan Li3e2cd912014-09-20 14:35:43 +08005750 goto out_free;
Zefan Li971ff492014-09-18 16:06:19 +08005751out:
Zefan Li3e2cd912014-09-20 14:35:43 +08005752 mutex_unlock(&cgroup_mutex);
5753out_free:
Zefan Li971ff492014-09-18 16:06:19 +08005754 kfree(agentbuf);
5755 kfree(pathbuf);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005756}
Paul Menage8bab8dd2008-04-04 14:29:57 -07005757
5758static int __init cgroup_disable(char *str)
5759{
Tejun Heo30159ec2013-06-25 11:53:37 -07005760 struct cgroup_subsys *ss;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005761 char *token;
Tejun Heo30159ec2013-06-25 11:53:37 -07005762 int i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005763
5764 while ((token = strsep(&str, ",")) != NULL) {
5765 if (!*token)
5766 continue;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005767
Tejun Heo3ed80a62014-02-08 10:36:58 -05005768 for_each_subsys(ss, i) {
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005769 if (strcmp(token, ss->name) &&
5770 strcmp(token, ss->legacy_name))
5771 continue;
Tejun Heoa3e72732015-09-25 16:24:27 -04005772 cgroup_disable_mask |= 1 << i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005773 }
5774 }
5775 return 1;
5776}
5777__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005778
Johannes Weiner223ffb22016-02-11 13:34:49 -05005779static int __init cgroup_no_v1(char *str)
5780{
5781 struct cgroup_subsys *ss;
5782 char *token;
5783 int i;
5784
5785 while ((token = strsep(&str, ",")) != NULL) {
5786 if (!*token)
5787 continue;
5788
5789 if (!strcmp(token, "all")) {
Tejun Heo6e5c8302016-02-22 22:25:47 -05005790 cgroup_no_v1_mask = U16_MAX;
Johannes Weiner223ffb22016-02-11 13:34:49 -05005791 break;
5792 }
5793
5794 for_each_subsys(ss, i) {
5795 if (strcmp(token, ss->name) &&
5796 strcmp(token, ss->legacy_name))
5797 continue;
5798
5799 cgroup_no_v1_mask |= 1 << i;
5800 }
5801 }
5802 return 1;
5803}
5804__setup("cgroup_no_v1=", cgroup_no_v1);
5805
Tejun Heob77d7b62013-08-13 11:01:54 -04005806/**
Tejun Heoec903c02014-05-13 12:11:01 -04005807 * css_tryget_online_from_dir - get corresponding css from a cgroup dentry
Tejun Heo35cf0832013-08-26 18:40:56 -04005808 * @dentry: directory dentry of interest
5809 * @ss: subsystem of interest
Tejun Heob77d7b62013-08-13 11:01:54 -04005810 *
Tejun Heo5a17f542014-02-11 11:52:47 -05005811 * If @dentry is a directory for a cgroup which has @ss enabled on it, try
5812 * to get the corresponding css and return it. If such css doesn't exist
5813 * or can't be pinned, an ERR_PTR value is returned.
Stephane Eraniane5d13672011-02-14 11:20:01 +02005814 */
Tejun Heoec903c02014-05-13 12:11:01 -04005815struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry,
5816 struct cgroup_subsys *ss)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005817{
Tejun Heo2bd59d42014-02-11 11:52:49 -05005818 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
Tejun Heof17fc252016-02-23 10:00:51 -05005819 struct file_system_type *s_type = dentry->d_sb->s_type;
Tejun Heo2bd59d42014-02-11 11:52:49 -05005820 struct cgroup_subsys_state *css = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005821 struct cgroup *cgrp;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005822
Tejun Heo35cf0832013-08-26 18:40:56 -04005823 /* is @dentry a cgroup dir? */
Tejun Heof17fc252016-02-23 10:00:51 -05005824 if ((s_type != &cgroup_fs_type && s_type != &cgroup2_fs_type) ||
5825 !kn || kernfs_type(kn) != KERNFS_DIR)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005826 return ERR_PTR(-EBADF);
5827
Tejun Heo5a17f542014-02-11 11:52:47 -05005828 rcu_read_lock();
5829
Tejun Heo2bd59d42014-02-11 11:52:49 -05005830 /*
5831 * This path doesn't originate from kernfs and @kn could already
5832 * have been or be removed at any point. @kn->priv is RCU
Li Zefana4189482014-09-04 14:43:07 +08005833 * protected for this access. See css_release_work_fn() for details.
Tejun Heo2bd59d42014-02-11 11:52:49 -05005834 */
5835 cgrp = rcu_dereference(kn->priv);
5836 if (cgrp)
5837 css = cgroup_css(cgrp, ss);
Tejun Heo5a17f542014-02-11 11:52:47 -05005838
Tejun Heoec903c02014-05-13 12:11:01 -04005839 if (!css || !css_tryget_online(css))
Tejun Heo5a17f542014-02-11 11:52:47 -05005840 css = ERR_PTR(-ENOENT);
5841
5842 rcu_read_unlock();
5843 return css;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005844}
Stephane Eraniane5d13672011-02-14 11:20:01 +02005845
Li Zefan1cb650b2013-08-19 10:05:24 +08005846/**
5847 * css_from_id - lookup css by id
5848 * @id: the cgroup id
5849 * @ss: cgroup subsys to be looked into
5850 *
5851 * Returns the css if there's valid one with @id, otherwise returns NULL.
5852 * Should be called under rcu_read_lock().
5853 */
5854struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss)
5855{
Tejun Heo6fa49182014-05-04 15:09:13 -04005856 WARN_ON_ONCE(!rcu_read_lock_held());
Vladimir Davydovadbe4272015-04-15 16:13:00 -07005857 return id > 0 ? idr_find(&ss->css_idr, id) : NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005858}
5859
Tejun Heo16af4392015-11-20 15:55:52 -05005860/**
5861 * cgroup_get_from_path - lookup and get a cgroup from its default hierarchy path
5862 * @path: path on the default hierarchy
5863 *
5864 * Find the cgroup at @path on the default hierarchy, increment its
5865 * reference count and return it. Returns pointer to the found cgroup on
5866 * success, ERR_PTR(-ENOENT) if @path doens't exist and ERR_PTR(-ENOTDIR)
5867 * if @path points to a non-directory.
5868 */
5869struct cgroup *cgroup_get_from_path(const char *path)
5870{
5871 struct kernfs_node *kn;
5872 struct cgroup *cgrp;
5873
5874 mutex_lock(&cgroup_mutex);
5875
5876 kn = kernfs_walk_and_get(cgrp_dfl_root.cgrp.kn, path);
5877 if (kn) {
5878 if (kernfs_type(kn) == KERNFS_DIR) {
5879 cgrp = kn->priv;
5880 cgroup_get(cgrp);
5881 } else {
5882 cgrp = ERR_PTR(-ENOTDIR);
5883 }
5884 kernfs_put(kn);
5885 } else {
5886 cgrp = ERR_PTR(-ENOENT);
5887 }
5888
5889 mutex_unlock(&cgroup_mutex);
5890 return cgrp;
5891}
5892EXPORT_SYMBOL_GPL(cgroup_get_from_path);
5893
Tejun Heobd1060a2015-12-07 17:38:53 -05005894/*
5895 * sock->sk_cgrp_data handling. For more info, see sock_cgroup_data
5896 * definition in cgroup-defs.h.
5897 */
5898#ifdef CONFIG_SOCK_CGROUP_DATA
5899
5900#if defined(CONFIG_CGROUP_NET_PRIO) || defined(CONFIG_CGROUP_NET_CLASSID)
5901
Tejun Heo3fa4cc92015-12-14 11:24:06 -05005902DEFINE_SPINLOCK(cgroup_sk_update_lock);
Tejun Heobd1060a2015-12-07 17:38:53 -05005903static bool cgroup_sk_alloc_disabled __read_mostly;
5904
5905void cgroup_sk_alloc_disable(void)
5906{
5907 if (cgroup_sk_alloc_disabled)
5908 return;
5909 pr_info("cgroup: disabling cgroup2 socket matching due to net_prio or net_cls activation\n");
5910 cgroup_sk_alloc_disabled = true;
5911}
5912
5913#else
5914
5915#define cgroup_sk_alloc_disabled false
5916
5917#endif
5918
5919void cgroup_sk_alloc(struct sock_cgroup_data *skcd)
5920{
5921 if (cgroup_sk_alloc_disabled)
5922 return;
5923
5924 rcu_read_lock();
5925
5926 while (true) {
5927 struct css_set *cset;
5928
5929 cset = task_css_set(current);
5930 if (likely(cgroup_tryget(cset->dfl_cgrp))) {
5931 skcd->val = (unsigned long)cset->dfl_cgrp;
5932 break;
5933 }
5934 cpu_relax();
5935 }
5936
5937 rcu_read_unlock();
5938}
5939
5940void cgroup_sk_free(struct sock_cgroup_data *skcd)
5941{
5942 cgroup_put(sock_cgroup_ptr(skcd));
5943}
5944
5945#endif /* CONFIG_SOCK_CGROUP_DATA */
5946
Paul Menagefe693432009-09-23 15:56:20 -07005947#ifdef CONFIG_CGROUP_DEBUG
Tejun Heoeb954192013-08-08 20:11:23 -04005948static struct cgroup_subsys_state *
5949debug_css_alloc(struct cgroup_subsys_state *parent_css)
Paul Menagefe693432009-09-23 15:56:20 -07005950{
5951 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
5952
5953 if (!css)
5954 return ERR_PTR(-ENOMEM);
5955
5956 return css;
5957}
5958
Tejun Heoeb954192013-08-08 20:11:23 -04005959static void debug_css_free(struct cgroup_subsys_state *css)
Paul Menagefe693432009-09-23 15:56:20 -07005960{
Tejun Heoeb954192013-08-08 20:11:23 -04005961 kfree(css);
Paul Menagefe693432009-09-23 15:56:20 -07005962}
5963
Tejun Heo182446d2013-08-08 20:11:24 -04005964static u64 debug_taskcount_read(struct cgroup_subsys_state *css,
5965 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005966{
Tejun Heo182446d2013-08-08 20:11:24 -04005967 return cgroup_task_count(css->cgroup);
Paul Menagefe693432009-09-23 15:56:20 -07005968}
5969
Tejun Heo182446d2013-08-08 20:11:24 -04005970static u64 current_css_set_read(struct cgroup_subsys_state *css,
5971 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005972{
5973 return (u64)(unsigned long)current->cgroups;
5974}
5975
Tejun Heo182446d2013-08-08 20:11:24 -04005976static u64 current_css_set_refcount_read(struct cgroup_subsys_state *css,
Li Zefan03c78cb2013-06-14 11:17:19 +08005977 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005978{
5979 u64 count;
5980
5981 rcu_read_lock();
Tejun Heoa8ad8052013-06-21 15:52:04 -07005982 count = atomic_read(&task_css_set(current)->refcount);
Paul Menagefe693432009-09-23 15:56:20 -07005983 rcu_read_unlock();
5984 return count;
5985}
5986
Tejun Heo2da8ca82013-12-05 12:28:04 -05005987static int current_css_set_cg_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005988{
Tejun Heo69d02062013-06-12 21:04:50 -07005989 struct cgrp_cset_link *link;
Tejun Heo5abb8852013-06-12 21:04:49 -07005990 struct css_set *cset;
Tejun Heoe61734c2014-02-12 09:29:50 -05005991 char *name_buf;
Paul Menage7717f7b2009-09-23 15:56:22 -07005992
Tejun Heoe61734c2014-02-12 09:29:50 -05005993 name_buf = kmalloc(NAME_MAX + 1, GFP_KERNEL);
5994 if (!name_buf)
5995 return -ENOMEM;
Paul Menage7717f7b2009-09-23 15:56:22 -07005996
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005997 spin_lock_bh(&css_set_lock);
Paul Menage7717f7b2009-09-23 15:56:22 -07005998 rcu_read_lock();
Tejun Heo5abb8852013-06-12 21:04:49 -07005999 cset = rcu_dereference(current->cgroups);
Tejun Heo69d02062013-06-12 21:04:50 -07006000 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07006001 struct cgroup *c = link->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -07006002
Tejun Heoa2dd4242014-03-19 10:23:55 -04006003 cgroup_name(c, name_buf, NAME_MAX + 1);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07006004 seq_printf(seq, "Root %d group %s\n",
Tejun Heoa2dd4242014-03-19 10:23:55 -04006005 c->root->hierarchy_id, name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07006006 }
6007 rcu_read_unlock();
Tejun Heof0d9a5f2015-10-15 16:41:53 -04006008 spin_unlock_bh(&css_set_lock);
Tejun Heoe61734c2014-02-12 09:29:50 -05006009 kfree(name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07006010 return 0;
6011}
6012
6013#define MAX_TASKS_SHOWN_PER_CSS 25
Tejun Heo2da8ca82013-12-05 12:28:04 -05006014static int cgroup_css_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07006015{
Tejun Heo2da8ca82013-12-05 12:28:04 -05006016 struct cgroup_subsys_state *css = seq_css(seq);
Tejun Heo69d02062013-06-12 21:04:50 -07006017 struct cgrp_cset_link *link;
Paul Menage7717f7b2009-09-23 15:56:22 -07006018
Tejun Heof0d9a5f2015-10-15 16:41:53 -04006019 spin_lock_bh(&css_set_lock);
Tejun Heo182446d2013-08-08 20:11:24 -04006020 list_for_each_entry(link, &css->cgroup->cset_links, cset_link) {
Tejun Heo69d02062013-06-12 21:04:50 -07006021 struct css_set *cset = link->cset;
Paul Menage7717f7b2009-09-23 15:56:22 -07006022 struct task_struct *task;
6023 int count = 0;
Tejun Heoc7561122014-02-25 10:04:01 -05006024
Tejun Heo5abb8852013-06-12 21:04:49 -07006025 seq_printf(seq, "css_set %p\n", cset);
Tejun Heoc7561122014-02-25 10:04:01 -05006026
Tejun Heo5abb8852013-06-12 21:04:49 -07006027 list_for_each_entry(task, &cset->tasks, cg_list) {
Tejun Heoc7561122014-02-25 10:04:01 -05006028 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
6029 goto overflow;
6030 seq_printf(seq, " task %d\n", task_pid_vnr(task));
Paul Menage7717f7b2009-09-23 15:56:22 -07006031 }
Tejun Heoc7561122014-02-25 10:04:01 -05006032
6033 list_for_each_entry(task, &cset->mg_tasks, cg_list) {
6034 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
6035 goto overflow;
6036 seq_printf(seq, " task %d\n", task_pid_vnr(task));
6037 }
6038 continue;
6039 overflow:
6040 seq_puts(seq, " ...\n");
Paul Menage7717f7b2009-09-23 15:56:22 -07006041 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04006042 spin_unlock_bh(&css_set_lock);
Paul Menage7717f7b2009-09-23 15:56:22 -07006043 return 0;
6044}
6045
Tejun Heo182446d2013-08-08 20:11:24 -04006046static u64 releasable_read(struct cgroup_subsys_state *css, struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07006047{
Tejun Heo27bd4db2015-10-15 16:41:50 -04006048 return (!cgroup_is_populated(css->cgroup) &&
Zefan Lia25eb522014-09-19 16:51:00 +08006049 !css_has_online_children(&css->cgroup->self));
Paul Menagefe693432009-09-23 15:56:20 -07006050}
6051
6052static struct cftype debug_files[] = {
6053 {
Paul Menagefe693432009-09-23 15:56:20 -07006054 .name = "taskcount",
6055 .read_u64 = debug_taskcount_read,
6056 },
6057
6058 {
6059 .name = "current_css_set",
6060 .read_u64 = current_css_set_read,
6061 },
6062
6063 {
6064 .name = "current_css_set_refcount",
6065 .read_u64 = current_css_set_refcount_read,
6066 },
6067
6068 {
Paul Menage7717f7b2009-09-23 15:56:22 -07006069 .name = "current_css_set_cg_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05006070 .seq_show = current_css_set_cg_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07006071 },
6072
6073 {
6074 .name = "cgroup_css_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05006075 .seq_show = cgroup_css_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07006076 },
6077
6078 {
Paul Menagefe693432009-09-23 15:56:20 -07006079 .name = "releasable",
6080 .read_u64 = releasable_read,
6081 },
Paul Menagefe693432009-09-23 15:56:20 -07006082
Tejun Heo4baf6e32012-04-01 12:09:55 -07006083 { } /* terminate */
6084};
Paul Menagefe693432009-09-23 15:56:20 -07006085
Tejun Heo073219e2014-02-08 10:36:58 -05006086struct cgroup_subsys debug_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08006087 .css_alloc = debug_css_alloc,
6088 .css_free = debug_css_free,
Tejun Heo55779642014-07-15 11:05:09 -04006089 .legacy_cftypes = debug_files,
Paul Menagefe693432009-09-23 15:56:20 -07006090};
6091#endif /* CONFIG_CGROUP_DEBUG */