blob: 46529502e9d5ad427a92f0da24ebf98dd3805852 [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 Heof63070d2014-07-08 18:02:57 -0400225static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss,
226 bool visible);
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 Heoace2bee812014-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
681 if (from_cset) {
Tejun Heoed27b9f2015-10-15 16:41:52 -0400682 struct css_task_iter *it, *pos;
683
Tejun Heof6d7d042015-10-15 16:41:52 -0400684 WARN_ON_ONCE(list_empty(&task->cg_list));
Tejun Heoed27b9f2015-10-15 16:41:52 -0400685
686 /*
687 * @task is leaving, advance task iterators which are
688 * pointing to it so that they can resume at the next
689 * position. Advancing an iterator might remove it from
690 * the list, use safe walk. See css_task_iter_advance*()
691 * for details.
692 */
693 list_for_each_entry_safe(it, pos, &from_cset->task_iters,
694 iters_node)
695 if (it->task_pos == &task->cg_list)
696 css_task_iter_advance(it);
697
Tejun Heof6d7d042015-10-15 16:41:52 -0400698 list_del_init(&task->cg_list);
699 if (!css_set_populated(from_cset))
700 css_set_update_populated(from_cset, false);
701 } else {
702 WARN_ON_ONCE(!list_empty(&task->cg_list));
703 }
704
705 if (to_cset) {
706 /*
707 * We are synchronized through cgroup_threadgroup_rwsem
708 * against PF_EXITING setting such that we can't race
709 * against cgroup_exit() changing the css_set to
710 * init_css_set and dropping the old one.
711 */
712 WARN_ON_ONCE(task->flags & PF_EXITING);
713
714 if (!css_set_populated(to_cset))
715 css_set_update_populated(to_cset, true);
716 rcu_assign_pointer(task->cgroups, to_cset);
717 list_add_tail(&task->cg_list, use_mg_tasks ? &to_cset->mg_tasks :
718 &to_cset->tasks);
719 }
720}
721
Paul Menage7717f7b2009-09-23 15:56:22 -0700722/*
723 * hash table for cgroup groups. This improves the performance to find
724 * an existing css_set. This hash doesn't (currently) take into
725 * account cgroups in empty hierarchies.
726 */
Li Zefan472b10532008-04-29 01:00:11 -0700727#define CSS_SET_HASH_BITS 7
Li Zefan0ac801f2013-01-10 11:49:27 +0800728static DEFINE_HASHTABLE(css_set_table, CSS_SET_HASH_BITS);
Li Zefan472b10532008-04-29 01:00:11 -0700729
Li Zefan0ac801f2013-01-10 11:49:27 +0800730static unsigned long css_set_hash(struct cgroup_subsys_state *css[])
Li Zefan472b10532008-04-29 01:00:11 -0700731{
Li Zefan0ac801f2013-01-10 11:49:27 +0800732 unsigned long key = 0UL;
Tejun Heo30159ec2013-06-25 11:53:37 -0700733 struct cgroup_subsys *ss;
734 int i;
Li Zefan472b10532008-04-29 01:00:11 -0700735
Tejun Heo30159ec2013-06-25 11:53:37 -0700736 for_each_subsys(ss, i)
Li Zefan0ac801f2013-01-10 11:49:27 +0800737 key += (unsigned long)css[i];
738 key = (key >> 16) ^ key;
Li Zefan472b10532008-04-29 01:00:11 -0700739
Li Zefan0ac801f2013-01-10 11:49:27 +0800740 return key;
Li Zefan472b10532008-04-29 01:00:11 -0700741}
742
Zefan Lia25eb522014-09-19 16:51:00 +0800743static void put_css_set_locked(struct css_set *cset)
Paul Menageb4f48b62007-10-18 23:39:33 -0700744{
Tejun Heo69d02062013-06-12 21:04:50 -0700745 struct cgrp_cset_link *link, *tmp_link;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400746 struct cgroup_subsys *ss;
747 int ssid;
Tejun Heo5abb8852013-06-12 21:04:49 -0700748
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400749 lockdep_assert_held(&css_set_lock);
Tejun Heo89c55092014-02-13 06:58:40 -0500750
751 if (!atomic_dec_and_test(&cset->refcount))
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700752 return;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700753
Tejun Heo53254f92015-11-23 14:55:41 -0500754 /* This css_set is dead. unlink it and release cgroup and css refs */
755 for_each_subsys(ss, ssid) {
Tejun Heo2d8f2432014-04-23 11:13:15 -0400756 list_del(&cset->e_cset_node[ssid]);
Tejun Heo53254f92015-11-23 14:55:41 -0500757 css_put(cset->subsys[ssid]);
758 }
Tejun Heo5abb8852013-06-12 21:04:49 -0700759 hash_del(&cset->hlist);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700760 css_set_count--;
761
Tejun Heo69d02062013-06-12 21:04:50 -0700762 list_for_each_entry_safe(link, tmp_link, &cset->cgrp_links, cgrp_link) {
Tejun Heo69d02062013-06-12 21:04:50 -0700763 list_del(&link->cset_link);
764 list_del(&link->cgrp_link);
Tejun Heo2ceb2312015-10-15 16:41:51 -0400765 if (cgroup_parent(link->cgrp))
766 cgroup_put(link->cgrp);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700767 kfree(link);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700768 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700769
Tejun Heo5abb8852013-06-12 21:04:49 -0700770 kfree_rcu(cset, rcu_head);
Paul Menage817929e2007-10-18 23:39:36 -0700771}
772
Zefan Lia25eb522014-09-19 16:51:00 +0800773static void put_css_set(struct css_set *cset)
Tejun Heo89c55092014-02-13 06:58:40 -0500774{
775 /*
776 * Ensure that the refcount doesn't hit zero while any readers
777 * can see it. Similar to atomic_dec_and_lock(), but for an
778 * rwlock
779 */
780 if (atomic_add_unless(&cset->refcount, -1, 1))
781 return;
782
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400783 spin_lock_bh(&css_set_lock);
Zefan Lia25eb522014-09-19 16:51:00 +0800784 put_css_set_locked(cset);
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400785 spin_unlock_bh(&css_set_lock);
Tejun Heo89c55092014-02-13 06:58:40 -0500786}
787
Paul Menage817929e2007-10-18 23:39:36 -0700788/*
789 * refcounted get/put for css_set objects
790 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700791static inline void get_css_set(struct css_set *cset)
Paul Menage817929e2007-10-18 23:39:36 -0700792{
Tejun Heo5abb8852013-06-12 21:04:49 -0700793 atomic_inc(&cset->refcount);
Paul Menage817929e2007-10-18 23:39:36 -0700794}
795
Tejun Heob326f9d2013-06-24 15:21:48 -0700796/**
Paul Menage7717f7b2009-09-23 15:56:22 -0700797 * compare_css_sets - helper function for find_existing_css_set().
Tejun Heo5abb8852013-06-12 21:04:49 -0700798 * @cset: candidate css_set being tested
799 * @old_cset: existing css_set for a task
Paul Menage7717f7b2009-09-23 15:56:22 -0700800 * @new_cgrp: cgroup that's being entered by the task
801 * @template: desired set of css pointers in css_set (pre-calculated)
802 *
Li Zefan6f4b7e62013-07-31 16:18:36 +0800803 * Returns true if "cset" matches "old_cset" except for the hierarchy
Paul Menage7717f7b2009-09-23 15:56:22 -0700804 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
805 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700806static bool compare_css_sets(struct css_set *cset,
807 struct css_set *old_cset,
Paul Menage7717f7b2009-09-23 15:56:22 -0700808 struct cgroup *new_cgrp,
809 struct cgroup_subsys_state *template[])
810{
811 struct list_head *l1, *l2;
812
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400813 /*
814 * On the default hierarchy, there can be csets which are
815 * associated with the same set of cgroups but different csses.
816 * Let's first ensure that csses match.
817 */
818 if (memcmp(template, cset->subsys, sizeof(cset->subsys)))
Paul Menage7717f7b2009-09-23 15:56:22 -0700819 return false;
Paul Menage7717f7b2009-09-23 15:56:22 -0700820
821 /*
822 * Compare cgroup pointers in order to distinguish between
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400823 * different cgroups in hierarchies. As different cgroups may
824 * share the same effective css, this comparison is always
825 * necessary.
Paul Menage7717f7b2009-09-23 15:56:22 -0700826 */
Tejun Heo69d02062013-06-12 21:04:50 -0700827 l1 = &cset->cgrp_links;
828 l2 = &old_cset->cgrp_links;
Paul Menage7717f7b2009-09-23 15:56:22 -0700829 while (1) {
Tejun Heo69d02062013-06-12 21:04:50 -0700830 struct cgrp_cset_link *link1, *link2;
Tejun Heo5abb8852013-06-12 21:04:49 -0700831 struct cgroup *cgrp1, *cgrp2;
Paul Menage7717f7b2009-09-23 15:56:22 -0700832
833 l1 = l1->next;
834 l2 = l2->next;
835 /* See if we reached the end - both lists are equal length. */
Tejun Heo69d02062013-06-12 21:04:50 -0700836 if (l1 == &cset->cgrp_links) {
837 BUG_ON(l2 != &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700838 break;
839 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700840 BUG_ON(l2 == &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700841 }
842 /* Locate the cgroups associated with these links. */
Tejun Heo69d02062013-06-12 21:04:50 -0700843 link1 = list_entry(l1, struct cgrp_cset_link, cgrp_link);
844 link2 = list_entry(l2, struct cgrp_cset_link, cgrp_link);
845 cgrp1 = link1->cgrp;
846 cgrp2 = link2->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700847 /* Hierarchies should be linked in the same order. */
Tejun Heo5abb8852013-06-12 21:04:49 -0700848 BUG_ON(cgrp1->root != cgrp2->root);
Paul Menage7717f7b2009-09-23 15:56:22 -0700849
850 /*
851 * If this hierarchy is the hierarchy of the cgroup
852 * that's changing, then we need to check that this
853 * css_set points to the new cgroup; if it's any other
854 * hierarchy, then this css_set should point to the
855 * same cgroup as the old css_set.
856 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700857 if (cgrp1->root == new_cgrp->root) {
858 if (cgrp1 != new_cgrp)
Paul Menage7717f7b2009-09-23 15:56:22 -0700859 return false;
860 } else {
Tejun Heo5abb8852013-06-12 21:04:49 -0700861 if (cgrp1 != cgrp2)
Paul Menage7717f7b2009-09-23 15:56:22 -0700862 return false;
863 }
864 }
865 return true;
866}
867
Tejun Heob326f9d2013-06-24 15:21:48 -0700868/**
869 * find_existing_css_set - init css array and find the matching css_set
870 * @old_cset: the css_set that we're using before the cgroup transition
871 * @cgrp: the cgroup that we're moving into
872 * @template: out param for the new set of csses, should be clear on entry
Paul Menage817929e2007-10-18 23:39:36 -0700873 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700874static struct css_set *find_existing_css_set(struct css_set *old_cset,
875 struct cgroup *cgrp,
876 struct cgroup_subsys_state *template[])
Paul Menage817929e2007-10-18 23:39:36 -0700877{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400878 struct cgroup_root *root = cgrp->root;
Tejun Heo30159ec2013-06-25 11:53:37 -0700879 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -0700880 struct css_set *cset;
Li Zefan0ac801f2013-01-10 11:49:27 +0800881 unsigned long key;
Tejun Heob326f9d2013-06-24 15:21:48 -0700882 int i;
Paul Menage817929e2007-10-18 23:39:36 -0700883
Ben Blumaae8aab2010-03-10 15:22:07 -0800884 /*
885 * Build the set of subsystem state objects that we want to see in the
886 * new css_set. while subsystems can change globally, the entries here
887 * won't change, so no need for locking.
888 */
Tejun Heo30159ec2013-06-25 11:53:37 -0700889 for_each_subsys(ss, i) {
Tejun Heof392e512014-04-23 11:13:14 -0400890 if (root->subsys_mask & (1UL << i)) {
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400891 /*
892 * @ss is in this hierarchy, so we want the
893 * effective css from @cgrp.
894 */
895 template[i] = cgroup_e_css(cgrp, ss);
Paul Menage817929e2007-10-18 23:39:36 -0700896 } else {
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400897 /*
898 * @ss is not in this hierarchy, so we don't want
899 * to change the css.
900 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700901 template[i] = old_cset->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700902 }
903 }
904
Li Zefan0ac801f2013-01-10 11:49:27 +0800905 key = css_set_hash(template);
Tejun Heo5abb8852013-06-12 21:04:49 -0700906 hash_for_each_possible(css_set_table, cset, hlist, key) {
907 if (!compare_css_sets(cset, old_cset, cgrp, template))
Paul Menage7717f7b2009-09-23 15:56:22 -0700908 continue;
909
910 /* This css_set matches what we need */
Tejun Heo5abb8852013-06-12 21:04:49 -0700911 return cset;
Li Zefan472b10532008-04-29 01:00:11 -0700912 }
Paul Menage817929e2007-10-18 23:39:36 -0700913
914 /* No existing cgroup group matched */
915 return NULL;
916}
917
Tejun Heo69d02062013-06-12 21:04:50 -0700918static void free_cgrp_cset_links(struct list_head *links_to_free)
Paul Menage817929e2007-10-18 23:39:36 -0700919{
Tejun Heo69d02062013-06-12 21:04:50 -0700920 struct cgrp_cset_link *link, *tmp_link;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700921
Tejun Heo69d02062013-06-12 21:04:50 -0700922 list_for_each_entry_safe(link, tmp_link, links_to_free, cset_link) {
923 list_del(&link->cset_link);
Paul Menage817929e2007-10-18 23:39:36 -0700924 kfree(link);
925 }
926}
927
Tejun Heo69d02062013-06-12 21:04:50 -0700928/**
929 * allocate_cgrp_cset_links - allocate cgrp_cset_links
930 * @count: the number of links to allocate
931 * @tmp_links: list_head the allocated links are put on
932 *
933 * Allocate @count cgrp_cset_link structures and chain them on @tmp_links
934 * through ->cset_link. Returns 0 on success or -errno.
Li Zefan36553432008-07-29 22:33:19 -0700935 */
Tejun Heo69d02062013-06-12 21:04:50 -0700936static int allocate_cgrp_cset_links(int count, struct list_head *tmp_links)
Li Zefan36553432008-07-29 22:33:19 -0700937{
Tejun Heo69d02062013-06-12 21:04:50 -0700938 struct cgrp_cset_link *link;
Li Zefan36553432008-07-29 22:33:19 -0700939 int i;
Tejun Heo69d02062013-06-12 21:04:50 -0700940
941 INIT_LIST_HEAD(tmp_links);
942
Li Zefan36553432008-07-29 22:33:19 -0700943 for (i = 0; i < count; i++) {
Tejun Heof4f4be22013-06-12 21:04:51 -0700944 link = kzalloc(sizeof(*link), GFP_KERNEL);
Li Zefan36553432008-07-29 22:33:19 -0700945 if (!link) {
Tejun Heo69d02062013-06-12 21:04:50 -0700946 free_cgrp_cset_links(tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700947 return -ENOMEM;
948 }
Tejun Heo69d02062013-06-12 21:04:50 -0700949 list_add(&link->cset_link, tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700950 }
951 return 0;
952}
953
Li Zefanc12f65d2009-01-07 18:07:42 -0800954/**
955 * link_css_set - a helper function to link a css_set to a cgroup
Tejun Heo69d02062013-06-12 21:04:50 -0700956 * @tmp_links: cgrp_cset_link objects allocated by allocate_cgrp_cset_links()
Tejun Heo5abb8852013-06-12 21:04:49 -0700957 * @cset: the css_set to be linked
Li Zefanc12f65d2009-01-07 18:07:42 -0800958 * @cgrp: the destination cgroup
959 */
Tejun Heo69d02062013-06-12 21:04:50 -0700960static void link_css_set(struct list_head *tmp_links, struct css_set *cset,
961 struct cgroup *cgrp)
Li Zefanc12f65d2009-01-07 18:07:42 -0800962{
Tejun Heo69d02062013-06-12 21:04:50 -0700963 struct cgrp_cset_link *link;
Li Zefanc12f65d2009-01-07 18:07:42 -0800964
Tejun Heo69d02062013-06-12 21:04:50 -0700965 BUG_ON(list_empty(tmp_links));
Tejun Heo6803c002014-04-23 11:13:16 -0400966
967 if (cgroup_on_dfl(cgrp))
968 cset->dfl_cgrp = cgrp;
969
Tejun Heo69d02062013-06-12 21:04:50 -0700970 link = list_first_entry(tmp_links, struct cgrp_cset_link, cset_link);
971 link->cset = cset;
Paul Menage7717f7b2009-09-23 15:56:22 -0700972 link->cgrp = cgrp;
Tejun Heo842b5972014-04-25 18:28:02 -0400973
Paul Menage7717f7b2009-09-23 15:56:22 -0700974 /*
Tejun Heo389b9c12015-10-15 16:41:51 -0400975 * Always add links to the tail of the lists so that the lists are
976 * in choronological order.
Paul Menage7717f7b2009-09-23 15:56:22 -0700977 */
Tejun Heo389b9c12015-10-15 16:41:51 -0400978 list_move_tail(&link->cset_link, &cgrp->cset_links);
Tejun Heo69d02062013-06-12 21:04:50 -0700979 list_add_tail(&link->cgrp_link, &cset->cgrp_links);
Tejun Heo2ceb2312015-10-15 16:41:51 -0400980
981 if (cgroup_parent(cgrp))
982 cgroup_get(cgrp);
Li Zefanc12f65d2009-01-07 18:07:42 -0800983}
984
Tejun Heob326f9d2013-06-24 15:21:48 -0700985/**
986 * find_css_set - return a new css_set with one cgroup updated
987 * @old_cset: the baseline css_set
988 * @cgrp: the cgroup to be updated
989 *
990 * Return a new css_set that's equivalent to @old_cset, but with @cgrp
991 * substituted into the appropriate hierarchy.
Paul Menage817929e2007-10-18 23:39:36 -0700992 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700993static struct css_set *find_css_set(struct css_set *old_cset,
994 struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700995{
Tejun Heob326f9d2013-06-24 15:21:48 -0700996 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT] = { };
Tejun Heo5abb8852013-06-12 21:04:49 -0700997 struct css_set *cset;
Tejun Heo69d02062013-06-12 21:04:50 -0700998 struct list_head tmp_links;
999 struct cgrp_cset_link *link;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001000 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +08001001 unsigned long key;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001002 int ssid;
Li Zefan472b10532008-04-29 01:00:11 -07001003
Tejun Heob326f9d2013-06-24 15:21:48 -07001004 lockdep_assert_held(&cgroup_mutex);
1005
Paul Menage817929e2007-10-18 23:39:36 -07001006 /* First see if we already have a cgroup group that matches
1007 * the desired set */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001008 spin_lock_bh(&css_set_lock);
Tejun Heo5abb8852013-06-12 21:04:49 -07001009 cset = find_existing_css_set(old_cset, cgrp, template);
1010 if (cset)
1011 get_css_set(cset);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001012 spin_unlock_bh(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -07001013
Tejun Heo5abb8852013-06-12 21:04:49 -07001014 if (cset)
1015 return cset;
Paul Menage817929e2007-10-18 23:39:36 -07001016
Tejun Heof4f4be22013-06-12 21:04:51 -07001017 cset = kzalloc(sizeof(*cset), GFP_KERNEL);
Tejun Heo5abb8852013-06-12 21:04:49 -07001018 if (!cset)
Paul Menage817929e2007-10-18 23:39:36 -07001019 return NULL;
1020
Tejun Heo69d02062013-06-12 21:04:50 -07001021 /* Allocate all the cgrp_cset_link objects that we'll need */
Tejun Heo9871bf92013-06-24 15:21:47 -07001022 if (allocate_cgrp_cset_links(cgroup_root_count, &tmp_links) < 0) {
Tejun Heo5abb8852013-06-12 21:04:49 -07001023 kfree(cset);
Paul Menage817929e2007-10-18 23:39:36 -07001024 return NULL;
1025 }
1026
Tejun Heo5abb8852013-06-12 21:04:49 -07001027 atomic_set(&cset->refcount, 1);
Tejun Heo69d02062013-06-12 21:04:50 -07001028 INIT_LIST_HEAD(&cset->cgrp_links);
Tejun Heo5abb8852013-06-12 21:04:49 -07001029 INIT_LIST_HEAD(&cset->tasks);
Tejun Heoc7561122014-02-25 10:04:01 -05001030 INIT_LIST_HEAD(&cset->mg_tasks);
Tejun Heo1958d2d2014-02-25 10:04:03 -05001031 INIT_LIST_HEAD(&cset->mg_preload_node);
Tejun Heob3dc0942014-02-25 10:04:01 -05001032 INIT_LIST_HEAD(&cset->mg_node);
Tejun Heoed27b9f2015-10-15 16:41:52 -04001033 INIT_LIST_HEAD(&cset->task_iters);
Tejun Heo5abb8852013-06-12 21:04:49 -07001034 INIT_HLIST_NODE(&cset->hlist);
Paul Menage817929e2007-10-18 23:39:36 -07001035
1036 /* Copy the set of subsystem state objects generated in
1037 * find_existing_css_set() */
Tejun Heo5abb8852013-06-12 21:04:49 -07001038 memcpy(cset->subsys, template, sizeof(cset->subsys));
Paul Menage817929e2007-10-18 23:39:36 -07001039
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001040 spin_lock_bh(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -07001041 /* Add reference counts and links from the new css_set. */
Tejun Heo69d02062013-06-12 21:04:50 -07001042 list_for_each_entry(link, &old_cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07001043 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -07001044
Paul Menage7717f7b2009-09-23 15:56:22 -07001045 if (c->root == cgrp->root)
1046 c = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -07001047 link_css_set(&tmp_links, cset, c);
Paul Menage7717f7b2009-09-23 15:56:22 -07001048 }
Paul Menage817929e2007-10-18 23:39:36 -07001049
Tejun Heo69d02062013-06-12 21:04:50 -07001050 BUG_ON(!list_empty(&tmp_links));
Paul Menage817929e2007-10-18 23:39:36 -07001051
Paul Menage817929e2007-10-18 23:39:36 -07001052 css_set_count++;
Li Zefan472b10532008-04-29 01:00:11 -07001053
Tejun Heo2d8f2432014-04-23 11:13:15 -04001054 /* Add @cset to the hash table */
Tejun Heo5abb8852013-06-12 21:04:49 -07001055 key = css_set_hash(cset->subsys);
1056 hash_add(css_set_table, &cset->hlist, key);
Li Zefan472b10532008-04-29 01:00:11 -07001057
Tejun Heo53254f92015-11-23 14:55:41 -05001058 for_each_subsys(ss, ssid) {
1059 struct cgroup_subsys_state *css = cset->subsys[ssid];
1060
Tejun Heo2d8f2432014-04-23 11:13:15 -04001061 list_add_tail(&cset->e_cset_node[ssid],
Tejun Heo53254f92015-11-23 14:55:41 -05001062 &css->cgroup->e_csets[ssid]);
1063 css_get(css);
1064 }
Tejun Heo2d8f2432014-04-23 11:13:15 -04001065
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001066 spin_unlock_bh(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -07001067
Tejun Heo5abb8852013-06-12 21:04:49 -07001068 return cset;
Paul Menageb4f48b62007-10-18 23:39:33 -07001069}
1070
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001071static struct cgroup_root *cgroup_root_from_kf(struct kernfs_root *kf_root)
Paul Menage7717f7b2009-09-23 15:56:22 -07001072{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001073 struct cgroup *root_cgrp = kf_root->kn->priv;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001074
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001075 return root_cgrp->root;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001076}
1077
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001078static int cgroup_init_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -05001079{
1080 int id;
1081
1082 lockdep_assert_held(&cgroup_mutex);
1083
Tejun Heo985ed672014-03-19 10:23:53 -04001084 id = idr_alloc_cyclic(&cgroup_hierarchy_idr, root, 0, 0, GFP_KERNEL);
Tejun Heof2e85d52014-02-11 11:52:49 -05001085 if (id < 0)
1086 return id;
1087
1088 root->hierarchy_id = id;
1089 return 0;
1090}
1091
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001092static void cgroup_exit_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -05001093{
1094 lockdep_assert_held(&cgroup_mutex);
1095
1096 if (root->hierarchy_id) {
1097 idr_remove(&cgroup_hierarchy_idr, root->hierarchy_id);
1098 root->hierarchy_id = 0;
1099 }
1100}
1101
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001102static void cgroup_free_root(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -05001103{
1104 if (root) {
Chen Hanxiaod0f702e2015-04-23 07:57:33 -04001105 /* hierarchy ID should already have been released */
Tejun Heof2e85d52014-02-11 11:52:49 -05001106 WARN_ON_ONCE(root->hierarchy_id);
1107
1108 idr_destroy(&root->cgroup_idr);
1109 kfree(root);
1110 }
1111}
1112
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001113static void cgroup_destroy_root(struct cgroup_root *root)
Tejun Heo59f52962014-02-11 11:52:49 -05001114{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001115 struct cgroup *cgrp = &root->cgrp;
Tejun Heof2e85d52014-02-11 11:52:49 -05001116 struct cgrp_cset_link *link, *tmp_link;
Tejun Heof2e85d52014-02-11 11:52:49 -05001117
Tejun Heo2bd59d42014-02-11 11:52:49 -05001118 mutex_lock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -05001119
Tejun Heo776f02f2014-02-12 09:29:50 -05001120 BUG_ON(atomic_read(&root->nr_cgrps));
Tejun Heod5c419b2014-05-16 13:22:48 -04001121 BUG_ON(!list_empty(&cgrp->self.children));
Tejun Heof2e85d52014-02-11 11:52:49 -05001122
Tejun Heof2e85d52014-02-11 11:52:49 -05001123 /* Rebind all subsystems back to the default hierarchy */
Tejun Heof392e512014-04-23 11:13:14 -04001124 rebind_subsystems(&cgrp_dfl_root, root->subsys_mask);
Tejun Heof2e85d52014-02-11 11:52:49 -05001125
1126 /*
1127 * Release all the links from cset_links to this hierarchy's
1128 * root cgroup
1129 */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001130 spin_lock_bh(&css_set_lock);
Tejun Heof2e85d52014-02-11 11:52:49 -05001131
1132 list_for_each_entry_safe(link, tmp_link, &cgrp->cset_links, cset_link) {
1133 list_del(&link->cset_link);
1134 list_del(&link->cgrp_link);
1135 kfree(link);
1136 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001137
1138 spin_unlock_bh(&css_set_lock);
Tejun Heof2e85d52014-02-11 11:52:49 -05001139
1140 if (!list_empty(&root->root_list)) {
1141 list_del(&root->root_list);
1142 cgroup_root_count--;
1143 }
1144
1145 cgroup_exit_root_id(root);
1146
1147 mutex_unlock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -05001148
Tejun Heo2bd59d42014-02-11 11:52:49 -05001149 kernfs_destroy_root(root->kf_root);
Tejun Heof2e85d52014-02-11 11:52:49 -05001150 cgroup_free_root(root);
1151}
1152
Tejun Heoceb6a082014-02-25 10:04:02 -05001153/* look up cgroup associated with given css_set on the specified hierarchy */
1154static struct cgroup *cset_cgroup_from_root(struct css_set *cset,
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001155 struct cgroup_root *root)
Paul Menage7717f7b2009-09-23 15:56:22 -07001156{
Paul Menage7717f7b2009-09-23 15:56:22 -07001157 struct cgroup *res = NULL;
1158
Tejun Heo96d365e2014-02-13 06:58:40 -05001159 lockdep_assert_held(&cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001160 lockdep_assert_held(&css_set_lock);
Tejun Heo96d365e2014-02-13 06:58:40 -05001161
Tejun Heo5abb8852013-06-12 21:04:49 -07001162 if (cset == &init_css_set) {
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001163 res = &root->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -07001164 } else {
Tejun Heo69d02062013-06-12 21:04:50 -07001165 struct cgrp_cset_link *link;
1166
1167 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07001168 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -07001169
Paul Menage7717f7b2009-09-23 15:56:22 -07001170 if (c->root == root) {
1171 res = c;
1172 break;
1173 }
1174 }
1175 }
Tejun Heo96d365e2014-02-13 06:58:40 -05001176
Paul Menage7717f7b2009-09-23 15:56:22 -07001177 BUG_ON(!res);
1178 return res;
1179}
1180
1181/*
Tejun Heoceb6a082014-02-25 10:04:02 -05001182 * Return the cgroup for "task" from the given hierarchy. Must be
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001183 * called with cgroup_mutex and css_set_lock held.
Tejun Heoceb6a082014-02-25 10:04:02 -05001184 */
1185static struct cgroup *task_cgroup_from_root(struct task_struct *task,
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001186 struct cgroup_root *root)
Tejun Heoceb6a082014-02-25 10:04:02 -05001187{
1188 /*
1189 * No need to lock the task - since we hold cgroup_mutex the
1190 * task can't change groups, so the only thing that can happen
1191 * is that it exits and its css is set back to init_css_set.
1192 */
1193 return cset_cgroup_from_root(task_css_set(task), root);
1194}
1195
1196/*
Paul Menageddbcc7e2007-10-18 23:39:30 -07001197 * A task must hold cgroup_mutex to modify cgroups.
1198 *
1199 * Any task can increment and decrement the count field without lock.
1200 * So in general, code holding cgroup_mutex can't rely on the count
1201 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -08001202 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -07001203 * means that no tasks are currently attached, therefore there is no
1204 * way a task attached to that cgroup can fork (the other way to
1205 * increment the count). So code holding cgroup_mutex can safely
1206 * assume that if the count is zero, it will stay zero. Similarly, if
1207 * a task holds cgroup_mutex on a cgroup with zero count, it
1208 * knows that the cgroup won't be removed, as cgroup_rmdir()
1209 * needs that mutex.
1210 *
Paul Menageddbcc7e2007-10-18 23:39:30 -07001211 * A cgroup can only be deleted if both its 'count' of using tasks
1212 * is zero, and its list of 'children' cgroups is empty. Since all
1213 * tasks in the system use _some_ cgroup, and since there is always at
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001214 * least one task in the system (init, pid == 1), therefore, root cgroup
Paul Menageddbcc7e2007-10-18 23:39:30 -07001215 * always has either children cgroups and/or using tasks. So we don't
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001216 * need a special hack to ensure that root cgroup cannot be deleted.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001217 *
1218 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -08001219 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -07001220 */
1221
Tejun Heo2bd59d42014-02-11 11:52:49 -05001222static struct kernfs_syscall_ops cgroup_kf_syscall_ops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001223static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -07001224
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05001225static char *cgroup_file_name(struct cgroup *cgrp, const struct cftype *cft,
1226 char *buf)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001227{
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07001228 struct cgroup_subsys *ss = cft->ss;
1229
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05001230 if (cft->ss && !(cft->flags & CFTYPE_NO_PREFIX) &&
1231 !(cgrp->root->flags & CGRP_ROOT_NOPREFIX))
1232 snprintf(buf, CGROUP_FILE_NAME_MAX, "%s.%s",
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07001233 cgroup_on_dfl(cgrp) ? ss->name : ss->legacy_name,
1234 cft->name);
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05001235 else
1236 strncpy(buf, cft->name, CGROUP_FILE_NAME_MAX);
1237 return buf;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001238}
1239
Tejun Heof2e85d52014-02-11 11:52:49 -05001240/**
1241 * cgroup_file_mode - deduce file mode of a control file
1242 * @cft: the control file in question
1243 *
Tejun Heo7dbdb192015-09-18 17:54:23 -04001244 * S_IRUGO for read, S_IWUSR for write.
Tejun Heof2e85d52014-02-11 11:52:49 -05001245 */
1246static umode_t cgroup_file_mode(const struct cftype *cft)
Li Zefan65dff752013-03-01 15:01:56 +08001247{
Tejun Heof2e85d52014-02-11 11:52:49 -05001248 umode_t mode = 0;
Li Zefan65dff752013-03-01 15:01:56 +08001249
Tejun Heof2e85d52014-02-11 11:52:49 -05001250 if (cft->read_u64 || cft->read_s64 || cft->seq_show)
1251 mode |= S_IRUGO;
1252
Tejun Heo7dbdb192015-09-18 17:54:23 -04001253 if (cft->write_u64 || cft->write_s64 || cft->write) {
1254 if (cft->flags & CFTYPE_WORLD_WRITABLE)
1255 mode |= S_IWUGO;
1256 else
1257 mode |= S_IWUSR;
1258 }
Tejun Heof2e85d52014-02-11 11:52:49 -05001259
1260 return mode;
Li Zefan65dff752013-03-01 15:01:56 +08001261}
1262
Tejun Heoa9746d82014-05-13 12:19:22 -04001263/**
Tejun Heo8699b772016-02-22 22:25:46 -05001264 * cgroup_calc_subtree_ss_mask - calculate subtree_ss_mask
Tejun Heoaf0ba672014-07-08 18:02:57 -04001265 * @cgrp: the target cgroup
Tejun Heo0f060de2014-11-18 02:49:50 -05001266 * @subtree_control: the new subtree_control mask to consider
Tejun Heoaf0ba672014-07-08 18:02:57 -04001267 *
1268 * On the default hierarchy, a subsystem may request other subsystems to be
1269 * enabled together through its ->depends_on mask. In such cases, more
1270 * subsystems than specified in "cgroup.subtree_control" may be enabled.
1271 *
Tejun Heo0f060de2014-11-18 02:49:50 -05001272 * This function calculates which subsystems need to be enabled if
1273 * @subtree_control is to be applied to @cgrp. The returned mask is always
1274 * a superset of @subtree_control and follows the usual hierarchy rules.
Tejun Heoaf0ba672014-07-08 18:02:57 -04001275 */
Tejun Heo6e5c8302016-02-22 22:25:47 -05001276static u16 cgroup_calc_subtree_ss_mask(struct cgroup *cgrp, u16 subtree_control)
Tejun Heo667c2492014-07-08 18:02:56 -04001277{
Tejun Heoaf0ba672014-07-08 18:02:57 -04001278 struct cgroup *parent = cgroup_parent(cgrp);
Tejun Heo6e5c8302016-02-22 22:25:47 -05001279 u16 cur_ss_mask = subtree_control;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001280 struct cgroup_subsys *ss;
1281 int ssid;
1282
1283 lockdep_assert_held(&cgroup_mutex);
1284
Tejun Heo0f060de2014-11-18 02:49:50 -05001285 if (!cgroup_on_dfl(cgrp))
1286 return cur_ss_mask;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001287
1288 while (true) {
Tejun Heo6e5c8302016-02-22 22:25:47 -05001289 u16 new_ss_mask = cur_ss_mask;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001290
Tejun Heob4e0eea2016-02-22 22:25:46 -05001291 do_each_subsys_mask(ss, ssid, cur_ss_mask) {
Aleksa Saraia966a4e2015-06-06 10:02:15 +10001292 new_ss_mask |= ss->depends_on;
Tejun Heob4e0eea2016-02-22 22:25:46 -05001293 } while_each_subsys_mask();
Tejun Heoaf0ba672014-07-08 18:02:57 -04001294
1295 /*
1296 * Mask out subsystems which aren't available. This can
1297 * happen only if some depended-upon subsystems were bound
1298 * to non-default hierarchies.
1299 */
1300 if (parent)
Tejun Heo8699b772016-02-22 22:25:46 -05001301 new_ss_mask &= parent->subtree_ss_mask;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001302 else
1303 new_ss_mask &= cgrp->root->subsys_mask;
1304
1305 if (new_ss_mask == cur_ss_mask)
1306 break;
1307 cur_ss_mask = new_ss_mask;
1308 }
1309
Tejun Heo0f060de2014-11-18 02:49:50 -05001310 return cur_ss_mask;
1311}
1312
1313/**
Tejun Heo8699b772016-02-22 22:25:46 -05001314 * cgroup_refresh_subtree_ss_mask - update subtree_ss_mask
Tejun Heo0f060de2014-11-18 02:49:50 -05001315 * @cgrp: the target cgroup
1316 *
Tejun Heo8699b772016-02-22 22:25:46 -05001317 * Update @cgrp->subtree_ss_mask according to the current
1318 * @cgrp->subtree_control using cgroup_calc_subtree_ss_mask().
Tejun Heo0f060de2014-11-18 02:49:50 -05001319 */
Tejun Heo8699b772016-02-22 22:25:46 -05001320static void cgroup_refresh_subtree_ss_mask(struct cgroup *cgrp)
Tejun Heo0f060de2014-11-18 02:49:50 -05001321{
Tejun Heo8699b772016-02-22 22:25:46 -05001322 cgrp->subtree_ss_mask =
1323 cgroup_calc_subtree_ss_mask(cgrp, cgrp->subtree_control);
Tejun Heo667c2492014-07-08 18:02:56 -04001324}
1325
Tejun Heoa9746d82014-05-13 12:19:22 -04001326/**
1327 * cgroup_kn_unlock - unlocking helper for cgroup kernfs methods
1328 * @kn: the kernfs_node being serviced
1329 *
1330 * This helper undoes cgroup_kn_lock_live() and should be invoked before
1331 * the method finishes if locking succeeded. Note that once this function
1332 * returns the cgroup returned by cgroup_kn_lock_live() may become
1333 * inaccessible any time. If the caller intends to continue to access the
1334 * cgroup, it should pin it before invoking this function.
1335 */
1336static void cgroup_kn_unlock(struct kernfs_node *kn)
1337{
1338 struct cgroup *cgrp;
1339
1340 if (kernfs_type(kn) == KERNFS_DIR)
1341 cgrp = kn->priv;
1342 else
1343 cgrp = kn->parent->priv;
1344
1345 mutex_unlock(&cgroup_mutex);
Tejun Heoa9746d82014-05-13 12:19:22 -04001346
1347 kernfs_unbreak_active_protection(kn);
1348 cgroup_put(cgrp);
1349}
1350
1351/**
1352 * cgroup_kn_lock_live - locking helper for cgroup kernfs methods
1353 * @kn: the kernfs_node being serviced
1354 *
1355 * This helper is to be used by a cgroup kernfs method currently servicing
1356 * @kn. It breaks the active protection, performs cgroup locking and
1357 * verifies that the associated cgroup is alive. Returns the cgroup if
1358 * alive; otherwise, %NULL. A successful return should be undone by a
1359 * matching cgroup_kn_unlock() invocation.
1360 *
1361 * Any cgroup kernfs method implementation which requires locking the
1362 * associated cgroup should use this helper. It avoids nesting cgroup
1363 * locking under kernfs active protection and allows all kernfs operations
1364 * including self-removal.
1365 */
1366static struct cgroup *cgroup_kn_lock_live(struct kernfs_node *kn)
1367{
1368 struct cgroup *cgrp;
1369
1370 if (kernfs_type(kn) == KERNFS_DIR)
1371 cgrp = kn->priv;
1372 else
1373 cgrp = kn->parent->priv;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001374
Tejun Heo2bd59d42014-02-11 11:52:49 -05001375 /*
Tejun Heo01f64742014-05-13 12:19:23 -04001376 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoa9746d82014-05-13 12:19:22 -04001377 * active_ref. cgroup liveliness check alone provides enough
1378 * protection against removal. Ensure @cgrp stays accessible and
1379 * break the active_ref protection.
Tejun Heo2bd59d42014-02-11 11:52:49 -05001380 */
Li Zefanaa323622014-09-04 14:43:38 +08001381 if (!cgroup_tryget(cgrp))
1382 return NULL;
Tejun Heoa9746d82014-05-13 12:19:22 -04001383 kernfs_break_active_protection(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001384
Tejun Heoa9746d82014-05-13 12:19:22 -04001385 mutex_lock(&cgroup_mutex);
1386
1387 if (!cgroup_is_dead(cgrp))
1388 return cgrp;
1389
1390 cgroup_kn_unlock(kn);
1391 return NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001392}
1393
Li Zefan2739d3c2013-01-21 18:18:33 +08001394static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001395{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001396 char name[CGROUP_FILE_NAME_MAX];
Paul Menageddbcc7e2007-10-18 23:39:30 -07001397
Tejun Heo01f64742014-05-13 12:19:23 -04001398 lockdep_assert_held(&cgroup_mutex);
Tejun Heo34c06252015-11-05 00:12:24 -05001399
1400 if (cft->file_offset) {
1401 struct cgroup_subsys_state *css = cgroup_css(cgrp, cft->ss);
1402 struct cgroup_file *cfile = (void *)css + cft->file_offset;
1403
1404 spin_lock_irq(&cgroup_file_kn_lock);
1405 cfile->kn = NULL;
1406 spin_unlock_irq(&cgroup_file_kn_lock);
1407 }
1408
Tejun Heo2bd59d42014-02-11 11:52:49 -05001409 kernfs_remove_by_name(cgrp->kn, cgroup_file_name(cgrp, cft, name));
Tejun Heo05ef1d72012-04-01 12:09:56 -07001410}
1411
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001412/**
Tejun Heo4df8dc92015-09-18 17:54:23 -04001413 * css_clear_dir - remove subsys files in a cgroup directory
1414 * @css: taget css
1415 * @cgrp_override: specify if target cgroup is different from css->cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001416 */
Tejun Heo4df8dc92015-09-18 17:54:23 -04001417static void css_clear_dir(struct cgroup_subsys_state *css,
1418 struct cgroup *cgrp_override)
Tejun Heo05ef1d72012-04-01 12:09:56 -07001419{
Tejun Heo4df8dc92015-09-18 17:54:23 -04001420 struct cgroup *cgrp = cgrp_override ?: css->cgroup;
1421 struct cftype *cfts;
Tejun Heo05ef1d72012-04-01 12:09:56 -07001422
Tejun Heo4df8dc92015-09-18 17:54:23 -04001423 list_for_each_entry(cfts, &css->ss->cfts, node)
1424 cgroup_addrm_files(css, cgrp, cfts, false);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001425}
1426
Tejun Heoccdca212015-09-18 17:54:23 -04001427/**
Tejun Heo4df8dc92015-09-18 17:54:23 -04001428 * css_populate_dir - create subsys files in a cgroup directory
1429 * @css: target css
1430 * @cgrp_overried: specify if target cgroup is different from css->cgroup
Tejun Heoccdca212015-09-18 17:54:23 -04001431 *
1432 * On failure, no file is added.
1433 */
Tejun Heo4df8dc92015-09-18 17:54:23 -04001434static int css_populate_dir(struct cgroup_subsys_state *css,
1435 struct cgroup *cgrp_override)
Tejun Heoccdca212015-09-18 17:54:23 -04001436{
Tejun Heo4df8dc92015-09-18 17:54:23 -04001437 struct cgroup *cgrp = cgrp_override ?: css->cgroup;
1438 struct cftype *cfts, *failed_cfts;
1439 int ret;
Tejun Heoccdca212015-09-18 17:54:23 -04001440
Tejun Heo4df8dc92015-09-18 17:54:23 -04001441 if (!css->ss) {
1442 if (cgroup_on_dfl(cgrp))
1443 cfts = cgroup_dfl_base_files;
1444 else
1445 cfts = cgroup_legacy_base_files;
Tejun Heoccdca212015-09-18 17:54:23 -04001446
Tejun Heo4df8dc92015-09-18 17:54:23 -04001447 return cgroup_addrm_files(&cgrp->self, cgrp, cfts, true);
1448 }
Tejun Heoccdca212015-09-18 17:54:23 -04001449
Tejun Heo4df8dc92015-09-18 17:54:23 -04001450 list_for_each_entry(cfts, &css->ss->cfts, node) {
1451 ret = cgroup_addrm_files(css, cgrp, cfts, true);
1452 if (ret < 0) {
1453 failed_cfts = cfts;
1454 goto err;
Tejun Heoccdca212015-09-18 17:54:23 -04001455 }
1456 }
1457 return 0;
1458err:
Tejun Heo4df8dc92015-09-18 17:54:23 -04001459 list_for_each_entry(cfts, &css->ss->cfts, node) {
1460 if (cfts == failed_cfts)
1461 break;
1462 cgroup_addrm_files(css, cgrp, cfts, false);
1463 }
Tejun Heoccdca212015-09-18 17:54:23 -04001464 return ret;
1465}
1466
Tejun Heo6e5c8302016-02-22 22:25:47 -05001467static int rebind_subsystems(struct cgroup_root *dst_root, u16 ss_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001468{
Tejun Heo1ada4832015-09-18 17:54:23 -04001469 struct cgroup *dcgrp = &dst_root->cgrp;
Tejun Heo30159ec2013-06-25 11:53:37 -07001470 struct cgroup_subsys *ss;
Tejun Heo6e5c8302016-02-22 22:25:47 -05001471 u16 tmp_ss_mask;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001472 int ssid, i, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001473
Tejun Heoace2bee812014-02-11 11:52:47 -05001474 lockdep_assert_held(&cgroup_mutex);
Ben Blumaae8aab2010-03-10 15:22:07 -08001475
Tejun Heob4e0eea2016-02-22 22:25:46 -05001476 do_each_subsys_mask(ss, ssid, ss_mask) {
Tejun Heo7fd8c562014-04-23 11:13:16 -04001477 /* if @ss has non-root csses attached to it, can't move */
1478 if (css_next_child(NULL, cgroup_css(&ss->root->cgrp, ss)))
Tejun Heo3ed80a62014-02-08 10:36:58 -05001479 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001480
Tejun Heo5df36032014-03-19 10:23:54 -04001481 /* can't move between two non-dummy roots either */
Tejun Heo7fd8c562014-04-23 11:13:16 -04001482 if (ss->root != &cgrp_dfl_root && dst_root != &cgrp_dfl_root)
Tejun Heo5df36032014-03-19 10:23:54 -04001483 return -EBUSY;
Tejun Heob4e0eea2016-02-22 22:25:46 -05001484 } while_each_subsys_mask();
Paul Menageddbcc7e2007-10-18 23:39:30 -07001485
Tejun Heo5533e012014-05-14 19:33:07 -04001486 /* skip creating root files on dfl_root for inhibited subsystems */
1487 tmp_ss_mask = ss_mask;
1488 if (dst_root == &cgrp_dfl_root)
Tejun Heoa7165262016-02-23 10:00:50 -05001489 tmp_ss_mask &= ~cgrp_dfl_inhibit_ss_mask;
Tejun Heo5533e012014-05-14 19:33:07 -04001490
Tejun Heob4e0eea2016-02-22 22:25:46 -05001491 do_each_subsys_mask(ss, ssid, tmp_ss_mask) {
Tejun Heo4df8dc92015-09-18 17:54:23 -04001492 struct cgroup *scgrp = &ss->root->cgrp;
1493 int tssid;
1494
1495 ret = css_populate_dir(cgroup_css(scgrp, ss), dcgrp);
1496 if (!ret)
1497 continue;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001498
Tejun Heoa2dd4242014-03-19 10:23:55 -04001499 /*
1500 * Rebinding back to the default root is not allowed to
1501 * fail. Using both default and non-default roots should
1502 * be rare. Moving subsystems back and forth even more so.
1503 * Just warn about it and continue.
1504 */
Tejun Heo4df8dc92015-09-18 17:54:23 -04001505 if (dst_root == &cgrp_dfl_root) {
Tejun Heoa7165262016-02-23 10:00:50 -05001506 if (cgrp_dfl_visible) {
Tejun Heo6e5c8302016-02-22 22:25:47 -05001507 pr_warn("failed to create files (%d) while rebinding 0x%x to default root\n",
Tejun Heo4df8dc92015-09-18 17:54:23 -04001508 ret, ss_mask);
1509 pr_warn("you may retry by moving them to a different hierarchy and unbinding\n");
1510 }
1511 continue;
Tejun Heoa2dd4242014-03-19 10:23:55 -04001512 }
Tejun Heo4df8dc92015-09-18 17:54:23 -04001513
Tejun Heob4e0eea2016-02-22 22:25:46 -05001514 do_each_subsys_mask(ss, tssid, tmp_ss_mask) {
Tejun Heo4df8dc92015-09-18 17:54:23 -04001515 if (tssid == ssid)
1516 break;
1517 css_clear_dir(cgroup_css(scgrp, ss), dcgrp);
Tejun Heob4e0eea2016-02-22 22:25:46 -05001518 } while_each_subsys_mask();
Tejun Heo4df8dc92015-09-18 17:54:23 -04001519 return ret;
Tejun Heob4e0eea2016-02-22 22:25:46 -05001520 } while_each_subsys_mask();
Tejun Heo31261212013-06-28 17:07:30 -07001521
1522 /*
1523 * Nothing can fail from this point on. Remove files for the
1524 * removed subsystems and rebind each subsystem.
1525 */
Tejun Heob4e0eea2016-02-22 22:25:46 -05001526 do_each_subsys_mask(ss, ssid, ss_mask) {
Tejun Heo1ada4832015-09-18 17:54:23 -04001527 struct cgroup_root *src_root = ss->root;
1528 struct cgroup *scgrp = &src_root->cgrp;
1529 struct cgroup_subsys_state *css = cgroup_css(scgrp, ss);
Tejun Heo2d8f2432014-04-23 11:13:15 -04001530 struct css_set *cset;
Tejun Heo30159ec2013-06-25 11:53:37 -07001531
Tejun Heo1ada4832015-09-18 17:54:23 -04001532 WARN_ON(!css || cgroup_css(dcgrp, ss));
Tejun Heo73e80ed2013-08-13 11:01:55 -04001533
Tejun Heo4df8dc92015-09-18 17:54:23 -04001534 css_clear_dir(css, NULL);
1535
Tejun Heo1ada4832015-09-18 17:54:23 -04001536 RCU_INIT_POINTER(scgrp->subsys[ssid], NULL);
1537 rcu_assign_pointer(dcgrp->subsys[ssid], css);
Tejun Heo5df36032014-03-19 10:23:54 -04001538 ss->root = dst_root;
Tejun Heo1ada4832015-09-18 17:54:23 -04001539 css->cgroup = dcgrp;
Tejun Heoa8a648c42013-06-24 15:21:47 -07001540
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001541 spin_lock_bh(&css_set_lock);
Tejun Heo2d8f2432014-04-23 11:13:15 -04001542 hash_for_each(css_set_table, i, cset, hlist)
1543 list_move_tail(&cset->e_cset_node[ss->id],
Tejun Heo1ada4832015-09-18 17:54:23 -04001544 &dcgrp->e_csets[ss->id]);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001545 spin_unlock_bh(&css_set_lock);
Tejun Heo2d8f2432014-04-23 11:13:15 -04001546
Tejun Heof392e512014-04-23 11:13:14 -04001547 src_root->subsys_mask &= ~(1 << ssid);
Tejun Heo1ada4832015-09-18 17:54:23 -04001548 scgrp->subtree_control &= ~(1 << ssid);
Tejun Heo8699b772016-02-22 22:25:46 -05001549 cgroup_refresh_subtree_ss_mask(scgrp);
Tejun Heof392e512014-04-23 11:13:14 -04001550
Tejun Heobd53d612014-04-23 11:13:16 -04001551 /* default hierarchy doesn't enable controllers by default */
Tejun Heof392e512014-04-23 11:13:14 -04001552 dst_root->subsys_mask |= 1 << ssid;
Tejun Heo49d1dc42015-09-18 11:56:28 -04001553 if (dst_root == &cgrp_dfl_root) {
1554 static_branch_enable(cgroup_subsys_on_dfl_key[ssid]);
1555 } else {
Tejun Heo1ada4832015-09-18 17:54:23 -04001556 dcgrp->subtree_control |= 1 << ssid;
Tejun Heo8699b772016-02-22 22:25:46 -05001557 cgroup_refresh_subtree_ss_mask(dcgrp);
Tejun Heo49d1dc42015-09-18 11:56:28 -04001558 static_branch_disable(cgroup_subsys_on_dfl_key[ssid]);
Tejun Heo667c2492014-07-08 18:02:56 -04001559 }
Tejun Heo73e80ed2013-08-13 11:01:55 -04001560
Tejun Heo5df36032014-03-19 10:23:54 -04001561 if (ss->bind)
1562 ss->bind(css);
Tejun Heob4e0eea2016-02-22 22:25:46 -05001563 } while_each_subsys_mask();
Paul Menageddbcc7e2007-10-18 23:39:30 -07001564
Tejun Heo1ada4832015-09-18 17:54:23 -04001565 kernfs_activate(dcgrp->kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001566 return 0;
1567}
1568
Tejun Heo2bd59d42014-02-11 11:52:49 -05001569static int cgroup_show_options(struct seq_file *seq,
1570 struct kernfs_root *kf_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001571{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001572 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001573 struct cgroup_subsys *ss;
Tejun Heob85d2042013-12-06 15:11:57 -05001574 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001575
Tejun Heod98817d2015-08-18 13:58:16 -07001576 if (root != &cgrp_dfl_root)
1577 for_each_subsys(ss, ssid)
1578 if (root->subsys_mask & (1 << ssid))
Kees Cook61e57c02015-09-08 14:58:22 -07001579 seq_show_option(seq, ss->legacy_name, NULL);
Tejun Heo93438622013-04-14 20:15:25 -07001580 if (root->flags & CGRP_ROOT_NOPREFIX)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001581 seq_puts(seq, ",noprefix");
Tejun Heo93438622013-04-14 20:15:25 -07001582 if (root->flags & CGRP_ROOT_XATTR)
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001583 seq_puts(seq, ",xattr");
Tejun Heo69e943b2014-02-08 10:36:58 -05001584
1585 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001586 if (strlen(root->release_agent_path))
Kees Cooka068acf2015-09-04 15:44:57 -07001587 seq_show_option(seq, "release_agent",
1588 root->release_agent_path);
Tejun Heo69e943b2014-02-08 10:36:58 -05001589 spin_unlock(&release_agent_path_lock);
1590
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001591 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags))
Daniel Lezcano97978e62010-10-27 15:33:35 -07001592 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001593 if (strlen(root->name))
Kees Cooka068acf2015-09-04 15:44:57 -07001594 seq_show_option(seq, "name", root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001595 return 0;
1596}
1597
1598struct cgroup_sb_opts {
Tejun Heo6e5c8302016-02-22 22:25:47 -05001599 u16 subsys_mask;
Tejun Heo69dfa002014-05-04 15:09:13 -04001600 unsigned int flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001601 char *release_agent;
Tejun Heo2260e7f2012-11-19 08:13:38 -08001602 bool cpuset_clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001603 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001604 /* User explicitly requested empty subsystem */
1605 bool none;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001606};
1607
Ben Blumcf5d5942010-03-10 15:22:09 -08001608static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001609{
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001610 char *token, *o = data;
1611 bool all_ss = false, one_ss = false;
Tejun Heo6e5c8302016-02-22 22:25:47 -05001612 u16 mask = U16_MAX;
Tejun Heo30159ec2013-06-25 11:53:37 -07001613 struct cgroup_subsys *ss;
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001614 int nr_opts = 0;
Tejun Heo30159ec2013-06-25 11:53:37 -07001615 int i;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001616
1617#ifdef CONFIG_CPUSETS
Tejun Heo6e5c8302016-02-22 22:25:47 -05001618 mask = ~((u16)1 << cpuset_cgrp_id);
Li Zefanf9ab5b52009-06-17 16:26:33 -07001619#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001620
Paul Menagec6d57f32009-09-23 15:56:19 -07001621 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001622
1623 while ((token = strsep(&o, ",")) != NULL) {
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001624 nr_opts++;
1625
Paul Menageddbcc7e2007-10-18 23:39:30 -07001626 if (!*token)
1627 return -EINVAL;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001628 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001629 /* Explicitly have no subsystems */
1630 opts->none = true;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001631 continue;
1632 }
1633 if (!strcmp(token, "all")) {
1634 /* Mutually exclusive option 'all' + subsystem name */
1635 if (one_ss)
1636 return -EINVAL;
1637 all_ss = true;
1638 continue;
1639 }
1640 if (!strcmp(token, "noprefix")) {
Tejun Heo93438622013-04-14 20:15:25 -07001641 opts->flags |= CGRP_ROOT_NOPREFIX;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001642 continue;
1643 }
1644 if (!strcmp(token, "clone_children")) {
Tejun Heo2260e7f2012-11-19 08:13:38 -08001645 opts->cpuset_clone_children = true;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001646 continue;
1647 }
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001648 if (!strcmp(token, "xattr")) {
Tejun Heo93438622013-04-14 20:15:25 -07001649 opts->flags |= CGRP_ROOT_XATTR;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001650 continue;
1651 }
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001652 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001653 /* Specifying two release agents is forbidden */
1654 if (opts->release_agent)
1655 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001656 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001657 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001658 if (!opts->release_agent)
1659 return -ENOMEM;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001660 continue;
1661 }
1662 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001663 const char *name = token + 5;
1664 /* Can't specify an empty name */
1665 if (!strlen(name))
1666 return -EINVAL;
1667 /* Must match [\w.-]+ */
1668 for (i = 0; i < strlen(name); i++) {
1669 char c = name[i];
1670 if (isalnum(c))
1671 continue;
1672 if ((c == '.') || (c == '-') || (c == '_'))
1673 continue;
1674 return -EINVAL;
1675 }
1676 /* Specifying two names is forbidden */
1677 if (opts->name)
1678 return -EINVAL;
1679 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001680 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001681 GFP_KERNEL);
1682 if (!opts->name)
1683 return -ENOMEM;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001684
1685 continue;
1686 }
1687
Tejun Heo30159ec2013-06-25 11:53:37 -07001688 for_each_subsys(ss, i) {
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07001689 if (strcmp(token, ss->legacy_name))
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001690 continue;
Tejun Heofc5ed1e2015-09-18 11:56:28 -04001691 if (!cgroup_ssid_enabled(i))
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001692 continue;
Johannes Weiner223ffb22016-02-11 13:34:49 -05001693 if (cgroup_ssid_no_v1(i))
1694 continue;
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001695
1696 /* Mutually exclusive option 'all' + subsystem name */
1697 if (all_ss)
1698 return -EINVAL;
Tejun Heo69dfa002014-05-04 15:09:13 -04001699 opts->subsys_mask |= (1 << i);
Daniel Lezcano32a8cf232010-10-27 15:33:37 -07001700 one_ss = true;
1701
1702 break;
1703 }
1704 if (i == CGROUP_SUBSYS_COUNT)
1705 return -ENOENT;
1706 }
1707
Li Zefanf9ab5b52009-06-17 16:26:33 -07001708 /*
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001709 * If the 'all' option was specified select all the subsystems,
1710 * otherwise if 'none', 'name=' and a subsystem name options were
1711 * not specified, let's default to 'all'
1712 */
1713 if (all_ss || (!one_ss && !opts->none && !opts->name))
1714 for_each_subsys(ss, i)
Johannes Weiner223ffb22016-02-11 13:34:49 -05001715 if (cgroup_ssid_enabled(i) && !cgroup_ssid_no_v1(i))
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001716 opts->subsys_mask |= (1 << i);
1717
1718 /*
1719 * We either have to specify by name or by subsystems. (So all
1720 * empty hierarchies must have a name).
1721 */
1722 if (!opts->subsys_mask && !opts->name)
1723 return -EINVAL;
1724
1725 /*
Li Zefanf9ab5b52009-06-17 16:26:33 -07001726 * Option noprefix was introduced just for backward compatibility
1727 * with the old cpuset, so we allow noprefix only if mounting just
1728 * the cpuset subsystem.
1729 */
Tejun Heo93438622013-04-14 20:15:25 -07001730 if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask))
Li Zefanf9ab5b52009-06-17 16:26:33 -07001731 return -EINVAL;
1732
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001733 /* Can't specify "none" and some subsystems */
Aristeu Rozanskia1a71b42012-08-23 16:53:31 -04001734 if (opts->subsys_mask && opts->none)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001735 return -EINVAL;
1736
Paul Menageddbcc7e2007-10-18 23:39:30 -07001737 return 0;
1738}
1739
Tejun Heo2bd59d42014-02-11 11:52:49 -05001740static int cgroup_remount(struct kernfs_root *kf_root, int *flags, char *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001741{
1742 int ret = 0;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001743 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001744 struct cgroup_sb_opts opts;
Tejun Heo6e5c8302016-02-22 22:25:47 -05001745 u16 added_mask, removed_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001746
Tejun Heoaa6ec292014-07-09 10:08:08 -04001747 if (root == &cgrp_dfl_root) {
1748 pr_err("remount is not allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001749 return -EINVAL;
1750 }
1751
Paul Menageddbcc7e2007-10-18 23:39:30 -07001752 mutex_lock(&cgroup_mutex);
1753
1754 /* See what subsystems are wanted */
1755 ret = parse_cgroupfs_options(data, &opts);
1756 if (ret)
1757 goto out_unlock;
1758
Tejun Heof392e512014-04-23 11:13:14 -04001759 if (opts.subsys_mask != root->subsys_mask || opts.release_agent)
Joe Perchesed3d2612014-04-25 18:28:03 -04001760 pr_warn("option changes via remount are deprecated (pid=%d comm=%s)\n",
Jianyu Zhana2a1f9e2014-04-25 18:28:03 -04001761 task_tgid_nr(current), current->comm);
Tejun Heo8b5a5a92012-04-01 12:09:54 -07001762
Tejun Heof392e512014-04-23 11:13:14 -04001763 added_mask = opts.subsys_mask & ~root->subsys_mask;
1764 removed_mask = root->subsys_mask & ~opts.subsys_mask;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001765
Ben Blumcf5d5942010-03-10 15:22:09 -08001766 /* Don't allow flags or name to change at remount */
Tejun Heo7450e902014-07-09 10:08:07 -04001767 if ((opts.flags ^ root->flags) ||
Ben Blumcf5d5942010-03-10 15:22:09 -08001768 (opts.name && strcmp(opts.name, root->name))) {
Tejun Heo69dfa002014-05-04 15:09:13 -04001769 pr_err("option or name mismatch, new: 0x%x \"%s\", old: 0x%x \"%s\"\n",
Tejun Heo7450e902014-07-09 10:08:07 -04001770 opts.flags, opts.name ?: "", root->flags, root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001771 ret = -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001772 goto out_unlock;
1773 }
1774
Tejun Heof172e672013-06-28 17:07:30 -07001775 /* remounting is not allowed for populated hierarchies */
Tejun Heod5c419b2014-05-16 13:22:48 -04001776 if (!list_empty(&root->cgrp.self.children)) {
Tejun Heof172e672013-06-28 17:07:30 -07001777 ret = -EBUSY;
Li Zefan0670e082009-04-02 16:57:30 -07001778 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001779 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001780
Tejun Heo5df36032014-03-19 10:23:54 -04001781 ret = rebind_subsystems(root, added_mask);
Tejun Heo31261212013-06-28 17:07:30 -07001782 if (ret)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001783 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001784
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001785 rebind_subsystems(&cgrp_dfl_root, removed_mask);
Tejun Heo5df36032014-03-19 10:23:54 -04001786
Tejun Heo69e943b2014-02-08 10:36:58 -05001787 if (opts.release_agent) {
1788 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001789 strcpy(root->release_agent_path, opts.release_agent);
Tejun Heo69e943b2014-02-08 10:36:58 -05001790 spin_unlock(&release_agent_path_lock);
1791 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001792 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001793 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001794 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001795 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001796 return ret;
1797}
1798
Tejun Heoafeb0f92014-02-13 06:58:39 -05001799/*
1800 * To reduce the fork() overhead for systems that are not actually using
1801 * their cgroups capability, we don't maintain the lists running through
1802 * each css_set to its tasks until we see the list actually used - in other
1803 * words after the first mount.
1804 */
1805static bool use_task_css_set_links __read_mostly;
1806
1807static void cgroup_enable_task_cg_lists(void)
1808{
1809 struct task_struct *p, *g;
1810
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001811 spin_lock_bh(&css_set_lock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001812
1813 if (use_task_css_set_links)
1814 goto out_unlock;
1815
1816 use_task_css_set_links = true;
1817
1818 /*
1819 * We need tasklist_lock because RCU is not safe against
1820 * while_each_thread(). Besides, a forking task that has passed
1821 * cgroup_post_fork() without seeing use_task_css_set_links = 1
1822 * is not guaranteed to have its child immediately visible in the
1823 * tasklist if we walk through it with RCU.
1824 */
1825 read_lock(&tasklist_lock);
1826 do_each_thread(g, p) {
Tejun Heoafeb0f92014-02-13 06:58:39 -05001827 WARN_ON_ONCE(!list_empty(&p->cg_list) ||
1828 task_css_set(p) != &init_css_set);
1829
1830 /*
1831 * We should check if the process is exiting, otherwise
1832 * it will race with cgroup_exit() in that the list
1833 * entry won't be deleted though the process has exited.
Tejun Heof153ad12014-02-25 09:56:49 -05001834 * Do it while holding siglock so that we don't end up
1835 * racing against cgroup_exit().
Tejun Heoafeb0f92014-02-13 06:58:39 -05001836 */
Tejun Heof153ad12014-02-25 09:56:49 -05001837 spin_lock_irq(&p->sighand->siglock);
Tejun Heoeaf797a2014-02-25 10:04:03 -05001838 if (!(p->flags & PF_EXITING)) {
1839 struct css_set *cset = task_css_set(p);
1840
Tejun Heo0de09422015-10-15 16:41:49 -04001841 if (!css_set_populated(cset))
1842 css_set_update_populated(cset, true);
Tejun Heo389b9c12015-10-15 16:41:51 -04001843 list_add_tail(&p->cg_list, &cset->tasks);
Tejun Heoeaf797a2014-02-25 10:04:03 -05001844 get_css_set(cset);
1845 }
Tejun Heof153ad12014-02-25 09:56:49 -05001846 spin_unlock_irq(&p->sighand->siglock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001847 } while_each_thread(g, p);
1848 read_unlock(&tasklist_lock);
1849out_unlock:
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001850 spin_unlock_bh(&css_set_lock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001851}
Paul Menageddbcc7e2007-10-18 23:39:30 -07001852
Paul Menagecc31edc2008-10-18 20:28:04 -07001853static void init_cgroup_housekeeping(struct cgroup *cgrp)
1854{
Tejun Heo2d8f2432014-04-23 11:13:15 -04001855 struct cgroup_subsys *ss;
1856 int ssid;
1857
Tejun Heod5c419b2014-05-16 13:22:48 -04001858 INIT_LIST_HEAD(&cgrp->self.sibling);
1859 INIT_LIST_HEAD(&cgrp->self.children);
Tejun Heo69d02062013-06-12 21:04:50 -07001860 INIT_LIST_HEAD(&cgrp->cset_links);
Ben Blum72a8cb32009-09-23 15:56:27 -07001861 INIT_LIST_HEAD(&cgrp->pidlists);
1862 mutex_init(&cgrp->pidlist_mutex);
Tejun Heo9d800df2014-05-14 09:15:00 -04001863 cgrp->self.cgroup = cgrp;
Tejun Heo184faf32014-05-16 13:22:51 -04001864 cgrp->self.flags |= CSS_ONLINE;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001865
1866 for_each_subsys(ss, ssid)
1867 INIT_LIST_HEAD(&cgrp->e_csets[ssid]);
Tejun Heof8f22e52014-04-23 11:13:16 -04001868
1869 init_waitqueue_head(&cgrp->offline_waitq);
Zefan Li971ff492014-09-18 16:06:19 +08001870 INIT_WORK(&cgrp->release_agent_work, cgroup_release_agent);
Paul Menagecc31edc2008-10-18 20:28:04 -07001871}
Paul Menagec6d57f32009-09-23 15:56:19 -07001872
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001873static void init_cgroup_root(struct cgroup_root *root,
Tejun Heo172a2c062014-03-19 10:23:53 -04001874 struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001875{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001876 struct cgroup *cgrp = &root->cgrp;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001877
Paul Menageddbcc7e2007-10-18 23:39:30 -07001878 INIT_LIST_HEAD(&root->root_list);
Tejun Heo3c9c8252014-02-12 09:29:50 -05001879 atomic_set(&root->nr_cgrps, 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001880 cgrp->root = root;
Paul Menagecc31edc2008-10-18 20:28:04 -07001881 init_cgroup_housekeeping(cgrp);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08001882 idr_init(&root->cgroup_idr);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001883
Paul Menagec6d57f32009-09-23 15:56:19 -07001884 root->flags = opts->flags;
1885 if (opts->release_agent)
1886 strcpy(root->release_agent_path, opts->release_agent);
1887 if (opts->name)
1888 strcpy(root->name, opts->name);
Tejun Heo2260e7f2012-11-19 08:13:38 -08001889 if (opts->cpuset_clone_children)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001890 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001891}
1892
Tejun Heo6e5c8302016-02-22 22:25:47 -05001893static int cgroup_setup_root(struct cgroup_root *root, u16 ss_mask)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001894{
Tejun Heod427dfe2014-02-11 11:52:48 -05001895 LIST_HEAD(tmp_links);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001896 struct cgroup *root_cgrp = &root->cgrp;
Tejun Heod427dfe2014-02-11 11:52:48 -05001897 struct css_set *cset;
Tejun Heod427dfe2014-02-11 11:52:48 -05001898 int i, ret;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001899
Tejun Heod427dfe2014-02-11 11:52:48 -05001900 lockdep_assert_held(&cgroup_mutex);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001901
Vladimir Davydovcf780b72015-08-03 15:32:26 +03001902 ret = cgroup_idr_alloc(&root->cgroup_idr, root_cgrp, 1, 2, GFP_KERNEL);
Tejun Heod427dfe2014-02-11 11:52:48 -05001903 if (ret < 0)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001904 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001905 root_cgrp->id = ret;
Tejun Heob11cfb52015-11-20 15:55:52 -05001906 root_cgrp->ancestor_ids[0] = ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001907
Tejun Heo2aad2a82014-09-24 13:31:50 -04001908 ret = percpu_ref_init(&root_cgrp->self.refcnt, css_release, 0,
1909 GFP_KERNEL);
Tejun Heo9d755d32014-05-14 09:15:02 -04001910 if (ret)
1911 goto out;
1912
Tejun Heod427dfe2014-02-11 11:52:48 -05001913 /*
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001914 * We're accessing css_set_count without locking css_set_lock here,
Tejun Heod427dfe2014-02-11 11:52:48 -05001915 * but that's OK - it can only be increased by someone holding
1916 * cgroup_lock, and that's us. The worst that can happen is that we
1917 * have some link structures left over
1918 */
1919 ret = allocate_cgrp_cset_links(css_set_count, &tmp_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001920 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001921 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001922
Tejun Heo985ed672014-03-19 10:23:53 -04001923 ret = cgroup_init_root_id(root);
Tejun Heod427dfe2014-02-11 11:52:48 -05001924 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001925 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001926
Tejun Heo2bd59d42014-02-11 11:52:49 -05001927 root->kf_root = kernfs_create_root(&cgroup_kf_syscall_ops,
1928 KERNFS_ROOT_CREATE_DEACTIVATED,
1929 root_cgrp);
1930 if (IS_ERR(root->kf_root)) {
1931 ret = PTR_ERR(root->kf_root);
1932 goto exit_root_id;
1933 }
1934 root_cgrp->kn = root->kf_root->kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001935
Tejun Heo4df8dc92015-09-18 17:54:23 -04001936 ret = css_populate_dir(&root_cgrp->self, NULL);
Tejun Heod427dfe2014-02-11 11:52:48 -05001937 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001938 goto destroy_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001939
Tejun Heo5df36032014-03-19 10:23:54 -04001940 ret = rebind_subsystems(root, ss_mask);
Tejun Heod427dfe2014-02-11 11:52:48 -05001941 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001942 goto destroy_root;
Al Viro0df6a632010-12-21 13:29:29 -05001943
Tejun Heod427dfe2014-02-11 11:52:48 -05001944 /*
1945 * There must be no failure case after here, since rebinding takes
1946 * care of subsystems' refcounts, which are explicitly dropped in
1947 * the failure exit path.
1948 */
1949 list_add(&root->root_list, &cgroup_roots);
1950 cgroup_root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001951
Tejun Heod427dfe2014-02-11 11:52:48 -05001952 /*
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001953 * Link the root cgroup in this hierarchy into all the css_set
Tejun Heod427dfe2014-02-11 11:52:48 -05001954 * objects.
1955 */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001956 spin_lock_bh(&css_set_lock);
Tejun Heo0de09422015-10-15 16:41:49 -04001957 hash_for_each(css_set_table, i, cset, hlist) {
Tejun Heod427dfe2014-02-11 11:52:48 -05001958 link_css_set(&tmp_links, cset, root_cgrp);
Tejun Heo0de09422015-10-15 16:41:49 -04001959 if (css_set_populated(cset))
1960 cgroup_update_populated(root_cgrp, true);
1961 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001962 spin_unlock_bh(&css_set_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001963
Tejun Heod5c419b2014-05-16 13:22:48 -04001964 BUG_ON(!list_empty(&root_cgrp->self.children));
Tejun Heo3c9c8252014-02-12 09:29:50 -05001965 BUG_ON(atomic_read(&root->nr_cgrps) != 1);
Tejun Heod427dfe2014-02-11 11:52:48 -05001966
Tejun Heo2bd59d42014-02-11 11:52:49 -05001967 kernfs_activate(root_cgrp->kn);
Tejun Heod427dfe2014-02-11 11:52:48 -05001968 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001969 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001970
Tejun Heo2bd59d42014-02-11 11:52:49 -05001971destroy_root:
1972 kernfs_destroy_root(root->kf_root);
1973 root->kf_root = NULL;
1974exit_root_id:
Tejun Heod427dfe2014-02-11 11:52:48 -05001975 cgroup_exit_root_id(root);
Tejun Heo9d755d32014-05-14 09:15:02 -04001976cancel_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04001977 percpu_ref_exit(&root_cgrp->self.refcnt);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001978out:
Tejun Heod427dfe2014-02-11 11:52:48 -05001979 free_cgrp_cset_links(&tmp_links);
1980 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001981}
1982
Al Virof7e83572010-07-26 13:23:11 +04001983static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001984 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001985 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001986{
Tejun Heo67e9c742015-11-16 11:13:34 -05001987 bool is_v2 = fs_type == &cgroup2_fs_type;
Li Zefan3a32bd72014-06-30 11:50:59 +08001988 struct super_block *pinned_sb = NULL;
Li Zefan970317a2014-06-30 11:49:58 +08001989 struct cgroup_subsys *ss;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001990 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001991 struct cgroup_sb_opts opts;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001992 struct dentry *dentry;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001993 int ret;
Li Zefan970317a2014-06-30 11:49:58 +08001994 int i;
Li Zefanc6b3d5b2014-04-04 17:14:41 +08001995 bool new_sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001996
1997 /*
Tejun Heo56fde9e2014-02-13 06:58:38 -05001998 * The first time anyone tries to mount a cgroup, enable the list
1999 * linking each css_set to its tasks and fix up all existing tasks.
Paul Menagec6d57f32009-09-23 15:56:19 -07002000 */
Tejun Heo56fde9e2014-02-13 06:58:38 -05002001 if (!use_task_css_set_links)
2002 cgroup_enable_task_cg_lists();
Li Zefane37a06f2014-04-17 13:53:08 +08002003
Tejun Heo67e9c742015-11-16 11:13:34 -05002004 if (is_v2) {
2005 if (data) {
2006 pr_err("cgroup2: unknown option \"%s\"\n", (char *)data);
2007 return ERR_PTR(-EINVAL);
2008 }
Tejun Heoa7165262016-02-23 10:00:50 -05002009 cgrp_dfl_visible = true;
Tejun Heo67e9c742015-11-16 11:13:34 -05002010 root = &cgrp_dfl_root;
2011 cgroup_get(&root->cgrp);
2012 goto out_mount;
2013 }
2014
Tejun Heo8e30e2b2014-02-11 11:52:48 -05002015 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002016
Paul Menageddbcc7e2007-10-18 23:39:30 -07002017 /* First find the desired set of subsystems */
Paul Menageddbcc7e2007-10-18 23:39:30 -07002018 ret = parse_cgroupfs_options(data, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002019 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05002020 goto out_unlock;
Tejun Heoa015edd2014-05-14 09:15:00 -04002021
Li Zefan970317a2014-06-30 11:49:58 +08002022 /*
2023 * Destruction of cgroup root is asynchronous, so subsystems may
2024 * still be dying after the previous unmount. Let's drain the
2025 * dying subsystems. We just need to ensure that the ones
2026 * unmounted previously finish dying and don't care about new ones
2027 * starting. Testing ref liveliness is good enough.
2028 */
2029 for_each_subsys(ss, i) {
2030 if (!(opts.subsys_mask & (1 << i)) ||
2031 ss->root == &cgrp_dfl_root)
2032 continue;
2033
2034 if (!percpu_ref_tryget_live(&ss->root->cgrp.self.refcnt)) {
2035 mutex_unlock(&cgroup_mutex);
2036 msleep(10);
2037 ret = restart_syscall();
2038 goto out_free;
2039 }
2040 cgroup_put(&ss->root->cgrp);
2041 }
2042
Tejun Heo985ed672014-03-19 10:23:53 -04002043 for_each_root(root) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05002044 bool name_match = false;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002045
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002046 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04002047 continue;
Paul Menagec6d57f32009-09-23 15:56:19 -07002048
Paul Menage817929e2007-10-18 23:39:36 -07002049 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05002050 * If we asked for a name then it must match. Also, if
2051 * name matches but sybsys_mask doesn't, we should fail.
2052 * Remember whether name matched.
Paul Menage817929e2007-10-18 23:39:36 -07002053 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05002054 if (opts.name) {
2055 if (strcmp(opts.name, root->name))
2056 continue;
2057 name_match = true;
2058 }
Tejun Heo31261212013-06-28 17:07:30 -07002059
2060 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05002061 * If we asked for subsystems (or explicitly for no
2062 * subsystems) then they must match.
Tejun Heo31261212013-06-28 17:07:30 -07002063 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05002064 if ((opts.subsys_mask || opts.none) &&
Tejun Heof392e512014-04-23 11:13:14 -04002065 (opts.subsys_mask != root->subsys_mask)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05002066 if (!name_match)
2067 continue;
2068 ret = -EBUSY;
2069 goto out_unlock;
2070 }
Tejun Heo873fe092013-04-14 20:15:26 -07002071
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04002072 if (root->flags ^ opts.flags)
2073 pr_warn("new mount options do not match the existing superblock, will be ignored\n");
Tejun Heo2bd59d42014-02-11 11:52:49 -05002074
Tejun Heo776f02f2014-02-12 09:29:50 -05002075 /*
Li Zefan3a32bd72014-06-30 11:50:59 +08002076 * We want to reuse @root whose lifetime is governed by its
2077 * ->cgrp. Let's check whether @root is alive and keep it
2078 * that way. As cgroup_kill_sb() can happen anytime, we
2079 * want to block it by pinning the sb so that @root doesn't
2080 * get killed before mount is complete.
2081 *
2082 * With the sb pinned, tryget_live can reliably indicate
2083 * whether @root can be reused. If it's being killed,
2084 * drain it. We can use wait_queue for the wait but this
2085 * path is super cold. Let's just sleep a bit and retry.
Tejun Heo776f02f2014-02-12 09:29:50 -05002086 */
Li Zefan3a32bd72014-06-30 11:50:59 +08002087 pinned_sb = kernfs_pin_sb(root->kf_root, NULL);
2088 if (IS_ERR(pinned_sb) ||
2089 !percpu_ref_tryget_live(&root->cgrp.self.refcnt)) {
Tejun Heo776f02f2014-02-12 09:29:50 -05002090 mutex_unlock(&cgroup_mutex);
Li Zefan3a32bd72014-06-30 11:50:59 +08002091 if (!IS_ERR_OR_NULL(pinned_sb))
2092 deactivate_super(pinned_sb);
Tejun Heo776f02f2014-02-12 09:29:50 -05002093 msleep(10);
Tejun Heoa015edd2014-05-14 09:15:00 -04002094 ret = restart_syscall();
2095 goto out_free;
Tejun Heo776f02f2014-02-12 09:29:50 -05002096 }
2097
2098 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002099 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002100 }
2101
Tejun Heo172a2c062014-03-19 10:23:53 -04002102 /*
2103 * No such thing, create a new one. name= matching without subsys
2104 * specification is allowed for already existing hierarchies but we
2105 * can't create new one without subsys specification.
2106 */
2107 if (!opts.subsys_mask && !opts.none) {
2108 ret = -EINVAL;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002109 goto out_unlock;
2110 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002111
Tejun Heo172a2c062014-03-19 10:23:53 -04002112 root = kzalloc(sizeof(*root), GFP_KERNEL);
2113 if (!root) {
2114 ret = -ENOMEM;
2115 goto out_unlock;
2116 }
2117
2118 init_cgroup_root(root, &opts);
2119
Tejun Heo35585572014-02-13 06:58:38 -05002120 ret = cgroup_setup_root(root, opts.subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -05002121 if (ret)
2122 cgroup_free_root(root);
2123
Tejun Heo8e30e2b2014-02-11 11:52:48 -05002124out_unlock:
Tejun Heoe25e2cb2011-12-12 18:12:21 -08002125 mutex_unlock(&cgroup_mutex);
Tejun Heoa015edd2014-05-14 09:15:00 -04002126out_free:
Paul Menagec6d57f32009-09-23 15:56:19 -07002127 kfree(opts.release_agent);
2128 kfree(opts.name);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05002129
Tejun Heo2bd59d42014-02-11 11:52:49 -05002130 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05002131 return ERR_PTR(ret);
Tejun Heo67e9c742015-11-16 11:13:34 -05002132out_mount:
Jianyu Zhanc9482a52014-04-26 15:40:28 +08002133 dentry = kernfs_mount(fs_type, flags, root->kf_root,
Tejun Heo67e9c742015-11-16 11:13:34 -05002134 is_v2 ? CGROUP2_SUPER_MAGIC : CGROUP_SUPER_MAGIC,
2135 &new_sb);
Li Zefanc6b3d5b2014-04-04 17:14:41 +08002136 if (IS_ERR(dentry) || !new_sb)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002137 cgroup_put(&root->cgrp);
Li Zefan3a32bd72014-06-30 11:50:59 +08002138
2139 /*
2140 * If @pinned_sb, we're reusing an existing root and holding an
2141 * extra ref on its sb. Mount is complete. Put the extra ref.
2142 */
2143 if (pinned_sb) {
2144 WARN_ON(new_sb);
2145 deactivate_super(pinned_sb);
2146 }
2147
Tejun Heo2bd59d42014-02-11 11:52:49 -05002148 return dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002149}
2150
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09002151static void cgroup_kill_sb(struct super_block *sb)
2152{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002153 struct kernfs_root *kf_root = kernfs_root_from_sb(sb);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002154 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002155
Tejun Heo9d755d32014-05-14 09:15:02 -04002156 /*
2157 * If @root doesn't have any mounts or children, start killing it.
2158 * This prevents new mounts by disabling percpu_ref_tryget_live().
2159 * cgroup_mount() may wait for @root's release.
Li Zefan1f779fb2014-06-04 16:48:15 +08002160 *
2161 * And don't kill the default root.
Tejun Heo9d755d32014-05-14 09:15:02 -04002162 */
Johannes Weiner3c606d32015-01-22 10:19:43 -05002163 if (!list_empty(&root->cgrp.self.children) ||
Li Zefan1f779fb2014-06-04 16:48:15 +08002164 root == &cgrp_dfl_root)
Tejun Heo9d755d32014-05-14 09:15:02 -04002165 cgroup_put(&root->cgrp);
2166 else
2167 percpu_ref_kill(&root->cgrp.self.refcnt);
2168
Tejun Heo2bd59d42014-02-11 11:52:49 -05002169 kernfs_kill_sb(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002170}
2171
2172static struct file_system_type cgroup_fs_type = {
2173 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04002174 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002175 .kill_sb = cgroup_kill_sb,
2176};
2177
Tejun Heo67e9c742015-11-16 11:13:34 -05002178static struct file_system_type cgroup2_fs_type = {
2179 .name = "cgroup2",
2180 .mount = cgroup_mount,
2181 .kill_sb = cgroup_kill_sb,
2182};
2183
Li Zefana043e3b2008-02-23 15:24:09 -08002184/**
Tejun Heo913ffdb2013-07-11 16:34:48 -07002185 * task_cgroup_path - cgroup path of a task in the first cgroup hierarchy
Tejun Heo857a2be2013-04-14 20:50:08 -07002186 * @task: target task
Tejun Heo857a2be2013-04-14 20:50:08 -07002187 * @buf: the buffer to write the path into
2188 * @buflen: the length of the buffer
2189 *
Tejun Heo913ffdb2013-07-11 16:34:48 -07002190 * Determine @task's cgroup on the first (the one with the lowest non-zero
2191 * hierarchy_id) cgroup hierarchy and copy its path into @buf. This
2192 * function grabs cgroup_mutex and shouldn't be used inside locks used by
2193 * cgroup controller callbacks.
2194 *
Tejun Heoe61734c2014-02-12 09:29:50 -05002195 * Return value is the same as kernfs_path().
Tejun Heo857a2be2013-04-14 20:50:08 -07002196 */
Tejun Heoe61734c2014-02-12 09:29:50 -05002197char *task_cgroup_path(struct task_struct *task, char *buf, size_t buflen)
Tejun Heo857a2be2013-04-14 20:50:08 -07002198{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002199 struct cgroup_root *root;
Tejun Heo913ffdb2013-07-11 16:34:48 -07002200 struct cgroup *cgrp;
Tejun Heoe61734c2014-02-12 09:29:50 -05002201 int hierarchy_id = 1;
2202 char *path = NULL;
Tejun Heo857a2be2013-04-14 20:50:08 -07002203
2204 mutex_lock(&cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002205 spin_lock_bh(&css_set_lock);
Tejun Heo857a2be2013-04-14 20:50:08 -07002206
Tejun Heo913ffdb2013-07-11 16:34:48 -07002207 root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id);
2208
Tejun Heo857a2be2013-04-14 20:50:08 -07002209 if (root) {
2210 cgrp = task_cgroup_from_root(task, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05002211 path = cgroup_path(cgrp, buf, buflen);
Tejun Heo913ffdb2013-07-11 16:34:48 -07002212 } else {
2213 /* if no hierarchy exists, everyone is in "/" */
Tejun Heoe61734c2014-02-12 09:29:50 -05002214 if (strlcpy(buf, "/", buflen) < buflen)
2215 path = buf;
Tejun Heo857a2be2013-04-14 20:50:08 -07002216 }
2217
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002218 spin_unlock_bh(&css_set_lock);
Tejun Heo857a2be2013-04-14 20:50:08 -07002219 mutex_unlock(&cgroup_mutex);
Tejun Heoe61734c2014-02-12 09:29:50 -05002220 return path;
Tejun Heo857a2be2013-04-14 20:50:08 -07002221}
Tejun Heo913ffdb2013-07-11 16:34:48 -07002222EXPORT_SYMBOL_GPL(task_cgroup_path);
Tejun Heo857a2be2013-04-14 20:50:08 -07002223
Tejun Heob3dc0942014-02-25 10:04:01 -05002224/* used to track tasks and other necessary states during migration */
Tejun Heo2f7ee562011-12-12 18:12:21 -08002225struct cgroup_taskset {
Tejun Heob3dc0942014-02-25 10:04:01 -05002226 /* the src and dst cset list running through cset->mg_node */
2227 struct list_head src_csets;
2228 struct list_head dst_csets;
2229
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002230 /* the subsys currently being processed */
2231 int ssid;
2232
Tejun Heob3dc0942014-02-25 10:04:01 -05002233 /*
2234 * Fields for cgroup_taskset_*() iteration.
2235 *
2236 * Before migration is committed, the target migration tasks are on
2237 * ->mg_tasks of the csets on ->src_csets. After, on ->mg_tasks of
2238 * the csets on ->dst_csets. ->csets point to either ->src_csets
2239 * or ->dst_csets depending on whether migration is committed.
2240 *
2241 * ->cur_csets and ->cur_task point to the current task position
2242 * during iteration.
2243 */
2244 struct list_head *csets;
2245 struct css_set *cur_cset;
2246 struct task_struct *cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002247};
2248
Tejun Heoadaae5d2015-09-11 15:00:21 -04002249#define CGROUP_TASKSET_INIT(tset) (struct cgroup_taskset){ \
2250 .src_csets = LIST_HEAD_INIT(tset.src_csets), \
2251 .dst_csets = LIST_HEAD_INIT(tset.dst_csets), \
2252 .csets = &tset.src_csets, \
2253}
2254
2255/**
2256 * cgroup_taskset_add - try to add a migration target task to a taskset
2257 * @task: target task
2258 * @tset: target taskset
2259 *
2260 * Add @task, which is a migration target, to @tset. This function becomes
2261 * noop if @task doesn't need to be migrated. @task's css_set should have
2262 * been added as a migration source and @task->cg_list will be moved from
2263 * the css_set's tasks list to mg_tasks one.
2264 */
2265static void cgroup_taskset_add(struct task_struct *task,
2266 struct cgroup_taskset *tset)
2267{
2268 struct css_set *cset;
2269
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002270 lockdep_assert_held(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002271
2272 /* @task either already exited or can't exit until the end */
2273 if (task->flags & PF_EXITING)
2274 return;
2275
2276 /* leave @task alone if post_fork() hasn't linked it yet */
2277 if (list_empty(&task->cg_list))
2278 return;
2279
2280 cset = task_css_set(task);
2281 if (!cset->mg_src_cgrp)
2282 return;
2283
2284 list_move_tail(&task->cg_list, &cset->mg_tasks);
2285 if (list_empty(&cset->mg_node))
2286 list_add_tail(&cset->mg_node, &tset->src_csets);
2287 if (list_empty(&cset->mg_dst_cset->mg_node))
2288 list_move_tail(&cset->mg_dst_cset->mg_node,
2289 &tset->dst_csets);
2290}
2291
Tejun Heo2f7ee562011-12-12 18:12:21 -08002292/**
2293 * cgroup_taskset_first - reset taskset and return the first task
2294 * @tset: taskset of interest
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002295 * @dst_cssp: output variable for the destination css
Tejun Heo2f7ee562011-12-12 18:12:21 -08002296 *
2297 * @tset iteration is initialized and the first task is returned.
2298 */
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002299struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset,
2300 struct cgroup_subsys_state **dst_cssp)
Tejun Heo2f7ee562011-12-12 18:12:21 -08002301{
Tejun Heob3dc0942014-02-25 10:04:01 -05002302 tset->cur_cset = list_first_entry(tset->csets, struct css_set, mg_node);
2303 tset->cur_task = NULL;
2304
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002305 return cgroup_taskset_next(tset, dst_cssp);
Tejun Heo2f7ee562011-12-12 18:12:21 -08002306}
Tejun Heo2f7ee562011-12-12 18:12:21 -08002307
2308/**
2309 * cgroup_taskset_next - iterate to the next task in taskset
2310 * @tset: taskset of interest
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002311 * @dst_cssp: output variable for the destination css
Tejun Heo2f7ee562011-12-12 18:12:21 -08002312 *
2313 * Return the next task in @tset. Iteration must have been initialized
2314 * with cgroup_taskset_first().
2315 */
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002316struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset,
2317 struct cgroup_subsys_state **dst_cssp)
Tejun Heo2f7ee562011-12-12 18:12:21 -08002318{
Tejun Heob3dc0942014-02-25 10:04:01 -05002319 struct css_set *cset = tset->cur_cset;
2320 struct task_struct *task = tset->cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002321
Tejun Heob3dc0942014-02-25 10:04:01 -05002322 while (&cset->mg_node != tset->csets) {
2323 if (!task)
2324 task = list_first_entry(&cset->mg_tasks,
2325 struct task_struct, cg_list);
2326 else
2327 task = list_next_entry(task, cg_list);
Tejun Heo2f7ee562011-12-12 18:12:21 -08002328
Tejun Heob3dc0942014-02-25 10:04:01 -05002329 if (&task->cg_list != &cset->mg_tasks) {
2330 tset->cur_cset = cset;
2331 tset->cur_task = task;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002332
2333 /*
2334 * This function may be called both before and
2335 * after cgroup_taskset_migrate(). The two cases
2336 * can be distinguished by looking at whether @cset
2337 * has its ->mg_dst_cset set.
2338 */
2339 if (cset->mg_dst_cset)
2340 *dst_cssp = cset->mg_dst_cset->subsys[tset->ssid];
2341 else
2342 *dst_cssp = cset->subsys[tset->ssid];
2343
Tejun Heob3dc0942014-02-25 10:04:01 -05002344 return task;
2345 }
2346
2347 cset = list_next_entry(cset, mg_node);
2348 task = NULL;
2349 }
2350
2351 return NULL;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002352}
Tejun Heo2f7ee562011-12-12 18:12:21 -08002353
2354/**
Tejun Heoadaae5d2015-09-11 15:00:21 -04002355 * cgroup_taskset_migrate - migrate a taskset to a cgroup
2356 * @tset: taget taskset
2357 * @dst_cgrp: destination cgroup
2358 *
2359 * Migrate tasks in @tset to @dst_cgrp. This function fails iff one of the
2360 * ->can_attach callbacks fails and guarantees that either all or none of
2361 * the tasks in @tset are migrated. @tset is consumed regardless of
2362 * success.
2363 */
2364static int cgroup_taskset_migrate(struct cgroup_taskset *tset,
2365 struct cgroup *dst_cgrp)
2366{
2367 struct cgroup_subsys_state *css, *failed_css = NULL;
2368 struct task_struct *task, *tmp_task;
2369 struct css_set *cset, *tmp_cset;
2370 int i, ret;
2371
2372 /* methods shouldn't be called if no task is actually migrating */
2373 if (list_empty(&tset->src_csets))
2374 return 0;
2375
2376 /* check that we can legitimately attach to the cgroup */
2377 for_each_e_css(css, i, dst_cgrp) {
2378 if (css->ss->can_attach) {
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002379 tset->ssid = i;
2380 ret = css->ss->can_attach(tset);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002381 if (ret) {
2382 failed_css = css;
2383 goto out_cancel_attach;
2384 }
2385 }
2386 }
2387
2388 /*
2389 * Now that we're guaranteed success, proceed to move all tasks to
2390 * the new cgroup. There are no failure cases after here, so this
2391 * is the commit point.
2392 */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002393 spin_lock_bh(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002394 list_for_each_entry(cset, &tset->src_csets, mg_node) {
Tejun Heof6d7d042015-10-15 16:41:52 -04002395 list_for_each_entry_safe(task, tmp_task, &cset->mg_tasks, cg_list) {
2396 struct css_set *from_cset = task_css_set(task);
2397 struct css_set *to_cset = cset->mg_dst_cset;
2398
2399 get_css_set(to_cset);
2400 css_set_move_task(task, from_cset, to_cset, true);
2401 put_css_set_locked(from_cset);
2402 }
Tejun Heoadaae5d2015-09-11 15:00:21 -04002403 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002404 spin_unlock_bh(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002405
2406 /*
2407 * Migration is committed, all target tasks are now on dst_csets.
2408 * Nothing is sensitive to fork() after this point. Notify
2409 * controllers that migration is complete.
2410 */
2411 tset->csets = &tset->dst_csets;
2412
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002413 for_each_e_css(css, i, dst_cgrp) {
2414 if (css->ss->attach) {
2415 tset->ssid = i;
2416 css->ss->attach(tset);
2417 }
2418 }
Tejun Heoadaae5d2015-09-11 15:00:21 -04002419
2420 ret = 0;
2421 goto out_release_tset;
2422
2423out_cancel_attach:
2424 for_each_e_css(css, i, dst_cgrp) {
2425 if (css == failed_css)
2426 break;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002427 if (css->ss->cancel_attach) {
2428 tset->ssid = i;
2429 css->ss->cancel_attach(tset);
2430 }
Tejun Heoadaae5d2015-09-11 15:00:21 -04002431 }
2432out_release_tset:
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002433 spin_lock_bh(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002434 list_splice_init(&tset->dst_csets, &tset->src_csets);
2435 list_for_each_entry_safe(cset, tmp_cset, &tset->src_csets, mg_node) {
2436 list_splice_tail_init(&cset->mg_tasks, &cset->tasks);
2437 list_del_init(&cset->mg_node);
2438 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002439 spin_unlock_bh(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002440 return ret;
2441}
2442
2443/**
Tejun Heo1958d2d2014-02-25 10:04:03 -05002444 * cgroup_migrate_finish - cleanup after attach
2445 * @preloaded_csets: list of preloaded css_sets
Ben Blum74a11662011-05-26 16:25:20 -07002446 *
Tejun Heo1958d2d2014-02-25 10:04:03 -05002447 * Undo cgroup_migrate_add_src() and cgroup_migrate_prepare_dst(). See
2448 * those functions for details.
Ben Blum74a11662011-05-26 16:25:20 -07002449 */
Tejun Heo1958d2d2014-02-25 10:04:03 -05002450static void cgroup_migrate_finish(struct list_head *preloaded_csets)
Ben Blum74a11662011-05-26 16:25:20 -07002451{
Tejun Heo1958d2d2014-02-25 10:04:03 -05002452 struct css_set *cset, *tmp_cset;
2453
2454 lockdep_assert_held(&cgroup_mutex);
2455
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002456 spin_lock_bh(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002457 list_for_each_entry_safe(cset, tmp_cset, preloaded_csets, mg_preload_node) {
2458 cset->mg_src_cgrp = NULL;
2459 cset->mg_dst_cset = NULL;
2460 list_del_init(&cset->mg_preload_node);
Zefan Lia25eb522014-09-19 16:51:00 +08002461 put_css_set_locked(cset);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002462 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002463 spin_unlock_bh(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002464}
2465
2466/**
2467 * cgroup_migrate_add_src - add a migration source css_set
2468 * @src_cset: the source css_set to add
2469 * @dst_cgrp: the destination cgroup
2470 * @preloaded_csets: list of preloaded css_sets
2471 *
2472 * Tasks belonging to @src_cset are about to be migrated to @dst_cgrp. Pin
2473 * @src_cset and add it to @preloaded_csets, which should later be cleaned
2474 * up by cgroup_migrate_finish().
2475 *
Tejun Heo1ed13282015-09-16 12:53:17 -04002476 * This function may be called without holding cgroup_threadgroup_rwsem
2477 * even if the target is a process. Threads may be created and destroyed
2478 * but as long as cgroup_mutex is not dropped, no new css_set can be put
2479 * into play and the preloaded css_sets are guaranteed to cover all
2480 * migrations.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002481 */
2482static void cgroup_migrate_add_src(struct css_set *src_cset,
2483 struct cgroup *dst_cgrp,
2484 struct list_head *preloaded_csets)
2485{
2486 struct cgroup *src_cgrp;
2487
2488 lockdep_assert_held(&cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002489 lockdep_assert_held(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002490
2491 src_cgrp = cset_cgroup_from_root(src_cset, dst_cgrp->root);
2492
Tejun Heo1958d2d2014-02-25 10:04:03 -05002493 if (!list_empty(&src_cset->mg_preload_node))
2494 return;
2495
2496 WARN_ON(src_cset->mg_src_cgrp);
2497 WARN_ON(!list_empty(&src_cset->mg_tasks));
2498 WARN_ON(!list_empty(&src_cset->mg_node));
2499
2500 src_cset->mg_src_cgrp = src_cgrp;
2501 get_css_set(src_cset);
2502 list_add(&src_cset->mg_preload_node, preloaded_csets);
2503}
2504
2505/**
2506 * cgroup_migrate_prepare_dst - prepare destination css_sets for migration
Tejun Heof817de92014-04-23 11:13:16 -04002507 * @dst_cgrp: the destination cgroup (may be %NULL)
Tejun Heo1958d2d2014-02-25 10:04:03 -05002508 * @preloaded_csets: list of preloaded source css_sets
2509 *
2510 * Tasks are about to be moved to @dst_cgrp and all the source css_sets
2511 * have been preloaded to @preloaded_csets. This function looks up and
Tejun Heof817de92014-04-23 11:13:16 -04002512 * pins all destination css_sets, links each to its source, and append them
2513 * to @preloaded_csets. If @dst_cgrp is %NULL, the destination of each
2514 * source css_set is assumed to be its cgroup on the default hierarchy.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002515 *
2516 * This function must be called after cgroup_migrate_add_src() has been
2517 * called on each migration source css_set. After migration is performed
2518 * using cgroup_migrate(), cgroup_migrate_finish() must be called on
2519 * @preloaded_csets.
2520 */
2521static int cgroup_migrate_prepare_dst(struct cgroup *dst_cgrp,
2522 struct list_head *preloaded_csets)
2523{
2524 LIST_HEAD(csets);
Tejun Heof817de92014-04-23 11:13:16 -04002525 struct css_set *src_cset, *tmp_cset;
Tejun Heo1958d2d2014-02-25 10:04:03 -05002526
2527 lockdep_assert_held(&cgroup_mutex);
2528
Tejun Heof8f22e52014-04-23 11:13:16 -04002529 /*
Tejun Heo62716ea2016-02-23 10:00:51 -05002530 * Except for the root, subtree_control must be zero for a cgroup
Tejun Heof8f22e52014-04-23 11:13:16 -04002531 * with tasks so that child cgroups don't compete against tasks.
2532 */
Tejun Heod51f39b2014-05-16 13:22:48 -04002533 if (dst_cgrp && cgroup_on_dfl(dst_cgrp) && cgroup_parent(dst_cgrp) &&
Tejun Heo62716ea2016-02-23 10:00:51 -05002534 dst_cgrp->subtree_control)
Tejun Heof8f22e52014-04-23 11:13:16 -04002535 return -EBUSY;
2536
Tejun Heo1958d2d2014-02-25 10:04:03 -05002537 /* look up the dst cset for each src cset and link it to src */
Tejun Heof817de92014-04-23 11:13:16 -04002538 list_for_each_entry_safe(src_cset, tmp_cset, preloaded_csets, mg_preload_node) {
Tejun Heo1958d2d2014-02-25 10:04:03 -05002539 struct css_set *dst_cset;
2540
Tejun Heof817de92014-04-23 11:13:16 -04002541 dst_cset = find_css_set(src_cset,
2542 dst_cgrp ?: src_cset->dfl_cgrp);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002543 if (!dst_cset)
2544 goto err;
2545
2546 WARN_ON_ONCE(src_cset->mg_dst_cset || dst_cset->mg_dst_cset);
Tejun Heof817de92014-04-23 11:13:16 -04002547
2548 /*
2549 * If src cset equals dst, it's noop. Drop the src.
2550 * cgroup_migrate() will skip the cset too. Note that we
2551 * can't handle src == dst as some nodes are used by both.
2552 */
2553 if (src_cset == dst_cset) {
2554 src_cset->mg_src_cgrp = NULL;
2555 list_del_init(&src_cset->mg_preload_node);
Zefan Lia25eb522014-09-19 16:51:00 +08002556 put_css_set(src_cset);
2557 put_css_set(dst_cset);
Tejun Heof817de92014-04-23 11:13:16 -04002558 continue;
2559 }
2560
Tejun Heo1958d2d2014-02-25 10:04:03 -05002561 src_cset->mg_dst_cset = dst_cset;
2562
2563 if (list_empty(&dst_cset->mg_preload_node))
2564 list_add(&dst_cset->mg_preload_node, &csets);
2565 else
Zefan Lia25eb522014-09-19 16:51:00 +08002566 put_css_set(dst_cset);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002567 }
2568
Tejun Heof817de92014-04-23 11:13:16 -04002569 list_splice_tail(&csets, preloaded_csets);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002570 return 0;
2571err:
2572 cgroup_migrate_finish(&csets);
2573 return -ENOMEM;
2574}
2575
2576/**
2577 * cgroup_migrate - migrate a process or task to a cgroup
Tejun Heo1958d2d2014-02-25 10:04:03 -05002578 * @leader: the leader of the process or the task to migrate
2579 * @threadgroup: whether @leader points to the whole process or a single task
Tejun Heo9af2ec42015-09-11 15:00:20 -04002580 * @cgrp: the destination cgroup
Tejun Heo1958d2d2014-02-25 10:04:03 -05002581 *
2582 * Migrate a process or task denoted by @leader to @cgrp. If migrating a
Tejun Heo1ed13282015-09-16 12:53:17 -04002583 * process, the caller must be holding cgroup_threadgroup_rwsem. The
Tejun Heo1958d2d2014-02-25 10:04:03 -05002584 * caller is also responsible for invoking cgroup_migrate_add_src() and
2585 * cgroup_migrate_prepare_dst() on the targets before invoking this
2586 * function and following up with cgroup_migrate_finish().
2587 *
2588 * As long as a controller's ->can_attach() doesn't fail, this function is
2589 * guaranteed to succeed. This means that, excluding ->can_attach()
2590 * failure, when migrating multiple targets, the success or failure can be
2591 * decided for all targets by invoking group_migrate_prepare_dst() before
2592 * actually starting migrating.
2593 */
Tejun Heo9af2ec42015-09-11 15:00:20 -04002594static int cgroup_migrate(struct task_struct *leader, bool threadgroup,
2595 struct cgroup *cgrp)
Ben Blum74a11662011-05-26 16:25:20 -07002596{
Tejun Heoadaae5d2015-09-11 15:00:21 -04002597 struct cgroup_taskset tset = CGROUP_TASKSET_INIT(tset);
2598 struct task_struct *task;
Ben Blum74a11662011-05-26 16:25:20 -07002599
2600 /*
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002601 * Prevent freeing of tasks while we take a snapshot. Tasks that are
2602 * already PF_EXITING could be freed from underneath us unless we
2603 * take an rcu_read_lock.
2604 */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002605 spin_lock_bh(&css_set_lock);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002606 rcu_read_lock();
Tejun Heo9db8de32014-02-13 06:58:43 -05002607 task = leader;
Ben Blum74a11662011-05-26 16:25:20 -07002608 do {
Tejun Heoadaae5d2015-09-11 15:00:21 -04002609 cgroup_taskset_add(task, &tset);
Li Zefan081aa452013-03-13 09:17:09 +08002610 if (!threadgroup)
2611 break;
Tejun Heo9db8de32014-02-13 06:58:43 -05002612 } while_each_thread(leader, task);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002613 rcu_read_unlock();
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002614 spin_unlock_bh(&css_set_lock);
Ben Blum74a11662011-05-26 16:25:20 -07002615
Tejun Heoadaae5d2015-09-11 15:00:21 -04002616 return cgroup_taskset_migrate(&tset, cgrp);
Ben Blum74a11662011-05-26 16:25:20 -07002617}
2618
Tejun Heo1958d2d2014-02-25 10:04:03 -05002619/**
2620 * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup
2621 * @dst_cgrp: the cgroup to attach to
2622 * @leader: the task or the leader of the threadgroup to be attached
2623 * @threadgroup: attach the whole threadgroup?
2624 *
Tejun Heo1ed13282015-09-16 12:53:17 -04002625 * Call holding cgroup_mutex and cgroup_threadgroup_rwsem.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002626 */
2627static int cgroup_attach_task(struct cgroup *dst_cgrp,
2628 struct task_struct *leader, bool threadgroup)
2629{
2630 LIST_HEAD(preloaded_csets);
2631 struct task_struct *task;
2632 int ret;
2633
2634 /* look up all src csets */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002635 spin_lock_bh(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002636 rcu_read_lock();
2637 task = leader;
2638 do {
2639 cgroup_migrate_add_src(task_css_set(task), dst_cgrp,
2640 &preloaded_csets);
2641 if (!threadgroup)
2642 break;
2643 } while_each_thread(leader, task);
2644 rcu_read_unlock();
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002645 spin_unlock_bh(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002646
2647 /* prepare dst csets and commit */
2648 ret = cgroup_migrate_prepare_dst(dst_cgrp, &preloaded_csets);
2649 if (!ret)
Tejun Heo9af2ec42015-09-11 15:00:20 -04002650 ret = cgroup_migrate(leader, threadgroup, dst_cgrp);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002651
2652 cgroup_migrate_finish(&preloaded_csets);
2653 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07002654}
2655
Tejun Heo187fe842015-06-18 16:54:28 -04002656static int cgroup_procs_write_permission(struct task_struct *task,
2657 struct cgroup *dst_cgrp,
2658 struct kernfs_open_file *of)
Tejun Heodedf22e2015-06-18 16:54:28 -04002659{
2660 const struct cred *cred = current_cred();
2661 const struct cred *tcred = get_task_cred(task);
2662 int ret = 0;
2663
2664 /*
2665 * even if we're attaching all tasks in the thread group, we only
2666 * need to check permissions on one of them.
2667 */
2668 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
2669 !uid_eq(cred->euid, tcred->uid) &&
2670 !uid_eq(cred->euid, tcred->suid))
2671 ret = -EACCES;
2672
Tejun Heo187fe842015-06-18 16:54:28 -04002673 if (!ret && cgroup_on_dfl(dst_cgrp)) {
2674 struct super_block *sb = of->file->f_path.dentry->d_sb;
2675 struct cgroup *cgrp;
2676 struct inode *inode;
2677
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002678 spin_lock_bh(&css_set_lock);
Tejun Heo187fe842015-06-18 16:54:28 -04002679 cgrp = task_cgroup_from_root(task, &cgrp_dfl_root);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002680 spin_unlock_bh(&css_set_lock);
Tejun Heo187fe842015-06-18 16:54:28 -04002681
2682 while (!cgroup_is_descendant(dst_cgrp, cgrp))
2683 cgrp = cgroup_parent(cgrp);
2684
2685 ret = -ENOMEM;
Tejun Heo6f60ead2015-09-18 17:54:23 -04002686 inode = kernfs_get_inode(sb, cgrp->procs_file.kn);
Tejun Heo187fe842015-06-18 16:54:28 -04002687 if (inode) {
2688 ret = inode_permission(inode, MAY_WRITE);
2689 iput(inode);
2690 }
2691 }
2692
Tejun Heodedf22e2015-06-18 16:54:28 -04002693 put_cred(tcred);
2694 return ret;
2695}
2696
Ben Blum74a11662011-05-26 16:25:20 -07002697/*
2698 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08002699 * function to attach either it or all tasks in its threadgroup. Will lock
Tejun Heo0e1d7682014-02-25 10:04:03 -05002700 * cgroup_mutex and threadgroup.
Ben Blum74a11662011-05-26 16:25:20 -07002701 */
Tejun Heoacbef752014-05-13 12:16:22 -04002702static ssize_t __cgroup_procs_write(struct kernfs_open_file *of, char *buf,
2703 size_t nbytes, loff_t off, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002704{
Paul Menagebbcb81d2007-10-18 23:39:32 -07002705 struct task_struct *tsk;
Tejun Heoe76ecae2014-05-13 12:19:23 -04002706 struct cgroup *cgrp;
Tejun Heoacbef752014-05-13 12:16:22 -04002707 pid_t pid;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002708 int ret;
2709
Tejun Heoacbef752014-05-13 12:16:22 -04002710 if (kstrtoint(strstrip(buf), 0, &pid) || pid < 0)
2711 return -EINVAL;
2712
Tejun Heoe76ecae2014-05-13 12:19:23 -04002713 cgrp = cgroup_kn_lock_live(of->kn);
2714 if (!cgrp)
Ben Blum74a11662011-05-26 16:25:20 -07002715 return -ENODEV;
2716
Tejun Heo3014dde2015-09-16 13:03:02 -04002717 percpu_down_write(&cgroup_threadgroup_rwsem);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002718 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002719 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002720 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07002721 if (!tsk) {
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09002722 ret = -ESRCH;
Tejun Heo3014dde2015-09-16 13:03:02 -04002723 goto out_unlock_rcu;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002724 }
Tejun Heodedf22e2015-06-18 16:54:28 -04002725 } else {
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002726 tsk = current;
Tejun Heodedf22e2015-06-18 16:54:28 -04002727 }
Tejun Heocd3d0952011-12-12 18:12:21 -08002728
2729 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002730 tsk = tsk->group_leader;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002731
2732 /*
Tejun Heo14a40ff2013-03-19 13:45:20 -07002733 * Workqueue threads may acquire PF_NO_SETAFFINITY and become
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002734 * trapped in a cpuset, or RT worker may be born in a cgroup
2735 * with no rt_runtime allocated. Just say no.
2736 */
Tejun Heo14a40ff2013-03-19 13:45:20 -07002737 if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) {
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002738 ret = -EINVAL;
Tejun Heo3014dde2015-09-16 13:03:02 -04002739 goto out_unlock_rcu;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002740 }
2741
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002742 get_task_struct(tsk);
2743 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08002744
Tejun Heo187fe842015-06-18 16:54:28 -04002745 ret = cgroup_procs_write_permission(tsk, cgrp, of);
Tejun Heodedf22e2015-06-18 16:54:28 -04002746 if (!ret)
2747 ret = cgroup_attach_task(cgrp, tsk, threadgroup);
Li Zefan081aa452013-03-13 09:17:09 +08002748
Tejun Heof9f9e7b2015-09-16 11:51:12 -04002749 put_task_struct(tsk);
Tejun Heo3014dde2015-09-16 13:03:02 -04002750 goto out_unlock_threadgroup;
2751
2752out_unlock_rcu:
2753 rcu_read_unlock();
2754out_unlock_threadgroup:
2755 percpu_up_write(&cgroup_threadgroup_rwsem);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002756 cgroup_kn_unlock(of->kn);
Tejun Heoe93ad192016-01-19 12:18:41 -05002757 cpuset_post_attach_flush();
Tejun Heoacbef752014-05-13 12:16:22 -04002758 return ret ?: nbytes;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002759}
2760
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002761/**
2762 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
2763 * @from: attach to all cgroups of a given task
2764 * @tsk: the task to be attached
2765 */
2766int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
2767{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002768 struct cgroup_root *root;
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002769 int retval = 0;
2770
Tejun Heo47cfcd02013-04-07 09:29:51 -07002771 mutex_lock(&cgroup_mutex);
Tejun Heo985ed672014-03-19 10:23:53 -04002772 for_each_root(root) {
Tejun Heo96d365e2014-02-13 06:58:40 -05002773 struct cgroup *from_cgrp;
2774
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002775 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04002776 continue;
2777
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002778 spin_lock_bh(&css_set_lock);
Tejun Heo96d365e2014-02-13 06:58:40 -05002779 from_cgrp = task_cgroup_from_root(from, root);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002780 spin_unlock_bh(&css_set_lock);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002781
Li Zefan6f4b7e62013-07-31 16:18:36 +08002782 retval = cgroup_attach_task(from_cgrp, tsk, false);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002783 if (retval)
2784 break;
2785 }
Tejun Heo47cfcd02013-04-07 09:29:51 -07002786 mutex_unlock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002787
2788 return retval;
2789}
2790EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
2791
Tejun Heoacbef752014-05-13 12:16:22 -04002792static ssize_t cgroup_tasks_write(struct kernfs_open_file *of,
2793 char *buf, size_t nbytes, loff_t off)
Paul Menageaf351022008-07-25 01:47:01 -07002794{
Tejun Heoacbef752014-05-13 12:16:22 -04002795 return __cgroup_procs_write(of, buf, nbytes, off, false);
Ben Blum74a11662011-05-26 16:25:20 -07002796}
2797
Tejun Heoacbef752014-05-13 12:16:22 -04002798static ssize_t cgroup_procs_write(struct kernfs_open_file *of,
2799 char *buf, size_t nbytes, loff_t off)
Ben Blum74a11662011-05-26 16:25:20 -07002800{
Tejun Heoacbef752014-05-13 12:16:22 -04002801 return __cgroup_procs_write(of, buf, nbytes, off, true);
Paul Menageaf351022008-07-25 01:47:01 -07002802}
2803
Tejun Heo451af502014-05-13 12:16:21 -04002804static ssize_t cgroup_release_agent_write(struct kernfs_open_file *of,
2805 char *buf, size_t nbytes, loff_t off)
Paul Menagee788e0662008-07-25 01:46:59 -07002806{
Tejun Heoe76ecae2014-05-13 12:19:23 -04002807 struct cgroup *cgrp;
Tejun Heo5f469902014-02-11 11:52:48 -05002808
Tejun Heoe76ecae2014-05-13 12:19:23 -04002809 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
2810
2811 cgrp = cgroup_kn_lock_live(of->kn);
2812 if (!cgrp)
Paul Menagee788e0662008-07-25 01:46:59 -07002813 return -ENODEV;
Tejun Heo69e943b2014-02-08 10:36:58 -05002814 spin_lock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002815 strlcpy(cgrp->root->release_agent_path, strstrip(buf),
2816 sizeof(cgrp->root->release_agent_path));
Tejun Heo69e943b2014-02-08 10:36:58 -05002817 spin_unlock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002818 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04002819 return nbytes;
Paul Menagee788e0662008-07-25 01:46:59 -07002820}
2821
Tejun Heo2da8ca82013-12-05 12:28:04 -05002822static int cgroup_release_agent_show(struct seq_file *seq, void *v)
Paul Menagee788e0662008-07-25 01:46:59 -07002823{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002824 struct cgroup *cgrp = seq_css(seq)->cgroup;
Tejun Heo182446d2013-08-08 20:11:24 -04002825
Tejun Heo46cfeb02014-05-13 12:11:00 -04002826 spin_lock(&release_agent_path_lock);
Paul Menagee788e0662008-07-25 01:46:59 -07002827 seq_puts(seq, cgrp->root->release_agent_path);
Tejun Heo46cfeb02014-05-13 12:11:00 -04002828 spin_unlock(&release_agent_path_lock);
Paul Menagee788e0662008-07-25 01:46:59 -07002829 seq_putc(seq, '\n');
Paul Menagee788e0662008-07-25 01:46:59 -07002830 return 0;
2831}
2832
Tejun Heo2da8ca82013-12-05 12:28:04 -05002833static int cgroup_sane_behavior_show(struct seq_file *seq, void *v)
Tejun Heo873fe092013-04-14 20:15:26 -07002834{
Tejun Heoc1d5d422014-07-09 10:08:08 -04002835 seq_puts(seq, "0\n");
Paul Menage81a6a5c2007-10-18 23:39:38 -07002836 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002837}
2838
Tejun Heo6e5c8302016-02-22 22:25:47 -05002839static void cgroup_print_ss_mask(struct seq_file *seq, u16 ss_mask)
Tejun Heof8f22e52014-04-23 11:13:16 -04002840{
2841 struct cgroup_subsys *ss;
2842 bool printed = false;
2843 int ssid;
2844
Tejun Heob4e0eea2016-02-22 22:25:46 -05002845 do_each_subsys_mask(ss, ssid, ss_mask) {
Aleksa Saraia966a4e2015-06-06 10:02:15 +10002846 if (printed)
2847 seq_putc(seq, ' ');
2848 seq_printf(seq, "%s", ss->name);
2849 printed = true;
Tejun Heob4e0eea2016-02-22 22:25:46 -05002850 } while_each_subsys_mask();
Tejun Heof8f22e52014-04-23 11:13:16 -04002851 if (printed)
2852 seq_putc(seq, '\n');
2853}
2854
2855/* show controllers which are currently attached to the default hierarchy */
2856static int cgroup_root_controllers_show(struct seq_file *seq, void *v)
2857{
2858 struct cgroup *cgrp = seq_css(seq)->cgroup;
2859
Tejun Heo5533e012014-05-14 19:33:07 -04002860 cgroup_print_ss_mask(seq, cgrp->root->subsys_mask &
Tejun Heoa7165262016-02-23 10:00:50 -05002861 ~cgrp_dfl_inhibit_ss_mask);
Tejun Heof8f22e52014-04-23 11:13:16 -04002862 return 0;
2863}
2864
2865/* show controllers which are enabled from the parent */
2866static int cgroup_controllers_show(struct seq_file *seq, void *v)
2867{
2868 struct cgroup *cgrp = seq_css(seq)->cgroup;
2869
Tejun Heo667c2492014-07-08 18:02:56 -04002870 cgroup_print_ss_mask(seq, cgroup_parent(cgrp)->subtree_control);
Tejun Heof8f22e52014-04-23 11:13:16 -04002871 return 0;
2872}
2873
2874/* show controllers which are enabled for a given cgroup's children */
2875static int cgroup_subtree_control_show(struct seq_file *seq, void *v)
2876{
2877 struct cgroup *cgrp = seq_css(seq)->cgroup;
2878
Tejun Heo667c2492014-07-08 18:02:56 -04002879 cgroup_print_ss_mask(seq, cgrp->subtree_control);
Tejun Heof8f22e52014-04-23 11:13:16 -04002880 return 0;
2881}
2882
2883/**
2884 * cgroup_update_dfl_csses - update css assoc of a subtree in default hierarchy
2885 * @cgrp: root of the subtree to update csses for
2886 *
Tejun Heo8699b772016-02-22 22:25:46 -05002887 * @cgrp's subtree_ss_mask has changed and its subtree's (self excluded)
Tejun Heof8f22e52014-04-23 11:13:16 -04002888 * css associations need to be updated accordingly. This function looks up
2889 * all css_sets which are attached to the subtree, creates the matching
2890 * updated css_sets and migrates the tasks to the new ones.
2891 */
2892static int cgroup_update_dfl_csses(struct cgroup *cgrp)
2893{
2894 LIST_HEAD(preloaded_csets);
Tejun Heo10265072015-09-11 15:00:22 -04002895 struct cgroup_taskset tset = CGROUP_TASKSET_INIT(tset);
Tejun Heof8f22e52014-04-23 11:13:16 -04002896 struct cgroup_subsys_state *css;
2897 struct css_set *src_cset;
2898 int ret;
2899
Tejun Heof8f22e52014-04-23 11:13:16 -04002900 lockdep_assert_held(&cgroup_mutex);
2901
Tejun Heo3014dde2015-09-16 13:03:02 -04002902 percpu_down_write(&cgroup_threadgroup_rwsem);
2903
Tejun Heof8f22e52014-04-23 11:13:16 -04002904 /* look up all csses currently attached to @cgrp's subtree */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002905 spin_lock_bh(&css_set_lock);
Tejun Heof8f22e52014-04-23 11:13:16 -04002906 css_for_each_descendant_pre(css, cgroup_css(cgrp, NULL)) {
2907 struct cgrp_cset_link *link;
2908
Tejun Heo8699b772016-02-22 22:25:46 -05002909 /* self is not affected by subtree_ss_mask change */
Tejun Heof8f22e52014-04-23 11:13:16 -04002910 if (css->cgroup == cgrp)
2911 continue;
2912
2913 list_for_each_entry(link, &css->cgroup->cset_links, cset_link)
2914 cgroup_migrate_add_src(link->cset, cgrp,
2915 &preloaded_csets);
2916 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002917 spin_unlock_bh(&css_set_lock);
Tejun Heof8f22e52014-04-23 11:13:16 -04002918
2919 /* NULL dst indicates self on default hierarchy */
2920 ret = cgroup_migrate_prepare_dst(NULL, &preloaded_csets);
2921 if (ret)
2922 goto out_finish;
2923
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002924 spin_lock_bh(&css_set_lock);
Tejun Heof8f22e52014-04-23 11:13:16 -04002925 list_for_each_entry(src_cset, &preloaded_csets, mg_preload_node) {
Tejun Heo10265072015-09-11 15:00:22 -04002926 struct task_struct *task, *ntask;
Tejun Heof8f22e52014-04-23 11:13:16 -04002927
2928 /* src_csets precede dst_csets, break on the first dst_cset */
2929 if (!src_cset->mg_src_cgrp)
2930 break;
2931
Tejun Heo10265072015-09-11 15:00:22 -04002932 /* all tasks in src_csets need to be migrated */
2933 list_for_each_entry_safe(task, ntask, &src_cset->tasks, cg_list)
2934 cgroup_taskset_add(task, &tset);
Tejun Heof8f22e52014-04-23 11:13:16 -04002935 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002936 spin_unlock_bh(&css_set_lock);
Tejun Heof8f22e52014-04-23 11:13:16 -04002937
Tejun Heo10265072015-09-11 15:00:22 -04002938 ret = cgroup_taskset_migrate(&tset, cgrp);
Tejun Heof8f22e52014-04-23 11:13:16 -04002939out_finish:
2940 cgroup_migrate_finish(&preloaded_csets);
Tejun Heo3014dde2015-09-16 13:03:02 -04002941 percpu_up_write(&cgroup_threadgroup_rwsem);
Tejun Heof8f22e52014-04-23 11:13:16 -04002942 return ret;
2943}
2944
2945/* change the enabled child controllers for a cgroup in the default hierarchy */
Tejun Heo451af502014-05-13 12:16:21 -04002946static ssize_t cgroup_subtree_control_write(struct kernfs_open_file *of,
2947 char *buf, size_t nbytes,
2948 loff_t off)
Tejun Heof8f22e52014-04-23 11:13:16 -04002949{
Tejun Heo6e5c8302016-02-22 22:25:47 -05002950 u16 enable = 0, disable = 0;
2951 u16 css_enable, css_disable, old_sc, new_sc, old_ss, new_ss;
Tejun Heoa9746d82014-05-13 12:19:22 -04002952 struct cgroup *cgrp, *child;
Tejun Heof8f22e52014-04-23 11:13:16 -04002953 struct cgroup_subsys *ss;
Tejun Heo451af502014-05-13 12:16:21 -04002954 char *tok;
Tejun Heof8f22e52014-04-23 11:13:16 -04002955 int ssid, ret;
2956
2957 /*
Tejun Heod37167a2014-05-13 12:10:59 -04002958 * Parse input - space separated list of subsystem names prefixed
2959 * with either + or -.
Tejun Heof8f22e52014-04-23 11:13:16 -04002960 */
Tejun Heo451af502014-05-13 12:16:21 -04002961 buf = strstrip(buf);
2962 while ((tok = strsep(&buf, " "))) {
Tejun Heod37167a2014-05-13 12:10:59 -04002963 if (tok[0] == '\0')
2964 continue;
Tejun Heoa7165262016-02-23 10:00:50 -05002965 do_each_subsys_mask(ss, ssid, ~cgrp_dfl_inhibit_ss_mask) {
Tejun Heofc5ed1e2015-09-18 11:56:28 -04002966 if (!cgroup_ssid_enabled(ssid) ||
2967 strcmp(tok + 1, ss->name))
Tejun Heof8f22e52014-04-23 11:13:16 -04002968 continue;
2969
2970 if (*tok == '+') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04002971 enable |= 1 << ssid;
2972 disable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002973 } else if (*tok == '-') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04002974 disable |= 1 << ssid;
2975 enable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002976 } else {
2977 return -EINVAL;
2978 }
2979 break;
Tejun Heob4e0eea2016-02-22 22:25:46 -05002980 } while_each_subsys_mask();
Tejun Heof8f22e52014-04-23 11:13:16 -04002981 if (ssid == CGROUP_SUBSYS_COUNT)
2982 return -EINVAL;
2983 }
2984
Tejun Heoa9746d82014-05-13 12:19:22 -04002985 cgrp = cgroup_kn_lock_live(of->kn);
2986 if (!cgrp)
2987 return -ENODEV;
Tejun Heof8f22e52014-04-23 11:13:16 -04002988
2989 for_each_subsys(ss, ssid) {
2990 if (enable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04002991 if (cgrp->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002992 enable &= ~(1 << ssid);
2993 continue;
2994 }
2995
Tejun Heoc29adf22014-07-08 18:02:56 -04002996 /* unavailable or not enabled on the parent? */
2997 if (!(cgrp_dfl_root.subsys_mask & (1 << ssid)) ||
2998 (cgroup_parent(cgrp) &&
Tejun Heo667c2492014-07-08 18:02:56 -04002999 !(cgroup_parent(cgrp)->subtree_control & (1 << ssid)))) {
Tejun Heoc29adf22014-07-08 18:02:56 -04003000 ret = -ENOENT;
3001 goto out_unlock;
3002 }
Tejun Heof8f22e52014-04-23 11:13:16 -04003003 } else if (disable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04003004 if (!(cgrp->subtree_control & (1 << ssid))) {
Tejun Heof8f22e52014-04-23 11:13:16 -04003005 disable &= ~(1 << ssid);
3006 continue;
3007 }
3008
3009 /* a child has it enabled? */
3010 cgroup_for_each_live_child(child, cgrp) {
Tejun Heo667c2492014-07-08 18:02:56 -04003011 if (child->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04003012 ret = -EBUSY;
Tejun Heoddab2b62014-05-13 12:19:22 -04003013 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04003014 }
3015 }
3016 }
3017 }
3018
3019 if (!enable && !disable) {
3020 ret = 0;
Tejun Heoddab2b62014-05-13 12:19:22 -04003021 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04003022 }
3023
3024 /*
Tejun Heo667c2492014-07-08 18:02:56 -04003025 * Except for the root, subtree_control must be zero for a cgroup
Tejun Heof8f22e52014-04-23 11:13:16 -04003026 * with tasks so that child cgroups don't compete against tasks.
3027 */
Tejun Heod51f39b2014-05-16 13:22:48 -04003028 if (enable && cgroup_parent(cgrp) && !list_empty(&cgrp->cset_links)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04003029 ret = -EBUSY;
3030 goto out_unlock;
3031 }
3032
3033 /*
Tejun Heof63070d2014-07-08 18:02:57 -04003034 * Update subsys masks and calculate what needs to be done. More
3035 * subsystems than specified may need to be enabled or disabled
3036 * depending on subsystem dependencies.
3037 */
Tejun Heo755bf5e2014-11-18 02:49:50 -05003038 old_sc = cgrp->subtree_control;
Tejun Heo8699b772016-02-22 22:25:46 -05003039 old_ss = cgrp->subtree_ss_mask;
Tejun Heo755bf5e2014-11-18 02:49:50 -05003040 new_sc = (old_sc | enable) & ~disable;
Tejun Heo8699b772016-02-22 22:25:46 -05003041 new_ss = cgroup_calc_subtree_ss_mask(cgrp, new_sc);
Tejun Heoc29adf22014-07-08 18:02:56 -04003042
Tejun Heo755bf5e2014-11-18 02:49:50 -05003043 css_enable = ~old_ss & new_ss;
3044 css_disable = old_ss & ~new_ss;
Tejun Heof63070d2014-07-08 18:02:57 -04003045 enable |= css_enable;
3046 disable |= css_disable;
3047
Tejun Heodb6e3052014-11-18 02:49:51 -05003048 /*
3049 * Because css offlining is asynchronous, userland might try to
3050 * re-enable the same controller while the previous instance is
3051 * still around. In such cases, wait till it's gone using
3052 * offline_waitq.
3053 */
Tejun Heob4e0eea2016-02-22 22:25:46 -05003054 do_each_subsys_mask(ss, ssid, css_enable) {
Tejun Heodb6e3052014-11-18 02:49:51 -05003055 cgroup_for_each_live_child(child, cgrp) {
3056 DEFINE_WAIT(wait);
3057
3058 if (!cgroup_css(child, ss))
3059 continue;
3060
3061 cgroup_get(child);
3062 prepare_to_wait(&child->offline_waitq, &wait,
3063 TASK_UNINTERRUPTIBLE);
3064 cgroup_kn_unlock(of->kn);
3065 schedule();
3066 finish_wait(&child->offline_waitq, &wait);
3067 cgroup_put(child);
3068
3069 return restart_syscall();
3070 }
Tejun Heob4e0eea2016-02-22 22:25:46 -05003071 } while_each_subsys_mask();
Tejun Heodb6e3052014-11-18 02:49:51 -05003072
Tejun Heo755bf5e2014-11-18 02:49:50 -05003073 cgrp->subtree_control = new_sc;
Tejun Heo8699b772016-02-22 22:25:46 -05003074 cgrp->subtree_ss_mask = new_ss;
Tejun Heo755bf5e2014-11-18 02:49:50 -05003075
Tejun Heof63070d2014-07-08 18:02:57 -04003076 /*
3077 * Create new csses or make the existing ones visible. A css is
3078 * created invisible if it's being implicitly enabled through
3079 * dependency. An invisible css is made visible when the userland
3080 * explicitly enables it.
Tejun Heof8f22e52014-04-23 11:13:16 -04003081 */
Tejun Heo996cd1f2016-02-22 22:25:46 -05003082 do_each_subsys_mask(ss, ssid, enable) {
Tejun Heof8f22e52014-04-23 11:13:16 -04003083 cgroup_for_each_live_child(child, cgrp) {
Tejun Heof63070d2014-07-08 18:02:57 -04003084 if (css_enable & (1 << ssid))
3085 ret = create_css(child, ss,
3086 cgrp->subtree_control & (1 << ssid));
3087 else
Tejun Heo4df8dc92015-09-18 17:54:23 -04003088 ret = css_populate_dir(cgroup_css(child, ss),
3089 NULL);
Tejun Heof8f22e52014-04-23 11:13:16 -04003090 if (ret)
3091 goto err_undo_css;
3092 }
Tejun Heo996cd1f2016-02-22 22:25:46 -05003093 } while_each_subsys_mask();
Tejun Heof8f22e52014-04-23 11:13:16 -04003094
Tejun Heoc29adf22014-07-08 18:02:56 -04003095 /*
3096 * At this point, cgroup_e_css() results reflect the new csses
3097 * making the following cgroup_update_dfl_csses() properly update
3098 * css associations of all tasks in the subtree.
3099 */
Tejun Heof8f22e52014-04-23 11:13:16 -04003100 ret = cgroup_update_dfl_csses(cgrp);
3101 if (ret)
3102 goto err_undo_css;
3103
Tejun Heof63070d2014-07-08 18:02:57 -04003104 /*
3105 * All tasks are migrated out of disabled csses. Kill or hide
3106 * them. A css is hidden when the userland requests it to be
Tejun Heob4536f0ca2014-07-08 18:02:57 -04003107 * disabled while other subsystems are still depending on it. The
3108 * css must not actively control resources and be in the vanilla
3109 * state if it's made visible again later. Controllers which may
3110 * be depended upon should provide ->css_reset() for this purpose.
Tejun Heof63070d2014-07-08 18:02:57 -04003111 */
Tejun Heo996cd1f2016-02-22 22:25:46 -05003112 do_each_subsys_mask(ss, ssid, disable) {
Tejun Heof63070d2014-07-08 18:02:57 -04003113 cgroup_for_each_live_child(child, cgrp) {
Tejun Heob4536f0ca2014-07-08 18:02:57 -04003114 struct cgroup_subsys_state *css = cgroup_css(child, ss);
3115
3116 if (css_disable & (1 << ssid)) {
3117 kill_css(css);
3118 } else {
Tejun Heo4df8dc92015-09-18 17:54:23 -04003119 css_clear_dir(css, NULL);
Tejun Heob4536f0ca2014-07-08 18:02:57 -04003120 if (ss->css_reset)
3121 ss->css_reset(css);
3122 }
Tejun Heof63070d2014-07-08 18:02:57 -04003123 }
Tejun Heo996cd1f2016-02-22 22:25:46 -05003124 } while_each_subsys_mask();
Tejun Heof8f22e52014-04-23 11:13:16 -04003125
3126 kernfs_activate(cgrp->kn);
3127 ret = 0;
3128out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04003129 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04003130 return ret ?: nbytes;
Tejun Heof8f22e52014-04-23 11:13:16 -04003131
3132err_undo_css:
Tejun Heo755bf5e2014-11-18 02:49:50 -05003133 cgrp->subtree_control = old_sc;
Tejun Heo8699b772016-02-22 22:25:46 -05003134 cgrp->subtree_ss_mask = old_ss;
Tejun Heof8f22e52014-04-23 11:13:16 -04003135
Tejun Heo996cd1f2016-02-22 22:25:46 -05003136 do_each_subsys_mask(ss, ssid, enable) {
Tejun Heof8f22e52014-04-23 11:13:16 -04003137 cgroup_for_each_live_child(child, cgrp) {
3138 struct cgroup_subsys_state *css = cgroup_css(child, ss);
Tejun Heof63070d2014-07-08 18:02:57 -04003139
3140 if (!css)
3141 continue;
3142
3143 if (css_enable & (1 << ssid))
Tejun Heof8f22e52014-04-23 11:13:16 -04003144 kill_css(css);
Tejun Heof63070d2014-07-08 18:02:57 -04003145 else
Tejun Heo4df8dc92015-09-18 17:54:23 -04003146 css_clear_dir(css, NULL);
Tejun Heof8f22e52014-04-23 11:13:16 -04003147 }
Tejun Heo996cd1f2016-02-22 22:25:46 -05003148 } while_each_subsys_mask();
Tejun Heof8f22e52014-04-23 11:13:16 -04003149 goto out_unlock;
3150}
3151
Tejun Heo4a07c222015-09-18 17:54:22 -04003152static int cgroup_events_show(struct seq_file *seq, void *v)
Tejun Heo842b5972014-04-25 18:28:02 -04003153{
Tejun Heo4a07c222015-09-18 17:54:22 -04003154 seq_printf(seq, "populated %d\n",
Tejun Heo27bd4db2015-10-15 16:41:50 -04003155 cgroup_is_populated(seq_css(seq)->cgroup));
Tejun Heo842b5972014-04-25 18:28:02 -04003156 return 0;
3157}
3158
Tejun Heo2bd59d42014-02-11 11:52:49 -05003159static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf,
3160 size_t nbytes, loff_t off)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003161{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003162 struct cgroup *cgrp = of->kn->parent->priv;
3163 struct cftype *cft = of->kn->priv;
3164 struct cgroup_subsys_state *css;
Tejun Heoa742c592013-12-05 12:28:03 -05003165 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003166
Tejun Heob4168642014-05-13 12:16:21 -04003167 if (cft->write)
3168 return cft->write(of, buf, nbytes, off);
3169
Tejun Heo2bd59d42014-02-11 11:52:49 -05003170 /*
3171 * kernfs guarantees that a file isn't deleted with operations in
3172 * flight, which means that the matching css is and stays alive and
3173 * doesn't need to be pinned. The RCU locking is not necessary
3174 * either. It's just for the convenience of using cgroup_css().
3175 */
3176 rcu_read_lock();
3177 css = cgroup_css(cgrp, cft->ss);
3178 rcu_read_unlock();
Paul Menageddbcc7e2007-10-18 23:39:30 -07003179
Tejun Heo451af502014-05-13 12:16:21 -04003180 if (cft->write_u64) {
Tejun Heoa742c592013-12-05 12:28:03 -05003181 unsigned long long v;
3182 ret = kstrtoull(buf, 0, &v);
3183 if (!ret)
3184 ret = cft->write_u64(css, cft, v);
3185 } else if (cft->write_s64) {
3186 long long v;
3187 ret = kstrtoll(buf, 0, &v);
3188 if (!ret)
3189 ret = cft->write_s64(css, cft, v);
Tejun Heoa742c592013-12-05 12:28:03 -05003190 } else {
3191 ret = -EINVAL;
3192 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05003193
Tejun Heoa742c592013-12-05 12:28:03 -05003194 return ret ?: nbytes;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003195}
3196
Tejun Heo6612f052013-12-05 12:28:04 -05003197static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos)
Paul Menage91796562008-04-29 01:00:01 -07003198{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003199 return seq_cft(seq)->seq_start(seq, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05003200}
3201
3202static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos)
3203{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003204 return seq_cft(seq)->seq_next(seq, v, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05003205}
3206
3207static void cgroup_seqfile_stop(struct seq_file *seq, void *v)
3208{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003209 seq_cft(seq)->seq_stop(seq, v);
Paul Menage91796562008-04-29 01:00:01 -07003210}
3211
3212static int cgroup_seqfile_show(struct seq_file *m, void *arg)
3213{
Tejun Heo7da11272013-12-05 12:28:04 -05003214 struct cftype *cft = seq_cft(m);
3215 struct cgroup_subsys_state *css = seq_css(m);
Li Zefane0798ce2013-07-31 17:36:25 +08003216
Tejun Heo2da8ca82013-12-05 12:28:04 -05003217 if (cft->seq_show)
3218 return cft->seq_show(m, arg);
Paul Menage91796562008-04-29 01:00:01 -07003219
Tejun Heo896f5192013-12-05 12:28:04 -05003220 if (cft->read_u64)
3221 seq_printf(m, "%llu\n", cft->read_u64(css, cft));
3222 else if (cft->read_s64)
3223 seq_printf(m, "%lld\n", cft->read_s64(css, cft));
3224 else
3225 return -EINVAL;
3226 return 0;
Paul Menage91796562008-04-29 01:00:01 -07003227}
3228
Tejun Heo2bd59d42014-02-11 11:52:49 -05003229static struct kernfs_ops cgroup_kf_single_ops = {
3230 .atomic_write_len = PAGE_SIZE,
3231 .write = cgroup_file_write,
3232 .seq_show = cgroup_seqfile_show,
Paul Menage91796562008-04-29 01:00:01 -07003233};
3234
Tejun Heo2bd59d42014-02-11 11:52:49 -05003235static struct kernfs_ops cgroup_kf_ops = {
3236 .atomic_write_len = PAGE_SIZE,
3237 .write = cgroup_file_write,
3238 .seq_start = cgroup_seqfile_start,
3239 .seq_next = cgroup_seqfile_next,
3240 .seq_stop = cgroup_seqfile_stop,
3241 .seq_show = cgroup_seqfile_show,
3242};
Paul Menageddbcc7e2007-10-18 23:39:30 -07003243
3244/*
3245 * cgroup_rename - Only allow simple rename of directories in place.
3246 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05003247static int cgroup_rename(struct kernfs_node *kn, struct kernfs_node *new_parent,
3248 const char *new_name_str)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003249{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003250 struct cgroup *cgrp = kn->priv;
Li Zefan65dff752013-03-01 15:01:56 +08003251 int ret;
Li Zefan65dff752013-03-01 15:01:56 +08003252
Tejun Heo2bd59d42014-02-11 11:52:49 -05003253 if (kernfs_type(kn) != KERNFS_DIR)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003254 return -ENOTDIR;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003255 if (kn->parent != new_parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003256 return -EIO;
Li Zefan65dff752013-03-01 15:01:56 +08003257
Tejun Heo6db8e852013-06-14 11:18:22 -07003258 /*
3259 * This isn't a proper migration and its usefulness is very
Tejun Heoaa6ec292014-07-09 10:08:08 -04003260 * limited. Disallow on the default hierarchy.
Tejun Heo6db8e852013-06-14 11:18:22 -07003261 */
Tejun Heoaa6ec292014-07-09 10:08:08 -04003262 if (cgroup_on_dfl(cgrp))
Tejun Heo6db8e852013-06-14 11:18:22 -07003263 return -EPERM;
3264
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003265 /*
Tejun Heo8353da12014-05-13 12:19:23 -04003266 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003267 * active_ref. kernfs_rename() doesn't require active_ref
Tejun Heo8353da12014-05-13 12:19:23 -04003268 * protection. Break them before grabbing cgroup_mutex.
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003269 */
3270 kernfs_break_active_protection(new_parent);
3271 kernfs_break_active_protection(kn);
Li Zefan65dff752013-03-01 15:01:56 +08003272
Tejun Heo2bd59d42014-02-11 11:52:49 -05003273 mutex_lock(&cgroup_mutex);
Li Zefan65dff752013-03-01 15:01:56 +08003274
Tejun Heo2bd59d42014-02-11 11:52:49 -05003275 ret = kernfs_rename(kn, new_parent, new_name_str);
Li Zefan65dff752013-03-01 15:01:56 +08003276
Tejun Heo2bd59d42014-02-11 11:52:49 -05003277 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003278
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003279 kernfs_unbreak_active_protection(kn);
3280 kernfs_unbreak_active_protection(new_parent);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003281 return ret;
Li Zefan099fca32009-04-02 16:57:29 -07003282}
3283
Tejun Heo49957f82014-04-07 16:44:47 -04003284/* set uid and gid of cgroup dirs and files to that of the creator */
3285static int cgroup_kn_set_ugid(struct kernfs_node *kn)
3286{
3287 struct iattr iattr = { .ia_valid = ATTR_UID | ATTR_GID,
3288 .ia_uid = current_fsuid(),
3289 .ia_gid = current_fsgid(), };
3290
3291 if (uid_eq(iattr.ia_uid, GLOBAL_ROOT_UID) &&
3292 gid_eq(iattr.ia_gid, GLOBAL_ROOT_GID))
3293 return 0;
3294
3295 return kernfs_setattr(kn, &iattr);
3296}
3297
Tejun Heo4df8dc92015-09-18 17:54:23 -04003298static int cgroup_add_file(struct cgroup_subsys_state *css, struct cgroup *cgrp,
3299 struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003300{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05003301 char name[CGROUP_FILE_NAME_MAX];
Tejun Heo2bd59d42014-02-11 11:52:49 -05003302 struct kernfs_node *kn;
3303 struct lock_class_key *key = NULL;
Tejun Heo49957f82014-04-07 16:44:47 -04003304 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003305
Tejun Heo2bd59d42014-02-11 11:52:49 -05003306#ifdef CONFIG_DEBUG_LOCK_ALLOC
3307 key = &cft->lockdep_key;
3308#endif
3309 kn = __kernfs_create_file(cgrp->kn, cgroup_file_name(cgrp, cft, name),
3310 cgroup_file_mode(cft), 0, cft->kf_ops, cft,
Tejun Heodfeb07502015-02-13 14:36:31 -08003311 NULL, key);
Tejun Heo49957f82014-04-07 16:44:47 -04003312 if (IS_ERR(kn))
3313 return PTR_ERR(kn);
3314
3315 ret = cgroup_kn_set_ugid(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04003316 if (ret) {
Tejun Heo49957f82014-04-07 16:44:47 -04003317 kernfs_remove(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04003318 return ret;
3319 }
3320
Tejun Heo6f60ead2015-09-18 17:54:23 -04003321 if (cft->file_offset) {
3322 struct cgroup_file *cfile = (void *)css + cft->file_offset;
3323
Tejun Heo34c06252015-11-05 00:12:24 -05003324 spin_lock_irq(&cgroup_file_kn_lock);
Tejun Heo6f60ead2015-09-18 17:54:23 -04003325 cfile->kn = kn;
Tejun Heo34c06252015-11-05 00:12:24 -05003326 spin_unlock_irq(&cgroup_file_kn_lock);
Tejun Heo6f60ead2015-09-18 17:54:23 -04003327 }
3328
Tejun Heof8f22e52014-04-23 11:13:16 -04003329 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003330}
3331
Tejun Heob1f28d32013-06-28 16:24:10 -07003332/**
3333 * cgroup_addrm_files - add or remove files to a cgroup directory
Tejun Heo4df8dc92015-09-18 17:54:23 -04003334 * @css: the target css
3335 * @cgrp: the target cgroup (usually css->cgroup)
Tejun Heob1f28d32013-06-28 16:24:10 -07003336 * @cfts: array of cftypes to be added
3337 * @is_add: whether to add or remove
3338 *
3339 * Depending on @is_add, add or remove files defined by @cfts on @cgrp.
Tejun Heo6732ed82015-09-18 17:54:23 -04003340 * For removals, this function never fails.
Tejun Heob1f28d32013-06-28 16:24:10 -07003341 */
Tejun Heo4df8dc92015-09-18 17:54:23 -04003342static int cgroup_addrm_files(struct cgroup_subsys_state *css,
3343 struct cgroup *cgrp, struct cftype cfts[],
Tejun Heo2bb566c2013-08-08 20:11:23 -04003344 bool is_add)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003345{
Tejun Heo6732ed82015-09-18 17:54:23 -04003346 struct cftype *cft, *cft_end = NULL;
Tejun Heob598dde2016-02-22 22:25:45 -05003347 int ret = 0;
Tejun Heob1f28d32013-06-28 16:24:10 -07003348
Tejun Heo01f64742014-05-13 12:19:23 -04003349 lockdep_assert_held(&cgroup_mutex);
Tejun Heodb0416b2012-04-01 12:09:55 -07003350
Tejun Heo6732ed82015-09-18 17:54:23 -04003351restart:
3352 for (cft = cfts; cft != cft_end && cft->name[0] != '\0'; cft++) {
Gao fengf33fddc2012-12-06 14:38:57 +08003353 /* does cft->flags tell us to skip this file on @cgrp? */
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003354 if ((cft->flags & __CFTYPE_ONLY_ON_DFL) && !cgroup_on_dfl(cgrp))
Tejun Heo8cbbf2c2014-03-19 10:23:55 -04003355 continue;
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003356 if ((cft->flags & __CFTYPE_NOT_ON_DFL) && cgroup_on_dfl(cgrp))
Tejun Heo873fe092013-04-14 20:15:26 -07003357 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04003358 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08003359 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04003360 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08003361 continue;
3362
Li Zefan2739d3c2013-01-21 18:18:33 +08003363 if (is_add) {
Tejun Heo4df8dc92015-09-18 17:54:23 -04003364 ret = cgroup_add_file(css, cgrp, cft);
Tejun Heob1f28d32013-06-28 16:24:10 -07003365 if (ret) {
Joe Perchesed3d2612014-04-25 18:28:03 -04003366 pr_warn("%s: failed to add %s, err=%d\n",
3367 __func__, cft->name, ret);
Tejun Heo6732ed82015-09-18 17:54:23 -04003368 cft_end = cft;
3369 is_add = false;
3370 goto restart;
Tejun Heob1f28d32013-06-28 16:24:10 -07003371 }
Li Zefan2739d3c2013-01-21 18:18:33 +08003372 } else {
3373 cgroup_rm_file(cgrp, cft);
Tejun Heodb0416b2012-04-01 12:09:55 -07003374 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003375 }
Tejun Heob598dde2016-02-22 22:25:45 -05003376 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003377}
3378
Tejun Heo21a2d342014-02-12 09:29:49 -05003379static int cgroup_apply_cftypes(struct cftype *cfts, bool is_add)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003380{
3381 LIST_HEAD(pending);
Tejun Heo2bb566c2013-08-08 20:11:23 -04003382 struct cgroup_subsys *ss = cfts[0].ss;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04003383 struct cgroup *root = &ss->root->cgrp;
Tejun Heo492eb212013-08-08 20:11:25 -04003384 struct cgroup_subsys_state *css;
Tejun Heo9ccece82013-06-28 16:24:11 -07003385 int ret = 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003386
Tejun Heo01f64742014-05-13 12:19:23 -04003387 lockdep_assert_held(&cgroup_mutex);
Li Zefane8c82d22013-06-18 18:48:37 +08003388
Li Zefane8c82d22013-06-18 18:48:37 +08003389 /* add/rm files for all cgroups created before */
Tejun Heoca8bdca2013-08-26 18:40:56 -04003390 css_for_each_descendant_pre(css, cgroup_css(root, ss)) {
Tejun Heo492eb212013-08-08 20:11:25 -04003391 struct cgroup *cgrp = css->cgroup;
3392
Li Zefane8c82d22013-06-18 18:48:37 +08003393 if (cgroup_is_dead(cgrp))
3394 continue;
3395
Tejun Heo4df8dc92015-09-18 17:54:23 -04003396 ret = cgroup_addrm_files(css, cgrp, cfts, is_add);
Tejun Heo9ccece82013-06-28 16:24:11 -07003397 if (ret)
3398 break;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003399 }
Tejun Heo21a2d342014-02-12 09:29:49 -05003400
3401 if (is_add && !ret)
3402 kernfs_activate(root->kn);
Tejun Heo9ccece82013-06-28 16:24:11 -07003403 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003404}
3405
Tejun Heo2da440a2014-02-11 11:52:48 -05003406static void cgroup_exit_cftypes(struct cftype *cfts)
3407{
3408 struct cftype *cft;
3409
Tejun Heo2bd59d42014-02-11 11:52:49 -05003410 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3411 /* free copy for custom atomic_write_len, see init_cftypes() */
3412 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE)
3413 kfree(cft->kf_ops);
3414 cft->kf_ops = NULL;
Tejun Heo2da440a2014-02-11 11:52:48 -05003415 cft->ss = NULL;
Tejun Heoa8ddc822014-07-15 11:05:10 -04003416
3417 /* revert flags set by cgroup core while adding @cfts */
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003418 cft->flags &= ~(__CFTYPE_ONLY_ON_DFL | __CFTYPE_NOT_ON_DFL);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003419 }
Tejun Heo2da440a2014-02-11 11:52:48 -05003420}
3421
Tejun Heo2bd59d42014-02-11 11:52:49 -05003422static int cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo2da440a2014-02-11 11:52:48 -05003423{
3424 struct cftype *cft;
3425
Tejun Heo2bd59d42014-02-11 11:52:49 -05003426 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3427 struct kernfs_ops *kf_ops;
3428
Tejun Heo0adb0702014-02-12 09:29:48 -05003429 WARN_ON(cft->ss || cft->kf_ops);
3430
Tejun Heo2bd59d42014-02-11 11:52:49 -05003431 if (cft->seq_start)
3432 kf_ops = &cgroup_kf_ops;
3433 else
3434 kf_ops = &cgroup_kf_single_ops;
3435
3436 /*
3437 * Ugh... if @cft wants a custom max_write_len, we need to
3438 * make a copy of kf_ops to set its atomic_write_len.
3439 */
3440 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) {
3441 kf_ops = kmemdup(kf_ops, sizeof(*kf_ops), GFP_KERNEL);
3442 if (!kf_ops) {
3443 cgroup_exit_cftypes(cfts);
3444 return -ENOMEM;
3445 }
3446 kf_ops->atomic_write_len = cft->max_write_len;
3447 }
3448
3449 cft->kf_ops = kf_ops;
Tejun Heo2da440a2014-02-11 11:52:48 -05003450 cft->ss = ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003451 }
3452
3453 return 0;
Tejun Heo2da440a2014-02-11 11:52:48 -05003454}
3455
Tejun Heo21a2d342014-02-12 09:29:49 -05003456static int cgroup_rm_cftypes_locked(struct cftype *cfts)
3457{
Tejun Heo01f64742014-05-13 12:19:23 -04003458 lockdep_assert_held(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003459
3460 if (!cfts || !cfts[0].ss)
3461 return -ENOENT;
3462
3463 list_del(&cfts->node);
3464 cgroup_apply_cftypes(cfts, false);
3465 cgroup_exit_cftypes(cfts);
3466 return 0;
3467}
3468
Tejun Heo8e3f6542012-04-01 12:09:55 -07003469/**
Tejun Heo80b13582014-02-12 09:29:48 -05003470 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
3471 * @cfts: zero-length name terminated array of cftypes
3472 *
3473 * Unregister @cfts. Files described by @cfts are removed from all
3474 * existing cgroups and all future cgroups won't have them either. This
3475 * function can be called anytime whether @cfts' subsys is attached or not.
3476 *
3477 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
3478 * registered.
3479 */
3480int cgroup_rm_cftypes(struct cftype *cfts)
3481{
Tejun Heo21a2d342014-02-12 09:29:49 -05003482 int ret;
Tejun Heo80b13582014-02-12 09:29:48 -05003483
Tejun Heo01f64742014-05-13 12:19:23 -04003484 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003485 ret = cgroup_rm_cftypes_locked(cfts);
Tejun Heo01f64742014-05-13 12:19:23 -04003486 mutex_unlock(&cgroup_mutex);
Tejun Heo8e3f6542012-04-01 12:09:55 -07003487 return ret;
3488}
3489
3490/**
3491 * cgroup_add_cftypes - add an array of cftypes to a subsystem
3492 * @ss: target cgroup subsystem
3493 * @cfts: zero-length name terminated array of cftypes
3494 *
3495 * Register @cfts to @ss. Files described by @cfts are created for all
3496 * existing cgroups to which @ss is attached and all future cgroups will
3497 * have them too. This function can be called anytime whether @ss is
3498 * attached or not.
3499 *
3500 * Returns 0 on successful registration, -errno on failure. Note that this
3501 * function currently returns 0 as long as @cfts registration is successful
3502 * even if some file creation attempts on existing cgroups fail.
3503 */
Tejun Heo2cf669a2014-07-15 11:05:09 -04003504static int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003505{
Tejun Heo9ccece82013-06-28 16:24:11 -07003506 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003507
Tejun Heofc5ed1e2015-09-18 11:56:28 -04003508 if (!cgroup_ssid_enabled(ss->id))
Li Zefanc731ae12014-06-05 17:16:30 +08003509 return 0;
3510
Li Zefandc5736e2014-02-17 10:41:50 +08003511 if (!cfts || cfts[0].name[0] == '\0')
3512 return 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003513
Tejun Heo2bd59d42014-02-11 11:52:49 -05003514 ret = cgroup_init_cftypes(ss, cfts);
Tejun Heo9ccece82013-06-28 16:24:11 -07003515 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05003516 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003517
Tejun Heo01f64742014-05-13 12:19:23 -04003518 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003519
Tejun Heo0adb0702014-02-12 09:29:48 -05003520 list_add_tail(&cfts->node, &ss->cfts);
Tejun Heo21a2d342014-02-12 09:29:49 -05003521 ret = cgroup_apply_cftypes(cfts, true);
Tejun Heo9ccece82013-06-28 16:24:11 -07003522 if (ret)
Tejun Heo21a2d342014-02-12 09:29:49 -05003523 cgroup_rm_cftypes_locked(cfts);
3524
Tejun Heo01f64742014-05-13 12:19:23 -04003525 mutex_unlock(&cgroup_mutex);
Tejun Heo9ccece82013-06-28 16:24:11 -07003526 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003527}
Tejun Heo79578622012-04-01 12:09:56 -07003528
3529/**
Tejun Heoa8ddc822014-07-15 11:05:10 -04003530 * cgroup_add_dfl_cftypes - add an array of cftypes for default hierarchy
3531 * @ss: target cgroup subsystem
3532 * @cfts: zero-length name terminated array of cftypes
3533 *
3534 * Similar to cgroup_add_cftypes() but the added files are only used for
3535 * the default hierarchy.
3536 */
3537int cgroup_add_dfl_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
3538{
3539 struct cftype *cft;
3540
3541 for (cft = cfts; cft && cft->name[0] != '\0'; cft++)
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003542 cft->flags |= __CFTYPE_ONLY_ON_DFL;
Tejun Heoa8ddc822014-07-15 11:05:10 -04003543 return cgroup_add_cftypes(ss, cfts);
3544}
3545
3546/**
3547 * cgroup_add_legacy_cftypes - add an array of cftypes for legacy hierarchies
3548 * @ss: target cgroup subsystem
3549 * @cfts: zero-length name terminated array of cftypes
3550 *
3551 * Similar to cgroup_add_cftypes() but the added files are only used for
3552 * the legacy hierarchies.
3553 */
Tejun Heo2cf669a2014-07-15 11:05:09 -04003554int cgroup_add_legacy_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
3555{
Tejun Heoa8ddc822014-07-15 11:05:10 -04003556 struct cftype *cft;
3557
Tejun Heoe4b70372015-10-15 17:00:43 -04003558 for (cft = cfts; cft && cft->name[0] != '\0'; cft++)
3559 cft->flags |= __CFTYPE_NOT_ON_DFL;
Tejun Heo2cf669a2014-07-15 11:05:09 -04003560 return cgroup_add_cftypes(ss, cfts);
3561}
3562
Li Zefana043e3b2008-02-23 15:24:09 -08003563/**
Tejun Heo34c06252015-11-05 00:12:24 -05003564 * cgroup_file_notify - generate a file modified event for a cgroup_file
3565 * @cfile: target cgroup_file
3566 *
3567 * @cfile must have been obtained by setting cftype->file_offset.
3568 */
3569void cgroup_file_notify(struct cgroup_file *cfile)
3570{
3571 unsigned long flags;
3572
3573 spin_lock_irqsave(&cgroup_file_kn_lock, flags);
3574 if (cfile->kn)
3575 kernfs_notify(cfile->kn);
3576 spin_unlock_irqrestore(&cgroup_file_kn_lock, flags);
3577}
3578
3579/**
Li Zefana043e3b2008-02-23 15:24:09 -08003580 * cgroup_task_count - count the number of tasks in a cgroup.
3581 * @cgrp: the cgroup in question
3582 *
3583 * Return the number of tasks in the cgroup.
3584 */
Tejun Heo07bc3562014-02-13 06:58:39 -05003585static int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003586{
3587 int count = 0;
Tejun Heo69d02062013-06-12 21:04:50 -07003588 struct cgrp_cset_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003589
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003590 spin_lock_bh(&css_set_lock);
Tejun Heo69d02062013-06-12 21:04:50 -07003591 list_for_each_entry(link, &cgrp->cset_links, cset_link)
3592 count += atomic_read(&link->cset->refcount);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003593 spin_unlock_bh(&css_set_lock);
Paul Menagebbcb81d2007-10-18 23:39:32 -07003594 return count;
3595}
3596
Tejun Heo574bd9f2012-11-09 09:12:29 -08003597/**
Tejun Heo492eb212013-08-08 20:11:25 -04003598 * css_next_child - find the next child of a given css
Tejun Heoc2931b72014-05-16 13:22:51 -04003599 * @pos: the current position (%NULL to initiate traversal)
3600 * @parent: css whose children to walk
Tejun Heo53fa5262013-05-24 10:55:38 +09003601 *
Tejun Heoc2931b72014-05-16 13:22:51 -04003602 * This function returns the next child of @parent and should be called
Tejun Heo87fb54f2013-12-06 15:11:55 -05003603 * under either cgroup_mutex or RCU read lock. The only requirement is
Tejun Heoc2931b72014-05-16 13:22:51 -04003604 * that @parent and @pos are accessible. The next sibling is guaranteed to
3605 * be returned regardless of their states.
3606 *
3607 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3608 * css which finished ->css_online() is guaranteed to be visible in the
3609 * future iterations and will stay visible until the last reference is put.
3610 * A css which hasn't finished ->css_online() or already finished
3611 * ->css_offline() may show up during traversal. It's each subsystem's
3612 * responsibility to synchronize against on/offlining.
Tejun Heo53fa5262013-05-24 10:55:38 +09003613 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003614struct cgroup_subsys_state *css_next_child(struct cgroup_subsys_state *pos,
3615 struct cgroup_subsys_state *parent)
Tejun Heo53fa5262013-05-24 10:55:38 +09003616{
Tejun Heoc2931b72014-05-16 13:22:51 -04003617 struct cgroup_subsys_state *next;
Tejun Heo53fa5262013-05-24 10:55:38 +09003618
Tejun Heo8353da12014-05-13 12:19:23 -04003619 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo53fa5262013-05-24 10:55:38 +09003620
3621 /*
Tejun Heode3f0342014-05-16 13:22:49 -04003622 * @pos could already have been unlinked from the sibling list.
3623 * Once a cgroup is removed, its ->sibling.next is no longer
3624 * updated when its next sibling changes. CSS_RELEASED is set when
3625 * @pos is taken off list, at which time its next pointer is valid,
3626 * and, as releases are serialized, the one pointed to by the next
3627 * pointer is guaranteed to not have started release yet. This
3628 * implies that if we observe !CSS_RELEASED on @pos in this RCU
3629 * critical section, the one pointed to by its next pointer is
3630 * guaranteed to not have finished its RCU grace period even if we
3631 * have dropped rcu_read_lock() inbetween iterations.
Tejun Heo3b287a502013-08-08 20:11:24 -04003632 *
Tejun Heode3f0342014-05-16 13:22:49 -04003633 * If @pos has CSS_RELEASED set, its next pointer can't be
3634 * dereferenced; however, as each css is given a monotonically
3635 * increasing unique serial number and always appended to the
3636 * sibling list, the next one can be found by walking the parent's
3637 * children until the first css with higher serial number than
3638 * @pos's. While this path can be slower, it happens iff iteration
3639 * races against release and the race window is very small.
Tejun Heo53fa5262013-05-24 10:55:38 +09003640 */
Tejun Heo3b287a502013-08-08 20:11:24 -04003641 if (!pos) {
Tejun Heoc2931b72014-05-16 13:22:51 -04003642 next = list_entry_rcu(parent->children.next, struct cgroup_subsys_state, sibling);
3643 } else if (likely(!(pos->flags & CSS_RELEASED))) {
3644 next = list_entry_rcu(pos->sibling.next, struct cgroup_subsys_state, sibling);
Tejun Heo3b287a502013-08-08 20:11:24 -04003645 } else {
Tejun Heoc2931b72014-05-16 13:22:51 -04003646 list_for_each_entry_rcu(next, &parent->children, sibling)
Tejun Heo3b287a502013-08-08 20:11:24 -04003647 if (next->serial_nr > pos->serial_nr)
3648 break;
Tejun Heo53fa5262013-05-24 10:55:38 +09003649 }
3650
Tejun Heo3b281af2014-04-23 11:13:15 -04003651 /*
3652 * @next, if not pointing to the head, can be dereferenced and is
Tejun Heoc2931b72014-05-16 13:22:51 -04003653 * the next sibling.
Tejun Heo3b281af2014-04-23 11:13:15 -04003654 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003655 if (&next->sibling != &parent->children)
3656 return next;
Tejun Heo3b281af2014-04-23 11:13:15 -04003657 return NULL;
Tejun Heo53fa5262013-05-24 10:55:38 +09003658}
Tejun Heo53fa5262013-05-24 10:55:38 +09003659
3660/**
Tejun Heo492eb212013-08-08 20:11:25 -04003661 * css_next_descendant_pre - find the next descendant for pre-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003662 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003663 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003664 *
Tejun Heo492eb212013-08-08 20:11:25 -04003665 * To be used by css_for_each_descendant_pre(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003666 * to visit for pre-order traversal of @root's descendants. @root is
3667 * included in the iteration and the first node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003668 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003669 * While this function requires cgroup_mutex or RCU read locking, it
3670 * doesn't require the whole traversal to be contained in a single critical
3671 * section. This function will return the correct next descendant as long
3672 * as both @pos and @root are accessible and @pos is a descendant of @root.
Tejun Heoc2931b72014-05-16 13:22:51 -04003673 *
3674 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3675 * css which finished ->css_online() is guaranteed to be visible in the
3676 * future iterations and will stay visible until the last reference is put.
3677 * A css which hasn't finished ->css_online() or already finished
3678 * ->css_offline() may show up during traversal. It's each subsystem's
3679 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003680 */
Tejun Heo492eb212013-08-08 20:11:25 -04003681struct cgroup_subsys_state *
3682css_next_descendant_pre(struct cgroup_subsys_state *pos,
3683 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003684{
Tejun Heo492eb212013-08-08 20:11:25 -04003685 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003686
Tejun Heo8353da12014-05-13 12:19:23 -04003687 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003688
Tejun Heobd8815a2013-08-08 20:11:27 -04003689 /* if first iteration, visit @root */
Tejun Heo7805d002013-05-24 10:50:24 +09003690 if (!pos)
Tejun Heobd8815a2013-08-08 20:11:27 -04003691 return root;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003692
3693 /* visit the first child if exists */
Tejun Heo492eb212013-08-08 20:11:25 -04003694 next = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003695 if (next)
3696 return next;
3697
3698 /* no child, visit my or the closest ancestor's next sibling */
Tejun Heo492eb212013-08-08 20:11:25 -04003699 while (pos != root) {
Tejun Heo5c9d5352014-05-16 13:22:48 -04003700 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003701 if (next)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003702 return next;
Tejun Heo5c9d5352014-05-16 13:22:48 -04003703 pos = pos->parent;
Tejun Heo7805d002013-05-24 10:50:24 +09003704 }
Tejun Heo574bd9f2012-11-09 09:12:29 -08003705
3706 return NULL;
3707}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003708
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003709/**
Tejun Heo492eb212013-08-08 20:11:25 -04003710 * css_rightmost_descendant - return the rightmost descendant of a css
3711 * @pos: css of interest
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003712 *
Tejun Heo492eb212013-08-08 20:11:25 -04003713 * Return the rightmost descendant of @pos. If there's no descendant, @pos
3714 * is returned. This can be used during pre-order traversal to skip
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003715 * subtree of @pos.
Tejun Heo75501a62013-05-24 10:55:38 +09003716 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003717 * While this function requires cgroup_mutex or RCU read locking, it
3718 * doesn't require the whole traversal to be contained in a single critical
3719 * section. This function will return the correct rightmost descendant as
3720 * long as @pos is accessible.
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003721 */
Tejun Heo492eb212013-08-08 20:11:25 -04003722struct cgroup_subsys_state *
3723css_rightmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003724{
Tejun Heo492eb212013-08-08 20:11:25 -04003725 struct cgroup_subsys_state *last, *tmp;
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003726
Tejun Heo8353da12014-05-13 12:19:23 -04003727 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003728
3729 do {
3730 last = pos;
3731 /* ->prev isn't RCU safe, walk ->next till the end */
3732 pos = NULL;
Tejun Heo492eb212013-08-08 20:11:25 -04003733 css_for_each_child(tmp, last)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003734 pos = tmp;
3735 } while (pos);
3736
3737 return last;
3738}
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003739
Tejun Heo492eb212013-08-08 20:11:25 -04003740static struct cgroup_subsys_state *
3741css_leftmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003742{
Tejun Heo492eb212013-08-08 20:11:25 -04003743 struct cgroup_subsys_state *last;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003744
3745 do {
3746 last = pos;
Tejun Heo492eb212013-08-08 20:11:25 -04003747 pos = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003748 } while (pos);
3749
3750 return last;
3751}
3752
3753/**
Tejun Heo492eb212013-08-08 20:11:25 -04003754 * css_next_descendant_post - find the next descendant for post-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003755 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003756 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003757 *
Tejun Heo492eb212013-08-08 20:11:25 -04003758 * To be used by css_for_each_descendant_post(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003759 * to visit for post-order traversal of @root's descendants. @root is
3760 * included in the iteration and the last node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003761 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003762 * While this function requires cgroup_mutex or RCU read locking, it
3763 * doesn't require the whole traversal to be contained in a single critical
3764 * section. This function will return the correct next descendant as long
3765 * as both @pos and @cgroup are accessible and @pos is a descendant of
3766 * @cgroup.
Tejun Heoc2931b72014-05-16 13:22:51 -04003767 *
3768 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3769 * css which finished ->css_online() is guaranteed to be visible in the
3770 * future iterations and will stay visible until the last reference is put.
3771 * A css which hasn't finished ->css_online() or already finished
3772 * ->css_offline() may show up during traversal. It's each subsystem's
3773 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003774 */
Tejun Heo492eb212013-08-08 20:11:25 -04003775struct cgroup_subsys_state *
3776css_next_descendant_post(struct cgroup_subsys_state *pos,
3777 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003778{
Tejun Heo492eb212013-08-08 20:11:25 -04003779 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003780
Tejun Heo8353da12014-05-13 12:19:23 -04003781 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003782
Tejun Heo58b79a92013-09-06 15:31:08 -04003783 /* if first iteration, visit leftmost descendant which may be @root */
3784 if (!pos)
3785 return css_leftmost_descendant(root);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003786
Tejun Heobd8815a2013-08-08 20:11:27 -04003787 /* if we visited @root, we're done */
3788 if (pos == root)
3789 return NULL;
3790
Tejun Heo574bd9f2012-11-09 09:12:29 -08003791 /* if there's an unvisited sibling, visit its leftmost descendant */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003792 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003793 if (next)
Tejun Heo492eb212013-08-08 20:11:25 -04003794 return css_leftmost_descendant(next);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003795
3796 /* no sibling left, visit parent */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003797 return pos->parent;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003798}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003799
Tejun Heof3d46502014-05-16 13:22:52 -04003800/**
3801 * css_has_online_children - does a css have online children
3802 * @css: the target css
3803 *
3804 * Returns %true if @css has any online children; otherwise, %false. This
3805 * function can be called from any context but the caller is responsible
3806 * for synchronizing against on/offlining as necessary.
3807 */
3808bool css_has_online_children(struct cgroup_subsys_state *css)
Tejun Heocbc125e2014-05-14 09:15:01 -04003809{
Tejun Heof3d46502014-05-16 13:22:52 -04003810 struct cgroup_subsys_state *child;
3811 bool ret = false;
Tejun Heocbc125e2014-05-14 09:15:01 -04003812
3813 rcu_read_lock();
Tejun Heof3d46502014-05-16 13:22:52 -04003814 css_for_each_child(child, css) {
Li Zefan99bae5f2014-06-12 14:31:31 +08003815 if (child->flags & CSS_ONLINE) {
Tejun Heof3d46502014-05-16 13:22:52 -04003816 ret = true;
3817 break;
Tejun Heocbc125e2014-05-14 09:15:01 -04003818 }
3819 }
3820 rcu_read_unlock();
Tejun Heof3d46502014-05-16 13:22:52 -04003821 return ret;
Cliff Wickman31a7df02008-02-07 00:14:42 -08003822}
3823
Tejun Heo0942eee2013-08-08 20:11:26 -04003824/**
Tejun Heoecb9d532015-10-15 16:41:52 -04003825 * css_task_iter_advance_css_set - advance a task itererator to the next css_set
Tejun Heo0942eee2013-08-08 20:11:26 -04003826 * @it: the iterator to advance
3827 *
3828 * Advance @it to the next css_set to walk.
Tejun Heod5158762013-08-08 20:11:26 -04003829 */
Tejun Heoecb9d532015-10-15 16:41:52 -04003830static void css_task_iter_advance_css_set(struct css_task_iter *it)
Tejun Heod5158762013-08-08 20:11:26 -04003831{
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003832 struct list_head *l = it->cset_pos;
Tejun Heod5158762013-08-08 20:11:26 -04003833 struct cgrp_cset_link *link;
3834 struct css_set *cset;
3835
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003836 lockdep_assert_held(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04003837
Tejun Heod5158762013-08-08 20:11:26 -04003838 /* Advance to the next non-empty css_set */
3839 do {
3840 l = l->next;
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003841 if (l == it->cset_head) {
3842 it->cset_pos = NULL;
Tejun Heoecb9d532015-10-15 16:41:52 -04003843 it->task_pos = NULL;
Tejun Heod5158762013-08-08 20:11:26 -04003844 return;
3845 }
Tejun Heo3ebb2b62014-04-23 11:13:15 -04003846
3847 if (it->ss) {
3848 cset = container_of(l, struct css_set,
3849 e_cset_node[it->ss->id]);
3850 } else {
3851 link = list_entry(l, struct cgrp_cset_link, cset_link);
3852 cset = link->cset;
3853 }
Tejun Heo0de09422015-10-15 16:41:49 -04003854 } while (!css_set_populated(cset));
Tejun Heoc7561122014-02-25 10:04:01 -05003855
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003856 it->cset_pos = l;
Tejun Heoc7561122014-02-25 10:04:01 -05003857
3858 if (!list_empty(&cset->tasks))
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003859 it->task_pos = cset->tasks.next;
Tejun Heoc7561122014-02-25 10:04:01 -05003860 else
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003861 it->task_pos = cset->mg_tasks.next;
3862
3863 it->tasks_head = &cset->tasks;
3864 it->mg_tasks_head = &cset->mg_tasks;
Tejun Heoed27b9f2015-10-15 16:41:52 -04003865
3866 /*
3867 * We don't keep css_sets locked across iteration steps and thus
3868 * need to take steps to ensure that iteration can be resumed after
3869 * the lock is re-acquired. Iteration is performed at two levels -
3870 * css_sets and tasks in them.
3871 *
3872 * Once created, a css_set never leaves its cgroup lists, so a
3873 * pinned css_set is guaranteed to stay put and we can resume
3874 * iteration afterwards.
3875 *
3876 * Tasks may leave @cset across iteration steps. This is resolved
3877 * by registering each iterator with the css_set currently being
3878 * walked and making css_set_move_task() advance iterators whose
3879 * next task is leaving.
3880 */
3881 if (it->cur_cset) {
3882 list_del(&it->iters_node);
3883 put_css_set_locked(it->cur_cset);
3884 }
3885 get_css_set(cset);
3886 it->cur_cset = cset;
3887 list_add(&it->iters_node, &cset->task_iters);
Tejun Heod5158762013-08-08 20:11:26 -04003888}
3889
Tejun Heoecb9d532015-10-15 16:41:52 -04003890static void css_task_iter_advance(struct css_task_iter *it)
3891{
3892 struct list_head *l = it->task_pos;
3893
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003894 lockdep_assert_held(&css_set_lock);
Tejun Heoecb9d532015-10-15 16:41:52 -04003895 WARN_ON_ONCE(!l);
3896
3897 /*
3898 * Advance iterator to find next entry. cset->tasks is consumed
3899 * first and then ->mg_tasks. After ->mg_tasks, we move onto the
3900 * next cset.
3901 */
3902 l = l->next;
3903
3904 if (l == it->tasks_head)
3905 l = it->mg_tasks_head->next;
3906
3907 if (l == it->mg_tasks_head)
3908 css_task_iter_advance_css_set(it);
3909 else
3910 it->task_pos = l;
3911}
3912
Tejun Heo0942eee2013-08-08 20:11:26 -04003913/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003914 * css_task_iter_start - initiate task iteration
3915 * @css: the css to walk tasks of
Tejun Heo0942eee2013-08-08 20:11:26 -04003916 * @it: the task iterator to use
3917 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003918 * Initiate iteration through the tasks of @css. The caller can call
3919 * css_task_iter_next() to walk through the tasks until the function
3920 * returns NULL. On completion of iteration, css_task_iter_end() must be
3921 * called.
Tejun Heo0942eee2013-08-08 20:11:26 -04003922 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003923void css_task_iter_start(struct cgroup_subsys_state *css,
3924 struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07003925{
Tejun Heo56fde9e2014-02-13 06:58:38 -05003926 /* no one should try to iterate before mounting cgroups */
3927 WARN_ON_ONCE(!use_task_css_set_links);
Paul Menage817929e2007-10-18 23:39:36 -07003928
Tejun Heoed27b9f2015-10-15 16:41:52 -04003929 memset(it, 0, sizeof(*it));
3930
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003931 spin_lock_bh(&css_set_lock);
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003932
Tejun Heo3ebb2b62014-04-23 11:13:15 -04003933 it->ss = css->ss;
3934
3935 if (it->ss)
3936 it->cset_pos = &css->cgroup->e_csets[css->ss->id];
3937 else
3938 it->cset_pos = &css->cgroup->cset_links;
3939
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003940 it->cset_head = it->cset_pos;
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003941
Tejun Heoecb9d532015-10-15 16:41:52 -04003942 css_task_iter_advance_css_set(it);
Tejun Heoed27b9f2015-10-15 16:41:52 -04003943
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003944 spin_unlock_bh(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07003945}
Paul Menage817929e2007-10-18 23:39:36 -07003946
Tejun Heo0942eee2013-08-08 20:11:26 -04003947/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003948 * css_task_iter_next - return the next task for the iterator
Tejun Heo0942eee2013-08-08 20:11:26 -04003949 * @it: the task iterator being iterated
3950 *
3951 * The "next" function for task iteration. @it should have been
Tejun Heo72ec7022013-08-08 20:11:26 -04003952 * initialized via css_task_iter_start(). Returns NULL when the iteration
3953 * reaches the end.
Tejun Heo0942eee2013-08-08 20:11:26 -04003954 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003955struct task_struct *css_task_iter_next(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07003956{
Tejun Heod5745672015-10-29 11:43:05 +09003957 if (it->cur_task) {
Tejun Heoed27b9f2015-10-15 16:41:52 -04003958 put_task_struct(it->cur_task);
Tejun Heod5745672015-10-29 11:43:05 +09003959 it->cur_task = NULL;
3960 }
Tejun Heoed27b9f2015-10-15 16:41:52 -04003961
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003962 spin_lock_bh(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04003963
Tejun Heod5745672015-10-29 11:43:05 +09003964 if (it->task_pos) {
3965 it->cur_task = list_entry(it->task_pos, struct task_struct,
3966 cg_list);
3967 get_task_struct(it->cur_task);
3968 css_task_iter_advance(it);
3969 }
Tejun Heoed27b9f2015-10-15 16:41:52 -04003970
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003971 spin_unlock_bh(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04003972
3973 return it->cur_task;
Paul Menage817929e2007-10-18 23:39:36 -07003974}
3975
Tejun Heo0942eee2013-08-08 20:11:26 -04003976/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003977 * css_task_iter_end - finish task iteration
Tejun Heo0942eee2013-08-08 20:11:26 -04003978 * @it: the task iterator to finish
3979 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003980 * Finish task iteration started by css_task_iter_start().
Tejun Heo0942eee2013-08-08 20:11:26 -04003981 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003982void css_task_iter_end(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07003983{
Tejun Heoed27b9f2015-10-15 16:41:52 -04003984 if (it->cur_cset) {
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003985 spin_lock_bh(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04003986 list_del(&it->iters_node);
3987 put_css_set_locked(it->cur_cset);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003988 spin_unlock_bh(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04003989 }
3990
3991 if (it->cur_task)
3992 put_task_struct(it->cur_task);
Tejun Heo8cc99342013-04-07 09:29:50 -07003993}
3994
3995/**
3996 * cgroup_trasnsfer_tasks - move tasks from one cgroup to another
3997 * @to: cgroup to which the tasks will be moved
3998 * @from: cgroup in which the tasks currently reside
Tejun Heoeaf797a2014-02-25 10:04:03 -05003999 *
4000 * Locking rules between cgroup_post_fork() and the migration path
4001 * guarantee that, if a task is forking while being migrated, the new child
4002 * is guaranteed to be either visible in the source cgroup after the
4003 * parent's migration is complete or put into the target cgroup. No task
4004 * can slip out of migration through forking.
Tejun Heo8cc99342013-04-07 09:29:50 -07004005 */
4006int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from)
4007{
Tejun Heo952aaa12014-02-25 10:04:03 -05004008 LIST_HEAD(preloaded_csets);
4009 struct cgrp_cset_link *link;
Tejun Heoe406d1c2014-02-13 06:58:39 -05004010 struct css_task_iter it;
4011 struct task_struct *task;
Tejun Heo952aaa12014-02-25 10:04:03 -05004012 int ret;
Tejun Heoe406d1c2014-02-13 06:58:39 -05004013
Tejun Heo952aaa12014-02-25 10:04:03 -05004014 mutex_lock(&cgroup_mutex);
4015
4016 /* all tasks in @from are being moved, all csets are source */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04004017 spin_lock_bh(&css_set_lock);
Tejun Heo952aaa12014-02-25 10:04:03 -05004018 list_for_each_entry(link, &from->cset_links, cset_link)
4019 cgroup_migrate_add_src(link->cset, to, &preloaded_csets);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04004020 spin_unlock_bh(&css_set_lock);
Tejun Heo952aaa12014-02-25 10:04:03 -05004021
4022 ret = cgroup_migrate_prepare_dst(to, &preloaded_csets);
4023 if (ret)
4024 goto out_err;
4025
4026 /*
Rami Rosen2cfa2b12016-01-09 23:33:06 +02004027 * Migrate tasks one-by-one until @from is empty. This fails iff
Tejun Heo952aaa12014-02-25 10:04:03 -05004028 * ->can_attach() fails.
4029 */
Tejun Heoe406d1c2014-02-13 06:58:39 -05004030 do {
Tejun Heo9d800df2014-05-14 09:15:00 -04004031 css_task_iter_start(&from->self, &it);
Tejun Heoe406d1c2014-02-13 06:58:39 -05004032 task = css_task_iter_next(&it);
4033 if (task)
4034 get_task_struct(task);
4035 css_task_iter_end(&it);
4036
4037 if (task) {
Tejun Heo9af2ec42015-09-11 15:00:20 -04004038 ret = cgroup_migrate(task, false, to);
Tejun Heoe406d1c2014-02-13 06:58:39 -05004039 put_task_struct(task);
4040 }
4041 } while (task && !ret);
Tejun Heo952aaa12014-02-25 10:04:03 -05004042out_err:
4043 cgroup_migrate_finish(&preloaded_csets);
4044 mutex_unlock(&cgroup_mutex);
Tejun Heoe406d1c2014-02-13 06:58:39 -05004045 return ret;
Tejun Heo8cc99342013-04-07 09:29:50 -07004046}
4047
Paul Menage817929e2007-10-18 23:39:36 -07004048/*
Ben Blum102a7752009-09-23 15:56:26 -07004049 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07004050 *
4051 * Reading this file can return large amounts of data if a cgroup has
4052 * *lots* of attached tasks. So it may need several calls to read(),
4053 * but we cannot guarantee that the information we produce is correct
4054 * unless we produce it entirely atomically.
4055 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07004056 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07004057
Li Zefan24528252012-01-20 11:58:43 +08004058/* which pidlist file are we talking about? */
4059enum cgroup_filetype {
4060 CGROUP_FILE_PROCS,
4061 CGROUP_FILE_TASKS,
4062};
4063
4064/*
4065 * A pidlist is a list of pids that virtually represents the contents of one
4066 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
4067 * a pair (one each for procs, tasks) for each pid namespace that's relevant
4068 * to the cgroup.
4069 */
4070struct cgroup_pidlist {
4071 /*
4072 * used to find which pidlist is wanted. doesn't change as long as
4073 * this particular list stays in the list.
4074 */
4075 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
4076 /* array of xids */
4077 pid_t *list;
4078 /* how many elements the above list has */
4079 int length;
Li Zefan24528252012-01-20 11:58:43 +08004080 /* each of these stored in a list by its cgroup */
4081 struct list_head links;
4082 /* pointer to the cgroup we belong to, for list removal purposes */
4083 struct cgroup *owner;
Tejun Heob1a21362013-11-29 10:42:58 -05004084 /* for delayed destruction */
4085 struct delayed_work destroy_dwork;
Li Zefan24528252012-01-20 11:58:43 +08004086};
4087
Paul Menagebbcb81d2007-10-18 23:39:32 -07004088/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07004089 * The following two functions "fix" the issue where there are more pids
4090 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
4091 * TODO: replace with a kernel-wide solution to this problem
4092 */
4093#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
4094static void *pidlist_allocate(int count)
4095{
4096 if (PIDLIST_TOO_LARGE(count))
4097 return vmalloc(count * sizeof(pid_t));
4098 else
4099 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
4100}
Tejun Heob1a21362013-11-29 10:42:58 -05004101
Ben Blumd1d9fd32009-09-23 15:56:28 -07004102static void pidlist_free(void *p)
4103{
Bandan Das58794512015-03-02 17:51:10 -05004104 kvfree(p);
Ben Blumd1d9fd32009-09-23 15:56:28 -07004105}
Ben Blumd1d9fd32009-09-23 15:56:28 -07004106
4107/*
Tejun Heob1a21362013-11-29 10:42:58 -05004108 * Used to destroy all pidlists lingering waiting for destroy timer. None
4109 * should be left afterwards.
4110 */
4111static void cgroup_pidlist_destroy_all(struct cgroup *cgrp)
4112{
4113 struct cgroup_pidlist *l, *tmp_l;
4114
4115 mutex_lock(&cgrp->pidlist_mutex);
4116 list_for_each_entry_safe(l, tmp_l, &cgrp->pidlists, links)
4117 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, 0);
4118 mutex_unlock(&cgrp->pidlist_mutex);
4119
4120 flush_workqueue(cgroup_pidlist_destroy_wq);
4121 BUG_ON(!list_empty(&cgrp->pidlists));
4122}
4123
4124static void cgroup_pidlist_destroy_work_fn(struct work_struct *work)
4125{
4126 struct delayed_work *dwork = to_delayed_work(work);
4127 struct cgroup_pidlist *l = container_of(dwork, struct cgroup_pidlist,
4128 destroy_dwork);
4129 struct cgroup_pidlist *tofree = NULL;
4130
4131 mutex_lock(&l->owner->pidlist_mutex);
Tejun Heob1a21362013-11-29 10:42:58 -05004132
4133 /*
Tejun Heo04502362013-11-29 10:42:59 -05004134 * Destroy iff we didn't get queued again. The state won't change
4135 * as destroy_dwork can only be queued while locked.
Tejun Heob1a21362013-11-29 10:42:58 -05004136 */
Tejun Heo04502362013-11-29 10:42:59 -05004137 if (!delayed_work_pending(dwork)) {
Tejun Heob1a21362013-11-29 10:42:58 -05004138 list_del(&l->links);
4139 pidlist_free(l->list);
4140 put_pid_ns(l->key.ns);
4141 tofree = l;
4142 }
4143
Tejun Heob1a21362013-11-29 10:42:58 -05004144 mutex_unlock(&l->owner->pidlist_mutex);
4145 kfree(tofree);
4146}
4147
4148/*
Ben Blum102a7752009-09-23 15:56:26 -07004149 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
Li Zefan6ee211a2013-03-12 15:36:00 -07004150 * Returns the number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07004151 */
Li Zefan6ee211a2013-03-12 15:36:00 -07004152static int pidlist_uniq(pid_t *list, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07004153{
Ben Blum102a7752009-09-23 15:56:26 -07004154 int src, dest = 1;
Ben Blum102a7752009-09-23 15:56:26 -07004155
4156 /*
4157 * we presume the 0th element is unique, so i starts at 1. trivial
4158 * edge cases first; no work needs to be done for either
4159 */
4160 if (length == 0 || length == 1)
4161 return length;
4162 /* src and dest walk down the list; dest counts unique elements */
4163 for (src = 1; src < length; src++) {
4164 /* find next unique element */
4165 while (list[src] == list[src-1]) {
4166 src++;
4167 if (src == length)
4168 goto after;
4169 }
4170 /* dest always points to where the next unique element goes */
4171 list[dest] = list[src];
4172 dest++;
4173 }
4174after:
Ben Blum102a7752009-09-23 15:56:26 -07004175 return dest;
4176}
4177
Tejun Heoafb2bc12013-11-29 10:42:59 -05004178/*
4179 * The two pid files - task and cgroup.procs - guaranteed that the result
4180 * is sorted, which forced this whole pidlist fiasco. As pid order is
4181 * different per namespace, each namespace needs differently sorted list,
4182 * making it impossible to use, for example, single rbtree of member tasks
4183 * sorted by task pointer. As pidlists can be fairly large, allocating one
4184 * per open file is dangerous, so cgroup had to implement shared pool of
4185 * pidlists keyed by cgroup and namespace.
4186 *
4187 * All this extra complexity was caused by the original implementation
4188 * committing to an entirely unnecessary property. In the long term, we
Tejun Heoaa6ec292014-07-09 10:08:08 -04004189 * want to do away with it. Explicitly scramble sort order if on the
4190 * default hierarchy so that no such expectation exists in the new
4191 * interface.
Tejun Heoafb2bc12013-11-29 10:42:59 -05004192 *
4193 * Scrambling is done by swapping every two consecutive bits, which is
4194 * non-identity one-to-one mapping which disturbs sort order sufficiently.
4195 */
4196static pid_t pid_fry(pid_t pid)
4197{
4198 unsigned a = pid & 0x55555555;
4199 unsigned b = pid & 0xAAAAAAAA;
4200
4201 return (a << 1) | (b >> 1);
4202}
4203
4204static pid_t cgroup_pid_fry(struct cgroup *cgrp, pid_t pid)
4205{
Tejun Heoaa6ec292014-07-09 10:08:08 -04004206 if (cgroup_on_dfl(cgrp))
Tejun Heoafb2bc12013-11-29 10:42:59 -05004207 return pid_fry(pid);
4208 else
4209 return pid;
4210}
4211
Ben Blum102a7752009-09-23 15:56:26 -07004212static int cmppid(const void *a, const void *b)
4213{
4214 return *(pid_t *)a - *(pid_t *)b;
4215}
4216
Tejun Heoafb2bc12013-11-29 10:42:59 -05004217static int fried_cmppid(const void *a, const void *b)
4218{
4219 return pid_fry(*(pid_t *)a) - pid_fry(*(pid_t *)b);
4220}
4221
Ben Blum72a8cb32009-09-23 15:56:27 -07004222static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
4223 enum cgroup_filetype type)
4224{
4225 struct cgroup_pidlist *l;
4226 /* don't need task_nsproxy() if we're looking at ourself */
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08004227 struct pid_namespace *ns = task_active_pid_ns(current);
Li Zefanb70cc5f2010-03-10 15:22:12 -08004228
Tejun Heoe6b81712013-11-29 10:42:59 -05004229 lockdep_assert_held(&cgrp->pidlist_mutex);
4230
4231 list_for_each_entry(l, &cgrp->pidlists, links)
4232 if (l->key.type == type && l->key.ns == ns)
Ben Blum72a8cb32009-09-23 15:56:27 -07004233 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05004234 return NULL;
4235}
4236
Ben Blum72a8cb32009-09-23 15:56:27 -07004237/*
4238 * find the appropriate pidlist for our purpose (given procs vs tasks)
4239 * returns with the lock on that pidlist already held, and takes care
4240 * of the use count, or returns NULL with no locks held if we're out of
4241 * memory.
4242 */
Tejun Heoe6b81712013-11-29 10:42:59 -05004243static struct cgroup_pidlist *cgroup_pidlist_find_create(struct cgroup *cgrp,
4244 enum cgroup_filetype type)
Ben Blum72a8cb32009-09-23 15:56:27 -07004245{
4246 struct cgroup_pidlist *l;
Ben Blum72a8cb32009-09-23 15:56:27 -07004247
Tejun Heoe6b81712013-11-29 10:42:59 -05004248 lockdep_assert_held(&cgrp->pidlist_mutex);
4249
4250 l = cgroup_pidlist_find(cgrp, type);
4251 if (l)
4252 return l;
4253
Ben Blum72a8cb32009-09-23 15:56:27 -07004254 /* entry not found; create a new one */
Tejun Heof4f4be22013-06-12 21:04:51 -07004255 l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
Tejun Heoe6b81712013-11-29 10:42:59 -05004256 if (!l)
Ben Blum72a8cb32009-09-23 15:56:27 -07004257 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05004258
Tejun Heob1a21362013-11-29 10:42:58 -05004259 INIT_DELAYED_WORK(&l->destroy_dwork, cgroup_pidlist_destroy_work_fn);
Ben Blum72a8cb32009-09-23 15:56:27 -07004260 l->key.type = type;
Tejun Heoe6b81712013-11-29 10:42:59 -05004261 /* don't need task_nsproxy() if we're looking at ourself */
4262 l->key.ns = get_pid_ns(task_active_pid_ns(current));
Ben Blum72a8cb32009-09-23 15:56:27 -07004263 l->owner = cgrp;
4264 list_add(&l->links, &cgrp->pidlists);
Ben Blum72a8cb32009-09-23 15:56:27 -07004265 return l;
4266}
4267
4268/*
Ben Blum102a7752009-09-23 15:56:26 -07004269 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
4270 */
Ben Blum72a8cb32009-09-23 15:56:27 -07004271static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
4272 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07004273{
4274 pid_t *array;
4275 int length;
4276 int pid, n = 0; /* used for populating the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04004277 struct css_task_iter it;
Paul Menage817929e2007-10-18 23:39:36 -07004278 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07004279 struct cgroup_pidlist *l;
4280
Tejun Heo4bac00d2013-11-29 10:42:59 -05004281 lockdep_assert_held(&cgrp->pidlist_mutex);
4282
Ben Blum102a7752009-09-23 15:56:26 -07004283 /*
4284 * If cgroup gets more users after we read count, we won't have
4285 * enough space - tough. This race is indistinguishable to the
4286 * caller from the case that the additional cgroup users didn't
4287 * show up until sometime later on.
4288 */
4289 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07004290 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07004291 if (!array)
4292 return -ENOMEM;
4293 /* now, populate the array */
Tejun Heo9d800df2014-05-14 09:15:00 -04004294 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04004295 while ((tsk = css_task_iter_next(&it))) {
Ben Blum102a7752009-09-23 15:56:26 -07004296 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07004297 break;
Ben Blum102a7752009-09-23 15:56:26 -07004298 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07004299 if (type == CGROUP_FILE_PROCS)
4300 pid = task_tgid_vnr(tsk);
4301 else
4302 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07004303 if (pid > 0) /* make sure to only use valid results */
4304 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07004305 }
Tejun Heo72ec7022013-08-08 20:11:26 -04004306 css_task_iter_end(&it);
Ben Blum102a7752009-09-23 15:56:26 -07004307 length = n;
4308 /* now sort & (if procs) strip out duplicates */
Tejun Heoaa6ec292014-07-09 10:08:08 -04004309 if (cgroup_on_dfl(cgrp))
Tejun Heoafb2bc12013-11-29 10:42:59 -05004310 sort(array, length, sizeof(pid_t), fried_cmppid, NULL);
4311 else
4312 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07004313 if (type == CGROUP_FILE_PROCS)
Li Zefan6ee211a2013-03-12 15:36:00 -07004314 length = pidlist_uniq(array, length);
Tejun Heoe6b81712013-11-29 10:42:59 -05004315
Tejun Heoe6b81712013-11-29 10:42:59 -05004316 l = cgroup_pidlist_find_create(cgrp, type);
Ben Blum72a8cb32009-09-23 15:56:27 -07004317 if (!l) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07004318 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07004319 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07004320 }
Tejun Heoe6b81712013-11-29 10:42:59 -05004321
4322 /* store array, freeing old if necessary */
Ben Blumd1d9fd32009-09-23 15:56:28 -07004323 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07004324 l->list = array;
4325 l->length = length;
Ben Blum72a8cb32009-09-23 15:56:27 -07004326 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07004327 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004328}
4329
Balbir Singh846c7bb2007-10-18 23:39:44 -07004330/**
Li Zefana043e3b2008-02-23 15:24:09 -08004331 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07004332 * @stats: cgroupstats to fill information into
4333 * @dentry: A dentry entry belonging to the cgroup for which stats have
4334 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08004335 *
4336 * Build and fill cgroupstats so that taskstats can export it to user
4337 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07004338 */
4339int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
4340{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004341 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07004342 struct cgroup *cgrp;
Tejun Heo72ec7022013-08-08 20:11:26 -04004343 struct css_task_iter it;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004344 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08004345
Tejun Heo2bd59d42014-02-11 11:52:49 -05004346 /* it should be kernfs_node belonging to cgroupfs and is a directory */
4347 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
4348 kernfs_type(kn) != KERNFS_DIR)
4349 return -EINVAL;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004350
Li Zefanbad34662014-02-14 16:54:28 +08004351 mutex_lock(&cgroup_mutex);
4352
Tejun Heo2bd59d42014-02-11 11:52:49 -05004353 /*
4354 * We aren't being called from kernfs and there's no guarantee on
Tejun Heoec903c02014-05-13 12:11:01 -04004355 * @kn->priv's validity. For this and css_tryget_online_from_dir(),
Tejun Heo2bd59d42014-02-11 11:52:49 -05004356 * @kn->priv is RCU safe. Let's do the RCU dancing.
4357 */
4358 rcu_read_lock();
4359 cgrp = rcu_dereference(kn->priv);
Li Zefanbad34662014-02-14 16:54:28 +08004360 if (!cgrp || cgroup_is_dead(cgrp)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05004361 rcu_read_unlock();
Li Zefanbad34662014-02-14 16:54:28 +08004362 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004363 return -ENOENT;
4364 }
Li Zefanbad34662014-02-14 16:54:28 +08004365 rcu_read_unlock();
Balbir Singh846c7bb2007-10-18 23:39:44 -07004366
Tejun Heo9d800df2014-05-14 09:15:00 -04004367 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04004368 while ((tsk = css_task_iter_next(&it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07004369 switch (tsk->state) {
4370 case TASK_RUNNING:
4371 stats->nr_running++;
4372 break;
4373 case TASK_INTERRUPTIBLE:
4374 stats->nr_sleeping++;
4375 break;
4376 case TASK_UNINTERRUPTIBLE:
4377 stats->nr_uninterruptible++;
4378 break;
4379 case TASK_STOPPED:
4380 stats->nr_stopped++;
4381 break;
4382 default:
4383 if (delayacct_is_task_waiting_on_io(tsk))
4384 stats->nr_io_wait++;
4385 break;
4386 }
4387 }
Tejun Heo72ec7022013-08-08 20:11:26 -04004388 css_task_iter_end(&it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07004389
Li Zefanbad34662014-02-14 16:54:28 +08004390 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004391 return 0;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004392}
4393
Paul Menage8f3ff202009-09-23 15:56:25 -07004394
Paul Menagecc31edc2008-10-18 20:28:04 -07004395/*
Ben Blum102a7752009-09-23 15:56:26 -07004396 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07004397 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07004398 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07004399 */
4400
Ben Blum102a7752009-09-23 15:56:26 -07004401static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07004402{
4403 /*
4404 * Initially we receive a position value that corresponds to
4405 * one more than the last pid shown (or 0 on the first call or
4406 * after a seek to the start). Use a binary-search to find the
4407 * next pid to display, if any
4408 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05004409 struct kernfs_open_file *of = s->private;
Tejun Heo7da11272013-12-05 12:28:04 -05004410 struct cgroup *cgrp = seq_css(s)->cgroup;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004411 struct cgroup_pidlist *l;
Tejun Heo7da11272013-12-05 12:28:04 -05004412 enum cgroup_filetype type = seq_cft(s)->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07004413 int index = 0, pid = *pos;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004414 int *iter, ret;
Paul Menagecc31edc2008-10-18 20:28:04 -07004415
Tejun Heo4bac00d2013-11-29 10:42:59 -05004416 mutex_lock(&cgrp->pidlist_mutex);
4417
4418 /*
Tejun Heo5d224442013-12-05 12:28:04 -05004419 * !NULL @of->priv indicates that this isn't the first start()
Tejun Heo4bac00d2013-11-29 10:42:59 -05004420 * after open. If the matching pidlist is around, we can use that.
Tejun Heo5d224442013-12-05 12:28:04 -05004421 * Look for it. Note that @of->priv can't be used directly. It
Tejun Heo4bac00d2013-11-29 10:42:59 -05004422 * could already have been destroyed.
4423 */
Tejun Heo5d224442013-12-05 12:28:04 -05004424 if (of->priv)
4425 of->priv = cgroup_pidlist_find(cgrp, type);
Tejun Heo4bac00d2013-11-29 10:42:59 -05004426
4427 /*
4428 * Either this is the first start() after open or the matching
4429 * pidlist has been destroyed inbetween. Create a new one.
4430 */
Tejun Heo5d224442013-12-05 12:28:04 -05004431 if (!of->priv) {
4432 ret = pidlist_array_load(cgrp, type,
4433 (struct cgroup_pidlist **)&of->priv);
Tejun Heo4bac00d2013-11-29 10:42:59 -05004434 if (ret)
4435 return ERR_PTR(ret);
4436 }
Tejun Heo5d224442013-12-05 12:28:04 -05004437 l = of->priv;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004438
Paul Menagecc31edc2008-10-18 20:28:04 -07004439 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07004440 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11004441
Paul Menagecc31edc2008-10-18 20:28:04 -07004442 while (index < end) {
4443 int mid = (index + end) / 2;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004444 if (cgroup_pid_fry(cgrp, l->list[mid]) == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07004445 index = mid;
4446 break;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004447 } else if (cgroup_pid_fry(cgrp, l->list[mid]) <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07004448 index = mid + 1;
4449 else
4450 end = mid;
4451 }
4452 }
4453 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07004454 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07004455 return NULL;
4456 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07004457 iter = l->list + index;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004458 *pos = cgroup_pid_fry(cgrp, *iter);
Paul Menagecc31edc2008-10-18 20:28:04 -07004459 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004460}
4461
Ben Blum102a7752009-09-23 15:56:26 -07004462static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07004463{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004464 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05004465 struct cgroup_pidlist *l = of->priv;
Tejun Heo62236852013-11-29 10:42:58 -05004466
Tejun Heo5d224442013-12-05 12:28:04 -05004467 if (l)
4468 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork,
Tejun Heo04502362013-11-29 10:42:59 -05004469 CGROUP_PIDLIST_DESTROY_DELAY);
Tejun Heo7da11272013-12-05 12:28:04 -05004470 mutex_unlock(&seq_css(s)->cgroup->pidlist_mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07004471}
4472
Ben Blum102a7752009-09-23 15:56:26 -07004473static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07004474{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004475 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05004476 struct cgroup_pidlist *l = of->priv;
Ben Blum102a7752009-09-23 15:56:26 -07004477 pid_t *p = v;
4478 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07004479 /*
4480 * Advance to the next pid in the array. If this goes off the
4481 * end, we're done
4482 */
4483 p++;
4484 if (p >= end) {
4485 return NULL;
4486 } else {
Tejun Heo7da11272013-12-05 12:28:04 -05004487 *pos = cgroup_pid_fry(seq_css(s)->cgroup, *p);
Paul Menagecc31edc2008-10-18 20:28:04 -07004488 return p;
4489 }
4490}
4491
Ben Blum102a7752009-09-23 15:56:26 -07004492static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07004493{
Joe Perches94ff2122015-04-15 16:18:20 -07004494 seq_printf(s, "%d\n", *(int *)v);
4495
4496 return 0;
Paul Menagecc31edc2008-10-18 20:28:04 -07004497}
4498
Tejun Heo182446d2013-08-08 20:11:24 -04004499static u64 cgroup_read_notify_on_release(struct cgroup_subsys_state *css,
4500 struct cftype *cft)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004501{
Tejun Heo182446d2013-08-08 20:11:24 -04004502 return notify_on_release(css->cgroup);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004503}
4504
Tejun Heo182446d2013-08-08 20:11:24 -04004505static int cgroup_write_notify_on_release(struct cgroup_subsys_state *css,
4506 struct cftype *cft, u64 val)
Paul Menage6379c102008-07-25 01:47:01 -07004507{
Paul Menage6379c102008-07-25 01:47:01 -07004508 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04004509 set_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004510 else
Tejun Heo182446d2013-08-08 20:11:24 -04004511 clear_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004512 return 0;
4513}
4514
Tejun Heo182446d2013-08-08 20:11:24 -04004515static u64 cgroup_clone_children_read(struct cgroup_subsys_state *css,
4516 struct cftype *cft)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004517{
Tejun Heo182446d2013-08-08 20:11:24 -04004518 return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004519}
4520
Tejun Heo182446d2013-08-08 20:11:24 -04004521static int cgroup_clone_children_write(struct cgroup_subsys_state *css,
4522 struct cftype *cft, u64 val)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004523{
4524 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04004525 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004526 else
Tejun Heo182446d2013-08-08 20:11:24 -04004527 clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004528 return 0;
4529}
4530
Tejun Heoa14c6872014-07-15 11:05:09 -04004531/* cgroup core interface files for the default hierarchy */
4532static struct cftype cgroup_dfl_base_files[] = {
4533 {
4534 .name = "cgroup.procs",
Tejun Heo6f60ead2015-09-18 17:54:23 -04004535 .file_offset = offsetof(struct cgroup, procs_file),
Tejun Heoa14c6872014-07-15 11:05:09 -04004536 .seq_start = cgroup_pidlist_start,
4537 .seq_next = cgroup_pidlist_next,
4538 .seq_stop = cgroup_pidlist_stop,
4539 .seq_show = cgroup_pidlist_show,
4540 .private = CGROUP_FILE_PROCS,
4541 .write = cgroup_procs_write,
Tejun Heoa14c6872014-07-15 11:05:09 -04004542 },
4543 {
4544 .name = "cgroup.controllers",
4545 .flags = CFTYPE_ONLY_ON_ROOT,
4546 .seq_show = cgroup_root_controllers_show,
4547 },
4548 {
4549 .name = "cgroup.controllers",
4550 .flags = CFTYPE_NOT_ON_ROOT,
4551 .seq_show = cgroup_controllers_show,
4552 },
4553 {
4554 .name = "cgroup.subtree_control",
4555 .seq_show = cgroup_subtree_control_show,
4556 .write = cgroup_subtree_control_write,
4557 },
4558 {
Tejun Heo4a07c222015-09-18 17:54:22 -04004559 .name = "cgroup.events",
Tejun Heoa14c6872014-07-15 11:05:09 -04004560 .flags = CFTYPE_NOT_ON_ROOT,
Tejun Heo6f60ead2015-09-18 17:54:23 -04004561 .file_offset = offsetof(struct cgroup, events_file),
Tejun Heo4a07c222015-09-18 17:54:22 -04004562 .seq_show = cgroup_events_show,
Tejun Heoa14c6872014-07-15 11:05:09 -04004563 },
4564 { } /* terminate */
4565};
4566
4567/* cgroup core interface files for the legacy hierarchies */
4568static struct cftype cgroup_legacy_base_files[] = {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004569 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07004570 .name = "cgroup.procs",
Tejun Heo6612f052013-12-05 12:28:04 -05004571 .seq_start = cgroup_pidlist_start,
4572 .seq_next = cgroup_pidlist_next,
4573 .seq_stop = cgroup_pidlist_stop,
4574 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004575 .private = CGROUP_FILE_PROCS,
Tejun Heoacbef752014-05-13 12:16:22 -04004576 .write = cgroup_procs_write,
Ben Blum102a7752009-09-23 15:56:26 -07004577 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07004578 {
Daniel Lezcano97978e62010-10-27 15:33:35 -07004579 .name = "cgroup.clone_children",
4580 .read_u64 = cgroup_clone_children_read,
4581 .write_u64 = cgroup_clone_children_write,
4582 },
Tejun Heo6e6ff252012-04-01 12:09:55 -07004583 {
Tejun Heo873fe092013-04-14 20:15:26 -07004584 .name = "cgroup.sane_behavior",
4585 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004586 .seq_show = cgroup_sane_behavior_show,
Tejun Heo873fe092013-04-14 20:15:26 -07004587 },
Tejun Heof8f22e52014-04-23 11:13:16 -04004588 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07004589 .name = "tasks",
Tejun Heo6612f052013-12-05 12:28:04 -05004590 .seq_start = cgroup_pidlist_start,
4591 .seq_next = cgroup_pidlist_next,
4592 .seq_stop = cgroup_pidlist_stop,
4593 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004594 .private = CGROUP_FILE_TASKS,
Tejun Heoacbef752014-05-13 12:16:22 -04004595 .write = cgroup_tasks_write,
Tejun Heod5c56ce2013-06-03 19:14:34 -07004596 },
4597 {
4598 .name = "notify_on_release",
Tejun Heod5c56ce2013-06-03 19:14:34 -07004599 .read_u64 = cgroup_read_notify_on_release,
4600 .write_u64 = cgroup_write_notify_on_release,
4601 },
Tejun Heo873fe092013-04-14 20:15:26 -07004602 {
Tejun Heo6e6ff252012-04-01 12:09:55 -07004603 .name = "release_agent",
Tejun Heoa14c6872014-07-15 11:05:09 -04004604 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004605 .seq_show = cgroup_release_agent_show,
Tejun Heo451af502014-05-13 12:16:21 -04004606 .write = cgroup_release_agent_write,
Tejun Heo5f469902014-02-11 11:52:48 -05004607 .max_write_len = PATH_MAX - 1,
Tejun Heo6e6ff252012-04-01 12:09:55 -07004608 },
Tejun Heodb0416b2012-04-01 12:09:55 -07004609 { } /* terminate */
Paul Menagebbcb81d2007-10-18 23:39:32 -07004610};
4611
Tejun Heo0c21ead2013-08-13 20:22:51 -04004612/*
4613 * css destruction is four-stage process.
4614 *
4615 * 1. Destruction starts. Killing of the percpu_ref is initiated.
4616 * Implemented in kill_css().
4617 *
4618 * 2. When the percpu_ref is confirmed to be visible as killed on all CPUs
Tejun Heoec903c02014-05-13 12:11:01 -04004619 * and thus css_tryget_online() is guaranteed to fail, the css can be
4620 * offlined by invoking offline_css(). After offlining, the base ref is
4621 * put. Implemented in css_killed_work_fn().
Tejun Heo0c21ead2013-08-13 20:22:51 -04004622 *
4623 * 3. When the percpu_ref reaches zero, the only possible remaining
4624 * accessors are inside RCU read sections. css_release() schedules the
4625 * RCU callback.
4626 *
4627 * 4. After the grace period, the css can be freed. Implemented in
4628 * css_free_work_fn().
4629 *
4630 * It is actually hairier because both step 2 and 4 require process context
4631 * and thus involve punting to css->destroy_work adding two additional
4632 * steps to the already complex sequence.
4633 */
Tejun Heo35ef10d2013-08-13 11:01:54 -04004634static void css_free_work_fn(struct work_struct *work)
Tejun Heo48ddbe12012-04-01 12:09:56 -07004635{
4636 struct cgroup_subsys_state *css =
Tejun Heo35ef10d2013-08-13 11:01:54 -04004637 container_of(work, struct cgroup_subsys_state, destroy_work);
Vladimir Davydov01e58652015-02-12 14:59:26 -08004638 struct cgroup_subsys *ss = css->ss;
Tejun Heo0c21ead2013-08-13 20:22:51 -04004639 struct cgroup *cgrp = css->cgroup;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004640
Tejun Heo9a1049d2014-06-28 08:10:14 -04004641 percpu_ref_exit(&css->refcnt);
4642
Vladimir Davydov01e58652015-02-12 14:59:26 -08004643 if (ss) {
Tejun Heo9d755d32014-05-14 09:15:02 -04004644 /* css free path */
Tejun Heo8bb5ef72016-01-21 15:32:15 -05004645 struct cgroup_subsys_state *parent = css->parent;
Vladimir Davydov01e58652015-02-12 14:59:26 -08004646 int id = css->id;
4647
Vladimir Davydov01e58652015-02-12 14:59:26 -08004648 ss->css_free(css);
4649 cgroup_idr_remove(&ss->css_idr, id);
Tejun Heo9d755d32014-05-14 09:15:02 -04004650 cgroup_put(cgrp);
Tejun Heo8bb5ef72016-01-21 15:32:15 -05004651
4652 if (parent)
4653 css_put(parent);
Tejun Heo9d755d32014-05-14 09:15:02 -04004654 } else {
4655 /* cgroup free path */
4656 atomic_dec(&cgrp->root->nr_cgrps);
4657 cgroup_pidlist_destroy_all(cgrp);
Zefan Li971ff492014-09-18 16:06:19 +08004658 cancel_work_sync(&cgrp->release_agent_work);
Tejun Heo9d755d32014-05-14 09:15:02 -04004659
Tejun Heod51f39b2014-05-16 13:22:48 -04004660 if (cgroup_parent(cgrp)) {
Tejun Heo9d755d32014-05-14 09:15:02 -04004661 /*
4662 * We get a ref to the parent, and put the ref when
4663 * this cgroup is being freed, so it's guaranteed
4664 * that the parent won't be destroyed before its
4665 * children.
4666 */
Tejun Heod51f39b2014-05-16 13:22:48 -04004667 cgroup_put(cgroup_parent(cgrp));
Tejun Heo9d755d32014-05-14 09:15:02 -04004668 kernfs_put(cgrp->kn);
4669 kfree(cgrp);
4670 } else {
4671 /*
4672 * This is root cgroup's refcnt reaching zero,
4673 * which indicates that the root should be
4674 * released.
4675 */
4676 cgroup_destroy_root(cgrp->root);
4677 }
4678 }
Tejun Heo0c21ead2013-08-13 20:22:51 -04004679}
4680
4681static void css_free_rcu_fn(struct rcu_head *rcu_head)
4682{
4683 struct cgroup_subsys_state *css =
4684 container_of(rcu_head, struct cgroup_subsys_state, rcu_head);
4685
Tejun Heo0c21ead2013-08-13 20:22:51 -04004686 INIT_WORK(&css->destroy_work, css_free_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05004687 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004688}
4689
Tejun Heo25e15d82014-05-14 09:15:02 -04004690static void css_release_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004691{
4692 struct cgroup_subsys_state *css =
Tejun Heo25e15d82014-05-14 09:15:02 -04004693 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo15a4c832014-05-04 15:09:14 -04004694 struct cgroup_subsys *ss = css->ss;
Tejun Heo9d755d32014-05-14 09:15:02 -04004695 struct cgroup *cgrp = css->cgroup;
Tejun Heod3daf282013-06-13 19:39:16 -07004696
Tejun Heo1fed1b22014-05-16 13:22:49 -04004697 mutex_lock(&cgroup_mutex);
4698
Tejun Heode3f0342014-05-16 13:22:49 -04004699 css->flags |= CSS_RELEASED;
Tejun Heo1fed1b22014-05-16 13:22:49 -04004700 list_del_rcu(&css->sibling);
4701
Tejun Heo9d755d32014-05-14 09:15:02 -04004702 if (ss) {
4703 /* css release path */
Vladimir Davydov01e58652015-02-12 14:59:26 -08004704 cgroup_idr_replace(&ss->css_idr, NULL, css->id);
Tejun Heo7d172cc2014-11-18 02:49:51 -05004705 if (ss->css_released)
4706 ss->css_released(css);
Tejun Heo9d755d32014-05-14 09:15:02 -04004707 } else {
4708 /* cgroup release path */
Tejun Heo9d755d32014-05-14 09:15:02 -04004709 cgroup_idr_remove(&cgrp->root->cgroup_idr, cgrp->id);
4710 cgrp->id = -1;
Li Zefana4189482014-09-04 14:43:07 +08004711
4712 /*
4713 * There are two control paths which try to determine
4714 * cgroup from dentry without going through kernfs -
4715 * cgroupstats_build() and css_tryget_online_from_dir().
4716 * Those are supported by RCU protecting clearing of
4717 * cgrp->kn->priv backpointer.
4718 */
4719 RCU_INIT_POINTER(*(void __rcu __force **)&cgrp->kn->priv, NULL);
Tejun Heo9d755d32014-05-14 09:15:02 -04004720 }
Tejun Heo15a4c832014-05-04 15:09:14 -04004721
Tejun Heo1fed1b22014-05-16 13:22:49 -04004722 mutex_unlock(&cgroup_mutex);
4723
Tejun Heo0c21ead2013-08-13 20:22:51 -04004724 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004725}
4726
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004727static void css_release(struct percpu_ref *ref)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004728{
4729 struct cgroup_subsys_state *css =
4730 container_of(ref, struct cgroup_subsys_state, refcnt);
4731
Tejun Heo25e15d82014-05-14 09:15:02 -04004732 INIT_WORK(&css->destroy_work, css_release_work_fn);
4733 queue_work(cgroup_destroy_wq, &css->destroy_work);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004734}
4735
Tejun Heoddfcada2014-05-04 15:09:14 -04004736static void init_and_link_css(struct cgroup_subsys_state *css,
4737 struct cgroup_subsys *ss, struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004738{
Tejun Heo0cb51d72014-05-16 13:22:49 -04004739 lockdep_assert_held(&cgroup_mutex);
4740
Tejun Heoddfcada2014-05-04 15:09:14 -04004741 cgroup_get(cgrp);
4742
Tejun Heod5c419b2014-05-16 13:22:48 -04004743 memset(css, 0, sizeof(*css));
Paul Menagebd89aab2007-10-18 23:40:44 -07004744 css->cgroup = cgrp;
Tejun Heo72c97e52013-08-08 20:11:22 -04004745 css->ss = ss;
Tejun Heod5c419b2014-05-16 13:22:48 -04004746 INIT_LIST_HEAD(&css->sibling);
4747 INIT_LIST_HEAD(&css->children);
Tejun Heo0cb51d72014-05-16 13:22:49 -04004748 css->serial_nr = css_serial_nr_next++;
Tejun Heoaa226ff2016-01-21 15:31:11 -05004749 atomic_set(&css->online_cnt, 0);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004750
Tejun Heod51f39b2014-05-16 13:22:48 -04004751 if (cgroup_parent(cgrp)) {
4752 css->parent = cgroup_css(cgroup_parent(cgrp), ss);
Tejun Heoddfcada2014-05-04 15:09:14 -04004753 css_get(css->parent);
Tejun Heoddfcada2014-05-04 15:09:14 -04004754 }
Tejun Heo0ae78e02013-08-13 11:01:54 -04004755
Tejun Heoca8bdca2013-08-26 18:40:56 -04004756 BUG_ON(cgroup_css(cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004757}
4758
Li Zefan2a4ac632013-07-31 16:16:40 +08004759/* invoke ->css_online() on a new CSS and mark it online if successful */
Tejun Heo623f9262013-08-13 11:01:55 -04004760static int online_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004761{
Tejun Heo623f9262013-08-13 11:01:55 -04004762 struct cgroup_subsys *ss = css->ss;
Tejun Heob1929db2012-11-19 08:13:38 -08004763 int ret = 0;
4764
Tejun Heoa31f2d32012-11-19 08:13:37 -08004765 lockdep_assert_held(&cgroup_mutex);
4766
Tejun Heo92fb9742012-11-19 08:13:38 -08004767 if (ss->css_online)
Tejun Heoeb954192013-08-08 20:11:23 -04004768 ret = ss->css_online(css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004769 if (!ret) {
Tejun Heoeb954192013-08-08 20:11:23 -04004770 css->flags |= CSS_ONLINE;
Tejun Heoaec25022014-02-08 10:36:58 -05004771 rcu_assign_pointer(css->cgroup->subsys[ss->id], css);
Tejun Heoaa226ff2016-01-21 15:31:11 -05004772
4773 atomic_inc(&css->online_cnt);
4774 if (css->parent)
4775 atomic_inc(&css->parent->online_cnt);
Tejun Heoae7f1642013-08-13 20:22:50 -04004776 }
Tejun Heob1929db2012-11-19 08:13:38 -08004777 return ret;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004778}
4779
Li Zefan2a4ac632013-07-31 16:16:40 +08004780/* if the CSS is online, invoke ->css_offline() on it and mark it offline */
Tejun Heo623f9262013-08-13 11:01:55 -04004781static void offline_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004782{
Tejun Heo623f9262013-08-13 11:01:55 -04004783 struct cgroup_subsys *ss = css->ss;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004784
4785 lockdep_assert_held(&cgroup_mutex);
4786
4787 if (!(css->flags & CSS_ONLINE))
4788 return;
4789
Vladimir Davydovfa062352016-03-01 19:56:30 +03004790 if (ss->css_reset)
4791 ss->css_reset(css);
4792
Li Zefand7eeac12013-03-12 15:35:59 -07004793 if (ss->css_offline)
Tejun Heoeb954192013-08-08 20:11:23 -04004794 ss->css_offline(css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004795
Tejun Heoeb954192013-08-08 20:11:23 -04004796 css->flags &= ~CSS_ONLINE;
Tejun Heoe3297802014-04-23 11:13:15 -04004797 RCU_INIT_POINTER(css->cgroup->subsys[ss->id], NULL);
Tejun Heof8f22e52014-04-23 11:13:16 -04004798
4799 wake_up_all(&css->cgroup->offline_waitq);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004800}
4801
Tejun Heoc81c925a2013-12-06 15:11:56 -05004802/**
4803 * create_css - create a cgroup_subsys_state
4804 * @cgrp: the cgroup new css will be associated with
4805 * @ss: the subsys of new css
Tejun Heof63070d2014-07-08 18:02:57 -04004806 * @visible: whether to create control knobs for the new css or not
Tejun Heoc81c925a2013-12-06 15:11:56 -05004807 *
4808 * Create a new css associated with @cgrp - @ss pair. On success, the new
Tejun Heof63070d2014-07-08 18:02:57 -04004809 * css is online and installed in @cgrp with all interface files created if
4810 * @visible. Returns 0 on success, -errno on failure.
Tejun Heoc81c925a2013-12-06 15:11:56 -05004811 */
Tejun Heof63070d2014-07-08 18:02:57 -04004812static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss,
4813 bool visible)
Tejun Heoc81c925a2013-12-06 15:11:56 -05004814{
Tejun Heod51f39b2014-05-16 13:22:48 -04004815 struct cgroup *parent = cgroup_parent(cgrp);
Tejun Heo1fed1b22014-05-16 13:22:49 -04004816 struct cgroup_subsys_state *parent_css = cgroup_css(parent, ss);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004817 struct cgroup_subsys_state *css;
4818 int err;
4819
Tejun Heoc81c925a2013-12-06 15:11:56 -05004820 lockdep_assert_held(&cgroup_mutex);
4821
Tejun Heo1fed1b22014-05-16 13:22:49 -04004822 css = ss->css_alloc(parent_css);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004823 if (IS_ERR(css))
4824 return PTR_ERR(css);
4825
Tejun Heoddfcada2014-05-04 15:09:14 -04004826 init_and_link_css(css, ss, cgrp);
Tejun Heoa2bed822014-05-04 15:09:14 -04004827
Tejun Heo2aad2a82014-09-24 13:31:50 -04004828 err = percpu_ref_init(&css->refcnt, css_release, 0, GFP_KERNEL);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004829 if (err)
Li Zefan3eb59ec2014-03-18 17:02:36 +08004830 goto err_free_css;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004831
Vladimir Davydovcf780b72015-08-03 15:32:26 +03004832 err = cgroup_idr_alloc(&ss->css_idr, NULL, 2, 0, GFP_KERNEL);
Tejun Heo15a4c832014-05-04 15:09:14 -04004833 if (err < 0)
4834 goto err_free_percpu_ref;
4835 css->id = err;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004836
Tejun Heof63070d2014-07-08 18:02:57 -04004837 if (visible) {
Tejun Heo4df8dc92015-09-18 17:54:23 -04004838 err = css_populate_dir(css, NULL);
Tejun Heof63070d2014-07-08 18:02:57 -04004839 if (err)
4840 goto err_free_id;
4841 }
Tejun Heo15a4c832014-05-04 15:09:14 -04004842
4843 /* @css is ready to be brought online now, make it visible */
Tejun Heo1fed1b22014-05-16 13:22:49 -04004844 list_add_tail_rcu(&css->sibling, &parent_css->children);
Tejun Heo15a4c832014-05-04 15:09:14 -04004845 cgroup_idr_replace(&ss->css_idr, css, css->id);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004846
4847 err = online_css(css);
4848 if (err)
Tejun Heo1fed1b22014-05-16 13:22:49 -04004849 goto err_list_del;
Tejun Heo94419622014-03-19 10:23:54 -04004850
Tejun Heoc81c925a2013-12-06 15:11:56 -05004851 if (ss->broken_hierarchy && !ss->warned_broken_hierarchy &&
Tejun Heod51f39b2014-05-16 13:22:48 -04004852 cgroup_parent(parent)) {
Joe Perchesed3d2612014-04-25 18:28:03 -04004853 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 -04004854 current->comm, current->pid, ss->name);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004855 if (!strcmp(ss->name, "memory"))
Joe Perchesed3d2612014-04-25 18:28:03 -04004856 pr_warn("\"memory\" requires setting use_hierarchy to 1 on the root\n");
Tejun Heoc81c925a2013-12-06 15:11:56 -05004857 ss->warned_broken_hierarchy = true;
4858 }
4859
4860 return 0;
4861
Tejun Heo1fed1b22014-05-16 13:22:49 -04004862err_list_del:
4863 list_del_rcu(&css->sibling);
Tejun Heo4df8dc92015-09-18 17:54:23 -04004864 css_clear_dir(css, NULL);
Tejun Heo15a4c832014-05-04 15:09:14 -04004865err_free_id:
4866 cgroup_idr_remove(&ss->css_idr, css->id);
Li Zefan3eb59ec2014-03-18 17:02:36 +08004867err_free_percpu_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04004868 percpu_ref_exit(&css->refcnt);
Li Zefan3eb59ec2014-03-18 17:02:36 +08004869err_free_css:
Tejun Heoa2bed822014-05-04 15:09:14 -04004870 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004871 return err;
4872}
4873
Tejun Heob3bfd982014-05-13 12:19:22 -04004874static int cgroup_mkdir(struct kernfs_node *parent_kn, const char *name,
4875 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004876{
Tejun Heob11cfb52015-11-20 15:55:52 -05004877 struct cgroup *parent, *cgrp, *tcgrp;
Tejun Heoa9746d82014-05-13 12:19:22 -04004878 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004879 struct cgroup_subsys *ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004880 struct kernfs_node *kn;
Tejun Heob11cfb52015-11-20 15:55:52 -05004881 int level, ssid, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004882
Alban Crequy71b1fb52014-08-18 12:20:20 +01004883 /* Do not accept '\n' to prevent making /proc/<pid>/cgroup unparsable.
4884 */
4885 if (strchr(name, '\n'))
4886 return -EINVAL;
4887
Tejun Heoa9746d82014-05-13 12:19:22 -04004888 parent = cgroup_kn_lock_live(parent_kn);
4889 if (!parent)
4890 return -ENODEV;
4891 root = parent->root;
Tejun Heob11cfb52015-11-20 15:55:52 -05004892 level = parent->level + 1;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004893
Tejun Heo0a950f62012-11-19 09:02:12 -08004894 /* allocate the cgroup and its ID, 0 is reserved for the root */
Tejun Heob11cfb52015-11-20 15:55:52 -05004895 cgrp = kzalloc(sizeof(*cgrp) +
4896 sizeof(cgrp->ancestor_ids[0]) * (level + 1), GFP_KERNEL);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004897 if (!cgrp) {
4898 ret = -ENOMEM;
4899 goto out_unlock;
Li Zefan0ab02ca2014-02-11 16:05:46 +08004900 }
4901
Tejun Heo2aad2a82014-09-24 13:31:50 -04004902 ret = percpu_ref_init(&cgrp->self.refcnt, css_release, 0, GFP_KERNEL);
Tejun Heo9d755d32014-05-14 09:15:02 -04004903 if (ret)
4904 goto out_free_cgrp;
4905
Li Zefan0ab02ca2014-02-11 16:05:46 +08004906 /*
4907 * Temporarily set the pointer to NULL, so idr_find() won't return
4908 * a half-baked cgroup.
4909 */
Vladimir Davydovcf780b72015-08-03 15:32:26 +03004910 cgrp->id = cgroup_idr_alloc(&root->cgroup_idr, NULL, 2, 0, GFP_KERNEL);
Li Zefan0ab02ca2014-02-11 16:05:46 +08004911 if (cgrp->id < 0) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004912 ret = -ENOMEM;
Tejun Heo9d755d32014-05-14 09:15:02 -04004913 goto out_cancel_ref;
Tejun Heo976c06b2012-11-05 09:16:59 -08004914 }
4915
Paul Menagecc31edc2008-10-18 20:28:04 -07004916 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004917
Tejun Heo9d800df2014-05-14 09:15:00 -04004918 cgrp->self.parent = &parent->self;
Tejun Heoba0f4d72014-05-13 12:19:22 -04004919 cgrp->root = root;
Tejun Heob11cfb52015-11-20 15:55:52 -05004920 cgrp->level = level;
4921
4922 for (tcgrp = cgrp; tcgrp; tcgrp = cgroup_parent(tcgrp))
4923 cgrp->ancestor_ids[tcgrp->level] = tcgrp->id;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004924
Li Zefanb6abdb02008-03-04 14:28:19 -08004925 if (notify_on_release(parent))
4926 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
4927
Tejun Heo2260e7f2012-11-19 08:13:38 -08004928 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags))
4929 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004930
Tejun Heo2bd59d42014-02-11 11:52:49 -05004931 /* create the directory */
Tejun Heoe61734c2014-02-12 09:29:50 -05004932 kn = kernfs_create_dir(parent->kn, name, mode, cgrp);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004933 if (IS_ERR(kn)) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004934 ret = PTR_ERR(kn);
4935 goto out_free_id;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004936 }
4937 cgrp->kn = kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004938
Tejun Heo6f305582014-02-12 09:29:50 -05004939 /*
4940 * This extra ref will be put in cgroup_free_fn() and guarantees
4941 * that @cgrp->kn is always accessible.
4942 */
4943 kernfs_get(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004944
Tejun Heo0cb51d72014-05-16 13:22:49 -04004945 cgrp->self.serial_nr = css_serial_nr_next++;
Tejun Heo53fa5262013-05-24 10:55:38 +09004946
Tejun Heo4e139af2012-11-19 08:13:36 -08004947 /* allocation complete, commit to creation */
Tejun Heod5c419b2014-05-16 13:22:48 -04004948 list_add_tail_rcu(&cgrp->self.sibling, &cgroup_parent(cgrp)->self.children);
Tejun Heo3c9c8252014-02-12 09:29:50 -05004949 atomic_inc(&root->nr_cgrps);
Tejun Heo59f52962014-02-11 11:52:49 -05004950 cgroup_get(parent);
Li Zefan415cf072013-04-08 14:35:02 +08004951
Tejun Heo0d802552013-12-06 15:11:56 -05004952 /*
4953 * @cgrp is now fully operational. If something fails after this
4954 * point, it'll be released via the normal destruction path.
4955 */
Tejun Heo6fa49182014-05-04 15:09:13 -04004956 cgroup_idr_replace(&root->cgroup_idr, cgrp, cgrp->id);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08004957
Tejun Heoba0f4d72014-05-13 12:19:22 -04004958 ret = cgroup_kn_set_ugid(kn);
4959 if (ret)
4960 goto out_destroy;
Tejun Heo49957f82014-04-07 16:44:47 -04004961
Tejun Heo4df8dc92015-09-18 17:54:23 -04004962 ret = css_populate_dir(&cgrp->self, NULL);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004963 if (ret)
4964 goto out_destroy;
Tejun Heo628f7cd2013-06-28 16:24:11 -07004965
Tejun Heo9d403e92013-12-06 15:11:56 -05004966 /* let's create and online css's */
Tejun Heo996cd1f2016-02-22 22:25:46 -05004967 do_each_subsys_mask(ss, ssid, parent->subtree_ss_mask) {
4968 ret = create_css(cgrp, ss,
4969 parent->subtree_control & (1 << ssid));
4970 if (ret)
4971 goto out_destroy;
4972 } while_each_subsys_mask();
Paul Menageddbcc7e2007-10-18 23:39:30 -07004973
Tejun Heobd53d612014-04-23 11:13:16 -04004974 /*
4975 * On the default hierarchy, a child doesn't automatically inherit
Tejun Heo667c2492014-07-08 18:02:56 -04004976 * subtree_control from the parent. Each is configured manually.
Tejun Heobd53d612014-04-23 11:13:16 -04004977 */
Tejun Heo667c2492014-07-08 18:02:56 -04004978 if (!cgroup_on_dfl(cgrp)) {
4979 cgrp->subtree_control = parent->subtree_control;
Tejun Heo8699b772016-02-22 22:25:46 -05004980 cgroup_refresh_subtree_ss_mask(cgrp);
Tejun Heo667c2492014-07-08 18:02:56 -04004981 }
Tejun Heof392e512014-04-23 11:13:14 -04004982
Tejun Heo2bd59d42014-02-11 11:52:49 -05004983 kernfs_activate(kn);
4984
Tejun Heoba0f4d72014-05-13 12:19:22 -04004985 ret = 0;
4986 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004987
Tejun Heoba0f4d72014-05-13 12:19:22 -04004988out_free_id:
Tejun Heo6fa49182014-05-04 15:09:13 -04004989 cgroup_idr_remove(&root->cgroup_idr, cgrp->id);
Tejun Heo9d755d32014-05-14 09:15:02 -04004990out_cancel_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04004991 percpu_ref_exit(&cgrp->self.refcnt);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004992out_free_cgrp:
Paul Menagebd89aab2007-10-18 23:40:44 -07004993 kfree(cgrp);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004994out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04004995 cgroup_kn_unlock(parent_kn);
Tejun Heoe1b2dc12014-03-20 11:10:15 -04004996 return ret;
Tejun Heoba0f4d72014-05-13 12:19:22 -04004997
4998out_destroy:
4999 cgroup_destroy_locked(cgrp);
5000 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005001}
5002
Tejun Heo223dbc32013-08-13 20:22:50 -04005003/*
5004 * This is called when the refcnt of a css is confirmed to be killed.
Tejun Heo249f3462014-05-14 09:15:01 -04005005 * css_tryget_online() is now guaranteed to fail. Tell the subsystem to
5006 * initate destruction and put the css ref from kill_css().
Tejun Heo223dbc32013-08-13 20:22:50 -04005007 */
5008static void css_killed_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07005009{
Tejun Heo223dbc32013-08-13 20:22:50 -04005010 struct cgroup_subsys_state *css =
5011 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07005012
Tejun Heof20104d2013-08-13 20:22:50 -04005013 mutex_lock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04005014
Tejun Heoaa226ff2016-01-21 15:31:11 -05005015 do {
5016 offline_css(css);
5017 css_put(css);
5018 /* @css can't go away while we're holding cgroup_mutex */
5019 css = css->parent;
5020 } while (css && atomic_dec_and_test(&css->online_cnt));
5021
5022 mutex_unlock(&cgroup_mutex);
Tejun Heod3daf282013-06-13 19:39:16 -07005023}
5024
Tejun Heo223dbc32013-08-13 20:22:50 -04005025/* css kill confirmation processing requires process context, bounce */
5026static void css_killed_ref_fn(struct percpu_ref *ref)
Tejun Heod3daf282013-06-13 19:39:16 -07005027{
5028 struct cgroup_subsys_state *css =
5029 container_of(ref, struct cgroup_subsys_state, refcnt);
5030
Tejun Heoaa226ff2016-01-21 15:31:11 -05005031 if (atomic_dec_and_test(&css->online_cnt)) {
5032 INIT_WORK(&css->destroy_work, css_killed_work_fn);
5033 queue_work(cgroup_destroy_wq, &css->destroy_work);
5034 }
Tejun Heod3daf282013-06-13 19:39:16 -07005035}
5036
Tejun Heof392e512014-04-23 11:13:14 -04005037/**
5038 * kill_css - destroy a css
5039 * @css: css to destroy
5040 *
5041 * This function initiates destruction of @css by removing cgroup interface
5042 * files and putting its base reference. ->css_offline() will be invoked
Tejun Heoec903c02014-05-13 12:11:01 -04005043 * asynchronously once css_tryget_online() is guaranteed to fail and when
5044 * the reference count reaches zero, @css will be released.
Tejun Heof392e512014-04-23 11:13:14 -04005045 */
5046static void kill_css(struct cgroup_subsys_state *css)
Tejun Heoedae0c32013-08-13 20:22:51 -04005047{
Tejun Heo01f64742014-05-13 12:19:23 -04005048 lockdep_assert_held(&cgroup_mutex);
Tejun Heo94419622014-03-19 10:23:54 -04005049
Tejun Heo2bd59d42014-02-11 11:52:49 -05005050 /*
5051 * This must happen before css is disassociated with its cgroup.
5052 * See seq_css() for details.
5053 */
Tejun Heo4df8dc92015-09-18 17:54:23 -04005054 css_clear_dir(css, NULL);
Tejun Heo3c14f8b2013-08-13 20:22:51 -04005055
Tejun Heoedae0c32013-08-13 20:22:51 -04005056 /*
5057 * Killing would put the base ref, but we need to keep it alive
5058 * until after ->css_offline().
5059 */
5060 css_get(css);
5061
5062 /*
5063 * cgroup core guarantees that, by the time ->css_offline() is
5064 * invoked, no new css reference will be given out via
Tejun Heoec903c02014-05-13 12:11:01 -04005065 * css_tryget_online(). We can't simply call percpu_ref_kill() and
Tejun Heoedae0c32013-08-13 20:22:51 -04005066 * proceed to offlining css's because percpu_ref_kill() doesn't
5067 * guarantee that the ref is seen as killed on all CPUs on return.
5068 *
5069 * Use percpu_ref_kill_and_confirm() to get notifications as each
5070 * css is confirmed to be seen as killed on all CPUs.
5071 */
5072 percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07005073}
5074
5075/**
5076 * cgroup_destroy_locked - the first stage of cgroup destruction
5077 * @cgrp: cgroup to be destroyed
5078 *
5079 * css's make use of percpu refcnts whose killing latency shouldn't be
5080 * exposed to userland and are RCU protected. Also, cgroup core needs to
Tejun Heoec903c02014-05-13 12:11:01 -04005081 * guarantee that css_tryget_online() won't succeed by the time
5082 * ->css_offline() is invoked. To satisfy all the requirements,
5083 * destruction is implemented in the following two steps.
Tejun Heod3daf282013-06-13 19:39:16 -07005084 *
5085 * s1. Verify @cgrp can be destroyed and mark it dying. Remove all
5086 * userland visible parts and start killing the percpu refcnts of
5087 * css's. Set up so that the next stage will be kicked off once all
5088 * the percpu refcnts are confirmed to be killed.
5089 *
5090 * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the
5091 * rest of destruction. Once all cgroup references are gone, the
5092 * cgroup is RCU-freed.
5093 *
5094 * This function implements s1. After this step, @cgrp is gone as far as
5095 * the userland is concerned and a new cgroup with the same name may be
5096 * created. As cgroup doesn't care about the names internally, this
5097 * doesn't cause any problem.
5098 */
Tejun Heo42809dd2012-11-19 08:13:37 -08005099static int cgroup_destroy_locked(struct cgroup *cgrp)
5100 __releases(&cgroup_mutex) __acquires(&cgroup_mutex)
Paul Menageddbcc7e2007-10-18 23:39:30 -07005101{
Tejun Heo2bd59d42014-02-11 11:52:49 -05005102 struct cgroup_subsys_state *css;
Tejun Heo1c6727a2013-12-06 15:11:56 -05005103 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005104
Tejun Heo42809dd2012-11-19 08:13:37 -08005105 lockdep_assert_held(&cgroup_mutex);
5106
Tejun Heo91486f62015-10-15 16:41:51 -04005107 /*
5108 * Only migration can raise populated from zero and we're already
5109 * holding cgroup_mutex.
5110 */
5111 if (cgroup_is_populated(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07005112 return -EBUSY;
Tejun Heoed9577932012-11-05 09:16:58 -08005113
Tejun Heo1a90dd52012-11-05 09:16:59 -08005114 /*
Tejun Heod5c419b2014-05-16 13:22:48 -04005115 * Make sure there's no live children. We can't test emptiness of
5116 * ->self.children as dead children linger on it while being
5117 * drained; otherwise, "rmdir parent/child parent" may fail.
Hugh Dickinsbb78a922013-08-28 16:31:23 -07005118 */
Tejun Heof3d46502014-05-16 13:22:52 -04005119 if (css_has_online_children(&cgrp->self))
Hugh Dickinsbb78a922013-08-28 16:31:23 -07005120 return -EBUSY;
5121
5122 /*
Tejun Heo455050d2013-06-13 19:27:41 -07005123 * Mark @cgrp dead. This prevents further task migration and child
Tejun Heode3f0342014-05-16 13:22:49 -04005124 * creation by disabling cgroup_lock_live_group().
Tejun Heo455050d2013-06-13 19:27:41 -07005125 */
Tejun Heo184faf32014-05-16 13:22:51 -04005126 cgrp->self.flags &= ~CSS_ONLINE;
Tejun Heo1a90dd52012-11-05 09:16:59 -08005127
Tejun Heo249f3462014-05-14 09:15:01 -04005128 /* initiate massacre of all css's */
Tejun Heo1a90dd52012-11-05 09:16:59 -08005129 for_each_css(css, ssid, cgrp)
Tejun Heo455050d2013-06-13 19:27:41 -07005130 kill_css(css);
5131
Tejun Heo455050d2013-06-13 19:27:41 -07005132 /*
Tejun Heo01f64742014-05-13 12:19:23 -04005133 * Remove @cgrp directory along with the base files. @cgrp has an
5134 * extra ref on its kn.
Tejun Heo455050d2013-06-13 19:27:41 -07005135 */
Tejun Heo01f64742014-05-13 12:19:23 -04005136 kernfs_remove(cgrp->kn);
Tejun Heof20104d2013-08-13 20:22:50 -04005137
Tejun Heod51f39b2014-05-16 13:22:48 -04005138 check_for_release(cgroup_parent(cgrp));
Tejun Heo2bd59d42014-02-11 11:52:49 -05005139
Tejun Heo249f3462014-05-14 09:15:01 -04005140 /* put the base reference */
Tejun Heo9d755d32014-05-14 09:15:02 -04005141 percpu_ref_kill(&cgrp->self.refcnt);
Tejun Heo455050d2013-06-13 19:27:41 -07005142
Tejun Heoea15f8c2013-06-13 19:27:42 -07005143 return 0;
5144};
5145
Tejun Heo2bd59d42014-02-11 11:52:49 -05005146static int cgroup_rmdir(struct kernfs_node *kn)
Tejun Heo42809dd2012-11-19 08:13:37 -08005147{
Tejun Heoa9746d82014-05-13 12:19:22 -04005148 struct cgroup *cgrp;
Tejun Heo2bd59d42014-02-11 11:52:49 -05005149 int ret = 0;
Tejun Heo42809dd2012-11-19 08:13:37 -08005150
Tejun Heoa9746d82014-05-13 12:19:22 -04005151 cgrp = cgroup_kn_lock_live(kn);
5152 if (!cgrp)
5153 return 0;
Tejun Heo42809dd2012-11-19 08:13:37 -08005154
Tejun Heoa9746d82014-05-13 12:19:22 -04005155 ret = cgroup_destroy_locked(cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -08005156
Tejun Heoa9746d82014-05-13 12:19:22 -04005157 cgroup_kn_unlock(kn);
Tejun Heo42809dd2012-11-19 08:13:37 -08005158 return ret;
5159}
5160
Tejun Heo2bd59d42014-02-11 11:52:49 -05005161static struct kernfs_syscall_ops cgroup_kf_syscall_ops = {
5162 .remount_fs = cgroup_remount,
5163 .show_options = cgroup_show_options,
5164 .mkdir = cgroup_mkdir,
5165 .rmdir = cgroup_rmdir,
5166 .rename = cgroup_rename,
5167};
Tejun Heo8e3f6542012-04-01 12:09:55 -07005168
Tejun Heo15a4c832014-05-04 15:09:14 -04005169static void __init cgroup_init_subsys(struct cgroup_subsys *ss, bool early)
Paul Menageddbcc7e2007-10-18 23:39:30 -07005170{
Paul Menageddbcc7e2007-10-18 23:39:30 -07005171 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08005172
Tejun Heoa5ae9892015-12-29 14:53:56 -05005173 pr_debug("Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005174
Tejun Heo648bb562012-11-19 08:13:36 -08005175 mutex_lock(&cgroup_mutex);
5176
Tejun Heo15a4c832014-05-04 15:09:14 -04005177 idr_init(&ss->css_idr);
Tejun Heo0adb0702014-02-12 09:29:48 -05005178 INIT_LIST_HEAD(&ss->cfts);
Tejun Heo8e3f6542012-04-01 12:09:55 -07005179
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005180 /* Create the root cgroup state for this subsystem */
5181 ss->root = &cgrp_dfl_root;
5182 css = ss->css_alloc(cgroup_css(&cgrp_dfl_root.cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07005183 /* We don't handle early failures gracefully */
5184 BUG_ON(IS_ERR(css));
Tejun Heoddfcada2014-05-04 15:09:14 -04005185 init_and_link_css(css, ss, &cgrp_dfl_root.cgrp);
Tejun Heo3b514d22014-05-16 13:22:47 -04005186
5187 /*
5188 * Root csses are never destroyed and we can't initialize
5189 * percpu_ref during early init. Disable refcnting.
5190 */
5191 css->flags |= CSS_NO_REF;
5192
Tejun Heo15a4c832014-05-04 15:09:14 -04005193 if (early) {
Tejun Heo9395a452014-05-14 09:15:02 -04005194 /* allocation can't be done safely during early init */
Tejun Heo15a4c832014-05-04 15:09:14 -04005195 css->id = 1;
5196 } else {
5197 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2, GFP_KERNEL);
5198 BUG_ON(css->id < 0);
5199 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07005200
Li Zefane8d55fd2008-04-29 01:00:13 -07005201 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07005202 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07005203 * newly registered, all tasks and hence the
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005204 * init_css_set is in the subsystem's root cgroup. */
Tejun Heoaec25022014-02-08 10:36:58 -05005205 init_css_set.subsys[ss->id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005206
Aleksa Saraicb4a3162015-06-06 10:02:14 +10005207 have_fork_callback |= (bool)ss->fork << ss->id;
5208 have_exit_callback |= (bool)ss->exit << ss->id;
Tejun Heoafcf6c82015-10-15 16:41:53 -04005209 have_free_callback |= (bool)ss->free << ss->id;
Aleksa Sarai7e476822015-06-09 21:32:09 +10005210 have_canfork_callback |= (bool)ss->can_fork << ss->id;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005211
Li Zefane8d55fd2008-04-29 01:00:13 -07005212 /* At system boot, before all subsystems have been
5213 * registered, no tasks have been forked, so we don't
5214 * need to invoke fork callbacks here. */
5215 BUG_ON(!list_empty(&init_task.tasks));
5216
Tejun Heoae7f1642013-08-13 20:22:50 -04005217 BUG_ON(online_css(css));
Tejun Heoa8638032012-11-09 09:12:29 -08005218
Tejun Heo648bb562012-11-19 08:13:36 -08005219 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005220}
5221
5222/**
Li Zefana043e3b2008-02-23 15:24:09 -08005223 * cgroup_init_early - cgroup initialization at system boot
5224 *
5225 * Initialize cgroups at system boot, and initialize any
5226 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07005227 */
5228int __init cgroup_init_early(void)
5229{
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04005230 static struct cgroup_sb_opts __initdata opts;
Tejun Heo30159ec2013-06-25 11:53:37 -07005231 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005232 int i;
Tejun Heo30159ec2013-06-25 11:53:37 -07005233
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005234 init_cgroup_root(&cgrp_dfl_root, &opts);
Tejun Heo3b514d22014-05-16 13:22:47 -04005235 cgrp_dfl_root.cgrp.self.flags |= CSS_NO_REF;
5236
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07005237 RCU_INIT_POINTER(init_task.cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07005238
Tejun Heo3ed80a62014-02-08 10:36:58 -05005239 for_each_subsys(ss, i) {
Tejun Heoaec25022014-02-08 10:36:58 -05005240 WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id,
Xiubo Li63253ad2016-02-26 13:07:38 +08005241 "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p id:name=%d:%s\n",
Tejun Heo073219e2014-02-08 10:36:58 -05005242 i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free,
Tejun Heoaec25022014-02-08 10:36:58 -05005243 ss->id, ss->name);
Tejun Heo073219e2014-02-08 10:36:58 -05005244 WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN,
5245 "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005246
Tejun Heoaec25022014-02-08 10:36:58 -05005247 ss->id = i;
Tejun Heo073219e2014-02-08 10:36:58 -05005248 ss->name = cgroup_subsys_name[i];
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005249 if (!ss->legacy_name)
5250 ss->legacy_name = cgroup_subsys_name[i];
Paul Menageddbcc7e2007-10-18 23:39:30 -07005251
5252 if (ss->early_init)
Tejun Heo15a4c832014-05-04 15:09:14 -04005253 cgroup_init_subsys(ss, true);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005254 }
5255 return 0;
5256}
5257
Tejun Heo6e5c8302016-02-22 22:25:47 -05005258static u16 cgroup_disable_mask __initdata;
Tejun Heoa3e72732015-09-25 16:24:27 -04005259
Paul Menageddbcc7e2007-10-18 23:39:30 -07005260/**
Li Zefana043e3b2008-02-23 15:24:09 -08005261 * cgroup_init - cgroup initialization
5262 *
5263 * Register cgroup filesystem and /proc file, and initialize
5264 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07005265 */
5266int __init cgroup_init(void)
5267{
Tejun Heo30159ec2013-06-25 11:53:37 -07005268 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +08005269 unsigned long key;
Tejun Heo035f4f52015-10-15 17:00:43 -04005270 int ssid;
Paul Menagea4243162007-10-18 23:39:35 -07005271
Tejun Heo6e5c8302016-02-22 22:25:47 -05005272 BUILD_BUG_ON(CGROUP_SUBSYS_COUNT > 16);
Tejun Heo1ed13282015-09-16 12:53:17 -04005273 BUG_ON(percpu_init_rwsem(&cgroup_threadgroup_rwsem));
Tejun Heoa14c6872014-07-15 11:05:09 -04005274 BUG_ON(cgroup_init_cftypes(NULL, cgroup_dfl_base_files));
5275 BUG_ON(cgroup_init_cftypes(NULL, cgroup_legacy_base_files));
Paul Menageddbcc7e2007-10-18 23:39:30 -07005276
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005277 mutex_lock(&cgroup_mutex);
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005278
Tejun Heo82fe9b02013-06-25 11:53:37 -07005279 /* Add init_css_set to the hash table */
5280 key = css_set_hash(init_css_set.subsys);
5281 hash_add(css_set_table, &init_css_set.hlist, key);
5282
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005283 BUG_ON(cgroup_setup_root(&cgrp_dfl_root, 0));
Greg KH676db4a2010-08-05 13:53:35 -07005284
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005285 mutex_unlock(&cgroup_mutex);
5286
Tejun Heo172a2c062014-03-19 10:23:53 -04005287 for_each_subsys(ss, ssid) {
Tejun Heo15a4c832014-05-04 15:09:14 -04005288 if (ss->early_init) {
5289 struct cgroup_subsys_state *css =
5290 init_css_set.subsys[ss->id];
5291
5292 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2,
5293 GFP_KERNEL);
5294 BUG_ON(css->id < 0);
5295 } else {
5296 cgroup_init_subsys(ss, false);
5297 }
Tejun Heo172a2c062014-03-19 10:23:53 -04005298
Tejun Heo2d8f2432014-04-23 11:13:15 -04005299 list_add_tail(&init_css_set.e_cset_node[ssid],
5300 &cgrp_dfl_root.cgrp.e_csets[ssid]);
Tejun Heo172a2c062014-03-19 10:23:53 -04005301
5302 /*
Li Zefanc731ae12014-06-05 17:16:30 +08005303 * Setting dfl_root subsys_mask needs to consider the
5304 * disabled flag and cftype registration needs kmalloc,
5305 * both of which aren't available during early_init.
Tejun Heo172a2c062014-03-19 10:23:53 -04005306 */
Tejun Heoa3e72732015-09-25 16:24:27 -04005307 if (cgroup_disable_mask & (1 << ssid)) {
5308 static_branch_disable(cgroup_subsys_enabled_key[ssid]);
5309 printk(KERN_INFO "Disabling %s control group subsystem\n",
5310 ss->name);
Tejun Heoa8ddc822014-07-15 11:05:10 -04005311 continue;
Tejun Heoa3e72732015-09-25 16:24:27 -04005312 }
Tejun Heoa8ddc822014-07-15 11:05:10 -04005313
Johannes Weiner223ffb22016-02-11 13:34:49 -05005314 if (cgroup_ssid_no_v1(ssid))
5315 printk(KERN_INFO "Disabling %s control group subsystem in v1 mounts\n",
5316 ss->name);
5317
Tejun Heoa8ddc822014-07-15 11:05:10 -04005318 cgrp_dfl_root.subsys_mask |= 1 << ss->id;
5319
Tejun Heo5de4fa12014-07-15 11:05:10 -04005320 if (!ss->dfl_cftypes)
Tejun Heoa7165262016-02-23 10:00:50 -05005321 cgrp_dfl_inhibit_ss_mask |= 1 << ss->id;
Tejun Heo5de4fa12014-07-15 11:05:10 -04005322
Tejun Heoa8ddc822014-07-15 11:05:10 -04005323 if (ss->dfl_cftypes == ss->legacy_cftypes) {
5324 WARN_ON(cgroup_add_cftypes(ss, ss->dfl_cftypes));
5325 } else {
5326 WARN_ON(cgroup_add_dfl_cftypes(ss, ss->dfl_cftypes));
5327 WARN_ON(cgroup_add_legacy_cftypes(ss, ss->legacy_cftypes));
Li Zefanc731ae12014-06-05 17:16:30 +08005328 }
Vladimir Davydov295458e2015-02-19 17:34:46 +03005329
5330 if (ss->bind)
5331 ss->bind(init_css_set.subsys[ssid]);
Tejun Heo172a2c062014-03-19 10:23:53 -04005332 }
Greg KH676db4a2010-08-05 13:53:35 -07005333
Tejun Heo035f4f52015-10-15 17:00:43 -04005334 WARN_ON(sysfs_create_mount_point(fs_kobj, "cgroup"));
5335 WARN_ON(register_filesystem(&cgroup_fs_type));
Tejun Heo67e9c742015-11-16 11:13:34 -05005336 WARN_ON(register_filesystem(&cgroup2_fs_type));
Tejun Heo035f4f52015-10-15 17:00:43 -04005337 WARN_ON(!proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations));
Paul Menagea4243162007-10-18 23:39:35 -07005338
Tejun Heo2bd59d42014-02-11 11:52:49 -05005339 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005340}
Paul Menageb4f48b62007-10-18 23:39:33 -07005341
Tejun Heoe5fca242013-11-22 17:14:39 -05005342static int __init cgroup_wq_init(void)
5343{
5344 /*
5345 * There isn't much point in executing destruction path in
5346 * parallel. Good chunk is serialized with cgroup_mutex anyway.
Tejun Heo1a115332014-02-12 19:06:19 -05005347 * Use 1 for @max_active.
Tejun Heoe5fca242013-11-22 17:14:39 -05005348 *
5349 * We would prefer to do this in cgroup_init() above, but that
5350 * is called before init_workqueues(): so leave this until after.
5351 */
Tejun Heo1a115332014-02-12 19:06:19 -05005352 cgroup_destroy_wq = alloc_workqueue("cgroup_destroy", 0, 1);
Tejun Heoe5fca242013-11-22 17:14:39 -05005353 BUG_ON(!cgroup_destroy_wq);
Tejun Heob1a21362013-11-29 10:42:58 -05005354
5355 /*
5356 * Used to destroy pidlists and separate to serve as flush domain.
5357 * Cap @max_active to 1 too.
5358 */
5359 cgroup_pidlist_destroy_wq = alloc_workqueue("cgroup_pidlist_destroy",
5360 0, 1);
5361 BUG_ON(!cgroup_pidlist_destroy_wq);
5362
Tejun Heoe5fca242013-11-22 17:14:39 -05005363 return 0;
5364}
5365core_initcall(cgroup_wq_init);
5366
Paul Menagea4243162007-10-18 23:39:35 -07005367/*
5368 * proc_cgroup_show()
5369 * - Print task's cgroup paths into seq_file, one line for each hierarchy
5370 * - Used for /proc/<pid>/cgroup.
Paul Menagea4243162007-10-18 23:39:35 -07005371 */
Zefan Li006f4ac2014-09-18 16:03:15 +08005372int proc_cgroup_show(struct seq_file *m, struct pid_namespace *ns,
5373 struct pid *pid, struct task_struct *tsk)
Paul Menagea4243162007-10-18 23:39:35 -07005374{
Tejun Heoe61734c2014-02-12 09:29:50 -05005375 char *buf, *path;
Paul Menagea4243162007-10-18 23:39:35 -07005376 int retval;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005377 struct cgroup_root *root;
Paul Menagea4243162007-10-18 23:39:35 -07005378
5379 retval = -ENOMEM;
Tejun Heoe61734c2014-02-12 09:29:50 -05005380 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagea4243162007-10-18 23:39:35 -07005381 if (!buf)
5382 goto out;
5383
Paul Menagea4243162007-10-18 23:39:35 -07005384 mutex_lock(&cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005385 spin_lock_bh(&css_set_lock);
Paul Menagea4243162007-10-18 23:39:35 -07005386
Tejun Heo985ed672014-03-19 10:23:53 -04005387 for_each_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07005388 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07005389 struct cgroup *cgrp;
Tejun Heob85d2042013-12-06 15:11:57 -05005390 int ssid, count = 0;
Paul Menagea4243162007-10-18 23:39:35 -07005391
Tejun Heoa7165262016-02-23 10:00:50 -05005392 if (root == &cgrp_dfl_root && !cgrp_dfl_visible)
Tejun Heo985ed672014-03-19 10:23:53 -04005393 continue;
5394
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005395 seq_printf(m, "%d:", root->hierarchy_id);
Tejun Heod98817d2015-08-18 13:58:16 -07005396 if (root != &cgrp_dfl_root)
5397 for_each_subsys(ss, ssid)
5398 if (root->subsys_mask & (1 << ssid))
5399 seq_printf(m, "%s%s", count++ ? "," : "",
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005400 ss->legacy_name);
Paul Menagec6d57f32009-09-23 15:56:19 -07005401 if (strlen(root->name))
5402 seq_printf(m, "%sname=%s", count ? "," : "",
5403 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07005404 seq_putc(m, ':');
Tejun Heo2e91fa72015-10-15 16:41:53 -04005405
Paul Menage7717f7b2009-09-23 15:56:22 -07005406 cgrp = task_cgroup_from_root(tsk, root);
Tejun Heo2e91fa72015-10-15 16:41:53 -04005407
5408 /*
5409 * On traditional hierarchies, all zombie tasks show up as
5410 * belonging to the root cgroup. On the default hierarchy,
5411 * while a zombie doesn't show up in "cgroup.procs" and
5412 * thus can't be migrated, its /proc/PID/cgroup keeps
5413 * reporting the cgroup it belonged to before exiting. If
5414 * the cgroup is removed before the zombie is reaped,
5415 * " (deleted)" is appended to the cgroup path.
5416 */
5417 if (cgroup_on_dfl(cgrp) || !(tsk->flags & PF_EXITING)) {
5418 path = cgroup_path(cgrp, buf, PATH_MAX);
5419 if (!path) {
5420 retval = -ENAMETOOLONG;
5421 goto out_unlock;
5422 }
5423 } else {
5424 path = "/";
Tejun Heoe61734c2014-02-12 09:29:50 -05005425 }
Tejun Heo2e91fa72015-10-15 16:41:53 -04005426
Tejun Heoe61734c2014-02-12 09:29:50 -05005427 seq_puts(m, path);
Tejun Heo2e91fa72015-10-15 16:41:53 -04005428
5429 if (cgroup_on_dfl(cgrp) && cgroup_is_dead(cgrp))
5430 seq_puts(m, " (deleted)\n");
5431 else
5432 seq_putc(m, '\n');
Paul Menagea4243162007-10-18 23:39:35 -07005433 }
5434
Zefan Li006f4ac2014-09-18 16:03:15 +08005435 retval = 0;
Paul Menagea4243162007-10-18 23:39:35 -07005436out_unlock:
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005437 spin_unlock_bh(&css_set_lock);
Paul Menagea4243162007-10-18 23:39:35 -07005438 mutex_unlock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07005439 kfree(buf);
5440out:
5441 return retval;
5442}
5443
Paul Menagea4243162007-10-18 23:39:35 -07005444/* Display information about each subsystem and each hierarchy */
5445static int proc_cgroupstats_show(struct seq_file *m, void *v)
5446{
Tejun Heo30159ec2013-06-25 11:53:37 -07005447 struct cgroup_subsys *ss;
Paul Menagea4243162007-10-18 23:39:35 -07005448 int i;
Paul Menagea4243162007-10-18 23:39:35 -07005449
Paul Menage8bab8dd2008-04-04 14:29:57 -07005450 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08005451 /*
5452 * ideally we don't want subsystems moving around while we do this.
5453 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
5454 * subsys/hierarchy state.
5455 */
Paul Menagea4243162007-10-18 23:39:35 -07005456 mutex_lock(&cgroup_mutex);
Tejun Heo30159ec2013-06-25 11:53:37 -07005457
5458 for_each_subsys(ss, i)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005459 seq_printf(m, "%s\t%d\t%d\t%d\n",
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005460 ss->legacy_name, ss->root->hierarchy_id,
Tejun Heofc5ed1e2015-09-18 11:56:28 -04005461 atomic_read(&ss->root->nr_cgrps),
5462 cgroup_ssid_enabled(i));
Tejun Heo30159ec2013-06-25 11:53:37 -07005463
Paul Menagea4243162007-10-18 23:39:35 -07005464 mutex_unlock(&cgroup_mutex);
5465 return 0;
5466}
5467
5468static int cgroupstats_open(struct inode *inode, struct file *file)
5469{
Al Viro9dce07f2008-03-29 03:07:28 +00005470 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07005471}
5472
Alexey Dobriyan828c0952009-10-01 15:43:56 -07005473static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07005474 .open = cgroupstats_open,
5475 .read = seq_read,
5476 .llseek = seq_lseek,
5477 .release = single_release,
5478};
5479
Paul Menageb4f48b62007-10-18 23:39:33 -07005480/**
Tejun Heoeaf797a2014-02-25 10:04:03 -05005481 * cgroup_fork - initialize cgroup related fields during copy_process()
Li Zefana043e3b2008-02-23 15:24:09 -08005482 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07005483 *
Tejun Heoeaf797a2014-02-25 10:04:03 -05005484 * A task is associated with the init_css_set until cgroup_post_fork()
5485 * attaches it to the parent's css_set. Empty cg_list indicates that
5486 * @child isn't holding reference to its css_set.
Paul Menageb4f48b62007-10-18 23:39:33 -07005487 */
5488void cgroup_fork(struct task_struct *child)
5489{
Tejun Heoeaf797a2014-02-25 10:04:03 -05005490 RCU_INIT_POINTER(child->cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07005491 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07005492}
5493
5494/**
Aleksa Sarai7e476822015-06-09 21:32:09 +10005495 * cgroup_can_fork - called on a new task before the process is exposed
5496 * @child: the task in question.
5497 *
5498 * This calls the subsystem can_fork() callbacks. If the can_fork() callback
5499 * returns an error, the fork aborts with that error code. This allows for
5500 * a cgroup subsystem to conditionally allow or deny new forks.
5501 */
Oleg Nesterovb53202e2015-12-03 10:24:08 -05005502int cgroup_can_fork(struct task_struct *child)
Aleksa Sarai7e476822015-06-09 21:32:09 +10005503{
5504 struct cgroup_subsys *ss;
5505 int i, j, ret;
5506
Tejun Heob4e0eea2016-02-22 22:25:46 -05005507 do_each_subsys_mask(ss, i, have_canfork_callback) {
Oleg Nesterovb53202e2015-12-03 10:24:08 -05005508 ret = ss->can_fork(child);
Aleksa Sarai7e476822015-06-09 21:32:09 +10005509 if (ret)
5510 goto out_revert;
Tejun Heob4e0eea2016-02-22 22:25:46 -05005511 } while_each_subsys_mask();
Aleksa Sarai7e476822015-06-09 21:32:09 +10005512
5513 return 0;
5514
5515out_revert:
5516 for_each_subsys(ss, j) {
5517 if (j >= i)
5518 break;
5519 if (ss->cancel_fork)
Oleg Nesterovb53202e2015-12-03 10:24:08 -05005520 ss->cancel_fork(child);
Aleksa Sarai7e476822015-06-09 21:32:09 +10005521 }
5522
5523 return ret;
5524}
5525
5526/**
5527 * cgroup_cancel_fork - called if a fork failed after cgroup_can_fork()
5528 * @child: the task in question
5529 *
5530 * This calls the cancel_fork() callbacks if a fork failed *after*
5531 * cgroup_can_fork() succeded.
5532 */
Oleg Nesterovb53202e2015-12-03 10:24:08 -05005533void cgroup_cancel_fork(struct task_struct *child)
Aleksa Sarai7e476822015-06-09 21:32:09 +10005534{
5535 struct cgroup_subsys *ss;
5536 int i;
5537
5538 for_each_subsys(ss, i)
5539 if (ss->cancel_fork)
Oleg Nesterovb53202e2015-12-03 10:24:08 -05005540 ss->cancel_fork(child);
Aleksa Sarai7e476822015-06-09 21:32:09 +10005541}
5542
5543/**
Li Zefana043e3b2008-02-23 15:24:09 -08005544 * cgroup_post_fork - called on a new task after adding it to the task list
5545 * @child: the task in question
5546 *
Tejun Heo5edee612012-10-16 15:03:14 -07005547 * Adds the task to the list running through its css_set if necessary and
5548 * call the subsystem fork() callbacks. Has to be after the task is
5549 * visible on the task list in case we race with the first call to
Tejun Heo0942eee2013-08-08 20:11:26 -04005550 * cgroup_task_iter_start() - to guarantee that the new task ends up on its
Tejun Heo5edee612012-10-16 15:03:14 -07005551 * list.
Li Zefana043e3b2008-02-23 15:24:09 -08005552 */
Oleg Nesterovb53202e2015-12-03 10:24:08 -05005553void cgroup_post_fork(struct task_struct *child)
Paul Menage817929e2007-10-18 23:39:36 -07005554{
Tejun Heo30159ec2013-06-25 11:53:37 -07005555 struct cgroup_subsys *ss;
Tejun Heo5edee612012-10-16 15:03:14 -07005556 int i;
5557
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005558 /*
Dongsheng Yang251f8c02014-08-25 19:27:52 +08005559 * This may race against cgroup_enable_task_cg_lists(). As that
Tejun Heoeaf797a2014-02-25 10:04:03 -05005560 * function sets use_task_css_set_links before grabbing
5561 * tasklist_lock and we just went through tasklist_lock to add
5562 * @child, it's guaranteed that either we see the set
5563 * use_task_css_set_links or cgroup_enable_task_cg_lists() sees
5564 * @child during its iteration.
5565 *
5566 * If we won the race, @child is associated with %current's
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005567 * css_set. Grabbing css_set_lock guarantees both that the
Tejun Heoeaf797a2014-02-25 10:04:03 -05005568 * association is stable, and, on completion of the parent's
5569 * migration, @child is visible in the source of migration or
5570 * already in the destination cgroup. This guarantee is necessary
5571 * when implementing operations which need to migrate all tasks of
5572 * a cgroup to another.
5573 *
Dongsheng Yang251f8c02014-08-25 19:27:52 +08005574 * Note that if we lose to cgroup_enable_task_cg_lists(), @child
Tejun Heoeaf797a2014-02-25 10:04:03 -05005575 * will remain in init_css_set. This is safe because all tasks are
5576 * in the init_css_set before cg_links is enabled and there's no
5577 * operation which transfers all tasks out of init_css_set.
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005578 */
Paul Menage817929e2007-10-18 23:39:36 -07005579 if (use_task_css_set_links) {
Tejun Heoeaf797a2014-02-25 10:04:03 -05005580 struct css_set *cset;
5581
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005582 spin_lock_bh(&css_set_lock);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005583 cset = task_css_set(current);
Tejun Heoeaf797a2014-02-25 10:04:03 -05005584 if (list_empty(&child->cg_list)) {
Tejun Heoeaf797a2014-02-25 10:04:03 -05005585 get_css_set(cset);
Tejun Heof6d7d042015-10-15 16:41:52 -04005586 css_set_move_task(child, NULL, cset, false);
Tejun Heoeaf797a2014-02-25 10:04:03 -05005587 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005588 spin_unlock_bh(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -07005589 }
Tejun Heo5edee612012-10-16 15:03:14 -07005590
5591 /*
5592 * Call ss->fork(). This must happen after @child is linked on
5593 * css_set; otherwise, @child might change state between ->fork()
5594 * and addition to css_set.
5595 */
Tejun Heob4e0eea2016-02-22 22:25:46 -05005596 do_each_subsys_mask(ss, i, have_fork_callback) {
Oleg Nesterovb53202e2015-12-03 10:24:08 -05005597 ss->fork(child);
Tejun Heob4e0eea2016-02-22 22:25:46 -05005598 } while_each_subsys_mask();
Paul Menage817929e2007-10-18 23:39:36 -07005599}
Tejun Heo5edee612012-10-16 15:03:14 -07005600
Paul Menage817929e2007-10-18 23:39:36 -07005601/**
Paul Menageb4f48b62007-10-18 23:39:33 -07005602 * cgroup_exit - detach cgroup from exiting task
5603 * @tsk: pointer to task_struct of exiting process
5604 *
5605 * Description: Detach cgroup from @tsk and release it.
5606 *
5607 * Note that cgroups marked notify_on_release force every task in
5608 * them to take the global cgroup_mutex mutex when exiting.
5609 * This could impact scaling on very large systems. Be reluctant to
5610 * use notify_on_release cgroups where very high task exit scaling
5611 * is required on large systems.
5612 *
Tejun Heo0e1d7682014-02-25 10:04:03 -05005613 * We set the exiting tasks cgroup to the root cgroup (top_cgroup). We
5614 * call cgroup_exit() while the task is still competent to handle
5615 * notify_on_release(), then leave the task attached to the root cgroup in
5616 * each hierarchy for the remainder of its exit. No need to bother with
5617 * init_css_set refcnting. init_css_set never goes away and we can't race
Li Zefane8604cb2014-03-28 15:18:27 +08005618 * with migration path - PF_EXITING is visible to migration path.
Paul Menageb4f48b62007-10-18 23:39:33 -07005619 */
Li Zefan1ec41832014-03-28 15:22:19 +08005620void cgroup_exit(struct task_struct *tsk)
Paul Menageb4f48b62007-10-18 23:39:33 -07005621{
Tejun Heo30159ec2013-06-25 11:53:37 -07005622 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -07005623 struct css_set *cset;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005624 int i;
Paul Menage817929e2007-10-18 23:39:36 -07005625
5626 /*
Tejun Heo0e1d7682014-02-25 10:04:03 -05005627 * Unlink from @tsk from its css_set. As migration path can't race
Tejun Heo0de09422015-10-15 16:41:49 -04005628 * with us, we can check css_set and cg_list without synchronization.
Paul Menage817929e2007-10-18 23:39:36 -07005629 */
Tejun Heo0de09422015-10-15 16:41:49 -04005630 cset = task_css_set(tsk);
5631
Paul Menage817929e2007-10-18 23:39:36 -07005632 if (!list_empty(&tsk->cg_list)) {
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005633 spin_lock_bh(&css_set_lock);
Tejun Heof6d7d042015-10-15 16:41:52 -04005634 css_set_move_task(tsk, cset, NULL, false);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005635 spin_unlock_bh(&css_set_lock);
Tejun Heo2e91fa72015-10-15 16:41:53 -04005636 } else {
5637 get_css_set(cset);
Paul Menage817929e2007-10-18 23:39:36 -07005638 }
5639
Aleksa Saraicb4a3162015-06-06 10:02:14 +10005640 /* see cgroup_post_fork() for details */
Tejun Heob4e0eea2016-02-22 22:25:46 -05005641 do_each_subsys_mask(ss, i, have_exit_callback) {
Tejun Heo2e91fa72015-10-15 16:41:53 -04005642 ss->exit(tsk);
Tejun Heob4e0eea2016-02-22 22:25:46 -05005643 } while_each_subsys_mask();
Tejun Heo2e91fa72015-10-15 16:41:53 -04005644}
Tejun Heo30159ec2013-06-25 11:53:37 -07005645
Tejun Heo2e91fa72015-10-15 16:41:53 -04005646void cgroup_free(struct task_struct *task)
5647{
5648 struct css_set *cset = task_css_set(task);
Tejun Heoafcf6c82015-10-15 16:41:53 -04005649 struct cgroup_subsys *ss;
5650 int ssid;
5651
Tejun Heob4e0eea2016-02-22 22:25:46 -05005652 do_each_subsys_mask(ss, ssid, have_free_callback) {
Tejun Heoafcf6c82015-10-15 16:41:53 -04005653 ss->free(task);
Tejun Heob4e0eea2016-02-22 22:25:46 -05005654 } while_each_subsys_mask();
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005655
Tejun Heo2e91fa72015-10-15 16:41:53 -04005656 put_css_set(cset);
Paul Menageb4f48b62007-10-18 23:39:33 -07005657}
Paul Menage697f4162007-10-18 23:39:34 -07005658
Paul Menagebd89aab2007-10-18 23:40:44 -07005659static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07005660{
Tejun Heo27bd4db2015-10-15 16:41:50 -04005661 if (notify_on_release(cgrp) && !cgroup_is_populated(cgrp) &&
Zefan Li971ff492014-09-18 16:06:19 +08005662 !css_has_online_children(&cgrp->self) && !cgroup_is_dead(cgrp))
5663 schedule_work(&cgrp->release_agent_work);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005664}
5665
Paul Menage81a6a5c2007-10-18 23:39:38 -07005666/*
5667 * Notify userspace when a cgroup is released, by running the
5668 * configured release agent with the name of the cgroup (path
5669 * relative to the root of cgroup file system) as the argument.
5670 *
5671 * Most likely, this user command will try to rmdir this cgroup.
5672 *
5673 * This races with the possibility that some other task will be
5674 * attached to this cgroup before it is removed, or that some other
5675 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
5676 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
5677 * unused, and this cgroup will be reprieved from its death sentence,
5678 * to continue to serve a useful existence. Next time it's released,
5679 * we will get notified again, if it still has 'notify_on_release' set.
5680 *
5681 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
5682 * means only wait until the task is successfully execve()'d. The
5683 * separate release agent task is forked by call_usermodehelper(),
5684 * then control in this thread returns here, without waiting for the
5685 * release agent task. We don't bother to wait because the caller of
5686 * this routine has no use for the exit status of the release agent
5687 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07005688 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07005689static void cgroup_release_agent(struct work_struct *work)
5690{
Zefan Li971ff492014-09-18 16:06:19 +08005691 struct cgroup *cgrp =
5692 container_of(work, struct cgroup, release_agent_work);
5693 char *pathbuf = NULL, *agentbuf = NULL, *path;
5694 char *argv[3], *envp[3];
5695
Paul Menage81a6a5c2007-10-18 23:39:38 -07005696 mutex_lock(&cgroup_mutex);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005697
Zefan Li971ff492014-09-18 16:06:19 +08005698 pathbuf = kmalloc(PATH_MAX, GFP_KERNEL);
5699 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
5700 if (!pathbuf || !agentbuf)
5701 goto out;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005702
Zefan Li971ff492014-09-18 16:06:19 +08005703 path = cgroup_path(cgrp, pathbuf, PATH_MAX);
5704 if (!path)
5705 goto out;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005706
Zefan Li971ff492014-09-18 16:06:19 +08005707 argv[0] = agentbuf;
5708 argv[1] = path;
5709 argv[2] = NULL;
5710
5711 /* minimal command environment */
5712 envp[0] = "HOME=/";
5713 envp[1] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
5714 envp[2] = NULL;
5715
Paul Menage81a6a5c2007-10-18 23:39:38 -07005716 mutex_unlock(&cgroup_mutex);
Zefan Li971ff492014-09-18 16:06:19 +08005717 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Zefan Li3e2cd912014-09-20 14:35:43 +08005718 goto out_free;
Zefan Li971ff492014-09-18 16:06:19 +08005719out:
Zefan Li3e2cd912014-09-20 14:35:43 +08005720 mutex_unlock(&cgroup_mutex);
5721out_free:
Zefan Li971ff492014-09-18 16:06:19 +08005722 kfree(agentbuf);
5723 kfree(pathbuf);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005724}
Paul Menage8bab8dd2008-04-04 14:29:57 -07005725
5726static int __init cgroup_disable(char *str)
5727{
Tejun Heo30159ec2013-06-25 11:53:37 -07005728 struct cgroup_subsys *ss;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005729 char *token;
Tejun Heo30159ec2013-06-25 11:53:37 -07005730 int i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005731
5732 while ((token = strsep(&str, ",")) != NULL) {
5733 if (!*token)
5734 continue;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005735
Tejun Heo3ed80a62014-02-08 10:36:58 -05005736 for_each_subsys(ss, i) {
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005737 if (strcmp(token, ss->name) &&
5738 strcmp(token, ss->legacy_name))
5739 continue;
Tejun Heoa3e72732015-09-25 16:24:27 -04005740 cgroup_disable_mask |= 1 << i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005741 }
5742 }
5743 return 1;
5744}
5745__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005746
Johannes Weiner223ffb22016-02-11 13:34:49 -05005747static int __init cgroup_no_v1(char *str)
5748{
5749 struct cgroup_subsys *ss;
5750 char *token;
5751 int i;
5752
5753 while ((token = strsep(&str, ",")) != NULL) {
5754 if (!*token)
5755 continue;
5756
5757 if (!strcmp(token, "all")) {
Tejun Heo6e5c8302016-02-22 22:25:47 -05005758 cgroup_no_v1_mask = U16_MAX;
Johannes Weiner223ffb22016-02-11 13:34:49 -05005759 break;
5760 }
5761
5762 for_each_subsys(ss, i) {
5763 if (strcmp(token, ss->name) &&
5764 strcmp(token, ss->legacy_name))
5765 continue;
5766
5767 cgroup_no_v1_mask |= 1 << i;
5768 }
5769 }
5770 return 1;
5771}
5772__setup("cgroup_no_v1=", cgroup_no_v1);
5773
Tejun Heob77d7b62013-08-13 11:01:54 -04005774/**
Tejun Heoec903c02014-05-13 12:11:01 -04005775 * css_tryget_online_from_dir - get corresponding css from a cgroup dentry
Tejun Heo35cf0832013-08-26 18:40:56 -04005776 * @dentry: directory dentry of interest
5777 * @ss: subsystem of interest
Tejun Heob77d7b62013-08-13 11:01:54 -04005778 *
Tejun Heo5a17f542014-02-11 11:52:47 -05005779 * If @dentry is a directory for a cgroup which has @ss enabled on it, try
5780 * to get the corresponding css and return it. If such css doesn't exist
5781 * or can't be pinned, an ERR_PTR value is returned.
Stephane Eraniane5d13672011-02-14 11:20:01 +02005782 */
Tejun Heoec903c02014-05-13 12:11:01 -04005783struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry,
5784 struct cgroup_subsys *ss)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005785{
Tejun Heo2bd59d42014-02-11 11:52:49 -05005786 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
Tejun Heof17fc252016-02-23 10:00:51 -05005787 struct file_system_type *s_type = dentry->d_sb->s_type;
Tejun Heo2bd59d42014-02-11 11:52:49 -05005788 struct cgroup_subsys_state *css = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005789 struct cgroup *cgrp;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005790
Tejun Heo35cf0832013-08-26 18:40:56 -04005791 /* is @dentry a cgroup dir? */
Tejun Heof17fc252016-02-23 10:00:51 -05005792 if ((s_type != &cgroup_fs_type && s_type != &cgroup2_fs_type) ||
5793 !kn || kernfs_type(kn) != KERNFS_DIR)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005794 return ERR_PTR(-EBADF);
5795
Tejun Heo5a17f542014-02-11 11:52:47 -05005796 rcu_read_lock();
5797
Tejun Heo2bd59d42014-02-11 11:52:49 -05005798 /*
5799 * This path doesn't originate from kernfs and @kn could already
5800 * have been or be removed at any point. @kn->priv is RCU
Li Zefana4189482014-09-04 14:43:07 +08005801 * protected for this access. See css_release_work_fn() for details.
Tejun Heo2bd59d42014-02-11 11:52:49 -05005802 */
5803 cgrp = rcu_dereference(kn->priv);
5804 if (cgrp)
5805 css = cgroup_css(cgrp, ss);
Tejun Heo5a17f542014-02-11 11:52:47 -05005806
Tejun Heoec903c02014-05-13 12:11:01 -04005807 if (!css || !css_tryget_online(css))
Tejun Heo5a17f542014-02-11 11:52:47 -05005808 css = ERR_PTR(-ENOENT);
5809
5810 rcu_read_unlock();
5811 return css;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005812}
Stephane Eraniane5d13672011-02-14 11:20:01 +02005813
Li Zefan1cb650b2013-08-19 10:05:24 +08005814/**
5815 * css_from_id - lookup css by id
5816 * @id: the cgroup id
5817 * @ss: cgroup subsys to be looked into
5818 *
5819 * Returns the css if there's valid one with @id, otherwise returns NULL.
5820 * Should be called under rcu_read_lock().
5821 */
5822struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss)
5823{
Tejun Heo6fa49182014-05-04 15:09:13 -04005824 WARN_ON_ONCE(!rcu_read_lock_held());
Vladimir Davydovadbe4272015-04-15 16:13:00 -07005825 return id > 0 ? idr_find(&ss->css_idr, id) : NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005826}
5827
Tejun Heo16af4392015-11-20 15:55:52 -05005828/**
5829 * cgroup_get_from_path - lookup and get a cgroup from its default hierarchy path
5830 * @path: path on the default hierarchy
5831 *
5832 * Find the cgroup at @path on the default hierarchy, increment its
5833 * reference count and return it. Returns pointer to the found cgroup on
5834 * success, ERR_PTR(-ENOENT) if @path doens't exist and ERR_PTR(-ENOTDIR)
5835 * if @path points to a non-directory.
5836 */
5837struct cgroup *cgroup_get_from_path(const char *path)
5838{
5839 struct kernfs_node *kn;
5840 struct cgroup *cgrp;
5841
5842 mutex_lock(&cgroup_mutex);
5843
5844 kn = kernfs_walk_and_get(cgrp_dfl_root.cgrp.kn, path);
5845 if (kn) {
5846 if (kernfs_type(kn) == KERNFS_DIR) {
5847 cgrp = kn->priv;
5848 cgroup_get(cgrp);
5849 } else {
5850 cgrp = ERR_PTR(-ENOTDIR);
5851 }
5852 kernfs_put(kn);
5853 } else {
5854 cgrp = ERR_PTR(-ENOENT);
5855 }
5856
5857 mutex_unlock(&cgroup_mutex);
5858 return cgrp;
5859}
5860EXPORT_SYMBOL_GPL(cgroup_get_from_path);
5861
Tejun Heobd1060a2015-12-07 17:38:53 -05005862/*
5863 * sock->sk_cgrp_data handling. For more info, see sock_cgroup_data
5864 * definition in cgroup-defs.h.
5865 */
5866#ifdef CONFIG_SOCK_CGROUP_DATA
5867
5868#if defined(CONFIG_CGROUP_NET_PRIO) || defined(CONFIG_CGROUP_NET_CLASSID)
5869
Tejun Heo3fa4cc92015-12-14 11:24:06 -05005870DEFINE_SPINLOCK(cgroup_sk_update_lock);
Tejun Heobd1060a2015-12-07 17:38:53 -05005871static bool cgroup_sk_alloc_disabled __read_mostly;
5872
5873void cgroup_sk_alloc_disable(void)
5874{
5875 if (cgroup_sk_alloc_disabled)
5876 return;
5877 pr_info("cgroup: disabling cgroup2 socket matching due to net_prio or net_cls activation\n");
5878 cgroup_sk_alloc_disabled = true;
5879}
5880
5881#else
5882
5883#define cgroup_sk_alloc_disabled false
5884
5885#endif
5886
5887void cgroup_sk_alloc(struct sock_cgroup_data *skcd)
5888{
5889 if (cgroup_sk_alloc_disabled)
5890 return;
5891
5892 rcu_read_lock();
5893
5894 while (true) {
5895 struct css_set *cset;
5896
5897 cset = task_css_set(current);
5898 if (likely(cgroup_tryget(cset->dfl_cgrp))) {
5899 skcd->val = (unsigned long)cset->dfl_cgrp;
5900 break;
5901 }
5902 cpu_relax();
5903 }
5904
5905 rcu_read_unlock();
5906}
5907
5908void cgroup_sk_free(struct sock_cgroup_data *skcd)
5909{
5910 cgroup_put(sock_cgroup_ptr(skcd));
5911}
5912
5913#endif /* CONFIG_SOCK_CGROUP_DATA */
5914
Paul Menagefe693432009-09-23 15:56:20 -07005915#ifdef CONFIG_CGROUP_DEBUG
Tejun Heoeb954192013-08-08 20:11:23 -04005916static struct cgroup_subsys_state *
5917debug_css_alloc(struct cgroup_subsys_state *parent_css)
Paul Menagefe693432009-09-23 15:56:20 -07005918{
5919 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
5920
5921 if (!css)
5922 return ERR_PTR(-ENOMEM);
5923
5924 return css;
5925}
5926
Tejun Heoeb954192013-08-08 20:11:23 -04005927static void debug_css_free(struct cgroup_subsys_state *css)
Paul Menagefe693432009-09-23 15:56:20 -07005928{
Tejun Heoeb954192013-08-08 20:11:23 -04005929 kfree(css);
Paul Menagefe693432009-09-23 15:56:20 -07005930}
5931
Tejun Heo182446d2013-08-08 20:11:24 -04005932static u64 debug_taskcount_read(struct cgroup_subsys_state *css,
5933 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005934{
Tejun Heo182446d2013-08-08 20:11:24 -04005935 return cgroup_task_count(css->cgroup);
Paul Menagefe693432009-09-23 15:56:20 -07005936}
5937
Tejun Heo182446d2013-08-08 20:11:24 -04005938static u64 current_css_set_read(struct cgroup_subsys_state *css,
5939 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005940{
5941 return (u64)(unsigned long)current->cgroups;
5942}
5943
Tejun Heo182446d2013-08-08 20:11:24 -04005944static u64 current_css_set_refcount_read(struct cgroup_subsys_state *css,
Li Zefan03c78cb2013-06-14 11:17:19 +08005945 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005946{
5947 u64 count;
5948
5949 rcu_read_lock();
Tejun Heoa8ad8052013-06-21 15:52:04 -07005950 count = atomic_read(&task_css_set(current)->refcount);
Paul Menagefe693432009-09-23 15:56:20 -07005951 rcu_read_unlock();
5952 return count;
5953}
5954
Tejun Heo2da8ca82013-12-05 12:28:04 -05005955static int current_css_set_cg_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005956{
Tejun Heo69d02062013-06-12 21:04:50 -07005957 struct cgrp_cset_link *link;
Tejun Heo5abb8852013-06-12 21:04:49 -07005958 struct css_set *cset;
Tejun Heoe61734c2014-02-12 09:29:50 -05005959 char *name_buf;
Paul Menage7717f7b2009-09-23 15:56:22 -07005960
Tejun Heoe61734c2014-02-12 09:29:50 -05005961 name_buf = kmalloc(NAME_MAX + 1, GFP_KERNEL);
5962 if (!name_buf)
5963 return -ENOMEM;
Paul Menage7717f7b2009-09-23 15:56:22 -07005964
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005965 spin_lock_bh(&css_set_lock);
Paul Menage7717f7b2009-09-23 15:56:22 -07005966 rcu_read_lock();
Tejun Heo5abb8852013-06-12 21:04:49 -07005967 cset = rcu_dereference(current->cgroups);
Tejun Heo69d02062013-06-12 21:04:50 -07005968 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07005969 struct cgroup *c = link->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -07005970
Tejun Heoa2dd4242014-03-19 10:23:55 -04005971 cgroup_name(c, name_buf, NAME_MAX + 1);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005972 seq_printf(seq, "Root %d group %s\n",
Tejun Heoa2dd4242014-03-19 10:23:55 -04005973 c->root->hierarchy_id, name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07005974 }
5975 rcu_read_unlock();
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005976 spin_unlock_bh(&css_set_lock);
Tejun Heoe61734c2014-02-12 09:29:50 -05005977 kfree(name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07005978 return 0;
5979}
5980
5981#define MAX_TASKS_SHOWN_PER_CSS 25
Tejun Heo2da8ca82013-12-05 12:28:04 -05005982static int cgroup_css_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005983{
Tejun Heo2da8ca82013-12-05 12:28:04 -05005984 struct cgroup_subsys_state *css = seq_css(seq);
Tejun Heo69d02062013-06-12 21:04:50 -07005985 struct cgrp_cset_link *link;
Paul Menage7717f7b2009-09-23 15:56:22 -07005986
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005987 spin_lock_bh(&css_set_lock);
Tejun Heo182446d2013-08-08 20:11:24 -04005988 list_for_each_entry(link, &css->cgroup->cset_links, cset_link) {
Tejun Heo69d02062013-06-12 21:04:50 -07005989 struct css_set *cset = link->cset;
Paul Menage7717f7b2009-09-23 15:56:22 -07005990 struct task_struct *task;
5991 int count = 0;
Tejun Heoc7561122014-02-25 10:04:01 -05005992
Tejun Heo5abb8852013-06-12 21:04:49 -07005993 seq_printf(seq, "css_set %p\n", cset);
Tejun Heoc7561122014-02-25 10:04:01 -05005994
Tejun Heo5abb8852013-06-12 21:04:49 -07005995 list_for_each_entry(task, &cset->tasks, cg_list) {
Tejun Heoc7561122014-02-25 10:04:01 -05005996 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
5997 goto overflow;
5998 seq_printf(seq, " task %d\n", task_pid_vnr(task));
Paul Menage7717f7b2009-09-23 15:56:22 -07005999 }
Tejun Heoc7561122014-02-25 10:04:01 -05006000
6001 list_for_each_entry(task, &cset->mg_tasks, cg_list) {
6002 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
6003 goto overflow;
6004 seq_printf(seq, " task %d\n", task_pid_vnr(task));
6005 }
6006 continue;
6007 overflow:
6008 seq_puts(seq, " ...\n");
Paul Menage7717f7b2009-09-23 15:56:22 -07006009 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04006010 spin_unlock_bh(&css_set_lock);
Paul Menage7717f7b2009-09-23 15:56:22 -07006011 return 0;
6012}
6013
Tejun Heo182446d2013-08-08 20:11:24 -04006014static u64 releasable_read(struct cgroup_subsys_state *css, struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07006015{
Tejun Heo27bd4db2015-10-15 16:41:50 -04006016 return (!cgroup_is_populated(css->cgroup) &&
Zefan Lia25eb522014-09-19 16:51:00 +08006017 !css_has_online_children(&css->cgroup->self));
Paul Menagefe693432009-09-23 15:56:20 -07006018}
6019
6020static struct cftype debug_files[] = {
6021 {
Paul Menagefe693432009-09-23 15:56:20 -07006022 .name = "taskcount",
6023 .read_u64 = debug_taskcount_read,
6024 },
6025
6026 {
6027 .name = "current_css_set",
6028 .read_u64 = current_css_set_read,
6029 },
6030
6031 {
6032 .name = "current_css_set_refcount",
6033 .read_u64 = current_css_set_refcount_read,
6034 },
6035
6036 {
Paul Menage7717f7b2009-09-23 15:56:22 -07006037 .name = "current_css_set_cg_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05006038 .seq_show = current_css_set_cg_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07006039 },
6040
6041 {
6042 .name = "cgroup_css_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05006043 .seq_show = cgroup_css_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07006044 },
6045
6046 {
Paul Menagefe693432009-09-23 15:56:20 -07006047 .name = "releasable",
6048 .read_u64 = releasable_read,
6049 },
Paul Menagefe693432009-09-23 15:56:20 -07006050
Tejun Heo4baf6e32012-04-01 12:09:55 -07006051 { } /* terminate */
6052};
Paul Menagefe693432009-09-23 15:56:20 -07006053
Tejun Heo073219e2014-02-08 10:36:58 -05006054struct cgroup_subsys debug_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08006055 .css_alloc = debug_css_alloc,
6056 .css_free = debug_css_free,
Tejun Heo55779642014-07-15 11:05:09 -04006057 .legacy_cftypes = debug_files,
Paul Menagefe693432009-09-23 15:56:20 -07006058};
6059#endif /* CONFIG_CGROUP_DEBUG */