blob: 4f8f7927b4222a98f924c2d8ac906888fe07210a [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 Heobd1060a2015-12-07 17:38:53 -050061#include <net/sock.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070062
Tejun Heoe25e2cb2011-12-12 18:12:21 -080063/*
Tejun Heob1a21362013-11-29 10:42:58 -050064 * pidlists linger the following amount before being destroyed. The goal
65 * is avoiding frequent destruction in the middle of consecutive read calls
66 * Expiring in the middle is a performance problem not a correctness one.
67 * 1 sec should be enough.
68 */
69#define CGROUP_PIDLIST_DESTROY_DELAY HZ
70
Tejun Heo8d7e6fb2014-02-11 11:52:48 -050071#define CGROUP_FILE_NAME_MAX (MAX_CGROUP_TYPE_NAMELEN + \
72 MAX_CFTYPE_NAME + 2)
73
Tejun Heob1a21362013-11-29 10:42:58 -050074/*
Tejun Heoe25e2cb2011-12-12 18:12:21 -080075 * cgroup_mutex is the master lock. Any modification to cgroup or its
76 * hierarchy must be performed while holding it.
77 *
Tejun Heof0d9a5f2015-10-15 16:41:53 -040078 * css_set_lock protects task->cgroups pointer, the list of css_set
Tejun Heo0e1d7682014-02-25 10:04:03 -050079 * objects, and the chain of tasks off each css_set.
Tejun Heoe25e2cb2011-12-12 18:12:21 -080080 *
Tejun Heo0e1d7682014-02-25 10:04:03 -050081 * These locks are exported if CONFIG_PROVE_RCU so that accessors in
82 * cgroup.h can use them for lockdep annotations.
Tejun Heoe25e2cb2011-12-12 18:12:21 -080083 */
Tejun Heo22194492013-04-07 09:29:51 -070084#ifdef CONFIG_PROVE_RCU
85DEFINE_MUTEX(cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -040086DEFINE_SPINLOCK(css_set_lock);
Tejun Heo0e1d7682014-02-25 10:04:03 -050087EXPORT_SYMBOL_GPL(cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -040088EXPORT_SYMBOL_GPL(css_set_lock);
Tejun Heo22194492013-04-07 09:29:51 -070089#else
Paul Menage81a6a5c2007-10-18 23:39:38 -070090static DEFINE_MUTEX(cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -040091static DEFINE_SPINLOCK(css_set_lock);
Tejun Heo22194492013-04-07 09:29:51 -070092#endif
93
Tejun Heo69e943b2014-02-08 10:36:58 -050094/*
Tejun Heo15a4c832014-05-04 15:09:14 -040095 * Protects cgroup_idr and css_idr so that IDs can be released without
96 * grabbing cgroup_mutex.
Tejun Heo6fa49182014-05-04 15:09:13 -040097 */
98static DEFINE_SPINLOCK(cgroup_idr_lock);
99
100/*
Tejun Heo69e943b2014-02-08 10:36:58 -0500101 * Protects cgroup_subsys->release_agent_path. Modifying it also requires
102 * cgroup_mutex. Reading requires either cgroup_mutex or this spinlock.
103 */
104static DEFINE_SPINLOCK(release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700105
Tejun Heo1ed13282015-09-16 12:53:17 -0400106struct percpu_rw_semaphore cgroup_threadgroup_rwsem;
107
Tejun Heo8353da12014-05-13 12:19:23 -0400108#define cgroup_assert_mutex_or_rcu_locked() \
Paul E. McKenneyf78f5b92015-06-18 15:50:02 -0700109 RCU_LOCKDEP_WARN(!rcu_read_lock_held() && \
110 !lockdep_is_held(&cgroup_mutex), \
Tejun Heo8353da12014-05-13 12:19:23 -0400111 "cgroup_mutex or RCU read lock required");
Tejun Heo780cd8b2013-12-06 15:11:56 -0500112
Ben Blumaae8aab2010-03-10 15:22:07 -0800113/*
Tejun Heoe5fca242013-11-22 17:14:39 -0500114 * cgroup destruction makes heavy use of work items and there can be a lot
115 * of concurrent destructions. Use a separate workqueue so that cgroup
116 * destruction work items don't end up filling up max_active of system_wq
117 * which may lead to deadlock.
118 */
119static struct workqueue_struct *cgroup_destroy_wq;
120
121/*
Tejun Heob1a21362013-11-29 10:42:58 -0500122 * pidlist destructions need to be flushed on cgroup destruction. Use a
123 * separate workqueue as flush domain.
124 */
125static struct workqueue_struct *cgroup_pidlist_destroy_wq;
126
Tejun Heo3ed80a62014-02-08 10:36:58 -0500127/* generate an array of cgroup subsystem pointers */
Tejun Heo073219e2014-02-08 10:36:58 -0500128#define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys,
Tejun Heo3ed80a62014-02-08 10:36:58 -0500129static struct cgroup_subsys *cgroup_subsys[] = {
Paul Menageddbcc7e2007-10-18 23:39:30 -0700130#include <linux/cgroup_subsys.h>
131};
Tejun Heo073219e2014-02-08 10:36:58 -0500132#undef SUBSYS
133
134/* array of cgroup subsystem names */
135#define SUBSYS(_x) [_x ## _cgrp_id] = #_x,
136static const char *cgroup_subsys_name[] = {
137#include <linux/cgroup_subsys.h>
138};
139#undef SUBSYS
Paul Menageddbcc7e2007-10-18 23:39:30 -0700140
Tejun Heo49d1dc42015-09-18 11:56:28 -0400141/* array of static_keys for cgroup_subsys_enabled() and cgroup_subsys_on_dfl() */
142#define SUBSYS(_x) \
143 DEFINE_STATIC_KEY_TRUE(_x ## _cgrp_subsys_enabled_key); \
144 DEFINE_STATIC_KEY_TRUE(_x ## _cgrp_subsys_on_dfl_key); \
145 EXPORT_SYMBOL_GPL(_x ## _cgrp_subsys_enabled_key); \
146 EXPORT_SYMBOL_GPL(_x ## _cgrp_subsys_on_dfl_key);
147#include <linux/cgroup_subsys.h>
148#undef SUBSYS
149
150#define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys_enabled_key,
151static struct static_key_true *cgroup_subsys_enabled_key[] = {
152#include <linux/cgroup_subsys.h>
153};
154#undef SUBSYS
155
156#define SUBSYS(_x) [_x ## _cgrp_id] = &_x ## _cgrp_subsys_on_dfl_key,
157static struct static_key_true *cgroup_subsys_on_dfl_key[] = {
158#include <linux/cgroup_subsys.h>
159};
160#undef SUBSYS
161
Paul Menageddbcc7e2007-10-18 23:39:30 -0700162/*
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400163 * The default hierarchy, reserved for the subsystems that are otherwise
Tejun Heo9871bf92013-06-24 15:21:47 -0700164 * unattached - it never has more than a single cgroup, and all tasks are
165 * part of that cgroup.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700166 */
Tejun Heoa2dd4242014-03-19 10:23:55 -0400167struct cgroup_root cgrp_dfl_root;
Tejun Heod0ec4232015-08-05 16:03:19 -0400168EXPORT_SYMBOL_GPL(cgrp_dfl_root);
Tejun Heo9871bf92013-06-24 15:21:47 -0700169
Tejun Heoa2dd4242014-03-19 10:23:55 -0400170/*
171 * The default hierarchy always exists but is hidden until mounted for the
172 * first time. This is for backward compatibility.
173 */
174static bool cgrp_dfl_root_visible;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700175
Tejun Heo5533e012014-05-14 19:33:07 -0400176/* some controllers are not supported in the default hierarchy */
Aleksa Sarai8ab456a2015-05-19 00:51:00 +1000177static unsigned long cgrp_dfl_root_inhibit_ss_mask;
Tejun Heo5533e012014-05-14 19:33:07 -0400178
Paul Menageddbcc7e2007-10-18 23:39:30 -0700179/* The list of hierarchy roots */
180
Tejun Heo9871bf92013-06-24 15:21:47 -0700181static LIST_HEAD(cgroup_roots);
182static int cgroup_root_count;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700183
Tejun Heo3417ae12014-02-08 10:37:01 -0500184/* hierarchy ID allocation and mapping, protected by cgroup_mutex */
Tejun Heo1a574232013-04-14 11:36:58 -0700185static DEFINE_IDR(cgroup_hierarchy_idr);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700186
Li Zefan794611a2013-06-18 18:53:53 +0800187/*
Tejun Heo0cb51d72014-05-16 13:22:49 -0400188 * Assign a monotonically increasing serial number to csses. It guarantees
189 * cgroups with bigger numbers are newer than those with smaller numbers.
190 * Also, as csses are always appended to the parent's ->children list, it
191 * guarantees that sibling csses are always sorted in the ascending serial
192 * number order on the list. Protected by cgroup_mutex.
Li Zefan794611a2013-06-18 18:53:53 +0800193 */
Tejun Heo0cb51d72014-05-16 13:22:49 -0400194static u64 css_serial_nr_next = 1;
Li Zefan794611a2013-06-18 18:53:53 +0800195
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000196/*
197 * These bitmask flags indicate whether tasks in the fork and exit paths have
198 * fork/exit handlers to call. This avoids us having to do extra work in the
199 * fork/exit path to check which subsystems have fork/exit callbacks.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700200 */
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000201static unsigned long have_fork_callback __read_mostly;
202static unsigned long have_exit_callback __read_mostly;
Tejun Heoafcf6c82015-10-15 16:41:53 -0400203static unsigned long have_free_callback __read_mostly;
Paul Menageddbcc7e2007-10-18 23:39:30 -0700204
Aleksa Sarai7e476822015-06-09 21:32:09 +1000205/* Ditto for the can_fork callback. */
206static unsigned long have_canfork_callback __read_mostly;
207
Tejun Heoa14c6872014-07-15 11:05:09 -0400208static struct cftype cgroup_dfl_base_files[];
209static struct cftype cgroup_legacy_base_files[];
Tejun Heo628f7cd2013-06-28 16:24:11 -0700210
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400211static int rebind_subsystems(struct cgroup_root *dst_root,
Aleksa Sarai8ab456a2015-05-19 00:51:00 +1000212 unsigned long ss_mask);
Tejun Heoed27b9f2015-10-15 16:41:52 -0400213static void css_task_iter_advance(struct css_task_iter *it);
Tejun Heo42809dd2012-11-19 08:13:37 -0800214static int cgroup_destroy_locked(struct cgroup *cgrp);
Tejun Heof63070d2014-07-08 18:02:57 -0400215static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss,
216 bool visible);
Tejun Heo9d755d32014-05-14 09:15:02 -0400217static void css_release(struct percpu_ref *ref);
Tejun Heof8f22e52014-04-23 11:13:16 -0400218static void kill_css(struct cgroup_subsys_state *css);
Tejun Heo4df8dc92015-09-18 17:54:23 -0400219static int cgroup_addrm_files(struct cgroup_subsys_state *css,
220 struct cgroup *cgrp, struct cftype cfts[],
Tejun Heo2bb566c2013-08-08 20:11:23 -0400221 bool is_add);
Tejun Heo42809dd2012-11-19 08:13:37 -0800222
Tejun Heofc5ed1e2015-09-18 11:56:28 -0400223/**
224 * cgroup_ssid_enabled - cgroup subsys enabled test by subsys ID
225 * @ssid: subsys ID of interest
226 *
227 * cgroup_subsys_enabled() can only be used with literal subsys names which
228 * is fine for individual subsystems but unsuitable for cgroup core. This
229 * is slower static_key_enabled() based test indexed by @ssid.
230 */
231static bool cgroup_ssid_enabled(int ssid)
232{
233 return static_key_enabled(cgroup_subsys_enabled_key[ssid]);
234}
235
Tejun Heo9e10a132015-09-18 11:56:28 -0400236/**
237 * cgroup_on_dfl - test whether a cgroup is on the default hierarchy
238 * @cgrp: the cgroup of interest
239 *
240 * The default hierarchy is the v2 interface of cgroup and this function
241 * can be used to test whether a cgroup is on the default hierarchy for
242 * cases where a subsystem should behave differnetly depending on the
243 * interface version.
244 *
245 * The set of behaviors which change on the default hierarchy are still
246 * being determined and the mount option is prefixed with __DEVEL__.
247 *
248 * List of changed behaviors:
249 *
250 * - Mount options "noprefix", "xattr", "clone_children", "release_agent"
251 * and "name" are disallowed.
252 *
253 * - When mounting an existing superblock, mount options should match.
254 *
255 * - Remount is disallowed.
256 *
257 * - rename(2) is disallowed.
258 *
259 * - "tasks" is removed. Everything should be at process granularity. Use
260 * "cgroup.procs" instead.
261 *
262 * - "cgroup.procs" is not sorted. pids will be unique unless they got
263 * recycled inbetween reads.
264 *
265 * - "release_agent" and "notify_on_release" are removed. Replacement
266 * notification mechanism will be implemented.
267 *
268 * - "cgroup.clone_children" is removed.
269 *
270 * - "cgroup.subtree_populated" is available. Its value is 0 if the cgroup
271 * and its descendants contain no task; otherwise, 1. The file also
272 * generates kernfs notification which can be monitored through poll and
273 * [di]notify when the value of the file changes.
274 *
275 * - cpuset: tasks will be kept in empty cpusets when hotplug happens and
276 * take masks of ancestors with non-empty cpus/mems, instead of being
277 * moved to an ancestor.
278 *
279 * - cpuset: a task can be moved into an empty cpuset, and again it takes
280 * masks of ancestors.
281 *
282 * - memcg: use_hierarchy is on by default and the cgroup file for the flag
283 * is not created.
284 *
285 * - blkcg: blk-throttle becomes properly hierarchical.
286 *
287 * - debug: disallowed on the default hierarchy.
288 */
289static bool cgroup_on_dfl(const struct cgroup *cgrp)
290{
291 return cgrp->root == &cgrp_dfl_root;
292}
293
Tejun Heo6fa49182014-05-04 15:09:13 -0400294/* IDR wrappers which synchronize using cgroup_idr_lock */
295static int cgroup_idr_alloc(struct idr *idr, void *ptr, int start, int end,
296 gfp_t gfp_mask)
297{
298 int ret;
299
300 idr_preload(gfp_mask);
Tejun Heo54504e92014-05-13 12:10:59 -0400301 spin_lock_bh(&cgroup_idr_lock);
Mel Gormand0164ad2015-11-06 16:28:21 -0800302 ret = idr_alloc(idr, ptr, start, end, gfp_mask & ~__GFP_DIRECT_RECLAIM);
Tejun Heo54504e92014-05-13 12:10:59 -0400303 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400304 idr_preload_end();
305 return ret;
306}
307
308static void *cgroup_idr_replace(struct idr *idr, void *ptr, int id)
309{
310 void *ret;
311
Tejun Heo54504e92014-05-13 12:10:59 -0400312 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400313 ret = idr_replace(idr, ptr, id);
Tejun Heo54504e92014-05-13 12:10:59 -0400314 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400315 return ret;
316}
317
318static void cgroup_idr_remove(struct idr *idr, int id)
319{
Tejun Heo54504e92014-05-13 12:10:59 -0400320 spin_lock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400321 idr_remove(idr, id);
Tejun Heo54504e92014-05-13 12:10:59 -0400322 spin_unlock_bh(&cgroup_idr_lock);
Tejun Heo6fa49182014-05-04 15:09:13 -0400323}
324
Tejun Heod51f39b2014-05-16 13:22:48 -0400325static struct cgroup *cgroup_parent(struct cgroup *cgrp)
326{
327 struct cgroup_subsys_state *parent_css = cgrp->self.parent;
328
329 if (parent_css)
330 return container_of(parent_css, struct cgroup, self);
331 return NULL;
332}
333
Tejun Heo95109b62013-08-08 20:11:27 -0400334/**
335 * cgroup_css - obtain a cgroup's css for the specified subsystem
336 * @cgrp: the cgroup of interest
Tejun Heo9d800df2014-05-14 09:15:00 -0400337 * @ss: the subsystem of interest (%NULL returns @cgrp->self)
Tejun Heo95109b62013-08-08 20:11:27 -0400338 *
Tejun Heoca8bdca2013-08-26 18:40:56 -0400339 * Return @cgrp's css (cgroup_subsys_state) associated with @ss. This
340 * function must be called either under cgroup_mutex or rcu_read_lock() and
341 * the caller is responsible for pinning the returned css if it wants to
342 * keep accessing it outside the said locks. This function may return
343 * %NULL if @cgrp doesn't have @subsys_id enabled.
Tejun Heo95109b62013-08-08 20:11:27 -0400344 */
345static struct cgroup_subsys_state *cgroup_css(struct cgroup *cgrp,
Tejun Heoca8bdca2013-08-26 18:40:56 -0400346 struct cgroup_subsys *ss)
Tejun Heo95109b62013-08-08 20:11:27 -0400347{
Tejun Heoca8bdca2013-08-26 18:40:56 -0400348 if (ss)
Tejun Heoaec25022014-02-08 10:36:58 -0500349 return rcu_dereference_check(cgrp->subsys[ss->id],
Tejun Heoace2bee2014-02-11 11:52:47 -0500350 lockdep_is_held(&cgroup_mutex));
Tejun Heoca8bdca2013-08-26 18:40:56 -0400351 else
Tejun Heo9d800df2014-05-14 09:15:00 -0400352 return &cgrp->self;
Tejun Heo95109b62013-08-08 20:11:27 -0400353}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700354
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400355/**
356 * cgroup_e_css - obtain a cgroup's effective css for the specified subsystem
357 * @cgrp: the cgroup of interest
Tejun Heo9d800df2014-05-14 09:15:00 -0400358 * @ss: the subsystem of interest (%NULL returns @cgrp->self)
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400359 *
Chen Hanxiaod0f702e2015-04-23 07:57:33 -0400360 * Similar to cgroup_css() but returns the effective css, which is defined
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400361 * as the matching css of the nearest ancestor including self which has @ss
362 * enabled. If @ss is associated with the hierarchy @cgrp is on, this
363 * function is guaranteed to return non-NULL css.
364 */
365static struct cgroup_subsys_state *cgroup_e_css(struct cgroup *cgrp,
366 struct cgroup_subsys *ss)
367{
368 lockdep_assert_held(&cgroup_mutex);
369
370 if (!ss)
Tejun Heo9d800df2014-05-14 09:15:00 -0400371 return &cgrp->self;
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400372
373 if (!(cgrp->root->subsys_mask & (1 << ss->id)))
374 return NULL;
375
Tejun Heoeeecbd12014-11-18 02:49:52 -0500376 /*
377 * This function is used while updating css associations and thus
378 * can't test the csses directly. Use ->child_subsys_mask.
379 */
Tejun Heod51f39b2014-05-16 13:22:48 -0400380 while (cgroup_parent(cgrp) &&
381 !(cgroup_parent(cgrp)->child_subsys_mask & (1 << ss->id)))
382 cgrp = cgroup_parent(cgrp);
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400383
384 return cgroup_css(cgrp, ss);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700385}
386
Tejun Heoeeecbd12014-11-18 02:49:52 -0500387/**
388 * cgroup_get_e_css - get a cgroup's effective css for the specified subsystem
389 * @cgrp: the cgroup of interest
390 * @ss: the subsystem of interest
391 *
392 * Find and get the effective css of @cgrp for @ss. The effective css is
393 * defined as the matching css of the nearest ancestor including self which
394 * has @ss enabled. If @ss is not mounted on the hierarchy @cgrp is on,
395 * the root css is returned, so this function always returns a valid css.
396 * The returned css must be put using css_put().
397 */
398struct cgroup_subsys_state *cgroup_get_e_css(struct cgroup *cgrp,
399 struct cgroup_subsys *ss)
400{
401 struct cgroup_subsys_state *css;
402
403 rcu_read_lock();
404
405 do {
406 css = cgroup_css(cgrp, ss);
407
408 if (css && css_tryget_online(css))
409 goto out_unlock;
410 cgrp = cgroup_parent(cgrp);
411 } while (cgrp);
412
413 css = init_css_set.subsys[ss->id];
414 css_get(css);
415out_unlock:
416 rcu_read_unlock();
417 return css;
418}
419
Paul Menageddbcc7e2007-10-18 23:39:30 -0700420/* convenient tests for these bits */
Tejun Heo54766d42013-06-12 21:04:53 -0700421static inline bool cgroup_is_dead(const struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700422{
Tejun Heo184faf32014-05-16 13:22:51 -0400423 return !(cgrp->self.flags & CSS_ONLINE);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700424}
425
Tejun Heo052c3f32015-10-15 16:41:50 -0400426static void cgroup_get(struct cgroup *cgrp)
427{
428 WARN_ON_ONCE(cgroup_is_dead(cgrp));
429 css_get(&cgrp->self);
430}
431
432static bool cgroup_tryget(struct cgroup *cgrp)
433{
434 return css_tryget(&cgrp->self);
435}
436
Tejun Heob4168642014-05-13 12:16:21 -0400437struct cgroup_subsys_state *of_css(struct kernfs_open_file *of)
Tejun Heo59f52962014-02-11 11:52:49 -0500438{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500439 struct cgroup *cgrp = of->kn->parent->priv;
Tejun Heob4168642014-05-13 12:16:21 -0400440 struct cftype *cft = of_cft(of);
Tejun Heo2bd59d42014-02-11 11:52:49 -0500441
442 /*
443 * This is open and unprotected implementation of cgroup_css().
444 * seq_css() is only called from a kernfs file operation which has
445 * an active reference on the file. Because all the subsystem
446 * files are drained before a css is disassociated with a cgroup,
447 * the matching css from the cgroup's subsys table is guaranteed to
448 * be and stay valid until the enclosing operation is complete.
449 */
450 if (cft->ss)
451 return rcu_dereference_raw(cgrp->subsys[cft->ss->id]);
452 else
Tejun Heo9d800df2014-05-14 09:15:00 -0400453 return &cgrp->self;
Tejun Heo59f52962014-02-11 11:52:49 -0500454}
Tejun Heob4168642014-05-13 12:16:21 -0400455EXPORT_SYMBOL_GPL(of_css);
Tejun Heo59f52962014-02-11 11:52:49 -0500456
Adrian Bunke9685a02008-02-07 00:13:46 -0800457static int notify_on_release(const struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -0700458{
Paul Menagebd89aab2007-10-18 23:40:44 -0700459 return test_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700460}
461
Tejun Heo30159ec2013-06-25 11:53:37 -0700462/**
Tejun Heo1c6727a2013-12-06 15:11:56 -0500463 * for_each_css - iterate all css's of a cgroup
464 * @css: the iteration cursor
465 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
466 * @cgrp: the target cgroup to iterate css's of
Tejun Heo30159ec2013-06-25 11:53:37 -0700467 *
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400468 * Should be called under cgroup_[tree_]mutex.
Tejun Heo30159ec2013-06-25 11:53:37 -0700469 */
Tejun Heo1c6727a2013-12-06 15:11:56 -0500470#define for_each_css(css, ssid, cgrp) \
471 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
472 if (!((css) = rcu_dereference_check( \
473 (cgrp)->subsys[(ssid)], \
474 lockdep_is_held(&cgroup_mutex)))) { } \
475 else
476
477/**
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400478 * for_each_e_css - iterate all effective css's of a cgroup
479 * @css: the iteration cursor
480 * @ssid: the index of the subsystem, CGROUP_SUBSYS_COUNT after reaching the end
481 * @cgrp: the target cgroup to iterate css's of
482 *
483 * Should be called under cgroup_[tree_]mutex.
484 */
485#define for_each_e_css(css, ssid, cgrp) \
486 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT; (ssid)++) \
487 if (!((css) = cgroup_e_css(cgrp, cgroup_subsys[(ssid)]))) \
488 ; \
489 else
490
491/**
Tejun Heo3ed80a62014-02-08 10:36:58 -0500492 * for_each_subsys - iterate all enabled cgroup subsystems
Tejun Heo30159ec2013-06-25 11:53:37 -0700493 * @ss: the iteration cursor
Tejun Heo780cd8b2013-12-06 15:11:56 -0500494 * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end
Tejun Heo30159ec2013-06-25 11:53:37 -0700495 */
Tejun Heo780cd8b2013-12-06 15:11:56 -0500496#define for_each_subsys(ss, ssid) \
Tejun Heo3ed80a62014-02-08 10:36:58 -0500497 for ((ssid) = 0; (ssid) < CGROUP_SUBSYS_COUNT && \
498 (((ss) = cgroup_subsys[ssid]) || true); (ssid)++)
Tejun Heo30159ec2013-06-25 11:53:37 -0700499
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000500/**
501 * for_each_subsys_which - filter for_each_subsys with a bitmask
502 * @ss: the iteration cursor
503 * @ssid: the index of @ss, CGROUP_SUBSYS_COUNT after reaching the end
504 * @ss_maskp: a pointer to the bitmask
505 *
506 * The block will only run for cases where the ssid-th bit (1 << ssid) of
507 * mask is set to 1.
508 */
509#define for_each_subsys_which(ss, ssid, ss_maskp) \
510 if (!CGROUP_SUBSYS_COUNT) /* to avoid spurious gcc warning */ \
Aleksa Sarai4a705c52015-06-09 21:32:07 +1000511 (ssid) = 0; \
Aleksa Saraicb4a3162015-06-06 10:02:14 +1000512 else \
513 for_each_set_bit(ssid, ss_maskp, CGROUP_SUBSYS_COUNT) \
514 if (((ss) = cgroup_subsys[ssid]) && false) \
515 break; \
516 else
517
Tejun Heo985ed672014-03-19 10:23:53 -0400518/* iterate across the hierarchies */
519#define for_each_root(root) \
Tejun Heo5549c492013-06-24 15:21:48 -0700520 list_for_each_entry((root), &cgroup_roots, root_list)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700521
Tejun Heof8f22e52014-04-23 11:13:16 -0400522/* iterate over child cgrps, lock should be held throughout iteration */
523#define cgroup_for_each_live_child(child, cgrp) \
Tejun Heod5c419b2014-05-16 13:22:48 -0400524 list_for_each_entry((child), &(cgrp)->self.children, self.sibling) \
Tejun Heo8353da12014-05-13 12:19:23 -0400525 if (({ lockdep_assert_held(&cgroup_mutex); \
Tejun Heof8f22e52014-04-23 11:13:16 -0400526 cgroup_is_dead(child); })) \
527 ; \
528 else
Tejun Heo7ae1bad2013-04-07 09:29:51 -0700529
Paul Menage81a6a5c2007-10-18 23:39:38 -0700530static void cgroup_release_agent(struct work_struct *work);
Paul Menagebd89aab2007-10-18 23:40:44 -0700531static void check_for_release(struct cgroup *cgrp);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700532
Tejun Heo69d02062013-06-12 21:04:50 -0700533/*
534 * A cgroup can be associated with multiple css_sets as different tasks may
535 * belong to different cgroups on different hierarchies. In the other
536 * direction, a css_set is naturally associated with multiple cgroups.
537 * This M:N relationship is represented by the following link structure
538 * which exists for each association and allows traversing the associations
539 * from both sides.
540 */
541struct cgrp_cset_link {
542 /* the cgroup and css_set this link associates */
543 struct cgroup *cgrp;
544 struct css_set *cset;
545
546 /* list of cgrp_cset_links anchored at cgrp->cset_links */
547 struct list_head cset_link;
548
549 /* list of cgrp_cset_links anchored at css_set->cgrp_links */
550 struct list_head cgrp_link;
Paul Menage817929e2007-10-18 23:39:36 -0700551};
552
Tejun Heo172a2c062014-03-19 10:23:53 -0400553/*
554 * The default css_set - used by init and its children prior to any
Paul Menage817929e2007-10-18 23:39:36 -0700555 * hierarchies being mounted. It contains a pointer to the root state
556 * for each subsystem. Also used to anchor the list of css_sets. Not
557 * reference-counted, to improve performance when child cgroups
558 * haven't been created.
559 */
Tejun Heo5024ae22014-05-07 21:31:17 -0400560struct css_set init_css_set = {
Tejun Heo172a2c062014-03-19 10:23:53 -0400561 .refcount = ATOMIC_INIT(1),
562 .cgrp_links = LIST_HEAD_INIT(init_css_set.cgrp_links),
563 .tasks = LIST_HEAD_INIT(init_css_set.tasks),
564 .mg_tasks = LIST_HEAD_INIT(init_css_set.mg_tasks),
565 .mg_preload_node = LIST_HEAD_INIT(init_css_set.mg_preload_node),
566 .mg_node = LIST_HEAD_INIT(init_css_set.mg_node),
Tejun Heoed27b9f2015-10-15 16:41:52 -0400567 .task_iters = LIST_HEAD_INIT(init_css_set.task_iters),
Tejun Heo172a2c062014-03-19 10:23:53 -0400568};
Paul Menage817929e2007-10-18 23:39:36 -0700569
Tejun Heo172a2c062014-03-19 10:23:53 -0400570static int css_set_count = 1; /* 1 for init_css_set */
Paul Menage817929e2007-10-18 23:39:36 -0700571
Tejun Heo842b5972014-04-25 18:28:02 -0400572/**
Tejun Heo0de09422015-10-15 16:41:49 -0400573 * css_set_populated - does a css_set contain any tasks?
574 * @cset: target css_set
575 */
576static bool css_set_populated(struct css_set *cset)
577{
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400578 lockdep_assert_held(&css_set_lock);
Tejun Heo0de09422015-10-15 16:41:49 -0400579
580 return !list_empty(&cset->tasks) || !list_empty(&cset->mg_tasks);
581}
582
583/**
Tejun Heo842b5972014-04-25 18:28:02 -0400584 * cgroup_update_populated - updated populated count of a cgroup
585 * @cgrp: the target cgroup
586 * @populated: inc or dec populated count
587 *
Tejun Heo0de09422015-10-15 16:41:49 -0400588 * One of the css_sets associated with @cgrp is either getting its first
589 * task or losing the last. Update @cgrp->populated_cnt accordingly. The
590 * count is propagated towards root so that a given cgroup's populated_cnt
591 * is zero iff the cgroup and all its descendants don't contain any tasks.
Tejun Heo842b5972014-04-25 18:28:02 -0400592 *
593 * @cgrp's interface file "cgroup.populated" is zero if
594 * @cgrp->populated_cnt is zero and 1 otherwise. When @cgrp->populated_cnt
595 * changes from or to zero, userland is notified that the content of the
596 * interface file has changed. This can be used to detect when @cgrp and
597 * its descendants become populated or empty.
598 */
599static void cgroup_update_populated(struct cgroup *cgrp, bool populated)
600{
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400601 lockdep_assert_held(&css_set_lock);
Tejun Heo842b5972014-04-25 18:28:02 -0400602
603 do {
604 bool trigger;
605
606 if (populated)
607 trigger = !cgrp->populated_cnt++;
608 else
609 trigger = !--cgrp->populated_cnt;
610
611 if (!trigger)
612 break;
613
Tejun Heoad2ed2b2015-10-15 16:41:50 -0400614 check_for_release(cgrp);
Tejun Heo6f60ead2015-09-18 17:54:23 -0400615 cgroup_file_notify(&cgrp->events_file);
616
Tejun Heod51f39b2014-05-16 13:22:48 -0400617 cgrp = cgroup_parent(cgrp);
Tejun Heo842b5972014-04-25 18:28:02 -0400618 } while (cgrp);
619}
620
Tejun Heo0de09422015-10-15 16:41:49 -0400621/**
622 * css_set_update_populated - update populated state of a css_set
623 * @cset: target css_set
624 * @populated: whether @cset is populated or depopulated
625 *
626 * @cset is either getting the first task or losing the last. Update the
627 * ->populated_cnt of all associated cgroups accordingly.
628 */
629static void css_set_update_populated(struct css_set *cset, bool populated)
630{
631 struct cgrp_cset_link *link;
632
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400633 lockdep_assert_held(&css_set_lock);
Tejun Heo0de09422015-10-15 16:41:49 -0400634
635 list_for_each_entry(link, &cset->cgrp_links, cgrp_link)
636 cgroup_update_populated(link->cgrp, populated);
637}
638
Tejun Heof6d7d042015-10-15 16:41:52 -0400639/**
640 * css_set_move_task - move a task from one css_set to another
641 * @task: task being moved
642 * @from_cset: css_set @task currently belongs to (may be NULL)
643 * @to_cset: new css_set @task is being moved to (may be NULL)
644 * @use_mg_tasks: move to @to_cset->mg_tasks instead of ->tasks
645 *
646 * Move @task from @from_cset to @to_cset. If @task didn't belong to any
647 * css_set, @from_cset can be NULL. If @task is being disassociated
648 * instead of moved, @to_cset can be NULL.
649 *
Tejun Heoed27b9f2015-10-15 16:41:52 -0400650 * This function automatically handles populated_cnt updates and
651 * css_task_iter adjustments but the caller is responsible for managing
652 * @from_cset and @to_cset's reference counts.
Tejun Heof6d7d042015-10-15 16:41:52 -0400653 */
654static void css_set_move_task(struct task_struct *task,
655 struct css_set *from_cset, struct css_set *to_cset,
656 bool use_mg_tasks)
657{
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400658 lockdep_assert_held(&css_set_lock);
Tejun Heof6d7d042015-10-15 16:41:52 -0400659
660 if (from_cset) {
Tejun Heoed27b9f2015-10-15 16:41:52 -0400661 struct css_task_iter *it, *pos;
662
Tejun Heof6d7d042015-10-15 16:41:52 -0400663 WARN_ON_ONCE(list_empty(&task->cg_list));
Tejun Heoed27b9f2015-10-15 16:41:52 -0400664
665 /*
666 * @task is leaving, advance task iterators which are
667 * pointing to it so that they can resume at the next
668 * position. Advancing an iterator might remove it from
669 * the list, use safe walk. See css_task_iter_advance*()
670 * for details.
671 */
672 list_for_each_entry_safe(it, pos, &from_cset->task_iters,
673 iters_node)
674 if (it->task_pos == &task->cg_list)
675 css_task_iter_advance(it);
676
Tejun Heof6d7d042015-10-15 16:41:52 -0400677 list_del_init(&task->cg_list);
678 if (!css_set_populated(from_cset))
679 css_set_update_populated(from_cset, false);
680 } else {
681 WARN_ON_ONCE(!list_empty(&task->cg_list));
682 }
683
684 if (to_cset) {
685 /*
686 * We are synchronized through cgroup_threadgroup_rwsem
687 * against PF_EXITING setting such that we can't race
688 * against cgroup_exit() changing the css_set to
689 * init_css_set and dropping the old one.
690 */
691 WARN_ON_ONCE(task->flags & PF_EXITING);
692
693 if (!css_set_populated(to_cset))
694 css_set_update_populated(to_cset, true);
695 rcu_assign_pointer(task->cgroups, to_cset);
696 list_add_tail(&task->cg_list, use_mg_tasks ? &to_cset->mg_tasks :
697 &to_cset->tasks);
698 }
699}
700
Paul Menage7717f7b2009-09-23 15:56:22 -0700701/*
702 * hash table for cgroup groups. This improves the performance to find
703 * an existing css_set. This hash doesn't (currently) take into
704 * account cgroups in empty hierarchies.
705 */
Li Zefan472b1052008-04-29 01:00:11 -0700706#define CSS_SET_HASH_BITS 7
Li Zefan0ac801f2013-01-10 11:49:27 +0800707static DEFINE_HASHTABLE(css_set_table, CSS_SET_HASH_BITS);
Li Zefan472b1052008-04-29 01:00:11 -0700708
Li Zefan0ac801f2013-01-10 11:49:27 +0800709static unsigned long css_set_hash(struct cgroup_subsys_state *css[])
Li Zefan472b1052008-04-29 01:00:11 -0700710{
Li Zefan0ac801f2013-01-10 11:49:27 +0800711 unsigned long key = 0UL;
Tejun Heo30159ec2013-06-25 11:53:37 -0700712 struct cgroup_subsys *ss;
713 int i;
Li Zefan472b1052008-04-29 01:00:11 -0700714
Tejun Heo30159ec2013-06-25 11:53:37 -0700715 for_each_subsys(ss, i)
Li Zefan0ac801f2013-01-10 11:49:27 +0800716 key += (unsigned long)css[i];
717 key = (key >> 16) ^ key;
Li Zefan472b1052008-04-29 01:00:11 -0700718
Li Zefan0ac801f2013-01-10 11:49:27 +0800719 return key;
Li Zefan472b1052008-04-29 01:00:11 -0700720}
721
Zefan Lia25eb522014-09-19 16:51:00 +0800722static void put_css_set_locked(struct css_set *cset)
Paul Menageb4f48b62007-10-18 23:39:33 -0700723{
Tejun Heo69d02062013-06-12 21:04:50 -0700724 struct cgrp_cset_link *link, *tmp_link;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400725 struct cgroup_subsys *ss;
726 int ssid;
Tejun Heo5abb8852013-06-12 21:04:49 -0700727
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400728 lockdep_assert_held(&css_set_lock);
Tejun Heo89c55092014-02-13 06:58:40 -0500729
730 if (!atomic_dec_and_test(&cset->refcount))
Lai Jiangshan146aa1b2008-10-18 20:28:03 -0700731 return;
Paul Menage81a6a5c2007-10-18 23:39:38 -0700732
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700733 /* This css_set is dead. unlink it and release cgroup refcounts */
Tejun Heo2d8f2432014-04-23 11:13:15 -0400734 for_each_subsys(ss, ssid)
735 list_del(&cset->e_cset_node[ssid]);
Tejun Heo5abb8852013-06-12 21:04:49 -0700736 hash_del(&cset->hlist);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700737 css_set_count--;
738
Tejun Heo69d02062013-06-12 21:04:50 -0700739 list_for_each_entry_safe(link, tmp_link, &cset->cgrp_links, cgrp_link) {
Tejun Heo69d02062013-06-12 21:04:50 -0700740 list_del(&link->cset_link);
741 list_del(&link->cgrp_link);
Tejun Heo2ceb2312015-10-15 16:41:51 -0400742 if (cgroup_parent(link->cgrp))
743 cgroup_put(link->cgrp);
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700744 kfree(link);
Paul Menage81a6a5c2007-10-18 23:39:38 -0700745 }
Paul Menage2c6ab6d2009-09-23 15:56:23 -0700746
Tejun Heo5abb8852013-06-12 21:04:49 -0700747 kfree_rcu(cset, rcu_head);
Paul Menage817929e2007-10-18 23:39:36 -0700748}
749
Zefan Lia25eb522014-09-19 16:51:00 +0800750static void put_css_set(struct css_set *cset)
Tejun Heo89c55092014-02-13 06:58:40 -0500751{
752 /*
753 * Ensure that the refcount doesn't hit zero while any readers
754 * can see it. Similar to atomic_dec_and_lock(), but for an
755 * rwlock
756 */
757 if (atomic_add_unless(&cset->refcount, -1, 1))
758 return;
759
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400760 spin_lock_bh(&css_set_lock);
Zefan Lia25eb522014-09-19 16:51:00 +0800761 put_css_set_locked(cset);
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400762 spin_unlock_bh(&css_set_lock);
Tejun Heo89c55092014-02-13 06:58:40 -0500763}
764
Paul Menage817929e2007-10-18 23:39:36 -0700765/*
766 * refcounted get/put for css_set objects
767 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700768static inline void get_css_set(struct css_set *cset)
Paul Menage817929e2007-10-18 23:39:36 -0700769{
Tejun Heo5abb8852013-06-12 21:04:49 -0700770 atomic_inc(&cset->refcount);
Paul Menage817929e2007-10-18 23:39:36 -0700771}
772
Tejun Heob326f9d2013-06-24 15:21:48 -0700773/**
Paul Menage7717f7b2009-09-23 15:56:22 -0700774 * compare_css_sets - helper function for find_existing_css_set().
Tejun Heo5abb8852013-06-12 21:04:49 -0700775 * @cset: candidate css_set being tested
776 * @old_cset: existing css_set for a task
Paul Menage7717f7b2009-09-23 15:56:22 -0700777 * @new_cgrp: cgroup that's being entered by the task
778 * @template: desired set of css pointers in css_set (pre-calculated)
779 *
Li Zefan6f4b7e62013-07-31 16:18:36 +0800780 * Returns true if "cset" matches "old_cset" except for the hierarchy
Paul Menage7717f7b2009-09-23 15:56:22 -0700781 * which "new_cgrp" belongs to, for which it should match "new_cgrp".
782 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700783static bool compare_css_sets(struct css_set *cset,
784 struct css_set *old_cset,
Paul Menage7717f7b2009-09-23 15:56:22 -0700785 struct cgroup *new_cgrp,
786 struct cgroup_subsys_state *template[])
787{
788 struct list_head *l1, *l2;
789
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400790 /*
791 * On the default hierarchy, there can be csets which are
792 * associated with the same set of cgroups but different csses.
793 * Let's first ensure that csses match.
794 */
795 if (memcmp(template, cset->subsys, sizeof(cset->subsys)))
Paul Menage7717f7b2009-09-23 15:56:22 -0700796 return false;
Paul Menage7717f7b2009-09-23 15:56:22 -0700797
798 /*
799 * Compare cgroup pointers in order to distinguish between
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400800 * different cgroups in hierarchies. As different cgroups may
801 * share the same effective css, this comparison is always
802 * necessary.
Paul Menage7717f7b2009-09-23 15:56:22 -0700803 */
Tejun Heo69d02062013-06-12 21:04:50 -0700804 l1 = &cset->cgrp_links;
805 l2 = &old_cset->cgrp_links;
Paul Menage7717f7b2009-09-23 15:56:22 -0700806 while (1) {
Tejun Heo69d02062013-06-12 21:04:50 -0700807 struct cgrp_cset_link *link1, *link2;
Tejun Heo5abb8852013-06-12 21:04:49 -0700808 struct cgroup *cgrp1, *cgrp2;
Paul Menage7717f7b2009-09-23 15:56:22 -0700809
810 l1 = l1->next;
811 l2 = l2->next;
812 /* See if we reached the end - both lists are equal length. */
Tejun Heo69d02062013-06-12 21:04:50 -0700813 if (l1 == &cset->cgrp_links) {
814 BUG_ON(l2 != &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700815 break;
816 } else {
Tejun Heo69d02062013-06-12 21:04:50 -0700817 BUG_ON(l2 == &old_cset->cgrp_links);
Paul Menage7717f7b2009-09-23 15:56:22 -0700818 }
819 /* Locate the cgroups associated with these links. */
Tejun Heo69d02062013-06-12 21:04:50 -0700820 link1 = list_entry(l1, struct cgrp_cset_link, cgrp_link);
821 link2 = list_entry(l2, struct cgrp_cset_link, cgrp_link);
822 cgrp1 = link1->cgrp;
823 cgrp2 = link2->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -0700824 /* Hierarchies should be linked in the same order. */
Tejun Heo5abb8852013-06-12 21:04:49 -0700825 BUG_ON(cgrp1->root != cgrp2->root);
Paul Menage7717f7b2009-09-23 15:56:22 -0700826
827 /*
828 * If this hierarchy is the hierarchy of the cgroup
829 * that's changing, then we need to check that this
830 * css_set points to the new cgroup; if it's any other
831 * hierarchy, then this css_set should point to the
832 * same cgroup as the old css_set.
833 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700834 if (cgrp1->root == new_cgrp->root) {
835 if (cgrp1 != new_cgrp)
Paul Menage7717f7b2009-09-23 15:56:22 -0700836 return false;
837 } else {
Tejun Heo5abb8852013-06-12 21:04:49 -0700838 if (cgrp1 != cgrp2)
Paul Menage7717f7b2009-09-23 15:56:22 -0700839 return false;
840 }
841 }
842 return true;
843}
844
Tejun Heob326f9d2013-06-24 15:21:48 -0700845/**
846 * find_existing_css_set - init css array and find the matching css_set
847 * @old_cset: the css_set that we're using before the cgroup transition
848 * @cgrp: the cgroup that we're moving into
849 * @template: out param for the new set of csses, should be clear on entry
Paul Menage817929e2007-10-18 23:39:36 -0700850 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700851static struct css_set *find_existing_css_set(struct css_set *old_cset,
852 struct cgroup *cgrp,
853 struct cgroup_subsys_state *template[])
Paul Menage817929e2007-10-18 23:39:36 -0700854{
Tejun Heo3dd06ff2014-03-19 10:23:54 -0400855 struct cgroup_root *root = cgrp->root;
Tejun Heo30159ec2013-06-25 11:53:37 -0700856 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -0700857 struct css_set *cset;
Li Zefan0ac801f2013-01-10 11:49:27 +0800858 unsigned long key;
Tejun Heob326f9d2013-06-24 15:21:48 -0700859 int i;
Paul Menage817929e2007-10-18 23:39:36 -0700860
Ben Blumaae8aab2010-03-10 15:22:07 -0800861 /*
862 * Build the set of subsystem state objects that we want to see in the
863 * new css_set. while subsystems can change globally, the entries here
864 * won't change, so no need for locking.
865 */
Tejun Heo30159ec2013-06-25 11:53:37 -0700866 for_each_subsys(ss, i) {
Tejun Heof392e512014-04-23 11:13:14 -0400867 if (root->subsys_mask & (1UL << i)) {
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400868 /*
869 * @ss is in this hierarchy, so we want the
870 * effective css from @cgrp.
871 */
872 template[i] = cgroup_e_css(cgrp, ss);
Paul Menage817929e2007-10-18 23:39:36 -0700873 } else {
Tejun Heoaec3dfc2014-04-23 11:13:14 -0400874 /*
875 * @ss is not in this hierarchy, so we don't want
876 * to change the css.
877 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700878 template[i] = old_cset->subsys[i];
Paul Menage817929e2007-10-18 23:39:36 -0700879 }
880 }
881
Li Zefan0ac801f2013-01-10 11:49:27 +0800882 key = css_set_hash(template);
Tejun Heo5abb8852013-06-12 21:04:49 -0700883 hash_for_each_possible(css_set_table, cset, hlist, key) {
884 if (!compare_css_sets(cset, old_cset, cgrp, template))
Paul Menage7717f7b2009-09-23 15:56:22 -0700885 continue;
886
887 /* This css_set matches what we need */
Tejun Heo5abb8852013-06-12 21:04:49 -0700888 return cset;
Li Zefan472b1052008-04-29 01:00:11 -0700889 }
Paul Menage817929e2007-10-18 23:39:36 -0700890
891 /* No existing cgroup group matched */
892 return NULL;
893}
894
Tejun Heo69d02062013-06-12 21:04:50 -0700895static void free_cgrp_cset_links(struct list_head *links_to_free)
Paul Menage817929e2007-10-18 23:39:36 -0700896{
Tejun Heo69d02062013-06-12 21:04:50 -0700897 struct cgrp_cset_link *link, *tmp_link;
KOSAKI Motohiro71cbb942008-07-25 01:46:55 -0700898
Tejun Heo69d02062013-06-12 21:04:50 -0700899 list_for_each_entry_safe(link, tmp_link, links_to_free, cset_link) {
900 list_del(&link->cset_link);
Paul Menage817929e2007-10-18 23:39:36 -0700901 kfree(link);
902 }
903}
904
Tejun Heo69d02062013-06-12 21:04:50 -0700905/**
906 * allocate_cgrp_cset_links - allocate cgrp_cset_links
907 * @count: the number of links to allocate
908 * @tmp_links: list_head the allocated links are put on
909 *
910 * Allocate @count cgrp_cset_link structures and chain them on @tmp_links
911 * through ->cset_link. Returns 0 on success or -errno.
Li Zefan36553432008-07-29 22:33:19 -0700912 */
Tejun Heo69d02062013-06-12 21:04:50 -0700913static int allocate_cgrp_cset_links(int count, struct list_head *tmp_links)
Li Zefan36553432008-07-29 22:33:19 -0700914{
Tejun Heo69d02062013-06-12 21:04:50 -0700915 struct cgrp_cset_link *link;
Li Zefan36553432008-07-29 22:33:19 -0700916 int i;
Tejun Heo69d02062013-06-12 21:04:50 -0700917
918 INIT_LIST_HEAD(tmp_links);
919
Li Zefan36553432008-07-29 22:33:19 -0700920 for (i = 0; i < count; i++) {
Tejun Heof4f4be22013-06-12 21:04:51 -0700921 link = kzalloc(sizeof(*link), GFP_KERNEL);
Li Zefan36553432008-07-29 22:33:19 -0700922 if (!link) {
Tejun Heo69d02062013-06-12 21:04:50 -0700923 free_cgrp_cset_links(tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700924 return -ENOMEM;
925 }
Tejun Heo69d02062013-06-12 21:04:50 -0700926 list_add(&link->cset_link, tmp_links);
Li Zefan36553432008-07-29 22:33:19 -0700927 }
928 return 0;
929}
930
Li Zefanc12f65d2009-01-07 18:07:42 -0800931/**
932 * link_css_set - a helper function to link a css_set to a cgroup
Tejun Heo69d02062013-06-12 21:04:50 -0700933 * @tmp_links: cgrp_cset_link objects allocated by allocate_cgrp_cset_links()
Tejun Heo5abb8852013-06-12 21:04:49 -0700934 * @cset: the css_set to be linked
Li Zefanc12f65d2009-01-07 18:07:42 -0800935 * @cgrp: the destination cgroup
936 */
Tejun Heo69d02062013-06-12 21:04:50 -0700937static void link_css_set(struct list_head *tmp_links, struct css_set *cset,
938 struct cgroup *cgrp)
Li Zefanc12f65d2009-01-07 18:07:42 -0800939{
Tejun Heo69d02062013-06-12 21:04:50 -0700940 struct cgrp_cset_link *link;
Li Zefanc12f65d2009-01-07 18:07:42 -0800941
Tejun Heo69d02062013-06-12 21:04:50 -0700942 BUG_ON(list_empty(tmp_links));
Tejun Heo6803c002014-04-23 11:13:16 -0400943
944 if (cgroup_on_dfl(cgrp))
945 cset->dfl_cgrp = cgrp;
946
Tejun Heo69d02062013-06-12 21:04:50 -0700947 link = list_first_entry(tmp_links, struct cgrp_cset_link, cset_link);
948 link->cset = cset;
Paul Menage7717f7b2009-09-23 15:56:22 -0700949 link->cgrp = cgrp;
Tejun Heo842b5972014-04-25 18:28:02 -0400950
Paul Menage7717f7b2009-09-23 15:56:22 -0700951 /*
Tejun Heo389b9c12015-10-15 16:41:51 -0400952 * Always add links to the tail of the lists so that the lists are
953 * in choronological order.
Paul Menage7717f7b2009-09-23 15:56:22 -0700954 */
Tejun Heo389b9c12015-10-15 16:41:51 -0400955 list_move_tail(&link->cset_link, &cgrp->cset_links);
Tejun Heo69d02062013-06-12 21:04:50 -0700956 list_add_tail(&link->cgrp_link, &cset->cgrp_links);
Tejun Heo2ceb2312015-10-15 16:41:51 -0400957
958 if (cgroup_parent(cgrp))
959 cgroup_get(cgrp);
Li Zefanc12f65d2009-01-07 18:07:42 -0800960}
961
Tejun Heob326f9d2013-06-24 15:21:48 -0700962/**
963 * find_css_set - return a new css_set with one cgroup updated
964 * @old_cset: the baseline css_set
965 * @cgrp: the cgroup to be updated
966 *
967 * Return a new css_set that's equivalent to @old_cset, but with @cgrp
968 * substituted into the appropriate hierarchy.
Paul Menage817929e2007-10-18 23:39:36 -0700969 */
Tejun Heo5abb8852013-06-12 21:04:49 -0700970static struct css_set *find_css_set(struct css_set *old_cset,
971 struct cgroup *cgrp)
Paul Menage817929e2007-10-18 23:39:36 -0700972{
Tejun Heob326f9d2013-06-24 15:21:48 -0700973 struct cgroup_subsys_state *template[CGROUP_SUBSYS_COUNT] = { };
Tejun Heo5abb8852013-06-12 21:04:49 -0700974 struct css_set *cset;
Tejun Heo69d02062013-06-12 21:04:50 -0700975 struct list_head tmp_links;
976 struct cgrp_cset_link *link;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400977 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +0800978 unsigned long key;
Tejun Heo2d8f2432014-04-23 11:13:15 -0400979 int ssid;
Li Zefan472b1052008-04-29 01:00:11 -0700980
Tejun Heob326f9d2013-06-24 15:21:48 -0700981 lockdep_assert_held(&cgroup_mutex);
982
Paul Menage817929e2007-10-18 23:39:36 -0700983 /* First see if we already have a cgroup group that matches
984 * the desired set */
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400985 spin_lock_bh(&css_set_lock);
Tejun Heo5abb8852013-06-12 21:04:49 -0700986 cset = find_existing_css_set(old_cset, cgrp, template);
987 if (cset)
988 get_css_set(cset);
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400989 spin_unlock_bh(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -0700990
Tejun Heo5abb8852013-06-12 21:04:49 -0700991 if (cset)
992 return cset;
Paul Menage817929e2007-10-18 23:39:36 -0700993
Tejun Heof4f4be22013-06-12 21:04:51 -0700994 cset = kzalloc(sizeof(*cset), GFP_KERNEL);
Tejun Heo5abb8852013-06-12 21:04:49 -0700995 if (!cset)
Paul Menage817929e2007-10-18 23:39:36 -0700996 return NULL;
997
Tejun Heo69d02062013-06-12 21:04:50 -0700998 /* Allocate all the cgrp_cset_link objects that we'll need */
Tejun Heo9871bf92013-06-24 15:21:47 -0700999 if (allocate_cgrp_cset_links(cgroup_root_count, &tmp_links) < 0) {
Tejun Heo5abb8852013-06-12 21:04:49 -07001000 kfree(cset);
Paul Menage817929e2007-10-18 23:39:36 -07001001 return NULL;
1002 }
1003
Tejun Heo5abb8852013-06-12 21:04:49 -07001004 atomic_set(&cset->refcount, 1);
Tejun Heo69d02062013-06-12 21:04:50 -07001005 INIT_LIST_HEAD(&cset->cgrp_links);
Tejun Heo5abb8852013-06-12 21:04:49 -07001006 INIT_LIST_HEAD(&cset->tasks);
Tejun Heoc7561122014-02-25 10:04:01 -05001007 INIT_LIST_HEAD(&cset->mg_tasks);
Tejun Heo1958d2d2014-02-25 10:04:03 -05001008 INIT_LIST_HEAD(&cset->mg_preload_node);
Tejun Heob3dc0942014-02-25 10:04:01 -05001009 INIT_LIST_HEAD(&cset->mg_node);
Tejun Heoed27b9f2015-10-15 16:41:52 -04001010 INIT_LIST_HEAD(&cset->task_iters);
Tejun Heo5abb8852013-06-12 21:04:49 -07001011 INIT_HLIST_NODE(&cset->hlist);
Paul Menage817929e2007-10-18 23:39:36 -07001012
1013 /* Copy the set of subsystem state objects generated in
1014 * find_existing_css_set() */
Tejun Heo5abb8852013-06-12 21:04:49 -07001015 memcpy(cset->subsys, template, sizeof(cset->subsys));
Paul Menage817929e2007-10-18 23:39:36 -07001016
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001017 spin_lock_bh(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -07001018 /* Add reference counts and links from the new css_set. */
Tejun Heo69d02062013-06-12 21:04:50 -07001019 list_for_each_entry(link, &old_cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07001020 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -07001021
Paul Menage7717f7b2009-09-23 15:56:22 -07001022 if (c->root == cgrp->root)
1023 c = cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -07001024 link_css_set(&tmp_links, cset, c);
Paul Menage7717f7b2009-09-23 15:56:22 -07001025 }
Paul Menage817929e2007-10-18 23:39:36 -07001026
Tejun Heo69d02062013-06-12 21:04:50 -07001027 BUG_ON(!list_empty(&tmp_links));
Paul Menage817929e2007-10-18 23:39:36 -07001028
Paul Menage817929e2007-10-18 23:39:36 -07001029 css_set_count++;
Li Zefan472b1052008-04-29 01:00:11 -07001030
Tejun Heo2d8f2432014-04-23 11:13:15 -04001031 /* Add @cset to the hash table */
Tejun Heo5abb8852013-06-12 21:04:49 -07001032 key = css_set_hash(cset->subsys);
1033 hash_add(css_set_table, &cset->hlist, key);
Li Zefan472b1052008-04-29 01:00:11 -07001034
Tejun Heo2d8f2432014-04-23 11:13:15 -04001035 for_each_subsys(ss, ssid)
1036 list_add_tail(&cset->e_cset_node[ssid],
1037 &cset->subsys[ssid]->cgroup->e_csets[ssid]);
1038
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001039 spin_unlock_bh(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -07001040
Tejun Heo5abb8852013-06-12 21:04:49 -07001041 return cset;
Paul Menageb4f48b62007-10-18 23:39:33 -07001042}
1043
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001044static struct cgroup_root *cgroup_root_from_kf(struct kernfs_root *kf_root)
Paul Menage7717f7b2009-09-23 15:56:22 -07001045{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001046 struct cgroup *root_cgrp = kf_root->kn->priv;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001047
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001048 return root_cgrp->root;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001049}
1050
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001051static int cgroup_init_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -05001052{
1053 int id;
1054
1055 lockdep_assert_held(&cgroup_mutex);
1056
Tejun Heo985ed672014-03-19 10:23:53 -04001057 id = idr_alloc_cyclic(&cgroup_hierarchy_idr, root, 0, 0, GFP_KERNEL);
Tejun Heof2e85d52014-02-11 11:52:49 -05001058 if (id < 0)
1059 return id;
1060
1061 root->hierarchy_id = id;
1062 return 0;
1063}
1064
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001065static void cgroup_exit_root_id(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -05001066{
1067 lockdep_assert_held(&cgroup_mutex);
1068
1069 if (root->hierarchy_id) {
1070 idr_remove(&cgroup_hierarchy_idr, root->hierarchy_id);
1071 root->hierarchy_id = 0;
1072 }
1073}
1074
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001075static void cgroup_free_root(struct cgroup_root *root)
Tejun Heof2e85d52014-02-11 11:52:49 -05001076{
1077 if (root) {
Chen Hanxiaod0f702e2015-04-23 07:57:33 -04001078 /* hierarchy ID should already have been released */
Tejun Heof2e85d52014-02-11 11:52:49 -05001079 WARN_ON_ONCE(root->hierarchy_id);
1080
1081 idr_destroy(&root->cgroup_idr);
1082 kfree(root);
1083 }
1084}
1085
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001086static void cgroup_destroy_root(struct cgroup_root *root)
Tejun Heo59f52962014-02-11 11:52:49 -05001087{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001088 struct cgroup *cgrp = &root->cgrp;
Tejun Heof2e85d52014-02-11 11:52:49 -05001089 struct cgrp_cset_link *link, *tmp_link;
Tejun Heof2e85d52014-02-11 11:52:49 -05001090
Tejun Heo2bd59d42014-02-11 11:52:49 -05001091 mutex_lock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -05001092
Tejun Heo776f02f2014-02-12 09:29:50 -05001093 BUG_ON(atomic_read(&root->nr_cgrps));
Tejun Heod5c419b2014-05-16 13:22:48 -04001094 BUG_ON(!list_empty(&cgrp->self.children));
Tejun Heof2e85d52014-02-11 11:52:49 -05001095
Tejun Heof2e85d52014-02-11 11:52:49 -05001096 /* Rebind all subsystems back to the default hierarchy */
Tejun Heof392e512014-04-23 11:13:14 -04001097 rebind_subsystems(&cgrp_dfl_root, root->subsys_mask);
Tejun Heof2e85d52014-02-11 11:52:49 -05001098
1099 /*
1100 * Release all the links from cset_links to this hierarchy's
1101 * root cgroup
1102 */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001103 spin_lock_bh(&css_set_lock);
Tejun Heof2e85d52014-02-11 11:52:49 -05001104
1105 list_for_each_entry_safe(link, tmp_link, &cgrp->cset_links, cset_link) {
1106 list_del(&link->cset_link);
1107 list_del(&link->cgrp_link);
1108 kfree(link);
1109 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001110
1111 spin_unlock_bh(&css_set_lock);
Tejun Heof2e85d52014-02-11 11:52:49 -05001112
1113 if (!list_empty(&root->root_list)) {
1114 list_del(&root->root_list);
1115 cgroup_root_count--;
1116 }
1117
1118 cgroup_exit_root_id(root);
1119
1120 mutex_unlock(&cgroup_mutex);
Tejun Heof2e85d52014-02-11 11:52:49 -05001121
Tejun Heo2bd59d42014-02-11 11:52:49 -05001122 kernfs_destroy_root(root->kf_root);
Tejun Heof2e85d52014-02-11 11:52:49 -05001123 cgroup_free_root(root);
1124}
1125
Tejun Heoceb6a082014-02-25 10:04:02 -05001126/* look up cgroup associated with given css_set on the specified hierarchy */
1127static struct cgroup *cset_cgroup_from_root(struct css_set *cset,
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001128 struct cgroup_root *root)
Paul Menage7717f7b2009-09-23 15:56:22 -07001129{
Paul Menage7717f7b2009-09-23 15:56:22 -07001130 struct cgroup *res = NULL;
1131
Tejun Heo96d365e2014-02-13 06:58:40 -05001132 lockdep_assert_held(&cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001133 lockdep_assert_held(&css_set_lock);
Tejun Heo96d365e2014-02-13 06:58:40 -05001134
Tejun Heo5abb8852013-06-12 21:04:49 -07001135 if (cset == &init_css_set) {
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001136 res = &root->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -07001137 } else {
Tejun Heo69d02062013-06-12 21:04:50 -07001138 struct cgrp_cset_link *link;
1139
1140 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07001141 struct cgroup *c = link->cgrp;
Tejun Heo69d02062013-06-12 21:04:50 -07001142
Paul Menage7717f7b2009-09-23 15:56:22 -07001143 if (c->root == root) {
1144 res = c;
1145 break;
1146 }
1147 }
1148 }
Tejun Heo96d365e2014-02-13 06:58:40 -05001149
Paul Menage7717f7b2009-09-23 15:56:22 -07001150 BUG_ON(!res);
1151 return res;
1152}
1153
1154/*
Tejun Heoceb6a082014-02-25 10:04:02 -05001155 * Return the cgroup for "task" from the given hierarchy. Must be
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001156 * called with cgroup_mutex and css_set_lock held.
Tejun Heoceb6a082014-02-25 10:04:02 -05001157 */
1158static struct cgroup *task_cgroup_from_root(struct task_struct *task,
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001159 struct cgroup_root *root)
Tejun Heoceb6a082014-02-25 10:04:02 -05001160{
1161 /*
1162 * No need to lock the task - since we hold cgroup_mutex the
1163 * task can't change groups, so the only thing that can happen
1164 * is that it exits and its css is set back to init_css_set.
1165 */
1166 return cset_cgroup_from_root(task_css_set(task), root);
1167}
1168
1169/*
Paul Menageddbcc7e2007-10-18 23:39:30 -07001170 * A task must hold cgroup_mutex to modify cgroups.
1171 *
1172 * Any task can increment and decrement the count field without lock.
1173 * So in general, code holding cgroup_mutex can't rely on the count
1174 * field not changing. However, if the count goes to zero, then only
Cliff Wickman956db3c2008-02-07 00:14:43 -08001175 * cgroup_attach_task() can increment it again. Because a count of zero
Paul Menageddbcc7e2007-10-18 23:39:30 -07001176 * means that no tasks are currently attached, therefore there is no
1177 * way a task attached to that cgroup can fork (the other way to
1178 * increment the count). So code holding cgroup_mutex can safely
1179 * assume that if the count is zero, it will stay zero. Similarly, if
1180 * a task holds cgroup_mutex on a cgroup with zero count, it
1181 * knows that the cgroup won't be removed, as cgroup_rmdir()
1182 * needs that mutex.
1183 *
Paul Menageddbcc7e2007-10-18 23:39:30 -07001184 * A cgroup can only be deleted if both its 'count' of using tasks
1185 * is zero, and its list of 'children' cgroups is empty. Since all
1186 * tasks in the system use _some_ cgroup, and since there is always at
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001187 * least one task in the system (init, pid == 1), therefore, root cgroup
Paul Menageddbcc7e2007-10-18 23:39:30 -07001188 * always has either children cgroups and/or using tasks. So we don't
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001189 * need a special hack to ensure that root cgroup cannot be deleted.
Paul Menageddbcc7e2007-10-18 23:39:30 -07001190 *
1191 * P.S. One more locking exception. RCU is used to guard the
Cliff Wickman956db3c2008-02-07 00:14:43 -08001192 * update of a tasks cgroup pointer by cgroup_attach_task()
Paul Menageddbcc7e2007-10-18 23:39:30 -07001193 */
1194
Tejun Heo2bd59d42014-02-11 11:52:49 -05001195static struct kernfs_syscall_ops cgroup_kf_syscall_ops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001196static const struct file_operations proc_cgroupstats_operations;
Paul Menagea4243162007-10-18 23:39:35 -07001197
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05001198static char *cgroup_file_name(struct cgroup *cgrp, const struct cftype *cft,
1199 char *buf)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001200{
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07001201 struct cgroup_subsys *ss = cft->ss;
1202
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05001203 if (cft->ss && !(cft->flags & CFTYPE_NO_PREFIX) &&
1204 !(cgrp->root->flags & CGRP_ROOT_NOPREFIX))
1205 snprintf(buf, CGROUP_FILE_NAME_MAX, "%s.%s",
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07001206 cgroup_on_dfl(cgrp) ? ss->name : ss->legacy_name,
1207 cft->name);
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05001208 else
1209 strncpy(buf, cft->name, CGROUP_FILE_NAME_MAX);
1210 return buf;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001211}
1212
Tejun Heof2e85d52014-02-11 11:52:49 -05001213/**
1214 * cgroup_file_mode - deduce file mode of a control file
1215 * @cft: the control file in question
1216 *
Tejun Heo7dbdb192015-09-18 17:54:23 -04001217 * S_IRUGO for read, S_IWUSR for write.
Tejun Heof2e85d52014-02-11 11:52:49 -05001218 */
1219static umode_t cgroup_file_mode(const struct cftype *cft)
Li Zefan65dff752013-03-01 15:01:56 +08001220{
Tejun Heof2e85d52014-02-11 11:52:49 -05001221 umode_t mode = 0;
Li Zefan65dff752013-03-01 15:01:56 +08001222
Tejun Heof2e85d52014-02-11 11:52:49 -05001223 if (cft->read_u64 || cft->read_s64 || cft->seq_show)
1224 mode |= S_IRUGO;
1225
Tejun Heo7dbdb192015-09-18 17:54:23 -04001226 if (cft->write_u64 || cft->write_s64 || cft->write) {
1227 if (cft->flags & CFTYPE_WORLD_WRITABLE)
1228 mode |= S_IWUGO;
1229 else
1230 mode |= S_IWUSR;
1231 }
Tejun Heof2e85d52014-02-11 11:52:49 -05001232
1233 return mode;
Li Zefan65dff752013-03-01 15:01:56 +08001234}
1235
Tejun Heoa9746d82014-05-13 12:19:22 -04001236/**
Tejun Heo0f060de2014-11-18 02:49:50 -05001237 * cgroup_calc_child_subsys_mask - calculate child_subsys_mask
Tejun Heoaf0ba672014-07-08 18:02:57 -04001238 * @cgrp: the target cgroup
Tejun Heo0f060de2014-11-18 02:49:50 -05001239 * @subtree_control: the new subtree_control mask to consider
Tejun Heoaf0ba672014-07-08 18:02:57 -04001240 *
1241 * On the default hierarchy, a subsystem may request other subsystems to be
1242 * enabled together through its ->depends_on mask. In such cases, more
1243 * subsystems than specified in "cgroup.subtree_control" may be enabled.
1244 *
Tejun Heo0f060de2014-11-18 02:49:50 -05001245 * This function calculates which subsystems need to be enabled if
1246 * @subtree_control is to be applied to @cgrp. The returned mask is always
1247 * a superset of @subtree_control and follows the usual hierarchy rules.
Tejun Heoaf0ba672014-07-08 18:02:57 -04001248 */
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001249static unsigned long cgroup_calc_child_subsys_mask(struct cgroup *cgrp,
1250 unsigned long subtree_control)
Tejun Heo667c2492014-07-08 18:02:56 -04001251{
Tejun Heoaf0ba672014-07-08 18:02:57 -04001252 struct cgroup *parent = cgroup_parent(cgrp);
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001253 unsigned long cur_ss_mask = subtree_control;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001254 struct cgroup_subsys *ss;
1255 int ssid;
1256
1257 lockdep_assert_held(&cgroup_mutex);
1258
Tejun Heo0f060de2014-11-18 02:49:50 -05001259 if (!cgroup_on_dfl(cgrp))
1260 return cur_ss_mask;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001261
1262 while (true) {
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001263 unsigned long new_ss_mask = cur_ss_mask;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001264
Aleksa Saraia966a4e2015-06-06 10:02:15 +10001265 for_each_subsys_which(ss, ssid, &cur_ss_mask)
1266 new_ss_mask |= ss->depends_on;
Tejun Heoaf0ba672014-07-08 18:02:57 -04001267
1268 /*
1269 * Mask out subsystems which aren't available. This can
1270 * happen only if some depended-upon subsystems were bound
1271 * to non-default hierarchies.
1272 */
1273 if (parent)
1274 new_ss_mask &= parent->child_subsys_mask;
1275 else
1276 new_ss_mask &= cgrp->root->subsys_mask;
1277
1278 if (new_ss_mask == cur_ss_mask)
1279 break;
1280 cur_ss_mask = new_ss_mask;
1281 }
1282
Tejun Heo0f060de2014-11-18 02:49:50 -05001283 return cur_ss_mask;
1284}
1285
1286/**
1287 * cgroup_refresh_child_subsys_mask - update child_subsys_mask
1288 * @cgrp: the target cgroup
1289 *
1290 * Update @cgrp->child_subsys_mask according to the current
1291 * @cgrp->subtree_control using cgroup_calc_child_subsys_mask().
1292 */
1293static void cgroup_refresh_child_subsys_mask(struct cgroup *cgrp)
1294{
1295 cgrp->child_subsys_mask =
1296 cgroup_calc_child_subsys_mask(cgrp, cgrp->subtree_control);
Tejun Heo667c2492014-07-08 18:02:56 -04001297}
1298
Tejun Heoa9746d82014-05-13 12:19:22 -04001299/**
1300 * cgroup_kn_unlock - unlocking helper for cgroup kernfs methods
1301 * @kn: the kernfs_node being serviced
1302 *
1303 * This helper undoes cgroup_kn_lock_live() and should be invoked before
1304 * the method finishes if locking succeeded. Note that once this function
1305 * returns the cgroup returned by cgroup_kn_lock_live() may become
1306 * inaccessible any time. If the caller intends to continue to access the
1307 * cgroup, it should pin it before invoking this function.
1308 */
1309static void cgroup_kn_unlock(struct kernfs_node *kn)
1310{
1311 struct cgroup *cgrp;
1312
1313 if (kernfs_type(kn) == KERNFS_DIR)
1314 cgrp = kn->priv;
1315 else
1316 cgrp = kn->parent->priv;
1317
1318 mutex_unlock(&cgroup_mutex);
Tejun Heoa9746d82014-05-13 12:19:22 -04001319
1320 kernfs_unbreak_active_protection(kn);
1321 cgroup_put(cgrp);
1322}
1323
1324/**
1325 * cgroup_kn_lock_live - locking helper for cgroup kernfs methods
1326 * @kn: the kernfs_node being serviced
1327 *
1328 * This helper is to be used by a cgroup kernfs method currently servicing
1329 * @kn. It breaks the active protection, performs cgroup locking and
1330 * verifies that the associated cgroup is alive. Returns the cgroup if
1331 * alive; otherwise, %NULL. A successful return should be undone by a
1332 * matching cgroup_kn_unlock() invocation.
1333 *
1334 * Any cgroup kernfs method implementation which requires locking the
1335 * associated cgroup should use this helper. It avoids nesting cgroup
1336 * locking under kernfs active protection and allows all kernfs operations
1337 * including self-removal.
1338 */
1339static struct cgroup *cgroup_kn_lock_live(struct kernfs_node *kn)
1340{
1341 struct cgroup *cgrp;
1342
1343 if (kernfs_type(kn) == KERNFS_DIR)
1344 cgrp = kn->priv;
1345 else
1346 cgrp = kn->parent->priv;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001347
Tejun Heo2bd59d42014-02-11 11:52:49 -05001348 /*
Tejun Heo01f64742014-05-13 12:19:23 -04001349 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoa9746d82014-05-13 12:19:22 -04001350 * active_ref. cgroup liveliness check alone provides enough
1351 * protection against removal. Ensure @cgrp stays accessible and
1352 * break the active_ref protection.
Tejun Heo2bd59d42014-02-11 11:52:49 -05001353 */
Li Zefanaa323622014-09-04 14:43:38 +08001354 if (!cgroup_tryget(cgrp))
1355 return NULL;
Tejun Heoa9746d82014-05-13 12:19:22 -04001356 kernfs_break_active_protection(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001357
Tejun Heoa9746d82014-05-13 12:19:22 -04001358 mutex_lock(&cgroup_mutex);
1359
1360 if (!cgroup_is_dead(cgrp))
1361 return cgrp;
1362
1363 cgroup_kn_unlock(kn);
1364 return NULL;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001365}
1366
Li Zefan2739d3c2013-01-21 18:18:33 +08001367static void cgroup_rm_file(struct cgroup *cgrp, const struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001368{
Tejun Heo2bd59d42014-02-11 11:52:49 -05001369 char name[CGROUP_FILE_NAME_MAX];
Paul Menageddbcc7e2007-10-18 23:39:30 -07001370
Tejun Heo01f64742014-05-13 12:19:23 -04001371 lockdep_assert_held(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001372 kernfs_remove_by_name(cgrp->kn, cgroup_file_name(cgrp, cft, name));
Tejun Heo05ef1d72012-04-01 12:09:56 -07001373}
1374
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001375/**
Tejun Heo4df8dc92015-09-18 17:54:23 -04001376 * css_clear_dir - remove subsys files in a cgroup directory
1377 * @css: taget css
1378 * @cgrp_override: specify if target cgroup is different from css->cgroup
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001379 */
Tejun Heo4df8dc92015-09-18 17:54:23 -04001380static void css_clear_dir(struct cgroup_subsys_state *css,
1381 struct cgroup *cgrp_override)
Tejun Heo05ef1d72012-04-01 12:09:56 -07001382{
Tejun Heo4df8dc92015-09-18 17:54:23 -04001383 struct cgroup *cgrp = cgrp_override ?: css->cgroup;
1384 struct cftype *cfts;
Tejun Heo05ef1d72012-04-01 12:09:56 -07001385
Tejun Heo4df8dc92015-09-18 17:54:23 -04001386 list_for_each_entry(cfts, &css->ss->cfts, node)
1387 cgroup_addrm_files(css, cgrp, cfts, false);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001388}
1389
Tejun Heoccdca212015-09-18 17:54:23 -04001390/**
Tejun Heo4df8dc92015-09-18 17:54:23 -04001391 * css_populate_dir - create subsys files in a cgroup directory
1392 * @css: target css
1393 * @cgrp_overried: specify if target cgroup is different from css->cgroup
Tejun Heoccdca212015-09-18 17:54:23 -04001394 *
1395 * On failure, no file is added.
1396 */
Tejun Heo4df8dc92015-09-18 17:54:23 -04001397static int css_populate_dir(struct cgroup_subsys_state *css,
1398 struct cgroup *cgrp_override)
Tejun Heoccdca212015-09-18 17:54:23 -04001399{
Tejun Heo4df8dc92015-09-18 17:54:23 -04001400 struct cgroup *cgrp = cgrp_override ?: css->cgroup;
1401 struct cftype *cfts, *failed_cfts;
1402 int ret;
Tejun Heoccdca212015-09-18 17:54:23 -04001403
Tejun Heo4df8dc92015-09-18 17:54:23 -04001404 if (!css->ss) {
1405 if (cgroup_on_dfl(cgrp))
1406 cfts = cgroup_dfl_base_files;
1407 else
1408 cfts = cgroup_legacy_base_files;
Tejun Heoccdca212015-09-18 17:54:23 -04001409
Tejun Heo4df8dc92015-09-18 17:54:23 -04001410 return cgroup_addrm_files(&cgrp->self, cgrp, cfts, true);
1411 }
Tejun Heoccdca212015-09-18 17:54:23 -04001412
Tejun Heo4df8dc92015-09-18 17:54:23 -04001413 list_for_each_entry(cfts, &css->ss->cfts, node) {
1414 ret = cgroup_addrm_files(css, cgrp, cfts, true);
1415 if (ret < 0) {
1416 failed_cfts = cfts;
1417 goto err;
Tejun Heoccdca212015-09-18 17:54:23 -04001418 }
1419 }
1420 return 0;
1421err:
Tejun Heo4df8dc92015-09-18 17:54:23 -04001422 list_for_each_entry(cfts, &css->ss->cfts, node) {
1423 if (cfts == failed_cfts)
1424 break;
1425 cgroup_addrm_files(css, cgrp, cfts, false);
1426 }
Tejun Heoccdca212015-09-18 17:54:23 -04001427 return ret;
1428}
1429
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001430static int rebind_subsystems(struct cgroup_root *dst_root,
1431 unsigned long ss_mask)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001432{
Tejun Heo1ada4832015-09-18 17:54:23 -04001433 struct cgroup *dcgrp = &dst_root->cgrp;
Tejun Heo30159ec2013-06-25 11:53:37 -07001434 struct cgroup_subsys *ss;
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001435 unsigned long tmp_ss_mask;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001436 int ssid, i, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001437
Tejun Heoace2bee2014-02-11 11:52:47 -05001438 lockdep_assert_held(&cgroup_mutex);
Ben Blumaae8aab2010-03-10 15:22:07 -08001439
Aleksa Saraia966a4e2015-06-06 10:02:15 +10001440 for_each_subsys_which(ss, ssid, &ss_mask) {
Tejun Heo7fd8c562014-04-23 11:13:16 -04001441 /* if @ss has non-root csses attached to it, can't move */
1442 if (css_next_child(NULL, cgroup_css(&ss->root->cgrp, ss)))
Tejun Heo3ed80a62014-02-08 10:36:58 -05001443 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001444
Tejun Heo5df36032014-03-19 10:23:54 -04001445 /* can't move between two non-dummy roots either */
Tejun Heo7fd8c562014-04-23 11:13:16 -04001446 if (ss->root != &cgrp_dfl_root && dst_root != &cgrp_dfl_root)
Tejun Heo5df36032014-03-19 10:23:54 -04001447 return -EBUSY;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001448 }
1449
Tejun Heo5533e012014-05-14 19:33:07 -04001450 /* skip creating root files on dfl_root for inhibited subsystems */
1451 tmp_ss_mask = ss_mask;
1452 if (dst_root == &cgrp_dfl_root)
1453 tmp_ss_mask &= ~cgrp_dfl_root_inhibit_ss_mask;
1454
Tejun Heo4df8dc92015-09-18 17:54:23 -04001455 for_each_subsys_which(ss, ssid, &tmp_ss_mask) {
1456 struct cgroup *scgrp = &ss->root->cgrp;
1457 int tssid;
1458
1459 ret = css_populate_dir(cgroup_css(scgrp, ss), dcgrp);
1460 if (!ret)
1461 continue;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001462
Tejun Heoa2dd4242014-03-19 10:23:55 -04001463 /*
1464 * Rebinding back to the default root is not allowed to
1465 * fail. Using both default and non-default roots should
1466 * be rare. Moving subsystems back and forth even more so.
1467 * Just warn about it and continue.
1468 */
Tejun Heo4df8dc92015-09-18 17:54:23 -04001469 if (dst_root == &cgrp_dfl_root) {
1470 if (cgrp_dfl_root_visible) {
1471 pr_warn("failed to create files (%d) while rebinding 0x%lx to default root\n",
1472 ret, ss_mask);
1473 pr_warn("you may retry by moving them to a different hierarchy and unbinding\n");
1474 }
1475 continue;
Tejun Heoa2dd4242014-03-19 10:23:55 -04001476 }
Tejun Heo4df8dc92015-09-18 17:54:23 -04001477
1478 for_each_subsys_which(ss, tssid, &tmp_ss_mask) {
1479 if (tssid == ssid)
1480 break;
1481 css_clear_dir(cgroup_css(scgrp, ss), dcgrp);
1482 }
1483 return ret;
Tejun Heo5df36032014-03-19 10:23:54 -04001484 }
Tejun Heo31261212013-06-28 17:07:30 -07001485
1486 /*
1487 * Nothing can fail from this point on. Remove files for the
1488 * removed subsystems and rebind each subsystem.
1489 */
Aleksa Saraia966a4e2015-06-06 10:02:15 +10001490 for_each_subsys_which(ss, ssid, &ss_mask) {
Tejun Heo1ada4832015-09-18 17:54:23 -04001491 struct cgroup_root *src_root = ss->root;
1492 struct cgroup *scgrp = &src_root->cgrp;
1493 struct cgroup_subsys_state *css = cgroup_css(scgrp, ss);
Tejun Heo2d8f2432014-04-23 11:13:15 -04001494 struct css_set *cset;
Tejun Heo30159ec2013-06-25 11:53:37 -07001495
Tejun Heo1ada4832015-09-18 17:54:23 -04001496 WARN_ON(!css || cgroup_css(dcgrp, ss));
Tejun Heo73e80ed2013-08-13 11:01:55 -04001497
Tejun Heo4df8dc92015-09-18 17:54:23 -04001498 css_clear_dir(css, NULL);
1499
Tejun Heo1ada4832015-09-18 17:54:23 -04001500 RCU_INIT_POINTER(scgrp->subsys[ssid], NULL);
1501 rcu_assign_pointer(dcgrp->subsys[ssid], css);
Tejun Heo5df36032014-03-19 10:23:54 -04001502 ss->root = dst_root;
Tejun Heo1ada4832015-09-18 17:54:23 -04001503 css->cgroup = dcgrp;
Tejun Heoa8a648c2013-06-24 15:21:47 -07001504
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001505 spin_lock_bh(&css_set_lock);
Tejun Heo2d8f2432014-04-23 11:13:15 -04001506 hash_for_each(css_set_table, i, cset, hlist)
1507 list_move_tail(&cset->e_cset_node[ss->id],
Tejun Heo1ada4832015-09-18 17:54:23 -04001508 &dcgrp->e_csets[ss->id]);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001509 spin_unlock_bh(&css_set_lock);
Tejun Heo2d8f2432014-04-23 11:13:15 -04001510
Tejun Heof392e512014-04-23 11:13:14 -04001511 src_root->subsys_mask &= ~(1 << ssid);
Tejun Heo1ada4832015-09-18 17:54:23 -04001512 scgrp->subtree_control &= ~(1 << ssid);
1513 cgroup_refresh_child_subsys_mask(scgrp);
Tejun Heof392e512014-04-23 11:13:14 -04001514
Tejun Heobd53d612014-04-23 11:13:16 -04001515 /* default hierarchy doesn't enable controllers by default */
Tejun Heof392e512014-04-23 11:13:14 -04001516 dst_root->subsys_mask |= 1 << ssid;
Tejun Heo49d1dc42015-09-18 11:56:28 -04001517 if (dst_root == &cgrp_dfl_root) {
1518 static_branch_enable(cgroup_subsys_on_dfl_key[ssid]);
1519 } else {
Tejun Heo1ada4832015-09-18 17:54:23 -04001520 dcgrp->subtree_control |= 1 << ssid;
1521 cgroup_refresh_child_subsys_mask(dcgrp);
Tejun Heo49d1dc42015-09-18 11:56:28 -04001522 static_branch_disable(cgroup_subsys_on_dfl_key[ssid]);
Tejun Heo667c2492014-07-08 18:02:56 -04001523 }
Tejun Heo73e80ed2013-08-13 11:01:55 -04001524
Tejun Heo5df36032014-03-19 10:23:54 -04001525 if (ss->bind)
1526 ss->bind(css);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001527 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001528
Tejun Heo1ada4832015-09-18 17:54:23 -04001529 kernfs_activate(dcgrp->kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001530 return 0;
1531}
1532
Tejun Heo2bd59d42014-02-11 11:52:49 -05001533static int cgroup_show_options(struct seq_file *seq,
1534 struct kernfs_root *kf_root)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001535{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001536 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001537 struct cgroup_subsys *ss;
Tejun Heob85d2042013-12-06 15:11:57 -05001538 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001539
Tejun Heod98817d2015-08-18 13:58:16 -07001540 if (root != &cgrp_dfl_root)
1541 for_each_subsys(ss, ssid)
1542 if (root->subsys_mask & (1 << ssid))
Kees Cook61e57c02015-09-08 14:58:22 -07001543 seq_show_option(seq, ss->legacy_name, NULL);
Tejun Heo93438622013-04-14 20:15:25 -07001544 if (root->flags & CGRP_ROOT_NOPREFIX)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001545 seq_puts(seq, ",noprefix");
Tejun Heo93438622013-04-14 20:15:25 -07001546 if (root->flags & CGRP_ROOT_XATTR)
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001547 seq_puts(seq, ",xattr");
Tejun Heo69e943b2014-02-08 10:36:58 -05001548
1549 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001550 if (strlen(root->release_agent_path))
Kees Cooka068acf2015-09-04 15:44:57 -07001551 seq_show_option(seq, "release_agent",
1552 root->release_agent_path);
Tejun Heo69e943b2014-02-08 10:36:58 -05001553 spin_unlock(&release_agent_path_lock);
1554
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001555 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags))
Daniel Lezcano97978e62010-10-27 15:33:35 -07001556 seq_puts(seq, ",clone_children");
Paul Menagec6d57f32009-09-23 15:56:19 -07001557 if (strlen(root->name))
Kees Cooka068acf2015-09-04 15:44:57 -07001558 seq_show_option(seq, "name", root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001559 return 0;
1560}
1561
1562struct cgroup_sb_opts {
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001563 unsigned long subsys_mask;
Tejun Heo69dfa002014-05-04 15:09:13 -04001564 unsigned int flags;
Paul Menage81a6a5c2007-10-18 23:39:38 -07001565 char *release_agent;
Tejun Heo2260e7f2012-11-19 08:13:38 -08001566 bool cpuset_clone_children;
Paul Menagec6d57f32009-09-23 15:56:19 -07001567 char *name;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001568 /* User explicitly requested empty subsystem */
1569 bool none;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001570};
1571
Ben Blumcf5d5942010-03-10 15:22:09 -08001572static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001573{
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001574 char *token, *o = data;
1575 bool all_ss = false, one_ss = false;
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001576 unsigned long mask = -1UL;
Tejun Heo30159ec2013-06-25 11:53:37 -07001577 struct cgroup_subsys *ss;
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001578 int nr_opts = 0;
Tejun Heo30159ec2013-06-25 11:53:37 -07001579 int i;
Li Zefanf9ab5b52009-06-17 16:26:33 -07001580
1581#ifdef CONFIG_CPUSETS
Tejun Heo69dfa002014-05-04 15:09:13 -04001582 mask = ~(1U << cpuset_cgrp_id);
Li Zefanf9ab5b52009-06-17 16:26:33 -07001583#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -07001584
Paul Menagec6d57f32009-09-23 15:56:19 -07001585 memset(opts, 0, sizeof(*opts));
Paul Menageddbcc7e2007-10-18 23:39:30 -07001586
1587 while ((token = strsep(&o, ",")) != NULL) {
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001588 nr_opts++;
1589
Paul Menageddbcc7e2007-10-18 23:39:30 -07001590 if (!*token)
1591 return -EINVAL;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001592 if (!strcmp(token, "none")) {
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001593 /* Explicitly have no subsystems */
1594 opts->none = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001595 continue;
1596 }
1597 if (!strcmp(token, "all")) {
1598 /* Mutually exclusive option 'all' + subsystem name */
1599 if (one_ss)
1600 return -EINVAL;
1601 all_ss = true;
1602 continue;
1603 }
Tejun Heo873fe092013-04-14 20:15:26 -07001604 if (!strcmp(token, "__DEVEL__sane_behavior")) {
1605 opts->flags |= CGRP_ROOT_SANE_BEHAVIOR;
1606 continue;
1607 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001608 if (!strcmp(token, "noprefix")) {
Tejun Heo93438622013-04-14 20:15:25 -07001609 opts->flags |= CGRP_ROOT_NOPREFIX;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001610 continue;
1611 }
1612 if (!strcmp(token, "clone_children")) {
Tejun Heo2260e7f2012-11-19 08:13:38 -08001613 opts->cpuset_clone_children = true;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001614 continue;
1615 }
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001616 if (!strcmp(token, "xattr")) {
Tejun Heo93438622013-04-14 20:15:25 -07001617 opts->flags |= CGRP_ROOT_XATTR;
Aristeu Rozanski03b1cde2012-08-23 16:53:30 -04001618 continue;
1619 }
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001620 if (!strncmp(token, "release_agent=", 14)) {
Paul Menage81a6a5c2007-10-18 23:39:38 -07001621 /* Specifying two release agents is forbidden */
1622 if (opts->release_agent)
1623 return -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001624 opts->release_agent =
Dan Carpentere400c282010-08-10 18:02:54 -07001625 kstrndup(token + 14, PATH_MAX - 1, GFP_KERNEL);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001626 if (!opts->release_agent)
1627 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001628 continue;
1629 }
1630 if (!strncmp(token, "name=", 5)) {
Paul Menagec6d57f32009-09-23 15:56:19 -07001631 const char *name = token + 5;
1632 /* Can't specify an empty name */
1633 if (!strlen(name))
1634 return -EINVAL;
1635 /* Must match [\w.-]+ */
1636 for (i = 0; i < strlen(name); i++) {
1637 char c = name[i];
1638 if (isalnum(c))
1639 continue;
1640 if ((c == '.') || (c == '-') || (c == '_'))
1641 continue;
1642 return -EINVAL;
1643 }
1644 /* Specifying two names is forbidden */
1645 if (opts->name)
1646 return -EINVAL;
1647 opts->name = kstrndup(name,
Dan Carpentere400c282010-08-10 18:02:54 -07001648 MAX_CGROUP_ROOT_NAMELEN - 1,
Paul Menagec6d57f32009-09-23 15:56:19 -07001649 GFP_KERNEL);
1650 if (!opts->name)
1651 return -ENOMEM;
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001652
1653 continue;
1654 }
1655
Tejun Heo30159ec2013-06-25 11:53:37 -07001656 for_each_subsys(ss, i) {
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07001657 if (strcmp(token, ss->legacy_name))
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001658 continue;
Tejun Heofc5ed1e2015-09-18 11:56:28 -04001659 if (!cgroup_ssid_enabled(i))
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001660 continue;
1661
1662 /* Mutually exclusive option 'all' + subsystem name */
1663 if (all_ss)
1664 return -EINVAL;
Tejun Heo69dfa002014-05-04 15:09:13 -04001665 opts->subsys_mask |= (1 << i);
Daniel Lezcano32a8cf22010-10-27 15:33:37 -07001666 one_ss = true;
1667
1668 break;
1669 }
1670 if (i == CGROUP_SUBSYS_COUNT)
1671 return -ENOENT;
1672 }
1673
Tejun Heo873fe092013-04-14 20:15:26 -07001674 if (opts->flags & CGRP_ROOT_SANE_BEHAVIOR) {
Joe Perchesed3d2612014-04-25 18:28:03 -04001675 pr_warn("sane_behavior: this is still under development and its behaviors will change, proceed at your own risk\n");
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001676 if (nr_opts != 1) {
1677 pr_err("sane_behavior: no other mount options allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001678 return -EINVAL;
1679 }
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001680 return 0;
Tejun Heo873fe092013-04-14 20:15:26 -07001681 }
1682
Li Zefanf9ab5b52009-06-17 16:26:33 -07001683 /*
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001684 * If the 'all' option was specified select all the subsystems,
1685 * otherwise if 'none', 'name=' and a subsystem name options were
1686 * not specified, let's default to 'all'
1687 */
1688 if (all_ss || (!one_ss && !opts->none && !opts->name))
1689 for_each_subsys(ss, i)
Tejun Heofc5ed1e2015-09-18 11:56:28 -04001690 if (cgroup_ssid_enabled(i))
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001691 opts->subsys_mask |= (1 << i);
1692
1693 /*
1694 * We either have to specify by name or by subsystems. (So all
1695 * empty hierarchies must have a name).
1696 */
1697 if (!opts->subsys_mask && !opts->name)
1698 return -EINVAL;
1699
1700 /*
Li Zefanf9ab5b52009-06-17 16:26:33 -07001701 * Option noprefix was introduced just for backward compatibility
1702 * with the old cpuset, so we allow noprefix only if mounting just
1703 * the cpuset subsystem.
1704 */
Tejun Heo93438622013-04-14 20:15:25 -07001705 if ((opts->flags & CGRP_ROOT_NOPREFIX) && (opts->subsys_mask & mask))
Li Zefanf9ab5b52009-06-17 16:26:33 -07001706 return -EINVAL;
1707
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001708 /* Can't specify "none" and some subsystems */
Aristeu Rozanskia1a71b452012-08-23 16:53:31 -04001709 if (opts->subsys_mask && opts->none)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001710 return -EINVAL;
1711
Paul Menageddbcc7e2007-10-18 23:39:30 -07001712 return 0;
1713}
1714
Tejun Heo2bd59d42014-02-11 11:52:49 -05001715static int cgroup_remount(struct kernfs_root *kf_root, int *flags, char *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001716{
1717 int ret = 0;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001718 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001719 struct cgroup_sb_opts opts;
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001720 unsigned long added_mask, removed_mask;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001721
Tejun Heoaa6ec292014-07-09 10:08:08 -04001722 if (root == &cgrp_dfl_root) {
1723 pr_err("remount is not allowed\n");
Tejun Heo873fe092013-04-14 20:15:26 -07001724 return -EINVAL;
1725 }
1726
Paul Menageddbcc7e2007-10-18 23:39:30 -07001727 mutex_lock(&cgroup_mutex);
1728
1729 /* See what subsystems are wanted */
1730 ret = parse_cgroupfs_options(data, &opts);
1731 if (ret)
1732 goto out_unlock;
1733
Tejun Heof392e512014-04-23 11:13:14 -04001734 if (opts.subsys_mask != root->subsys_mask || opts.release_agent)
Joe Perchesed3d2612014-04-25 18:28:03 -04001735 pr_warn("option changes via remount are deprecated (pid=%d comm=%s)\n",
Jianyu Zhana2a1f9e2014-04-25 18:28:03 -04001736 task_tgid_nr(current), current->comm);
Tejun Heo8b5a5a92012-04-01 12:09:54 -07001737
Tejun Heof392e512014-04-23 11:13:14 -04001738 added_mask = opts.subsys_mask & ~root->subsys_mask;
1739 removed_mask = root->subsys_mask & ~opts.subsys_mask;
Aristeu Rozanski13af07d2012-08-23 16:53:29 -04001740
Ben Blumcf5d5942010-03-10 15:22:09 -08001741 /* Don't allow flags or name to change at remount */
Tejun Heo7450e902014-07-09 10:08:07 -04001742 if ((opts.flags ^ root->flags) ||
Ben Blumcf5d5942010-03-10 15:22:09 -08001743 (opts.name && strcmp(opts.name, root->name))) {
Tejun Heo69dfa002014-05-04 15:09:13 -04001744 pr_err("option or name mismatch, new: 0x%x \"%s\", old: 0x%x \"%s\"\n",
Tejun Heo7450e902014-07-09 10:08:07 -04001745 opts.flags, opts.name ?: "", root->flags, root->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001746 ret = -EINVAL;
Paul Menagec6d57f32009-09-23 15:56:19 -07001747 goto out_unlock;
1748 }
1749
Tejun Heof172e672013-06-28 17:07:30 -07001750 /* remounting is not allowed for populated hierarchies */
Tejun Heod5c419b2014-05-16 13:22:48 -04001751 if (!list_empty(&root->cgrp.self.children)) {
Tejun Heof172e672013-06-28 17:07:30 -07001752 ret = -EBUSY;
Li Zefan0670e082009-04-02 16:57:30 -07001753 goto out_unlock;
Ben Blumcf5d5942010-03-10 15:22:09 -08001754 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001755
Tejun Heo5df36032014-03-19 10:23:54 -04001756 ret = rebind_subsystems(root, added_mask);
Tejun Heo31261212013-06-28 17:07:30 -07001757 if (ret)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001758 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001759
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001760 rebind_subsystems(&cgrp_dfl_root, removed_mask);
Tejun Heo5df36032014-03-19 10:23:54 -04001761
Tejun Heo69e943b2014-02-08 10:36:58 -05001762 if (opts.release_agent) {
1763 spin_lock(&release_agent_path_lock);
Paul Menage81a6a5c2007-10-18 23:39:38 -07001764 strcpy(root->release_agent_path, opts.release_agent);
Tejun Heo69e943b2014-02-08 10:36:58 -05001765 spin_unlock(&release_agent_path_lock);
1766 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07001767 out_unlock:
Jesper Juhl66bdc9c2009-04-02 16:57:27 -07001768 kfree(opts.release_agent);
Paul Menagec6d57f32009-09-23 15:56:19 -07001769 kfree(opts.name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001770 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001771 return ret;
1772}
1773
Tejun Heoafeb0f92014-02-13 06:58:39 -05001774/*
1775 * To reduce the fork() overhead for systems that are not actually using
1776 * their cgroups capability, we don't maintain the lists running through
1777 * each css_set to its tasks until we see the list actually used - in other
1778 * words after the first mount.
1779 */
1780static bool use_task_css_set_links __read_mostly;
1781
1782static void cgroup_enable_task_cg_lists(void)
1783{
1784 struct task_struct *p, *g;
1785
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001786 spin_lock_bh(&css_set_lock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001787
1788 if (use_task_css_set_links)
1789 goto out_unlock;
1790
1791 use_task_css_set_links = true;
1792
1793 /*
1794 * We need tasklist_lock because RCU is not safe against
1795 * while_each_thread(). Besides, a forking task that has passed
1796 * cgroup_post_fork() without seeing use_task_css_set_links = 1
1797 * is not guaranteed to have its child immediately visible in the
1798 * tasklist if we walk through it with RCU.
1799 */
1800 read_lock(&tasklist_lock);
1801 do_each_thread(g, p) {
Tejun Heoafeb0f92014-02-13 06:58:39 -05001802 WARN_ON_ONCE(!list_empty(&p->cg_list) ||
1803 task_css_set(p) != &init_css_set);
1804
1805 /*
1806 * We should check if the process is exiting, otherwise
1807 * it will race with cgroup_exit() in that the list
1808 * entry won't be deleted though the process has exited.
Tejun Heof153ad12014-02-25 09:56:49 -05001809 * Do it while holding siglock so that we don't end up
1810 * racing against cgroup_exit().
Tejun Heoafeb0f92014-02-13 06:58:39 -05001811 */
Tejun Heof153ad12014-02-25 09:56:49 -05001812 spin_lock_irq(&p->sighand->siglock);
Tejun Heoeaf797a2014-02-25 10:04:03 -05001813 if (!(p->flags & PF_EXITING)) {
1814 struct css_set *cset = task_css_set(p);
1815
Tejun Heo0de09422015-10-15 16:41:49 -04001816 if (!css_set_populated(cset))
1817 css_set_update_populated(cset, true);
Tejun Heo389b9c12015-10-15 16:41:51 -04001818 list_add_tail(&p->cg_list, &cset->tasks);
Tejun Heoeaf797a2014-02-25 10:04:03 -05001819 get_css_set(cset);
1820 }
Tejun Heof153ad12014-02-25 09:56:49 -05001821 spin_unlock_irq(&p->sighand->siglock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001822 } while_each_thread(g, p);
1823 read_unlock(&tasklist_lock);
1824out_unlock:
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001825 spin_unlock_bh(&css_set_lock);
Tejun Heoafeb0f92014-02-13 06:58:39 -05001826}
Paul Menageddbcc7e2007-10-18 23:39:30 -07001827
Paul Menagecc31edc2008-10-18 20:28:04 -07001828static void init_cgroup_housekeeping(struct cgroup *cgrp)
1829{
Tejun Heo2d8f2432014-04-23 11:13:15 -04001830 struct cgroup_subsys *ss;
1831 int ssid;
1832
Tejun Heod5c419b2014-05-16 13:22:48 -04001833 INIT_LIST_HEAD(&cgrp->self.sibling);
1834 INIT_LIST_HEAD(&cgrp->self.children);
Tejun Heo6f60ead2015-09-18 17:54:23 -04001835 INIT_LIST_HEAD(&cgrp->self.files);
Tejun Heo69d02062013-06-12 21:04:50 -07001836 INIT_LIST_HEAD(&cgrp->cset_links);
Ben Blum72a8cb32009-09-23 15:56:27 -07001837 INIT_LIST_HEAD(&cgrp->pidlists);
1838 mutex_init(&cgrp->pidlist_mutex);
Tejun Heo9d800df2014-05-14 09:15:00 -04001839 cgrp->self.cgroup = cgrp;
Tejun Heo184faf32014-05-16 13:22:51 -04001840 cgrp->self.flags |= CSS_ONLINE;
Tejun Heo2d8f2432014-04-23 11:13:15 -04001841
1842 for_each_subsys(ss, ssid)
1843 INIT_LIST_HEAD(&cgrp->e_csets[ssid]);
Tejun Heof8f22e52014-04-23 11:13:16 -04001844
1845 init_waitqueue_head(&cgrp->offline_waitq);
Zefan Li971ff492014-09-18 16:06:19 +08001846 INIT_WORK(&cgrp->release_agent_work, cgroup_release_agent);
Paul Menagecc31edc2008-10-18 20:28:04 -07001847}
Paul Menagec6d57f32009-09-23 15:56:19 -07001848
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001849static void init_cgroup_root(struct cgroup_root *root,
Tejun Heo172a2c062014-03-19 10:23:53 -04001850 struct cgroup_sb_opts *opts)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001851{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001852 struct cgroup *cgrp = &root->cgrp;
Tejun Heob0ca5a82012-04-01 12:09:54 -07001853
Paul Menageddbcc7e2007-10-18 23:39:30 -07001854 INIT_LIST_HEAD(&root->root_list);
Tejun Heo3c9c8252014-02-12 09:29:50 -05001855 atomic_set(&root->nr_cgrps, 1);
Paul Menagebd89aab2007-10-18 23:40:44 -07001856 cgrp->root = root;
Paul Menagecc31edc2008-10-18 20:28:04 -07001857 init_cgroup_housekeeping(cgrp);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08001858 idr_init(&root->cgroup_idr);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001859
Paul Menagec6d57f32009-09-23 15:56:19 -07001860 root->flags = opts->flags;
1861 if (opts->release_agent)
1862 strcpy(root->release_agent_path, opts->release_agent);
1863 if (opts->name)
1864 strcpy(root->name, opts->name);
Tejun Heo2260e7f2012-11-19 08:13:38 -08001865 if (opts->cpuset_clone_children)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001866 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &root->cgrp.flags);
Paul Menagec6d57f32009-09-23 15:56:19 -07001867}
1868
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10001869static int cgroup_setup_root(struct cgroup_root *root, unsigned long ss_mask)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001870{
Tejun Heod427dfe2014-02-11 11:52:48 -05001871 LIST_HEAD(tmp_links);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001872 struct cgroup *root_cgrp = &root->cgrp;
Tejun Heod427dfe2014-02-11 11:52:48 -05001873 struct css_set *cset;
Tejun Heod427dfe2014-02-11 11:52:48 -05001874 int i, ret;
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001875
Tejun Heod427dfe2014-02-11 11:52:48 -05001876 lockdep_assert_held(&cgroup_mutex);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07001877
Vladimir Davydovcf780b72015-08-03 15:32:26 +03001878 ret = cgroup_idr_alloc(&root->cgroup_idr, root_cgrp, 1, 2, GFP_KERNEL);
Tejun Heod427dfe2014-02-11 11:52:48 -05001879 if (ret < 0)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001880 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001881 root_cgrp->id = ret;
Tejun Heob11cfb52015-11-20 15:55:52 -05001882 root_cgrp->ancestor_ids[0] = ret;
Paul Menagec6d57f32009-09-23 15:56:19 -07001883
Tejun Heo2aad2a82014-09-24 13:31:50 -04001884 ret = percpu_ref_init(&root_cgrp->self.refcnt, css_release, 0,
1885 GFP_KERNEL);
Tejun Heo9d755d32014-05-14 09:15:02 -04001886 if (ret)
1887 goto out;
1888
Tejun Heod427dfe2014-02-11 11:52:48 -05001889 /*
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001890 * We're accessing css_set_count without locking css_set_lock here,
Tejun Heod427dfe2014-02-11 11:52:48 -05001891 * but that's OK - it can only be increased by someone holding
1892 * cgroup_lock, and that's us. The worst that can happen is that we
1893 * have some link structures left over
1894 */
1895 ret = allocate_cgrp_cset_links(css_set_count, &tmp_links);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001896 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001897 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001898
Tejun Heo985ed672014-03-19 10:23:53 -04001899 ret = cgroup_init_root_id(root);
Tejun Heod427dfe2014-02-11 11:52:48 -05001900 if (ret)
Tejun Heo9d755d32014-05-14 09:15:02 -04001901 goto cancel_ref;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001902
Tejun Heo2bd59d42014-02-11 11:52:49 -05001903 root->kf_root = kernfs_create_root(&cgroup_kf_syscall_ops,
1904 KERNFS_ROOT_CREATE_DEACTIVATED,
1905 root_cgrp);
1906 if (IS_ERR(root->kf_root)) {
1907 ret = PTR_ERR(root->kf_root);
1908 goto exit_root_id;
1909 }
1910 root_cgrp->kn = root->kf_root->kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001911
Tejun Heo4df8dc92015-09-18 17:54:23 -04001912 ret = css_populate_dir(&root_cgrp->self, NULL);
Tejun Heod427dfe2014-02-11 11:52:48 -05001913 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001914 goto destroy_root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001915
Tejun Heo5df36032014-03-19 10:23:54 -04001916 ret = rebind_subsystems(root, ss_mask);
Tejun Heod427dfe2014-02-11 11:52:48 -05001917 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05001918 goto destroy_root;
Al Viro0df6a632010-12-21 13:29:29 -05001919
Tejun Heod427dfe2014-02-11 11:52:48 -05001920 /*
1921 * There must be no failure case after here, since rebinding takes
1922 * care of subsystems' refcounts, which are explicitly dropped in
1923 * the failure exit path.
1924 */
1925 list_add(&root->root_list, &cgroup_roots);
1926 cgroup_root_count++;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001927
Tejun Heod427dfe2014-02-11 11:52:48 -05001928 /*
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001929 * Link the root cgroup in this hierarchy into all the css_set
Tejun Heod427dfe2014-02-11 11:52:48 -05001930 * objects.
1931 */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001932 spin_lock_bh(&css_set_lock);
Tejun Heo0de09422015-10-15 16:41:49 -04001933 hash_for_each(css_set_table, i, cset, hlist) {
Tejun Heod427dfe2014-02-11 11:52:48 -05001934 link_css_set(&tmp_links, cset, root_cgrp);
Tejun Heo0de09422015-10-15 16:41:49 -04001935 if (css_set_populated(cset))
1936 cgroup_update_populated(root_cgrp, true);
1937 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04001938 spin_unlock_bh(&css_set_lock);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001939
Tejun Heod5c419b2014-05-16 13:22:48 -04001940 BUG_ON(!list_empty(&root_cgrp->self.children));
Tejun Heo3c9c8252014-02-12 09:29:50 -05001941 BUG_ON(atomic_read(&root->nr_cgrps) != 1);
Tejun Heod427dfe2014-02-11 11:52:48 -05001942
Tejun Heo2bd59d42014-02-11 11:52:49 -05001943 kernfs_activate(root_cgrp->kn);
Tejun Heod427dfe2014-02-11 11:52:48 -05001944 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001945 goto out;
Tejun Heod427dfe2014-02-11 11:52:48 -05001946
Tejun Heo2bd59d42014-02-11 11:52:49 -05001947destroy_root:
1948 kernfs_destroy_root(root->kf_root);
1949 root->kf_root = NULL;
1950exit_root_id:
Tejun Heod427dfe2014-02-11 11:52:48 -05001951 cgroup_exit_root_id(root);
Tejun Heo9d755d32014-05-14 09:15:02 -04001952cancel_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04001953 percpu_ref_exit(&root_cgrp->self.refcnt);
Tejun Heo2bd59d42014-02-11 11:52:49 -05001954out:
Tejun Heod427dfe2014-02-11 11:52:48 -05001955 free_cgrp_cset_links(&tmp_links);
1956 return ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001957}
1958
Al Virof7e83572010-07-26 13:23:11 +04001959static struct dentry *cgroup_mount(struct file_system_type *fs_type,
Paul Menageddbcc7e2007-10-18 23:39:30 -07001960 int flags, const char *unused_dev_name,
Al Virof7e83572010-07-26 13:23:11 +04001961 void *data)
Paul Menageddbcc7e2007-10-18 23:39:30 -07001962{
Li Zefan3a32bd72014-06-30 11:50:59 +08001963 struct super_block *pinned_sb = NULL;
Li Zefan970317a2014-06-30 11:49:58 +08001964 struct cgroup_subsys *ss;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04001965 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001966 struct cgroup_sb_opts opts;
Tejun Heo2bd59d42014-02-11 11:52:49 -05001967 struct dentry *dentry;
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001968 int ret;
Li Zefan970317a2014-06-30 11:49:58 +08001969 int i;
Li Zefanc6b3d5b2014-04-04 17:14:41 +08001970 bool new_sb;
Paul Menagec6d57f32009-09-23 15:56:19 -07001971
1972 /*
Tejun Heo56fde9e2014-02-13 06:58:38 -05001973 * The first time anyone tries to mount a cgroup, enable the list
1974 * linking each css_set to its tasks and fix up all existing tasks.
Paul Menagec6d57f32009-09-23 15:56:19 -07001975 */
Tejun Heo56fde9e2014-02-13 06:58:38 -05001976 if (!use_task_css_set_links)
1977 cgroup_enable_task_cg_lists();
Li Zefane37a06f2014-04-17 13:53:08 +08001978
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001979 mutex_lock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001980
Paul Menageddbcc7e2007-10-18 23:39:30 -07001981 /* First find the desired set of subsystems */
Paul Menageddbcc7e2007-10-18 23:39:30 -07001982 ret = parse_cgroupfs_options(data, &opts);
Paul Menageddbcc7e2007-10-18 23:39:30 -07001983 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05001984 goto out_unlock;
Tejun Heoa015edd2014-05-14 09:15:00 -04001985
Tejun Heo2bd59d42014-02-11 11:52:49 -05001986 /* look for a matching existing root */
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04001987 if (opts.flags & CGRP_ROOT_SANE_BEHAVIOR) {
Tejun Heoa2dd4242014-03-19 10:23:55 -04001988 cgrp_dfl_root_visible = true;
1989 root = &cgrp_dfl_root;
1990 cgroup_get(&root->cgrp);
1991 ret = 0;
1992 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07001993 }
1994
Li Zefan970317a2014-06-30 11:49:58 +08001995 /*
1996 * Destruction of cgroup root is asynchronous, so subsystems may
1997 * still be dying after the previous unmount. Let's drain the
1998 * dying subsystems. We just need to ensure that the ones
1999 * unmounted previously finish dying and don't care about new ones
2000 * starting. Testing ref liveliness is good enough.
2001 */
2002 for_each_subsys(ss, i) {
2003 if (!(opts.subsys_mask & (1 << i)) ||
2004 ss->root == &cgrp_dfl_root)
2005 continue;
2006
2007 if (!percpu_ref_tryget_live(&ss->root->cgrp.self.refcnt)) {
2008 mutex_unlock(&cgroup_mutex);
2009 msleep(10);
2010 ret = restart_syscall();
2011 goto out_free;
2012 }
2013 cgroup_put(&ss->root->cgrp);
2014 }
2015
Tejun Heo985ed672014-03-19 10:23:53 -04002016 for_each_root(root) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05002017 bool name_match = false;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002018
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002019 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04002020 continue;
Paul Menagec6d57f32009-09-23 15:56:19 -07002021
Paul Menage817929e2007-10-18 23:39:36 -07002022 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05002023 * If we asked for a name then it must match. Also, if
2024 * name matches but sybsys_mask doesn't, we should fail.
2025 * Remember whether name matched.
Paul Menage817929e2007-10-18 23:39:36 -07002026 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05002027 if (opts.name) {
2028 if (strcmp(opts.name, root->name))
2029 continue;
2030 name_match = true;
2031 }
Tejun Heo31261212013-06-28 17:07:30 -07002032
2033 /*
Tejun Heo2bd59d42014-02-11 11:52:49 -05002034 * If we asked for subsystems (or explicitly for no
2035 * subsystems) then they must match.
Tejun Heo31261212013-06-28 17:07:30 -07002036 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05002037 if ((opts.subsys_mask || opts.none) &&
Tejun Heof392e512014-04-23 11:13:14 -04002038 (opts.subsys_mask != root->subsys_mask)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05002039 if (!name_match)
2040 continue;
2041 ret = -EBUSY;
2042 goto out_unlock;
2043 }
Tejun Heo873fe092013-04-14 20:15:26 -07002044
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04002045 if (root->flags ^ opts.flags)
2046 pr_warn("new mount options do not match the existing superblock, will be ignored\n");
Tejun Heo2bd59d42014-02-11 11:52:49 -05002047
Tejun Heo776f02f2014-02-12 09:29:50 -05002048 /*
Li Zefan3a32bd72014-06-30 11:50:59 +08002049 * We want to reuse @root whose lifetime is governed by its
2050 * ->cgrp. Let's check whether @root is alive and keep it
2051 * that way. As cgroup_kill_sb() can happen anytime, we
2052 * want to block it by pinning the sb so that @root doesn't
2053 * get killed before mount is complete.
2054 *
2055 * With the sb pinned, tryget_live can reliably indicate
2056 * whether @root can be reused. If it's being killed,
2057 * drain it. We can use wait_queue for the wait but this
2058 * path is super cold. Let's just sleep a bit and retry.
Tejun Heo776f02f2014-02-12 09:29:50 -05002059 */
Li Zefan3a32bd72014-06-30 11:50:59 +08002060 pinned_sb = kernfs_pin_sb(root->kf_root, NULL);
2061 if (IS_ERR(pinned_sb) ||
2062 !percpu_ref_tryget_live(&root->cgrp.self.refcnt)) {
Tejun Heo776f02f2014-02-12 09:29:50 -05002063 mutex_unlock(&cgroup_mutex);
Li Zefan3a32bd72014-06-30 11:50:59 +08002064 if (!IS_ERR_OR_NULL(pinned_sb))
2065 deactivate_super(pinned_sb);
Tejun Heo776f02f2014-02-12 09:29:50 -05002066 msleep(10);
Tejun Heoa015edd2014-05-14 09:15:00 -04002067 ret = restart_syscall();
2068 goto out_free;
Tejun Heo776f02f2014-02-12 09:29:50 -05002069 }
2070
2071 ret = 0;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002072 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002073 }
2074
Tejun Heo172a2c062014-03-19 10:23:53 -04002075 /*
2076 * No such thing, create a new one. name= matching without subsys
2077 * specification is allowed for already existing hierarchies but we
2078 * can't create new one without subsys specification.
2079 */
2080 if (!opts.subsys_mask && !opts.none) {
2081 ret = -EINVAL;
Tejun Heo2bd59d42014-02-11 11:52:49 -05002082 goto out_unlock;
2083 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07002084
Tejun Heo172a2c062014-03-19 10:23:53 -04002085 root = kzalloc(sizeof(*root), GFP_KERNEL);
2086 if (!root) {
2087 ret = -ENOMEM;
2088 goto out_unlock;
2089 }
2090
2091 init_cgroup_root(root, &opts);
2092
Tejun Heo35585572014-02-13 06:58:38 -05002093 ret = cgroup_setup_root(root, opts.subsys_mask);
Tejun Heo2bd59d42014-02-11 11:52:49 -05002094 if (ret)
2095 cgroup_free_root(root);
2096
Tejun Heo8e30e2b2014-02-11 11:52:48 -05002097out_unlock:
Tejun Heoe25e2cb2011-12-12 18:12:21 -08002098 mutex_unlock(&cgroup_mutex);
Tejun Heoa015edd2014-05-14 09:15:00 -04002099out_free:
Paul Menagec6d57f32009-09-23 15:56:19 -07002100 kfree(opts.release_agent);
2101 kfree(opts.name);
Tejun Heo8e30e2b2014-02-11 11:52:48 -05002102
Tejun Heo2bd59d42014-02-11 11:52:49 -05002103 if (ret)
Tejun Heo8e30e2b2014-02-11 11:52:48 -05002104 return ERR_PTR(ret);
Tejun Heo2bd59d42014-02-11 11:52:49 -05002105
Jianyu Zhanc9482a52014-04-26 15:40:28 +08002106 dentry = kernfs_mount(fs_type, flags, root->kf_root,
2107 CGROUP_SUPER_MAGIC, &new_sb);
Li Zefanc6b3d5b2014-04-04 17:14:41 +08002108 if (IS_ERR(dentry) || !new_sb)
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002109 cgroup_put(&root->cgrp);
Li Zefan3a32bd72014-06-30 11:50:59 +08002110
2111 /*
2112 * If @pinned_sb, we're reusing an existing root and holding an
2113 * extra ref on its sb. Mount is complete. Put the extra ref.
2114 */
2115 if (pinned_sb) {
2116 WARN_ON(new_sb);
2117 deactivate_super(pinned_sb);
2118 }
2119
Tejun Heo2bd59d42014-02-11 11:52:49 -05002120 return dentry;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002121}
2122
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09002123static void cgroup_kill_sb(struct super_block *sb)
2124{
Tejun Heo2bd59d42014-02-11 11:52:49 -05002125 struct kernfs_root *kf_root = kernfs_root_from_sb(sb);
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002126 struct cgroup_root *root = cgroup_root_from_kf(kf_root);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002127
Tejun Heo9d755d32014-05-14 09:15:02 -04002128 /*
2129 * If @root doesn't have any mounts or children, start killing it.
2130 * This prevents new mounts by disabling percpu_ref_tryget_live().
2131 * cgroup_mount() may wait for @root's release.
Li Zefan1f779fb2014-06-04 16:48:15 +08002132 *
2133 * And don't kill the default root.
Tejun Heo9d755d32014-05-14 09:15:02 -04002134 */
Johannes Weiner3c606d32015-01-22 10:19:43 -05002135 if (!list_empty(&root->cgrp.self.children) ||
Li Zefan1f779fb2014-06-04 16:48:15 +08002136 root == &cgrp_dfl_root)
Tejun Heo9d755d32014-05-14 09:15:02 -04002137 cgroup_put(&root->cgrp);
2138 else
2139 percpu_ref_kill(&root->cgrp.self.refcnt);
2140
Tejun Heo2bd59d42014-02-11 11:52:49 -05002141 kernfs_kill_sb(sb);
Paul Menageddbcc7e2007-10-18 23:39:30 -07002142}
2143
2144static struct file_system_type cgroup_fs_type = {
2145 .name = "cgroup",
Al Virof7e83572010-07-26 13:23:11 +04002146 .mount = cgroup_mount,
Paul Menageddbcc7e2007-10-18 23:39:30 -07002147 .kill_sb = cgroup_kill_sb,
2148};
2149
Li Zefana043e3b2008-02-23 15:24:09 -08002150/**
Tejun Heo913ffdb2013-07-11 16:34:48 -07002151 * task_cgroup_path - cgroup path of a task in the first cgroup hierarchy
Tejun Heo857a2be2013-04-14 20:50:08 -07002152 * @task: target task
Tejun Heo857a2be2013-04-14 20:50:08 -07002153 * @buf: the buffer to write the path into
2154 * @buflen: the length of the buffer
2155 *
Tejun Heo913ffdb2013-07-11 16:34:48 -07002156 * Determine @task's cgroup on the first (the one with the lowest non-zero
2157 * hierarchy_id) cgroup hierarchy and copy its path into @buf. This
2158 * function grabs cgroup_mutex and shouldn't be used inside locks used by
2159 * cgroup controller callbacks.
2160 *
Tejun Heoe61734c2014-02-12 09:29:50 -05002161 * Return value is the same as kernfs_path().
Tejun Heo857a2be2013-04-14 20:50:08 -07002162 */
Tejun Heoe61734c2014-02-12 09:29:50 -05002163char *task_cgroup_path(struct task_struct *task, char *buf, size_t buflen)
Tejun Heo857a2be2013-04-14 20:50:08 -07002164{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002165 struct cgroup_root *root;
Tejun Heo913ffdb2013-07-11 16:34:48 -07002166 struct cgroup *cgrp;
Tejun Heoe61734c2014-02-12 09:29:50 -05002167 int hierarchy_id = 1;
2168 char *path = NULL;
Tejun Heo857a2be2013-04-14 20:50:08 -07002169
2170 mutex_lock(&cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002171 spin_lock_bh(&css_set_lock);
Tejun Heo857a2be2013-04-14 20:50:08 -07002172
Tejun Heo913ffdb2013-07-11 16:34:48 -07002173 root = idr_get_next(&cgroup_hierarchy_idr, &hierarchy_id);
2174
Tejun Heo857a2be2013-04-14 20:50:08 -07002175 if (root) {
2176 cgrp = task_cgroup_from_root(task, root);
Tejun Heoe61734c2014-02-12 09:29:50 -05002177 path = cgroup_path(cgrp, buf, buflen);
Tejun Heo913ffdb2013-07-11 16:34:48 -07002178 } else {
2179 /* if no hierarchy exists, everyone is in "/" */
Tejun Heoe61734c2014-02-12 09:29:50 -05002180 if (strlcpy(buf, "/", buflen) < buflen)
2181 path = buf;
Tejun Heo857a2be2013-04-14 20:50:08 -07002182 }
2183
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002184 spin_unlock_bh(&css_set_lock);
Tejun Heo857a2be2013-04-14 20:50:08 -07002185 mutex_unlock(&cgroup_mutex);
Tejun Heoe61734c2014-02-12 09:29:50 -05002186 return path;
Tejun Heo857a2be2013-04-14 20:50:08 -07002187}
Tejun Heo913ffdb2013-07-11 16:34:48 -07002188EXPORT_SYMBOL_GPL(task_cgroup_path);
Tejun Heo857a2be2013-04-14 20:50:08 -07002189
Tejun Heob3dc0942014-02-25 10:04:01 -05002190/* used to track tasks and other necessary states during migration */
Tejun Heo2f7ee562011-12-12 18:12:21 -08002191struct cgroup_taskset {
Tejun Heob3dc0942014-02-25 10:04:01 -05002192 /* the src and dst cset list running through cset->mg_node */
2193 struct list_head src_csets;
2194 struct list_head dst_csets;
2195
2196 /*
2197 * Fields for cgroup_taskset_*() iteration.
2198 *
2199 * Before migration is committed, the target migration tasks are on
2200 * ->mg_tasks of the csets on ->src_csets. After, on ->mg_tasks of
2201 * the csets on ->dst_csets. ->csets point to either ->src_csets
2202 * or ->dst_csets depending on whether migration is committed.
2203 *
2204 * ->cur_csets and ->cur_task point to the current task position
2205 * during iteration.
2206 */
2207 struct list_head *csets;
2208 struct css_set *cur_cset;
2209 struct task_struct *cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002210};
2211
Tejun Heoadaae5d2015-09-11 15:00:21 -04002212#define CGROUP_TASKSET_INIT(tset) (struct cgroup_taskset){ \
2213 .src_csets = LIST_HEAD_INIT(tset.src_csets), \
2214 .dst_csets = LIST_HEAD_INIT(tset.dst_csets), \
2215 .csets = &tset.src_csets, \
2216}
2217
2218/**
2219 * cgroup_taskset_add - try to add a migration target task to a taskset
2220 * @task: target task
2221 * @tset: target taskset
2222 *
2223 * Add @task, which is a migration target, to @tset. This function becomes
2224 * noop if @task doesn't need to be migrated. @task's css_set should have
2225 * been added as a migration source and @task->cg_list will be moved from
2226 * the css_set's tasks list to mg_tasks one.
2227 */
2228static void cgroup_taskset_add(struct task_struct *task,
2229 struct cgroup_taskset *tset)
2230{
2231 struct css_set *cset;
2232
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002233 lockdep_assert_held(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002234
2235 /* @task either already exited or can't exit until the end */
2236 if (task->flags & PF_EXITING)
2237 return;
2238
2239 /* leave @task alone if post_fork() hasn't linked it yet */
2240 if (list_empty(&task->cg_list))
2241 return;
2242
2243 cset = task_css_set(task);
2244 if (!cset->mg_src_cgrp)
2245 return;
2246
2247 list_move_tail(&task->cg_list, &cset->mg_tasks);
2248 if (list_empty(&cset->mg_node))
2249 list_add_tail(&cset->mg_node, &tset->src_csets);
2250 if (list_empty(&cset->mg_dst_cset->mg_node))
2251 list_move_tail(&cset->mg_dst_cset->mg_node,
2252 &tset->dst_csets);
2253}
2254
Tejun Heo2f7ee562011-12-12 18:12:21 -08002255/**
2256 * cgroup_taskset_first - reset taskset and return the first task
2257 * @tset: taskset of interest
2258 *
2259 * @tset iteration is initialized and the first task is returned.
2260 */
2261struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset)
2262{
Tejun Heob3dc0942014-02-25 10:04:01 -05002263 tset->cur_cset = list_first_entry(tset->csets, struct css_set, mg_node);
2264 tset->cur_task = NULL;
2265
2266 return cgroup_taskset_next(tset);
Tejun Heo2f7ee562011-12-12 18:12:21 -08002267}
Tejun Heo2f7ee562011-12-12 18:12:21 -08002268
2269/**
2270 * cgroup_taskset_next - iterate to the next task in taskset
2271 * @tset: taskset of interest
2272 *
2273 * Return the next task in @tset. Iteration must have been initialized
2274 * with cgroup_taskset_first().
2275 */
2276struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset)
2277{
Tejun Heob3dc0942014-02-25 10:04:01 -05002278 struct css_set *cset = tset->cur_cset;
2279 struct task_struct *task = tset->cur_task;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002280
Tejun Heob3dc0942014-02-25 10:04:01 -05002281 while (&cset->mg_node != tset->csets) {
2282 if (!task)
2283 task = list_first_entry(&cset->mg_tasks,
2284 struct task_struct, cg_list);
2285 else
2286 task = list_next_entry(task, cg_list);
Tejun Heo2f7ee562011-12-12 18:12:21 -08002287
Tejun Heob3dc0942014-02-25 10:04:01 -05002288 if (&task->cg_list != &cset->mg_tasks) {
2289 tset->cur_cset = cset;
2290 tset->cur_task = task;
2291 return task;
2292 }
2293
2294 cset = list_next_entry(cset, mg_node);
2295 task = NULL;
2296 }
2297
2298 return NULL;
Tejun Heo2f7ee562011-12-12 18:12:21 -08002299}
Tejun Heo2f7ee562011-12-12 18:12:21 -08002300
2301/**
Tejun Heoadaae5d2015-09-11 15:00:21 -04002302 * cgroup_taskset_migrate - migrate a taskset to a cgroup
2303 * @tset: taget taskset
2304 * @dst_cgrp: destination cgroup
2305 *
2306 * Migrate tasks in @tset to @dst_cgrp. This function fails iff one of the
2307 * ->can_attach callbacks fails and guarantees that either all or none of
2308 * the tasks in @tset are migrated. @tset is consumed regardless of
2309 * success.
2310 */
2311static int cgroup_taskset_migrate(struct cgroup_taskset *tset,
2312 struct cgroup *dst_cgrp)
2313{
2314 struct cgroup_subsys_state *css, *failed_css = NULL;
2315 struct task_struct *task, *tmp_task;
2316 struct css_set *cset, *tmp_cset;
2317 int i, ret;
2318
2319 /* methods shouldn't be called if no task is actually migrating */
2320 if (list_empty(&tset->src_csets))
2321 return 0;
2322
2323 /* check that we can legitimately attach to the cgroup */
2324 for_each_e_css(css, i, dst_cgrp) {
2325 if (css->ss->can_attach) {
2326 ret = css->ss->can_attach(css, tset);
2327 if (ret) {
2328 failed_css = css;
2329 goto out_cancel_attach;
2330 }
2331 }
2332 }
2333
2334 /*
2335 * Now that we're guaranteed success, proceed to move all tasks to
2336 * the new cgroup. There are no failure cases after here, so this
2337 * is the commit point.
2338 */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002339 spin_lock_bh(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002340 list_for_each_entry(cset, &tset->src_csets, mg_node) {
Tejun Heof6d7d042015-10-15 16:41:52 -04002341 list_for_each_entry_safe(task, tmp_task, &cset->mg_tasks, cg_list) {
2342 struct css_set *from_cset = task_css_set(task);
2343 struct css_set *to_cset = cset->mg_dst_cset;
2344
2345 get_css_set(to_cset);
2346 css_set_move_task(task, from_cset, to_cset, true);
2347 put_css_set_locked(from_cset);
2348 }
Tejun Heoadaae5d2015-09-11 15:00:21 -04002349 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002350 spin_unlock_bh(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002351
2352 /*
2353 * Migration is committed, all target tasks are now on dst_csets.
2354 * Nothing is sensitive to fork() after this point. Notify
2355 * controllers that migration is complete.
2356 */
2357 tset->csets = &tset->dst_csets;
2358
2359 for_each_e_css(css, i, dst_cgrp)
2360 if (css->ss->attach)
2361 css->ss->attach(css, tset);
2362
2363 ret = 0;
2364 goto out_release_tset;
2365
2366out_cancel_attach:
2367 for_each_e_css(css, i, dst_cgrp) {
2368 if (css == failed_css)
2369 break;
2370 if (css->ss->cancel_attach)
2371 css->ss->cancel_attach(css, tset);
2372 }
2373out_release_tset:
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002374 spin_lock_bh(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002375 list_splice_init(&tset->dst_csets, &tset->src_csets);
2376 list_for_each_entry_safe(cset, tmp_cset, &tset->src_csets, mg_node) {
2377 list_splice_tail_init(&cset->mg_tasks, &cset->tasks);
2378 list_del_init(&cset->mg_node);
2379 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002380 spin_unlock_bh(&css_set_lock);
Tejun Heoadaae5d2015-09-11 15:00:21 -04002381 return ret;
2382}
2383
2384/**
Tejun Heo1958d2d2014-02-25 10:04:03 -05002385 * cgroup_migrate_finish - cleanup after attach
2386 * @preloaded_csets: list of preloaded css_sets
Ben Blum74a11662011-05-26 16:25:20 -07002387 *
Tejun Heo1958d2d2014-02-25 10:04:03 -05002388 * Undo cgroup_migrate_add_src() and cgroup_migrate_prepare_dst(). See
2389 * those functions for details.
Ben Blum74a11662011-05-26 16:25:20 -07002390 */
Tejun Heo1958d2d2014-02-25 10:04:03 -05002391static void cgroup_migrate_finish(struct list_head *preloaded_csets)
Ben Blum74a11662011-05-26 16:25:20 -07002392{
Tejun Heo1958d2d2014-02-25 10:04:03 -05002393 struct css_set *cset, *tmp_cset;
2394
2395 lockdep_assert_held(&cgroup_mutex);
2396
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002397 spin_lock_bh(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002398 list_for_each_entry_safe(cset, tmp_cset, preloaded_csets, mg_preload_node) {
2399 cset->mg_src_cgrp = NULL;
2400 cset->mg_dst_cset = NULL;
2401 list_del_init(&cset->mg_preload_node);
Zefan Lia25eb522014-09-19 16:51:00 +08002402 put_css_set_locked(cset);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002403 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002404 spin_unlock_bh(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002405}
2406
2407/**
2408 * cgroup_migrate_add_src - add a migration source css_set
2409 * @src_cset: the source css_set to add
2410 * @dst_cgrp: the destination cgroup
2411 * @preloaded_csets: list of preloaded css_sets
2412 *
2413 * Tasks belonging to @src_cset are about to be migrated to @dst_cgrp. Pin
2414 * @src_cset and add it to @preloaded_csets, which should later be cleaned
2415 * up by cgroup_migrate_finish().
2416 *
Tejun Heo1ed13282015-09-16 12:53:17 -04002417 * This function may be called without holding cgroup_threadgroup_rwsem
2418 * even if the target is a process. Threads may be created and destroyed
2419 * but as long as cgroup_mutex is not dropped, no new css_set can be put
2420 * into play and the preloaded css_sets are guaranteed to cover all
2421 * migrations.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002422 */
2423static void cgroup_migrate_add_src(struct css_set *src_cset,
2424 struct cgroup *dst_cgrp,
2425 struct list_head *preloaded_csets)
2426{
2427 struct cgroup *src_cgrp;
2428
2429 lockdep_assert_held(&cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002430 lockdep_assert_held(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002431
2432 src_cgrp = cset_cgroup_from_root(src_cset, dst_cgrp->root);
2433
Tejun Heo1958d2d2014-02-25 10:04:03 -05002434 if (!list_empty(&src_cset->mg_preload_node))
2435 return;
2436
2437 WARN_ON(src_cset->mg_src_cgrp);
2438 WARN_ON(!list_empty(&src_cset->mg_tasks));
2439 WARN_ON(!list_empty(&src_cset->mg_node));
2440
2441 src_cset->mg_src_cgrp = src_cgrp;
2442 get_css_set(src_cset);
2443 list_add(&src_cset->mg_preload_node, preloaded_csets);
2444}
2445
2446/**
2447 * cgroup_migrate_prepare_dst - prepare destination css_sets for migration
Tejun Heof817de92014-04-23 11:13:16 -04002448 * @dst_cgrp: the destination cgroup (may be %NULL)
Tejun Heo1958d2d2014-02-25 10:04:03 -05002449 * @preloaded_csets: list of preloaded source css_sets
2450 *
2451 * Tasks are about to be moved to @dst_cgrp and all the source css_sets
2452 * have been preloaded to @preloaded_csets. This function looks up and
Tejun Heof817de92014-04-23 11:13:16 -04002453 * pins all destination css_sets, links each to its source, and append them
2454 * to @preloaded_csets. If @dst_cgrp is %NULL, the destination of each
2455 * source css_set is assumed to be its cgroup on the default hierarchy.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002456 *
2457 * This function must be called after cgroup_migrate_add_src() has been
2458 * called on each migration source css_set. After migration is performed
2459 * using cgroup_migrate(), cgroup_migrate_finish() must be called on
2460 * @preloaded_csets.
2461 */
2462static int cgroup_migrate_prepare_dst(struct cgroup *dst_cgrp,
2463 struct list_head *preloaded_csets)
2464{
2465 LIST_HEAD(csets);
Tejun Heof817de92014-04-23 11:13:16 -04002466 struct css_set *src_cset, *tmp_cset;
Tejun Heo1958d2d2014-02-25 10:04:03 -05002467
2468 lockdep_assert_held(&cgroup_mutex);
2469
Tejun Heof8f22e52014-04-23 11:13:16 -04002470 /*
2471 * Except for the root, child_subsys_mask must be zero for a cgroup
2472 * with tasks so that child cgroups don't compete against tasks.
2473 */
Tejun Heod51f39b2014-05-16 13:22:48 -04002474 if (dst_cgrp && cgroup_on_dfl(dst_cgrp) && cgroup_parent(dst_cgrp) &&
Tejun Heof8f22e52014-04-23 11:13:16 -04002475 dst_cgrp->child_subsys_mask)
2476 return -EBUSY;
2477
Tejun Heo1958d2d2014-02-25 10:04:03 -05002478 /* look up the dst cset for each src cset and link it to src */
Tejun Heof817de92014-04-23 11:13:16 -04002479 list_for_each_entry_safe(src_cset, tmp_cset, preloaded_csets, mg_preload_node) {
Tejun Heo1958d2d2014-02-25 10:04:03 -05002480 struct css_set *dst_cset;
2481
Tejun Heof817de92014-04-23 11:13:16 -04002482 dst_cset = find_css_set(src_cset,
2483 dst_cgrp ?: src_cset->dfl_cgrp);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002484 if (!dst_cset)
2485 goto err;
2486
2487 WARN_ON_ONCE(src_cset->mg_dst_cset || dst_cset->mg_dst_cset);
Tejun Heof817de92014-04-23 11:13:16 -04002488
2489 /*
2490 * If src cset equals dst, it's noop. Drop the src.
2491 * cgroup_migrate() will skip the cset too. Note that we
2492 * can't handle src == dst as some nodes are used by both.
2493 */
2494 if (src_cset == dst_cset) {
2495 src_cset->mg_src_cgrp = NULL;
2496 list_del_init(&src_cset->mg_preload_node);
Zefan Lia25eb522014-09-19 16:51:00 +08002497 put_css_set(src_cset);
2498 put_css_set(dst_cset);
Tejun Heof817de92014-04-23 11:13:16 -04002499 continue;
2500 }
2501
Tejun Heo1958d2d2014-02-25 10:04:03 -05002502 src_cset->mg_dst_cset = dst_cset;
2503
2504 if (list_empty(&dst_cset->mg_preload_node))
2505 list_add(&dst_cset->mg_preload_node, &csets);
2506 else
Zefan Lia25eb522014-09-19 16:51:00 +08002507 put_css_set(dst_cset);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002508 }
2509
Tejun Heof817de92014-04-23 11:13:16 -04002510 list_splice_tail(&csets, preloaded_csets);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002511 return 0;
2512err:
2513 cgroup_migrate_finish(&csets);
2514 return -ENOMEM;
2515}
2516
2517/**
2518 * cgroup_migrate - migrate a process or task to a cgroup
Tejun Heo1958d2d2014-02-25 10:04:03 -05002519 * @leader: the leader of the process or the task to migrate
2520 * @threadgroup: whether @leader points to the whole process or a single task
Tejun Heo9af2ec42015-09-11 15:00:20 -04002521 * @cgrp: the destination cgroup
Tejun Heo1958d2d2014-02-25 10:04:03 -05002522 *
2523 * Migrate a process or task denoted by @leader to @cgrp. If migrating a
Tejun Heo1ed13282015-09-16 12:53:17 -04002524 * process, the caller must be holding cgroup_threadgroup_rwsem. The
Tejun Heo1958d2d2014-02-25 10:04:03 -05002525 * caller is also responsible for invoking cgroup_migrate_add_src() and
2526 * cgroup_migrate_prepare_dst() on the targets before invoking this
2527 * function and following up with cgroup_migrate_finish().
2528 *
2529 * As long as a controller's ->can_attach() doesn't fail, this function is
2530 * guaranteed to succeed. This means that, excluding ->can_attach()
2531 * failure, when migrating multiple targets, the success or failure can be
2532 * decided for all targets by invoking group_migrate_prepare_dst() before
2533 * actually starting migrating.
2534 */
Tejun Heo9af2ec42015-09-11 15:00:20 -04002535static int cgroup_migrate(struct task_struct *leader, bool threadgroup,
2536 struct cgroup *cgrp)
Ben Blum74a11662011-05-26 16:25:20 -07002537{
Tejun Heoadaae5d2015-09-11 15:00:21 -04002538 struct cgroup_taskset tset = CGROUP_TASKSET_INIT(tset);
2539 struct task_struct *task;
Ben Blum74a11662011-05-26 16:25:20 -07002540
2541 /*
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002542 * Prevent freeing of tasks while we take a snapshot. Tasks that are
2543 * already PF_EXITING could be freed from underneath us unless we
2544 * take an rcu_read_lock.
2545 */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002546 spin_lock_bh(&css_set_lock);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002547 rcu_read_lock();
Tejun Heo9db8de32014-02-13 06:58:43 -05002548 task = leader;
Ben Blum74a11662011-05-26 16:25:20 -07002549 do {
Tejun Heoadaae5d2015-09-11 15:00:21 -04002550 cgroup_taskset_add(task, &tset);
Li Zefan081aa452013-03-13 09:17:09 +08002551 if (!threadgroup)
2552 break;
Tejun Heo9db8de32014-02-13 06:58:43 -05002553 } while_each_thread(leader, task);
Mandeep Singh Bainesfb5d2b42012-01-03 21:18:31 -08002554 rcu_read_unlock();
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002555 spin_unlock_bh(&css_set_lock);
Ben Blum74a11662011-05-26 16:25:20 -07002556
Tejun Heoadaae5d2015-09-11 15:00:21 -04002557 return cgroup_taskset_migrate(&tset, cgrp);
Ben Blum74a11662011-05-26 16:25:20 -07002558}
2559
Tejun Heo1958d2d2014-02-25 10:04:03 -05002560/**
2561 * cgroup_attach_task - attach a task or a whole threadgroup to a cgroup
2562 * @dst_cgrp: the cgroup to attach to
2563 * @leader: the task or the leader of the threadgroup to be attached
2564 * @threadgroup: attach the whole threadgroup?
2565 *
Tejun Heo1ed13282015-09-16 12:53:17 -04002566 * Call holding cgroup_mutex and cgroup_threadgroup_rwsem.
Tejun Heo1958d2d2014-02-25 10:04:03 -05002567 */
2568static int cgroup_attach_task(struct cgroup *dst_cgrp,
2569 struct task_struct *leader, bool threadgroup)
2570{
2571 LIST_HEAD(preloaded_csets);
2572 struct task_struct *task;
2573 int ret;
2574
2575 /* look up all src csets */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002576 spin_lock_bh(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002577 rcu_read_lock();
2578 task = leader;
2579 do {
2580 cgroup_migrate_add_src(task_css_set(task), dst_cgrp,
2581 &preloaded_csets);
2582 if (!threadgroup)
2583 break;
2584 } while_each_thread(leader, task);
2585 rcu_read_unlock();
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002586 spin_unlock_bh(&css_set_lock);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002587
2588 /* prepare dst csets and commit */
2589 ret = cgroup_migrate_prepare_dst(dst_cgrp, &preloaded_csets);
2590 if (!ret)
Tejun Heo9af2ec42015-09-11 15:00:20 -04002591 ret = cgroup_migrate(leader, threadgroup, dst_cgrp);
Tejun Heo1958d2d2014-02-25 10:04:03 -05002592
2593 cgroup_migrate_finish(&preloaded_csets);
2594 return ret;
Ben Blum74a11662011-05-26 16:25:20 -07002595}
2596
Tejun Heo187fe842015-06-18 16:54:28 -04002597static int cgroup_procs_write_permission(struct task_struct *task,
2598 struct cgroup *dst_cgrp,
2599 struct kernfs_open_file *of)
Tejun Heodedf22e2015-06-18 16:54:28 -04002600{
2601 const struct cred *cred = current_cred();
2602 const struct cred *tcred = get_task_cred(task);
2603 int ret = 0;
2604
2605 /*
2606 * even if we're attaching all tasks in the thread group, we only
2607 * need to check permissions on one of them.
2608 */
2609 if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
2610 !uid_eq(cred->euid, tcred->uid) &&
2611 !uid_eq(cred->euid, tcred->suid))
2612 ret = -EACCES;
2613
Tejun Heo187fe842015-06-18 16:54:28 -04002614 if (!ret && cgroup_on_dfl(dst_cgrp)) {
2615 struct super_block *sb = of->file->f_path.dentry->d_sb;
2616 struct cgroup *cgrp;
2617 struct inode *inode;
2618
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002619 spin_lock_bh(&css_set_lock);
Tejun Heo187fe842015-06-18 16:54:28 -04002620 cgrp = task_cgroup_from_root(task, &cgrp_dfl_root);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002621 spin_unlock_bh(&css_set_lock);
Tejun Heo187fe842015-06-18 16:54:28 -04002622
2623 while (!cgroup_is_descendant(dst_cgrp, cgrp))
2624 cgrp = cgroup_parent(cgrp);
2625
2626 ret = -ENOMEM;
Tejun Heo6f60ead2015-09-18 17:54:23 -04002627 inode = kernfs_get_inode(sb, cgrp->procs_file.kn);
Tejun Heo187fe842015-06-18 16:54:28 -04002628 if (inode) {
2629 ret = inode_permission(inode, MAY_WRITE);
2630 iput(inode);
2631 }
2632 }
2633
Tejun Heodedf22e2015-06-18 16:54:28 -04002634 put_cred(tcred);
2635 return ret;
2636}
2637
Ben Blum74a11662011-05-26 16:25:20 -07002638/*
2639 * Find the task_struct of the task to attach by vpid and pass it along to the
Tejun Heocd3d0952011-12-12 18:12:21 -08002640 * function to attach either it or all tasks in its threadgroup. Will lock
Tejun Heo0e1d7682014-02-25 10:04:03 -05002641 * cgroup_mutex and threadgroup.
Ben Blum74a11662011-05-26 16:25:20 -07002642 */
Tejun Heoacbef752014-05-13 12:16:22 -04002643static ssize_t __cgroup_procs_write(struct kernfs_open_file *of, char *buf,
2644 size_t nbytes, loff_t off, bool threadgroup)
Paul Menagebbcb81d2007-10-18 23:39:32 -07002645{
Paul Menagebbcb81d2007-10-18 23:39:32 -07002646 struct task_struct *tsk;
Tejun Heoe76ecae2014-05-13 12:19:23 -04002647 struct cgroup *cgrp;
Tejun Heoacbef752014-05-13 12:16:22 -04002648 pid_t pid;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002649 int ret;
2650
Tejun Heoacbef752014-05-13 12:16:22 -04002651 if (kstrtoint(strstrip(buf), 0, &pid) || pid < 0)
2652 return -EINVAL;
2653
Tejun Heoe76ecae2014-05-13 12:19:23 -04002654 cgrp = cgroup_kn_lock_live(of->kn);
2655 if (!cgrp)
Ben Blum74a11662011-05-26 16:25:20 -07002656 return -ENODEV;
2657
Tejun Heo3014dde2015-09-16 13:03:02 -04002658 percpu_down_write(&cgroup_threadgroup_rwsem);
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002659 rcu_read_lock();
Paul Menagebbcb81d2007-10-18 23:39:32 -07002660 if (pid) {
Pavel Emelyanov73507f32008-02-07 00:14:47 -08002661 tsk = find_task_by_vpid(pid);
Ben Blum74a11662011-05-26 16:25:20 -07002662 if (!tsk) {
SeongJae Parkdd4b0a42014-01-18 16:56:47 +09002663 ret = -ESRCH;
Tejun Heo3014dde2015-09-16 13:03:02 -04002664 goto out_unlock_rcu;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002665 }
Tejun Heodedf22e2015-06-18 16:54:28 -04002666 } else {
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002667 tsk = current;
Tejun Heodedf22e2015-06-18 16:54:28 -04002668 }
Tejun Heocd3d0952011-12-12 18:12:21 -08002669
2670 if (threadgroup)
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002671 tsk = tsk->group_leader;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002672
2673 /*
Tejun Heo14a40ff2013-03-19 13:45:20 -07002674 * Workqueue threads may acquire PF_NO_SETAFFINITY and become
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002675 * trapped in a cpuset, or RT worker may be born in a cgroup
2676 * with no rt_runtime allocated. Just say no.
2677 */
Tejun Heo14a40ff2013-03-19 13:45:20 -07002678 if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) {
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002679 ret = -EINVAL;
Tejun Heo3014dde2015-09-16 13:03:02 -04002680 goto out_unlock_rcu;
Mike Galbraithc4c27fb2012-04-21 09:13:46 +02002681 }
2682
Mandeep Singh Bainesb78949e2012-01-03 21:18:30 -08002683 get_task_struct(tsk);
2684 rcu_read_unlock();
Tejun Heocd3d0952011-12-12 18:12:21 -08002685
Tejun Heo187fe842015-06-18 16:54:28 -04002686 ret = cgroup_procs_write_permission(tsk, cgrp, of);
Tejun Heodedf22e2015-06-18 16:54:28 -04002687 if (!ret)
2688 ret = cgroup_attach_task(cgrp, tsk, threadgroup);
Li Zefan081aa452013-03-13 09:17:09 +08002689
Tejun Heof9f9e7b2015-09-16 11:51:12 -04002690 put_task_struct(tsk);
Tejun Heo3014dde2015-09-16 13:03:02 -04002691 goto out_unlock_threadgroup;
2692
2693out_unlock_rcu:
2694 rcu_read_unlock();
2695out_unlock_threadgroup:
2696 percpu_up_write(&cgroup_threadgroup_rwsem);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002697 cgroup_kn_unlock(of->kn);
Tejun Heoacbef752014-05-13 12:16:22 -04002698 return ret ?: nbytes;
Paul Menagebbcb81d2007-10-18 23:39:32 -07002699}
2700
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002701/**
2702 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from'
2703 * @from: attach to all cgroups of a given task
2704 * @tsk: the task to be attached
2705 */
2706int cgroup_attach_task_all(struct task_struct *from, struct task_struct *tsk)
2707{
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002708 struct cgroup_root *root;
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002709 int retval = 0;
2710
Tejun Heo47cfcd02013-04-07 09:29:51 -07002711 mutex_lock(&cgroup_mutex);
Tejun Heo985ed672014-03-19 10:23:53 -04002712 for_each_root(root) {
Tejun Heo96d365e2014-02-13 06:58:40 -05002713 struct cgroup *from_cgrp;
2714
Tejun Heo3dd06ff2014-03-19 10:23:54 -04002715 if (root == &cgrp_dfl_root)
Tejun Heo985ed672014-03-19 10:23:53 -04002716 continue;
2717
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002718 spin_lock_bh(&css_set_lock);
Tejun Heo96d365e2014-02-13 06:58:40 -05002719 from_cgrp = task_cgroup_from_root(from, root);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002720 spin_unlock_bh(&css_set_lock);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002721
Li Zefan6f4b7e62013-07-31 16:18:36 +08002722 retval = cgroup_attach_task(from_cgrp, tsk, false);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002723 if (retval)
2724 break;
2725 }
Tejun Heo47cfcd02013-04-07 09:29:51 -07002726 mutex_unlock(&cgroup_mutex);
Tejun Heo7ae1bad2013-04-07 09:29:51 -07002727
2728 return retval;
2729}
2730EXPORT_SYMBOL_GPL(cgroup_attach_task_all);
2731
Tejun Heoacbef752014-05-13 12:16:22 -04002732static ssize_t cgroup_tasks_write(struct kernfs_open_file *of,
2733 char *buf, size_t nbytes, loff_t off)
Paul Menageaf351022008-07-25 01:47:01 -07002734{
Tejun Heoacbef752014-05-13 12:16:22 -04002735 return __cgroup_procs_write(of, buf, nbytes, off, false);
Ben Blum74a11662011-05-26 16:25:20 -07002736}
2737
Tejun Heoacbef752014-05-13 12:16:22 -04002738static ssize_t cgroup_procs_write(struct kernfs_open_file *of,
2739 char *buf, size_t nbytes, loff_t off)
Ben Blum74a11662011-05-26 16:25:20 -07002740{
Tejun Heoacbef752014-05-13 12:16:22 -04002741 return __cgroup_procs_write(of, buf, nbytes, off, true);
Paul Menageaf351022008-07-25 01:47:01 -07002742}
2743
Tejun Heo451af502014-05-13 12:16:21 -04002744static ssize_t cgroup_release_agent_write(struct kernfs_open_file *of,
2745 char *buf, size_t nbytes, loff_t off)
Paul Menagee788e062008-07-25 01:46:59 -07002746{
Tejun Heoe76ecae2014-05-13 12:19:23 -04002747 struct cgroup *cgrp;
Tejun Heo5f469902014-02-11 11:52:48 -05002748
Tejun Heoe76ecae2014-05-13 12:19:23 -04002749 BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX);
2750
2751 cgrp = cgroup_kn_lock_live(of->kn);
2752 if (!cgrp)
Paul Menagee788e062008-07-25 01:46:59 -07002753 return -ENODEV;
Tejun Heo69e943b2014-02-08 10:36:58 -05002754 spin_lock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002755 strlcpy(cgrp->root->release_agent_path, strstrip(buf),
2756 sizeof(cgrp->root->release_agent_path));
Tejun Heo69e943b2014-02-08 10:36:58 -05002757 spin_unlock(&release_agent_path_lock);
Tejun Heoe76ecae2014-05-13 12:19:23 -04002758 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04002759 return nbytes;
Paul Menagee788e062008-07-25 01:46:59 -07002760}
2761
Tejun Heo2da8ca82013-12-05 12:28:04 -05002762static int cgroup_release_agent_show(struct seq_file *seq, void *v)
Paul Menagee788e062008-07-25 01:46:59 -07002763{
Tejun Heo2da8ca82013-12-05 12:28:04 -05002764 struct cgroup *cgrp = seq_css(seq)->cgroup;
Tejun Heo182446d2013-08-08 20:11:24 -04002765
Tejun Heo46cfeb02014-05-13 12:11:00 -04002766 spin_lock(&release_agent_path_lock);
Paul Menagee788e062008-07-25 01:46:59 -07002767 seq_puts(seq, cgrp->root->release_agent_path);
Tejun Heo46cfeb02014-05-13 12:11:00 -04002768 spin_unlock(&release_agent_path_lock);
Paul Menagee788e062008-07-25 01:46:59 -07002769 seq_putc(seq, '\n');
Paul Menagee788e062008-07-25 01:46:59 -07002770 return 0;
2771}
2772
Tejun Heo2da8ca82013-12-05 12:28:04 -05002773static int cgroup_sane_behavior_show(struct seq_file *seq, void *v)
Tejun Heo873fe092013-04-14 20:15:26 -07002774{
Tejun Heoc1d5d422014-07-09 10:08:08 -04002775 seq_puts(seq, "0\n");
Paul Menage81a6a5c2007-10-18 23:39:38 -07002776 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07002777}
2778
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10002779static void cgroup_print_ss_mask(struct seq_file *seq, unsigned long ss_mask)
Tejun Heof8f22e52014-04-23 11:13:16 -04002780{
2781 struct cgroup_subsys *ss;
2782 bool printed = false;
2783 int ssid;
2784
Aleksa Saraia966a4e2015-06-06 10:02:15 +10002785 for_each_subsys_which(ss, ssid, &ss_mask) {
2786 if (printed)
2787 seq_putc(seq, ' ');
2788 seq_printf(seq, "%s", ss->name);
2789 printed = true;
Tejun Heof8f22e52014-04-23 11:13:16 -04002790 }
2791 if (printed)
2792 seq_putc(seq, '\n');
2793}
2794
2795/* show controllers which are currently attached to the default hierarchy */
2796static int cgroup_root_controllers_show(struct seq_file *seq, void *v)
2797{
2798 struct cgroup *cgrp = seq_css(seq)->cgroup;
2799
Tejun Heo5533e012014-05-14 19:33:07 -04002800 cgroup_print_ss_mask(seq, cgrp->root->subsys_mask &
2801 ~cgrp_dfl_root_inhibit_ss_mask);
Tejun Heof8f22e52014-04-23 11:13:16 -04002802 return 0;
2803}
2804
2805/* show controllers which are enabled from the parent */
2806static int cgroup_controllers_show(struct seq_file *seq, void *v)
2807{
2808 struct cgroup *cgrp = seq_css(seq)->cgroup;
2809
Tejun Heo667c2492014-07-08 18:02:56 -04002810 cgroup_print_ss_mask(seq, cgroup_parent(cgrp)->subtree_control);
Tejun Heof8f22e52014-04-23 11:13:16 -04002811 return 0;
2812}
2813
2814/* show controllers which are enabled for a given cgroup's children */
2815static int cgroup_subtree_control_show(struct seq_file *seq, void *v)
2816{
2817 struct cgroup *cgrp = seq_css(seq)->cgroup;
2818
Tejun Heo667c2492014-07-08 18:02:56 -04002819 cgroup_print_ss_mask(seq, cgrp->subtree_control);
Tejun Heof8f22e52014-04-23 11:13:16 -04002820 return 0;
2821}
2822
2823/**
2824 * cgroup_update_dfl_csses - update css assoc of a subtree in default hierarchy
2825 * @cgrp: root of the subtree to update csses for
2826 *
2827 * @cgrp's child_subsys_mask has changed and its subtree's (self excluded)
2828 * css associations need to be updated accordingly. This function looks up
2829 * all css_sets which are attached to the subtree, creates the matching
2830 * updated css_sets and migrates the tasks to the new ones.
2831 */
2832static int cgroup_update_dfl_csses(struct cgroup *cgrp)
2833{
2834 LIST_HEAD(preloaded_csets);
Tejun Heo10265072015-09-11 15:00:22 -04002835 struct cgroup_taskset tset = CGROUP_TASKSET_INIT(tset);
Tejun Heof8f22e52014-04-23 11:13:16 -04002836 struct cgroup_subsys_state *css;
2837 struct css_set *src_cset;
2838 int ret;
2839
Tejun Heof8f22e52014-04-23 11:13:16 -04002840 lockdep_assert_held(&cgroup_mutex);
2841
Tejun Heo3014dde2015-09-16 13:03:02 -04002842 percpu_down_write(&cgroup_threadgroup_rwsem);
2843
Tejun Heof8f22e52014-04-23 11:13:16 -04002844 /* look up all csses currently attached to @cgrp's subtree */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002845 spin_lock_bh(&css_set_lock);
Tejun Heof8f22e52014-04-23 11:13:16 -04002846 css_for_each_descendant_pre(css, cgroup_css(cgrp, NULL)) {
2847 struct cgrp_cset_link *link;
2848
2849 /* self is not affected by child_subsys_mask change */
2850 if (css->cgroup == cgrp)
2851 continue;
2852
2853 list_for_each_entry(link, &css->cgroup->cset_links, cset_link)
2854 cgroup_migrate_add_src(link->cset, cgrp,
2855 &preloaded_csets);
2856 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002857 spin_unlock_bh(&css_set_lock);
Tejun Heof8f22e52014-04-23 11:13:16 -04002858
2859 /* NULL dst indicates self on default hierarchy */
2860 ret = cgroup_migrate_prepare_dst(NULL, &preloaded_csets);
2861 if (ret)
2862 goto out_finish;
2863
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002864 spin_lock_bh(&css_set_lock);
Tejun Heof8f22e52014-04-23 11:13:16 -04002865 list_for_each_entry(src_cset, &preloaded_csets, mg_preload_node) {
Tejun Heo10265072015-09-11 15:00:22 -04002866 struct task_struct *task, *ntask;
Tejun Heof8f22e52014-04-23 11:13:16 -04002867
2868 /* src_csets precede dst_csets, break on the first dst_cset */
2869 if (!src_cset->mg_src_cgrp)
2870 break;
2871
Tejun Heo10265072015-09-11 15:00:22 -04002872 /* all tasks in src_csets need to be migrated */
2873 list_for_each_entry_safe(task, ntask, &src_cset->tasks, cg_list)
2874 cgroup_taskset_add(task, &tset);
Tejun Heof8f22e52014-04-23 11:13:16 -04002875 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04002876 spin_unlock_bh(&css_set_lock);
Tejun Heof8f22e52014-04-23 11:13:16 -04002877
Tejun Heo10265072015-09-11 15:00:22 -04002878 ret = cgroup_taskset_migrate(&tset, cgrp);
Tejun Heof8f22e52014-04-23 11:13:16 -04002879out_finish:
2880 cgroup_migrate_finish(&preloaded_csets);
Tejun Heo3014dde2015-09-16 13:03:02 -04002881 percpu_up_write(&cgroup_threadgroup_rwsem);
Tejun Heof8f22e52014-04-23 11:13:16 -04002882 return ret;
2883}
2884
2885/* change the enabled child controllers for a cgroup in the default hierarchy */
Tejun Heo451af502014-05-13 12:16:21 -04002886static ssize_t cgroup_subtree_control_write(struct kernfs_open_file *of,
2887 char *buf, size_t nbytes,
2888 loff_t off)
Tejun Heof8f22e52014-04-23 11:13:16 -04002889{
Aleksa Sarai8ab456a2015-05-19 00:51:00 +10002890 unsigned long enable = 0, disable = 0;
2891 unsigned long css_enable, css_disable, old_sc, new_sc, old_ss, new_ss;
Tejun Heoa9746d82014-05-13 12:19:22 -04002892 struct cgroup *cgrp, *child;
Tejun Heof8f22e52014-04-23 11:13:16 -04002893 struct cgroup_subsys *ss;
Tejun Heo451af502014-05-13 12:16:21 -04002894 char *tok;
Tejun Heof8f22e52014-04-23 11:13:16 -04002895 int ssid, ret;
2896
2897 /*
Tejun Heod37167a2014-05-13 12:10:59 -04002898 * Parse input - space separated list of subsystem names prefixed
2899 * with either + or -.
Tejun Heof8f22e52014-04-23 11:13:16 -04002900 */
Tejun Heo451af502014-05-13 12:16:21 -04002901 buf = strstrip(buf);
2902 while ((tok = strsep(&buf, " "))) {
Aleksa Saraia966a4e2015-06-06 10:02:15 +10002903 unsigned long tmp_ss_mask = ~cgrp_dfl_root_inhibit_ss_mask;
2904
Tejun Heod37167a2014-05-13 12:10:59 -04002905 if (tok[0] == '\0')
2906 continue;
Aleksa Saraia966a4e2015-06-06 10:02:15 +10002907 for_each_subsys_which(ss, ssid, &tmp_ss_mask) {
Tejun Heofc5ed1e2015-09-18 11:56:28 -04002908 if (!cgroup_ssid_enabled(ssid) ||
2909 strcmp(tok + 1, ss->name))
Tejun Heof8f22e52014-04-23 11:13:16 -04002910 continue;
2911
2912 if (*tok == '+') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04002913 enable |= 1 << ssid;
2914 disable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002915 } else if (*tok == '-') {
Tejun Heo7d331fa2014-05-13 12:11:00 -04002916 disable |= 1 << ssid;
2917 enable &= ~(1 << ssid);
Tejun Heof8f22e52014-04-23 11:13:16 -04002918 } else {
2919 return -EINVAL;
2920 }
2921 break;
2922 }
2923 if (ssid == CGROUP_SUBSYS_COUNT)
2924 return -EINVAL;
2925 }
2926
Tejun Heoa9746d82014-05-13 12:19:22 -04002927 cgrp = cgroup_kn_lock_live(of->kn);
2928 if (!cgrp)
2929 return -ENODEV;
Tejun Heof8f22e52014-04-23 11:13:16 -04002930
2931 for_each_subsys(ss, ssid) {
2932 if (enable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04002933 if (cgrp->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002934 enable &= ~(1 << ssid);
2935 continue;
2936 }
2937
Tejun Heoc29adf22014-07-08 18:02:56 -04002938 /* unavailable or not enabled on the parent? */
2939 if (!(cgrp_dfl_root.subsys_mask & (1 << ssid)) ||
2940 (cgroup_parent(cgrp) &&
Tejun Heo667c2492014-07-08 18:02:56 -04002941 !(cgroup_parent(cgrp)->subtree_control & (1 << ssid)))) {
Tejun Heoc29adf22014-07-08 18:02:56 -04002942 ret = -ENOENT;
2943 goto out_unlock;
2944 }
Tejun Heof8f22e52014-04-23 11:13:16 -04002945 } else if (disable & (1 << ssid)) {
Tejun Heo667c2492014-07-08 18:02:56 -04002946 if (!(cgrp->subtree_control & (1 << ssid))) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002947 disable &= ~(1 << ssid);
2948 continue;
2949 }
2950
2951 /* a child has it enabled? */
2952 cgroup_for_each_live_child(child, cgrp) {
Tejun Heo667c2492014-07-08 18:02:56 -04002953 if (child->subtree_control & (1 << ssid)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002954 ret = -EBUSY;
Tejun Heoddab2b62014-05-13 12:19:22 -04002955 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04002956 }
2957 }
2958 }
2959 }
2960
2961 if (!enable && !disable) {
2962 ret = 0;
Tejun Heoddab2b62014-05-13 12:19:22 -04002963 goto out_unlock;
Tejun Heof8f22e52014-04-23 11:13:16 -04002964 }
2965
2966 /*
Tejun Heo667c2492014-07-08 18:02:56 -04002967 * Except for the root, subtree_control must be zero for a cgroup
Tejun Heof8f22e52014-04-23 11:13:16 -04002968 * with tasks so that child cgroups don't compete against tasks.
2969 */
Tejun Heod51f39b2014-05-16 13:22:48 -04002970 if (enable && cgroup_parent(cgrp) && !list_empty(&cgrp->cset_links)) {
Tejun Heof8f22e52014-04-23 11:13:16 -04002971 ret = -EBUSY;
2972 goto out_unlock;
2973 }
2974
2975 /*
Tejun Heof63070d2014-07-08 18:02:57 -04002976 * Update subsys masks and calculate what needs to be done. More
2977 * subsystems than specified may need to be enabled or disabled
2978 * depending on subsystem dependencies.
2979 */
Tejun Heo755bf5e2014-11-18 02:49:50 -05002980 old_sc = cgrp->subtree_control;
2981 old_ss = cgrp->child_subsys_mask;
2982 new_sc = (old_sc | enable) & ~disable;
2983 new_ss = cgroup_calc_child_subsys_mask(cgrp, new_sc);
Tejun Heoc29adf22014-07-08 18:02:56 -04002984
Tejun Heo755bf5e2014-11-18 02:49:50 -05002985 css_enable = ~old_ss & new_ss;
2986 css_disable = old_ss & ~new_ss;
Tejun Heof63070d2014-07-08 18:02:57 -04002987 enable |= css_enable;
2988 disable |= css_disable;
2989
Tejun Heodb6e3052014-11-18 02:49:51 -05002990 /*
2991 * Because css offlining is asynchronous, userland might try to
2992 * re-enable the same controller while the previous instance is
2993 * still around. In such cases, wait till it's gone using
2994 * offline_waitq.
2995 */
Aleksa Saraia966a4e2015-06-06 10:02:15 +10002996 for_each_subsys_which(ss, ssid, &css_enable) {
Tejun Heodb6e3052014-11-18 02:49:51 -05002997 cgroup_for_each_live_child(child, cgrp) {
2998 DEFINE_WAIT(wait);
2999
3000 if (!cgroup_css(child, ss))
3001 continue;
3002
3003 cgroup_get(child);
3004 prepare_to_wait(&child->offline_waitq, &wait,
3005 TASK_UNINTERRUPTIBLE);
3006 cgroup_kn_unlock(of->kn);
3007 schedule();
3008 finish_wait(&child->offline_waitq, &wait);
3009 cgroup_put(child);
3010
3011 return restart_syscall();
3012 }
3013 }
3014
Tejun Heo755bf5e2014-11-18 02:49:50 -05003015 cgrp->subtree_control = new_sc;
3016 cgrp->child_subsys_mask = new_ss;
3017
Tejun Heof63070d2014-07-08 18:02:57 -04003018 /*
3019 * Create new csses or make the existing ones visible. A css is
3020 * created invisible if it's being implicitly enabled through
3021 * dependency. An invisible css is made visible when the userland
3022 * explicitly enables it.
Tejun Heof8f22e52014-04-23 11:13:16 -04003023 */
3024 for_each_subsys(ss, ssid) {
3025 if (!(enable & (1 << ssid)))
3026 continue;
3027
3028 cgroup_for_each_live_child(child, cgrp) {
Tejun Heof63070d2014-07-08 18:02:57 -04003029 if (css_enable & (1 << ssid))
3030 ret = create_css(child, ss,
3031 cgrp->subtree_control & (1 << ssid));
3032 else
Tejun Heo4df8dc92015-09-18 17:54:23 -04003033 ret = css_populate_dir(cgroup_css(child, ss),
3034 NULL);
Tejun Heof8f22e52014-04-23 11:13:16 -04003035 if (ret)
3036 goto err_undo_css;
3037 }
3038 }
3039
Tejun Heoc29adf22014-07-08 18:02:56 -04003040 /*
3041 * At this point, cgroup_e_css() results reflect the new csses
3042 * making the following cgroup_update_dfl_csses() properly update
3043 * css associations of all tasks in the subtree.
3044 */
Tejun Heof8f22e52014-04-23 11:13:16 -04003045 ret = cgroup_update_dfl_csses(cgrp);
3046 if (ret)
3047 goto err_undo_css;
3048
Tejun Heof63070d2014-07-08 18:02:57 -04003049 /*
3050 * All tasks are migrated out of disabled csses. Kill or hide
3051 * them. A css is hidden when the userland requests it to be
Tejun Heob4536f0ca2014-07-08 18:02:57 -04003052 * disabled while other subsystems are still depending on it. The
3053 * css must not actively control resources and be in the vanilla
3054 * state if it's made visible again later. Controllers which may
3055 * be depended upon should provide ->css_reset() for this purpose.
Tejun Heof63070d2014-07-08 18:02:57 -04003056 */
Tejun Heof8f22e52014-04-23 11:13:16 -04003057 for_each_subsys(ss, ssid) {
3058 if (!(disable & (1 << ssid)))
3059 continue;
3060
Tejun Heof63070d2014-07-08 18:02:57 -04003061 cgroup_for_each_live_child(child, cgrp) {
Tejun Heob4536f0ca2014-07-08 18:02:57 -04003062 struct cgroup_subsys_state *css = cgroup_css(child, ss);
3063
3064 if (css_disable & (1 << ssid)) {
3065 kill_css(css);
3066 } else {
Tejun Heo4df8dc92015-09-18 17:54:23 -04003067 css_clear_dir(css, NULL);
Tejun Heob4536f0ca2014-07-08 18:02:57 -04003068 if (ss->css_reset)
3069 ss->css_reset(css);
3070 }
Tejun Heof63070d2014-07-08 18:02:57 -04003071 }
Tejun Heof8f22e52014-04-23 11:13:16 -04003072 }
3073
Tejun Heo56c807b2014-11-18 02:49:51 -05003074 /*
3075 * The effective csses of all the descendants (excluding @cgrp) may
3076 * have changed. Subsystems can optionally subscribe to this event
3077 * by implementing ->css_e_css_changed() which is invoked if any of
3078 * the effective csses seen from the css's cgroup may have changed.
3079 */
3080 for_each_subsys(ss, ssid) {
3081 struct cgroup_subsys_state *this_css = cgroup_css(cgrp, ss);
3082 struct cgroup_subsys_state *css;
3083
3084 if (!ss->css_e_css_changed || !this_css)
3085 continue;
3086
3087 css_for_each_descendant_pre(css, this_css)
3088 if (css != this_css)
3089 ss->css_e_css_changed(css);
3090 }
3091
Tejun Heof8f22e52014-04-23 11:13:16 -04003092 kernfs_activate(cgrp->kn);
3093 ret = 0;
3094out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04003095 cgroup_kn_unlock(of->kn);
Tejun Heo451af502014-05-13 12:16:21 -04003096 return ret ?: nbytes;
Tejun Heof8f22e52014-04-23 11:13:16 -04003097
3098err_undo_css:
Tejun Heo755bf5e2014-11-18 02:49:50 -05003099 cgrp->subtree_control = old_sc;
3100 cgrp->child_subsys_mask = old_ss;
Tejun Heof8f22e52014-04-23 11:13:16 -04003101
3102 for_each_subsys(ss, ssid) {
3103 if (!(enable & (1 << ssid)))
3104 continue;
3105
3106 cgroup_for_each_live_child(child, cgrp) {
3107 struct cgroup_subsys_state *css = cgroup_css(child, ss);
Tejun Heof63070d2014-07-08 18:02:57 -04003108
3109 if (!css)
3110 continue;
3111
3112 if (css_enable & (1 << ssid))
Tejun Heof8f22e52014-04-23 11:13:16 -04003113 kill_css(css);
Tejun Heof63070d2014-07-08 18:02:57 -04003114 else
Tejun Heo4df8dc92015-09-18 17:54:23 -04003115 css_clear_dir(css, NULL);
Tejun Heof8f22e52014-04-23 11:13:16 -04003116 }
3117 }
3118 goto out_unlock;
3119}
3120
Tejun Heo4a07c222015-09-18 17:54:22 -04003121static int cgroup_events_show(struct seq_file *seq, void *v)
Tejun Heo842b5972014-04-25 18:28:02 -04003122{
Tejun Heo4a07c222015-09-18 17:54:22 -04003123 seq_printf(seq, "populated %d\n",
Tejun Heo27bd4db2015-10-15 16:41:50 -04003124 cgroup_is_populated(seq_css(seq)->cgroup));
Tejun Heo842b5972014-04-25 18:28:02 -04003125 return 0;
3126}
3127
Tejun Heo2bd59d42014-02-11 11:52:49 -05003128static ssize_t cgroup_file_write(struct kernfs_open_file *of, char *buf,
3129 size_t nbytes, loff_t off)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003130{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003131 struct cgroup *cgrp = of->kn->parent->priv;
3132 struct cftype *cft = of->kn->priv;
3133 struct cgroup_subsys_state *css;
Tejun Heoa742c592013-12-05 12:28:03 -05003134 int ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003135
Tejun Heob4168642014-05-13 12:16:21 -04003136 if (cft->write)
3137 return cft->write(of, buf, nbytes, off);
3138
Tejun Heo2bd59d42014-02-11 11:52:49 -05003139 /*
3140 * kernfs guarantees that a file isn't deleted with operations in
3141 * flight, which means that the matching css is and stays alive and
3142 * doesn't need to be pinned. The RCU locking is not necessary
3143 * either. It's just for the convenience of using cgroup_css().
3144 */
3145 rcu_read_lock();
3146 css = cgroup_css(cgrp, cft->ss);
3147 rcu_read_unlock();
Paul Menageddbcc7e2007-10-18 23:39:30 -07003148
Tejun Heo451af502014-05-13 12:16:21 -04003149 if (cft->write_u64) {
Tejun Heoa742c592013-12-05 12:28:03 -05003150 unsigned long long v;
3151 ret = kstrtoull(buf, 0, &v);
3152 if (!ret)
3153 ret = cft->write_u64(css, cft, v);
3154 } else if (cft->write_s64) {
3155 long long v;
3156 ret = kstrtoll(buf, 0, &v);
3157 if (!ret)
3158 ret = cft->write_s64(css, cft, v);
Tejun Heoa742c592013-12-05 12:28:03 -05003159 } else {
3160 ret = -EINVAL;
3161 }
Tejun Heo2bd59d42014-02-11 11:52:49 -05003162
Tejun Heoa742c592013-12-05 12:28:03 -05003163 return ret ?: nbytes;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003164}
3165
Tejun Heo6612f052013-12-05 12:28:04 -05003166static void *cgroup_seqfile_start(struct seq_file *seq, loff_t *ppos)
Paul Menage91796562008-04-29 01:00:01 -07003167{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003168 return seq_cft(seq)->seq_start(seq, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05003169}
3170
3171static void *cgroup_seqfile_next(struct seq_file *seq, void *v, loff_t *ppos)
3172{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003173 return seq_cft(seq)->seq_next(seq, v, ppos);
Tejun Heo6612f052013-12-05 12:28:04 -05003174}
3175
3176static void cgroup_seqfile_stop(struct seq_file *seq, void *v)
3177{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003178 seq_cft(seq)->seq_stop(seq, v);
Paul Menage91796562008-04-29 01:00:01 -07003179}
3180
3181static int cgroup_seqfile_show(struct seq_file *m, void *arg)
3182{
Tejun Heo7da11272013-12-05 12:28:04 -05003183 struct cftype *cft = seq_cft(m);
3184 struct cgroup_subsys_state *css = seq_css(m);
Li Zefane0798ce2013-07-31 17:36:25 +08003185
Tejun Heo2da8ca82013-12-05 12:28:04 -05003186 if (cft->seq_show)
3187 return cft->seq_show(m, arg);
Paul Menage91796562008-04-29 01:00:01 -07003188
Tejun Heo896f5192013-12-05 12:28:04 -05003189 if (cft->read_u64)
3190 seq_printf(m, "%llu\n", cft->read_u64(css, cft));
3191 else if (cft->read_s64)
3192 seq_printf(m, "%lld\n", cft->read_s64(css, cft));
3193 else
3194 return -EINVAL;
3195 return 0;
Paul Menage91796562008-04-29 01:00:01 -07003196}
3197
Tejun Heo2bd59d42014-02-11 11:52:49 -05003198static struct kernfs_ops cgroup_kf_single_ops = {
3199 .atomic_write_len = PAGE_SIZE,
3200 .write = cgroup_file_write,
3201 .seq_show = cgroup_seqfile_show,
Paul Menage91796562008-04-29 01:00:01 -07003202};
3203
Tejun Heo2bd59d42014-02-11 11:52:49 -05003204static struct kernfs_ops cgroup_kf_ops = {
3205 .atomic_write_len = PAGE_SIZE,
3206 .write = cgroup_file_write,
3207 .seq_start = cgroup_seqfile_start,
3208 .seq_next = cgroup_seqfile_next,
3209 .seq_stop = cgroup_seqfile_stop,
3210 .seq_show = cgroup_seqfile_show,
3211};
Paul Menageddbcc7e2007-10-18 23:39:30 -07003212
3213/*
3214 * cgroup_rename - Only allow simple rename of directories in place.
3215 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05003216static int cgroup_rename(struct kernfs_node *kn, struct kernfs_node *new_parent,
3217 const char *new_name_str)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003218{
Tejun Heo2bd59d42014-02-11 11:52:49 -05003219 struct cgroup *cgrp = kn->priv;
Li Zefan65dff752013-03-01 15:01:56 +08003220 int ret;
Li Zefan65dff752013-03-01 15:01:56 +08003221
Tejun Heo2bd59d42014-02-11 11:52:49 -05003222 if (kernfs_type(kn) != KERNFS_DIR)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003223 return -ENOTDIR;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003224 if (kn->parent != new_parent)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003225 return -EIO;
Li Zefan65dff752013-03-01 15:01:56 +08003226
Tejun Heo6db8e852013-06-14 11:18:22 -07003227 /*
3228 * This isn't a proper migration and its usefulness is very
Tejun Heoaa6ec292014-07-09 10:08:08 -04003229 * limited. Disallow on the default hierarchy.
Tejun Heo6db8e852013-06-14 11:18:22 -07003230 */
Tejun Heoaa6ec292014-07-09 10:08:08 -04003231 if (cgroup_on_dfl(cgrp))
Tejun Heo6db8e852013-06-14 11:18:22 -07003232 return -EPERM;
3233
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003234 /*
Tejun Heo8353da12014-05-13 12:19:23 -04003235 * We're gonna grab cgroup_mutex which nests outside kernfs
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003236 * active_ref. kernfs_rename() doesn't require active_ref
Tejun Heo8353da12014-05-13 12:19:23 -04003237 * protection. Break them before grabbing cgroup_mutex.
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003238 */
3239 kernfs_break_active_protection(new_parent);
3240 kernfs_break_active_protection(kn);
Li Zefan65dff752013-03-01 15:01:56 +08003241
Tejun Heo2bd59d42014-02-11 11:52:49 -05003242 mutex_lock(&cgroup_mutex);
Li Zefan65dff752013-03-01 15:01:56 +08003243
Tejun Heo2bd59d42014-02-11 11:52:49 -05003244 ret = kernfs_rename(kn, new_parent, new_name_str);
Li Zefan65dff752013-03-01 15:01:56 +08003245
Tejun Heo2bd59d42014-02-11 11:52:49 -05003246 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07003247
Tejun Heoe1b2dc12014-03-20 11:10:15 -04003248 kernfs_unbreak_active_protection(kn);
3249 kernfs_unbreak_active_protection(new_parent);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003250 return ret;
Li Zefan099fca32009-04-02 16:57:29 -07003251}
3252
Tejun Heo49957f82014-04-07 16:44:47 -04003253/* set uid and gid of cgroup dirs and files to that of the creator */
3254static int cgroup_kn_set_ugid(struct kernfs_node *kn)
3255{
3256 struct iattr iattr = { .ia_valid = ATTR_UID | ATTR_GID,
3257 .ia_uid = current_fsuid(),
3258 .ia_gid = current_fsgid(), };
3259
3260 if (uid_eq(iattr.ia_uid, GLOBAL_ROOT_UID) &&
3261 gid_eq(iattr.ia_gid, GLOBAL_ROOT_GID))
3262 return 0;
3263
3264 return kernfs_setattr(kn, &iattr);
3265}
3266
Tejun Heo4df8dc92015-09-18 17:54:23 -04003267static int cgroup_add_file(struct cgroup_subsys_state *css, struct cgroup *cgrp,
3268 struct cftype *cft)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003269{
Tejun Heo8d7e6fb2014-02-11 11:52:48 -05003270 char name[CGROUP_FILE_NAME_MAX];
Tejun Heo2bd59d42014-02-11 11:52:49 -05003271 struct kernfs_node *kn;
3272 struct lock_class_key *key = NULL;
Tejun Heo49957f82014-04-07 16:44:47 -04003273 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003274
Tejun Heo2bd59d42014-02-11 11:52:49 -05003275#ifdef CONFIG_DEBUG_LOCK_ALLOC
3276 key = &cft->lockdep_key;
3277#endif
3278 kn = __kernfs_create_file(cgrp->kn, cgroup_file_name(cgrp, cft, name),
3279 cgroup_file_mode(cft), 0, cft->kf_ops, cft,
Tejun Heodfeb07502015-02-13 14:36:31 -08003280 NULL, key);
Tejun Heo49957f82014-04-07 16:44:47 -04003281 if (IS_ERR(kn))
3282 return PTR_ERR(kn);
3283
3284 ret = cgroup_kn_set_ugid(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04003285 if (ret) {
Tejun Heo49957f82014-04-07 16:44:47 -04003286 kernfs_remove(kn);
Tejun Heof8f22e52014-04-23 11:13:16 -04003287 return ret;
3288 }
3289
Tejun Heo6f60ead2015-09-18 17:54:23 -04003290 if (cft->file_offset) {
3291 struct cgroup_file *cfile = (void *)css + cft->file_offset;
3292
3293 kernfs_get(kn);
3294 cfile->kn = kn;
3295 list_add(&cfile->node, &css->files);
3296 }
3297
Tejun Heof8f22e52014-04-23 11:13:16 -04003298 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003299}
3300
Tejun Heob1f28d32013-06-28 16:24:10 -07003301/**
3302 * cgroup_addrm_files - add or remove files to a cgroup directory
Tejun Heo4df8dc92015-09-18 17:54:23 -04003303 * @css: the target css
3304 * @cgrp: the target cgroup (usually css->cgroup)
Tejun Heob1f28d32013-06-28 16:24:10 -07003305 * @cfts: array of cftypes to be added
3306 * @is_add: whether to add or remove
3307 *
3308 * Depending on @is_add, add or remove files defined by @cfts on @cgrp.
Tejun Heo6732ed82015-09-18 17:54:23 -04003309 * For removals, this function never fails.
Tejun Heob1f28d32013-06-28 16:24:10 -07003310 */
Tejun Heo4df8dc92015-09-18 17:54:23 -04003311static int cgroup_addrm_files(struct cgroup_subsys_state *css,
3312 struct cgroup *cgrp, struct cftype cfts[],
Tejun Heo2bb566c2013-08-08 20:11:23 -04003313 bool is_add)
Paul Menageddbcc7e2007-10-18 23:39:30 -07003314{
Tejun Heo6732ed82015-09-18 17:54:23 -04003315 struct cftype *cft, *cft_end = NULL;
Tejun Heob1f28d32013-06-28 16:24:10 -07003316 int ret;
3317
Tejun Heo01f64742014-05-13 12:19:23 -04003318 lockdep_assert_held(&cgroup_mutex);
Tejun Heodb0416b2012-04-01 12:09:55 -07003319
Tejun Heo6732ed82015-09-18 17:54:23 -04003320restart:
3321 for (cft = cfts; cft != cft_end && cft->name[0] != '\0'; cft++) {
Gao fengf33fddc2012-12-06 14:38:57 +08003322 /* does cft->flags tell us to skip this file on @cgrp? */
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003323 if ((cft->flags & __CFTYPE_ONLY_ON_DFL) && !cgroup_on_dfl(cgrp))
Tejun Heo8cbbf2c2014-03-19 10:23:55 -04003324 continue;
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003325 if ((cft->flags & __CFTYPE_NOT_ON_DFL) && cgroup_on_dfl(cgrp))
Tejun Heo873fe092013-04-14 20:15:26 -07003326 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04003327 if ((cft->flags & CFTYPE_NOT_ON_ROOT) && !cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08003328 continue;
Tejun Heod51f39b2014-05-16 13:22:48 -04003329 if ((cft->flags & CFTYPE_ONLY_ON_ROOT) && cgroup_parent(cgrp))
Gao fengf33fddc2012-12-06 14:38:57 +08003330 continue;
3331
Li Zefan2739d3c2013-01-21 18:18:33 +08003332 if (is_add) {
Tejun Heo4df8dc92015-09-18 17:54:23 -04003333 ret = cgroup_add_file(css, cgrp, cft);
Tejun Heob1f28d32013-06-28 16:24:10 -07003334 if (ret) {
Joe Perchesed3d2612014-04-25 18:28:03 -04003335 pr_warn("%s: failed to add %s, err=%d\n",
3336 __func__, cft->name, ret);
Tejun Heo6732ed82015-09-18 17:54:23 -04003337 cft_end = cft;
3338 is_add = false;
3339 goto restart;
Tejun Heob1f28d32013-06-28 16:24:10 -07003340 }
Li Zefan2739d3c2013-01-21 18:18:33 +08003341 } else {
3342 cgroup_rm_file(cgrp, cft);
Tejun Heodb0416b2012-04-01 12:09:55 -07003343 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07003344 }
Tejun Heob1f28d32013-06-28 16:24:10 -07003345 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07003346}
3347
Tejun Heo21a2d342014-02-12 09:29:49 -05003348static int cgroup_apply_cftypes(struct cftype *cfts, bool is_add)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003349{
3350 LIST_HEAD(pending);
Tejun Heo2bb566c2013-08-08 20:11:23 -04003351 struct cgroup_subsys *ss = cfts[0].ss;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04003352 struct cgroup *root = &ss->root->cgrp;
Tejun Heo492eb212013-08-08 20:11:25 -04003353 struct cgroup_subsys_state *css;
Tejun Heo9ccece82013-06-28 16:24:11 -07003354 int ret = 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003355
Tejun Heo01f64742014-05-13 12:19:23 -04003356 lockdep_assert_held(&cgroup_mutex);
Li Zefane8c82d22013-06-18 18:48:37 +08003357
Li Zefane8c82d22013-06-18 18:48:37 +08003358 /* add/rm files for all cgroups created before */
Tejun Heoca8bdca2013-08-26 18:40:56 -04003359 css_for_each_descendant_pre(css, cgroup_css(root, ss)) {
Tejun Heo492eb212013-08-08 20:11:25 -04003360 struct cgroup *cgrp = css->cgroup;
3361
Li Zefane8c82d22013-06-18 18:48:37 +08003362 if (cgroup_is_dead(cgrp))
3363 continue;
3364
Tejun Heo4df8dc92015-09-18 17:54:23 -04003365 ret = cgroup_addrm_files(css, cgrp, cfts, is_add);
Tejun Heo9ccece82013-06-28 16:24:11 -07003366 if (ret)
3367 break;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003368 }
Tejun Heo21a2d342014-02-12 09:29:49 -05003369
3370 if (is_add && !ret)
3371 kernfs_activate(root->kn);
Tejun Heo9ccece82013-06-28 16:24:11 -07003372 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003373}
3374
Tejun Heo2da440a2014-02-11 11:52:48 -05003375static void cgroup_exit_cftypes(struct cftype *cfts)
3376{
3377 struct cftype *cft;
3378
Tejun Heo2bd59d42014-02-11 11:52:49 -05003379 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3380 /* free copy for custom atomic_write_len, see init_cftypes() */
3381 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE)
3382 kfree(cft->kf_ops);
3383 cft->kf_ops = NULL;
Tejun Heo2da440a2014-02-11 11:52:48 -05003384 cft->ss = NULL;
Tejun Heoa8ddc822014-07-15 11:05:10 -04003385
3386 /* revert flags set by cgroup core while adding @cfts */
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003387 cft->flags &= ~(__CFTYPE_ONLY_ON_DFL | __CFTYPE_NOT_ON_DFL);
Tejun Heo2bd59d42014-02-11 11:52:49 -05003388 }
Tejun Heo2da440a2014-02-11 11:52:48 -05003389}
3390
Tejun Heo2bd59d42014-02-11 11:52:49 -05003391static int cgroup_init_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo2da440a2014-02-11 11:52:48 -05003392{
3393 struct cftype *cft;
3394
Tejun Heo2bd59d42014-02-11 11:52:49 -05003395 for (cft = cfts; cft->name[0] != '\0'; cft++) {
3396 struct kernfs_ops *kf_ops;
3397
Tejun Heo0adb0702014-02-12 09:29:48 -05003398 WARN_ON(cft->ss || cft->kf_ops);
3399
Tejun Heo2bd59d42014-02-11 11:52:49 -05003400 if (cft->seq_start)
3401 kf_ops = &cgroup_kf_ops;
3402 else
3403 kf_ops = &cgroup_kf_single_ops;
3404
3405 /*
3406 * Ugh... if @cft wants a custom max_write_len, we need to
3407 * make a copy of kf_ops to set its atomic_write_len.
3408 */
3409 if (cft->max_write_len && cft->max_write_len != PAGE_SIZE) {
3410 kf_ops = kmemdup(kf_ops, sizeof(*kf_ops), GFP_KERNEL);
3411 if (!kf_ops) {
3412 cgroup_exit_cftypes(cfts);
3413 return -ENOMEM;
3414 }
3415 kf_ops->atomic_write_len = cft->max_write_len;
3416 }
3417
3418 cft->kf_ops = kf_ops;
Tejun Heo2da440a2014-02-11 11:52:48 -05003419 cft->ss = ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05003420 }
3421
3422 return 0;
Tejun Heo2da440a2014-02-11 11:52:48 -05003423}
3424
Tejun Heo21a2d342014-02-12 09:29:49 -05003425static int cgroup_rm_cftypes_locked(struct cftype *cfts)
3426{
Tejun Heo01f64742014-05-13 12:19:23 -04003427 lockdep_assert_held(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003428
3429 if (!cfts || !cfts[0].ss)
3430 return -ENOENT;
3431
3432 list_del(&cfts->node);
3433 cgroup_apply_cftypes(cfts, false);
3434 cgroup_exit_cftypes(cfts);
3435 return 0;
3436}
3437
Tejun Heo8e3f6542012-04-01 12:09:55 -07003438/**
Tejun Heo80b13582014-02-12 09:29:48 -05003439 * cgroup_rm_cftypes - remove an array of cftypes from a subsystem
3440 * @cfts: zero-length name terminated array of cftypes
3441 *
3442 * Unregister @cfts. Files described by @cfts are removed from all
3443 * existing cgroups and all future cgroups won't have them either. This
3444 * function can be called anytime whether @cfts' subsys is attached or not.
3445 *
3446 * Returns 0 on successful unregistration, -ENOENT if @cfts is not
3447 * registered.
3448 */
3449int cgroup_rm_cftypes(struct cftype *cfts)
3450{
Tejun Heo21a2d342014-02-12 09:29:49 -05003451 int ret;
Tejun Heo80b13582014-02-12 09:29:48 -05003452
Tejun Heo01f64742014-05-13 12:19:23 -04003453 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003454 ret = cgroup_rm_cftypes_locked(cfts);
Tejun Heo01f64742014-05-13 12:19:23 -04003455 mutex_unlock(&cgroup_mutex);
Tejun Heo8e3f6542012-04-01 12:09:55 -07003456 return ret;
3457}
3458
3459/**
3460 * cgroup_add_cftypes - add an array of cftypes to a subsystem
3461 * @ss: target cgroup subsystem
3462 * @cfts: zero-length name terminated array of cftypes
3463 *
3464 * Register @cfts to @ss. Files described by @cfts are created for all
3465 * existing cgroups to which @ss is attached and all future cgroups will
3466 * have them too. This function can be called anytime whether @ss is
3467 * attached or not.
3468 *
3469 * Returns 0 on successful registration, -errno on failure. Note that this
3470 * function currently returns 0 as long as @cfts registration is successful
3471 * even if some file creation attempts on existing cgroups fail.
3472 */
Tejun Heo2cf669a2014-07-15 11:05:09 -04003473static int cgroup_add_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
Tejun Heo8e3f6542012-04-01 12:09:55 -07003474{
Tejun Heo9ccece82013-06-28 16:24:11 -07003475 int ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003476
Tejun Heofc5ed1e2015-09-18 11:56:28 -04003477 if (!cgroup_ssid_enabled(ss->id))
Li Zefanc731ae12014-06-05 17:16:30 +08003478 return 0;
3479
Li Zefandc5736e2014-02-17 10:41:50 +08003480 if (!cfts || cfts[0].name[0] == '\0')
3481 return 0;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003482
Tejun Heo2bd59d42014-02-11 11:52:49 -05003483 ret = cgroup_init_cftypes(ss, cfts);
Tejun Heo9ccece82013-06-28 16:24:11 -07003484 if (ret)
Tejun Heo2bd59d42014-02-11 11:52:49 -05003485 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003486
Tejun Heo01f64742014-05-13 12:19:23 -04003487 mutex_lock(&cgroup_mutex);
Tejun Heo21a2d342014-02-12 09:29:49 -05003488
Tejun Heo0adb0702014-02-12 09:29:48 -05003489 list_add_tail(&cfts->node, &ss->cfts);
Tejun Heo21a2d342014-02-12 09:29:49 -05003490 ret = cgroup_apply_cftypes(cfts, true);
Tejun Heo9ccece82013-06-28 16:24:11 -07003491 if (ret)
Tejun Heo21a2d342014-02-12 09:29:49 -05003492 cgroup_rm_cftypes_locked(cfts);
3493
Tejun Heo01f64742014-05-13 12:19:23 -04003494 mutex_unlock(&cgroup_mutex);
Tejun Heo9ccece82013-06-28 16:24:11 -07003495 return ret;
Tejun Heo8e3f6542012-04-01 12:09:55 -07003496}
Tejun Heo79578622012-04-01 12:09:56 -07003497
3498/**
Tejun Heoa8ddc822014-07-15 11:05:10 -04003499 * cgroup_add_dfl_cftypes - add an array of cftypes for default hierarchy
3500 * @ss: target cgroup subsystem
3501 * @cfts: zero-length name terminated array of cftypes
3502 *
3503 * Similar to cgroup_add_cftypes() but the added files are only used for
3504 * the default hierarchy.
3505 */
3506int cgroup_add_dfl_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
3507{
3508 struct cftype *cft;
3509
3510 for (cft = cfts; cft && cft->name[0] != '\0'; cft++)
Tejun Heo05ebb6e2014-07-15 11:05:10 -04003511 cft->flags |= __CFTYPE_ONLY_ON_DFL;
Tejun Heoa8ddc822014-07-15 11:05:10 -04003512 return cgroup_add_cftypes(ss, cfts);
3513}
3514
3515/**
3516 * cgroup_add_legacy_cftypes - add an array of cftypes for legacy hierarchies
3517 * @ss: target cgroup subsystem
3518 * @cfts: zero-length name terminated array of cftypes
3519 *
3520 * Similar to cgroup_add_cftypes() but the added files are only used for
3521 * the legacy hierarchies.
3522 */
Tejun Heo2cf669a2014-07-15 11:05:09 -04003523int cgroup_add_legacy_cftypes(struct cgroup_subsys *ss, struct cftype *cfts)
3524{
Tejun Heoa8ddc822014-07-15 11:05:10 -04003525 struct cftype *cft;
3526
Tejun Heoe4b70372015-10-15 17:00:43 -04003527 for (cft = cfts; cft && cft->name[0] != '\0'; cft++)
3528 cft->flags |= __CFTYPE_NOT_ON_DFL;
Tejun Heo2cf669a2014-07-15 11:05:09 -04003529 return cgroup_add_cftypes(ss, cfts);
3530}
3531
Li Zefana043e3b2008-02-23 15:24:09 -08003532/**
3533 * cgroup_task_count - count the number of tasks in a cgroup.
3534 * @cgrp: the cgroup in question
3535 *
3536 * Return the number of tasks in the cgroup.
3537 */
Tejun Heo07bc3562014-02-13 06:58:39 -05003538static int cgroup_task_count(const struct cgroup *cgrp)
Paul Menagebbcb81d2007-10-18 23:39:32 -07003539{
3540 int count = 0;
Tejun Heo69d02062013-06-12 21:04:50 -07003541 struct cgrp_cset_link *link;
Paul Menagebbcb81d2007-10-18 23:39:32 -07003542
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003543 spin_lock_bh(&css_set_lock);
Tejun Heo69d02062013-06-12 21:04:50 -07003544 list_for_each_entry(link, &cgrp->cset_links, cset_link)
3545 count += atomic_read(&link->cset->refcount);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003546 spin_unlock_bh(&css_set_lock);
Paul Menagebbcb81d2007-10-18 23:39:32 -07003547 return count;
3548}
3549
Tejun Heo574bd9f2012-11-09 09:12:29 -08003550/**
Tejun Heo492eb212013-08-08 20:11:25 -04003551 * css_next_child - find the next child of a given css
Tejun Heoc2931b72014-05-16 13:22:51 -04003552 * @pos: the current position (%NULL to initiate traversal)
3553 * @parent: css whose children to walk
Tejun Heo53fa5262013-05-24 10:55:38 +09003554 *
Tejun Heoc2931b72014-05-16 13:22:51 -04003555 * This function returns the next child of @parent and should be called
Tejun Heo87fb54f2013-12-06 15:11:55 -05003556 * under either cgroup_mutex or RCU read lock. The only requirement is
Tejun Heoc2931b72014-05-16 13:22:51 -04003557 * that @parent and @pos are accessible. The next sibling is guaranteed to
3558 * be returned regardless of their states.
3559 *
3560 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3561 * css which finished ->css_online() is guaranteed to be visible in the
3562 * future iterations and will stay visible until the last reference is put.
3563 * A css which hasn't finished ->css_online() or already finished
3564 * ->css_offline() may show up during traversal. It's each subsystem's
3565 * responsibility to synchronize against on/offlining.
Tejun Heo53fa5262013-05-24 10:55:38 +09003566 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003567struct cgroup_subsys_state *css_next_child(struct cgroup_subsys_state *pos,
3568 struct cgroup_subsys_state *parent)
Tejun Heo53fa5262013-05-24 10:55:38 +09003569{
Tejun Heoc2931b72014-05-16 13:22:51 -04003570 struct cgroup_subsys_state *next;
Tejun Heo53fa5262013-05-24 10:55:38 +09003571
Tejun Heo8353da12014-05-13 12:19:23 -04003572 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo53fa5262013-05-24 10:55:38 +09003573
3574 /*
Tejun Heode3f0342014-05-16 13:22:49 -04003575 * @pos could already have been unlinked from the sibling list.
3576 * Once a cgroup is removed, its ->sibling.next is no longer
3577 * updated when its next sibling changes. CSS_RELEASED is set when
3578 * @pos is taken off list, at which time its next pointer is valid,
3579 * and, as releases are serialized, the one pointed to by the next
3580 * pointer is guaranteed to not have started release yet. This
3581 * implies that if we observe !CSS_RELEASED on @pos in this RCU
3582 * critical section, the one pointed to by its next pointer is
3583 * guaranteed to not have finished its RCU grace period even if we
3584 * have dropped rcu_read_lock() inbetween iterations.
Tejun Heo3b287a52013-08-08 20:11:24 -04003585 *
Tejun Heode3f0342014-05-16 13:22:49 -04003586 * If @pos has CSS_RELEASED set, its next pointer can't be
3587 * dereferenced; however, as each css is given a monotonically
3588 * increasing unique serial number and always appended to the
3589 * sibling list, the next one can be found by walking the parent's
3590 * children until the first css with higher serial number than
3591 * @pos's. While this path can be slower, it happens iff iteration
3592 * races against release and the race window is very small.
Tejun Heo53fa5262013-05-24 10:55:38 +09003593 */
Tejun Heo3b287a52013-08-08 20:11:24 -04003594 if (!pos) {
Tejun Heoc2931b72014-05-16 13:22:51 -04003595 next = list_entry_rcu(parent->children.next, struct cgroup_subsys_state, sibling);
3596 } else if (likely(!(pos->flags & CSS_RELEASED))) {
3597 next = list_entry_rcu(pos->sibling.next, struct cgroup_subsys_state, sibling);
Tejun Heo3b287a52013-08-08 20:11:24 -04003598 } else {
Tejun Heoc2931b72014-05-16 13:22:51 -04003599 list_for_each_entry_rcu(next, &parent->children, sibling)
Tejun Heo3b287a52013-08-08 20:11:24 -04003600 if (next->serial_nr > pos->serial_nr)
3601 break;
Tejun Heo53fa5262013-05-24 10:55:38 +09003602 }
3603
Tejun Heo3b281af2014-04-23 11:13:15 -04003604 /*
3605 * @next, if not pointing to the head, can be dereferenced and is
Tejun Heoc2931b72014-05-16 13:22:51 -04003606 * the next sibling.
Tejun Heo3b281af2014-04-23 11:13:15 -04003607 */
Tejun Heoc2931b72014-05-16 13:22:51 -04003608 if (&next->sibling != &parent->children)
3609 return next;
Tejun Heo3b281af2014-04-23 11:13:15 -04003610 return NULL;
Tejun Heo53fa5262013-05-24 10:55:38 +09003611}
Tejun Heo53fa5262013-05-24 10:55:38 +09003612
3613/**
Tejun Heo492eb212013-08-08 20:11:25 -04003614 * css_next_descendant_pre - find the next descendant for pre-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003615 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003616 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003617 *
Tejun Heo492eb212013-08-08 20:11:25 -04003618 * To be used by css_for_each_descendant_pre(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003619 * to visit for pre-order traversal of @root's descendants. @root is
3620 * included in the iteration and the first node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003621 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003622 * While this function requires cgroup_mutex or RCU read locking, it
3623 * doesn't require the whole traversal to be contained in a single critical
3624 * section. This function will return the correct next descendant as long
3625 * as both @pos and @root are accessible and @pos is a descendant of @root.
Tejun Heoc2931b72014-05-16 13:22:51 -04003626 *
3627 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3628 * css which finished ->css_online() is guaranteed to be visible in the
3629 * future iterations and will stay visible until the last reference is put.
3630 * A css which hasn't finished ->css_online() or already finished
3631 * ->css_offline() may show up during traversal. It's each subsystem's
3632 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003633 */
Tejun Heo492eb212013-08-08 20:11:25 -04003634struct cgroup_subsys_state *
3635css_next_descendant_pre(struct cgroup_subsys_state *pos,
3636 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003637{
Tejun Heo492eb212013-08-08 20:11:25 -04003638 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003639
Tejun Heo8353da12014-05-13 12:19:23 -04003640 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003641
Tejun Heobd8815a2013-08-08 20:11:27 -04003642 /* if first iteration, visit @root */
Tejun Heo7805d002013-05-24 10:50:24 +09003643 if (!pos)
Tejun Heobd8815a2013-08-08 20:11:27 -04003644 return root;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003645
3646 /* visit the first child if exists */
Tejun Heo492eb212013-08-08 20:11:25 -04003647 next = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003648 if (next)
3649 return next;
3650
3651 /* no child, visit my or the closest ancestor's next sibling */
Tejun Heo492eb212013-08-08 20:11:25 -04003652 while (pos != root) {
Tejun Heo5c9d5352014-05-16 13:22:48 -04003653 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003654 if (next)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003655 return next;
Tejun Heo5c9d5352014-05-16 13:22:48 -04003656 pos = pos->parent;
Tejun Heo7805d002013-05-24 10:50:24 +09003657 }
Tejun Heo574bd9f2012-11-09 09:12:29 -08003658
3659 return NULL;
3660}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003661
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003662/**
Tejun Heo492eb212013-08-08 20:11:25 -04003663 * css_rightmost_descendant - return the rightmost descendant of a css
3664 * @pos: css of interest
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003665 *
Tejun Heo492eb212013-08-08 20:11:25 -04003666 * Return the rightmost descendant of @pos. If there's no descendant, @pos
3667 * is returned. This can be used during pre-order traversal to skip
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003668 * subtree of @pos.
Tejun Heo75501a62013-05-24 10:55:38 +09003669 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003670 * While this function requires cgroup_mutex or RCU read locking, it
3671 * doesn't require the whole traversal to be contained in a single critical
3672 * section. This function will return the correct rightmost descendant as
3673 * long as @pos is accessible.
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003674 */
Tejun Heo492eb212013-08-08 20:11:25 -04003675struct cgroup_subsys_state *
3676css_rightmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003677{
Tejun Heo492eb212013-08-08 20:11:25 -04003678 struct cgroup_subsys_state *last, *tmp;
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003679
Tejun Heo8353da12014-05-13 12:19:23 -04003680 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003681
3682 do {
3683 last = pos;
3684 /* ->prev isn't RCU safe, walk ->next till the end */
3685 pos = NULL;
Tejun Heo492eb212013-08-08 20:11:25 -04003686 css_for_each_child(tmp, last)
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003687 pos = tmp;
3688 } while (pos);
3689
3690 return last;
3691}
Tejun Heo12a9d2f2013-01-07 08:49:33 -08003692
Tejun Heo492eb212013-08-08 20:11:25 -04003693static struct cgroup_subsys_state *
3694css_leftmost_descendant(struct cgroup_subsys_state *pos)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003695{
Tejun Heo492eb212013-08-08 20:11:25 -04003696 struct cgroup_subsys_state *last;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003697
3698 do {
3699 last = pos;
Tejun Heo492eb212013-08-08 20:11:25 -04003700 pos = css_next_child(NULL, pos);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003701 } while (pos);
3702
3703 return last;
3704}
3705
3706/**
Tejun Heo492eb212013-08-08 20:11:25 -04003707 * css_next_descendant_post - find the next descendant for post-order walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003708 * @pos: the current position (%NULL to initiate traversal)
Tejun Heo492eb212013-08-08 20:11:25 -04003709 * @root: css whose descendants to walk
Tejun Heo574bd9f2012-11-09 09:12:29 -08003710 *
Tejun Heo492eb212013-08-08 20:11:25 -04003711 * To be used by css_for_each_descendant_post(). Find the next descendant
Tejun Heobd8815a2013-08-08 20:11:27 -04003712 * to visit for post-order traversal of @root's descendants. @root is
3713 * included in the iteration and the last node to be visited.
Tejun Heo75501a62013-05-24 10:55:38 +09003714 *
Tejun Heo87fb54f2013-12-06 15:11:55 -05003715 * While this function requires cgroup_mutex or RCU read locking, it
3716 * doesn't require the whole traversal to be contained in a single critical
3717 * section. This function will return the correct next descendant as long
3718 * as both @pos and @cgroup are accessible and @pos is a descendant of
3719 * @cgroup.
Tejun Heoc2931b72014-05-16 13:22:51 -04003720 *
3721 * If a subsystem synchronizes ->css_online() and the start of iteration, a
3722 * css which finished ->css_online() is guaranteed to be visible in the
3723 * future iterations and will stay visible until the last reference is put.
3724 * A css which hasn't finished ->css_online() or already finished
3725 * ->css_offline() may show up during traversal. It's each subsystem's
3726 * responsibility to synchronize against on/offlining.
Tejun Heo574bd9f2012-11-09 09:12:29 -08003727 */
Tejun Heo492eb212013-08-08 20:11:25 -04003728struct cgroup_subsys_state *
3729css_next_descendant_post(struct cgroup_subsys_state *pos,
3730 struct cgroup_subsys_state *root)
Tejun Heo574bd9f2012-11-09 09:12:29 -08003731{
Tejun Heo492eb212013-08-08 20:11:25 -04003732 struct cgroup_subsys_state *next;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003733
Tejun Heo8353da12014-05-13 12:19:23 -04003734 cgroup_assert_mutex_or_rcu_locked();
Tejun Heo574bd9f2012-11-09 09:12:29 -08003735
Tejun Heo58b79a92013-09-06 15:31:08 -04003736 /* if first iteration, visit leftmost descendant which may be @root */
3737 if (!pos)
3738 return css_leftmost_descendant(root);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003739
Tejun Heobd8815a2013-08-08 20:11:27 -04003740 /* if we visited @root, we're done */
3741 if (pos == root)
3742 return NULL;
3743
Tejun Heo574bd9f2012-11-09 09:12:29 -08003744 /* if there's an unvisited sibling, visit its leftmost descendant */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003745 next = css_next_child(pos, pos->parent);
Tejun Heo75501a62013-05-24 10:55:38 +09003746 if (next)
Tejun Heo492eb212013-08-08 20:11:25 -04003747 return css_leftmost_descendant(next);
Tejun Heo574bd9f2012-11-09 09:12:29 -08003748
3749 /* no sibling left, visit parent */
Tejun Heo5c9d5352014-05-16 13:22:48 -04003750 return pos->parent;
Tejun Heo574bd9f2012-11-09 09:12:29 -08003751}
Tejun Heo574bd9f2012-11-09 09:12:29 -08003752
Tejun Heof3d46502014-05-16 13:22:52 -04003753/**
3754 * css_has_online_children - does a css have online children
3755 * @css: the target css
3756 *
3757 * Returns %true if @css has any online children; otherwise, %false. This
3758 * function can be called from any context but the caller is responsible
3759 * for synchronizing against on/offlining as necessary.
3760 */
3761bool css_has_online_children(struct cgroup_subsys_state *css)
Tejun Heocbc125e2014-05-14 09:15:01 -04003762{
Tejun Heof3d46502014-05-16 13:22:52 -04003763 struct cgroup_subsys_state *child;
3764 bool ret = false;
Tejun Heocbc125e2014-05-14 09:15:01 -04003765
3766 rcu_read_lock();
Tejun Heof3d46502014-05-16 13:22:52 -04003767 css_for_each_child(child, css) {
Li Zefan99bae5f2014-06-12 14:31:31 +08003768 if (child->flags & CSS_ONLINE) {
Tejun Heof3d46502014-05-16 13:22:52 -04003769 ret = true;
3770 break;
Tejun Heocbc125e2014-05-14 09:15:01 -04003771 }
3772 }
3773 rcu_read_unlock();
Tejun Heof3d46502014-05-16 13:22:52 -04003774 return ret;
Cliff Wickman31a7df02008-02-07 00:14:42 -08003775}
3776
Tejun Heo0942eee2013-08-08 20:11:26 -04003777/**
Tejun Heoecb9d532015-10-15 16:41:52 -04003778 * css_task_iter_advance_css_set - advance a task itererator to the next css_set
Tejun Heo0942eee2013-08-08 20:11:26 -04003779 * @it: the iterator to advance
3780 *
3781 * Advance @it to the next css_set to walk.
Tejun Heod5158762013-08-08 20:11:26 -04003782 */
Tejun Heoecb9d532015-10-15 16:41:52 -04003783static void css_task_iter_advance_css_set(struct css_task_iter *it)
Tejun Heod5158762013-08-08 20:11:26 -04003784{
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003785 struct list_head *l = it->cset_pos;
Tejun Heod5158762013-08-08 20:11:26 -04003786 struct cgrp_cset_link *link;
3787 struct css_set *cset;
3788
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003789 lockdep_assert_held(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04003790
Tejun Heod5158762013-08-08 20:11:26 -04003791 /* Advance to the next non-empty css_set */
3792 do {
3793 l = l->next;
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003794 if (l == it->cset_head) {
3795 it->cset_pos = NULL;
Tejun Heoecb9d532015-10-15 16:41:52 -04003796 it->task_pos = NULL;
Tejun Heod5158762013-08-08 20:11:26 -04003797 return;
3798 }
Tejun Heo3ebb2b62014-04-23 11:13:15 -04003799
3800 if (it->ss) {
3801 cset = container_of(l, struct css_set,
3802 e_cset_node[it->ss->id]);
3803 } else {
3804 link = list_entry(l, struct cgrp_cset_link, cset_link);
3805 cset = link->cset;
3806 }
Tejun Heo0de09422015-10-15 16:41:49 -04003807 } while (!css_set_populated(cset));
Tejun Heoc7561122014-02-25 10:04:01 -05003808
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003809 it->cset_pos = l;
Tejun Heoc7561122014-02-25 10:04:01 -05003810
3811 if (!list_empty(&cset->tasks))
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003812 it->task_pos = cset->tasks.next;
Tejun Heoc7561122014-02-25 10:04:01 -05003813 else
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003814 it->task_pos = cset->mg_tasks.next;
3815
3816 it->tasks_head = &cset->tasks;
3817 it->mg_tasks_head = &cset->mg_tasks;
Tejun Heoed27b9f2015-10-15 16:41:52 -04003818
3819 /*
3820 * We don't keep css_sets locked across iteration steps and thus
3821 * need to take steps to ensure that iteration can be resumed after
3822 * the lock is re-acquired. Iteration is performed at two levels -
3823 * css_sets and tasks in them.
3824 *
3825 * Once created, a css_set never leaves its cgroup lists, so a
3826 * pinned css_set is guaranteed to stay put and we can resume
3827 * iteration afterwards.
3828 *
3829 * Tasks may leave @cset across iteration steps. This is resolved
3830 * by registering each iterator with the css_set currently being
3831 * walked and making css_set_move_task() advance iterators whose
3832 * next task is leaving.
3833 */
3834 if (it->cur_cset) {
3835 list_del(&it->iters_node);
3836 put_css_set_locked(it->cur_cset);
3837 }
3838 get_css_set(cset);
3839 it->cur_cset = cset;
3840 list_add(&it->iters_node, &cset->task_iters);
Tejun Heod5158762013-08-08 20:11:26 -04003841}
3842
Tejun Heoecb9d532015-10-15 16:41:52 -04003843static void css_task_iter_advance(struct css_task_iter *it)
3844{
3845 struct list_head *l = it->task_pos;
3846
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003847 lockdep_assert_held(&css_set_lock);
Tejun Heoecb9d532015-10-15 16:41:52 -04003848 WARN_ON_ONCE(!l);
3849
3850 /*
3851 * Advance iterator to find next entry. cset->tasks is consumed
3852 * first and then ->mg_tasks. After ->mg_tasks, we move onto the
3853 * next cset.
3854 */
3855 l = l->next;
3856
3857 if (l == it->tasks_head)
3858 l = it->mg_tasks_head->next;
3859
3860 if (l == it->mg_tasks_head)
3861 css_task_iter_advance_css_set(it);
3862 else
3863 it->task_pos = l;
3864}
3865
Tejun Heo0942eee2013-08-08 20:11:26 -04003866/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003867 * css_task_iter_start - initiate task iteration
3868 * @css: the css to walk tasks of
Tejun Heo0942eee2013-08-08 20:11:26 -04003869 * @it: the task iterator to use
3870 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003871 * Initiate iteration through the tasks of @css. The caller can call
3872 * css_task_iter_next() to walk through the tasks until the function
3873 * returns NULL. On completion of iteration, css_task_iter_end() must be
3874 * called.
Tejun Heo0942eee2013-08-08 20:11:26 -04003875 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003876void css_task_iter_start(struct cgroup_subsys_state *css,
3877 struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07003878{
Tejun Heo56fde9e2014-02-13 06:58:38 -05003879 /* no one should try to iterate before mounting cgroups */
3880 WARN_ON_ONCE(!use_task_css_set_links);
Paul Menage817929e2007-10-18 23:39:36 -07003881
Tejun Heoed27b9f2015-10-15 16:41:52 -04003882 memset(it, 0, sizeof(*it));
3883
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003884 spin_lock_bh(&css_set_lock);
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003885
Tejun Heo3ebb2b62014-04-23 11:13:15 -04003886 it->ss = css->ss;
3887
3888 if (it->ss)
3889 it->cset_pos = &css->cgroup->e_csets[css->ss->id];
3890 else
3891 it->cset_pos = &css->cgroup->cset_links;
3892
Tejun Heo0f0a2b42014-04-23 11:13:15 -04003893 it->cset_head = it->cset_pos;
Tejun Heoc59cd3d2013-08-08 20:11:26 -04003894
Tejun Heoecb9d532015-10-15 16:41:52 -04003895 css_task_iter_advance_css_set(it);
Tejun Heoed27b9f2015-10-15 16:41:52 -04003896
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003897 spin_unlock_bh(&css_set_lock);
Paul Menagebd89aab2007-10-18 23:40:44 -07003898}
Paul Menage817929e2007-10-18 23:39:36 -07003899
Tejun Heo0942eee2013-08-08 20:11:26 -04003900/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003901 * css_task_iter_next - return the next task for the iterator
Tejun Heo0942eee2013-08-08 20:11:26 -04003902 * @it: the task iterator being iterated
3903 *
3904 * The "next" function for task iteration. @it should have been
Tejun Heo72ec7022013-08-08 20:11:26 -04003905 * initialized via css_task_iter_start(). Returns NULL when the iteration
3906 * reaches the end.
Tejun Heo0942eee2013-08-08 20:11:26 -04003907 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003908struct task_struct *css_task_iter_next(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07003909{
Tejun Heod5745672015-10-29 11:43:05 +09003910 if (it->cur_task) {
Tejun Heoed27b9f2015-10-15 16:41:52 -04003911 put_task_struct(it->cur_task);
Tejun Heod5745672015-10-29 11:43:05 +09003912 it->cur_task = NULL;
3913 }
Tejun Heoed27b9f2015-10-15 16:41:52 -04003914
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003915 spin_lock_bh(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04003916
Tejun Heod5745672015-10-29 11:43:05 +09003917 if (it->task_pos) {
3918 it->cur_task = list_entry(it->task_pos, struct task_struct,
3919 cg_list);
3920 get_task_struct(it->cur_task);
3921 css_task_iter_advance(it);
3922 }
Tejun Heoed27b9f2015-10-15 16:41:52 -04003923
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003924 spin_unlock_bh(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04003925
3926 return it->cur_task;
Paul Menage817929e2007-10-18 23:39:36 -07003927}
3928
Tejun Heo0942eee2013-08-08 20:11:26 -04003929/**
Tejun Heo72ec7022013-08-08 20:11:26 -04003930 * css_task_iter_end - finish task iteration
Tejun Heo0942eee2013-08-08 20:11:26 -04003931 * @it: the task iterator to finish
3932 *
Tejun Heo72ec7022013-08-08 20:11:26 -04003933 * Finish task iteration started by css_task_iter_start().
Tejun Heo0942eee2013-08-08 20:11:26 -04003934 */
Tejun Heo72ec7022013-08-08 20:11:26 -04003935void css_task_iter_end(struct css_task_iter *it)
Paul Menage817929e2007-10-18 23:39:36 -07003936{
Tejun Heoed27b9f2015-10-15 16:41:52 -04003937 if (it->cur_cset) {
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003938 spin_lock_bh(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04003939 list_del(&it->iters_node);
3940 put_css_set_locked(it->cur_cset);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003941 spin_unlock_bh(&css_set_lock);
Tejun Heoed27b9f2015-10-15 16:41:52 -04003942 }
3943
3944 if (it->cur_task)
3945 put_task_struct(it->cur_task);
Tejun Heo8cc99342013-04-07 09:29:50 -07003946}
3947
3948/**
3949 * cgroup_trasnsfer_tasks - move tasks from one cgroup to another
3950 * @to: cgroup to which the tasks will be moved
3951 * @from: cgroup in which the tasks currently reside
Tejun Heoeaf797a2014-02-25 10:04:03 -05003952 *
3953 * Locking rules between cgroup_post_fork() and the migration path
3954 * guarantee that, if a task is forking while being migrated, the new child
3955 * is guaranteed to be either visible in the source cgroup after the
3956 * parent's migration is complete or put into the target cgroup. No task
3957 * can slip out of migration through forking.
Tejun Heo8cc99342013-04-07 09:29:50 -07003958 */
3959int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from)
3960{
Tejun Heo952aaa12014-02-25 10:04:03 -05003961 LIST_HEAD(preloaded_csets);
3962 struct cgrp_cset_link *link;
Tejun Heoe406d1c2014-02-13 06:58:39 -05003963 struct css_task_iter it;
3964 struct task_struct *task;
Tejun Heo952aaa12014-02-25 10:04:03 -05003965 int ret;
Tejun Heoe406d1c2014-02-13 06:58:39 -05003966
Tejun Heo952aaa12014-02-25 10:04:03 -05003967 mutex_lock(&cgroup_mutex);
3968
3969 /* all tasks in @from are being moved, all csets are source */
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003970 spin_lock_bh(&css_set_lock);
Tejun Heo952aaa12014-02-25 10:04:03 -05003971 list_for_each_entry(link, &from->cset_links, cset_link)
3972 cgroup_migrate_add_src(link->cset, to, &preloaded_csets);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04003973 spin_unlock_bh(&css_set_lock);
Tejun Heo952aaa12014-02-25 10:04:03 -05003974
3975 ret = cgroup_migrate_prepare_dst(to, &preloaded_csets);
3976 if (ret)
3977 goto out_err;
3978
3979 /*
3980 * Migrate tasks one-by-one until @form is empty. This fails iff
3981 * ->can_attach() fails.
3982 */
Tejun Heoe406d1c2014-02-13 06:58:39 -05003983 do {
Tejun Heo9d800df2014-05-14 09:15:00 -04003984 css_task_iter_start(&from->self, &it);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003985 task = css_task_iter_next(&it);
3986 if (task)
3987 get_task_struct(task);
3988 css_task_iter_end(&it);
3989
3990 if (task) {
Tejun Heo9af2ec42015-09-11 15:00:20 -04003991 ret = cgroup_migrate(task, false, to);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003992 put_task_struct(task);
3993 }
3994 } while (task && !ret);
Tejun Heo952aaa12014-02-25 10:04:03 -05003995out_err:
3996 cgroup_migrate_finish(&preloaded_csets);
3997 mutex_unlock(&cgroup_mutex);
Tejun Heoe406d1c2014-02-13 06:58:39 -05003998 return ret;
Tejun Heo8cc99342013-04-07 09:29:50 -07003999}
4000
Paul Menage817929e2007-10-18 23:39:36 -07004001/*
Ben Blum102a7752009-09-23 15:56:26 -07004002 * Stuff for reading the 'tasks'/'procs' files.
Paul Menagebbcb81d2007-10-18 23:39:32 -07004003 *
4004 * Reading this file can return large amounts of data if a cgroup has
4005 * *lots* of attached tasks. So it may need several calls to read(),
4006 * but we cannot guarantee that the information we produce is correct
4007 * unless we produce it entirely atomically.
4008 *
Paul Menagebbcb81d2007-10-18 23:39:32 -07004009 */
Paul Menagebbcb81d2007-10-18 23:39:32 -07004010
Li Zefan24528252012-01-20 11:58:43 +08004011/* which pidlist file are we talking about? */
4012enum cgroup_filetype {
4013 CGROUP_FILE_PROCS,
4014 CGROUP_FILE_TASKS,
4015};
4016
4017/*
4018 * A pidlist is a list of pids that virtually represents the contents of one
4019 * of the cgroup files ("procs" or "tasks"). We keep a list of such pidlists,
4020 * a pair (one each for procs, tasks) for each pid namespace that's relevant
4021 * to the cgroup.
4022 */
4023struct cgroup_pidlist {
4024 /*
4025 * used to find which pidlist is wanted. doesn't change as long as
4026 * this particular list stays in the list.
4027 */
4028 struct { enum cgroup_filetype type; struct pid_namespace *ns; } key;
4029 /* array of xids */
4030 pid_t *list;
4031 /* how many elements the above list has */
4032 int length;
Li Zefan24528252012-01-20 11:58:43 +08004033 /* each of these stored in a list by its cgroup */
4034 struct list_head links;
4035 /* pointer to the cgroup we belong to, for list removal purposes */
4036 struct cgroup *owner;
Tejun Heob1a21362013-11-29 10:42:58 -05004037 /* for delayed destruction */
4038 struct delayed_work destroy_dwork;
Li Zefan24528252012-01-20 11:58:43 +08004039};
4040
Paul Menagebbcb81d2007-10-18 23:39:32 -07004041/*
Ben Blumd1d9fd32009-09-23 15:56:28 -07004042 * The following two functions "fix" the issue where there are more pids
4043 * than kmalloc will give memory for; in such cases, we use vmalloc/vfree.
4044 * TODO: replace with a kernel-wide solution to this problem
4045 */
4046#define PIDLIST_TOO_LARGE(c) ((c) * sizeof(pid_t) > (PAGE_SIZE * 2))
4047static void *pidlist_allocate(int count)
4048{
4049 if (PIDLIST_TOO_LARGE(count))
4050 return vmalloc(count * sizeof(pid_t));
4051 else
4052 return kmalloc(count * sizeof(pid_t), GFP_KERNEL);
4053}
Tejun Heob1a21362013-11-29 10:42:58 -05004054
Ben Blumd1d9fd32009-09-23 15:56:28 -07004055static void pidlist_free(void *p)
4056{
Bandan Das58794512015-03-02 17:51:10 -05004057 kvfree(p);
Ben Blumd1d9fd32009-09-23 15:56:28 -07004058}
Ben Blumd1d9fd32009-09-23 15:56:28 -07004059
4060/*
Tejun Heob1a21362013-11-29 10:42:58 -05004061 * Used to destroy all pidlists lingering waiting for destroy timer. None
4062 * should be left afterwards.
4063 */
4064static void cgroup_pidlist_destroy_all(struct cgroup *cgrp)
4065{
4066 struct cgroup_pidlist *l, *tmp_l;
4067
4068 mutex_lock(&cgrp->pidlist_mutex);
4069 list_for_each_entry_safe(l, tmp_l, &cgrp->pidlists, links)
4070 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork, 0);
4071 mutex_unlock(&cgrp->pidlist_mutex);
4072
4073 flush_workqueue(cgroup_pidlist_destroy_wq);
4074 BUG_ON(!list_empty(&cgrp->pidlists));
4075}
4076
4077static void cgroup_pidlist_destroy_work_fn(struct work_struct *work)
4078{
4079 struct delayed_work *dwork = to_delayed_work(work);
4080 struct cgroup_pidlist *l = container_of(dwork, struct cgroup_pidlist,
4081 destroy_dwork);
4082 struct cgroup_pidlist *tofree = NULL;
4083
4084 mutex_lock(&l->owner->pidlist_mutex);
Tejun Heob1a21362013-11-29 10:42:58 -05004085
4086 /*
Tejun Heo04502362013-11-29 10:42:59 -05004087 * Destroy iff we didn't get queued again. The state won't change
4088 * as destroy_dwork can only be queued while locked.
Tejun Heob1a21362013-11-29 10:42:58 -05004089 */
Tejun Heo04502362013-11-29 10:42:59 -05004090 if (!delayed_work_pending(dwork)) {
Tejun Heob1a21362013-11-29 10:42:58 -05004091 list_del(&l->links);
4092 pidlist_free(l->list);
4093 put_pid_ns(l->key.ns);
4094 tofree = l;
4095 }
4096
Tejun Heob1a21362013-11-29 10:42:58 -05004097 mutex_unlock(&l->owner->pidlist_mutex);
4098 kfree(tofree);
4099}
4100
4101/*
Ben Blum102a7752009-09-23 15:56:26 -07004102 * pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries
Li Zefan6ee211a2013-03-12 15:36:00 -07004103 * Returns the number of unique elements.
Paul Menagebbcb81d2007-10-18 23:39:32 -07004104 */
Li Zefan6ee211a2013-03-12 15:36:00 -07004105static int pidlist_uniq(pid_t *list, int length)
Paul Menagebbcb81d2007-10-18 23:39:32 -07004106{
Ben Blum102a7752009-09-23 15:56:26 -07004107 int src, dest = 1;
Ben Blum102a7752009-09-23 15:56:26 -07004108
4109 /*
4110 * we presume the 0th element is unique, so i starts at 1. trivial
4111 * edge cases first; no work needs to be done for either
4112 */
4113 if (length == 0 || length == 1)
4114 return length;
4115 /* src and dest walk down the list; dest counts unique elements */
4116 for (src = 1; src < length; src++) {
4117 /* find next unique element */
4118 while (list[src] == list[src-1]) {
4119 src++;
4120 if (src == length)
4121 goto after;
4122 }
4123 /* dest always points to where the next unique element goes */
4124 list[dest] = list[src];
4125 dest++;
4126 }
4127after:
Ben Blum102a7752009-09-23 15:56:26 -07004128 return dest;
4129}
4130
Tejun Heoafb2bc12013-11-29 10:42:59 -05004131/*
4132 * The two pid files - task and cgroup.procs - guaranteed that the result
4133 * is sorted, which forced this whole pidlist fiasco. As pid order is
4134 * different per namespace, each namespace needs differently sorted list,
4135 * making it impossible to use, for example, single rbtree of member tasks
4136 * sorted by task pointer. As pidlists can be fairly large, allocating one
4137 * per open file is dangerous, so cgroup had to implement shared pool of
4138 * pidlists keyed by cgroup and namespace.
4139 *
4140 * All this extra complexity was caused by the original implementation
4141 * committing to an entirely unnecessary property. In the long term, we
Tejun Heoaa6ec292014-07-09 10:08:08 -04004142 * want to do away with it. Explicitly scramble sort order if on the
4143 * default hierarchy so that no such expectation exists in the new
4144 * interface.
Tejun Heoafb2bc12013-11-29 10:42:59 -05004145 *
4146 * Scrambling is done by swapping every two consecutive bits, which is
4147 * non-identity one-to-one mapping which disturbs sort order sufficiently.
4148 */
4149static pid_t pid_fry(pid_t pid)
4150{
4151 unsigned a = pid & 0x55555555;
4152 unsigned b = pid & 0xAAAAAAAA;
4153
4154 return (a << 1) | (b >> 1);
4155}
4156
4157static pid_t cgroup_pid_fry(struct cgroup *cgrp, pid_t pid)
4158{
Tejun Heoaa6ec292014-07-09 10:08:08 -04004159 if (cgroup_on_dfl(cgrp))
Tejun Heoafb2bc12013-11-29 10:42:59 -05004160 return pid_fry(pid);
4161 else
4162 return pid;
4163}
4164
Ben Blum102a7752009-09-23 15:56:26 -07004165static int cmppid(const void *a, const void *b)
4166{
4167 return *(pid_t *)a - *(pid_t *)b;
4168}
4169
Tejun Heoafb2bc12013-11-29 10:42:59 -05004170static int fried_cmppid(const void *a, const void *b)
4171{
4172 return pid_fry(*(pid_t *)a) - pid_fry(*(pid_t *)b);
4173}
4174
Ben Blum72a8cb32009-09-23 15:56:27 -07004175static struct cgroup_pidlist *cgroup_pidlist_find(struct cgroup *cgrp,
4176 enum cgroup_filetype type)
4177{
4178 struct cgroup_pidlist *l;
4179 /* don't need task_nsproxy() if we're looking at ourself */
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08004180 struct pid_namespace *ns = task_active_pid_ns(current);
Li Zefanb70cc5f2010-03-10 15:22:12 -08004181
Tejun Heoe6b81712013-11-29 10:42:59 -05004182 lockdep_assert_held(&cgrp->pidlist_mutex);
4183
4184 list_for_each_entry(l, &cgrp->pidlists, links)
4185 if (l->key.type == type && l->key.ns == ns)
Ben Blum72a8cb32009-09-23 15:56:27 -07004186 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05004187 return NULL;
4188}
4189
Ben Blum72a8cb32009-09-23 15:56:27 -07004190/*
4191 * find the appropriate pidlist for our purpose (given procs vs tasks)
4192 * returns with the lock on that pidlist already held, and takes care
4193 * of the use count, or returns NULL with no locks held if we're out of
4194 * memory.
4195 */
Tejun Heoe6b81712013-11-29 10:42:59 -05004196static struct cgroup_pidlist *cgroup_pidlist_find_create(struct cgroup *cgrp,
4197 enum cgroup_filetype type)
Ben Blum72a8cb32009-09-23 15:56:27 -07004198{
4199 struct cgroup_pidlist *l;
Ben Blum72a8cb32009-09-23 15:56:27 -07004200
Tejun Heoe6b81712013-11-29 10:42:59 -05004201 lockdep_assert_held(&cgrp->pidlist_mutex);
4202
4203 l = cgroup_pidlist_find(cgrp, type);
4204 if (l)
4205 return l;
4206
Ben Blum72a8cb32009-09-23 15:56:27 -07004207 /* entry not found; create a new one */
Tejun Heof4f4be22013-06-12 21:04:51 -07004208 l = kzalloc(sizeof(struct cgroup_pidlist), GFP_KERNEL);
Tejun Heoe6b81712013-11-29 10:42:59 -05004209 if (!l)
Ben Blum72a8cb32009-09-23 15:56:27 -07004210 return l;
Tejun Heoe6b81712013-11-29 10:42:59 -05004211
Tejun Heob1a21362013-11-29 10:42:58 -05004212 INIT_DELAYED_WORK(&l->destroy_dwork, cgroup_pidlist_destroy_work_fn);
Ben Blum72a8cb32009-09-23 15:56:27 -07004213 l->key.type = type;
Tejun Heoe6b81712013-11-29 10:42:59 -05004214 /* don't need task_nsproxy() if we're looking at ourself */
4215 l->key.ns = get_pid_ns(task_active_pid_ns(current));
Ben Blum72a8cb32009-09-23 15:56:27 -07004216 l->owner = cgrp;
4217 list_add(&l->links, &cgrp->pidlists);
Ben Blum72a8cb32009-09-23 15:56:27 -07004218 return l;
4219}
4220
4221/*
Ben Blum102a7752009-09-23 15:56:26 -07004222 * Load a cgroup's pidarray with either procs' tgids or tasks' pids
4223 */
Ben Blum72a8cb32009-09-23 15:56:27 -07004224static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type,
4225 struct cgroup_pidlist **lp)
Ben Blum102a7752009-09-23 15:56:26 -07004226{
4227 pid_t *array;
4228 int length;
4229 int pid, n = 0; /* used for populating the array */
Tejun Heo72ec7022013-08-08 20:11:26 -04004230 struct css_task_iter it;
Paul Menage817929e2007-10-18 23:39:36 -07004231 struct task_struct *tsk;
Ben Blum102a7752009-09-23 15:56:26 -07004232 struct cgroup_pidlist *l;
4233
Tejun Heo4bac00d2013-11-29 10:42:59 -05004234 lockdep_assert_held(&cgrp->pidlist_mutex);
4235
Ben Blum102a7752009-09-23 15:56:26 -07004236 /*
4237 * If cgroup gets more users after we read count, we won't have
4238 * enough space - tough. This race is indistinguishable to the
4239 * caller from the case that the additional cgroup users didn't
4240 * show up until sometime later on.
4241 */
4242 length = cgroup_task_count(cgrp);
Ben Blumd1d9fd32009-09-23 15:56:28 -07004243 array = pidlist_allocate(length);
Ben Blum102a7752009-09-23 15:56:26 -07004244 if (!array)
4245 return -ENOMEM;
4246 /* now, populate the array */
Tejun Heo9d800df2014-05-14 09:15:00 -04004247 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04004248 while ((tsk = css_task_iter_next(&it))) {
Ben Blum102a7752009-09-23 15:56:26 -07004249 if (unlikely(n == length))
Paul Menage817929e2007-10-18 23:39:36 -07004250 break;
Ben Blum102a7752009-09-23 15:56:26 -07004251 /* get tgid or pid for procs or tasks file respectively */
Ben Blum72a8cb32009-09-23 15:56:27 -07004252 if (type == CGROUP_FILE_PROCS)
4253 pid = task_tgid_vnr(tsk);
4254 else
4255 pid = task_pid_vnr(tsk);
Ben Blum102a7752009-09-23 15:56:26 -07004256 if (pid > 0) /* make sure to only use valid results */
4257 array[n++] = pid;
Paul Menage817929e2007-10-18 23:39:36 -07004258 }
Tejun Heo72ec7022013-08-08 20:11:26 -04004259 css_task_iter_end(&it);
Ben Blum102a7752009-09-23 15:56:26 -07004260 length = n;
4261 /* now sort & (if procs) strip out duplicates */
Tejun Heoaa6ec292014-07-09 10:08:08 -04004262 if (cgroup_on_dfl(cgrp))
Tejun Heoafb2bc12013-11-29 10:42:59 -05004263 sort(array, length, sizeof(pid_t), fried_cmppid, NULL);
4264 else
4265 sort(array, length, sizeof(pid_t), cmppid, NULL);
Ben Blum72a8cb32009-09-23 15:56:27 -07004266 if (type == CGROUP_FILE_PROCS)
Li Zefan6ee211a2013-03-12 15:36:00 -07004267 length = pidlist_uniq(array, length);
Tejun Heoe6b81712013-11-29 10:42:59 -05004268
Tejun Heoe6b81712013-11-29 10:42:59 -05004269 l = cgroup_pidlist_find_create(cgrp, type);
Ben Blum72a8cb32009-09-23 15:56:27 -07004270 if (!l) {
Ben Blumd1d9fd32009-09-23 15:56:28 -07004271 pidlist_free(array);
Ben Blum72a8cb32009-09-23 15:56:27 -07004272 return -ENOMEM;
Ben Blum102a7752009-09-23 15:56:26 -07004273 }
Tejun Heoe6b81712013-11-29 10:42:59 -05004274
4275 /* store array, freeing old if necessary */
Ben Blumd1d9fd32009-09-23 15:56:28 -07004276 pidlist_free(l->list);
Ben Blum102a7752009-09-23 15:56:26 -07004277 l->list = array;
4278 l->length = length;
Ben Blum72a8cb32009-09-23 15:56:27 -07004279 *lp = l;
Ben Blum102a7752009-09-23 15:56:26 -07004280 return 0;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004281}
4282
Balbir Singh846c7bb2007-10-18 23:39:44 -07004283/**
Li Zefana043e3b2008-02-23 15:24:09 -08004284 * cgroupstats_build - build and fill cgroupstats
Balbir Singh846c7bb2007-10-18 23:39:44 -07004285 * @stats: cgroupstats to fill information into
4286 * @dentry: A dentry entry belonging to the cgroup for which stats have
4287 * been requested.
Li Zefana043e3b2008-02-23 15:24:09 -08004288 *
4289 * Build and fill cgroupstats so that taskstats can export it to user
4290 * space.
Balbir Singh846c7bb2007-10-18 23:39:44 -07004291 */
4292int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
4293{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004294 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
Paul Menagebd89aab2007-10-18 23:40:44 -07004295 struct cgroup *cgrp;
Tejun Heo72ec7022013-08-08 20:11:26 -04004296 struct css_task_iter it;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004297 struct task_struct *tsk;
Li Zefan33d283b2008-11-19 15:36:48 -08004298
Tejun Heo2bd59d42014-02-11 11:52:49 -05004299 /* it should be kernfs_node belonging to cgroupfs and is a directory */
4300 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
4301 kernfs_type(kn) != KERNFS_DIR)
4302 return -EINVAL;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004303
Li Zefanbad34662014-02-14 16:54:28 +08004304 mutex_lock(&cgroup_mutex);
4305
Tejun Heo2bd59d42014-02-11 11:52:49 -05004306 /*
4307 * We aren't being called from kernfs and there's no guarantee on
Tejun Heoec903c02014-05-13 12:11:01 -04004308 * @kn->priv's validity. For this and css_tryget_online_from_dir(),
Tejun Heo2bd59d42014-02-11 11:52:49 -05004309 * @kn->priv is RCU safe. Let's do the RCU dancing.
4310 */
4311 rcu_read_lock();
4312 cgrp = rcu_dereference(kn->priv);
Li Zefanbad34662014-02-14 16:54:28 +08004313 if (!cgrp || cgroup_is_dead(cgrp)) {
Tejun Heo2bd59d42014-02-11 11:52:49 -05004314 rcu_read_unlock();
Li Zefanbad34662014-02-14 16:54:28 +08004315 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004316 return -ENOENT;
4317 }
Li Zefanbad34662014-02-14 16:54:28 +08004318 rcu_read_unlock();
Balbir Singh846c7bb2007-10-18 23:39:44 -07004319
Tejun Heo9d800df2014-05-14 09:15:00 -04004320 css_task_iter_start(&cgrp->self, &it);
Tejun Heo72ec7022013-08-08 20:11:26 -04004321 while ((tsk = css_task_iter_next(&it))) {
Balbir Singh846c7bb2007-10-18 23:39:44 -07004322 switch (tsk->state) {
4323 case TASK_RUNNING:
4324 stats->nr_running++;
4325 break;
4326 case TASK_INTERRUPTIBLE:
4327 stats->nr_sleeping++;
4328 break;
4329 case TASK_UNINTERRUPTIBLE:
4330 stats->nr_uninterruptible++;
4331 break;
4332 case TASK_STOPPED:
4333 stats->nr_stopped++;
4334 break;
4335 default:
4336 if (delayacct_is_task_waiting_on_io(tsk))
4337 stats->nr_io_wait++;
4338 break;
4339 }
4340 }
Tejun Heo72ec7022013-08-08 20:11:26 -04004341 css_task_iter_end(&it);
Balbir Singh846c7bb2007-10-18 23:39:44 -07004342
Li Zefanbad34662014-02-14 16:54:28 +08004343 mutex_unlock(&cgroup_mutex);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004344 return 0;
Balbir Singh846c7bb2007-10-18 23:39:44 -07004345}
4346
Paul Menage8f3ff202009-09-23 15:56:25 -07004347
Paul Menagecc31edc2008-10-18 20:28:04 -07004348/*
Ben Blum102a7752009-09-23 15:56:26 -07004349 * seq_file methods for the tasks/procs files. The seq_file position is the
Paul Menagecc31edc2008-10-18 20:28:04 -07004350 * next pid to display; the seq_file iterator is a pointer to the pid
Ben Blum102a7752009-09-23 15:56:26 -07004351 * in the cgroup->l->list array.
Paul Menagecc31edc2008-10-18 20:28:04 -07004352 */
4353
Ben Blum102a7752009-09-23 15:56:26 -07004354static void *cgroup_pidlist_start(struct seq_file *s, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07004355{
4356 /*
4357 * Initially we receive a position value that corresponds to
4358 * one more than the last pid shown (or 0 on the first call or
4359 * after a seek to the start). Use a binary-search to find the
4360 * next pid to display, if any
4361 */
Tejun Heo2bd59d42014-02-11 11:52:49 -05004362 struct kernfs_open_file *of = s->private;
Tejun Heo7da11272013-12-05 12:28:04 -05004363 struct cgroup *cgrp = seq_css(s)->cgroup;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004364 struct cgroup_pidlist *l;
Tejun Heo7da11272013-12-05 12:28:04 -05004365 enum cgroup_filetype type = seq_cft(s)->private;
Paul Menagecc31edc2008-10-18 20:28:04 -07004366 int index = 0, pid = *pos;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004367 int *iter, ret;
Paul Menagecc31edc2008-10-18 20:28:04 -07004368
Tejun Heo4bac00d2013-11-29 10:42:59 -05004369 mutex_lock(&cgrp->pidlist_mutex);
4370
4371 /*
Tejun Heo5d224442013-12-05 12:28:04 -05004372 * !NULL @of->priv indicates that this isn't the first start()
Tejun Heo4bac00d2013-11-29 10:42:59 -05004373 * after open. If the matching pidlist is around, we can use that.
Tejun Heo5d224442013-12-05 12:28:04 -05004374 * Look for it. Note that @of->priv can't be used directly. It
Tejun Heo4bac00d2013-11-29 10:42:59 -05004375 * could already have been destroyed.
4376 */
Tejun Heo5d224442013-12-05 12:28:04 -05004377 if (of->priv)
4378 of->priv = cgroup_pidlist_find(cgrp, type);
Tejun Heo4bac00d2013-11-29 10:42:59 -05004379
4380 /*
4381 * Either this is the first start() after open or the matching
4382 * pidlist has been destroyed inbetween. Create a new one.
4383 */
Tejun Heo5d224442013-12-05 12:28:04 -05004384 if (!of->priv) {
4385 ret = pidlist_array_load(cgrp, type,
4386 (struct cgroup_pidlist **)&of->priv);
Tejun Heo4bac00d2013-11-29 10:42:59 -05004387 if (ret)
4388 return ERR_PTR(ret);
4389 }
Tejun Heo5d224442013-12-05 12:28:04 -05004390 l = of->priv;
Tejun Heo4bac00d2013-11-29 10:42:59 -05004391
Paul Menagecc31edc2008-10-18 20:28:04 -07004392 if (pid) {
Ben Blum102a7752009-09-23 15:56:26 -07004393 int end = l->length;
Stephen Rothwell20777762008-10-21 16:11:20 +11004394
Paul Menagecc31edc2008-10-18 20:28:04 -07004395 while (index < end) {
4396 int mid = (index + end) / 2;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004397 if (cgroup_pid_fry(cgrp, l->list[mid]) == pid) {
Paul Menagecc31edc2008-10-18 20:28:04 -07004398 index = mid;
4399 break;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004400 } else if (cgroup_pid_fry(cgrp, l->list[mid]) <= pid)
Paul Menagecc31edc2008-10-18 20:28:04 -07004401 index = mid + 1;
4402 else
4403 end = mid;
4404 }
4405 }
4406 /* If we're off the end of the array, we're done */
Ben Blum102a7752009-09-23 15:56:26 -07004407 if (index >= l->length)
Paul Menagecc31edc2008-10-18 20:28:04 -07004408 return NULL;
4409 /* Update the abstract position to be the actual pid that we found */
Ben Blum102a7752009-09-23 15:56:26 -07004410 iter = l->list + index;
Tejun Heoafb2bc12013-11-29 10:42:59 -05004411 *pos = cgroup_pid_fry(cgrp, *iter);
Paul Menagecc31edc2008-10-18 20:28:04 -07004412 return iter;
Paul Menagebbcb81d2007-10-18 23:39:32 -07004413}
4414
Ben Blum102a7752009-09-23 15:56:26 -07004415static void cgroup_pidlist_stop(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07004416{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004417 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05004418 struct cgroup_pidlist *l = of->priv;
Tejun Heo62236852013-11-29 10:42:58 -05004419
Tejun Heo5d224442013-12-05 12:28:04 -05004420 if (l)
4421 mod_delayed_work(cgroup_pidlist_destroy_wq, &l->destroy_dwork,
Tejun Heo04502362013-11-29 10:42:59 -05004422 CGROUP_PIDLIST_DESTROY_DELAY);
Tejun Heo7da11272013-12-05 12:28:04 -05004423 mutex_unlock(&seq_css(s)->cgroup->pidlist_mutex);
Paul Menagecc31edc2008-10-18 20:28:04 -07004424}
4425
Ben Blum102a7752009-09-23 15:56:26 -07004426static void *cgroup_pidlist_next(struct seq_file *s, void *v, loff_t *pos)
Paul Menagecc31edc2008-10-18 20:28:04 -07004427{
Tejun Heo2bd59d42014-02-11 11:52:49 -05004428 struct kernfs_open_file *of = s->private;
Tejun Heo5d224442013-12-05 12:28:04 -05004429 struct cgroup_pidlist *l = of->priv;
Ben Blum102a7752009-09-23 15:56:26 -07004430 pid_t *p = v;
4431 pid_t *end = l->list + l->length;
Paul Menagecc31edc2008-10-18 20:28:04 -07004432 /*
4433 * Advance to the next pid in the array. If this goes off the
4434 * end, we're done
4435 */
4436 p++;
4437 if (p >= end) {
4438 return NULL;
4439 } else {
Tejun Heo7da11272013-12-05 12:28:04 -05004440 *pos = cgroup_pid_fry(seq_css(s)->cgroup, *p);
Paul Menagecc31edc2008-10-18 20:28:04 -07004441 return p;
4442 }
4443}
4444
Ben Blum102a7752009-09-23 15:56:26 -07004445static int cgroup_pidlist_show(struct seq_file *s, void *v)
Paul Menagecc31edc2008-10-18 20:28:04 -07004446{
Joe Perches94ff2122015-04-15 16:18:20 -07004447 seq_printf(s, "%d\n", *(int *)v);
4448
4449 return 0;
Paul Menagecc31edc2008-10-18 20:28:04 -07004450}
4451
Tejun Heo182446d2013-08-08 20:11:24 -04004452static u64 cgroup_read_notify_on_release(struct cgroup_subsys_state *css,
4453 struct cftype *cft)
Paul Menage81a6a5c2007-10-18 23:39:38 -07004454{
Tejun Heo182446d2013-08-08 20:11:24 -04004455 return notify_on_release(css->cgroup);
Paul Menage81a6a5c2007-10-18 23:39:38 -07004456}
4457
Tejun Heo182446d2013-08-08 20:11:24 -04004458static int cgroup_write_notify_on_release(struct cgroup_subsys_state *css,
4459 struct cftype *cft, u64 val)
Paul Menage6379c102008-07-25 01:47:01 -07004460{
Paul Menage6379c102008-07-25 01:47:01 -07004461 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04004462 set_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004463 else
Tejun Heo182446d2013-08-08 20:11:24 -04004464 clear_bit(CGRP_NOTIFY_ON_RELEASE, &css->cgroup->flags);
Paul Menage6379c102008-07-25 01:47:01 -07004465 return 0;
4466}
4467
Tejun Heo182446d2013-08-08 20:11:24 -04004468static u64 cgroup_clone_children_read(struct cgroup_subsys_state *css,
4469 struct cftype *cft)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004470{
Tejun Heo182446d2013-08-08 20:11:24 -04004471 return test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004472}
4473
Tejun Heo182446d2013-08-08 20:11:24 -04004474static int cgroup_clone_children_write(struct cgroup_subsys_state *css,
4475 struct cftype *cft, u64 val)
Daniel Lezcano97978e62010-10-27 15:33:35 -07004476{
4477 if (val)
Tejun Heo182446d2013-08-08 20:11:24 -04004478 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004479 else
Tejun Heo182446d2013-08-08 20:11:24 -04004480 clear_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004481 return 0;
4482}
4483
Tejun Heoa14c6872014-07-15 11:05:09 -04004484/* cgroup core interface files for the default hierarchy */
4485static struct cftype cgroup_dfl_base_files[] = {
4486 {
4487 .name = "cgroup.procs",
Tejun Heo6f60ead2015-09-18 17:54:23 -04004488 .file_offset = offsetof(struct cgroup, procs_file),
Tejun Heoa14c6872014-07-15 11:05:09 -04004489 .seq_start = cgroup_pidlist_start,
4490 .seq_next = cgroup_pidlist_next,
4491 .seq_stop = cgroup_pidlist_stop,
4492 .seq_show = cgroup_pidlist_show,
4493 .private = CGROUP_FILE_PROCS,
4494 .write = cgroup_procs_write,
Tejun Heoa14c6872014-07-15 11:05:09 -04004495 },
4496 {
4497 .name = "cgroup.controllers",
4498 .flags = CFTYPE_ONLY_ON_ROOT,
4499 .seq_show = cgroup_root_controllers_show,
4500 },
4501 {
4502 .name = "cgroup.controllers",
4503 .flags = CFTYPE_NOT_ON_ROOT,
4504 .seq_show = cgroup_controllers_show,
4505 },
4506 {
4507 .name = "cgroup.subtree_control",
4508 .seq_show = cgroup_subtree_control_show,
4509 .write = cgroup_subtree_control_write,
4510 },
4511 {
Tejun Heo4a07c222015-09-18 17:54:22 -04004512 .name = "cgroup.events",
Tejun Heoa14c6872014-07-15 11:05:09 -04004513 .flags = CFTYPE_NOT_ON_ROOT,
Tejun Heo6f60ead2015-09-18 17:54:23 -04004514 .file_offset = offsetof(struct cgroup, events_file),
Tejun Heo4a07c222015-09-18 17:54:22 -04004515 .seq_show = cgroup_events_show,
Tejun Heoa14c6872014-07-15 11:05:09 -04004516 },
4517 { } /* terminate */
4518};
4519
4520/* cgroup core interface files for the legacy hierarchies */
4521static struct cftype cgroup_legacy_base_files[] = {
Paul Menage81a6a5c2007-10-18 23:39:38 -07004522 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07004523 .name = "cgroup.procs",
Tejun Heo6612f052013-12-05 12:28:04 -05004524 .seq_start = cgroup_pidlist_start,
4525 .seq_next = cgroup_pidlist_next,
4526 .seq_stop = cgroup_pidlist_stop,
4527 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004528 .private = CGROUP_FILE_PROCS,
Tejun Heoacbef752014-05-13 12:16:22 -04004529 .write = cgroup_procs_write,
Ben Blum102a7752009-09-23 15:56:26 -07004530 },
Paul Menage81a6a5c2007-10-18 23:39:38 -07004531 {
Daniel Lezcano97978e62010-10-27 15:33:35 -07004532 .name = "cgroup.clone_children",
4533 .read_u64 = cgroup_clone_children_read,
4534 .write_u64 = cgroup_clone_children_write,
4535 },
Tejun Heo6e6ff252012-04-01 12:09:55 -07004536 {
Tejun Heo873fe092013-04-14 20:15:26 -07004537 .name = "cgroup.sane_behavior",
4538 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004539 .seq_show = cgroup_sane_behavior_show,
Tejun Heo873fe092013-04-14 20:15:26 -07004540 },
Tejun Heof8f22e52014-04-23 11:13:16 -04004541 {
Tejun Heod5c56ce2013-06-03 19:14:34 -07004542 .name = "tasks",
Tejun Heo6612f052013-12-05 12:28:04 -05004543 .seq_start = cgroup_pidlist_start,
4544 .seq_next = cgroup_pidlist_next,
4545 .seq_stop = cgroup_pidlist_stop,
4546 .seq_show = cgroup_pidlist_show,
Tejun Heo5d224442013-12-05 12:28:04 -05004547 .private = CGROUP_FILE_TASKS,
Tejun Heoacbef752014-05-13 12:16:22 -04004548 .write = cgroup_tasks_write,
Tejun Heod5c56ce2013-06-03 19:14:34 -07004549 },
4550 {
4551 .name = "notify_on_release",
Tejun Heod5c56ce2013-06-03 19:14:34 -07004552 .read_u64 = cgroup_read_notify_on_release,
4553 .write_u64 = cgroup_write_notify_on_release,
4554 },
Tejun Heo873fe092013-04-14 20:15:26 -07004555 {
Tejun Heo6e6ff252012-04-01 12:09:55 -07004556 .name = "release_agent",
Tejun Heoa14c6872014-07-15 11:05:09 -04004557 .flags = CFTYPE_ONLY_ON_ROOT,
Tejun Heo2da8ca82013-12-05 12:28:04 -05004558 .seq_show = cgroup_release_agent_show,
Tejun Heo451af502014-05-13 12:16:21 -04004559 .write = cgroup_release_agent_write,
Tejun Heo5f469902014-02-11 11:52:48 -05004560 .max_write_len = PATH_MAX - 1,
Tejun Heo6e6ff252012-04-01 12:09:55 -07004561 },
Tejun Heodb0416b2012-04-01 12:09:55 -07004562 { } /* terminate */
Paul Menagebbcb81d2007-10-18 23:39:32 -07004563};
4564
Tejun Heo0c21ead2013-08-13 20:22:51 -04004565/*
4566 * css destruction is four-stage process.
4567 *
4568 * 1. Destruction starts. Killing of the percpu_ref is initiated.
4569 * Implemented in kill_css().
4570 *
4571 * 2. When the percpu_ref is confirmed to be visible as killed on all CPUs
Tejun Heoec903c02014-05-13 12:11:01 -04004572 * and thus css_tryget_online() is guaranteed to fail, the css can be
4573 * offlined by invoking offline_css(). After offlining, the base ref is
4574 * put. Implemented in css_killed_work_fn().
Tejun Heo0c21ead2013-08-13 20:22:51 -04004575 *
4576 * 3. When the percpu_ref reaches zero, the only possible remaining
4577 * accessors are inside RCU read sections. css_release() schedules the
4578 * RCU callback.
4579 *
4580 * 4. After the grace period, the css can be freed. Implemented in
4581 * css_free_work_fn().
4582 *
4583 * It is actually hairier because both step 2 and 4 require process context
4584 * and thus involve punting to css->destroy_work adding two additional
4585 * steps to the already complex sequence.
4586 */
Tejun Heo35ef10d2013-08-13 11:01:54 -04004587static void css_free_work_fn(struct work_struct *work)
Tejun Heo48ddbe12012-04-01 12:09:56 -07004588{
4589 struct cgroup_subsys_state *css =
Tejun Heo35ef10d2013-08-13 11:01:54 -04004590 container_of(work, struct cgroup_subsys_state, destroy_work);
Vladimir Davydov01e58652015-02-12 14:59:26 -08004591 struct cgroup_subsys *ss = css->ss;
Tejun Heo0c21ead2013-08-13 20:22:51 -04004592 struct cgroup *cgrp = css->cgroup;
Tejun Heo6f60ead2015-09-18 17:54:23 -04004593 struct cgroup_file *cfile;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004594
Tejun Heo9a1049d2014-06-28 08:10:14 -04004595 percpu_ref_exit(&css->refcnt);
4596
Tejun Heo6f60ead2015-09-18 17:54:23 -04004597 list_for_each_entry(cfile, &css->files, node)
4598 kernfs_put(cfile->kn);
4599
Vladimir Davydov01e58652015-02-12 14:59:26 -08004600 if (ss) {
Tejun Heo9d755d32014-05-14 09:15:02 -04004601 /* css free path */
Vladimir Davydov01e58652015-02-12 14:59:26 -08004602 int id = css->id;
4603
Tejun Heo9d755d32014-05-14 09:15:02 -04004604 if (css->parent)
4605 css_put(css->parent);
Tejun Heo0ae78e02013-08-13 11:01:54 -04004606
Vladimir Davydov01e58652015-02-12 14:59:26 -08004607 ss->css_free(css);
4608 cgroup_idr_remove(&ss->css_idr, id);
Tejun Heo9d755d32014-05-14 09:15:02 -04004609 cgroup_put(cgrp);
4610 } else {
4611 /* cgroup free path */
4612 atomic_dec(&cgrp->root->nr_cgrps);
4613 cgroup_pidlist_destroy_all(cgrp);
Zefan Li971ff492014-09-18 16:06:19 +08004614 cancel_work_sync(&cgrp->release_agent_work);
Tejun Heo9d755d32014-05-14 09:15:02 -04004615
Tejun Heod51f39b2014-05-16 13:22:48 -04004616 if (cgroup_parent(cgrp)) {
Tejun Heo9d755d32014-05-14 09:15:02 -04004617 /*
4618 * We get a ref to the parent, and put the ref when
4619 * this cgroup is being freed, so it's guaranteed
4620 * that the parent won't be destroyed before its
4621 * children.
4622 */
Tejun Heod51f39b2014-05-16 13:22:48 -04004623 cgroup_put(cgroup_parent(cgrp));
Tejun Heo9d755d32014-05-14 09:15:02 -04004624 kernfs_put(cgrp->kn);
4625 kfree(cgrp);
4626 } else {
4627 /*
4628 * This is root cgroup's refcnt reaching zero,
4629 * which indicates that the root should be
4630 * released.
4631 */
4632 cgroup_destroy_root(cgrp->root);
4633 }
4634 }
Tejun Heo0c21ead2013-08-13 20:22:51 -04004635}
4636
4637static void css_free_rcu_fn(struct rcu_head *rcu_head)
4638{
4639 struct cgroup_subsys_state *css =
4640 container_of(rcu_head, struct cgroup_subsys_state, rcu_head);
4641
Tejun Heo0c21ead2013-08-13 20:22:51 -04004642 INIT_WORK(&css->destroy_work, css_free_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05004643 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heo48ddbe12012-04-01 12:09:56 -07004644}
4645
Tejun Heo25e15d82014-05-14 09:15:02 -04004646static void css_release_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004647{
4648 struct cgroup_subsys_state *css =
Tejun Heo25e15d82014-05-14 09:15:02 -04004649 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heo15a4c832014-05-04 15:09:14 -04004650 struct cgroup_subsys *ss = css->ss;
Tejun Heo9d755d32014-05-14 09:15:02 -04004651 struct cgroup *cgrp = css->cgroup;
Tejun Heod3daf282013-06-13 19:39:16 -07004652
Tejun Heo1fed1b22014-05-16 13:22:49 -04004653 mutex_lock(&cgroup_mutex);
4654
Tejun Heode3f0342014-05-16 13:22:49 -04004655 css->flags |= CSS_RELEASED;
Tejun Heo1fed1b22014-05-16 13:22:49 -04004656 list_del_rcu(&css->sibling);
4657
Tejun Heo9d755d32014-05-14 09:15:02 -04004658 if (ss) {
4659 /* css release path */
Vladimir Davydov01e58652015-02-12 14:59:26 -08004660 cgroup_idr_replace(&ss->css_idr, NULL, css->id);
Tejun Heo7d172cc2014-11-18 02:49:51 -05004661 if (ss->css_released)
4662 ss->css_released(css);
Tejun Heo9d755d32014-05-14 09:15:02 -04004663 } else {
4664 /* cgroup release path */
Tejun Heo9d755d32014-05-14 09:15:02 -04004665 cgroup_idr_remove(&cgrp->root->cgroup_idr, cgrp->id);
4666 cgrp->id = -1;
Li Zefana4189482014-09-04 14:43:07 +08004667
4668 /*
4669 * There are two control paths which try to determine
4670 * cgroup from dentry without going through kernfs -
4671 * cgroupstats_build() and css_tryget_online_from_dir().
4672 * Those are supported by RCU protecting clearing of
4673 * cgrp->kn->priv backpointer.
4674 */
4675 RCU_INIT_POINTER(*(void __rcu __force **)&cgrp->kn->priv, NULL);
Tejun Heo9d755d32014-05-14 09:15:02 -04004676 }
Tejun Heo15a4c832014-05-04 15:09:14 -04004677
Tejun Heo1fed1b22014-05-16 13:22:49 -04004678 mutex_unlock(&cgroup_mutex);
4679
Tejun Heo0c21ead2013-08-13 20:22:51 -04004680 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07004681}
4682
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07004683static void css_release(struct percpu_ref *ref)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004684{
4685 struct cgroup_subsys_state *css =
4686 container_of(ref, struct cgroup_subsys_state, refcnt);
4687
Tejun Heo25e15d82014-05-14 09:15:02 -04004688 INIT_WORK(&css->destroy_work, css_release_work_fn);
4689 queue_work(cgroup_destroy_wq, &css->destroy_work);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004690}
4691
Tejun Heoddfcada2014-05-04 15:09:14 -04004692static void init_and_link_css(struct cgroup_subsys_state *css,
4693 struct cgroup_subsys *ss, struct cgroup *cgrp)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004694{
Tejun Heo0cb51d72014-05-16 13:22:49 -04004695 lockdep_assert_held(&cgroup_mutex);
4696
Tejun Heoddfcada2014-05-04 15:09:14 -04004697 cgroup_get(cgrp);
4698
Tejun Heod5c419b2014-05-16 13:22:48 -04004699 memset(css, 0, sizeof(*css));
Paul Menagebd89aab2007-10-18 23:40:44 -07004700 css->cgroup = cgrp;
Tejun Heo72c97e52013-08-08 20:11:22 -04004701 css->ss = ss;
Tejun Heod5c419b2014-05-16 13:22:48 -04004702 INIT_LIST_HEAD(&css->sibling);
4703 INIT_LIST_HEAD(&css->children);
Tejun Heo6f60ead2015-09-18 17:54:23 -04004704 INIT_LIST_HEAD(&css->files);
Tejun Heo0cb51d72014-05-16 13:22:49 -04004705 css->serial_nr = css_serial_nr_next++;
Tejun Heo48ddbe12012-04-01 12:09:56 -07004706
Tejun Heod51f39b2014-05-16 13:22:48 -04004707 if (cgroup_parent(cgrp)) {
4708 css->parent = cgroup_css(cgroup_parent(cgrp), ss);
Tejun Heoddfcada2014-05-04 15:09:14 -04004709 css_get(css->parent);
Tejun Heoddfcada2014-05-04 15:09:14 -04004710 }
Tejun Heo0ae78e02013-08-13 11:01:54 -04004711
Tejun Heoca8bdca2013-08-26 18:40:56 -04004712 BUG_ON(cgroup_css(cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07004713}
4714
Li Zefan2a4ac632013-07-31 16:16:40 +08004715/* invoke ->css_online() on a new CSS and mark it online if successful */
Tejun Heo623f9262013-08-13 11:01:55 -04004716static int online_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004717{
Tejun Heo623f9262013-08-13 11:01:55 -04004718 struct cgroup_subsys *ss = css->ss;
Tejun Heob1929db2012-11-19 08:13:38 -08004719 int ret = 0;
4720
Tejun Heoa31f2d32012-11-19 08:13:37 -08004721 lockdep_assert_held(&cgroup_mutex);
4722
Tejun Heo92fb9742012-11-19 08:13:38 -08004723 if (ss->css_online)
Tejun Heoeb954192013-08-08 20:11:23 -04004724 ret = ss->css_online(css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004725 if (!ret) {
Tejun Heoeb954192013-08-08 20:11:23 -04004726 css->flags |= CSS_ONLINE;
Tejun Heoaec25022014-02-08 10:36:58 -05004727 rcu_assign_pointer(css->cgroup->subsys[ss->id], css);
Tejun Heoae7f1642013-08-13 20:22:50 -04004728 }
Tejun Heob1929db2012-11-19 08:13:38 -08004729 return ret;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004730}
4731
Li Zefan2a4ac632013-07-31 16:16:40 +08004732/* if the CSS is online, invoke ->css_offline() on it and mark it offline */
Tejun Heo623f9262013-08-13 11:01:55 -04004733static void offline_css(struct cgroup_subsys_state *css)
Tejun Heoa31f2d32012-11-19 08:13:37 -08004734{
Tejun Heo623f9262013-08-13 11:01:55 -04004735 struct cgroup_subsys *ss = css->ss;
Tejun Heoa31f2d32012-11-19 08:13:37 -08004736
4737 lockdep_assert_held(&cgroup_mutex);
4738
4739 if (!(css->flags & CSS_ONLINE))
4740 return;
4741
Li Zefand7eeac12013-03-12 15:35:59 -07004742 if (ss->css_offline)
Tejun Heoeb954192013-08-08 20:11:23 -04004743 ss->css_offline(css);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004744
Tejun Heoeb954192013-08-08 20:11:23 -04004745 css->flags &= ~CSS_ONLINE;
Tejun Heoe3297802014-04-23 11:13:15 -04004746 RCU_INIT_POINTER(css->cgroup->subsys[ss->id], NULL);
Tejun Heof8f22e52014-04-23 11:13:16 -04004747
4748 wake_up_all(&css->cgroup->offline_waitq);
Tejun Heoa31f2d32012-11-19 08:13:37 -08004749}
4750
Tejun Heoc81c925a2013-12-06 15:11:56 -05004751/**
4752 * create_css - create a cgroup_subsys_state
4753 * @cgrp: the cgroup new css will be associated with
4754 * @ss: the subsys of new css
Tejun Heof63070d2014-07-08 18:02:57 -04004755 * @visible: whether to create control knobs for the new css or not
Tejun Heoc81c925a2013-12-06 15:11:56 -05004756 *
4757 * Create a new css associated with @cgrp - @ss pair. On success, the new
Tejun Heof63070d2014-07-08 18:02:57 -04004758 * css is online and installed in @cgrp with all interface files created if
4759 * @visible. Returns 0 on success, -errno on failure.
Tejun Heoc81c925a2013-12-06 15:11:56 -05004760 */
Tejun Heof63070d2014-07-08 18:02:57 -04004761static int create_css(struct cgroup *cgrp, struct cgroup_subsys *ss,
4762 bool visible)
Tejun Heoc81c925a2013-12-06 15:11:56 -05004763{
Tejun Heod51f39b2014-05-16 13:22:48 -04004764 struct cgroup *parent = cgroup_parent(cgrp);
Tejun Heo1fed1b22014-05-16 13:22:49 -04004765 struct cgroup_subsys_state *parent_css = cgroup_css(parent, ss);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004766 struct cgroup_subsys_state *css;
4767 int err;
4768
Tejun Heoc81c925a2013-12-06 15:11:56 -05004769 lockdep_assert_held(&cgroup_mutex);
4770
Tejun Heo1fed1b22014-05-16 13:22:49 -04004771 css = ss->css_alloc(parent_css);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004772 if (IS_ERR(css))
4773 return PTR_ERR(css);
4774
Tejun Heoddfcada2014-05-04 15:09:14 -04004775 init_and_link_css(css, ss, cgrp);
Tejun Heoa2bed822014-05-04 15:09:14 -04004776
Tejun Heo2aad2a82014-09-24 13:31:50 -04004777 err = percpu_ref_init(&css->refcnt, css_release, 0, GFP_KERNEL);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004778 if (err)
Li Zefan3eb59ec2014-03-18 17:02:36 +08004779 goto err_free_css;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004780
Vladimir Davydovcf780b72015-08-03 15:32:26 +03004781 err = cgroup_idr_alloc(&ss->css_idr, NULL, 2, 0, GFP_KERNEL);
Tejun Heo15a4c832014-05-04 15:09:14 -04004782 if (err < 0)
4783 goto err_free_percpu_ref;
4784 css->id = err;
Tejun Heoc81c925a2013-12-06 15:11:56 -05004785
Tejun Heof63070d2014-07-08 18:02:57 -04004786 if (visible) {
Tejun Heo4df8dc92015-09-18 17:54:23 -04004787 err = css_populate_dir(css, NULL);
Tejun Heof63070d2014-07-08 18:02:57 -04004788 if (err)
4789 goto err_free_id;
4790 }
Tejun Heo15a4c832014-05-04 15:09:14 -04004791
4792 /* @css is ready to be brought online now, make it visible */
Tejun Heo1fed1b22014-05-16 13:22:49 -04004793 list_add_tail_rcu(&css->sibling, &parent_css->children);
Tejun Heo15a4c832014-05-04 15:09:14 -04004794 cgroup_idr_replace(&ss->css_idr, css, css->id);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004795
4796 err = online_css(css);
4797 if (err)
Tejun Heo1fed1b22014-05-16 13:22:49 -04004798 goto err_list_del;
Tejun Heo94419622014-03-19 10:23:54 -04004799
Tejun Heoc81c925a2013-12-06 15:11:56 -05004800 if (ss->broken_hierarchy && !ss->warned_broken_hierarchy &&
Tejun Heod51f39b2014-05-16 13:22:48 -04004801 cgroup_parent(parent)) {
Joe Perchesed3d2612014-04-25 18:28:03 -04004802 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 -04004803 current->comm, current->pid, ss->name);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004804 if (!strcmp(ss->name, "memory"))
Joe Perchesed3d2612014-04-25 18:28:03 -04004805 pr_warn("\"memory\" requires setting use_hierarchy to 1 on the root\n");
Tejun Heoc81c925a2013-12-06 15:11:56 -05004806 ss->warned_broken_hierarchy = true;
4807 }
4808
4809 return 0;
4810
Tejun Heo1fed1b22014-05-16 13:22:49 -04004811err_list_del:
4812 list_del_rcu(&css->sibling);
Tejun Heo4df8dc92015-09-18 17:54:23 -04004813 css_clear_dir(css, NULL);
Tejun Heo15a4c832014-05-04 15:09:14 -04004814err_free_id:
4815 cgroup_idr_remove(&ss->css_idr, css->id);
Li Zefan3eb59ec2014-03-18 17:02:36 +08004816err_free_percpu_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04004817 percpu_ref_exit(&css->refcnt);
Li Zefan3eb59ec2014-03-18 17:02:36 +08004818err_free_css:
Tejun Heoa2bed822014-05-04 15:09:14 -04004819 call_rcu(&css->rcu_head, css_free_rcu_fn);
Tejun Heoc81c925a2013-12-06 15:11:56 -05004820 return err;
4821}
4822
Tejun Heob3bfd982014-05-13 12:19:22 -04004823static int cgroup_mkdir(struct kernfs_node *parent_kn, const char *name,
4824 umode_t mode)
Paul Menageddbcc7e2007-10-18 23:39:30 -07004825{
Tejun Heob11cfb52015-11-20 15:55:52 -05004826 struct cgroup *parent, *cgrp, *tcgrp;
Tejun Heoa9746d82014-05-13 12:19:22 -04004827 struct cgroup_root *root;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004828 struct cgroup_subsys *ss;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004829 struct kernfs_node *kn;
Tejun Heob11cfb52015-11-20 15:55:52 -05004830 int level, ssid, ret;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004831
Alban Crequy71b1fb52014-08-18 12:20:20 +01004832 /* Do not accept '\n' to prevent making /proc/<pid>/cgroup unparsable.
4833 */
4834 if (strchr(name, '\n'))
4835 return -EINVAL;
4836
Tejun Heoa9746d82014-05-13 12:19:22 -04004837 parent = cgroup_kn_lock_live(parent_kn);
4838 if (!parent)
4839 return -ENODEV;
4840 root = parent->root;
Tejun Heob11cfb52015-11-20 15:55:52 -05004841 level = parent->level + 1;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004842
Tejun Heo0a950f62012-11-19 09:02:12 -08004843 /* allocate the cgroup and its ID, 0 is reserved for the root */
Tejun Heob11cfb52015-11-20 15:55:52 -05004844 cgrp = kzalloc(sizeof(*cgrp) +
4845 sizeof(cgrp->ancestor_ids[0]) * (level + 1), GFP_KERNEL);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004846 if (!cgrp) {
4847 ret = -ENOMEM;
4848 goto out_unlock;
Li Zefan0ab02ca2014-02-11 16:05:46 +08004849 }
4850
Tejun Heo2aad2a82014-09-24 13:31:50 -04004851 ret = percpu_ref_init(&cgrp->self.refcnt, css_release, 0, GFP_KERNEL);
Tejun Heo9d755d32014-05-14 09:15:02 -04004852 if (ret)
4853 goto out_free_cgrp;
4854
Li Zefan0ab02ca2014-02-11 16:05:46 +08004855 /*
4856 * Temporarily set the pointer to NULL, so idr_find() won't return
4857 * a half-baked cgroup.
4858 */
Vladimir Davydovcf780b72015-08-03 15:32:26 +03004859 cgrp->id = cgroup_idr_alloc(&root->cgroup_idr, NULL, 2, 0, GFP_KERNEL);
Li Zefan0ab02ca2014-02-11 16:05:46 +08004860 if (cgrp->id < 0) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004861 ret = -ENOMEM;
Tejun Heo9d755d32014-05-14 09:15:02 -04004862 goto out_cancel_ref;
Tejun Heo976c06b2012-11-05 09:16:59 -08004863 }
4864
Paul Menagecc31edc2008-10-18 20:28:04 -07004865 init_cgroup_housekeeping(cgrp);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004866
Tejun Heo9d800df2014-05-14 09:15:00 -04004867 cgrp->self.parent = &parent->self;
Tejun Heoba0f4d72014-05-13 12:19:22 -04004868 cgrp->root = root;
Tejun Heob11cfb52015-11-20 15:55:52 -05004869 cgrp->level = level;
4870
4871 for (tcgrp = cgrp; tcgrp; tcgrp = cgroup_parent(tcgrp))
4872 cgrp->ancestor_ids[tcgrp->level] = tcgrp->id;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004873
Li Zefanb6abdb02008-03-04 14:28:19 -08004874 if (notify_on_release(parent))
4875 set_bit(CGRP_NOTIFY_ON_RELEASE, &cgrp->flags);
4876
Tejun Heo2260e7f2012-11-19 08:13:38 -08004877 if (test_bit(CGRP_CPUSET_CLONE_CHILDREN, &parent->flags))
4878 set_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags);
Daniel Lezcano97978e62010-10-27 15:33:35 -07004879
Tejun Heo2bd59d42014-02-11 11:52:49 -05004880 /* create the directory */
Tejun Heoe61734c2014-02-12 09:29:50 -05004881 kn = kernfs_create_dir(parent->kn, name, mode, cgrp);
Tejun Heo2bd59d42014-02-11 11:52:49 -05004882 if (IS_ERR(kn)) {
Tejun Heoba0f4d72014-05-13 12:19:22 -04004883 ret = PTR_ERR(kn);
4884 goto out_free_id;
Tejun Heo2bd59d42014-02-11 11:52:49 -05004885 }
4886 cgrp->kn = kn;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004887
Tejun Heo6f305582014-02-12 09:29:50 -05004888 /*
4889 * This extra ref will be put in cgroup_free_fn() and guarantees
4890 * that @cgrp->kn is always accessible.
4891 */
4892 kernfs_get(kn);
Paul Menageddbcc7e2007-10-18 23:39:30 -07004893
Tejun Heo0cb51d72014-05-16 13:22:49 -04004894 cgrp->self.serial_nr = css_serial_nr_next++;
Tejun Heo53fa5262013-05-24 10:55:38 +09004895
Tejun Heo4e139af2012-11-19 08:13:36 -08004896 /* allocation complete, commit to creation */
Tejun Heod5c419b2014-05-16 13:22:48 -04004897 list_add_tail_rcu(&cgrp->self.sibling, &cgroup_parent(cgrp)->self.children);
Tejun Heo3c9c8252014-02-12 09:29:50 -05004898 atomic_inc(&root->nr_cgrps);
Tejun Heo59f52962014-02-11 11:52:49 -05004899 cgroup_get(parent);
Li Zefan415cf072013-04-08 14:35:02 +08004900
Tejun Heo0d802552013-12-06 15:11:56 -05004901 /*
4902 * @cgrp is now fully operational. If something fails after this
4903 * point, it'll be released via the normal destruction path.
4904 */
Tejun Heo6fa49182014-05-04 15:09:13 -04004905 cgroup_idr_replace(&root->cgroup_idr, cgrp, cgrp->id);
Li Zefan4e96ee8e2013-07-31 09:50:50 +08004906
Tejun Heoba0f4d72014-05-13 12:19:22 -04004907 ret = cgroup_kn_set_ugid(kn);
4908 if (ret)
4909 goto out_destroy;
Tejun Heo49957f82014-04-07 16:44:47 -04004910
Tejun Heo4df8dc92015-09-18 17:54:23 -04004911 ret = css_populate_dir(&cgrp->self, NULL);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004912 if (ret)
4913 goto out_destroy;
Tejun Heo628f7cd2013-06-28 16:24:11 -07004914
Tejun Heo9d403e92013-12-06 15:11:56 -05004915 /* let's create and online css's */
Tejun Heob85d2042013-12-06 15:11:57 -05004916 for_each_subsys(ss, ssid) {
Tejun Heof392e512014-04-23 11:13:14 -04004917 if (parent->child_subsys_mask & (1 << ssid)) {
Tejun Heof63070d2014-07-08 18:02:57 -04004918 ret = create_css(cgrp, ss,
4919 parent->subtree_control & (1 << ssid));
Tejun Heoba0f4d72014-05-13 12:19:22 -04004920 if (ret)
4921 goto out_destroy;
Tejun Heob85d2042013-12-06 15:11:57 -05004922 }
Tejun Heoa8638032012-11-09 09:12:29 -08004923 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07004924
Tejun Heobd53d612014-04-23 11:13:16 -04004925 /*
4926 * On the default hierarchy, a child doesn't automatically inherit
Tejun Heo667c2492014-07-08 18:02:56 -04004927 * subtree_control from the parent. Each is configured manually.
Tejun Heobd53d612014-04-23 11:13:16 -04004928 */
Tejun Heo667c2492014-07-08 18:02:56 -04004929 if (!cgroup_on_dfl(cgrp)) {
4930 cgrp->subtree_control = parent->subtree_control;
4931 cgroup_refresh_child_subsys_mask(cgrp);
4932 }
Tejun Heof392e512014-04-23 11:13:14 -04004933
Tejun Heo2bd59d42014-02-11 11:52:49 -05004934 kernfs_activate(kn);
4935
Tejun Heoba0f4d72014-05-13 12:19:22 -04004936 ret = 0;
4937 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004938
Tejun Heoba0f4d72014-05-13 12:19:22 -04004939out_free_id:
Tejun Heo6fa49182014-05-04 15:09:13 -04004940 cgroup_idr_remove(&root->cgroup_idr, cgrp->id);
Tejun Heo9d755d32014-05-14 09:15:02 -04004941out_cancel_ref:
Tejun Heo9a1049d2014-06-28 08:10:14 -04004942 percpu_ref_exit(&cgrp->self.refcnt);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004943out_free_cgrp:
Paul Menagebd89aab2007-10-18 23:40:44 -07004944 kfree(cgrp);
Tejun Heoba0f4d72014-05-13 12:19:22 -04004945out_unlock:
Tejun Heoa9746d82014-05-13 12:19:22 -04004946 cgroup_kn_unlock(parent_kn);
Tejun Heoe1b2dc12014-03-20 11:10:15 -04004947 return ret;
Tejun Heoba0f4d72014-05-13 12:19:22 -04004948
4949out_destroy:
4950 cgroup_destroy_locked(cgrp);
4951 goto out_unlock;
Paul Menageddbcc7e2007-10-18 23:39:30 -07004952}
4953
Tejun Heo223dbc32013-08-13 20:22:50 -04004954/*
4955 * This is called when the refcnt of a css is confirmed to be killed.
Tejun Heo249f3462014-05-14 09:15:01 -04004956 * css_tryget_online() is now guaranteed to fail. Tell the subsystem to
4957 * initate destruction and put the css ref from kill_css().
Tejun Heo223dbc32013-08-13 20:22:50 -04004958 */
4959static void css_killed_work_fn(struct work_struct *work)
Tejun Heod3daf282013-06-13 19:39:16 -07004960{
Tejun Heo223dbc32013-08-13 20:22:50 -04004961 struct cgroup_subsys_state *css =
4962 container_of(work, struct cgroup_subsys_state, destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07004963
Tejun Heof20104d2013-08-13 20:22:50 -04004964 mutex_lock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04004965 offline_css(css);
Tejun Heof20104d2013-08-13 20:22:50 -04004966 mutex_unlock(&cgroup_mutex);
Tejun Heo09a503ea2013-08-13 20:22:50 -04004967
Tejun Heo09a503ea2013-08-13 20:22:50 -04004968 css_put(css);
Tejun Heod3daf282013-06-13 19:39:16 -07004969}
4970
Tejun Heo223dbc32013-08-13 20:22:50 -04004971/* css kill confirmation processing requires process context, bounce */
4972static void css_killed_ref_fn(struct percpu_ref *ref)
Tejun Heod3daf282013-06-13 19:39:16 -07004973{
4974 struct cgroup_subsys_state *css =
4975 container_of(ref, struct cgroup_subsys_state, refcnt);
4976
Tejun Heo223dbc32013-08-13 20:22:50 -04004977 INIT_WORK(&css->destroy_work, css_killed_work_fn);
Tejun Heoe5fca242013-11-22 17:14:39 -05004978 queue_work(cgroup_destroy_wq, &css->destroy_work);
Tejun Heod3daf282013-06-13 19:39:16 -07004979}
4980
Tejun Heof392e512014-04-23 11:13:14 -04004981/**
4982 * kill_css - destroy a css
4983 * @css: css to destroy
4984 *
4985 * This function initiates destruction of @css by removing cgroup interface
4986 * files and putting its base reference. ->css_offline() will be invoked
Tejun Heoec903c02014-05-13 12:11:01 -04004987 * asynchronously once css_tryget_online() is guaranteed to fail and when
4988 * the reference count reaches zero, @css will be released.
Tejun Heof392e512014-04-23 11:13:14 -04004989 */
4990static void kill_css(struct cgroup_subsys_state *css)
Tejun Heoedae0c32013-08-13 20:22:51 -04004991{
Tejun Heo01f64742014-05-13 12:19:23 -04004992 lockdep_assert_held(&cgroup_mutex);
Tejun Heo94419622014-03-19 10:23:54 -04004993
Tejun Heo2bd59d42014-02-11 11:52:49 -05004994 /*
4995 * This must happen before css is disassociated with its cgroup.
4996 * See seq_css() for details.
4997 */
Tejun Heo4df8dc92015-09-18 17:54:23 -04004998 css_clear_dir(css, NULL);
Tejun Heo3c14f8b2013-08-13 20:22:51 -04004999
Tejun Heoedae0c32013-08-13 20:22:51 -04005000 /*
5001 * Killing would put the base ref, but we need to keep it alive
5002 * until after ->css_offline().
5003 */
5004 css_get(css);
5005
5006 /*
5007 * cgroup core guarantees that, by the time ->css_offline() is
5008 * invoked, no new css reference will be given out via
Tejun Heoec903c02014-05-13 12:11:01 -04005009 * css_tryget_online(). We can't simply call percpu_ref_kill() and
Tejun Heoedae0c32013-08-13 20:22:51 -04005010 * proceed to offlining css's because percpu_ref_kill() doesn't
5011 * guarantee that the ref is seen as killed on all CPUs on return.
5012 *
5013 * Use percpu_ref_kill_and_confirm() to get notifications as each
5014 * css is confirmed to be seen as killed on all CPUs.
5015 */
5016 percpu_ref_kill_and_confirm(&css->refcnt, css_killed_ref_fn);
Tejun Heod3daf282013-06-13 19:39:16 -07005017}
5018
5019/**
5020 * cgroup_destroy_locked - the first stage of cgroup destruction
5021 * @cgrp: cgroup to be destroyed
5022 *
5023 * css's make use of percpu refcnts whose killing latency shouldn't be
5024 * exposed to userland and are RCU protected. Also, cgroup core needs to
Tejun Heoec903c02014-05-13 12:11:01 -04005025 * guarantee that css_tryget_online() won't succeed by the time
5026 * ->css_offline() is invoked. To satisfy all the requirements,
5027 * destruction is implemented in the following two steps.
Tejun Heod3daf282013-06-13 19:39:16 -07005028 *
5029 * s1. Verify @cgrp can be destroyed and mark it dying. Remove all
5030 * userland visible parts and start killing the percpu refcnts of
5031 * css's. Set up so that the next stage will be kicked off once all
5032 * the percpu refcnts are confirmed to be killed.
5033 *
5034 * s2. Invoke ->css_offline(), mark the cgroup dead and proceed with the
5035 * rest of destruction. Once all cgroup references are gone, the
5036 * cgroup is RCU-freed.
5037 *
5038 * This function implements s1. After this step, @cgrp is gone as far as
5039 * the userland is concerned and a new cgroup with the same name may be
5040 * created. As cgroup doesn't care about the names internally, this
5041 * doesn't cause any problem.
5042 */
Tejun Heo42809dd2012-11-19 08:13:37 -08005043static int cgroup_destroy_locked(struct cgroup *cgrp)
5044 __releases(&cgroup_mutex) __acquires(&cgroup_mutex)
Paul Menageddbcc7e2007-10-18 23:39:30 -07005045{
Tejun Heo2bd59d42014-02-11 11:52:49 -05005046 struct cgroup_subsys_state *css;
Tejun Heo1c6727a2013-12-06 15:11:56 -05005047 int ssid;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005048
Tejun Heo42809dd2012-11-19 08:13:37 -08005049 lockdep_assert_held(&cgroup_mutex);
5050
Tejun Heo91486f62015-10-15 16:41:51 -04005051 /*
5052 * Only migration can raise populated from zero and we're already
5053 * holding cgroup_mutex.
5054 */
5055 if (cgroup_is_populated(cgrp))
Paul Menageddbcc7e2007-10-18 23:39:30 -07005056 return -EBUSY;
Tejun Heoed9577932012-11-05 09:16:58 -08005057
Tejun Heo1a90dd52012-11-05 09:16:59 -08005058 /*
Tejun Heod5c419b2014-05-16 13:22:48 -04005059 * Make sure there's no live children. We can't test emptiness of
5060 * ->self.children as dead children linger on it while being
5061 * drained; otherwise, "rmdir parent/child parent" may fail.
Hugh Dickinsbb78a922013-08-28 16:31:23 -07005062 */
Tejun Heof3d46502014-05-16 13:22:52 -04005063 if (css_has_online_children(&cgrp->self))
Hugh Dickinsbb78a922013-08-28 16:31:23 -07005064 return -EBUSY;
5065
5066 /*
Tejun Heo455050d2013-06-13 19:27:41 -07005067 * Mark @cgrp dead. This prevents further task migration and child
Tejun Heode3f0342014-05-16 13:22:49 -04005068 * creation by disabling cgroup_lock_live_group().
Tejun Heo455050d2013-06-13 19:27:41 -07005069 */
Tejun Heo184faf32014-05-16 13:22:51 -04005070 cgrp->self.flags &= ~CSS_ONLINE;
Tejun Heo1a90dd52012-11-05 09:16:59 -08005071
Tejun Heo249f3462014-05-14 09:15:01 -04005072 /* initiate massacre of all css's */
Tejun Heo1a90dd52012-11-05 09:16:59 -08005073 for_each_css(css, ssid, cgrp)
Tejun Heo455050d2013-06-13 19:27:41 -07005074 kill_css(css);
5075
Tejun Heo455050d2013-06-13 19:27:41 -07005076 /*
Tejun Heo01f64742014-05-13 12:19:23 -04005077 * Remove @cgrp directory along with the base files. @cgrp has an
5078 * extra ref on its kn.
Tejun Heo455050d2013-06-13 19:27:41 -07005079 */
Tejun Heo01f64742014-05-13 12:19:23 -04005080 kernfs_remove(cgrp->kn);
Tejun Heof20104d2013-08-13 20:22:50 -04005081
Tejun Heod51f39b2014-05-16 13:22:48 -04005082 check_for_release(cgroup_parent(cgrp));
Tejun Heo2bd59d42014-02-11 11:52:49 -05005083
Tejun Heo249f3462014-05-14 09:15:01 -04005084 /* put the base reference */
Tejun Heo9d755d32014-05-14 09:15:02 -04005085 percpu_ref_kill(&cgrp->self.refcnt);
Tejun Heo455050d2013-06-13 19:27:41 -07005086
Tejun Heoea15f8c2013-06-13 19:27:42 -07005087 return 0;
5088};
5089
Tejun Heo2bd59d42014-02-11 11:52:49 -05005090static int cgroup_rmdir(struct kernfs_node *kn)
Tejun Heo42809dd2012-11-19 08:13:37 -08005091{
Tejun Heoa9746d82014-05-13 12:19:22 -04005092 struct cgroup *cgrp;
Tejun Heo2bd59d42014-02-11 11:52:49 -05005093 int ret = 0;
Tejun Heo42809dd2012-11-19 08:13:37 -08005094
Tejun Heoa9746d82014-05-13 12:19:22 -04005095 cgrp = cgroup_kn_lock_live(kn);
5096 if (!cgrp)
5097 return 0;
Tejun Heo42809dd2012-11-19 08:13:37 -08005098
Tejun Heoa9746d82014-05-13 12:19:22 -04005099 ret = cgroup_destroy_locked(cgrp);
Tejun Heo42809dd2012-11-19 08:13:37 -08005100
Tejun Heoa9746d82014-05-13 12:19:22 -04005101 cgroup_kn_unlock(kn);
Tejun Heo42809dd2012-11-19 08:13:37 -08005102 return ret;
5103}
5104
Tejun Heo2bd59d42014-02-11 11:52:49 -05005105static struct kernfs_syscall_ops cgroup_kf_syscall_ops = {
5106 .remount_fs = cgroup_remount,
5107 .show_options = cgroup_show_options,
5108 .mkdir = cgroup_mkdir,
5109 .rmdir = cgroup_rmdir,
5110 .rename = cgroup_rename,
5111};
Tejun Heo8e3f6542012-04-01 12:09:55 -07005112
Tejun Heo15a4c832014-05-04 15:09:14 -04005113static void __init cgroup_init_subsys(struct cgroup_subsys *ss, bool early)
Paul Menageddbcc7e2007-10-18 23:39:30 -07005114{
Paul Menageddbcc7e2007-10-18 23:39:30 -07005115 struct cgroup_subsys_state *css;
Diego Callejacfe36bd2007-11-14 16:58:54 -08005116
5117 printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005118
Tejun Heo648bb562012-11-19 08:13:36 -08005119 mutex_lock(&cgroup_mutex);
5120
Tejun Heo15a4c832014-05-04 15:09:14 -04005121 idr_init(&ss->css_idr);
Tejun Heo0adb0702014-02-12 09:29:48 -05005122 INIT_LIST_HEAD(&ss->cfts);
Tejun Heo8e3f6542012-04-01 12:09:55 -07005123
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005124 /* Create the root cgroup state for this subsystem */
5125 ss->root = &cgrp_dfl_root;
5126 css = ss->css_alloc(cgroup_css(&cgrp_dfl_root.cgrp, ss));
Paul Menageddbcc7e2007-10-18 23:39:30 -07005127 /* We don't handle early failures gracefully */
5128 BUG_ON(IS_ERR(css));
Tejun Heoddfcada2014-05-04 15:09:14 -04005129 init_and_link_css(css, ss, &cgrp_dfl_root.cgrp);
Tejun Heo3b514d22014-05-16 13:22:47 -04005130
5131 /*
5132 * Root csses are never destroyed and we can't initialize
5133 * percpu_ref during early init. Disable refcnting.
5134 */
5135 css->flags |= CSS_NO_REF;
5136
Tejun Heo15a4c832014-05-04 15:09:14 -04005137 if (early) {
Tejun Heo9395a452014-05-14 09:15:02 -04005138 /* allocation can't be done safely during early init */
Tejun Heo15a4c832014-05-04 15:09:14 -04005139 css->id = 1;
5140 } else {
5141 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2, GFP_KERNEL);
5142 BUG_ON(css->id < 0);
5143 }
Paul Menageddbcc7e2007-10-18 23:39:30 -07005144
Li Zefane8d55fd2008-04-29 01:00:13 -07005145 /* Update the init_css_set to contain a subsys
Paul Menage817929e2007-10-18 23:39:36 -07005146 * pointer to this state - since the subsystem is
Li Zefane8d55fd2008-04-29 01:00:13 -07005147 * newly registered, all tasks and hence the
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005148 * init_css_set is in the subsystem's root cgroup. */
Tejun Heoaec25022014-02-08 10:36:58 -05005149 init_css_set.subsys[ss->id] = css;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005150
Aleksa Saraicb4a3162015-06-06 10:02:14 +10005151 have_fork_callback |= (bool)ss->fork << ss->id;
5152 have_exit_callback |= (bool)ss->exit << ss->id;
Tejun Heoafcf6c82015-10-15 16:41:53 -04005153 have_free_callback |= (bool)ss->free << ss->id;
Aleksa Sarai7e476822015-06-09 21:32:09 +10005154 have_canfork_callback |= (bool)ss->can_fork << ss->id;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005155
Li Zefane8d55fd2008-04-29 01:00:13 -07005156 /* At system boot, before all subsystems have been
5157 * registered, no tasks have been forked, so we don't
5158 * need to invoke fork callbacks here. */
5159 BUG_ON(!list_empty(&init_task.tasks));
5160
Tejun Heoae7f1642013-08-13 20:22:50 -04005161 BUG_ON(online_css(css));
Tejun Heoa8638032012-11-09 09:12:29 -08005162
Tejun Heo648bb562012-11-19 08:13:36 -08005163 mutex_unlock(&cgroup_mutex);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005164}
5165
5166/**
Li Zefana043e3b2008-02-23 15:24:09 -08005167 * cgroup_init_early - cgroup initialization at system boot
5168 *
5169 * Initialize cgroups at system boot, and initialize any
5170 * subsystems that request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07005171 */
5172int __init cgroup_init_early(void)
5173{
Tejun Heo7b9a6ba2014-07-09 10:08:08 -04005174 static struct cgroup_sb_opts __initdata opts;
Tejun Heo30159ec2013-06-25 11:53:37 -07005175 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005176 int i;
Tejun Heo30159ec2013-06-25 11:53:37 -07005177
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005178 init_cgroup_root(&cgrp_dfl_root, &opts);
Tejun Heo3b514d22014-05-16 13:22:47 -04005179 cgrp_dfl_root.cgrp.self.flags |= CSS_NO_REF;
5180
Tejun Heoa4ea1cc2013-06-21 15:52:33 -07005181 RCU_INIT_POINTER(init_task.cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07005182
Tejun Heo3ed80a62014-02-08 10:36:58 -05005183 for_each_subsys(ss, i) {
Tejun Heoaec25022014-02-08 10:36:58 -05005184 WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id,
Tejun Heo073219e2014-02-08 10:36:58 -05005185 "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p name:id=%d:%s\n",
5186 i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free,
Tejun Heoaec25022014-02-08 10:36:58 -05005187 ss->id, ss->name);
Tejun Heo073219e2014-02-08 10:36:58 -05005188 WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN,
5189 "cgroup_subsys_name %s too long\n", cgroup_subsys_name[i]);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005190
Tejun Heoaec25022014-02-08 10:36:58 -05005191 ss->id = i;
Tejun Heo073219e2014-02-08 10:36:58 -05005192 ss->name = cgroup_subsys_name[i];
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005193 if (!ss->legacy_name)
5194 ss->legacy_name = cgroup_subsys_name[i];
Paul Menageddbcc7e2007-10-18 23:39:30 -07005195
5196 if (ss->early_init)
Tejun Heo15a4c832014-05-04 15:09:14 -04005197 cgroup_init_subsys(ss, true);
Paul Menageddbcc7e2007-10-18 23:39:30 -07005198 }
5199 return 0;
5200}
5201
Tejun Heoa3e72732015-09-25 16:24:27 -04005202static unsigned long cgroup_disable_mask __initdata;
5203
Paul Menageddbcc7e2007-10-18 23:39:30 -07005204/**
Li Zefana043e3b2008-02-23 15:24:09 -08005205 * cgroup_init - cgroup initialization
5206 *
5207 * Register cgroup filesystem and /proc file, and initialize
5208 * any subsystems that didn't request early init.
Paul Menageddbcc7e2007-10-18 23:39:30 -07005209 */
5210int __init cgroup_init(void)
5211{
Tejun Heo30159ec2013-06-25 11:53:37 -07005212 struct cgroup_subsys *ss;
Li Zefan0ac801f2013-01-10 11:49:27 +08005213 unsigned long key;
Tejun Heo035f4f52015-10-15 17:00:43 -04005214 int ssid;
Paul Menagea4243162007-10-18 23:39:35 -07005215
Tejun Heo1ed13282015-09-16 12:53:17 -04005216 BUG_ON(percpu_init_rwsem(&cgroup_threadgroup_rwsem));
Tejun Heoa14c6872014-07-15 11:05:09 -04005217 BUG_ON(cgroup_init_cftypes(NULL, cgroup_dfl_base_files));
5218 BUG_ON(cgroup_init_cftypes(NULL, cgroup_legacy_base_files));
Paul Menageddbcc7e2007-10-18 23:39:30 -07005219
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005220 mutex_lock(&cgroup_mutex);
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005221
Tejun Heo82fe9b02013-06-25 11:53:37 -07005222 /* Add init_css_set to the hash table */
5223 key = css_set_hash(init_css_set.subsys);
5224 hash_add(css_set_table, &init_css_set.hlist, key);
5225
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005226 BUG_ON(cgroup_setup_root(&cgrp_dfl_root, 0));
Greg KH676db4a2010-08-05 13:53:35 -07005227
Tejun Heo54e7b4e2013-04-14 11:36:57 -07005228 mutex_unlock(&cgroup_mutex);
5229
Tejun Heo172a2c062014-03-19 10:23:53 -04005230 for_each_subsys(ss, ssid) {
Tejun Heo15a4c832014-05-04 15:09:14 -04005231 if (ss->early_init) {
5232 struct cgroup_subsys_state *css =
5233 init_css_set.subsys[ss->id];
5234
5235 css->id = cgroup_idr_alloc(&ss->css_idr, css, 1, 2,
5236 GFP_KERNEL);
5237 BUG_ON(css->id < 0);
5238 } else {
5239 cgroup_init_subsys(ss, false);
5240 }
Tejun Heo172a2c062014-03-19 10:23:53 -04005241
Tejun Heo2d8f2432014-04-23 11:13:15 -04005242 list_add_tail(&init_css_set.e_cset_node[ssid],
5243 &cgrp_dfl_root.cgrp.e_csets[ssid]);
Tejun Heo172a2c062014-03-19 10:23:53 -04005244
5245 /*
Li Zefanc731ae12014-06-05 17:16:30 +08005246 * Setting dfl_root subsys_mask needs to consider the
5247 * disabled flag and cftype registration needs kmalloc,
5248 * both of which aren't available during early_init.
Tejun Heo172a2c062014-03-19 10:23:53 -04005249 */
Tejun Heoa3e72732015-09-25 16:24:27 -04005250 if (cgroup_disable_mask & (1 << ssid)) {
5251 static_branch_disable(cgroup_subsys_enabled_key[ssid]);
5252 printk(KERN_INFO "Disabling %s control group subsystem\n",
5253 ss->name);
Tejun Heoa8ddc822014-07-15 11:05:10 -04005254 continue;
Tejun Heoa3e72732015-09-25 16:24:27 -04005255 }
Tejun Heoa8ddc822014-07-15 11:05:10 -04005256
5257 cgrp_dfl_root.subsys_mask |= 1 << ss->id;
5258
Tejun Heo5de4fa12014-07-15 11:05:10 -04005259 if (!ss->dfl_cftypes)
5260 cgrp_dfl_root_inhibit_ss_mask |= 1 << ss->id;
5261
Tejun Heoa8ddc822014-07-15 11:05:10 -04005262 if (ss->dfl_cftypes == ss->legacy_cftypes) {
5263 WARN_ON(cgroup_add_cftypes(ss, ss->dfl_cftypes));
5264 } else {
5265 WARN_ON(cgroup_add_dfl_cftypes(ss, ss->dfl_cftypes));
5266 WARN_ON(cgroup_add_legacy_cftypes(ss, ss->legacy_cftypes));
Li Zefanc731ae12014-06-05 17:16:30 +08005267 }
Vladimir Davydov295458e2015-02-19 17:34:46 +03005268
5269 if (ss->bind)
5270 ss->bind(init_css_set.subsys[ssid]);
Tejun Heo172a2c062014-03-19 10:23:53 -04005271 }
Greg KH676db4a2010-08-05 13:53:35 -07005272
Tejun Heo035f4f52015-10-15 17:00:43 -04005273 WARN_ON(sysfs_create_mount_point(fs_kobj, "cgroup"));
5274 WARN_ON(register_filesystem(&cgroup_fs_type));
5275 WARN_ON(!proc_create("cgroups", 0, NULL, &proc_cgroupstats_operations));
Paul Menagea4243162007-10-18 23:39:35 -07005276
Tejun Heo2bd59d42014-02-11 11:52:49 -05005277 return 0;
Paul Menageddbcc7e2007-10-18 23:39:30 -07005278}
Paul Menageb4f48b62007-10-18 23:39:33 -07005279
Tejun Heoe5fca242013-11-22 17:14:39 -05005280static int __init cgroup_wq_init(void)
5281{
5282 /*
5283 * There isn't much point in executing destruction path in
5284 * parallel. Good chunk is serialized with cgroup_mutex anyway.
Tejun Heo1a115332014-02-12 19:06:19 -05005285 * Use 1 for @max_active.
Tejun Heoe5fca242013-11-22 17:14:39 -05005286 *
5287 * We would prefer to do this in cgroup_init() above, but that
5288 * is called before init_workqueues(): so leave this until after.
5289 */
Tejun Heo1a115332014-02-12 19:06:19 -05005290 cgroup_destroy_wq = alloc_workqueue("cgroup_destroy", 0, 1);
Tejun Heoe5fca242013-11-22 17:14:39 -05005291 BUG_ON(!cgroup_destroy_wq);
Tejun Heob1a21362013-11-29 10:42:58 -05005292
5293 /*
5294 * Used to destroy pidlists and separate to serve as flush domain.
5295 * Cap @max_active to 1 too.
5296 */
5297 cgroup_pidlist_destroy_wq = alloc_workqueue("cgroup_pidlist_destroy",
5298 0, 1);
5299 BUG_ON(!cgroup_pidlist_destroy_wq);
5300
Tejun Heoe5fca242013-11-22 17:14:39 -05005301 return 0;
5302}
5303core_initcall(cgroup_wq_init);
5304
Paul Menagea4243162007-10-18 23:39:35 -07005305/*
5306 * proc_cgroup_show()
5307 * - Print task's cgroup paths into seq_file, one line for each hierarchy
5308 * - Used for /proc/<pid>/cgroup.
Paul Menagea4243162007-10-18 23:39:35 -07005309 */
Zefan Li006f4ac2014-09-18 16:03:15 +08005310int proc_cgroup_show(struct seq_file *m, struct pid_namespace *ns,
5311 struct pid *pid, struct task_struct *tsk)
Paul Menagea4243162007-10-18 23:39:35 -07005312{
Tejun Heoe61734c2014-02-12 09:29:50 -05005313 char *buf, *path;
Paul Menagea4243162007-10-18 23:39:35 -07005314 int retval;
Tejun Heo3dd06ff2014-03-19 10:23:54 -04005315 struct cgroup_root *root;
Paul Menagea4243162007-10-18 23:39:35 -07005316
5317 retval = -ENOMEM;
Tejun Heoe61734c2014-02-12 09:29:50 -05005318 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Paul Menagea4243162007-10-18 23:39:35 -07005319 if (!buf)
5320 goto out;
5321
Paul Menagea4243162007-10-18 23:39:35 -07005322 mutex_lock(&cgroup_mutex);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005323 spin_lock_bh(&css_set_lock);
Paul Menagea4243162007-10-18 23:39:35 -07005324
Tejun Heo985ed672014-03-19 10:23:53 -04005325 for_each_root(root) {
Paul Menagea4243162007-10-18 23:39:35 -07005326 struct cgroup_subsys *ss;
Paul Menagebd89aab2007-10-18 23:40:44 -07005327 struct cgroup *cgrp;
Tejun Heob85d2042013-12-06 15:11:57 -05005328 int ssid, count = 0;
Paul Menagea4243162007-10-18 23:39:35 -07005329
Tejun Heoa2dd4242014-03-19 10:23:55 -04005330 if (root == &cgrp_dfl_root && !cgrp_dfl_root_visible)
Tejun Heo985ed672014-03-19 10:23:53 -04005331 continue;
5332
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005333 seq_printf(m, "%d:", root->hierarchy_id);
Tejun Heod98817d2015-08-18 13:58:16 -07005334 if (root != &cgrp_dfl_root)
5335 for_each_subsys(ss, ssid)
5336 if (root->subsys_mask & (1 << ssid))
5337 seq_printf(m, "%s%s", count++ ? "," : "",
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005338 ss->legacy_name);
Paul Menagec6d57f32009-09-23 15:56:19 -07005339 if (strlen(root->name))
5340 seq_printf(m, "%sname=%s", count ? "," : "",
5341 root->name);
Paul Menagea4243162007-10-18 23:39:35 -07005342 seq_putc(m, ':');
Tejun Heo2e91fa72015-10-15 16:41:53 -04005343
Paul Menage7717f7b2009-09-23 15:56:22 -07005344 cgrp = task_cgroup_from_root(tsk, root);
Tejun Heo2e91fa72015-10-15 16:41:53 -04005345
5346 /*
5347 * On traditional hierarchies, all zombie tasks show up as
5348 * belonging to the root cgroup. On the default hierarchy,
5349 * while a zombie doesn't show up in "cgroup.procs" and
5350 * thus can't be migrated, its /proc/PID/cgroup keeps
5351 * reporting the cgroup it belonged to before exiting. If
5352 * the cgroup is removed before the zombie is reaped,
5353 * " (deleted)" is appended to the cgroup path.
5354 */
5355 if (cgroup_on_dfl(cgrp) || !(tsk->flags & PF_EXITING)) {
5356 path = cgroup_path(cgrp, buf, PATH_MAX);
5357 if (!path) {
5358 retval = -ENAMETOOLONG;
5359 goto out_unlock;
5360 }
5361 } else {
5362 path = "/";
Tejun Heoe61734c2014-02-12 09:29:50 -05005363 }
Tejun Heo2e91fa72015-10-15 16:41:53 -04005364
Tejun Heoe61734c2014-02-12 09:29:50 -05005365 seq_puts(m, path);
Tejun Heo2e91fa72015-10-15 16:41:53 -04005366
5367 if (cgroup_on_dfl(cgrp) && cgroup_is_dead(cgrp))
5368 seq_puts(m, " (deleted)\n");
5369 else
5370 seq_putc(m, '\n');
Paul Menagea4243162007-10-18 23:39:35 -07005371 }
5372
Zefan Li006f4ac2014-09-18 16:03:15 +08005373 retval = 0;
Paul Menagea4243162007-10-18 23:39:35 -07005374out_unlock:
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005375 spin_unlock_bh(&css_set_lock);
Paul Menagea4243162007-10-18 23:39:35 -07005376 mutex_unlock(&cgroup_mutex);
Paul Menagea4243162007-10-18 23:39:35 -07005377 kfree(buf);
5378out:
5379 return retval;
5380}
5381
Paul Menagea4243162007-10-18 23:39:35 -07005382/* Display information about each subsystem and each hierarchy */
5383static int proc_cgroupstats_show(struct seq_file *m, void *v)
5384{
Tejun Heo30159ec2013-06-25 11:53:37 -07005385 struct cgroup_subsys *ss;
Paul Menagea4243162007-10-18 23:39:35 -07005386 int i;
Paul Menagea4243162007-10-18 23:39:35 -07005387
Paul Menage8bab8dd2008-04-04 14:29:57 -07005388 seq_puts(m, "#subsys_name\thierarchy\tnum_cgroups\tenabled\n");
Ben Blumaae8aab2010-03-10 15:22:07 -08005389 /*
5390 * ideally we don't want subsystems moving around while we do this.
5391 * cgroup_mutex is also necessary to guarantee an atomic snapshot of
5392 * subsys/hierarchy state.
5393 */
Paul Menagea4243162007-10-18 23:39:35 -07005394 mutex_lock(&cgroup_mutex);
Tejun Heo30159ec2013-06-25 11:53:37 -07005395
5396 for_each_subsys(ss, i)
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005397 seq_printf(m, "%s\t%d\t%d\t%d\n",
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005398 ss->legacy_name, ss->root->hierarchy_id,
Tejun Heofc5ed1e2015-09-18 11:56:28 -04005399 atomic_read(&ss->root->nr_cgrps),
5400 cgroup_ssid_enabled(i));
Tejun Heo30159ec2013-06-25 11:53:37 -07005401
Paul Menagea4243162007-10-18 23:39:35 -07005402 mutex_unlock(&cgroup_mutex);
5403 return 0;
5404}
5405
5406static int cgroupstats_open(struct inode *inode, struct file *file)
5407{
Al Viro9dce07f2008-03-29 03:07:28 +00005408 return single_open(file, proc_cgroupstats_show, NULL);
Paul Menagea4243162007-10-18 23:39:35 -07005409}
5410
Alexey Dobriyan828c0952009-10-01 15:43:56 -07005411static const struct file_operations proc_cgroupstats_operations = {
Paul Menagea4243162007-10-18 23:39:35 -07005412 .open = cgroupstats_open,
5413 .read = seq_read,
5414 .llseek = seq_lseek,
5415 .release = single_release,
5416};
5417
Aleksa Sarai7e476822015-06-09 21:32:09 +10005418static void **subsys_canfork_priv_p(void *ss_priv[CGROUP_CANFORK_COUNT], int i)
5419{
5420 if (CGROUP_CANFORK_START <= i && i < CGROUP_CANFORK_END)
5421 return &ss_priv[i - CGROUP_CANFORK_START];
5422 return NULL;
5423}
5424
5425static void *subsys_canfork_priv(void *ss_priv[CGROUP_CANFORK_COUNT], int i)
5426{
5427 void **private = subsys_canfork_priv_p(ss_priv, i);
5428 return private ? *private : NULL;
5429}
5430
Paul Menageb4f48b62007-10-18 23:39:33 -07005431/**
Tejun Heoeaf797a2014-02-25 10:04:03 -05005432 * cgroup_fork - initialize cgroup related fields during copy_process()
Li Zefana043e3b2008-02-23 15:24:09 -08005433 * @child: pointer to task_struct of forking parent process.
Paul Menageb4f48b62007-10-18 23:39:33 -07005434 *
Tejun Heoeaf797a2014-02-25 10:04:03 -05005435 * A task is associated with the init_css_set until cgroup_post_fork()
5436 * attaches it to the parent's css_set. Empty cg_list indicates that
5437 * @child isn't holding reference to its css_set.
Paul Menageb4f48b62007-10-18 23:39:33 -07005438 */
5439void cgroup_fork(struct task_struct *child)
5440{
Tejun Heoeaf797a2014-02-25 10:04:03 -05005441 RCU_INIT_POINTER(child->cgroups, &init_css_set);
Paul Menage817929e2007-10-18 23:39:36 -07005442 INIT_LIST_HEAD(&child->cg_list);
Paul Menageb4f48b62007-10-18 23:39:33 -07005443}
5444
5445/**
Aleksa Sarai7e476822015-06-09 21:32:09 +10005446 * cgroup_can_fork - called on a new task before the process is exposed
5447 * @child: the task in question.
5448 *
5449 * This calls the subsystem can_fork() callbacks. If the can_fork() callback
5450 * returns an error, the fork aborts with that error code. This allows for
5451 * a cgroup subsystem to conditionally allow or deny new forks.
5452 */
5453int cgroup_can_fork(struct task_struct *child,
5454 void *ss_priv[CGROUP_CANFORK_COUNT])
5455{
5456 struct cgroup_subsys *ss;
5457 int i, j, ret;
5458
5459 for_each_subsys_which(ss, i, &have_canfork_callback) {
5460 ret = ss->can_fork(child, subsys_canfork_priv_p(ss_priv, i));
5461 if (ret)
5462 goto out_revert;
5463 }
5464
5465 return 0;
5466
5467out_revert:
5468 for_each_subsys(ss, j) {
5469 if (j >= i)
5470 break;
5471 if (ss->cancel_fork)
5472 ss->cancel_fork(child, subsys_canfork_priv(ss_priv, j));
5473 }
5474
5475 return ret;
5476}
5477
5478/**
5479 * cgroup_cancel_fork - called if a fork failed after cgroup_can_fork()
5480 * @child: the task in question
5481 *
5482 * This calls the cancel_fork() callbacks if a fork failed *after*
5483 * cgroup_can_fork() succeded.
5484 */
5485void cgroup_cancel_fork(struct task_struct *child,
5486 void *ss_priv[CGROUP_CANFORK_COUNT])
5487{
5488 struct cgroup_subsys *ss;
5489 int i;
5490
5491 for_each_subsys(ss, i)
5492 if (ss->cancel_fork)
5493 ss->cancel_fork(child, subsys_canfork_priv(ss_priv, i));
5494}
5495
5496/**
Li Zefana043e3b2008-02-23 15:24:09 -08005497 * cgroup_post_fork - called on a new task after adding it to the task list
5498 * @child: the task in question
5499 *
Tejun Heo5edee612012-10-16 15:03:14 -07005500 * Adds the task to the list running through its css_set if necessary and
5501 * call the subsystem fork() callbacks. Has to be after the task is
5502 * visible on the task list in case we race with the first call to
Tejun Heo0942eee2013-08-08 20:11:26 -04005503 * cgroup_task_iter_start() - to guarantee that the new task ends up on its
Tejun Heo5edee612012-10-16 15:03:14 -07005504 * list.
Li Zefana043e3b2008-02-23 15:24:09 -08005505 */
Aleksa Sarai7e476822015-06-09 21:32:09 +10005506void cgroup_post_fork(struct task_struct *child,
5507 void *old_ss_priv[CGROUP_CANFORK_COUNT])
Paul Menage817929e2007-10-18 23:39:36 -07005508{
Tejun Heo30159ec2013-06-25 11:53:37 -07005509 struct cgroup_subsys *ss;
Tejun Heo5edee612012-10-16 15:03:14 -07005510 int i;
5511
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005512 /*
Dongsheng Yang251f8c02014-08-25 19:27:52 +08005513 * This may race against cgroup_enable_task_cg_lists(). As that
Tejun Heoeaf797a2014-02-25 10:04:03 -05005514 * function sets use_task_css_set_links before grabbing
5515 * tasklist_lock and we just went through tasklist_lock to add
5516 * @child, it's guaranteed that either we see the set
5517 * use_task_css_set_links or cgroup_enable_task_cg_lists() sees
5518 * @child during its iteration.
5519 *
5520 * If we won the race, @child is associated with %current's
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005521 * css_set. Grabbing css_set_lock guarantees both that the
Tejun Heoeaf797a2014-02-25 10:04:03 -05005522 * association is stable, and, on completion of the parent's
5523 * migration, @child is visible in the source of migration or
5524 * already in the destination cgroup. This guarantee is necessary
5525 * when implementing operations which need to migrate all tasks of
5526 * a cgroup to another.
5527 *
Dongsheng Yang251f8c02014-08-25 19:27:52 +08005528 * Note that if we lose to cgroup_enable_task_cg_lists(), @child
Tejun Heoeaf797a2014-02-25 10:04:03 -05005529 * will remain in init_css_set. This is safe because all tasks are
5530 * in the init_css_set before cg_links is enabled and there's no
5531 * operation which transfers all tasks out of init_css_set.
Frederic Weisbecker3ce32302012-02-08 03:37:27 +01005532 */
Paul Menage817929e2007-10-18 23:39:36 -07005533 if (use_task_css_set_links) {
Tejun Heoeaf797a2014-02-25 10:04:03 -05005534 struct css_set *cset;
5535
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005536 spin_lock_bh(&css_set_lock);
Tejun Heo0e1d7682014-02-25 10:04:03 -05005537 cset = task_css_set(current);
Tejun Heoeaf797a2014-02-25 10:04:03 -05005538 if (list_empty(&child->cg_list)) {
Tejun Heoeaf797a2014-02-25 10:04:03 -05005539 get_css_set(cset);
Tejun Heof6d7d042015-10-15 16:41:52 -04005540 css_set_move_task(child, NULL, cset, false);
Tejun Heoeaf797a2014-02-25 10:04:03 -05005541 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005542 spin_unlock_bh(&css_set_lock);
Paul Menage817929e2007-10-18 23:39:36 -07005543 }
Tejun Heo5edee612012-10-16 15:03:14 -07005544
5545 /*
5546 * Call ss->fork(). This must happen after @child is linked on
5547 * css_set; otherwise, @child might change state between ->fork()
5548 * and addition to css_set.
5549 */
Aleksa Saraicb4a3162015-06-06 10:02:14 +10005550 for_each_subsys_which(ss, i, &have_fork_callback)
Aleksa Sarai7e476822015-06-09 21:32:09 +10005551 ss->fork(child, subsys_canfork_priv(old_ss_priv, i));
Paul Menage817929e2007-10-18 23:39:36 -07005552}
Tejun Heo5edee612012-10-16 15:03:14 -07005553
Paul Menage817929e2007-10-18 23:39:36 -07005554/**
Paul Menageb4f48b62007-10-18 23:39:33 -07005555 * cgroup_exit - detach cgroup from exiting task
5556 * @tsk: pointer to task_struct of exiting process
5557 *
5558 * Description: Detach cgroup from @tsk and release it.
5559 *
5560 * Note that cgroups marked notify_on_release force every task in
5561 * them to take the global cgroup_mutex mutex when exiting.
5562 * This could impact scaling on very large systems. Be reluctant to
5563 * use notify_on_release cgroups where very high task exit scaling
5564 * is required on large systems.
5565 *
Tejun Heo0e1d7682014-02-25 10:04:03 -05005566 * We set the exiting tasks cgroup to the root cgroup (top_cgroup). We
5567 * call cgroup_exit() while the task is still competent to handle
5568 * notify_on_release(), then leave the task attached to the root cgroup in
5569 * each hierarchy for the remainder of its exit. No need to bother with
5570 * init_css_set refcnting. init_css_set never goes away and we can't race
Li Zefane8604cb2014-03-28 15:18:27 +08005571 * with migration path - PF_EXITING is visible to migration path.
Paul Menageb4f48b62007-10-18 23:39:33 -07005572 */
Li Zefan1ec41832014-03-28 15:22:19 +08005573void cgroup_exit(struct task_struct *tsk)
Paul Menageb4f48b62007-10-18 23:39:33 -07005574{
Tejun Heo30159ec2013-06-25 11:53:37 -07005575 struct cgroup_subsys *ss;
Tejun Heo5abb8852013-06-12 21:04:49 -07005576 struct css_set *cset;
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005577 int i;
Paul Menage817929e2007-10-18 23:39:36 -07005578
5579 /*
Tejun Heo0e1d7682014-02-25 10:04:03 -05005580 * Unlink from @tsk from its css_set. As migration path can't race
Tejun Heo0de09422015-10-15 16:41:49 -04005581 * with us, we can check css_set and cg_list without synchronization.
Paul Menage817929e2007-10-18 23:39:36 -07005582 */
Tejun Heo0de09422015-10-15 16:41:49 -04005583 cset = task_css_set(tsk);
5584
Paul Menage817929e2007-10-18 23:39:36 -07005585 if (!list_empty(&tsk->cg_list)) {
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005586 spin_lock_bh(&css_set_lock);
Tejun Heof6d7d042015-10-15 16:41:52 -04005587 css_set_move_task(tsk, cset, NULL, false);
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005588 spin_unlock_bh(&css_set_lock);
Tejun Heo2e91fa72015-10-15 16:41:53 -04005589 } else {
5590 get_css_set(cset);
Paul Menage817929e2007-10-18 23:39:36 -07005591 }
5592
Aleksa Saraicb4a3162015-06-06 10:02:14 +10005593 /* see cgroup_post_fork() for details */
Tejun Heo2e91fa72015-10-15 16:41:53 -04005594 for_each_subsys_which(ss, i, &have_exit_callback)
5595 ss->exit(tsk);
5596}
Tejun Heo30159ec2013-06-25 11:53:37 -07005597
Tejun Heo2e91fa72015-10-15 16:41:53 -04005598void cgroup_free(struct task_struct *task)
5599{
5600 struct css_set *cset = task_css_set(task);
Tejun Heoafcf6c82015-10-15 16:41:53 -04005601 struct cgroup_subsys *ss;
5602 int ssid;
5603
5604 for_each_subsys_which(ss, ssid, &have_free_callback)
5605 ss->free(task);
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01005606
Tejun Heo2e91fa72015-10-15 16:41:53 -04005607 put_css_set(cset);
Paul Menageb4f48b62007-10-18 23:39:33 -07005608}
Paul Menage697f4162007-10-18 23:39:34 -07005609
Paul Menagebd89aab2007-10-18 23:40:44 -07005610static void check_for_release(struct cgroup *cgrp)
Paul Menage81a6a5c2007-10-18 23:39:38 -07005611{
Tejun Heo27bd4db2015-10-15 16:41:50 -04005612 if (notify_on_release(cgrp) && !cgroup_is_populated(cgrp) &&
Zefan Li971ff492014-09-18 16:06:19 +08005613 !css_has_online_children(&cgrp->self) && !cgroup_is_dead(cgrp))
5614 schedule_work(&cgrp->release_agent_work);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005615}
5616
Paul Menage81a6a5c2007-10-18 23:39:38 -07005617/*
5618 * Notify userspace when a cgroup is released, by running the
5619 * configured release agent with the name of the cgroup (path
5620 * relative to the root of cgroup file system) as the argument.
5621 *
5622 * Most likely, this user command will try to rmdir this cgroup.
5623 *
5624 * This races with the possibility that some other task will be
5625 * attached to this cgroup before it is removed, or that some other
5626 * user task will 'mkdir' a child cgroup of this cgroup. That's ok.
5627 * The presumed 'rmdir' will fail quietly if this cgroup is no longer
5628 * unused, and this cgroup will be reprieved from its death sentence,
5629 * to continue to serve a useful existence. Next time it's released,
5630 * we will get notified again, if it still has 'notify_on_release' set.
5631 *
5632 * The final arg to call_usermodehelper() is UMH_WAIT_EXEC, which
5633 * means only wait until the task is successfully execve()'d. The
5634 * separate release agent task is forked by call_usermodehelper(),
5635 * then control in this thread returns here, without waiting for the
5636 * release agent task. We don't bother to wait because the caller of
5637 * this routine has no use for the exit status of the release agent
5638 * task, so no sense holding our caller up for that.
Paul Menage81a6a5c2007-10-18 23:39:38 -07005639 */
Paul Menage81a6a5c2007-10-18 23:39:38 -07005640static void cgroup_release_agent(struct work_struct *work)
5641{
Zefan Li971ff492014-09-18 16:06:19 +08005642 struct cgroup *cgrp =
5643 container_of(work, struct cgroup, release_agent_work);
5644 char *pathbuf = NULL, *agentbuf = NULL, *path;
5645 char *argv[3], *envp[3];
5646
Paul Menage81a6a5c2007-10-18 23:39:38 -07005647 mutex_lock(&cgroup_mutex);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005648
Zefan Li971ff492014-09-18 16:06:19 +08005649 pathbuf = kmalloc(PATH_MAX, GFP_KERNEL);
5650 agentbuf = kstrdup(cgrp->root->release_agent_path, GFP_KERNEL);
5651 if (!pathbuf || !agentbuf)
5652 goto out;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005653
Zefan Li971ff492014-09-18 16:06:19 +08005654 path = cgroup_path(cgrp, pathbuf, PATH_MAX);
5655 if (!path)
5656 goto out;
Paul Menage81a6a5c2007-10-18 23:39:38 -07005657
Zefan Li971ff492014-09-18 16:06:19 +08005658 argv[0] = agentbuf;
5659 argv[1] = path;
5660 argv[2] = NULL;
5661
5662 /* minimal command environment */
5663 envp[0] = "HOME=/";
5664 envp[1] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
5665 envp[2] = NULL;
5666
Paul Menage81a6a5c2007-10-18 23:39:38 -07005667 mutex_unlock(&cgroup_mutex);
Zefan Li971ff492014-09-18 16:06:19 +08005668 call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
Zefan Li3e2cd912014-09-20 14:35:43 +08005669 goto out_free;
Zefan Li971ff492014-09-18 16:06:19 +08005670out:
Zefan Li3e2cd912014-09-20 14:35:43 +08005671 mutex_unlock(&cgroup_mutex);
5672out_free:
Zefan Li971ff492014-09-18 16:06:19 +08005673 kfree(agentbuf);
5674 kfree(pathbuf);
Paul Menage81a6a5c2007-10-18 23:39:38 -07005675}
Paul Menage8bab8dd2008-04-04 14:29:57 -07005676
5677static int __init cgroup_disable(char *str)
5678{
Tejun Heo30159ec2013-06-25 11:53:37 -07005679 struct cgroup_subsys *ss;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005680 char *token;
Tejun Heo30159ec2013-06-25 11:53:37 -07005681 int i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005682
5683 while ((token = strsep(&str, ",")) != NULL) {
5684 if (!*token)
5685 continue;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005686
Tejun Heo3ed80a62014-02-08 10:36:58 -05005687 for_each_subsys(ss, i) {
Tejun Heo3e1d2ee2015-08-18 13:58:16 -07005688 if (strcmp(token, ss->name) &&
5689 strcmp(token, ss->legacy_name))
5690 continue;
Tejun Heoa3e72732015-09-25 16:24:27 -04005691 cgroup_disable_mask |= 1 << i;
Paul Menage8bab8dd2008-04-04 14:29:57 -07005692 }
5693 }
5694 return 1;
5695}
5696__setup("cgroup_disable=", cgroup_disable);
KAMEZAWA Hiroyuki38460b42009-04-02 16:57:25 -07005697
Tejun Heob77d7b62013-08-13 11:01:54 -04005698/**
Tejun Heoec903c02014-05-13 12:11:01 -04005699 * css_tryget_online_from_dir - get corresponding css from a cgroup dentry
Tejun Heo35cf0832013-08-26 18:40:56 -04005700 * @dentry: directory dentry of interest
5701 * @ss: subsystem of interest
Tejun Heob77d7b62013-08-13 11:01:54 -04005702 *
Tejun Heo5a17f542014-02-11 11:52:47 -05005703 * If @dentry is a directory for a cgroup which has @ss enabled on it, try
5704 * to get the corresponding css and return it. If such css doesn't exist
5705 * or can't be pinned, an ERR_PTR value is returned.
Stephane Eraniane5d13672011-02-14 11:20:01 +02005706 */
Tejun Heoec903c02014-05-13 12:11:01 -04005707struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry,
5708 struct cgroup_subsys *ss)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005709{
Tejun Heo2bd59d42014-02-11 11:52:49 -05005710 struct kernfs_node *kn = kernfs_node_from_dentry(dentry);
5711 struct cgroup_subsys_state *css = NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005712 struct cgroup *cgrp;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005713
Tejun Heo35cf0832013-08-26 18:40:56 -04005714 /* is @dentry a cgroup dir? */
Tejun Heo2bd59d42014-02-11 11:52:49 -05005715 if (dentry->d_sb->s_type != &cgroup_fs_type || !kn ||
5716 kernfs_type(kn) != KERNFS_DIR)
Stephane Eraniane5d13672011-02-14 11:20:01 +02005717 return ERR_PTR(-EBADF);
5718
Tejun Heo5a17f542014-02-11 11:52:47 -05005719 rcu_read_lock();
5720
Tejun Heo2bd59d42014-02-11 11:52:49 -05005721 /*
5722 * This path doesn't originate from kernfs and @kn could already
5723 * have been or be removed at any point. @kn->priv is RCU
Li Zefana4189482014-09-04 14:43:07 +08005724 * protected for this access. See css_release_work_fn() for details.
Tejun Heo2bd59d42014-02-11 11:52:49 -05005725 */
5726 cgrp = rcu_dereference(kn->priv);
5727 if (cgrp)
5728 css = cgroup_css(cgrp, ss);
Tejun Heo5a17f542014-02-11 11:52:47 -05005729
Tejun Heoec903c02014-05-13 12:11:01 -04005730 if (!css || !css_tryget_online(css))
Tejun Heo5a17f542014-02-11 11:52:47 -05005731 css = ERR_PTR(-ENOENT);
5732
5733 rcu_read_unlock();
5734 return css;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005735}
Stephane Eraniane5d13672011-02-14 11:20:01 +02005736
Li Zefan1cb650b2013-08-19 10:05:24 +08005737/**
5738 * css_from_id - lookup css by id
5739 * @id: the cgroup id
5740 * @ss: cgroup subsys to be looked into
5741 *
5742 * Returns the css if there's valid one with @id, otherwise returns NULL.
5743 * Should be called under rcu_read_lock().
5744 */
5745struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss)
5746{
Tejun Heo6fa49182014-05-04 15:09:13 -04005747 WARN_ON_ONCE(!rcu_read_lock_held());
Vladimir Davydovadbe4272015-04-15 16:13:00 -07005748 return id > 0 ? idr_find(&ss->css_idr, id) : NULL;
Stephane Eraniane5d13672011-02-14 11:20:01 +02005749}
5750
Tejun Heo16af4392015-11-20 15:55:52 -05005751/**
5752 * cgroup_get_from_path - lookup and get a cgroup from its default hierarchy path
5753 * @path: path on the default hierarchy
5754 *
5755 * Find the cgroup at @path on the default hierarchy, increment its
5756 * reference count and return it. Returns pointer to the found cgroup on
5757 * success, ERR_PTR(-ENOENT) if @path doens't exist and ERR_PTR(-ENOTDIR)
5758 * if @path points to a non-directory.
5759 */
5760struct cgroup *cgroup_get_from_path(const char *path)
5761{
5762 struct kernfs_node *kn;
5763 struct cgroup *cgrp;
5764
5765 mutex_lock(&cgroup_mutex);
5766
5767 kn = kernfs_walk_and_get(cgrp_dfl_root.cgrp.kn, path);
5768 if (kn) {
5769 if (kernfs_type(kn) == KERNFS_DIR) {
5770 cgrp = kn->priv;
5771 cgroup_get(cgrp);
5772 } else {
5773 cgrp = ERR_PTR(-ENOTDIR);
5774 }
5775 kernfs_put(kn);
5776 } else {
5777 cgrp = ERR_PTR(-ENOENT);
5778 }
5779
5780 mutex_unlock(&cgroup_mutex);
5781 return cgrp;
5782}
5783EXPORT_SYMBOL_GPL(cgroup_get_from_path);
5784
Tejun Heobd1060a2015-12-07 17:38:53 -05005785/*
5786 * sock->sk_cgrp_data handling. For more info, see sock_cgroup_data
5787 * definition in cgroup-defs.h.
5788 */
5789#ifdef CONFIG_SOCK_CGROUP_DATA
5790
5791#if defined(CONFIG_CGROUP_NET_PRIO) || defined(CONFIG_CGROUP_NET_CLASSID)
5792
5793spinlock_t cgroup_sk_update_lock;
5794static bool cgroup_sk_alloc_disabled __read_mostly;
5795
5796void cgroup_sk_alloc_disable(void)
5797{
5798 if (cgroup_sk_alloc_disabled)
5799 return;
5800 pr_info("cgroup: disabling cgroup2 socket matching due to net_prio or net_cls activation\n");
5801 cgroup_sk_alloc_disabled = true;
5802}
5803
5804#else
5805
5806#define cgroup_sk_alloc_disabled false
5807
5808#endif
5809
5810void cgroup_sk_alloc(struct sock_cgroup_data *skcd)
5811{
5812 if (cgroup_sk_alloc_disabled)
5813 return;
5814
5815 rcu_read_lock();
5816
5817 while (true) {
5818 struct css_set *cset;
5819
5820 cset = task_css_set(current);
5821 if (likely(cgroup_tryget(cset->dfl_cgrp))) {
5822 skcd->val = (unsigned long)cset->dfl_cgrp;
5823 break;
5824 }
5825 cpu_relax();
5826 }
5827
5828 rcu_read_unlock();
5829}
5830
5831void cgroup_sk_free(struct sock_cgroup_data *skcd)
5832{
5833 cgroup_put(sock_cgroup_ptr(skcd));
5834}
5835
5836#endif /* CONFIG_SOCK_CGROUP_DATA */
5837
Paul Menagefe693432009-09-23 15:56:20 -07005838#ifdef CONFIG_CGROUP_DEBUG
Tejun Heoeb954192013-08-08 20:11:23 -04005839static struct cgroup_subsys_state *
5840debug_css_alloc(struct cgroup_subsys_state *parent_css)
Paul Menagefe693432009-09-23 15:56:20 -07005841{
5842 struct cgroup_subsys_state *css = kzalloc(sizeof(*css), GFP_KERNEL);
5843
5844 if (!css)
5845 return ERR_PTR(-ENOMEM);
5846
5847 return css;
5848}
5849
Tejun Heoeb954192013-08-08 20:11:23 -04005850static void debug_css_free(struct cgroup_subsys_state *css)
Paul Menagefe693432009-09-23 15:56:20 -07005851{
Tejun Heoeb954192013-08-08 20:11:23 -04005852 kfree(css);
Paul Menagefe693432009-09-23 15:56:20 -07005853}
5854
Tejun Heo182446d2013-08-08 20:11:24 -04005855static u64 debug_taskcount_read(struct cgroup_subsys_state *css,
5856 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005857{
Tejun Heo182446d2013-08-08 20:11:24 -04005858 return cgroup_task_count(css->cgroup);
Paul Menagefe693432009-09-23 15:56:20 -07005859}
5860
Tejun Heo182446d2013-08-08 20:11:24 -04005861static u64 current_css_set_read(struct cgroup_subsys_state *css,
5862 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005863{
5864 return (u64)(unsigned long)current->cgroups;
5865}
5866
Tejun Heo182446d2013-08-08 20:11:24 -04005867static u64 current_css_set_refcount_read(struct cgroup_subsys_state *css,
Li Zefan03c78cb2013-06-14 11:17:19 +08005868 struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005869{
5870 u64 count;
5871
5872 rcu_read_lock();
Tejun Heoa8ad8052013-06-21 15:52:04 -07005873 count = atomic_read(&task_css_set(current)->refcount);
Paul Menagefe693432009-09-23 15:56:20 -07005874 rcu_read_unlock();
5875 return count;
5876}
5877
Tejun Heo2da8ca82013-12-05 12:28:04 -05005878static int current_css_set_cg_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005879{
Tejun Heo69d02062013-06-12 21:04:50 -07005880 struct cgrp_cset_link *link;
Tejun Heo5abb8852013-06-12 21:04:49 -07005881 struct css_set *cset;
Tejun Heoe61734c2014-02-12 09:29:50 -05005882 char *name_buf;
Paul Menage7717f7b2009-09-23 15:56:22 -07005883
Tejun Heoe61734c2014-02-12 09:29:50 -05005884 name_buf = kmalloc(NAME_MAX + 1, GFP_KERNEL);
5885 if (!name_buf)
5886 return -ENOMEM;
Paul Menage7717f7b2009-09-23 15:56:22 -07005887
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005888 spin_lock_bh(&css_set_lock);
Paul Menage7717f7b2009-09-23 15:56:22 -07005889 rcu_read_lock();
Tejun Heo5abb8852013-06-12 21:04:49 -07005890 cset = rcu_dereference(current->cgroups);
Tejun Heo69d02062013-06-12 21:04:50 -07005891 list_for_each_entry(link, &cset->cgrp_links, cgrp_link) {
Paul Menage7717f7b2009-09-23 15:56:22 -07005892 struct cgroup *c = link->cgrp;
Paul Menage7717f7b2009-09-23 15:56:22 -07005893
Tejun Heoa2dd4242014-03-19 10:23:55 -04005894 cgroup_name(c, name_buf, NAME_MAX + 1);
Paul Menage2c6ab6d2009-09-23 15:56:23 -07005895 seq_printf(seq, "Root %d group %s\n",
Tejun Heoa2dd4242014-03-19 10:23:55 -04005896 c->root->hierarchy_id, name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07005897 }
5898 rcu_read_unlock();
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005899 spin_unlock_bh(&css_set_lock);
Tejun Heoe61734c2014-02-12 09:29:50 -05005900 kfree(name_buf);
Paul Menage7717f7b2009-09-23 15:56:22 -07005901 return 0;
5902}
5903
5904#define MAX_TASKS_SHOWN_PER_CSS 25
Tejun Heo2da8ca82013-12-05 12:28:04 -05005905static int cgroup_css_links_read(struct seq_file *seq, void *v)
Paul Menage7717f7b2009-09-23 15:56:22 -07005906{
Tejun Heo2da8ca82013-12-05 12:28:04 -05005907 struct cgroup_subsys_state *css = seq_css(seq);
Tejun Heo69d02062013-06-12 21:04:50 -07005908 struct cgrp_cset_link *link;
Paul Menage7717f7b2009-09-23 15:56:22 -07005909
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005910 spin_lock_bh(&css_set_lock);
Tejun Heo182446d2013-08-08 20:11:24 -04005911 list_for_each_entry(link, &css->cgroup->cset_links, cset_link) {
Tejun Heo69d02062013-06-12 21:04:50 -07005912 struct css_set *cset = link->cset;
Paul Menage7717f7b2009-09-23 15:56:22 -07005913 struct task_struct *task;
5914 int count = 0;
Tejun Heoc7561122014-02-25 10:04:01 -05005915
Tejun Heo5abb8852013-06-12 21:04:49 -07005916 seq_printf(seq, "css_set %p\n", cset);
Tejun Heoc7561122014-02-25 10:04:01 -05005917
Tejun Heo5abb8852013-06-12 21:04:49 -07005918 list_for_each_entry(task, &cset->tasks, cg_list) {
Tejun Heoc7561122014-02-25 10:04:01 -05005919 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
5920 goto overflow;
5921 seq_printf(seq, " task %d\n", task_pid_vnr(task));
Paul Menage7717f7b2009-09-23 15:56:22 -07005922 }
Tejun Heoc7561122014-02-25 10:04:01 -05005923
5924 list_for_each_entry(task, &cset->mg_tasks, cg_list) {
5925 if (count++ > MAX_TASKS_SHOWN_PER_CSS)
5926 goto overflow;
5927 seq_printf(seq, " task %d\n", task_pid_vnr(task));
5928 }
5929 continue;
5930 overflow:
5931 seq_puts(seq, " ...\n");
Paul Menage7717f7b2009-09-23 15:56:22 -07005932 }
Tejun Heof0d9a5f2015-10-15 16:41:53 -04005933 spin_unlock_bh(&css_set_lock);
Paul Menage7717f7b2009-09-23 15:56:22 -07005934 return 0;
5935}
5936
Tejun Heo182446d2013-08-08 20:11:24 -04005937static u64 releasable_read(struct cgroup_subsys_state *css, struct cftype *cft)
Paul Menagefe693432009-09-23 15:56:20 -07005938{
Tejun Heo27bd4db2015-10-15 16:41:50 -04005939 return (!cgroup_is_populated(css->cgroup) &&
Zefan Lia25eb522014-09-19 16:51:00 +08005940 !css_has_online_children(&css->cgroup->self));
Paul Menagefe693432009-09-23 15:56:20 -07005941}
5942
5943static struct cftype debug_files[] = {
5944 {
Paul Menagefe693432009-09-23 15:56:20 -07005945 .name = "taskcount",
5946 .read_u64 = debug_taskcount_read,
5947 },
5948
5949 {
5950 .name = "current_css_set",
5951 .read_u64 = current_css_set_read,
5952 },
5953
5954 {
5955 .name = "current_css_set_refcount",
5956 .read_u64 = current_css_set_refcount_read,
5957 },
5958
5959 {
Paul Menage7717f7b2009-09-23 15:56:22 -07005960 .name = "current_css_set_cg_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005961 .seq_show = current_css_set_cg_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07005962 },
5963
5964 {
5965 .name = "cgroup_css_links",
Tejun Heo2da8ca82013-12-05 12:28:04 -05005966 .seq_show = cgroup_css_links_read,
Paul Menage7717f7b2009-09-23 15:56:22 -07005967 },
5968
5969 {
Paul Menagefe693432009-09-23 15:56:20 -07005970 .name = "releasable",
5971 .read_u64 = releasable_read,
5972 },
Paul Menagefe693432009-09-23 15:56:20 -07005973
Tejun Heo4baf6e32012-04-01 12:09:55 -07005974 { } /* terminate */
5975};
Paul Menagefe693432009-09-23 15:56:20 -07005976
Tejun Heo073219e2014-02-08 10:36:58 -05005977struct cgroup_subsys debug_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08005978 .css_alloc = debug_css_alloc,
5979 .css_free = debug_css_free,
Tejun Heo55779642014-07-15 11:05:09 -04005980 .legacy_cftypes = debug_files,
Paul Menagefe693432009-09-23 15:56:20 -07005981};
5982#endif /* CONFIG_CGROUP_DEBUG */