blob: d573189500767e021ebf3c230ccd69e9e261bba0 [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
Tejun Heof6d635ad2016-03-08 11:51:26 -0500189/* some controllers are implicitly enabled on the default hierarchy */
190static unsigned long cgrp_dfl_implicit_ss_mask;
191
Paul Menageddbcc7e2007-10-18 23:39:30 -0700192/* The list of hierarchy roots */
193
Tejun Heo9871bf92013-06-24 15:21:47 -0700194static LIST_HEAD(cgroup_roots);
195static int cgroup_root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700196
Tejun Heo3417ae12014-02-08 10:37:01 -0500197/* hierarchy ID allocation and mapping, protected by cgroup_mutex */
Tejun Heo1a574232013-04-14 11:36:58 -0700198static DEFINE_IDR(cgroup_hierarchy_idr);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700199
Li Zefan794611a2013-06-18 18:53:53 +0800200/*
Tejun Heo0cb51d72014-05-16 13:22:49 -0400201 * Assign a monotonically increasing serial number to csses. It guarantees
202 * cgroups with bigger numbers are newer than those with smaller numbers.
203 * Also, as csses are always appended to the parent's ->children list, it
204 * guarantees that sibling csses are always sorted in the ascending serial
205 * number order on the list. Protected by cgroup_mutex.
Li Zefan794611a2013-06-18 18:53:53 +0800206 */
Tejun Heo0cb51d72014-05-16 13:22:49 -0400207static u64 css_serial_nr_next = 1;
Li Zefan794611a2013-06-18 18:53:53 +0800208
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000209/*
210 * These bitmask flags indicate whether tasks in the fork and exit paths have
211 * fork/exit handlers to call. This avoids us having to do extra work in the
212 * fork/exit path to check which subsystems have fork/exit callbacks.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700213 */
Tejun Heo6e5c8302016-02-22 22:25:47 -0500214static u16 have_fork_callback __read_mostly;
215static u16 have_exit_callback __read_mostly;
216static u16 have_free_callback __read_mostly;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700217
Aleksa Sarai7e476822015-06-09 21:32:09 +1000218/* Ditto for the can_fork callback. */
Tejun Heo6e5c8302016-02-22 22:25:47 -0500219static u16 have_canfork_callback __read_mostly;
Aleksa Sarai7e476822015-06-09 21:32:09 +1000220
Tejun Heo67e9c742015-11-16 11:13:34 -0500221static struct file_system_type cgroup2_fs_type;
Tejun Heoa14c6872014-07-15 11:05:09 -0400222static struct cftype cgroup_dfl_base_files[];
223static struct cftype cgroup_legacy_base_files[];
Tejun Heo628f7cd2013-06-28 16:24:11 -0700224
Tejun Heo6e5c8302016-02-22 22:25:47 -0500225static int rebind_subsystems(struct cgroup_root *dst_root, u16 ss_mask);
Tejun Heo945ba192016-03-03 09:58:00 -0500226static void cgroup_lock_and_drain_offline(struct cgroup *cgrp);
Tejun Heo334c3672016-03-03 09:58:01 -0500227static int cgroup_apply_control(struct cgroup *cgrp);
228static void cgroup_finalize_control(struct cgroup *cgrp, int ret);
Tejun Heoed27b9f2015-10-15 16:41:52 -0400229static void css_task_iter_advance(struct css_task_iter *it);
Tejun Heo42809dd2012-11-19 08:13:37 -0800230static int cgroup_destroy_locked(struct cgroup *cgrp);
Tejun Heo6cd0f5b2016-03-03 09:57:58 -0500231static struct cgroup_subsys_state *css_create(struct cgroup *cgrp,
232 struct cgroup_subsys *ss);
Tejun Heo9d755d32014-05-14 09:15:02 -0400233static void css_release(struct percpu_ref *ref);
Tejun Heof8f22e52014-04-23 11:13:16 -0400234static void kill_css(struct cgroup_subsys_state *css);
Tejun Heo4df8dc92015-09-18 17:54:23 -0400235static int cgroup_addrm_files(struct cgroup_subsys_state *css,
236 struct cgroup *cgrp, struct cftype cfts[],
Tejun Heo2bb566c2013-08-08 20:11:23 -0400237 bool is_add);
Tejun Heo42809dd2012-11-19 08:13:37 -0800238
Tejun Heofc5ed1e2015-09-18 11:56:28 -0400239/**
240 * cgroup_ssid_enabled - cgroup subsys enabled test by subsys ID
241 * @ssid: subsys ID of interest
242 *
243 * cgroup_subsys_enabled() can only be used with literal subsys names which
244 * is fine for individual subsystems but unsuitable for cgroup core. This
245 * is slower static_key_enabled() based test indexed by @ssid.
246 */
247static bool cgroup_ssid_enabled(int ssid)
248{
249 return static_key_enabled(cgroup_subsys_enabled_key[ssid]);
250}
251
Johannes Weiner223ffb22016-02-11 13:34:49 -0500252static bool cgroup_ssid_no_v1(int ssid)
253{
254 return cgroup_no_v1_mask & (1 << ssid);
255}
256
Tejun Heo9e10a132015-09-18 11:56:28 -0400257/**
258 * cgroup_on_dfl - test whether a cgroup is on the default hierarchy
259 * @cgrp: the cgroup of interest
260 *
261 * The default hierarchy is the v2 interface of cgroup and this function
262 * can be used to test whether a cgroup is on the default hierarchy for
263 * cases where a subsystem should behave differnetly depending on the
264 * interface version.
265 *
266 * The set of behaviors which change on the default hierarchy are still
267 * being determined and the mount option is prefixed with __DEVEL__.
268 *
269 * List of changed behaviors:
270 *
271 * - Mount options "noprefix", "xattr", "clone_children", "release_agent"
272 * and "name" are disallowed.
273 *
274 * - When mounting an existing superblock, mount options should match.
275 *
276 * - Remount is disallowed.
277 *
278 * - rename(2) is disallowed.
279 *
280 * - "tasks" is removed. Everything should be at process granularity. Use
281 * "cgroup.procs" instead.
282 *
283 * - "cgroup.procs" is not sorted. pids will be unique unless they got
284 * recycled inbetween reads.
285 *
286 * - "release_agent" and "notify_on_release" are removed. Replacement
287 * notification mechanism will be implemented.
288 *
289 * - "cgroup.clone_children" is removed.
290 *
291 * - "cgroup.subtree_populated" is available. Its value is 0 if the cgroup
292 * and its descendants contain no task; otherwise, 1. The file also
293 * generates kernfs notification which can be monitored through poll and
294 * [di]notify when the value of the file changes.
295 *
296 * - cpuset: tasks will be kept in empty cpusets when hotplug happens and
297 * take masks of ancestors with non-empty cpus/mems, instead of being
298 * moved to an ancestor.
299 *
300 * - cpuset: a task can be moved into an empty cpuset, and again it takes
301 * masks of ancestors.
302 *
303 * - memcg: use_hierarchy is on by default and the cgroup file for the flag
304 * is not created.
305 *
306 * - blkcg: blk-throttle becomes properly hierarchical.
307 *
308 * - debug: disallowed on the default hierarchy.
309 */
310static bool cgroup_on_dfl(const struct cgroup *cgrp)
311{
312 return cgrp->root == &cgrp_dfl_root;
313}
314
Tejun Heo6fa49182014-05-04 15:09:13 -0400315/* IDR wrappers which synchronize using cgroup_idr_lock */
316static int cgroup_idr_alloc(struct idr *idr, void *ptr, int start, int end,
317 gfp_t gfp_mask)
318{
319 int ret;
320
321 idr_preload(gfp_mask);
Tejun Heo54504e92014-05-13 12:10:59 -0400322 spin_lock_bh(&cgroup_idr_lock);
Mel Gormand0164ad2015-11-06 16:28:21 -0800323 ret = idr_alloc(idr, ptr, start, end, gfp_mask & ~__GFP_DIRECT_RECLAIM);
Tejun Heo54504e92014-05-13 12:10:59 -0400324 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400325 idr_preload_end();
326 return ret;
327}
328
329static void *cgroup_idr_replace(struct idr *idr, void *ptr, int id)
330{
331 void *ret;
332
Tejun Heo54504e92014-05-13 12:10:59 -0400333 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400334 ret = idr_replace(idr, ptr, id);
Tejun Heo54504e92014-05-13 12:10:59 -0400335 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400336 return ret;
337}
338
339static void cgroup_idr_remove(struct idr *idr, int id)
340{
Tejun Heo54504e92014-05-13 12:10:59 -0400341 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400342 idr_remove(idr, id);
Tejun Heo54504e92014-05-13 12:10:59 -0400343 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400344}
345
Tejun Heod51f39b2014-05-16 13:22:48 -0400346static struct cgroup *cgroup_parent(struct cgroup *cgrp)
347{
348 struct cgroup_subsys_state *parent_css = cgrp->self.parent;
349
350 if (parent_css)
351 return container_of(parent_css, struct cgroup, self);
352 return NULL;
353}
354
Tejun Heo5531dc92016-03-03 09:57:58 -0500355/* subsystems visibly enabled on a cgroup */
356static u16 cgroup_control(struct cgroup *cgrp)
357{
358 struct cgroup *parent = cgroup_parent(cgrp);
359 u16 root_ss_mask = cgrp->root->subsys_mask;
360
361 if (parent)
362 return parent->subtree_control;
363
364 if (cgroup_on_dfl(cgrp))
Tejun Heof6d635ad2016-03-08 11:51:26 -0500365 root_ss_mask &= ~(cgrp_dfl_inhibit_ss_mask |
366 cgrp_dfl_implicit_ss_mask);
Tejun Heo5531dc92016-03-03 09:57:58 -0500367 return root_ss_mask;
368}
369
370/* subsystems enabled on a cgroup */
371static u16 cgroup_ss_mask(struct cgroup *cgrp)
372{
373 struct cgroup *parent = cgroup_parent(cgrp);
374
375 if (parent)
376 return parent->subtree_ss_mask;
377
378 return cgrp->root->subsys_mask;
379}
380
Tejun Heo95109b62013-08-08 20:11:27 -0400381/**
382 * cgroup_css - obtain a cgroup's css for the specified subsystem
383 * @cgrp: the cgroup of interest
Tejun Heo9d800df2014-05-14 09:15:00 -0400384 * @ss: the subsystem of interest (%NULL returns @cgrp->self)
Tejun Heo95109b62013-08-08 20:11:27 -0400385 *
Tejun Heoca8bdca2013-08-26 18:40:56 -0400386 * Return @cgrp's css (cgroup_subsys_state) associated with @ss. This
387 * function must be called either under cgroup_mutex or rcu_read_lock() and
388 * the caller is responsible for pinning the returned css if it wants to
389 * keep accessing it outside the said locks. This function may return
390 * %NULL if @cgrp doesn't have @subsys_id enabled.
Tejun Heo95109b62013-08-08 20:11:27 -0400391 */
392static struct cgroup_subsys_state *cgroup_css(struct cgroup *cgrp,
Tejun Heoca8bdca2013-08-26 18:40:56 -0400393 struct cgroup_subsys *ss)
Tejun Heo95109b62013-08-08 20:11:27 -0400394{
Tejun Heoca8bdca2013-08-26 18:40:56 -0400395 if (ss)
Tejun Heoaec25022014-02-08 10:36:58 -0500396 return rcu_dereference_check(cgrp->subsys[ss->id],
Tejun Heoace2bee2014-02-11 11:52:47 -0500397 lockdep_is_held(&cgroup_mutex));
Tejun Heoca8bdca2013-08-26 18:40:56 -0400398 else
Tejun Heo9d800df2014-05-14 09:15:00 -0400399 return &cgrp->self;
Tejun Heo95109b62013-08-08 20:11:27 -0400400}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700401
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400402/**
403 * cgroup_e_css - obtain a cgroup's effective css for the specified subsystem
404 * @cgrp: the cgroup of interest
Tejun Heo9d800df2014-05-14 09:15:00 -0400405 * @ss: the subsystem of interest (%NULL returns @cgrp->self)
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400406 *
Chen Hanxiaod0f702e2015-04-23 07:57:33 -0400407 * Similar to cgroup_css() but returns the effective css, which is defined
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400408 * as the matching css of the nearest ancestor including self which has @ss
409 * enabled. If @ss is associated with the hierarchy @cgrp is on, this
410 * function is guaranteed to return non-NULL css.
411 */
412static struct cgroup_subsys_state *cgroup_e_css(struct cgroup *cgrp,
413 struct cgroup_subsys *ss)
414{
415 lockdep_assert_held(&cgroup_mutex);
416
417 if (!ss)
Tejun Heo9d800df2014-05-14 09:15:00 -0400418 return &cgrp->self;
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400419
Tejun Heoeeecbd12014-11-18 02:49:52 -0500420 /*
421 * This function is used while updating css associations and thus
Tejun Heo5531dc92016-03-03 09:57:58 -0500422 * can't test the csses directly. Test ss_mask.
Tejun Heoeeecbd12014-11-18 02:49:52 -0500423 */
Tejun Heo5531dc92016-03-03 09:57:58 -0500424 while (!(cgroup_ss_mask(cgrp) & (1 << ss->id))) {
Tejun Heod51f39b2014-05-16 13:22:48 -0400425 cgrp = cgroup_parent(cgrp);
Tejun Heo5531dc92016-03-03 09:57:58 -0500426 if (!cgrp)
427 return NULL;
428 }
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400429
430 return cgroup_css(cgrp, ss);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700431}
432
Tejun Heoeeecbd12014-11-18 02:49:52 -0500433/**
434 * cgroup_get_e_css - get a cgroup's effective css for the specified subsystem
435 * @cgrp: the cgroup of interest
436 * @ss: the subsystem of interest
437 *
438 * Find and get the effective css of @cgrp for @ss. The effective css is
439 * defined as the matching css of the nearest ancestor including self which
440 * has @ss enabled. If @ss is not mounted on the hierarchy @cgrp is on,
441 * the root css is returned, so this function always returns a valid css.
442 * The returned css must be put using css_put().
443 */
444struct cgroup_subsys_state *cgroup_get_e_css(struct cgroup *cgrp,
445 struct cgroup_subsys *ss)
446{
447 struct cgroup_subsys_state *css;
448
449 rcu_read_lock();
450
451 do {
452 css = cgroup_css(cgrp, ss);
453
454 if (css && css_tryget_online(css))
455 goto out_unlock;
456 cgrp = cgroup_parent(cgrp);
457 } while (cgrp);
458
459 css = init_css_set.subsys[ss->id];
460 css_get(css);
461out_unlock:
462 rcu_read_unlock();
463 return css;
464}
465
Paul Menageddbcc7e2007-10-18 23:39:30 -0700466/* convenient tests for these bits */
Tejun Heo54766d42013-06-12 21:04:53 -0700467static inline bool cgroup_is_dead(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700468{
Tejun Heo184faf32014-05-16 13:22:51 -0400469 return !(cgrp->self.flags & CSS_ONLINE);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700470}
471
Tejun Heo052c3f32015-10-15 16:41:50 -0400472static void cgroup_get(struct cgroup *cgrp)
473{
474 WARN_ON_ONCE(cgroup_is_dead(cgrp));
475 css_get(&cgrp->self);
476}
477
478static bool cgroup_tryget(struct cgroup *cgrp)
479{
480 return css_tryget(&cgrp->self);
481}
482
Tejun Heob4168642014-05-13 12:16:21 -0400483struct cgroup_subsys_state *of_css(struct kernfs_open_file *of)
Tejun Heo59f52962014-02-11 11:52:49 -0500484{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500485 struct cgroup *cgrp = of->kn->parent->priv;
Tejun Heob4168642014-05-13 12:16:21 -0400486 struct cftype *cft = of_cft(of);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500487
488 /*
489 * This is open and unprotected implementation of cgroup_css().
490 * seq_css() is only called from a kernfs file operation which has
491 * an active reference on the file. Because all the subsystem
492 * files are drained before a css is disassociated with a cgroup,
493 * the matching css from the cgroup's subsys table is guaranteed to
494 * be and stay valid until the enclosing operation is complete.
495 */
496 if (cft->ss)
497 return rcu_dereference_raw(cgrp->subsys[cft->ss->id]);
498 else
Tejun Heo9d800df2014-05-14 09:15:00 -0400499 return &cgrp->self;
Tejun Heo59f52962014-02-11 11:52:49 -0500500}
Tejun Heob4168642014-05-13 12:16:21 -0400501EXPORT_SYMBOL_GPL(of_css);
Tejun Heo59f52962014-02-11 11:52:49 -0500502
Adrian Bunke9685a02008-02-07 00:13:46 -0800503static int notify_on_release(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700504{
Paul Menagebd89aab2007-10-18 23:40:44 -0700505 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700506}
507
Tejun Heo30159ec2013-06-25 11:53:37 -0700508/**
Tejun Heo1c6727a2013-12-06 15:11:56 -0500509 * for_each_css - iterate all css's of a cgroup
510 * @css: the iteration cursor
511 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
512 * @cgrp: the target cgroup to iterate css's of
Tejun Heo30159ec2013-06-25 11:53:37 -0700513 *
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400514 * Should be called under cgroup_[tree_]mutex.
Tejun Heo30159ec2013-06-25 11:53:37 -0700515 */
Tejun Heo1c6727a2013-12-06 15:11:56 -0500516#define for_each_css(css, ssid, cgrp) \
517 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
518 if (!((css) = rcu_dereference_check( \
519 (cgrp)->subsys[(ssid)], \
520 lockdep_is_held(&cgroup_mutex)))) { } \
521 else
522
523/**
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400524 * for_each_e_css - iterate all effective css's of a cgroup
525 * @css: the iteration cursor
526 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
527 * @cgrp: the target cgroup to iterate css's of
528 *
529 * Should be called under cgroup_[tree_]mutex.
530 */
531#define for_each_e_css(css, ssid, cgrp) \
532 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
533 if (!((css) = cgroup_e_css(cgrp, cgroup_subsys[(ssid)]))) \
534 ; \
535 else
536
537/**
Tejun Heo3ed80a62014-02-08 10:36:58 -0500538 * for_each_subsys - iterate all enabled cgroup subsystems
Tejun Heo30159ec2013-06-25 11:53:37 -0700539 * @ss: the iteration cursor
Tejun Heo780cd8b2013-12-06 15:11:56 -0500540 * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end
Tejun Heo30159ec2013-06-25 11:53:37 -0700541 */
Tejun Heo780cd8b2013-12-06 15:11:56 -0500542#define for_each_subsys(ss, ssid) \
Tejun Heo3ed80a62014-02-08 10:36:58 -0500543 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT && \
544 (((ss) = cgroup_subsys[ssid]) || true); (ssid)++)
Tejun Heo30159ec2013-06-25 11:53:37 -0700545
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000546/**
Tejun Heob4e0eea2016-02-22 22:25:46 -0500547 * do_each_subsys_mask - filter for_each_subsys with a bitmask
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000548 * @ss: the iteration cursor
549 * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end
Tejun Heob4e0eea2016-02-22 22:25:46 -0500550 * @ss_mask: the bitmask
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000551 *
552 * The block will only run for cases where the ssid-th bit (1 << ssid) of
Tejun Heob4e0eea2016-02-22 22:25:46 -0500553 * @ss_mask is set.
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000554 */
Tejun Heob4e0eea2016-02-22 22:25:46 -0500555#define do_each_subsys_mask(ss, ssid, ss_mask) do { \
556 unsigned long __ss_mask = (ss_mask); \
557 if (!CGROUP_SUBSYS_COUNT) { /* to avoid spurious gcc warning */ \
Aleksa Sarai4a705c52015-06-09 21:32:07 +1000558 (ssid) = 0; \
Tejun Heob4e0eea2016-02-22 22:25:46 -0500559 break; \
560 } \
561 for_each_set_bit(ssid, &__ss_mask, CGROUP_SUBSYS_COUNT) { \
562 (ss) = cgroup_subsys[ssid]; \
563 {
564
565#define while_each_subsys_mask() \
566 } \
567 } \
568} while (false)
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000569
Tejun Heo985ed672014-03-19 10:23:53 -0400570/* iterate across the hierarchies */
571#define for_each_root(root) \
Tejun Heo5549c492013-06-24 15:21:48 -0700572 list_for_each_entry((root), &cgroup_roots, root_list)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700573
Tejun Heof8f22e52014-04-23 11:13:16 -0400574/* iterate over child cgrps, lock should be held throughout iteration */
575#define cgroup_for_each_live_child(child, cgrp) \
Tejun Heod5c419b2014-05-16 13:22:48 -0400576 list_for_each_entry((child), &(cgrp)->self.children, self.sibling) \
Tejun Heo8353da12014-05-13 12:19:23 -0400577 if (({ lockdep_assert_held(&cgroup_mutex); \
Tejun Heof8f22e52014-04-23 11:13:16 -0400578 cgroup_is_dead(child); })) \
579 ; \
580 else
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700581
Tejun Heoce3f1d92016-03-03 09:57:59 -0500582/* walk live descendants in preorder */
583#define cgroup_for_each_live_descendant_pre(dsct, d_css, cgrp) \
584 css_for_each_descendant_pre((d_css), cgroup_css((cgrp), NULL)) \
585 if (({ lockdep_assert_held(&cgroup_mutex); \
586 (dsct) = (d_css)->cgroup; \
587 cgroup_is_dead(dsct); })) \
588 ; \
589 else
590
591/* walk live descendants in postorder */
592#define cgroup_for_each_live_descendant_post(dsct, d_css, cgrp) \
593 css_for_each_descendant_post((d_css), cgroup_css((cgrp), NULL)) \
594 if (({ lockdep_assert_held(&cgroup_mutex); \
595 (dsct) = (d_css)->cgroup; \
596 cgroup_is_dead(dsct); })) \
597 ; \
598 else
599
Paul Menage81a6a5c2007-10-18 23:39:38 -0700600static void cgroup_release_agent(struct work_struct *work);
Paul Menagebd89aab2007-10-18 23:40:44 -0700601static void check_for_release(struct cgroup *cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700602
Tejun Heo69d02062013-06-12 21:04:50 -0700603/*
604 * A cgroup can be associated with multiple css_sets as different tasks may
605 * belong to different cgroups on different hierarchies. In the other
606 * direction, a css_set is naturally associated with multiple cgroups.
607 * This M:N relationship is represented by the following link structure
608 * which exists for each association and allows traversing the associations
609 * from both sides.
610 */
611struct cgrp_cset_link {
612 /* the cgroup and css_set this link associates */
613 struct cgroup *cgrp;
614 struct css_set *cset;
615
616 /* list of cgrp_cset_links anchored at cgrp->cset_links */
617 struct list_head cset_link;
618
619 /* list of cgrp_cset_links anchored at css_set->cgrp_links */
620 struct list_head cgrp_link;
Paul Menage817929e2007-10-18 23:39:36 -0700621};
622
Tejun Heo172a2c062014-03-19 10:23:53 -0400623/*
624 * The default css_set - used by init and its children prior to any
Paul Menage817929e2007-10-18 23:39:36 -0700625 * hierarchies being mounted. It contains a pointer to the root state
626 * for each subsystem. Also used to anchor the list of css_sets. Not
627 * reference-counted, to improve performance when child cgroups
628 * haven't been created.
629 */
Tejun Heo5024ae22014-05-07 21:31:17 -0400630struct css_set init_css_set = {
Tejun Heo172a2c062014-03-19 10:23:53 -0400631 .refcount = ATOMIC_INIT(1),
632 .cgrp_links = LIST_HEAD_INIT(init_css_set.cgrp_links),
633 .tasks = LIST_HEAD_INIT(init_css_set.tasks),
634 .mg_tasks = LIST_HEAD_INIT(init_css_set.mg_tasks),
635 .mg_preload_node = LIST_HEAD_INIT(init_css_set.mg_preload_node),
636 .mg_node = LIST_HEAD_INIT(init_css_set.mg_node),
Tejun Heoed27b9f2015-10-15 16:41:52 -0400637 .task_iters = LIST_HEAD_INIT(init_css_set.task_iters),
Tejun Heo172a2c062014-03-19 10:23:53 -0400638};
Paul Menage817929e2007-10-18 23:39:36 -0700639
Tejun Heo172a2c062014-03-19 10:23:53 -0400640static int css_set_count = 1; /* 1 for init_css_set */
Paul Menage817929e2007-10-18 23:39:36 -0700641
Tejun Heo842b5972014-04-25 18:28:02 -0400642/**
Tejun Heo0de09422015-10-15 16:41:49 -0400643 * css_set_populated - does a css_set contain any tasks?
644 * @cset: target css_set
645 */
646static bool css_set_populated(struct css_set *cset)
647{
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400648 lockdep_assert_held(&css_set_lock);
Tejun Heo0de09422015-10-15 16:41:49 -0400649
650 return !list_empty(&cset->tasks) || !list_empty(&cset->mg_tasks);
651}
652
653/**
Tejun Heo842b5972014-04-25 18:28:02 -0400654 * cgroup_update_populated - updated populated count of a cgroup
655 * @cgrp: the target cgroup
656 * @populated: inc or dec populated count
657 *
Tejun Heo0de09422015-10-15 16:41:49 -0400658 * One of the css_sets associated with @cgrp is either getting its first
659 * task or losing the last. Update @cgrp->populated_cnt accordingly. The
660 * count is propagated towards root so that a given cgroup's populated_cnt
661 * is zero iff the cgroup and all its descendants don't contain any tasks.
Tejun Heo842b5972014-04-25 18:28:02 -0400662 *
663 * @cgrp's interface file "cgroup.populated" is zero if
664 * @cgrp->populated_cnt is zero and 1 otherwise. When @cgrp->populated_cnt
665 * changes from or to zero, userland is notified that the content of the
666 * interface file has changed. This can be used to detect when @cgrp and
667 * its descendants become populated or empty.
668 */
669static void cgroup_update_populated(struct cgroup *cgrp, bool populated)
670{
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400671 lockdep_assert_held(&css_set_lock);
Tejun Heo842b5972014-04-25 18:28:02 -0400672
673 do {
674 bool trigger;
675
676 if (populated)
677 trigger = !cgrp->populated_cnt++;
678 else
679 trigger = !--cgrp->populated_cnt;
680
681 if (!trigger)
682 break;
683
Tejun Heoad2ed2b2015-10-15 16:41:50 -0400684 check_for_release(cgrp);
Tejun Heo6f60ead2015-09-18 17:54:23 -0400685 cgroup_file_notify(&cgrp->events_file);
686
Tejun Heod51f39b2014-05-16 13:22:48 -0400687 cgrp = cgroup_parent(cgrp);
Tejun Heo842b5972014-04-25 18:28:02 -0400688 } while (cgrp);
689}
690
Tejun Heo0de09422015-10-15 16:41:49 -0400691/**
692 * css_set_update_populated - update populated state of a css_set
693 * @cset: target css_set
694 * @populated: whether @cset is populated or depopulated
695 *
696 * @cset is either getting the first task or losing the last. Update the
697 * ->populated_cnt of all associated cgroups accordingly.
698 */
699static void css_set_update_populated(struct css_set *cset, bool populated)
700{
701 struct cgrp_cset_link *link;
702
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400703 lockdep_assert_held(&css_set_lock);
Tejun Heo0de09422015-10-15 16:41:49 -0400704
705 list_for_each_entry(link, &cset->cgrp_links, cgrp_link)
706 cgroup_update_populated(link->cgrp, populated);
707}
708
Tejun Heof6d7d042015-10-15 16:41:52 -0400709/**
710 * css_set_move_task - move a task from one css_set to another
711 * @task: task being moved
712 * @from_cset: css_set @task currently belongs to (may be NULL)
713 * @to_cset: new css_set @task is being moved to (may be NULL)
714 * @use_mg_tasks: move to @to_cset->mg_tasks instead of ->tasks
715 *
716 * Move @task from @from_cset to @to_cset. If @task didn't belong to any
717 * css_set, @from_cset can be NULL. If @task is being disassociated
718 * instead of moved, @to_cset can be NULL.
719 *
Tejun Heoed27b9f2015-10-15 16:41:52 -0400720 * This function automatically handles populated_cnt updates and
721 * css_task_iter adjustments but the caller is responsible for managing
722 * @from_cset and @to_cset's reference counts.
Tejun Heof6d7d042015-10-15 16:41:52 -0400723 */
724static void css_set_move_task(struct task_struct *task,
725 struct css_set *from_cset, struct css_set *to_cset,
726 bool use_mg_tasks)
727{
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400728 lockdep_assert_held(&css_set_lock);
Tejun Heof6d7d042015-10-15 16:41:52 -0400729
Tejun Heo20b454a2016-03-03 09:57:57 -0500730 if (to_cset && !css_set_populated(to_cset))
731 css_set_update_populated(to_cset, true);
732
Tejun Heof6d7d042015-10-15 16:41:52 -0400733 if (from_cset) {
Tejun Heoed27b9f2015-10-15 16:41:52 -0400734 struct css_task_iter *it, *pos;
735
Tejun Heof6d7d042015-10-15 16:41:52 -0400736 WARN_ON_ONCE(list_empty(&task->cg_list));
Tejun Heoed27b9f2015-10-15 16:41:52 -0400737
738 /*
739 * @task is leaving, advance task iterators which are
740 * pointing to it so that they can resume at the next
741 * position. Advancing an iterator might remove it from
742 * the list, use safe walk. See css_task_iter_advance*()
743 * for details.
744 */
745 list_for_each_entry_safe(it, pos, &from_cset->task_iters,
746 iters_node)
747 if (it->task_pos == &task->cg_list)
748 css_task_iter_advance(it);
749
Tejun Heof6d7d042015-10-15 16:41:52 -0400750 list_del_init(&task->cg_list);
751 if (!css_set_populated(from_cset))
752 css_set_update_populated(from_cset, false);
753 } else {
754 WARN_ON_ONCE(!list_empty(&task->cg_list));
755 }
756
757 if (to_cset) {
758 /*
759 * We are synchronized through cgroup_threadgroup_rwsem
760 * against PF_EXITING setting such that we can't race
761 * against cgroup_exit() changing the css_set to
762 * init_css_set and dropping the old one.
763 */
764 WARN_ON_ONCE(task->flags & PF_EXITING);
765
Tejun Heof6d7d042015-10-15 16:41:52 -0400766 rcu_assign_pointer(task->cgroups, to_cset);
767 list_add_tail(&task->cg_list, use_mg_tasks ? &to_cset->mg_tasks :
768 &to_cset->tasks);
769 }
770}
771
Paul Menage7717f7b2009-09-23 15:56:22 -0700772/*
773 * hash table for cgroup groups. This improves the performance to find
774 * an existing css_set. This hash doesn't (currently) take into
775 * account cgroups in empty hierarchies.
776 */
Li Zefan472b1052008-04-29 01:00:11 -0700777#define CSS_SET_HASH_BITS 7
Li Zefan0ac801f2013-01-10 11:49:27 +0800778static DEFINE_HASHTABLE(css_set_table, CSS_SET_HASH_BITS);
Li Zefan472b1052008-04-29 01:00:11 -0700779
Li Zefan0ac801f2013-01-10 11:49:27 +0800780static unsigned long css_set_hash(struct cgroup_subsys_state *css[])
Li Zefan472b1052008-04-29 01:00:11 -0700781{
Li Zefan0ac801f2013-01-10 11:49:27 +0800782 unsigned long key = 0UL;
Tejun Heo30159ec2013-06-25 11:53:37 -0700783 struct cgroup_subsys *ss;
784 int i;
Li Zefan472b1052008-04-29 01:00:11 -0700785
Tejun Heo30159ec2013-06-25 11:53:37 -0700786 for_each_subsys(ss, i)
Li Zefan0ac801f2013-01-10 11:49:27 +0800787 key += (unsigned long)css[i];
788 key = (key >> 16) ^ key;
Li Zefan472b1052008-04-29 01:00:11 -0700789
Li Zefan0ac801f2013-01-10 11:49:27 +0800790 return key;
Li Zefan472b1052008-04-29 01:00:11 -0700791}
792
Zefan Lia25eb522014-09-19 16:51:00 +0800793static void put_css_set_locked(struct css_set *cset)
Paul Menageb4f48b62007-10-18 23:39:33 -0700794{
Tejun Heo69d02062013-06-12 21:04:50 -0700795 struct cgrp_cset_link *link, *tmp_link;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400796 struct cgroup_subsys *ss;
797 int ssid;
Tejun Heo5abb8852013-06-12 21:04:49 -0700798
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400799 lockdep_assert_held(&css_set_lock);
Tejun Heo89c55092014-02-13 06:58:40 -0500800
801 if (!atomic_dec_and_test(&cset->refcount))
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700802 return;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700803
Tejun Heo53254f92015-11-23 14:55:41 -0500804 /* This css_set is dead. unlink it and release cgroup and css refs */
805 for_each_subsys(ss, ssid) {
Tejun Heo2d8f2432014-04-23 11:13:15 -0400806 list_del(&cset->e_cset_node[ssid]);
Tejun Heo53254f92015-11-23 14:55:41 -0500807 css_put(cset->subsys[ssid]);
808 }
Tejun Heo5abb8852013-06-12 21:04:49 -0700809 hash_del(&cset->hlist);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700810 css_set_count--;
811
Tejun Heo69d02062013-06-12 21:04:50 -0700812 list_for_each_entry_safe(link, tmp_link, &cset->cgrp_links, cgrp_link) {
Tejun Heo69d02062013-06-12 21:04:50 -0700813 list_del(&link->cset_link);
814 list_del(&link->cgrp_link);
Tejun Heo2ceb2312015-10-15 16:41:51 -0400815 if (cgroup_parent(link->cgrp))
816 cgroup_put(link->cgrp);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700817 kfree(link);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700818 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700819
Tejun Heo5abb8852013-06-12 21:04:49 -0700820 kfree_rcu(cset, rcu_head);
Paul Menage817929e2007-10-18 23:39:36 -0700821}
822
Zefan Lia25eb522014-09-19 16:51:00 +0800823static void put_css_set(struct css_set *cset)
Tejun Heo89c55092014-02-13 06:58:40 -0500824{
825 /*
826 * Ensure that the refcount doesn't hit zero while any readers
827 * can see it. Similar to atomic_dec_and_lock(), but for an
828 * rwlock
829 */
830 if (atomic_add_unless(&cset->refcount, -1, 1))
831 return;
832
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400833 spin_lock_bh(&css_set_lock);
Zefan Lia25eb522014-09-19 16:51:00 +0800834 put_css_set_locked(cset);
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400835 spin_unlock_bh(&css_set_lock);
Tejun Heo89c55092014-02-13 06:58:40 -0500836}
837
Paul Menage817929e2007-10-18 23:39:36 -0700838/*
839 * refcounted get/put for css_set objects
840 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700841static inline void get_css_set(struct css_set *cset)
Paul Menage817929e2007-10-18 23:39:36 -0700842{
Tejun Heo5abb8852013-06-12 21:04:49 -0700843 atomic_inc(&cset->refcount);
Paul Menage817929e2007-10-18 23:39:36 -0700844}
845
Tejun Heob326f9d2013-06-24 15:21:48 -0700846/**
Paul Menage7717f7b2009-09-23 15:56:22 -0700847 * compare_css_sets - helper function for find_existing_css_set().
Tejun Heo5abb8852013-06-12 21:04:49 -0700848 * @cset: candidate css_set being tested
849 * @old_cset: existing css_set for a task
Paul Menage7717f7b2009-09-23 15:56:22 -0700850 * @new_cgrp: cgroup that's being entered by the task
851 * @template: desired set of css pointers in css_set (pre-calculated)
852 *
Li Zefan6f4b7e62013-07-31 16:18:36 +0800853 * Returns true if "cset" matches "old_cset" except for the hierarchy
Paul Menage7717f7b2009-09-23 15:56:22 -0700854 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
855 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700856static bool compare_css_sets(struct css_set *cset,
857 struct css_set *old_cset,
Paul Menage7717f7b2009-09-23 15:56:22 -0700858 struct cgroup *new_cgrp,
859 struct cgroup_subsys_state *template[])
860{
861 struct list_head *l1, *l2;
862
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400863 /*
864 * On the default hierarchy, there can be csets which are
865 * associated with the same set of cgroups but different csses.
866 * Let's first ensure that csses match.
867 */
868 if (memcmp(template, cset->subsys, sizeof(cset->subsys)))
Paul Menage7717f7b2009-09-23 15:56:22 -0700869 return false;
Paul Menage7717f7b2009-09-23 15:56:22 -0700870
871 /*
872 * Compare cgroup pointers in order to distinguish between
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400873 * different cgroups in hierarchies. As different cgroups may
874 * share the same effective css, this comparison is always
875 * necessary.
Paul Menage7717f7b2009-09-23 15:56:22 -0700876 */
Tejun Heo69d02062013-06-12 21:04:50 -0700877 l1 = &cset->cgrp_links;
878 l2 = &old_cset->cgrp_links;
Paul Menage7717f7b2009-09-23 15:56:22 -0700879 while (1) {
Tejun Heo69d02062013-06-12 21:04:50 -0700880 struct cgrp_cset_link *link1, *link2;
Tejun Heo5abb8852013-06-12 21:04:49 -0700881 struct cgroup *cgrp1, *cgrp2;
Paul Menage7717f7b2009-09-23 15:56:22 -0700882
883 l1 = l1->next;
884 l2 = l2->next;
885 /* See if we reached the end - both lists are equal length. */
Tejun Heo69d02062013-06-12 21:04:50 -0700886 if (l1 == &cset->cgrp_links) {
887 BUG_ON(l2 != &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700888 break;
889 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700890 BUG_ON(l2 == &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700891 }
892 /* Locate the cgroups associated with these links. */
Tejun Heo69d02062013-06-12 21:04:50 -0700893 link1 = list_entry(l1, struct cgrp_cset_link, cgrp_link);
894 link2 = list_entry(l2, struct cgrp_cset_link, cgrp_link);
895 cgrp1 = link1->cgrp;
896 cgrp2 = link2->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700897 /* Hierarchies should be linked in the same order. */
Tejun Heo5abb8852013-06-12 21:04:49 -0700898 BUG_ON(cgrp1->root != cgrp2->root);
Paul Menage7717f7b2009-09-23 15:56:22 -0700899
900 /*
901 * If this hierarchy is the hierarchy of the cgroup
902 * that's changing, then we need to check that this
903 * css_set points to the new cgroup; if it's any other
904 * hierarchy, then this css_set should point to the
905 * same cgroup as the old css_set.
906 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700907 if (cgrp1->root == new_cgrp->root) {
908 if (cgrp1 != new_cgrp)
Paul Menage7717f7b2009-09-23 15:56:22 -0700909 return false;
910 } else {
Tejun Heo5abb8852013-06-12 21:04:49 -0700911 if (cgrp1 != cgrp2)
Paul Menage7717f7b2009-09-23 15:56:22 -0700912 return false;
913 }
914 }
915 return true;
916}
917
Tejun Heob326f9d2013-06-24 15:21:48 -0700918/**
919 * find_existing_css_set - init css array and find the matching css_set
920 * @old_cset: the css_set that we're using before the cgroup transition
921 * @cgrp: the cgroup that we're moving into
922 * @template: out param for the new set of csses, should be clear on entry
Paul Menage817929e2007-10-18 23:39:36 -0700923 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700924static struct css_set *find_existing_css_set(struct css_set *old_cset,
925 struct cgroup *cgrp,
926 struct cgroup_subsys_state *template[])
Paul Menage817929e2007-10-18 23:39:36 -0700927{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400928 struct cgroup_root *root = cgrp->root;
Tejun Heo30159ec2013-06-25 11:53:37 -0700929 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -0700930 struct css_set *cset;
Li Zefan0ac801f2013-01-10 11:49:27 +0800931 unsigned long key;
Tejun Heob326f9d2013-06-24 15:21:48 -0700932 int i;
Paul Menage817929e2007-10-18 23:39:36 -0700933
Ben Blumaae8aab2010-03-10 15:22:07 -0800934 /*
935 * Build the set of subsystem state objects that we want to see in the
936 * new css_set. while subsystems can change globally, the entries here
937 * won't change, so no need for locking.
938 */
Tejun Heo30159ec2013-06-25 11:53:37 -0700939 for_each_subsys(ss, i) {
Tejun Heof392e512014-04-23 11:13:14 -0400940 if (root->subsys_mask & (1UL << i)) {
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400941 /*
942 * @ss is in this hierarchy, so we want the
943 * effective css from @cgrp.
944 */
945 template[i] = cgroup_e_css(cgrp, ss);
Paul Menage817929e2007-10-18 23:39:36 -0700946 } else {
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400947 /*
948 * @ss is not in this hierarchy, so we don't want
949 * to change the css.
950 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700951 template[i] = old_cset->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700952 }
953 }
954
Li Zefan0ac801f2013-01-10 11:49:27 +0800955 key = css_set_hash(template);
Tejun Heo5abb8852013-06-12 21:04:49 -0700956 hash_for_each_possible(css_set_table, cset, hlist, key) {
957 if (!compare_css_sets(cset, old_cset, cgrp, template))
Paul Menage7717f7b2009-09-23 15:56:22 -0700958 continue;
959
960 /* This css_set matches what we need */
Tejun Heo5abb8852013-06-12 21:04:49 -0700961 return cset;
Li Zefan472b1052008-04-29 01:00:11 -0700962 }
Paul Menage817929e2007-10-18 23:39:36 -0700963
964 /* No existing cgroup group matched */
965 return NULL;
966}
967
Tejun Heo69d02062013-06-12 21:04:50 -0700968static void free_cgrp_cset_links(struct list_head *links_to_free)
Paul Menage817929e2007-10-18 23:39:36 -0700969{
Tejun Heo69d02062013-06-12 21:04:50 -0700970 struct cgrp_cset_link *link, *tmp_link;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700971
Tejun Heo69d02062013-06-12 21:04:50 -0700972 list_for_each_entry_safe(link, tmp_link, links_to_free, cset_link) {
973 list_del(&link->cset_link);
Paul Menage817929e2007-10-18 23:39:36 -0700974 kfree(link);
975 }
976}
977
Tejun Heo69d02062013-06-12 21:04:50 -0700978/**
979 * allocate_cgrp_cset_links - allocate cgrp_cset_links
980 * @count: the number of links to allocate
981 * @tmp_links: list_head the allocated links are put on
982 *
983 * Allocate @count cgrp_cset_link structures and chain them on @tmp_links
984 * through ->cset_link. Returns 0 on success or -errno.
Li Zefan36553432008-07-29 22:33:19 -0700985 */
Tejun Heo69d02062013-06-12 21:04:50 -0700986static int allocate_cgrp_cset_links(int count, struct list_head *tmp_links)
Li Zefan36553432008-07-29 22:33:19 -0700987{
Tejun Heo69d02062013-06-12 21:04:50 -0700988 struct cgrp_cset_link *link;
Li Zefan36553432008-07-29 22:33:19 -0700989 int i;
Tejun Heo69d02062013-06-12 21:04:50 -0700990
991 INIT_LIST_HEAD(tmp_links);
992
Li Zefan36553432008-07-29 22:33:19 -0700993 for (i = 0; i < count; i++) {
Tejun Heof4f4be22013-06-12 21:04:51 -0700994 link = kzalloc(sizeof(*link), GFP_KERNEL);
Li Zefan36553432008-07-29 22:33:19 -0700995 if (!link) {
Tejun Heo69d02062013-06-12 21:04:50 -0700996 free_cgrp_cset_links(tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700997 return -ENOMEM;
998 }
Tejun Heo69d02062013-06-12 21:04:50 -0700999 list_add(&link->cset_link, tmp_links);
Li Zefan36553432008-07-29 22:33:19 -07001000 }
1001 return 0;
1002}
1003
Li Zefanc12f65d2009-01-07 18:07:42 -08001004/**
1005 * link_css_set - a helper function to link a css_set to a cgroup
Tejun Heo69d02062013-06-12 21:04:50 -07001006 * @tmp_links: cgrp_cset_link objects allocated by allocate_cgrp_cset_links()
Tejun Heo5abb8852013-06-12 21:04:49 -07001007 * @cset: the css_set to be linked
Li Zefanc12f65d2009-01-07 18:07:42 -08001008 * @cgrp: the destination cgroup
1009 */
Tejun Heo69d02062013-06-12 21:04:50 -07001010static void link_css_set(struct list_head *tmp_links, struct css_set *cset,
1011 struct cgroup *cgrp)
Li Zefanc12f65d2009-01-07 18:07:42 -08001012{
Tejun Heo69d02062013-06-12 21:04:50 -07001013 struct cgrp_cset_link *link;
Li Zefanc12f65d2009-01-07 18:07:42 -08001014
Tejun Heo69d02062013-06-12 21:04:50 -07001015 BUG_ON(list_empty(tmp_links));
Tejun Heo6803c002014-04-23 11:13:16 -04001016
1017 if (cgroup_on_dfl(cgrp))
1018 cset->dfl_cgrp = cgrp;
1019
Tejun Heo69d02062013-06-12 21:04:50 -07001020 link = list_first_entry(tmp_links, struct cgrp_cset_link, cset_link);
1021 link->cset = cset;
Paul Menage7717f7b2009-09-23 15:56:22 -07001022 link->cgrp = cgrp;
Tejun Heo842b5972014-04-25 18:28:02 -04001023
Paul Menage7717f7b2009-09-23 15:56:22 -07001024 /*
Tejun Heo389b9c12015-10-15 16:41:51 -04001025 * Always add links to the tail of the lists so that the lists are
1026 * in choronological order.
Paul Menage7717f7b2009-09-23 15:56:22 -07001027 */
Tejun Heo389b9c12015-10-15 16:41:51 -04001028 list_move_tail(&link->cset_link, &cgrp->cset_links);
Tejun Heo69d02062013-06-12 21:04:50 -07001029 list_add_tail(&link->cgrp_link, &cset->cgrp_links);
Tejun Heo2ceb2312015-10-15 16:41:51 -04001030
1031 if (cgroup_parent(cgrp))
1032 cgroup_get(cgrp);
Li Zefanc12f65d2009-01-07 18:07:42 -08001033}
1034
Tejun Heob326f9d2013-06-24 15:21:48 -07001035/**
1036 * find_css_set - return a new css_set with one cgroup updated
1037 * @old_cset: the baseline css_set
1038 * @cgrp: the cgroup to be updated
1039 *
1040 * Return a new css_set that's equivalent to @old_cset, but with @cgrp
1041 * substituted into the appropriate hierarchy.
Paul Menage817929e2007-10-18 23:39:36 -07001042 */
Tejun Heo5abb8852013-06-12 21:04:49 -07001043static struct css_set *find_css_set(struct css_set *old_cset,
1044 struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -07001045{
Tejun Heob326f9d2013-06-24 15:21:48 -07001046 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT] = { };
Tejun Heo5abb8852013-06-12 21:04:49 -07001047 struct css_set *cset;
Tejun Heo69d02062013-06-12 21:04:50 -07001048 struct list_head tmp_links;
1049 struct cgrp_cset_link *link;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001050 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +08001051 unsigned long key;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001052 int ssid;
Li Zefan472b1052008-04-29 01:00:11 -07001053
Tejun Heob326f9d2013-06-24 15:21:48 -07001054 lockdep_assert_held(&cgroup_mutex);
1055
Paul Menage817929e2007-10-18 23:39:36 -07001056 /* First see if we already have a cgroup group that matches
1057 * the desired set */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001058 spin_lock_bh(&css_set_lock);
Tejun Heo5abb8852013-06-12 21:04:49 -07001059 cset = find_existing_css_set(old_cset, cgrp, template);
1060 if (cset)
1061 get_css_set(cset);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001062 spin_unlock_bh(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -07001063
Tejun Heo5abb8852013-06-12 21:04:49 -07001064 if (cset)
1065 return cset;
Paul Menage817929e2007-10-18 23:39:36 -07001066
Tejun Heof4f4be22013-06-12 21:04:51 -07001067 cset = kzalloc(sizeof(*cset), GFP_KERNEL);
Tejun Heo5abb8852013-06-12 21:04:49 -07001068 if (!cset)
Paul Menage817929e2007-10-18 23:39:36 -07001069 return NULL;
1070
Tejun Heo69d02062013-06-12 21:04:50 -07001071 /* Allocate all the cgrp_cset_link objects that we'll need */
Tejun Heo9871bf92013-06-24 15:21:47 -07001072 if (allocate_cgrp_cset_links(cgroup_root_count, &tmp_links) < 0) {
Tejun Heo5abb8852013-06-12 21:04:49 -07001073 kfree(cset);
Paul Menage817929e2007-10-18 23:39:36 -07001074 return NULL;
1075 }
1076
Tejun Heo5abb8852013-06-12 21:04:49 -07001077 atomic_set(&cset->refcount, 1);
Tejun Heo69d02062013-06-12 21:04:50 -07001078 INIT_LIST_HEAD(&cset->cgrp_links);
Tejun Heo5abb8852013-06-12 21:04:49 -07001079 INIT_LIST_HEAD(&cset->tasks);
Tejun Heoc7561122014-02-25 10:04:01 -05001080 INIT_LIST_HEAD(&cset->mg_tasks);
Tejun Heo1958d2d2014-02-25 10:04:03 -05001081 INIT_LIST_HEAD(&cset->mg_preload_node);
Tejun Heob3dc0942014-02-25 10:04:01 -05001082 INIT_LIST_HEAD(&cset->mg_node);
Tejun Heoed27b9f2015-10-15 16:41:52 -04001083 INIT_LIST_HEAD(&cset->task_iters);
Tejun Heo5abb8852013-06-12 21:04:49 -07001084 INIT_HLIST_NODE(&cset->hlist);
Paul Menage817929e2007-10-18 23:39:36 -07001085
1086 /* Copy the set of subsystem state objects generated in
1087 * find_existing_css_set() */
Tejun Heo5abb8852013-06-12 21:04:49 -07001088 memcpy(cset->subsys, template, sizeof(cset->subsys));
Paul Menage817929e2007-10-18 23:39:36 -07001089
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001090 spin_lock_bh(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -07001091 /* Add reference counts and links from the new css_set. */
Tejun Heo69d02062013-06-12 21:04:50 -07001092 list_for_each_entry(link, &old_cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07001093 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -07001094
Paul Menage7717f7b2009-09-23 15:56:22 -07001095 if (c->root == cgrp->root)
1096 c = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -07001097 link_css_set(&tmp_links, cset, c);
Paul Menage7717f7b2009-09-23 15:56:22 -07001098 }
Paul Menage817929e2007-10-18 23:39:36 -07001099
Tejun Heo69d02062013-06-12 21:04:50 -07001100 BUG_ON(!list_empty(&tmp_links));
Paul Menage817929e2007-10-18 23:39:36 -07001101
Paul Menage817929e2007-10-18 23:39:36 -07001102 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -07001103
Tejun Heo2d8f2432014-04-23 11:13:15 -04001104 /* Add @cset to the hash table */
Tejun Heo5abb8852013-06-12 21:04:49 -07001105 key = css_set_hash(cset->subsys);
1106 hash_add(css_set_table, &cset->hlist, key);
Li Zefan472b1052008-04-29 01:00:11 -07001107
Tejun Heo53254f92015-11-23 14:55:41 -05001108 for_each_subsys(ss, ssid) {
1109 struct cgroup_subsys_state *css = cset->subsys[ssid];
1110
Tejun Heo2d8f2432014-04-23 11:13:15 -04001111 list_add_tail(&cset->e_cset_node[ssid],
Tejun Heo53254f92015-11-23 14:55:41 -05001112 &css->cgroup->e_csets[ssid]);
1113 css_get(css);
1114 }
Tejun Heo2d8f2432014-04-23 11:13:15 -04001115
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001116 spin_unlock_bh(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -07001117
Tejun Heo5abb8852013-06-12 21:04:49 -07001118 return cset;
Paul Menageb4f48b62007-10-18 23:39:33 -07001119}
1120
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001121static struct cgroup_root *cgroup_root_from_kf(struct kernfs_root *kf_root)
Paul Menage7717f7b2009-09-23 15:56:22 -07001122{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001123 struct cgroup *root_cgrp = kf_root->kn->priv;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001124
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001125 return root_cgrp->root;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001126}
1127
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001128static int cgroup_init_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -05001129{
1130 int id;
1131
1132 lockdep_assert_held(&cgroup_mutex);
1133
Tejun Heo985ed672014-03-19 10:23:53 -04001134 id = idr_alloc_cyclic(&cgroup_hierarchy_idr, root, 0, 0, GFP_KERNEL);
Tejun Heof2e85d52014-02-11 11:52:49 -05001135 if (id < 0)
1136 return id;
1137
1138 root->hierarchy_id = id;
1139 return 0;
1140}
1141
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001142static void cgroup_exit_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -05001143{
1144 lockdep_assert_held(&cgroup_mutex);
1145
1146 if (root->hierarchy_id) {
1147 idr_remove(&cgroup_hierarchy_idr, root->hierarchy_id);
1148 root->hierarchy_id = 0;
1149 }
1150}
1151
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001152static void cgroup_free_root(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -05001153{
1154 if (root) {
Chen Hanxiaod0f702e2015-04-23 07:57:33 -04001155 /* hierarchy ID should already have been released */
Tejun Heof2e85d52014-02-11 11:52:49 -05001156 WARN_ON_ONCE(root->hierarchy_id);
1157
1158 idr_destroy(&root->cgroup_idr);
1159 kfree(root);
1160 }
1161}
1162
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001163static void cgroup_destroy_root(struct cgroup_root *root)
Tejun Heo59f52962014-02-11 11:52:49 -05001164{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001165 struct cgroup *cgrp = &root->cgrp;
Tejun Heof2e85d52014-02-11 11:52:49 -05001166 struct cgrp_cset_link *link, *tmp_link;
Tejun Heof2e85d52014-02-11 11:52:49 -05001167
Tejun Heo334c3672016-03-03 09:58:01 -05001168 cgroup_lock_and_drain_offline(&cgrp_dfl_root.cgrp);
Tejun Heof2e85d52014-02-11 11:52:49 -05001169
Tejun Heo776f02f2014-02-12 09:29:50 -05001170 BUG_ON(atomic_read(&root->nr_cgrps));
Tejun Heod5c419b2014-05-16 13:22:48 -04001171 BUG_ON(!list_empty(&cgrp->self.children));
Tejun Heof2e85d52014-02-11 11:52:49 -05001172
Tejun Heof2e85d52014-02-11 11:52:49 -05001173 /* Rebind all subsystems back to the default hierarchy */
Tejun Heo334c3672016-03-03 09:58:01 -05001174 WARN_ON(rebind_subsystems(&cgrp_dfl_root, root->subsys_mask));
Tejun Heof2e85d52014-02-11 11:52:49 -05001175
1176 /*
1177 * Release all the links from cset_links to this hierarchy's
1178 * root cgroup
1179 */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001180 spin_lock_bh(&css_set_lock);
Tejun Heof2e85d52014-02-11 11:52:49 -05001181
1182 list_for_each_entry_safe(link, tmp_link, &cgrp->cset_links, cset_link) {
1183 list_del(&link->cset_link);
1184 list_del(&link->cgrp_link);
1185 kfree(link);
1186 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001187
1188 spin_unlock_bh(&css_set_lock);
Tejun Heof2e85d52014-02-11 11:52:49 -05001189
1190 if (!list_empty(&root->root_list)) {
1191 list_del(&root->root_list);
1192 cgroup_root_count--;
1193 }
1194
1195 cgroup_exit_root_id(root);
1196
1197 mutex_unlock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -05001198
Tejun Heo2bd59d42014-02-11 11:52:49 -05001199 kernfs_destroy_root(root->kf_root);
Tejun Heof2e85d52014-02-11 11:52:49 -05001200 cgroup_free_root(root);
1201}
1202
Tejun Heoceb6a082014-02-25 10:04:02 -05001203/* look up cgroup associated with given css_set on the specified hierarchy */
1204static struct cgroup *cset_cgroup_from_root(struct css_set *cset,
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001205 struct cgroup_root *root)
Paul Menage7717f7b2009-09-23 15:56:22 -07001206{
Paul Menage7717f7b2009-09-23 15:56:22 -07001207 struct cgroup *res = NULL;
1208
Tejun Heo96d365e2014-02-13 06:58:40 -05001209 lockdep_assert_held(&cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001210 lockdep_assert_held(&css_set_lock);
Tejun Heo96d365e2014-02-13 06:58:40 -05001211
Tejun Heo5abb8852013-06-12 21:04:49 -07001212 if (cset == &init_css_set) {
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001213 res = &root->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -07001214 } else {
Tejun Heo69d02062013-06-12 21:04:50 -07001215 struct cgrp_cset_link *link;
1216
1217 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07001218 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -07001219
Paul Menage7717f7b2009-09-23 15:56:22 -07001220 if (c->root == root) {
1221 res = c;
1222 break;
1223 }
1224 }
1225 }
Tejun Heo96d365e2014-02-13 06:58:40 -05001226
Paul Menage7717f7b2009-09-23 15:56:22 -07001227 BUG_ON(!res);
1228 return res;
1229}
1230
1231/*
Tejun Heoceb6a082014-02-25 10:04:02 -05001232 * Return the cgroup for "task" from the given hierarchy. Must be
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001233 * called with cgroup_mutex and css_set_lock held.
Tejun Heoceb6a082014-02-25 10:04:02 -05001234 */
1235static struct cgroup *task_cgroup_from_root(struct task_struct *task,
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001236 struct cgroup_root *root)
Tejun Heoceb6a082014-02-25 10:04:02 -05001237{
1238 /*
1239 * No need to lock the task - since we hold cgroup_mutex the
1240 * task can't change groups, so the only thing that can happen
1241 * is that it exits and its css is set back to init_css_set.
1242 */
1243 return cset_cgroup_from_root(task_css_set(task), root);
1244}
1245
1246/*
Paul Menageddbcc7e2007-10-18 23:39:30 -07001247 * A task must hold cgroup_mutex to modify cgroups.
1248 *
1249 * Any task can increment and decrement the count field without lock.
1250 * So in general, code holding cgroup_mutex can't rely on the count
1251 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -08001252 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -07001253 * means that no tasks are currently attached, therefore there is no
1254 * way a task attached to that cgroup can fork (the other way to
1255 * increment the count). So code holding cgroup_mutex can safely
1256 * assume that if the count is zero, it will stay zero. Similarly, if
1257 * a task holds cgroup_mutex on a cgroup with zero count, it
1258 * knows that the cgroup won't be removed, as cgroup_rmdir()
1259 * needs that mutex.
1260 *
Paul Menageddbcc7e2007-10-18 23:39:30 -07001261 * A cgroup can only be deleted if both its 'count' of using tasks
1262 * is zero, and its list of 'children' cgroups is empty. Since all
1263 * tasks in the system use _some_ cgroup, and since there is always at
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001264 * least one task in the system (init, pid == 1), therefore, root cgroup
Paul Menageddbcc7e2007-10-18 23:39:30 -07001265 * always has either children cgroups and/or using tasks. So we don't
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001266 * need a special hack to ensure that root cgroup cannot be deleted.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001267 *
1268 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -08001269 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -07001270 */
1271
Tejun Heo2bd59d42014-02-11 11:52:49 -05001272static struct kernfs_syscall_ops cgroup_kf_syscall_ops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001273static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -07001274
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05001275static char *cgroup_file_name(struct cgroup *cgrp, const struct cftype *cft,
1276 char *buf)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001277{
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07001278 struct cgroup_subsys *ss = cft->ss;
1279
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05001280 if (cft->ss && !(cft->flags & CFTYPE_NO_PREFIX) &&
1281 !(cgrp->root->flags & CGRP_ROOT_NOPREFIX))
1282 snprintf(buf, CGROUP_FILE_NAME_MAX, "%s.%s",
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07001283 cgroup_on_dfl(cgrp) ? ss->name : ss->legacy_name,
1284 cft->name);
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05001285 else
1286 strncpy(buf, cft->name, CGROUP_FILE_NAME_MAX);
1287 return buf;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001288}
1289
Tejun Heof2e85d52014-02-11 11:52:49 -05001290/**
1291 * cgroup_file_mode - deduce file mode of a control file
1292 * @cft: the control file in question
1293 *
Tejun Heo7dbdb192015-09-18 17:54:23 -04001294 * S_IRUGO for read, S_IWUSR for write.
Tejun Heof2e85d52014-02-11 11:52:49 -05001295 */
1296static umode_t cgroup_file_mode(const struct cftype *cft)
Li Zefan65dff752013-03-01 15:01:56 +08001297{
Tejun Heof2e85d52014-02-11 11:52:49 -05001298 umode_t mode = 0;
Li Zefan65dff752013-03-01 15:01:56 +08001299
Tejun Heof2e85d52014-02-11 11:52:49 -05001300 if (cft->read_u64 || cft->read_s64 || cft->seq_show)
1301 mode |= S_IRUGO;
1302
Tejun Heo7dbdb192015-09-18 17:54:23 -04001303 if (cft->write_u64 || cft->write_s64 || cft->write) {
1304 if (cft->flags & CFTYPE_WORLD_WRITABLE)
1305 mode |= S_IWUGO;
1306 else
1307 mode |= S_IWUSR;
1308 }
Tejun Heof2e85d52014-02-11 11:52:49 -05001309
1310 return mode;
Li Zefan65dff752013-03-01 15:01:56 +08001311}
1312
Tejun Heoa9746d82014-05-13 12:19:22 -04001313/**
Tejun Heo8699b772016-02-22 22:25:46 -05001314 * cgroup_calc_subtree_ss_mask - calculate subtree_ss_mask
Tejun Heo0f060de2014-11-18 02:49:50 -05001315 * @subtree_control: the new subtree_control mask to consider
Tejun Heo5ced2512016-03-03 09:58:01 -05001316 * @this_ss_mask: available subsystems
Tejun Heoaf0ba672014-07-08 18:02:57 -04001317 *
1318 * On the default hierarchy, a subsystem may request other subsystems to be
1319 * enabled together through its ->depends_on mask. In such cases, more
1320 * subsystems than specified in "cgroup.subtree_control" may be enabled.
1321 *
Tejun Heo0f060de2014-11-18 02:49:50 -05001322 * This function calculates which subsystems need to be enabled if
Tejun Heo5ced2512016-03-03 09:58:01 -05001323 * @subtree_control is to be applied while restricted to @this_ss_mask.
Tejun Heoaf0ba672014-07-08 18:02:57 -04001324 */
Tejun Heo5ced2512016-03-03 09:58:01 -05001325static u16 cgroup_calc_subtree_ss_mask(u16 subtree_control, u16 this_ss_mask)
Tejun Heo667c2492014-07-08 18:02:56 -04001326{
Tejun Heo6e5c8302016-02-22 22:25:47 -05001327 u16 cur_ss_mask = subtree_control;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001328 struct cgroup_subsys *ss;
1329 int ssid;
1330
1331 lockdep_assert_held(&cgroup_mutex);
1332
Tejun Heof6d635ad2016-03-08 11:51:26 -05001333 cur_ss_mask |= cgrp_dfl_implicit_ss_mask;
1334
Tejun Heoaf0ba672014-07-08 18:02:57 -04001335 while (true) {
Tejun Heo6e5c8302016-02-22 22:25:47 -05001336 u16 new_ss_mask = cur_ss_mask;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001337
Tejun Heob4e0eea2016-02-22 22:25:46 -05001338 do_each_subsys_mask(ss, ssid, cur_ss_mask) {
Aleksa Saraia966a4e2015-06-06 10:02:15 +10001339 new_ss_mask |= ss->depends_on;
Tejun Heob4e0eea2016-02-22 22:25:46 -05001340 } while_each_subsys_mask();
Tejun Heoaf0ba672014-07-08 18:02:57 -04001341
1342 /*
1343 * Mask out subsystems which aren't available. This can
1344 * happen only if some depended-upon subsystems were bound
1345 * to non-default hierarchies.
1346 */
Tejun Heo5ced2512016-03-03 09:58:01 -05001347 new_ss_mask &= this_ss_mask;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001348
1349 if (new_ss_mask == cur_ss_mask)
1350 break;
1351 cur_ss_mask = new_ss_mask;
1352 }
1353
Tejun Heo0f060de2014-11-18 02:49:50 -05001354 return cur_ss_mask;
1355}
1356
1357/**
Tejun Heoa9746d82014-05-13 12:19:22 -04001358 * cgroup_kn_unlock - unlocking helper for cgroup kernfs methods
1359 * @kn: the kernfs_node being serviced
1360 *
1361 * This helper undoes cgroup_kn_lock_live() and should be invoked before
1362 * the method finishes if locking succeeded. Note that once this function
1363 * returns the cgroup returned by cgroup_kn_lock_live() may become
1364 * inaccessible any time. If the caller intends to continue to access the
1365 * cgroup, it should pin it before invoking this function.
1366 */
1367static void cgroup_kn_unlock(struct kernfs_node *kn)
1368{
1369 struct cgroup *cgrp;
1370
1371 if (kernfs_type(kn) == KERNFS_DIR)
1372 cgrp = kn->priv;
1373 else
1374 cgrp = kn->parent->priv;
1375
1376 mutex_unlock(&cgroup_mutex);
Tejun Heoa9746d82014-05-13 12:19:22 -04001377
1378 kernfs_unbreak_active_protection(kn);
1379 cgroup_put(cgrp);
1380}
1381
1382/**
1383 * cgroup_kn_lock_live - locking helper for cgroup kernfs methods
1384 * @kn: the kernfs_node being serviced
Tejun Heo945ba192016-03-03 09:58:00 -05001385 * @drain_offline: perform offline draining on the cgroup
Tejun Heoa9746d82014-05-13 12:19:22 -04001386 *
1387 * This helper is to be used by a cgroup kernfs method currently servicing
1388 * @kn. It breaks the active protection, performs cgroup locking and
1389 * verifies that the associated cgroup is alive. Returns the cgroup if
1390 * alive; otherwise, %NULL. A successful return should be undone by a
Tejun Heo945ba192016-03-03 09:58:00 -05001391 * matching cgroup_kn_unlock() invocation. If @drain_offline is %true, the
1392 * cgroup is drained of offlining csses before return.
Tejun Heoa9746d82014-05-13 12:19:22 -04001393 *
1394 * Any cgroup kernfs method implementation which requires locking the
1395 * associated cgroup should use this helper. It avoids nesting cgroup
1396 * locking under kernfs active protection and allows all kernfs operations
1397 * including self-removal.
1398 */
Tejun Heo945ba192016-03-03 09:58:00 -05001399static struct cgroup *cgroup_kn_lock_live(struct kernfs_node *kn,
1400 bool drain_offline)
Tejun Heoa9746d82014-05-13 12:19:22 -04001401{
1402 struct cgroup *cgrp;
1403
1404 if (kernfs_type(kn) == KERNFS_DIR)
1405 cgrp = kn->priv;
1406 else
1407 cgrp = kn->parent->priv;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001408
Tejun Heo2bd59d42014-02-11 11:52:49 -05001409 /*
Tejun Heo01f64742014-05-13 12:19:23 -04001410 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoa9746d82014-05-13 12:19:22 -04001411 * active_ref. cgroup liveliness check alone provides enough
1412 * protection against removal. Ensure @cgrp stays accessible and
1413 * break the active_ref protection.
Tejun Heo2bd59d42014-02-11 11:52:49 -05001414 */
Li Zefanaa323622014-09-04 14:43:38 +08001415 if (!cgroup_tryget(cgrp))
1416 return NULL;
Tejun Heoa9746d82014-05-13 12:19:22 -04001417 kernfs_break_active_protection(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001418
Tejun Heo945ba192016-03-03 09:58:00 -05001419 if (drain_offline)
1420 cgroup_lock_and_drain_offline(cgrp);
1421 else
1422 mutex_lock(&cgroup_mutex);
Tejun Heoa9746d82014-05-13 12:19:22 -04001423
1424 if (!cgroup_is_dead(cgrp))
1425 return cgrp;
1426
1427 cgroup_kn_unlock(kn);
1428 return NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001429}
1430
Li Zefan2739d3c2013-01-21 18:18:33 +08001431static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001432{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001433 char name[CGROUP_FILE_NAME_MAX];
Paul Menageddbcc7e2007-10-18 23:39:30 -07001434
Tejun Heo01f64742014-05-13 12:19:23 -04001435 lockdep_assert_held(&cgroup_mutex);
Tejun Heo34c06252015-11-05 00:12:24 -05001436
1437 if (cft->file_offset) {
1438 struct cgroup_subsys_state *css = cgroup_css(cgrp, cft->ss);
1439 struct cgroup_file *cfile = (void *)css + cft->file_offset;
1440
1441 spin_lock_irq(&cgroup_file_kn_lock);
1442 cfile->kn = NULL;
1443 spin_unlock_irq(&cgroup_file_kn_lock);
1444 }
1445
Tejun Heo2bd59d42014-02-11 11:52:49 -05001446 kernfs_remove_by_name(cgrp->kn, cgroup_file_name(cgrp, cft, name));
Tejun Heo05ef1d72012-04-01 12:09:56 -07001447}
1448
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001449/**
Tejun Heo4df8dc92015-09-18 17:54:23 -04001450 * css_clear_dir - remove subsys files in a cgroup directory
1451 * @css: taget css
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001452 */
Tejun Heo334c3672016-03-03 09:58:01 -05001453static void css_clear_dir(struct cgroup_subsys_state *css)
Tejun Heo05ef1d72012-04-01 12:09:56 -07001454{
Tejun Heo334c3672016-03-03 09:58:01 -05001455 struct cgroup *cgrp = css->cgroup;
Tejun Heo4df8dc92015-09-18 17:54:23 -04001456 struct cftype *cfts;
Tejun Heo05ef1d72012-04-01 12:09:56 -07001457
Tejun Heo88cb04b2016-03-03 09:57:58 -05001458 if (!(css->flags & CSS_VISIBLE))
1459 return;
1460
1461 css->flags &= ~CSS_VISIBLE;
1462
Tejun Heo4df8dc92015-09-18 17:54:23 -04001463 list_for_each_entry(cfts, &css->ss->cfts, node)
1464 cgroup_addrm_files(css, cgrp, cfts, false);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001465}
1466
Tejun Heoccdca212015-09-18 17:54:23 -04001467/**
Tejun Heo4df8dc92015-09-18 17:54:23 -04001468 * css_populate_dir - create subsys files in a cgroup directory
1469 * @css: target css
Tejun Heoccdca212015-09-18 17:54:23 -04001470 *
1471 * On failure, no file is added.
1472 */
Tejun Heo334c3672016-03-03 09:58:01 -05001473static int css_populate_dir(struct cgroup_subsys_state *css)
Tejun Heoccdca212015-09-18 17:54:23 -04001474{
Tejun Heo334c3672016-03-03 09:58:01 -05001475 struct cgroup *cgrp = css->cgroup;
Tejun Heo4df8dc92015-09-18 17:54:23 -04001476 struct cftype *cfts, *failed_cfts;
1477 int ret;
Tejun Heoccdca212015-09-18 17:54:23 -04001478
Tejun Heo03970d32016-03-03 09:58:00 -05001479 if ((css->flags & CSS_VISIBLE) || !cgrp->kn)
Tejun Heo88cb04b2016-03-03 09:57:58 -05001480 return 0;
1481
Tejun Heo4df8dc92015-09-18 17:54:23 -04001482 if (!css->ss) {
1483 if (cgroup_on_dfl(cgrp))
1484 cfts = cgroup_dfl_base_files;
1485 else
1486 cfts = cgroup_legacy_base_files;
Tejun Heoccdca212015-09-18 17:54:23 -04001487
Tejun Heo4df8dc92015-09-18 17:54:23 -04001488 return cgroup_addrm_files(&cgrp->self, cgrp, cfts, true);
1489 }
Tejun Heoccdca212015-09-18 17:54:23 -04001490
Tejun Heo4df8dc92015-09-18 17:54:23 -04001491 list_for_each_entry(cfts, &css->ss->cfts, node) {
1492 ret = cgroup_addrm_files(css, cgrp, cfts, true);
1493 if (ret < 0) {
1494 failed_cfts = cfts;
1495 goto err;
Tejun Heoccdca212015-09-18 17:54:23 -04001496 }
1497 }
Tejun Heo88cb04b2016-03-03 09:57:58 -05001498
1499 css->flags |= CSS_VISIBLE;
1500
Tejun Heoccdca212015-09-18 17:54:23 -04001501 return 0;
1502err:
Tejun Heo4df8dc92015-09-18 17:54:23 -04001503 list_for_each_entry(cfts, &css->ss->cfts, node) {
1504 if (cfts == failed_cfts)
1505 break;
1506 cgroup_addrm_files(css, cgrp, cfts, false);
1507 }
Tejun Heoccdca212015-09-18 17:54:23 -04001508 return ret;
1509}
1510
Tejun Heo6e5c8302016-02-22 22:25:47 -05001511static int rebind_subsystems(struct cgroup_root *dst_root, u16 ss_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001512{
Tejun Heo1ada4832015-09-18 17:54:23 -04001513 struct cgroup *dcgrp = &dst_root->cgrp;
Tejun Heo30159ec2013-06-25 11:53:37 -07001514 struct cgroup_subsys *ss;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001515 int ssid, i, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001516
Tejun Heoace2bee2014-02-11 11:52:47 -05001517 lockdep_assert_held(&cgroup_mutex);
Ben Blumaae8aab2010-03-10 15:22:07 -08001518
Tejun Heob4e0eea2016-02-22 22:25:46 -05001519 do_each_subsys_mask(ss, ssid, ss_mask) {
Tejun Heof6d635ad2016-03-08 11:51:26 -05001520 /*
1521 * If @ss has non-root csses attached to it, can't move.
1522 * If @ss is an implicit controller, it is exempt from this
1523 * rule and can be stolen.
1524 */
1525 if (css_next_child(NULL, cgroup_css(&ss->root->cgrp, ss)) &&
1526 !ss->implicit_on_dfl)
Tejun Heo3ed80a62014-02-08 10:36:58 -05001527 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001528
Tejun Heo5df36032014-03-19 10:23:54 -04001529 /* can't move between two non-dummy roots either */
Tejun Heo7fd8c562014-04-23 11:13:16 -04001530 if (ss->root != &cgrp_dfl_root && dst_root != &cgrp_dfl_root)
Tejun Heo5df36032014-03-19 10:23:54 -04001531 return -EBUSY;
Tejun Heob4e0eea2016-02-22 22:25:46 -05001532 } while_each_subsys_mask();
Paul Menageddbcc7e2007-10-18 23:39:30 -07001533
Tejun Heob4e0eea2016-02-22 22:25:46 -05001534 do_each_subsys_mask(ss, ssid, ss_mask) {
Tejun Heo1ada4832015-09-18 17:54:23 -04001535 struct cgroup_root *src_root = ss->root;
1536 struct cgroup *scgrp = &src_root->cgrp;
1537 struct cgroup_subsys_state *css = cgroup_css(scgrp, ss);
Tejun Heo2d8f2432014-04-23 11:13:15 -04001538 struct css_set *cset;
Tejun Heo30159ec2013-06-25 11:53:37 -07001539
Tejun Heo1ada4832015-09-18 17:54:23 -04001540 WARN_ON(!css || cgroup_css(dcgrp, ss));
Tejun Heo73e80ed2013-08-13 11:01:55 -04001541
Tejun Heo334c3672016-03-03 09:58:01 -05001542 /* disable from the source */
1543 src_root->subsys_mask &= ~(1 << ssid);
1544 WARN_ON(cgroup_apply_control(scgrp));
1545 cgroup_finalize_control(scgrp, 0);
Tejun Heo4df8dc92015-09-18 17:54:23 -04001546
Tejun Heo334c3672016-03-03 09:58:01 -05001547 /* rebind */
Tejun Heo1ada4832015-09-18 17:54:23 -04001548 RCU_INIT_POINTER(scgrp->subsys[ssid], NULL);
1549 rcu_assign_pointer(dcgrp->subsys[ssid], css);
Tejun Heo5df36032014-03-19 10:23:54 -04001550 ss->root = dst_root;
Tejun Heo1ada4832015-09-18 17:54:23 -04001551 css->cgroup = dcgrp;
Tejun Heoa8a648c2013-06-24 15:21:47 -07001552
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001553 spin_lock_bh(&css_set_lock);
Tejun Heo2d8f2432014-04-23 11:13:15 -04001554 hash_for_each(css_set_table, i, cset, hlist)
1555 list_move_tail(&cset->e_cset_node[ss->id],
Tejun Heo1ada4832015-09-18 17:54:23 -04001556 &dcgrp->e_csets[ss->id]);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001557 spin_unlock_bh(&css_set_lock);
Tejun Heo2d8f2432014-04-23 11:13:15 -04001558
Tejun Heobd53d612014-04-23 11:13:16 -04001559 /* default hierarchy doesn't enable controllers by default */
Tejun Heof392e512014-04-23 11:13:14 -04001560 dst_root->subsys_mask |= 1 << ssid;
Tejun Heo49d1dc42015-09-18 11:56:28 -04001561 if (dst_root == &cgrp_dfl_root) {
1562 static_branch_enable(cgroup_subsys_on_dfl_key[ssid]);
1563 } else {
Tejun Heo1ada4832015-09-18 17:54:23 -04001564 dcgrp->subtree_control |= 1 << ssid;
Tejun Heo49d1dc42015-09-18 11:56:28 -04001565 static_branch_disable(cgroup_subsys_on_dfl_key[ssid]);
Tejun Heo667c2492014-07-08 18:02:56 -04001566 }
Tejun Heo73e80ed2013-08-13 11:01:55 -04001567
Tejun Heo334c3672016-03-03 09:58:01 -05001568 ret = cgroup_apply_control(dcgrp);
1569 if (ret)
1570 pr_warn("partial failure to rebind %s controller (err=%d)\n",
1571 ss->name, ret);
1572
Tejun Heo5df36032014-03-19 10:23:54 -04001573 if (ss->bind)
1574 ss->bind(css);
Tejun Heob4e0eea2016-02-22 22:25:46 -05001575 } while_each_subsys_mask();
Paul Menageddbcc7e2007-10-18 23:39:30 -07001576
Tejun Heo1ada4832015-09-18 17:54:23 -04001577 kernfs_activate(dcgrp->kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001578 return 0;
1579}
1580
Tejun Heo2bd59d42014-02-11 11:52:49 -05001581static int cgroup_show_options(struct seq_file *seq,
1582 struct kernfs_root *kf_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001583{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001584 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001585 struct cgroup_subsys *ss;
Tejun Heob85d2042013-12-06 15:11:57 -05001586 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001587
Tejun Heod98817d2015-08-18 13:58:16 -07001588 if (root != &cgrp_dfl_root)
1589 for_each_subsys(ss, ssid)
1590 if (root->subsys_mask & (1 << ssid))
Kees Cook61e57c02015-09-08 14:58:22 -07001591 seq_show_option(seq, ss->legacy_name, NULL);
Tejun Heo93438622013-04-14 20:15:25 -07001592 if (root->flags & CGRP_ROOT_NOPREFIX)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001593 seq_puts(seq, ",noprefix");
Tejun Heo93438622013-04-14 20:15:25 -07001594 if (root->flags & CGRP_ROOT_XATTR)
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001595 seq_puts(seq, ",xattr");
Tejun Heo69e943b2014-02-08 10:36:58 -05001596
1597 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001598 if (strlen(root->release_agent_path))
Kees Cooka068acf2015-09-04 15:44:57 -07001599 seq_show_option(seq, "release_agent",
1600 root->release_agent_path);
Tejun Heo69e943b2014-02-08 10:36:58 -05001601 spin_unlock(&release_agent_path_lock);
1602
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001603 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags))
Daniel Lezcano97978e62010-10-27 15:33:35 -07001604 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001605 if (strlen(root->name))
Kees Cooka068acf2015-09-04 15:44:57 -07001606 seq_show_option(seq, "name", root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001607 return 0;
1608}
1609
1610struct cgroup_sb_opts {
Tejun Heo6e5c8302016-02-22 22:25:47 -05001611 u16 subsys_mask;
Tejun Heo69dfa002014-05-04 15:09:13 -04001612 unsigned int flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001613 char *release_agent;
Tejun Heo2260e7f2012-11-19 08:13:38 -08001614 bool cpuset_clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001615 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001616 /* User explicitly requested empty subsystem */
1617 bool none;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001618};
1619
Ben Blumcf5d5942010-03-10 15:22:09 -08001620static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001621{
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001622 char *token, *o = data;
1623 bool all_ss = false, one_ss = false;
Tejun Heo6e5c8302016-02-22 22:25:47 -05001624 u16 mask = U16_MAX;
Tejun Heo30159ec2013-06-25 11:53:37 -07001625 struct cgroup_subsys *ss;
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001626 int nr_opts = 0;
Tejun Heo30159ec2013-06-25 11:53:37 -07001627 int i;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001628
1629#ifdef CONFIG_CPUSETS
Tejun Heo6e5c8302016-02-22 22:25:47 -05001630 mask = ~((u16)1 << cpuset_cgrp_id);
Li Zefanf9ab5b52009-06-17 16:26:33 -07001631#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001632
Paul Menagec6d57f32009-09-23 15:56:19 -07001633 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001634
1635 while ((token = strsep(&o, ",")) != NULL) {
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001636 nr_opts++;
1637
Paul Menageddbcc7e2007-10-18 23:39:30 -07001638 if (!*token)
1639 return -EINVAL;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001640 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001641 /* Explicitly have no subsystems */
1642 opts->none = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001643 continue;
1644 }
1645 if (!strcmp(token, "all")) {
1646 /* Mutually exclusive option 'all' + subsystem name */
1647 if (one_ss)
1648 return -EINVAL;
1649 all_ss = true;
1650 continue;
1651 }
1652 if (!strcmp(token, "noprefix")) {
Tejun Heo93438622013-04-14 20:15:25 -07001653 opts->flags |= CGRP_ROOT_NOPREFIX;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001654 continue;
1655 }
1656 if (!strcmp(token, "clone_children")) {
Tejun Heo2260e7f2012-11-19 08:13:38 -08001657 opts->cpuset_clone_children = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001658 continue;
1659 }
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001660 if (!strcmp(token, "xattr")) {
Tejun Heo93438622013-04-14 20:15:25 -07001661 opts->flags |= CGRP_ROOT_XATTR;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001662 continue;
1663 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001664 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001665 /* Specifying two release agents is forbidden */
1666 if (opts->release_agent)
1667 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001668 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001669 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001670 if (!opts->release_agent)
1671 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001672 continue;
1673 }
1674 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001675 const char *name = token + 5;
1676 /* Can't specify an empty name */
1677 if (!strlen(name))
1678 return -EINVAL;
1679 /* Must match [\w.-]+ */
1680 for (i = 0; i < strlen(name); i++) {
1681 char c = name[i];
1682 if (isalnum(c))
1683 continue;
1684 if ((c == '.') || (c == '-') || (c == '_'))
1685 continue;
1686 return -EINVAL;
1687 }
1688 /* Specifying two names is forbidden */
1689 if (opts->name)
1690 return -EINVAL;
1691 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001692 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001693 GFP_KERNEL);
1694 if (!opts->name)
1695 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001696
1697 continue;
1698 }
1699
Tejun Heo30159ec2013-06-25 11:53:37 -07001700 for_each_subsys(ss, i) {
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07001701 if (strcmp(token, ss->legacy_name))
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001702 continue;
Tejun Heofc5ed1e2015-09-18 11:56:28 -04001703 if (!cgroup_ssid_enabled(i))
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001704 continue;
Johannes Weiner223ffb22016-02-11 13:34:49 -05001705 if (cgroup_ssid_no_v1(i))
1706 continue;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001707
1708 /* Mutually exclusive option 'all' + subsystem name */
1709 if (all_ss)
1710 return -EINVAL;
Tejun Heo69dfa002014-05-04 15:09:13 -04001711 opts->subsys_mask |= (1 << i);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001712 one_ss = true;
1713
1714 break;
1715 }
1716 if (i == CGROUP_SUBSYS_COUNT)
1717 return -ENOENT;
1718 }
1719
Li Zefanf9ab5b52009-06-17 16:26:33 -07001720 /*
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001721 * If the 'all' option was specified select all the subsystems,
1722 * otherwise if 'none', 'name=' and a subsystem name options were
1723 * not specified, let's default to 'all'
1724 */
1725 if (all_ss || (!one_ss && !opts->none && !opts->name))
1726 for_each_subsys(ss, i)
Johannes Weiner223ffb22016-02-11 13:34:49 -05001727 if (cgroup_ssid_enabled(i) && !cgroup_ssid_no_v1(i))
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001728 opts->subsys_mask |= (1 << i);
1729
1730 /*
1731 * We either have to specify by name or by subsystems. (So all
1732 * empty hierarchies must have a name).
1733 */
1734 if (!opts->subsys_mask && !opts->name)
1735 return -EINVAL;
1736
1737 /*
Li Zefanf9ab5b52009-06-17 16:26:33 -07001738 * Option noprefix was introduced just for backward compatibility
1739 * with the old cpuset, so we allow noprefix only if mounting just
1740 * the cpuset subsystem.
1741 */
Tejun Heo93438622013-04-14 20:15:25 -07001742 if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask))
Li Zefanf9ab5b52009-06-17 16:26:33 -07001743 return -EINVAL;
1744
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001745 /* Can't specify "none" and some subsystems */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001746 if (opts->subsys_mask && opts->none)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001747 return -EINVAL;
1748
Paul Menageddbcc7e2007-10-18 23:39:30 -07001749 return 0;
1750}
1751
Tejun Heo2bd59d42014-02-11 11:52:49 -05001752static int cgroup_remount(struct kernfs_root *kf_root, int *flags, char *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001753{
1754 int ret = 0;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001755 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001756 struct cgroup_sb_opts opts;
Tejun Heo6e5c8302016-02-22 22:25:47 -05001757 u16 added_mask, removed_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001758
Tejun Heoaa6ec292014-07-09 10:08:08 -04001759 if (root == &cgrp_dfl_root) {
1760 pr_err("remount is not allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001761 return -EINVAL;
1762 }
1763
Tejun Heo334c3672016-03-03 09:58:01 -05001764 cgroup_lock_and_drain_offline(&cgrp_dfl_root.cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001765
1766 /* See what subsystems are wanted */
1767 ret = parse_cgroupfs_options(data, &opts);
1768 if (ret)
1769 goto out_unlock;
1770
Tejun Heof392e512014-04-23 11:13:14 -04001771 if (opts.subsys_mask != root->subsys_mask || opts.release_agent)
Joe Perchesed3d2612014-04-25 18:28:03 -04001772 pr_warn("option changes via remount are deprecated (pid=%d comm=%s)\n",
Jianyu Zhana2a1f9e2014-04-25 18:28:03 -04001773 task_tgid_nr(current), current->comm);
Tejun Heo8b5a5a92012-04-01 12:09:54 -07001774
Tejun Heof392e512014-04-23 11:13:14 -04001775 added_mask = opts.subsys_mask & ~root->subsys_mask;
1776 removed_mask = root->subsys_mask & ~opts.subsys_mask;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001777
Ben Blumcf5d5942010-03-10 15:22:09 -08001778 /* Don't allow flags or name to change at remount */
Tejun Heo7450e902014-07-09 10:08:07 -04001779 if ((opts.flags ^ root->flags) ||
Ben Blumcf5d5942010-03-10 15:22:09 -08001780 (opts.name && strcmp(opts.name, root->name))) {
Tejun Heo69dfa002014-05-04 15:09:13 -04001781 pr_err("option or name mismatch, new: 0x%x \"%s\", old: 0x%x \"%s\"\n",
Tejun Heo7450e902014-07-09 10:08:07 -04001782 opts.flags, opts.name ?: "", root->flags, root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001783 ret = -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001784 goto out_unlock;
1785 }
1786
Tejun Heof172e672013-06-28 17:07:30 -07001787 /* remounting is not allowed for populated hierarchies */
Tejun Heod5c419b2014-05-16 13:22:48 -04001788 if (!list_empty(&root->cgrp.self.children)) {
Tejun Heof172e672013-06-28 17:07:30 -07001789 ret = -EBUSY;
Li Zefan0670e082009-04-02 16:57:30 -07001790 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001791 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001792
Tejun Heo5df36032014-03-19 10:23:54 -04001793 ret = rebind_subsystems(root, added_mask);
Tejun Heo31261212013-06-28 17:07:30 -07001794 if (ret)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001795 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001796
Tejun Heo334c3672016-03-03 09:58:01 -05001797 WARN_ON(rebind_subsystems(&cgrp_dfl_root, removed_mask));
Tejun Heo5df36032014-03-19 10:23:54 -04001798
Tejun Heo69e943b2014-02-08 10:36:58 -05001799 if (opts.release_agent) {
1800 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001801 strcpy(root->release_agent_path, opts.release_agent);
Tejun Heo69e943b2014-02-08 10:36:58 -05001802 spin_unlock(&release_agent_path_lock);
1803 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001804 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001805 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001806 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001807 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001808 return ret;
1809}
1810
Tejun Heoafeb0f92014-02-13 06:58:39 -05001811/*
1812 * To reduce the fork() overhead for systems that are not actually using
1813 * their cgroups capability, we don't maintain the lists running through
1814 * each css_set to its tasks until we see the list actually used - in other
1815 * words after the first mount.
1816 */
1817static bool use_task_css_set_links __read_mostly;
1818
1819static void cgroup_enable_task_cg_lists(void)
1820{
1821 struct task_struct *p, *g;
1822
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001823 spin_lock_bh(&css_set_lock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001824
1825 if (use_task_css_set_links)
1826 goto out_unlock;
1827
1828 use_task_css_set_links = true;
1829
1830 /*
1831 * We need tasklist_lock because RCU is not safe against
1832 * while_each_thread(). Besides, a forking task that has passed
1833 * cgroup_post_fork() without seeing use_task_css_set_links = 1
1834 * is not guaranteed to have its child immediately visible in the
1835 * tasklist if we walk through it with RCU.
1836 */
1837 read_lock(&tasklist_lock);
1838 do_each_thread(g, p) {
Tejun Heoafeb0f92014-02-13 06:58:39 -05001839 WARN_ON_ONCE(!list_empty(&p->cg_list) ||
1840 task_css_set(p) != &init_css_set);
1841
1842 /*
1843 * We should check if the process is exiting, otherwise
1844 * it will race with cgroup_exit() in that the list
1845 * entry won't be deleted though the process has exited.
Tejun Heof153ad12014-02-25 09:56:49 -05001846 * Do it while holding siglock so that we don't end up
1847 * racing against cgroup_exit().
Tejun Heoafeb0f92014-02-13 06:58:39 -05001848 */
Tejun Heof153ad12014-02-25 09:56:49 -05001849 spin_lock_irq(&p->sighand->siglock);
Tejun Heoeaf797a2014-02-25 10:04:03 -05001850 if (!(p->flags & PF_EXITING)) {
1851 struct css_set *cset = task_css_set(p);
1852
Tejun Heo0de09422015-10-15 16:41:49 -04001853 if (!css_set_populated(cset))
1854 css_set_update_populated(cset, true);
Tejun Heo389b9c12015-10-15 16:41:51 -04001855 list_add_tail(&p->cg_list, &cset->tasks);
Tejun Heoeaf797a2014-02-25 10:04:03 -05001856 get_css_set(cset);
1857 }
Tejun Heof153ad12014-02-25 09:56:49 -05001858 spin_unlock_irq(&p->sighand->siglock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001859 } while_each_thread(g, p);
1860 read_unlock(&tasklist_lock);
1861out_unlock:
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001862 spin_unlock_bh(&css_set_lock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001863}
Paul Menageddbcc7e2007-10-18 23:39:30 -07001864
Paul Menagecc31edc2008-10-18 20:28:04 -07001865static void init_cgroup_housekeeping(struct cgroup *cgrp)
1866{
Tejun Heo2d8f2432014-04-23 11:13:15 -04001867 struct cgroup_subsys *ss;
1868 int ssid;
1869
Tejun Heod5c419b2014-05-16 13:22:48 -04001870 INIT_LIST_HEAD(&cgrp->self.sibling);
1871 INIT_LIST_HEAD(&cgrp->self.children);
Tejun Heo69d02062013-06-12 21:04:50 -07001872 INIT_LIST_HEAD(&cgrp->cset_links);
Ben Blum72a8cb32009-09-23 15:56:27 -07001873 INIT_LIST_HEAD(&cgrp->pidlists);
1874 mutex_init(&cgrp->pidlist_mutex);
Tejun Heo9d800df2014-05-14 09:15:00 -04001875 cgrp->self.cgroup = cgrp;
Tejun Heo184faf32014-05-16 13:22:51 -04001876 cgrp->self.flags |= CSS_ONLINE;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001877
1878 for_each_subsys(ss, ssid)
1879 INIT_LIST_HEAD(&cgrp->e_csets[ssid]);
Tejun Heof8f22e52014-04-23 11:13:16 -04001880
1881 init_waitqueue_head(&cgrp->offline_waitq);
Zefan Li971ff492014-09-18 16:06:19 +08001882 INIT_WORK(&cgrp->release_agent_work, cgroup_release_agent);
Paul Menagecc31edc2008-10-18 20:28:04 -07001883}
Paul Menagec6d57f32009-09-23 15:56:19 -07001884
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001885static void init_cgroup_root(struct cgroup_root *root,
Tejun Heo172a2c062014-03-19 10:23:53 -04001886 struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001887{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001888 struct cgroup *cgrp = &root->cgrp;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001889
Paul Menageddbcc7e2007-10-18 23:39:30 -07001890 INIT_LIST_HEAD(&root->root_list);
Tejun Heo3c9c8252014-02-12 09:29:50 -05001891 atomic_set(&root->nr_cgrps, 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001892 cgrp->root = root;
Paul Menagecc31edc2008-10-18 20:28:04 -07001893 init_cgroup_housekeeping(cgrp);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08001894 idr_init(&root->cgroup_idr);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001895
Paul Menagec6d57f32009-09-23 15:56:19 -07001896 root->flags = opts->flags;
1897 if (opts->release_agent)
1898 strcpy(root->release_agent_path, opts->release_agent);
1899 if (opts->name)
1900 strcpy(root->name, opts->name);
Tejun Heo2260e7f2012-11-19 08:13:38 -08001901 if (opts->cpuset_clone_children)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001902 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001903}
1904
Tejun Heo6e5c8302016-02-22 22:25:47 -05001905static int cgroup_setup_root(struct cgroup_root *root, u16 ss_mask)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001906{
Tejun Heod427dfe2014-02-11 11:52:48 -05001907 LIST_HEAD(tmp_links);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001908 struct cgroup *root_cgrp = &root->cgrp;
Tejun Heod427dfe2014-02-11 11:52:48 -05001909 struct css_set *cset;
Tejun Heod427dfe2014-02-11 11:52:48 -05001910 int i, ret;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001911
Tejun Heod427dfe2014-02-11 11:52:48 -05001912 lockdep_assert_held(&cgroup_mutex);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001913
Vladimir Davydovcf780b72015-08-03 15:32:26 +03001914 ret = cgroup_idr_alloc(&root->cgroup_idr, root_cgrp, 1, 2, GFP_KERNEL);
Tejun Heod427dfe2014-02-11 11:52:48 -05001915 if (ret < 0)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001916 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001917 root_cgrp->id = ret;
Tejun Heob11cfb52015-11-20 15:55:52 -05001918 root_cgrp->ancestor_ids[0] = ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001919
Tejun Heo2aad2a82014-09-24 13:31:50 -04001920 ret = percpu_ref_init(&root_cgrp->self.refcnt, css_release, 0,
1921 GFP_KERNEL);
Tejun Heo9d755d32014-05-14 09:15:02 -04001922 if (ret)
1923 goto out;
1924
Tejun Heod427dfe2014-02-11 11:52:48 -05001925 /*
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001926 * We're accessing css_set_count without locking css_set_lock here,
Tejun Heod427dfe2014-02-11 11:52:48 -05001927 * but that's OK - it can only be increased by someone holding
Tejun Heo04313592016-03-03 09:58:01 -05001928 * cgroup_lock, and that's us. Later rebinding may disable
1929 * controllers on the default hierarchy and thus create new csets,
1930 * which can't be more than the existing ones. Allocate 2x.
Tejun Heod427dfe2014-02-11 11:52:48 -05001931 */
Tejun Heo04313592016-03-03 09:58:01 -05001932 ret = allocate_cgrp_cset_links(2 * css_set_count, &tmp_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001933 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001934 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001935
Tejun Heo985ed672014-03-19 10:23:53 -04001936 ret = cgroup_init_root_id(root);
Tejun Heod427dfe2014-02-11 11:52:48 -05001937 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001938 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001939
Tejun Heo2bd59d42014-02-11 11:52:49 -05001940 root->kf_root = kernfs_create_root(&cgroup_kf_syscall_ops,
1941 KERNFS_ROOT_CREATE_DEACTIVATED,
1942 root_cgrp);
1943 if (IS_ERR(root->kf_root)) {
1944 ret = PTR_ERR(root->kf_root);
1945 goto exit_root_id;
1946 }
1947 root_cgrp->kn = root->kf_root->kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001948
Tejun Heo334c3672016-03-03 09:58:01 -05001949 ret = css_populate_dir(&root_cgrp->self);
Tejun Heod427dfe2014-02-11 11:52:48 -05001950 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001951 goto destroy_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001952
Tejun Heo5df36032014-03-19 10:23:54 -04001953 ret = rebind_subsystems(root, ss_mask);
Tejun Heod427dfe2014-02-11 11:52:48 -05001954 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001955 goto destroy_root;
Al Viro0df6a632010-12-21 13:29:29 -05001956
Tejun Heod427dfe2014-02-11 11:52:48 -05001957 /*
1958 * There must be no failure case after here, since rebinding takes
1959 * care of subsystems' refcounts, which are explicitly dropped in
1960 * the failure exit path.
1961 */
1962 list_add(&root->root_list, &cgroup_roots);
1963 cgroup_root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001964
Tejun Heod427dfe2014-02-11 11:52:48 -05001965 /*
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001966 * Link the root cgroup in this hierarchy into all the css_set
Tejun Heod427dfe2014-02-11 11:52:48 -05001967 * objects.
1968 */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001969 spin_lock_bh(&css_set_lock);
Tejun Heo0de09422015-10-15 16:41:49 -04001970 hash_for_each(css_set_table, i, cset, hlist) {
Tejun Heod427dfe2014-02-11 11:52:48 -05001971 link_css_set(&tmp_links, cset, root_cgrp);
Tejun Heo0de09422015-10-15 16:41:49 -04001972 if (css_set_populated(cset))
1973 cgroup_update_populated(root_cgrp, true);
1974 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001975 spin_unlock_bh(&css_set_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001976
Tejun Heod5c419b2014-05-16 13:22:48 -04001977 BUG_ON(!list_empty(&root_cgrp->self.children));
Tejun Heo3c9c8252014-02-12 09:29:50 -05001978 BUG_ON(atomic_read(&root->nr_cgrps) != 1);
Tejun Heod427dfe2014-02-11 11:52:48 -05001979
Tejun Heo2bd59d42014-02-11 11:52:49 -05001980 kernfs_activate(root_cgrp->kn);
Tejun Heod427dfe2014-02-11 11:52:48 -05001981 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001982 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001983
Tejun Heo2bd59d42014-02-11 11:52:49 -05001984destroy_root:
1985 kernfs_destroy_root(root->kf_root);
1986 root->kf_root = NULL;
1987exit_root_id:
Tejun Heod427dfe2014-02-11 11:52:48 -05001988 cgroup_exit_root_id(root);
Tejun Heo9d755d32014-05-14 09:15:02 -04001989cancel_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04001990 percpu_ref_exit(&root_cgrp->self.refcnt);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001991out:
Tejun Heod427dfe2014-02-11 11:52:48 -05001992 free_cgrp_cset_links(&tmp_links);
1993 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001994}
1995
Al Virof7e83572010-07-26 13:23:11 +04001996static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001997 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001998 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001999{
Tejun Heo67e9c742015-11-16 11:13:34 -05002000 bool is_v2 = fs_type == &cgroup2_fs_type;
Li Zefan3a32bd72014-06-30 11:50:59 +08002001 struct super_block *pinned_sb = NULL;
Li Zefan970317a2014-06-30 11:49:58 +08002002 struct cgroup_subsys *ss;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002003 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002004 struct cgroup_sb_opts opts;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002005 struct dentry *dentry;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05002006 int ret;
Li Zefan970317a2014-06-30 11:49:58 +08002007 int i;
Li Zefanc6b3d5b2014-04-04 17:14:41 +08002008 bool new_sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07002009
2010 /*
Tejun Heo56fde9e2014-02-13 06:58:38 -05002011 * The first time anyone tries to mount a cgroup, enable the list
2012 * linking each css_set to its tasks and fix up all existing tasks.
Paul Menagec6d57f32009-09-23 15:56:19 -07002013 */
Tejun Heo56fde9e2014-02-13 06:58:38 -05002014 if (!use_task_css_set_links)
2015 cgroup_enable_task_cg_lists();
Li Zefane37a06f2014-04-17 13:53:08 +08002016
Tejun Heo67e9c742015-11-16 11:13:34 -05002017 if (is_v2) {
2018 if (data) {
2019 pr_err("cgroup2: unknown option \"%s\"\n", (char *)data);
2020 return ERR_PTR(-EINVAL);
2021 }
Tejun Heoa7165262016-02-23 10:00:50 -05002022 cgrp_dfl_visible = true;
Tejun Heo67e9c742015-11-16 11:13:34 -05002023 root = &cgrp_dfl_root;
2024 cgroup_get(&root->cgrp);
2025 goto out_mount;
2026 }
2027
Tejun Heo334c3672016-03-03 09:58:01 -05002028 cgroup_lock_and_drain_offline(&cgrp_dfl_root.cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002029
Paul Menageddbcc7e2007-10-18 23:39:30 -07002030 /* First find the desired set of subsystems */
Paul Menageddbcc7e2007-10-18 23:39:30 -07002031 ret = parse_cgroupfs_options(data, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002032 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05002033 goto out_unlock;
Tejun Heoa015edd2014-05-14 09:15:00 -04002034
Li Zefan970317a2014-06-30 11:49:58 +08002035 /*
2036 * Destruction of cgroup root is asynchronous, so subsystems may
2037 * still be dying after the previous unmount. Let's drain the
2038 * dying subsystems. We just need to ensure that the ones
2039 * unmounted previously finish dying and don't care about new ones
2040 * starting. Testing ref liveliness is good enough.
2041 */
2042 for_each_subsys(ss, i) {
2043 if (!(opts.subsys_mask & (1 << i)) ||
2044 ss->root == &cgrp_dfl_root)
2045 continue;
2046
2047 if (!percpu_ref_tryget_live(&ss->root->cgrp.self.refcnt)) {
2048 mutex_unlock(&cgroup_mutex);
2049 msleep(10);
2050 ret = restart_syscall();
2051 goto out_free;
2052 }
2053 cgroup_put(&ss->root->cgrp);
2054 }
2055
Tejun Heo985ed672014-03-19 10:23:53 -04002056 for_each_root(root) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05002057 bool name_match = false;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002058
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002059 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04002060 continue;
Paul Menagec6d57f32009-09-23 15:56:19 -07002061
Paul Menage817929e2007-10-18 23:39:36 -07002062 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05002063 * If we asked for a name then it must match. Also, if
2064 * name matches but sybsys_mask doesn't, we should fail.
2065 * Remember whether name matched.
Paul Menage817929e2007-10-18 23:39:36 -07002066 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05002067 if (opts.name) {
2068 if (strcmp(opts.name, root->name))
2069 continue;
2070 name_match = true;
2071 }
Tejun Heo31261212013-06-28 17:07:30 -07002072
2073 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05002074 * If we asked for subsystems (or explicitly for no
2075 * subsystems) then they must match.
Tejun Heo31261212013-06-28 17:07:30 -07002076 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05002077 if ((opts.subsys_mask || opts.none) &&
Tejun Heof392e512014-04-23 11:13:14 -04002078 (opts.subsys_mask != root->subsys_mask)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05002079 if (!name_match)
2080 continue;
2081 ret = -EBUSY;
2082 goto out_unlock;
2083 }
Tejun Heo873fe092013-04-14 20:15:26 -07002084
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04002085 if (root->flags ^ opts.flags)
2086 pr_warn("new mount options do not match the existing superblock, will be ignored\n");
Tejun Heo2bd59d42014-02-11 11:52:49 -05002087
Tejun Heo776f02f2014-02-12 09:29:50 -05002088 /*
Li Zefan3a32bd72014-06-30 11:50:59 +08002089 * We want to reuse @root whose lifetime is governed by its
2090 * ->cgrp. Let's check whether @root is alive and keep it
2091 * that way. As cgroup_kill_sb() can happen anytime, we
2092 * want to block it by pinning the sb so that @root doesn't
2093 * get killed before mount is complete.
2094 *
2095 * With the sb pinned, tryget_live can reliably indicate
2096 * whether @root can be reused. If it's being killed,
2097 * drain it. We can use wait_queue for the wait but this
2098 * path is super cold. Let's just sleep a bit and retry.
Tejun Heo776f02f2014-02-12 09:29:50 -05002099 */
Li Zefan3a32bd72014-06-30 11:50:59 +08002100 pinned_sb = kernfs_pin_sb(root->kf_root, NULL);
2101 if (IS_ERR(pinned_sb) ||
2102 !percpu_ref_tryget_live(&root->cgrp.self.refcnt)) {
Tejun Heo776f02f2014-02-12 09:29:50 -05002103 mutex_unlock(&cgroup_mutex);
Li Zefan3a32bd72014-06-30 11:50:59 +08002104 if (!IS_ERR_OR_NULL(pinned_sb))
2105 deactivate_super(pinned_sb);
Tejun Heo776f02f2014-02-12 09:29:50 -05002106 msleep(10);
Tejun Heoa015edd2014-05-14 09:15:00 -04002107 ret = restart_syscall();
2108 goto out_free;
Tejun Heo776f02f2014-02-12 09:29:50 -05002109 }
2110
2111 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002112 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002113 }
2114
Tejun Heo172a2c062014-03-19 10:23:53 -04002115 /*
2116 * No such thing, create a new one. name= matching without subsys
2117 * specification is allowed for already existing hierarchies but we
2118 * can't create new one without subsys specification.
2119 */
2120 if (!opts.subsys_mask && !opts.none) {
2121 ret = -EINVAL;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002122 goto out_unlock;
2123 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002124
Tejun Heo172a2c062014-03-19 10:23:53 -04002125 root = kzalloc(sizeof(*root), GFP_KERNEL);
2126 if (!root) {
2127 ret = -ENOMEM;
2128 goto out_unlock;
2129 }
2130
2131 init_cgroup_root(root, &opts);
2132
Tejun Heo35585572014-02-13 06:58:38 -05002133 ret = cgroup_setup_root(root, opts.subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -05002134 if (ret)
2135 cgroup_free_root(root);
2136
Tejun Heo8e30e2b2014-02-11 11:52:48 -05002137out_unlock:
Tejun Heoe25e2cb2011-12-12 18:12:21 -08002138 mutex_unlock(&cgroup_mutex);
Tejun Heoa015edd2014-05-14 09:15:00 -04002139out_free:
Paul Menagec6d57f32009-09-23 15:56:19 -07002140 kfree(opts.release_agent);
2141 kfree(opts.name);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05002142
Tejun Heo2bd59d42014-02-11 11:52:49 -05002143 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05002144 return ERR_PTR(ret);
Tejun Heo67e9c742015-11-16 11:13:34 -05002145out_mount:
Jianyu Zhanc9482a52014-04-26 15:40:28 +08002146 dentry = kernfs_mount(fs_type, flags, root->kf_root,
Tejun Heo67e9c742015-11-16 11:13:34 -05002147 is_v2 ? CGROUP2_SUPER_MAGIC : CGROUP_SUPER_MAGIC,
2148 &new_sb);
Li Zefanc6b3d5b2014-04-04 17:14:41 +08002149 if (IS_ERR(dentry) || !new_sb)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002150 cgroup_put(&root->cgrp);
Li Zefan3a32bd72014-06-30 11:50:59 +08002151
2152 /*
2153 * If @pinned_sb, we're reusing an existing root and holding an
2154 * extra ref on its sb. Mount is complete. Put the extra ref.
2155 */
2156 if (pinned_sb) {
2157 WARN_ON(new_sb);
2158 deactivate_super(pinned_sb);
2159 }
2160
Tejun Heo2bd59d42014-02-11 11:52:49 -05002161 return dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002162}
2163
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09002164static void cgroup_kill_sb(struct super_block *sb)
2165{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002166 struct kernfs_root *kf_root = kernfs_root_from_sb(sb);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002167 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002168
Tejun Heo9d755d32014-05-14 09:15:02 -04002169 /*
2170 * If @root doesn't have any mounts or children, start killing it.
2171 * This prevents new mounts by disabling percpu_ref_tryget_live().
2172 * cgroup_mount() may wait for @root's release.
Li Zefan1f779fb2014-06-04 16:48:15 +08002173 *
2174 * And don't kill the default root.
Tejun Heo9d755d32014-05-14 09:15:02 -04002175 */
Johannes Weiner3c606d32015-01-22 10:19:43 -05002176 if (!list_empty(&root->cgrp.self.children) ||
Li Zefan1f779fb2014-06-04 16:48:15 +08002177 root == &cgrp_dfl_root)
Tejun Heo9d755d32014-05-14 09:15:02 -04002178 cgroup_put(&root->cgrp);
2179 else
2180 percpu_ref_kill(&root->cgrp.self.refcnt);
2181
Tejun Heo2bd59d42014-02-11 11:52:49 -05002182 kernfs_kill_sb(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002183}
2184
2185static struct file_system_type cgroup_fs_type = {
2186 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04002187 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002188 .kill_sb = cgroup_kill_sb,
2189};
2190
Tejun Heo67e9c742015-11-16 11:13:34 -05002191static struct file_system_type cgroup2_fs_type = {
2192 .name = "cgroup2",
2193 .mount = cgroup_mount,
2194 .kill_sb = cgroup_kill_sb,
2195};
2196
Li Zefana043e3b2008-02-23 15:24:09 -08002197/**
Tejun Heo913ffdb2013-07-11 16:34:48 -07002198 * task_cgroup_path - cgroup path of a task in the first cgroup hierarchy
Tejun Heo857a2be2013-04-14 20:50:08 -07002199 * @task: target task
Tejun Heo857a2be2013-04-14 20:50:08 -07002200 * @buf: the buffer to write the path into
2201 * @buflen: the length of the buffer
2202 *
Tejun Heo913ffdb2013-07-11 16:34:48 -07002203 * Determine @task's cgroup on the first (the one with the lowest non-zero
2204 * hierarchy_id) cgroup hierarchy and copy its path into @buf. This
2205 * function grabs cgroup_mutex and shouldn't be used inside locks used by
2206 * cgroup controller callbacks.
2207 *
Tejun Heoe61734c2014-02-12 09:29:50 -05002208 * Return value is the same as kernfs_path().
Tejun Heo857a2be2013-04-14 20:50:08 -07002209 */
Tejun Heoe61734c2014-02-12 09:29:50 -05002210char *task_cgroup_path(struct task_struct *task, char *buf, size_t buflen)
Tejun Heo857a2be2013-04-14 20:50:08 -07002211{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002212 struct cgroup_root *root;
Tejun Heo913ffdb2013-07-11 16:34:48 -07002213 struct cgroup *cgrp;
Tejun Heoe61734c2014-02-12 09:29:50 -05002214 int hierarchy_id = 1;
2215 char *path = NULL;
Tejun Heo857a2be2013-04-14 20:50:08 -07002216
2217 mutex_lock(&cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002218 spin_lock_bh(&css_set_lock);
Tejun Heo857a2be2013-04-14 20:50:08 -07002219
Tejun Heo913ffdb2013-07-11 16:34:48 -07002220 root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id);
2221
Tejun Heo857a2be2013-04-14 20:50:08 -07002222 if (root) {
2223 cgrp = task_cgroup_from_root(task, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05002224 path = cgroup_path(cgrp, buf, buflen);
Tejun Heo913ffdb2013-07-11 16:34:48 -07002225 } else {
2226 /* if no hierarchy exists, everyone is in "/" */
Tejun Heoe61734c2014-02-12 09:29:50 -05002227 if (strlcpy(buf, "/", buflen) < buflen)
2228 path = buf;
Tejun Heo857a2be2013-04-14 20:50:08 -07002229 }
2230
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002231 spin_unlock_bh(&css_set_lock);
Tejun Heo857a2be2013-04-14 20:50:08 -07002232 mutex_unlock(&cgroup_mutex);
Tejun Heoe61734c2014-02-12 09:29:50 -05002233 return path;
Tejun Heo857a2be2013-04-14 20:50:08 -07002234}
Tejun Heo913ffdb2013-07-11 16:34:48 -07002235EXPORT_SYMBOL_GPL(task_cgroup_path);
Tejun Heo857a2be2013-04-14 20:50:08 -07002236
Tejun Heob3dc0942014-02-25 10:04:01 -05002237/* used to track tasks and other necessary states during migration */
Tejun Heo2f7ee562011-12-12 18:12:21 -08002238struct cgroup_taskset {
Tejun Heob3dc0942014-02-25 10:04:01 -05002239 /* the src and dst cset list running through cset->mg_node */
2240 struct list_head src_csets;
2241 struct list_head dst_csets;
2242
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002243 /* the subsys currently being processed */
2244 int ssid;
2245
Tejun Heob3dc0942014-02-25 10:04:01 -05002246 /*
2247 * Fields for cgroup_taskset_*() iteration.
2248 *
2249 * Before migration is committed, the target migration tasks are on
2250 * ->mg_tasks of the csets on ->src_csets. After, on ->mg_tasks of
2251 * the csets on ->dst_csets. ->csets point to either ->src_csets
2252 * or ->dst_csets depending on whether migration is committed.
2253 *
2254 * ->cur_csets and ->cur_task point to the current task position
2255 * during iteration.
2256 */
2257 struct list_head *csets;
2258 struct css_set *cur_cset;
2259 struct task_struct *cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002260};
2261
Tejun Heoadaae5d2015-09-11 15:00:21 -04002262#define CGROUP_TASKSET_INIT(tset) (struct cgroup_taskset){ \
2263 .src_csets = LIST_HEAD_INIT(tset.src_csets), \
2264 .dst_csets = LIST_HEAD_INIT(tset.dst_csets), \
2265 .csets = &tset.src_csets, \
2266}
2267
2268/**
2269 * cgroup_taskset_add - try to add a migration target task to a taskset
2270 * @task: target task
2271 * @tset: target taskset
2272 *
2273 * Add @task, which is a migration target, to @tset. This function becomes
2274 * noop if @task doesn't need to be migrated. @task's css_set should have
2275 * been added as a migration source and @task->cg_list will be moved from
2276 * the css_set's tasks list to mg_tasks one.
2277 */
2278static void cgroup_taskset_add(struct task_struct *task,
2279 struct cgroup_taskset *tset)
2280{
2281 struct css_set *cset;
2282
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002283 lockdep_assert_held(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002284
2285 /* @task either already exited or can't exit until the end */
2286 if (task->flags & PF_EXITING)
2287 return;
2288
2289 /* leave @task alone if post_fork() hasn't linked it yet */
2290 if (list_empty(&task->cg_list))
2291 return;
2292
2293 cset = task_css_set(task);
2294 if (!cset->mg_src_cgrp)
2295 return;
2296
2297 list_move_tail(&task->cg_list, &cset->mg_tasks);
2298 if (list_empty(&cset->mg_node))
2299 list_add_tail(&cset->mg_node, &tset->src_csets);
2300 if (list_empty(&cset->mg_dst_cset->mg_node))
2301 list_move_tail(&cset->mg_dst_cset->mg_node,
2302 &tset->dst_csets);
2303}
2304
Tejun Heo2f7ee562011-12-12 18:12:21 -08002305/**
2306 * cgroup_taskset_first - reset taskset and return the first task
2307 * @tset: taskset of interest
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002308 * @dst_cssp: output variable for the destination css
Tejun Heo2f7ee562011-12-12 18:12:21 -08002309 *
2310 * @tset iteration is initialized and the first task is returned.
2311 */
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002312struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset,
2313 struct cgroup_subsys_state **dst_cssp)
Tejun Heo2f7ee562011-12-12 18:12:21 -08002314{
Tejun Heob3dc0942014-02-25 10:04:01 -05002315 tset->cur_cset = list_first_entry(tset->csets, struct css_set, mg_node);
2316 tset->cur_task = NULL;
2317
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002318 return cgroup_taskset_next(tset, dst_cssp);
Tejun Heo2f7ee562011-12-12 18:12:21 -08002319}
Tejun Heo2f7ee562011-12-12 18:12:21 -08002320
2321/**
2322 * cgroup_taskset_next - iterate to the next task in taskset
2323 * @tset: taskset of interest
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002324 * @dst_cssp: output variable for the destination css
Tejun Heo2f7ee562011-12-12 18:12:21 -08002325 *
2326 * Return the next task in @tset. Iteration must have been initialized
2327 * with cgroup_taskset_first().
2328 */
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002329struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset,
2330 struct cgroup_subsys_state **dst_cssp)
Tejun Heo2f7ee562011-12-12 18:12:21 -08002331{
Tejun Heob3dc0942014-02-25 10:04:01 -05002332 struct css_set *cset = tset->cur_cset;
2333 struct task_struct *task = tset->cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002334
Tejun Heob3dc0942014-02-25 10:04:01 -05002335 while (&cset->mg_node != tset->csets) {
2336 if (!task)
2337 task = list_first_entry(&cset->mg_tasks,
2338 struct task_struct, cg_list);
2339 else
2340 task = list_next_entry(task, cg_list);
Tejun Heo2f7ee562011-12-12 18:12:21 -08002341
Tejun Heob3dc0942014-02-25 10:04:01 -05002342 if (&task->cg_list != &cset->mg_tasks) {
2343 tset->cur_cset = cset;
2344 tset->cur_task = task;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002345
2346 /*
2347 * This function may be called both before and
2348 * after cgroup_taskset_migrate(). The two cases
2349 * can be distinguished by looking at whether @cset
2350 * has its ->mg_dst_cset set.
2351 */
2352 if (cset->mg_dst_cset)
2353 *dst_cssp = cset->mg_dst_cset->subsys[tset->ssid];
2354 else
2355 *dst_cssp = cset->subsys[tset->ssid];
2356
Tejun Heob3dc0942014-02-25 10:04:01 -05002357 return task;
2358 }
2359
2360 cset = list_next_entry(cset, mg_node);
2361 task = NULL;
2362 }
2363
2364 return NULL;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002365}
Tejun Heo2f7ee562011-12-12 18:12:21 -08002366
2367/**
Tejun Heo37ff9f82016-03-08 11:51:26 -05002368 * cgroup_taskset_migrate - migrate a taskset
Tejun Heoadaae5d2015-09-11 15:00:21 -04002369 * @tset: taget taskset
Tejun Heo37ff9f82016-03-08 11:51:26 -05002370 * @root: cgroup root the migration is taking place on
Tejun Heoadaae5d2015-09-11 15:00:21 -04002371 *
Tejun Heo37ff9f82016-03-08 11:51:26 -05002372 * Migrate tasks in @tset as setup by migration preparation functions.
2373 * This function fails iff one of the ->can_attach callbacks fails and
2374 * guarantees that either all or none of the tasks in @tset are migrated.
2375 * @tset is consumed regardless of success.
Tejun Heoadaae5d2015-09-11 15:00:21 -04002376 */
2377static int cgroup_taskset_migrate(struct cgroup_taskset *tset,
Tejun Heo37ff9f82016-03-08 11:51:26 -05002378 struct cgroup_root *root)
Tejun Heoadaae5d2015-09-11 15:00:21 -04002379{
Tejun Heo37ff9f82016-03-08 11:51:26 -05002380 struct cgroup_subsys *ss;
Tejun Heoadaae5d2015-09-11 15:00:21 -04002381 struct task_struct *task, *tmp_task;
2382 struct css_set *cset, *tmp_cset;
Tejun Heo37ff9f82016-03-08 11:51:26 -05002383 int ssid, failed_ssid, ret;
Tejun Heoadaae5d2015-09-11 15:00:21 -04002384
2385 /* methods shouldn't be called if no task is actually migrating */
2386 if (list_empty(&tset->src_csets))
2387 return 0;
2388
2389 /* check that we can legitimately attach to the cgroup */
Tejun Heo37ff9f82016-03-08 11:51:26 -05002390 do_each_subsys_mask(ss, ssid, root->subsys_mask) {
2391 if (ss->can_attach) {
2392 tset->ssid = ssid;
2393 ret = ss->can_attach(tset);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002394 if (ret) {
Tejun Heo37ff9f82016-03-08 11:51:26 -05002395 failed_ssid = ssid;
Tejun Heoadaae5d2015-09-11 15:00:21 -04002396 goto out_cancel_attach;
2397 }
2398 }
Tejun Heo37ff9f82016-03-08 11:51:26 -05002399 } while_each_subsys_mask();
Tejun Heoadaae5d2015-09-11 15:00:21 -04002400
2401 /*
2402 * Now that we're guaranteed success, proceed to move all tasks to
2403 * the new cgroup. There are no failure cases after here, so this
2404 * is the commit point.
2405 */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002406 spin_lock_bh(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002407 list_for_each_entry(cset, &tset->src_csets, mg_node) {
Tejun Heof6d7d042015-10-15 16:41:52 -04002408 list_for_each_entry_safe(task, tmp_task, &cset->mg_tasks, cg_list) {
2409 struct css_set *from_cset = task_css_set(task);
2410 struct css_set *to_cset = cset->mg_dst_cset;
2411
2412 get_css_set(to_cset);
2413 css_set_move_task(task, from_cset, to_cset, true);
2414 put_css_set_locked(from_cset);
2415 }
Tejun Heoadaae5d2015-09-11 15:00:21 -04002416 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002417 spin_unlock_bh(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002418
2419 /*
2420 * Migration is committed, all target tasks are now on dst_csets.
2421 * Nothing is sensitive to fork() after this point. Notify
2422 * controllers that migration is complete.
2423 */
2424 tset->csets = &tset->dst_csets;
2425
Tejun Heo37ff9f82016-03-08 11:51:26 -05002426 do_each_subsys_mask(ss, ssid, root->subsys_mask) {
2427 if (ss->attach) {
2428 tset->ssid = ssid;
2429 ss->attach(tset);
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002430 }
Tejun Heo37ff9f82016-03-08 11:51:26 -05002431 } while_each_subsys_mask();
Tejun Heoadaae5d2015-09-11 15:00:21 -04002432
2433 ret = 0;
2434 goto out_release_tset;
2435
2436out_cancel_attach:
Tejun Heo37ff9f82016-03-08 11:51:26 -05002437 do_each_subsys_mask(ss, ssid, root->subsys_mask) {
2438 if (ssid == failed_ssid)
Tejun Heoadaae5d2015-09-11 15:00:21 -04002439 break;
Tejun Heo37ff9f82016-03-08 11:51:26 -05002440 if (ss->cancel_attach) {
2441 tset->ssid = ssid;
2442 ss->cancel_attach(tset);
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05002443 }
Tejun Heo37ff9f82016-03-08 11:51:26 -05002444 } while_each_subsys_mask();
Tejun Heoadaae5d2015-09-11 15:00:21 -04002445out_release_tset:
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002446 spin_lock_bh(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002447 list_splice_init(&tset->dst_csets, &tset->src_csets);
2448 list_for_each_entry_safe(cset, tmp_cset, &tset->src_csets, mg_node) {
2449 list_splice_tail_init(&cset->mg_tasks, &cset->tasks);
2450 list_del_init(&cset->mg_node);
2451 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002452 spin_unlock_bh(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002453 return ret;
2454}
2455
2456/**
Tejun Heo6c694c82016-03-08 11:51:25 -05002457 * cgroup_may_migrate_to - verify whether a cgroup can be migration destination
2458 * @dst_cgrp: destination cgroup to test
2459 *
2460 * On the default hierarchy, except for the root, subtree_control must be
2461 * zero for migration destination cgroups with tasks so that child cgroups
2462 * don't compete against tasks.
2463 */
2464static bool cgroup_may_migrate_to(struct cgroup *dst_cgrp)
2465{
2466 return !cgroup_on_dfl(dst_cgrp) || !cgroup_parent(dst_cgrp) ||
2467 !dst_cgrp->subtree_control;
2468}
2469
2470/**
Tejun Heo1958d2d2014-02-25 10:04:03 -05002471 * cgroup_migrate_finish - cleanup after attach
2472 * @preloaded_csets: list of preloaded css_sets
Ben Blum74a11662011-05-26 16:25:20 -07002473 *
Tejun Heo1958d2d2014-02-25 10:04:03 -05002474 * Undo cgroup_migrate_add_src() and cgroup_migrate_prepare_dst(). See
2475 * those functions for details.
Ben Blum74a11662011-05-26 16:25:20 -07002476 */
Tejun Heo1958d2d2014-02-25 10:04:03 -05002477static void cgroup_migrate_finish(struct list_head *preloaded_csets)
Ben Blum74a11662011-05-26 16:25:20 -07002478{
Tejun Heo1958d2d2014-02-25 10:04:03 -05002479 struct css_set *cset, *tmp_cset;
2480
2481 lockdep_assert_held(&cgroup_mutex);
2482
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002483 spin_lock_bh(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002484 list_for_each_entry_safe(cset, tmp_cset, preloaded_csets, mg_preload_node) {
2485 cset->mg_src_cgrp = NULL;
Tejun Heoe4857982016-03-08 11:51:26 -05002486 cset->mg_dst_cgrp = NULL;
Tejun Heo1958d2d2014-02-25 10:04:03 -05002487 cset->mg_dst_cset = NULL;
2488 list_del_init(&cset->mg_preload_node);
Zefan Lia25eb522014-09-19 16:51:00 +08002489 put_css_set_locked(cset);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002490 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002491 spin_unlock_bh(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002492}
2493
2494/**
2495 * cgroup_migrate_add_src - add a migration source css_set
2496 * @src_cset: the source css_set to add
2497 * @dst_cgrp: the destination cgroup
2498 * @preloaded_csets: list of preloaded css_sets
2499 *
2500 * Tasks belonging to @src_cset are about to be migrated to @dst_cgrp. Pin
2501 * @src_cset and add it to @preloaded_csets, which should later be cleaned
2502 * up by cgroup_migrate_finish().
2503 *
Tejun Heo1ed13282015-09-16 12:53:17 -04002504 * This function may be called without holding cgroup_threadgroup_rwsem
2505 * even if the target is a process. Threads may be created and destroyed
2506 * but as long as cgroup_mutex is not dropped, no new css_set can be put
2507 * into play and the preloaded css_sets are guaranteed to cover all
2508 * migrations.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002509 */
2510static void cgroup_migrate_add_src(struct css_set *src_cset,
2511 struct cgroup *dst_cgrp,
2512 struct list_head *preloaded_csets)
2513{
2514 struct cgroup *src_cgrp;
2515
2516 lockdep_assert_held(&cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002517 lockdep_assert_held(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002518
Tejun Heo2b021cb2016-03-15 20:43:04 -04002519 /*
2520 * If ->dead, @src_set is associated with one or more dead cgroups
2521 * and doesn't contain any migratable tasks. Ignore it early so
2522 * that the rest of migration path doesn't get confused by it.
2523 */
2524 if (src_cset->dead)
2525 return;
2526
Tejun Heo1958d2d2014-02-25 10:04:03 -05002527 src_cgrp = cset_cgroup_from_root(src_cset, dst_cgrp->root);
2528
Tejun Heo1958d2d2014-02-25 10:04:03 -05002529 if (!list_empty(&src_cset->mg_preload_node))
2530 return;
2531
2532 WARN_ON(src_cset->mg_src_cgrp);
Tejun Heoe4857982016-03-08 11:51:26 -05002533 WARN_ON(src_cset->mg_dst_cgrp);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002534 WARN_ON(!list_empty(&src_cset->mg_tasks));
2535 WARN_ON(!list_empty(&src_cset->mg_node));
2536
2537 src_cset->mg_src_cgrp = src_cgrp;
Tejun Heoe4857982016-03-08 11:51:26 -05002538 src_cset->mg_dst_cgrp = dst_cgrp;
Tejun Heo1958d2d2014-02-25 10:04:03 -05002539 get_css_set(src_cset);
2540 list_add(&src_cset->mg_preload_node, preloaded_csets);
2541}
2542
2543/**
2544 * cgroup_migrate_prepare_dst - prepare destination css_sets for migration
Tejun Heo1958d2d2014-02-25 10:04:03 -05002545 * @preloaded_csets: list of preloaded source css_sets
2546 *
Tejun Heoe4857982016-03-08 11:51:26 -05002547 * Tasks are about to be moved and all the source css_sets have been
2548 * preloaded to @preloaded_csets. This function looks up and pins all
2549 * destination css_sets, links each to its source, and append them to
2550 * @preloaded_csets.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002551 *
2552 * This function must be called after cgroup_migrate_add_src() has been
2553 * called on each migration source css_set. After migration is performed
2554 * using cgroup_migrate(), cgroup_migrate_finish() must be called on
2555 * @preloaded_csets.
2556 */
Tejun Heoe4857982016-03-08 11:51:26 -05002557static int cgroup_migrate_prepare_dst(struct list_head *preloaded_csets)
Tejun Heo1958d2d2014-02-25 10:04:03 -05002558{
2559 LIST_HEAD(csets);
Tejun Heof817de92014-04-23 11:13:16 -04002560 struct css_set *src_cset, *tmp_cset;
Tejun Heo1958d2d2014-02-25 10:04:03 -05002561
2562 lockdep_assert_held(&cgroup_mutex);
2563
2564 /* look up the dst cset for each src cset and link it to src */
Tejun Heof817de92014-04-23 11:13:16 -04002565 list_for_each_entry_safe(src_cset, tmp_cset, preloaded_csets, mg_preload_node) {
Tejun Heo1958d2d2014-02-25 10:04:03 -05002566 struct css_set *dst_cset;
2567
Tejun Heoe4857982016-03-08 11:51:26 -05002568 dst_cset = find_css_set(src_cset, src_cset->mg_dst_cgrp);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002569 if (!dst_cset)
2570 goto err;
2571
2572 WARN_ON_ONCE(src_cset->mg_dst_cset || dst_cset->mg_dst_cset);
Tejun Heof817de92014-04-23 11:13:16 -04002573
2574 /*
2575 * If src cset equals dst, it's noop. Drop the src.
2576 * cgroup_migrate() will skip the cset too. Note that we
2577 * can't handle src == dst as some nodes are used by both.
2578 */
2579 if (src_cset == dst_cset) {
2580 src_cset->mg_src_cgrp = NULL;
Tejun Heoe4857982016-03-08 11:51:26 -05002581 src_cset->mg_dst_cgrp = NULL;
Tejun Heof817de92014-04-23 11:13:16 -04002582 list_del_init(&src_cset->mg_preload_node);
Zefan Lia25eb522014-09-19 16:51:00 +08002583 put_css_set(src_cset);
2584 put_css_set(dst_cset);
Tejun Heof817de92014-04-23 11:13:16 -04002585 continue;
2586 }
2587
Tejun Heo1958d2d2014-02-25 10:04:03 -05002588 src_cset->mg_dst_cset = dst_cset;
2589
2590 if (list_empty(&dst_cset->mg_preload_node))
2591 list_add(&dst_cset->mg_preload_node, &csets);
2592 else
Zefan Lia25eb522014-09-19 16:51:00 +08002593 put_css_set(dst_cset);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002594 }
2595
Tejun Heof817de92014-04-23 11:13:16 -04002596 list_splice_tail(&csets, preloaded_csets);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002597 return 0;
2598err:
2599 cgroup_migrate_finish(&csets);
2600 return -ENOMEM;
2601}
2602
2603/**
2604 * cgroup_migrate - migrate a process or task to a cgroup
Tejun Heo1958d2d2014-02-25 10:04:03 -05002605 * @leader: the leader of the process or the task to migrate
2606 * @threadgroup: whether @leader points to the whole process or a single task
Tejun Heo37ff9f82016-03-08 11:51:26 -05002607 * @root: cgroup root migration is taking place on
Tejun Heo1958d2d2014-02-25 10:04:03 -05002608 *
Tejun Heo37ff9f82016-03-08 11:51:26 -05002609 * Migrate a process or task denoted by @leader. If migrating a process,
2610 * the caller must be holding cgroup_threadgroup_rwsem. The caller is also
2611 * responsible for invoking cgroup_migrate_add_src() and
Tejun Heo1958d2d2014-02-25 10:04:03 -05002612 * cgroup_migrate_prepare_dst() on the targets before invoking this
2613 * function and following up with cgroup_migrate_finish().
2614 *
2615 * As long as a controller's ->can_attach() doesn't fail, this function is
2616 * guaranteed to succeed. This means that, excluding ->can_attach()
2617 * failure, when migrating multiple targets, the success or failure can be
2618 * decided for all targets by invoking group_migrate_prepare_dst() before
2619 * actually starting migrating.
2620 */
Tejun Heo9af2ec42015-09-11 15:00:20 -04002621static int cgroup_migrate(struct task_struct *leader, bool threadgroup,
Tejun Heo37ff9f82016-03-08 11:51:26 -05002622 struct cgroup_root *root)
Ben Blum74a11662011-05-26 16:25:20 -07002623{
Tejun Heoadaae5d2015-09-11 15:00:21 -04002624 struct cgroup_taskset tset = CGROUP_TASKSET_INIT(tset);
2625 struct task_struct *task;
Ben Blum74a11662011-05-26 16:25:20 -07002626
2627 /*
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002628 * Prevent freeing of tasks while we take a snapshot. Tasks that are
2629 * already PF_EXITING could be freed from underneath us unless we
2630 * take an rcu_read_lock.
2631 */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002632 spin_lock_bh(&css_set_lock);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002633 rcu_read_lock();
Tejun Heo9db8de32014-02-13 06:58:43 -05002634 task = leader;
Ben Blum74a11662011-05-26 16:25:20 -07002635 do {
Tejun Heoadaae5d2015-09-11 15:00:21 -04002636 cgroup_taskset_add(task, &tset);
Li Zefan081aa452013-03-13 09:17:09 +08002637 if (!threadgroup)
2638 break;
Tejun Heo9db8de32014-02-13 06:58:43 -05002639 } while_each_thread(leader, task);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002640 rcu_read_unlock();
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002641 spin_unlock_bh(&css_set_lock);
Ben Blum74a11662011-05-26 16:25:20 -07002642
Tejun Heo37ff9f82016-03-08 11:51:26 -05002643 return cgroup_taskset_migrate(&tset, root);
Ben Blum74a11662011-05-26 16:25:20 -07002644}
2645
Tejun Heo1958d2d2014-02-25 10:04:03 -05002646/**
2647 * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup
2648 * @dst_cgrp: the cgroup to attach to
2649 * @leader: the task or the leader of the threadgroup to be attached
2650 * @threadgroup: attach the whole threadgroup?
2651 *
Tejun Heo1ed13282015-09-16 12:53:17 -04002652 * Call holding cgroup_mutex and cgroup_threadgroup_rwsem.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002653 */
2654static int cgroup_attach_task(struct cgroup *dst_cgrp,
2655 struct task_struct *leader, bool threadgroup)
2656{
2657 LIST_HEAD(preloaded_csets);
2658 struct task_struct *task;
2659 int ret;
2660
Tejun Heo6c694c82016-03-08 11:51:25 -05002661 if (!cgroup_may_migrate_to(dst_cgrp))
2662 return -EBUSY;
2663
Tejun Heo1958d2d2014-02-25 10:04:03 -05002664 /* look up all src csets */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002665 spin_lock_bh(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002666 rcu_read_lock();
2667 task = leader;
2668 do {
2669 cgroup_migrate_add_src(task_css_set(task), dst_cgrp,
2670 &preloaded_csets);
2671 if (!threadgroup)
2672 break;
2673 } while_each_thread(leader, task);
2674 rcu_read_unlock();
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002675 spin_unlock_bh(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002676
2677 /* prepare dst csets and commit */
Tejun Heoe4857982016-03-08 11:51:26 -05002678 ret = cgroup_migrate_prepare_dst(&preloaded_csets);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002679 if (!ret)
Tejun Heo37ff9f82016-03-08 11:51:26 -05002680 ret = cgroup_migrate(leader, threadgroup, dst_cgrp->root);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002681
2682 cgroup_migrate_finish(&preloaded_csets);
2683 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07002684}
2685
Tejun Heo187fe842015-06-18 16:54:28 -04002686static int cgroup_procs_write_permission(struct task_struct *task,
2687 struct cgroup *dst_cgrp,
2688 struct kernfs_open_file *of)
Tejun Heodedf22e2015-06-18 16:54:28 -04002689{
2690 const struct cred *cred = current_cred();
2691 const struct cred *tcred = get_task_cred(task);
2692 int ret = 0;
2693
2694 /*
2695 * even if we're attaching all tasks in the thread group, we only
2696 * need to check permissions on one of them.
2697 */
2698 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
2699 !uid_eq(cred->euid, tcred->uid) &&
2700 !uid_eq(cred->euid, tcred->suid))
2701 ret = -EACCES;
2702
Tejun Heo187fe842015-06-18 16:54:28 -04002703 if (!ret && cgroup_on_dfl(dst_cgrp)) {
2704 struct super_block *sb = of->file->f_path.dentry->d_sb;
2705 struct cgroup *cgrp;
2706 struct inode *inode;
2707
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002708 spin_lock_bh(&css_set_lock);
Tejun Heo187fe842015-06-18 16:54:28 -04002709 cgrp = task_cgroup_from_root(task, &cgrp_dfl_root);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002710 spin_unlock_bh(&css_set_lock);
Tejun Heo187fe842015-06-18 16:54:28 -04002711
2712 while (!cgroup_is_descendant(dst_cgrp, cgrp))
2713 cgrp = cgroup_parent(cgrp);
2714
2715 ret = -ENOMEM;
Tejun Heo6f60ead2015-09-18 17:54:23 -04002716 inode = kernfs_get_inode(sb, cgrp->procs_file.kn);
Tejun Heo187fe842015-06-18 16:54:28 -04002717 if (inode) {
2718 ret = inode_permission(inode, MAY_WRITE);
2719 iput(inode);
2720 }
2721 }
2722
Tejun Heodedf22e2015-06-18 16:54:28 -04002723 put_cred(tcred);
2724 return ret;
2725}
2726
Ben Blum74a11662011-05-26 16:25:20 -07002727/*
2728 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08002729 * function to attach either it or all tasks in its threadgroup. Will lock
Tejun Heo0e1d7682014-02-25 10:04:03 -05002730 * cgroup_mutex and threadgroup.
Ben Blum74a11662011-05-26 16:25:20 -07002731 */
Tejun Heoacbef752014-05-13 12:16:22 -04002732static ssize_t __cgroup_procs_write(struct kernfs_open_file *of, char *buf,
2733 size_t nbytes, loff_t off, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002734{
Paul Menagebbcb81d2007-10-18 23:39:32 -07002735 struct task_struct *tsk;
Tejun Heoe76ecae2014-05-13 12:19:23 -04002736 struct cgroup *cgrp;
Tejun Heoacbef752014-05-13 12:16:22 -04002737 pid_t pid;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002738 int ret;
2739
Tejun Heoacbef752014-05-13 12:16:22 -04002740 if (kstrtoint(strstrip(buf), 0, &pid) || pid < 0)
2741 return -EINVAL;
2742
Tejun Heo945ba192016-03-03 09:58:00 -05002743 cgrp = cgroup_kn_lock_live(of->kn, false);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002744 if (!cgrp)
Ben Blum74a11662011-05-26 16:25:20 -07002745 return -ENODEV;
2746
Tejun Heo3014dde2015-09-16 13:03:02 -04002747 percpu_down_write(&cgroup_threadgroup_rwsem);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002748 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002749 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002750 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07002751 if (!tsk) {
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09002752 ret = -ESRCH;
Tejun Heo3014dde2015-09-16 13:03:02 -04002753 goto out_unlock_rcu;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002754 }
Tejun Heodedf22e2015-06-18 16:54:28 -04002755 } else {
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002756 tsk = current;
Tejun Heodedf22e2015-06-18 16:54:28 -04002757 }
Tejun Heocd3d0952011-12-12 18:12:21 -08002758
2759 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002760 tsk = tsk->group_leader;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002761
2762 /*
Tejun Heo14a40ff2013-03-19 13:45:20 -07002763 * Workqueue threads may acquire PF_NO_SETAFFINITY and become
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002764 * trapped in a cpuset, or RT worker may be born in a cgroup
2765 * with no rt_runtime allocated. Just say no.
2766 */
Tejun Heo14a40ff2013-03-19 13:45:20 -07002767 if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) {
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002768 ret = -EINVAL;
Tejun Heo3014dde2015-09-16 13:03:02 -04002769 goto out_unlock_rcu;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002770 }
2771
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002772 get_task_struct(tsk);
2773 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08002774
Tejun Heo187fe842015-06-18 16:54:28 -04002775 ret = cgroup_procs_write_permission(tsk, cgrp, of);
Tejun Heodedf22e2015-06-18 16:54:28 -04002776 if (!ret)
2777 ret = cgroup_attach_task(cgrp, tsk, threadgroup);
Li Zefan081aa452013-03-13 09:17:09 +08002778
Tejun Heof9f9e7b2015-09-16 11:51:12 -04002779 put_task_struct(tsk);
Tejun Heo3014dde2015-09-16 13:03:02 -04002780 goto out_unlock_threadgroup;
2781
2782out_unlock_rcu:
2783 rcu_read_unlock();
2784out_unlock_threadgroup:
2785 percpu_up_write(&cgroup_threadgroup_rwsem);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002786 cgroup_kn_unlock(of->kn);
Tejun Heoe93ad192016-01-19 12:18:41 -05002787 cpuset_post_attach_flush();
Tejun Heoacbef752014-05-13 12:16:22 -04002788 return ret ?: nbytes;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002789}
2790
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002791/**
2792 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
2793 * @from: attach to all cgroups of a given task
2794 * @tsk: the task to be attached
2795 */
2796int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
2797{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002798 struct cgroup_root *root;
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002799 int retval = 0;
2800
Tejun Heo47cfcd02013-04-07 09:29:51 -07002801 mutex_lock(&cgroup_mutex);
Tejun Heo985ed672014-03-19 10:23:53 -04002802 for_each_root(root) {
Tejun Heo96d365e2014-02-13 06:58:40 -05002803 struct cgroup *from_cgrp;
2804
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002805 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04002806 continue;
2807
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002808 spin_lock_bh(&css_set_lock);
Tejun Heo96d365e2014-02-13 06:58:40 -05002809 from_cgrp = task_cgroup_from_root(from, root);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002810 spin_unlock_bh(&css_set_lock);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002811
Li Zefan6f4b7e62013-07-31 16:18:36 +08002812 retval = cgroup_attach_task(from_cgrp, tsk, false);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002813 if (retval)
2814 break;
2815 }
Tejun Heo47cfcd02013-04-07 09:29:51 -07002816 mutex_unlock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002817
2818 return retval;
2819}
2820EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
2821
Tejun Heoacbef752014-05-13 12:16:22 -04002822static ssize_t cgroup_tasks_write(struct kernfs_open_file *of,
2823 char *buf, size_t nbytes, loff_t off)
Paul Menageaf351022008-07-25 01:47:01 -07002824{
Tejun Heoacbef752014-05-13 12:16:22 -04002825 return __cgroup_procs_write(of, buf, nbytes, off, false);
Ben Blum74a11662011-05-26 16:25:20 -07002826}
2827
Tejun Heoacbef752014-05-13 12:16:22 -04002828static ssize_t cgroup_procs_write(struct kernfs_open_file *of,
2829 char *buf, size_t nbytes, loff_t off)
Ben Blum74a11662011-05-26 16:25:20 -07002830{
Tejun Heoacbef752014-05-13 12:16:22 -04002831 return __cgroup_procs_write(of, buf, nbytes, off, true);
Paul Menageaf351022008-07-25 01:47:01 -07002832}
2833
Tejun Heo451af502014-05-13 12:16:21 -04002834static ssize_t cgroup_release_agent_write(struct kernfs_open_file *of,
2835 char *buf, size_t nbytes, loff_t off)
Paul Menagee788e062008-07-25 01:46:59 -07002836{
Tejun Heoe76ecae2014-05-13 12:19:23 -04002837 struct cgroup *cgrp;
Tejun Heo5f469902014-02-11 11:52:48 -05002838
Tejun Heoe76ecae2014-05-13 12:19:23 -04002839 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
2840
Tejun Heo945ba192016-03-03 09:58:00 -05002841 cgrp = cgroup_kn_lock_live(of->kn, false);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002842 if (!cgrp)
Paul Menagee788e062008-07-25 01:46:59 -07002843 return -ENODEV;
Tejun Heo69e943b2014-02-08 10:36:58 -05002844 spin_lock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002845 strlcpy(cgrp->root->release_agent_path, strstrip(buf),
2846 sizeof(cgrp->root->release_agent_path));
Tejun Heo69e943b2014-02-08 10:36:58 -05002847 spin_unlock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002848 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04002849 return nbytes;
Paul Menagee788e062008-07-25 01:46:59 -07002850}
2851
Tejun Heo2da8ca82013-12-05 12:28:04 -05002852static int cgroup_release_agent_show(struct seq_file *seq, void *v)
Paul Menagee788e062008-07-25 01:46:59 -07002853{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002854 struct cgroup *cgrp = seq_css(seq)->cgroup;
Tejun Heo182446d2013-08-08 20:11:24 -04002855
Tejun Heo46cfeb02014-05-13 12:11:00 -04002856 spin_lock(&release_agent_path_lock);
Paul Menagee788e062008-07-25 01:46:59 -07002857 seq_puts(seq, cgrp->root->release_agent_path);
Tejun Heo46cfeb02014-05-13 12:11:00 -04002858 spin_unlock(&release_agent_path_lock);
Paul Menagee788e062008-07-25 01:46:59 -07002859 seq_putc(seq, '\n');
Paul Menagee788e062008-07-25 01:46:59 -07002860 return 0;
2861}
2862
Tejun Heo2da8ca82013-12-05 12:28:04 -05002863static int cgroup_sane_behavior_show(struct seq_file *seq, void *v)
Tejun Heo873fe092013-04-14 20:15:26 -07002864{
Tejun Heoc1d5d422014-07-09 10:08:08 -04002865 seq_puts(seq, "0\n");
Paul Menage81a6a5c2007-10-18 23:39:38 -07002866 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002867}
2868
Tejun Heo6e5c8302016-02-22 22:25:47 -05002869static void cgroup_print_ss_mask(struct seq_file *seq, u16 ss_mask)
Tejun Heof8f22e52014-04-23 11:13:16 -04002870{
2871 struct cgroup_subsys *ss;
2872 bool printed = false;
2873 int ssid;
2874
Tejun Heob4e0eea2016-02-22 22:25:46 -05002875 do_each_subsys_mask(ss, ssid, ss_mask) {
Aleksa Saraia966a4e2015-06-06 10:02:15 +10002876 if (printed)
2877 seq_putc(seq, ' ');
2878 seq_printf(seq, "%s", ss->name);
2879 printed = true;
Tejun Heob4e0eea2016-02-22 22:25:46 -05002880 } while_each_subsys_mask();
Tejun Heof8f22e52014-04-23 11:13:16 -04002881 if (printed)
2882 seq_putc(seq, '\n');
2883}
2884
Tejun Heof8f22e52014-04-23 11:13:16 -04002885/* show controllers which are enabled from the parent */
2886static int cgroup_controllers_show(struct seq_file *seq, void *v)
2887{
2888 struct cgroup *cgrp = seq_css(seq)->cgroup;
2889
Tejun Heo5531dc92016-03-03 09:57:58 -05002890 cgroup_print_ss_mask(seq, cgroup_control(cgrp));
Tejun Heof8f22e52014-04-23 11:13:16 -04002891 return 0;
2892}
2893
2894/* show controllers which are enabled for a given cgroup's children */
2895static int cgroup_subtree_control_show(struct seq_file *seq, void *v)
2896{
2897 struct cgroup *cgrp = seq_css(seq)->cgroup;
2898
Tejun Heo667c2492014-07-08 18:02:56 -04002899 cgroup_print_ss_mask(seq, cgrp->subtree_control);
Tejun Heof8f22e52014-04-23 11:13:16 -04002900 return 0;
2901}
2902
2903/**
2904 * cgroup_update_dfl_csses - update css assoc of a subtree in default hierarchy
2905 * @cgrp: root of the subtree to update csses for
2906 *
Tejun Heo54962602016-03-03 09:58:01 -05002907 * @cgrp's control masks have changed and its subtree's css associations
2908 * need to be updated accordingly. This function looks up all css_sets
2909 * which are attached to the subtree, creates the matching updated css_sets
2910 * and migrates the tasks to the new ones.
Tejun Heof8f22e52014-04-23 11:13:16 -04002911 */
2912static int cgroup_update_dfl_csses(struct cgroup *cgrp)
2913{
2914 LIST_HEAD(preloaded_csets);
Tejun Heo10265072015-09-11 15:00:22 -04002915 struct cgroup_taskset tset = CGROUP_TASKSET_INIT(tset);
Tejun Heo54962602016-03-03 09:58:01 -05002916 struct cgroup_subsys_state *d_css;
2917 struct cgroup *dsct;
Tejun Heof8f22e52014-04-23 11:13:16 -04002918 struct css_set *src_cset;
2919 int ret;
2920
Tejun Heof8f22e52014-04-23 11:13:16 -04002921 lockdep_assert_held(&cgroup_mutex);
2922
Tejun Heo3014dde2015-09-16 13:03:02 -04002923 percpu_down_write(&cgroup_threadgroup_rwsem);
2924
Tejun Heof8f22e52014-04-23 11:13:16 -04002925 /* look up all csses currently attached to @cgrp's subtree */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002926 spin_lock_bh(&css_set_lock);
Tejun Heo54962602016-03-03 09:58:01 -05002927 cgroup_for_each_live_descendant_pre(dsct, d_css, cgrp) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002928 struct cgrp_cset_link *link;
2929
Tejun Heo54962602016-03-03 09:58:01 -05002930 list_for_each_entry(link, &dsct->cset_links, cset_link)
Tejun Heo58cdb1c2016-03-08 11:51:25 -05002931 cgroup_migrate_add_src(link->cset, dsct,
Tejun Heof8f22e52014-04-23 11:13:16 -04002932 &preloaded_csets);
2933 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002934 spin_unlock_bh(&css_set_lock);
Tejun Heof8f22e52014-04-23 11:13:16 -04002935
2936 /* NULL dst indicates self on default hierarchy */
Tejun Heoe4857982016-03-08 11:51:26 -05002937 ret = cgroup_migrate_prepare_dst(&preloaded_csets);
Tejun Heof8f22e52014-04-23 11:13:16 -04002938 if (ret)
2939 goto out_finish;
2940
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002941 spin_lock_bh(&css_set_lock);
Tejun Heof8f22e52014-04-23 11:13:16 -04002942 list_for_each_entry(src_cset, &preloaded_csets, mg_preload_node) {
Tejun Heo10265072015-09-11 15:00:22 -04002943 struct task_struct *task, *ntask;
Tejun Heof8f22e52014-04-23 11:13:16 -04002944
2945 /* src_csets precede dst_csets, break on the first dst_cset */
2946 if (!src_cset->mg_src_cgrp)
2947 break;
2948
Tejun Heo10265072015-09-11 15:00:22 -04002949 /* all tasks in src_csets need to be migrated */
2950 list_for_each_entry_safe(task, ntask, &src_cset->tasks, cg_list)
2951 cgroup_taskset_add(task, &tset);
Tejun Heof8f22e52014-04-23 11:13:16 -04002952 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002953 spin_unlock_bh(&css_set_lock);
Tejun Heof8f22e52014-04-23 11:13:16 -04002954
Tejun Heo37ff9f82016-03-08 11:51:26 -05002955 ret = cgroup_taskset_migrate(&tset, cgrp->root);
Tejun Heof8f22e52014-04-23 11:13:16 -04002956out_finish:
2957 cgroup_migrate_finish(&preloaded_csets);
Tejun Heo3014dde2015-09-16 13:03:02 -04002958 percpu_up_write(&cgroup_threadgroup_rwsem);
Tejun Heof8f22e52014-04-23 11:13:16 -04002959 return ret;
2960}
2961
Tejun Heo1b9b96a2016-03-03 09:57:59 -05002962/**
Tejun Heo945ba192016-03-03 09:58:00 -05002963 * cgroup_lock_and_drain_offline - lock cgroup_mutex and drain offlined csses
Tejun Heoce3f1d92016-03-03 09:57:59 -05002964 * @cgrp: root of the target subtree
Tejun Heo1b9b96a2016-03-03 09:57:59 -05002965 *
2966 * Because css offlining is asynchronous, userland may try to re-enable a
Tejun Heo945ba192016-03-03 09:58:00 -05002967 * controller while the previous css is still around. This function grabs
2968 * cgroup_mutex and drains the previous css instances of @cgrp's subtree.
Tejun Heo1b9b96a2016-03-03 09:57:59 -05002969 */
Tejun Heo945ba192016-03-03 09:58:00 -05002970static void cgroup_lock_and_drain_offline(struct cgroup *cgrp)
2971 __acquires(&cgroup_mutex)
Tejun Heo1b9b96a2016-03-03 09:57:59 -05002972{
2973 struct cgroup *dsct;
Tejun Heoce3f1d92016-03-03 09:57:59 -05002974 struct cgroup_subsys_state *d_css;
Tejun Heo1b9b96a2016-03-03 09:57:59 -05002975 struct cgroup_subsys *ss;
2976 int ssid;
2977
Tejun Heo945ba192016-03-03 09:58:00 -05002978restart:
2979 mutex_lock(&cgroup_mutex);
Tejun Heo1b9b96a2016-03-03 09:57:59 -05002980
Tejun Heoce3f1d92016-03-03 09:57:59 -05002981 cgroup_for_each_live_descendant_post(dsct, d_css, cgrp) {
Tejun Heo1b9b96a2016-03-03 09:57:59 -05002982 for_each_subsys(ss, ssid) {
2983 struct cgroup_subsys_state *css = cgroup_css(dsct, ss);
2984 DEFINE_WAIT(wait);
2985
Tejun Heoce3f1d92016-03-03 09:57:59 -05002986 if (!css || !percpu_ref_is_dying(&css->refcnt))
Tejun Heo1b9b96a2016-03-03 09:57:59 -05002987 continue;
2988
2989 cgroup_get(dsct);
2990 prepare_to_wait(&dsct->offline_waitq, &wait,
2991 TASK_UNINTERRUPTIBLE);
2992
2993 mutex_unlock(&cgroup_mutex);
2994 schedule();
2995 finish_wait(&dsct->offline_waitq, &wait);
Tejun Heo1b9b96a2016-03-03 09:57:59 -05002996
2997 cgroup_put(dsct);
Tejun Heo945ba192016-03-03 09:58:00 -05002998 goto restart;
Tejun Heo1b9b96a2016-03-03 09:57:59 -05002999 }
3000 }
Tejun Heo1b9b96a2016-03-03 09:57:59 -05003001}
3002
Tejun Heo12b3bb62016-03-03 09:57:59 -05003003/**
Tejun Heo15a27c32016-03-03 09:57:59 -05003004 * cgroup_save_control - save control masks of a subtree
3005 * @cgrp: root of the target subtree
3006 *
3007 * Save ->subtree_control and ->subtree_ss_mask to the respective old_
3008 * prefixed fields for @cgrp's subtree including @cgrp itself.
3009 */
3010static void cgroup_save_control(struct cgroup *cgrp)
3011{
3012 struct cgroup *dsct;
3013 struct cgroup_subsys_state *d_css;
3014
3015 cgroup_for_each_live_descendant_pre(dsct, d_css, cgrp) {
3016 dsct->old_subtree_control = dsct->subtree_control;
3017 dsct->old_subtree_ss_mask = dsct->subtree_ss_mask;
3018 }
3019}
3020
3021/**
3022 * cgroup_propagate_control - refresh control masks of a subtree
3023 * @cgrp: root of the target subtree
3024 *
3025 * For @cgrp and its subtree, ensure ->subtree_ss_mask matches
3026 * ->subtree_control and propagate controller availability through the
3027 * subtree so that descendants don't have unavailable controllers enabled.
3028 */
3029static void cgroup_propagate_control(struct cgroup *cgrp)
3030{
3031 struct cgroup *dsct;
3032 struct cgroup_subsys_state *d_css;
3033
3034 cgroup_for_each_live_descendant_pre(dsct, d_css, cgrp) {
3035 dsct->subtree_control &= cgroup_control(dsct);
Tejun Heo5ced2512016-03-03 09:58:01 -05003036 dsct->subtree_ss_mask =
3037 cgroup_calc_subtree_ss_mask(dsct->subtree_control,
3038 cgroup_ss_mask(dsct));
Tejun Heo15a27c32016-03-03 09:57:59 -05003039 }
3040}
3041
3042/**
3043 * cgroup_restore_control - restore control masks of a subtree
3044 * @cgrp: root of the target subtree
3045 *
3046 * Restore ->subtree_control and ->subtree_ss_mask from the respective old_
3047 * prefixed fields for @cgrp's subtree including @cgrp itself.
3048 */
3049static void cgroup_restore_control(struct cgroup *cgrp)
3050{
3051 struct cgroup *dsct;
3052 struct cgroup_subsys_state *d_css;
3053
3054 cgroup_for_each_live_descendant_post(dsct, d_css, cgrp) {
3055 dsct->subtree_control = dsct->old_subtree_control;
3056 dsct->subtree_ss_mask = dsct->old_subtree_ss_mask;
3057 }
3058}
3059
Tejun Heof6d635ad2016-03-08 11:51:26 -05003060static bool css_visible(struct cgroup_subsys_state *css)
3061{
3062 struct cgroup_subsys *ss = css->ss;
3063 struct cgroup *cgrp = css->cgroup;
3064
3065 if (cgroup_control(cgrp) & (1 << ss->id))
3066 return true;
3067 if (!(cgroup_ss_mask(cgrp) & (1 << ss->id)))
3068 return false;
3069 return cgroup_on_dfl(cgrp) && ss->implicit_on_dfl;
3070}
3071
Tejun Heo15a27c32016-03-03 09:57:59 -05003072/**
Tejun Heobdb53bd2016-03-03 09:57:59 -05003073 * cgroup_apply_control_enable - enable or show csses according to control
Tejun Heoce3f1d92016-03-03 09:57:59 -05003074 * @cgrp: root of the target subtree
Tejun Heobdb53bd2016-03-03 09:57:59 -05003075 *
Tejun Heoce3f1d92016-03-03 09:57:59 -05003076 * Walk @cgrp's subtree and create new csses or make the existing ones
Tejun Heobdb53bd2016-03-03 09:57:59 -05003077 * visible. A css is created invisible if it's being implicitly enabled
3078 * through dependency. An invisible css is made visible when the userland
3079 * explicitly enables it.
3080 *
3081 * Returns 0 on success, -errno on failure. On failure, csses which have
3082 * been processed already aren't cleaned up. The caller is responsible for
3083 * cleaning up with cgroup_apply_control_disble().
3084 */
3085static int cgroup_apply_control_enable(struct cgroup *cgrp)
3086{
3087 struct cgroup *dsct;
Tejun Heoce3f1d92016-03-03 09:57:59 -05003088 struct cgroup_subsys_state *d_css;
Tejun Heobdb53bd2016-03-03 09:57:59 -05003089 struct cgroup_subsys *ss;
3090 int ssid, ret;
3091
Tejun Heoce3f1d92016-03-03 09:57:59 -05003092 cgroup_for_each_live_descendant_pre(dsct, d_css, cgrp) {
Tejun Heobdb53bd2016-03-03 09:57:59 -05003093 for_each_subsys(ss, ssid) {
3094 struct cgroup_subsys_state *css = cgroup_css(dsct, ss);
3095
Tejun Heo945ba192016-03-03 09:58:00 -05003096 WARN_ON_ONCE(css && percpu_ref_is_dying(&css->refcnt));
3097
Tejun Heobdb53bd2016-03-03 09:57:59 -05003098 if (!(cgroup_ss_mask(dsct) & (1 << ss->id)))
3099 continue;
3100
3101 if (!css) {
3102 css = css_create(dsct, ss);
3103 if (IS_ERR(css))
3104 return PTR_ERR(css);
3105 }
3106
Tejun Heof6d635ad2016-03-08 11:51:26 -05003107 if (css_visible(css)) {
Tejun Heo334c3672016-03-03 09:58:01 -05003108 ret = css_populate_dir(css);
Tejun Heobdb53bd2016-03-03 09:57:59 -05003109 if (ret)
3110 return ret;
3111 }
3112 }
3113 }
3114
3115 return 0;
3116}
3117
3118/**
Tejun Heo12b3bb62016-03-03 09:57:59 -05003119 * cgroup_apply_control_disable - kill or hide csses according to control
Tejun Heoce3f1d92016-03-03 09:57:59 -05003120 * @cgrp: root of the target subtree
Tejun Heo12b3bb62016-03-03 09:57:59 -05003121 *
Tejun Heoce3f1d92016-03-03 09:57:59 -05003122 * Walk @cgrp's subtree and kill and hide csses so that they match
Tejun Heo12b3bb62016-03-03 09:57:59 -05003123 * cgroup_ss_mask() and cgroup_visible_mask().
3124 *
3125 * A css is hidden when the userland requests it to be disabled while other
3126 * subsystems are still depending on it. The css must not actively control
3127 * resources and be in the vanilla state if it's made visible again later.
3128 * Controllers which may be depended upon should provide ->css_reset() for
3129 * this purpose.
3130 */
3131static void cgroup_apply_control_disable(struct cgroup *cgrp)
3132{
3133 struct cgroup *dsct;
Tejun Heoce3f1d92016-03-03 09:57:59 -05003134 struct cgroup_subsys_state *d_css;
Tejun Heo12b3bb62016-03-03 09:57:59 -05003135 struct cgroup_subsys *ss;
3136 int ssid;
3137
Tejun Heoce3f1d92016-03-03 09:57:59 -05003138 cgroup_for_each_live_descendant_post(dsct, d_css, cgrp) {
Tejun Heo12b3bb62016-03-03 09:57:59 -05003139 for_each_subsys(ss, ssid) {
3140 struct cgroup_subsys_state *css = cgroup_css(dsct, ss);
3141
Tejun Heo945ba192016-03-03 09:58:00 -05003142 WARN_ON_ONCE(css && percpu_ref_is_dying(&css->refcnt));
3143
Tejun Heo12b3bb62016-03-03 09:57:59 -05003144 if (!css)
3145 continue;
3146
Tejun Heo334c3672016-03-03 09:58:01 -05003147 if (css->parent &&
3148 !(cgroup_ss_mask(dsct) & (1 << ss->id))) {
Tejun Heo12b3bb62016-03-03 09:57:59 -05003149 kill_css(css);
Tejun Heof6d635ad2016-03-08 11:51:26 -05003150 } else if (!css_visible(css)) {
Tejun Heo334c3672016-03-03 09:58:01 -05003151 css_clear_dir(css);
Tejun Heo12b3bb62016-03-03 09:57:59 -05003152 if (ss->css_reset)
3153 ss->css_reset(css);
3154 }
3155 }
3156 }
3157}
3158
Tejun Heof7b28142016-03-03 09:58:00 -05003159/**
3160 * cgroup_apply_control - apply control mask updates to the subtree
3161 * @cgrp: root of the target subtree
3162 *
3163 * subsystems can be enabled and disabled in a subtree using the following
3164 * steps.
3165 *
3166 * 1. Call cgroup_save_control() to stash the current state.
3167 * 2. Update ->subtree_control masks in the subtree as desired.
3168 * 3. Call cgroup_apply_control() to apply the changes.
3169 * 4. Optionally perform other related operations.
3170 * 5. Call cgroup_finalize_control() to finish up.
3171 *
3172 * This function implements step 3 and propagates the mask changes
3173 * throughout @cgrp's subtree, updates csses accordingly and perform
3174 * process migrations.
3175 */
3176static int cgroup_apply_control(struct cgroup *cgrp)
3177{
3178 int ret;
3179
3180 cgroup_propagate_control(cgrp);
3181
3182 ret = cgroup_apply_control_enable(cgrp);
3183 if (ret)
3184 return ret;
3185
3186 /*
3187 * At this point, cgroup_e_css() results reflect the new csses
3188 * making the following cgroup_update_dfl_csses() properly update
3189 * css associations of all tasks in the subtree.
3190 */
3191 ret = cgroup_update_dfl_csses(cgrp);
3192 if (ret)
3193 return ret;
3194
3195 return 0;
3196}
3197
3198/**
3199 * cgroup_finalize_control - finalize control mask update
3200 * @cgrp: root of the target subtree
3201 * @ret: the result of the update
3202 *
3203 * Finalize control mask update. See cgroup_apply_control() for more info.
3204 */
3205static void cgroup_finalize_control(struct cgroup *cgrp, int ret)
3206{
3207 if (ret) {
3208 cgroup_restore_control(cgrp);
3209 cgroup_propagate_control(cgrp);
3210 }
3211
3212 cgroup_apply_control_disable(cgrp);
3213}
3214
Tejun Heof8f22e52014-04-23 11:13:16 -04003215/* change the enabled child controllers for a cgroup in the default hierarchy */
Tejun Heo451af502014-05-13 12:16:21 -04003216static ssize_t cgroup_subtree_control_write(struct kernfs_open_file *of,
3217 char *buf, size_t nbytes,
3218 loff_t off)
Tejun Heof8f22e52014-04-23 11:13:16 -04003219{
Tejun Heo6e5c8302016-02-22 22:25:47 -05003220 u16 enable = 0, disable = 0;
Tejun Heoa9746d82014-05-13 12:19:22 -04003221 struct cgroup *cgrp, *child;
Tejun Heof8f22e52014-04-23 11:13:16 -04003222 struct cgroup_subsys *ss;
Tejun Heo451af502014-05-13 12:16:21 -04003223 char *tok;
Tejun Heof8f22e52014-04-23 11:13:16 -04003224 int ssid, ret;
3225
3226 /*
Tejun Heod37167a2014-05-13 12:10:59 -04003227 * Parse input - space separated list of subsystem names prefixed
3228 * with either + or -.
Tejun Heof8f22e52014-04-23 11:13:16 -04003229 */
Tejun Heo451af502014-05-13 12:16:21 -04003230 buf = strstrip(buf);
3231 while ((tok = strsep(&buf, " "))) {
Tejun Heod37167a2014-05-13 12:10:59 -04003232 if (tok[0] == '\0')
3233 continue;
Tejun Heoa7165262016-02-23 10:00:50 -05003234 do_each_subsys_mask(ss, ssid, ~cgrp_dfl_inhibit_ss_mask) {
Tejun Heofc5ed1e2015-09-18 11:56:28 -04003235 if (!cgroup_ssid_enabled(ssid) ||
3236 strcmp(tok + 1, ss->name))
Tejun Heof8f22e52014-04-23 11:13:16 -04003237 continue;
3238
3239 if (*tok == '+') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04003240 enable |= 1 << ssid;
3241 disable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04003242 } else if (*tok == '-') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04003243 disable |= 1 << ssid;
3244 enable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04003245 } else {
3246 return -EINVAL;
3247 }
3248 break;
Tejun Heob4e0eea2016-02-22 22:25:46 -05003249 } while_each_subsys_mask();
Tejun Heof8f22e52014-04-23 11:13:16 -04003250 if (ssid == CGROUP_SUBSYS_COUNT)
3251 return -EINVAL;
3252 }
3253
Tejun Heo945ba192016-03-03 09:58:00 -05003254 cgrp = cgroup_kn_lock_live(of->kn, true);
Tejun Heoa9746d82014-05-13 12:19:22 -04003255 if (!cgrp)
3256 return -ENODEV;
Tejun Heof8f22e52014-04-23 11:13:16 -04003257
3258 for_each_subsys(ss, ssid) {
3259 if (enable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04003260 if (cgrp->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04003261 enable &= ~(1 << ssid);
3262 continue;
3263 }
3264
Tejun Heo5531dc92016-03-03 09:57:58 -05003265 if (!(cgroup_control(cgrp) & (1 << ssid))) {
Tejun Heoc29adf22014-07-08 18:02:56 -04003266 ret = -ENOENT;
3267 goto out_unlock;
3268 }
Tejun Heof8f22e52014-04-23 11:13:16 -04003269 } else if (disable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04003270 if (!(cgrp->subtree_control & (1 << ssid))) {
Tejun Heof8f22e52014-04-23 11:13:16 -04003271 disable &= ~(1 << ssid);
3272 continue;
3273 }
3274
3275 /* a child has it enabled? */
3276 cgroup_for_each_live_child(child, cgrp) {
Tejun Heo667c2492014-07-08 18:02:56 -04003277 if (child->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04003278 ret = -EBUSY;
Tejun Heoddab2b62014-05-13 12:19:22 -04003279 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04003280 }
3281 }
3282 }
3283 }
3284
3285 if (!enable && !disable) {
3286 ret = 0;
Tejun Heoddab2b62014-05-13 12:19:22 -04003287 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04003288 }
3289
3290 /*
Tejun Heo667c2492014-07-08 18:02:56 -04003291 * Except for the root, subtree_control must be zero for a cgroup
Tejun Heof8f22e52014-04-23 11:13:16 -04003292 * with tasks so that child cgroups don't compete against tasks.
3293 */
Tejun Heod51f39b2014-05-16 13:22:48 -04003294 if (enable && cgroup_parent(cgrp) && !list_empty(&cgrp->cset_links)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04003295 ret = -EBUSY;
3296 goto out_unlock;
3297 }
3298
Tejun Heo15a27c32016-03-03 09:57:59 -05003299 /* save and update control masks and prepare csses */
3300 cgroup_save_control(cgrp);
Tejun Heoc29adf22014-07-08 18:02:56 -04003301
Tejun Heo15a27c32016-03-03 09:57:59 -05003302 cgrp->subtree_control |= enable;
3303 cgrp->subtree_control &= ~disable;
Tejun Heof63070d2014-07-08 18:02:57 -04003304
Tejun Heof7b28142016-03-03 09:58:00 -05003305 ret = cgroup_apply_control(cgrp);
Tejun Heo755bf5e2014-11-18 02:49:50 -05003306
Tejun Heof7b28142016-03-03 09:58:00 -05003307 cgroup_finalize_control(cgrp, ret);
Tejun Heof8f22e52014-04-23 11:13:16 -04003308
3309 kernfs_activate(cgrp->kn);
3310 ret = 0;
3311out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04003312 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04003313 return ret ?: nbytes;
Tejun Heof8f22e52014-04-23 11:13:16 -04003314}
3315
Tejun Heo4a07c222015-09-18 17:54:22 -04003316static int cgroup_events_show(struct seq_file *seq, void *v)
Tejun Heo842b5972014-04-25 18:28:02 -04003317{
Tejun Heo4a07c222015-09-18 17:54:22 -04003318 seq_printf(seq, "populated %d\n",
Tejun Heo27bd4db2015-10-15 16:41:50 -04003319 cgroup_is_populated(seq_css(seq)->cgroup));
Tejun Heo842b5972014-04-25 18:28:02 -04003320 return 0;
3321}
3322
Tejun Heo2bd59d42014-02-11 11:52:49 -05003323static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf,
3324 size_t nbytes, loff_t off)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003325{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003326 struct cgroup *cgrp = of->kn->parent->priv;
3327 struct cftype *cft = of->kn->priv;
3328 struct cgroup_subsys_state *css;
Tejun Heoa742c592013-12-05 12:28:03 -05003329 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003330
Tejun Heob4168642014-05-13 12:16:21 -04003331 if (cft->write)
3332 return cft->write(of, buf, nbytes, off);
3333
Tejun Heo2bd59d42014-02-11 11:52:49 -05003334 /*
3335 * kernfs guarantees that a file isn't deleted with operations in
3336 * flight, which means that the matching css is and stays alive and
3337 * doesn't need to be pinned. The RCU locking is not necessary
3338 * either. It's just for the convenience of using cgroup_css().
3339 */
3340 rcu_read_lock();
3341 css = cgroup_css(cgrp, cft->ss);
3342 rcu_read_unlock();
Paul Menageddbcc7e2007-10-18 23:39:30 -07003343
Tejun Heo451af502014-05-13 12:16:21 -04003344 if (cft->write_u64) {
Tejun Heoa742c592013-12-05 12:28:03 -05003345 unsigned long long v;
3346 ret = kstrtoull(buf, 0, &v);
3347 if (!ret)
3348 ret = cft->write_u64(css, cft, v);
3349 } else if (cft->write_s64) {
3350 long long v;
3351 ret = kstrtoll(buf, 0, &v);
3352 if (!ret)
3353 ret = cft->write_s64(css, cft, v);
Tejun Heoa742c592013-12-05 12:28:03 -05003354 } else {
3355 ret = -EINVAL;
3356 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05003357
Tejun Heoa742c592013-12-05 12:28:03 -05003358 return ret ?: nbytes;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003359}
3360
Tejun Heo6612f052013-12-05 12:28:04 -05003361static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos)
Paul Menage91796562008-04-29 01:00:01 -07003362{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003363 return seq_cft(seq)->seq_start(seq, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05003364}
3365
3366static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos)
3367{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003368 return seq_cft(seq)->seq_next(seq, v, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05003369}
3370
3371static void cgroup_seqfile_stop(struct seq_file *seq, void *v)
3372{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003373 seq_cft(seq)->seq_stop(seq, v);
Paul Menage91796562008-04-29 01:00:01 -07003374}
3375
3376static int cgroup_seqfile_show(struct seq_file *m, void *arg)
3377{
Tejun Heo7da11272013-12-05 12:28:04 -05003378 struct cftype *cft = seq_cft(m);
3379 struct cgroup_subsys_state *css = seq_css(m);
Li Zefane0798ce2013-07-31 17:36:25 +08003380
Tejun Heo2da8ca82013-12-05 12:28:04 -05003381 if (cft->seq_show)
3382 return cft->seq_show(m, arg);
Paul Menage91796562008-04-29 01:00:01 -07003383
Tejun Heo896f5192013-12-05 12:28:04 -05003384 if (cft->read_u64)
3385 seq_printf(m, "%llu\n", cft->read_u64(css, cft));
3386 else if (cft->read_s64)
3387 seq_printf(m, "%lld\n", cft->read_s64(css, cft));
3388 else
3389 return -EINVAL;
3390 return 0;
Paul Menage91796562008-04-29 01:00:01 -07003391}
3392
Tejun Heo2bd59d42014-02-11 11:52:49 -05003393static struct kernfs_ops cgroup_kf_single_ops = {
3394 .atomic_write_len = PAGE_SIZE,
3395 .write = cgroup_file_write,
3396 .seq_show = cgroup_seqfile_show,
Paul Menage91796562008-04-29 01:00:01 -07003397};
3398
Tejun Heo2bd59d42014-02-11 11:52:49 -05003399static struct kernfs_ops cgroup_kf_ops = {
3400 .atomic_write_len = PAGE_SIZE,
3401 .write = cgroup_file_write,
3402 .seq_start = cgroup_seqfile_start,
3403 .seq_next = cgroup_seqfile_next,
3404 .seq_stop = cgroup_seqfile_stop,
3405 .seq_show = cgroup_seqfile_show,
3406};
Paul Menageddbcc7e2007-10-18 23:39:30 -07003407
3408/*
3409 * cgroup_rename - Only allow simple rename of directories in place.
3410 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05003411static int cgroup_rename(struct kernfs_node *kn, struct kernfs_node *new_parent,
3412 const char *new_name_str)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003413{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003414 struct cgroup *cgrp = kn->priv;
Li Zefan65dff752013-03-01 15:01:56 +08003415 int ret;
Li Zefan65dff752013-03-01 15:01:56 +08003416
Tejun Heo2bd59d42014-02-11 11:52:49 -05003417 if (kernfs_type(kn) != KERNFS_DIR)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003418 return -ENOTDIR;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003419 if (kn->parent != new_parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003420 return -EIO;
Li Zefan65dff752013-03-01 15:01:56 +08003421
Tejun Heo6db8e852013-06-14 11:18:22 -07003422 /*
3423 * This isn't a proper migration and its usefulness is very
Tejun Heoaa6ec292014-07-09 10:08:08 -04003424 * limited. Disallow on the default hierarchy.
Tejun Heo6db8e852013-06-14 11:18:22 -07003425 */
Tejun Heoaa6ec292014-07-09 10:08:08 -04003426 if (cgroup_on_dfl(cgrp))
Tejun Heo6db8e852013-06-14 11:18:22 -07003427 return -EPERM;
3428
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003429 /*
Tejun Heo8353da12014-05-13 12:19:23 -04003430 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003431 * active_ref. kernfs_rename() doesn't require active_ref
Tejun Heo8353da12014-05-13 12:19:23 -04003432 * protection. Break them before grabbing cgroup_mutex.
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003433 */
3434 kernfs_break_active_protection(new_parent);
3435 kernfs_break_active_protection(kn);
Li Zefan65dff752013-03-01 15:01:56 +08003436
Tejun Heo2bd59d42014-02-11 11:52:49 -05003437 mutex_lock(&cgroup_mutex);
Li Zefan65dff752013-03-01 15:01:56 +08003438
Tejun Heo2bd59d42014-02-11 11:52:49 -05003439 ret = kernfs_rename(kn, new_parent, new_name_str);
Li Zefan65dff752013-03-01 15:01:56 +08003440
Tejun Heo2bd59d42014-02-11 11:52:49 -05003441 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003442
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003443 kernfs_unbreak_active_protection(kn);
3444 kernfs_unbreak_active_protection(new_parent);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003445 return ret;
Li Zefan099fca32009-04-02 16:57:29 -07003446}
3447
Tejun Heo49957f82014-04-07 16:44:47 -04003448/* set uid and gid of cgroup dirs and files to that of the creator */
3449static int cgroup_kn_set_ugid(struct kernfs_node *kn)
3450{
3451 struct iattr iattr = { .ia_valid = ATTR_UID | ATTR_GID,
3452 .ia_uid = current_fsuid(),
3453 .ia_gid = current_fsgid(), };
3454
3455 if (uid_eq(iattr.ia_uid, GLOBAL_ROOT_UID) &&
3456 gid_eq(iattr.ia_gid, GLOBAL_ROOT_GID))
3457 return 0;
3458
3459 return kernfs_setattr(kn, &iattr);
3460}
3461
Tejun Heo4df8dc92015-09-18 17:54:23 -04003462static int cgroup_add_file(struct cgroup_subsys_state *css, struct cgroup *cgrp,
3463 struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003464{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05003465 char name[CGROUP_FILE_NAME_MAX];
Tejun Heo2bd59d42014-02-11 11:52:49 -05003466 struct kernfs_node *kn;
3467 struct lock_class_key *key = NULL;
Tejun Heo49957f82014-04-07 16:44:47 -04003468 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003469
Tejun Heo2bd59d42014-02-11 11:52:49 -05003470#ifdef CONFIG_DEBUG_LOCK_ALLOC
3471 key = &cft->lockdep_key;
3472#endif
3473 kn = __kernfs_create_file(cgrp->kn, cgroup_file_name(cgrp, cft, name),
3474 cgroup_file_mode(cft), 0, cft->kf_ops, cft,
Tejun Heodfeb07502015-02-13 14:36:31 -08003475 NULL, key);
Tejun Heo49957f82014-04-07 16:44:47 -04003476 if (IS_ERR(kn))
3477 return PTR_ERR(kn);
3478
3479 ret = cgroup_kn_set_ugid(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04003480 if (ret) {
Tejun Heo49957f82014-04-07 16:44:47 -04003481 kernfs_remove(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04003482 return ret;
3483 }
3484
Tejun Heo6f60ead2015-09-18 17:54:23 -04003485 if (cft->file_offset) {
3486 struct cgroup_file *cfile = (void *)css + cft->file_offset;
3487
Tejun Heo34c06252015-11-05 00:12:24 -05003488 spin_lock_irq(&cgroup_file_kn_lock);
Tejun Heo6f60ead2015-09-18 17:54:23 -04003489 cfile->kn = kn;
Tejun Heo34c06252015-11-05 00:12:24 -05003490 spin_unlock_irq(&cgroup_file_kn_lock);
Tejun Heo6f60ead2015-09-18 17:54:23 -04003491 }
3492
Tejun Heof8f22e52014-04-23 11:13:16 -04003493 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003494}
3495
Tejun Heob1f28d32013-06-28 16:24:10 -07003496/**
3497 * cgroup_addrm_files - add or remove files to a cgroup directory
Tejun Heo4df8dc92015-09-18 17:54:23 -04003498 * @css: the target css
3499 * @cgrp: the target cgroup (usually css->cgroup)
Tejun Heob1f28d32013-06-28 16:24:10 -07003500 * @cfts: array of cftypes to be added
3501 * @is_add: whether to add or remove
3502 *
3503 * Depending on @is_add, add or remove files defined by @cfts on @cgrp.
Tejun Heo6732ed82015-09-18 17:54:23 -04003504 * For removals, this function never fails.
Tejun Heob1f28d32013-06-28 16:24:10 -07003505 */
Tejun Heo4df8dc92015-09-18 17:54:23 -04003506static int cgroup_addrm_files(struct cgroup_subsys_state *css,
3507 struct cgroup *cgrp, struct cftype cfts[],
Tejun Heo2bb566c2013-08-08 20:11:23 -04003508 bool is_add)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003509{
Tejun Heo6732ed82015-09-18 17:54:23 -04003510 struct cftype *cft, *cft_end = NULL;
Tejun Heob598dde2016-02-22 22:25:45 -05003511 int ret = 0;
Tejun Heob1f28d32013-06-28 16:24:10 -07003512
Tejun Heo01f64742014-05-13 12:19:23 -04003513 lockdep_assert_held(&cgroup_mutex);
Tejun Heodb0416b2012-04-01 12:09:55 -07003514
Tejun Heo6732ed82015-09-18 17:54:23 -04003515restart:
3516 for (cft = cfts; cft != cft_end && cft->name[0] != '\0'; cft++) {
Gao fengf33fddc2012-12-06 14:38:57 +08003517 /* does cft->flags tell us to skip this file on @cgrp? */
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003518 if ((cft->flags & __CFTYPE_ONLY_ON_DFL) && !cgroup_on_dfl(cgrp))
Tejun Heo8cbbf2c2014-03-19 10:23:55 -04003519 continue;
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003520 if ((cft->flags & __CFTYPE_NOT_ON_DFL) && cgroup_on_dfl(cgrp))
Tejun Heo873fe092013-04-14 20:15:26 -07003521 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04003522 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08003523 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04003524 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08003525 continue;
3526
Li Zefan2739d3c2013-01-21 18:18:33 +08003527 if (is_add) {
Tejun Heo4df8dc92015-09-18 17:54:23 -04003528 ret = cgroup_add_file(css, cgrp, cft);
Tejun Heob1f28d32013-06-28 16:24:10 -07003529 if (ret) {
Joe Perchesed3d2612014-04-25 18:28:03 -04003530 pr_warn("%s: failed to add %s, err=%d\n",
3531 __func__, cft->name, ret);
Tejun Heo6732ed82015-09-18 17:54:23 -04003532 cft_end = cft;
3533 is_add = false;
3534 goto restart;
Tejun Heob1f28d32013-06-28 16:24:10 -07003535 }
Li Zefan2739d3c2013-01-21 18:18:33 +08003536 } else {
3537 cgroup_rm_file(cgrp, cft);
Tejun Heodb0416b2012-04-01 12:09:55 -07003538 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003539 }
Tejun Heob598dde2016-02-22 22:25:45 -05003540 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003541}
3542
Tejun Heo21a2d342014-02-12 09:29:49 -05003543static int cgroup_apply_cftypes(struct cftype *cfts, bool is_add)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003544{
3545 LIST_HEAD(pending);
Tejun Heo2bb566c2013-08-08 20:11:23 -04003546 struct cgroup_subsys *ss = cfts[0].ss;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04003547 struct cgroup *root = &ss->root->cgrp;
Tejun Heo492eb212013-08-08 20:11:25 -04003548 struct cgroup_subsys_state *css;
Tejun Heo9ccece82013-06-28 16:24:11 -07003549 int ret = 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003550
Tejun Heo01f64742014-05-13 12:19:23 -04003551 lockdep_assert_held(&cgroup_mutex);
Li Zefane8c82d22013-06-18 18:48:37 +08003552
Li Zefane8c82d22013-06-18 18:48:37 +08003553 /* add/rm files for all cgroups created before */
Tejun Heoca8bdca2013-08-26 18:40:56 -04003554 css_for_each_descendant_pre(css, cgroup_css(root, ss)) {
Tejun Heo492eb212013-08-08 20:11:25 -04003555 struct cgroup *cgrp = css->cgroup;
3556
Tejun Heo88cb04b2016-03-03 09:57:58 -05003557 if (!(css->flags & CSS_VISIBLE))
Li Zefane8c82d22013-06-18 18:48:37 +08003558 continue;
3559
Tejun Heo4df8dc92015-09-18 17:54:23 -04003560 ret = cgroup_addrm_files(css, cgrp, cfts, is_add);
Tejun Heo9ccece82013-06-28 16:24:11 -07003561 if (ret)
3562 break;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003563 }
Tejun Heo21a2d342014-02-12 09:29:49 -05003564
3565 if (is_add && !ret)
3566 kernfs_activate(root->kn);
Tejun Heo9ccece82013-06-28 16:24:11 -07003567 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003568}
3569
Tejun Heo2da440a2014-02-11 11:52:48 -05003570static void cgroup_exit_cftypes(struct cftype *cfts)
3571{
3572 struct cftype *cft;
3573
Tejun Heo2bd59d42014-02-11 11:52:49 -05003574 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3575 /* free copy for custom atomic_write_len, see init_cftypes() */
3576 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE)
3577 kfree(cft->kf_ops);
3578 cft->kf_ops = NULL;
Tejun Heo2da440a2014-02-11 11:52:48 -05003579 cft->ss = NULL;
Tejun Heoa8ddc822014-07-15 11:05:10 -04003580
3581 /* revert flags set by cgroup core while adding @cfts */
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003582 cft->flags &= ~(__CFTYPE_ONLY_ON_DFL | __CFTYPE_NOT_ON_DFL);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003583 }
Tejun Heo2da440a2014-02-11 11:52:48 -05003584}
3585
Tejun Heo2bd59d42014-02-11 11:52:49 -05003586static int cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo2da440a2014-02-11 11:52:48 -05003587{
3588 struct cftype *cft;
3589
Tejun Heo2bd59d42014-02-11 11:52:49 -05003590 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3591 struct kernfs_ops *kf_ops;
3592
Tejun Heo0adb0702014-02-12 09:29:48 -05003593 WARN_ON(cft->ss || cft->kf_ops);
3594
Tejun Heo2bd59d42014-02-11 11:52:49 -05003595 if (cft->seq_start)
3596 kf_ops = &cgroup_kf_ops;
3597 else
3598 kf_ops = &cgroup_kf_single_ops;
3599
3600 /*
3601 * Ugh... if @cft wants a custom max_write_len, we need to
3602 * make a copy of kf_ops to set its atomic_write_len.
3603 */
3604 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) {
3605 kf_ops = kmemdup(kf_ops, sizeof(*kf_ops), GFP_KERNEL);
3606 if (!kf_ops) {
3607 cgroup_exit_cftypes(cfts);
3608 return -ENOMEM;
3609 }
3610 kf_ops->atomic_write_len = cft->max_write_len;
3611 }
3612
3613 cft->kf_ops = kf_ops;
Tejun Heo2da440a2014-02-11 11:52:48 -05003614 cft->ss = ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003615 }
3616
3617 return 0;
Tejun Heo2da440a2014-02-11 11:52:48 -05003618}
3619
Tejun Heo21a2d342014-02-12 09:29:49 -05003620static int cgroup_rm_cftypes_locked(struct cftype *cfts)
3621{
Tejun Heo01f64742014-05-13 12:19:23 -04003622 lockdep_assert_held(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003623
3624 if (!cfts || !cfts[0].ss)
3625 return -ENOENT;
3626
3627 list_del(&cfts->node);
3628 cgroup_apply_cftypes(cfts, false);
3629 cgroup_exit_cftypes(cfts);
3630 return 0;
3631}
3632
Tejun Heo8e3f6542012-04-01 12:09:55 -07003633/**
Tejun Heo80b13582014-02-12 09:29:48 -05003634 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
3635 * @cfts: zero-length name terminated array of cftypes
3636 *
3637 * Unregister @cfts. Files described by @cfts are removed from all
3638 * existing cgroups and all future cgroups won't have them either. This
3639 * function can be called anytime whether @cfts' subsys is attached or not.
3640 *
3641 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
3642 * registered.
3643 */
3644int cgroup_rm_cftypes(struct cftype *cfts)
3645{
Tejun Heo21a2d342014-02-12 09:29:49 -05003646 int ret;
Tejun Heo80b13582014-02-12 09:29:48 -05003647
Tejun Heo01f64742014-05-13 12:19:23 -04003648 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003649 ret = cgroup_rm_cftypes_locked(cfts);
Tejun Heo01f64742014-05-13 12:19:23 -04003650 mutex_unlock(&cgroup_mutex);
Tejun Heo8e3f6542012-04-01 12:09:55 -07003651 return ret;
3652}
3653
3654/**
3655 * cgroup_add_cftypes - add an array of cftypes to a subsystem
3656 * @ss: target cgroup subsystem
3657 * @cfts: zero-length name terminated array of cftypes
3658 *
3659 * Register @cfts to @ss. Files described by @cfts are created for all
3660 * existing cgroups to which @ss is attached and all future cgroups will
3661 * have them too. This function can be called anytime whether @ss is
3662 * attached or not.
3663 *
3664 * Returns 0 on successful registration, -errno on failure. Note that this
3665 * function currently returns 0 as long as @cfts registration is successful
3666 * even if some file creation attempts on existing cgroups fail.
3667 */
Tejun Heo2cf669a2014-07-15 11:05:09 -04003668static int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003669{
Tejun Heo9ccece82013-06-28 16:24:11 -07003670 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003671
Tejun Heofc5ed1e2015-09-18 11:56:28 -04003672 if (!cgroup_ssid_enabled(ss->id))
Li Zefanc731ae12014-06-05 17:16:30 +08003673 return 0;
3674
Li Zefandc5736e2014-02-17 10:41:50 +08003675 if (!cfts || cfts[0].name[0] == '\0')
3676 return 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003677
Tejun Heo2bd59d42014-02-11 11:52:49 -05003678 ret = cgroup_init_cftypes(ss, cfts);
Tejun Heo9ccece82013-06-28 16:24:11 -07003679 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05003680 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003681
Tejun Heo01f64742014-05-13 12:19:23 -04003682 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003683
Tejun Heo0adb0702014-02-12 09:29:48 -05003684 list_add_tail(&cfts->node, &ss->cfts);
Tejun Heo21a2d342014-02-12 09:29:49 -05003685 ret = cgroup_apply_cftypes(cfts, true);
Tejun Heo9ccece82013-06-28 16:24:11 -07003686 if (ret)
Tejun Heo21a2d342014-02-12 09:29:49 -05003687 cgroup_rm_cftypes_locked(cfts);
3688
Tejun Heo01f64742014-05-13 12:19:23 -04003689 mutex_unlock(&cgroup_mutex);
Tejun Heo9ccece82013-06-28 16:24:11 -07003690 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003691}
Tejun Heo79578622012-04-01 12:09:56 -07003692
3693/**
Tejun Heoa8ddc822014-07-15 11:05:10 -04003694 * cgroup_add_dfl_cftypes - add an array of cftypes for default hierarchy
3695 * @ss: target cgroup subsystem
3696 * @cfts: zero-length name terminated array of cftypes
3697 *
3698 * Similar to cgroup_add_cftypes() but the added files are only used for
3699 * the default hierarchy.
3700 */
3701int cgroup_add_dfl_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
3702{
3703 struct cftype *cft;
3704
3705 for (cft = cfts; cft && cft->name[0] != '\0'; cft++)
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003706 cft->flags |= __CFTYPE_ONLY_ON_DFL;
Tejun Heoa8ddc822014-07-15 11:05:10 -04003707 return cgroup_add_cftypes(ss, cfts);
3708}
3709
3710/**
3711 * cgroup_add_legacy_cftypes - add an array of cftypes for legacy hierarchies
3712 * @ss: target cgroup subsystem
3713 * @cfts: zero-length name terminated array of cftypes
3714 *
3715 * Similar to cgroup_add_cftypes() but the added files are only used for
3716 * the legacy hierarchies.
3717 */
Tejun Heo2cf669a2014-07-15 11:05:09 -04003718int cgroup_add_legacy_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
3719{
Tejun Heoa8ddc822014-07-15 11:05:10 -04003720 struct cftype *cft;
3721
Tejun Heoe4b70372015-10-15 17:00:43 -04003722 for (cft = cfts; cft && cft->name[0] != '\0'; cft++)
3723 cft->flags |= __CFTYPE_NOT_ON_DFL;
Tejun Heo2cf669a2014-07-15 11:05:09 -04003724 return cgroup_add_cftypes(ss, cfts);
3725}
3726
Li Zefana043e3b2008-02-23 15:24:09 -08003727/**
Tejun Heo34c06252015-11-05 00:12:24 -05003728 * cgroup_file_notify - generate a file modified event for a cgroup_file
3729 * @cfile: target cgroup_file
3730 *
3731 * @cfile must have been obtained by setting cftype->file_offset.
3732 */
3733void cgroup_file_notify(struct cgroup_file *cfile)
3734{
3735 unsigned long flags;
3736
3737 spin_lock_irqsave(&cgroup_file_kn_lock, flags);
3738 if (cfile->kn)
3739 kernfs_notify(cfile->kn);
3740 spin_unlock_irqrestore(&cgroup_file_kn_lock, flags);
3741}
3742
3743/**
Li Zefana043e3b2008-02-23 15:24:09 -08003744 * cgroup_task_count - count the number of tasks in a cgroup.
3745 * @cgrp: the cgroup in question
3746 *
3747 * Return the number of tasks in the cgroup.
3748 */
Tejun Heo07bc3562014-02-13 06:58:39 -05003749static int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003750{
3751 int count = 0;
Tejun Heo69d02062013-06-12 21:04:50 -07003752 struct cgrp_cset_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003753
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003754 spin_lock_bh(&css_set_lock);
Tejun Heo69d02062013-06-12 21:04:50 -07003755 list_for_each_entry(link, &cgrp->cset_links, cset_link)
3756 count += atomic_read(&link->cset->refcount);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003757 spin_unlock_bh(&css_set_lock);
Paul Menagebbcb81d2007-10-18 23:39:32 -07003758 return count;
3759}
3760
Tejun Heo574bd9f2012-11-09 09:12:29 -08003761/**
Tejun Heo492eb212013-08-08 20:11:25 -04003762 * css_next_child - find the next child of a given css
Tejun Heoc2931b72014-05-16 13:22:51 -04003763 * @pos: the current position (%NULL to initiate traversal)
3764 * @parent: css whose children to walk
Tejun Heo53fa5262013-05-24 10:55:38 +09003765 *
Tejun Heoc2931b72014-05-16 13:22:51 -04003766 * This function returns the next child of @parent and should be called
Tejun Heo87fb54f2013-12-06 15:11:55 -05003767 * under either cgroup_mutex or RCU read lock. The only requirement is
Tejun Heoc2931b72014-05-16 13:22:51 -04003768 * that @parent and @pos are accessible. The next sibling is guaranteed to
3769 * be returned regardless of their states.
3770 *
3771 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3772 * css which finished ->css_online() is guaranteed to be visible in the
3773 * future iterations and will stay visible until the last reference is put.
3774 * A css which hasn't finished ->css_online() or already finished
3775 * ->css_offline() may show up during traversal. It's each subsystem's
3776 * responsibility to synchronize against on/offlining.
Tejun Heo53fa5262013-05-24 10:55:38 +09003777 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003778struct cgroup_subsys_state *css_next_child(struct cgroup_subsys_state *pos,
3779 struct cgroup_subsys_state *parent)
Tejun Heo53fa5262013-05-24 10:55:38 +09003780{
Tejun Heoc2931b72014-05-16 13:22:51 -04003781 struct cgroup_subsys_state *next;
Tejun Heo53fa5262013-05-24 10:55:38 +09003782
Tejun Heo8353da12014-05-13 12:19:23 -04003783 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo53fa5262013-05-24 10:55:38 +09003784
3785 /*
Tejun Heode3f0342014-05-16 13:22:49 -04003786 * @pos could already have been unlinked from the sibling list.
3787 * Once a cgroup is removed, its ->sibling.next is no longer
3788 * updated when its next sibling changes. CSS_RELEASED is set when
3789 * @pos is taken off list, at which time its next pointer is valid,
3790 * and, as releases are serialized, the one pointed to by the next
3791 * pointer is guaranteed to not have started release yet. This
3792 * implies that if we observe !CSS_RELEASED on @pos in this RCU
3793 * critical section, the one pointed to by its next pointer is
3794 * guaranteed to not have finished its RCU grace period even if we
3795 * have dropped rcu_read_lock() inbetween iterations.
Tejun Heo3b287a52013-08-08 20:11:24 -04003796 *
Tejun Heode3f0342014-05-16 13:22:49 -04003797 * If @pos has CSS_RELEASED set, its next pointer can't be
3798 * dereferenced; however, as each css is given a monotonically
3799 * increasing unique serial number and always appended to the
3800 * sibling list, the next one can be found by walking the parent's
3801 * children until the first css with higher serial number than
3802 * @pos's. While this path can be slower, it happens iff iteration
3803 * races against release and the race window is very small.
Tejun Heo53fa5262013-05-24 10:55:38 +09003804 */
Tejun Heo3b287a52013-08-08 20:11:24 -04003805 if (!pos) {
Tejun Heoc2931b72014-05-16 13:22:51 -04003806 next = list_entry_rcu(parent->children.next, struct cgroup_subsys_state, sibling);
3807 } else if (likely(!(pos->flags & CSS_RELEASED))) {
3808 next = list_entry_rcu(pos->sibling.next, struct cgroup_subsys_state, sibling);
Tejun Heo3b287a52013-08-08 20:11:24 -04003809 } else {
Tejun Heoc2931b72014-05-16 13:22:51 -04003810 list_for_each_entry_rcu(next, &parent->children, sibling)
Tejun Heo3b287a52013-08-08 20:11:24 -04003811 if (next->serial_nr > pos->serial_nr)
3812 break;
Tejun Heo53fa5262013-05-24 10:55:38 +09003813 }
3814
Tejun Heo3b281af2014-04-23 11:13:15 -04003815 /*
3816 * @next, if not pointing to the head, can be dereferenced and is
Tejun Heoc2931b72014-05-16 13:22:51 -04003817 * the next sibling.
Tejun Heo3b281af2014-04-23 11:13:15 -04003818 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003819 if (&next->sibling != &parent->children)
3820 return next;
Tejun Heo3b281af2014-04-23 11:13:15 -04003821 return NULL;
Tejun Heo53fa5262013-05-24 10:55:38 +09003822}
Tejun Heo53fa5262013-05-24 10:55:38 +09003823
3824/**
Tejun Heo492eb212013-08-08 20:11:25 -04003825 * css_next_descendant_pre - find the next descendant for pre-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003826 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003827 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003828 *
Tejun Heo492eb212013-08-08 20:11:25 -04003829 * To be used by css_for_each_descendant_pre(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003830 * to visit for pre-order traversal of @root's descendants. @root is
3831 * included in the iteration and the first node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003832 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003833 * While this function requires cgroup_mutex or RCU read locking, it
3834 * doesn't require the whole traversal to be contained in a single critical
3835 * section. This function will return the correct next descendant as long
3836 * as both @pos and @root are accessible and @pos is a descendant of @root.
Tejun Heoc2931b72014-05-16 13:22:51 -04003837 *
3838 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3839 * css which finished ->css_online() is guaranteed to be visible in the
3840 * future iterations and will stay visible until the last reference is put.
3841 * A css which hasn't finished ->css_online() or already finished
3842 * ->css_offline() may show up during traversal. It's each subsystem's
3843 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003844 */
Tejun Heo492eb212013-08-08 20:11:25 -04003845struct cgroup_subsys_state *
3846css_next_descendant_pre(struct cgroup_subsys_state *pos,
3847 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003848{
Tejun Heo492eb212013-08-08 20:11:25 -04003849 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003850
Tejun Heo8353da12014-05-13 12:19:23 -04003851 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003852
Tejun Heobd8815a2013-08-08 20:11:27 -04003853 /* if first iteration, visit @root */
Tejun Heo7805d002013-05-24 10:50:24 +09003854 if (!pos)
Tejun Heobd8815a2013-08-08 20:11:27 -04003855 return root;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003856
3857 /* visit the first child if exists */
Tejun Heo492eb212013-08-08 20:11:25 -04003858 next = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003859 if (next)
3860 return next;
3861
3862 /* no child, visit my or the closest ancestor's next sibling */
Tejun Heo492eb212013-08-08 20:11:25 -04003863 while (pos != root) {
Tejun Heo5c9d5352014-05-16 13:22:48 -04003864 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003865 if (next)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003866 return next;
Tejun Heo5c9d5352014-05-16 13:22:48 -04003867 pos = pos->parent;
Tejun Heo7805d002013-05-24 10:50:24 +09003868 }
Tejun Heo574bd9f2012-11-09 09:12:29 -08003869
3870 return NULL;
3871}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003872
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003873/**
Tejun Heo492eb212013-08-08 20:11:25 -04003874 * css_rightmost_descendant - return the rightmost descendant of a css
3875 * @pos: css of interest
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003876 *
Tejun Heo492eb212013-08-08 20:11:25 -04003877 * Return the rightmost descendant of @pos. If there's no descendant, @pos
3878 * is returned. This can be used during pre-order traversal to skip
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003879 * subtree of @pos.
Tejun Heo75501a62013-05-24 10:55:38 +09003880 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003881 * While this function requires cgroup_mutex or RCU read locking, it
3882 * doesn't require the whole traversal to be contained in a single critical
3883 * section. This function will return the correct rightmost descendant as
3884 * long as @pos is accessible.
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003885 */
Tejun Heo492eb212013-08-08 20:11:25 -04003886struct cgroup_subsys_state *
3887css_rightmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003888{
Tejun Heo492eb212013-08-08 20:11:25 -04003889 struct cgroup_subsys_state *last, *tmp;
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003890
Tejun Heo8353da12014-05-13 12:19:23 -04003891 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003892
3893 do {
3894 last = pos;
3895 /* ->prev isn't RCU safe, walk ->next till the end */
3896 pos = NULL;
Tejun Heo492eb212013-08-08 20:11:25 -04003897 css_for_each_child(tmp, last)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003898 pos = tmp;
3899 } while (pos);
3900
3901 return last;
3902}
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003903
Tejun Heo492eb212013-08-08 20:11:25 -04003904static struct cgroup_subsys_state *
3905css_leftmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003906{
Tejun Heo492eb212013-08-08 20:11:25 -04003907 struct cgroup_subsys_state *last;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003908
3909 do {
3910 last = pos;
Tejun Heo492eb212013-08-08 20:11:25 -04003911 pos = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003912 } while (pos);
3913
3914 return last;
3915}
3916
3917/**
Tejun Heo492eb212013-08-08 20:11:25 -04003918 * css_next_descendant_post - find the next descendant for post-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003919 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003920 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003921 *
Tejun Heo492eb212013-08-08 20:11:25 -04003922 * To be used by css_for_each_descendant_post(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003923 * to visit for post-order traversal of @root's descendants. @root is
3924 * included in the iteration and the last node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003925 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003926 * While this function requires cgroup_mutex or RCU read locking, it
3927 * doesn't require the whole traversal to be contained in a single critical
3928 * section. This function will return the correct next descendant as long
3929 * as both @pos and @cgroup are accessible and @pos is a descendant of
3930 * @cgroup.
Tejun Heoc2931b72014-05-16 13:22:51 -04003931 *
3932 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3933 * css which finished ->css_online() is guaranteed to be visible in the
3934 * future iterations and will stay visible until the last reference is put.
3935 * A css which hasn't finished ->css_online() or already finished
3936 * ->css_offline() may show up during traversal. It's each subsystem's
3937 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003938 */
Tejun Heo492eb212013-08-08 20:11:25 -04003939struct cgroup_subsys_state *
3940css_next_descendant_post(struct cgroup_subsys_state *pos,
3941 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003942{
Tejun Heo492eb212013-08-08 20:11:25 -04003943 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003944
Tejun Heo8353da12014-05-13 12:19:23 -04003945 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003946
Tejun Heo58b79a92013-09-06 15:31:08 -04003947 /* if first iteration, visit leftmost descendant which may be @root */
3948 if (!pos)
3949 return css_leftmost_descendant(root);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003950
Tejun Heobd8815a2013-08-08 20:11:27 -04003951 /* if we visited @root, we're done */
3952 if (pos == root)
3953 return NULL;
3954
Tejun Heo574bd9f2012-11-09 09:12:29 -08003955 /* if there's an unvisited sibling, visit its leftmost descendant */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003956 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003957 if (next)
Tejun Heo492eb212013-08-08 20:11:25 -04003958 return css_leftmost_descendant(next);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003959
3960 /* no sibling left, visit parent */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003961 return pos->parent;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003962}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003963
Tejun Heof3d46502014-05-16 13:22:52 -04003964/**
3965 * css_has_online_children - does a css have online children
3966 * @css: the target css
3967 *
3968 * Returns %true if @css has any online children; otherwise, %false. This
3969 * function can be called from any context but the caller is responsible
3970 * for synchronizing against on/offlining as necessary.
3971 */
3972bool css_has_online_children(struct cgroup_subsys_state *css)
Tejun Heocbc125e2014-05-14 09:15:01 -04003973{
Tejun Heof3d46502014-05-16 13:22:52 -04003974 struct cgroup_subsys_state *child;
3975 bool ret = false;
Tejun Heocbc125e2014-05-14 09:15:01 -04003976
3977 rcu_read_lock();
Tejun Heof3d46502014-05-16 13:22:52 -04003978 css_for_each_child(child, css) {
Li Zefan99bae5f2014-06-12 14:31:31 +08003979 if (child->flags & CSS_ONLINE) {
Tejun Heof3d46502014-05-16 13:22:52 -04003980 ret = true;
3981 break;
Tejun Heocbc125e2014-05-14 09:15:01 -04003982 }
3983 }
3984 rcu_read_unlock();
Tejun Heof3d46502014-05-16 13:22:52 -04003985 return ret;
Cliff Wickman31a7df02008-02-07 00:14:42 -08003986}
3987
Tejun Heo0942eee2013-08-08 20:11:26 -04003988/**
Tejun Heoecb9d532015-10-15 16:41:52 -04003989 * css_task_iter_advance_css_set - advance a task itererator to the next css_set
Tejun Heo0942eee2013-08-08 20:11:26 -04003990 * @it: the iterator to advance
3991 *
3992 * Advance @it to the next css_set to walk.
Tejun Heod5158762013-08-08 20:11:26 -04003993 */
Tejun Heoecb9d532015-10-15 16:41:52 -04003994static void css_task_iter_advance_css_set(struct css_task_iter *it)
Tejun Heod5158762013-08-08 20:11:26 -04003995{
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003996 struct list_head *l = it->cset_pos;
Tejun Heod5158762013-08-08 20:11:26 -04003997 struct cgrp_cset_link *link;
3998 struct css_set *cset;
3999
Tejun Heof0d9a5f2015-10-15 16:41:53 -04004000 lockdep_assert_held(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04004001
Tejun Heod5158762013-08-08 20:11:26 -04004002 /* Advance to the next non-empty css_set */
4003 do {
4004 l = l->next;
Tejun Heo0f0a2b42014-04-23 11:13:15 -04004005 if (l == it->cset_head) {
4006 it->cset_pos = NULL;
Tejun Heoecb9d532015-10-15 16:41:52 -04004007 it->task_pos = NULL;
Tejun Heod5158762013-08-08 20:11:26 -04004008 return;
4009 }
Tejun Heo3ebb2b62014-04-23 11:13:15 -04004010
4011 if (it->ss) {
4012 cset = container_of(l, struct css_set,
4013 e_cset_node[it->ss->id]);
4014 } else {
4015 link = list_entry(l, struct cgrp_cset_link, cset_link);
4016 cset = link->cset;
4017 }
Tejun Heo0de09422015-10-15 16:41:49 -04004018 } while (!css_set_populated(cset));
Tejun Heoc7561122014-02-25 10:04:01 -05004019
Tejun Heo0f0a2b42014-04-23 11:13:15 -04004020 it->cset_pos = l;
Tejun Heoc7561122014-02-25 10:04:01 -05004021
4022 if (!list_empty(&cset->tasks))
Tejun Heo0f0a2b42014-04-23 11:13:15 -04004023 it->task_pos = cset->tasks.next;
Tejun Heoc7561122014-02-25 10:04:01 -05004024 else
Tejun Heo0f0a2b42014-04-23 11:13:15 -04004025 it->task_pos = cset->mg_tasks.next;
4026
4027 it->tasks_head = &cset->tasks;
4028 it->mg_tasks_head = &cset->mg_tasks;
Tejun Heoed27b9f2015-10-15 16:41:52 -04004029
4030 /*
4031 * We don't keep css_sets locked across iteration steps and thus
4032 * need to take steps to ensure that iteration can be resumed after
4033 * the lock is re-acquired. Iteration is performed at two levels -
4034 * css_sets and tasks in them.
4035 *
4036 * Once created, a css_set never leaves its cgroup lists, so a
4037 * pinned css_set is guaranteed to stay put and we can resume
4038 * iteration afterwards.
4039 *
4040 * Tasks may leave @cset across iteration steps. This is resolved
4041 * by registering each iterator with the css_set currently being
4042 * walked and making css_set_move_task() advance iterators whose
4043 * next task is leaving.
4044 */
4045 if (it->cur_cset) {
4046 list_del(&it->iters_node);
4047 put_css_set_locked(it->cur_cset);
4048 }
4049 get_css_set(cset);
4050 it->cur_cset = cset;
4051 list_add(&it->iters_node, &cset->task_iters);
Tejun Heod5158762013-08-08 20:11:26 -04004052}
4053
Tejun Heoecb9d532015-10-15 16:41:52 -04004054static void css_task_iter_advance(struct css_task_iter *it)
4055{
4056 struct list_head *l = it->task_pos;
4057
Tejun Heof0d9a5f2015-10-15 16:41:53 -04004058 lockdep_assert_held(&css_set_lock);
Tejun Heoecb9d532015-10-15 16:41:52 -04004059 WARN_ON_ONCE(!l);
4060
4061 /*
4062 * Advance iterator to find next entry. cset->tasks is consumed
4063 * first and then ->mg_tasks. After ->mg_tasks, we move onto the
4064 * next cset.
4065 */
4066 l = l->next;
4067
4068 if (l == it->tasks_head)
4069 l = it->mg_tasks_head->next;
4070
4071 if (l == it->mg_tasks_head)
4072 css_task_iter_advance_css_set(it);
4073 else
4074 it->task_pos = l;
4075}
4076
Tejun Heo0942eee2013-08-08 20:11:26 -04004077/**
Tejun Heo72ec7022013-08-08 20:11:26 -04004078 * css_task_iter_start - initiate task iteration
4079 * @css: the css to walk tasks of
Tejun Heo0942eee2013-08-08 20:11:26 -04004080 * @it: the task iterator to use
4081 *
Tejun Heo72ec7022013-08-08 20:11:26 -04004082 * Initiate iteration through the tasks of @css. The caller can call
4083 * css_task_iter_next() to walk through the tasks until the function
4084 * returns NULL. On completion of iteration, css_task_iter_end() must be
4085 * called.
Tejun Heo0942eee2013-08-08 20:11:26 -04004086 */
Tejun Heo72ec7022013-08-08 20:11:26 -04004087void css_task_iter_start(struct cgroup_subsys_state *css,
4088 struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07004089{
Tejun Heo56fde9e2014-02-13 06:58:38 -05004090 /* no one should try to iterate before mounting cgroups */
4091 WARN_ON_ONCE(!use_task_css_set_links);
Paul Menage817929e2007-10-18 23:39:36 -07004092
Tejun Heoed27b9f2015-10-15 16:41:52 -04004093 memset(it, 0, sizeof(*it));
4094
Tejun Heof0d9a5f2015-10-15 16:41:53 -04004095 spin_lock_bh(&css_set_lock);
Tejun Heoc59cd3d2013-08-08 20:11:26 -04004096
Tejun Heo3ebb2b62014-04-23 11:13:15 -04004097 it->ss = css->ss;
4098
4099 if (it->ss)
4100 it->cset_pos = &css->cgroup->e_csets[css->ss->id];
4101 else
4102 it->cset_pos = &css->cgroup->cset_links;
4103
Tejun Heo0f0a2b42014-04-23 11:13:15 -04004104 it->cset_head = it->cset_pos;
Tejun Heoc59cd3d2013-08-08 20:11:26 -04004105
Tejun Heoecb9d532015-10-15 16:41:52 -04004106 css_task_iter_advance_css_set(it);
Tejun Heoed27b9f2015-10-15 16:41:52 -04004107
Tejun Heof0d9a5f2015-10-15 16:41:53 -04004108 spin_unlock_bh(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07004109}
Paul Menage817929e2007-10-18 23:39:36 -07004110
Tejun Heo0942eee2013-08-08 20:11:26 -04004111/**
Tejun Heo72ec7022013-08-08 20:11:26 -04004112 * css_task_iter_next - return the next task for the iterator
Tejun Heo0942eee2013-08-08 20:11:26 -04004113 * @it: the task iterator being iterated
4114 *
4115 * The "next" function for task iteration. @it should have been
Tejun Heo72ec7022013-08-08 20:11:26 -04004116 * initialized via css_task_iter_start(). Returns NULL when the iteration
4117 * reaches the end.
Tejun Heo0942eee2013-08-08 20:11:26 -04004118 */
Tejun Heo72ec7022013-08-08 20:11:26 -04004119struct task_struct *css_task_iter_next(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07004120{
Tejun Heod5745672015-10-29 11:43:05 +09004121 if (it->cur_task) {
Tejun Heoed27b9f2015-10-15 16:41:52 -04004122 put_task_struct(it->cur_task);
Tejun Heod5745672015-10-29 11:43:05 +09004123 it->cur_task = NULL;
4124 }
Tejun Heoed27b9f2015-10-15 16:41:52 -04004125
Tejun Heof0d9a5f2015-10-15 16:41:53 -04004126 spin_lock_bh(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04004127
Tejun Heod5745672015-10-29 11:43:05 +09004128 if (it->task_pos) {
4129 it->cur_task = list_entry(it->task_pos, struct task_struct,
4130 cg_list);
4131 get_task_struct(it->cur_task);
4132 css_task_iter_advance(it);
4133 }
Tejun Heoed27b9f2015-10-15 16:41:52 -04004134
Tejun Heof0d9a5f2015-10-15 16:41:53 -04004135 spin_unlock_bh(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04004136
4137 return it->cur_task;
Paul Menage817929e2007-10-18 23:39:36 -07004138}
4139
Tejun Heo0942eee2013-08-08 20:11:26 -04004140/**
Tejun Heo72ec7022013-08-08 20:11:26 -04004141 * css_task_iter_end - finish task iteration
Tejun Heo0942eee2013-08-08 20:11:26 -04004142 * @it: the task iterator to finish
4143 *
Tejun Heo72ec7022013-08-08 20:11:26 -04004144 * Finish task iteration started by css_task_iter_start().
Tejun Heo0942eee2013-08-08 20:11:26 -04004145 */
Tejun Heo72ec7022013-08-08 20:11:26 -04004146void css_task_iter_end(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07004147{
Tejun Heoed27b9f2015-10-15 16:41:52 -04004148 if (it->cur_cset) {
Tejun Heof0d9a5f2015-10-15 16:41:53 -04004149 spin_lock_bh(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04004150 list_del(&it->iters_node);
4151 put_css_set_locked(it->cur_cset);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04004152 spin_unlock_bh(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04004153 }
4154
4155 if (it->cur_task)
4156 put_task_struct(it->cur_task);
Tejun Heo8cc99342013-04-07 09:29:50 -07004157}
4158
4159/**
4160 * cgroup_trasnsfer_tasks - move tasks from one cgroup to another
4161 * @to: cgroup to which the tasks will be moved
4162 * @from: cgroup in which the tasks currently reside
Tejun Heoeaf797a2014-02-25 10:04:03 -05004163 *
4164 * Locking rules between cgroup_post_fork() and the migration path
4165 * guarantee that, if a task is forking while being migrated, the new child
4166 * is guaranteed to be either visible in the source cgroup after the
4167 * parent's migration is complete or put into the target cgroup. No task
4168 * can slip out of migration through forking.
Tejun Heo8cc99342013-04-07 09:29:50 -07004169 */
4170int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from)
4171{
Tejun Heo952aaa12014-02-25 10:04:03 -05004172 LIST_HEAD(preloaded_csets);
4173 struct cgrp_cset_link *link;
Tejun Heoe406d1c2014-02-13 06:58:39 -05004174 struct css_task_iter it;
4175 struct task_struct *task;
Tejun Heo952aaa12014-02-25 10:04:03 -05004176 int ret;
Tejun Heoe406d1c2014-02-13 06:58:39 -05004177
Tejun Heo6c694c82016-03-08 11:51:25 -05004178 if (!cgroup_may_migrate_to(to))
4179 return -EBUSY;
4180
Tejun Heo952aaa12014-02-25 10:04:03 -05004181 mutex_lock(&cgroup_mutex);
4182
4183 /* all tasks in @from are being moved, all csets are source */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04004184 spin_lock_bh(&css_set_lock);
Tejun Heo952aaa12014-02-25 10:04:03 -05004185 list_for_each_entry(link, &from->cset_links, cset_link)
4186 cgroup_migrate_add_src(link->cset, to, &preloaded_csets);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04004187 spin_unlock_bh(&css_set_lock);
Tejun Heo952aaa12014-02-25 10:04:03 -05004188
Tejun Heoe4857982016-03-08 11:51:26 -05004189 ret = cgroup_migrate_prepare_dst(&preloaded_csets);
Tejun Heo952aaa12014-02-25 10:04:03 -05004190 if (ret)
4191 goto out_err;
4192
4193 /*
Rami Rosen2cfa2b12016-01-09 23:33:06 +02004194 * Migrate tasks one-by-one until @from is empty. This fails iff
Tejun Heo952aaa12014-02-25 10:04:03 -05004195 * ->can_attach() fails.
4196 */
Tejun Heoe406d1c2014-02-13 06:58:39 -05004197 do {
Tejun Heo9d800df2014-05-14 09:15:00 -04004198 css_task_iter_start(&from->self, &it);
Tejun Heoe406d1c2014-02-13 06:58:39 -05004199 task = css_task_iter_next(&it);
4200 if (task)
4201 get_task_struct(task);
4202 css_task_iter_end(&it);
4203
4204 if (task) {
Tejun Heo37ff9f82016-03-08 11:51:26 -05004205 ret = cgroup_migrate(task, false, to->root);
Tejun Heoe406d1c2014-02-13 06:58:39 -05004206 put_task_struct(task);
4207 }
4208 } while (task && !ret);
Tejun Heo952aaa12014-02-25 10:04:03 -05004209out_err:
4210 cgroup_migrate_finish(&preloaded_csets);
4211 mutex_unlock(&cgroup_mutex);
Tejun Heoe406d1c2014-02-13 06:58:39 -05004212 return ret;
Tejun Heo8cc99342013-04-07 09:29:50 -07004213}
4214
Paul Menage817929e2007-10-18 23:39:36 -07004215/*
Ben Blum102a7752009-09-23 15:56:26 -07004216 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07004217 *
4218 * Reading this file can return large amounts of data if a cgroup has
4219 * *lots* of attached tasks. So it may need several calls to read(),
4220 * but we cannot guarantee that the information we produce is correct
4221 * unless we produce it entirely atomically.
4222 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07004223 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07004224
Li Zefan24528252012-01-20 11:58:43 +08004225/* which pidlist file are we talking about? */
4226enum cgroup_filetype {
4227 CGROUP_FILE_PROCS,
4228 CGROUP_FILE_TASKS,
4229};
4230
4231/*
4232 * A pidlist is a list of pids that virtually represents the contents of one
4233 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
4234 * a pair (one each for procs, tasks) for each pid namespace that's relevant
4235 * to the cgroup.
4236 */
4237struct cgroup_pidlist {
4238 /*
4239 * used to find which pidlist is wanted. doesn't change as long as
4240 * this particular list stays in the list.
4241 */
4242 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
4243 /* array of xids */
4244 pid_t *list;
4245 /* how many elements the above list has */
4246 int length;
Li Zefan24528252012-01-20 11:58:43 +08004247 /* each of these stored in a list by its cgroup */
4248 struct list_head links;
4249 /* pointer to the cgroup we belong to, for list removal purposes */
4250 struct cgroup *owner;
Tejun Heob1a21362013-11-29 10:42:58 -05004251 /* for delayed destruction */
4252 struct delayed_work destroy_dwork;
Li Zefan24528252012-01-20 11:58:43 +08004253};
4254
Paul Menagebbcb81d2007-10-18 23:39:32 -07004255/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07004256 * The following two functions "fix" the issue where there are more pids
4257 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
4258 * TODO: replace with a kernel-wide solution to this problem
4259 */
4260#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
4261static void *pidlist_allocate(int count)
4262{
4263 if (PIDLIST_TOO_LARGE(count))
4264 return vmalloc(count * sizeof(pid_t));
4265 else
4266 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
4267}
Tejun Heob1a21362013-11-29 10:42:58 -05004268
Ben Blumd1d9fd32009-09-23 15:56:28 -07004269static void pidlist_free(void *p)
4270{
Bandan Das58794512015-03-02 17:51:10 -05004271 kvfree(p);
Ben Blumd1d9fd32009-09-23 15:56:28 -07004272}
Ben Blumd1d9fd32009-09-23 15:56:28 -07004273
4274/*
Tejun Heob1a21362013-11-29 10:42:58 -05004275 * Used to destroy all pidlists lingering waiting for destroy timer. None
4276 * should be left afterwards.
4277 */
4278static void cgroup_pidlist_destroy_all(struct cgroup *cgrp)
4279{
4280 struct cgroup_pidlist *l, *tmp_l;
4281
4282 mutex_lock(&cgrp->pidlist_mutex);
4283 list_for_each_entry_safe(l, tmp_l, &cgrp->pidlists, links)
4284 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, 0);
4285 mutex_unlock(&cgrp->pidlist_mutex);
4286
4287 flush_workqueue(cgroup_pidlist_destroy_wq);
4288 BUG_ON(!list_empty(&cgrp->pidlists));
4289}
4290
4291static void cgroup_pidlist_destroy_work_fn(struct work_struct *work)
4292{
4293 struct delayed_work *dwork = to_delayed_work(work);
4294 struct cgroup_pidlist *l = container_of(dwork, struct cgroup_pidlist,
4295 destroy_dwork);
4296 struct cgroup_pidlist *tofree = NULL;
4297
4298 mutex_lock(&l->owner->pidlist_mutex);
Tejun Heob1a21362013-11-29 10:42:58 -05004299
4300 /*
Tejun Heo04502362013-11-29 10:42:59 -05004301 * Destroy iff we didn't get queued again. The state won't change
4302 * as destroy_dwork can only be queued while locked.
Tejun Heob1a21362013-11-29 10:42:58 -05004303 */
Tejun Heo04502362013-11-29 10:42:59 -05004304 if (!delayed_work_pending(dwork)) {
Tejun Heob1a21362013-11-29 10:42:58 -05004305 list_del(&l->links);
4306 pidlist_free(l->list);
4307 put_pid_ns(l->key.ns);
4308 tofree = l;
4309 }
4310
Tejun Heob1a21362013-11-29 10:42:58 -05004311 mutex_unlock(&l->owner->pidlist_mutex);
4312 kfree(tofree);
4313}
4314
4315/*
Ben Blum102a7752009-09-23 15:56:26 -07004316 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
Li Zefan6ee211a2013-03-12 15:36:00 -07004317 * Returns the number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07004318 */
Li Zefan6ee211a2013-03-12 15:36:00 -07004319static int pidlist_uniq(pid_t *list, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07004320{
Ben Blum102a7752009-09-23 15:56:26 -07004321 int src, dest = 1;
Ben Blum102a7752009-09-23 15:56:26 -07004322
4323 /*
4324 * we presume the 0th element is unique, so i starts at 1. trivial
4325 * edge cases first; no work needs to be done for either
4326 */
4327 if (length == 0 || length == 1)
4328 return length;
4329 /* src and dest walk down the list; dest counts unique elements */
4330 for (src = 1; src < length; src++) {
4331 /* find next unique element */
4332 while (list[src] == list[src-1]) {
4333 src++;
4334 if (src == length)
4335 goto after;
4336 }
4337 /* dest always points to where the next unique element goes */
4338 list[dest] = list[src];
4339 dest++;
4340 }
4341after:
Ben Blum102a7752009-09-23 15:56:26 -07004342 return dest;
4343}
4344
Tejun Heoafb2bc12013-11-29 10:42:59 -05004345/*
4346 * The two pid files - task and cgroup.procs - guaranteed that the result
4347 * is sorted, which forced this whole pidlist fiasco. As pid order is
4348 * different per namespace, each namespace needs differently sorted list,
4349 * making it impossible to use, for example, single rbtree of member tasks
4350 * sorted by task pointer. As pidlists can be fairly large, allocating one
4351 * per open file is dangerous, so cgroup had to implement shared pool of
4352 * pidlists keyed by cgroup and namespace.
4353 *
4354 * All this extra complexity was caused by the original implementation
4355 * committing to an entirely unnecessary property. In the long term, we
Tejun Heoaa6ec292014-07-09 10:08:08 -04004356 * want to do away with it. Explicitly scramble sort order if on the
4357 * default hierarchy so that no such expectation exists in the new
4358 * interface.
Tejun Heoafb2bc12013-11-29 10:42:59 -05004359 *
4360 * Scrambling is done by swapping every two consecutive bits, which is
4361 * non-identity one-to-one mapping which disturbs sort order sufficiently.
4362 */
4363static pid_t pid_fry(pid_t pid)
4364{
4365 unsigned a = pid & 0x55555555;
4366 unsigned b = pid & 0xAAAAAAAA;
4367
4368 return (a << 1) | (b >> 1);
4369}
4370
4371static pid_t cgroup_pid_fry(struct cgroup *cgrp, pid_t pid)
4372{
Tejun Heoaa6ec292014-07-09 10:08:08 -04004373 if (cgroup_on_dfl(cgrp))
Tejun Heoafb2bc12013-11-29 10:42:59 -05004374 return pid_fry(pid);
4375 else
4376 return pid;
4377}
4378
Ben Blum102a7752009-09-23 15:56:26 -07004379static int cmppid(const void *a, const void *b)
4380{
4381 return *(pid_t *)a - *(pid_t *)b;
4382}
4383
Tejun Heoafb2bc12013-11-29 10:42:59 -05004384static int fried_cmppid(const void *a, const void *b)
4385{
4386 return pid_fry(*(pid_t *)a) - pid_fry(*(pid_t *)b);
4387}
4388
Ben Blum72a8cb32009-09-23 15:56:27 -07004389static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
4390 enum cgroup_filetype type)
4391{
4392 struct cgroup_pidlist *l;
4393 /* don't need task_nsproxy() if we're looking at ourself */
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08004394 struct pid_namespace *ns = task_active_pid_ns(current);
Li Zefanb70cc5f2010-03-10 15:22:12 -08004395
Tejun Heoe6b81712013-11-29 10:42:59 -05004396 lockdep_assert_held(&cgrp->pidlist_mutex);
4397
4398 list_for_each_entry(l, &cgrp->pidlists, links)
4399 if (l->key.type == type && l->key.ns == ns)
Ben Blum72a8cb32009-09-23 15:56:27 -07004400 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05004401 return NULL;
4402}
4403
Ben Blum72a8cb32009-09-23 15:56:27 -07004404/*
4405 * find the appropriate pidlist for our purpose (given procs vs tasks)
4406 * returns with the lock on that pidlist already held, and takes care
4407 * of the use count, or returns NULL with no locks held if we're out of
4408 * memory.
4409 */
Tejun Heoe6b81712013-11-29 10:42:59 -05004410static struct cgroup_pidlist *cgroup_pidlist_find_create(struct cgroup *cgrp,
4411 enum cgroup_filetype type)
Ben Blum72a8cb32009-09-23 15:56:27 -07004412{
4413 struct cgroup_pidlist *l;
Ben Blum72a8cb32009-09-23 15:56:27 -07004414
Tejun Heoe6b81712013-11-29 10:42:59 -05004415 lockdep_assert_held(&cgrp->pidlist_mutex);
4416
4417 l = cgroup_pidlist_find(cgrp, type);
4418 if (l)
4419 return l;
4420
Ben Blum72a8cb32009-09-23 15:56:27 -07004421 /* entry not found; create a new one */
Tejun Heof4f4be22013-06-12 21:04:51 -07004422 l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
Tejun Heoe6b81712013-11-29 10:42:59 -05004423 if (!l)
Ben Blum72a8cb32009-09-23 15:56:27 -07004424 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05004425
Tejun Heob1a21362013-11-29 10:42:58 -05004426 INIT_DELAYED_WORK(&l->destroy_dwork, cgroup_pidlist_destroy_work_fn);
Ben Blum72a8cb32009-09-23 15:56:27 -07004427 l->key.type = type;
Tejun Heoe6b81712013-11-29 10:42:59 -05004428 /* don't need task_nsproxy() if we're looking at ourself */
4429 l->key.ns = get_pid_ns(task_active_pid_ns(current));
Ben Blum72a8cb32009-09-23 15:56:27 -07004430 l->owner = cgrp;
4431 list_add(&l->links, &cgrp->pidlists);
Ben Blum72a8cb32009-09-23 15:56:27 -07004432 return l;
4433}
4434
4435/*
Ben Blum102a7752009-09-23 15:56:26 -07004436 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
4437 */
Ben Blum72a8cb32009-09-23 15:56:27 -07004438static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
4439 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07004440{
4441 pid_t *array;
4442 int length;
4443 int pid, n = 0; /* used for populating the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04004444 struct css_task_iter it;
Paul Menage817929e2007-10-18 23:39:36 -07004445 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07004446 struct cgroup_pidlist *l;
4447
Tejun Heo4bac00d2013-11-29 10:42:59 -05004448 lockdep_assert_held(&cgrp->pidlist_mutex);
4449
Ben Blum102a7752009-09-23 15:56:26 -07004450 /*
4451 * If cgroup gets more users after we read count, we won't have
4452 * enough space - tough. This race is indistinguishable to the
4453 * caller from the case that the additional cgroup users didn't
4454 * show up until sometime later on.
4455 */
4456 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07004457 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07004458 if (!array)
4459 return -ENOMEM;
4460 /* now, populate the array */
Tejun Heo9d800df2014-05-14 09:15:00 -04004461 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04004462 while ((tsk = css_task_iter_next(&it))) {
Ben Blum102a7752009-09-23 15:56:26 -07004463 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07004464 break;
Ben Blum102a7752009-09-23 15:56:26 -07004465 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07004466 if (type == CGROUP_FILE_PROCS)
4467 pid = task_tgid_vnr(tsk);
4468 else
4469 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07004470 if (pid > 0) /* make sure to only use valid results */
4471 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07004472 }
Tejun Heo72ec7022013-08-08 20:11:26 -04004473 css_task_iter_end(&it);
Ben Blum102a7752009-09-23 15:56:26 -07004474 length = n;
4475 /* now sort & (if procs) strip out duplicates */
Tejun Heoaa6ec292014-07-09 10:08:08 -04004476 if (cgroup_on_dfl(cgrp))
Tejun Heoafb2bc12013-11-29 10:42:59 -05004477 sort(array, length, sizeof(pid_t), fried_cmppid, NULL);
4478 else
4479 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07004480 if (type == CGROUP_FILE_PROCS)
Li Zefan6ee211a2013-03-12 15:36:00 -07004481 length = pidlist_uniq(array, length);
Tejun Heoe6b81712013-11-29 10:42:59 -05004482
Tejun Heoe6b81712013-11-29 10:42:59 -05004483 l = cgroup_pidlist_find_create(cgrp, type);
Ben Blum72a8cb32009-09-23 15:56:27 -07004484 if (!l) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07004485 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07004486 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07004487 }
Tejun Heoe6b81712013-11-29 10:42:59 -05004488
4489 /* store array, freeing old if necessary */
Ben Blumd1d9fd32009-09-23 15:56:28 -07004490 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07004491 l->list = array;
4492 l->length = length;
Ben Blum72a8cb32009-09-23 15:56:27 -07004493 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07004494 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004495}
4496
Balbir Singh846c7bb2007-10-18 23:39:44 -07004497/**
Li Zefana043e3b2008-02-23 15:24:09 -08004498 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07004499 * @stats: cgroupstats to fill information into
4500 * @dentry: A dentry entry belonging to the cgroup for which stats have
4501 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08004502 *
4503 * Build and fill cgroupstats so that taskstats can export it to user
4504 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07004505 */
4506int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
4507{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004508 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07004509 struct cgroup *cgrp;
Tejun Heo72ec7022013-08-08 20:11:26 -04004510 struct css_task_iter it;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004511 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08004512
Tejun Heo2bd59d42014-02-11 11:52:49 -05004513 /* it should be kernfs_node belonging to cgroupfs and is a directory */
4514 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
4515 kernfs_type(kn) != KERNFS_DIR)
4516 return -EINVAL;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004517
Li Zefanbad34662014-02-14 16:54:28 +08004518 mutex_lock(&cgroup_mutex);
4519
Tejun Heo2bd59d42014-02-11 11:52:49 -05004520 /*
4521 * We aren't being called from kernfs and there's no guarantee on
Tejun Heoec903c02014-05-13 12:11:01 -04004522 * @kn->priv's validity. For this and css_tryget_online_from_dir(),
Tejun Heo2bd59d42014-02-11 11:52:49 -05004523 * @kn->priv is RCU safe. Let's do the RCU dancing.
4524 */
4525 rcu_read_lock();
4526 cgrp = rcu_dereference(kn->priv);
Li Zefanbad34662014-02-14 16:54:28 +08004527 if (!cgrp || cgroup_is_dead(cgrp)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05004528 rcu_read_unlock();
Li Zefanbad34662014-02-14 16:54:28 +08004529 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004530 return -ENOENT;
4531 }
Li Zefanbad34662014-02-14 16:54:28 +08004532 rcu_read_unlock();
Balbir Singh846c7bb2007-10-18 23:39:44 -07004533
Tejun Heo9d800df2014-05-14 09:15:00 -04004534 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04004535 while ((tsk = css_task_iter_next(&it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07004536 switch (tsk->state) {
4537 case TASK_RUNNING:
4538 stats->nr_running++;
4539 break;
4540 case TASK_INTERRUPTIBLE:
4541 stats->nr_sleeping++;
4542 break;
4543 case TASK_UNINTERRUPTIBLE:
4544 stats->nr_uninterruptible++;
4545 break;
4546 case TASK_STOPPED:
4547 stats->nr_stopped++;
4548 break;
4549 default:
4550 if (delayacct_is_task_waiting_on_io(tsk))
4551 stats->nr_io_wait++;
4552 break;
4553 }
4554 }
Tejun Heo72ec7022013-08-08 20:11:26 -04004555 css_task_iter_end(&it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07004556
Li Zefanbad34662014-02-14 16:54:28 +08004557 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004558 return 0;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004559}
4560
Paul Menage8f3ff202009-09-23 15:56:25 -07004561
Paul Menagecc31edc2008-10-18 20:28:04 -07004562/*
Ben Blum102a7752009-09-23 15:56:26 -07004563 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07004564 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07004565 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07004566 */
4567
Ben Blum102a7752009-09-23 15:56:26 -07004568static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07004569{
4570 /*
4571 * Initially we receive a position value that corresponds to
4572 * one more than the last pid shown (or 0 on the first call or
4573 * after a seek to the start). Use a binary-search to find the
4574 * next pid to display, if any
4575 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05004576 struct kernfs_open_file *of = s->private;
Tejun Heo7da11272013-12-05 12:28:04 -05004577 struct cgroup *cgrp = seq_css(s)->cgroup;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004578 struct cgroup_pidlist *l;
Tejun Heo7da11272013-12-05 12:28:04 -05004579 enum cgroup_filetype type = seq_cft(s)->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07004580 int index = 0, pid = *pos;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004581 int *iter, ret;
Paul Menagecc31edc2008-10-18 20:28:04 -07004582
Tejun Heo4bac00d2013-11-29 10:42:59 -05004583 mutex_lock(&cgrp->pidlist_mutex);
4584
4585 /*
Tejun Heo5d224442013-12-05 12:28:04 -05004586 * !NULL @of->priv indicates that this isn't the first start()
Tejun Heo4bac00d2013-11-29 10:42:59 -05004587 * after open. If the matching pidlist is around, we can use that.
Tejun Heo5d224442013-12-05 12:28:04 -05004588 * Look for it. Note that @of->priv can't be used directly. It
Tejun Heo4bac00d2013-11-29 10:42:59 -05004589 * could already have been destroyed.
4590 */
Tejun Heo5d224442013-12-05 12:28:04 -05004591 if (of->priv)
4592 of->priv = cgroup_pidlist_find(cgrp, type);
Tejun Heo4bac00d2013-11-29 10:42:59 -05004593
4594 /*
4595 * Either this is the first start() after open or the matching
4596 * pidlist has been destroyed inbetween. Create a new one.
4597 */
Tejun Heo5d224442013-12-05 12:28:04 -05004598 if (!of->priv) {
4599 ret = pidlist_array_load(cgrp, type,
4600 (struct cgroup_pidlist **)&of->priv);
Tejun Heo4bac00d2013-11-29 10:42:59 -05004601 if (ret)
4602 return ERR_PTR(ret);
4603 }
Tejun Heo5d224442013-12-05 12:28:04 -05004604 l = of->priv;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004605
Paul Menagecc31edc2008-10-18 20:28:04 -07004606 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07004607 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11004608
Paul Menagecc31edc2008-10-18 20:28:04 -07004609 while (index < end) {
4610 int mid = (index + end) / 2;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004611 if (cgroup_pid_fry(cgrp, l->list[mid]) == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07004612 index = mid;
4613 break;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004614 } else if (cgroup_pid_fry(cgrp, l->list[mid]) <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07004615 index = mid + 1;
4616 else
4617 end = mid;
4618 }
4619 }
4620 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07004621 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07004622 return NULL;
4623 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07004624 iter = l->list + index;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004625 *pos = cgroup_pid_fry(cgrp, *iter);
Paul Menagecc31edc2008-10-18 20:28:04 -07004626 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004627}
4628
Ben Blum102a7752009-09-23 15:56:26 -07004629static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07004630{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004631 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05004632 struct cgroup_pidlist *l = of->priv;
Tejun Heo62236852013-11-29 10:42:58 -05004633
Tejun Heo5d224442013-12-05 12:28:04 -05004634 if (l)
4635 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork,
Tejun Heo04502362013-11-29 10:42:59 -05004636 CGROUP_PIDLIST_DESTROY_DELAY);
Tejun Heo7da11272013-12-05 12:28:04 -05004637 mutex_unlock(&seq_css(s)->cgroup->pidlist_mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07004638}
4639
Ben Blum102a7752009-09-23 15:56:26 -07004640static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07004641{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004642 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05004643 struct cgroup_pidlist *l = of->priv;
Ben Blum102a7752009-09-23 15:56:26 -07004644 pid_t *p = v;
4645 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07004646 /*
4647 * Advance to the next pid in the array. If this goes off the
4648 * end, we're done
4649 */
4650 p++;
4651 if (p >= end) {
4652 return NULL;
4653 } else {
Tejun Heo7da11272013-12-05 12:28:04 -05004654 *pos = cgroup_pid_fry(seq_css(s)->cgroup, *p);
Paul Menagecc31edc2008-10-18 20:28:04 -07004655 return p;
4656 }
4657}
4658
Ben Blum102a7752009-09-23 15:56:26 -07004659static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07004660{
Joe Perches94ff2122015-04-15 16:18:20 -07004661 seq_printf(s, "%d\n", *(int *)v);
4662
4663 return 0;
Paul Menagecc31edc2008-10-18 20:28:04 -07004664}
4665
Tejun Heo182446d2013-08-08 20:11:24 -04004666static u64 cgroup_read_notify_on_release(struct cgroup_subsys_state *css,
4667 struct cftype *cft)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004668{
Tejun Heo182446d2013-08-08 20:11:24 -04004669 return notify_on_release(css->cgroup);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004670}
4671
Tejun Heo182446d2013-08-08 20:11:24 -04004672static int cgroup_write_notify_on_release(struct cgroup_subsys_state *css,
4673 struct cftype *cft, u64 val)
Paul Menage6379c102008-07-25 01:47:01 -07004674{
Paul Menage6379c102008-07-25 01:47:01 -07004675 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04004676 set_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004677 else
Tejun Heo182446d2013-08-08 20:11:24 -04004678 clear_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004679 return 0;
4680}
4681
Tejun Heo182446d2013-08-08 20:11:24 -04004682static u64 cgroup_clone_children_read(struct cgroup_subsys_state *css,
4683 struct cftype *cft)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004684{
Tejun Heo182446d2013-08-08 20:11:24 -04004685 return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004686}
4687
Tejun Heo182446d2013-08-08 20:11:24 -04004688static int cgroup_clone_children_write(struct cgroup_subsys_state *css,
4689 struct cftype *cft, u64 val)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004690{
4691 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04004692 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004693 else
Tejun Heo182446d2013-08-08 20:11:24 -04004694 clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004695 return 0;
4696}
4697
Tejun Heoa14c6872014-07-15 11:05:09 -04004698/* cgroup core interface files for the default hierarchy */
4699static struct cftype cgroup_dfl_base_files[] = {
4700 {
4701 .name = "cgroup.procs",
Tejun Heo6f60ead2015-09-18 17:54:23 -04004702 .file_offset = offsetof(struct cgroup, procs_file),
Tejun Heoa14c6872014-07-15 11:05:09 -04004703 .seq_start = cgroup_pidlist_start,
4704 .seq_next = cgroup_pidlist_next,
4705 .seq_stop = cgroup_pidlist_stop,
4706 .seq_show = cgroup_pidlist_show,
4707 .private = CGROUP_FILE_PROCS,
4708 .write = cgroup_procs_write,
Tejun Heoa14c6872014-07-15 11:05:09 -04004709 },
4710 {
4711 .name = "cgroup.controllers",
Tejun Heoa14c6872014-07-15 11:05:09 -04004712 .seq_show = cgroup_controllers_show,
4713 },
4714 {
4715 .name = "cgroup.subtree_control",
4716 .seq_show = cgroup_subtree_control_show,
4717 .write = cgroup_subtree_control_write,
4718 },
4719 {
Tejun Heo4a07c222015-09-18 17:54:22 -04004720 .name = "cgroup.events",
Tejun Heoa14c6872014-07-15 11:05:09 -04004721 .flags = CFTYPE_NOT_ON_ROOT,
Tejun Heo6f60ead2015-09-18 17:54:23 -04004722 .file_offset = offsetof(struct cgroup, events_file),
Tejun Heo4a07c222015-09-18 17:54:22 -04004723 .seq_show = cgroup_events_show,
Tejun Heoa14c6872014-07-15 11:05:09 -04004724 },
4725 { } /* terminate */
4726};
4727
4728/* cgroup core interface files for the legacy hierarchies */
4729static struct cftype cgroup_legacy_base_files[] = {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004730 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07004731 .name = "cgroup.procs",
Tejun Heo6612f052013-12-05 12:28:04 -05004732 .seq_start = cgroup_pidlist_start,
4733 .seq_next = cgroup_pidlist_next,
4734 .seq_stop = cgroup_pidlist_stop,
4735 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004736 .private = CGROUP_FILE_PROCS,
Tejun Heoacbef752014-05-13 12:16:22 -04004737 .write = cgroup_procs_write,
Ben Blum102a7752009-09-23 15:56:26 -07004738 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07004739 {
Daniel Lezcano97978e62010-10-27 15:33:35 -07004740 .name = "cgroup.clone_children",
4741 .read_u64 = cgroup_clone_children_read,
4742 .write_u64 = cgroup_clone_children_write,
4743 },
Tejun Heo6e6ff252012-04-01 12:09:55 -07004744 {
Tejun Heo873fe092013-04-14 20:15:26 -07004745 .name = "cgroup.sane_behavior",
4746 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004747 .seq_show = cgroup_sane_behavior_show,
Tejun Heo873fe092013-04-14 20:15:26 -07004748 },
Tejun Heof8f22e52014-04-23 11:13:16 -04004749 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07004750 .name = "tasks",
Tejun Heo6612f052013-12-05 12:28:04 -05004751 .seq_start = cgroup_pidlist_start,
4752 .seq_next = cgroup_pidlist_next,
4753 .seq_stop = cgroup_pidlist_stop,
4754 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004755 .private = CGROUP_FILE_TASKS,
Tejun Heoacbef752014-05-13 12:16:22 -04004756 .write = cgroup_tasks_write,
Tejun Heod5c56ce2013-06-03 19:14:34 -07004757 },
4758 {
4759 .name = "notify_on_release",
Tejun Heod5c56ce2013-06-03 19:14:34 -07004760 .read_u64 = cgroup_read_notify_on_release,
4761 .write_u64 = cgroup_write_notify_on_release,
4762 },
Tejun Heo873fe092013-04-14 20:15:26 -07004763 {
Tejun Heo6e6ff252012-04-01 12:09:55 -07004764 .name = "release_agent",
Tejun Heoa14c6872014-07-15 11:05:09 -04004765 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004766 .seq_show = cgroup_release_agent_show,
Tejun Heo451af502014-05-13 12:16:21 -04004767 .write = cgroup_release_agent_write,
Tejun Heo5f469902014-02-11 11:52:48 -05004768 .max_write_len = PATH_MAX - 1,
Tejun Heo6e6ff252012-04-01 12:09:55 -07004769 },
Tejun Heodb0416b2012-04-01 12:09:55 -07004770 { } /* terminate */
Paul Menagebbcb81d2007-10-18 23:39:32 -07004771};
4772
Tejun Heo0c21ead2013-08-13 20:22:51 -04004773/*
4774 * css destruction is four-stage process.
4775 *
4776 * 1. Destruction starts. Killing of the percpu_ref is initiated.
4777 * Implemented in kill_css().
4778 *
4779 * 2. When the percpu_ref is confirmed to be visible as killed on all CPUs
Tejun Heoec903c02014-05-13 12:11:01 -04004780 * and thus css_tryget_online() is guaranteed to fail, the css can be
4781 * offlined by invoking offline_css(). After offlining, the base ref is
4782 * put. Implemented in css_killed_work_fn().
Tejun Heo0c21ead2013-08-13 20:22:51 -04004783 *
4784 * 3. When the percpu_ref reaches zero, the only possible remaining
4785 * accessors are inside RCU read sections. css_release() schedules the
4786 * RCU callback.
4787 *
4788 * 4. After the grace period, the css can be freed. Implemented in
4789 * css_free_work_fn().
4790 *
4791 * It is actually hairier because both step 2 and 4 require process context
4792 * and thus involve punting to css->destroy_work adding two additional
4793 * steps to the already complex sequence.
4794 */
Tejun Heo35ef10d2013-08-13 11:01:54 -04004795static void css_free_work_fn(struct work_struct *work)
Tejun Heo48ddbe12012-04-01 12:09:56 -07004796{
4797 struct cgroup_subsys_state *css =
Tejun Heo35ef10d2013-08-13 11:01:54 -04004798 container_of(work, struct cgroup_subsys_state, destroy_work);
Vladimir Davydov01e58652015-02-12 14:59:26 -08004799 struct cgroup_subsys *ss = css->ss;
Tejun Heo0c21ead2013-08-13 20:22:51 -04004800 struct cgroup *cgrp = css->cgroup;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004801
Tejun Heo9a1049d2014-06-28 08:10:14 -04004802 percpu_ref_exit(&css->refcnt);
4803
Vladimir Davydov01e58652015-02-12 14:59:26 -08004804 if (ss) {
Tejun Heo9d755d32014-05-14 09:15:02 -04004805 /* css free path */
Tejun Heo8bb5ef72016-01-21 15:32:15 -05004806 struct cgroup_subsys_state *parent = css->parent;
Vladimir Davydov01e58652015-02-12 14:59:26 -08004807 int id = css->id;
4808
Vladimir Davydov01e58652015-02-12 14:59:26 -08004809 ss->css_free(css);
4810 cgroup_idr_remove(&ss->css_idr, id);
Tejun Heo9d755d32014-05-14 09:15:02 -04004811 cgroup_put(cgrp);
Tejun Heo8bb5ef72016-01-21 15:32:15 -05004812
4813 if (parent)
4814 css_put(parent);
Tejun Heo9d755d32014-05-14 09:15:02 -04004815 } else {
4816 /* cgroup free path */
4817 atomic_dec(&cgrp->root->nr_cgrps);
4818 cgroup_pidlist_destroy_all(cgrp);
Zefan Li971ff492014-09-18 16:06:19 +08004819 cancel_work_sync(&cgrp->release_agent_work);
Tejun Heo9d755d32014-05-14 09:15:02 -04004820
Tejun Heod51f39b2014-05-16 13:22:48 -04004821 if (cgroup_parent(cgrp)) {
Tejun Heo9d755d32014-05-14 09:15:02 -04004822 /*
4823 * We get a ref to the parent, and put the ref when
4824 * this cgroup is being freed, so it's guaranteed
4825 * that the parent won't be destroyed before its
4826 * children.
4827 */
Tejun Heod51f39b2014-05-16 13:22:48 -04004828 cgroup_put(cgroup_parent(cgrp));
Tejun Heo9d755d32014-05-14 09:15:02 -04004829 kernfs_put(cgrp->kn);
4830 kfree(cgrp);
4831 } else {
4832 /*
4833 * This is root cgroup's refcnt reaching zero,
4834 * which indicates that the root should be
4835 * released.
4836 */
4837 cgroup_destroy_root(cgrp->root);
4838 }
4839 }
Tejun Heo0c21ead2013-08-13 20:22:51 -04004840}
4841
4842static void css_free_rcu_fn(struct rcu_head *rcu_head)
4843{
4844 struct cgroup_subsys_state *css =
4845 container_of(rcu_head, struct cgroup_subsys_state, rcu_head);
4846
Tejun Heo0c21ead2013-08-13 20:22:51 -04004847 INIT_WORK(&css->destroy_work, css_free_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05004848 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004849}
4850
Tejun Heo25e15d82014-05-14 09:15:02 -04004851static void css_release_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004852{
4853 struct cgroup_subsys_state *css =
Tejun Heo25e15d82014-05-14 09:15:02 -04004854 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo15a4c832014-05-04 15:09:14 -04004855 struct cgroup_subsys *ss = css->ss;
Tejun Heo9d755d32014-05-14 09:15:02 -04004856 struct cgroup *cgrp = css->cgroup;
Tejun Heod3daf282013-06-13 19:39:16 -07004857
Tejun Heo1fed1b22014-05-16 13:22:49 -04004858 mutex_lock(&cgroup_mutex);
4859
Tejun Heode3f0342014-05-16 13:22:49 -04004860 css->flags |= CSS_RELEASED;
Tejun Heo1fed1b22014-05-16 13:22:49 -04004861 list_del_rcu(&css->sibling);
4862
Tejun Heo9d755d32014-05-14 09:15:02 -04004863 if (ss) {
4864 /* css release path */
Vladimir Davydov01e58652015-02-12 14:59:26 -08004865 cgroup_idr_replace(&ss->css_idr, NULL, css->id);
Tejun Heo7d172cc2014-11-18 02:49:51 -05004866 if (ss->css_released)
4867 ss->css_released(css);
Tejun Heo9d755d32014-05-14 09:15:02 -04004868 } else {
4869 /* cgroup release path */
Tejun Heo9d755d32014-05-14 09:15:02 -04004870 cgroup_idr_remove(&cgrp->root->cgroup_idr, cgrp->id);
4871 cgrp->id = -1;
Li Zefana4189482014-09-04 14:43:07 +08004872
4873 /*
4874 * There are two control paths which try to determine
4875 * cgroup from dentry without going through kernfs -
4876 * cgroupstats_build() and css_tryget_online_from_dir().
4877 * Those are supported by RCU protecting clearing of
4878 * cgrp->kn->priv backpointer.
4879 */
Tejun Heo6cd0f5b2016-03-03 09:57:58 -05004880 if (cgrp->kn)
4881 RCU_INIT_POINTER(*(void __rcu __force **)&cgrp->kn->priv,
4882 NULL);
Tejun Heo9d755d32014-05-14 09:15:02 -04004883 }
Tejun Heo15a4c832014-05-04 15:09:14 -04004884
Tejun Heo1fed1b22014-05-16 13:22:49 -04004885 mutex_unlock(&cgroup_mutex);
4886
Tejun Heo0c21ead2013-08-13 20:22:51 -04004887 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004888}
4889
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004890static void css_release(struct percpu_ref *ref)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004891{
4892 struct cgroup_subsys_state *css =
4893 container_of(ref, struct cgroup_subsys_state, refcnt);
4894
Tejun Heo25e15d82014-05-14 09:15:02 -04004895 INIT_WORK(&css->destroy_work, css_release_work_fn);
4896 queue_work(cgroup_destroy_wq, &css->destroy_work);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004897}
4898
Tejun Heoddfcada2014-05-04 15:09:14 -04004899static void init_and_link_css(struct cgroup_subsys_state *css,
4900 struct cgroup_subsys *ss, struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004901{
Tejun Heo0cb51d72014-05-16 13:22:49 -04004902 lockdep_assert_held(&cgroup_mutex);
4903
Tejun Heoddfcada2014-05-04 15:09:14 -04004904 cgroup_get(cgrp);
4905
Tejun Heod5c419b2014-05-16 13:22:48 -04004906 memset(css, 0, sizeof(*css));
Paul Menagebd89aab2007-10-18 23:40:44 -07004907 css->cgroup = cgrp;
Tejun Heo72c97e52013-08-08 20:11:22 -04004908 css->ss = ss;
Tejun Heod5c419b2014-05-16 13:22:48 -04004909 INIT_LIST_HEAD(&css->sibling);
4910 INIT_LIST_HEAD(&css->children);
Tejun Heo0cb51d72014-05-16 13:22:49 -04004911 css->serial_nr = css_serial_nr_next++;
Tejun Heoaa226ff2016-01-21 15:31:11 -05004912 atomic_set(&css->online_cnt, 0);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004913
Tejun Heod51f39b2014-05-16 13:22:48 -04004914 if (cgroup_parent(cgrp)) {
4915 css->parent = cgroup_css(cgroup_parent(cgrp), ss);
Tejun Heoddfcada2014-05-04 15:09:14 -04004916 css_get(css->parent);
Tejun Heoddfcada2014-05-04 15:09:14 -04004917 }
Tejun Heo0ae78e02013-08-13 11:01:54 -04004918
Tejun Heoca8bdca2013-08-26 18:40:56 -04004919 BUG_ON(cgroup_css(cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004920}
4921
Li Zefan2a4ac632013-07-31 16:16:40 +08004922/* invoke ->css_online() on a new CSS and mark it online if successful */
Tejun Heo623f9262013-08-13 11:01:55 -04004923static int online_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004924{
Tejun Heo623f9262013-08-13 11:01:55 -04004925 struct cgroup_subsys *ss = css->ss;
Tejun Heob1929db2012-11-19 08:13:38 -08004926 int ret = 0;
4927
Tejun Heoa31f2d32012-11-19 08:13:37 -08004928 lockdep_assert_held(&cgroup_mutex);
4929
Tejun Heo92fb9742012-11-19 08:13:38 -08004930 if (ss->css_online)
Tejun Heoeb954192013-08-08 20:11:23 -04004931 ret = ss->css_online(css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004932 if (!ret) {
Tejun Heoeb954192013-08-08 20:11:23 -04004933 css->flags |= CSS_ONLINE;
Tejun Heoaec25022014-02-08 10:36:58 -05004934 rcu_assign_pointer(css->cgroup->subsys[ss->id], css);
Tejun Heoaa226ff2016-01-21 15:31:11 -05004935
4936 atomic_inc(&css->online_cnt);
4937 if (css->parent)
4938 atomic_inc(&css->parent->online_cnt);
Tejun Heoae7f1642013-08-13 20:22:50 -04004939 }
Tejun Heob1929db2012-11-19 08:13:38 -08004940 return ret;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004941}
4942
Li Zefan2a4ac632013-07-31 16:16:40 +08004943/* if the CSS is online, invoke ->css_offline() on it and mark it offline */
Tejun Heo623f9262013-08-13 11:01:55 -04004944static void offline_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004945{
Tejun Heo623f9262013-08-13 11:01:55 -04004946 struct cgroup_subsys *ss = css->ss;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004947
4948 lockdep_assert_held(&cgroup_mutex);
4949
4950 if (!(css->flags & CSS_ONLINE))
4951 return;
4952
Vladimir Davydovfa062352016-03-01 19:56:30 +03004953 if (ss->css_reset)
4954 ss->css_reset(css);
4955
Li Zefand7eeac12013-03-12 15:35:59 -07004956 if (ss->css_offline)
Tejun Heoeb954192013-08-08 20:11:23 -04004957 ss->css_offline(css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004958
Tejun Heoeb954192013-08-08 20:11:23 -04004959 css->flags &= ~CSS_ONLINE;
Tejun Heoe3297802014-04-23 11:13:15 -04004960 RCU_INIT_POINTER(css->cgroup->subsys[ss->id], NULL);
Tejun Heof8f22e52014-04-23 11:13:16 -04004961
4962 wake_up_all(&css->cgroup->offline_waitq);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004963}
4964
Tejun Heoc81c925a2013-12-06 15:11:56 -05004965/**
Tejun Heo6cd0f5b2016-03-03 09:57:58 -05004966 * css_create - create a cgroup_subsys_state
Tejun Heoc81c925a2013-12-06 15:11:56 -05004967 * @cgrp: the cgroup new css will be associated with
4968 * @ss: the subsys of new css
4969 *
4970 * Create a new css associated with @cgrp - @ss pair. On success, the new
Tejun Heo6cd0f5b2016-03-03 09:57:58 -05004971 * css is online and installed in @cgrp. This function doesn't create the
4972 * interface files. Returns 0 on success, -errno on failure.
Tejun Heoc81c925a2013-12-06 15:11:56 -05004973 */
Tejun Heo6cd0f5b2016-03-03 09:57:58 -05004974static struct cgroup_subsys_state *css_create(struct cgroup *cgrp,
4975 struct cgroup_subsys *ss)
Tejun Heoc81c925a2013-12-06 15:11:56 -05004976{
Tejun Heod51f39b2014-05-16 13:22:48 -04004977 struct cgroup *parent = cgroup_parent(cgrp);
Tejun Heo1fed1b22014-05-16 13:22:49 -04004978 struct cgroup_subsys_state *parent_css = cgroup_css(parent, ss);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004979 struct cgroup_subsys_state *css;
4980 int err;
4981
Tejun Heoc81c925a2013-12-06 15:11:56 -05004982 lockdep_assert_held(&cgroup_mutex);
4983
Tejun Heo1fed1b22014-05-16 13:22:49 -04004984 css = ss->css_alloc(parent_css);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004985 if (IS_ERR(css))
Tejun Heo6cd0f5b2016-03-03 09:57:58 -05004986 return css;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004987
Tejun Heoddfcada2014-05-04 15:09:14 -04004988 init_and_link_css(css, ss, cgrp);
Tejun Heoa2bed822014-05-04 15:09:14 -04004989
Tejun Heo2aad2a82014-09-24 13:31:50 -04004990 err = percpu_ref_init(&css->refcnt, css_release, 0, GFP_KERNEL);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004991 if (err)
Li Zefan3eb59ec2014-03-18 17:02:36 +08004992 goto err_free_css;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004993
Vladimir Davydovcf780b72015-08-03 15:32:26 +03004994 err = cgroup_idr_alloc(&ss->css_idr, NULL, 2, 0, GFP_KERNEL);
Tejun Heo15a4c832014-05-04 15:09:14 -04004995 if (err < 0)
4996 goto err_free_percpu_ref;
4997 css->id = err;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004998
Tejun Heo15a4c832014-05-04 15:09:14 -04004999 /* @css is ready to be brought online now, make it visible */
Tejun Heo1fed1b22014-05-16 13:22:49 -04005000 list_add_tail_rcu(&css->sibling, &parent_css->children);
Tejun Heo15a4c832014-05-04 15:09:14 -04005001 cgroup_idr_replace(&ss->css_idr, css, css->id);
Tejun Heoc81c925a2013-12-06 15:11:56 -05005002
5003 err = online_css(css);
5004 if (err)
Tejun Heo1fed1b22014-05-16 13:22:49 -04005005 goto err_list_del;
Tejun Heo94419622014-03-19 10:23:54 -04005006
Tejun Heoc81c925a2013-12-06 15:11:56 -05005007 if (ss->broken_hierarchy && !ss->warned_broken_hierarchy &&
Tejun Heod51f39b2014-05-16 13:22:48 -04005008 cgroup_parent(parent)) {
Joe Perchesed3d2612014-04-25 18:28:03 -04005009 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 -04005010 current->comm, current->pid, ss->name);
Tejun Heoc81c925a2013-12-06 15:11:56 -05005011 if (!strcmp(ss->name, "memory"))
Joe Perchesed3d2612014-04-25 18:28:03 -04005012 pr_warn("\"memory\" requires setting use_hierarchy to 1 on the root\n");
Tejun Heoc81c925a2013-12-06 15:11:56 -05005013 ss->warned_broken_hierarchy = true;
5014 }
5015
Tejun Heo6cd0f5b2016-03-03 09:57:58 -05005016 return css;
Tejun Heoc81c925a2013-12-06 15:11:56 -05005017
Tejun Heo1fed1b22014-05-16 13:22:49 -04005018err_list_del:
5019 list_del_rcu(&css->sibling);
Tejun Heo15a4c832014-05-04 15:09:14 -04005020 cgroup_idr_remove(&ss->css_idr, css->id);
Li Zefan3eb59ec2014-03-18 17:02:36 +08005021err_free_percpu_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04005022 percpu_ref_exit(&css->refcnt);
Li Zefan3eb59ec2014-03-18 17:02:36 +08005023err_free_css:
Tejun Heoa2bed822014-05-04 15:09:14 -04005024 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heo6cd0f5b2016-03-03 09:57:58 -05005025 return ERR_PTR(err);
Tejun Heoc81c925a2013-12-06 15:11:56 -05005026}
5027
Tejun Heoa5bca212016-03-03 09:57:58 -05005028static struct cgroup *cgroup_create(struct cgroup *parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07005029{
Tejun Heoa5bca212016-03-03 09:57:58 -05005030 struct cgroup_root *root = parent->root;
Tejun Heoa5bca212016-03-03 09:57:58 -05005031 struct cgroup *cgrp, *tcgrp;
5032 int level = parent->level + 1;
Tejun Heo03970d32016-03-03 09:58:00 -05005033 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005034
Tejun Heo0a950f62012-11-19 09:02:12 -08005035 /* allocate the cgroup and its ID, 0 is reserved for the root */
Tejun Heob11cfb52015-11-20 15:55:52 -05005036 cgrp = kzalloc(sizeof(*cgrp) +
5037 sizeof(cgrp->ancestor_ids[0]) * (level + 1), GFP_KERNEL);
Tejun Heoa5bca212016-03-03 09:57:58 -05005038 if (!cgrp)
5039 return ERR_PTR(-ENOMEM);
Li Zefan0ab02ca2014-02-11 16:05:46 +08005040
Tejun Heo2aad2a82014-09-24 13:31:50 -04005041 ret = percpu_ref_init(&cgrp->self.refcnt, css_release, 0, GFP_KERNEL);
Tejun Heo9d755d32014-05-14 09:15:02 -04005042 if (ret)
5043 goto out_free_cgrp;
5044
Li Zefan0ab02ca2014-02-11 16:05:46 +08005045 /*
5046 * Temporarily set the pointer to NULL, so idr_find() won't return
5047 * a half-baked cgroup.
5048 */
Vladimir Davydovcf780b72015-08-03 15:32:26 +03005049 cgrp->id = cgroup_idr_alloc(&root->cgroup_idr, NULL, 2, 0, GFP_KERNEL);
Li Zefan0ab02ca2014-02-11 16:05:46 +08005050 if (cgrp->id < 0) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04005051 ret = -ENOMEM;
Tejun Heo9d755d32014-05-14 09:15:02 -04005052 goto out_cancel_ref;
Tejun Heo976c06b2012-11-05 09:16:59 -08005053 }
5054
Paul Menagecc31edc2008-10-18 20:28:04 -07005055 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005056
Tejun Heo9d800df2014-05-14 09:15:00 -04005057 cgrp->self.parent = &parent->self;
Tejun Heoba0f4d72014-05-13 12:19:22 -04005058 cgrp->root = root;
Tejun Heob11cfb52015-11-20 15:55:52 -05005059 cgrp->level = level;
5060
5061 for (tcgrp = cgrp; tcgrp; tcgrp = cgroup_parent(tcgrp))
5062 cgrp->ancestor_ids[tcgrp->level] = tcgrp->id;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005063
Li Zefanb6abdb02008-03-04 14:28:19 -08005064 if (notify_on_release(parent))
5065 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
5066
Tejun Heo2260e7f2012-11-19 08:13:38 -08005067 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags))
5068 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07005069
Tejun Heo0cb51d72014-05-16 13:22:49 -04005070 cgrp->self.serial_nr = css_serial_nr_next++;
Tejun Heo53fa5262013-05-24 10:55:38 +09005071
Tejun Heo4e139af2012-11-19 08:13:36 -08005072 /* allocation complete, commit to creation */
Tejun Heod5c419b2014-05-16 13:22:48 -04005073 list_add_tail_rcu(&cgrp->self.sibling, &cgroup_parent(cgrp)->self.children);
Tejun Heo3c9c8252014-02-12 09:29:50 -05005074 atomic_inc(&root->nr_cgrps);
Tejun Heo59f52962014-02-11 11:52:49 -05005075 cgroup_get(parent);
Li Zefan415cf072013-04-08 14:35:02 +08005076
Tejun Heo0d802552013-12-06 15:11:56 -05005077 /*
5078 * @cgrp is now fully operational. If something fails after this
5079 * point, it'll be released via the normal destruction path.
5080 */
Tejun Heo6fa49182014-05-04 15:09:13 -04005081 cgroup_idr_replace(&root->cgroup_idr, cgrp, cgrp->id);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08005082
Tejun Heobd53d612014-04-23 11:13:16 -04005083 /*
5084 * On the default hierarchy, a child doesn't automatically inherit
Tejun Heo667c2492014-07-08 18:02:56 -04005085 * subtree_control from the parent. Each is configured manually.
Tejun Heobd53d612014-04-23 11:13:16 -04005086 */
Tejun Heo03970d32016-03-03 09:58:00 -05005087 if (!cgroup_on_dfl(cgrp))
Tejun Heo5531dc92016-03-03 09:57:58 -05005088 cgrp->subtree_control = cgroup_control(cgrp);
Tejun Heo03970d32016-03-03 09:58:00 -05005089
5090 cgroup_propagate_control(cgrp);
5091
5092 /* @cgrp doesn't have dir yet so the following will only create csses */
5093 ret = cgroup_apply_control_enable(cgrp);
5094 if (ret)
5095 goto out_destroy;
Tejun Heof392e512014-04-23 11:13:14 -04005096
Tejun Heoa5bca212016-03-03 09:57:58 -05005097 return cgrp;
5098
5099out_cancel_ref:
5100 percpu_ref_exit(&cgrp->self.refcnt);
5101out_free_cgrp:
5102 kfree(cgrp);
5103 return ERR_PTR(ret);
5104out_destroy:
5105 cgroup_destroy_locked(cgrp);
5106 return ERR_PTR(ret);
5107}
5108
5109static int cgroup_mkdir(struct kernfs_node *parent_kn, const char *name,
5110 umode_t mode)
5111{
5112 struct cgroup *parent, *cgrp;
Tejun Heoa5bca212016-03-03 09:57:58 -05005113 struct kernfs_node *kn;
Tejun Heo03970d32016-03-03 09:58:00 -05005114 int ret;
Tejun Heoa5bca212016-03-03 09:57:58 -05005115
5116 /* do not accept '\n' to prevent making /proc/<pid>/cgroup unparsable */
5117 if (strchr(name, '\n'))
5118 return -EINVAL;
5119
Tejun Heo945ba192016-03-03 09:58:00 -05005120 parent = cgroup_kn_lock_live(parent_kn, false);
Tejun Heoa5bca212016-03-03 09:57:58 -05005121 if (!parent)
5122 return -ENODEV;
5123
5124 cgrp = cgroup_create(parent);
5125 if (IS_ERR(cgrp)) {
5126 ret = PTR_ERR(cgrp);
5127 goto out_unlock;
5128 }
5129
Tejun Heo195e9b62016-03-03 09:57:58 -05005130 /* create the directory */
5131 kn = kernfs_create_dir(parent->kn, name, mode, cgrp);
5132 if (IS_ERR(kn)) {
5133 ret = PTR_ERR(kn);
5134 goto out_destroy;
5135 }
5136 cgrp->kn = kn;
5137
5138 /*
5139 * This extra ref will be put in cgroup_free_fn() and guarantees
5140 * that @cgrp->kn is always accessible.
5141 */
5142 kernfs_get(kn);
5143
5144 ret = cgroup_kn_set_ugid(kn);
5145 if (ret)
5146 goto out_destroy;
5147
Tejun Heo334c3672016-03-03 09:58:01 -05005148 ret = css_populate_dir(&cgrp->self);
Tejun Heo195e9b62016-03-03 09:57:58 -05005149 if (ret)
5150 goto out_destroy;
5151
Tejun Heo03970d32016-03-03 09:58:00 -05005152 ret = cgroup_apply_control_enable(cgrp);
5153 if (ret)
5154 goto out_destroy;
Tejun Heo195e9b62016-03-03 09:57:58 -05005155
5156 /* let's create and online css's */
Tejun Heo2bd59d42014-02-11 11:52:49 -05005157 kernfs_activate(kn);
5158
Tejun Heoba0f4d72014-05-13 12:19:22 -04005159 ret = 0;
5160 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005161
Tejun Heoa5bca212016-03-03 09:57:58 -05005162out_destroy:
5163 cgroup_destroy_locked(cgrp);
Tejun Heoba0f4d72014-05-13 12:19:22 -04005164out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04005165 cgroup_kn_unlock(parent_kn);
Tejun Heoe1b2dc12014-03-20 11:10:15 -04005166 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005167}
5168
Tejun Heo223dbc32013-08-13 20:22:50 -04005169/*
5170 * This is called when the refcnt of a css is confirmed to be killed.
Tejun Heo249f3462014-05-14 09:15:01 -04005171 * css_tryget_online() is now guaranteed to fail. Tell the subsystem to
5172 * initate destruction and put the css ref from kill_css().
Tejun Heo223dbc32013-08-13 20:22:50 -04005173 */
5174static void css_killed_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07005175{
Tejun Heo223dbc32013-08-13 20:22:50 -04005176 struct cgroup_subsys_state *css =
5177 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07005178
Tejun Heof20104d2013-08-13 20:22:50 -04005179 mutex_lock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04005180
Tejun Heoaa226ff2016-01-21 15:31:11 -05005181 do {
5182 offline_css(css);
5183 css_put(css);
5184 /* @css can't go away while we're holding cgroup_mutex */
5185 css = css->parent;
5186 } while (css && atomic_dec_and_test(&css->online_cnt));
5187
5188 mutex_unlock(&cgroup_mutex);
Tejun Heod3daf282013-06-13 19:39:16 -07005189}
5190
Tejun Heo223dbc32013-08-13 20:22:50 -04005191/* css kill confirmation processing requires process context, bounce */
5192static void css_killed_ref_fn(struct percpu_ref *ref)
Tejun Heod3daf282013-06-13 19:39:16 -07005193{
5194 struct cgroup_subsys_state *css =
5195 container_of(ref, struct cgroup_subsys_state, refcnt);
5196
Tejun Heoaa226ff2016-01-21 15:31:11 -05005197 if (atomic_dec_and_test(&css->online_cnt)) {
5198 INIT_WORK(&css->destroy_work, css_killed_work_fn);
5199 queue_work(cgroup_destroy_wq, &css->destroy_work);
5200 }
Tejun Heod3daf282013-06-13 19:39:16 -07005201}
5202
Tejun Heof392e512014-04-23 11:13:14 -04005203/**
5204 * kill_css - destroy a css
5205 * @css: css to destroy
5206 *
5207 * This function initiates destruction of @css by removing cgroup interface
5208 * files and putting its base reference. ->css_offline() will be invoked
Tejun Heoec903c02014-05-13 12:11:01 -04005209 * asynchronously once css_tryget_online() is guaranteed to fail and when
5210 * the reference count reaches zero, @css will be released.
Tejun Heof392e512014-04-23 11:13:14 -04005211 */
5212static void kill_css(struct cgroup_subsys_state *css)
Tejun Heoedae0c32013-08-13 20:22:51 -04005213{
Tejun Heo01f64742014-05-13 12:19:23 -04005214 lockdep_assert_held(&cgroup_mutex);
Tejun Heo94419622014-03-19 10:23:54 -04005215
Tejun Heo2bd59d42014-02-11 11:52:49 -05005216 /*
5217 * This must happen before css is disassociated with its cgroup.
5218 * See seq_css() for details.
5219 */
Tejun Heo334c3672016-03-03 09:58:01 -05005220 css_clear_dir(css);
Tejun Heo3c14f8b2013-08-13 20:22:51 -04005221
Tejun Heoedae0c32013-08-13 20:22:51 -04005222 /*
5223 * Killing would put the base ref, but we need to keep it alive
5224 * until after ->css_offline().
5225 */
5226 css_get(css);
5227
5228 /*
5229 * cgroup core guarantees that, by the time ->css_offline() is
5230 * invoked, no new css reference will be given out via
Tejun Heoec903c02014-05-13 12:11:01 -04005231 * css_tryget_online(). We can't simply call percpu_ref_kill() and
Tejun Heoedae0c32013-08-13 20:22:51 -04005232 * proceed to offlining css's because percpu_ref_kill() doesn't
5233 * guarantee that the ref is seen as killed on all CPUs on return.
5234 *
5235 * Use percpu_ref_kill_and_confirm() to get notifications as each
5236 * css is confirmed to be seen as killed on all CPUs.
5237 */
5238 percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07005239}
5240
5241/**
5242 * cgroup_destroy_locked - the first stage of cgroup destruction
5243 * @cgrp: cgroup to be destroyed
5244 *
5245 * css's make use of percpu refcnts whose killing latency shouldn't be
5246 * exposed to userland and are RCU protected. Also, cgroup core needs to
Tejun Heoec903c02014-05-13 12:11:01 -04005247 * guarantee that css_tryget_online() won't succeed by the time
5248 * ->css_offline() is invoked. To satisfy all the requirements,
5249 * destruction is implemented in the following two steps.
Tejun Heod3daf282013-06-13 19:39:16 -07005250 *
5251 * s1. Verify @cgrp can be destroyed and mark it dying. Remove all
5252 * userland visible parts and start killing the percpu refcnts of
5253 * css's. Set up so that the next stage will be kicked off once all
5254 * the percpu refcnts are confirmed to be killed.
5255 *
5256 * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the
5257 * rest of destruction. Once all cgroup references are gone, the
5258 * cgroup is RCU-freed.
5259 *
5260 * This function implements s1. After this step, @cgrp is gone as far as
5261 * the userland is concerned and a new cgroup with the same name may be
5262 * created. As cgroup doesn't care about the names internally, this
5263 * doesn't cause any problem.
5264 */
Tejun Heo42809dd2012-11-19 08:13:37 -08005265static int cgroup_destroy_locked(struct cgroup *cgrp)
5266 __releases(&cgroup_mutex) __acquires(&cgroup_mutex)
Paul Menageddbcc7e2007-10-18 23:39:30 -07005267{
Tejun Heo2bd59d42014-02-11 11:52:49 -05005268 struct cgroup_subsys_state *css;
Tejun Heo2b021cb2016-03-15 20:43:04 -04005269 struct cgrp_cset_link *link;
Tejun Heo1c6727a2013-12-06 15:11:56 -05005270 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005271
Tejun Heo42809dd2012-11-19 08:13:37 -08005272 lockdep_assert_held(&cgroup_mutex);
5273
Tejun Heo91486f62015-10-15 16:41:51 -04005274 /*
5275 * Only migration can raise populated from zero and we're already
5276 * holding cgroup_mutex.
5277 */
5278 if (cgroup_is_populated(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07005279 return -EBUSY;
Tejun Heoed9577932012-11-05 09:16:58 -08005280
Tejun Heo1a90dd52012-11-05 09:16:59 -08005281 /*
Tejun Heod5c419b2014-05-16 13:22:48 -04005282 * Make sure there's no live children. We can't test emptiness of
5283 * ->self.children as dead children linger on it while being
5284 * drained; otherwise, "rmdir parent/child parent" may fail.
Hugh Dickinsbb78a922013-08-28 16:31:23 -07005285 */
Tejun Heof3d46502014-05-16 13:22:52 -04005286 if (css_has_online_children(&cgrp->self))
Hugh Dickinsbb78a922013-08-28 16:31:23 -07005287 return -EBUSY;
5288
5289 /*
Tejun Heo2b021cb2016-03-15 20:43:04 -04005290 * Mark @cgrp and the associated csets dead. The former prevents
5291 * further task migration and child creation by disabling
5292 * cgroup_lock_live_group(). The latter makes the csets ignored by
5293 * the migration path.
Tejun Heo455050d2013-06-13 19:27:41 -07005294 */
Tejun Heo184faf32014-05-16 13:22:51 -04005295 cgrp->self.flags &= ~CSS_ONLINE;
Tejun Heo1a90dd52012-11-05 09:16:59 -08005296
Tejun Heo2b021cb2016-03-15 20:43:04 -04005297 spin_lock_bh(&css_set_lock);
5298 list_for_each_entry(link, &cgrp->cset_links, cset_link)
5299 link->cset->dead = true;
5300 spin_unlock_bh(&css_set_lock);
5301
Tejun Heo249f3462014-05-14 09:15:01 -04005302 /* initiate massacre of all css's */
Tejun Heo1a90dd52012-11-05 09:16:59 -08005303 for_each_css(css, ssid, cgrp)
Tejun Heo455050d2013-06-13 19:27:41 -07005304 kill_css(css);
5305
Tejun Heo455050d2013-06-13 19:27:41 -07005306 /*
Tejun Heo01f64742014-05-13 12:19:23 -04005307 * Remove @cgrp directory along with the base files. @cgrp has an
5308 * extra ref on its kn.
Tejun Heo455050d2013-06-13 19:27:41 -07005309 */
Tejun Heo01f64742014-05-13 12:19:23 -04005310 kernfs_remove(cgrp->kn);
Tejun Heof20104d2013-08-13 20:22:50 -04005311
Tejun Heod51f39b2014-05-16 13:22:48 -04005312 check_for_release(cgroup_parent(cgrp));
Tejun Heo2bd59d42014-02-11 11:52:49 -05005313
Tejun Heo249f3462014-05-14 09:15:01 -04005314 /* put the base reference */
Tejun Heo9d755d32014-05-14 09:15:02 -04005315 percpu_ref_kill(&cgrp->self.refcnt);
Tejun Heo455050d2013-06-13 19:27:41 -07005316
Tejun Heoea15f8c2013-06-13 19:27:42 -07005317 return 0;
5318};
5319
Tejun Heo2bd59d42014-02-11 11:52:49 -05005320static int cgroup_rmdir(struct kernfs_node *kn)
Tejun Heo42809dd2012-11-19 08:13:37 -08005321{
Tejun Heoa9746d82014-05-13 12:19:22 -04005322 struct cgroup *cgrp;
Tejun Heo2bd59d42014-02-11 11:52:49 -05005323 int ret = 0;
Tejun Heo42809dd2012-11-19 08:13:37 -08005324
Tejun Heo945ba192016-03-03 09:58:00 -05005325 cgrp = cgroup_kn_lock_live(kn, false);
Tejun Heoa9746d82014-05-13 12:19:22 -04005326 if (!cgrp)
5327 return 0;
Tejun Heo42809dd2012-11-19 08:13:37 -08005328
Tejun Heoa9746d82014-05-13 12:19:22 -04005329 ret = cgroup_destroy_locked(cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -08005330
Tejun Heoa9746d82014-05-13 12:19:22 -04005331 cgroup_kn_unlock(kn);
Tejun Heo42809dd2012-11-19 08:13:37 -08005332 return ret;
5333}
5334
Tejun Heo2bd59d42014-02-11 11:52:49 -05005335static struct kernfs_syscall_ops cgroup_kf_syscall_ops = {
5336 .remount_fs = cgroup_remount,
5337 .show_options = cgroup_show_options,
5338 .mkdir = cgroup_mkdir,
5339 .rmdir = cgroup_rmdir,
5340 .rename = cgroup_rename,
5341};
Tejun Heo8e3f6542012-04-01 12:09:55 -07005342
Tejun Heo15a4c832014-05-04 15:09:14 -04005343static void __init cgroup_init_subsys(struct cgroup_subsys *ss, bool early)
Paul Menageddbcc7e2007-10-18 23:39:30 -07005344{
Paul Menageddbcc7e2007-10-18 23:39:30 -07005345 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08005346
Tejun Heoa5ae9892015-12-29 14:53:56 -05005347 pr_debug("Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005348
Tejun Heo648bb562012-11-19 08:13:36 -08005349 mutex_lock(&cgroup_mutex);
5350
Tejun Heo15a4c832014-05-04 15:09:14 -04005351 idr_init(&ss->css_idr);
Tejun Heo0adb0702014-02-12 09:29:48 -05005352 INIT_LIST_HEAD(&ss->cfts);
Tejun Heo8e3f6542012-04-01 12:09:55 -07005353
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005354 /* Create the root cgroup state for this subsystem */
5355 ss->root = &cgrp_dfl_root;
5356 css = ss->css_alloc(cgroup_css(&cgrp_dfl_root.cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07005357 /* We don't handle early failures gracefully */
5358 BUG_ON(IS_ERR(css));
Tejun Heoddfcada2014-05-04 15:09:14 -04005359 init_and_link_css(css, ss, &cgrp_dfl_root.cgrp);
Tejun Heo3b514d22014-05-16 13:22:47 -04005360
5361 /*
5362 * Root csses are never destroyed and we can't initialize
5363 * percpu_ref during early init. Disable refcnting.
5364 */
5365 css->flags |= CSS_NO_REF;
5366
Tejun Heo15a4c832014-05-04 15:09:14 -04005367 if (early) {
Tejun Heo9395a452014-05-14 09:15:02 -04005368 /* allocation can't be done safely during early init */
Tejun Heo15a4c832014-05-04 15:09:14 -04005369 css->id = 1;
5370 } else {
5371 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2, GFP_KERNEL);
5372 BUG_ON(css->id < 0);
5373 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07005374
Li Zefane8d55fd2008-04-29 01:00:13 -07005375 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07005376 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07005377 * newly registered, all tasks and hence the
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005378 * init_css_set is in the subsystem's root cgroup. */
Tejun Heoaec25022014-02-08 10:36:58 -05005379 init_css_set.subsys[ss->id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005380
Aleksa Saraicb4a3162015-06-06 10:02:14 +10005381 have_fork_callback |= (bool)ss->fork << ss->id;
5382 have_exit_callback |= (bool)ss->exit << ss->id;
Tejun Heoafcf6c82015-10-15 16:41:53 -04005383 have_free_callback |= (bool)ss->free << ss->id;
Aleksa Sarai7e476822015-06-09 21:32:09 +10005384 have_canfork_callback |= (bool)ss->can_fork << ss->id;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005385
Li Zefane8d55fd2008-04-29 01:00:13 -07005386 /* At system boot, before all subsystems have been
5387 * registered, no tasks have been forked, so we don't
5388 * need to invoke fork callbacks here. */
5389 BUG_ON(!list_empty(&init_task.tasks));
5390
Tejun Heoae7f1642013-08-13 20:22:50 -04005391 BUG_ON(online_css(css));
Tejun Heoa8638032012-11-09 09:12:29 -08005392
Tejun Heo648bb562012-11-19 08:13:36 -08005393 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005394}
5395
5396/**
Li Zefana043e3b2008-02-23 15:24:09 -08005397 * cgroup_init_early - cgroup initialization at system boot
5398 *
5399 * Initialize cgroups at system boot, and initialize any
5400 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07005401 */
5402int __init cgroup_init_early(void)
5403{
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04005404 static struct cgroup_sb_opts __initdata opts;
Tejun Heo30159ec2013-06-25 11:53:37 -07005405 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005406 int i;
Tejun Heo30159ec2013-06-25 11:53:37 -07005407
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005408 init_cgroup_root(&cgrp_dfl_root, &opts);
Tejun Heo3b514d22014-05-16 13:22:47 -04005409 cgrp_dfl_root.cgrp.self.flags |= CSS_NO_REF;
5410
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07005411 RCU_INIT_POINTER(init_task.cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07005412
Tejun Heo3ed80a62014-02-08 10:36:58 -05005413 for_each_subsys(ss, i) {
Tejun Heoaec25022014-02-08 10:36:58 -05005414 WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id,
Xiubo Li63253ad2016-02-26 13:07:38 +08005415 "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p id:name=%d:%s\n",
Tejun Heo073219e2014-02-08 10:36:58 -05005416 i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free,
Tejun Heoaec25022014-02-08 10:36:58 -05005417 ss->id, ss->name);
Tejun Heo073219e2014-02-08 10:36:58 -05005418 WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN,
5419 "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005420
Tejun Heoaec25022014-02-08 10:36:58 -05005421 ss->id = i;
Tejun Heo073219e2014-02-08 10:36:58 -05005422 ss->name = cgroup_subsys_name[i];
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005423 if (!ss->legacy_name)
5424 ss->legacy_name = cgroup_subsys_name[i];
Paul Menageddbcc7e2007-10-18 23:39:30 -07005425
5426 if (ss->early_init)
Tejun Heo15a4c832014-05-04 15:09:14 -04005427 cgroup_init_subsys(ss, true);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005428 }
5429 return 0;
5430}
5431
Tejun Heo6e5c8302016-02-22 22:25:47 -05005432static u16 cgroup_disable_mask __initdata;
Tejun Heoa3e72732015-09-25 16:24:27 -04005433
Paul Menageddbcc7e2007-10-18 23:39:30 -07005434/**
Li Zefana043e3b2008-02-23 15:24:09 -08005435 * cgroup_init - cgroup initialization
5436 *
5437 * Register cgroup filesystem and /proc file, and initialize
5438 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07005439 */
5440int __init cgroup_init(void)
5441{
Tejun Heo30159ec2013-06-25 11:53:37 -07005442 struct cgroup_subsys *ss;
Tejun Heo035f4f52015-10-15 17:00:43 -04005443 int ssid;
Paul Menagea4243162007-10-18 23:39:35 -07005444
Tejun Heo6e5c8302016-02-22 22:25:47 -05005445 BUILD_BUG_ON(CGROUP_SUBSYS_COUNT > 16);
Tejun Heo1ed13282015-09-16 12:53:17 -04005446 BUG_ON(percpu_init_rwsem(&cgroup_threadgroup_rwsem));
Tejun Heoa14c6872014-07-15 11:05:09 -04005447 BUG_ON(cgroup_init_cftypes(NULL, cgroup_dfl_base_files));
5448 BUG_ON(cgroup_init_cftypes(NULL, cgroup_legacy_base_files));
Paul Menageddbcc7e2007-10-18 23:39:30 -07005449
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005450 mutex_lock(&cgroup_mutex);
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005451
Tejun Heo2378d8b2016-03-03 09:57:57 -05005452 /*
5453 * Add init_css_set to the hash table so that dfl_root can link to
5454 * it during init.
5455 */
5456 hash_add(css_set_table, &init_css_set.hlist,
5457 css_set_hash(init_css_set.subsys));
Tejun Heo82fe9b02013-06-25 11:53:37 -07005458
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005459 BUG_ON(cgroup_setup_root(&cgrp_dfl_root, 0));
Greg KH676db4a2010-08-05 13:53:35 -07005460
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005461 mutex_unlock(&cgroup_mutex);
5462
Tejun Heo172a2c062014-03-19 10:23:53 -04005463 for_each_subsys(ss, ssid) {
Tejun Heo15a4c832014-05-04 15:09:14 -04005464 if (ss->early_init) {
5465 struct cgroup_subsys_state *css =
5466 init_css_set.subsys[ss->id];
5467
5468 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2,
5469 GFP_KERNEL);
5470 BUG_ON(css->id < 0);
5471 } else {
5472 cgroup_init_subsys(ss, false);
5473 }
Tejun Heo172a2c062014-03-19 10:23:53 -04005474
Tejun Heo2d8f2432014-04-23 11:13:15 -04005475 list_add_tail(&init_css_set.e_cset_node[ssid],
5476 &cgrp_dfl_root.cgrp.e_csets[ssid]);
Tejun Heo172a2c062014-03-19 10:23:53 -04005477
5478 /*
Li Zefanc731ae12014-06-05 17:16:30 +08005479 * Setting dfl_root subsys_mask needs to consider the
5480 * disabled flag and cftype registration needs kmalloc,
5481 * both of which aren't available during early_init.
Tejun Heo172a2c062014-03-19 10:23:53 -04005482 */
Tejun Heoa3e72732015-09-25 16:24:27 -04005483 if (cgroup_disable_mask & (1 << ssid)) {
5484 static_branch_disable(cgroup_subsys_enabled_key[ssid]);
5485 printk(KERN_INFO "Disabling %s control group subsystem\n",
5486 ss->name);
Tejun Heoa8ddc822014-07-15 11:05:10 -04005487 continue;
Tejun Heoa3e72732015-09-25 16:24:27 -04005488 }
Tejun Heoa8ddc822014-07-15 11:05:10 -04005489
Johannes Weiner223ffb22016-02-11 13:34:49 -05005490 if (cgroup_ssid_no_v1(ssid))
5491 printk(KERN_INFO "Disabling %s control group subsystem in v1 mounts\n",
5492 ss->name);
5493
Tejun Heoa8ddc822014-07-15 11:05:10 -04005494 cgrp_dfl_root.subsys_mask |= 1 << ss->id;
5495
Tejun Heof6d635ad2016-03-08 11:51:26 -05005496 if (ss->implicit_on_dfl)
5497 cgrp_dfl_implicit_ss_mask |= 1 << ss->id;
5498 else if (!ss->dfl_cftypes)
Tejun Heoa7165262016-02-23 10:00:50 -05005499 cgrp_dfl_inhibit_ss_mask |= 1 << ss->id;
Tejun Heo5de4fa12014-07-15 11:05:10 -04005500
Tejun Heoa8ddc822014-07-15 11:05:10 -04005501 if (ss->dfl_cftypes == ss->legacy_cftypes) {
5502 WARN_ON(cgroup_add_cftypes(ss, ss->dfl_cftypes));
5503 } else {
5504 WARN_ON(cgroup_add_dfl_cftypes(ss, ss->dfl_cftypes));
5505 WARN_ON(cgroup_add_legacy_cftypes(ss, ss->legacy_cftypes));
Li Zefanc731ae12014-06-05 17:16:30 +08005506 }
Vladimir Davydov295458e2015-02-19 17:34:46 +03005507
5508 if (ss->bind)
5509 ss->bind(init_css_set.subsys[ssid]);
Tejun Heo172a2c062014-03-19 10:23:53 -04005510 }
Greg KH676db4a2010-08-05 13:53:35 -07005511
Tejun Heo2378d8b2016-03-03 09:57:57 -05005512 /* init_css_set.subsys[] has been updated, re-hash */
5513 hash_del(&init_css_set.hlist);
5514 hash_add(css_set_table, &init_css_set.hlist,
5515 css_set_hash(init_css_set.subsys));
5516
Tejun Heo035f4f52015-10-15 17:00:43 -04005517 WARN_ON(sysfs_create_mount_point(fs_kobj, "cgroup"));
5518 WARN_ON(register_filesystem(&cgroup_fs_type));
Tejun Heo67e9c742015-11-16 11:13:34 -05005519 WARN_ON(register_filesystem(&cgroup2_fs_type));
Tejun Heo035f4f52015-10-15 17:00:43 -04005520 WARN_ON(!proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations));
Paul Menagea4243162007-10-18 23:39:35 -07005521
Tejun Heo2bd59d42014-02-11 11:52:49 -05005522 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005523}
Paul Menageb4f48b62007-10-18 23:39:33 -07005524
Tejun Heoe5fca242013-11-22 17:14:39 -05005525static int __init cgroup_wq_init(void)
5526{
5527 /*
5528 * There isn't much point in executing destruction path in
5529 * parallel. Good chunk is serialized with cgroup_mutex anyway.
Tejun Heo1a115332014-02-12 19:06:19 -05005530 * Use 1 for @max_active.
Tejun Heoe5fca242013-11-22 17:14:39 -05005531 *
5532 * We would prefer to do this in cgroup_init() above, but that
5533 * is called before init_workqueues(): so leave this until after.
5534 */
Tejun Heo1a115332014-02-12 19:06:19 -05005535 cgroup_destroy_wq = alloc_workqueue("cgroup_destroy", 0, 1);
Tejun Heoe5fca242013-11-22 17:14:39 -05005536 BUG_ON(!cgroup_destroy_wq);
Tejun Heob1a21362013-11-29 10:42:58 -05005537
5538 /*
5539 * Used to destroy pidlists and separate to serve as flush domain.
5540 * Cap @max_active to 1 too.
5541 */
5542 cgroup_pidlist_destroy_wq = alloc_workqueue("cgroup_pidlist_destroy",
5543 0, 1);
5544 BUG_ON(!cgroup_pidlist_destroy_wq);
5545
Tejun Heoe5fca242013-11-22 17:14:39 -05005546 return 0;
5547}
5548core_initcall(cgroup_wq_init);
5549
Paul Menagea4243162007-10-18 23:39:35 -07005550/*
5551 * proc_cgroup_show()
5552 * - Print task's cgroup paths into seq_file, one line for each hierarchy
5553 * - Used for /proc/<pid>/cgroup.
Paul Menagea4243162007-10-18 23:39:35 -07005554 */
Zefan Li006f4ac2014-09-18 16:03:15 +08005555int proc_cgroup_show(struct seq_file *m, struct pid_namespace *ns,
5556 struct pid *pid, struct task_struct *tsk)
Paul Menagea4243162007-10-18 23:39:35 -07005557{
Tejun Heoe61734c2014-02-12 09:29:50 -05005558 char *buf, *path;
Paul Menagea4243162007-10-18 23:39:35 -07005559 int retval;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005560 struct cgroup_root *root;
Paul Menagea4243162007-10-18 23:39:35 -07005561
5562 retval = -ENOMEM;
Tejun Heoe61734c2014-02-12 09:29:50 -05005563 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagea4243162007-10-18 23:39:35 -07005564 if (!buf)
5565 goto out;
5566
Paul Menagea4243162007-10-18 23:39:35 -07005567 mutex_lock(&cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005568 spin_lock_bh(&css_set_lock);
Paul Menagea4243162007-10-18 23:39:35 -07005569
Tejun Heo985ed672014-03-19 10:23:53 -04005570 for_each_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07005571 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07005572 struct cgroup *cgrp;
Tejun Heob85d2042013-12-06 15:11:57 -05005573 int ssid, count = 0;
Paul Menagea4243162007-10-18 23:39:35 -07005574
Tejun Heoa7165262016-02-23 10:00:50 -05005575 if (root == &cgrp_dfl_root && !cgrp_dfl_visible)
Tejun Heo985ed672014-03-19 10:23:53 -04005576 continue;
5577
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005578 seq_printf(m, "%d:", root->hierarchy_id);
Tejun Heod98817d2015-08-18 13:58:16 -07005579 if (root != &cgrp_dfl_root)
5580 for_each_subsys(ss, ssid)
5581 if (root->subsys_mask & (1 << ssid))
5582 seq_printf(m, "%s%s", count++ ? "," : "",
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005583 ss->legacy_name);
Paul Menagec6d57f32009-09-23 15:56:19 -07005584 if (strlen(root->name))
5585 seq_printf(m, "%sname=%s", count ? "," : "",
5586 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07005587 seq_putc(m, ':');
Tejun Heo2e91fa72015-10-15 16:41:53 -04005588
Paul Menage7717f7b2009-09-23 15:56:22 -07005589 cgrp = task_cgroup_from_root(tsk, root);
Tejun Heo2e91fa72015-10-15 16:41:53 -04005590
5591 /*
5592 * On traditional hierarchies, all zombie tasks show up as
5593 * belonging to the root cgroup. On the default hierarchy,
5594 * while a zombie doesn't show up in "cgroup.procs" and
5595 * thus can't be migrated, its /proc/PID/cgroup keeps
5596 * reporting the cgroup it belonged to before exiting. If
5597 * the cgroup is removed before the zombie is reaped,
5598 * " (deleted)" is appended to the cgroup path.
5599 */
5600 if (cgroup_on_dfl(cgrp) || !(tsk->flags & PF_EXITING)) {
5601 path = cgroup_path(cgrp, buf, PATH_MAX);
5602 if (!path) {
5603 retval = -ENAMETOOLONG;
5604 goto out_unlock;
5605 }
5606 } else {
5607 path = "/";
Tejun Heoe61734c2014-02-12 09:29:50 -05005608 }
Tejun Heo2e91fa72015-10-15 16:41:53 -04005609
Tejun Heoe61734c2014-02-12 09:29:50 -05005610 seq_puts(m, path);
Tejun Heo2e91fa72015-10-15 16:41:53 -04005611
5612 if (cgroup_on_dfl(cgrp) && cgroup_is_dead(cgrp))
5613 seq_puts(m, " (deleted)\n");
5614 else
5615 seq_putc(m, '\n');
Paul Menagea4243162007-10-18 23:39:35 -07005616 }
5617
Zefan Li006f4ac2014-09-18 16:03:15 +08005618 retval = 0;
Paul Menagea4243162007-10-18 23:39:35 -07005619out_unlock:
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005620 spin_unlock_bh(&css_set_lock);
Paul Menagea4243162007-10-18 23:39:35 -07005621 mutex_unlock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07005622 kfree(buf);
5623out:
5624 return retval;
5625}
5626
Paul Menagea4243162007-10-18 23:39:35 -07005627/* Display information about each subsystem and each hierarchy */
5628static int proc_cgroupstats_show(struct seq_file *m, void *v)
5629{
Tejun Heo30159ec2013-06-25 11:53:37 -07005630 struct cgroup_subsys *ss;
Paul Menagea4243162007-10-18 23:39:35 -07005631 int i;
Paul Menagea4243162007-10-18 23:39:35 -07005632
Paul Menage8bab8dd2008-04-04 14:29:57 -07005633 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08005634 /*
5635 * ideally we don't want subsystems moving around while we do this.
5636 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
5637 * subsys/hierarchy state.
5638 */
Paul Menagea4243162007-10-18 23:39:35 -07005639 mutex_lock(&cgroup_mutex);
Tejun Heo30159ec2013-06-25 11:53:37 -07005640
5641 for_each_subsys(ss, i)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005642 seq_printf(m, "%s\t%d\t%d\t%d\n",
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005643 ss->legacy_name, ss->root->hierarchy_id,
Tejun Heofc5ed1e2015-09-18 11:56:28 -04005644 atomic_read(&ss->root->nr_cgrps),
5645 cgroup_ssid_enabled(i));
Tejun Heo30159ec2013-06-25 11:53:37 -07005646
Paul Menagea4243162007-10-18 23:39:35 -07005647 mutex_unlock(&cgroup_mutex);
5648 return 0;
5649}
5650
5651static int cgroupstats_open(struct inode *inode, struct file *file)
5652{
Al Viro9dce07f2008-03-29 03:07:28 +00005653 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07005654}
5655
Alexey Dobriyan828c0952009-10-01 15:43:56 -07005656static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07005657 .open = cgroupstats_open,
5658 .read = seq_read,
5659 .llseek = seq_lseek,
5660 .release = single_release,
5661};
5662
Paul Menageb4f48b62007-10-18 23:39:33 -07005663/**
Tejun Heoeaf797a2014-02-25 10:04:03 -05005664 * cgroup_fork - initialize cgroup related fields during copy_process()
Li Zefana043e3b2008-02-23 15:24:09 -08005665 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07005666 *
Tejun Heoeaf797a2014-02-25 10:04:03 -05005667 * A task is associated with the init_css_set until cgroup_post_fork()
5668 * attaches it to the parent's css_set. Empty cg_list indicates that
5669 * @child isn't holding reference to its css_set.
Paul Menageb4f48b62007-10-18 23:39:33 -07005670 */
5671void cgroup_fork(struct task_struct *child)
5672{
Tejun Heoeaf797a2014-02-25 10:04:03 -05005673 RCU_INIT_POINTER(child->cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07005674 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07005675}
5676
5677/**
Aleksa Sarai7e476822015-06-09 21:32:09 +10005678 * cgroup_can_fork - called on a new task before the process is exposed
5679 * @child: the task in question.
5680 *
5681 * This calls the subsystem can_fork() callbacks. If the can_fork() callback
5682 * returns an error, the fork aborts with that error code. This allows for
5683 * a cgroup subsystem to conditionally allow or deny new forks.
5684 */
Oleg Nesterovb53202e2015-12-03 10:24:08 -05005685int cgroup_can_fork(struct task_struct *child)
Aleksa Sarai7e476822015-06-09 21:32:09 +10005686{
5687 struct cgroup_subsys *ss;
5688 int i, j, ret;
5689
Tejun Heob4e0eea2016-02-22 22:25:46 -05005690 do_each_subsys_mask(ss, i, have_canfork_callback) {
Oleg Nesterovb53202e2015-12-03 10:24:08 -05005691 ret = ss->can_fork(child);
Aleksa Sarai7e476822015-06-09 21:32:09 +10005692 if (ret)
5693 goto out_revert;
Tejun Heob4e0eea2016-02-22 22:25:46 -05005694 } while_each_subsys_mask();
Aleksa Sarai7e476822015-06-09 21:32:09 +10005695
5696 return 0;
5697
5698out_revert:
5699 for_each_subsys(ss, j) {
5700 if (j >= i)
5701 break;
5702 if (ss->cancel_fork)
Oleg Nesterovb53202e2015-12-03 10:24:08 -05005703 ss->cancel_fork(child);
Aleksa Sarai7e476822015-06-09 21:32:09 +10005704 }
5705
5706 return ret;
5707}
5708
5709/**
5710 * cgroup_cancel_fork - called if a fork failed after cgroup_can_fork()
5711 * @child: the task in question
5712 *
5713 * This calls the cancel_fork() callbacks if a fork failed *after*
5714 * cgroup_can_fork() succeded.
5715 */
Oleg Nesterovb53202e2015-12-03 10:24:08 -05005716void cgroup_cancel_fork(struct task_struct *child)
Aleksa Sarai7e476822015-06-09 21:32:09 +10005717{
5718 struct cgroup_subsys *ss;
5719 int i;
5720
5721 for_each_subsys(ss, i)
5722 if (ss->cancel_fork)
Oleg Nesterovb53202e2015-12-03 10:24:08 -05005723 ss->cancel_fork(child);
Aleksa Sarai7e476822015-06-09 21:32:09 +10005724}
5725
5726/**
Li Zefana043e3b2008-02-23 15:24:09 -08005727 * cgroup_post_fork - called on a new task after adding it to the task list
5728 * @child: the task in question
5729 *
Tejun Heo5edee612012-10-16 15:03:14 -07005730 * Adds the task to the list running through its css_set if necessary and
5731 * call the subsystem fork() callbacks. Has to be after the task is
5732 * visible on the task list in case we race with the first call to
Tejun Heo0942eee2013-08-08 20:11:26 -04005733 * cgroup_task_iter_start() - to guarantee that the new task ends up on its
Tejun Heo5edee612012-10-16 15:03:14 -07005734 * list.
Li Zefana043e3b2008-02-23 15:24:09 -08005735 */
Oleg Nesterovb53202e2015-12-03 10:24:08 -05005736void cgroup_post_fork(struct task_struct *child)
Paul Menage817929e2007-10-18 23:39:36 -07005737{
Tejun Heo30159ec2013-06-25 11:53:37 -07005738 struct cgroup_subsys *ss;
Tejun Heo5edee612012-10-16 15:03:14 -07005739 int i;
5740
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005741 /*
Dongsheng Yang251f8c02014-08-25 19:27:52 +08005742 * This may race against cgroup_enable_task_cg_lists(). As that
Tejun Heoeaf797a2014-02-25 10:04:03 -05005743 * function sets use_task_css_set_links before grabbing
5744 * tasklist_lock and we just went through tasklist_lock to add
5745 * @child, it's guaranteed that either we see the set
5746 * use_task_css_set_links or cgroup_enable_task_cg_lists() sees
5747 * @child during its iteration.
5748 *
5749 * If we won the race, @child is associated with %current's
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005750 * css_set. Grabbing css_set_lock guarantees both that the
Tejun Heoeaf797a2014-02-25 10:04:03 -05005751 * association is stable, and, on completion of the parent's
5752 * migration, @child is visible in the source of migration or
5753 * already in the destination cgroup. This guarantee is necessary
5754 * when implementing operations which need to migrate all tasks of
5755 * a cgroup to another.
5756 *
Dongsheng Yang251f8c02014-08-25 19:27:52 +08005757 * Note that if we lose to cgroup_enable_task_cg_lists(), @child
Tejun Heoeaf797a2014-02-25 10:04:03 -05005758 * will remain in init_css_set. This is safe because all tasks are
5759 * in the init_css_set before cg_links is enabled and there's no
5760 * operation which transfers all tasks out of init_css_set.
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005761 */
Paul Menage817929e2007-10-18 23:39:36 -07005762 if (use_task_css_set_links) {
Tejun Heoeaf797a2014-02-25 10:04:03 -05005763 struct css_set *cset;
5764
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005765 spin_lock_bh(&css_set_lock);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005766 cset = task_css_set(current);
Tejun Heoeaf797a2014-02-25 10:04:03 -05005767 if (list_empty(&child->cg_list)) {
Tejun Heoeaf797a2014-02-25 10:04:03 -05005768 get_css_set(cset);
Tejun Heof6d7d042015-10-15 16:41:52 -04005769 css_set_move_task(child, NULL, cset, false);
Tejun Heoeaf797a2014-02-25 10:04:03 -05005770 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005771 spin_unlock_bh(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -07005772 }
Tejun Heo5edee612012-10-16 15:03:14 -07005773
5774 /*
5775 * Call ss->fork(). This must happen after @child is linked on
5776 * css_set; otherwise, @child might change state between ->fork()
5777 * and addition to css_set.
5778 */
Tejun Heob4e0eea2016-02-22 22:25:46 -05005779 do_each_subsys_mask(ss, i, have_fork_callback) {
Oleg Nesterovb53202e2015-12-03 10:24:08 -05005780 ss->fork(child);
Tejun Heob4e0eea2016-02-22 22:25:46 -05005781 } while_each_subsys_mask();
Paul Menage817929e2007-10-18 23:39:36 -07005782}
Tejun Heo5edee612012-10-16 15:03:14 -07005783
Paul Menage817929e2007-10-18 23:39:36 -07005784/**
Paul Menageb4f48b62007-10-18 23:39:33 -07005785 * cgroup_exit - detach cgroup from exiting task
5786 * @tsk: pointer to task_struct of exiting process
5787 *
5788 * Description: Detach cgroup from @tsk and release it.
5789 *
5790 * Note that cgroups marked notify_on_release force every task in
5791 * them to take the global cgroup_mutex mutex when exiting.
5792 * This could impact scaling on very large systems. Be reluctant to
5793 * use notify_on_release cgroups where very high task exit scaling
5794 * is required on large systems.
5795 *
Tejun Heo0e1d7682014-02-25 10:04:03 -05005796 * We set the exiting tasks cgroup to the root cgroup (top_cgroup). We
5797 * call cgroup_exit() while the task is still competent to handle
5798 * notify_on_release(), then leave the task attached to the root cgroup in
5799 * each hierarchy for the remainder of its exit. No need to bother with
5800 * init_css_set refcnting. init_css_set never goes away and we can't race
Li Zefane8604cb2014-03-28 15:18:27 +08005801 * with migration path - PF_EXITING is visible to migration path.
Paul Menageb4f48b62007-10-18 23:39:33 -07005802 */
Li Zefan1ec41832014-03-28 15:22:19 +08005803void cgroup_exit(struct task_struct *tsk)
Paul Menageb4f48b62007-10-18 23:39:33 -07005804{
Tejun Heo30159ec2013-06-25 11:53:37 -07005805 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -07005806 struct css_set *cset;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005807 int i;
Paul Menage817929e2007-10-18 23:39:36 -07005808
5809 /*
Tejun Heo0e1d7682014-02-25 10:04:03 -05005810 * Unlink from @tsk from its css_set. As migration path can't race
Tejun Heo0de09422015-10-15 16:41:49 -04005811 * with us, we can check css_set and cg_list without synchronization.
Paul Menage817929e2007-10-18 23:39:36 -07005812 */
Tejun Heo0de09422015-10-15 16:41:49 -04005813 cset = task_css_set(tsk);
5814
Paul Menage817929e2007-10-18 23:39:36 -07005815 if (!list_empty(&tsk->cg_list)) {
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005816 spin_lock_bh(&css_set_lock);
Tejun Heof6d7d042015-10-15 16:41:52 -04005817 css_set_move_task(tsk, cset, NULL, false);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005818 spin_unlock_bh(&css_set_lock);
Tejun Heo2e91fa72015-10-15 16:41:53 -04005819 } else {
5820 get_css_set(cset);
Paul Menage817929e2007-10-18 23:39:36 -07005821 }
5822
Aleksa Saraicb4a3162015-06-06 10:02:14 +10005823 /* see cgroup_post_fork() for details */
Tejun Heob4e0eea2016-02-22 22:25:46 -05005824 do_each_subsys_mask(ss, i, have_exit_callback) {
Tejun Heo2e91fa72015-10-15 16:41:53 -04005825 ss->exit(tsk);
Tejun Heob4e0eea2016-02-22 22:25:46 -05005826 } while_each_subsys_mask();
Tejun Heo2e91fa72015-10-15 16:41:53 -04005827}
Tejun Heo30159ec2013-06-25 11:53:37 -07005828
Tejun Heo2e91fa72015-10-15 16:41:53 -04005829void cgroup_free(struct task_struct *task)
5830{
5831 struct css_set *cset = task_css_set(task);
Tejun Heoafcf6c82015-10-15 16:41:53 -04005832 struct cgroup_subsys *ss;
5833 int ssid;
5834
Tejun Heob4e0eea2016-02-22 22:25:46 -05005835 do_each_subsys_mask(ss, ssid, have_free_callback) {
Tejun Heoafcf6c82015-10-15 16:41:53 -04005836 ss->free(task);
Tejun Heob4e0eea2016-02-22 22:25:46 -05005837 } while_each_subsys_mask();
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005838
Tejun Heo2e91fa72015-10-15 16:41:53 -04005839 put_css_set(cset);
Paul Menageb4f48b62007-10-18 23:39:33 -07005840}
Paul Menage697f4162007-10-18 23:39:34 -07005841
Paul Menagebd89aab2007-10-18 23:40:44 -07005842static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07005843{
Tejun Heo27bd4db2015-10-15 16:41:50 -04005844 if (notify_on_release(cgrp) && !cgroup_is_populated(cgrp) &&
Zefan Li971ff492014-09-18 16:06:19 +08005845 !css_has_online_children(&cgrp->self) && !cgroup_is_dead(cgrp))
5846 schedule_work(&cgrp->release_agent_work);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005847}
5848
Paul Menage81a6a5c2007-10-18 23:39:38 -07005849/*
5850 * Notify userspace when a cgroup is released, by running the
5851 * configured release agent with the name of the cgroup (path
5852 * relative to the root of cgroup file system) as the argument.
5853 *
5854 * Most likely, this user command will try to rmdir this cgroup.
5855 *
5856 * This races with the possibility that some other task will be
5857 * attached to this cgroup before it is removed, or that some other
5858 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
5859 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
5860 * unused, and this cgroup will be reprieved from its death sentence,
5861 * to continue to serve a useful existence. Next time it's released,
5862 * we will get notified again, if it still has 'notify_on_release' set.
5863 *
5864 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
5865 * means only wait until the task is successfully execve()'d. The
5866 * separate release agent task is forked by call_usermodehelper(),
5867 * then control in this thread returns here, without waiting for the
5868 * release agent task. We don't bother to wait because the caller of
5869 * this routine has no use for the exit status of the release agent
5870 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07005871 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07005872static void cgroup_release_agent(struct work_struct *work)
5873{
Zefan Li971ff492014-09-18 16:06:19 +08005874 struct cgroup *cgrp =
5875 container_of(work, struct cgroup, release_agent_work);
5876 char *pathbuf = NULL, *agentbuf = NULL, *path;
5877 char *argv[3], *envp[3];
5878
Paul Menage81a6a5c2007-10-18 23:39:38 -07005879 mutex_lock(&cgroup_mutex);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005880
Zefan Li971ff492014-09-18 16:06:19 +08005881 pathbuf = kmalloc(PATH_MAX, GFP_KERNEL);
5882 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
5883 if (!pathbuf || !agentbuf)
5884 goto out;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005885
Zefan Li971ff492014-09-18 16:06:19 +08005886 path = cgroup_path(cgrp, pathbuf, PATH_MAX);
5887 if (!path)
5888 goto out;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005889
Zefan Li971ff492014-09-18 16:06:19 +08005890 argv[0] = agentbuf;
5891 argv[1] = path;
5892 argv[2] = NULL;
5893
5894 /* minimal command environment */
5895 envp[0] = "HOME=/";
5896 envp[1] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
5897 envp[2] = NULL;
5898
Paul Menage81a6a5c2007-10-18 23:39:38 -07005899 mutex_unlock(&cgroup_mutex);
Zefan Li971ff492014-09-18 16:06:19 +08005900 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Zefan Li3e2cd912014-09-20 14:35:43 +08005901 goto out_free;
Zefan Li971ff492014-09-18 16:06:19 +08005902out:
Zefan Li3e2cd912014-09-20 14:35:43 +08005903 mutex_unlock(&cgroup_mutex);
5904out_free:
Zefan Li971ff492014-09-18 16:06:19 +08005905 kfree(agentbuf);
5906 kfree(pathbuf);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005907}
Paul Menage8bab8dd2008-04-04 14:29:57 -07005908
5909static int __init cgroup_disable(char *str)
5910{
Tejun Heo30159ec2013-06-25 11:53:37 -07005911 struct cgroup_subsys *ss;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005912 char *token;
Tejun Heo30159ec2013-06-25 11:53:37 -07005913 int i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005914
5915 while ((token = strsep(&str, ",")) != NULL) {
5916 if (!*token)
5917 continue;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005918
Tejun Heo3ed80a62014-02-08 10:36:58 -05005919 for_each_subsys(ss, i) {
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005920 if (strcmp(token, ss->name) &&
5921 strcmp(token, ss->legacy_name))
5922 continue;
Tejun Heoa3e72732015-09-25 16:24:27 -04005923 cgroup_disable_mask |= 1 << i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005924 }
5925 }
5926 return 1;
5927}
5928__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005929
Johannes Weiner223ffb22016-02-11 13:34:49 -05005930static int __init cgroup_no_v1(char *str)
5931{
5932 struct cgroup_subsys *ss;
5933 char *token;
5934 int i;
5935
5936 while ((token = strsep(&str, ",")) != NULL) {
5937 if (!*token)
5938 continue;
5939
5940 if (!strcmp(token, "all")) {
Tejun Heo6e5c8302016-02-22 22:25:47 -05005941 cgroup_no_v1_mask = U16_MAX;
Johannes Weiner223ffb22016-02-11 13:34:49 -05005942 break;
5943 }
5944
5945 for_each_subsys(ss, i) {
5946 if (strcmp(token, ss->name) &&
5947 strcmp(token, ss->legacy_name))
5948 continue;
5949
5950 cgroup_no_v1_mask |= 1 << i;
5951 }
5952 }
5953 return 1;
5954}
5955__setup("cgroup_no_v1=", cgroup_no_v1);
5956
Tejun Heob77d7b62013-08-13 11:01:54 -04005957/**
Tejun Heoec903c02014-05-13 12:11:01 -04005958 * css_tryget_online_from_dir - get corresponding css from a cgroup dentry
Tejun Heo35cf0832013-08-26 18:40:56 -04005959 * @dentry: directory dentry of interest
5960 * @ss: subsystem of interest
Tejun Heob77d7b62013-08-13 11:01:54 -04005961 *
Tejun Heo5a17f542014-02-11 11:52:47 -05005962 * If @dentry is a directory for a cgroup which has @ss enabled on it, try
5963 * to get the corresponding css and return it. If such css doesn't exist
5964 * or can't be pinned, an ERR_PTR value is returned.
Stephane Eraniane5d13672011-02-14 11:20:01 +02005965 */
Tejun Heoec903c02014-05-13 12:11:01 -04005966struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry,
5967 struct cgroup_subsys *ss)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005968{
Tejun Heo2bd59d42014-02-11 11:52:49 -05005969 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
Tejun Heof17fc252016-02-23 10:00:51 -05005970 struct file_system_type *s_type = dentry->d_sb->s_type;
Tejun Heo2bd59d42014-02-11 11:52:49 -05005971 struct cgroup_subsys_state *css = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005972 struct cgroup *cgrp;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005973
Tejun Heo35cf0832013-08-26 18:40:56 -04005974 /* is @dentry a cgroup dir? */
Tejun Heof17fc252016-02-23 10:00:51 -05005975 if ((s_type != &cgroup_fs_type && s_type != &cgroup2_fs_type) ||
5976 !kn || kernfs_type(kn) != KERNFS_DIR)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005977 return ERR_PTR(-EBADF);
5978
Tejun Heo5a17f542014-02-11 11:52:47 -05005979 rcu_read_lock();
5980
Tejun Heo2bd59d42014-02-11 11:52:49 -05005981 /*
5982 * This path doesn't originate from kernfs and @kn could already
5983 * have been or be removed at any point. @kn->priv is RCU
Li Zefana4189482014-09-04 14:43:07 +08005984 * protected for this access. See css_release_work_fn() for details.
Tejun Heo2bd59d42014-02-11 11:52:49 -05005985 */
5986 cgrp = rcu_dereference(kn->priv);
5987 if (cgrp)
5988 css = cgroup_css(cgrp, ss);
Tejun Heo5a17f542014-02-11 11:52:47 -05005989
Tejun Heoec903c02014-05-13 12:11:01 -04005990 if (!css || !css_tryget_online(css))
Tejun Heo5a17f542014-02-11 11:52:47 -05005991 css = ERR_PTR(-ENOENT);
5992
5993 rcu_read_unlock();
5994 return css;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005995}
Stephane Eraniane5d13672011-02-14 11:20:01 +02005996
Li Zefan1cb650b2013-08-19 10:05:24 +08005997/**
5998 * css_from_id - lookup css by id
5999 * @id: the cgroup id
6000 * @ss: cgroup subsys to be looked into
6001 *
6002 * Returns the css if there's valid one with @id, otherwise returns NULL.
6003 * Should be called under rcu_read_lock().
6004 */
6005struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss)
6006{
Tejun Heo6fa49182014-05-04 15:09:13 -04006007 WARN_ON_ONCE(!rcu_read_lock_held());
Vladimir Davydovadbe4272015-04-15 16:13:00 -07006008 return id > 0 ? idr_find(&ss->css_idr, id) : NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02006009}
6010
Tejun Heo16af4392015-11-20 15:55:52 -05006011/**
6012 * cgroup_get_from_path - lookup and get a cgroup from its default hierarchy path
6013 * @path: path on the default hierarchy
6014 *
6015 * Find the cgroup at @path on the default hierarchy, increment its
6016 * reference count and return it. Returns pointer to the found cgroup on
6017 * success, ERR_PTR(-ENOENT) if @path doens't exist and ERR_PTR(-ENOTDIR)
6018 * if @path points to a non-directory.
6019 */
6020struct cgroup *cgroup_get_from_path(const char *path)
6021{
6022 struct kernfs_node *kn;
6023 struct cgroup *cgrp;
6024
6025 mutex_lock(&cgroup_mutex);
6026
6027 kn = kernfs_walk_and_get(cgrp_dfl_root.cgrp.kn, path);
6028 if (kn) {
6029 if (kernfs_type(kn) == KERNFS_DIR) {
6030 cgrp = kn->priv;
6031 cgroup_get(cgrp);
6032 } else {
6033 cgrp = ERR_PTR(-ENOTDIR);
6034 }
6035 kernfs_put(kn);
6036 } else {
6037 cgrp = ERR_PTR(-ENOENT);
6038 }
6039
6040 mutex_unlock(&cgroup_mutex);
6041 return cgrp;
6042}
6043EXPORT_SYMBOL_GPL(cgroup_get_from_path);
6044
Tejun Heobd1060a2015-12-07 17:38:53 -05006045/*
6046 * sock->sk_cgrp_data handling. For more info, see sock_cgroup_data
6047 * definition in cgroup-defs.h.
6048 */
6049#ifdef CONFIG_SOCK_CGROUP_DATA
6050
6051#if defined(CONFIG_CGROUP_NET_PRIO) || defined(CONFIG_CGROUP_NET_CLASSID)
6052
Tejun Heo3fa4cc92015-12-14 11:24:06 -05006053DEFINE_SPINLOCK(cgroup_sk_update_lock);
Tejun Heobd1060a2015-12-07 17:38:53 -05006054static bool cgroup_sk_alloc_disabled __read_mostly;
6055
6056void cgroup_sk_alloc_disable(void)
6057{
6058 if (cgroup_sk_alloc_disabled)
6059 return;
6060 pr_info("cgroup: disabling cgroup2 socket matching due to net_prio or net_cls activation\n");
6061 cgroup_sk_alloc_disabled = true;
6062}
6063
6064#else
6065
6066#define cgroup_sk_alloc_disabled false
6067
6068#endif
6069
6070void cgroup_sk_alloc(struct sock_cgroup_data *skcd)
6071{
6072 if (cgroup_sk_alloc_disabled)
6073 return;
6074
6075 rcu_read_lock();
6076
6077 while (true) {
6078 struct css_set *cset;
6079
6080 cset = task_css_set(current);
6081 if (likely(cgroup_tryget(cset->dfl_cgrp))) {
6082 skcd->val = (unsigned long)cset->dfl_cgrp;
6083 break;
6084 }
6085 cpu_relax();
6086 }
6087
6088 rcu_read_unlock();
6089}
6090
6091void cgroup_sk_free(struct sock_cgroup_data *skcd)
6092{
6093 cgroup_put(sock_cgroup_ptr(skcd));
6094}
6095
6096#endif /* CONFIG_SOCK_CGROUP_DATA */
6097
Paul Menagefe693432009-09-23 15:56:20 -07006098#ifdef CONFIG_CGROUP_DEBUG
Tejun Heoeb954192013-08-08 20:11:23 -04006099static struct cgroup_subsys_state *
6100debug_css_alloc(struct cgroup_subsys_state *parent_css)
Paul Menagefe693432009-09-23 15:56:20 -07006101{
6102 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
6103
6104 if (!css)
6105 return ERR_PTR(-ENOMEM);
6106
6107 return css;
6108}
6109
Tejun Heoeb954192013-08-08 20:11:23 -04006110static void debug_css_free(struct cgroup_subsys_state *css)
Paul Menagefe693432009-09-23 15:56:20 -07006111{
Tejun Heoeb954192013-08-08 20:11:23 -04006112 kfree(css);
Paul Menagefe693432009-09-23 15:56:20 -07006113}
6114
Tejun Heo182446d2013-08-08 20:11:24 -04006115static u64 debug_taskcount_read(struct cgroup_subsys_state *css,
6116 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07006117{
Tejun Heo182446d2013-08-08 20:11:24 -04006118 return cgroup_task_count(css->cgroup);
Paul Menagefe693432009-09-23 15:56:20 -07006119}
6120
Tejun Heo182446d2013-08-08 20:11:24 -04006121static u64 current_css_set_read(struct cgroup_subsys_state *css,
6122 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07006123{
6124 return (u64)(unsigned long)current->cgroups;
6125}
6126
Tejun Heo182446d2013-08-08 20:11:24 -04006127static u64 current_css_set_refcount_read(struct cgroup_subsys_state *css,
Li Zefan03c78cb2013-06-14 11:17:19 +08006128 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07006129{
6130 u64 count;
6131
6132 rcu_read_lock();
Tejun Heoa8ad8052013-06-21 15:52:04 -07006133 count = atomic_read(&task_css_set(current)->refcount);
Paul Menagefe693432009-09-23 15:56:20 -07006134 rcu_read_unlock();
6135 return count;
6136}
6137
Tejun Heo2da8ca82013-12-05 12:28:04 -05006138static int current_css_set_cg_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07006139{
Tejun Heo69d02062013-06-12 21:04:50 -07006140 struct cgrp_cset_link *link;
Tejun Heo5abb8852013-06-12 21:04:49 -07006141 struct css_set *cset;
Tejun Heoe61734c2014-02-12 09:29:50 -05006142 char *name_buf;
Paul Menage7717f7b2009-09-23 15:56:22 -07006143
Tejun Heoe61734c2014-02-12 09:29:50 -05006144 name_buf = kmalloc(NAME_MAX + 1, GFP_KERNEL);
6145 if (!name_buf)
6146 return -ENOMEM;
Paul Menage7717f7b2009-09-23 15:56:22 -07006147
Tejun Heof0d9a5f2015-10-15 16:41:53 -04006148 spin_lock_bh(&css_set_lock);
Paul Menage7717f7b2009-09-23 15:56:22 -07006149 rcu_read_lock();
Tejun Heo5abb8852013-06-12 21:04:49 -07006150 cset = rcu_dereference(current->cgroups);
Tejun Heo69d02062013-06-12 21:04:50 -07006151 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07006152 struct cgroup *c = link->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -07006153
Tejun Heoa2dd4242014-03-19 10:23:55 -04006154 cgroup_name(c, name_buf, NAME_MAX + 1);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07006155 seq_printf(seq, "Root %d group %s\n",
Tejun Heoa2dd4242014-03-19 10:23:55 -04006156 c->root->hierarchy_id, name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07006157 }
6158 rcu_read_unlock();
Tejun Heof0d9a5f2015-10-15 16:41:53 -04006159 spin_unlock_bh(&css_set_lock);
Tejun Heoe61734c2014-02-12 09:29:50 -05006160 kfree(name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07006161 return 0;
6162}
6163
6164#define MAX_TASKS_SHOWN_PER_CSS 25
Tejun Heo2da8ca82013-12-05 12:28:04 -05006165static int cgroup_css_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07006166{
Tejun Heo2da8ca82013-12-05 12:28:04 -05006167 struct cgroup_subsys_state *css = seq_css(seq);
Tejun Heo69d02062013-06-12 21:04:50 -07006168 struct cgrp_cset_link *link;
Paul Menage7717f7b2009-09-23 15:56:22 -07006169
Tejun Heof0d9a5f2015-10-15 16:41:53 -04006170 spin_lock_bh(&css_set_lock);
Tejun Heo182446d2013-08-08 20:11:24 -04006171 list_for_each_entry(link, &css->cgroup->cset_links, cset_link) {
Tejun Heo69d02062013-06-12 21:04:50 -07006172 struct css_set *cset = link->cset;
Paul Menage7717f7b2009-09-23 15:56:22 -07006173 struct task_struct *task;
6174 int count = 0;
Tejun Heoc7561122014-02-25 10:04:01 -05006175
Tejun Heo5abb8852013-06-12 21:04:49 -07006176 seq_printf(seq, "css_set %p\n", cset);
Tejun Heoc7561122014-02-25 10:04:01 -05006177
Tejun Heo5abb8852013-06-12 21:04:49 -07006178 list_for_each_entry(task, &cset->tasks, cg_list) {
Tejun Heoc7561122014-02-25 10:04:01 -05006179 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
6180 goto overflow;
6181 seq_printf(seq, " task %d\n", task_pid_vnr(task));
Paul Menage7717f7b2009-09-23 15:56:22 -07006182 }
Tejun Heoc7561122014-02-25 10:04:01 -05006183
6184 list_for_each_entry(task, &cset->mg_tasks, cg_list) {
6185 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
6186 goto overflow;
6187 seq_printf(seq, " task %d\n", task_pid_vnr(task));
6188 }
6189 continue;
6190 overflow:
6191 seq_puts(seq, " ...\n");
Paul Menage7717f7b2009-09-23 15:56:22 -07006192 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04006193 spin_unlock_bh(&css_set_lock);
Paul Menage7717f7b2009-09-23 15:56:22 -07006194 return 0;
6195}
6196
Tejun Heo182446d2013-08-08 20:11:24 -04006197static u64 releasable_read(struct cgroup_subsys_state *css, struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07006198{
Tejun Heo27bd4db2015-10-15 16:41:50 -04006199 return (!cgroup_is_populated(css->cgroup) &&
Zefan Lia25eb522014-09-19 16:51:00 +08006200 !css_has_online_children(&css->cgroup->self));
Paul Menagefe693432009-09-23 15:56:20 -07006201}
6202
6203static struct cftype debug_files[] = {
6204 {
Paul Menagefe693432009-09-23 15:56:20 -07006205 .name = "taskcount",
6206 .read_u64 = debug_taskcount_read,
6207 },
6208
6209 {
6210 .name = "current_css_set",
6211 .read_u64 = current_css_set_read,
6212 },
6213
6214 {
6215 .name = "current_css_set_refcount",
6216 .read_u64 = current_css_set_refcount_read,
6217 },
6218
6219 {
Paul Menage7717f7b2009-09-23 15:56:22 -07006220 .name = "current_css_set_cg_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05006221 .seq_show = current_css_set_cg_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07006222 },
6223
6224 {
6225 .name = "cgroup_css_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05006226 .seq_show = cgroup_css_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07006227 },
6228
6229 {
Paul Menagefe693432009-09-23 15:56:20 -07006230 .name = "releasable",
6231 .read_u64 = releasable_read,
6232 },
Paul Menagefe693432009-09-23 15:56:20 -07006233
Tejun Heo4baf6e32012-04-01 12:09:55 -07006234 { } /* terminate */
6235};
Paul Menagefe693432009-09-23 15:56:20 -07006236
Tejun Heo073219e2014-02-08 10:36:58 -05006237struct cgroup_subsys debug_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08006238 .css_alloc = debug_css_alloc,
6239 .css_free = debug_css_free,
Tejun Heo55779642014-07-15 11:05:09 -04006240 .legacy_cftypes = debug_files,
Paul Menagefe693432009-09-23 15:56:20 -07006241};
6242#endif /* CONFIG_CGROUP_DEBUG */